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.

19 lines
269 B

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. void SysTick_IRQHandler(void) {
  11. g_sys_sick++;
  12. }