Skip to content

Commit 8f3c415

Browse files
authored
Merge pull request #140 from mcci-catena/issue139
Fix #139: changed the SubBand of Helium US 915 to SubBand_2
2 parents a0577e1 + 589fa4b commit 8f3c415

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The following compile-time defines select the network that will be used. Exactly
106106
|---------------------------------------|-----------------------|--------------
107107
| `ARDUINO_LMIC_CFG_NETWORK_TTN` | The Things Network | EU868, US915 (subband 1), AU915 (subband 1), AS923, AS923 Japan, KR920, IN866
108108
| `ARDUINO_LMIC_CFG_NETWORK_ACTILITY` | Actility | EU868, US915, AU915, AS923, AS923 Japan, KR920, IN866
109-
| `ARDUINO_LMIC_CFG_NETWORK_HELIUM` | Helium | US915 (subband 6)
109+
| `ARDUINO_LMIC_CFG_NETWORK_HELIUM` | Helium | US915 (subband 1)
110110
| `ARDUINO_LMIC_CFG_NETWORK_MACHINEQ` | machineQ | US915
111111
| `ARDUINO_LMIC_CFG_NETWORK_SENET` | Senet | US915
112112
| `ARDUINO_LMIC_CFG_NETWORK_SENRA` | Senra | IN866

src/lib/helium_us915_netbeginregioninit.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ Copyright notice:
4343
void Arduino_LoRaWAN_Helium_us915::NetBeginRegionInit()
4444
{
4545
//
46-
// Helium is an 8-channel network on subband 6 of [0..7]. Pre-join
47-
// we therefore want to limit to probing channels 48~55 / 70.
46+
// Helium is an 8-channel network on subband 1 of [0..7]. Pre-join
47+
// we therefore want to limit to probing channels 8~15 / 65.
4848
//
49-
cLMIC::SelectSubBand(cLMIC::SubBand::SubBand_7);
49+
cLMIC::SelectSubBand(cLMIC::SubBand::SubBand_2);
5050

5151
//
5252
// Set data rate and transmit power -- these ought to

0 commit comments

Comments
 (0)