2020-06-23 04:46:06 -04:00
|
|
|
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#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"
|
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
|
|
|
}
|