Simple SPI Display, no TFT, no Touch setup.
I am currently working on a custom STM32h743xx board with a small (128x64) monochrome OLED screen that uses the SSD1309 SPI driver for communication. This setup is very simple but vastly different from the setup of most examples.
From my understanding I have to provide touchgfx_generic_init with a touchgfx::NoTouch object to ignore touch. About the DMA interface, is that used to
transmit the internal buffer to the memory mapped display? In that case should I also use touchgfx::NoDMA since I am sending the memory buffer with SPI?
Lastly is there any good HAL interface that I can use as a base?
Should I just inherit from touchgfx::HAL and only support the flushFrameBuffer (since no tft controller & dma -> no interrupts)? If so, should I simply send via SPI the buffer which was supplied to HAL::setBufferStartAddress ?
