Skip to content

Commit

Permalink
Merge pull request #537 from ricaun/patch-1
Browse files Browse the repository at this point in the history
v3.1.0 - sx1272 - line misspelled.
Merging despite CI failures because the CI failures are due to an upstream problem.
  • Loading branch information
terrillmoore authored Feb 14, 2020
2 parents f67121c + 4551a75 commit 9a81d82
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 9a81d82

Please sign in to comment.