Hi,
I'm using sensor controller as UART Emulator and integrated it in my project based on BLE Peripheral example. I want to know how to send TX break using UART Emulator. Help me on this.
Regards,
Madhusudhan
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.
Hi,
I'm using sensor controller as UART Emulator and integrated it in my project based on BLE Peripheral example. I want to know how to send TX break using UART Emulator. Help me on this.
Regards,
Madhusudhan
Hi Madhusaudhan,
In the CCS code generated by the SCS example, scifUartTxPutChar is used to transmit a single character. The value for a carriage return is 13/0x0D/'\r' and for a new line it is 10/0x0A/'\n' if that is what you are attempting to accomplish. Also, only one UART hardware peripheral is being used in the BLE simple peripheral examples, therefore one more remains for you to use if you'd like to avoid the SCS UART emulator. Here is a link to the SCS User's Guide.
Regards,
Ryan
Hi Ryan,
I have to use 3 UART's for my project, so using sensor controller as UART emulator. I want to transmit data as break, previously with my si labs chip I achieved it by sending data (0x1UL << 13). I want to know if TI has any api for sending break or should I be sending this data as normal bytes.
Regards,
Madhusudhan
There is no API available for this transmit data break, you should send it as two separate bytes.
Regards,
Ryan