Stima V4 Slave RAIN  4.2
accelerometer_task.h
Go to the documentation of this file.
1 
30 #ifndef _ACCELEROMETER_TASK_H
31 #define _ACCELEROMETER_TASK_H
32 
33 #include "debug_config.h"
34 #include "local_typedef.h"
35 #include "str.h"
36 #include "stima_utility.h"
37 
38 #if (ENABLE_ACCELEROMETER)
39 
40 #include <STM32FreeRTOS.h>
41 #include "thread.hpp"
42 #include "ticks.hpp"
43 #include "semaphore.hpp"
44 #include "queue.hpp"
46 #include "drivers/accelerometer.h"
47 
48 #include <STM32RTC.h>
49 
50 // Register EEprom
51 #include "register_class.hpp"
52 
53 #include "debug_F.h"
54 
55 using namespace cpp_freertos;
56 
57 // Main TASK Switch Delay
58 #define ACCELEROMETER_TASK_WAIT_DELAY_MS (20)
59 #define ACCELEROMETER_TASK_SLEEP_DELAY_MS (850)
60 
61 #define BUBBLE_ANGLE_ERROR (0.04)
62 #define BUBBLE_ANGLE_MIRROR (0.75)
63 
64 #define BUBBLE_TIMINGS_VERIFY (14400)
65 
67 typedef struct {
70  TwoWire *wire;
71  cpp_freertos::BinarySemaphore *systemStatusLock;
72  cpp_freertos::BinarySemaphore *registerAccessLock;
73  cpp_freertos::BinarySemaphore *wireLock;
74  cpp_freertos::Queue *systemMessageQueue;
77 
79 class AccelerometerTask : public cpp_freertos::Thread {
80 
82  typedef enum
83  {
91  ACCELEROMETER_STATE_HARDWARE_FAIL
92  } AccelerometerState_t;
93 
94 public:
95  AccelerometerTask(const char *taskName, uint16_t stackSize, uint8_t priority, AccelerometerParam_t AccelerometerParam);
96 
97 protected:
98  virtual void Run();
99 
100 private:
101 
102  #if (ENABLE_STACK_USAGE)
103  void TaskMonitorStack();
104  #endif
105  void TaskWatchDog(uint32_t millis_standby);
106  void TaskState(uint8_t state_position, uint8_t state_subposition, task_flag state_operation);
107 
108  void printConfiguration(void);
109  void loadConfiguration(void);
110  void saveConfiguration(bool is_default);
111  void calibrate(bool is_default, bool save_register);
112  bool checkModule(void);
113  void setupModule(void);
114  bool readModule(void);
115  void powerDownModule(void);
116 
117  // Rtc check event access
118  STM32RTC &rtc = STM32RTC::getInstance();
119 
124 
125  // Value data
126  float value_x;
127  float value_y;
128  float value_z;
129 };
130 
131 #endif
132 #endif
accelerometer IIS328DQ header file
ACCELEROMETER TASK cpp_freertos class.
accelerometer_t accelerometer_configuration
AccelerometerState_t state
AccelerometerState_t
Enum for state switch of running method.
AccelerometerParam_t param
Accelerometer accelerometer
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
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.
System module configuration.
Definition: local_typedef.h:48
System module status.
Definition: local_typedef.h:84