一直努力摸索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条回答
数码小叶
2019-03-25 03:02
 精彩回答 2  元偷偷看……0人看过

一周热门 更多>

相关问题

    相关文章