From 5d6a7a398a03cdf0f97b0ce8a2c7c8ace8597868 Mon Sep 17 00:00:00 2001 From: torntrousers Date: Tue, 13 Mar 2018 07:43:17 +0000 Subject: [PATCH] Correct type of _frequency from int to long --- src/LoRa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa.h b/src/LoRa.h index bf5fb06..a7ec8ff 100644 --- a/src/LoRa.h +++ b/src/LoRa.h @@ -85,7 +85,7 @@ private: int _ss; int _reset; int _dio0; - int _frequency; + long _frequency; int _packetIndex; int _implicitHeaderMode; void (*_onReceive)(int);