commit b0b43f0edbc245535d05a2437ca0685ea4c41d43 Author: BlackMark Date: Mon Aug 5 21:21:14 2019 +0200 Initial commit diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..63ebf38 --- /dev/null +++ b/.clang-format @@ -0,0 +1,13 @@ +--- +BasedOnStyle: LLVM +ColumnLimit: 120 +IndentWidth: 4 +TabWidth: 4 +UseTab: ForIndentation +AlignEscapedNewlines: DontAlign +AllowShortFunctionsOnASingleLine: Empty +AlwaysBreakTemplateDeclarations: true +BreakBeforeBraces: Custom +BraceWrapping: + AfterFunction: true +... diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3e5b64f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +*.h eol=lf +*.hpp eol=lf +*.c eol=lf +*.cpp eol=lf +.git* eol=lf +*.vcxproj* eol=crlf +*.cppproj eol=crlf +*.sln eol=crlf +*.atsln eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..edee58b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.vs +Release +Debug +*.componentinfo.xml diff --git a/i2c.hpp b/i2c.hpp new file mode 100644 index 0000000..6f70f09 --- /dev/null +++ b/i2c.hpp @@ -0,0 +1 @@ +#pragma once