Node code for sx1272 LoRa transciever

Dependencies:   mbed BMP085 BufferedSerial DHT Sds021 Chainable_RGB_LED DigitDisplay LoRaWAN-lib SX1272Lib

Fork of LoRaWAN-demo-72-bootcamp by Semtech

Revision:
8:4f65ef8c6e3c
Parent:
0:45496a70a8a5
--- a/app/vt100.h	Tue Jul 05 15:01:10 2016 +0000
+++ b/app/vt100.h	Sat Jan 07 08:52:00 2017 +0000
@@ -24,7 +24,7 @@
  * Implments also the same behaviour has RawSerial class. The only difference
  * is located in putc fucntion where writeable check is made befor sending the character.
  */
-class VT100 : public SerialBase
+class VT100 : public Serial
 {
 public:
     enum TextAttributes
@@ -52,9 +52,9 @@
         WHITE   = 7,
     };
 
-    VT100( PinName tx, PinName rx ): SerialBase( tx, rx )
+    VT100( PinName tx, PinName rx ): Serial( tx, rx , 115200)
     {
-        this->baud( 115200 );
+//        this->baud( 115200 );
         // initializes terminal to "power-on" settings
         // ESC c
         this->printf( "\x1B\x63" );