diff options
author | Purdea Andrei <andrei@purdea.ro> | 2021-04-25 11:57:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 18:57:49 +1000 |
commit | 412e7a03e49d044a2dea0fb38b05fb24c8d6eabe (patch) | |
tree | e7de86f5551a638a335cc46aadfc3f59ec9d4802 /tmk_core/protocol | |
parent | 23e70fa857b295ded37d1989eab4556d64477ff0 (diff) |
eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r-- | tmk_core/protocol/chibios/main.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 63e4c99d21..e2ec011186 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c @@ -51,12 +51,6 @@ #ifdef MIDI_ENABLE # include "qmk_midi.h" #endif -#ifdef STM32_EEPROM_ENABLE -# include "eeprom_stm32.h" -#endif -#ifdef EEPROM_DRIVER -# include "eeprom_driver.h" -#endif #include "suspend.h" #include "wait.h" @@ -150,13 +144,6 @@ int main(void) { halInit(); chSysInit(); -#ifdef STM32_EEPROM_ENABLE - EEPROM_Init(); -#endif -#ifdef EEPROM_DRIVER - eeprom_driver_init(); -#endif - // TESTING // chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); |