[LLCC68] Reworked macro configuration system

This commit is contained in:
jgromes 2023-11-27 19:39:35 +01:00
parent 0c436e5ed8
commit 509b8204f1
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
#include "LLCC68.h"
#if !defined(RADIOLIB_EXCLUDE_SX126X)
#if !RADIOLIB_EXCLUDE_SX126X
LLCC68::LLCC68(Module* mod) : SX1262(mod) {
chipType = RADIOLIB_LLCC68_CHIP_TYPE;

View file

@ -3,7 +3,7 @@
#include "../../TypeDef.h"
#if !defined(RADIOLIB_EXCLUDE_SX126X)
#if !RADIOLIB_EXCLUDE_SX126X
#include "../../Module.h"
#include "../SX126x/SX1262.h"
@ -56,7 +56,7 @@ class LLCC68: public SX1262 {
*/
int16_t setSpreadingFactor(uint8_t sf);
#if !defined(RADIOLIB_GODMODE)
#if !RADIOLIB_GODMODE
private:
#endif