2020-08-27 11:34 PM
I'm working on BOE varitronix LCD with HX8277B LCD Driver . I need to integrate this with stm32h743 controller and need to display image using touchGFX . I have written initialization code to the LCD and trying to display but nothing is working so what may be the issue?
Thank you
2020-08-27 11:51 PM
Hi,
Please explain something more about what you're doing and what isn't working, etc.
/Martin
2020-08-28 12:34 AM
2020-08-28 12:44 AM
Did you read the documentation on using SPI displays with TouchGFX? Since you're not using a TFT controller (We offer drivers for those through TouchGFX Generator) to send pixels to your display you have to do this manually since the method differes from display to display and configuration to configuration (SPI configuration, for instance).
Take a look at this article i wrote on SPI/FMC interfaces which is roughly the same: https://support.touchgfx.com/docs/development/touchgfx-hal-development/scenarios/scenarios-fmc
2020-08-28 01:04 AM
only for initialization we are using SPI . This is a parallel RGB interface LCD.
2020-08-28 01:08 AM
Okay, i thought maybe you weren't using the LTDC for some reason. How did you create the project? Because the LTDC driver for H7 should be generated for you (if you're using the TouchGFX Generator in CubeMX)
Can you display anything on the LCD outside of touchgfx?
/Martin
2020-08-28 01:24 AM
LTDC driver got generated as we are using touchGFX generator in cubeMX.
2020-08-28 01:24 AM
Ya we can display outside of touchGFX
2020-08-28 01:53 AM
"LTDC driver got generated as we are using touchGFX generator in cubeMX."
You have the source code then - Are you hitting the callback handlers in the LTDC driver when you debug? Do you know what to look for? If not make sure that LTDC global interrupts are enabled in CubeMX.
/Martin
2020-08-28 02:22 AM
ya i have enabled the LTDC global interrupts in cubeMX.