2867|4

940

帖子

0

TA的资源

纯净的硅(高级)

楼主
 

新手求助:官方Lauchpad示例中的中断按按键不起作用 [复制链接]

下载了官方的示例:http://processors.wiki.ti.com/index.php/MSP430_LaunchPad_Drive_LED
  1. //***************************************************************************************
  2. // MSP430 Blink LED / Start Stop Blinking with Button Demo - Software Toggle P1.0 & P1.6
  3. //
  4. // Description; Toggle P1.0 and P1.6 by xor'ing them inside of a software loop. To
  5. // start/stop blink, an interrupt in Port 1 will toggle the condition statement.
  6. // ACLK = n/a, MCLK = SMCLK = default DCO
  7. //
  8. // MSP430x2xx
  9. // -----------------
  10. // /|\| XIN|-
  11. // | | |
  12. // --|RST XOUT|-
  13. // | P1.6|-->LED
  14. // Button -->|P1.3 P1.0|-->LED
  15. //
  16. // Aldo Briano
  17. // Texas Instruments, Inc
  18. // June 2010
  19. // Built with Code Composer Studio v4
  20. //***************************************************************************************
  21. #include


  22. #define LED_0 BIT0
  23. #define LED_1 BIT6
  24. #define LED_OUT P1OUT
  25. #define LED_DIR P1DIR
  26. #define BUTTON BIT3

  27. unsigned int blink = 0;

  28. void main(void)
  29. {
  30. WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
  31. LED_DIR |= (LED_0 + LED_1); // Set P1.0 and P1.6 to output direction
  32. LED_OUT &= ~(LED_0 + LED_1); // Set the LEDs off
  33. P1IE |= BUTTON;

  34. __enable_interrupt();

  35. for (;;)
  36. {

  37. if(blink > 0)
  38. {
  39. P1OUT ^= (LED_0 + LED_1); // Toggle P1.0 and P1.6 using exclusive-OR

  40. __delay_cycles(100000); // SW Delay of 10000 cycles at 1Mhz

  41. }
  42. }

  43. }

  44. // Port 1 interrupt service routine
  45. #pragma vector=PORT1_VECTOR
  46. __interrupt void Port_1(void)
  47. {
  48. blink ^= 0x01;
  49. P1IFG &= ~BUTTON; // P1.3 IFG cleared
  50. LED_OUT &= ~(LED_0 + LED_1); // Clear the LEDs so they start in OFF state

  51. }
复制代码
发现按按键不起作用,用手指去触碰P1.3或者按键底部的PIN倒有灯闪烁

是按键坏了吗?还是什么情况?

最新回复

是 P1REN  详情 回复 发表于 2013-9-1 17:49

点评

Msp430奇怪现象 https://bbs.eeworld.com.cn/thread-367244-1-1.html 对于\"Msp430奇怪现象\",问题已解决!!! https://bbs.eeworld.com.cn/thread-367245-1-1.html  详情 回复 发表于 2013-9-1 15:23
 
点赞 关注

回复
举报

2781

帖子

419

TA的资源

五彩晶圆(中级)

沙发
 

回复 楼主wgsxsm 的帖子

Msp430奇怪现象
https://bbs.eeworld.com.cn/thread-367244-1-1.html
对于"Msp430奇怪现象",问题已解决!!!
https://bbs.eeworld.com.cn/thread-367245-1-1.html

点评

谢谢,原来是上下拉电阻的事情不过,我加了那一句就报错是怎么回事呢?  详情 回复 发表于 2013-9-1 17:43
 
个人签名
 

回复

940

帖子

0

TA的资源

纯净的硅(高级)

板凳
 
原帖由 qinkaiabc 于 2013-9-1 15:23 发表
Msp430奇怪现象
https://bbs.eeworld.com.cn/thread-367244-1-1.html
对于"Msp430奇怪现象",问题已解决!!!
https://bbs.eeworld.com.cn/thread-367245-1-1.html
谢谢,原来是上下拉电阻的事情不过,我加了那一句就报错是怎么回事呢?

点评

是 P1REN  详情 回复 发表于 2013-9-1 17:49
 
 
 

回复

2781

帖子

419

TA的资源

五彩晶圆(中级)

4
 

回复 板凳wgsxsm 的帖子

P1REN

点评

谢谢,成功了  详情 回复 发表于 2013-9-1 17:53
 
个人签名
 
 

回复

940

帖子

0

TA的资源

纯净的硅(高级)

5
 
原帖由 qinkaiabc 于 2013-9-1 17:49 发表
是  P1REN
谢谢,成功了
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表