OVMS3-idf/components/wear_levelling/test_wl_host/esp_log_stub.cpp
2017-04-17 11:01:17 +08:00

18 lines
302 B
C++

#include <stdio.h>
#include "esp_log.h"
void esp_log_write(esp_log_level_t level,
const char *tag,
const char *format, ...)
{
va_list arg;
va_start(arg, format);
vprintf(format, arg);
va_end(arg);
}
uint32_t esp_log_timestamp()
{
return 0;
}