From c6f2048d22a693de88ae38f3f8b33d1b57508b4f Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Sun, 9 Mar 2025 14:23:57 +0200 Subject: [PATCH] [24AA02E48 EEPROM] hotfix 1 --- Core/Src/24AA02E48.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Src/24AA02E48.c b/Core/Src/24AA02E48.c index c93f2bb..3e8dc83 100644 --- a/Core/Src/24AA02E48.c +++ b/Core/Src/24AA02E48.c @@ -15,7 +15,7 @@ void EEPROM_24AA02E48_run_test(void) // write the Address Pointer register uint8_t data_buffer[13]; data_buffer[12] = '\0'; - data_buffer[0] = 0x00; + data_buffer[0] = 0xF4; for (size_t t = 0; t < 5; t++) { op_result = HAL_I2C_Master_Transmit(&hi2c1, 0xA0, data_buffer, 1, 2000); @@ -88,7 +88,7 @@ void EEPROM_24AA02E48_run_test(void) DISPLAY_SET_CURSOR(1, 0); display_write_data_byte('0' + err_count / 10 % 10); display_write_data_byte('0' + err_count % 10); - display_write_data_seq('E '); + display_write_data_seq("E "); display_write_data_seq(data_buffer); } else { DISPLAY_SET_CURSOR(1, 1);