From 7fc87ec036464c1cb7ee41455ced00152d062e0c Mon Sep 17 00:00:00 2001 From: Fabian Schieder Date: Wed, 25 Feb 2026 20:06:26 +0100 Subject: [PATCH] new gitignore --- .gitignore | 104 ++++++++++++++++++++++++++++++++++++++++++++--------- main.c | 1 + 2 files changed, 88 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 2f5441b..99e0508 100644 --- a/.gitignore +++ b/.gitignore @@ -1,38 +1,108 @@ -# =============================== -# Keil uVision Build Output -# =============================== +# ========================================================== +# KEIL µVISION BUILD OUTPUT +# ========================================================== Objects/ Listings/ +DebugConfig/ *.o +*.obj *.d *.axf +*.elf *.map +*.hex +*.bin +*.lst +*.lss +*.srec +*.crf *.htm *.dep *.lnp *.iex - -# =============================== -# User & Debug Settings -# =============================== - -*.uvoptx +*.build_log.htm *.uvguix.* +*.uvoptx *.dbgconf -# =============================== -# Backup / Temp -# =============================== +# ========================================================== +# CMSIS / EVENT RECORDER +# ========================================================== + +*.scvd +EventRecorderStub.scvd + +# ========================================================== +# ARM COMPILER TEMP FILES (ARMCC / ARMCLANG) +# ========================================================== -*.bak *.tmp +*.bak *.log +*.orig -# =============================== -# Windows -# =============================== +# Scatter / Linker temporary outputs +*.sct.bak +*.ld.bak + +# ========================================================== +# GCC / GENERIC EMBEDDED OUTPUT (falls später genutzt) +# ========================================================== + +*.su +*.gcda +*.gcno +*.gcov + +# CMake / Make (falls später parallel verwendet) +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake +Makefile +build/ + +# ========================================================== +# VISUAL STUDIO / VSCODE (optional Tools) +# ========================================================== + +.vscode/ +.vs/ +*.code-workspace + +# ========================================================== +# PYTHON (z.B. Flash-Tools, Scripts) +# ========================================================== + +__pycache__/ +*.pyc + +# ========================================================== +# WINDOWS SYSTEM FILES +# ========================================================== Thumbs.db -Desktop.ini \ No newline at end of file +Desktop.ini + +# ========================================================== +# ARCHIVE / BACKUP +# ========================================================== + +*.zip +*.rar +*.7z + +# ========================================================== +# DO NOT IGNORE THESE IMPORTANT FILES +# ========================================================== +# (Nur zur Dokumentation – NICHT entfernen!) + +# .uvprojx +# RTE/ +# RTE/Device/ +# startup_*.s +# system_*.c +# *.c +# *.h +# *.lib (wenn projektspezifisch!) \ No newline at end of file diff --git a/main.c b/main.c index 43e4534..5d84e0c 100644 --- a/main.c +++ b/main.c @@ -14,5 +14,6 @@ int main(void) //stopSeq(); wait_ms(100); + } } \ No newline at end of file