-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from humanoid2050/MSPv2_support
Multiwii Serial Protocol Version 2 support - single message base class with encode and decode methods - rudimentary support for different message definitions for the same ID - removal of old synchronous API (class MSP) - auto code formatting via clang-format
- Loading branch information
Showing
36 changed files
with
8,309 additions
and
3,268 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,63 @@ | ||
--- | ||
BasedOnStyle: Google | ||
AccessModifierOffset: '-4' | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: 'true' | ||
AlignEscapedNewlines: Left | ||
AlignOperands: 'true' | ||
AlignTrailingComments: 'true' | ||
AllowShortBlocksOnASingleLine: 'false' | ||
AllowShortFunctionsOnASingleLine: All | ||
AllowShortIfStatementsOnASingleLine: 'true' | ||
AllowShortLoopsOnASingleLine: 'true' | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakTemplateDeclarations: 'false' | ||
BinPackArguments: 'false' | ||
BinPackParameters: 'true' | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: false | ||
AfterNamespace: false | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
AfterExternBlock: false | ||
BeforeCatch: true | ||
BeforeElse: true | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
BreakBeforeBraces: Custom | ||
BreakBeforeInheritanceComma: 'false' | ||
BreakConstructorInitializers: AfterColon | ||
CompactNamespaces: 'false' | ||
ContinuationIndentWidth: '4' | ||
Cpp11BracedListStyle: 'true' | ||
FixNamespaceComments: 'true' | ||
IncludeBlocks: Merge | ||
IndentCaseLabels: 'false' | ||
IndentWidth: '4' | ||
IndentWrappedFunctionNames: 'false' | ||
KeepEmptyLinesAtTheStartOfBlocks: 'false' | ||
Language: Cpp | ||
NamespaceIndentation: None | ||
PointerAlignment: Right | ||
ReflowComments: 'true' | ||
SpaceAfterCStyleCast: 'false' | ||
SpaceAfterTemplateKeyword: 'true' | ||
SpaceBeforeAssignmentOperators: 'true' | ||
SpaceBeforeParens: Never | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesInAngles: 'false' | ||
SpacesInCStyleCastParentheses: 'false' | ||
SpacesInContainerLiterals: 'false' | ||
SpacesInParentheses: 'false' | ||
SpacesInSquareBrackets: 'false' | ||
Standard: Cpp11 | ||
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
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,13 @@ | ||
cmake_minimum_required(VERSION 2.8.2) | ||
|
||
project(googletest NONE) | ||
|
||
include(ExternalProject) | ||
ExternalProject_Add(googletest | ||
SOURCE_DIR "/usr/src/gtest" | ||
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
) |
Oops, something went wrong.