这几个代码
void LCD_L0_SetPixelIndex(int x, int y, int PixelIndex)
{
LCD_Fast_DrawPoint(x,y,PixelIndex);//画点
}
/*********************************************************************
*
* LCD_L0_GetPixelIndex
*
* Purpose:
* Returns the index of the given pixel. The upper layers
* calling this routine make sure that the coordinates are in range, so
* that no check on the parameters needs to be performed.
*/
unsigned int LCD_L0_GetPixelIndex(int x, int y)
{
return LCD_ReadPoint(x,y);//读点
}