新手求助:官方Lauchpad示例中的中断按按键不起作用

2019-03-24 12:16发布

下载了官方的示例: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倒有灯闪烁

是按键坏了吗?还是什么情况? 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
qinkaiabc
1楼-- · 2019-03-24 14:43
Msp430奇怪现象
http://bbs.eeworld.com.cn/thread-367244-1-1.html
对于"Msp430奇怪现象",问题已解决!!!
http://bbs.eeworld.com.cn/thread-367245-1-1.html
wgsxsm
2楼-- · 2019-03-24 18:58
 精彩回答 2  元偷偷看……
qinkaiabc
3楼-- · 2019-03-25 00:41
P1REN
wgsxsm
4楼-- · 2019-03-25 01:43
原帖由 qinkaiabc 于 2013-9-1 17:49 发表
是  P1REN
谢谢,成功了

一周热门 更多>

相关问题

    相关文章