[RTTY] Added note about non-LoRa module usage

This commit is contained in:
jgromes 2019-07-29 13:05:57 +02:00
parent 20f3b429e9
commit 9a300da963

View file

@ -45,6 +45,11 @@ void setup() {
// current limit: 100 mA // current limit: 100 mA
// sync word: 0x2D 0x01 // sync word: 0x2D 0x01
int state = fsk.beginFSK(); 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) { if(state == ERR_NONE) {
Serial.println(F("success!")); Serial.println(F("success!"));
} else { } else {