diff --git a/firmware/app/tasks/system_reset.c b/firmware/app/tasks/system_reset.c index de995997..b450023c 100644 --- a/firmware/app/tasks/system_reset.c +++ b/firmware/app/tasks/system_reset.c @@ -25,7 +25,7 @@ * * \author Gabriel Mariano Marcelino * - * \version 0.10.7 + * \version 0.10.16 * * \date 2020/01/12 * @@ -44,7 +44,7 @@ void vTaskSystemReset(void) { while(1) { - vTaskDelay(pdMS_TO_TICKS_64(TASK_SYSTEM_RESET_PERIOD_MS)); + vTaskDelay(pdMS_TO_TICKS_64(TASK_SYSTEM_RESET_PERIOD_MS)); // cppcheck-suppress misra-c2012-10.8 sys_log_print_event_from_module(SYS_LOG_INFO, TASK_SYSTEM_RESET_NAME, "Restarting the system..."); sys_log_new_line(); diff --git a/firmware/app/tasks/system_reset.h b/firmware/app/tasks/system_reset.h index cf9b6651..2dec9812 100644 --- a/firmware/app/tasks/system_reset.h +++ b/firmware/app/tasks/system_reset.h @@ -25,7 +25,7 @@ * * \author Gabriel Mariano Marcelino * - * \version 0.10.7 + * \version 0.10.16 * * \date 2020/01/12 * @@ -45,7 +45,7 @@ #define TASK_SYSTEM_RESET_PRIORITY 2 /**< Task priority. */ #define TASK_SYSTEM_RESET_PERIOD_MS (1000UL*60U*60U*10U) /**< Task period in milliseconds. */ -#define pdMS_TO_TICKS_64( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) +#define pdMS_TO_TICKS_64( xTimeInMs ) ( ( TickType_t ) ( ( ( uint64_t ) ( xTimeInMs ) * ( uint64_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) /** * \brief Periodic system reset handle.