From fef35bf68e2b9cb2557b22a41dda2abad14674aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 6 Aug 2017 16:06:40 +0200 Subject: [PATCH] Rename slave_driver_uhk_module.[ch] to uhk_module_driver.[ch] --- .../{slave_driver_uhk_module.c => uhk_module_driver.c} | 2 +- .../{slave_driver_uhk_module.h => uhk_module_driver.h} | 0 right/src/slave_scheduler.c | 2 +- right/src/usb_protocol_handler.c | 2 +- right/src/usb_report_updater.c | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename right/src/slave_drivers/{slave_driver_uhk_module.c => uhk_module_driver.c} (98%) rename right/src/slave_drivers/{slave_driver_uhk_module.h => uhk_module_driver.h} (100%) diff --git a/right/src/slave_drivers/slave_driver_uhk_module.c b/right/src/slave_drivers/uhk_module_driver.c similarity index 98% rename from right/src/slave_drivers/slave_driver_uhk_module.c rename to right/src/slave_drivers/uhk_module_driver.c index 9a316c6..da056ad 100644 --- a/right/src/slave_drivers/slave_driver_uhk_module.c +++ b/right/src/slave_drivers/uhk_module_driver.c @@ -1,6 +1,6 @@ #include "i2c_addresses.h" #include "i2c.h" -#include "slave_drivers/slave_driver_uhk_module.h" +#include "slave_drivers/uhk_module_driver.h" #include "slave_protocol.h" #include "main.h" #include "peripherals/test_led.h" diff --git a/right/src/slave_drivers/slave_driver_uhk_module.h b/right/src/slave_drivers/uhk_module_driver.h similarity index 100% rename from right/src/slave_drivers/slave_driver_uhk_module.h rename to right/src/slave_drivers/uhk_module_driver.h diff --git a/right/src/slave_scheduler.c b/right/src/slave_scheduler.c index eb51032..77338cb 100644 --- a/right/src/slave_scheduler.c +++ b/right/src/slave_scheduler.c @@ -3,7 +3,7 @@ #include "slot.h" #include "main.h" #include "slave_drivers/slave_driver_led_driver.h" -#include "slave_drivers/slave_driver_uhk_module.h" +#include "slave_drivers/uhk_module_driver.h" #include "i2c.h" #include "i2c_addresses.h" #include "test_states.h" diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index 7ac5bff..e9ae024 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -8,7 +8,7 @@ #include "config/config_state.h" #include "led_pwm.h" #include "slave_scheduler.h" -#include "slave_drivers/slave_driver_uhk_module.h" +#include "slave_drivers/uhk_module_driver.h" #include "wormhole.h" #include "peripherals/adc.h" #include "eeprom.h" diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index 073cb8e..5af24f2 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -7,7 +7,7 @@ #include "test_states.h" #include "peripherals/test_led.h" #include "slave_drivers/slave_driver_led_driver.h" -#include "slave_drivers/slave_driver_uhk_module.h" +#include "slave_drivers/uhk_module_driver.h" #include "led_pwm.h" static uint8_t mouseWheelDivisorCounter = 0;