2016-01-20 19:37:03 +11:00
|
|
|
#ifndef _SDK_OVERRIDE_OSAPI_H_
|
|
|
|
#define _SDK_OVERRIDE_OSAPI_H_
|
|
|
|
|
|
|
|
#include "rom.h"
|
|
|
|
void ets_timer_arm_new (ETSTimer *a, int b, int c, int isMstimer);
|
|
|
|
|
2016-01-23 22:41:41 +01:00
|
|
|
int atoi(const char *nptr);
|
2016-01-23 00:17:53 +01:00
|
|
|
int os_printf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
|
|
int os_printf_plus(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
|
|
|
2016-04-17 17:44:18 -04:00
|
|
|
unsigned int uart_baudrate_detect(unsigned int uart_no, unsigned int async);
|
|
|
|
|
2016-02-17 21:07:33 -05:00
|
|
|
void NmiTimSetFunc(void (*func)(void));
|
|
|
|
|
2016-03-24 00:06:09 +01:00
|
|
|
void call_user_start(void);
|
|
|
|
|
2016-01-20 19:37:03 +11:00
|
|
|
#include_next "osapi.h"
|
|
|
|
|
|
|
|
#endif
|