Code to load a LPC1114 over tx/rx. I have only tested with a 1114 chip but it should work with other LPC uControllers

Dependencies:   DirectoryList MODSERIAL mbed

Fork of ika_shouyu_poppoyaki by Tedd OKANO

Revision:
52:afd15e54142f
Parent:
51:981107d4e84f
--- a/target_table.cpp	Sun Jul 05 01:41:12 2015 +0000
+++ b/target_table.cpp	Sun Jul 26 14:46:23 2015 +0000
@@ -8,6 +8,7 @@
     { "unknown ttarget",        0xFFFFFFFF, 1024,    4096, 4096, UUENCODE, 0x10000200 },
     { "LPC1114FN28(FDH28)/102", 0x0A40902B, 4096,   32768, 4096, UUENCODE, 0x10000200 },
     { "LPC1114FN28(FDH28)/102", 0x1A40902B, 4096,   32768, 4096, UUENCODE, 0x10000200 },
+    { "LPC1114(EM773FHN33/301)"    , 0x0444102B, 4096,   32768, 4096, UUENCODE, 0x10000200 },    
     { "LPC810M021FN8",          0x00008100, 1024,    4096, 1024, BINARY,   0x10000300 },
     { "LPC811M001JDH16",        0x00008110, 2048,    8192, 1024, BINARY,   0x10000300 },
     { "LPC812M101JDH16",        0x00008120, 4096,   16384, 1024, BINARY,   0x10000300 },
@@ -31,7 +32,7 @@
     int     id;
 
     id  = atoi( device_id_string );
-
+    printf("looking for ID %d 0x%x\r\n",id,id);
     for ( int i = 1; i < (sizeof( target_table ) / sizeof( target_param )); i++ ) {
         if ( id == target_table[ i ].id )
             return ( &(target_table[ i ]) );