From 9a300da9632e55572b0590a5ef64932ec7a2aa4a Mon Sep 17 00:00:00 2001 From: jgromes Date: Mon, 29 Jul 2019 13:05:57 +0200 Subject: [PATCH] [RTTY] Added note about non-LoRa module usage --- examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino b/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino index 3b7b799c..540f656a 100644 --- a/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino +++ b/examples/RTTY/RTTY_Transmit/RTTY_Transmit.ino @@ -45,6 +45,11 @@ void setup() { // current limit: 100 mA // sync word: 0x2D 0x01 int state = fsk.beginFSK(); + + // when using one of the non-LoRa modules for RTTY + // (RF69, CC1101, etc.), use the basic begin() method + // int state = fsk.begin(); + if(state == ERR_NONE) { Serial.println(F("success!")); } else {