Skip to content

Commit 16ec68e

Browse files
committed
RadioLib: Bump to 7.1+ release
Bump to the 7.1 release plus a few extra commits to fix a pin disable bug in the Tock HAL. Signed-off-by: Alistair Francis <[email protected]>
1 parent b77d1d3 commit 16ec68e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

RadioLib/Makefile.app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
override CPPFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/RadioLib/RadioLib/src
33

44
# Include the Tock specific headers
5-
override CPPFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/RadioLib/RadioLib/examples/NonArduino/Tock
5+
override CPPFLAGS += -I$(TOCK_USERLAND_BASE_DIR)/RadioLib/RadioLib/src/hal/Tock/

RadioLib/RadioLib

Submodule RadioLib updated 207 files

examples/lora/sensor-lorawan/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ int main(void) {
9090

9191
state = node.sendReceive(Payload.getBuffer(), Payload.getSize());
9292

93-
if (state == RADIOLIB_ERR_NONE) {
93+
if (state > 0) {
9494
// the packet was successfully transmitted
9595
printf("success!\r\n");
9696
} else {

0 commit comments

Comments
 (0)