this transfers data (which is stored in "bin" file in mbed storage) into LPC1114, LPC1115, LPC81x, LPC82x, LPC1768/LPC1769 and LPC11U68/LPC11E68 internal flash memory through ISP.

Dependencies:   mbed MODSERIAL DirectoryList

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