应该没问题的。LZ确定初始化正确吗? 如下面这样:
// PB10 as Output AF - SPI2_CLK
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_25MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOB, &GPIO_InitStructure);
// configure AFIO
GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, 0x05);//SPI2 AF: AF05
|