mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-06 00:36:32 +08:00
53 lines
2.0 KiB
C
53 lines
2.0 KiB
C
/* THIS IS AN AUTOGENERATED FILE, PLEASE EDIT services.py */
|
|
#ifndef __SERVICES_H
|
|
#define __SERVICES_H
|
|
struct service { char name[0x100]; int port; bool should_log; int frequency; int decimation; };
|
|
static struct service services[] = {
|
|
{ "sensorEvents", 8001, true, 100, 100 },
|
|
{ "gpsNMEA", 8002, true, 9, -1 },
|
|
{ "deviceState", 8003, true, 2, 1 },
|
|
{ "can", 8004, true, 100, -1 },
|
|
{ "controlsState", 8005, true, 100, 10 },
|
|
{ "pandaStates", 8006, true, 2, 1 },
|
|
{ "peripheralState", 8007, true, 2, 1 },
|
|
{ "radarState", 8008, true, 20, 5 },
|
|
{ "roadEncodeIdx", 8009, true, 20, 1 },
|
|
{ "liveTracks", 8010, true, 20, -1 },
|
|
{ "sendcan", 8011, true, 100, 139 },
|
|
{ "logMessage", 8012, true, 0, -1 },
|
|
{ "errorLogMessage", 8013, true, 0, 1 },
|
|
{ "liveCalibration", 8014, true, 4, 4 },
|
|
{ "androidLog", 8015, true, 0, -1 },
|
|
{ "carState", 8016, true, 100, 10 },
|
|
{ "carControl", 8017, true, 100, 10 },
|
|
{ "longitudinalPlan", 8018, true, 20, 5 },
|
|
{ "procLog", 8019, true, 0, -1 },
|
|
{ "gpsLocationExternal", 8020, true, 10, 10 },
|
|
{ "ubloxGnss", 8021, true, 10, -1 },
|
|
{ "clocks", 8023, true, 1, 1 },
|
|
{ "ubloxRaw", 8024, true, 20, -1 },
|
|
{ "liveLocationKalman", 8025, true, 20, 5 },
|
|
{ "liveParameters", 8026, true, 20, 5 },
|
|
{ "cameraOdometry", 8027, true, 20, 5 },
|
|
{ "lateralPlan", 8028, true, 20, 5 },
|
|
{ "thumbnail", 8029, true, 0, 1 },
|
|
{ "carEvents", 8030, true, 1, 1 },
|
|
{ "carParams", 8031, true, 0, 1 },
|
|
{ "roadCameraState", 8032, true, 20, 20 },
|
|
{ "driverCameraState", 8033, true, 10, 10 },
|
|
{ "driverEncodeIdx", 8034, true, 10, 1 },
|
|
{ "driverState", 8035, true, 10, 5 },
|
|
{ "driverMonitoringState", 8036, true, 10, 5 },
|
|
{ "wideRoadEncodeIdx", 8037, true, 20, 1 },
|
|
{ "wideRoadCameraState", 8038, true, 20, 20 },
|
|
{ "modelV2", 8039, true, 20, 40 },
|
|
{ "managerState", 8040, true, 2, 1 },
|
|
{ "uploaderState", 8041, true, 0, 1 },
|
|
{ "navInstruction", 8042, true, 0, -1 },
|
|
{ "navRoute", 8043, true, 0, -1 },
|
|
{ "navThumbnail", 8044, true, 0, -1 },
|
|
{ "testJoystick", 8045, false, 0, -1 },
|
|
};
|
|
#endif
|
|
|