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.

SimpliciTI UART

Other Parts Discussed in Thread: SIMPLICITI

使用官网下载的SimpliciTI-IAR-1.1.1和DN117 -- SimpliciTI-compatible UART Driver相关例程,按照SimpliciTI UART driver.pdf配置。

问题:串口发送不能检测到波形,而packet sniffer能够连续抓到无线信号。(无线信号发送之后紧接着串口发送)

所作改动如下:

 1.  在main_linkTo和main_linkListen中添加#include "uart_intfc.h"。

 2.  在BSP_Init()之后添加  uart_intfc_init();

   3. 通过 rx_receive(&rxByte, 16)串口接收数据,调用SMPL_Send(sLinkID1, msg, sizeof(msg)),紧接着串口发送tx_send("\r\nMessage sent...",sizeof("\r\nMessage sent..."))。