From 0f9880b18f0322974797ec72f4d4a4d72c9d820f Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 6 Aug 2019 13:52:03 +0200 Subject: [PATCH] cleaning --- armsrc/ticks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/ticks.c b/armsrc/ticks.c index b19c3b510..1a8d2f8a7 100644 --- a/armsrc/ticks.c +++ b/armsrc/ticks.c @@ -67,7 +67,7 @@ void StartTickCount(void) { * Get the current count. */ uint32_t RAMFUNC GetTickCount(void) { - return AT91C_BASE_RTTC->RTTC_RTVR;// was * 2; + return AT91C_BASE_RTTC->RTTC_RTVR; } uint32_t RAMFUNC GetTickCountDelta(uint32_t start_ticks) {