Skip to content

Commit 227b034

Browse files
authored
Merge pull request #5670 from ryankurte/fix/efr32-ack-flag
Nanostack EFR32 flag fix
2 parents 806b762 + 136ac17 commit 227b034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/nanostack/FEATURE_NANOSTACK/targets/TARGET_SL_RAIL/NanostackRfPhyEfr32.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ enum RFThreadSignal {
6262
SL_QUEUE_FULL = (1 << 11),
6363

6464
// ACK pend flag can be signalled in addition to RX_DONE
65-
SL_ACK_PEND = (1 << 31),
65+
SL_ACK_PEND = (1 << 30),
6666
};
6767

6868
/* Adaptor thread definitions */

0 commit comments

Comments
 (0)