2022-06-17 14:59:56 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-06-23 03:53:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
void esp_time_impl_init(void);
|
|
|
|
|
|
|
|
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 07:40:01 +00:00
|
|
|
uint64_t esp_time_impl_get_boot_time(void);
|