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 LoRaWAN-lib
Revision 8:8d6f486e1a7d, committed 2017-04-04
- Comitter:
- mluis
- Date:
- Tue Apr 04 13:43:31 2017 +0000
- Parent:
- 7:3173f0508a98
- Child:
- 9:ee9dcbb9708d
- Commit message:
- Updated vt100.h to comply with latest mbed library versions.; Updated mbed library to the latest versions.
Changed in this revision
| app/vt100.h | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- a/app/vt100.h Tue Jul 05 15:01:57 2016 +0000
+++ b/app/vt100.h Tue Apr 04 13:43:31 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
--- a/mbed.bld Tue Jul 05 15:01:57 2016 +0000 +++ b/mbed.bld Tue Apr 04 13:43:31 2017 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/6c34061e7c34 \ No newline at end of file +http://mbed.org/users/mbed_official/code/mbed/builds/856d2700e60b \ No newline at end of file