Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
gpio中断
AB32VG1开发板不支持IO中断吗?
发布于 2021-07-31 15:47:48 浏览:797
订阅该版
key.h文件内容 ```c #ifndef APPLICATIONS_KEY_H_ #define APPLICATIONS_KEY_H_ #include
#include "board.h" typedef struct Key_s{ uint8_t S2; uint8_t S3; } Key_t; #define DEBUG 1 void Key_Init(void); int Read_S2(void); int Read_S3(void); #endif /* APPLICATIONS_KEY_H_ */ ``` key.c文件内容: ```c #include"key.h" #include"led.h" Key_t Key; void Key_Init(void){ Key.S3= rt_pin_get("PF.0"); Key.S2 = rt_pin_get("PF.1"); // 上拉输入 rt_pin_mode(Key.S2, PIN_MODE_INPUT_PULLUP ); rt_pin_mode(Key.S3, PIN_MODE_INPUT_PULLUP ); } int Read_S2(void){ return rt_pin_read(Key.S2); } int Read_S3(void){ return rt_pin_read(Key.S3); } void S2_Interrput(void *args){ rt_kprintf("S2 OK"); Blue(1); } void S3_Interrput(void *args){ rt_kprintf("S3 OK"); Green(1); } // GPIO中断初始化 void Key_Interrput_Init(void){ /* 绑定中断,下降沿模式,回调函数名为S2_Interrput */ rt_pin_attach_irq(Key.S2, PIN_IRQ_MODE_FALLING, S2_Interrput, RT_NULL); /* 使能中断 */ rt_pin_irq_enable(Key.S2, PIN_IRQ_ENABLE); /* 绑定中断,下降沿模式,回调函数名为S3_Interrput */ rt_pin_attach_irq(Key.S3, PIN_IRQ_MODE_FALLING, S3_Interrput, RT_NULL); /* 使能中断 */ rt_pin_irq_enable(Key.S3, PIN_IRQ_ENABLE); } // 测试 static struct rt_thread key_thread; //创建一个静态线程控制块 ALIGN(RT_ALIGN_SIZE) // 线程栈字节对齐 static uint8_t key_thread_stack[512]; static void key_thread_entry(void *parameter); // 线程函数 static void key_thread_entry(void *parameter){ Key_Init(); led_init(); Red(1); Key_Interrput_Init(); while(1){ // if (Read_S2()==PIN_LOW) { // Blue(1); // } // if (Read_S3()==PIN_LOW) { // Green(1); // } rt_thread_mdelay(100); } } static int Key_Thread_Init(void){ rt_err_t status = rt_thread_init(&key_thread, "key_thread", key_thread_entry, RT_NULL, key_thread_stack, sizeof(key_thread_stack), 10, 10); RT_ASSERT(status != RT_ERROR); rt_thread_startup(&key_thread); return 0; } INIT_APP_EXPORT(Key_Thread_Init); // 初始化线程 ``` led.h文件内容: ``` #ifndef APPLICATIONS_LED_H_ #define APPLICATIONS_LED_H_ #include
#include "board.h" #define ON PIN_LOW #define OFF PIN_HIGH #define LED_G "PE.4" #define LED_B "PA.1" #define LED_R "PE.1" #define G_PIN rt_pin_get(LED_G) #define B_PIN rt_pin_get(LED_B) #define R_PIN rt_pin_get(LED_R) typedef struct led_s { uint8_t R; uint8_t G; uint8_t B; }led_t; void led_init(void); void Red(rt_bool_t on); void Green(rt_bool_t on); void Blue(rt_bool_t on); int Thread_RGB(void); #endif /* APPLICATIONS_LED_H_ */ ``` led.c文件内容: ``` #include"led.h" led_t Led; void led_init(void) { Led.R = rt_pin_get("PE.1"); Led.G = rt_pin_get("PE.4"); Led.B = rt_pin_get("PA.1"); // 设置引脚为输出方式 rt_pin_mode(Led.R, PIN_MODE_OUTPUT); rt_pin_mode(Led.G, PIN_MODE_OUTPUT); rt_pin_mode(Led.B, PIN_MODE_OUTPUT); } void Red(rt_bool_t on) { rt_pin_write(Led.B,PIN_HIGH); rt_pin_write(Led.G,PIN_HIGH); if(on) { rt_pin_write(Led.R,PIN_LOW); } else { rt_pin_write(Led.R,PIN_HIGH); } } void Green(rt_bool_t on) { rt_pin_write(Led.R,PIN_HIGH); rt_pin_write(Led.B,PIN_HIGH); if(on) { rt_pin_write(Led.G,PIN_LOW); } else { rt_pin_write(Led.G,PIN_HIGH); } } void Blue(rt_bool_t on) { rt_pin_write(Led.R,PIN_HIGH); rt_pin_write(Led.G,PIN_HIGH); if(on) { rt_pin_write(Led.B,PIN_LOW); } else { rt_pin_write(Led.B,PIN_HIGH); } } static void rgb_thread_entry(void *p) { led_init(); while (1) { Red(1); rt_thread_mdelay(1000); Green(1); rt_thread_mdelay(1000); Blue(1); rt_thread_mdelay(1000); } } int Thread_RGB(void) { rt_thread_t led_thread = RT_NULL; led_thread = rt_thread_create("led",rgb_thread_entry,RT_NULL,512,10,10); if(led_thread == RT_NULL) { rt_kprintf("Thread_RGB creat fail"); return RT_ERROR; } rt_thread_startup(led_thread); } //INIT_APP_EXPORT(Thread_RGB); ``` 经过测试,发现按键绑定中断,下降沿模式,没有起作用,不会调用中断回调函数,而当我把key.c里while(1)的按键扫描函数注释放开,使用按键扫描方式读IO状态,按键就能控制LED灯切换
查看更多
1
个回答
默认排序
按发布时间排序
aozima
2021-07-31
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
同类问题,建议在原来基础上补充,或在后面更新回复! https://club.rt-thread.org/ask/question/432245.html
撰写答案
登录
注册新账号
关注者
0
被浏览
797
关于作者
xzx
这家伙很懒,什么也没写!
提问
4
回答
2
被采纳
0
关注TA
发私信
相关问题
1
rt_pin_attach_irq 使能gpio中断后,立马进入中断函数?
2
gpio上升和下降边沿都触发中断问题
3
RT-Thread系统休眠唤醒之后线程活动异常
4
RTThread的引脚中断 可以在代码里关闭和开启吗
5
RK3568裸机例程测试GPIO中断、GPIO分组中断失败
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
15
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部