Skip to content

Commit f98a30c

Browse files
author
Catalin Ioana
committed
[lorawan] added firmware versions
1 parent 6238e05 commit f98a30c

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

content/firmwareapi/pycom/network/lora/lora_102.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ aliases:
44
- /firmwareapi/pycom/network/lora_102.md
55
---
66

7-
This class provides a LoRaWAN 1.0.2 compliant driver for the LoRa network processor in the LoPy and FiPy. Below is an example demonstrating LoRaWAN Activation by Personalisation usage:
7+
This class provides a LoRaWAN 1.0.2 compliant driver for the LoRa network processor in the LoPy and FiPy.
8+
LoRaWAN v1.0.2 is available up to the firmware version 1.20.2 (starting from v1.20.3.b0 the LoRaWAN v1.0.3 is available).
9+
10+
Below is an example demonstrating LoRaWAN Activation by Personalisation usage:
811

912
```python
1013
from network import LoRa

content/firmwareapi/pycom/network/lora/lora_103.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ aliases:
44
- /firmwareapi/pycom/network/lora_103.md
55
---
66

7-
This class provides a LoRaWAN 1.0.3 compliant driver for the LoRa network processor in the LoPy and FiPy. Below is an example demonstrating LoRaWAN Activation by Personalisation usage:
7+
This class provides a LoRaWAN 1.0.3 compliant driver for the LoRa network processor in the LoPy and FiPy.
8+
LoRaWAN v1.0.3 is available from the firmware version 1.20.3.b0.
9+
10+
Below is an example demonstrating LoRaWAN Activation by Personalisation usage:
811

912
```python
1013
from network import LoRa

content/tutorials/all/i2c.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ DEVICE_ID = 1
7272

7373
pycom.heartbeat(False)
7474

75-
lora = LoRa(mode=LoRa.LORA, inv_iq=True, region=LoRa.EU868)
75+
lora = LoRa(mode=LoRa.LORA, region=LoRa.EU868)
7676
lora_sock = socket.socket(socket.AF_LORA, socket.SOCK_RAW)
7777
lora_sock.setblocking(False)
7878

@@ -100,4 +100,3 @@ while(True):
100100

101101
time.sleep(1)
102102
```
103-

0 commit comments

Comments
 (0)