Browse Source

Fix for gcc10 teensy_lc eeprom build warning (#12587)

pull/12647/head 0.12.38
Joel Challis 3 years ago
committed by GitHub
parent
commit
1cecd593c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/common/chibios/eeprom_teensy.c

+ 1
- 1
tmk_core/common/chibios/eeprom_teensy.c View File

@ -363,7 +363,7 @@ void eeprom_initialize(void) {
return;
}
} while (p < (uint16_t *)SYMVAL(__eeprom_workarea_end__));
flashend = (uint32_t)((uint16_t *)SYMVAL(__eeprom_workarea_end__) - 1);
flashend = (uint32_t)(p - 1);
}
uint8_t eeprom_read_byte(const uint8_t *addr) {


Loading…
Cancel
Save