Compile error in TouchGFXGeneratedHAL::blockCopy
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-12-11 6:28 AM
I am attempting to use blockCopy to copy a block of memory. I have used it in the past, but with latest version of TouchGFX, for some reason I am now getting a compile error on the following generated function:
bool TouchGFXGeneratedHAL::blockCopy(void* RESTRICT dest, const void* RESTRICT src, uint32_t numBytes)
{
return HAL::blockCopy(dest, src, numBytes);
}
Below is the error I am getting on the line HAL:blockCopy(dest, src, numBytes);
../TouchGFX/target/generated/TouchGFXGeneratedHAL.cpp:85:15: error: 'blockCopy' is not a member of 'touchgfx::HAL'
Any ideas?
Solved! Go to Solution.
Labels:
- Labels:
-
TouchGFX
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-12-11 7:33 AM
OK, I found my issue and it was my mistake.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-12-11 7:33 AM
OK, I found my issue and it was my mistake.
