diff --git a/src/protocols/APRS/APRS.cpp b/src/protocols/APRS/APRS.cpp index 7f4976b0..3d812bc8 100644 --- a/src/protocols/APRS/APRS.cpp +++ b/src/protocols/APRS/APRS.cpp @@ -1,4 +1,5 @@ #include "APRS.h" +#if !defined(RADIOLIB_EXCLUDE_APRS) APRSClient::APRSClient(AX25Client* ax) { _ax = ax; @@ -225,3 +226,5 @@ int16_t APRSClient::sendFrame(char* destCallsign, uint8_t destSSID, char* info) return(_ax->sendFrame(&frameUI)); } + +#endif