Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
b39f452ecd1ee9d0e889b977df2bcb32efd8c1c8
/
.
/
y2014
/
control_loops
/
shooter
/
shooter_goal.fbs
blob: 5f009e76c504e246bd360210f6b9634f653e5cf2 [
file
] [
log
] [
blame
]
namespace
y2014
.
control_loops
.
shooter
;
table
Goal
{
// Shot power in joules.
shot_power
:
double
(
id
:
0
);
// Shoots as soon as this is true.
shot_requested
:
bool
(
id
:
1
);
unload_requested
:
bool
(
id
:
2
);
load_requested
:
bool
(
id
:
3
);
}
root_type
Goal
;