Graphics Drawing Interface EZLCD4 display using serial

Files at this revision

API Documentation at this revision

Comitter:
wbasser
Date:
Mon Mar 14 16:05:58 2011 +0000
Parent:
0:607ac6f9ce7a
Child:
2:d0ec618edc6d
Commit message:
Version 00_00_02

Changed in this revision

gdiezl4.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/gdiezl4.cpp	Mon Mar 14 15:58:13 2011 +0000
+++ b/gdiezl4.cpp	Mon Mar 14 16:05:58 2011 +0000
@@ -39,7 +39,7 @@
 {
     // create the interface
     m_serDisp.baud( 115200 );
-    m_serDisp.attach( this, &LocalCallback );
+    m_serDisp.attach( this, &GdiEzL4::LocalCallback );
     
     // initialize
     m_serDisp.putc( EZ_BTP );
@@ -321,9 +321,9 @@
 
 void GdiEzL4::LocalCallback( void )
 {
-	U8	nChar;
-	
-	// call the callback
-	nChar = m_serDisp.getc( );
-	m_pvFuncCallBack.call( nChar );
+    U8    nChar;
+    
+    // call the callback
+    nChar = m_serDisp.getc( );
+    m_pvFuncCallBack.call( nChar );
 }