2021-12-14 06:01:19 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2016-10-25 10:12:07 -04:00
|
|
|
|
2022-07-04 05:53:42 -04:00
|
|
|
#pragma once
|
2016-10-25 10:12:07 -04:00
|
|
|
|
2016-10-25 10:16:08 -04:00
|
|
|
#include <sys/reent.h>
|
|
|
|
|
2022-07-04 05:53:42 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-06-22 23:53:58 -04:00
|
|
|
/*
|
|
|
|
* Initialize newlib time functions
|
|
|
|
*/
|
|
|
|
void esp_newlib_time_init(void);
|
|
|
|
|
2016-10-25 10:16:08 -04: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 02:40:01 -05:00
|
|
|
/**
|
2019-04-15 09:07:38 -04:00
|
|
|
* Clean up some of lazily allocated buffers in REENT structures.
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
void esp_reent_cleanup(void);
|
2019-04-15 09:07:38 -04:00
|
|
|
|
2016-10-25 10:12:07 -04:00
|
|
|
/**
|
2020-12-29 20:31:16 -05: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 10:12:07 -04:00
|
|
|
*
|
|
|
|
* Called from the startup code, not intended to be called from application
|
|
|
|
* code.
|
|
|
|
*/
|
2020-12-29 20:31:16 -05: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 10:12:07 -04:00
|
|
|
|
2016-11-02 05:17:28 -04:00
|
|
|
/**
|
2017-08-28 23:48:18 -04:00
|
|
|
* Update current microsecond time from RTC
|
2016-11-02 05:17:28 -04:00
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
void esp_set_time_from_rtc(void);
|
2016-10-25 10:12:07 -04:00
|
|
|
|
2018-06-04 03:39:18 -04:00
|
|
|
/*
|
2021-12-14 06:01:19 -05:00
|
|
|
* Sync timekeeping timers, RTC and high-resolution timer. Update boot_time.
|
2018-06-04 03:39:18 -04:00
|
|
|
*/
|
2021-12-14 06:01:19 -05: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 03:39:18 -04:00
|
|
|
|
2020-06-10 14:03:32 -04:00
|
|
|
/**
|
|
|
|
* Initialize newlib static locks
|
|
|
|
*/
|
|
|
|
void esp_newlib_locks_init(void);
|
|
|
|
|
2022-07-04 05:53:42 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|