We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 function); did you mean 'LCDTS_SPI_HANDLE'?
Where is the error?
Regards Sascha
The text was updated successfully, but these errors were encountered:
So,
at File lcdts_io_xpt2046_spi_hal.c
@line 491 replace:
__HAL_DMA_DISABLE(LCD_SPI_HANDLE.hdmatx);
with:
__HAL_DMA_DISABLE(LCDTS_SPI_HANDLE.hdmatx);
If use #define LCD_RGB24_BUFFSIZE @line 546 replace:
Thats all
Sorry, something went wrong.
Thanks for the comment, I fixed it.
No branches or pull requests
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 function); did you mean 'LCDTS_SPI_HANDLE'?
Where is the error?
Regards Sascha
The text was updated successfully, but these errors were encountered: