/* * @Author: your name * @Date: 2022-04-10 10:08:56 * @LastEditTime: 2022-04-16 14:47:16 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: \20220410-IntelligentPiggery\stm32\HARDWARE\LED\led.c */ #include "led.h" //��ʼ��PB5��PE5Ϊ�����.��ʹ���������ڵ�ʱ�� //LED IO��ʼ�� void LED_Init(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOA, ENABLE); //ʹ��PA,PD�˿�ʱ�� GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14; //LED0-->PA.8 �˿����� GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //������� GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO���ٶ�Ϊ50MHz GPIO_Init(GPIOB, &GPIO_InitStructure); //�����趨������ʼ��GPIOA.8 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15 | GPIO_Pin_11; GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_SetBits(GPIOB,GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 ); //PA.8 ����� }