[RTTY] Fixed comments in example

This commit is contained in:
jgromes 2018-10-07 14:56:09 +02:00
parent 32d0be4343
commit ac2193ad72

View file

@ -1,5 +1,5 @@
/* /*
KiteLib SX127x RTTY Transmit Example KiteLib RTTY Transmit Example
This example sends RTTY message using SX1278's This example sends RTTY message using SX1278's
FSK modem. FSK modem.
@ -40,7 +40,8 @@ void setup() {
} }
// initialize RTTY client // initialize RTTY client
// NOTE: RTTY frequency shift MUST be divisible by 61 Hz! // NOTE: RTTY frequency shift will be rounded
// to multiples of 61 Hz (hardware limitation)
Serial.print(F("[RTTY] Initializing ... ")); Serial.print(F("[RTTY] Initializing ... "));
// low frequency: 434.0 MHz // low frequency: 434.0 MHz
// frequency shift: 183 Hz // frequency shift: 183 Hz
@ -57,7 +58,7 @@ void setup() {
} }
/* /*
// KiteLib also provides ITA2 ("Baudot") encoding support // KiteLib also provides ITA2 ("Baudot") support
rtty.begin(434, 183, 45, ITA2); rtty.begin(434, 183, 45, ITA2);
// All transmissions in loop() (strings and numbers) // All transmissions in loop() (strings and numbers)