mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	fixed merging
This commit is contained in:
		
						commit
						66c1024bd3
					
				| @ -38,6 +38,27 @@ | |||||||
| # To rebuild project do "make clean" then "make all".
 | # To rebuild project do "make clean" then "make all".
 | ||||||
| #----------------------------------------------------------------------------
 | #----------------------------------------------------------------------------
 | ||||||
| 
 | 
 | ||||||
|  | # Build Options
 | ||||||
|  | #   change to "no" to disable the options, or define them in the makefile.mk in 
 | ||||||
|  | #   the appropriate keymap folder that will get included automatically
 | ||||||
|  | #
 | ||||||
|  | BOOTMAGIC_ENABLE = yes      # Virtual DIP switch configuration(+1000) | ||||||
|  | MOUSEKEY_ENABLE = yes       # Mouse keys(+4700) | ||||||
|  | EXTRAKEY_ENABLE = yes       # Audio control and System control(+450) | ||||||
|  | CONSOLE_ENABLE = yes        # Console for debug(+400) | ||||||
|  | COMMAND_ENABLE = yes        # Commands for debug and configuration | ||||||
|  | NKRO_ENABLE = no            # USB Nkey Rollover - if this doesn't work, see here:  | ||||||
|  |                             # https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||||||
|  | BACKLIGHT_ENABLE = yes      # Enable keyboard backlight functionality | ||||||
|  | MIDI_ENABLE = no            # MIDI controls | ||||||
|  | AUDIO_ENABLE = no           # Audio output on port C6 | ||||||
|  | UNICODE_ENABLE = no         # Unicode | ||||||
|  | BLUETOOTH_ENABLE = no       # Enable Bluetooth with the Adafruit EZ-Key HID | ||||||
|  | RGBLIGHT_ENABLE = no        # Enable WS2812 RGB underlight.  Do not enable this with audio at the same time. | ||||||
|  | 
 | ||||||
|  | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
 | ||||||
|  | SLEEP_LED_ENABLE = no    # Breathing sleep LED during USB suspend | ||||||
|  | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = planck | TARGET = planck | ||||||
| 
 | 
 | ||||||
| @ -62,17 +83,28 @@ ifneq ("$(wildcard keymaps/$(KEYMAP).c)","") | |||||||
| else | else | ||||||
| ifneq ("$(wildcard keymaps/$(KEYMAP)/keymap.c)","") | ifneq ("$(wildcard keymaps/$(KEYMAP)/keymap.c)","") | ||||||
| 	KEYMAP_FILE = keymaps/$(KEYMAP)/keymap.c | 	KEYMAP_FILE = keymaps/$(KEYMAP)/keymap.c | ||||||
|  | ifneq ("$(wildcard keymaps/$(KEYMAP)/makefile.mk)","") | ||||||
|  | 	include keymaps/$(KEYMAP)/makefile.mk | ||||||
|  | endif | ||||||
| else | else | ||||||
| $(error Keymap file does not exist) | $(error Keymap file does not exist) | ||||||
|  | endif  | ||||||
| endif | endif | ||||||
| endif | 
 | ||||||
| else | else | ||||||
|  | 
 | ||||||
| ifneq ("$(wildcard keymaps/default.c)","") | ifneq ("$(wildcard keymaps/default.c)","") | ||||||
| 	KEYMAP_FILE = keymaps/default.c | 	KEYMAP_FILE = keymaps/default.c | ||||||
| else | else | ||||||
| 	KEYMAP_FILE = keymaps/default/keymap.c | 	KEYMAP_FILE = keymaps/default/keymap.c | ||||||
| endif | endif | ||||||
|  | 
 | ||||||
|  | ifneq ("$(wildcard keymaps/default/makefile.mk)","") | ||||||
|  | 	include keymaps/default/makefile.mk | ||||||
| endif | endif | ||||||
|  | 
 | ||||||
|  | endif | ||||||
|  | 
 | ||||||
| SRC := $(KEYMAP_FILE) $(SRC) | SRC := $(KEYMAP_FILE) $(SRC) | ||||||
| 
 | 
 | ||||||
