You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.0 KiB
52 lines
2.0 KiB
#include "led.h" |
|
|
|
void Motor_Init(void) |
|
{ |
|
GPIO_InitTypeDef GPIO_InitStructure; |
|
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO|RCC_APB2Periph_GPIOB, ENABLE); //使能PA,PD端口时钟 |
|
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE); |
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_15; //LED0-->PA.8 端口配置 |
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出 |
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO口速度为50MHz |
|
GPIO_Init(GPIOA, &GPIO_InitStructure); //根据设定参数初始化GPIOA.8 |
|
GPIO_SetBits(GPIOA,GPIO_Pin_12 | GPIO_Pin_15); //PA.8 输出高 |
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9; //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_SetBits(GPIOB,GPIO_Pin_8 | GPIO_Pin_9); //PA.8 输出高 |
|
} |
|
|
|
|
|
void Relay_Beep_Init(void) |
|
{ |
|
GPIO_InitTypeDef GPIO_InitStructure; |
|
|
|
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能PA,PD端口时钟 |
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_13; //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_SetBits(GPIOB,GPIO_Pin_12 | GPIO_Pin_13); //PA.8 输出高 |
|
} |
|
|
|
//初始化PB5和PE5为输出口.并使能这两个口的时钟 |
|
//LED IO初始化 |
|
void LED_Init(void) |
|
{ |
|
|
|
GPIO_InitTypeDef GPIO_InitStructure; |
|
|
|
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能PA,PD端口时钟 |
|
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7; //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_SetBits(GPIOB,GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7); //PA.8 输出高 |
|
|
|
} |
|
|
|
|