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

Expand track proto #219

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 0 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ repos:
- --skip
- "*.bib,*.ipynb,*.lock"

- repo: https://github.com/myint/docformatter
rev: v1.7.5
hooks:
- id: docformatter
args: [--in-place, --wrap-summaries=115, --wrap-descriptions=120]

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.4
hooks:
Expand Down
3 changes: 3 additions & 0 deletions protos/farm_ng/track/track.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ syntax = "proto3";

import "farm_ng/core/lie.proto";
import "farm_ng/core/pose.proto";
import "farm_ng/canbus/tool_control.proto";

package farm_ng.track.proto;

// A track is a sequence of waypoints that the robot should follow or already drove.
message Track {
// The waypoints along the track
repeated farm_ng.core.proto.Pose waypoints = 1;
// Map of key waypoints to their associated actuator command
map<uint32, farm_ng.canbus.proto.ActuatorCommands> key_waypoint_actions = 2;
}

// This is sent to the track_follower service by a client to request a track be followed.
Expand Down
Loading