fix problems with ESP8266 core version 2.0.0

This commit is contained in:
Markus Sattler
2015-11-30 19:46:37 +01:00
parent 082f5192c0
commit 92a63e9129
5 changed files with 23 additions and 3 deletions

View File

@ -24,8 +24,16 @@
#include "WebSockets.h"
#ifdef ESP8266
#include <core_esp8266_features.h>
#endif
extern "C" {
#include "libb64/cencode.h"
#ifdef CORE_HAS_LIBB64
#include <libb64/cencode.h>
#else
#include "libb64/cencode_inc.h"
#endif
}
#ifdef ESP8266