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