Stima V4 Slave RAIN  4.2
rain_sensor_task.cpp
Go to the documentation of this file.
1 
31 #define TRACE_LEVEL RAIN_SENSOR_TASK_TRACE_LEVEL
32 #define LOCAL_TASK_ID SENSOR_TASK_ID
33 
34 #include "tasks/rain_sensor_task.h"
35 
36 #if (MODULE_TYPE == STIMA_MODULE_TYPE_RAIN)
37 
38 using namespace cpp_freertos;
39 
45 RainSensorTask::RainSensorTask(const char *taskName, uint16_t stackSize, uint8_t priority, RainSensorParam_t rainSensorParam) : Thread(taskName, stackSize, priority), param(rainSensorParam)
46 {
47  // Start WDT controller and TaskState Flags
50 
52 
53  // Initialize ISR Event to Lock mode (Wait Init sensor to start)
54  is_isr_event_running = true;
55 
56  TRACE_INFO_F(F("Initializing rain event sensor handler...\r\n"));
57  pinMode(TIPPING_BUCKET_PIN, INPUT_PULLUP);
59  #if (USE_TIPPING_BUCKET_REDUNDANT)
60  pinMode(TIPPING_BUCKET_PIN_REDUNDANT, INPUT_PULLUP);
62  #endif
63 
65  Start();
66 };
67 
68 #if (ENABLE_STACK_USAGE)
70 void RainSensorTask::TaskMonitorStack()
71 {
72  uint16_t stackUsage = (uint16_t)uxTaskGetStackHighWaterMark( NULL );
73  if((stackUsage) && (stackUsage < param.system_status->tasks[LOCAL_TASK_ID].stack)) {
74  param.systemStatusLock->Take();
76  param.systemStatusLock->Give();
77  }
78 }
79 #endif
80 
83 void RainSensorTask::TaskWatchDog(uint32_t millis_standby)
84 {
85  // Local TaskWatchDog update
86  param.systemStatusLock->Take();
87  // Update WDT Signal (Direct or Long function Timered)
88  if(millis_standby)
89  {
90  // Check 1/2 Freq. controller ready to WDT only SET flag
91  if((millis_standby) < WDT_CONTROLLER_MS / 2) {
93  } else {
95  // Add security milimal Freq to check
97  }
98  }
99  else
101  param.systemStatusLock->Give();
102 }
103 
108 void RainSensorTask::TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation)
109 {
110  // Local TaskWatchDog update
111  param.systemStatusLock->Take();
112  // Signal Task sleep/disabled mode from request (Auto SET WDT on Resume)
114  (state_operation==task_flag::normal))
116  param.system_status->tasks[LOCAL_TASK_ID].state = state_operation;
118  param.system_status->tasks[LOCAL_TASK_ID].running_sub = state_subposition;
119  param.systemStatusLock->Give();
120 }
121 
124  rmapdata_t values_readed_from_sensor[VALUES_TO_READ_FROM_SENSOR_COUNT];
125  elaborate_data_t edata;
126 
127  // Request response for system queue Task controlled...
128  system_message_t system_message;
129 
130  uint8_t flag_event;
131 
132  bool bMainError, bRedundantError, bTippingError;
133  bool bEventMain, bEventRedundant;
134 
135  uint16_t error_count = 0;
136 
137  // Start Running Monitor and First WDT normal state
138  #if (ENABLE_STACK_USAGE)
139  TaskMonitorStack();
140  #endif
142 
143  while (true)
144  {
145 
146  switch (state)
147  {
149  // check if configuration is done loaded
151  {
153  rain_sensor.rain = 0;
158  bMainError = false;
159  bRedundantError = false;
160  bTippingError = false;
161  bEventMain = false;
162  bEventRedundant = false;
163  TRACE_VERBOSE_F(F("Sensor: WAIT -> INIT\r\n"));
165  }
166  else
167  {
168  // Local WatchDog update while config loaded
170  Delay(Ticks::MsToTicks(RAIN_TASK_WAIT_DELAY_MS));
171  }
172  // do something else with non-blocking wait ....
173  break;
174 
175  case SENSOR_STATE_INIT:
176  // Enter in suspended mode (wait queue from ISR Event...)
177  // Reset is_isr_event_running. Now Event interrupt ISR are checked (main and/or redundant)
178  is_isr_event_running = false;
181  // Waiting interrupt or External Reset (Suspend task)
182  localRainQueue->Dequeue(&flag_event);
183  // Is RESET RAIN? (param enqueued...)
184  if(flag_event == RAIN_TIPS_RESET) {
185  // Reset signal event (if error persistent, event error restored)
186  bMainError = false;
187  bRedundantError = false;
188  bTippingError = false;
189  error_count = 0;
190  // Reset standard counter and exit
191  rain_sensor.rain = 0;
195  break;
196  }
197  // Is RESET SCROLL? (false, is request Reset Counter value)
198  if(flag_event == RAIN_SCROLL_RESET) {
199  // Reset only scroll counter and exit
202  break;
203  }
204  // ... and HERE is EVENT RAIN... check if OK!!!
205  // ********************************************
206  // Starting Event Rain Counter check operartion
207  // ********************************************
209  TRACE_INFO_F(F("Sensor: checking event...\r\n"));
210 
211  #if(USE_TIPPING_CONTROL)
213  Delay(Ticks::MsToTicks(param.configuration->sensors.tipping_bucket_time_ms / 2));
215  #else
217  Delay(Ticks::MsToTicks(param.configuration->sensors.tipping_bucket_time_ms / 2));
219  #endif
220  break;
221 
223  // re-read pin status to filter spikes before increment rain tips
224  // Read time now is tipping_bucket_time_ms / 2 -> from event start
225  #if (!USE_TIPPING_BUCKET_REDUNDANT)
226  // Standard control with only one PIN
227  if (digitalRead(TIPPING_BUCKET_PIN) != TIPPING_EVENT_VALUE)
228  {
229  // Checking signal CLOGGED_UP (on Event or Reset... remote calling)
230  TRACE_INFO_F(F("Sensor: Skip spike (to fast)\r\n"));
231  error_count++;
232  bTippingError = true;
234  break;
235  }
236  #else
237  // Read Pin standard and redundant (all reed is not event... Error. If one is event, continue)
238  // Standard control with only one PIN
239  bEventMain = (digitalRead(TIPPING_BUCKET_PIN) == TIPPING_EVENT_VALUE);
240  bEventRedundant = (digitalRead(TIPPING_BUCKET_PIN_REDUNDANT) == TIPPING_EVENT_VALUE);
241  // All sensor readin gone (Sensor are synch, event too fast)
242  if ((!bEventMain)&&(!bEventRedundant))
243  {
244  TRACE_INFO_F(F("Sensor: Skip spike (to fast)\r\n"));
245  error_count++;
246  bTippingError = true;
248  break;
249  }
250  // Here event Main and/or Redundat is Ok. Check if difference occurs
251  if ((bEventMain)&&(!bEventRedundant))
252  {
253  // Error sensor redundant and signal to master
254  bRedundantError = true;
255  TRACE_INFO_F(F("Sensor: Error reading redundant tipping (no event)\r\n"));
256  }
257  if ((!bEventMain)&&(bEventRedundant))
258  {
259  // Error sensor redundant and signal to master
260  bMainError = true;
261  TRACE_INFO_F(F("Sensor: Error reading main tipping (no event)\r\n"));
262  }
263  #endif
264  TRACE_VERBOSE_F(F("Sensor: checking end event...\r\n"));
266  Delay(Ticks::MsToTicks(param.configuration->sensors.tipping_bucket_time_ms));
268  break;
269 
270  case SENSOR_STATE_READ:
271 
272  #if(USE_TIPPING_CONTROL)
273  // re-read pin status to be inverted from event before increment rain tips
274  // Read time now is tipping_bucket_time_ms * 1.5 -> from event start
275  #if (!USE_TIPPING_BUCKET_REDUNDANT)
276  // Standard control with only one PIN
277  if (digitalRead(TIPPING_BUCKET_PIN) != TIPPING_EVENT_VALUE)
278  #else
279  // Read Pin standard and redundant (all reed must to be !event... Error if one is event)
280  if ((digitalRead(TIPPING_BUCKET_PIN) != TIPPING_EVENT_VALUE) ||
282  #endif
283  {
284  // Always add full data
287  // Add this Value only if system is not in maintenance mode
293  }
294  TRACE_INFO_F(F("Sensor: Rain tips (count, full)\t%d\t%d,\r\n"), rain_sensor.tips_count, rain_sensor.tips_full);
295  }
296  else
297  {
298  TRACE_INFO_F(F("Sensor: Skip spike (to late)\r\n"));
299  error_count++;
300  bTippingError = true;
302  break;
303  }
304  #else
305  // Always add full data
308  // Add this Value only if system is not in maintenance mode
314  }
315  TRACE_INFO_F(F("Sensor: Rain tips (count, full)\t%d\t%d,\r\n"), rain_sensor.tips_count, rain_sensor.tips_full);
316  #endif
317 
318  edata.value = rain_sensor.tips_count;
319  edata.index = RAIN_TIPS_INDEX;
320  param.elaborateDataQueue->Enqueue(&edata, Ticks::MsToTicks(WAIT_QUEUE_REQUEST_PUSHDATA_MS));
321 
322  edata.value = rain_sensor.rain;
323  edata.index = RAIN_RAIN_INDEX;
324  param.elaborateDataQueue->Enqueue(&edata, Ticks::MsToTicks(WAIT_QUEUE_REQUEST_PUSHDATA_MS));
325 
326  edata.value = rain_sensor.rain_full;
327  edata.index = RAIN_FULL_INDEX;
328  param.elaborateDataQueue->Enqueue(&edata, Ticks::MsToTicks(WAIT_QUEUE_REQUEST_PUSHDATA_MS));
329 
330  edata.value = rain_sensor.rain_scroll;
331  edata.index = RAIN_SCROLL_INDEX;
332  param.elaborateDataQueue->Enqueue(&edata, Ticks::MsToTicks(WAIT_QUEUE_REQUEST_PUSHDATA_MS));
333 
334  #if (ENABLE_STACK_USAGE)
335  TaskMonitorStack();
336  #endif
337 
339  break;
340 
341  case SENSOR_STATE_END:
342  // Inibith (Interrupt) next input data for event_end_time_ms and check error stall
344  Delay(Ticks::MsToTicks(param.configuration->sensors.event_end_time_ms));
345 
346  // Saving Signal and exit event
348  break;
349 
350  case SENSOR_STATE_SPIKE:
351  // Standard control with only one PIN
352  if (digitalRead(TIPPING_BUCKET_PIN) == TIPPING_EVENT_VALUE)
353  {
354  bMainError = true;
355  TRACE_INFO_F(F("Sensor: Main tipping wrong timing or stalled tipping bucket\r\n"));
356  // Signal an error
357  }
358  #if (USE_TIPPING_BUCKET_REDUNDANT)
359  if (digitalRead(TIPPING_BUCKET_PIN) == TIPPING_EVENT_VALUE)
360  {
361  bRedundantError = true;
362  TRACE_INFO_F(F("Sensor: Redundant tipping wrong timing or stalled tipping bucket\r\n"));
363  // Signal an error
364  }
365  #endif
366  // Continuate switch, (No Break here...)
367 
369 
370  // Checking signal Event and error sensor
371  param.systemStatusLock->Take();
372  param.system_status->events.is_main_error = bMainError;
373  param.system_status->events.is_redundant_error = bRedundantError;
374  param.system_status->events.is_tipping_error = bTippingError;
375  param.system_status->events.error_count = error_count;
376  param.systemStatusLock->Give();
377 
378  #if (ENABLE_STACK_USAGE)
379  TaskMonitorStack();
380  #endif
381 
383  break;
384  }
385  }
386 }
387 
390  // Event TIPPING_BUCKET_PIN start when interrupt has occurred (security check on reading state)
391  uint8_t flags = RAIN_TIPS_INDEX;
392  BaseType_t pxHigherPTW = true;
393  // Event is also in execution... Exit, else Calling Queue from ISR
394  if(!is_isr_event_running) {
395  // Start an ISR Event
396  is_isr_event_running = true;
397  // enable Tipping bucket task queue
398  localRainQueue->EnqueueFromISR(&flags, &pxHigherPTW);
399  }
400 }
401 
402 #endif
static void ISR_tipping_bucket(void)
ISR Waiting event (restore task)
RainSensorTask(const char *taskName, uint16_t stackSize, uint8_t priority, RainSensorParam_t rainSensorParam)
Constructor for the sensor Task.
void TaskWatchDog(uint32_t millis_standby)
local watchDog and Sleep flag Task (optional)
RainSensorParam_t param
static bool is_isr_event_running
virtual void Run()
RUN Task.
void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation)
local suspend flag and positor running state Task (optional)
static cpp_freertos::Queue * localRainQueue
#define RAIN_SCROLL_INDEX
Definition: config.h:251
#define TIPPING_BUCKET_PIN
Input PIN tipping.
Definition: config.h:213
#define RAIN_TIPS_INDEX
Definition: config.h:247
#define WDT_CONTROLLER_MS
Task milliseconds minimal check.
Definition: config.h:90
#define TIPPING_EVENT_VALUE
Input PIN tipping expected event value.
Definition: config.h:211
#define TIPPING_BUCKET_PIN_REDUNDANT
Redundant PIN tipping (verify and alert)
Definition: config.h:215
#define WAIT_QUEUE_REQUEST_PUSHDATA_MS
Time to wait pushing data queue.
Definition: config.h:186
#define WDT_STARTING_TASK_MS
Init WatchDog Task local milliseconds.
Definition: config.h:88
#define RAIN_RAIN_INDEX
Definition: config.h:248
#define RAIN_SCROLL_RESET
Definition: config.h:252
#define RAIN_FULL_INDEX
Definition: config.h:249
#define RAIN_TIPS_RESET
Definition: config.h:250
#define UNUSED_SUB_POSITION
Monitor Sub Position not used flag.
Definition: config.h:94
#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
@ normal
Normal operation Task controller.
Definition: local_typedef.h:66
#define LOCAL_TASK_ID
#define RAIN_TASK_WAIT_DELAY_MS
#define VALUES_TO_READ_FROM_SENSOR_COUNT
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 * rainQueue
Queue for rain events.
cpp_freertos::Queue * elaborateDataQueue
Queue for elaborate data.
configuration_t * configuration
system configuration pointer struct
sensor_configuration_t sensors
sensors configurations
Definition: local_typedef.h:54
rmapdata_t tips_full
Number of tips readed (With Maintenance value, for Display LCD)
rmapdata_t tips_scroll
Number of tips readed for scrolling TPR calulation (without Maintenance value)
rmapdata_t rain
Rain official (without Maintenance value)
rmapdata_t rain_full
Rain unofficial (With Maintenance value, for Display LCD)
rmapdata_t rain_scroll
Rain scrolling for step TPR calculation (without Maintenance value)
rmapdata_t tips_count
Number of tips readed (without Maintenance value)
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.
bool is_cfg_loaded
Is config loaded.
Definition: local_typedef.h:97
struct system_status_t::@4 flags
Module error or alert.
bool is_main_error
Main sensor in error.
uint16_t error_count
Count of error event.
struct system_status_t::@5 events
Module error or alert timings continuos verify.
task_t tasks[TOTAL_INFO_TASK]
Info Task && WDT.
Definition: local_typedef.h:92
bool is_redundant_error
Redundant sensor in error.
bool is_maintenance
Module is in maintenance mode.
Definition: local_typedef.h:98
bool is_tipping_error
Tipping event error run.
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