Updated Countdown and removed Timer #486

Merged
mohr merged 7 commits from gaisser_countdown_timer into development 2021-10-04 14:44:56 +02:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit 5064d44999 - Show all commits

View File

@ -13,7 +13,6 @@ target_sources(${LIB_FSFW_NAME}
QueueFactory.cpp
SemaphoreFactory.cpp
TaskFactory.cpp
Timer.cpp
tcpipHelpers.cpp
unixUtility.cpp
)

View File

@ -47,7 +47,7 @@ uint32_t Countdown::getRemainingMillis() const {
}
uint32_t Countdown::getCurrentTime() const {
uint32_t current_time;
Clock::getUptime( &current_time );
return current_time;
uint32_t currentTime;
Clock::getUptime( &currentTime );
return currentTime;
}