Stima V4 Slave RAIN  4.2
wdt_task.h
Go to the documentation of this file.
1 
30 #ifndef _WDT_TASK_H
31 #define _WDT_TASK_H
32 
33 #include "debug_config.h"
34 #include "local_typedef.h"
35 #include "str.h"
36 
37 #include <STM32FreeRTOS.h>
38 #include "thread.hpp"
39 #include "ticks.hpp"
40 #include "semaphore.hpp"
41 #include "queue.hpp"
43 #include "drivers/eeprom.h"
44 
45 #include <STM32RTC.h>
46 #include <IWatchdog.h>
47 
48 #include "debug_F.h"
49 
50 // Main TASK Switch Delay
51 #define WDT_TASK_WAIT_DELAY_MS (WDT_CONTROLLER_MS)
52 
53 using namespace cpp_freertos;
54 
56 typedef struct {
59  cpp_freertos::BinarySemaphore *systemStatusLock;
60  cpp_freertos::BinarySemaphore *wireLock;
61  cpp_freertos::BinarySemaphore *rtcLock;
63 } WdtParam_t;
64 
66 class WdtTask : public cpp_freertos::Thread {
67 
68 public:
69  WdtTask(const char *taskName, uint16_t stackSize, uint8_t priority, WdtParam_t wdtParam);
70 
71 protected:
72  virtual void Run();
73 
74 private:
75 
76  STM32RTC& rtc = STM32RTC::getInstance();
77 
79 
80 };
81 
82 #endif
Definition: eeprom.h:49
WATCH DOG TASK cpp_freertos class.
Definition: wdt_task.h:66
virtual void Run()
WdtTask(const char *taskName, uint16_t stackSize, uint8_t priority, WdtParam_t wdtParam)
WdtParam_t param
Definition: wdt_task.h:78
Interface STM32 hardware_hal STIMAV4 Header config.
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
cpp_freertos::BinarySemaphore * wireLock
semaphore access to wire I2C
Definition: wdt_task.h:60
bootloader_t * boot_request
bootloader struct access pointer
Definition: wdt_task.h:58
Backup && Upload Firmware TypeDef (BootLoader)
System module status.
Definition: local_typedef.h:84