Compile Error
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2024-07-04 1:30 AM
Greetings,
I just migrated the latest TouchGFX version (4.24.0) and now I am getting a compile error:
[build] ...../touchgfx_win/generated/simulator/src/mainBase.cpp:39:10: error: 'lcd' is not a member of 'HAL'; did you mean 'lcd'?
You have to change
HAL::lcd().setVectorFontRenderer(&vectorFontRendererImpl);
to
touchgfx::HAL::lcd().setVectorFontRenderer(&vectorFontRendererImpl);
In to get rid of the compile error. Any chances to fix this issue?
Labels:
- Labels:
-
Bug-report
-
TouchGFX
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2024-07-04 1:50 AM
FYI: I have a work-arround where I just copied the content into the upper layer which calls the function "
setupSimulator" and removed the file from our build.
