ICARUS OS (Intelligent Cooperative Architecture for Real-time Unified Systems) 0.1.0
Preemptive Real-Time Operating System for ARM Cortex-M7
Loading...
Searching...
No Matches
error.c
Go to the documentation of this file.
1
26#ifndef SRC_BSP_ERROR_C_
27#define SRC_BSP_ERROR_C_
28
29#include "bsp/error.h"
30
50void Error_Handler(void) {
51 __disable_irq();
52 while (1) {
53 __NOP();
54 }
55}
56
57
58
59
60#endif /* SRC_BSP_ERROR_C_ */
void Error_Handler(void)
System error handler for unrecoverable faults.
Definition error.c:50
ICARUS OS Error Handling Interface.