bexus_sysclock.h 260 B

12345678910111213141516
  1. #ifndef bexus_sysclock_h
  2. #define bexus_sysclock_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "stm32f4xx_it.h"
  7. uint32_t millis(void);
  8. extern volatile uint32_t sysTickCounter;
  9. extern volatile uint32_t lastCoreClock;
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif