This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to not send 0x0A at the end of data in nrf Uart v2.0 app

Hi, I am using nrf51822(128k), SD 6.0, SDK 5.2.

I found that nrf uart v2.0 app will add a "0x0A" at the end of data that I want to send. How can I remove this?

Thank you

  • Hi,

    It's the command at line 221 in the ble_app_uart firmware that add a line feed into the UART packet: simple_uart_put('\n'); If you don't want a new line at the end of each packet you can remove that.

  • Hi, Can you tell me the file name and the function name? I can not find it. Thank you