From 6e89d428c7319c13feacc23c3415b348be9cdd4f Mon Sep 17 00:00:00 2001 From: 01trisha Date: Fri, 20 Feb 2026 06:45:18 +0700 Subject: [PATCH] add ingore and modules --- .gitignore | 15 +++++++++++++++ .gitmodules | 9 +++++++++ 2 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..048bcd3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Ignore build folder +build/ +bin/ + +# Ignore UI folder, this should be commited in its own repository +ui/ + +# Ignore all dot folders, with below exceptions +.*/ + +# VSCode +.vscode + +main/ +rec-ui/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..6c98f4b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "lv_drivers"] + path = lv_drivers + url = https://github.com/lvgl/lv_drivers.git +[submodule "lvgl"] + path = lvgl + url = https://github.com/lvgl/lvgl.git +[submodule "FreeRTOS"] + path = FreeRTOS + url = https://github.com/FreeRTOS/FreeRTOS-Kernel.git