Skip to content

Commit

Permalink
Merge branch 'dev_firmware' into spi_mutex_feature
Browse files Browse the repository at this point in the history
  • Loading branch information
c-porto committed Jun 6, 2024
2 parents 04e4120 + 284639c commit 6373be5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions firmware/app/tasks/system_reset.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* \author Gabriel Mariano Marcelino <[email protected]>
*
* \version 0.10.7
* \version 0.10.16
*
* \date 2020/01/12
*
Expand All @@ -42,9 +42,11 @@ xTaskHandle xTaskSystemResetHandle;

void vTaskSystemReset(void)
{
TickType_t reset_period_ticks = pdMS_TO_TICKS_64((TickType_t) TASK_SYSTEM_RESET_PERIOD_MS);

while(1)
{
vTaskDelay(pdMS_TO_TICKS_64(TASK_SYSTEM_RESET_PERIOD_MS));
vTaskDelay(reset_period_ticks);

sys_log_print_event_from_module(SYS_LOG_INFO, TASK_SYSTEM_RESET_NAME, "Restarting the system...");
sys_log_new_line();
Expand Down
4 changes: 2 additions & 2 deletions firmware/app/tasks/system_reset.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* \author Gabriel Mariano Marcelino <[email protected]>
*
* \version 0.10.7
* \version 0.10.16
*
* \date 2020/01/12
*
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions firmware/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* \author Gabriel Mariano Marcelino <[email protected]>
*
* \version 0.10.14
* \version 0.10.16
*
* \date 2019/10/25
*
Expand All @@ -36,7 +36,7 @@
#ifndef VERSION_H_
#define VERSION_H_

#define FIRMWARE_VERSION "0.10.14"
#define FIRMWARE_VERSION "0.10.16"

#define FIRMWARE_STATUS "Development"

Expand Down

0 comments on commit 6373be5

Please sign in to comment.