Skip to content

Commit

Permalink
firmware: app: tasks: Update initial delay for TTC tasks #351
Browse files Browse the repository at this point in the history
  • Loading branch information
c-porto committed Jun 7, 2024
1 parent 6373be5 commit df675c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/app/tasks/process_tc.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#define TASK_PROCESS_TC_STACK_SIZE 500 /**< Stack size in bytes. */
#define TASK_PROCESS_TC_PRIORITY 4 /**< Task priority. */
#define TASK_PROCESS_TC_PERIOD_MS 1000 /**< Task period in milliseconds. */
#define TASK_PROCESS_TC_INITIAL_DELAY_MS 2000 /**< Delay, in milliseconds, before the first execution. */
#define TASK_PROCESS_TC_INITIAL_DELAY_MS 6500 /**< Delay, in milliseconds, before the first execution. */
#define TASK_PROCESS_TC_INIT_TIMEOUT_MS (10*1000) /**< Wait time to initialize the task in milliseconds. */

/**
Expand Down
2 changes: 1 addition & 1 deletion firmware/app/tasks/read_ttc.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#define TASK_READ_TTC_STACK_SIZE 384 /**< Stack size in bytes. */
#define TASK_READ_TTC_PRIORITY 3 /**< Task priority. */
#define TASK_READ_TTC_PERIOD_MS (60000) /**< Task period in milliseconds. */
#define TASK_READ_TTC_INITIAL_DELAY_MS 1000 /**< Delay, in milliseconds, before the first execution. */
#define TASK_READ_TTC_INITIAL_DELAY_MS 5500 /**< Delay, in milliseconds, before the first execution. */
#define TASK_READ_TTC_INIT_TIMEOUT_MS 2000 /**< Wait time to initialize the task in milliseconds. */

/**
Expand Down

0 comments on commit df675c8

Please sign in to comment.