I am writing a utility function in C language to read the entire LCD Display i.e. pixel by pixel. Each pixel color value is 32-bit color value RGB8888. Please see the following code:
//--------
void CaptureScreen(void)
{
#ifdef ENABLE_SCREEN_CAPTURE
INT32U w, h;
COLOR ColorINT32Val...