Much better crash handling. So wow.

* Furi, FuriHal, Desktop: much better crash handling. So wow.
* FuriHal: add missing include in FreeRTOSConfig.h

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
Albert Kharisov
2021-12-31 21:32:49 +04:00
committed by GitHub
parent 475fa91ba6
commit 5b1f50e63a
16 changed files with 116 additions and 39 deletions
@@ -182,25 +182,19 @@ void NMI_Handler(void) {
}
void HardFault_Handler(void) {
if ((*(volatile uint32_t *)CoreDebug_BASE) & (1 << 0)) {
__asm("bkpt 1");
}
while (1) {}
furi_crash("HardFault");
}
void MemManage_Handler(void) {
__asm("bkpt 1");
while (1) {}
furi_crash("MemManage");
}
void BusFault_Handler(void) {
__asm("bkpt 1");
while (1) {}
furi_crash("BusFault");
}
void UsageFault_Handler(void) {
__asm("bkpt 1");
while (1) {}
furi_crash("UsageFault");
}
void DebugMon_Handler(void) {