My implementation of VT100 ESC-sequence utility
Revision 4:d2c3bf5d00f4, committed 2018-02-08
- Comitter:
- Rhyme
- Date:
- Thu Feb 08 05:36:56 2018 +0000
- Parent:
- 3:141a8a98c504
- Commit message:
- temporary commit not working
Changed in this revision
| vt100.cpp | Show annotated file Show diff for this revision Revisions of this file |
| vt100.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/vt100.cpp Thu Feb 08 01:12:39 2018 +0000
+++ b/vt100.cpp Thu Feb 08 05:36:56 2018 +0000
@@ -24,7 +24,7 @@
{
}
-vt100::~vt100(void)
+vt100::~vt100()
{
}
--- a/vt100.h Thu Feb 08 01:12:39 2018 +0000
+++ b/vt100.h Thu Feb 08 05:36:56 2018 +0000
@@ -42,7 +42,7 @@
vt100(PinName tx_pin, PinName rx_pin, int baud=115200) ;
/** destructor */
- ~vt100(void) ;
+ ~vt100() ;
/** clear screen */
void cls(void) ;