Hello,
The SPI components (SPIMaster_LDD and SPISlave_LDD) does not support Bidirectional mode of SPI. You can use these SPI component and SPI PDD macros (SPI_PDD_EnableBidirectionalMode and SPI_PDD_EnableOutputInBidirectionalMode) to configure and control the bidirectional mode of SPI. You can also freeze the generated code of the SPI component (open the context menu of the SPI component in the Components window and select Code Generation > Don't Write Generated Component Modules) and modify the generated SPI driver by using following PDD macros, see for example usage in initialization code:
SPI_PDD_EnableBidirectionalMode(SPI0_BASE_PTR, PDD_ENABLE);
SPI_PDD_EnableOutputInBidirectionalMode(SPI0_BASE_PTR, PDD_ENABLE);
Best Regards,
Marek Neuzil