You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
328 B
19 lines
328 B
7 years ago
|
using Cxx = import "c++.capnp";
|
||
|
$Cxx.namespace("cereal");
|
||
|
|
||
|
using Java = import "java.capnp";
|
||
|
$Java.package("ai.comma.openpilot.cereal");
|
||
|
$Java.outerClassname("Log");
|
||
|
|
||
|
using Log = import "log.capnp";
|
||
|
|
||
|
@0xe1a6ab330ea7205f;
|
||
|
|
||
|
struct MapdRequest {
|
||
|
pos @0 :Log.ECEFPoint;
|
||
|
}
|
||
|
|
||
|
struct MapdResponse {
|
||
|
kfs @0 :List(Log.OrbKeyFrame);
|
||
|
}
|