Skip to content

Commit a2a0020

Browse files
feat: renamed steer command and added throttle and brakes commands #8
1 parent e14bb3d commit a2a0020

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

proto/data/dv_commands.proto

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
syntax = "proto3";
2+
3+
package Data;
4+
5+
message ActuatorsCommands
6+
{
7+
double steerAngleDegrees = 1;
8+
double pedalThrottle = 2;
9+
double pedalBrakes = 3;
10+
}
11+
12+
enum Status {
13+
status_disabled = 0;
14+
status_enabled = 1;
15+
}
16+
message ActuatorsStatus{
17+
Status steerStatus = 1;
18+
Status throttleStatus = 2;
19+
Status brakesStatus = 3;
20+
}

proto/data/steer_command.proto

-16
This file was deleted.

0 commit comments

Comments
 (0)