From 8b8fd7a9a141e015aceecf604357ecf277df0c1f Mon Sep 17 00:00:00 2001 From: nick6x Date: Fri, 26 Aug 2016 11:14:39 -0700 Subject: [PATCH] Fix Functional Test example --- examples/FunctionalTest/FunctionalTest.ino | 2 +- src/HamShield.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/FunctionalTest/FunctionalTest.ino b/examples/FunctionalTest/FunctionalTest.ino index e3cd51b..b270a03 100644 --- a/examples/FunctionalTest/FunctionalTest.ino +++ b/examples/FunctionalTest/FunctionalTest.ino @@ -44,7 +44,7 @@ void setup() { void loop() { radio.setModeReceive(); radio.setSQLoThresh(0); - radio.setSQOn(); + radio.setSQOff(); radio.setVolume1(0xF); radio.setVolume2(0xF); delay(1000); diff --git a/src/HamShield.h b/src/HamShield.h index 74ea6c1..f7efe6e 100644 --- a/src/HamShield.h +++ b/src/HamShield.h @@ -507,11 +507,11 @@ class HamShield { bool tx_active; bool rx_active; uint32_t radio_frequency; - uint32_t FRS[]; +/* uint32_t FRS[]; uint32_t GMRS[]; uint32_t MURS[]; uint32_t WX[]; - +*/ // private utility functions // these functions should not be called in the Arduino sketch // just use the above public functions to do everything