From 70bd364473894350cc3187ece63838bb5e198288 Mon Sep 17 00:00:00 2001 From: Morgan Redfield Date: Mon, 23 Dec 2019 11:14:37 -0500 Subject: [PATCH] update reset comments for HSMini --- examples/AFSK_SerialMessenger/AFSK_SerialMessenger.ino | 1 + examples/AppSerialController/AppSerialController.ino | 1 + examples/CTCSS/CTCSS.ino | 1 + examples/DDS/DDS.ino | 1 + examples/DTMF/DTMF.ino | 1 + examples/FMBeacon/FMBeacon.ino | 1 + examples/FoxHunt/FoxHunt.ino | 1 + examples/HandyTalkie/HandyTalkie.ino | 4 +++- examples/KISS/KISS.ino | 1 + examples/Morse/Morse.ino | 1 + examples/SSTV/SSTV.ino | 1 + examples/SSTV_M1_Static/SSTV_M1_Static.ino | 1 + examples/SerialTransceiver/SerialTransceiver.ino | 1 + examples/SignalTest/SignalTest.ino | 1 + examples/SpeechTX/SpeechTX.ino | 1 + 15 files changed, 17 insertions(+), 1 deletion(-) diff --git a/examples/AFSK_SerialMessenger/AFSK_SerialMessenger.ino b/examples/AFSK_SerialMessenger/AFSK_SerialMessenger.ino index 174f990..58c5d08 100644 --- a/examples/AFSK_SerialMessenger/AFSK_SerialMessenger.ino +++ b/examples/AFSK_SerialMessenger/AFSK_SerialMessenger.ino @@ -41,6 +41,7 @@ void setup() { digitalWrite(MIC_PIN, LOW); // prep the switch + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin diff --git a/examples/AppSerialController/AppSerialController.ino b/examples/AppSerialController/AppSerialController.ino index 657b2be..81cd1ff 100644 --- a/examples/AppSerialController/AppSerialController.ino +++ b/examples/AppSerialController/AppSerialController.ino @@ -24,6 +24,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/CTCSS/CTCSS.ino b/examples/CTCSS/CTCSS.ino index b881f3c..caef6f3 100644 --- a/examples/CTCSS/CTCSS.ino +++ b/examples/CTCSS/CTCSS.ino @@ -50,6 +50,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, LOW); diff --git a/examples/DDS/DDS.ino b/examples/DDS/DDS.ino index 4bb6fd4..d8164b5 100644 --- a/examples/DDS/DDS.ino +++ b/examples/DDS/DDS.ino @@ -33,6 +33,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); // turn on radio digitalWrite(RESET_PIN, HIGH); diff --git a/examples/DTMF/DTMF.ino b/examples/DTMF/DTMF.ino index 2c40943..909ba2a 100644 --- a/examples/DTMF/DTMF.ino +++ b/examples/DTMF/DTMF.ino @@ -35,6 +35,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, LOW); diff --git a/examples/FMBeacon/FMBeacon.ino b/examples/FMBeacon/FMBeacon.ino index 9f70826..ebd3508 100644 --- a/examples/FMBeacon/FMBeacon.ino +++ b/examples/FMBeacon/FMBeacon.ino @@ -32,6 +32,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/FoxHunt/FoxHunt.ino b/examples/FoxHunt/FoxHunt.ino index be2c938..e76c3c6 100755 --- a/examples/FoxHunt/FoxHunt.ino +++ b/examples/FoxHunt/FoxHunt.ino @@ -36,6 +36,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/HandyTalkie/HandyTalkie.ino b/examples/HandyTalkie/HandyTalkie.ino index b54761b..2eff264 100644 --- a/examples/HandyTalkie/HandyTalkie.ino +++ b/examples/HandyTalkie/HandyTalkie.ino @@ -46,6 +46,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, LOW); @@ -57,7 +58,8 @@ void setup() { while (digitalRead(SWITCH_PIN) && !Serial.available()); Serial.read(); // flush - // let the AU ot of reset + // let the radio out of reset + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/KISS/KISS.ino b/examples/KISS/KISS.ino index 980f43f..30508a5 100644 --- a/examples/KISS/KISS.ino +++ b/examples/KISS/KISS.ino @@ -48,6 +48,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/Morse/Morse.ino b/examples/Morse/Morse.ino index b1150b3..7b79333 100644 --- a/examples/Morse/Morse.ino +++ b/examples/Morse/Morse.ino @@ -49,6 +49,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/SSTV/SSTV.ino b/examples/SSTV/SSTV.ino index 389e15f..bef804d 100755 --- a/examples/SSTV/SSTV.ino +++ b/examples/SSTV/SSTV.ino @@ -35,6 +35,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/SSTV_M1_Static/SSTV_M1_Static.ino b/examples/SSTV_M1_Static/SSTV_M1_Static.ino index a266633..8de94a3 100644 --- a/examples/SSTV_M1_Static/SSTV_M1_Static.ino +++ b/examples/SSTV_M1_Static/SSTV_M1_Static.ino @@ -39,6 +39,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/SerialTransceiver/SerialTransceiver.ino b/examples/SerialTransceiver/SerialTransceiver.ino index 69633cb..ff29a4f 100644 --- a/examples/SerialTransceiver/SerialTransceiver.ino +++ b/examples/SerialTransceiver/SerialTransceiver.ino @@ -107,6 +107,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); diff --git a/examples/SignalTest/SignalTest.ino b/examples/SignalTest/SignalTest.ino index f4ca2ed..89cae37 100755 --- a/examples/SignalTest/SignalTest.ino +++ b/examples/SignalTest/SignalTest.ino @@ -97,6 +97,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up diff --git a/examples/SpeechTX/SpeechTX.ino b/examples/SpeechTX/SpeechTX.ino index e7a6816..602874f 100644 --- a/examples/SpeechTX/SpeechTX.ino +++ b/examples/SpeechTX/SpeechTX.ino @@ -241,6 +241,7 @@ void setup() { pinMode(SWITCH_PIN, INPUT_PULLUP); // set up the reset control pin + // NOTE: HamShieldMini doesn't have a reset pin, so this has no effect pinMode(RESET_PIN, OUTPUT); digitalWrite(RESET_PIN, HIGH); delay(5); // wait for device to come up