2020-12-11 06: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.
2020-12-11 07:33 AM
OK, I found my issue and it was my mistake.
2020-12-11 07:33 AM
OK, I found my issue and it was my mistake.