Question
The debugger shows me variable differently from as i declared
I declare this two variable globally
uint8_t data_rcv_flg[1] = { 0 }; /* To avoid reuse of data */
uint8_t run[1] = { 0 }; I use this variable here:
MODEM_ConfigTypeDef modem_cfg;
modem_cfg.buff = data;
modem_cfg.rcv_flag = data_rcv_flg;
PROTOCOL_ConfigTypeDef protocol_cfg;
protocol_cfg.run = run;where in the typedef are declared as uint8_t *.
The variables are exactly the same but the debugger show me this:
I can't understand why this behaviour.
Can someone explain me?