forked from M-Labs/artiq
firmware: add debug output to hmc542 driver.
This commit is contained in:
parent
68ef09ed73
commit
8a70c18d1e
|
@ -42,6 +42,10 @@ pub fn program(card_index: usize, chan_index: usize, atten: u8) {
|
||||||
set_pins(sin | PIN_CLK);
|
set_pins(sin | PIN_CLK);
|
||||||
}
|
}
|
||||||
set_pins(PIN_LE);
|
set_pins(PIN_LE);
|
||||||
|
|
||||||
|
debug!("card {} channel {} set to {}{} dB",
|
||||||
|
card_index, chan_index,
|
||||||
|
atten / 2, if atten % 2 != 0 { ".5" } else { "" });
|
||||||
}
|
}
|
||||||
|
|
||||||
/// See `program`.
|
/// See `program`.
|
||||||
|
|
Loading…
Reference in New Issue