Skip to content

Commit

Permalink
Merge branch 'develop' into remove-debug-appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVautherin committed Oct 29, 2019
2 parents eb4125e + 3a886ba commit af4a5cf
Show file tree
Hide file tree
Showing 31 changed files with 15,007 additions and 68 deletions.
2 changes: 1 addition & 1 deletion proto
4 changes: 3 additions & 1 deletion src/backend/src/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)

set(COMPONENTS_LIST action calibration camera core geofence gimbal info mission offboard param telemetry)
set(COMPONENTS_LIST action calibration camera core geofence gimbal info mission mocap offboard param shell telemetry)

foreach(COMPONENT_NAME ${COMPONENTS_LIST})
add_library(${COMPONENT_NAME}_proto_gens STATIC
Expand Down Expand Up @@ -51,6 +51,8 @@ target_link_libraries(mavsdk_server
mavsdk_telemetry
mavsdk_info
mavsdk_param
mavsdk_shell
mavsdk_mocap
mavsdk
gRPC::grpc++
${COMPONENTS_PROTOGENS}
Expand Down
4 changes: 3 additions & 1 deletion src/backend/src/core/core_service_impl.h
Expand Up @@ -49,15 +49,17 @@ class CoreServiceImpl final : public mavsdk::rpc::core::CoreService::Service {
const rpc::core::ListRunningPluginsRequest* /* request */,
mavsdk::rpc::core::ListRunningPluginsResponse* response) override
{
std::string plugin_names[10] = {"action",
std::string plugin_names[12] = {"action",
"calibration",
"camera",
"core",
"gimbal",
"info",
"mission",
"mocap",
"offboard",
"param",
"shell",
"telemetry"};

for (const auto plugin_name : plugin_names) {
Expand Down
171 changes: 171 additions & 0 deletions src/backend/src/generated/mocap/mocap.grpc.pb.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit af4a5cf

Please sign in to comment.