forked from theheraldproject/herald-for-cpp
-
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.
Part of theheraldproject#113. Added Mesh Modem client and RabbitMQ Link
Significant changes:- - Added herald/mesh/modem_client.cpp/h and MeshModem class (shell only) - Added herald/mesh/modem_rabbitmq.cpp/h to link MeshModem to RabbitMQ - Added mesh_modem_rmq_adapter sample app to provide containerisable and locally runnable command link MeshModem to RabbitMQ link - MeshModemRabbitMQAdapter compiles successfully - Currently untested Signed off by: Adam Fowler <[email protected]>
- Loading branch information
1 parent
dab11d0
commit c0d46ad
Showing
25 changed files
with
2,097 additions
and
83 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
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,30 @@ | ||
# Use the Google style in this project. | ||
BasedOnStyle: Google | ||
|
||
# Some folks prefer to write "int& foo" while others prefer "int &foo". The | ||
# Google Style Guide only asks for consistency within a project, we chose | ||
# "int& foo" for this project: | ||
DerivePointerAlignment: false | ||
PointerAlignment: Left | ||
|
||
IncludeBlocks: Regroup | ||
IncludeCategories: | ||
- Regex: '^\"../../herald' # herald includes | ||
Priority: 1000 | ||
- Regex: '^\"' # all other quoted (project) includes | ||
Priority: 1500 | ||
- Regex: '^<bluetooth/' # zephyr Bluetooth | ||
Priority: 2000 | ||
- Regex: '^<drivers/*' # zephyr custom drivers | ||
Priority: 3000 | ||
- Regex: '^<dk_buttons_and_leds.h' # zephyr DK conveniences | ||
Priority: 3500 | ||
- Regex: '^<logging/*' # zephyr logging goes last of zephyr includes | ||
Priority: 5000 | ||
- Regex: '^<.*/.*' # other installed library includes | ||
Priority: 4000 | ||
- Regex: '^<[^/]*>' # C++ top level includes | ||
Priority: 4500 | ||
|
||
IndentCaseLabels: 'true' | ||
Standard: Cpp11 |
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,41 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Win64", | ||
"includePath": [ | ||
"${default}", | ||
"${workspaceFolder}/../herald/include" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE" | ||
], | ||
"windowsSdkVersion": "10.0.19041.0", | ||
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.27.29110/bin/Hostx64/x64/cl.exe", | ||
"cStandard": "c17", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "msvc-x64", | ||
"configurationProvider": "ms-vscode.cmake-tools" | ||
}, | ||
{ | ||
"name": "zephyr", | ||
"includePath": [ | ||
"${default}", | ||
"${workspaceFolder}/../herald/include", | ||
"/opt/nordic/ncs/v1.9.1/zephyr/include" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"_UNICODE" | ||
], | ||
"compilerPath": "/opt/nordic/ncs/v1.9.1/toolchain/bin/arm-none-eabi-gcc", | ||
"cStandard": "c17", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-arm", | ||
"configurationProvider": "ms-vscode.cmake-tools" | ||
} | ||
], | ||
"version": 4 | ||
} |
Oops, something went wrong.