diff --git a/right/src/config_parser/parse_config.c b/right/src/config_parser/parse_config.c index ce12173..a311709 100644 --- a/right/src/config_parser/parse_config.c +++ b/right/src/config_parser/parse_config.c @@ -1,7 +1,7 @@ #include "parse_config.h" #include "parse_keymap.h" #include "parse_macro.h" -#include "keymaps.h" +#include "keymap.h" #include "config_globals.h" #include "macros.h" diff --git a/right/src/config_parser/parse_keymap.c b/right/src/config_parser/parse_keymap.c index d83564a..5ffd0d0 100644 --- a/right/src/config_parser/parse_keymap.c +++ b/right/src/config_parser/parse_keymap.c @@ -2,7 +2,7 @@ #include "config_parser/parse_config.h" #include "config_parser/parse_keymap.h" #include "key_action.h" -#include "keymaps.h" +#include "keymap.h" #include "led_display.h" static uint8_t tempKeymapCount; diff --git a/right/src/keymaps.c b/right/src/keymap.c similarity index 99% rename from right/src/keymaps.c rename to right/src/keymap.c index 0cf99e6..851bc09 100644 --- a/right/src/keymaps.c +++ b/right/src/keymap.c @@ -1,6 +1,6 @@ #include "arduino_hid/ConsumerAPI.h" #include "arduino_hid/SystemAPI.h" -#include "keymaps.h" +#include "keymap.h" #include "led_display.h" #include "config_parser/parse_keymap.h" #include "config_parser/config_globals.h" diff --git a/right/src/keymaps.h b/right/src/keymap.h similarity index 100% rename from right/src/keymaps.h rename to right/src/keymap.h diff --git a/right/src/layer.c b/right/src/layer.c index fabe67f..fc8b138 100644 --- a/right/src/layer.c +++ b/right/src/layer.c @@ -2,7 +2,7 @@ #include "slot.h" #include "module.h" #include "key_states.h" -#include "keymaps.h" +#include "keymap.h" static bool heldLayers[LAYER_COUNT]; static bool pressedLayers[LAYER_COUNT]; diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index 50f18d6..82d5357 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -13,7 +13,7 @@ #include "bootloader/wormhole.h" #include "peripherals/adc.h" #include "eeprom.h" -#include "keymaps.h" +#include "keymap.h" #include "microseconds/microseconds_pit.c" #include "i2c_watchdog.h" diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index 5e6323c..c0371a1 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -3,7 +3,7 @@ #include "led_display.h" #include "layer.h" #include "usb_interfaces/usb_interface_mouse.h" -#include "keymaps.h" +#include "keymap.h" #include "peripherals/test_led.h" #include "slave_drivers/is31fl3731_driver.h" #include "slave_drivers/uhk_module_driver.h"