Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f58a34f
Refactored MyMesh, advert on doublepress
hank May 29, 2025
053aa0b
Adding clang-format
hank Jun 1, 2025
5bf5812
Removing debug mode
hank Jun 1, 2025
f7f96ad
Reformatting code
hank Jun 1, 2025
c13f676
Merge branch 'dev' of https://github.com/ripplebiz/MeshCore into myme…
hank Jun 1, 2025
9959475
Reformatting code
hank Jun 1, 2025
73a7a96
wio_e5 : bme280 support
fdlamotte May 31, 2025
92c2963
wioe5: integrate sensor in sensor mgr
fdlamotte Jun 1, 2025
31cbf9e
gps : sync time on fix
fdlamotte May 31, 2025
49da695
micronmea: was using global rtc_clock to sync instead of _clock
fdlamotte Jun 1, 2025
14cd4ea
t1000: remove sync custom var
fdlamotte Jun 1, 2025
3749264
* MicroNMEALocationProvider: clock param now NULL by default
Jun 1, 2025
42efbda
Re-applying ecd2b0b
hank Jun 2, 2025
91134ec
Merge branch 'mymesh-refactor2' of https://github.com/hank/MeshCore i…
hank Jun 2, 2025
e15ad10
Merge branch 'dev' of https://github.com/ripplebiz/MeshCore into myme…
hank Jun 2, 2025
40bf7bb
Reverting changes to Button code
hank Jun 2, 2025
9247ce4
Reverting changes to simple_secure_chat main
hank Jun 2, 2025
69b431a
Re-applying 73a7a96, formatting, MyMesh reformat
hank Jun 2, 2025
4e2786c
Re-applying 73a7a96, formatting, MyMesh reformat
hank Jun 2, 2025
335df61
Merge branch 'mymesh-refactor2' of https://github.com/hank/MeshCore i…
hank Jun 2, 2025
9fe218e
Reverting format changes to NodePrefs
hank Jun 2, 2025
33d5f85
Re-merging 92c2963
hank Jun 2, 2025
884d8f1
Reverting UITask.h changes
hank Jun 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# .clang-format
Language: Cpp
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignConsecutiveMacros:
Enabled: true
AcrossEmptyLines: true
AcrossComments: true
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: No
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: false
AfterNamespace: false
AfterObjCDeclaration: false
AfterStruct: false
AfterUnion: false
BeforeCatch: true
BeforeElse: true
IndentBraces: false
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Attach
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
ColumnLimit: 110
CommentPragmas: '^ IWYU pragma:'
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
Cpp11BracedListStyle: false
DerivePointerAlignment: false
DisableFormat: false
IncludeBlocks: Regroup
IndentCaseLabels: false
IndentPPDirectives: None
IndentWidth: 2
IndentWrappedFunctionNames: false
KeepEmptyLinesAtTheStartOfBlocks: true
MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
ObjCBinPackProtocolList: Auto
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 100000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Right
ReflowComments: true
SortIncludes: true
SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInContainerLiterals: false
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Auto
TabWidth: 2
UseTab: Never
AlignEscapedNewlines: LeftWithLastLine
Loading