Using one header file for esp8266 stuff

This commit is contained in:
Jindra Dolezy
2015-04-11 00:35:55 +02:00
parent a1b8b82816
commit d419bdb4f7
16 changed files with 37 additions and 86 deletions
+18
View File
@@ -0,0 +1,18 @@
// Combined include file for esp8266
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <c_types.h>
#include <ip_addr.h>
#include <espconn.h>
#include <ets_sys.h>
#include <gpio.h>
#include <mem.h>
#include <osapi.h>
#include <user_interface.h>
#include "espmissingincludes.h"
#include "uart_hw.h"