[Bell] Reworked macro configuration system

This commit is contained in:
jgromes 2023-11-27 21:16:43 +01:00
parent 6c07552f84
commit f85abafe19
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
#include "BellModem.h" #include "BellModem.h"
#if !defined(RADIOLIB_EXCLUDE_BELL) #if !RADIOLIB_EXCLUDE_BELL
const struct BellModem_t Bell101 { const struct BellModem_t Bell101 {
.freqMark = 1270, .freqMark = 1270,

View file

@ -7,7 +7,7 @@
#include "../../ArduinoHal.h" #include "../../ArduinoHal.h"
#endif #endif
#if !defined(RADIOLIB_EXCLUDE_BELL) #if !RADIOLIB_EXCLUDE_BELL
#include "../PhysicalLayer/PhysicalLayer.h" #include "../PhysicalLayer/PhysicalLayer.h"
#include "../AFSK/AFSK.h" #include "../AFSK/AFSK.h"
@ -116,7 +116,7 @@ class BellClient: public AFSKClient, public RadioLibPrint {
*/ */
int16_t standby(); int16_t standby();
#if !defined(RADIOLIB_GODMODE) #if !RADIOLIB_GODMODE
private: private:
#endif #endif
BellModem_t modemType; BellModem_t modemType;