This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CODECOMPOSER: GUI Composer: Is it possible to link GUI value to a value via pointer

Part Number: CODECOMPOSER

Tool/software:

I want to do something like on target

typedef struct{

bool enable

} TEST_STRUCT;

TEST_STRUCT array[10]

TEST_STRUCT *array_ptr = &array[3]

On GUI

link a checkbox, for example, to array_ptr->enable.  

Is it possible?

On my first attempt to do so, I get an error:

Thanks!