使用基于Cortex-M3内核的STM32F103RCT6,设计一个Project工程。 试编写主函数main()的代码实现如下功能。 1 按KEY0键,使LED0和LED1两灯熄灭,KEY0接在PC5口。2 按KEY1键,使LED0和LED1两灯点亮,KEY1接在PA15口3 按WK_UP键,使LED0和LED1灯按半秒时间交替闪亮,WK_UP接在PA0口。
时间: 2023-06-06 16:06:12 浏览: 109
STM32F103RCT6
5星 · 资源好评率100%
很高兴为你提供帮助!以下是符合您要求的代码实现:
```
#include "stm32f10x.h"
#include "stm32f10x_gpio.h"
#include "stm32f10x_rcc.h"
#include "delay.h"
#define LED0_GPIO_CLK RCC_APB2Periph_GPIOC
#define LED0_GPIO_PORT GPIOC
#define LED0_GPIO_PIN GPIO_Pin_0
#define LED1_GPIO_CLK RCC_APB2Periph_GPIOC
#define LED1_GPIO_PORT GPIOC
#define LED1_GPIO_PIN GPIO_Pin_1
#define KEY0_GPIO_CLK RCC_APB2Periph_GPIOC
#define KEY0_GPIO_PORT GPIOC
#define KEY0_GPIO_PIN GPIO_Pin_5
#define KEY1_GPIO_CLK RCC_APB2Periph_GPIOA
#define KEY1_GPIO_PORT GPIOA
#define KEY1_GPIO_PIN GPIO_Pin_15
#define WK_UP_GPIO_CLK RCC_APB2Periph_GPIOA
#define WK_UP_GPIO_PORT GPIOA
#define WK_UP_GPIO_PIN GPIO_Pin_0
void GPIO_Configuration(void);
void EXTI_Configuration(void);
void NVIC_Configuration(void);
int main(void)
{
GPIO_Configuration();
EXTI_Configuration();
NVIC_Configuration();
while (1)
{
if(GPIO_ReadInputDataBit(KEY0_GPIO_PORT, KEY0_GPIO_PIN) == 0)
{
GPIO_ResetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
GPIO_ResetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
}
else if(GPIO_ReadInputDataBit(KEY1_GPIO_PORT, KEY1_GPIO_PIN) == 0)
{
GPIO_SetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
GPIO_SetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
}
delay_ms(10);
}
}
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(LED0_GPIO_CLK | LED1_GPIO_CLK | KEY0_GPIO_CLK | KEY1_GPIO_CLK | WK_UP_GPIO_CLK, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Pin = LED0_GPIO_PIN;
GPIO_Init(LED0_GPIO_PORT, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = LED1_GPIO_PIN;
GPIO_Init(LED1_GPIO_PORT, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Pin = KEY0_GPIO_PIN;
GPIO_Init(KEY0_GPIO_PORT, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = KEY1_GPIO_PIN;
GPIO_Init(KEY1_GPIO_PORT, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_InitStructure.GPIO_Pin = WK_UP_GPIO_PIN;
GPIO_Init(WK_UP_GPIO_PORT, &GPIO_InitStructure);
}
void EXTI_Configuration(void)
{
EXTI_InitTypeDef EXTI_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
GPIO_EXTILineConfig(GPIO_PortSourceGPIOA, GPIO_PinSource0);
EXTI_InitStructure.EXTI_Line = EXTI_Line0;
EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Rising_Falling;
EXTI_InitStructure.EXTI_LineCmd = ENABLE;
EXTI_Init(&EXTI_InitStructure);
}
void NVIC_Configuration(void)
{
NVIC_InitTypeDef NVIC_InitStructure;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);
}
void EXTI0_IRQHandler(void)
{
static int flag = 0;
EXTI_ClearITPendingBit(EXTI_Line0);
if(flag == 0)
{
GPIO_SetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
delay_ms(500);
GPIO_ResetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
GPIO_SetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
delay_ms(500);
GPIO_ResetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
flag = 1;
}
else
{
GPIO_SetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
delay_ms(500);
GPIO_ResetBits(LED1_GPIO_PORT, LED1_GPIO_PIN);
GPIO_SetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
delay_ms(500);
GPIO_ResetBits(LED0_GPIO_PORT, LED0_GPIO_PIN);
flag = 0;
}
}
```
阅读全文