From b90e3682be3676b00108ff4eb615b4e103ed7da2 Mon Sep 17 00:00:00 2001 From: Phil Crump Date: Sat, 7 Jul 2018 09:06:36 +0000 Subject: [PATCH] Display activeFreq (with correction) Closes #54. --- gateway.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gateway.c b/gateway.c index 3c1992e..5f75eb9 100644 --- a/gateway.c +++ b/gateway.c @@ -2283,7 +2283,7 @@ void SendUplinkMessage( int Channel ) void displayChannel (int Channel) { - displayFrequency ( Channel, Config.LoRaDevices[Channel].Frequency ); + displayFrequency ( Channel, Config.LoRaDevices[Channel].activeFreq ); displayLoRaParameters( Channel, @@ -2617,4 +2617,4 @@ int main( int argc, char **argv ) return 0; -} \ No newline at end of file +}