-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add .gitignore file * Update README
- Loading branch information
Showing
2 changed files
with
123 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# Ref: https://github.com/arduino/Arduino/blob/master/.gitignore | ||
|
||
app/bin/ | ||
app/pde.jar | ||
build/macosx/work/ | ||
arduino-core/bin/ | ||
arduino-core/arduino-core.jar | ||
hardware/arduino/bootloaders/caterina_LUFA/Descriptors.o | ||
hardware/arduino/bootloaders/caterina_LUFA/Descriptors.lst | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.sym | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.o | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.map | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.lst | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.lss | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.elf | ||
hardware/arduino/bootloaders/caterina_LUFA/Caterina.eep | ||
hardware/arduino/bootloaders/caterina_LUFA/.dep/ | ||
build/*.zip | ||
build/*.tar.bz2 | ||
build/windows/work/ | ||
build/windows/*.zip | ||
build/windows/*.tgz | ||
build/windows/*.tar.bz2 | ||
build/windows/libastylej* | ||
build/windows/liblistSerials* | ||
build/windows/arduino-*.zip | ||
build/windows/dist/*.tar.gz | ||
build/windows/dist/*.tar.bz2 | ||
build/windows/launch4j-*.tgz | ||
build/windows/launch4j-*.zip | ||
build/windows/launcher/launch4j | ||
build/windows/WinAVR-*.zip | ||
build/macosx/arduino-*.zip | ||
build/macosx/dist/*.tar.gz | ||
build/macosx/dist/*.tar.bz2 | ||
build/macosx/*.tar.bz2 | ||
build/macosx/libastylej* | ||
build/macosx/appbundler*.jar | ||
build/macosx/appbundler*.zip | ||
build/macosx/appbundler | ||
build/macosx/appbundler-1.0ea-arduino? | ||
build/macosx/appbundler-1.0ea-arduino*.zip | ||
build/macosx/appbundler-1.0ea-upstream*.zip | ||
build/linux/work/ | ||
build/linux/dist/*.tar.gz | ||
build/linux/dist/*.tar.bz2 | ||
build/linux/*.tgz | ||
build/linux/*.tar.xz | ||
build/linux/*.tar.bz2 | ||
build/linux/*.zip | ||
build/linux/libastylej* | ||
build/linux/liblistSerials* | ||
build/shared/arduino-examples* | ||
build/shared/reference*.zip | ||
build/shared/Edison*.zip | ||
build/shared/Galileo*.zip | ||
build/shared/WiFi101-Updater-ArduinoIDE-Plugin*.zip | ||
test-bin | ||
*.iml | ||
.idea | ||
.DS_Store | ||
.directory | ||
hardware/arduino/avr/libraries/Bridge/examples/XivelyClient/passwords.h | ||
avr-toolchain-*.zip | ||
/app/nbproject/private/ | ||
/arduino-core/nbproject/private/ | ||
/app/build/ | ||
/arduino-core/build/ | ||
|
||
manifest.mf | ||
nbbuild.xml | ||
nbproject | ||
|
||
# Ref: https://github.com/espressif/arduino-esp32/blob/master/.gitignore | ||
tools/xtensa-esp32-elf | ||
tools/xtensa-esp32s2-elf | ||
tools/xtensa-esp32s3-elf | ||
tools/riscv32-esp-elf | ||
tools/dist | ||
tools/esptool | ||
tools/esptool.exe | ||
tools/mkspiffs | ||
tools/mklittlefs | ||
tools/mkfatfs.exe | ||
tools/openocd-esp32 | ||
|
||
# Ignore editor backup files and macOS system metadata | ||
.DS_Store | ||
.*.swp | ||
.*.swo | ||
*~ | ||
|
||
# Ignore build folder | ||
/build | ||
|
||
# Ignore files built by Visual Studio/Visual Micro | ||
[Dd]ebug/ | ||
[Rr]elease/ | ||
.vs/ | ||
__vm/ | ||
*.vcxproj* | ||
.vscode/ | ||
platform.sloeber.txt | ||
boards.sloeber.txt | ||
|
||
# Ignore docs build (Sphinx) | ||
docs/build | ||
docs/source/_build | ||
__pycache__/ | ||
_build/ | ||
|
||
# Test log files | ||
*.log | ||
debug.cfg | ||
debug.svd | ||
debug_custom.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters