Skip to content

Commit

Permalink
[SX1233] Fix incorrect exclude macro guard (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Jan 14, 2024
1 parent efe303c commit 4c5321e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/SX123x/SX1233.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "SX1233.h"
#include <math.h>
#if !RADIOLIB_EXCLUDE_SX1233
#if !RADIOLIB_EXCLUDE_SX1231

SX1233::SX1233(Module* mod) : SX1231(mod) {

Expand Down
2 changes: 1 addition & 1 deletion src/modules/SX123x/SX1233.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "../../TypeDef.h"

#if !RADIOLIB_EXCLUDE_SX1233
#if !RADIOLIB_EXCLUDE_SX1231

#include "../../Module.h"
#include "../RF69/RF69.h"
Expand Down

0 comments on commit 4c5321e

Please sign in to comment.