mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2025-11-28 08:36:21 +00:00
init esp-idf project
This commit is contained in:
parent
b3468b4f01
commit
a97872239e
21 changed files with 2362 additions and 959 deletions
61
.gitignore
vendored
Normal file → Executable file
61
.gitignore
vendored
Normal file → Executable file
|
|
@ -1,5 +1,58 @@
|
|||
# Development
|
||||
# .gitignore für ESP-IDF / CMake-Projekt
|
||||
|
||||
.pio
|
||||
.vscode
|
||||
!.vscode\extensions.json
|
||||
# --- Build artefacts -----------------------------------------------------
|
||||
/build/
|
||||
*.elf
|
||||
*.bin
|
||||
*.hex
|
||||
*.map
|
||||
*.img
|
||||
|
||||
# CMake / build system
|
||||
CMakeCache.txt
|
||||
CMakeFiles/
|
||||
cmake_install.cmake
|
||||
compile_commands.json
|
||||
|
||||
# ESP-IDF specific
|
||||
sdkconfig.old
|
||||
flasher_args.json
|
||||
flash_args*
|
||||
flash_app_args
|
||||
flash_bootloader_args
|
||||
flash_project_args
|
||||
bootloader-prefix/
|
||||
project_description.json
|
||||
managed_components/
|
||||
|
||||
# Component build directories
|
||||
components/**/build/
|
||||
partition_table/build/
|
||||
|
||||
# IDEs / editors / OS
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*~
|
||||
.DS_Store
|
||||
|
||||
# direnv (local environment/profile cache)
|
||||
.direnv/
|
||||
|
||||
# Python / virtualenvs
|
||||
__pycache__/
|
||||
*.pyc
|
||||
venv/
|
||||
venv*/
|
||||
.env
|
||||
|
||||
# Logs / temp
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
|
||||
# Misc
|
||||
*.local
|
||||
|
||||
# Keep Snyk instructions file tracked (project policy)
|
||||
# .github/instructions/snyk_rules.instructions.md
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue