From dfa92a23208388c9838e1a6adf5de79d0efca4d7 Mon Sep 17 00:00:00 2001 From: gijsio <67470426+gijsio@users.noreply.github.com> Date: Fri, 23 Oct 2020 11:06:29 +0200 Subject: [PATCH] recommended changes --- content/datasheets/expansionboards/expansion3.md | 2 +- content/firmwareapi/pycom/network/lora/_index.md | 4 ++-- content/firmwareapi/pycom/network/lte.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/datasheets/expansionboards/expansion3.md b/content/datasheets/expansionboards/expansion3.md index d6a9911..ac283d4 100644 --- a/content/datasheets/expansionboards/expansion3.md +++ b/content/datasheets/expansionboards/expansion3.md @@ -20,7 +20,7 @@ The datasheet of the Expansion Board is available as a [PDF File](/gitbook/asset The pinout of the Expansion Board is available as a [PDF File](/gitbook/assets/expansion3-pinout.pdf) -The expansion board contains 6 jumpers labeled: +The expansion board contains 7 jumpers labeled: - TX: TX UART (GPIO1) communication of the development board to the Expansionboard - RTS: Can be used for UART flow control. Connected to GPIO7. - RX: RX UART (GPIO2() communication of the development board to the Expansionboard diff --git a/content/firmwareapi/pycom/network/lora/_index.md b/content/firmwareapi/pycom/network/lora/_index.md index efadf03..6bec3f6 100644 --- a/content/firmwareapi/pycom/network/lora/_index.md +++ b/content/firmwareapi/pycom/network/lora/_index.md @@ -63,7 +63,7 @@ The arguments are: * `adr` enables Adaptive Data Rate. * `public` selects between the public and private sync word. * `tx_retries` sets the number of TX retries in `LoRa.LORAWAN` mode. -* `device_class` sets the LoRaWAN device class. Go [here](https://www.thethingsnetwork.org/docs/lorawan/classes.html) to learn more about the LoRa device classes. Can be either: +* `device_class` sets the LoRaWAN device class. Visit the [TTN Website](https://www.thethingsnetwork.org/docs/lorawan/classes.html) to learn more about the LoRa device classes. Can be either: * `LoRa.CLASS_A` * `LoRa.CLASS_C` @@ -137,7 +137,7 @@ Where: * `tx_counter` is the number of packets transmitted. * `tx_frequency` is the frequency used for the last transmission. -> Note that the tuple will only contain the respective information after receiver and/or sending LoRa packets. +> Note that the tuple will only contain the respective information after receiving and/or sending LoRa packets. ### lora.has_joined() diff --git a/content/firmwareapi/pycom/network/lte.md b/content/firmwareapi/pycom/network/lte.md index f4cec15..5d331ac 100644 --- a/content/firmwareapi/pycom/network/lte.md +++ b/content/firmwareapi/pycom/network/lte.md @@ -118,7 +118,7 @@ Returns `True` if there is an active LTE data session and IP address has been ob End the data session with the network. -### lte.send_at_cmd(cmd) +### lte.send_at_cmd(cmd, [delay=10000]) Send an AT command directly to the modem. Returns the raw response from the modem as a string object. You can find the possible AT commands [here](/gitbook/assets/Monarch-LR5110-ATCmdRefMan-rev6_noConfidential.pdf).