diff --git a/right/src/bridge_slaves/bridge_slave_uhk_module.c b/right/src/bridge_slaves/bridge_slave_uhk_module.c index 73c26d9..39c9d2a 100644 --- a/right/src/bridge_slaves/bridge_slave_uhk_module.c +++ b/right/src/bridge_slaves/bridge_slave_uhk_module.c @@ -3,7 +3,7 @@ #include "bridge_slave_uhk_module.h" #include "bridge_protocol.h" #include "main.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" uhk_module_state_t UhkModuleStates[UHK_MODULE_MAX_COUNT]; uhk_module_field_t currentUhkModuleField = UhkModuleField_SendKeystatesRequestCommand; diff --git a/right/src/buspal/bm_usb/hid_bootloader.c b/right/src/buspal/bm_usb/hid_bootloader.c index 433af96..e16cdfe 100644 --- a/right/src/buspal/bm_usb/hid_bootloader.c +++ b/right/src/buspal/bm_usb/hid_bootloader.c @@ -1,6 +1,6 @@ #include "usb_descriptor.h" #include "composite.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" extern usb_device_endpoint_struct_t g_hid_generic_endpoints[]; static usb_device_composite_struct_t *g_device_composite; diff --git a/right/src/buspal/bus_pal_hardware.c b/right/src/buspal/bus_pal_hardware.c index 2ed8291..9a9be2d 100644 --- a/right/src/buspal/bus_pal_hardware.c +++ b/right/src/buspal/bus_pal_hardware.c @@ -5,7 +5,7 @@ #include "bootloader_config.h" #include "microseconds/microseconds.h" #include "i2c.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" bool usb_hid_poll_for_activity(const peripheral_descriptor_t *self); static status_t usb_device_full_init(const peripheral_descriptor_t *self, serial_byte_receive_func_t function); diff --git a/right/src/buspal/command.c b/right/src/buspal/command.c index be04230..29d9486 100644 --- a/right/src/buspal/command.c +++ b/right/src/buspal/command.c @@ -1,7 +1,7 @@ #include "command.h" #include "crc16.h" #include "bus_pal_hardware.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" command_processor_data_t g_commandData; buspal_state_t g_buspalState = kBuspal_Idle; diff --git a/right/src/init_peripherials.c b/right/src/init_peripherials.c index 623a618..a9b7286 100644 --- a/right/src/init_peripherials.c +++ b/right/src/init_peripherials.c @@ -1,11 +1,11 @@ #include "fsl_common.h" #include "fsl_port.h" -#include "peripherials/test_led.h" -#include "peripherials/reset_button.h" +#include "peripherals/test_led.h" +#include "peripherals/reset_button.h" #include "i2c.h" #include "i2c_watchdog.h" #include "led_driver.h" -#include "peripherials/merge_sensor.h" +#include "peripherals/merge_sensor.h" #include "led_pwm.h" #include "bridge_protocol_scheduler.h" diff --git a/right/src/main.c b/right/src/main.c index 38ca582..71cc9e9 100644 --- a/right/src/main.c +++ b/right/src/main.c @@ -6,7 +6,7 @@ #include "deserialize.h" #include "action.h" #include "bridge_protocol_scheduler.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" #include "usb_interfaces/usb_interface_basic_keyboard.h" #include "usb_interfaces/usb_interface_media_keyboard.h" #include "bus_pal_hardware.h" diff --git a/right/src/peripherials/merge_sensor.c b/right/src/peripherals/merge_sensor.c similarity index 100% rename from right/src/peripherials/merge_sensor.c rename to right/src/peripherals/merge_sensor.c diff --git a/right/src/peripherials/merge_sensor.h b/right/src/peripherals/merge_sensor.h similarity index 100% rename from right/src/peripherials/merge_sensor.h rename to right/src/peripherals/merge_sensor.h diff --git a/right/src/peripherials/reset_button.c b/right/src/peripherals/reset_button.c similarity index 100% rename from right/src/peripherials/reset_button.c rename to right/src/peripherals/reset_button.c diff --git a/right/src/peripherials/reset_button.h b/right/src/peripherals/reset_button.h similarity index 100% rename from right/src/peripherials/reset_button.h rename to right/src/peripherals/reset_button.h diff --git a/right/src/peripherials/test_led.c b/right/src/peripherals/test_led.c similarity index 100% rename from right/src/peripherials/test_led.c rename to right/src/peripherals/test_led.c diff --git a/right/src/peripherials/test_led.h b/right/src/peripherals/test_led.h similarity index 100% rename from right/src/peripherials/test_led.h rename to right/src/peripherals/test_led.h diff --git a/right/src/usb_interfaces/usb_interface_basic_keyboard.c b/right/src/usb_interfaces/usb_interface_basic_keyboard.c index a73852d..f474fa1 100644 --- a/right/src/usb_interfaces/usb_interface_basic_keyboard.c +++ b/right/src/usb_interfaces/usb_interface_basic_keyboard.c @@ -3,7 +3,7 @@ #include "fsl_port.h" #include "usb_api.h" #include "usb_composite_device.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" #include "fsl_i2c.h" #include "i2c.h" #include "i2c_addresses.h" diff --git a/right/src/usb_interfaces/usb_interface_media_keyboard.c b/right/src/usb_interfaces/usb_interface_media_keyboard.c index 1f4b6db..d4e5aa6 100644 --- a/right/src/usb_interfaces/usb_interface_media_keyboard.c +++ b/right/src/usb_interfaces/usb_interface_media_keyboard.c @@ -3,7 +3,7 @@ #include "fsl_port.h" #include "usb_api.h" #include "usb_composite_device.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" #include "fsl_i2c.h" #include "i2c.h" #include "i2c_addresses.h" diff --git a/right/src/usb_interfaces/usb_interface_mouse.c b/right/src/usb_interfaces/usb_interface_mouse.c index 4b0d744..812f921 100644 --- a/right/src/usb_interfaces/usb_interface_mouse.c +++ b/right/src/usb_interfaces/usb_interface_mouse.c @@ -2,7 +2,7 @@ #include "usb_interface_mouse.h" #include "fsl_i2c.h" #include "i2c.h" -#include "peripherials/reset_button.h" +#include "peripherals/reset_button.h" #include "action.h" static usb_device_endpoint_struct_t UsbMouseEndpoints[USB_MOUSE_ENDPOINT_COUNT] = {{ diff --git a/right/src/usb_interfaces/usb_interface_system_keyboard.c b/right/src/usb_interfaces/usb_interface_system_keyboard.c index 958f540..7fd52d8 100644 --- a/right/src/usb_interfaces/usb_interface_system_keyboard.c +++ b/right/src/usb_interfaces/usb_interface_system_keyboard.c @@ -3,7 +3,7 @@ #include "fsl_port.h" #include "usb_api.h" #include "usb_composite_device.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" #include "fsl_i2c.h" #include "i2c.h" #include "i2c_addresses.h" diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index ea45a79..c36aaa7 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -1,9 +1,9 @@ #include "usb_protocol_handler.h" #include "system_properties.h" -#include "peripherials/test_led.h" +#include "peripherals/test_led.h" #include "i2c_addresses.h" #include "led_driver.h" -#include "peripherials/merge_sensor.h" +#include "peripherals/merge_sensor.h" #include "deserialize.h" #include "config_buffer.h" #include "led_pwm.h"