Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable onekey console by default #19104

Merged
merged 1 commit into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keyboards/handwired/onekey/bluepill_f103c6/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

// This code does not fit into the really small flash of STM32F103x6 together
// 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.
#define NO_ACTION_LAYER
#define NO_ACTION_TAPPING
2 changes: 1 addition & 1 deletion keyboards/handwired/onekey/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"bootmagic": false,
"mousekey": true,
"extrakey": true,
"console": true,
"console": false,
"command": false,
"nkro": true,
"backlight": false,
Expand Down
8 changes: 8 additions & 0 deletions keyboards/handwired/onekey/keymaps/console/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
2 changes: 2 additions & 0 deletions keyboards/handwired/onekey/keymaps/console/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONSOLE_ENABLE = yes
DEBUG_MATRIX_SCAN_RATE_ENABLE = yes
1 change: 1 addition & 0 deletions keyboards/handwired/onekey/keymaps/hardware_id/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONSOLE_ENABLE = yes
1 change: 1 addition & 0 deletions keyboards/handwired/onekey/keymaps/oled/rules.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
OLED_ENABLE = yes
OLED_DRIVER = SSD1306
TAP_DANCE_ENABLE = yes
CONSOLE_ENABLE = yes