diff --git a/left/src/init_peripherals.c b/left/src/init_peripherals.c index ed352b2..e39916e 100644 --- a/left/src/init_peripherals.c +++ b/left/src/init_peripherals.c @@ -84,7 +84,7 @@ void InitPeripherals(void) { initInterruptPriorities(); InitLedDriver(); - InitTestLed(); + TestLed_Init(); LedPwm_Init(); DebugOverSpi_Init(); initI2c(); diff --git a/left/src/test_led.c b/left/src/test_led.c index acb24cd..a3bd5d1 100644 --- a/left/src/test_led.c +++ b/left/src/test_led.c @@ -1,7 +1,7 @@ #include "test_led.h" #include "fsl_port.h" -extern void InitTestLed(void) +extern void TestLed_Init(void) { CLOCK_EnableClock(TEST_LED_CLOCK); PORT_SetPinMux(TEST_LED_PORT, TEST_LED_PIN, kPORT_MuxAsGpio); diff --git a/left/src/test_led.h b/left/src/test_led.h index 2c3416f..0ca7fd3 100644 --- a/left/src/test_led.h +++ b/left/src/test_led.h @@ -22,6 +22,6 @@ // Functions: - void InitTestLed(void); + void TestLed_Init(void); #endif diff --git a/right/src/init_peripherals.c b/right/src/init_peripherals.c index e45afc7..7efcb20 100644 --- a/right/src/init_peripherals.c +++ b/right/src/init_peripherals.c @@ -156,7 +156,7 @@ void InitPeripherals(void) InitMergeSensor(); ADC_Init(); initI2c(); - InitTestLed(); + TestLed_Init(); LedPwm_Init(); InitI2cWatchdog(); InitKeyDebouncer(); diff --git a/right/src/peripherals/test_led.c b/right/src/peripherals/test_led.c index 50197e1..1ebfe11 100644 --- a/right/src/peripherals/test_led.c +++ b/right/src/peripherals/test_led.c @@ -1,7 +1,7 @@ #include "test_led.h" #include "fsl_port.h" -void InitTestLed(void) +void TestLed_Init(void) { CLOCK_EnableClock(TEST_LED_CLOCK); PORT_SetPinMux(TEST_LED_GPIO_PORT, TEST_LED_GPIO_PIN, kPORT_MuxAsGpio); diff --git a/right/src/peripherals/test_led.h b/right/src/peripherals/test_led.h index cd90365..1c1b7bf 100644 --- a/right/src/peripherals/test_led.h +++ b/right/src/peripherals/test_led.h @@ -22,6 +22,6 @@ // Functions: - void InitTestLed(void); + void TestLed_Init(void); #endif