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

coremgmt flash: update crc mismatch message

This commit is contained in:
occheung 2024-10-02 11:22:46 +08:00
parent 9882e16216
commit 21944ff865
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ mod local_coremgmt {
reboot(_io, stream)?; reboot(_io, stream)?;
} else { } else {
error!("CRC failed in SDRAM (actual {:08x}, expected {:08x})", actual_crc, expected_crc); error!("CRC failed, images have not been written to flash.\n(actual {:08x}, expected {:08x})", actual_crc, expected_crc);
Reply::Error.write_to(stream)?; Reply::Error.write_to(stream)?;
} }
Ok(()) Ok(())

View File

@ -139,7 +139,7 @@ impl Manager {
} }
} else { } else {
panic!("CRC failed in SDRAM (actual {:08x}, expected {:08x})", actual_crc, expected_crc); panic!("CRC failed, images have not been written to flash.\n(actual {:08x}, expected {:08x})", actual_crc, expected_crc);
} }
} }
} }