cleaned project, added a first working version of the bootloader

This commit is contained in:
Miguel I.
2025-09-02 21:21:43 +02:00
parent 71b3c6f703
commit 663ecf18cf
850 changed files with 159 additions and 113312 deletions

69
.gitignore vendored Normal file
View File

@@ -0,0 +1,69 @@
# Build directories
build/
build-*/
_build*/
cmake-build-*/
# Sysbuild / child images
_child_image/
modules/
mcuboot/
zephyr/
# Object and binary files
*.o
*.a
*.so
*.d
*.elf
*.bin
*.hex
*.map
*.lst
*.out
# Firmware update artifacts
*.zip
*.log
*.signed
*.update
# CMake generated files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CTestTestfile.cmake
Makefile
*.cmake
# Zephyr generated files
zephyr/
modules/
*.config
*.conf.old
include/generated/
.zephyr
# IDE/editor files
.vscode/
.idea/
*.swp
*.swo
*.user
*.workspace
*.project
*.cproject
# Python cache
__pycache__/
*.pyc
# Backup / temp files
*~
*.bak
*.orig
# OS-specific
.DS_Store
Thumbs.db