new gitignore

This commit is contained in:
Fabian Schieder 2026-02-25 20:06:26 +01:00
parent ba8390e028
commit 7fc87ec036
2 changed files with 88 additions and 17 deletions

104
.gitignore vendored
View File

@ -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
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!)

1
main.c
View File

@ -14,5 +14,6 @@ int main(void)
//stopSeq();
wait_ms(100);
}
}