From 0d6e1d9ba54cedead78c85bb037b1657590097b6 Mon Sep 17 00:00:00 2001 From: Michael Cardell Widerkrantz Date: Tue, 13 May 2025 18:12:30 +0200 Subject: [PATCH] fw: Add debug print when reading partition table fails --- hw/application_fpga/fw/tk1/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/application_fpga/fw/tk1/main.c b/hw/application_fpga/fw/tk1/main.c index 8e7ebac..c01da2b 100644 --- a/hw/application_fpga/fw/tk1/main.c +++ b/hw/application_fpga/fw/tk1/main.c @@ -521,7 +521,8 @@ int main(void) scramble_ram(); if (part_table_read(&part_table_storage) != 0) { - // Couldn't read or create partition table + // Couldn't read partition table + debug_puts("Couldn't read partition table\n"); assert(1 == 2); }