Stima V4 Slave RAIN  4.2
rain_sensor_task.h
Go to the documentation of this file.
1 
32 #ifndef _RAIN_SENSOR_TASK_H
33 #define _RAIN_SENSOR_TASK_H
34 
35 #include "debug_config.h"
36 #include "local_typedef.h"
37 #include "stima_utility.h"
38 #include "str.h"
39 
40 #if (MODULE_TYPE == STIMA_MODULE_TYPE_RAIN)
41 
42 #define RAIN_TASK_POWER_ON_WAIT_DELAY_MS (100)
43 #define RAIN_TASK_WAIT_DELAY_MS (50)
44 
45 #include <STM32FreeRTOS.h>
46 #include "thread.hpp"
47 #include "ticks.hpp"
48 #include "semaphore.hpp"
49 #include "queue.hpp"
51 
52 #if (ENABLE_I2C1 || ENABLE_I2C2)
53 #include <Wire.h>
54 #endif
55 
56 #include "debug_F.h"
57 
58 using namespace cpp_freertos;
59 
61 typedef struct {
64  cpp_freertos::BinarySemaphore *configurationLock;
65  cpp_freertos::BinarySemaphore *systemStatusLock;
66  cpp_freertos::Queue *systemMessageQueue;
67  cpp_freertos::Queue *elaborateDataQueue;
68  cpp_freertos::Queue *rainQueue;
70 
72 class RainSensorTask : public cpp_freertos::Thread {
73 
75  typedef enum
76  {
84  SENSOR_STATE_SAVE_SIGNAL
85  } State_t;
86 
87 public:
88  RainSensorTask(const char *taskName, uint16_t stackSize, uint8_t priority, RainSensorParam_t rainSensorParam);
89 
90 protected:
91  virtual void Run();
92 
93 private:
94  #if (ENABLE_STACK_USAGE)
95  void TaskMonitorStack();
96  #endif
97  void TaskWatchDog(uint32_t millis_standby);
98  void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation);
99 
100  static void ISR_tipping_bucket(void);
101 
105 
106  // Acces static memeber parameter of class
107  inline static cpp_freertos::Queue *localRainQueue;
108 
109  // Isr event flag running event
110  inline static bool is_isr_event_running;
111 };
112 
113 #endif
114 #endif
SENSOR TASK cpp_freertos class.
RainSensorParam_t param
static bool is_isr_event_running
static cpp_freertos::Queue * localRainQueue
State_t
Enum for state switch of running method.
task_flag
Task state Flag type.
Definition: local_typedef.h:65
Interface STM32 hardware_hal STIMAV4 Header config.
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
System module configuration.
Definition: local_typedef.h:48
Rain measure.
System module status.
Definition: local_typedef.h:84