MSP-EXP430G2 LacunchPad实验例程录像第10个UART_KeyBoard实验,按照实验视频进行设置,但没有反应。上位机似乎设置都可以,下位机无从下手调试,求教。谢了。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
MSP-EXP430G2 LacunchPad实验例程录像第10个UART_KeyBoard实验,按照实验视频进行设置,但没有反应。上位机似乎设置都可以,下位机无从下手调试,求教。谢了。
主程序如下:
* main.c
#include "MSP430G2553.h"
#include "UART_Event.h"
#include "UART_FIFO.h"
#include "UART_Global.h"
#include "UART_init.h"
void main(void) {
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
USCI_A0_init();
_bis_SR_register(LPM3_bits) ;
while(1){
}
}
src文件夹里还有Event.c等几个文件,太长,应该是中国TI官方的教学例程。
另,430ware能给个链接吗?我一直在找相关的例程。 谢了。