- 新增agv.proto文件定义AGV相关消息结构包括位姿、速度、电池状态等 - 新增统一2D/3D地图格式定义支持栅格、点云、体素等多种地图类型 - 重构agv_command.proto将原有命令接口替换为新的运行状态查询接口 - 添加导航控制、速度设置、地图管理等标准化命令接口 - 整合站点管理、路径规划、任务状态等AGV核心功能协议 - 引入运动约束选项和适配器参数扩展支持不同厂商设备特性
34 lines
949 B
XML
34 lines
949 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot</artifactId>
|
|
<version>3.8.9</version>
|
|
</parent>
|
|
|
|
<artifactId>cmvr-iot-tts</artifactId>
|
|
|
|
<description>
|
|
智能座舱语音语料采集模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 系统模块-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-system</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|