firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

eepy-sys: fix typo in header bss range check

+1 -1
+1 -1
eepy-sys/src/header.rs
··· 162 162 } 163 163 164 164 if self.bss_len > 0 { 165 - if !ram_range.contains(&(self.bss_vma as usize)) || !ram_range.contains(&(self.data_vma as usize + self.data_len - 1)) { 165 + if !ram_range.contains(&(self.bss_vma as usize)) || !ram_range.contains(&(self.bss_vma as usize + self.bss_len - 1)) { 166 166 #[cfg(feature = "defmt")] 167 167 warn!("Program has invalid bss section addresses"); 168 168 return false;