platform: esp32: create cyberplague mask map

This commit is contained in:
Torrie Fischer
2024-12-13 00:33:24 +01:00
parent 42fc0b0c62
commit bf4ef46699
2 changed files with 27 additions and 1 deletions

View File

@ -107,6 +107,24 @@ impl<const STRIDE_NUM: usize> StrideMapping<STRIDE_NUM> {
])
}
pub fn new_cyberplague() -> Self {
Self::from_json(&[
(0, 6, 6, false),
(1, 6, 6, true),
(2, 6, 6, false),
(3, 4, 9, true),
(4, 4, 14, false),
(5, 0, 17, true),
(6, 2, 12, false),
(7, 0, 18, true),
(8, 4, 14, false),
(9, 5, 9, true),
(10, 4, 7, false),
(11, 5, 6, true),
(12, 5, 6, false)
])
}
pub fn new_jar() -> Self {
Self::from_json(&[
(0, 0, 17, false),