From b561099ec3cf3afb68fd3feda3c17b24b2c84d72 Mon Sep 17 00:00:00 2001 From: occheung Date: Thu, 24 Oct 2024 11:52:26 +0800 Subject: [PATCH] satman: fix checksum error message --- src/satman/src/mgmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/satman/src/mgmt.rs b/src/satman/src/mgmt.rs index 80ca733..fd60942 100644 --- a/src/satman/src/mgmt.rs +++ b/src/satman/src/mgmt.rs @@ -137,7 +137,7 @@ impl<'a> Manager<'_> { self.cfg.write("boot", image).expect("failed to write boot image"); } else { panic!( - "CRC failed in SDRAM (actual {:08x}, expected {:08x})", + "CRC failed, images have not been written to flash.\n(actual {:08x}, expected {:08x})", actual_crc, expected_crc ); }