Skip to content

Commit ac2b41d

Browse files
authored
Merge pull request #72 from per1234/document-1310-support
Document that the library also supports MKR WAN 1310
2 parents 273e53e + f33734d commit ac2b41d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/DumbModemLoraSender/DumbModemLoraSender.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* https://github.com/sandeepmistry/arduino-LoRa
88
*
99
* Starting from https://github.com/sandeepmistry/arduino-LoRa/commit/5f62ed2ce9d1623bfc12f468b8152ba1878b5b16,
10-
* LoRa library knows about MKRWAN1300 and automatically restarts the module in dumb mode, uses SPI1 and the correct gpios.
10+
* LoRa library knows about MKRWAN1300/1310 and automatically restarts the module in dumb mode, uses SPI1 and the correct gpios.
1111
*
1212
* Since there is no IRQ pin available the host must poll for data (unfortunately)
1313
*

examples/FWUpdaterBridge/FWUpdaterBridge.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
FW Updater Bridge
3-
This sketch demonstrates how to update the FW on the MKR WAN 1300 LoRa module.
3+
This sketch demonstrates how to update the FW on the MKR WAN 1300/1310 LoRa module.
44
Once flashed it should be used in conjunction with stm32flash utility (https://github.com/facchinm/stm32flash)
55
66
This example code is in the public domain.

examples/FirstConfiguration/FirstConfiguration.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
First Configuration
3-
This sketch demonstrates the usage of MKR WAN 1300 LoRa module.
3+
This sketch demonstrates the usage of MKR WAN 1300/1310 LoRa module.
44
This example code is in the public domain.
55
*/
66

@@ -21,7 +21,7 @@ void setup() {
2121
// put your setup code here, to run once:
2222
Serial.begin(115200);
2323
while (!Serial);
24-
Serial.println("Welcome to MKRWAN1300 first configuration sketch");
24+
Serial.println("Welcome to MKRWAN1300/1310 first configuration sketch");
2525
Serial.println("Register to your favourite LoRa network and we are ready to go!");
2626
// change this to your regional band (eg. US915, AS923, ...)
2727
if (!modem.begin(EU868)) {

examples/LoraSendAndReceive/LoraSendAndReceive.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Lora Send And Receive
3-
This sketch demonstrates how to send and receive data with the MKR WAN 1300 LoRa module.
3+
This sketch demonstrates how to send and receive data with the MKR WAN 1300/1310 LoRa module.
44
This example code is in the public domain.
55
*/
66

examples/MKRWANFWUpdate_standalone/MKRWANFWUpdate_standalone.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* STANDALONE FIRMWARE UPDATE FOR MKR WAN 1300
2+
* STANDALONE FIRMWARE UPDATE FOR MKR WAN 1300/1310
33
* This sketch implements STM32 bootloader protocol
44
* It is based on stm32flash (mirrored here git@github.com:facchinm/stm32flash.git)
55
* with as little modifications as possible.

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name=MKRWAN
22
version=1.0.11
33
author=Arduino <support@arduino.cc>
44
maintainer=Arduino <support@arduino.cc>
5-
sentence=Support library for MKR WAN 1300
5+
sentence=Support library for MKR WAN 1300/1310
66
paragraph=Provides APIs to communicate with LoRa and LoraWAN networks
77
category=Communication
88
url=http://github.com/arduino-libraries/MKRWAN

0 commit comments

Comments
 (0)