Disable onekey console by default (#19104)

This commit is contained in:
Joel Challis 2022-11-18 02:16:38 +00:00 committed by GitHub
parent d86c0d3723
commit 5d882ab6ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 2 deletions

View file

@ -18,3 +18,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
return true;
}
void keyboard_post_init_user(void) {
// Customise these values to desired behaviour
debug_enable=true;
debug_matrix=true;
//debug_keyboard=true;
//debug_mouse=true;
}