From e4ea3dd4319bba9d0ef9c30c6a6cb65aa349a278 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 3 Feb 2025 20:57:30 -0500 Subject: [PATCH] re-enable uart channel device driver installation i'm not really sure why this was commented out to begin with. possibly due to the broken parsing of the channel path string in uart_open, but i am unsure exactly. --- src/toolbox.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/toolbox.c b/src/toolbox.c index 760915e..b60b7a4 100644 --- a/src/toolbox.c +++ b/src/toolbox.c @@ -246,11 +246,11 @@ void initialize() { } #endif -// if (res = uart_install()) { -// log_num(LOG_ERROR, "FAILED: serial port initialization", res); -// } else { -// log(LOG_INFO, "Serial ports initialized."); -// } + if ((res = uart_install())) { + log_num(LOG_ERROR, "FAILED: serial port initialization", res); + } else { + log(LOG_INFO, "Serial ports initialized."); + } if ((res = fsys_init())) { log_num(LOG_ERROR, "FAILED: file system initialization", res);