Hi everybody I would like to know if it is possible to force Keil to display a specific type for a data in debugging mode in the call Stack + Local?
I have a parameter type which is a struct but Keil display data as an unsigned char * instead of my struct (which is a typedef fix size array of char).
Thanks.
Have a nice Day
Aurelien
my struct (which is a typedef fix size array of char)
That description is self-contradictory. A typedef'ed array is not a struct.
"That description is self-contradictory. A typedef'ed array is not a struct."
Unless it looks something like below and is both a struct and a fix-sized array of char:
struct { char data[10]; };
HI, thanks for your response, I write my message quickly, my data is :
typedef unsigned char MAC_48[6];
"I have a parameter type which is a struct but Keil display data as an unsigned char *"
So exactly why should Keil _not_ show your data as unsigned char*?
View all questions in Keil forum