esp_time_impl.h 401 B

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