examples/temp_sensor/src/TimerInterruptHandler.c in ceedling-0.19.0 vs examples/temp_sensor/src/TimerInterruptHandler.c in ceedling-0.20.2
- old
+ new
@@ -1,25 +1,25 @@
-#include "Types.h"
-#include "TimerInterruptHandler.h"
-#include "TimerInterruptConfigurator.h"
-
-static uint32 systemTime;
-
-void Timer_SetSystemTime(uint32 time)
-{
- systemTime = time;
-}
-
-uint32 Timer_GetSystemTime(void)
-{
- return systemTime;
-}
-
-void Timer_InterruptHandler(void)
-{
- uint32 status = AT91C_BASE_TC0->TC_SR;
- if (status & AT91C_TC_CPCS)
- {
- systemTime += 10;
- }
-}
-
+#include "Types.h"
+#include "TimerInterruptHandler.h"
+#include "TimerInterruptConfigurator.h"
+
+static uint32 systemTime;
+
+void Timer_SetSystemTime(uint32 time)
+{
+ systemTime = time;
+}
+
+uint32 Timer_GetSystemTime(void)
+{
+ return systemTime;
+}
+
+void Timer_InterruptHandler(void)
+{
+ uint32 status = AT91C_BASE_TC0->TC_SR;
+ if (status & AT91C_TC_CPCS)
+ {
+ systemTime += 10;
+ }
+}
+