-
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.
First commit. very crude BLE proof of concept is working.
- Loading branch information
0 parents
commit c12efd0
Showing
5 changed files
with
854 additions
and
0 deletions.
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,32 @@ | ||
# Logic style | ||
Language: Cpp | ||
# manually added flags | ||
FixNamespaceComments: 'false' | ||
SortIncludes: 'false' | ||
|
||
|
||
# flags copied from web editor, https://zed0.co.uk/clang-format-configurator/ | ||
AllowShortBlocksOnASingleLine: 'false' | ||
AllowShortCaseLabelsOnASingleLine: 'false' | ||
AllowShortFunctionsOnASingleLine: None | ||
AllowShortIfStatementsOnASingleLine: 'false' | ||
AllowShortLoopsOnASingleLine: 'false' | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakTemplateDeclarations: 'true' | ||
BreakBeforeBraces: Allman | ||
ColumnLimit: '140' | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' | ||
ContinuationIndentWidth: '4' | ||
Cpp11BracedListStyle: 'false' | ||
IndentWidth: '4' | ||
KeepEmptyLinesAtTheStartOfBlocks: 'false' | ||
MaxEmptyLinesToKeep: '2' | ||
NamespaceIndentation: All | ||
PointerAlignment: Left | ||
SpaceBeforeParens: Never | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesInCStyleCastParentheses: 'true' | ||
SpacesInParentheses: 'true' | ||
SpacesInSquareBrackets: 'true' | ||
TabWidth: '4' | ||
UseTab: Never |
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,7 @@ | ||
{ | ||
"board": "esp32:esp32:featheresp32", | ||
"configuration": "FlashFreq=80,UploadSpeed=921600,DebugLevel=none,PartitionScheme=default", | ||
"sketch": "DelSolClock.ino", | ||
"port": "COM4", | ||
"output": "../temp/ArduinoBuild/DelSolClock" | ||
} |
Oops, something went wrong.