From fcbd4b0e28ad72d8efecb9939ef7263211863bf7 Mon Sep 17 00:00:00 2001 From: Andrew Harrington Date: Thu, 3 Oct 2019 14:29:23 -0600 Subject: [PATCH 1/3] doc edits --- docs/content/gateway/_index.md | 3 +-- docs/content/gateway/multitech.md | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/content/gateway/_index.md b/docs/content/gateway/_index.md index 5cbe6e53..afc3f1fe 100644 --- a/docs/content/gateway/_index.md +++ b/docs/content/gateway/_index.md @@ -9,6 +9,5 @@ hidden: true # Install LoRa Gateway Bridge on the gateway -Help us making this list complete! Is the gateway that you are using not -listed? Or are the steps described outdated? +Help us make this list complete! Is your gateway missing? Or are the steps described outdated? Please help by [Contributing]({{}}). diff --git a/docs/content/gateway/multitech.md b/docs/content/gateway/multitech.md index 4ae23104..f59f5177 100644 --- a/docs/content/gateway/multitech.md +++ b/docs/content/gateway/multitech.md @@ -13,8 +13,8 @@ menu: * [Product detail page](https://www.multitech.com/brands/multiconnect-conduit) * [Product documentation page](http://www.multitech.net/developer/products/multiconnect-conduit-platform/) -After completing this steps, you have a Multitech Conduit running both the -packet-forwarder and LoRa Gateway bridge. The packet-forwarder will forwards +After completing these steps, you will have a Multitech Conduit running both the +packet-forwarder and LoRa Gateway bridge. The packet-forwarder will forward the UDP data to `localhost:1700` and the LoRa Gateway Bridge will forward this data over MQTT to a MQTT broker. @@ -104,7 +104,7 @@ opkg update wget https://artifacts.loraserver.io/vendor/multitech/conduit/lora-gateway-bridge_3.1.0-r1_arm926ejste.ipk {{< /highlight >}} -3. Now this `.ipk` package is stored on the Conduit, you can install it +3. Now that the `.ipk` package is stored on the Conduit, you can install it using the `opkg` package-manager utility. Example (assuming the same `.ipk` file): {{}} From 23a57f363b15ec5260d6ec0613476f09407ca64d Mon Sep 17 00:00:00 2001 From: Andrew Harrington Date: Thu, 3 Oct 2019 15:28:32 -0600 Subject: [PATCH 2/3] small edit --- docs/content/gateway/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/gateway/_index.md b/docs/content/gateway/_index.md index afc3f1fe..a69d88e5 100644 --- a/docs/content/gateway/_index.md +++ b/docs/content/gateway/_index.md @@ -9,5 +9,5 @@ hidden: true # Install LoRa Gateway Bridge on the gateway -Help us make this list complete! Is your gateway missing? Or are the steps described outdated? +Help us make this list complete! Is your gateway missing or are the steps described outdated? Please help by [Contributing]({{}}). From 17a94a504a6a6e4e83016dcf578102e3c174e3aa Mon Sep 17 00:00:00 2001 From: Andrew Harrington Date: Thu, 3 Oct 2019 15:34:01 -0600 Subject: [PATCH 3/3] config comment listeren fix --- cmd/lora-gateway-bridge/cmd/configfile.go | 2 +- docs/content/gateway/cisco.md | 2 +- docs/content/install/config.md | 2 +- packaging/files/lora-gateway-bridge.toml | 2 +- .../files/etc/lora-gateway-bridge/lora-gateway-bridge.toml | 2 +- packaging/vendor/kerlink/ibts/files/lora-gateway-bridge.toml | 2 +- .../vendor/kerlink/ifemtocell/files/lora-gateway-bridge.toml | 2 +- .../vendor/multitech/conduit/files/lora-gateway-bridge.toml | 2 +- .../vendor/tektelic/kona-macro/files/lora-gateway-bridge.toml | 2 +- .../vendor/tektelic/kona-mega/files/lora-gateway-bridge.toml | 2 +- .../vendor/tektelic/kona-micro/files/lora-gateway-bridge.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cmd/lora-gateway-bridge/cmd/configfile.go b/cmd/lora-gateway-bridge/cmd/configfile.go index 5f16d39b..5c3a3445 100644 --- a/cmd/lora-gateway-bridge/cmd/configfile.go +++ b/cmd/lora-gateway-bridge/cmd/configfile.go @@ -68,7 +68,7 @@ type="{{ .Backend.Type }}" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "{{ .Backend.SemtechUDP.UDPBind }}" diff --git a/docs/content/gateway/cisco.md b/docs/content/gateway/cisco.md index dfd993f3..c105cd6c 100644 --- a/docs/content/gateway/cisco.md +++ b/docs/content/gateway/cisco.md @@ -313,7 +313,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/docs/content/install/config.md b/docs/content/install/config.md index 38bda667..f0353c74 100644 --- a/docs/content/install/config.md +++ b/docs/content/install/config.md @@ -118,7 +118,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/files/lora-gateway-bridge.toml b/packaging/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/files/lora-gateway-bridge.toml +++ b/packaging/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/cisco/IXM-LPWA/files/etc/lora-gateway-bridge/lora-gateway-bridge.toml b/packaging/vendor/cisco/IXM-LPWA/files/etc/lora-gateway-bridge/lora-gateway-bridge.toml index 3c5dd63a..46b436f9 100644 --- a/packaging/vendor/cisco/IXM-LPWA/files/etc/lora-gateway-bridge/lora-gateway-bridge.toml +++ b/packaging/vendor/cisco/IXM-LPWA/files/etc/lora-gateway-bridge/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/kerlink/ibts/files/lora-gateway-bridge.toml b/packaging/vendor/kerlink/ibts/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/kerlink/ibts/files/lora-gateway-bridge.toml +++ b/packaging/vendor/kerlink/ibts/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/kerlink/ifemtocell/files/lora-gateway-bridge.toml b/packaging/vendor/kerlink/ifemtocell/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/kerlink/ifemtocell/files/lora-gateway-bridge.toml +++ b/packaging/vendor/kerlink/ifemtocell/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/multitech/conduit/files/lora-gateway-bridge.toml b/packaging/vendor/multitech/conduit/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/multitech/conduit/files/lora-gateway-bridge.toml +++ b/packaging/vendor/multitech/conduit/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/tektelic/kona-macro/files/lora-gateway-bridge.toml b/packaging/vendor/tektelic/kona-macro/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/tektelic/kona-macro/files/lora-gateway-bridge.toml +++ b/packaging/vendor/tektelic/kona-macro/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/tektelic/kona-mega/files/lora-gateway-bridge.toml b/packaging/vendor/tektelic/kona-mega/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/tektelic/kona-mega/files/lora-gateway-bridge.toml +++ b/packaging/vendor/tektelic/kona-mega/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700" diff --git a/packaging/vendor/tektelic/kona-micro/files/lora-gateway-bridge.toml b/packaging/vendor/tektelic/kona-micro/files/lora-gateway-bridge.toml index a80fc367..55127a16 100644 --- a/packaging/vendor/tektelic/kona-micro/files/lora-gateway-bridge.toml +++ b/packaging/vendor/tektelic/kona-micro/files/lora-gateway-bridge.toml @@ -17,7 +17,7 @@ type="semtech_udp" # ip:port to bind the UDP listener to # # Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces. - # This is the listeren to which the packet-forwarder forwards its data + # This is the listener to which the packet-forwarder forwards its data # so make sure the 'serv_port_up' and 'serv_port_down' from your # packet-forwarder matches this port. udp_bind = "0.0.0.0:1700"