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.

10 lines
159 B

2 years ago
  1. #include "ticket.hpp"
  2. extern "C" {
  3. uint32_t zos_get_tick(void) {
  4. #ifdef IFLYTOP_ENABLE_OS
  5. return osKernelSysTick();
  6. #else
  7. return HAL_GetTick();
  8. #endif
  9. }
  10. }