Ika Shouyu Poppoyaki - LPC82x supported

Dependencies:   MODSERIAL mbed

Fork of ika_shouyu_poppoyaki by Tedd OKANO

Committer:
k4zuki
Date:
Sat Oct 18 07:36:54 2014 +0000
Revision:
42:2b40666d8177
Parent:
30:e0d7524661ca
LPC82x series supported (only 824 is tested)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 21:e149d0bdbf4a 1
okano 21:e149d0bdbf4a 2 void set_target_baud_rate( int baud_rate );
okano 21:e149d0bdbf4a 3 void usb_serial_bridge_operation( void );
okano 21:e149d0bdbf4a 4
okano 21:e149d0bdbf4a 5 void put_string( char *s );
okano 21:e149d0bdbf4a 6 void put_binary( char *b, int size );
okano 21:e149d0bdbf4a 7 void get_string( char *s );
okano 21:e149d0bdbf4a 8 int get_binary( char *b, int length );
okano 21:e149d0bdbf4a 9 char read_byte( void );
okano 26:a63e73885b21 10
okano 30:e0d7524661ca 11 // next line is not related to "serial feature", but all code affected by this are including this header file
okano 30:e0d7524661ca 12 #pragma diag_suppress 1293 // surpressing a warning message of "assignment in condition" ;)
okano 30:e0d7524661ca 13