1 /* 2 * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #pragma once 7 8 void esp_time_impl_init(void); 9 10 uint64_t esp_time_impl_get_time(void); 11 12 uint64_t esp_time_impl_get_time_since_boot(void); 13 14 uint32_t esp_time_impl_get_time_resolution(void); 15 16 void esp_time_impl_set_boot_time(uint64_t t); 17 18 uint64_t esp_time_impl_get_boot_time(void); 19