1577|0

1140

帖子

0

TA的资源

纯净的硅(初级)

楼主
 

msp430g2553与串口通信的驱动程序 [复制链接]

#include "uart.h"
#include
#include "typedef.h"

rece_data uart_buf; //串口缓冲区

void init_uart_buf(void)
{
    uart_buf.head = 0;
    uart_buf.tail = uart_buf.head;
}

//获取串口数据
u8 get_uart_data(u8* data)
{
    if(uart_buf.tail == uart_buf.head)
    {
        return 0;
    }
    *data = uart_buf.buf[uart_buf.head];
    uart_buf.head = (uart_buf.head + 1) % BUF_SIZE;
    return 1;
}

//保存串口数据
void save_uart_data(u8 data)
{
    uart_buf.buf[uart_buf.tail] = data;
    uart_buf.tail = (uart_buf.tail + 1) % BUF_SIZE;
}

//串口初始化
void uart_Init(void)
{
    WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT
    BCSCTL1 = CALBC1_1MHZ;                    // Set DCO
    DCOCTL = CALDCO_1MHZ;                                                                                                                                                                                                            
    P1SEL = BIT1 + BIT2 ;                     // P1.1 = RXD, P1.2=TXD
    P1SEL2 = BIT1 + BIT2 ;                     // P1.1 = RXD, P1.2=TXD
   
    UCA0CTL1 |= UCSSEL_2;                     // SMCLK
    UCA0BR0 = 104;                            // 1MHz 9600
    UCA0BR1 = 0;                              // 1MHz 9600
    UCA0MCTL = UCBRS0;                        // Modulation UCBRSx = 1
    UCA0CTL1 &= ~UCSWRST;                     // **Initialize USCI state machine**
    IE2 |= UCA0RXIE;                          // Enable USCI_A0 RX interrupt
    _EINT();                                   //Enable interrupt
    init_uart_buf();
}

//发送数据
//发送字符
void uart_send_ch(u8 ch)
{
  
    while(!(IFG2& UCA0TXIFG)); //查询发送是否结束
    UCA0TXBUF = ch;
    IFG2&=~UCA0TXIFG; //清除发送一标志位
}

//发送字符串
void uart_send_str(char *str)
{
      for( ; *str ; )
      {
          uart_send_ch((u8)*str);
          str++;
      }
}

//  Echo back RXed character, confirm TX buffer is ready first
#pragma vector=USCIAB0RX_VECTOR
__interrupt void USCI0RX_ISR(void)
{
    u8 data;
    while (!(IFG2&UCA0TXIFG));                // USCI_A0 TX buffer ready?
//   UCA0TXBUF = UCA0RXBUF;                    // TX -> RXed character
    data = UCA0RXBUF;
    save_uart_data(data);                     //保存数据
}


 
点赞 关注

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

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

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

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

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