Skip to content

Commit

Permalink
Merge pull request #72 from per1234/document-1310-support
Browse files Browse the repository at this point in the history
Document that the library also supports MKR WAN 1310
  • Loading branch information
facchinm authored Dec 17, 2019
2 parents 273e53e + f33734d commit ac2b41d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/DumbModemLoraSender/DumbModemLoraSender.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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)
*
Expand Down
2 changes: 1 addition & 1 deletion examples/FWUpdaterBridge/FWUpdaterBridge.ino
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions examples/FirstConfiguration/FirstConfiguration.ino
Original file line number Diff line number Diff line change
@@ -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.
*/

Expand All @@ -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)) {
Expand Down
2 changes: 1 addition & 1 deletion examples/LoraSendAndReceive/LoraSendAndReceive.ino
Original file line number Diff line number Diff line change
@@ -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.
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name=MKRWAN
version=1.0.11
author=Arduino <support@arduino.cc>
maintainer=Arduino <support@arduino.cc>
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
Expand Down

0 comments on commit ac2b41d

Please sign in to comment.