Skip to content

Commit

Permalink
Fix incorrect DIO1 mapping in lmic_pins (5 -> 6)
Browse files Browse the repository at this point in the history
DIO1 mapping was previously changed from GPIO5 to GPIO6.
But lmic_pins was not yet updated. This has now been fixed.
  • Loading branch information
lnlp committed May 13, 2021
1 parent 7e6e267 commit e449e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boards/bsf_adafruit_feather_m0_lora.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const lmic_pinmap lmic_pins = {
.nss = 8,
.rxtx = LMIC_UNUSED_PIN,
.rst = 4,
.dio = { /*dio0*/ 3, /*dio1*/ 5, /*dio2*/ LMIC_UNUSED_PIN }
.dio = { /*dio0*/ 3, /*dio1*/ 6, /*dio2*/ LMIC_UNUSED_PIN }
#ifdef MCCI_LMIC
,
.rxtx_rx_active = 0,
Expand Down

0 comments on commit e449e10

Please sign in to comment.