From 56846b7643aca78957e01041ac306c7d6a4a78cd Mon Sep 17 00:00:00 2001 From: Sander Speetjens Date: Thu, 30 Nov 2023 00:00:08 +0100 Subject: [PATCH] tcp_cmd fix spacing in print help --- project/Core/Src/tcp_cmd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/Core/Src/tcp_cmd.c b/project/Core/Src/tcp_cmd.c index 01cd147..41dcc25 100644 --- a/project/Core/Src/tcp_cmd.c +++ b/project/Core/Src/tcp_cmd.c @@ -31,11 +31,12 @@ void tcp_cmd_print_header(struct tcp_pcb* pcb) { void tcp_cmd_print_help(struct tcp_pcb* pcb) { tcp_cmd_write(pcb, "help : shows a list of commands\r\n" - "text \"\" : puts text on the lcd\r\n" + "text \"\" : puts text on the lcd\r\n" "color : set the background color of the lcd\r\n" "textColor : set the color of the text\r\n" "listImages : shows a list with images in the filesystem\r\n" - "setImage : put an image on the screen\r\n" + "setImage : put an image on the screen\r\n" + "setGift : put a gif on the screen\r\n" "exit : closes the connection\r\n"); }