much improved status page, reduced array sizes in wifi cgi

This commit is contained in:
2016-03-28 18:38:30 +02:00
parent 23681c9a0f
commit 5bb7a303b3
39 changed files with 512 additions and 375 deletions
+1 -1
View File
@@ -35,7 +35,7 @@
#include "platform.h"
#include "espmissingincludes.h"
#include "espmissingprotos.h"
#include "esp_sdk_ver.h"
#include "logging.h"
+8
View File
@@ -1,6 +1,10 @@
#ifndef PLATFORM_H
#define PLATFORM_H
#include <osapi.h>
#include "espmissingprotos.h"
#ifdef FREERTOS
//#include "esp_timer.h"
typedef struct RtosConnType RtosConnType;
@@ -16,6 +20,10 @@ typedef RtosConnType* ConnTypePtr;
#define strncpy(a, b, c) os_strncpy(a, b, c)
#define strcmp(a, b) os_strcmp(a, b)
#define strncmp(a, b, c) os_strncmp(a, b, c)
#define streq(a, b) (strcmp(a, b) == 0)
#define strneq(a, b, n) (strncmp(a, b, n) == 0)
#define malloc(x) os_malloc(x)
#define free(x) os_free(x)
#define memset(x, a, b) os_memset(x, a, b)