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.

CC2652RB: 请教simple_central、simple_peripheral应用

Expert 1395 points
Part Number: CC2652RB
Other Parts Discussed in Thread: SYSCONFIG, CC2652R, LAUNCHXL-CC26X2R1, , CC2640R2L, CC2640R2F

           请教simple_central、simple_peripheral实现主从通信。现在测试例程simple_peripheral,用Uart输出外接模块实现红外遥控转发;现在的问题是CC2652RB输出的数据怎么被其它模块识别?

1、用Putty可以通信,串口助手不能正常显示

2、修改了代码:static void SimplePeripheral_processCharValueChangeEvt(uint8_t paramId)
{
uint8_t newValue;
switch(paramId)
{
case SIMPLEPROFILE_CHAR1:
SimpleProfile_GetParameter(SIMPLEPROFILE_CHAR1, &newValue);
//Display_printf(dispHandle, SP_ROW_STATUS_1, 0, "Char 1: %d", (uint16_t)newValue);

但是用串口助手依然不能正常显示;红外转发模块Uart的设置为;波特率:115200  停止位:1  数据位:8  奇偶校验:无

现在该如何修改代码才能实现红外转发模块Uart的通信格式呢?