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.
I create a ti-widget-label, and linked the "label" to my program. When running, it continues to show "Label Text" instead of the string from my binary.
In my program, I declare the string with:
const char version[]="0.2";
I then use "version" in the link field for the label in the widget. But the "Label Text" does not change.
What is the correct way for doing this, or am I running into some other issue?
Thanks!
Hi Mark,
I assume you are using v2 for this one also. I'll need to try this out myself. What device are you working with?
Thanks
ki
This worked fine for me. Make sure the binding is correct and that the string is in scope.
I think I discovered my issue...the string was initially stored in LSRAM. When I moved it to GSRAM, it worked as expected. Thanks!