Hi all
In __HAL_UART_SPI.c ,I find the defination following :
#if ((HAL_UART_SPI == 1) || defined HAL_SPI_MASTER)
#define PxDIR P1DIR
#define SPI_RDYOut P1_4
#define SPI_RDYOut_BIT BV(4)
#elif (HAL_UART_SPI == 2)
#define PxDIR P0DIR
#define SPI_RDYOut P0_5
#define SPI_RDYOut_BIT BV(5)
#endif
It mean that I can not define HAL_UART_SPI=2 and HAL_SPI_MASTER at the same time?
Thanks .
landao