cancel
Showing results for 
Search instead for 
Did you mean: 

Compile error in TouchGFXGeneratedHAL::blockCopy

scottSD
Senior III

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?

1 ACCEPTED SOLUTION

Accepted Solutions
scottSD
Senior III

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

View solution in original post

1 REPLY 1
scottSD
Senior III

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