18 lines
482 B
C
18 lines
482 B
C
/*
|
|
* SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_rom_sys.h"
|
|
#include "esp_cpu.h"
|
|
#include "esp_log_timestamp.h"
|
|
|
|
/* FIXME: define an API for getting the timestamp in soc/hal IDF-2351 */
|
|
uint32_t esp_log_early_timestamp(void)
|
|
{
|
|
return esp_cpu_get_cycle_count() / (esp_rom_get_cpu_ticks_per_us() * 1000);
|
|
}
|
|
|
|
uint32_t esp_log_timestamp(void) __attribute__((alias("esp_log_early_timestamp")));
|