| CONFIG_H = config.h | CONFIG_H = config.h | ||||||
| @ -127,6 +159,7 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | |||||||
| OPT_DEFS += -DBOOTLOADER_SIZE=4096 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | <<<<<<< HEAD | ||||||
| # Build Options
 | # Build Options
 | ||||||
| #   comment out to disable the options.
 | #   comment out to disable the options.
 | ||||||
| #
 | #
 | ||||||
| @ -148,6 +181,9 @@ NKRO_ENABLE = yes           # USB Nkey Rollover - if this doesn't work, see here | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| ifdef BACKLIGHT_ENABLE | ifdef BACKLIGHT_ENABLE | ||||||
|  | ======= | ||||||
|  | ifeq ($(BACKLIGHT_ENABLE), yes) | ||||||
|  | >>>>>>> master | ||||||
| 	SRC += backlight.c | 	SRC += backlight.c | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -5,6 +5,10 @@ | |||||||
| #ifdef BACKLIGHT_ENABLE | #ifdef BACKLIGHT_ENABLE | ||||||
|   #include "backlight.h" |   #include "backlight.h" | ||||||
| #endif | #endif | ||||||
|  | #include "action_layer.h" | ||||||
|  | #ifdef AUDIO_ENABLE | ||||||
|  |   #include "audio.h" | ||||||
|  | #endif | ||||||
| 
 | 
 | ||||||
| // Each layer gets a name for readability, which is then used in the keymap matrix below.
 | // Each layer gets a name for readability, which is then used in the keymap matrix below.
 | ||||||
| // The underscores don't mean anything - you can have a layer called STUFF or any other name.
 | // The underscores don't mean anything - you can have a layer called STUFF or any other name.
 | ||||||
| @ -15,6 +19,15 @@ | |||||||
| #define _DV 2 | #define _DV 2 | ||||||
| #define _LW 3 | #define _LW 3 | ||||||
| #define _RS 4 | #define _RS 4 | ||||||
|  | #define _AD 5 | ||||||
|  | 
 | ||||||
|  | // Macro name shortcuts
 | ||||||
|  | #define M_QW 0 | ||||||
|  | #define M_CM 1 | ||||||
|  | #define M_DV 2 | ||||||
|  | #define M_LW 3 | ||||||
|  | #define M_RS 4 | ||||||
|  | #define M_BL 5 | ||||||
| 
 | 
 | ||||||
| // Fillers to make layering more clear
 | // Fillers to make layering more clear
 | ||||||
| #define _______ KC_TRNS | #define _______ KC_TRNS | ||||||
| @ -37,7 +50,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||||||
|   {KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC}, |   {KC_TAB,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC}, | ||||||
|   {KC_ESC,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT}, |   {KC_ESC,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT}, | ||||||
|   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT }, |   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT }, | ||||||
|   {M(0),    KC_LCTL, KC_LALT, KC_LGUI, MO(_LW), KC_SPC,  KC_SPC,  MO(_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} |   {M(M_BL), KC_LCTL, KC_LALT, KC_LGUI, M(M_LW), KC_SPC,  KC_SPC,  M(M_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} | ||||||
| }, | }, | ||||||
| 
 | 
 | ||||||
