1
0
forked from me/IronOS

Add TS80 to build.sh

This commit is contained in:
Ben V. Brown
2018-10-11 15:38:25 +11:00
parent b2e52bcb15
commit 2e210da7a6
3 changed files with 45 additions and 11 deletions

View File

@@ -12,27 +12,22 @@ extern TIM_HandleTypeDef htim1; //used for the systick
/******************************************************************************/
void NMI_Handler(void) {
NVIC_SystemReset();
}
//We have the assembly for a breakpoint trigger here to halt the system when a debugger is connected
// Hardfault handler, often a screwup in the code
void HardFault_Handler(void) {
NVIC_SystemReset();
}
// Memory management unit had an error
void MemManage_Handler(void) {
NVIC_SystemReset();
}
// Prefetcher or busfault occured
void BusFault_Handler(void) {
NVIC_SystemReset();
}
void UsageFault_Handler(void) {
NVIC_SystemReset();
}
void DebugMon_Handler(void) {