What changed, and why it matters
This commit is a routine version and date bump for two auto-generated files. It updates copyright year, build date, firmware version number, and a corresponding timestamp constant used when the device writes files to a microSD card. There is no code logic change and no security relevance visible in the diff.
No action required. Treat as routine release housekeeping.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies stm32/COLDCARD_MK4/file_time.c and stm32/COLDCARD_Q1/file_time.c. These files override the MicroPython FATFS port’s get_fattime() to provide a fixed timestamp for files created on the device’s FAT filesystem. The changes are purely metadata: copyright year 2025→2026, build date updates, version bumps (MK4 5.4.5→5.5.0, Q1 1.3.5Q→1.4.0Q), and recalculated FAT timestamp values matching the new build dates. No functional or security-relevant code was altered.
Changed components
stm32/COLDCARD_MK4/file_time.cstm32/COLDCARD_Q1/file_time.cInspect captured patch +8 / −8
diff --git a/stm32/COLDCARD_MK4/file_time.c b/stm32/COLDCARD_MK4/file_time.c
index 2213cfa..1b7fe87 100644
--- a/stm32/COLDCARD_MK4/file_time.c
+++ b/stm32/COLDCARD_MK4/file_time.c
@@ -1,13 +1,13 @@
-// (c) Copyright 2020-2025 by Coinkite Inc. This file is covered by license found in COPYING-CC.
+// (c) Copyright 2020-2026 by Coinkite Inc. This file is covered by license found in COPYING-CC.
//
// AUTO-generated.
//
-// built: 2025-10-30
-// version: 5.4.5
+// built: 2026-03-05
+// version: 5.5.0
//
#include <stdint.h>
// this overrides ports/stm32/fatfs_port.c
uint32_t get_fattime(void) {
- return 0x5b5e2880UL;
+ return 0x5c6528a0UL;
}
diff --git a/stm32/COLDCARD_Q1/file_time.c b/stm32/COLDCARD_Q1/file_time.c
index 386b67e..53bc949 100644
--- a/stm32/COLDCARD_Q1/file_time.c
+++ b/stm32/COLDCARD_Q1/file_time.c
@@ -1,13 +1,13 @@
-// (c) Copyright 2020-2025 by Coinkite Inc. This file is covered by license found in COPYING-CC.
+// (c) Copyright 2020-2026 by Coinkite Inc. This file is covered by license found in COPYING-CC.
//
// AUTO-generated.
//
-// built: 2025-11-03
-// version: 1.3.5Q
+// built: 2026-03-05
+// version: 1.4.0Q
//
#include <stdint.h>
// this overrides ports/stm32/fatfs_port.c
uint32_t get_fattime(void) {
- return 0x5b630860UL;
+ return 0x5c650880UL;
}
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.