diff --git a/right/src/config/config_state.c b/right/src/config_parser/config_state.c similarity index 100% rename from right/src/config/config_state.c rename to right/src/config_parser/config_state.c diff --git a/right/src/config/config_state.h b/right/src/config_parser/config_state.h similarity index 100% rename from right/src/config/config_state.h rename to right/src/config_parser/config_state.h diff --git a/right/src/config/parse_config.c b/right/src/config_parser/parse_config.c similarity index 100% rename from right/src/config/parse_config.c rename to right/src/config_parser/parse_config.c diff --git a/right/src/config/parse_config.h b/right/src/config_parser/parse_config.h similarity index 100% rename from right/src/config/parse_config.h rename to right/src/config_parser/parse_config.h diff --git a/right/src/config/parse_keymap.c b/right/src/config_parser/parse_keymap.c similarity index 99% rename from right/src/config/parse_keymap.c rename to right/src/config_parser/parse_keymap.c index 31e319b..15e51dc 100644 --- a/right/src/config/parse_keymap.c +++ b/right/src/config_parser/parse_keymap.c @@ -1,4 +1,4 @@ -#include "config/parse_keymap.h" +#include "config_parser/parse_keymap.h" #include "key_action.h" #include "current_keymap.h" #include "led_display.h" diff --git a/right/src/config/parse_keymap.h b/right/src/config_parser/parse_keymap.h similarity index 100% rename from right/src/config/parse_keymap.h rename to right/src/config_parser/parse_keymap.h diff --git a/right/src/config/parse_macro.c b/right/src/config_parser/parse_macro.c similarity index 100% rename from right/src/config/parse_macro.c rename to right/src/config_parser/parse_macro.c diff --git a/right/src/config/parse_macro.h b/right/src/config_parser/parse_macro.h similarity index 100% rename from right/src/config/parse_macro.h rename to right/src/config_parser/parse_macro.h diff --git a/right/src/eeprom.c b/right/src/eeprom.c index 2257696..638e956 100644 --- a/right/src/eeprom.c +++ b/right/src/eeprom.c @@ -1,5 +1,5 @@ #include "fsl_common.h" -#include "config/config_state.h" +#include "config_parser/config_state.h" #include "i2c_addresses.h" #include "i2c.h" #include "eeprom.h" diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index e9ae024..778ec7f 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -4,8 +4,8 @@ #include "i2c_addresses.h" #include "peripherals/led_driver.h" #include "peripherals/merge_sensor.h" -#include "config/parse_config.h" -#include "config/config_state.h" +#include "config_parser/parse_config.h" +#include "config_parser/config_state.h" #include "led_pwm.h" #include "slave_scheduler.h" #include "slave_drivers/uhk_module_driver.h"