From 393994131585801e171be0017ea8953f78a14d54 Mon Sep 17 00:00:00 2001 From: Joe Kearney Date: Sun, 11 Jan 2026 01:08:13 +0000 Subject: [PATCH] Fixed directory conflict on Windows. (#13) CMake on Windows had conflicts with one directory in the project tree named `console`, and another named `Console`. Co-authored-by: Joe Kearney Reviewed-on: https://git.ktag.clubk.club/Software/2024A-SW/pulls/13 --- README.md | 2 +- components/{Console => Serial_Console}/CMakeLists.txt | 0 components/{Console => Serial_Console}/Commands/Log_Command.c | 0 components/{Console => Serial_Console}/Commands/Log_Command.h | 0 components/{Console => Serial_Console}/Console.c | 0 components/{Console => Serial_Console}/Console.h | 0 6 files changed, 1 insertion(+), 1 deletion(-) rename components/{Console => Serial_Console}/CMakeLists.txt (100%) rename components/{Console => Serial_Console}/Commands/Log_Command.c (100%) rename components/{Console => Serial_Console}/Commands/Log_Command.h (100%) rename components/{Console => Serial_Console}/Console.c (100%) rename components/{Console => Serial_Console}/Console.h (100%) diff --git a/README.md b/README.md index 62c50f3..96deb6d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ This software in turn makes use of the following open-source software libraries | Name | Version | License ([SPDX](https://spdx.org/licenses/)) | URL |----------------------------|--------:|--------------------------------------------------------------------------|--------------------------------------------- -| SystemK | 1.0 | [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) | https://git.ktag.clubk.club/Software/SystemK/ +| SystemK | 1.01 | [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) | https://git.ktag.clubk.club/Software/SystemK/ | ESP-IDF | 5.5.2 | [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) | https://github.com/espressif/esp-idf/ | espressif/button | 3.5.0 | [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) | https://components.espressif.com/components/espressif/button | espressif/led_strip | 2.5.3 | [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) | https://components.espressif.com/components/espressif/led_strip diff --git a/components/Console/CMakeLists.txt b/components/Serial_Console/CMakeLists.txt similarity index 100% rename from components/Console/CMakeLists.txt rename to components/Serial_Console/CMakeLists.txt diff --git a/components/Console/Commands/Log_Command.c b/components/Serial_Console/Commands/Log_Command.c similarity index 100% rename from components/Console/Commands/Log_Command.c rename to components/Serial_Console/Commands/Log_Command.c diff --git a/components/Console/Commands/Log_Command.h b/components/Serial_Console/Commands/Log_Command.h similarity index 100% rename from components/Console/Commands/Log_Command.h rename to components/Serial_Console/Commands/Log_Command.h diff --git a/components/Console/Console.c b/components/Serial_Console/Console.c similarity index 100% rename from components/Console/Console.c rename to components/Serial_Console/Console.c diff --git a/components/Console/Console.h b/components/Serial_Console/Console.h similarity index 100% rename from components/Console/Console.h rename to components/Serial_Console/Console.h