From 61a593c6f741bf751909a1e6ff06c7ffbbdf77c4 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 19 Dec 2021 13:09:42 +0100 Subject: [PATCH] Fixed incorrect macro guards CI_BUILD_ALL --- src/Module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module.cpp b/src/Module.cpp index f7e766cd..d430b9aa 100644 --- a/src/Module.cpp +++ b/src/Module.cpp @@ -3,7 +3,7 @@ #if defined(RADIOLIB_BUILD_ARDUINO) // we need this to emulate tone() on mbed Arduino boards -#if defined(ARDUINO_ARDUINO_NANO33BLE) +#if defined(RADIOLIB_MBED_TONE_OVERRIDE) #include "mbed.h" mbed::PwmOut *pwmPin = NULL; #endif