diff --git a/src/animation.c b/src/animation.c index c90af11..7761c31 100644 --- a/src/animation.c +++ b/src/animation.c @@ -85,4 +85,4 @@ void TIM17_IRQHandler(void) { Animation_FrameFlag = true; TIM17->SR &= ~TIM_SR_UIF; -} \ No newline at end of file +} diff --git a/src/animation.h b/src/animation.h index 28ddc25..144291e 100644 --- a/src/animation.h +++ b/src/animation.h @@ -18,4 +18,4 @@ extern const unsigned int Animation_LEDOrder[LED_COUNT]; void Animation_Init(void); -void Animation_Poll(void); \ No newline at end of file +void Animation_Poll(void); diff --git a/src/led.h b/src/led.h index 2416ffd..cb9f8ea 100644 --- a/src/led.h +++ b/src/led.h @@ -35,4 +35,3 @@ void LED_WakeUp(void); // Display LED_PixelData, starting with the next frame void LED_Commit(void); - diff --git a/src/light_sensor.c b/src/light_sensor.c index 8a87dbd..3cc495b 100644 --- a/src/light_sensor.c +++ b/src/light_sensor.c @@ -126,4 +126,4 @@ void TIM14_IRQHandler(void) LightSensor_NewMeasurement = true; LightSensor_Measure(); -} \ No newline at end of file +} diff --git a/src/main.c b/src/main.c index bb229ca..1f3e7d9 100644 --- a/src/main.c +++ b/src/main.c @@ -36,4 +36,3 @@ int main(void) return 0; } - diff --git a/src/main.h b/src/main.h index 20c8393..60ab8f9 100644 --- a/src/main.h +++ b/src/main.h @@ -10,4 +10,3 @@ #include "animation.h" int main(void); - diff --git a/src/system.c b/src/system.c index 7ca3df8..0a64ee1 100644 --- a/src/system.c +++ b/src/system.c @@ -6,4 +6,3 @@ void SystemInit(void) // Disable all interrupts RCC->CIR = 0x00000000; } -