1
0
Fork 0

[Keyboard] Instant60 Tsangan (#5580)

* Update instant60 for tsangan version

* Add extra init hook

* Remove hacky first init thing
This commit is contained in:
Andrew Kannan 2019-04-07 21:32:16 -04:00 committed by Drashna Jaelre
parent 8dd0ff6c7a
commit 6a4c54870c
4 changed files with 94 additions and 11 deletions

View file

@ -15,7 +15,6 @@ backlight_config_t kb_backlight_config = {
.level = BACKLIGHT_LEVELS
};
bool eeprom_is_valid(void)
{
return (eeprom_read_word(((void*)EEPROM_MAGIC_ADDR)) == EEPROM_MAGIC &&
@ -51,9 +50,13 @@ void eeprom_init_kb(void)
} else {
// Save the magic number last, in case saving was interrupted
eeprom_set_valid(true);
save_backlight_config_to_eeprom();
}
}
__attribute__ ((weak))
void matrix_init_board(void);
void matrix_init_kb(void){
eeprom_init_kb();
/* MOSI pin*/
@ -64,6 +67,8 @@ void matrix_init_kb(void){
leds_init();
#endif
backlight_init_ports();
matrix_init_board();
}
void matrix_scan_kb(void)