mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
96e5c026a8
* pmsleep refactor * Shortened swtmr disabled message * Added swtimer debug module option to user_modules.h. * Added comments to user_config.h. * Fixed error in documentation for node.sleep() * remove blank sntp.c that got added in during rebase onto dev(6218b92) * Added #ifdefs around SWTIMER_REG_CB to prevent inclusion of disabled code
19 lines
456 B
C
19 lines
456 B
C
#ifndef _SDK_OVERRIDE_OSAPI_H_
|
|
#define _SDK_OVERRIDE_OSAPI_H_
|
|
|
|
#include "rom.h"
|
|
|
|
int atoi(const char *nptr);
|
|
int os_printf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
int os_printf_plus(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
|
|
unsigned int uart_baudrate_detect(unsigned int uart_no, unsigned int async);
|
|
|
|
void NmiTimSetFunc(void (*func)(void));
|
|
|
|
void call_user_start(void);
|
|
|
|
#include_next "osapi.h"
|
|
|
|
#endif
|