| /* Colemak
 | /* Colemak
 | ||||||
| @ -55,7 +68,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||||||
|   {KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_BSPC}, |   {KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_BSPC}, | ||||||
|   {KC_ESC,  KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT}, |   {KC_ESC,  KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT}, | ||||||
|   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT }, |   {KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT }, | ||||||
|   {M(0),    KC_LCTL, KC_LALT, KC_LGUI, MO(_LW), KC_SPC,  KC_SPC,  MO(_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} |   {M(M_BL), KC_LCTL, KC_LALT, KC_LGUI, M(M_LW), KC_SPC,  KC_SPC,  M(M_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} | ||||||
| }, | }, | ||||||
| 
 | 
 | ||||||
| /* Dvorak
 | /* Dvorak
 | ||||||
| @ -73,43 +86,61 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||||||
|   {KC_TAB,  KC_QUOT, KC_COMM, KC_DOT,  KC_P,    KC_Y,    KC_F,    KC_G,    KC_C,    KC_R,    KC_L,    KC_BSPC}, |   {KC_TAB,  KC_QUOT, KC_COMM, KC_DOT,  KC_P,    KC_Y,    KC_F,    KC_G,    KC_C,    KC_R,    KC_L,    KC_BSPC}, | ||||||
|   {KC_ESC,  KC_A,    KC_O,    KC_E,    KC_U,    KC_I,    KC_D,    KC_H,    KC_T,    KC_N,    KC_S,    KC_SLSH}, |   {KC_ESC,  KC_A,    KC_O,    KC_E,    KC_U,    KC_I,    KC_D,    KC_H,    KC_T,    KC_N,    KC_S,    KC_SLSH}, | ||||||
|   {KC_LSFT, KC_SCLN, KC_Q,    KC_J,    KC_K,    KC_X,    KC_B,    KC_M,    KC_W,    KC_V,    KC_Z,    KC_ENT }, |   {KC_LSFT, KC_SCLN, KC_Q,    KC_J,    KC_K,    KC_X,    KC_B,    KC_M,    KC_W,    KC_V,    KC_Z,    KC_ENT }, | ||||||
|   {M(0),    KC_LCTL, KC_LALT, KC_LGUI, MO(_LW), KC_SPC,  KC_SPC,  MO(_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} |   {M(M_BL), KC_LCTL, KC_LALT, KC_LGUI, M(M_LW), KC_SPC,  KC_SPC,  M(M_RS), KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT} | ||||||
| }, |  | ||||||
| 
 |  | ||||||
| /* Raise
 |  | ||||||
|  * ,-----------------------------------------------------------------------------------. |  | ||||||
|  * |   `  |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  | Bksp | |  | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  | ||||||
|  * | Esc  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   -  |   =  |   [  |   ]  |  \   | |  | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  | ||||||
|  * | Shift|  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |Qwerty|Colemk|Dvorak| Reset|Enter | |  | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  | ||||||
|  * | Brite| Ctrl | Alt  | GUI  |Lower |    Space    |Raise | Next | Vol- | Vol+ | Play | |  | ||||||
|  * `-----------------------------------------------------------------------------------' |  | ||||||
|  */ |  | ||||||
| [_RS] = { |  | ||||||
|   {KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_BSPC}, |  | ||||||
|   {_______, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS}, |  | ||||||
|   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  DF(_QW), DF(_CM), DF(_DV), RESET,   _______}, |  | ||||||
|   {_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY} |  | ||||||
| }, | }, | ||||||
| 
 | 
 | ||||||
| /* Lower
 | /* Lower
 | ||||||
|  * ,-----------------------------------------------------------------------------------. |  * ,-----------------------------------------------------------------------------------. | ||||||
|  * |   ~  |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  | Bksp | |  * |   ~  |   !  |   @  |   #  |   $  |   %  |   ^  |   &  |   *  |   (  |   )  | Bksp | | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  * |------+------+------+------+------+-------------+------+------+------+------+------| | ||||||
|  * | Esc  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   _  |   +  |   {  |   }  |  |   | |  * | Del  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   _  |   +  |   {  |   }  |  |   | | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  * |------+------+------+------+------+------|------+------+------+------+------+------| | ||||||
|  * | Shift|  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |Qwerty|Colemk|Dvorak| Reset|Enter | |  * |      |  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |      |      |      |      |Enter | | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  * |------+------+------+------+------+------+------+------+------+------+------+------| | ||||||
|  * | Brite| Ctrl | Alt  | GUI  |Lower |    Space    |Raise | Next | Vol- | Vol+ | Play | |  * |      |      |      |      |      |             |      | Next | Vol- | Vol+ | Play | | ||||||
|  * `-----------------------------------------------------------------------------------' |  * `-----------------------------------------------------------------------------------' | ||||||
|  */ |  */ | ||||||
| [_LW] = { | [_LW] = { | ||||||
|   {KC_TILD, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC}, |   {KC_TILD, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC}, | ||||||
|   {_______, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE}, |   {KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE}, | ||||||
|   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  DF(_QW), DF(_CM), DF(_DV), RESET,   _______}, |   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  _______, _______, _______, _______, _______}, | ||||||
|   {_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY} |   {_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY} | ||||||
|  | }, | ||||||
|  | 
 | ||||||
