stm32_hal_graphics_display_drivers icon indicating copy to clipboard operation
stm32_hal_graphics_display_drivers copied to clipboard

STM32 graphics LCD and Touchscreen drivers (LCD: st7735, st7781, ili9325, ili9328, ili9341, ili9488, Touch: analog resistive, xpt2046, stmpe811)

Results 7 stm32_hal_graphics_display_drivers issues
Sort by recently updated
recently updated
newest added
trafficstars

Based on the ILI9486 datasheet, the Column Address Set (2Ah) and Page Address Set (2Bh) parameters are to be transferred in 8 bit mode. But the code uses 16 bit...

File: ili9486.c The parameters for some of the commands must be transferred in 8 bit mode, even though the hardware support 16bit mode. These commands include: - ILI9486_CASET (0x2A) -...

File: ili9486.c Function: `void ili9486_Scroll(int16_t Scroll, uint16_t TopFix, uint16_t BottonFix)` Since the `static uint16_t scrparam[4]` array is zero initialized, the line `Scroll = (0 - Scroll) % scrparam[2];` will generate...

Hey Roberto, Thanks for such a detailed library for TFT lcd's combination with STM32. I am fairly new at programming in embedded and am trying to use this repository's lcd_io_hal_spi...

Hello, I have configured the driver for an ILI9488 display and SPI. However, when I turn on LCD_DMA_TX I get the error: /Core/Src/Lcd/lcdts_io_xpt2046_spi_hal.c:491:23: error: 'LCD_SPI_HANDLE' undeclared (first use in this...

I am wondering if you might be willing to lend a hand with something I am working on. I know diddly about the STM32's and I am wanting to provide...

Changes necessary to make the DIYables 3.5 TFT LCD Color Touch Screen Shield work when connected to a NUCLEO-F103RB system. It has an 8-bit parallel interface using the GPIO driver....