Closed bkolb closed 12 years ago
GCC doesn't compile with this struct name
this was created from
typedef struct { int32_t v2; int32_t v3; } goertzel_state_t;
and resulted in
struct com_itemis_smartmeter_parse_emeter-structsstruct_1 { int32_t v2; int32_t v3; };
typedef com_itemis_smartmeter_parse_emeter-structsstruct_1 as goertzel_state_t;
solved.
removed all "-" (dash) in name.
GCC doesn't compile with this struct name
this was created from
typedef struct { int32_t v2; int32_t v3; } goertzel_state_t;
and resulted in
struct com_itemis_smartmeter_parse_emeter-structsstruct_1 { int32_t v2; int32_t v3; };
typedef com_itemis_smartmeter_parse_emeter-structsstruct_1 as goertzel_state_t;