Skip to content

Commit

Permalink
Merge pull request #125 from mcci-catena/issue123
Browse files Browse the repository at this point in the history
Fix #123: update ARDUINO_LMIC_VERSION
  • Loading branch information
terrillmoore authored Sep 24, 2018
2 parents 1cce906 + d2d7546 commit 8b8ce55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lmic/lmic.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ extern "C"{
#define ARDUINO_LMIC_VERSION_CALC(major, minor, patch, local) \
(((major) << 24u) | ((minor) << 16u) | ((patch) << 8u) | (local))

#define ARDUINO_LMIC_VERSION ARDUINO_LMIC_VERSION_CALC(2, 1, 5, 0)
#define ARDUINO_LMIC_VERSION ARDUINO_LMIC_VERSION_CALC(2, 2, 0, 0)

#define ARDUINO_LMIC_VERSION_GET_MAJOR(v) \
(((v) >> 24u) & 0xFFu)
Expand Down

0 comments on commit 8b8ce55

Please sign in to comment.