Skip to content

Commit

Permalink
Added radio LR1121
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs authored Dec 5, 2024
1 parent e61898e commit 6ffe59f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/WeatherSensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
// 20240608 Modified implementation of maximum number of sensors
// 20240609 Fixed implementation of maximum number of sensors
// 20240714 Added option to skip initialization of include/exclude lists
// 20241205 Added radio LR1121
//
// ToDo:
// -
Expand All @@ -120,6 +121,9 @@ static SX1276 radio = new Module(PIN_RECEIVER_CS, PIN_RECEIVER_IRQ, PIN_RECEIVER
#if defined(USE_SX1262)
static SX1262 radio = new Module(PIN_RECEIVER_CS, PIN_RECEIVER_IRQ, PIN_RECEIVER_RST, PIN_RECEIVER_GPIO);
#endif
#if defined(USE_LR1121)
static LR1121 radio = new Module(PIN_RECEIVER_CS, PIN_RECEIVER_IRQ, PIN_RECEIVER_RST, PIN_RECEIVER_GPIO);
#endif

// Flag to indicate that a packet was received
volatile bool receivedFlag = false;
Expand Down

0 comments on commit 6ffe59f

Please sign in to comment.