~ruther/qmk_firmware

ref: 199f01cc5760055dfbdc89f426bf5a8f9b49bfb7 qmk_firmware/keyboards/sixkeyboard/keymaps/default/keymap.c -rw-r--r-- 383 bytes
199f01cc — James Young Migrate `LOCKING_*_ENABLE` to Data-Driven: M, Part 1 (#23772) 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include QMK_KEYBOARD_H
#include "matrix.h"

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  [0] = LAYOUT_ortho_2x3(
    KC_A, KC_B, KC_C,
    KC_D, KC_E, KC_F
  )
};

void matrix_scan_user(void) {
  // jump to bootloaer when all keys are pressed
  if (matrix_get_row(0) == 0b111 && matrix_get_row(1) == 0b111) {
    clear_keyboard();
    bootloader_jump();
  }
};
Do not follow this link