From 107a454051e5da6a59601db98e9b98cc539dc502 Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Sun, 23 Mar 2025 15:43:07 +0200 Subject: [PATCH] [SST25VF016B] improve error detection mechanism --- Core/Src/SST25VF016B.c | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/Core/Src/SST25VF016B.c b/Core/Src/SST25VF016B.c index 3eb887f..d866039 100644 --- a/Core/Src/SST25VF016B.c +++ b/Core/Src/SST25VF016B.c @@ -34,6 +34,8 @@ void SST25VF016B_run_test(void) display_write_data_seq("/5 "); switch (op_result) { + case HAL_OK: + break; case HAL_ERROR: display_write_data_seq("ERROR"); break; @@ -61,9 +63,35 @@ void SST25VF016B_run_test(void) display_write_data_byte('0' + err_count % 10); display_write_data_seq(" Errors"); } else { + for (size_t i = 0; i < 4; i += 2) { + // odd reads MUST result in 0xBF + if (rx_buffer[4+i] != 0xBF) { + DISPLAY_SET_CURSOR(1, 0); + display_write_data_byte('B'); + display_write_data_byte('1'+i); + display_write_data_seq(" WRONG"); + goto write_retrieved_data; + } + } + + for (size_t i = 1; i < 4; i += 2) { + // even reads MUST result in 0x41 + if (rx_buffer[4+i] != 0x41) { + DISPLAY_SET_CURSOR(1, 0); + display_write_data_byte('B'); + display_write_data_byte('1'+i); + display_write_data_seq(" WRONG"); + goto write_retrieved_data; + } + } + DISPLAY_SET_CURSOR(1, 1); display_write_data_seq("OK"); - DISPLAY_SET_CURSOR(1, 8); - display_write_data_seq((char *) rx_buffer); } + + write_retrieved_data: + DISPLAY_SET_CURSOR(1, 12); + display_write_data_seq((char *) &(rx_buffer[4])); + + HAL_GPIO_WritePin(GPIOD, GPIO_PIN_7, GPIO_PIN_SET); }