Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recorder profile Proto #203

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions protos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ farm_ng_add_protobufs(farm_ng_amiga_proto_defs
farm_ng/imu/imu.proto
farm_ng/filter/filter.proto
farm_ng/oak/oak.proto
farm_ng/recorder/recorder.proto
DEPENDENCIES
farm_ng_core::farm_ng_core_proto_defs
)
24 changes: 24 additions & 0 deletions protos/farm_ng/recorder/recorder.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright (c) farm-ng, inc.
//
// Licensed under the Amiga Development Kit License (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://github.com/farm-ng/amiga-dev-kit/blob/main/LICENSE
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

syntax = "proto3";

import "farm_ng/core/event_service.proto";

package farm_ng.recorder.proto;

message RecorderProfile {
string name = 1;
repeated farm_ng.core.proto.SubscribeRequest subscriptions = 2;
}
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ packages =
farm_ng.imu
farm_ng.filter
farm_ng.track
farm_ng.recorder

[options.extras_require]
dev =
Expand Down Expand Up @@ -87,3 +88,6 @@ farm_ng.filter =

farm_ng.track =
*.proto

farm_ng.recorder =
*.proto
Loading