From a7f31973e28a1be594c633786a1f51ee5aef766c Mon Sep 17 00:00:00 2001
From: jgromes <jgromes@users.noreply.github.com>
Date: Sat, 18 May 2019 13:30:12 +0200
Subject: [PATCH] [Morse] Added note about SX126x support

---
 examples/Morse/Morse_Transmit/Morse_Transmit.ino | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/examples/Morse/Morse_Transmit/Morse_Transmit.ino b/examples/Morse/Morse_Transmit/Morse_Transmit.ino
index 4b0ab90e..7467e85c 100644
--- a/examples/Morse/Morse_Transmit/Morse_Transmit.ino
+++ b/examples/Morse/Morse_Transmit/Morse_Transmit.ino
@@ -1,14 +1,15 @@
 /*
    RadioLib Morse Transmit Example
 
-   This example sends Morse code message using 
+   This example sends Morse code message using
    SX1278's FSK modem.
 
    Other modules that can be used for Morse:
-    - SX1272/73/76/77/79
+    - SX127x/RFM9x
     - RF69
     - SX1231
     - CC1101
+    - SX126x
 */
 
 // include the library
@@ -65,7 +66,7 @@ void loop() {
 
   // send start signal first
   morse.startSignal();
-  
+
   // Arduino String class
   String aStr = "Arduino String";
   morse.print(aStr);
@@ -75,7 +76,7 @@ void loop() {
 
   // character
   morse.print('c');
-  
+
   // byte
   // formatting DEC/HEX/OCT/BIN is supported for
   // any integer type (byte/int/long)
@@ -86,7 +87,7 @@ void loop() {
   morse.print(i);
 
   // floating point number
-  // NOTE: When using println(), the transmission will be 
+  // NOTE: When using println(), the transmission will be
   //       terminated with cross signal (.-.-.).
   float f = -3.1415;
   morse.println(f, 3);