[ESP8266] Added missing ESP8266 exclude
This commit is contained in:
parent
0831b4a3a1
commit
a33a3a5389
2 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue