Stima V4 Slave RAIN  4.2
wdt_task.cpp
Go to the documentation of this file.
1 
30 #define TRACE_LEVEL WDT_TASK_TRACE_LEVEL
31 #define LOCAL_TASK_ID WDT_TASK_ID
32 
33 #include "tasks/wdt_task.h"
34 
35 #if (ENABLE_WDT)
36 
42 WdtTask::WdtTask(const char *taskName, uint16_t stackSize, uint8_t priority, WdtParam_t wdtParam) : Thread(taskName, stackSize, priority), param(wdtParam)
43 {
44  Start();
45 };
46 
48 void WdtTask::Run() {
49  bool firsCheck = true;
50  uint16_t stackUsage;
51  char strTask[12] = {0};
52  uint8_t last_day_boot_rst;
53 
54  // WDT Start to Normal...
55  param.systemStatusLock->Take();
57  param.systemStatusLock->Give();
58 
59  TRACE_INFO_F(F("WDT: Starting WDT and Info Stack TASK..."));
60 
61  while (true) {
62 
63  // Check WDT Ready to reload (reset)
64  bool resetWdt = true;
65 
66  // Reset one time for day (reset and wdt index if event occurs. Send to Master)
67  if(firsCheck) {
68  // Init last day at first
69  last_day_boot_rst = rtc.getDay();
70  } else {
71  // Check day is changed
72  if(last_day_boot_rst != rtc.getDay()) {
73  last_day_boot_rst = rtc.getDay();
74  // Reset counter if occurs event
76  // Reset counter on new or restored firmware
79  // Save info bootloader block
81  }
82  }
83  }
84 
85  TRACE_INFO_F(F("%s: "), Thread::GetName().c_str());
86  // Trace DateTime with Semaphore
87  if(param.rtcLock->Take(Ticks::MsToTicks(RTC_WAIT_DELAY_MS))) {
88  TRACE_INFO_F(F("%02d/%02d/%02d "), rtc.getDay(), rtc.getMonth(), rtc.getYear());
89  TRACE_INFO_F(F("%02d:%02d:%02d.%03d\r\n"), rtc.getHours(), rtc.getMinutes(), rtc.getSeconds(), rtc.getSubSeconds());
90  param.rtcLock->Give();
91  }
92 
93  param.systemStatusLock->Take();
94  // WDT Always Set
96  // Check All Module Setting Flag WDT before reset Global WDT
97  for(uint8_t id = 0; id < TOTAL_INFO_TASK; id++)
98  {
99  // For all Running Task (not suspend) and (real started Running_POS != 0)
100  // Sleep is noting Suspended. WatchDog (xxx) Longer Time is required !!!
103  // Checkink First WDT Timer correct
107  {
108  // Exit Time validity check WDT. Remove Flag and reset TimeUp
111  }
112  }
113  // If single task not performed local signal WDT...
115  // Wdt is not applicable (All Working TASK Need to be operative!!!)
116  resetWdt = false;
117  }
118  }
119  param.systemStatusLock->Give();
120 
121  // Logging Stack (Only ready module task controlled)
122  #if (ENABLE_STACK_USAGE)
123  // Update This Task
124  stackUsage = (uint16_t)uxTaskGetStackHighWaterMark( NULL );
125  if((stackUsage) && (stackUsage < param.system_status->tasks[WDT_TASK_ID].stack)) {
126  param.systemStatusLock->Take();
127  param.system_status->tasks[WDT_TASK_ID].stack = stackUsage;
128  param.systemStatusLock->Give();
129  }
130  TRACE_INFO_F(F("WDT: Stack Free monitor, Heap free: %lu\r\n"), (uint32_t)xPortGetFreeHeapSize());
131  for(uint8_t id = 0; id < TOTAL_INFO_TASK; id++) {
132  if(param.system_status->tasks[id].stack != 0xFFFFu) {
133  switch(id) {
135  strcpy (strTask, "Accelerom. "); break;
136  case CAN_TASK_ID:
137  strcpy (strTask, "Can Bus "); break;
138  case ELABORATE_TASK_ID:
139  strcpy (strTask, "Elabor.Data "); break;
140  case SENSOR_TASK_ID:
141  strcpy (strTask, "Mod.Sensor "); break;
142  case SUPERVISOR_TASK_ID:
143  strcpy (strTask, "Supervisor "); break;
144  case WDT_TASK_ID:
145  strcpy (strTask, "WDT Info "); break;
146  }
147  TRACE_INFO_F(F("%s%s : %d\r\n"), strTask,
151  }
152  }
153  #endif
154 
155  // Update TaskWatchDog (if all enabledModule setting local Flag)
156  // else... Can Flash Saving INFO on Task Not Responding after (XXX mS)
157  // For check TASK debugging Info
158  if(resetWdt)
159  {
160  #if (ENABLE_WDT)
161  TRACE_INFO_F(F("WDT: Reset WDT OK\r\n"));
162  IWatchdog.reload();
163  #endif
164  // Reset WDT Variables for TASK
165  param.systemStatusLock->Take();
166  // Check All Module Setting Flag WDT before reset Global WDT
167  // WDT Are called from Task into TASK While(1) Generic...
168  //
169  for(uint8_t id = 0; id < TOTAL_INFO_TASK; id++) {
170  // Reset only setted WDT Flags to Reset State (Not ::rest)
173  }
174  param.systemStatusLock->Give();
175 
176  // Reset WDT Complete ( At first Attempt ALL TASK Working. Clear RollBack request)
177  // Only at first step check EEProm Structure BootLoader
178  // All is OK, all task started (no checked position software running_pos)
179  // No Need to check WDT from All Task (if config parametr error some task)
180  // Can not perform Complete LOAD and configuration BUT Application is OK
181  // If All Task Start and enter in WDT Task, The application is Ready to RUN
182  if(firsCheck) {
183  firsCheck = false;
184  // Flag OK Start APP Excuted (Loading structure at boot in main.c)
187  TRACE_INFO_F(F("WDT: Flashing firmware with roll_back executed."));
188  } else {
189  TRACE_INFO_F(F("WDT: Flashing firmware with new version ready, clear flags."));
190  }
191  // Remove request_upload and roll_back (firmware started OK)
199  // Reset counter on new or restored firmware
203  }
204  }
205  }
206 
207  // Exit WDT
208  DelayUntil(Ticks::MsToTicks(WDT_TASK_WAIT_DELAY_MS));
209  }
210 }
211 
212 #endif
bool Write(uint16_t address, uint8_t *buffer, uint16_t length)
Write a number of data byte into EEPROM.
Definition: eeprom.cpp:86
virtual void Run()
STM32RTC & rtc
Definition: wdt_task.h:76
WdtTask(const char *taskName, uint16_t stackSize, uint8_t priority, WdtParam_t wdtParam)
WdtParam_t param
Definition: wdt_task.h:78
#define CAN_TASK_ID
CAN task ID.
Definition: config.h:170
#define TOTAL_INFO_TASK
Total Max Task for WDT Task Control.
Definition: config.h:180
#define SUPERVISOR_TASK_ID
Supervisor task ID.
Definition: config.h:168
#define RTC_WAIT_DELAY_MS
Delay for RTC in milliseconds.
Definition: config.h:108
#define SENSOR_TASK_ID
Sensor acquire task ID.
Definition: config.h:174
#define BOOT_LOADER_STRUCT_ADDR
Bootloader start address
Definition: config.h:118
#define ELABORATE_TASK_ID
Elaborate data task ID.
Definition: config.h:172
#define WDT_TASK_ID
Watch Dog task ID.
Definition: config.h:178
#define ACCELEROMETER_TASK_ID
Accelerometer task ID.
Definition: config.h:176
#define SPACE_STRING
Definition: debug.h:44
#define FLAG_STRING
Definition: debug.h:43
#define SUSPEND_STRING
Definition: debug.h:42
#define TRACE_INFO_F(...)
Definition: debug_F.h:57
@ set
Set WDT (From Application TASK... All OK)
Definition: local_typedef.h:60
@ timer
Set Timered WDT (From Application long function WDT...)
Definition: local_typedef.h:61
@ clear
Wdt Reset (From WDT Task Controller)
Definition: local_typedef.h:59
@ suspended
Task is excluded from WDT Controller or Suspended complete.
Definition: local_typedef.h:68
@ normal
Normal operation Task controller.
Definition: local_typedef.h:66
struct for local param access
Definition: wdt_task.h:56
cpp_freertos::BinarySemaphore * rtcLock
semaphore access to RTC
Definition: wdt_task.h:61
cpp_freertos::BinarySemaphore * systemStatusLock
semaphore access to system status
Definition: wdt_task.h:59
EEprom * eeprom
Pointer to EEprom C++ object.
Definition: wdt_task.h:62
system_status_t * system_status
system configuration pointer struct
Definition: wdt_task.h:57
bootloader_t * boot_request
bootloader struct access pointer
Definition: wdt_task.h:58
Backup && Upload Firmware TypeDef (BootLoader)
bool rollback_executed
An rollback of firmware was executed.
bool upload_executed
An upload of firmware was executed.
uint8_t tot_reset
Number of module reset.
uint8_t wdt_reset
Number of WatchDog.
uint8_t upload_error
Error in upload firmware (ID of Error)
bool backup_executed
Firmware backup is executed.
bool app_forcing_start
Force starting APP from Flash RUN APP Memory Position.
bool app_executed_ok
Flag running APP (setted after new firmware, prevert a rollback operation)
bool request_upload
Request an upload of firmware.
task_t tasks[TOTAL_INFO_TASK]
Info Task && WDT.
Definition: local_typedef.h:92
int32_t watch_dog_ms
WatchDog of Task Timer.
Definition: local_typedef.h:75
uint8_t running_pos
!=0 (CREATE) Task Started (Generic state of Task)
Definition: local_typedef.h:78
task_flag state
Long sleep Task.
Definition: local_typedef.h:77
wdt_flag watch_dog
WatchDog of Task.
Definition: local_typedef.h:74
uint16_t stack
Stack Max Usage Monitor.
Definition: local_typedef.h:76
wdt_task header file (Wdt && Logging Task for Module Slave)
#define WDT_TASK_WAIT_DELAY_MS
Definition: wdt_task.h:51