Search found 5 matches
- Sun Jan 03, 2021 11:22 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: DMA SPI
- Replies: 13
- Views: 8489
Re: DMA SPI
i want to use DMA for TX. But the TFT display not responding or waking up.
- Tue Dec 29, 2020 11:05 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: DMA SPI
- Replies: 13
- Views: 8489
Re: DMA SPI
Its working without DMA, but i want DMA to send large data TFT
- Tue Dec 29, 2020 10:44 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: DMA SPI
- Replies: 13
- Views: 8489
Re: DMA SPI
dummy read using, could not do DMA ! what might be the reason?
- Wed Dec 23, 2020 3:55 am
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: DMA SPI
- Replies: 13
- Views: 8489
Re: DMA SPI
EVE3-43A
- Tue Dec 15, 2020 10:41 pm
- Forum: EVE2 & EVE3 & EVE4 SPI TFT's
- Topic: DMA SPI
- Replies: 13
- Views: 8489
DMA SPI
Using EVE81.h library, i am doing code for TFT in stm32. The code works fine without DMA, if I add DMA, the does not wake up.. void HAL_SPI_WriteBuffer(uint8_t *Buffer, uint32_t Length) { HAL_SPI_Enable(); //volatile int result = HAL_SPI_Transmit(&hspi1, Buffer, Length, 1000); volatile int resul...