Stima V4 Slave RAIN  4.2
main.cpp
Go to the documentation of this file.
1 #define TRACE_LEVEL STIMA_TRACE_LEVEL
2 
3 #include "main.h"
4 
5 void setup() {
6 
7  // Reset param (Flag Fixed or on Button reset operation)
8  bool init_parameter = INIT_PARAMETER;
9 
10  // Semaphore, Queue && Param Config for TASK
11 #if (ENABLE_I2C1)
12  static BinarySemaphore *wireLock; // Access I2C internal EEprom, Accelerometer
13 #endif
14 
15 #if (ENABLE_I2C2)
16  static BinarySemaphore *wire2Lock; // Access I2C External (Sensor)
17 #endif
18 
19 #if (ENABLE_CAN)
20  static BinarySemaphore *canLock; // Can BUS
21 #endif
22 
23 #if (ENABLE_QSPI)
24  static BinarySemaphore *qspiLock; // Qspi (Flash Memory)
25 #endif
26 
27  static BinarySemaphore *rtcLock; // RTC (Access lock)
28 
29  // System Queue (Generic Message from/to Task)
30  static Queue *systemMessageQueue;
31  // Data queue (Request / exchange data from Can to Sensor and Elaborate Task)
32  static Queue *elaborateDataQueue;
33  static Queue *requestDataQueue;
34  static Queue *reportDataQueue;
35 
36  static Queue *rainQueue; // Rain tips events
37 
38  // System semaphore
39  static BinarySemaphore *configurationLock; // Access Configuration
40  static BinarySemaphore *systemStatusLock; // Access System status
41  static BinarySemaphore *registerAccessLock; // Access Register Cyphal Specifications
42 
43  // System and status configuration struct
44  static configuration_t configuration = {0};
45  static system_status_t system_status = {0};
46 
47  // Initializing basic hardware's configuration
50  init_wire();
51  init_pins();
52  // Check Reset default PIN pression button if enabled
53 #ifdef STIMAV4_SLAVE_HW_VER_01_01
54  if(!digitalRead(PIN_BTN)) init_parameter = true;
55 #endif
56 
57  // Init RTC
58  init_rtc(init_parameter);
59 
60  // Init SystemStatus Parameter !=0 ... For Check control Value
61  // Task check init data (Wdt = True, TaskStack Max, TaskReady = False)
62  // TOTAL_INFO_TASK Number of Task checked
63 #if (ENABLE_STACK_USAGE)
64  for(uint8_t id = 0; id < TOTAL_INFO_TASK; id++)
65  {
66  system_status.tasks[id].stack = 0xFFFFu;
67  }
68 #endif
69  // Disable all Task before INIT
70  for(uint8_t id = 0; id < TOTAL_INFO_TASK; id++)
71  {
72  system_status.tasks[id].state = task_flag::suspended;
73  }
74 
75 #if (ENABLE_WDT)
76  // Init the watchdog timer WDT_TIMEOUT_BASE_US mseconds timeout (only control system)
77  // Wdt Task Reset the value after All Task reset property single Flag
78  if(IWatchdog.isReset()) {
79  delay(50);
80  TRACE_INFO_F(F("\r\n\r\nALERT: Verified an WDT Reset !!!\r\n\r\n"));
81  IWatchdog.clearReset();
82  }
83  IWatchdog.begin(WDT_TIMEOUT_BASE_US);
84 #endif
85 
86  // Hardware Semaphore
87 #if (ENABLE_I2C1)
88  wireLock = new BinarySemaphore(true);
89 #endif
90 #if (ENABLE_I2C2)
91  wire2Lock = new BinarySemaphore(true);
92 #endif
93 #if (ENABLE_CAN)
94  canLock = new BinarySemaphore(true);
95 #endif
96 #if (ENABLE_QSPI)
97  qspiLock = new BinarySemaphore(true);
98 #endif
99  rtcLock = new BinarySemaphore(true);
100 
101  // Software Semaphore
102  configurationLock = new BinarySemaphore(true);
103  systemStatusLock = new BinarySemaphore(true);
104  registerAccessLock = new BinarySemaphore(true);
105 
106  // Creating queue
107  systemMessageQueue = new Queue(SYSTEM_MESSAGE_QUEUE_LENGTH, sizeof(system_message_t));
108  elaborateDataQueue = new Queue(ELABORATE_DATA_QUEUE_LENGTH, sizeof(elaborate_data_t));
109  requestDataQueue = new Queue(REQUEST_DATA_QUEUE_LENGTH, sizeof(request_data_t));
110  reportDataQueue = new Queue(REPORT_DATA_QUEUE_LENGTH, sizeof(report_t));
111 
112  rainQueue = new Queue(RAIN_QUEUE_LENGTH, sizeof(uint8_t));
113 
114  TRACE_INFO_F(F("Initialization HW Base done\r\n"));
115 
116  // Get Serial Number
117  configuration.serial_number = StimaV4GetSerialNumber();
118 
119  // Serial Print Fixed for Serial Number
120  Serial.println();
121  Serial.println(F("*****************************"));
122  Serial.println(F("* Stima V4 SLAVE - SER.NUM. *"));
123  Serial.println(F("*****************************"));
124  Serial.print(F("COD: "));
125  for(int8_t id=7; id>=0; id--) {
126  if((uint8_t)((configuration.serial_number >> (8*id)) & 0xFF) < 16) Serial.print(F("0"));
127  Serial.print((uint8_t)((configuration.serial_number >> (8*id)) & 0xFF), 16);
128  if(id) Serial.print(F("-"));
129  }
130  Serial.println("\r\n");
131 
132  // ***************************************************************
133  // Setup parameter for Task
134  // ***************************************************************
135 
136 #if (ENABLE_I2C1)
137  // Load Info from E2 boot_check flag and send to Config
138  static EEprom memEprom(&Wire, wireLock);
139  static bootloader_t boot_check = {0};
140  // Reset to defaults?
141  if(init_parameter) {
142  boot_check.app_executed_ok = true;
143  memEprom.Write(BOOT_LOADER_STRUCT_ADDR, (uint8_t*) &boot_check, sizeof(boot_check));
144  } else {
145  memEprom.Read(BOOT_LOADER_STRUCT_ADDR, (uint8_t*) &boot_check, sizeof(boot_check));
146  }
147  // Optional send other InfoParm Boot (Uploaded, rollback, error fail ecc.. to config)
148 #endif
149  // Reset Factory register value
150  static EERegister clRegister(&Wire, wireLock);
151  // Reset to defaults?
152  if(init_parameter) clRegister.doFactoryReset();
153  // Init access Flash istance object
154  static Flash memFlash(&hqspi);
155 
156  // ***************** SET PARAMETER TO TASK *********************
157 
158  // TASK WDT, INFO STACK PARAM CONFIG AND CHECK BOOTLOADER STATUS
159  static WdtParam_t wdtParam = {0};
160  wdtParam.system_status = &system_status;
161  wdtParam.boot_request = &boot_check;
162  wdtParam.systemStatusLock = systemStatusLock;
163  wdtParam.rtcLock = rtcLock;
164  wdtParam.eeprom = &memEprom;
165 
166 #if (ENABLE_CAN)
167  // TASK CAN PARAM CONFIG
168  static CanParam_t canParam = {0};
169  canParam.configuration = &configuration;
170  canParam.system_status = &system_status;
171  canParam.boot_request = &boot_check;
172  canParam.configurationLock = configurationLock;
173  canParam.systemStatusLock = systemStatusLock;
174  canParam.registerAccessLock = registerAccessLock;
175  canParam.systemMessageQueue = systemMessageQueue;
176  canParam.requestDataQueue = requestDataQueue;
177  canParam.reportDataQueue = reportDataQueue;
178  canParam.eeprom = &memEprom;
179  canParam.clRegister = &clRegister;
180  canParam.flash = &memFlash;
181  canParam.canLock = canLock;
182  canParam.qspiLock = qspiLock;
183  canParam.rtcLock = rtcLock;
184 #endif
185 
186 #if (ENABLE_ACCELEROMETER)
187  // TASK ACCELEROMETER PARAM CONFIG
188  static AccelerometerParam_t accelerometerParam = {0};
189  accelerometerParam.configuration = &configuration;
190  accelerometerParam.system_status = &system_status;
191  accelerometerParam.clRegister = &clRegister;
192 #if (ENABLE_I2C1)
193  accelerometerParam.wire = &Wire;
194  accelerometerParam.wireLock = wireLock;
195 #endif
196  accelerometerParam.systemStatusLock = systemStatusLock;
197  accelerometerParam.registerAccessLock = registerAccessLock;
198  accelerometerParam.systemMessageQueue = systemMessageQueue;
199 #endif
200 
201 #if (MODULE_TYPE == STIMA_MODULE_TYPE_RAIN)
202  static RainSensorParam_t rainSensorParam = {0};
203  rainSensorParam.configuration = &configuration;
204  rainSensorParam.system_status = &system_status;
205  rainSensorParam.configurationLock = configurationLock;
206  rainSensorParam.systemStatusLock = systemStatusLock;
207  rainSensorParam.systemMessageQueue = systemMessageQueue;
208  rainSensorParam.elaborateDataQueue = elaborateDataQueue;
209  rainSensorParam.rainQueue = rainQueue;
210 #endif
211 
212  // TASK ELABORATE DATA PARAM CONFIG
213  static ElaborateDataParam_t elaborateDataParam = {0};
214  elaborateDataParam.configuration = &configuration;
215  elaborateDataParam.system_status = &system_status;
216  elaborateDataParam.configurationLock = configurationLock;
217  elaborateDataParam.systemStatusLock = systemStatusLock;
218  elaborateDataParam.systemMessageQueue = systemMessageQueue;
219  elaborateDataParam.elaborateDataQueue = elaborateDataQueue;
220  elaborateDataParam.rainQueue = rainQueue;
221  elaborateDataParam.requestDataQueue = requestDataQueue;
222  elaborateDataParam.reportDataQueue = reportDataQueue;
223 
224  // TASK SUPERVISOR PARAM CONFIG
225  static SupervisorParam_t supervisorParam = {0};
226  supervisorParam.configuration = &configuration;
227  supervisorParam.system_status = &system_status;
228  supervisorParam.clRegister = &clRegister;
229  supervisorParam.configurationLock = configurationLock;
230  supervisorParam.systemStatusLock = systemStatusLock;
231  supervisorParam.registerAccessLock = registerAccessLock;
232  supervisorParam.systemMessageQueue = systemMessageQueue;
233  supervisorParam.is_initialization_request = init_parameter;
234 
235  // *****************************************************************************
236  // Startup Task, Supervisor as first for Loading parameter generic configuration
237  // *****************************************************************************
238  static SupervisorTask supervisor_task("SupervisorTask", 300, OS_TASK_PRIORITY_04, supervisorParam);
239 
240 #if (MODULE_TYPE == STIMA_MODULE_TYPE_RAIN)
241  static RainSensorTask rain_sensor_task("RainTask", 350, OS_TASK_PRIORITY_03, rainSensorParam);
242 #endif
243  static ElaborateDataTask elaborate_data_task("ElaborateDataTask", 350, OS_TASK_PRIORITY_02, elaborateDataParam);
244 
245 #if (ENABLE_ACCELEROMETER)
246  static AccelerometerTask accelerometer_task("AccelerometerTask", 350, OS_TASK_PRIORITY_01, accelerometerParam);
247 #endif
248 
249 #if (ENABLE_CAN)
250  static CanTask can_task("CanTask", 7300, OS_TASK_PRIORITY_02, canParam);
251 #endif
252 
253 #if (ENABLE_WDT)
254  static WdtTask wdt_task("WdtTask", 350, OS_TASK_PRIORITY_01, wdtParam);
255 #endif
256 
257  // Run Schedulher
258  Thread::StartScheduler();
259 
260 }
261 
262 // FreeRTOS idleHook callBack to loop
263 void loop() {
264  // Enable LowPower idleHock reduce power consumption without disable sysTick
265  #ifndef _EXIT_SLEEP_FOR_DEBUGGING
266  LowPower.idleHook();
267  #endif
268 }
269 
271 void init_pins() {
272  // *****************************************************
273  // STARTUP LED E PIN DIAGNOSTICI (SE UTILIZZATI)
274  // *****************************************************
275  #if (ENABLE_DIAG_PIN)
276  // Output mode for LED(1/2) BLINK SW LOOP (High per Setup)
277  // Input mode for test button
278  #ifdef LED1_PIN
279  pinMode(LED1_PIN, OUTPUT);
280  digitalWrite(LED1_PIN, HIGH);
281  #endif
282  #ifdef LED2_PIN
283  pinMode(LED2_PIN, OUTPUT);
284  digitalWrite(LED1_PIN, LOW);
285  #endif
286  #ifdef USER_INP
287  pinMode(USER_INP, INPUT);
288  #endif
289  #endif
290 }
291 
292 // Setup Wire I2C Interface
293 void init_wire()
294 {
295 #if (ENABLE_I2C1)
296  Wire.begin();
297  Wire.setClock(I2C1_BUS_CLOCK_HZ);
298 #endif
299 
300 #if (ENABLE_I2C2)
301  Wire2.begin();
302  Wire2.setClock(I2C2_BUS_CLOCK_HZ);
303 #endif
304 }
305 
306 // Setup RTC HW && LowPower Class STM32
307 void init_rtc(bool init)
308 {
309  // Init istance to STM RTC object
310  STM32RTC& rtc = STM32RTC::getInstance();
311  // Select RTC clock source: LSE_CLOCK (First Istance)
312  rtc.setClockSource(STM32RTC::LSE_CLOCK);
313  rtc.begin(); // initialize RTC 24H format
314  // Set the time if requireq to Reset value
315  if(init) {
316  // Set the date && Time Init Value
317  rtc.setHours(0);rtc.setMinutes(0);rtc.setSeconds(0);
318  rtc.setWeekDay(0);rtc.setDay(1);rtc.setMonth(1);rtc.setYear(24);
319  }
320  // Start LowPower configuration
321  LowPower.begin();
322  // Activate standard mode IdleHock Loop Power mode
323  LowPower.idleHookEnable();
324 }
ACCELEROMETER TASK cpp_freertos class.
CAN TASK cpp_freertos class.
Definition: can_task.h:132
void doFactoryReset(void)
Erase all registers such that the defaults are used at the next launch.
Definition: eeprom.h:49
bool Read(uint16_t address, uint8_t *buffer, uint16_t length)
Read a number of data byte from EEPROM.
Definition: eeprom.cpp:167
bool Write(uint16_t address, uint8_t *buffer, uint16_t length)
Write a number of data byte into EEPROM.
Definition: eeprom.cpp:86
ELABORATE DATA TASK cpp_freertos class.
Definition: flash.h:58
SENSOR TASK cpp_freertos class.
SUPERVISOR TASK cpp_freertos class.
WATCH DOG TASK cpp_freertos class.
Definition: wdt_task.h:66
#define TOTAL_INFO_TASK
Total Max Task for WDT Task Control.
Definition: config.h:180
#define SYSTEM_MESSAGE_QUEUE_LENGTH
Request system message queue length.
Definition: config.h:152
#define ELABORATE_DATA_QUEUE_LENGTH
Elaborate data message queue length.
Definition: config.h:154
#define RAIN_QUEUE_LENGTH
Request sensor queue length.
Definition: config.h:160
#define REPORT_DATA_QUEUE_LENGTH
Report data message queue length.
Definition: config.h:158
#define WDT_TIMEOUT_BASE_US
WatchDog Hardware microseconds timeout.
Definition: config.h:86
#define SERIAL_DEBUG_BAUD_RATE
Monitor Debug Serial speed.
Definition: config.h:133
#define BOOT_LOADER_STRUCT_ADDR
Bootloader start address
Definition: config.h:118
#define REQUEST_DATA_QUEUE_LENGTH
Request data message queue length.
Definition: config.h:156
void init_debug(uint32_t baudrate)
init serial monitor
Definition: debug.cpp:57
#define TRACE_INFO_F(...)
Definition: debug_F.h:57
@ suspended
Task is excluded from WDT Controller or Suspended complete.
Definition: local_typedef.h:68
void init_wire()
Definition: main.cpp:293
void init_rtc(bool init)
Definition: main.cpp:307
void setup()
Definition: main.cpp:5
void init_pins()
Init Pin (Diag and configuration)
Definition: main.cpp:271
void loop()
Definition: main.cpp:263
void SetupSystemPeripheral(void)
Startup PeripheralConfig Local Board.
uint64_t StimaV4GetSerialNumber(void)
Get StimaV4 Serial Number from UID Cpu and Module TYPE.
struct local elaborate data parameter
system_status_t * system_status
system status pointer struct
TwoWire * wire
Local Wire access for sensor accelerometer.
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
cpp_freertos::BinarySemaphore * systemStatusLock
Semaphore to system status access.
configuration_t * configuration
system configuration pointer struct
cpp_freertos::BinarySemaphore * wireLock
Semaphore to Wire access for sensor accelerometer.
EERegister * clRegister
Object Register C++ access.
cpp_freertos::BinarySemaphore * registerAccessLock
Semaphore to register Cyphal access.
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
struct local elaborate data parameter
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
cpp_freertos::Queue * elaborateDataQueue
Queue for elaborate data.
configuration_t * configuration
system configuration pointer struct
system_status_t * system_status
system status pointer struct
cpp_freertos::Queue * rainQueue
Queue to RAIN Event.
cpp_freertos::BinarySemaphore * systemStatusLock
semaphore access to system status
cpp_freertos::Queue * requestDataQueue
Queue for request data.
cpp_freertos::BinarySemaphore * configurationLock
semaphore access to configuration
cpp_freertos::Queue * reportDataQueue
Queue for report data.
struct local elaborate data parameter
cpp_freertos::BinarySemaphore * systemStatusLock
Semaphore to system status access.
system_status_t * system_status
system status pointer struct
cpp_freertos::Queue * systemMessageQueue
Queue for system message.
cpp_freertos::Queue * rainQueue
Queue for rain events.
cpp_freertos::BinarySemaphore * configurationLock
Semaphore to configuration access.
cpp_freertos::Queue * elaborateDataQueue
Queue for elaborate data.
configuration_t * configuration
system configuration pointer struct
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.
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 app_executed_ok
Flag running APP (setted after new firmware, prevert a rollback operation)
System module configuration.
Definition: local_typedef.h:48
uint64_t serial_number
module serial number
Definition: local_typedef.h:52
Report module.
System message for queue.
System module status.
Definition: local_typedef.h:84
task_t tasks[TOTAL_INFO_TASK]
Info Task && WDT.
Definition: local_typedef.h:92
task_flag state
Long sleep Task.
Definition: local_typedef.h:77
uint16_t stack
Stack Max Usage Monitor.
Definition: local_typedef.h:76