|
我自己买来MSP430F6736做了一块板子,想向PC发送一段字符串在串口助手里面显示出来,可是毫无反应。请大家帮我看看我的程序哪里有问题,谢谢了~
#include
#include
unsigned char buffer[]={"I'm MSP430!\n"};
void delay(unsigned int n)
{
unsigned int i,j;
for(i=0;i
for(j=0;j<1000;j++);
}
void main(void)
{
unsigned int i;
WDTCTL = WDTPW+WDTHOLD; // 关闭看门狗
// 将P1.2 P1.3设置为串口功能
P1SEL |= BIT2 | BIT3;
P1DIR |= BIT2 | BIT3;
// 设置异步通信
UCA0CTL0=0x11; // 将UCSWRST位设置为1
UCA0CTL0=0x91; // 选择时钟CLK = SMCLK,系统时钟1048576Hz
UCA0BR0=9; // 设置波特率为115200
UCA0BR1=0;
UCA0MCTL=0x01; // 设置调整参数
UCA0CTLW0 &= ~UCSWRST; // 复位UCSWRST
UCA0IE |= UCTXIE;
while(1)
{
while (!(UCA0IFG & UCTXIFG)); // USCI_A0 TX buffer ready?
for(i=0;i
{
UCA0TXBUF=buffer[i];
delay(30);
}
}
}
|
|