What changed, and why it matters
This commit only updates two automatically-generated timestamp files used to set dates on files created by the COLDCARD hardware wallet. It changes the recorded build date from March 5, 2026 to June 30, 2026, and bumps the firmware version numbers from 5.5.0 to 5.5.1 (MK4) and 1.4.0Q to 1.4.1Q (Q1). There is no security-relevant code change.
No security action needed. Treat as routine build metadata update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies stm32/COLDCARD_MK4/file_time.c and stm32/COLDCARD_Q1/file_time.c, which override the MicroPython FATFS get_fattime() port function. The changes update the hardcoded FAT timestamp constants and version comments to reflect a new build date and minor version bump. No functional logic, parsing, cryptography, or privilege handling is altered.
Changed components
stm32/COLDCARD_MK4/file_time.cstm32/COLDCARD_Q1/file_time.cInspect captured patch +6 / −6
diff --git a/stm32/COLDCARD_MK4/file_time.c b/stm32/COLDCARD_MK4/file_time.c
index 1b7fe87..7538d87 100644
--- a/stm32/COLDCARD_MK4/file_time.c
+++ b/stm32/COLDCARD_MK4/file_time.c
@@ -2,12 +2,12 @@
//
// AUTO-generated.
//
-// built: 2026-03-05
-// version: 5.5.0
+// built: 2026-06-30
+// version: 5.5.1
//
#include <stdint.h>
// this overrides ports/stm32/fatfs_port.c
uint32_t get_fattime(void) {
- return 0x5c6528a0UL;
+ return 0x5cde28a0UL;
}
diff --git a/stm32/COLDCARD_Q1/file_time.c b/stm32/COLDCARD_Q1/file_time.c
index 53bc949..bf3a1ec 100644
--- a/stm32/COLDCARD_Q1/file_time.c
+++ b/stm32/COLDCARD_Q1/file_time.c
@@ -2,12 +2,12 @@
//
// AUTO-generated.
//
-// built: 2026-03-05
-// version: 1.4.0Q
+// built: 2026-06-30
+// version: 1.4.1Q
//
#include <stdint.h>
// this overrides ports/stm32/fatfs_port.c
uint32_t get_fattime(void) {
- return 0x5c650880UL;
+ return 0x5cde0880UL;
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.