From 2afca97177410bc2fdffdf5c63460ced2284ce21 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Sat, 1 Jun 2019 14:50:32 +0800 Subject: [PATCH] initial commit Signed-off-by: Sean Cross --- .gitattributes | 6 ++++++ .gitignore | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9ec512b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +*.h text eol=lf +*.c text eol=lf +*.S text eol=lf +Makefile text eol=lf +*.mak text eol=lf +*.mk text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a70ef4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ + +# Swap files +*.swp +*.swo +*~ + +*.bin +*.dfu +*.ihex +*.elf + +# Editor files +.vscode/ +.env + +build/ +.obj/ +*.o + +*.pyc +__pycache__/