[ESP8266] Added missing ESP8266 exclude

pull/163/head
jgromes 2020-06-30 11:17:21 +02:00
rodzic 0831b4a3a1
commit a33a3a5389
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -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;

Wyświetl plik

@ -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"