From 32a5166ae36efe866e396c1dd82f7f834ed88592 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 12 May 2023 20:56:23 +0200 Subject: [PATCH] [Bell] Added missing exclude guard --- src/protocols/BellModem/BellModem.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/protocols/BellModem/BellModem.h b/src/protocols/BellModem/BellModem.h index d16c44d9..13ab7106 100644 --- a/src/protocols/BellModem/BellModem.h +++ b/src/protocols/BellModem/BellModem.h @@ -7,6 +7,8 @@ #include "../../ArduinoHal.h" #endif +#if !defined(RADIOLIB_EXCLUDE_BELL) + #include "../PhysicalLayer/PhysicalLayer.h" #include "../AFSK/AFSK.h" #include "../Print/Print.h" @@ -125,3 +127,5 @@ class BellClient: public AFSKClient, public RadioLibPrint { }; #endif + +#endif