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