Skip to content

Commit

Permalink
Fix #435: correct spelling error LMICbandplan_txDoneFSK
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Sep 9, 2019
1 parent 2849ceb commit a4d2494
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/lmic/lmic_bandplan_as923.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ void LMICas923_init(void);
void
LMICas923_txDoneFSK(ostime_t delay, osjobcb_t func);

#define LMICbandplan_txDoneFsk(delay, func) LMICas923_txDoneFSK(delay, func)
#undef LMICbandplan_txDoneFSK
#define LMICbandplan_txDoneFSK(delay, func) LMICas923_txDoneFSK(delay, func)

#define LMICbandplan_getInitialDrJoin() (AS923_DR_SF10)

Expand Down
3 changes: 2 additions & 1 deletion src/lmic/lmic_bandplan_eu868.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ LMICeu868_isValidBeacon1(const uint8_t *d) {
void
LMICeu868_txDoneFSK(ostime_t delay, osjobcb_t func);

#define LMICbandplan_txDoneFsk(delay, func) LMICeu868_txDoneFSK(delay, func)
#undef LMICbandplan_txDoneFSK
#define LMICbandplan_txDoneFSK(delay, func) LMICeu868_txDoneFSK(delay, func)

#define LMICbandplan_getInitialDrJoin() (EU868_DR_SF7)

Expand Down
3 changes: 2 additions & 1 deletion src/lmic/lmic_bandplan_in866.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ LMICin866_isValidBeacon1(const uint8_t *d) {
void
LMICin866_txDoneFSK(ostime_t delay, osjobcb_t func);

#define LMICbandplan_txDoneFsk(delay, func) LMICin866_txDoneFSK(delay, func)
#undef LMICbandplan_txDoneFSK
#define LMICbandplan_txDoneFSK(delay, func) LMICin866_txDoneFSK(delay, func)

#define LMICbandplan_getInitialDrJoin() (IN866_DR_SF7)

Expand Down
3 changes: 2 additions & 1 deletion src/lmic/lmic_bandplan_kr920.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ LMICkr920_isValidBeacon1(const uint8_t *d) {
void
LMICkr920_txDoneFSK(ostime_t delay, osjobcb_t func);

#define LMICbandplan_txDoneFsk(delay, func) LMICkr920_txDoneFSK(delay, func)
#undef LMICbandplan_txDoneFSK
#define LMICbandplan_txDoneFSK(delay, func) LMICkr920_txDoneFSK(delay, func)

#define LMICbandplan_getInitialDrJoin() (KR920_DR_SF7)

Expand Down

0 comments on commit a4d2494

Please sign in to comment.