This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Looking for a serial print function with no predefined formats

I try to print with serial. How can I print something without a format. I want to print it directly. If yes, which function should I call?

For example, What I am looking for: if I print "ABC", I receive only 41 42 43 and some padding zeros from the serial window.

My current situation is that when I try to print "EVA", what I get is  "45 56 41                |EVA            "

For this example, I print "EVA" by using the NRF_LOG_RAW_HEXDUMP_INFO(pointer of the data, 3);

Output from the serial window:

Related