diff --git a/.clang-format b/.clang-format index ce5c7fa..ba9095f 100644 --- a/.clang-format +++ b/.clang-format @@ -1,17 +1,167 @@ --- - -# This is a clang-format config file. Run command below with this file in -# one of the parent directories. -# -# clang-format -style=file -i (.cpp or .h) -# -# ( -i = in-place editing, without it formatted source goes to stdout ) -# -# See https://clang.llvm.org/docs/ClangFormatStyleOptions.html - Language: Cpp BasedOnStyle: Google -ReflowComments: false -SortIncludes: false +AccessModifierOffset: -1 +AlignAfterOpenBracket: Align +AlignConsecutiveMacros: true +AlignConsecutiveAssignments: true +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Left +AlignOperands: true +AlignTrailingComments: true +AllowAllArgumentsOnNextLine: true +AllowAllConstructorInitializersOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: Never +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: false +AllowShortLambdasOnASingleLine: All +AllowShortIfStatementsOnASingleLine: WithoutElse +AllowShortLoopsOnASingleLine: true +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: Yes +BinPackArguments: true +BinPackParameters: true +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeInheritanceComma: false +BreakInheritanceList: BeforeColon +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 80 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DeriveLineEnding: true +DerivePointerAlignment: true +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeBlocks: Regroup +IncludeCategories: + - Regex: '^' + Priority: 2 + SortPriority: 0 + - Regex: '^<.*\.h>' + Priority: 1 + SortPriority: 0 + - Regex: '^<.*' + Priority: 2 + SortPriority: 0 + - Regex: '.*' + Priority: 3 + SortPriority: 0 +IncludeIsMainRegex: '([-_](test|unittest))?$' +IncludeIsMainSourceRegex: '' +IndentCaseLabels: true +IndentGotoLabels: true +IndentPPDirectives: None +IndentWidth: 4 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: false +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBinPackProtocolList: Never +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 1 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 200 PointerAlignment: Left +RawStringFormats: + - Language: Cpp + Delimiters: + - cc + - CC + - cpp + - Cpp + - CPP + - 'c++' + - 'C++' + CanonicalDelimiter: '' + BasedOnStyle: google + - Language: TextProto + Delimiters: + - pb + - PB + - proto + - PROTO + EnclosingFunctions: + - EqualsProto + - EquivToProto + - PARSE_PARTIAL_TEXT_PROTO + - PARSE_TEST_PROTO + - PARSE_TEXT_PROTO + - ParseTextOrDie + - ParseTextProtoOrDie + CanonicalDelimiter: '' + BasedOnStyle: google +ReflowComments: true +SortIncludes: false +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 2 +SpacesInAngles: false +SpacesInConditionalStatement: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +SpaceBeforeSquareBrackets: false +Standard: Auto +StatementMacros: + - Q_UNUSED + - QT_REQUIRE_VERSION +TabWidth: 4 +UseCRLF: false +UseTab: Never ... diff --git a/examples/LoRaCADCallback/LoRaCADCallback.ino b/examples/LoRaCADCallback/LoRaCADCallback.ino index b9a7ca6..7e14691 100644 --- a/examples/LoRaCADCallback/LoRaCADCallback.ino +++ b/examples/LoRaCADCallback/LoRaCADCallback.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino b/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino index 2b7e217..0246a09 100644 --- a/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino +++ b/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino @@ -17,6 +17,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaDuplex/LoRaDuplex.ino b/examples/LoRaDuplex/LoRaDuplex.ino index 879384f..b512f03 100644 --- a/examples/LoRaDuplex/LoRaDuplex.ino +++ b/examples/LoRaDuplex/LoRaDuplex.ino @@ -24,6 +24,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino b/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino index faf7d8f..0a56c01 100644 --- a/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino +++ b/examples/LoRaDuplexCallback/LoRaDuplexCallback.ino @@ -25,6 +25,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaReceiver/LoRaReceiver.ino b/examples/LoRaReceiver/LoRaReceiver.ino index aeb604f..504877a 100644 --- a/examples/LoRaReceiver/LoRaReceiver.ino +++ b/examples/LoRaReceiver/LoRaReceiver.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino b/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino index 9fe6d20..c538b95 100644 --- a/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino +++ b/examples/LoRaReceiverCallback/LoRaReceiverCallback.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSender/LoRaSender.ino b/examples/LoRaSender/LoRaSender.ino index 0aa7276..9b98b45 100644 --- a/examples/LoRaSender/LoRaSender.ino +++ b/examples/LoRaSender/LoRaSender.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSenderNonBlocking/LoRaSenderNonBlocking.ino b/examples/LoRaSenderNonBlocking/LoRaSenderNonBlocking.ino index d5fda1d..e3329d5 100644 --- a/examples/LoRaSenderNonBlocking/LoRaSenderNonBlocking.ino +++ b/examples/LoRaSenderNonBlocking/LoRaSenderNonBlocking.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSenderNonBlockingCallback/LoRaSenderNonBlockingCallback.ino b/examples/LoRaSenderNonBlockingCallback/LoRaSenderNonBlockingCallback.ino index c8359bd..22605c3 100644 --- a/examples/LoRaSenderNonBlockingCallback/LoRaSenderNonBlockingCallback.ino +++ b/examples/LoRaSenderNonBlockingCallback/LoRaSenderNonBlockingCallback.ino @@ -11,6 +11,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSetSpread/LoRaSetSpread.ino b/examples/LoRaSetSpread/LoRaSetSpread.ino index da08db1..4673248 100644 --- a/examples/LoRaSetSpread/LoRaSetSpread.ino +++ b/examples/LoRaSetSpread/LoRaSetSpread.ino @@ -31,6 +31,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino b/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino index db79da0..81275a9 100644 --- a/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino +++ b/examples/LoRaSetSyncWord/LoRaSetSyncWord.ino @@ -27,6 +27,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino b/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino index df90429..6ee3959 100644 --- a/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino +++ b/examples/LoRaSimpleGateway/LoRaSimpleGateway.ino @@ -37,6 +37,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3 diff --git a/examples/LoRaSimpleNode/LoRaSimpleNode.ino b/examples/LoRaSimpleNode/LoRaSimpleNode.ino index 253e52d..87c25e4 100644 --- a/examples/LoRaSimpleNode/LoRaSimpleNode.ino +++ b/examples/LoRaSimpleNode/LoRaSimpleNode.ino @@ -37,6 +37,7 @@ #define LORA_SCLK 18 // LoRa Parameters Config +// #define LORA_FREQ 433E6 #define LORA_FREQ 868E6 #define LORA_SF 12 #define LORA_BW 125E3