btstack/port/esp32/main/hal_time_ms.c
2017-05-05 15:20:30 +02:00

9 lines
147 B
C

#include "hal_time_ms.h"
uint32_t esp_log_timestamp();
uint32_t hal_time_ms(void) {
// super hacky way to get ms
return esp_log_timestamp();
}