stm32为什么在设置引脚高低位的时候没有反应嘞?

2019-07-14 21:03发布

  1. <div class="blockcode"><blockquote> int main (void)
  2. {
  3. u16 i = 0;
  4. Delay_Init(72);       

  5. GPIOA_Init();
  6. for( i = 200; i > 0; i--)
  7. {
  8. Delay_ms(50);
  9. GPIO_SetBits (GPIOA, GPIO_Pin_3);
  10. Delay_ms(50);
  11. GPIO_ResetBits(GPIOA, GPIO_Pin_3);
  12. }
  13. }
复制代码
  1. void GPIOA_Init(void)
  2. {
  3.         GPIO_InitTypeDef GPIO_InitStruct;
  4.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO, ENABLE);       
  5.         GPIO_InitStruct.GPIO_Pin = GPIO_Pin_3;                                                                                                                                //PA.3
  6.         GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;                                                                                                                                               
  7.         GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
  8.         GPIO_Init(GPIOA,&GPIO_InitStruct);
  9. }
复制代码
如上面的代码所示,运行的时候用keil的仿真器测试了一下管教PA.3的状态,结果一直是低电平输出,没有出现预想的矩形波。好像置位的两句代码就没有反应。

0条回答

一周热门 更多>