Skip to content

Commit 46e054e

Browse files
committed
Update library version numbers
1 parent 8810040 commit 46e054e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Firmware/LoRaSerial/Arch_SAMD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if defined(ARDUINO_ARCH_SAMD)
22
#ifndef __SAMD_H__
33

4-
#include <FlashAsEEPROM_SAMD.h> //Click here to get the library: http://librarymanager/All#FlashStorage_SAMD21 v1.2.1 by Khoi Hoang
4+
#include <FlashAsEEPROM_SAMD.h> //Click here to get the library: http://librarymanager/All#FlashStorage_SAMD21 v1.3.2 by Khoi Hoang
55
#include <WDTZero.h> //https://github.com/javos65/WDTZero
66
WDTZero myWatchDog;
77

Firmware/LoRaSerial/LoRaSerial.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ uint8_t pin_hop_timer = PIN_UNDEFINED;
139139

140140
//Radio Library
141141
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
142-
#include <RadioLib.h> //Click here to get the library: http://librarymanager/All#RadioLib v5.1.2
142+
#include <RadioLib.h> //Click here to get the library: http://librarymanager/All#RadioLib v5.6.0
143143
SX1276 radio = NULL; //We can't instantiate here because we don't yet know what pin numbers to use
144144

145145
float *channels;
@@ -160,7 +160,7 @@ uint8_t AESiv[AES_IV_BYTES] = {0}; //Set during hop table generation
160160

161161
//Buttons - Interrupt driven and debounce
162162
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
163-
#include <JC_Button.h> // http://librarymanager/All#JC_Button
163+
#include <JC_Button.h> // http://librarymanager/All#JC_Button //v2.1.2
164164
Button *trainBtn = NULL; //We can't instantiate the button here because we don't yet know what pin number to use
165165

166166
const int trainButtonTime = 2000; //ms press and hold before entering training
@@ -169,7 +169,7 @@ bool trainViaButton = false; //Allows auto-creation of server if client times ou
169169

170170
//Hardware Timers
171171
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
172-
#include "SAMDTimerInterrupt.h" //http://librarymanager/All#SAMD_TimerInterrupt v1.9.0 (currently) by Koi Hang
172+
#include "SAMDTimerInterrupt.h" //http://librarymanager/All#SAMD_TimerInterrupt v1.10.1 by Koi Hang
173173
SAMDTimer channelTimer(TIMER_TCC); //Available: TC3, TC4, TC5, TCC, TCC1 or TCC2
174174
volatile uint16_t channelTimerMsec; //Last value programmed into the channel timer
175175
volatile unsigned long channelTimerStart = 0; //Tracks how long our timer has been running since last hop

0 commit comments

Comments
 (0)