Add to 11U68 11E68

Dependencies:   DirectoryList MODSERIAL mbed

Fork of ika_shouyu_poppoyaki by Tedd OKANO

target_table.h

Committer:
okano
Date:
2013-09-13
Revision:
22:bd98a782fba6
Parent:
12:5a33b5d39792
Child:
26:a63e73885b21

File content as of revision 22:bd98a782fba6:

#ifndef MBED_ISP__TARGET_TABLE__
#define MBED_ISP__TARGET_TABLE__



#define     NOT_FOUND   0

#define UUENCODE    0
#define BINARY      1


typedef struct  taget_param_st {
    char            *type_name;
    int             id;
    int             ram_size;
    int             flash_size;
    int             sector_size;
    int             write_type;
    unsigned int    ram_start_address;
}
target_param;

extern target_param    target_table[];

target_param *find_target_param( char *device_id_string );

#endif