Stima V4 Slave RAIN  4.2
supervisor_task.h
Go to the documentation of this file.
1 
31 #ifndef _SUPERVISOR_TASK_H
32 #define _SUPERVISOR_TASK_H
33 
34 #include "debug_config.h"
35 #include "local_typedef.h"
36 #include "stima_utility.h"
37 #include "str.h"
38 
39 #include <STM32FreeRTOS.h>
40 #include "thread.hpp"
41 #include "ticks.hpp"
42 #include "semaphore.hpp"
43 #include "queue.hpp"
45 
46 #include <STM32RTC.h>
47 
48 // Register EEprom
49 #include "register_class.hpp"
50 
51 // Main TASK Switch Delay
52 #define SUPERVISOR_TASK_WAIT_DELAY_MS (20)
53 #define SUPERVISOR_TASK_SLEEP_DELAY_MS (850)
54 
55 #define SUPERVISOR_TASK_GENERIC_RETRY_DELAY_MS (5000)
56 #define SUPERVISOR_TASK_GENERIC_RETRY (3)
57 
58 #define SUPERVISOR_AUTO_END_MAINTENANCE_SEC (3600ul)
59 
60 #include "debug_F.h"
61 
63 typedef struct {
66  cpp_freertos::BinarySemaphore *configurationLock;
67  cpp_freertos::BinarySemaphore *systemStatusLock;
68  cpp_freertos::BinarySemaphore *registerAccessLock;
69  cpp_freertos::Queue *systemMessageQueue;
73 
75 class SupervisorTask : public cpp_freertos::Thread {
76 
78  typedef enum
79  {
85 
86 public:
87  SupervisorTask(const char *taskName, uint16_t stackSize, uint8_t priority, SupervisorParam_t SupervisorParam);
88 
89 protected:
90  virtual void Run();
91 
92 private:
93  #if (ENABLE_STACK_USAGE)
94  void TaskMonitorStack();
95  #endif
96  void TaskWatchDog(uint32_t millis_standby);
97  void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation);
98 
99  void printConfiguration();
100  void loadConfiguration();
101  void saveConfiguration(bool is_default);
102 
103  STM32RTC& rtc = STM32RTC::getInstance();
104 
107 };
108 
109 #endif
SUPERVISOR TASK cpp_freertos class.
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.
SupervisorState_t
Enum for state switch of running method.
@ SUPERVISOR_STATE_CHECK_OPERATION
virtual void Run()
RUN Task.
void TaskWatchDog(uint32_t millis_standby)
local watchDog and Sleep flag Task (optional)
task_flag
Task state Flag type.
Definition: local_typedef.h:65
Interface STM32 hardware_hal STIMAV4 Header config.
Register class (Uavcan/Other) header file.
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.
System module configuration.
Definition: local_typedef.h:48
System module status.
Definition: local_typedef.h:84