kimera: Correct macro define to match keymap_in_eeprom
This commit is contained in:
parent
83314aeb78
commit
3ff2d2f330
@ -131,7 +131,7 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
|
|||||||
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
||||||
#PS2_USE_BUSYWAIT = yes
|
#PS2_USE_BUSYWAIT = yes
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
KEYMAP_EX_ENABLE = yes # External keymap in eeprom
|
KEYMAP_IN_EEPROM_ENABLE = yes # External keymap in eeprom
|
||||||
KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
||||||
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
|
|||||||
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
|
||||||
#PS2_USE_BUSYWAIT = yes
|
#PS2_USE_BUSYWAIT = yes
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
KEYMAP_EX_ENABLE = yes # External keymap in eeprom
|
KEYMAP_IN_EEPROM_ENABLE = yes # External keymap in eeprom
|
||||||
KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
KEYMAP_SECTION_ENABLE = yes # Fixed address keymap for keymap editor
|
||||||
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
BREATHING_LED_ENABLE = yes # Enable breathing backlight
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
/* translates key to keycode */
|
/* translates key to keycode */
|
||||||
uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
||||||
{
|
{
|
||||||
#ifndef KEYMAP_EX_ENABLE
|
#ifndef KEYMAP_IN_EEPROM_ENABLE
|
||||||
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
|
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
|
||||||
#else
|
#else
|
||||||
return eeconfig_read_keymap_key(layer, key.row, key.col);
|
return eeconfig_read_keymap_key(layer, key.row, key.col);
|
||||||
@ -30,7 +30,7 @@ uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
|
|||||||
action_t keymap_fn_to_action(uint8_t keycode)
|
action_t keymap_fn_to_action(uint8_t keycode)
|
||||||
{
|
{
|
||||||
return (action_t) {
|
return (action_t) {
|
||||||
#ifndef KEYMAP_EX_ENABLE
|
#ifndef KEYMAP_IN_EEPROM_ENABLE
|
||||||
.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)])
|
.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)])
|
||||||
#else
|
#else
|
||||||
.code = eeconfig_read_keymap_fn_action(FN_INDEX(keycode))
|
.code = eeconfig_read_keymap_fn_action(FN_INDEX(keycode))
|
||||||
@ -38,7 +38,7 @@ action_t keymap_fn_to_action(uint8_t keycode)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef KEYMAP_EX_ENABLE
|
#ifdef KEYMAP_IN_EEPROM_ENABLE
|
||||||
const uint8_t* keymaps_pointer(void) {
|
const uint8_t* keymaps_pointer(void) {
|
||||||
return (const uint8_t*)keymaps;
|
return (const uint8_t*)keymaps;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user