STM32H7 QSPI in normal SPI mode for interface external DAC
My only need is to use QSPI (dual mode bank1) as a simple/normal SPI to drive external DAC (AD5066). I should only use the Data phase, I don't need the Instruction, Address, Alt and Dummy phases of the QSPI.
I have to use:
QUADSPI_CLK---> DAC_CLK
QUADSPI_BK1_NCS---> DAC__CS
QUADSPI_BK1_I00/SO(MOSI)---> DAC_MISO
QUADSPI_BK1_I01/SI (MISO)---> DAC_MOSI ( no need for DAC because is only slave)
I would like to use only the Data phase of the QSPI to send the 4 Bytes for the ADC (command, channel, data bits ...)
It is possible to use the QSPI as a SPI normal with a ADC and not with a flash memory?
I've tried using the example QSPI/QSPI_ReadWrite_IT but I can't see anything coming out to the CLK and SI (MOSI). There are other examples not for memory?
