Skip to content

Commit 101bf2c

Browse files
committed
新增faq
1 parent b744787 commit 101bf2c

File tree

5 files changed

+49
-22
lines changed

5 files changed

+49
-22
lines changed

docs/.vitepress/theme/constrants/route.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export enum Chapters {
1818
xrobot = "/xrobot/",
1919
xrobot_device = "/xrobot/device/",
2020
xrobot_api = "/xrobot/api/",
21-
xrobot_qa = "/xrobot/qa/",
21+
xrobot_faq = "/xrobot/faq/",
2222
}
2323

2424
// 判断一个link是否是章节link
@@ -66,13 +66,13 @@ const items_xrobot_device = [
6666
// 子章节
6767
];
6868

69-
const items_xrobot_qa = [
69+
const items_xrobot_faq = [
7070
{
7171
text: "常见问题",
72-
items: [
73-
{ text: "Q & A", link: "qa" },
74-
].map((item) => apply_prefix(item, Chapters.xrobot_qa)),
75-
link: Chapters.xrobot_qa,
72+
items: [{ text: "FAQ", link: "faq" }].map((item) =>
73+
apply_prefix(item, Chapters.xrobot_faq)
74+
),
75+
link: Chapters.xrobot_faq,
7676
collapsed: false,
7777
},
7878
// 子章节
@@ -82,7 +82,7 @@ const items_xrobot_qa = [
8282
const items_xrobot = [
8383
{
8484
text: "Xrobot",
85-
items: [...items_xrobot_api, ...items_xrobot_device, ...items_xrobot_qa],
85+
items: [...items_xrobot_api, ...items_xrobot_device, ...items_xrobot_faq],
8686
link: Chapters.xrobot,
8787
collapsed: false,
8888
},
@@ -104,5 +104,5 @@ export const ChapterItems: Record<Chapters, ChapterItem[]> = {
104104
...items_xrobot_device,
105105
],
106106
[Chapters.xrobot_api]: [gobackItem(Chapters.xrobot), ...items_xrobot_api],
107-
[Chapters.xrobot_qa]: [gobackItem(Chapters.xrobot), ...items_xrobot_qa],
107+
[Chapters.xrobot_faq]: [gobackItem(Chapters.xrobot), ...items_xrobot_faq],
108108
};

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hero:
1515
link: /xrobot/api/
1616
- theme: brand
1717
text: 常见问题
18-
link: /xrobot/qa/
18+
link: /xrobot/faq/
1919
- theme: alt
2020
text: 去体验-七牛小智
2121
link: https://xrobo.qiniu.com/#/home

docs/xrobot/faq/faq.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: Q & A
3+
---
4+
5+
## 1. 怎么获取设备固件?
6+
7+
可通过点击以下链接进行下载,七牛灵芯云提供最新版本的设备固件:
8+
9+
| 芯片 | 固件 |
10+
| :------- | :------------------------------------------------------------------------------------------------------------------------------ |
11+
| ESP32-C3 | https://algorithm.qnaigc.com/xiaoling-rom/xiaoling-202507021613-ESP32C3-xiage_mini_c3-nihaoxiaozhi-without_dns.bin |
12+
| ESP32-S3 | https://algorithm.qnaigc.com/xiaoling-rom/xiaoling-202507021613-ESP32S3-bread_compact-nihaoxiaozhi_nihaoxiaoxin-without_dns.bin |
13+
14+
## 2. 烧录固件时提示串口被占用?
15+
16+
请检查设备连接是否完好,确保使用数据传输接口而不是充电接口进行烧录。
17+
18+
## 3. 绑定设备时,提示已经被绑定?
19+
20+
将设备从当前绑定的智能体中进行解绑,如找不到设备当前绑定的智能体,使用固件烧录工具擦除固件后重新烧录即可。
21+
22+
## 4. 设备一直显示等待网络... ?
23+
24+
请确保设备配置的网络功能正常,如果网络无法使用,请重新配网选择可用的网络。
25+
26+
## 5. 如何重新进入配网模式?
27+
28+
如果设备固件版本>=0.2.2,在重试 3 次连接原有 WI-FI 网络失败后,会重新进入配网模式(切换网络时可能需要按 RST 按键重启一下设备)。如果设备固件版本较新,在设备开机后,如果处于扫描 wifi 状态时按一下 boot 键(如图中绿圈所示),设备将重新配网,不再连接上次的 WIFI 网络。
29+
30+
| 芯片 | 说明图片 |
31+
| -------- | ------------------------------------------------- |
32+
| ESP32-C3 | <img src="../device/imgs/device-intro/3.2 esp32-c3.png"/> |
33+
| ESP32-S3 | <img src="../device/imgs/device-intro/3.2 esp32-s3.png"/> |
34+
35+
## 6. 智能体更新角色配置后未生效?
36+
37+
智能体更新角色配置后,需重启设备才能生效。
38+
39+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup>
22
import { Chapters } from "../../.vitepress/theme/constrants/route";
33

4-
const chapter_root = Chapters.xrobot_qa;
4+
const chapter_root = Chapters.xrobot_faq;
55
</script>
66

77
<ChapterContents :chapter=chapter_root />

docs/xrobot/qa/qa.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)