1. 程式人生 > >STM32之GPIO推輓輸出例程

STM32之GPIO推輓輸出例程

/* GPIO配置 */
void GPIO_config()
{
    GPIO_InitTypeDef GPIO_InitStructure;
 

    /* 使能GPIOC時鐘 */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
 
    /* 設定GPIOC暫存器為預設引數 */
    GPIO_DeInit(GPIOC);
 
    /* 設定GPIOC為推輓輸出 */
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
    /* 設定13引腳 */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
    /* 設定輸出速度為50MHz */
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    /* 初始化GPIOC_13 */
    GPIO_Init(GPIOC, &GPIO_InitStructure);  
}

/* 延時函式 */

void delay_ms(uint16_t time)
{    
    uint16_t i = 0; 

    while(time--)
    {
        i = 12000;
        while(i--);    
    }
}

int main(void)
{
    /* GPIO配置 */
    GPIO_config();
 

    while(1)
    {

        /* 將GPIOC_13拉高 */
       GPIO_SetBits(GPIOC,GPIO_Pin_13);
  

       /* 延時200ms */
       delay_ms(200);
  

       /* 將GPIOC_13拉低 */
       GPIO_ResetBits(GPIOC, GPIO_Pin_13);
  

       /* 延時200ms */
       delay_ms(200);
 }

}

注意:system_stm32f10x.c中已經配置了時鐘,所以這裡沒有進行配置也可以執行