firmware: raise hmc542 log level to INFO.

This commit is contained in:
whitequark 2018-05-05 02:59:49 +00:00
parent a148729bf8
commit fd2b8d5f8f
1 changed files with 3 additions and 3 deletions

View File

@ -43,9 +43,9 @@ pub fn program(card_index: usize, chan_index: usize, atten: u8) {
}
set_pins(PIN_LE);
debug!("card {} channel {} set to {}{} dB",
card_index, chan_index,
atten / 2, if atten % 2 != 0 { ".5" } else { "" });
info!("card {} channel {} set to {}{} dB",
card_index, chan_index,
atten / 2, if atten % 2 != 0 { ".5" } else { "" });
}
/// See `program`.