Using one header file for esp8266 stuff
This commit is contained in:
+1
-6
@@ -20,12 +20,7 @@ It's written for use with httpd, but doesn't need to be used as such.
|
||||
|
||||
#ifdef __ets__
|
||||
//esp build
|
||||
#include "c_types.h"
|
||||
#include "user_interface.h"
|
||||
#include "espconn.h"
|
||||
#include "mem.h"
|
||||
#include "osapi.h"
|
||||
#include "espmissingincludes.h"
|
||||
#include <esp8266.h>
|
||||
#else
|
||||
//Test build
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -5,14 +5,8 @@
|
||||
|
||||
#ifdef __ets__
|
||||
//esp build
|
||||
#define _STDLIB_H_
|
||||
#define _STRING_H_
|
||||
#define _STDDEF_H
|
||||
|
||||
#include "espmissingincludes.h"
|
||||
#include "c_types.h"
|
||||
#include "mem.h"
|
||||
#include "osapi.h"
|
||||
#include <esp8266.h>
|
||||
|
||||
#define memset(x,y,z) os_memset(x,y,z)
|
||||
#define memcpy(x,y,z) os_memcpy(x,y,z)
|
||||
|
||||
+1
-9
@@ -12,17 +12,9 @@ HTTP auth implementation. Only does basic authentication for now.
|
||||
*/
|
||||
|
||||
|
||||
#include <string.h>
|
||||
#include <osapi.h>
|
||||
#include "user_interface.h"
|
||||
#include "mem.h"
|
||||
#include "httpd.h"
|
||||
#include "cgi.h"
|
||||
#include <esp8266.h>
|
||||
#include "auth.h"
|
||||
#include "io.h"
|
||||
#include "base64.h"
|
||||
#include <ip_addr.h>
|
||||
#include "espmissingincludes.h"
|
||||
|
||||
int ICACHE_FLASH_ATTR authBasic(HttpdConnData *connData) {
|
||||
const char *forbidden="401 Forbidden.";
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef AUTH_H
|
||||
#define AUTH_H
|
||||
|
||||
#include "httpd.h"
|
||||
|
||||
#ifndef HTTP_AUTH_REALM
|
||||
#define HTTP_AUTH_REALM "Protected"
|
||||
#endif
|
||||
|
||||
+1
-5
@@ -1,10 +1,6 @@
|
||||
/* base64.c : base-64 / MIME encode/decode */
|
||||
/* PUBLIC DOMAIN - Jon Mayo - November 13, 2003 */
|
||||
#include "c_types.h"
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <esp8266.h>
|
||||
#include "base64.h"
|
||||
|
||||
static const uint8_t base64dec_tab[256]= {
|
||||
|
||||
+1
-7
@@ -12,13 +12,7 @@ Esp8266 http server - core routines
|
||||
*/
|
||||
|
||||
|
||||
#include "espmissingincludes.h"
|
||||
#include "c_types.h"
|
||||
#include "user_interface.h"
|
||||
#include "espconn.h"
|
||||
#include "mem.h"
|
||||
#include "osapi.h"
|
||||
|
||||
#include <esp8266.h>
|
||||
#include "httpd.h"
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
#ifndef HTTPD_H
|
||||
#define HTTPD_H
|
||||
#include <c_types.h>
|
||||
#include <ip_addr.h>
|
||||
#include <espconn.h>
|
||||
|
||||
#define HTTPDVER "0.3"
|
||||
|
||||
|
||||
+2
-8
@@ -11,15 +11,9 @@ Connector to let httpd use the espfs filesystem to serve the files in it.
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "espmissingincludes.h"
|
||||
#include <string.h>
|
||||
#include <osapi.h>
|
||||
#include "c_types.h"
|
||||
#include "user_interface.h"
|
||||
#include "espconn.h"
|
||||
#include "mem.h"
|
||||
|
||||
#include <esp8266.h>
|
||||
#include "httpdespfs.h"
|
||||
#include "espfs.h"
|
||||
|
||||
|
||||
//This is a catch-all cgi function. It takes the url passed to it, looks up the corresponding
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
#define HTTPDESPFS_H
|
||||
|
||||
#include "httpd.h"
|
||||
#include "espfs.h"
|
||||
|
||||
int cgiEspFsHook(HttpdConnData *connData);
|
||||
int ICACHE_FLASH_ATTR cgiEspFsTemplate(HttpdConnData *connData);
|
||||
|
||||
@@ -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"
|
||||
+1
-7
@@ -13,15 +13,9 @@ flash as a binary. Also handles the hit counter on the main page.
|
||||
*/
|
||||
|
||||
|
||||
#include <string.h>
|
||||
#include <osapi.h>
|
||||
#include "user_interface.h"
|
||||
#include "mem.h"
|
||||
#include "httpd.h"
|
||||
#include <esp8266.h>
|
||||
#include "cgi.h"
|
||||
#include "io.h"
|
||||
#include <ip_addr.h>
|
||||
#include "espmissingincludes.h"
|
||||
|
||||
|
||||
//cause I can't be bothered to write an ioGetLed()
|
||||
|
||||
+1
-8
@@ -12,15 +12,8 @@ Some flash handling cgi routines. Used for reading the existing flash and updati
|
||||
*/
|
||||
|
||||
|
||||
#include <string.h>
|
||||
#include <osapi.h>
|
||||
#include "user_interface.h"
|
||||
#include "mem.h"
|
||||
#include "httpd.h"
|
||||
#include <esp8266.h>
|
||||
#include "cgiflash.h"
|
||||
#include "io.h"
|
||||
#include <ip_addr.h>
|
||||
#include "espmissingincludes.h"
|
||||
#include "espfs.h"
|
||||
|
||||
|
||||
|
||||
+2
-8
@@ -12,14 +12,8 @@ Cgi/template routines for the /wifi url.
|
||||
*/
|
||||
|
||||
|
||||
#include <string.h>
|
||||
#include <osapi.h>
|
||||
#include "user_interface.h"
|
||||
#include "mem.h"
|
||||
#include "httpd.h"
|
||||
#include "cgi.h"
|
||||
#include "io.h"
|
||||
#include "espmissingincludes.h"
|
||||
#include <esp8266.h>
|
||||
#include "cgiwifi.h"
|
||||
|
||||
//Enable this to disallow any changes in AP settings
|
||||
//#define DEMO_MODE
|
||||
|
||||
@@ -9,13 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
#include "c_types.h"
|
||||
#include "user_interface.h"
|
||||
#include "espconn.h"
|
||||
#include "mem.h"
|
||||
#include "osapi.h"
|
||||
#include "gpio.h"
|
||||
#include "espmissingincludes.h"
|
||||
#include <esp8266.h>
|
||||
|
||||
#define LEDGPIO 2
|
||||
#define BTNGPIO 0
|
||||
@@ -37,10 +31,10 @@ static void ICACHE_FLASH_ATTR resetBtnTimerCb(void *arg) {
|
||||
resetCnt++;
|
||||
} else {
|
||||
if (resetCnt>=6) { //3 sec pressed
|
||||
wifi_station_disconnect();
|
||||
wifi_set_opmode(0x3); //reset to AP+STA mode
|
||||
//wifi_station_disconnect();
|
||||
//wifi_set_opmode(0x3); //reset to AP+STA mode
|
||||
os_printf("Reset to AP mode. Restarting system...\n");
|
||||
system_restart();
|
||||
//system_restart();
|
||||
}
|
||||
resetCnt=0;
|
||||
}
|
||||
|
||||
+1
-4
@@ -10,10 +10,7 @@
|
||||
*/
|
||||
|
||||
|
||||
#include "espmissingincludes.h"
|
||||
#include "ets_sys.h"
|
||||
#include "osapi.h"
|
||||
#include "uart_hw.h"
|
||||
#include <esp8266.h>
|
||||
|
||||
static void ICACHE_FLASH_ATTR stdoutUartTxd(char c) {
|
||||
//Wait until there is room in the FIFO
|
||||
|
||||
+1
-3
@@ -10,9 +10,7 @@
|
||||
*/
|
||||
|
||||
|
||||
#include "espmissingincludes.h"
|
||||
#include "ets_sys.h"
|
||||
#include "osapi.h"
|
||||
#include <esp8266.h>
|
||||
#include "httpd.h"
|
||||
#include "io.h"
|
||||
#include "httpdespfs.h"
|
||||
|
||||
Reference in New Issue
Block a user