inital draft

Dependencies:   mbed LoRaWAN-lib SX1272Liby

Fork of LoRaWAN-demo-72_tjm by Timothy Mulrooney

Revision:
9:b70f8b97176a
Parent:
0:45496a70a8a5
--- a/app/SerialDisplay.cpp	Mon Mar 21 17:51:35 2016 +0000
+++ b/app/SerialDisplay.cpp	Tue Aug 09 14:38:07 2016 +0000
@@ -350,7 +350,7 @@
     // "+-----------------------------------------------------------------------------+" );
     SerialDisplayDrawFirstLine( );
     // "¦                      LoRaWAN Demonstration Application                      ¦" );
-    SerialDisplayDrawTitle( "                      LoRaWAN Demonstration Application                       " );
+    SerialDisplayDrawTitle( "              LoRaWAN Production Demonstration Application               " );
     // "+------------+----------------------------------------------------------------¦" );
     SerialDisplayDrawTopSeparator( );
     // "¦ Activation ¦ [ ]Over The Air                                                ¦" );
@@ -442,3 +442,15 @@
 {
     return vt.GetChar( );
 }
+
+void SerialDisplayMessage1(char *str)
+{
+    vt.SetCursorPos( 45, 0 );
+    vt.printf("%s",str);
+}
+
+void SerialDisplayMessage2(char *str)
+{
+    vt.SetCursorPos( 46, 0 );
+    vt.printf("%s",str);
+}