Add to 11U68 11E68

Dependencies:   DirectoryList MODSERIAL mbed

Fork of ika_shouyu_poppoyaki by Tedd OKANO

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers serial_utilities.h Source File

serial_utilities.h

00001 
00002 void    set_target_baud_rate( int baud_rate );
00003 void    usb_serial_bridge_operation( void );
00004 
00005 void    put_string( char *s );
00006 void    put_binary( char *b, int size );
00007 void    get_string( char *s );
00008 int     get_binary( char *b, int length );
00009 char    read_byte( void );
00010 
00011 //  next line is not related to "serial feature", but all code affected by this are including this header file
00012 #pragma diag_suppress 1293  //  surpressing a warning message of "assignment in condition" ;)
00013