mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
9 lines
124 B
C
9 lines
124 B
C
#include <FreeRTOS.h>
|
|
#include <task.h>
|
|
#include <stdint.h>
|
|
|
|
uint32_t hal_time_ms(void)
|
|
{
|
|
return xTaskGetTickCount();
|
|
}
|