2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-12 20:08:54 +08:00

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

View File

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