forked from M-Labs/artiq
firmware/ad9154: reset the dac between each configuration attempt
This commit is contained in:
parent
bb87976d4f
commit
925b47b077
|
@ -613,6 +613,7 @@ fn dac_cfg(dacno: u8) -> Result<(), &'static str> {
|
||||||
|
|
||||||
fn dac_cfg_retry(dacno: u8) -> Result<(), &'static str> {
|
fn dac_cfg_retry(dacno: u8) -> Result<(), &'static str> {
|
||||||
for i in 0..99 {
|
for i in 0..99 {
|
||||||
|
dac_reset(dacno);
|
||||||
let outcome = dac_cfg(dacno);
|
let outcome = dac_cfg(dacno);
|
||||||
match outcome {
|
match outcome {
|
||||||
Ok(_) => return outcome,
|
Ok(_) => return outcome,
|
||||||
|
|
Loading…
Reference in New Issue