You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
309 B
21 lines
309 B
#include "irqhandler.h"
|
|
|
|
void NMI_IRQHandler(void) {}
|
|
|
|
void HardFault_IRQHandler(void) {
|
|
while (1) {
|
|
}
|
|
}
|
|
|
|
void SVC_IRQHandler(void) {}
|
|
|
|
void PendSV_IRQHandler(void) {}
|
|
|
|
|
|
uint32_t g_sys_sick = 0;
|
|
uint32_t print_time=0;
|
|
void SysTick_IRQHandler(void) {
|
|
g_sys_sick++;
|
|
print_time++;
|
|
}
|
|
|