2020-08-30 10:20 PM
As we have Parallel RGB LCD and we tried integrating with STM32H743 controller and using touchGFX we are trying to display the image but nothing is displaying on the LCD so what may be the issue?
2020-08-31 08:16 AM
How did you create the project? What have you tried to do so far to find the issue? Hint: The TouchGFXHAL has LTDC interrupt handlers that will drive TouchGFX forward- are you hitting those? Does the display work outside of TouchGFX?
/Martin
2020-08-31 09:00 PM
Created project using STM32cubeIDE and also LTDC interrupt handlers has been taken care.
It works outside of TouchGFX.
2020-08-31 11:53 PM
when I run the code , its not entering into the hal.taskEntry();
2020-09-01 12:17 AM
Generated code dont have call to touchGFX process start. You need add to default task or create new task. I preffer add
void StartDefaultTask(void const * argument)
{
/* USER CODE BEGIN 5 */
MX_TouchGFX_Process();
/* Infinite loop */
for(;;)
{
osDelay(1);
}
/* USER CODE END 5 */
}
2020-09-01 04:47 AM
I'm able to display the LCD as i made a mistake in DCLK frequency.
But my blue button is displaying as red button .
2020-09-01 05:00 AM
If you make it blue, it will probably be shown as red. Seems like R, G and B are invterted in your configuration?
2020-09-01 05:36 AM
RGB configuration exactly where?
2020-09-01 06:26 AM
Maybe your LTDC GPIO configuration is reversed compared to what your screen is capable of. You could try making your box blue to see. And green.
2020-09-01 09:11 AM
Exactly you can have more mistakes: