STM32新手求教

2019-07-14 20:38发布

void Delay(__IO uint8_t nCount);

void Delay(__IO uint8_t nCount)
{
  while(nCount--);
}

int main(void)
{

  GPIO_InitTypeDef  GPIO_InitStructure;
  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 ;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(GPIOB, &GPIO_InitStructure);
       
  while(1){
                GPIO_SetBits(GPIOB,GPIO_Pin_4);
                Delay(0xFF);
                GPIO_ResetBits(GPIOB,GPIO_Pin_4);
                Delay(0xFF);
       
        }


这样设置IO口并没有高低电平变化啊?

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。