1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package entity
- type PjisuvParam struct {
- // /cicv_location
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- VelocityZOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
- PositionXOfCicvLocation float64
- PositionYOfCicvLocation float64
- // /tpperception
- ObjDicOfTpperception map[uint32][]float32
- ObjTypeDicOfTpperception map[uint32]uint8
- ObjSpeedDicOfTpperception map[uint32]float64
- // /pji_control_pub
- NumCountPjiControlCommandOfPjControlPub int
- EgoSteeringCmdOfPjControlPub []float64
- EgoThrottleCmdOfPjControlPub []float64
- // /data_read
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- StrgAngleRealValueOfDataRead float64
- // /pj_vehicle_fdb_pub
- AutomodeOfPjVehicleFdbPub int16
- }
- type KinglongParam struct {
- // /cicv_location
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
- // /tpperception
- ObjDicOfTpperception map[uint32][]float32
- ObjTypeDicOfTpperception map[uint32]uint8
- ObjSpeedDicOfTpperception map[uint32]float64
- // /pji_control_pub
- NumCountJinlongControlCommandOfPjControlPub int
- EgoSteeringCmdOfJinlongControlPub []float64
- EgoThrottleCmdOfJinlongControlPub []float64
- EgoBrakeCmdOfJinlongControlPub []float64
- // /data_read
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- EgoBrakeRealOfDataRead []float64
- }
|