[ESP8266] Reworked driver exclusion

This commit is contained in:
jgromes 2020-06-30 10:42:13 +02:00
parent 995d7054ef
commit 36a44ed44d
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -1,4 +1,4 @@
#if !defined(_RADIOLIB_ESP8266_H) #if !defined(_RADIOLIB_ESP8266_H) && !defined(RADIOLIB_EXCLUDE_ESP8266)
#define _RADIOLIB_ESP8266_H #define _RADIOLIB_ESP8266_H
#include "../../Module.h" #include "../../Module.h"