summaryrefslogtreecommitdiff
path: root/keyboard/sixkeyboard/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorChristopher Browne <cbbrowne@ca.afilias.info>2016-06-22 11:26:26 -0400
committerChristopher Browne <cbbrowne@ca.afilias.info>2016-06-22 11:26:26 -0400
commitb0caf32741cf415a45333828f1661d9f6b72570f (patch)
tree5e2b8203ab232c0a89264e96716ebf1a859f6189 /keyboard/sixkeyboard/keymaps/default/keymap.c
parentee3c7892ad585e2e702d8975420d25ae052d97bb (diff)
parent8c1bfdf0bd9aae13d8722fd107deca40ffc7932c (diff)
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'keyboard/sixkeyboard/keymaps/default/keymap.c')
-rw-r--r--keyboard/sixkeyboard/keymaps/default/keymap.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/keyboard/sixkeyboard/keymaps/default/keymap.c b/keyboard/sixkeyboard/keymaps/default/keymap.c
deleted file mode 100644
index 641ed790e8..0000000000
--- a/keyboard/sixkeyboard/keymaps/default/keymap.c
+++ /dev/null
@@ -1,39 +0,0 @@
-// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
-// this is the style you want to emulate.
-
-#include "sixkeyboard.h"
-#include "matrix.h"
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[0] = {
- {KC_A, KC_B, KC_C},
- {KC_D, KC_E, KC_F}
- }
-};
-
-const uint16_t PROGMEM fn_actions[] = {
-
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
- }
- return MACRO_NONE;
-};
-
-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();
- }
-}; \ No newline at end of file