]> jspc29.x-matter.uni-frankfurt.de Git - avr.git/commitdiff
change reading of values from Flash master
authorJan Michel <michel@physik.uni-frankfurt.de>
Thu, 20 Jul 2023 14:49:04 +0000 (16:49 +0200)
committerJan Michel <michel@physik.uni-frankfurt.de>
Thu, 20 Jul 2023 14:49:04 +0000 (16:49 +0200)
atmega32u4/dcdc_mdc/main.c

index 59f6a65a82a48880e6ff50ca50adb11e36a74719..3bdb3921924d7dcf76988991bcfa5692920cacd9 100644 (file)
@@ -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