cervin sx1265 operating with transceiver firmware
Dependents: lr1110_wifi_geolocation_device lr1110_wifi_geolocation_gateway
To use this driver, your LR1110 must be programmed as transceiver (not modem, which is LoRaWAN only).
Visit https://github.com/Lora-net/lr1110_updater_tool to update your LR1110, or change it from modem to transceiver if necessary.
Revision 1:29294cae9f9a, committed 2021-02-05
- Comitter:
- Wayne Roberts
- Date:
- Fri Feb 05 16:33:27 2021 -0800
- Parent:
- 0:987d9022c152
- Commit message:
- remove busy check from service
Changed in this revision
lr1110.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 987d9022c152 -r 29294cae9f9a lr1110.cpp --- a/lr1110.cpp Tue May 19 15:30:29 2020 -0700 +++ b/lr1110.cpp Fri Feb 05 16:33:27 2021 -0800 @@ -58,7 +58,7 @@ uint8_t irqbuf[4]; inService = true; - if (!busy && dio9) { + if (dio9) { bool try_rx = false; irq_t irq; stat_t stat; @@ -149,7 +149,7 @@ /* RX wasnt started because xosc wasnt started */ xfer(OPCODE_SET_RX, 3, 0, rxArgs); } - } // ..if (!busy && dio9) + } // ..if (dio9) done: inService = false;