Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: lr1110_wifi_geolocation_device lr1110_wifi_geolocation_gateway
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 |
--- 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;