Skip to content

Commit 8955290

Browse files
committed
Add Tektelic KONA Pico documentation.
1 parent be1c7b2 commit 8955290

File tree

6 files changed

+146
-4
lines changed

6 files changed

+146
-4
lines changed

docs/content/install/gateway/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Instructions are available for the following vendors:
1717
* [Laird]({{<relref "laird.md">}})
1818
* [MatchX]({{<relref "matchx.md">}})
1919
* [Multitech]({{<relref "multitech.md">}})
20+
* [Tektelic]({{<relref "tektelic.md">}})
2021

2122
For Raspberry Pi / Rasbian based gateways, please refer the
2223
[Debian / Ubuntu]({{< ref "install/debian.md" >}}) installation instructions.

docs/content/install/gateway/kerlink.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ menu:
99

1010
## Kerlink IOT station
1111

12+
* [Product detail page](https://www.kerlink.com/product/wirnet-station/)
13+
1214
The Kerlink IOT station has a meganism to start "custom" application on boot.
1315
These steps will install the LoRa Gateway Bridge ARM build on the Kerlink.
1416

docs/content/install/gateway/laird.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ menu:
99

1010
## Sentrius RG1XX LoRa gateway
1111

12+
* [Product detail page](https://www.lairdtech.com/products/rg1xx-lora-gateway)
13+
1214
**Note:** The LoRa Gateway Bridge component comes pre-installed since firmware version
1315
[93.7.2.9](https://assets.lairdtech.com/home/brandworld/files/CONN-RN-RG1xx-laird-93_7_2_9.pdf).
1416
If your gateway is running an older version, please update it first.
@@ -28,6 +30,3 @@ configuration options. The fields map to the following configuration options:
2830
* Server Address: `--mqtt-server`
2931
* Username: `--mqtt-username`
3032
* Password: `--mqtt-password`
31-
32-
For more information about this gateway:
33-
[https://www.lairdtech.com/products/rg1xx-lora-gateway](https://www.lairdtech.com/products/rg1xx-lora-gateway)

docs/content/install/gateway/matchx.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ menu:
99

1010
## Matchbox gateway
1111

12-
The [MatchX Matchbox](https://matchx.io/hardware#matchboxs) is an OpenWRT / Lede
12+
* [Product detail page](https://www.lairdtech.com/products/rg1xx-lora-gateway)
13+
14+
The MatchX Matchbox is an OpenWRT / Lede
1315
base gateway, which by default sends its data to the MatchX hosted network-server
1416
(which is based on the LoRa Server software). By default it connects to the MatchX
1517
backend over a VPN connection.

docs/content/install/gateway/multitech.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ menu:
99

1010
## Multitech Conduit
1111

12+
* [Product detail page](https://www.multitech.com/brands/multiconnect-conduit)
13+
* [Product documentation page](http://www.multitech.net/developer/products/multiconnect-conduit-platform/)
14+
1215
After completing this steps, you have a Multitech Conduit running both the
1316
packet-forwarder and LoRa Gateway bridge. The packet-forwarder will forwards
1417
the UDP data to `localhost:1700` and the LoRa Gateway Bridge will forward
Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
---
2+
title: Tektelic
3+
menu:
4+
main:
5+
parent: gateway
6+
---
7+
8+
# Tektelic
9+
10+
## KONA Pico IoT Gateway
11+
12+
* [Product detail page](https://tektelic.com/iot/lorawan-gateways/)
13+
14+
The KONA Pico IoT Gateway is able to run different firmwares, each using a
15+
different protocol. In order to work together with the LoRa Gateway Brige,
16+
you must install the `semtech-vx.xx.bin` firmware. These steps have been tested
17+
with version 1.2.1. The latest firmware can be [downloaded here](https://dl.loraserver.io/tektelic/konapico/).
18+
19+
1. After turning on the gateway, find the IP that has been assigned to it
20+
(eg. by listing the devices connected to your router). In the examples below
21+
it is assumed that the IP of the gateway is `192.168.1.10`.
22+
23+
2. Upload the channel configuration to the gateway. For this you need to use
24+
TFTP. The example command below shows how to do this from the command-line.
25+
The KONA Pico IoT Gateway configuration user-guide contains instructions how
26+
to do this using using a UI (Windows).
27+
```bash
28+
$ tftp 192.168.1.10
29+
tftp> put lorawan_conf.json
30+
Sent 1412 bytes in 0.0 seconds
31+
```
32+
Note: the tftp command is invoked from the same directory as where the
33+
`lorawan_conf.json` is stored.
34+
35+
3. Upload the configuration file containing the IP of the LoRa Gateway Bridge
36+
instance and the used ports.
37+
```bash
38+
$ tftp 192.168.1.10
39+
tftp> put customer_conf.json
40+
Sent 121 bytes in 0.1 seconds
41+
```
42+
Note: the tftp command is invoked from the same directory as where the
43+
`customer_conf.json` is stored.
44+
45+
### Example configuration files
46+
47+
#### lorawan_conf.json for EU868
48+
49+
This configuration file contains exactly the same radio configuration as
50+
[global_conf.json.PCB_E336.EU868.basic](https://github.com/Lora-net/packet_forwarder/blob/master/lora_pkt_fwd/cfg/global_conf.json.PCB_E336.EU868.basic)
51+
52+
```json
53+
{
54+
"public": true,
55+
"radio": [
56+
{
57+
"enable": true,
58+
"freq": 867500000
59+
},
60+
{
61+
"enable": true,
62+
"freq": 868500000
63+
}
64+
],
65+
"lora_multi": [
66+
{
67+
"enable": true,
68+
"radio": 1,
69+
"offset": -400000
70+
},
71+
{
72+
"enable": true,
73+
"radio": 1,
74+
"offset": -200000
75+
},
76+
{
77+
"enable": true,
78+
"radio": 1,
79+
"offset": 0
80+
},
81+
{
82+
"enable": true,
83+
"radio": 0,
84+
"offset": -400000
85+
},
86+
{
87+
"enable": true,
88+
"radio": 0,
89+
"offset": -200000
90+
},
91+
{
92+
"enable": true,
93+
"radio": 0,
94+
"offset": 0
95+
},
96+
{
97+
"enable": true,
98+
"radio": 0,
99+
"offset": 200000
100+
},
101+
{
102+
"enable": true,
103+
"radio": 0,
104+
"offset": 400000
105+
}
106+
],
107+
"lora_std": {
108+
"enable": true,
109+
"radio": 1,
110+
"offset": -200000,
111+
"bandwidth": "250kHz",
112+
"spread_factor": "SF7"
113+
},
114+
"fsk": {
115+
"enable": true,
116+
"radio": 1,
117+
"offset": 300000,
118+
"bandwidth": "125kHz",
119+
"datarate": 50000
120+
}
121+
}
122+
```
123+
124+
#### customer_conf.json
125+
126+
The IP or hostname of the `network_server` key must match the IP or hostname
127+
of the machine on which LoRa Gateway Bridge is running.
128+
129+
```json
130+
{
131+
"network_server": "192.168.1.5",
132+
"network_service_up_port": 1700,
133+
"network_service_down_port": 1700
134+
}
135+
```

0 commit comments

Comments
 (0)