From 0d4b6dbc6cc6513e1623d45b60d8c6515bdcd406 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Thu, 3 Oct 2019 13:04:08 -0400 Subject: [PATCH] Update required version of Arduino_LoRaWAN library --- README.md | 2 +- src/CatenaBase.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a27ef8d..553605e 100644 --- a/README.md +++ b/README.md @@ -1261,7 +1261,7 @@ This sketch demonstrates the use of the Catena FSM class to implement the `Turns - HEAD includes the following changes. - - [#222](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/222) Use `Arduino_LoRaWAN_network` consistently as base for `LoRaWAN` classes. (0.17.0.20) + - [#222](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/222) Use `Arduino_LoRaWAN_network` consistently as base for `LoRaWAN` classes. Requires Arduino_LoRaWAN 0.6.0.20 or later. (0.17.0.20) - [#213](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/213) Vbat voltage read is inaccurate on STM32L0 platform. (0.17.0.12) - [#211](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/211) `Catena_Si1133` cannot be copied or moved. (0.17.0.11) - [#208](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/208) Add `McciCatena::cTimer` class to simplify timing. (0.17.0.10) diff --git a/src/CatenaBase.h b/src/CatenaBase.h index fa72cc8..8ddb7bd 100644 --- a/src/CatenaBase.h +++ b/src/CatenaBase.h @@ -47,7 +47,7 @@ Copyright notice: #include -#if ! (defined(ARDUINO_LORAWAN_VERSION) && ARDUINO_LORAWAN_VERSION >= ARDUINO_LORAWAN_VERSION_CALC(0,5,3,50)) +#if ! (defined(ARDUINO_LORAWAN_VERSION) && ARDUINO_LORAWAN_VERSION >= ARDUINO_LORAWAN_VERSION_CALC(0,6,0,20)) # error Arduino_LoRaWAN library is out of date. Check ARDUINO_LORAWAN_VERSION. #endif