Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
请问为神马rtgui的按键不能弹起来。。
发布于 2012-05-14 21:58:07 浏览:2460
订阅该版
点击按键之后,发现按键一直是按下状态,偶尔出现,很奇怪,要怎么解决呢。。
查看更多
2
个回答
默认排序
按发布时间排序
luoyuncong
2012-05-15
这家伙很懒,什么也没写!
你是用的stm32f10x里的touch.c吗,哪个驱动有点问题,某些情况下只发送了按下事件,没有发送弹起事件。你不妨用我这个touch_timeout替换原来的试试看。我以前的项目用800x480的屏时,就经常出现button不能弹起的情况,listbox会选中两个item等问题。虽然代码加了一些判断,但不好,不能实现窗口的拖,因为必须要等待弹起事件发送出去才能发送按下事件。如果你有更好的修改,望分享一份过来 [s:175] 。 ``` void touch_timeout(void* parameter) { static char flag = 0; static char press = 0; struct rtgui_event_mouse emouse; static struct _touch_previous { rt_uint32_t x; rt_uint32_t y; } touch_previous; if (GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0) != 0) { int tmer = RT_TICK_PER_SECOND/8 ; if(press == 0) return; EXTI_Enable(1); emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON; emouse.button = (RTGUI_MOUSE_BUTTON_LEFT |RTGUI_MOUSE_BUTTON_UP); /* use old value */ emouse.x = touch->x; emouse.y = touch->y; /* stop timer */ rt_timer_stop(touch->poll_timer); rt_kprintf("touch up: (%d, %d) ", emouse.x, emouse.y); flag = 0; if ((touch->calibrating == RT_TRUE) && (touch->calibration_func != RT_NULL)) { /* callback function */ touch->calibration_func(emouse.x, emouse.y); } rt_timer_control(touch->poll_timer , RT_TIMER_CTRL_SET_TIME , &tmer); /* send event to server */ if (touch->calibrating != RT_TRUE) rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse)); press = 0; } else { if(press == 1) return; if(flag == 0) { int tmer = RT_TICK_PER_SECOND/20 ; /* calculation */ rtgui_touch_calculate(); /* send mouse event */ emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON; emouse.parent.sender = RT_NULL; emouse.x = touch->x; emouse.y = touch->y; touch_previous.x = touch->x; touch_previous.y = touch->y; /* init mouse button */ emouse.button = (RTGUI_MOUSE_BUTTON_LEFT |RTGUI_MOUSE_BUTTON_DOWN); // rt_kprintf("touch down: (%d, %d) ", emouse.x, emouse.y); flag = 1; rt_timer_control(touch->poll_timer , RT_TIMER_CTRL_SET_TIME , &tmer); } else { /* calculation */ rtgui_touch_calculate(); #define previous_keep 30 //判断移动距离是否小于previous_keep,减少误动作. if( (touch_previous.x
x+previous_keep) && (touch_previous.x>touch->x-previous_keep) && (touch_previous.y
y+previous_keep) && (touch_previous.y>touch->y-previous_keep)) { return; } touch_previous.x = touch->x; touch_previous.y = touch->y; /* send mouse event */ emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON ; emouse.parent.sender = RT_NULL; emouse.x = touch->x; emouse.y = touch->y; /* init mouse button */ emouse.button = (RTGUI_MOUSE_BUTTON_RIGHT |RTGUI_MOUSE_BUTTON_DOWN); // rt_kprintf("touch motion: (%d, %d) ", emouse.x, emouse.y); } press = 1; if(touch->calibrating != RT_TRUE) rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse)); } } ```
撰写答案
登录
注册新账号
关注者
0
被浏览
2.5k
关于作者
scat-01
这家伙很懒,什么也没写!
提问
7
回答
4
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
ulog 日志 LOG_HEX 输出时间改为本地日期时间
2
在RT-Thread Studio中构建前执行python命令
3
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
4
CherryUSB开发笔记(一):FSDEV USB IP核的 HID Remote WakeUp (USB HID 远程唤醒) 2025-01-18 V1.1
5
RT-thread 缩写字典
热门标签
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
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
7
个答案
1
次被采纳
xusiwei1236
5
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
张世争
1
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
2
次点赞
Ghost_Girls
1
篇文章
6
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部