2021-11-06 05:24:45 -04:00
|
|
|
/*
|
2022-01-17 21:32:56 -05:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 05:24:45 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-06-23 04:46:06 -04:00
|
|
|
|
|
|
|
#include "esp_system.h"
|
|
|
|
#include "esp_attr.h"
|
|
|
|
|
2020-07-14 02:46:13 -04:00
|
|
|
#include "soc/rtc.h"
|
2020-06-23 04:46:06 -04:00
|
|
|
|
2020-08-23 23:33:57 -04:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
|
2020-07-14 02:46:13 -04:00
|
|
|
#include "sdkconfig.h"
|
2020-06-23 04:46:06 -04:00
|
|
|
|
2020-07-14 02:46:13 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
#include "esp32/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
|
|
|
#include "esp32s2/rtc.h"
|
2020-07-29 01:13:51 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S3
|
|
|
|
#include "esp32s3/rtc.h"
|
2020-11-26 03:56:13 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
#include "esp32c3/rtc.h"
|
2021-06-10 03:22:43 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32H2
|
|
|
|
#include "esp32h2/rtc.h"
|
2022-01-17 21:32:56 -05:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C2
|
|
|
|
#include "esp32c2/rtc.h"
|
2022-07-12 08:42:28 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C6
|
|
|
|
#include "esp32c6/rtc.h"
|
2020-07-14 02:46:13 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "esp_private/startup_internal.h"
|
2020-06-23 04:46:06 -04:00
|
|
|
|
2020-07-14 02:46:13 -04: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 04:46:06 -04:00
|
|
|
{
|
2020-07-14 02:46:13 -04:00
|
|
|
int64_t t = 0;
|
2020-08-23 23:33:57 -04:00
|
|
|
t = (esp_rtc_get_time_us() - g_startup_time);
|
2020-07-14 02:46:13 -04:00
|
|
|
return t;
|
2020-06-23 04:46:06 -04:00
|
|
|
}
|
|
|
|
|
2020-07-14 02:46:13 -04:00
|
|
|
uint32_t IRAM_ATTR __attribute__((weak)) esp_system_get_time_resolution(void)
|
2020-06-23 04:46:06 -04:00
|
|
|
{
|
2020-10-07 05:39:11 -04:00
|
|
|
return 1000000000L / rtc_clk_slow_freq_get_hz();
|
2020-11-10 02:40:01 -05:00
|
|
|
}
|