From e65b1e6eb5e7a659f2f6c02f700aa97c0affd901 Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Thu, 20 Jul 2023 16:49:04 +0200 Subject: [PATCH] change reading of values from Flash --- atmega32u4/dcdc_mdc/main.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/atmega32u4/dcdc_mdc/main.c b/atmega32u4/dcdc_mdc/main.c index 59f6a65..3bdb392 100644 --- a/atmega32u4/dcdc_mdc/main.c +++ b/atmega32u4/dcdc_mdc/main.c @@ -624,11 +624,13 @@ __attribute__((naked)) void main(void) { eeprom_update_byte((uint8_t *)0x23, shift_register >> 16); eeprom_update_byte((uint8_t *)0x24, shift_register >> 24); */ - - shift_register = eeprom_read_byte((uint8_t *)0x21) | - eeprom_read_byte((uint8_t *)0x22) << 8 | - (uint32_t)eeprom_read_byte((uint8_t *)0x23) << 16 | - (uint32_t)eeprom_read_byte((uint8_t *)0x24) << 24; + _delay_ms(200); + /*shift_register = eeprom_read_byte((uint8_t *)0x21) | + (eeprom_read_byte((uint8_t *)0x22) << 8) | + (((uint32_t)eeprom_read_byte((uint8_t *)0x23)) << 16) | + (((uint32_t)eeprom_read_byte((uint8_t *)0x24)) << 24); +*/ + shift_register = eeprom_read_dword((uint32_t*)0x21); //shift_register = 0xffffffff; //default value -- 2.43.0