2022-06-17 16:59:56 +02:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2020-06-23 11:53:58 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
uint64_t esp_time_impl_get_time(void);
|
|
|
|
|
|
|
|
|
|
uint64_t esp_time_impl_get_time_since_boot(void);
|
|
|
|
|
|
|
|
|
|
uint32_t esp_time_impl_get_time_resolution(void);
|
|
|
|
|
|
|
|
|
|
void esp_time_impl_set_boot_time(uint64_t t);
|
|
|
|
|
|
2020-11-10 18:40:01 +11:00
|
|
|
uint64_t esp_time_impl_get_boot_time(void);
|
2024-09-26 13:13:20 +07:00
|
|
|
|
|
|
|
|
void esp_sync_timekeeping_timers(void);
|
|
|
|
|
|
|
|
|
|
void esp_set_time_from_rtc(void);
|