From 693e80d7fff68925bf7324e26d8e25103adc05e3 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Mon, 1 Mar 2021 17:32:08 +0000 Subject: [PATCH] Escape a newline in Doxygen --- firmware/src/usb_console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/src/usb_console.h b/firmware/src/usb_console.h index 6213718..f961f49 100644 --- a/firmware/src/usb_console.h +++ b/firmware/src/usb_console.h @@ -51,7 +51,7 @@ void USBConsole_Initialize(); * * We may not buffer the entire message if the log buffer is full. * Since the messages are sent over a serial console, the NULL characters are - * replaced with \n characters. + * replaced with \\n characters. */ void USBConsole_Log(const char* message);