Stima V4 Slave RAIN  4.2
can_task.h
Go to the documentation of this file.
1 
30 #ifndef _CAN_TASK_H
31 #define _CAN_TASK_H
32 
33 #include "debug_config.h"
34 #include "local_typedef.h"
35 #include "str.h"
36 #include "stima_utility.h"
37 
38 #include <STM32FreeRTOS.h>
39 #include "thread.hpp"
40 #include "ticks.hpp"
41 #include "semaphore.hpp"
42 #include "queue.hpp"
44 
45 #include <STM32RTC.h>
46 #include <STM32LowPower.h>
47 
48 // Configurazione modulo, definizioni ed utility generiche
49 #include "canard_config.hpp"
50 
51 // Register EEprom
52 #include "register_class.hpp"
53 
54 // Flash Access
55 #include "drivers/flash.h"
56 
57 // Classe Canard
58 #include "canard_class_rain.hpp"
59 // Libcanard
60 #include <canard.h>
61 #include "bxcan.h"
62 // Namespace UAVCAN
63 #include <uavcan/node/Heartbeat_1_0.h>
64 #include <uavcan/node/GetInfo_1_0.h>
65 #include <uavcan/node/ExecuteCommand_1_1.h>
66 #include <uavcan/node/port/List_0_1.h>
67 #include <uavcan/_register/Access_1_0.h>
68 #include <uavcan/_register/List_1_0.h>
69 #include <uavcan/file/Read_1_1.h>
70 #include <uavcan/time/Synchronization_1_0.h>
71 #include <uavcan/pnp/NodeIDAllocationData_1_0.h>
72 // Namespace RMAP
73 #include <rmap/_module/Rain_1_0.h>
74 #include <rmap/service/_module/Rain_1_0.h>
75 // Standard Library
76 #include <stdio.h>
77 #include <stdlib.h>
78 #include <assert.h>
79 #include <time.h>
80 #include <unistd.h>
81 
82 #include "debug_F.h"
83 
84 using namespace cpp_freertos;
85 
86 // Main TASK Switch Delay
87 #define CAN_TASK_WAIT_DELAY_MS (20)
88 #define CAN_TASK_WAIT_MAXSPEED_DELAY_MS (1)
89 #define CAN_TASK_SLEEP_DELAY_MS (850)
90 
91 // Task waiting Semaphore Driver access
92 #define CAN_SEMAPHORE_MAX_WAITING_TIME_MS (1000)
93 #define FLASH_SEMAPHORE_MAX_WAITING_TIME_MS (3000)
94 
95 // Bit flag return maintenance mode on state command
96 #define CAN_FLAG_IS_MAINTENANCE_MODE (0x08)
97 #define CAN_FLAG_MASK_MAINTENANCE_MODE (0x07)
98 
99 // Debug Check Enable Function
100 // #define LOG_RX_PACKET
101 // #define LED_ON_SYNCRO_TIME
102 
108  CAN_SLEEP
109 };
110 
112 typedef struct
113 {
117  cpp_freertos::BinarySemaphore *configurationLock;
118  cpp_freertos::BinarySemaphore *systemStatusLock;
119  cpp_freertos::BinarySemaphore *registerAccessLock;
120  cpp_freertos::BinarySemaphore *canLock;
121  cpp_freertos::BinarySemaphore *qspiLock;
122  cpp_freertos::BinarySemaphore *rtcLock;
123  cpp_freertos::Queue *systemMessageQueue;
124  cpp_freertos::Queue *requestDataQueue;
125  cpp_freertos::Queue *reportDataQueue;
129 } CanParam_t;
130 
132 class CanTask : public cpp_freertos::Thread {
133 
135  typedef enum {
139  CAN_STATE_CHECK
140  } State_t;
141 
142 public:
143  CanTask(const char *taskName, uint16_t stackSize, uint8_t priority, CanParam_t canParam);
144 
145 protected:
146  virtual void Run();
147 
148 private:
149 
150  #if (ENABLE_STACK_USAGE)
151  void TaskMonitorStack();
152  #endif
153  void TaskWatchDog(uint32_t millis_standby);
154  void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation);
155 
156  static void HW_CAN_Power(CAN_ModePower ModeCan);
157  static void getUniqueID(uint8_t out[uavcan_node_GetInfo_Response_1_0_unique_id_ARRAY_CAPACITY_], uint64_t serNumb);
158  static CanardPortID getModeAccessID(uint8_t modeAccessID, const char* const port_name, const char* const type_name);
159  static bool putFlashFile(const char* const file_name, const bool is_firmware, const bool rewrite, void* buf, size_t count);
160  static bool getFlashFwInfoFile(uint8_t *module_type, uint8_t *version, uint8_t *revision, uint64_t *len);
161  static void prepareSensorsDataValue(uint8_t const sensore, const report_t *report, rmap_module_Rain_1_0 *rmap_data);
162  static void prepareSensorsDataValue(uint8_t const sensore, const report_t *report, rmap_service_module_Rain_Response_1_0 *rmap_data);
163  static void publish_rmap_data(canardClass &clsCanard, CanParam_t *param);
164  static void processMessagePlugAndPlayNodeIDAllocation(canardClass &clsCanard, const uavcan_pnp_NodeIDAllocationData_1_0* const msg);
165  static uavcan_node_ExecuteCommand_Response_1_1 processRequestExecuteCommand(canardClass &clsCanard, const uavcan_node_ExecuteCommand_Request_1_1* req, uint8_t remote_node);
166  static rmap_service_module_Rain_Response_1_0 processRequestGetModuleData(canardClass &clsCanard, rmap_service_module_Rain_Request_1_0* req, CanParam_t *param);
167  static uavcan_register_Access_Response_1_0 processRequestRegisterAccess(const uavcan_register_Access_Request_1_0* req);
168  static uavcan_node_GetInfo_Response_1_0 processRequestNodeGetInfo();
169  static void processRequestUpdateRTC(canardClass &clsCanard, const uavcan_pnp_NodeIDAllocationData_1_0* const msg);
170  static void processReceivedTransfer(canardClass &clsCanard, const CanardRxTransfer* const transfer, void *param);
171 
174 
175  // Acces static memeber parameter of class
176  inline static bootloader_t *boot_state;
177  inline static EEprom *localEeprom;
178  inline static cpp_freertos::Queue *localSystemMessageQueue;
179  inline static uint16_t last_req_rpt_time = (REPORTS_TIME_S);
180  inline static uint16_t last_req_obs_time = (OBSERVATIONS_TIME_S);
181  inline static CAN_ModePower canPower;
182  inline static STM32RTC& rtc = STM32RTC::getInstance();
183  // Register access && Flash (Firmware and data log archive)
184  inline static EERegister *localRegister;
185  inline static cpp_freertos::BinarySemaphore *localQspiLock;
186  inline static cpp_freertos::BinarySemaphore *localRegisterAccessLock;
187  inline static Flash *localFlash;
188  inline static uint64_t canFlashPtr = 0;
189  inline static uint16_t canFlashBlock = 0;
190 };
191 
192 #endif
CAN_ModePower
Mode Power HW CanBus Controller state.
Definition: can_task.h:104
@ CAN_NORMAL
CAN is in normal state (TX and RX Ready)
Definition: can_task.h:106
@ CAN_SLEEP
Power CAN is OFF.
Definition: can_task.h:108
@ CAN_INIT
CAN is in init or configuration mode.
Definition: can_task.h:105
@ CAN_LISTEN_ONLY
CAN in only listen mode (turn off TX board)
Definition: can_task.h:107
Uavcan Canard Class LibCanard, bxCan, o1Heap.
Uavcan Canard Configuration file.
CAN TASK cpp_freertos class.
Definition: can_task.h:132
static Flash * localFlash
Definition: can_task.h:187
static EERegister * localRegister
Definition: can_task.h:184
static CAN_ModePower canPower
Definition: can_task.h:181
static cpp_freertos::Queue * localSystemMessageQueue
Definition: can_task.h:178
static bootloader_t * boot_state
Definition: can_task.h:176
static EEprom * localEeprom
Definition: can_task.h:177
State_t
Enum for state switch of running method.
Definition: can_task.h:135
@ CAN_STATE_INIT
Definition: can_task.h:137
@ CAN_STATE_SETUP
Definition: can_task.h:138
@ CAN_STATE_CREATE
Definition: can_task.h:136
static cpp_freertos::BinarySemaphore * localQspiLock
Definition: can_task.h:185
static cpp_freertos::BinarySemaphore * localRegisterAccessLock
Definition: can_task.h:186
static void processRequestUpdateRTC(canardClass &clsCanard, const uavcan_pnp_NodeIDAllocationData_1_0 *const msg)
CanParam_t param
Definition: can_task.h:173
State_t state
Definition: can_task.h:172
Definition: eeprom.h:49
Definition: flash.h:58
#define REPORTS_TIME_S
Default report (RMAP) time in second.
Definition: config.h:229
#define OBSERVATIONS_TIME_S
Default observation (RMAP) time in second.
Definition: config.h:227
flash QSPI ETH452 AT256F161 header file
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
Definition: can_task.h:113
cpp_freertos::BinarySemaphore * rtcLock
Semaphore to RTC Access.
Definition: can_task.h:122
Flash * flash
Object Flash C++ access.
Definition: can_task.h:126
cpp_freertos::BinarySemaphore * registerAccessLock
Semaphore to register Cyphal access.
Definition: can_task.h:119
cpp_freertos::Queue * reportDataQueue
Queue to report data.
Definition: can_task.h:125
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
Definition: can_task.h:123
cpp_freertos::Queue * requestDataQueue
Queue to request data.
Definition: can_task.h:124
cpp_freertos::BinarySemaphore * configurationLock
Semaphore to configuration access.
Definition: can_task.h:117
configuration_t * configuration
system configuration pointer struct
Definition: can_task.h:114
EERegister * clRegister
Object Register C++ access.
Definition: can_task.h:128
system_status_t * system_status
system status pointer struct
Definition: can_task.h:115
cpp_freertos::BinarySemaphore * canLock
Semaphore to CAN Bus access.
Definition: can_task.h:120
bootloader_t * boot_request
Boot struct pointer.
Definition: can_task.h:116
cpp_freertos::BinarySemaphore * qspiLock
Semaphore to QSPI Memory flash access.
Definition: can_task.h:121
EEprom * eeprom
Object EEprom C++ access.
Definition: can_task.h:127
cpp_freertos::BinarySemaphore * systemStatusLock
Semaphore to system status access.
Definition: can_task.h:118
Backup && Upload Firmware TypeDef (BootLoader)
System module configuration.
Definition: local_typedef.h:48
Report module.
System module status.
Definition: local_typedef.h:84