Add TS80 to build.sh
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user