mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-12 17:48:09 +00:00
24 lines
721 B
C
24 lines
721 B
C
#include "common.h"
|
|
|
|
void fault_handlers_init(void) {
|
|
// Enable BUS fault and USAGE fault handlers
|
|
SCB->SHCSR |= (SCB_SHCSR_USGFAULTENA_Msk | SCB_SHCSR_BUSFAULTENA_Msk);
|
|
}
|
|
|
|
void HardFault_Handler(void) { error_shutdown("INTERNAL ERROR", "(HF)"); }
|
|
|
|
void MemManage_Handler_MM(void) { error_shutdown("INTERNAL ERROR", "(MM)"); }
|
|
|
|
void MemManage_Handler_SO(void) { error_shutdown("INTERNAL ERROR", "(SO)"); }
|
|
|
|
void BusFault_Handler(void) { error_shutdown("INTERNAL ERROR", "(BF)"); }
|
|
|
|
void UsageFault_Handler(void) { error_shutdown("INTERNAL ERROR", "(UF)"); }
|
|
|
|
void NMI_Handler(void) {
|
|
// Clock Security System triggered NMI
|
|
if ((RCC->CIR & RCC_CIR_CSSF) != 0) {
|
|
error_shutdown("INTERNAL ERROR", "(CS)");
|
|
}
|
|
}
|