[opt3.0_back_camera] 福田清扫车后摄像头数据接收
This commit is contained in:
20
libraries/mogo-adas-data/src/main/proto/param_set_cmd.proto
Normal file
20
libraries/mogo-adas-data/src/main/proto/param_set_cmd.proto
Normal file
@@ -0,0 +1,20 @@
|
||||
syntax = "proto3";
|
||||
package mogo.telematics;
|
||||
|
||||
enum ParamSetType
|
||||
{
|
||||
ParamSetTypeNone = 0;
|
||||
ParamSetTypeBlindArea = 1;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user