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 | |
parent | 23e70fa857b295ded37d1989eab4556d64477ff0 (diff) | |
download | qmk_firmware-412e7a03e49d044a2dea0fb38b05fb24c8d6eabe.tar.gz qmk_firmware-412e7a03e49d044a2dea0fb38b05fb24c8d6eabe.zip |
eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671)
-rw-r--r-- | tmk_core/common/keyboard.c | 12 | ||||
-rw-r--r-- | tmk_core/protocol/chibios/main.c | 13 |
2 files changed, 12 insertions, 13 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 132affe7a..24baf41c0 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c | |||
@@ -94,6 +94,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
94 | #ifdef DIP_SWITCH_ENABLE | 94 | #ifdef DIP_SWITCH_ENABLE |
95 | # include "dip_switch.h" | 95 | # include "dip_switch.h" |
96 | #endif | 96 | #endif |
97 | #ifdef STM32_EEPROM_ENABLE | ||
98 | # include "eeprom_stm32.h" | ||
99 | #endif | ||
100 | #ifdef EEPROM_DRIVER | ||
101 | # include "eeprom_driver.h" | ||
102 | #endif | ||
97 | 103 | ||
98 | static uint32_t last_input_modification_time = 0; | 104 | static uint32_t last_input_modification_time = 0; |
99 | uint32_t last_input_activity_time(void) { return last_input_modification_time; } | 105 | uint32_t last_input_activity_time(void) { return last_input_modification_time; } |
@@ -231,6 +237,12 @@ void keyboard_setup(void) { | |||
231 | disable_jtag(); | 237 | disable_jtag(); |
232 | #endif | 238 | #endif |
233 | print_set_sendchar(sendchar); | 239 | print_set_sendchar(sendchar); |
240 | #ifdef STM32_EEPROM_ENABLE | ||
241 | EEPROM_Init(); | ||
242 | #endif | ||
243 | #ifdef EEPROM_DRIVER | ||
244 | eeprom_driver_init(); | ||
245 | #endif | ||
234 | matrix_setup(); | 246 | matrix_setup(); |
235 | keyboard_pre_init_kb(); | 247 | keyboard_pre_init_kb(); |
236 | } | 248 | } |
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c index 63e4c99d2..e2ec01118 100644 --- a/tmk_core/protocol/chibios/main.c +++ b/tmk_core/protocol/chibios/main.c | |||
@@ -51,12 +51,6 @@ | |||
51 | #ifdef MIDI_ENABLE | 51 | #ifdef MIDI_ENABLE |
52 | # include "qmk_midi.h" | 52 | # include "qmk_midi.h" |
53 | #endif | 53 | #endif |
54 | #ifdef STM32_EEPROM_ENABLE | ||
55 | # include "eeprom_stm32.h" | ||
56 | #endif | ||
57 | #ifdef EEPROM_DRIVER | ||
58 | # include "eeprom_driver.h" | ||
59 | #endif | ||
60 | #include "suspend.h" | 54 | #include "suspend.h" |
61 | #include "wait.h" | 55 | #include "wait.h" |
62 | 56 | ||
@@ -150,13 +144,6 @@ int main(void) { | |||
150 | halInit(); | 144 | halInit(); |
151 | chSysInit(); | 145 | chSysInit(); |
152 | 146 | ||
153 | #ifdef STM32_EEPROM_ENABLE | ||
154 | EEPROM_Init(); | ||
155 | #endif | ||
156 | #ifdef EEPROM_DRIVER | ||
157 | eeprom_driver_init(); | ||
158 | #endif | ||
159 | |||
160 | // TESTING | 147 | // TESTING |
161 | // chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); | 148 | // chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); |
162 | 149 | ||