I have initialized the SPI and call the function where I am just triggering the spi transfer but I am not able to see any data in the logical analyser .though I am getting transfer success call back .
Controller used : nxp 5744 , DSPI3 in master mode
static uint16 u16SpiAnswer = 0u;
static uint16 u16BufToSend = 0xAA55;
Spi_SetupEB(SpiConf_SpiChannel_SpiCh_MasterUnit, (const Spi_DataType*) u16BufToSend,(Spi_DataType*) u16SpiAnswer,((uint16)1));
Spi_SyncTransmit(SpiConf_SpiSequence_MasterUnit);