Ken Segler / ezLCDLib

Dependents:   ezLCDTest

Files at this revision

API Documentation at this revision

Comitter:
codeman
Date:
Sun Apr 28 19:33:18 2013 +0000
Parent:
1:c7659c8af0d3
Child:
3:28e71ce23bfd
Commit message:
cleanup 1;

Changed in this revision

ezLCDLib.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ezLCDLib.cpp	Sun Apr 28 07:41:27 2013 +0000
+++ b/ezLCDLib.cpp	Sun Apr 28 19:33:18 2013 +0000
@@ -6,7 +6,6 @@
 void send_line();
 void read_line();
 
-//Serial pc(USBTX, USBRX);
 // Circular buffers for serial TX and RX data - used by interrupt routines
 const int buffer_size = 64;
 // might need to increase buffer size for high baud rates
@@ -18,9 +17,6 @@
 volatile int tx_out=0;
 volatile int rx_in=0;
 volatile int rx_out=0;
-// Line buffers for sprintf and sscanf
-char tx_line[80];
-char rx_line[80];
 
 char buf[64];