application: minor, improve code

This commit is contained in:
King Kévin 2020-06-10 17:43:05 +02:00
parent b48c65b5e0
commit 54456e0cb4
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ static void command_version(void* argument)
static void command_uptime(void* argument)
{
(void)argument; // we won't use the argument
uint32_t uptime = (rtc_get_counter_val() - time_start) / RTC_TICKS_SECOND; // get time from internal RTC
const uint32_t uptime = (rtc_get_counter_val() - time_start) / RTC_TICKS_SECOND; // get time from internal RTC
printf("uptime: %u.%02u:%02u:%02u\n", uptime / (24 * 60 * 60), (uptime / (60 * 60)) % 24, (uptime / 60) % 60, uptime % 60);
}