Skip to main content
scottSD
Senior III
December 11, 2020
Solved

Compile error in TouchGFXGeneratedHAL::blockCopy

  • December 11, 2020
  • 1 reply
  • 769 views

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?

This topic has been closed for replies.
Best answer by scottSD

OK, I found my issue and it was my mistake.

1 reply

scottSD
scottSDAuthorBest answer
Senior III
December 11, 2020

OK, I found my issue and it was my mistake.