From 2a3db7b9fbea8cdba848beeee3be67cdb7feb122 Mon Sep 17 00:00:00 2001 From: fruchti Date: Wed, 2 Sep 2020 00:12:14 +0200 Subject: [PATCH] Fix EOF newlines --- src/animation.c | 2 +- src/animation.h | 2 +- src/led.h | 1 - src/light_sensor.c | 2 +- src/main.c | 1 - src/main.h | 1 - src/system.c | 1 - 7 files changed, 3 insertions(+), 7 deletions(-) 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; } -