|  | /* Raise
 | ||||||
|  |  * ,-----------------------------------------------------------------------------------. | ||||||
|  |  * |   `  |   1  |   2  |   3  |   4  |   5  |   6  |   7  |   8  |   9  |   0  | Bksp | | ||||||
|  |  * |------+------+------+------+------+-------------+------+------+------+------+------| | ||||||
|  |  * | Del  |  F1  |  F2  |  F3  |  F4  |  F5  |  F6  |   -  |   =  |   [  |   ]  |  \   | | ||||||
|  |  * |------+------+------+------+------+------|------+------+------+------+------+------| | ||||||
|  |  * |      |  F7  |  F8  |  F9  |  F10 |  F11 |  F12 |      |      |      |      |Enter | | ||||||
|  |  * |------+------+------+------+------+------+------+------+------+------+------+------| | ||||||
|  |  * |      |      |      |      |      |             |      | Next | Vol- | Vol+ | Play | | ||||||
|  |  * `-----------------------------------------------------------------------------------' | ||||||
|  |  */ | ||||||
|  | [_RS] = { | ||||||
|  |   {KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_BSPC}, | ||||||
|  |   {KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS}, | ||||||
|  |   {_______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  _______, _______, _______, _______, _______}, | ||||||
|  |   {_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY} | ||||||
|  | }, | ||||||
|  | 
 | ||||||
|  | /* Adjust (Lower + Raise)
 | ||||||
|  |  * ,-----------------------------------------------------------------------------------. | ||||||
|  |  * |      | Reset|      |      |      |      |      |      |      |      |      |  Del | | ||||||
|  |  * |------+------+------+------+------+-------------+------+------+------+------+------| | ||||||
|  |  * |      |      |      |      |      |      |      |Qwerty|Colemk|Dvorak|      |      | | ||||||
|  |  * |------+------+------+------+------+------|------+------+------+------+------+------| | ||||||
|  |  * |      |      |      |      |      |      |      |      |      |      |      |      | | ||||||
|  |  * |------+------+------+------+------+------+------+------+------+------+------+------| | ||||||
|  |  * |      |      |      |      |      |             |      |      |      |      |      | | ||||||
|  |  * `-----------------------------------------------------------------------------------' | ||||||
|  |  */ | ||||||
|  | [_AD] = { | ||||||
|  |   {_______, RESET,   _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL}, | ||||||
|  |   {_______, _______, _______, _______, _______, _______, _______, M(M_QW), M(M_CM), M(M_DV), _______, _______}, | ||||||
|  |   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, | ||||||
|  |   {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||||||
| } | } | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| @ -117,11 +148,92 @@ const uint16_t PROGMEM fn_actions[] = { | |||||||
| 
 | 
 | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
|  | #ifdef AUDIO_ENABLE | ||||||
|  | float tone_qw[][2] = { | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 400}, | ||||||
|  |   {440.0*pow(2.0,(60)/12.0), 400}, | ||||||
|  |   {0, 800}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 1600} | ||||||
|  | }; | ||||||
|  | 
 | ||||||
|  | float tone_cm[][2] = { | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 400}, | ||||||
|  |   {440.0*pow(2.0,(60)/12.0), 400}, | ||||||
|  |   {0, 800}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 1000}, | ||||||
|  |   {0, 200}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 1000} | ||||||
|  | }; | ||||||
|  | 
 | ||||||
|  | float tone_dv[][2] = { | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 400}, | ||||||
|  |   {440.0*pow(2.0,(60)/12.0), 400}, | ||||||
|  |   {0, 800}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 800}, | ||||||
|  |   {0, 200}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 800}, | ||||||
|  |   {0, 200}, | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 800} | ||||||
|  | }; | ||||||
|  | #endif | ||||||
|  | 
 | ||||||
|  | #define IS_LAYER_ON(layer)  ((layer_state) & (1<<(layer))) | ||||||
|  | #define IS_LAYER_OFF(layer) ((!layer_state) & (1<<(layer))) | ||||||
|  | 
 | ||||||
