[AFSK] Reworked macro configuration system

pull/893/head
jgromes 2023-11-27 21:15:52 +01:00
rodzic 379c475d5e
commit fe0136b15c
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,5 +1,5 @@
#include "AFSK.h" #include "AFSK.h"
#if !defined(RADIOLIB_EXCLUDE_AFSK) #if !RADIOLIB_EXCLUDE_AFSK
AFSKClient::AFSKClient(PhysicalLayer* phy, uint32_t pin): outPin(pin) { AFSKClient::AFSKClient(PhysicalLayer* phy, uint32_t pin): outPin(pin) {
phyLayer = phy; phyLayer = phy;

Wyświetl plik

@ -3,7 +3,7 @@
#include "../../TypeDef.h" #include "../../TypeDef.h"
#if !defined(RADIOLIB_EXCLUDE_AFSK) #if !RADIOLIB_EXCLUDE_AFSK
#include "../../Module.h" #include "../../Module.h"
@ -49,7 +49,7 @@ class AFSKClient {
*/ */
int16_t noTone(bool keepOn = false); int16_t noTone(bool keepOn = false);
#if !defined(RADIOLIB_GODMODE) #if !RADIOLIB_GODMODE
private: private:
#endif #endif
PhysicalLayer* phyLayer; PhysicalLayer* phyLayer;