Tool/software:
I have the following problem:
I use CLA code for some control purpose. To check whether its working, I implemented some integer (uint32_t) union variable, which I would like to edit during CLA runtime.
Problem: In the debugger window, I only get the lower 16 bit of this variable. If I manipulate this variable, the higher 16 bit will be overwritten. This is crucial, especially when using union vaiables.
I already tried to change the type in the "Expressions" window, but there, only a typcast seems possible. Is there a way to edit 32-bit union variables used in the CLA without pausing the CLA?
Thanks in Advance