Skip to content

Commit

Permalink
v3.1.0 - sx1272 - line misspelled
Browse files Browse the repository at this point in the history
I found this misspelled on the code when I tried to use sx1272 lora module.
  • Loading branch information
ricaun authored Feb 11, 2020
1 parent f67121c commit c4fc9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lmic/radio.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ static void configLoraModem () {

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

#if CFG_TxContinuousMode
// Only for testing
Expand Down

0 comments on commit c4fc9cd

Please sign in to comment.