Stima V4 Slave RAIN  4.2
freeRTOS_callback.cpp
Go to the documentation of this file.
1 
30 #include "FreeRTOS.h"
31 #include "task.h"
33 #include "STM32LowPower.h"
34 #include <IWatchdog.h>
35 
36 // /*******************************************************************************************
37 // ********************************************************************************************
38 // Freertos Param Config and CallBack __Weak Function Redefinition
39 // ********************************************************************************************
40 // *******************************************************************************************/
41 
42 #ifdef _USE_FREERTOS_LOW_POWER
43 
46 extern "C" void xTaskSleepPrivate(TickType_t *xExpectedIdleTime) {
47  #if (LOWPOWER_MODE==SLEEP_IDLE)
48  LowPower.idle(*xExpectedIdleTime);
49  #elif (LOWPOWER_MODE==SLEEP_LOWPOWER)
50  LowPower.sleep(*xExpectedIdleTime - 10);
51  #elif (LOWPOWER_MODE==SLEEP_STOP2)
52  LowPower.deepSleep(*xExpectedIdleTime - 10);
53  #else
54  *xExpectedIdleTime = 0;
55  #endif
56 }
57 
60 extern "C" void xTaskWakeUpPrivate(TickType_t *xExpectedIdleTime) {
61 }
62 
63 // Remove Arduino OSSysTick for LPTIM(x) IRQ lptimTick.c Driver (AutoInc OsTick)
64 // Is Need to redefined weak void __attribute__((weak)) osSystickHandler(void)
65 // Note FROM Freertos_Config.h
66 /*
67  * IMPORTANT:
68  * SysTick_Handler() from stm32duino core is calling weak osSystickHandler().
69  * Both CMSIS-RTOSv2 and CMSIS-RTOS override osSystickHandler()
70  * which is calling xPortSysTickHandler(), defined in respective CortexM-x port
71 */
72 #if ( configUSE_TICKLESS_IDLE == 2 )
73 extern "C" void osSystickHandler()
74 {
75  // osSystickHandler CallBack UNUSED for LPTIM1 IRQ Set Increment of OsTickHadler
76  // Optional User Code about osSystickHandler Private Here
77  // ...
78 }
79 #endif
80 
81 #endif
82 
83 #if(DEBUG_MODE)
84 //------------------------------------------------------------------------------
87 static void delayMS(uint32_t millis) {
88  uint32_t iterations = millis * (F_CPU/7000);
89  uint32_t i;
90  for(i = 0; i < iterations; ++i) {
91  __asm__("nop\n\t");
92  }
93 }
94 
97 static void faultStimaV4(int n) {
98  #ifdef HFLT_PIN
99  __disable_irq();
100  pinMode(HFLT_PIN, OUTPUT);
101  for (;;) {
102  int i;
103  #if (ENABLE_WDT)
104  // Error signal WDT Refresh (For debugger only)
105  IWatchdog.reload();
106  #endif
107  for (i = 0; i < n; i++) {
108  digitalWrite(HFLT_PIN, 1);
109  delayMS(300);
110  digitalWrite(HFLT_PIN, 0);
111  delayMS(300);
112  }
113  delayMS(2000);
114  }
115 #else
116  while(1);
117 #endif // HFLT_PIN
118 }
119 //------------------------------------------------------------------------------
120 #endif
121 
122 #if ( configCHECK_FOR_STACK_OVERFLOW >= 1 )
130 extern "C" void vApplicationStackOverflowHook(TaskHandle_t pxTask, char *pcTaskName) {
131  // Ned to use Serial.print direct for prevent Malloc from RTOS (ISR Malloc ASSERT Error)
132  Serial.print("Error stack overflow form task: ");
133  Serial.print(pcTaskName);
134  Serial.flush();
135  #if(DEBUG_MODE)
136  faultStimaV4(3);
137  #else
138  NVIC_SystemReset();
139  #endif
140 }
141 #endif /* configCHECK_FOR_STACK_OVERFLOW >= 1 */
142 
143 //------------------------------------------------------------------------------
144 // catch exceptions
145 
146 // Generic Error_Handler
147 #if(ERROR_HANDLER_CB)
148 extern "C" void _Error_Handler(const char *msg, int val)
149 {
150  /* User can add his own implementation to report the HAL error return state */
151  // Ned to use Serial.print direct for prevent Malloc from RTOS (ISR Malloc ASSERT Error)
152  Serial.print("Error handler: ");
153  Serial.print(msg);
154  Serial.print(", ");
155  Serial.print(val);
156  Serial.flush();
157  #if(DEBUG_MODE)
158  faultStimaV4(3);
159  #else
160  NVIC_SystemReset();
161  #endif
162 }
163 #endif
164 
166 extern "C" void hard_fault_isr() {
167  #if(DEBUG_MODE)
168  faultStimaV4(4);
169  #else
170  NVIC_SystemReset();
171  #endif
172 }
174 extern "C" void HardFault_Handler() {
175  #if(DEBUG_MODE)
176  faultStimaV4(4);
177  #else
178  NVIC_SystemReset();
179  #endif
180 }
181 
183 extern "C" void bus_fault_isr() {
184  #if(DEBUG_MODE)
185  faultStimaV4(5);
186  #else
187  NVIC_SystemReset();
188  #endif
189 }
191 extern "C" void BusFault_Handler() {
192  #if(DEBUG_MODE)
193  faultStimaV4(5);
194  #else
195  NVIC_SystemReset();
196  #endif
197 }
198 
200 extern "C" void usage_fault_isr() {
201  #if(DEBUG_MODE)
202  faultStimaV4(6);
203  #else
204  NVIC_SystemReset();
205  #endif
206 }
208 extern "C" void UsageFault_Handler() {
209  #if(DEBUG_MODE)
210  faultStimaV4(6);
211  #else
212  NVIC_SystemReset();
213  #endif
214 }
215 
217 extern "C" void MemManage_fault_isr() {
218  #if(DEBUG_MODE)
219  faultStimaV4(7);
220  #else
221  NVIC_SystemReset();
222  #endif
223 }
225 extern "C" void MemManage_Handler() {
226  #if(DEBUG_MODE)
227  faultStimaV4(7);
228  #else
229  NVIC_SystemReset();
230  #endif
231 }
void BusFault_Handler()
void HardFault_Handler()
void hard_fault_isr()
void UsageFault_Handler()
void bus_fault_isr()
void MemManage_fault_isr()
void MemManage_Handler()
void usage_fault_isr()
Interface STM32 hardware_hal STIMAV4 Header config.