mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
41a5736d78
* Exposed forced sleep API and more Added timer suspend functionality * wifi.suspend * wifi.resume * node.sleep * tmr.suspend * tmr.suspend_all * tmr.resume * tmr.resume_all * Implement timer suspend functionality * Fix for uart TX glitch * Made some modifications to the error reporting
15 lines
368 B
C
15 lines
368 B
C
#ifndef SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
|
|
#define SDK_OVERRIDES_INCLUDE_ETS_SYS_H_
|
|
|
|
#include_next "ets_sys.h"
|
|
|
|
#include "../libc/c_stdarg.h"
|
|
|
|
int ets_sprintf(char *str, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
|
|
|
|
int ets_vsprintf (char *d, const char *s, va_list ap);
|
|
|
|
extern ETSTimer *timer_list;
|
|
|
|
#endif /* SDK_OVERRIDES_INCLUDE_ETS_SYS_H_ */
|