summaryrefslogtreecommitdiffstats
path: root/keyboards/frosty_flake/keymaps
diff options
context:
space:
mode:
authorGabriel Young <gabeplaysdrums@live.com>2017-03-20 05:11:17 +0100
committerGabriel Young <gabeplaysdrums@live.com>2017-03-20 05:11:17 +0100
commita3a304db9ae09c3c5532c43e553cc24d3f9b29a2 (patch)
tree104ce7a7b186f0b46f591cb89e5e45d9d5fc9ed7 /keyboards/frosty_flake/keymaps
parentdb2da37561e836cd55f1ae279be4c8d1adbb648c (diff)
downloadqmk_firmware-a3a304db9ae09c3c5532c43e553cc24d3f9b29a2.tar.gz
qmk_firmware-a3a304db9ae09c3c5532c43e553cc24d3f9b29a2.tar.xz
clean up docs and provide defaults for keymap
Diffstat (limited to 'keyboards/frosty_flake/keymaps')
-rw-r--r--keyboards/frosty_flake/keymaps/default/Makefile4
-rw-r--r--keyboards/frosty_flake/keymaps/default/keymap.c38
2 files changed, 3 insertions, 39 deletions
diff --git a/keyboards/frosty_flake/keymaps/default/Makefile b/keyboards/frosty_flake/keymaps/default/Makefile
index 088766680..9d3df5964 100644
--- a/keyboards/frosty_flake/keymaps/default/Makefile
+++ b/keyboards/frosty_flake/keymaps/default/Makefile
@@ -3,9 +3,9 @@
# the appropriate keymap folder that will get included automatically
#
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = no # Mouse keys(+4700)
+MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = yes # Console for debug(+400)
+CONSOLE_ENABLE = no # Console for debug(+400)
COMMAND_ENABLE = yes # Commands for debug and configuration
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
diff --git a/keyboards/frosty_flake/keymaps/default/keymap.c b/keyboards/frosty_flake/keymaps/default/keymap.c
index 4383f7a8d..4dc7ed655 100644
--- a/keyboards/frosty_flake/keymaps/default/keymap.c
+++ b/keyboards/frosty_flake/keymaps/default/keymap.c
@@ -8,40 +8,4 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L,KC_SCLN,KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, \
KC_LSFT,KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M,KC_COMM, KC_DOT,KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3,KC_PENT, \
KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RGUI, KC_APP,KC_RCTL, KC_LEFT,KC_DOWN,KC_RGHT, KC_P0,KC_PDOT)
-};
-
-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_init_user(void) {
- debug_enable = true;
-}
-
-void matrix_scan_user(void) {
- matrix_print();
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-} \ No newline at end of file
+}; \ No newline at end of file