Funzioni di IO varie con seriale asincrona

Dependents:   Nucleo_AsyncSerialIO

Fork of IOFuncLib by Max Scordamaglia

Revision:
2:8e723d99838e
Parent:
1:58f3784ad68e
Child:
3:6c6446382bb2
--- a/IOFuncLib.h	Sun May 24 10:27:24 2015 +0000
+++ b/IOFuncLib.h	Thu May 28 14:52:10 2015 +0000
@@ -22,12 +22,19 @@
     Screen(Serial* ps);
     void banner();
     void pressed();
-    
+    //vettore schermo
+    void commitScreen();
+    void emptyFrame();
+    void clearScreen(char upperx, char uppery, char loverx, char lowery);
+    void writeScreen(char sstr[], char xx, char yy);
+
 private:
     /**
      * Receive bytes from the serial port and store it into the receive queue.
      */
     Serial* _ps;
+    // vettore schermo
+    char svec[80][24] ;
 };
 
 #endif