Contiki 2.5
converter.h
1 #ifndef CONVERTER_H
2 #define CONVERTER_H
3 
4 #define CONVERTER_VERSION "v1.3"
5 
6 typedef struct {
7  int target_type;
8  char ihex_file[128];
9 }conf_opts_t;
10 
11 enum target { UNDEFINED, VERSION, CONVERT };
12 
13 #endif