~ruther/qmk_firmware

8449a4a11f28ce1d336c681ec217fbf5d1279339 — QMK Bot 3 years ago 31fb55a + 5d882ab
Merge remote-tracking branch 'origin/master' into develop
M keyboards/handwired/onekey/bluepill_f103c6/config.h => keyboards/handwired/onekey/bluepill_f103c6/config.h +1 -1
@@ 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

M keyboards/handwired/onekey/info.json => keyboards/handwired/onekey/info.json +1 -1
@@ 12,7 12,7 @@
        "bootmagic": false,
        "mousekey": false,
        "extrakey": true,
        "console": true,
        "console": false,
        "command": false,
        "nkro": false,
        "backlight": false,

M keyboards/handwired/onekey/keymaps/console/keymap.c => keyboards/handwired/onekey/keymaps/console/keymap.c +8 -0
@@ 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;
}

A keyboards/handwired/onekey/keymaps/console/rules.mk => keyboards/handwired/onekey/keymaps/console/rules.mk +2 -0
@@ 0,0 1,2 @@
CONSOLE_ENABLE = yes
DEBUG_MATRIX_SCAN_RATE_ENABLE = yes

A keyboards/handwired/onekey/keymaps/hardware_id/rules.mk => keyboards/handwired/onekey/keymaps/hardware_id/rules.mk +1 -0
@@ 0,0 1,1 @@
CONSOLE_ENABLE = yes

M keyboards/handwired/onekey/keymaps/oled/rules.mk => keyboards/handwired/onekey/keymaps/oled/rules.mk +1 -0
@@ 1,3 1,4 @@
OLED_ENABLE = yes
OLED_DRIVER = SSD1306
TAP_DANCE_ENABLE = yes
CONSOLE_ENABLE = yes