根据楼主的ID,以及楼主经常发些思考问题的贴子,所以楼主应该是爱学习爱思考的同学。
但为什么这次不多认真思考一下呢? 看驱动程序
void SPI_I2S_SendData(SPI_TypeDef* SPIx, uint16_t Data)
{
/* Write in the DR register the data to be sent */
SPIx->DR = Data;
}
uint16_t SPI_I2S_ReceiveData(SPI_TypeDef* SPIx)
{
/* Return the data in the DR register */
return SPIx->DR;
}
|