spi clock不可用stm32f0

时间:2015-06-30 09:09:06

标签: stm32 spi

我在stm32f051r8上配置SPI时遇到问题。 实际上,我已经编写了孔初始化代码,但是我无法看到带有示波器的时钟...... 我只是尝试将PB13配置为备用功能作为时钟,但它不起作用..

你能帮帮我吗? 非常感谢

void spi_conf()
{

GPIO_InitTypeDef    GPIO_InitStructure;
SPI_InitTypeDef   SPI_InitStructure;

/* Enable SPI clock, SPI1 */
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB, ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2,ENABLE);



 /* SPI SCK, MOSI, MISO pin configuration */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_15 | GPIO_Pin_14;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_Level_1; // 10 MHz
GPIO_Init(GPIOB, &GPIO_InitStructure);

// Configure CS pin as output floating
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOB, &GPIO_InitStructure);

GPIO_PinAFConfig(GPIOB, GPIO_PinSource13, GPIO_AF_0); // SPI1 SCK
GPIO_PinAFConfig(GPIOB, GPIO_PinSource15, GPIO_AF_0); // SPI1 MOSI
GPIO_PinAFConfig(GPIOB, GPIO_PinSource14, GPIO_AF_0); // SPI1 MISO

/* SPI configuration -------------------------------------------------------     */
SPI_I2S_DeInit(SPI2);
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_4;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;

SPI_Init(SPI2, &SPI_InitStructure);
SPI_SSOutputCmd(SPI2, ENABLE);
SPI_Cmd(SPI2, ENABLE);
}

int main(void)
{
spi_conf();

while(1)
{
}
}

2 个答案:

答案 0 :(得分:1)

SCK引脚仅在通过SPI传输数据时计时。由于您的代码不会传输任何数据,因此示波器上不会显示任何数据。

如果您想在电路板上测试SPI,请考虑添加以下内容:

SPI_I2S_SendData(SPI2, 0xA5);
delay_ms(100);

到最后的循环。现在你应该看到一些数据定期传输。

答案 1 :(得分:-1)

RCC-> APB2ENR | = RCC_APB2ENR_SPI1EN;

在初始化SPI之前,将此代码放在上面。它将启动您的SPI时钟。