dbdf9982a9
add missing header file. add ihx converter
14 lines
200 B
C
14 lines
200 B
C
#ifndef CONVERTER_H
|
|
#define CONVERTER_H
|
|
|
|
#define CONVERTER_VERSION "v1.3"
|
|
|
|
typedef struct {
|
|
int target_type;
|
|
char ihex_file[128];
|
|
}conf_opts_t;
|
|
|
|
enum target { UNDEFINED, VERSION, CONVERT };
|
|
|
|
#endif
|