mirror of
https://github.com/Fishwaldo/LMIC-node.git
synced 2025-03-15 19:31:44 +00:00
Fix incorrect DIO1 mapping in lmic_pins (5 -> 6)
DIO1 mapping was previously changed from GPIO5 to GPIO6. But lmic_pins was not yet updated. This has now been fixed.
This commit is contained in:
parent
7e6e267d90
commit
e449e10a94
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue