mirror of https://github.com/m-labs/artiq.git
hmc830: improve lock failure error report
This commit is contained in:
parent
115aa0d0d6
commit
c3323f0d57
|
@ -107,12 +107,11 @@ mod hmc830 {
|
|||
info!("waiting for lock...");
|
||||
while read(0x12) & 0x02 == 0 {
|
||||
if clock::get_ms() > t + 2000 {
|
||||
error!("lock timeout");
|
||||
info!("register dump:");
|
||||
error!("HMC830 lock timeout. Register dump:");
|
||||
for addr in 0x00..0x14 {
|
||||
// These registers don't exist (in the data sheet at least)
|
||||
if addr == 0x0d || addr == 0x0e { continue; }
|
||||
info!("[0x{:02x}] = 0x{:04x}", addr, read(addr));
|
||||
error!("[0x{:02x}] = 0x{:04x}", addr, read(addr));
|
||||
}
|
||||
return Err("HMC830 lock timeout");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue