Stima V4 Slave RAIN  4.2
supervisor_task.cpp
Go to the documentation of this file.
1 
31 #define TRACE_LEVEL SUPERVISOR_TASK_TRACE_LEVEL
32 #define LOCAL_TASK_ID SUPERVISOR_TASK_ID
33 
34 #include "tasks/supervisor_task.h"
35 
36 using namespace cpp_freertos;
37 
43 SupervisorTask::SupervisorTask(const char *taskName, uint16_t stackSize, uint8_t priority, SupervisorParam_t supervisorParam) : Thread(taskName, stackSize, priority), param(supervisorParam)
44 {
45  // Start WDT controller and TaskState Flags
48 
49  // Immediate load Config for all Task info
51 
53  Start();
54 };
55 
56 #if (ENABLE_STACK_USAGE)
58 void SupervisorTask::TaskMonitorStack()
59 {
60  uint16_t stackUsage = (uint16_t)uxTaskGetStackHighWaterMark( NULL );
61  if((stackUsage) && (stackUsage < param.system_status->tasks[LOCAL_TASK_ID].stack)) {
62  param.systemStatusLock->Take();
64  param.systemStatusLock->Give();
65  }
66 }
67 #endif
68 
71 void SupervisorTask::TaskWatchDog(uint32_t millis_standby)
72 {
73  // Local TaskWatchDog update
74  param.systemStatusLock->Take();
75  // Update WDT Signal (Direct or Long function Timered)
76  if(millis_standby)
77  {
78  // Check 1/2 Freq. controller ready to WDT only SET flag
79  if((millis_standby) < WDT_CONTROLLER_MS / 2) {
81  } else {
83  // Add security milimal Freq to check
85  }
86  }
87  else
89  param.systemStatusLock->Give();
90 }
91 
96 void SupervisorTask::TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation)
97 {
98  // Local TaskWatchDog update
99  param.systemStatusLock->Take();
100  // Signal Task sleep/disabled mode from request (Auto SET WDT on Resume)
102  (state_operation==task_flag::normal))
104  param.system_status->tasks[LOCAL_TASK_ID].state = state_operation;
106  param.system_status->tasks[LOCAL_TASK_ID].running_sub = state_subposition;
107  param.systemStatusLock->Give();
108 }
109 
112 {
113  // Request response for system queue Task controlled...
114  system_message_t system_message;
115 
116  // Start Running Monitor and First WDT normal state
117  #if (ENABLE_STACK_USAGE)
118  TaskMonitorStack();
119  #endif
121 
122  while (true)
123  {
124  switch (state)
125  {
127  // Load configuration is also done...
128  // Seting Startup param TASK and INIT Function Here...
129  param.systemStatusLock->Take();
130  // Done Load config && Starting function
132  param.systemStatusLock->Give();
133 
135  TRACE_ERROR_F(F("SUPERVISOR_STATE_INIT -> SUPERVISOR_STATE_CHECK_OPERATION\r\n"));
136  break;
137 
139  // true if configuration ok and loaded ->
141  {
142  // Security autoremove maintenance after 1 hour from calling starting method
145  param.systemStatusLock->Take();
147  param.systemStatusLock->Give();
148  }
149  }
150  // Standard SUPERVISOR_OPERATION SYSTEM CHECK...
151  // ********* SYSTEM QUEUE REQUEST ***********
152  // Check Queue command system status
153  if(!param.systemMessageQueue->IsEmpty()) {
154  if(param.systemMessageQueue->Peek(&system_message, 0)) {
155  if(system_message.task_dest == SUPERVISOR_TASK_ID) {
156  // Command direct for TASK remove from queue
157  param.systemMessageQueue->Dequeue(&system_message);
158  if(system_message.command.do_maint) {
159  param.systemStatusLock->Take();
160  if(system_message.param != 0) {
162  // Save maintenance start epoch (reset automatic)
164  } else {
166  }
167  param.systemStatusLock->Give();
168  }
169  }
170  // Its request addressed into ALL TASK... -> no pull (only SUPERVISOR or exernal gestor)
171  if(system_message.task_dest == ALL_TASK_ID)
172  {
173  // Pull && elaborate command,
174  // Sleep Global was called from CAN TASK When CAN Finished operation
175  // from request and comuinication with Master. Master send flag Sleep...
176  if(system_message.command.do_sleep)
177  {
178  // Check All Module Direct Controlled Entered in Sleep and performed
179  // Local ShutDown periph, IO data ecc... IF ALL OK-> Enter LowPOWER Mode
180  // ************ SLEEP ALL MODULE OK -> SLEEP SUPERVISOR ************
181  // Sleeping or Suspend Module are same. Only normal_mode suspend Sleep Mode
182  // SLEEP SUPERVISOR -> ALL MODULE IS SLEEPING. Tickless_mode CAN Start
186  // Enter to Sleep Complete (Remove before queue Message TaskSleep)
187  // Ready for Next Security Startup without Reenter Sleep
188  // Next Enter with Other QueueMessage from CAN or Other Task...
189  param.systemMessageQueue->Dequeue(&system_message);
190  // Enter task sleep (enable global LowPower procedure...)
191  // Local WatchDog update
194  // ... -> Enter LowPower on call Delay ... ->
195  Delay(Ticks::MsToTicks(SUPERVISOR_TASK_SLEEP_DELAY_MS));
197  }
198  }
199  }
200  }
201  }
202  }
203  else
204  {
205  TRACE_ERROR_F(F("SUPERVISOR_STATE_CHECK_OPERATION -> ??? Condizione non gestita!!!\r\n"));
206  Suspend();
207  }
208  break;
209 
211  TRACE_VERBOSE_F(F("SUPERVISOR_STATE_END -> SUPERVISOR_STATE_CHECK_OPERATION\r\n"));
213  break;
214  }
215 
216  // one step switch non blocking
217  #if (ENABLE_STACK_USAGE)
218  TaskMonitorStack();
219  #endif
220 
221  // Local TaskWatchDog update;
223 
224  // Standard delay task
225  DelayUntil(Ticks::MsToTicks(SUPERVISOR_TASK_WAIT_DELAY_MS));
226 
227  }
228 }
229 
232 {
233  // param.configuration configuration Module
234  // param.configurationLock Semaphore config Access
235  // param.registerAccessLock Semaphore register Access
236  // Verify if config valid
237  bool register_config_valid = true;
238  // Param Reading
239  static uavcan_register_Value_1_0 val = {0};
240 
241  // Reset sensor parameter to default with external initializaztion request
244  register_config_valid = false;
245  }
246 
247  TRACE_INFO_F(F("SUPERVISOR: Load configuration...\r\n"));
248 
249  // Reading RMAP Module identify Param -> (READ) + Check(REWRITE) -> [Readonly]
250  // uint8_t module_main_version; module main version
251  // uint8_t module_minor_version; module minor version
252  // uint8_t module_type; module type
253  if(register_config_valid) {
254  // Select type register (uint_8)
255  uavcan_register_Value_1_0_select_natural8_(&val);
256  val.natural8.value.count = 3;
257  // Loading Default
258  val.natural8.value.elements[0] = MODULE_MAIN_VERSION;
259  val.natural8.value.elements[1] = MODULE_MINOR_VERSION;
260  val.natural8.value.elements[2] = MODULE_TYPE;
261  param.registerAccessLock->Take();
262  param.clRegister->read("rmap.module.identify", &val);
263  param.registerAccessLock->Give();
264  if(uavcan_register_Value_1_0_is_natural8_(&val) && (val.natural8.value.count != 3)) {
265  register_config_valid = false;
266  } else {
267  param.configurationLock->Take();
268  param.configuration->module_main_version = val.natural8.value.elements[0];
269  param.configuration->module_minor_version = val.natural8.value.elements[1];
270  param.configuration->module_type = val.natural8.value.elements[2];
271  param.configurationLock->Give();
272  // Parameter change for update firmare or local modify register?
273  // Reinit value: Register are readonly purpose utility remote application
277  // Rewrite Register...
278  val.natural8.value.elements[0] = MODULE_MAIN_VERSION;
279  val.natural8.value.elements[1] = MODULE_MINOR_VERSION;
280  val.natural8.value.elements[2] = MODULE_TYPE;
281  // Reload parameter correct
285  param.registerAccessLock->Take();
286  param.clRegister->write("rmap.module.identify", &val);
287  param.registerAccessLock->Give();
288  }
289  }
290  }
291 
292  // Reading RMAP Module sensor delay acquire -> (READ/WRITE)
293  // uint16_t sensor_tipping_delay_ms; Event tipping time inibith
294  if(register_config_valid) {
295  // Select type register (uint_32)
296  uavcan_register_Value_1_0_select_natural16_(&val);
297  val.natural16.value.count = 1;
298  // Loading Default
299  val.natural16.value.elements[0] = RAIN_TIPPING_DELAY_MS;
300  param.registerAccessLock->Take();
301  param.clRegister->read("rmap.module.sensor.tipping.delay", &val);
302  param.registerAccessLock->Give();
303  if(uavcan_register_Value_1_0_is_natural16_(&val) && (val.natural16.value.count != 1)) {
304  register_config_valid = false;
305  } else {
306  param.configurationLock->Take();
307  param.configuration->sensors.tipping_bucket_time_ms = val.natural16.value.elements[0];
308  param.configurationLock->Give();
309  }
310  }
311 
312  // Reading RMAP Module sensor delay acquire -> (READ/WRITE)
313  // uint16_t sensor_tipping_delay_ms; Event stall time inibith
314  if(register_config_valid) {
315  // Select type register (uint_32)
316  uavcan_register_Value_1_0_select_natural16_(&val);
317  val.natural16.value.count = 1;
318  // Loading Default
319  val.natural16.value.elements[0] = RAIN_TIPPING_INIBITH_DELAY_MS;
320  param.registerAccessLock->Take();
321  param.clRegister->read("rmap.module.sensor.tipping.eventend", &val);
322  param.registerAccessLock->Give();
323  if(uavcan_register_Value_1_0_is_natural16_(&val) && (val.natural16.value.count != 1)) {
324  register_config_valid = false;
325  } else {
326  param.configurationLock->Take();
327  param.configuration->sensors.event_end_time_ms = val.natural16.value.elements[0];
328  param.configurationLock->Give();
329  }
330  }
331 
332  // Reading RMAP Module sensor delay acquire -> (READ/WRITE)
333  // uint16_t sensor_tipping_delay_ms; Event tipping time inibith
334  if(register_config_valid) {
335  // Select type register (uint_32)
336  uavcan_register_Value_1_0_select_natural16_(&val);
337  val.natural16.value.count = 1;
338  // Loading Default
339  val.natural16.value.elements[0] = RAIN_TIPS_FOR_EVENT;
340  param.registerAccessLock->Take();
341  param.clRegister->read("rmap.module.sensor.tipping.value", &val);
342  param.registerAccessLock->Give();
343  if(uavcan_register_Value_1_0_is_natural16_(&val) && (val.natural16.value.count != 1)) {
344  register_config_valid = false;
345  } else {
346  param.configurationLock->Take();
347  param.configuration->sensors.rain_for_tip = val.natural16.value.elements[0];
348  param.configurationLock->Give();
349  }
350  }
351 
352  // INIT CONFIG (Config invalid)
353  if(!register_config_valid) {
354  // Reinit Configuration with default classic value
355  saveConfiguration(CONFIGURATION_DEFAULT);
356  }
358 }
359 
363 {
364  // param.configuration configuration Module
365  // param.configurationLock Semaphore config Access
366  // param.registerAccessLock Semaphore register Access
367  static uavcan_register_Value_1_0 val = {0}; // Save configuration into register
368 
369  // Load default value to WRITE into config base
370  if(is_default) {
371 
372  // Reinit Configuration with default classic value
373  TRACE_INFO_F(F("Required initial default configuration, restore user define value\r\n"));
374 
375  param.configurationLock->Take();
376 
380 
381  // Acquisition time sensor default
384 
385  param.configurationLock->Give();
386 
387  }
388 
389  // Writing RMAP Module identify Param -> (READ)
390  // uint8_t module_main_version; module main version
391  // uint8_t module_minor_version; module minor version
392  // uint8_t module_type; module type
393  // Select type register (uint_8)
394  uavcan_register_Value_1_0_select_natural8_(&val);
395  val.natural8.value.count = 3;
396  // Loading Default
397  param.configurationLock->Take();
398  val.natural8.value.elements[0] = param.configuration->module_main_version;
399  val.natural8.value.elements[1] = param.configuration->module_minor_version;
400  val.natural8.value.elements[2] = param.configuration->module_type;
401  param.configurationLock->Give();
402  param.registerAccessLock->Take();
403  param.clRegister->write("rmap.module.identify", &val);
404  param.registerAccessLock->Give();
405 
406  // Writing RMAP Module sensor delay acquire -> (READ/WRITE)
407  // uint16_t tipping_bucket_time_ms;
408  // Select type register (uint_16)
409  uavcan_register_Value_1_0_select_natural16_(&val);
410  val.natural16.value.count = 1;
411  // Loading Default
412  param.configurationLock->Take();
413  val.natural16.value.elements[0] = param.configuration->sensors.tipping_bucket_time_ms;
414  param.configurationLock->Give();
415  param.registerAccessLock->Take();
416  param.clRegister->write("rmap.module.sensor.tipping.delay", &val);
417  param.registerAccessLock->Give();
418 
419  // Writing RMAP Module sensor delay acquire -> (READ/WRITE)
420  // uint16_t event_end_time_ms;
421  // Select type register (uint_16)
422  uavcan_register_Value_1_0_select_natural16_(&val);
423  val.natural16.value.count = 1;
424  // Loading Default
425  param.configurationLock->Take();
426  val.natural16.value.elements[0] = param.configuration->sensors.event_end_time_ms;
427  param.configurationLock->Give();
428  param.registerAccessLock->Take();
429  param.clRegister->write("rrmap.module.sensor.tipping.eventend", &val);
430  param.registerAccessLock->Give();
431 
432  // Writing RMAP Module sensor delay acquire -> (READ/WRITE)
433  // uint16_t sensor_acquisition_delay_ms;
434  // Select type register (uint_16)
435  uavcan_register_Value_1_0_select_natural16_(&val);
436  val.natural16.value.count = 1;
437  // Loading Default
438  param.configurationLock->Take();
439  val.natural16.value.elements[0] = param.configuration->sensors.rain_for_tip;
440  param.configurationLock->Give();
441  param.registerAccessLock->Take();
442  param.clRegister->write("rmap.module.sensor.tipping.value", &val);
443  param.registerAccessLock->Give();
444 
445  if(is_default) {
446  TRACE_INFO_F(F("SUPERVISOR: Save configuration...\r\n"));
447  } else {
448  TRACE_INFO_F(F("SUPERVISOR: Init configuration and save parameter...\r\n"));
449  }
451 }
452 
455 {
456  // param.configuration configuration Module
457  // param.configurationLock Semaphore config Access
458  // param.registerAccessLock Semaphore register Access
459  char stima_name[STIMA_MODULE_NAME_LENGTH];
460 
461  param.configurationLock->Take();
462 
463  getStimaNameByType(stima_name, param.configuration->module_type);
464  TRACE_INFO_F(F("-> type: %s\r\n"), stima_name);
465  TRACE_INFO_F(F("-> main version: %u\r\n"), param.configuration->module_main_version);
466  TRACE_INFO_F(F("-> minor version: %u\r\n"), param.configuration->module_minor_version);
467  TRACE_INFO_F(F("-> tipping time: %u [ms]\r\n"), param.configuration->sensors.tipping_bucket_time_ms);
468  TRACE_INFO_F(F("-> rain for tip: %u\r\n"), param.configuration->sensors.rain_for_tip);
469 
470  param.configurationLock->Give();
471 }
void read(const char *const register_name, uavcan_register_Value_1_0 *const inout_value)
Legge un registro Cypal/Uavcan wrapper UAVCAN (Imposta Default su Set inout_value su value se non esi...
void write(const char *const register_name, const uavcan_register_Value_1_0 *const value)
Store the given register value into the persistent storage.
void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation)
local suspend flag and positor running state Task (optional)
void saveConfiguration(bool is_default)
Save/Init configuration base Register Class.
void printConfiguration()
Print configuratione.
SupervisorState_t state
SupervisorParam_t param
void loadConfiguration()
Load configuration from Register.
SupervisorTask(const char *taskName, uint16_t stackSize, uint8_t priority, SupervisorParam_t SupervisorParam)
Construct the Supervisor Task::SupervisorTask object.
@ SUPERVISOR_STATE_CHECK_OPERATION
virtual void Run()
RUN Task.
void TaskWatchDog(uint32_t millis_standby)
local watchDog and Sleep flag Task (optional)
#define CAN_TASK_ID
CAN task ID.
Definition: config.h:170
#define MODULE_MAIN_VERSION
Module main version.
Definition: config.h:34
#define WDT_CONTROLLER_MS
Task milliseconds minimal check.
Definition: config.h:90
#define MODULE_MINOR_VERSION
Module minor version.
Definition: config.h:37
#define SUPERVISOR_TASK_ID
Supervisor task ID.
Definition: config.h:168
#define ALL_TASK_ID
All task ID. Send message to ALL Task.
Definition: config.h:166
#define RAIN_TIPS_FOR_EVENT
How much mm (scaled RMAP) of rain for one tip of tipping bucket rain gauge.
Definition: config.h:198
#define MODULE_TYPE
Type of module. It is defined in registers.h.
Definition: config.h:55
#define RAIN_TIPPING_INIBITH_DELAY_MS
Default value for inibith tipping from 2 events.
Definition: config.h:195
#define RAIN_TIPPING_DELAY_MS
Default value for sensor acquire task delay tipping.
Definition: config.h:193
#define ELABORATE_TASK_ID
Elaborate data task ID.
Definition: config.h:172
#define WDT_STARTING_TASK_MS
Init WatchDog Task local milliseconds.
Definition: config.h:88
#define ACCELEROMETER_TASK_ID
Accelerometer task ID.
Definition: config.h:176
#define UNUSED_SUB_POSITION
Monitor Sub Position not used flag.
Definition: config.h:94
#define TRACE_ERROR_F(...)
Definition: debug_F.h:45
#define TRACE_INFO_F(...)
Definition: debug_F.h:57
#define TRACE_VERBOSE_F(...)
Definition: debug_F.h:71
@ 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
task_flag
Task state Flag type.
Definition: local_typedef.h:65
@ suspended
Task is excluded from WDT Controller or Suspended complete.
Definition: local_typedef.h:68
@ sleepy
Task is in sleep mode or longer wait (Inform WDT controller)
Definition: local_typedef.h:67
@ normal
Normal operation Task controller.
Definition: local_typedef.h:66
struct local elaborate data parameter
system_status_t * system_status
system status pointer struct
EERegister * clRegister
Object Register C++ access.
cpp_freertos::BinarySemaphore * systemStatusLock
Semaphore to system status access.
cpp_freertos::BinarySemaphore * registerAccessLock
Semaphore to register Cyphal access.
configuration_t * configuration
system configuration pointer struct
cpp_freertos::BinarySemaphore * configurationLock
Semaphore to configuration access.
bool is_initialization_request
External require initilizaztion register E2.
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
uint8_t module_type
module type
Definition: local_typedef.h:53
uint8_t module_main_version
module main version
Definition: local_typedef.h:49
sensor_configuration_t sensors
sensors configurations
Definition: local_typedef.h:54
uint8_t module_minor_version
module minor version
Definition: local_typedef.h:50
uint16_t event_end_time_ms
Time end for tipping event.
Definition: local_typedef.h:42
uint16_t tipping_bucket_time_ms
Tipping bucket time event.
Definition: local_typedef.h:41
uint8_t rain_for_tip
Numper of tip for rain measure.
Definition: local_typedef.h:43
System message for queue.
uint32_t param
32 Bit for generic data or casting to pointer
uint8_t do_maint
Request maintenance (system_status)
uint8_t task_dest
Command struct.
uint8_t do_sleep
Optional param for difference level Sleep.
struct system_message_t::@7 command
bool is_cfg_loaded
Is config loaded.
Definition: local_typedef.h:97
struct system_status_t::@4 flags
Module error or alert.
uint32_t time_start_maintenance
Starting time for maintenance mode.
Definition: local_typedef.h:88
task_t tasks[TOTAL_INFO_TASK]
Info Task && WDT.
Definition: local_typedef.h:92
struct system_status_t::@3 datetime
< DateTime Operation
bool is_maintenance
Module is in maintenance mode.
Definition: local_typedef.h:98
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
uint8_t running_sub
Optional SubState of Task.
Definition: local_typedef.h:79
#define LOCAL_TASK_ID
Supervisor module header file.
#define SUPERVISOR_TASK_SLEEP_DELAY_MS
#define SUPERVISOR_AUTO_END_MAINTENANCE_SEC
#define SUPERVISOR_TASK_WAIT_DELAY_MS