part of tutorial to add new L152RE to OpenChirp

Dependencies:   mbed LoRaWAN-lib SX1276Lib

Revision:
11:a2c88830d3bf
Parent:
3:9c6f7f082151
--- a/app/SerialDisplay.cpp	Tue Jun 25 15:42:58 2019 +0000
+++ b/app/SerialDisplay.cpp	Thu Jun 27 18:58:43 2019 +0000
@@ -231,7 +231,7 @@
     // Counter
     vt.SetCursorPos( 35, 27 );
     vt.printf( "%10d", counter );
-    if( rxData == true )
+//    if( rxData == true )
     {
         // Port
         vt.SetCursorPos( 36, 34 );
@@ -239,14 +239,14 @@
         // Data
         SerialDisplayUpdateData( 37, buffer, bufferSize );
     }
-    else
-    {
-        // Port
-        vt.SetCursorPos( 36, 34 );
-        vt.printf( "   " );
-        // Data
-        SerialDisplayUpdateData( 37, NULL, 0 );
-    }
+    //else
+//    {
+//        // Port
+//        vt.SetCursorPos( 36, 34 );
+//        vt.printf( "   " );
+//        // Data
+//        SerialDisplayUpdateData( 37, NULL, 0 );
+//    }
 }
 
 void SerialDisplayDrawFirstLine( void )