Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document that the library also supports MKR WAN 1310 #72

Merged
merged 1 commit into from
Dec 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 [email protected]: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 <[email protected]>
maintainer=Arduino <[email protected]>
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