Add to 11U68 11E68

Dependencies:   DirectoryList MODSERIAL mbed

Fork of ika_shouyu_poppoyaki by Tedd OKANO

Committer:
okano
Date:
Tue Aug 27 05:47:02 2013 +0000
Revision:
12:5a33b5d39792
Parent:
8:b220fadbb3d8
Child:
26:a63e73885b21
Now this can write LPC810!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okano 5:ff30f5b58617 1 #include "mbed.h"
okano 5:ff30f5b58617 2 #include "target_table.h"
okano 5:ff30f5b58617 3
okano 5:ff30f5b58617 4 target_param target_table[] = {
okano 12:5a33b5d39792 5 { "unknown ttarget", 0xFFFFFFFF, 1024, 4096, 4096, UUENCODE, 0x10000200 },
okano 12:5a33b5d39792 6 { "LPC1114FN28(FDH28)/102", 0x0A40902B, 4096, 32768, 4096, UUENCODE, 0x10000200 },
okano 12:5a33b5d39792 7 { "LPC1114FN28(FDH28)/102", 0x1A40902B, 4096, 32768, 4096, UUENCODE, 0x10000200 },
okano 12:5a33b5d39792 8 { "LPC810M021FN8", 0x00008100, 1024, 4096, 1024, BINARY, 0x10000300 },
okano 12:5a33b5d39792 9 { "LPC811M001JDH16", 0x00008110, 2048, 8192, 1024, BINARY, 0x10000300 },
okano 12:5a33b5d39792 10 { "LPC812M101JDH16", 0x00008120, 4096, 16384, 1024, BINARY, 0x10000300 },
okano 12:5a33b5d39792 11 { "LPC812M101JD20", 0x00008121, 4096, 16384, 1024, BINARY, 0x10000300 },
okano 12:5a33b5d39792 12 { "LPC812M101JDH20", 0x00008122, 4096, 16384, 1024, BINARY, 0x10000300 },
okano 5:ff30f5b58617 13 };
okano 5:ff30f5b58617 14
okano 5:ff30f5b58617 15 target_param *find_target_param( char *device_id_string )
okano 5:ff30f5b58617 16 {
okano 5:ff30f5b58617 17 int id;
okano 5:ff30f5b58617 18
okano 5:ff30f5b58617 19 id = atoi( device_id_string );
okano 5:ff30f5b58617 20
okano 5:ff30f5b58617 21 for ( int i = 1; i < (sizeof( target_table ) / sizeof( target_param )); i++ )
okano 5:ff30f5b58617 22 {
okano 5:ff30f5b58617 23 if ( id == target_table[ i ].id )
okano 5:ff30f5b58617 24 return ( &(target_table[ i ]) );
okano 5:ff30f5b58617 25 }
okano 5:ff30f5b58617 26
okano 5:ff30f5b58617 27 return ( target_table );
okano 5:ff30f5b58617 28 }