23 lines
536 B
Protocol Buffer
23 lines
536 B
Protocol Buffer
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;
|
||
}
|
||
}
|