1
0
Fork 0

Remove magic bodges from via keymaps (#19890)

This commit is contained in:
Joel Challis 2023-02-22 01:15:18 +00:00 committed by GitHub
parent 26854f5940
commit 0512e286a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 19 additions and 222 deletions

View file

@ -41,18 +41,6 @@ void keyboard_post_init_kb(void) {
#endif
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
if (!process_record_user(keycode, record)) { return false; }
switch(keycode) {
case LOCK_GUI:
process_magic(GUI_TOG, record);
return false;
default:
break;
}
return true;
}
void board_init(void) {
AFIO->MAPR |= AFIO_MAPR_TIM3_REMAP_PARTIALREMAP;
}