/********************************************************************************************************
**函数信息 :SPIM_CSLow(SPI_TypeDef* SPIx)
**功能描述 :为选定的SPI 软件重置内部NSS 管脚
**输入参数 :SPI_TypeDef* SPIx,可选择SPI1,SPI2
**输出参数 :无
********************************************************************************************************/
void SPIM_CSLow(SPI_TypeDef* SPIx)
{
//Spi cs assign to this pin,select
if(SPIx == SPI1)
{
GPIO_ResetBits( GPIOA, GPIO_Pin_4 );
}
else
{
GPIO_ResetBits( GPIOB, GPIO_Pin_12 );
}
}
|