mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-05-04 23:55:18 -04:00
Fix RAK4630 compilation error and SX1280 modemStatus logic
This commit is contained in:
parent
c31cba0fd8
commit
39718693e6
2 changed files with 3 additions and 2 deletions
|
@ -467,13 +467,13 @@ uint8_t sx128x::modemStatus() {
|
|||
|
||||
uint8_t byte = 0x00;
|
||||
|
||||
if (buf[0] & IRQ_PREAMBLE_DET_MASK_8X != 0) {
|
||||
if ((buf[0] & IRQ_PREAMBLE_DET_MASK_8X) != 0) {
|
||||
byte = byte | 0x01 | 0x04;
|
||||
// clear register after reading
|
||||
clearbuf[0] = 0xFF;
|
||||
}
|
||||
|
||||
if (buf[1] & IRQ_HEADER_DET_MASK_8X != 0) {
|
||||
if ((buf[1] & IRQ_HEADER_DET_MASK_8X) != 0) {
|
||||
byte = byte | 0x02 | 0x04;
|
||||
// clear register after reading
|
||||
clearbuf[1] = 0xFF;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue