Skip to content

Commit

Permalink
Merge pull request #101 from Tianhonghai/fix-task-id
Browse files Browse the repository at this point in the history
[Fix]: task id about algo manager
  • Loading branch information
Tianhonghai authored Sep 23, 2024
2 parents 9b764be + 1e419ec commit 81b4381
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/cn/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -2072,15 +2072,15 @@ int32 task_sub_status
- 启动方式见启动任务action接口,其中所需的关键goal字段包含:

```js
"nav_type: 1" # 1表示启动建图
"nav_type: 5" # 5表示启动建图

"out_door: false" # false表示室内建图,即激光建图
```

- 关闭方式见关闭任务service接口,其中所需的关键request字段包含:

```js
"task_id: 1" # 1表示关闭建图
"task_id: 5" # 1表示关闭建图
```

### 视觉建图
Expand All @@ -2091,15 +2091,15 @@ int32 task_sub_status
- 启动方式见启动任务action接口,其中所需的关键goal字段包含:

```js
"nav_type: 1" # 1表示启动建图
"nav_type: 5" # 5表示启动建图

"out_door: true" # true表示室外建图,即视觉建图
```

- 关闭方式见关闭任务service接口,其中所需的关键request字段包含:

```js
"task_id: 1" # 1表示关闭建图
"task_id: 5" # 5表示关闭建图
```

### AB点导航
Expand All @@ -2109,7 +2109,7 @@ int32 task_sub_status
- 启动方式见启动任务action接口,其中所需的关键goal字段包含:

```js
"nav_type: 5" # 5表示启动AB点导航
"nav_type: 1" # 1表示启动AB点导航

"poses:
Expand All @@ -2123,7 +2123,7 @@ int32 task_sub_status
- 关闭方式见关闭任务service接口,其中所需的关键request字段包含:

```js
"task_id: 5" # 5表示关闭AB点导航
"task_id: 1" # 1表示关闭AB点导航
```


Expand Down

0 comments on commit 81b4381

Please sign in to comment.