mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-24 18:46:33 +08:00
19 lines
347 B
C
19 lines
347 B
C
#ifndef _ROM_FUNCTIONS_H
|
|
#define _ROM_FUNCTIONS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
|
|
uint32_t Wait_SPI_Idle();
|
|
|
|
void uart_div_modify(uint32_t uart_no, uint32_t baud_div);
|
|
|
|
void ets_delay_us(uint32_t us);
|
|
int ets_io_vprintf(int (*putc)(int), const char* fmt, va_list ap);
|
|
|
|
void system_soft_wdt_feed();
|
|
|
|
void Cache_Read_Enable_New();
|
|
|
|
#endif
|