systick.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef __SYSTICK_H
  2. #define __SYSTICK_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __SYSTICK_H_GLOBAL
  7. #define __SYSTICK_H_EXTERN
  8. #else
  9. #define __SYSTICK_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. #include <stdint.h>
  24. /************************************************************************************************
  25. * Defines *
  26. ************************************************************************************************/
  27. #define SYSTICK_EXT_CLOCK_1MS_CNT (SystemCoreClock / 1000)
  28. /************************************************************************************************
  29. * Typedefs *
  30. ************************************************************************************************/
  31. /************************************************************************************************
  32. * Interfaces *
  33. ************************************************************************************************/
  34. void systick_init(void);
  35. void systick_handler(void);
  36. uint32_t get_systick_ms(void);
  37. uint32_t get_systick_us(void);
  38. void dev_systick_decrement(void);
  39. void dev_systick_increase(void);
  40. void ms_delay(uint8_t ms_time);
  41. #ifdef __cplusplus
  42. };
  43. #endif
  44. #endif // __SYSTICK_H