Fix EOF newlines
This commit is contained in:
parent
d6a5ee1689
commit
2a3db7b9fb
|
@ -85,4 +85,4 @@ void TIM17_IRQHandler(void)
|
|||
{
|
||||
Animation_FrameFlag = true;
|
||||
TIM17->SR &= ~TIM_SR_UIF;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,4 +18,4 @@
|
|||
extern const unsigned int Animation_LEDOrder[LED_COUNT];
|
||||
|
||||
void Animation_Init(void);
|
||||
void Animation_Poll(void);
|
||||
void Animation_Poll(void);
|
||||
|
|
|
@ -35,4 +35,3 @@ void LED_WakeUp(void);
|
|||
|
||||
// Display LED_PixelData, starting with the next frame
|
||||
void LED_Commit(void);
|
||||
|
||||
|
|
|
@ -126,4 +126,4 @@ void TIM14_IRQHandler(void)
|
|||
LightSensor_NewMeasurement = true;
|
||||
|
||||
LightSensor_Measure();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,4 +36,3 @@ int main(void)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,4 +10,3 @@
|
|||
#include "animation.h"
|
||||
|
||||
int main(void);
|
||||
|
||||
|
|
|
@ -6,4 +6,3 @@ void SystemInit(void)
|
|||
// Disable all interrupts
|
||||
RCC->CIR = 0x00000000;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue