36 #include "stima_utility.h"
38 #include <STM32FreeRTOS.h>
41 #include "semaphore.hpp"
46 #include <STM32LowPower.h>
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>
73 #include <rmap/_module/Rain_1_0.h>
74 #include <rmap/service/_module/Rain_1_0.h>
84 using namespace cpp_freertos;
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)
92 #define CAN_SEMAPHORE_MAX_WAITING_TIME_MS (1000)
93 #define FLASH_SEMAPHORE_MAX_WAITING_TIME_MS (3000)
96 #define CAN_FLAG_IS_MAINTENANCE_MODE (0x08)
97 #define CAN_FLAG_MASK_MAINTENANCE_MODE (0x07)
143 CanTask(
const char *taskName, uint16_t stackSize, uint8_t priority,
CanParam_t canParam);
150 #if (ENABLE_STACK_USAGE)
151 void TaskMonitorStack();
153 void TaskWatchDog(uint32_t millis_standby);
154 void TaskState(uint8_t state_position, uint8_t state_subposition,
task_flag state_operation);
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);
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();
170 static void processReceivedTransfer(
canardClass &clsCanard,
const CanardRxTransfer*
const transfer,
void *param);
182 inline static STM32RTC& rtc = STM32RTC::getInstance();
188 inline static uint64_t canFlashPtr = 0;
189 inline static uint16_t canFlashBlock = 0;
CAN_ModePower
Mode Power HW CanBus Controller state.
@ CAN_NORMAL
CAN is in normal state (TX and RX Ready)
@ CAN_SLEEP
Power CAN is OFF.
@ CAN_INIT
CAN is in init or configuration mode.
@ CAN_LISTEN_ONLY
CAN in only listen mode (turn off TX board)
Uavcan Canard Class LibCanard, bxCan, o1Heap.
Uavcan Canard Configuration file.
CAN TASK cpp_freertos class.
static Flash * localFlash
static EERegister * localRegister
static CAN_ModePower canPower
static cpp_freertos::Queue * localSystemMessageQueue
static bootloader_t * boot_state
static EEprom * localEeprom
State_t
Enum for state switch of running method.
static cpp_freertos::BinarySemaphore * localQspiLock
static cpp_freertos::BinarySemaphore * localRegisterAccessLock
static void processRequestUpdateRTC(canardClass &clsCanard, const uavcan_pnp_NodeIDAllocationData_1_0 *const msg)
#define REPORTS_TIME_S
Default report (RMAP) time in second.
#define OBSERVATIONS_TIME_S
Default observation (RMAP) time in second.
flash QSPI ETH452 AT256F161 header file
task_flag
Task state Flag type.
Interface STM32 hardware_hal STIMAV4 Header config.
Register class (Uavcan/Other) header file.
struct local elaborate data parameter
cpp_freertos::BinarySemaphore * rtcLock
Semaphore to RTC Access.
Flash * flash
Object Flash C++ access.
cpp_freertos::BinarySemaphore * registerAccessLock
Semaphore to register Cyphal access.
cpp_freertos::Queue * reportDataQueue
Queue to report data.
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
cpp_freertos::Queue * requestDataQueue
Queue to request data.
cpp_freertos::BinarySemaphore * configurationLock
Semaphore to configuration access.
configuration_t * configuration
system configuration pointer struct
EERegister * clRegister
Object Register C++ access.
system_status_t * system_status
system status pointer struct
cpp_freertos::BinarySemaphore * canLock
Semaphore to CAN Bus access.
bootloader_t * boot_request
Boot struct pointer.
cpp_freertos::BinarySemaphore * qspiLock
Semaphore to QSPI Memory flash access.
EEprom * eeprom
Object EEprom C++ access.
cpp_freertos::BinarySemaphore * systemStatusLock
Semaphore to system status access.
Backup && Upload Firmware TypeDef (BootLoader)
System module configuration.