mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 09:55:48 +00:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
8449a4a11f
6 changed files with 14 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
// This code does not fit into the really small flash of STM32F103x6 together
|
// This code does not fit into the really small flash of STM32F103x6 together
|
||||||
// with CONSOLE_ENABLE=yes, and the debugging console is probably more
|
// with CONSOLE_ENABLE=yes, and the debugging console is probably more
|
||||||
// important for the "okeney" testing firmware. In a real firmware you may be
|
// important for the "onekey" testing firmware. In a real firmware you may be
|
||||||
// able to use these features if you keep the debugging console disabled.
|
// able to use these features if you keep the debugging console disabled.
|
||||||
#define NO_ACTION_LAYER
|
#define NO_ACTION_LAYER
|
||||||
#define NO_ACTION_TAPPING
|
#define NO_ACTION_TAPPING
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"bootmagic": false,
|
"bootmagic": false,
|
||||||
"mousekey": false,
|
"mousekey": false,
|
||||||
"extrakey": true,
|
"extrakey": true,
|
||||||
"console": true,
|
"console": false,
|
||||||
"command": false,
|
"command": false,
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"backlight": false,
|
"backlight": false,
|
||||||
|
|
|
@ -18,3 +18,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
}
|
}
|
||||||
return true;
|
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;
|
||||||
|
}
|
||||||
|
|
2
keyboards/handwired/onekey/keymaps/console/rules.mk
Normal file
2
keyboards/handwired/onekey/keymaps/console/rules.mk
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
CONSOLE_ENABLE = yes
|
||||||
|
DEBUG_MATRIX_SCAN_RATE_ENABLE = yes
|
1
keyboards/handwired/onekey/keymaps/hardware_id/rules.mk
Normal file
1
keyboards/handwired/onekey/keymaps/hardware_id/rules.mk
Normal file
|
@ -0,0 +1 @@
|
||||||
|
CONSOLE_ENABLE = yes
|
|
@ -1,3 +1,4 @@
|
||||||
OLED_ENABLE = yes
|
OLED_ENABLE = yes
|
||||||
OLED_DRIVER = SSD1306
|
OLED_DRIVER = SSD1306
|
||||||
TAP_DANCE_ENABLE = yes
|
TAP_DANCE_ENABLE = yes
|
||||||
|
CONSOLE_ENABLE = yes
|
||||||
|
|
Loading…
Reference in a new issue