mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 04:13:54 +08:00
19 lines
328 B
Cap'n Proto
19 lines
328 B
Cap'n Proto
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);
|
|
}
|