2021-11-06 17:24:45 +08:00
|
|
|
/*
|
2024-12-18 20:38:44 +08:00
|
|
|
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:24:45 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-06-23 16:46:06 +08:00
|
|
|
|
|
|
|
#include "esp_system.h"
|
|
|
|
#include "esp_attr.h"
|
|
|
|
|
2020-07-14 14:46:13 +08:00
|
|
|
#include "soc/rtc.h"
|
2020-06-23 16:46:06 +08:00
|
|
|
|
2020-08-24 11:33:57 +08:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
|
2020-07-14 14:46:13 +08:00
|
|
|
#include "sdkconfig.h"
|
2020-06-23 16:46:06 +08:00
|
|
|
|
2024-12-27 15:40:46 +08:00
|
|
|
#include "esp_rtc_time.h"
|
2020-07-14 14:46:13 +08:00
|
|
|
|
|
|
|
#include "esp_private/startup_internal.h"
|
2020-06-23 16:46:06 +08:00
|
|
|
|
2020-07-14 14:46:13 +08:00
|
|
|
// A component in the build should provide strong implementations that make use of
|
|
|
|
// and actual hardware timer to provide timekeeping functions.
|
|
|
|
int64_t IRAM_ATTR __attribute__((weak)) esp_system_get_time(void)
|
2020-06-23 16:46:06 +08:00
|
|
|
{
|
2020-07-14 14:46:13 +08:00
|
|
|
int64_t t = 0;
|
2020-08-24 11:33:57 +08:00
|
|
|
t = (esp_rtc_get_time_us() - g_startup_time);
|
2020-07-14 14:46:13 +08:00
|
|
|
return t;
|
2020-06-23 16:46:06 +08:00
|
|
|
}
|
|
|
|
|
2020-07-14 14:46:13 +08:00
|
|
|
uint32_t IRAM_ATTR __attribute__((weak)) esp_system_get_time_resolution(void)
|
2020-06-23 16:46:06 +08:00
|
|
|
{
|
2020-10-07 17:39:11 +08:00
|
|
|
return 1000000000L / rtc_clk_slow_freq_get_hz();
|
2020-11-10 18:40:01 +11:00
|
|
|
}
|