Troubleshooting

Revision:
8:e34e23edfc84
Parent:
7:0213c3702c99
Child:
9:f8c8f0b11893
--- a/LCD.hpp	Sun Nov 04 21:09:02 2018 +0000
+++ b/LCD.hpp	Sun Nov 04 21:42:38 2018 +0000
@@ -35,8 +35,8 @@
             LCD(PinName rs, PinName e, PinName d4, PinName d5, PinName d6, PinName d7) : _LCD_RS(rs), _LCD_E(e), LCD_DDRAM(d4,d5,d6,d7) {} 
             void INIT();
             void clear();
-            void display(BYTE* str, INT_32 line, INT_32 position);
-            void putt(BYTE c);
+            void display(U_BYTE* str, U_BYTE line, UINT_16 position);
+            void putt(U_BYTE c);
         private:
             DigitalOut _LCD_RS;
             DigitalOut _LCD_E;
@@ -45,6 +45,6 @@
             void cmdLCD(U_BYTE cmd);
             void LCD_strobe(void);
             void set_LCD_data(U_BYTE d);
-            UINT_32 findSpace(BYTE* str);
+            UINT_32 findSpace(U_BYTE* str);
     };
 #endif
\ No newline at end of file