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.
 
 

11 lines
159 B

#include "ticket.hpp"
extern "C" {
uint32_t zos_get_tick(void) {
#ifdef IFLYTOP_ENABLE_OS
return osKernelSysTick();
#else
return HAL_GetTick();
#endif
}
}