Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
chwon64 committed Dec 4, 2018
2 parents 378807e + a2d3363 commit 67ff015
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**User-friendly library for using the Arduino LMIC library with The Things Network and LoRaWAN™ networks.**

[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lorawan.svg)](https://github.com/mcci-catena/arduino-lorawan/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lorawan/latest.svg)](https://github.com/mcci-catena/arduino-lorawan/compare/v0.5.0...master) [![Build Status](https://travis-ci.org/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.org/mcci-catena/arduino-lorawan)
[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lorawan.svg)](https://github.com/mcci-catena/arduino-lorawan/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lorawan/latest.svg)](https://github.com/mcci-catena/arduino-lorawan/compare/v0.5.1...master) [![Build Status](https://travis-ci.org/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.org/mcci-catena/arduino-lorawan)

**Contents**
<!-- TOC depthFrom:2 updateOnSave:true -->
Expand Down Expand Up @@ -167,6 +167,8 @@ void setup() {

## Release History

- v0.5.1 fixes compilation errors when the library manager installs arduino-lmic in a renamed directory (issue [#65](https://github.com/mcci-catena/arduino-lorawan/issues/65)).

- v0.5.0 has necessary changes to support the LMIC built-in pinmaps, while retaining support for user-supplied pinmaps. We moved the pinmap parameter from compile-time initialization to an argument to Arduino_LoRaWAN::begin(). This is, unfortunately, a breaking change. Either do as we did in the example -- move the pinmap to the `begin()` call -- or add an `m_pinmap` field in your concrete `cMyLoRaWAN`, and initialize it in your `cMyLoRaWAN::cMyLoRaWAN()` constructor. In addition, we added a few example programs (issue [#49](https://github.com/mcci-catena/arduino-lorawan/issues/49)), and fixed handling of downlink messages with port numbers but no payloads (issue [#50](https://github.com/mcci-catena/arduino-lorawan/issues/50)).

- v0.4.0 adds preliminary machineQ support, continuous integration for SAMD and STM32 L0, better PlatformIO support, improved as923jp support, and fixes a defect in the receive-message API.
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.5.0
v0.5.1
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"authors": ["Terry Moore <tmm@mcci.com>"]
}
],
"version": "0.5.0",
"version": "0.5.1",
"frameworks": "arduino",
"platforms": "*"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=MCCI Arduino LoRaWAN Library
version=0.5.0
version=0.5.1
author=Terry Moore, ChaeHee Won
maintainer=Terry Moore <tmm@mcci.com>
sentence=High-level library for LoRaWAN-based Arduino end-devices.
Expand Down
4 changes: 1 addition & 3 deletions src/Arduino_LoRaWAN_machineQ.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ Revision history:
/* this is a bit of a hack, but... */
/* make sure we have the config variables in scope */
/* Under PlatformIO use build_flags = -DCFG_ etc. in platformio.ini */
extern "C" {
#include "../../arduino-lmic/src/lmic/lmic_config_preconditions.h"
}
# include <arduino_lmic_user_configuration.h>
#endif

class Arduino_LoRaWAN_machineQ_base : public Arduino_LoRaWAN
Expand Down
4 changes: 1 addition & 3 deletions src/Arduino_LoRaWAN_ttn.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ Revision history:
/* this is a bit of a hack, but... */
/* make sure we have the config variables in scope */
/* Under PlatformIO use build_flags = -DCFG_ etc. in platformio.ini */
extern "C" {
#include "../../arduino-lmic/src/lmic/lmic_config_preconditions.h"
}
# include <arduino_lmic_user_configuration.h>
#endif

class Arduino_LoRaWAN_ttn_base : public Arduino_LoRaWAN
Expand Down

0 comments on commit 67ff015

Please sign in to comment.