From f33734dc04c64d200bfa42395acdf31add2771ff Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 17 Dec 2019 01:13:40 -0800 Subject: [PATCH] Document that the library also supports MKR WAN 1310 Previously, text gave the impression that the library only supported the MKR WAN 1300. --- examples/DumbModemLoraSender/DumbModemLoraSender.ino | 2 +- examples/FWUpdaterBridge/FWUpdaterBridge.ino | 2 +- examples/FirstConfiguration/FirstConfiguration.ino | 4 ++-- examples/LoraSendAndReceive/LoraSendAndReceive.ino | 2 +- .../MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino | 2 +- library.properties | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/DumbModemLoraSender/DumbModemLoraSender.ino b/examples/DumbModemLoraSender/DumbModemLoraSender.ino index 480a181..bc4e349 100644 --- a/examples/DumbModemLoraSender/DumbModemLoraSender.ino +++ b/examples/DumbModemLoraSender/DumbModemLoraSender.ino @@ -7,7 +7,7 @@ * https://github.com/sandeepmistry/arduino-LoRa * * Starting from https://github.com/sandeepmistry/arduino-LoRa/commit/5f62ed2ce9d1623bfc12f468b8152ba1878b5b16, - * LoRa library knows about MKRWAN1300 and automatically restarts the module in dumb mode, uses SPI1 and the correct gpios. + * LoRa library knows about MKRWAN1300/1310 and automatically restarts the module in dumb mode, uses SPI1 and the correct gpios. * * Since there is no IRQ pin available the host must poll for data (unfortunately) * diff --git a/examples/FWUpdaterBridge/FWUpdaterBridge.ino b/examples/FWUpdaterBridge/FWUpdaterBridge.ino index 6f384ef..59a6e32 100644 --- a/examples/FWUpdaterBridge/FWUpdaterBridge.ino +++ b/examples/FWUpdaterBridge/FWUpdaterBridge.ino @@ -1,6 +1,6 @@ /* FW Updater Bridge - This sketch demonstrates how to update the FW on the MKR WAN 1300 LoRa module. + This sketch demonstrates how to update the FW on the MKR WAN 1300/1310 LoRa module. Once flashed it should be used in conjunction with stm32flash utility (https://github.com/facchinm/stm32flash) This example code is in the public domain. diff --git a/examples/FirstConfiguration/FirstConfiguration.ino b/examples/FirstConfiguration/FirstConfiguration.ino index d3bfdd6..523d348 100644 --- a/examples/FirstConfiguration/FirstConfiguration.ino +++ b/examples/FirstConfiguration/FirstConfiguration.ino @@ -1,6 +1,6 @@ /* First Configuration - This sketch demonstrates the usage of MKR WAN 1300 LoRa module. + This sketch demonstrates the usage of MKR WAN 1300/1310 LoRa module. This example code is in the public domain. */ @@ -21,7 +21,7 @@ void setup() { // put your setup code here, to run once: Serial.begin(115200); while (!Serial); - Serial.println("Welcome to MKRWAN1300 first configuration sketch"); + Serial.println("Welcome to MKRWAN1300/1310 first configuration sketch"); Serial.println("Register to your favourite LoRa network and we are ready to go!"); // change this to your regional band (eg. US915, AS923, ...) if (!modem.begin(EU868)) { diff --git a/examples/LoraSendAndReceive/LoraSendAndReceive.ino b/examples/LoraSendAndReceive/LoraSendAndReceive.ino index a7e6797..666a1b5 100644 --- a/examples/LoraSendAndReceive/LoraSendAndReceive.ino +++ b/examples/LoraSendAndReceive/LoraSendAndReceive.ino @@ -1,6 +1,6 @@ /* Lora Send And Receive - This sketch demonstrates how to send and receive data with the MKR WAN 1300 LoRa module. + This sketch demonstrates how to send and receive data with the MKR WAN 1300/1310 LoRa module. This example code is in the public domain. */ diff --git a/examples/MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino b/examples/MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino index 294bd2a..79376f7 100644 --- a/examples/MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino +++ b/examples/MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino @@ -1,5 +1,5 @@ /* - * STANDALONE FIRMWARE UPDATE FOR MKR WAN 1300 + * STANDALONE FIRMWARE UPDATE FOR MKR WAN 1300/1310 * This sketch implements STM32 bootloader protocol * It is based on stm32flash (mirrored here git@github.com:facchinm/stm32flash.git) * with as little modifications as possible. diff --git a/library.properties b/library.properties index 8869ca2..4b0c48e 100644 --- a/library.properties +++ b/library.properties @@ -2,7 +2,7 @@ name=MKRWAN version=1.0.11 author=Arduino maintainer=Arduino -sentence=Support library for MKR WAN 1300 +sentence=Support library for MKR WAN 1300/1310 paragraph=Provides APIs to communicate with LoRa and LoraWAN networks category=Communication url=http://github.com/arduino-libraries/MKRWAN