led.c 430 B

12345678910111213141516
  1. #include "led.h"
  2. void LED_Init(void)
  3. {
  4. GPIO_InitTypeDef GPIO_InitStructure;
  5. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能端口时钟
  6. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1; // 端口配置
  7. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
  8. GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO口速度为50MHz
  9. GPIO_Init(GPIOB, &GPIO_InitStructure); //根据设定参数初始化GPIOC13
  10. }