doc/userled: Fix printf example

It is needed to escape \ itself.

Signed-off-by: Jiri Vlasak <jvlasak@elektroline.cz>
This commit is contained in:
Jiri Vlasak
2026-02-11 17:12:12 +01:00
committed by Alin Jerpelea
parent 9cf7d80bab
commit 508f0d4b73
@@ -29,7 +29,7 @@ Also is possible for users to control the LEDs from "nsh>" using the "printf" co
.. code-block:: bash
NuttShell (NSH)
nsh> printf \x000000a5 > /dev/userleds
nsh> printf \\x000000a5 > /dev/userleds
This command will turn ON the LEDs mapped to bits 0, 2, 5 and 7.