你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。
chrome
firefox
safari
ie8及以上
ST
意法半导体官网
STM32
中文官网
ST
全球论坛
登录/注册
首页
技术问答
话题
资源
创客秀
视频
标签
积分商城
每日签到
关于仿真键盘的问题
[复制链接]
snowywind
提问时间:2009-7-24 13:59 /
我用STM32在调试键盘的时候,发现单步执行程序,键盘能检测到,而全速运行,则无法检测到键盘被按下,请问这是什么原因呢?逻辑应该不会有问题,因为单步执行程序是能够检测到键盘的.请大家帮帮忙,谢谢.注:调试的是4*4键盘矩阵,四个I/O配置成推挽输出,四个I/O配置成下拉输入.
赞
0
收藏
0
评论
1
分享
发布时间:2009-7-24 13:59
举报
请先
登录
后回复
1个回答
snowywind
回答时间:2009-7-29 19:51:53
a0a.1 0b0c
回复:关于仿真键盘的问题
额~没人知道是为什么吗?
程序是这样的:
端口配置:
//Key pin
//x out
GPIO_InitStructure.GPIO_Pin = PIN_KEYX1 | PIN_KEYX2 | PIN_KEYX3 | PIN_KEYX4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORT, &GPIO_InitStructure);
//y in
//GPIO_InitStructure.GPIO_Pin = PIN_KEYY1 | PIN_KEYY2 | PIN_KEYY3 | PIN_KEYY4;//s//此句有问题
GPIO_InitStructure.GPIO_Pin = PIN_KEYY2 | PIN_KEYY3 | PIN_KEYY4;//s//
//s//GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
//s//GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORT, &GPIO_InitStructure);
//y in
GPIO_InitStructure.GPIO_Pin = PIN_KEYY1;
//s//GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
//s//GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORTB, &GPIO_InitStructure);
利用中断检测键盘
<span style="color: #800000">void SysTickHandler(void)
{
if(SysTick_key_scan_count
赞
0
评论
回复
支持
反对
所属标签
相似问题
关于
意法半导体
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
意法半导体官网
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
官方最新发布
STM32Cube扩展软件包
意法半导体边缘AI套件
ST - 理想汽车豪华SUV案例
ST意法半导体智能家居案例
STM32 ARM Cortex 32位微控制器
关注我们
微信公众号
手机版
快速回复
返回顶部
返回列表
回复:关于仿真键盘的问题
程序是这样的:
端口配置:
//Key pin
//x out
GPIO_InitStructure.GPIO_Pin = PIN_KEYX1 | PIN_KEYX2 | PIN_KEYX3 | PIN_KEYX4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORT, &GPIO_InitStructure);
//y in
//GPIO_InitStructure.GPIO_Pin = PIN_KEYY1 | PIN_KEYY2 | PIN_KEYY3 | PIN_KEYY4;//s//此句有问题
GPIO_InitStructure.GPIO_Pin = PIN_KEYY2 | PIN_KEYY3 | PIN_KEYY4;//s//
//s//GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
//s//GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORT, &GPIO_InitStructure);
//y in
GPIO_InitStructure.GPIO_Pin = PIN_KEYY1;
//s//GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
//s//GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(KEY_PORTB, &GPIO_InitStructure);
利用中断检测键盘
<span style="color: #800000">void SysTickHandler(void)
{
if(SysTick_key_scan_count