Solved
How to disable touch controller?
Hello,
I use STM32F429 Discovery board, which has touch controller,
but in my project I don't need it, so I want to turn it off.
In BoardConfiguration.cpp I found this initialization:
STM32F4TouchController tc;
HAL& hal = touchgfx_generic_init<STM32F4HAL>(dma, display, tc, dispWidth, dispHeight,(uint16_t*) 0, 0, 0);And description of touchgfx_generic_init function says:
@param [in] tc Reference to the touch controller driver (or NoTouchController to disable touch input).How to turn Touch controller off?
Should I change "tc" in touchgfx_generic_init for NoTouchController or what?
Thank you,
Anton
