Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed Chainable_RGB_LED DigitDisplay LoRaWAN-lib SX1276Lib
For a detailed description of the LoRaWAN operations, please visit the MBED dedicated page at https://developer.mbed.org/teams/Semtech/code/LoRaWAN-demo-76/
Diff: app/vt100.h
- Revision:
- 4:312eeebb61e3
- Parent:
- 0:cb80564f40e1
diff -r de1dcfbe175a -r 312eeebb61e3 app/vt100.h
--- a/app/vt100.h Tue Jul 05 15:02:26 2016 +0000
+++ b/app/vt100.h Tue Apr 04 13:39:43 2017 +0000
@@ -52,9 +52,8 @@
WHITE = 7,
};
- VT100( PinName tx, PinName rx ): SerialBase( tx, rx )
+ VT100( PinName tx, PinName rx ): SerialBase( tx, rx, 115200 )
{
- this->baud( 115200 );
// initializes terminal to "power-on" settings
// ESC c
this->printf( "\x1B\x63" );
@@ -152,7 +151,7 @@
*/
int getc( )
{
- return _base_getc();
+ return _base_getc( );
}
/** Write a char to the serial port