原子哥,我在STM32F4探索者上,根据示例,实现了通过SPI1读写25LC640芯片(SPI_BaudRatePrescaler_256);
想进一步测试能否通过SPI2读写该芯片,但是遇到问题。
我SPI2的复用引脚为:
SCK:PB10;
MOSI:PC3;
MISO:PC2;
时钟配置为SPI_BaudRatePrescaler_256,应该没有问题,但是无法读写,示波器连SCK信号都抓不住,请帮忙分析下原因。
谢谢。
[mw_shl_code=c,true]void Init_25LC640(int channel)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE); //使能GPIOB时钟
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOG, ENABLE); //使能GPIOG时钟
//GPIOB6
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; //PB6
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT; //输出
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50MHz
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7; //PG7
GPIO_Init(GPIOG, &GPIO_InitStructure); //初始化
GPIO_SetBits(GPIOG,GPIO_Pin_7); //PG7输出1,防止NRF干扰SPI FLASH的通信
if(channel == 1)
{
SPI1_Init(); //初始化SPI
SPI1_SetSpeed(SPI_BaudRatePrescaler_128); //时钟需要小于2M(42/128);
}
else
{
SPI2_Init(); //初始化SPI
//SPI2_SetSpeed(SPI_BaudRatePrescaler_256); //时钟需要小于2M(42/128);
}
CS_25LC640 = 1; //初始状态需要将片选置为未选中,否则第一次写会失败
Clear_Write_Protect_25LC640(channel); //去保护;
}
void SPI2_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
SPI_InitTypeDef SPI_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE); //使能GPIOC时钟
//注意:GPIOB时钟在外部调用函数中使能
RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2, ENABLE); //使能SPI2时钟
//GPIOB13初始化设置
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
//PB13~15复用功能输出
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; //复用功能
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50MHz,速度太高通讯易受干扰;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化
//GPIOC2,3初始化设置
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2|GPIO_Pin_3; //PC2~3复用功能输出
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; //复用功能
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //50MHz,速度太高通讯易受干扰;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOC, &GPIO_InitStructure); //初始化
GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, GPIO_AF_SPI2); //PB13复用为 SPI2
GPIO_PinAFConfig(GPIOC, GPIO_PinSource2, GPIO_AF_SPI2); //PB14复用为 SPI2
GPIO_PinAFConfig(GPIOC, GPIO_PinSource3, GPIO_AF_SPI2); //PB15复用为 SPI2
//这里只针对SPI口初始化
RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI2, ENABLE); //复位SPI2
RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI2, DISABLE); //停止复位SPI2
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
//设置SPI单向或者双向的数据模式:SPI设置为双线双向全双工
SPI_InitStructure.SPI_Mode = SPI_Mode_Master; //设置SPI工作模式:设置为主SPI
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b; //设置SPI的数据大小:SPI发送接收8位帧结构
SPI_InitStructure.SPI_CPOL = SPI_CPOL_High; //串行同步时钟的空闲状态为高电平
SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge; //串行同步时钟的第二个跳变沿(上升或下降)数据被采样
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft; //NSS信号由硬件(NSS管脚)还是软件(使用SSI位)管理:内部NSS信号有SSI位控制
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_256;
//定义波特率预分频的值:波特率预分频值为256
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB; //指定数据传输从MSB位还是LSB位开始:数据传输从MSB位开始
SPI_InitStructure.SPI_CRCPolynomial = 7; //CRC值计算的多项式
SPI_Init(SPI2, &SPI_InitStructure); //根据SPI_InitStruct中指定的参数初始化外设SPIx寄存器
SPI_Cmd(SPI2, ENABLE); //使能SPI外设
SPI2_ReadWriteByte(0xff); //启动传输
} [/mw_shl_code]
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>