Question
snprintf on wildcard only once
Hi friends, I have this problem:
static uint16_t txt[10];
Unicode::snprintfFloat(txt,6U,"%0.2f",functionGetFloat());
Unicode::snprintf( TextIndicatorBuffer,TEXTINDICATOR_SIZE,"%s %s",TypedText(T_STATEPRODUCTMANAGERWC5).getText(),txt);
TextIndicator.setWildcard(TextIndicatorBuffer);
TextIndicator.invalidate();
this work only once, after calling this function the second once, nothing change... some hint? thanks..