2016-01-20 09:37:03 +01:00
|
|
|
#ifndef _SDK_OVERRIDE_OSAPI_H_
|
|
|
|
#define _SDK_OVERRIDE_OSAPI_H_
|
|
|
|
|
2019-07-23 06:22:38 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
2019-07-23 17:47:18 +02:00
|
|
|
#define USE_OPTIMIZE_PRINTF
|
2019-07-23 06:22:38 +02:00
|
|
|
|
2019-07-21 23:58:21 +02:00
|
|
|
#include_next "osapi.h"
|
2016-01-20 09:37:03 +01:00
|
|
|
|
2019-07-21 23:58:21 +02:00
|
|
|
#include "rom.h"
|
2016-01-23 00:17:53 +01:00
|
|
|
|
2016-04-17 23:44:18 +02:00
|
|
|
unsigned int uart_baudrate_detect(unsigned int uart_no, unsigned int async);
|
|
|
|
|
2016-02-18 03:07:33 +01:00
|
|
|
void NmiTimSetFunc(void (*func)(void));
|
|
|
|
|
2016-03-24 00:06:09 +01:00
|
|
|
void call_user_start(void);
|
|
|
|
|
2016-01-20 09:37:03 +01:00
|
|
|
#endif
|