Browse Source

Added .gitignore/modules

Daniele Lacamera 3 years ago
commit
48aa846f41
3 changed files with 80 additions and 0 deletions
  1. 76 0
      .gitignore
  2. 3 0
      .gitmodules
  3. 1 0
      RIOT

+ 76 - 0
.gitignore

@@ -0,0 +1,76 @@
+# Object files
+*.o
+# Target files
+*.elf
+# Built binaries
+*bin
+# Build directory
+roomba/build
+# AFL findings
+fuzzing/**/findings/
+# Backup files
+*~
+*.orig
+.*.swn
+.*.swo
+.*.swp
+\#*\#
+cachegrind.out*
+# Eclipse workspace files
+.project
+.cproject
+.settings
+.idea
+# KDevelop4 project files
+.kdev4
+*.kdev4
+# Codelite (among others) project files
+*.project
+# Visual Studio Code user settings
+.vscode/
+# ctags index files
+tags
+# GDB initialization scripts
+.gdbinit
+
+# Eclipse symbol file (output from make eclipsesym)
+eclipsesym.xml
+/toolchain
+# Ignore created Arduino sketch files
+_sketches.cpp
+
+# local override files
+Makefile.local
+
+# Vagrant
+.vagrant
+
+# clang-complete command line argument lists (Vim: clang-complete, Atom: linter-clang, autocomplete-clang addons)
+.clang_complete
+# YouCompleteMe (https://github.com/Valloric/YouCompleteMe)
+.ycm_extra_conf.py
+
+# Python compiled files
+*.pyc
+
+# Ignore download cache
+.dlcache
+
+# scan-build artifacts
+scan-build/
+
+# compile_and_test_for_boards default "results" directory
+results/
+
+# mypy artifacts
+.mypy_cache/
+
+# Clangd compile flags (language server)
+compile_commands.json
+compile_flags.txt
+
+# suit manifest keys
+keys/
+
+# clangd language server
+.clangd/

+ 3 - 0
.gitmodules

@@ -0,0 +1,3 @@
+[submodule "RIOT"]
+	path = RIOT
+	url = https://github.com/RIOT-OS/RIOT

+ 1 - 0
RIOT

@@ -0,0 +1 @@
+Subproject commit 077589ba3367fd08fbfa19c230839eade099702d