firmware: fix compilation without virtual LEDs

Co-authored-by: morgan <mc@m-labs.hk>
Co-committed-by: morgan <mc@m-labs.hk>
pull/259/head
morgan 2023-08-30 15:33:44 +08:00 committed by sb10q
parent c61017fbe6
commit 2ac7eedec1
1 changed files with 1 additions and 0 deletions

View File

@ -152,6 +152,7 @@ impl IoExpander {
}
pub fn service(&mut self, i2c: &mut i2c::I2c) -> Result<(), &'static str> {
#[cfg(has_virtual_leds)]
for (led, port, bit) in self.virtual_led_mapping.iter() {
let level = unsafe { csr::virtual_leds::status_read() >> led & 1 };
self.set(*port, *bit, level != 0);