Hello, I would like to develop a simple program that sends and receives UART communication through 2 boards.
The example used "examples\peripheral\serial\pca10056\blank\sses\serial_pca10056.emProject."
First, we set up the "Hello" and "World" sequence on each of the two boards, and then we ran it on "Tera term," and we found that the characters we set were printed on ourselves.
For example, Assuming the string "Hello" to be sent from board A, the string "World" to be sent from board B,
-------------------------------------------------------------------------------------
"A log" : Hello, World , Hello, World,.... ,
"B log" : World, Hello, World, ...
-------------------------------------------------------------------------------------
such as Both the text to be sent and the incoming character are output.
I analyzed it, and it seems to be output to log by sending another board using 'nrf_serial_write'.
So I would appreciate it if you could give me an answer to my question.
1. Can you tell me why it's printed at the same time?
2. Is there a way to print only the Received value on the Tera term-Log?
3. Is there a way to write and send cammand in 'Tera term' or 'putty' instead of in debugging mode like cli-agent in zigbee?