Files
MuditaOS/module-bluetooth/Bluetooth/glucode/hal_time_ms.c
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

9 lines
124 B
C

#include <FreeRTOS.h>
#include <task.h>
#include <stdint.h>
uint32_t hal_time_ms(void)
{
return xTaskGetTickCount();
}