From dc9375273076e04c8ef3468b711cf6171c020f5d Mon Sep 17 00:00:00 2001 From: morgan Date: Wed, 7 Nov 2018 16:45:46 -0800 Subject: [PATCH] temporary fixes for KISS example --- examples/KISS/KISS.ino | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/examples/KISS/KISS.ino b/examples/KISS/KISS.ino index a3c12b6..3ade1b7 100644 --- a/examples/KISS/KISS.ino +++ b/examples/KISS/KISS.ino @@ -7,6 +7,11 @@ * into the HamShield RF jack. Connect the Arduino to wall * power and then to your computer via USB. Issue commands * via the KISS equipment. + * + * You can also just use the serial terminal to send and receive + * APRS packets, but keep in mind that several fields in the packet + * are bit-shifted from standard ASCII (so if you're receiving, + * you won't get human readable callsigns or paths). * * To use the KISS example with YAAC: * 1. open the configure YAAC wizard @@ -55,9 +60,9 @@ void setup() { radio.setVolume2(0xFF); radio.setSQHiThresh(-100); radio.setSQLoThresh(-100); - radio.setSQOn(); + //radio.setSQOn(); radio.frequency(144390); - //radio.bypassPreDeEmph(); + radio.bypassPreDeEmph(); dds.start(); afsk.start(&dds);