2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-13 20:38: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)?;
} 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)?;
}
Ok(())

View File

@ -139,7 +139,7 @@ impl Manager {
}
} 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);
}
}
}