Skip to content

Commit 4551a75

Browse files
authored
Update radio.c
Remove extra `(` and `)`
1 parent c4fc9cd commit 4551a75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lmic/radio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ static void configLoraModem () {
534534

535535
// set ModemConfig2 (sf, AgcAutoOn=1 SymbTimeoutHi)
536536
u1_t mc2;
537-
mc2 = ((SX1272_MC2_SF7 + ((sf-1)<<4)) | 0x04 | ((LMIC.rxsyms >> 8) & 0x3));
537+
mc2 = (SX1272_MC2_SF7 + ((sf-1)<<4)) | 0x04 | ((LMIC.rxsyms >> 8) & 0x3);
538538

539539
#if CFG_TxContinuousMode
540540
// Only for testing

0 commit comments

Comments
 (0)