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.
Diff: sx1276/sx1276.cpp
- Revision:
- 89:b0203b4a36ec
- Parent:
- 83:019da451b283
- Child:
- 94:e6c0279f550a
diff -r d120930aeb13 -r b0203b4a36ec sx1276/sx1276.cpp
--- a/sx1276/sx1276.cpp Wed Aug 30 09:48:34 2017 +0200
+++ b/sx1276/sx1276.cpp Wed Aug 30 12:02:09 2017 +0200
@@ -1121,8 +1121,8 @@
return 0;
val = (Read(REG_LR_FEIMSB) & 0b1111) << 16; // high word, 4 valid bits only
- val |= (Read(REG_LR_FEIMID) << 8) | Read(REG_LR_FEILSB); // high byte, low byte
- if (val & 0x8000) //sconvert ign bit
+ val |= ((Read(REG_LR_FEIMID) << 8) | Read(REG_LR_FEILSB)); // high byte, low byte
+ if (val & 0x80000) //convert sign bit
val |= 0xfff00000;
int32_t bandwidth = 0;