From 283a3e44ed22bc10d7e5b4e15f96350f04427daf Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 12 Jun 2024 12:28:02 +0200 Subject: [PATCH] remove missing usage of define --- client/src/uart/uart_posix.c | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/uart/uart_posix.c b/client/src/uart/uart_posix.c index a83617d7b..5e7133354 100644 --- a/client/src/uart/uart_posix.c +++ b/client/src/uart/uart_posix.c @@ -411,7 +411,6 @@ serial_port uart_open(const char *pcPortName, uint32_t speed, bool slient) { sp->tiNew.c_cc[VERASE] = 0; /* del */ sp->tiNew.c_cc[VKILL] = 0; /* @ */ sp->tiNew.c_cc[VEOF] = 4; /* Ctrl-d */ - sp->tiNew.c_cc[VSWTC] = 0; /* '\0' */ sp->tiNew.c_cc[VSTART] = 0; /* Ctrl-q */ sp->tiNew.c_cc[VSTOP] = 0; /* Ctrl-s */ sp->tiNew.c_cc[VSUSP] = 0; /* Ctrl-z */