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.

23 lines
313 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #include "irqhandler.h"
  2. void NMI_IRQHandler(void) {}
  3. void HardFault_IRQHandler(void) {
  4. while (1) {
  5. }
  6. }
  7. void SVC_IRQHandler(void) {}
  8. void PendSV_IRQHandler(void) {}
  9. uint32_t g_sys_sick = 0;
  10. uint32_t print_time=0;
  11. void SysTick_IRQHandler(void) {
  12. g_sys_sick++;
  13. print_time++;
  14. }