systick.h 182 B

1234567891011
  1. #ifndef __SYSTICK_H__
  2. #define __SYSTICK_H__
  3. #include "gd32f10x.h"
  4. extern volatile uint32_t TickCounter;
  5. extern volatile uint64_t TickCounter_u64;
  6. void SysTick_init(void);
  7. #endif