User Activity

The screen tearing issue is as below. It looks always appear in the right area:​The screen is FMC16 bit parallel port, and the parameter is as below:And the screen has TE signal, the TE Interrupt function is an below: void TouchGFX_TickHandler(uin...
The size of "heap" in my project up to 70+KB in RAM.What are the factors that can affect its size?void touchgfx_init() { Bitmap::registerBitmapDatabase(BitmapDatabase::getInstance(), BitmapDatabase::getInstanceSize()); TypedText::registerTexts(&t...
seasoningText.setWideTextAction(touchgfx::WIDE_TEXT_CHARWRAP_DOUBLE_ELLIPSIS); seasoningText.setLinespacing(10); seasoningText.setIndentation(5); seasoningText.resizeHeightToCurrentText(); // When I comment out this line, I can see the newline conten...
Often I call the C function from the hardware in Model::tick() function. But how can I call the function of Model outside.If I add a member variable to get the Instance(this) of Model, is there any risk? I mean if Model writed by Singleton mode.
I see the office usage as follows//read the binary font from a file FILE* font = fopen("generated/fonts/bin/Font_verdana_20_4bpp.bin", "rb"); if (font) { //read data from the file fread(fontdata, 1, 10000, font); fclose(font); //initialize Bi...