2013-03-09 02:22:27 +00:00
# ifndef BOOTMAGIC_H
# define BOOTMAGIC_H
2013-07-23 15:41:28 +00:00
/* bootmagic salt key */
# ifndef BOOTMAGIC_KEY_SALT
# define BOOTMAGIC_KEY_SALT KC_SPACE
# endif
/* skip bootmagic and eeconfig */
2013-04-07 06:36:50 +00:00
# ifndef BOOTMAGIC_KEY_SKIP
# define BOOTMAGIC_KEY_SKIP KC_ESC
# endif
/* eeprom clear */
# ifndef BOOTMAGIC_KEY_EEPROM_CLEAR
# define BOOTMAGIC_KEY_EEPROM_CLEAR KC_BSPACE
2013-03-09 02:22:27 +00:00
# endif
2013-03-10 10:22:54 +00:00
/* kick up bootloader */
2013-04-07 06:36:50 +00:00
# ifndef BOOTMAGIC_KEY_BOOTLOADER
# define BOOTMAGIC_KEY_BOOTLOADER KC_B
2013-03-09 02:22:27 +00:00
# endif
2013-04-07 06:36:50 +00:00
2013-03-09 02:22:27 +00:00
/* debug enable */
2013-09-21 12:21:34 +00:00
# ifndef BOOTMAGIC_KEY_DEBUG_ENABLE
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEBUG_ENABLE KC_D
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEBUG_MATRIX
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEBUG_MATRIX KC_X
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEBUG_KEYBOARD
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEBUG_KEYBOARD KC_K
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEBUG_MOUSE
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEBUG_MOUSE KC_M
2013-09-21 12:21:34 +00:00
# endif
2013-03-09 02:22:27 +00:00
2013-03-10 10:22:54 +00:00
/*
2013-04-07 06:36:50 +00:00
* keymap config
2013-03-10 10:22:54 +00:00
*/
2013-09-21 12:21:34 +00:00
# ifndef BOOTMAGIC_KEY_SWAP_CONTROL_CAPSLOCK
# define BOOTMAGIC_KEY_SWAP_CONTROL_CAPSLOCK KC_LCTRL
# endif
# ifndef BOOTMAGIC_KEY_CAPSLOCK_TO_CONTROL
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_CAPSLOCK_TO_CONTROL KC_CAPSLOCK
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_SWAP_LALT_LGUI
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_SWAP_LALT_LGUI KC_LALT
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_SWAP_RALT_RGUI
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_SWAP_RALT_RGUI KC_RALT
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_NO_GUI
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_NO_GUI KC_LGUI
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_SWAP_GRAVE_ESC
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_SWAP_GRAVE_ESC KC_GRAVE
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_SWAP_BACKSLASH_BACKSPACE
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_SWAP_BACKSLASH_BACKSPACE KC_BSLASH
2013-09-21 12:21:34 +00:00
# endif
2013-03-10 10:22:54 +00:00
/*
* change default layer
*/
2013-09-21 12:21:34 +00:00
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_0
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_0 KC_0
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_1
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_1 KC_1
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_2
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_2 KC_2
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_3
2013-04-07 06:36:50 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_3 KC_3
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_4
2013-06-22 07:14:56 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_4 KC_4
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_5
2013-06-22 07:14:56 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_5 KC_5
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_6
2013-06-22 07:14:56 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_6 KC_6
2013-09-21 12:21:34 +00:00
# endif
# ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_7
2013-06-22 07:14:56 +00:00
# define BOOTMAGIC_KEY_DEFAULT_LAYER_7 KC_7
2013-09-21 12:21:34 +00:00
# endif
2013-03-09 02:22:27 +00:00
2013-03-10 10:22:54 +00:00
2013-03-09 02:22:27 +00:00
void bootmagic ( void ) ;
bool bootmagic_scan_keycode ( uint8_t keycode ) ;
# endif