Files
MoGoEagleEye/libraries/mogo-adas-data/src/main/proto/param_set_cmd.proto
2024-02-28 08:55:26 +08:00

23 lines
536 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
syntax = "proto3";
package mogo.telematics;
enum ParamSetType
{
ParamSetTypeNone = 0;
ParamSetTypeBlindArea = 1; //bool, 0:off 1:on
ParamSetTypeV2N = 2; //bool, 0:不发给PnC 1:发给Pnc
ParamSetTypeV2I = 3; //bool, 0:不发给PnC和鹰眼 1:发给Pnc和鹰眼默认0
}
message ParamSetCmd
{
uint32 src = 1; // 0: none, 1:pad, 2:aicloud
ParamSetType type = 2;
oneof Value {
bool boolValue = 3;
int64 intValue = 4;
double floatValue = 5;
string stringValue = 6;
}
}