⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fet430_uart02_19200.c

📁 msp430开发c语言例程
💻 C
字号:
//******************************************************************************
//   MSP-FET430P430 Demo - USART0 UART 19200 Ultra-low Echo ISR, 32kHz ACLK+ DCO
//
//  Description; Echo a received character, USART0 RX ISR at high-speed used 
//  with ultra-low power techniques. Normal operation in LPM3.  Use start-bit 
//  edge detect - URXSE - to automatically (re)enable DCO and trigger ISR. ISR
//  must make sure DCO clock source remains enabled for the UART to receive 
//  full character. 
//  Software needs to make sure a character has been completely TX'ed, or RX'ed
//  before entering LPM3, which disables DCO required for the USART baud rate 
//  generator. In the example, TX'ing is checked using the TXEPT bit directly. 
//  RX'ing is checked using the SSEL0 clock select bit as a flag. This is 
//  possible because UCLK0 = SMCLK when either both SSEL1 and SSEL0 or just 
//  SSEL1 = 1. In the example, when SSEL1 = SSEL0 = 1 there is no RX'ing, and 
//  LPM3 is allowed. When SSEL 1 = 1 and SSEL0 = 0 SMCLK is selected, but 
//  RX'ing is active and the DCO is required, thus LPM3 is not allowed.   
//  ACLK = 32768,  MCLK = SMCLK = UCLK0 = DCOCLK = 1048576Hz
//  Baud rate divider with 1048576hz= 1048576Hz/19200 ~ 55 (0036h)
//  //*An external 32kHz watch crystal on XIN XOUT is required for ACLK*//	  
//
//              
//                MSP430FG439
//             -----------------
//         /|\|              XIN|-  
//          | |                 | 32kHz 
//          --|RST          XOUT|-
//            |                 |
//            |             P2.4|-----------> 
//            |                 | 19200 - 8N1
//            |             P2.5|<-----------
//
//       
//  M. Buccini
//  Texas Instruments, Inc
//  June 2004
//  Built with IAR Embedded Workbench Version: 2.21B
//******************************************************************************

#include <msp430xG43x.h>

void main(void)
{
  unsigned i;
  WDTCTL = WDTPW + WDTHOLD;             // Stop WDT
  FLL_CTL0 |= XCAP18PF;                 // Configure load caps
  for (i = 0xFFFF; i > 0; i--);         // Delay for FLL to set        
  P2SEL |= 0x30;                        // P2.4,5 = USART0 TXD/RXD
  ME1 |= UTXE0 + URXE0;                 // Enabled USART0 TXD/RXD
  UCTL0 |= CHAR;                        // 8-bit character, SWRST = 1
  UTCTL0 |= SSEL1 + SSEL0 + URXSE;      // UCLK = SMCLK, start edge detect
  UBR00 = 0x36;                         // 19200 from 1Mhz
  UBR10 = 0x00;                         
  UMCTL0 = 0x00;                        // No modulation
  UCTL0 &= ~SWRST;                      // Initialize USART state machine
  IE1 |= URXIE0;                        // Enable USART0 RX interrupt
  
  for (;;)                             
  {
    while (!(UTCTL0 & TXEPT));          // Confirm no TXing before --> LPM3 
    _DINT();                            // Disable interrupts for flag test
    _NOP();
    if (!(UTCTL0 & SSEL0))
       _BIS_SR(LPM0_bits + GIE);        // RX'ing char, enter LPM0, int's active
    else
    _BIS_SR(LPM3_bits + GIE);           // Enter LPM3, int's active
  }
}

#pragma vector=UART0RX_VECTOR
__interrupt void usart0_rx (void)
{
  if ((IFG1 & URXIFG0))                 // Test URXIFG0
  {
    while (!(IFG1 & UTXIFG0));          // USART0 TX buffer ready?
    TXBUF0 = RXBUF0;                    // RXBUF0 to TXBUF0
    _BIC_SR_IRQ(LPM3_bits);             // Exit LPM3 after reti
    UTCTL0 |= SSEL0;                    // SSEL0 = 1, no RX activity
  }
  else                                  // Start edge
  {
    UTCTL0 &= ~URXSE;                   // Clear URXS signal
    UTCTL0 |= URXSE;                    // Re-enable edge detect
    _BIC_SR_IRQ(SCG1 + SCG0);           // DCO reamins on after reti
    UTCTL0 &= ~SSEL0;                   // SSEL0= 0, RX activity
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -