Hi
in source code, defined:
typedef struct {
uint8_T field1;
uint8_T field2;
} struct_type_a;
struct_type_a struct_var_a;
then I got a map file:
00009570 struct_var_a
00009572 varB
is that possible to get a map file like this? which list all the fields address of the struct.
00009570 struct_var_a.field1
00009571 struct_var_a.field2
00009572 varB
Thanks!