syouichi imamori / Mbed OS MulticopterQuadX

Dependencies:   IAP

Revision:
4:4060309b9cc0
Parent:
2:59ac9df97701
Child:
8:1db19b529b22
--- a/SerialLcd/SerialLcd.cpp	Thu Feb 13 16:07:07 2014 +0000
+++ b/SerialLcd/SerialLcd.cpp	Tue Oct 14 08:15:03 2014 +0000
@@ -1,7 +1,7 @@
 #include "mbed.h"
 #include "SerialLcd.h"
 
-SerialLcd::SerialLcd(PinName TX): _lcd(TX,NC)
+SerialLcd::SerialLcd(PinName TX,PinName RX): _lcd(TX,RX)
 {   
 //    LCD_contrast = 60; 
 }
@@ -28,4 +28,4 @@
     _lcd.putc( 0x80 + (row * 0x40) + clm );
     wait(0.01);
 }
-;
\ No newline at end of file
+;