[ESP8266] Added missing ESP8266 exclude

This commit is contained in:
jgromes 2020-06-30 11:17:21 +02:00
parent 0831b4a3a1
commit a33a3a5389
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#include "ESP8266.h"
#if !defined(RADIOLIB_EXCLUDE_ESP8266)
#if !defined(RADIOLIB_EXCLUDE_ESP8266) && !defined(ESP8266)
ESP8266::ESP8266(Module* module) {
_mod = module;

View file

@ -1,6 +1,7 @@
#if !defined(_RADIOLIB_ESP8266_H) && !defined(RADIOLIB_EXCLUDE_ESP8266)
#if !defined(_RADIOLIB_ESP8266_H) && !defined(RADIOLIB_EXCLUDE_ESP8266) && !defined(ESP8266)
#define _RADIOLIB_ESP8266_H
#include "../../TypeDef.h"
#include "../../Module.h"
#include "../../protocols/TransportLayer/TransportLayer.h"