0.9.3 improvements
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
#ifndef ESPMISSINGINCLUIDES_H
|
||||
#define ESPMISSINGINCLUIDES_H
|
||||
#ifndef ESPMISSINGINCLUDES_H
|
||||
#define ESPMISSINGINCLUDES_H
|
||||
|
||||
#include <ets_sys.h>
|
||||
#include <stdint.h>
|
||||
|
||||
//Missing function prototypes in include folders. Gcc will warn on these if we don't define 'em anywhere.
|
||||
//MOST OF THESE ARE GUESSED! but they seem to swork and shut up the compiler.
|
||||
typedef struct espconn espconn;
|
||||
|
||||
int atoi(const char *nptr);
|
||||
void ets_install_putc1(void *routine);
|
||||
@@ -33,4 +35,9 @@ void *pvPortZalloc(size_t);
|
||||
void uart_div_modify(int no, unsigned int freq);
|
||||
void vPortFree(void *ptr);
|
||||
void *vPortMalloc(size_t xWantedSize);
|
||||
uint8 wifi_get_opmode(void);
|
||||
uint32 system_get_time();
|
||||
int os_random();
|
||||
int rand(void);
|
||||
void ets_bzero(void *s, size_t n);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user