|  | void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3) { | ||||||
|  |   if (IS_LAYER_ON(layer1) && IS_LAYER_ON(layer2)) { | ||||||
|  |     layer_on(layer3); | ||||||
|  |   } else { | ||||||
|  |     layer_off(layer3); | ||||||
|  |   } | ||||||
|  | } | ||||||
| const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||||||
| { | { | ||||||
|   // MACRODOWN only works in this function
 |   // MACRODOWN only works in this function
 | ||||||
|       switch(id) { |       switch(id) { | ||||||
|         case 0: |         case M_QW: | ||||||
|  |           if (record->event.pressed) { | ||||||
|  |             #ifdef AUDIO_ENABLE | ||||||
|  |               play_notes(&tone_qw, 4, false); | ||||||
|  |             #endif | ||||||
|  |             default_layer_set(1UL<<_QW); | ||||||
|  |           } | ||||||
|  |           break; | ||||||
|  |         case M_CM: | ||||||
|  |           if (record->event.pressed) { | ||||||
|  |             #ifdef AUDIO_ENABLE | ||||||
|  |               play_notes(&tone_cm, 6, false); | ||||||
|  |             #endif | ||||||
|  |             default_layer_set(1UL<<_CM); | ||||||
|  |           } | ||||||
|  |           break; | ||||||
|  |         case M_DV: | ||||||
|  |           if (record->event.pressed) { | ||||||
|  |             #ifdef AUDIO_ENABLE | ||||||
|  |               play_notes(&tone_dv, 8, false); | ||||||
|  |             #endif | ||||||
|  |             default_layer_set(1UL<<_DV); | ||||||
|  |           } | ||||||
|  |           break; | ||||||
|  |         case M_LW: | ||||||
|  |           if (record->event.pressed) { | ||||||
|  |             layer_on(_LW); | ||||||
|  |             update_tri_layer(_LW, _RS, _AD); | ||||||
|  |           } else { | ||||||
|  |             layer_off(_LW); | ||||||
|  |             update_tri_layer(_LW, _RS, _AD); | ||||||
|  |           } | ||||||
|  |           break; | ||||||
|  |         case M_RS: | ||||||
|  |           if (record->event.pressed) { | ||||||
|  |             layer_on(_RS); | ||||||
|  |             update_tri_layer(_LW, _RS, _AD); | ||||||
|  |           } else { | ||||||
|  |             layer_off(_RS); | ||||||
|  |             update_tri_layer(_LW, _RS, _AD); | ||||||
|  |           } | ||||||
|  |           break; | ||||||
|  |         case M_BL: | ||||||
|           if (record->event.pressed) { |           if (record->event.pressed) { | ||||||
|             register_code(KC_RSFT); |             register_code(KC_RSFT); | ||||||
|             #ifdef BACKLIGHT_ENABLE |             #ifdef BACKLIGHT_ENABLE | ||||||
| @ -134,3 +246,20 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | |||||||
|       } |       } | ||||||
|     return MACRO_NONE; |     return MACRO_NONE; | ||||||
| }; | }; | ||||||
|  | 
 | ||||||
|  | #ifdef AUDIO_ENABLE | ||||||
|  | float start_up[][2] = { | ||||||
|  |   {440.0*pow(2.0,(67)/12.0), 650}, | ||||||
|  |   {440.0*pow(2.0,(64)/12.0), 450}, | ||||||
|  |   {440.0*pow(2.0,(55)/12.0), 450}, | ||||||
|  |   {440.0*pow(2.0,(60)/12.0), 450}, | ||||||
|  |   {440.0*pow(2.0,(64)/12.0), 1000} | ||||||
|  | }; | ||||||
|  | #endif | ||||||
|  | 
 | ||||||
|  | void matrix_init_user(void) { | ||||||
|  |   #ifdef AUDIO_ENABLE | ||||||
|  |     init_notes(); | ||||||
|  |     play_notes(&start_up, 5, false); | ||||||
|  |   #endif | ||||||
|  | } | ||||||
|  | |||||||
							
								
								
									
										1
									
								
								keyboard/planck/keymaps/default/makefile.mk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								keyboard/planck/keymaps/default/makefile.mk
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1 @@ | |||||||
|  | AUDIO_ENABLE = yes | ||||||
| @ -23,19 +23,19 @@ ifndef CUSTOM_MATRIX | |||||||
| 	SRC += $(QUANTUM_DIR)/matrix.c | 	SRC += $(QUANTUM_DIR)/matrix.c | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef MIDI_ENABLE | ifeq ($(MIDI_ENABLE), yes) | ||||||
| 	SRC += $(QUANTUM_DIR)/keymap_midi.c | 	SRC += $(QUANTUM_DIR)/keymap_midi.c | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef AUDIO_ENABLE | ifeq ($(AUDIO_ENABLE), yes) | ||||||
| 	SRC += $(QUANTUM_DIR)/audio.c | 	SRC += $(QUANTUM_DIR)/audio.c | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef UNICODE_ENABLE | ifeq ($(UNICODE_ENABLE), yes) | ||||||
| 	SRC += $(QUANTUM_DIR)/keymap_unicode.c | 	SRC += $(QUANTUM_DIR)/keymap_unicode.c | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef RGBLIGHT_ENABLE | ifeq ($(RGBLIGHT_ENABLE), yes) | ||||||
| 	SRC += $(QUANTUM_DIR)/light_ws2812.c | 	SRC += $(QUANTUM_DIR)/light_ws2812.c | ||||||
| 	SRC += $(QUANTUM_DIR)/rgblight.c | 	SRC += $(QUANTUM_DIR)/rgblight.c | ||||||
| 	OPT_DEFS += -DRGBLIGHT_ENABLE | 	OPT_DEFS += -DRGBLIGHT_ENABLE | ||||||
|  | |||||||
| @ -17,66 +17,66 @@ SRC +=	$(COMMON_DIR)/host.c \ | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Option modules
 | # Option modules
 | ||||||
| ifdef BOOTMAGIC_ENABLE | ifeq ($(BOOTMAGIC_ENABLE), yes) | ||||||
|     SRC += $(COMMON_DIR)/bootmagic.c |     SRC += $(COMMON_DIR)/bootmagic.c | ||||||
|     SRC += $(COMMON_DIR)/avr/eeconfig.c |     SRC += $(COMMON_DIR)/avr/eeconfig.c | ||||||
|     OPT_DEFS += -DBOOTMAGIC_ENABLE |     OPT_DEFS += -DBOOTMAGIC_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef MOUSEKEY_ENABLE | ifeq ($(MOUSEKEY_ENABLE), yes) | ||||||
|     SRC += $(COMMON_DIR)/mousekey.c |     SRC += $(COMMON_DIR)/mousekey.c | ||||||
|     OPT_DEFS += -DMOUSEKEY_ENABLE |     OPT_DEFS += -DMOUSEKEY_ENABLE | ||||||
|     OPT_DEFS += -DMOUSE_ENABLE |     OPT_DEFS += -DMOUSE_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef EXTRAKEY_ENABLE | ifeq ($(EXTRAKEY_ENABLE), yes) | ||||||
|     OPT_DEFS += -DEXTRAKEY_ENABLE |     OPT_DEFS += -DEXTRAKEY_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef CONSOLE_ENABLE | ifeq ($(CONSOLE_ENABLE), yes) | ||||||
|     OPT_DEFS += -DCONSOLE_ENABLE |     OPT_DEFS += -DCONSOLE_ENABLE | ||||||
| else | else | ||||||
|     OPT_DEFS += -DNO_PRINT |     OPT_DEFS += -DNO_PRINT | ||||||
|     OPT_DEFS += -DNO_DEBUG |     OPT_DEFS += -DNO_DEBUG | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef COMMAND_ENABLE | ifeq ($(COMMAND_ENABLE), yes) | ||||||
|     SRC += $(COMMON_DIR)/command.c |     SRC += $(COMMON_DIR)/command.c | ||||||
|     OPT_DEFS += -DCOMMAND_ENABLE |     OPT_DEFS += -DCOMMAND_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef NKRO_ENABLE | ifeq ($(NKRO_ENABLE), yes) | ||||||
|     OPT_DEFS += -DNKRO_ENABLE |     OPT_DEFS += -DNKRO_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef MIDI_ENABLE | ifeq ($(MIDI_ENABLE), yes) | ||||||
|     OPT_DEFS += -DMIDI_ENABLE |     OPT_DEFS += -DMIDI_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef AUDIO_ENABLE | ifeq ($(AUDIO_ENABLE), yes) | ||||||
|     OPT_DEFS += -DAUDIO_ENABLE |     OPT_DEFS += -DAUDIO_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef USB_6KRO_ENABLE | ifeq ($(USB_6KRO_ENABLE), yes) | ||||||
|     OPT_DEFS += -DUSB_6KRO_ENABLE |     OPT_DEFS += -DUSB_6KRO_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef SLEEP_LED_ENABLE | ifeq ($(SLEEP_LED_ENABLE), yes) | ||||||
|     SRC += $(COMMON_DIR)/sleep_led.c |     SRC += $(COMMON_DIR)/sleep_led.c | ||||||
|     OPT_DEFS += -DSLEEP_LED_ENABLE |     OPT_DEFS += -DSLEEP_LED_ENABLE | ||||||
|     OPT_DEFS += -DNO_SUSPEND_POWER_DOWN |     OPT_DEFS += -DNO_SUSPEND_POWER_DOWN | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef BACKLIGHT_ENABLE | ifeq ($(BACKLIGHT_ENABLE), yes) | ||||||
|     SRC += $(COMMON_DIR)/backlight.c |     SRC += $(COMMON_DIR)/backlight.c | ||||||
|     OPT_DEFS += -DBACKLIGHT_ENABLE |     OPT_DEFS += -DBACKLIGHT_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef BLUETOOTH_ENABLE | ifeq ($(BLUETOOTH_ENABLE), yes) | ||||||
|     OPT_DEFS += -DBLUETOOTH_ENABLE |     OPT_DEFS += -DBLUETOOTH_ENABLE | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef KEYMAP_SECTION_ENABLE | ifeq ($(KEYMAP_SECTION_ENABLE), yes) | ||||||
|     OPT_DEFS += -DKEYMAP_SECTION_ENABLE |     OPT_DEFS += -DKEYMAP_SECTION_ENABLE | ||||||
| 
 | 
 | ||||||
|     ifeq ($(strip $(MCU)),atmega32u2) |     ifeq ($(strip $(MCU)),atmega32u2) | ||||||
|  | |||||||
| @ -17,7 +17,7 @@ LUFA_SRC = $(LUFA_DIR)/lufa.c \ | |||||||
| 	   $(LUFA_DIR)/descriptor.c \
 | 	   $(LUFA_DIR)/descriptor.c \
 | ||||||
| 	   $(LUFA_SRC_USB) | 	   $(LUFA_SRC_USB) | ||||||
| 
 | 
 | ||||||
| ifdef MIDI_ENABLE | ifeq ($(MIDI_ENABLE), yes) | ||||||
| 	LUFA_SRC += $(LUFA_DIR)/midi/midi.c \
 | 	LUFA_SRC += $(LUFA_DIR)/midi/midi.c \
 | ||||||
| 	   $(LUFA_DIR)/midi/midi_device.c \
 | 	   $(LUFA_DIR)/midi/midi_device.c \
 | ||||||
| 	   $(LUFA_DIR)/midi/bytequeue/bytequeue.c \
 | 	   $(LUFA_DIR)/midi/bytequeue/bytequeue.c \
 | ||||||
| @ -25,7 +25,7 @@ ifdef MIDI_ENABLE | |||||||
| 	   $(LUFA_SRC_USBCLASS) | 	   $(LUFA_SRC_USBCLASS) | ||||||
| endif | endif | ||||||
| 
 | 
 | ||||||
| ifdef BLUETOOTH_ENABLE | ifeq ($(BLUETOOTH_ENABLE), yes) | ||||||
| 	LUFA_SRC += $(LUFA_DIR)/bluetooth.c \
 | 	LUFA_SRC += $(LUFA_DIR)/bluetooth.c \
 | ||||||
| 	$(TMK_DIR)/protocol/serial_uart.c | 	$(TMK_DIR)/protocol/serial_uart.c | ||||||
| endif | endif | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 IBNobody
						IBNobody