Skip to content

Commit

Permalink
Merge pull request #204 from olicooper/patch-1
Browse files Browse the repository at this point in the history
Add return statement on Arduino_LoRaWAN::setFrequency
  • Loading branch information
terrillmoore authored Mar 7, 2023
2 parents d42aecd + 810d332 commit e2d8c2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Arduino_LoRaWAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ class Arduino_LoRaWAN
chPtr[0] = uint8_t(reducedFreq >> 16);
chPtr[1] = uint8_t(reducedFreq >> 8);
chPtr[2] = uint8_t(reducedFreq);

return true;
}

/// \brief clear all entries in the channel table.
Expand Down

0 comments on commit e2d8c2e

Please sign in to comment.