一直努力摸索UART通訊中。。。

2019-03-24 10:26发布

想請問一下,我在網路上看到這段example code , 大家都說可以執行,且可以做UART收發的動作,但是我的不管怎樣就是沒反應~


代碼如下:

  1. #include "msp430g2553.h"
  2.   
  3. #define TXLED BIT0
  4. #define RXLED BIT6
  5. #define TXD BIT2
  6. #define RXD BIT1
  7.   
  8. const char string[] = { "Hello World " };
  9. unsigned int i; //Counter
  10.   
  11. int main(void)
  12. {
  13.    WDTCTL = WDTPW + WDTHOLD; // Stop WDT
  14.    DCOCTL = 0; // Select lowest DCOx and MODx settings
  15.    BCSCTL1 = CALBC1_1MHZ; // Set DCO
  16.    DCOCTL = CALDCO_1MHZ;
  17.    P2DIR |= 0xFF; // All P2.x outputs
  18.    P2OUT &= 0x00; // All P2.x reset
  19.    P1SEL |= RXD + TXD ; // P1.1 = RXD, P1.2=TXD
  20.    P1SEL2 |= RXD + TXD ; // P1.1 = RXD, P1.2=TXD
  21.    P1DIR |= RXLED + TXLED;
  22.    P1OUT &= 0x00;
  23.    UCA0CTL1 |= UCSSEL_2; // SMCLK
  24.    UCA0BR0 = 0x08; // 1MHz 115200
  25.    UCA0BR1 = 0x00; // 1MHz 115200
  26.    UCA0MCTL = UCBRS2 + UCBRS0; // Modulation UCBRSx = 5
  27.    UCA0CTL1 &= ~UCSWRST; // **Initialize USCI state machine**
  28.    UC0IE |= UCA0RXIE; // Enable USCI_A0 RX interrupt
  29.    __bis_SR_register(CPUOFF + GIE); // Enter LPM0 w/ int until Byte RXed
  30.    while (1)
  31.    { }
  32. }
  33.   
  34. #pragma vector=USCIAB0TX_VECTOR
  35. __interrupt void USCI0TX_ISR(void)
  36. {
  37.    P1OUT |= TXLED;
  38.      UCA0TXBUF = string[i++]; // TX next character
  39.     if (i == sizeof string - 1) // TX over?
  40.        UC0IE &= ~UCA0TXIE; // Disable USCI_A0 TX interrupt
  41.     P1OUT &= ~TXLED; }
  42.    
  43. #pragma vector=USCIAB0RX_VECTOR
  44. __interrupt void USCI0RX_ISR(void)
  45. {
  46.    P1OUT |= RXLED;
  47.     if (UCA0RXBUF == 'a') // 'a' received?
  48.     {
  49.        i = 0;
  50.        UC0IE |= UCA0TXIE; // Enable USCI_A0 TX interrupt
  51.       UCA0TXBUF = string[i++];
  52.     }
  53.     P1OUT &= ~RXLED;
  54. }
复制代码原文網址在此 http://www.embeddedrelated.com/showarticle/420.php



感謝各位幫忙


此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
6条回答
armcu
1楼-- · 2019-03-24 20:07
 精彩回答 2  元偷偷看……
lcofjp
2楼-- · 2019-03-24 21:49
< :TI_MSP430_内容页_SA7 --> 你通过串口给单片机发送字符'a'了吗?
可以用仿真器仿真啊,遇到问题的最好解决方法就是仿真。
数码小叶
3楼-- · 2019-03-25 01:27
你都说别人可以了啊,那问题是,器件型号一样不?还有你说不行,现象是啥??
数码小叶
4楼-- · 2019-03-25 03:02
 精彩回答 2  元偷偷看……
tianshuihu
5楼-- · 2019-03-25 04:15
将P1.1 和 P1.2 短接,试试下面的代码,我试了LED会有交替闪烁

#include "msp430g2553.h"
  
#define TXLED BIT0
#define RXLED BIT6
#define TXD BIT2
#define RXD BIT1
  
const char string[] = { "Hello World " };
unsigned int i; //Counter
  
int main(void)
{
   WDTCTL = WDTPW + WDTHOLD; // Stop WDT
   DCOCTL = 0; // Select lowest DCOx and MODx settings
   BCSCTL1 = CALBC1_1MHZ; // Set DCO
   DCOCTL = CALDCO_1MHZ;
   P2DIR |= 0xFF; // All P2.x outputs
   P2OUT &= 0x00; // All P2.x reset
   P1SEL |= RXD + TXD ; // P1.1 = RXD, P1.2=TXD
   P1SEL2 |= RXD + TXD ; // P1.1 = RXD, P1.2=TXD
   P1DIR |= RXLED + TXLED;
   P1OUT &= 0x00;
   UCA0CTL1 |= UCSSEL_2; // SMCLK
   UCA0BR0 = 0x08; // 1MHz 115200
   UCA0BR1 = 0x00; // 1MHz 115200
   UCA0MCTL = UCBRS2 + UCBRS0; // Modulation UCBRSx = 5
   UCA0CTL1 &= ~UCSWRST; // **Initialize USCI state machine**
   UC0IE |= UCA0RXIE; // Enable USCI_A0 RX interrupt
  UCA0TXBUF ='a';
   __bis_SR_register(CPUOFF + GIE); // Enter LPM0 w/ int until Byte RXed
   while (1)
   { }
}
  
#pragma vector=USCIAB0TX_VECTOR
__interrupt void USCI0TX_ISR(void)
{
   P1OUT |= TXLED;
     UCA0TXBUF = string[i++]; // TX next character
    if (i == sizeof string - 1) // TX over?
       UC0IE &= ~UCA0TXIE; // Disable USCI_A0 TX interrupt
    __delay_cycles (100000);
    P1OUT &= ~TXLED; }
   
#pragma vector=USCIAB0RX_VECTOR
__interrupt void USCI0RX_ISR(void)
{
   P1OUT |= RXLED;
    if (UCA0RXBUF == 'a') // 'a' received?
    {
       i = 0;
       UC0IE |= UCA0TXIE; // Enable USCI_A0 TX interrupt
      UCA0TXBUF = string[i++];
    }
    __delay_cycles (100000);
    P1OUT &= ~RXLED;
}
tianshuihu
6楼-- · 2019-03-25 07:45
做了3点变化
1.在进入低功耗之前手动发送了‘a'
即   UCA0TXBUF ='a';

2.3.熄灭LED之前加入了延时
__delay_cycles (100000);

一周热门 更多>

相关问题

    相关文章