[SX1233] Fix incorrect exclude macro guard (#929)

This commit is contained in:
jgromes 2024-01-14 21:56:18 +01:00
parent efe303ca69
commit 4c5321e5cb
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#include "SX1233.h"
#include <math.h>
#if !RADIOLIB_EXCLUDE_SX1233
#if !RADIOLIB_EXCLUDE_SX1231
SX1233::SX1233(Module* mod) : SX1231(mod) {

View file

@ -3,7 +3,7 @@
#include "../../TypeDef.h"
#if !RADIOLIB_EXCLUDE_SX1233
#if !RADIOLIB_EXCLUDE_SX1231
#include "../../Module.h"
#include "../RF69/RF69.h"