2021-12-14 19:01:19 +08:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2016-10-25 22:12:07 +08:00
|
|
|
|
2022-07-04 11:53:42 +02:00
|
|
|
#pragma once
|
2016-10-25 22:12:07 +08:00
|
|
|
|
2016-10-25 22:16:08 +08:00
|
|
|
#include <sys/reent.h>
|
|
|
|
|
2022-07-04 11:53:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-06-23 11:53:58 +08:00
|
|
|
/*
|
|
|
|
* Initialize newlib time functions
|
|
|
|
*/
|
|
|
|
void esp_newlib_time_init(void);
|
|
|
|
|
2016-10-25 22:16:08 +08:00
|
|
|
/**
|
|
|
|
* Replacement for newlib's _REENT_INIT_PTR and __sinit.
|
|
|
|
*
|
|
|
|
* Called from startup code and FreeRTOS, not intended to be called from
|
|
|
|
* application code.
|
|
|
|
*/
|
|
|
|
void esp_reent_init(struct _reent* r);
|
|
|
|
|
2020-11-10 18:40:01 +11:00
|
|
|
/**
|
2019-04-15 21:07:38 +08:00
|
|
|
* Clean up some of lazily allocated buffers in REENT structures.
|
|
|
|
*/
|
2019-07-16 16:33:30 +07:00
|
|
|
void esp_reent_cleanup(void);
|
2019-04-15 21:07:38 +08:00
|
|
|
|
2016-10-25 22:12:07 +08:00
|
|
|
/**
|
2020-12-30 09:31:16 +08:00
|
|
|
* Function which sets up newlib in ROM for use with ESP-IDF
|
|
|
|
*
|
|
|
|
* Includes defining the syscall table, setting up any common locks, etc.
|
2016-10-25 22:12:07 +08:00
|
|
|
*
|
|
|
|
* Called from the startup code, not intended to be called from application
|
|
|
|
* code.
|
|
|
|
*/
|
2020-12-30 09:31:16 +08:00
|
|
|
void esp_newlib_init(void);
|
|
|
|
|
|
|
|
void esp_setup_syscall_table(void) __attribute__((deprecated("Please call esp_newlib_init() in newer code")));
|
2016-10-25 22:12:07 +08:00
|
|
|
|
2016-11-02 17:17:28 +08:00
|
|
|
/**
|
2017-08-29 11:48:18 +08:00
|
|
|
* Update current microsecond time from RTC
|
2016-11-02 17:17:28 +08:00
|
|
|
*/
|
2019-07-16 16:33:30 +07:00
|
|
|
void esp_set_time_from_rtc(void);
|
2016-10-25 22:12:07 +08:00
|
|
|
|
2018-06-04 12:39:18 +05:00
|
|
|
/*
|
2021-12-14 19:01:19 +08:00
|
|
|
* Sync timekeeping timers, RTC and high-resolution timer. Update boot_time.
|
2018-06-04 12:39:18 +05:00
|
|
|
*/
|
2021-12-14 19:01:19 +08:00
|
|
|
void esp_sync_timekeeping_timers(void);
|
|
|
|
|
|
|
|
/* Kept for backward compatibility */
|
|
|
|
#define esp_sync_counters_rtc_and_frc esp_sync_timekeeping_timers
|
2018-06-04 12:39:18 +05:00
|
|
|
|
2020-06-10 18:03:32 +00:00
|
|
|
/**
|
|
|
|
* Initialize newlib static locks
|
|
|
|
*/
|
|
|
|
void esp_newlib_locks_init(void);
|
|
|
|
|
2022-07-04 11:53:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|