2010-01-26 02:37:51 +00:00
|
|
|
#ifndef CONVERTER_H
|
|
|
|
#define CONVERTER_H
|
|
|
|
|
2012-03-05 16:28:06 +00:00
|
|
|
#define CONVERTER_VERSION "v1.4"
|
2010-01-26 02:37:51 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int target_type;
|
|
|
|
char ihex_file[128];
|
|
|
|
}conf_opts_t;
|
|
|
|
|
|
|
|
enum target { UNDEFINED, VERSION, CONVERT };
|
|
|
|
|
|
|
|
#endif
|