mirror of
https://github.com/sipeed/sipeed_wiki.git
synced 2026-09-13 03:19:39 -05:00
update
This commit is contained in:
141
docs/hardware/en/lichee/RV/ubuntu.md
Normal file
141
docs/hardware/en/lichee/RV/ubuntu.md
Normal file
@@ -0,0 +1,141 @@
|
||||
---
|
||||
title: LicheeRV ubuntu
|
||||
keywords: ubuntu, riscv, lichee
|
||||
update:
|
||||
- date: 2022-12-01
|
||||
version: v0.1
|
||||
author: wonder
|
||||
content:
|
||||
- Create file
|
||||
---
|
||||
|
||||
Ubuntu released the image file which can run on LicheeRV. But we can't burn this image file with PhoenixCard application, so here are steps.
|
||||
|
||||
After booting this system on LicheeRV, we can use mouse and keyboard to operate this system if connecting this board with HDMI screen, otherwise we can only operate this system by serial communication.
|
||||
|
||||
## Ubuntu Introduction
|
||||
|
||||
Ubuntu is based on another linux distribution Debian, and we can find many answers from internet when meet trouble, which is friendly to beginners and helps them find solutions quickly when they have trouble.
|
||||
|
||||
Because of the limited performance, it's suggested running this system by command edition. If you need graphical interface, you need to do it by yourself.
|
||||
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/d1_ubuntu_desktop.jpg" alt="d1_ubuntu_desktop" width="45%">
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/d1_ubuntu_desktop_picture.jpg" alt="d1_ubuntu_desktop_picture" width="45%">
|
||||
|
||||
The photo above is D1 Dock Pro,and it's different with Dock board, Dock Pro board contains USB uart port, by which we can communicate the board card with the computer with only one USB TypeC cable. The relevant peripherals can be seen in the following figure.
|
||||
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/dock_pro_top_block.jpg" alt="dock_pro_top_block" width="45%">
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/dock_pro_bottom_block.jpg" alt="dock_pro_bottom_block" width="45%">
|
||||
|
||||
This board can be bought from [aliexpress](https://www.aliexpress.com/item/1005003741287162.html?).
|
||||
|
||||
## Steps
|
||||
|
||||
### Get image
|
||||
|
||||
We upload this image file on [mege]().
|
||||
|
||||
百度网盘: https://pan.baidu.com/s/1OrePh_HamqAuLi5T_66ScA
|
||||
提取码: dock
|
||||
|
||||
### 软件获取
|
||||
|
||||
可以前往 [balenaEtcher](https://www.balena.io/etcher/) 官网下载软件或者[下载站](https://dl.sipeed.com/shareURL/others/balenaEtcher)下载,其中下载站仅提供 Windows 版本软件,其他系统想用这个软件自行前往 [balenaEtcher](https://www.balena.io/etcher/) 官网下载。
|
||||
|
||||
### 烧录系统
|
||||
|
||||
准备一张容量 8G 以上的内存卡,读写速度快一些的卡能带来更好的体验。
|
||||
|
||||
将 TF 卡与电脑连接起来,使用读卡器或者其他方式都可以。下图的电脑上的 TF 卡槽仅做示例,电脑上没有 TF 卡读取插槽的话依然是需要准备读卡器的。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th colspan="2"> 将 TF 卡与电脑连接 </th>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>使用读卡器来连接 TF 卡和电脑</td>
|
||||
<td>直接使用电脑上的 TF 卡插槽来连接</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="./../../../zh/lichee/assets/RV/ubuntu/d1_ubuntu_sdcard_reader.jpg" alt="d1_ubuntu_sdcard_reader" ></td>
|
||||
<td><img src="./../../../zh/lichee/assets/RV/ubuntu/d1_ubuntu_sdcard_computer_reader.jpg" alt="d1_ubuntu_sdcard_computer_reader" ></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
打开 balenaEtcher,选择所下载的镜像文件,选择 TF 卡,点击烧录:
|
||||
|
||||

|
||||
|
||||
要注意的是烧录的时候别选错了 TF 卡。
|
||||
|
||||

|
||||
|
||||
烧录时间有点久,烧录结束后会出现下图的提示。如果不是 Successful 的话就需要重新烧录。
|
||||
|
||||

|
||||
|
||||
## 启动系统
|
||||
|
||||
烧录完系统且看到 Successful 字样后,可以将 TF 卡插到板子上启动了。
|
||||
|
||||

|
||||
|
||||
使用串口可以查看启动信息,并且操作板卡。
|
||||
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/d1_ubuntu_boot_opensbi.jpg" alt="d1_ubuntu_boot_opensbi" width="45%">
|
||||
<img src="./../../../zh/lichee/assets/RV/ubuntu/ubuntu_boot.jpg" alt="ubuntu_boot" width="45%">
|
||||
|
||||
等待启动一段时间后,使用 `root` 作为用户名和密码就可以登录进板卡了,
|
||||
|
||||

|
||||
|
||||
## 连接 wifi
|
||||
|
||||
然后使用 `nmcli` 命令来连接 2.4G 无线网络。
|
||||
|
||||
- 查看周围的 wifi
|
||||
|
||||
```bash
|
||||
nmcli dev wifi
|
||||
```
|
||||
|
||||

|
||||
|
||||
- 使用命令行来连接 wifi,语法为 `nmcli dev wifi connect (网络名称) password (密码)`
|
||||
|
||||
```bash
|
||||
nmcli dev wifi connect Sipeed_Guest password 12345678
|
||||
```
|
||||
|
||||

|
||||
|
||||
出现 successfully 就表示连接上了,后面可以正常使用 `apt` 等软件了
|
||||
|
||||

|
||||
|
||||
## 点灯
|
||||
|
||||
在这个 ubuntu 系统上,我们可以向之前使用 tina 系统时一样,控制核心板上的 led 灯。相关代码和结果如下所示:
|
||||
|
||||
点亮板卡上的 LED :
|
||||
|
||||
```bash
|
||||
echo 1 > /sys/class/leds/\:status/brightness
|
||||
```
|
||||
|
||||
上面的命令中的 `:` 使用了 "\" 进行转义,不然会报错。
|
||||
|
||||

|
||||
|
||||
熄灭板卡上的 LED :
|
||||
|
||||
```bash
|
||||
echo 0 > /sys/class/leds/\:status/brightness
|
||||
```
|
||||
|
||||

|
||||
|
||||
## 结语
|
||||
|
||||
在 Ubuntu 官方所提供的镜像上[点我跳转](https://wiki.ubuntu.com/RISC-V/LicheeRV),我们这边补上了 wifi 驱动免去了自行编译的麻烦。
|
||||
176
docs/hardware/en/maix/m1s/other/others.md
Normal file
176
docs/hardware/en/maix/m1s/other/others.md
Normal file
@@ -0,0 +1,176 @@
|
||||
---
|
||||
title: M1s DOCK other usages
|
||||
keywords: M1s DOCK ,BL808, M1s
|
||||
update:
|
||||
- date: 2022-12-04
|
||||
version: v0.1
|
||||
author: wonder
|
||||
content:
|
||||
- Create file
|
||||
---
|
||||
|
||||
> Please use translation tool to read this page.
|
||||
|
||||
Here are some steps like how to remove camera or screen.
|
||||
|
||||
## Remove the screen
|
||||
|
||||
默认发货的板卡的摄像头和屏幕是同一方向的,有时候因为一些原因比如调整摄像头方向需要拆卸屏幕,这里写一下注意事项。
|
||||
|
||||
| 屏幕与摄像头同向 | 摄像头放在背部 |
|
||||
| ------------------------------------------------------------- | ----------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
屏幕与板卡是通过泡沫胶粘在一起的,因此拆卸屏幕的时候需要撕开泡沫胶。这时需要注意应该对屏幕背板的金属层用力,而不是扣屏幕边缘。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="sponge_glue_strip" src="./assets/others/sponge_glue_strip.jpg" width="150%"></td>
|
||||
<td><img alt="sponge_glue_strip_top" src="./assets/others/sponge_glue_strip_top.jpg" width="150%"></td>
|
||||
<td>旁边两张图可以看到<br>屏幕与板子是通过泡沫胶粘在一起的</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="screen_back_plane" src="./assets/others/screen_back_plane.png" width="150%"></td>
|
||||
<td>中间为屏幕背板金属层,<br>旁边的黑色部分为屏幕边缘,<br>拆卸的时候后需要对屏幕背板金属层用力</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="screen_connector" src="./assets/others/screen_connector.jpg" ></td>
|
||||
<td>打开面板后注意屏幕与板子的连接方式如左图所示,<br>不要连接反了</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
## 更换摄像头方向
|
||||
|
||||
进行完前面的[拆卸屏幕](#拆卸屏幕)后期,可以将摄像头调整的前后方向了。
|
||||
唯一要注意的就是在连接摄像头排线的时候别接反了。
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="camera_direction_connector" src="./assets/others/camera_direction_connector.jpg" ></td>
|
||||
<td>连接的时候注意将摄像头上的 1 与板子上的 1 对上就行</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
## 安装外壳
|
||||
|
||||
在购买 M1s Dock 的时候可以选购外壳,这里补充一下组装方法。
|
||||
|
||||
摄像头有两个方向可以自行选择,下面会进行说明。
|
||||
|
||||
拆成散件,首先要讲板子的屏幕和摄像头都拆下来,并且把外壳打开。参考下图排布方式。
|
||||
|
||||

|
||||
|
||||
摄像头有前有两种组装方式,分别是摄像头拍摄方向与屏幕相同和拍摄方向与屏幕相反。
|
||||
|
||||
### 屏幕与摄像头方向相同
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="insert_camera_front_1" src="./assets/others/insert_camera_front_1.jpg" ></td>
|
||||
<td><img alt="insert_camera_front_2" src="./assets/others/insert_camera_front_2.jpg" ></td>
|
||||
<td>首先将摄像头嵌入在外壳里面,正常组装上之后摄像头会被轻微固定在外壳上,确保安装的时候无偏移,摄像头居中。</td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="insert_screen_side_1.jpg" src="./assets/others/insert_screen_side_1.jpg" ></td>
|
||||
<td><img alt="insert_screen_side_2.jpg" src="./assets/others/insert_screen_side_2.jpg" ></td>
|
||||
<td>板子与屏幕连接好后,将屏幕穿过外壳</td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td>旋转外壳使板子上的 TF 卡槽<br>与外壳上的 SiPEED logo 同方向</td>
|
||||
<td>将两个 TypeC 口对准壳子上的孔,准备安装板子进外壳</td>
|
||||
<td>按压箭头指向的地方,首次按压的时候有一点紧,注意对准 TypeC 口。安装板子进入外壳</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img alt="insert_screen_direction_1" src="./assets/others/insert_screen_direction_1.jpg" ></td>
|
||||
<td><img alt="insert_screen_direction_2" src="./assets/others/insert_screen_direction_2.jpg" ></td>
|
||||
<td><img alt="insert_screen_direction_3" src="./assets/others/insert_screen_direction_3.jpg" ></td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="insert_camera_interface" src="./assets/others/insert_camera_interface.jpg" ></td>
|
||||
<td><img alt="insert_camera_interface_1" src="./assets/others/insert_camera_interface_1.jpg" ></td>
|
||||
<td>将摄像头排线弯曲,注意不是折叠,是弯曲。穿过板子的预留孔,连接上背面的座子。</td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td>使用壳子上的双面胶固定好屏幕,背部固定好背部,注意背板的预留摄像头孔应对着模组。</td>
|
||||
<td><img alt="fix_screen" src="./assets/others/fix_screen.jpg" ></td>
|
||||
<td><img alt="fix_panel" src="./assets/others/fix_panel.jpg" ></td>
|
||||
</tr>
|
||||
</table><br>
|
||||
|
||||
到此就已经组装完毕了。
|
||||
|
||||
### 屏幕与摄像头方向不同
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img alt="opposite_screen" src="./assets/others/opposite_screen.jpg" ></td>
|
||||
<td><img alt="opposite_cam" src="./assets/others/opposite_cam.jpg" ></td>
|
||||
<td>首先将摄像头和屏幕安装到板子上,摄像头应与模组同方向</td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td>将板子穿过壳子</td>
|
||||
<td>最终结果如下</td>
|
||||
<td>调整方向让板子的 TF 卡槽与壳子上的 SiPEED logo 方向相同</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img alt="opposite_insert_screen_1" src="./assets/others/opposite_insert_screen_1.jpg" ></td>
|
||||
<td><img alt="opposite_insert_screen_2" src="./assets/others/opposite_insert_screen_2.jpg" ></td>
|
||||
<td><img alt="opposite_insert_screen_3" src="./assets/others/opposite_insert_screen_3.jpg" ></td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td>将两个 TypeC 口对准壳子上的孔,准备自装板子进外壳</td>
|
||||
<td>按压箭头指向的地方,首次按压的时候有一点紧,注意对准 TypeC 口。安装板子进入外壳</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img alt="insert_screen_direction_2" src="./assets/others/insert_screen_direction_2.jpg" ></td>
|
||||
<td><img alt="insert_screen_direction_4" src="./assets/others/insert_screen_direction_4.jpg" ></td>
|
||||
</tr>
|
||||
</table><br>
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="3">将摄像头穿过外壳,慢慢的滑动外壳来刚好将摄像头固定在板子模组上</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img alt="opposite_fix_cam_1" src="./assets/others/opposite_fix_cam_1.jpg" ></td>
|
||||
<td><img alt="opposite_fix_cam_2" src="./assets/others/opposite_fix_cam_2.jpg" ></td>
|
||||
<td><img alt="opposite_fix_cam_3" src="./assets/others/opposite_fix_cam_3.jpg" ></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
安装好屏幕,到这里就已经完成组装了。
|
||||
|
||||

|
||||
|
||||
## 拆卸外壳
|
||||
|
||||
首先在屏幕背面,使用镊子或其他工具翘起来外壳,将其取下。
|
||||
|
||||

|
||||
|
||||
使用镊子,在外壳 Logo 处的哪个孔哪里,把板子从外壳中翘出来。
|
||||
|
||||
<img src="./assets/others/disassemble_hole.jpg" alt="disassemble_hole" width="45%">
|
||||
<img src="./assets/others/disassemble_hole_1.jpg" alt="disassemble_hole_1" width="45%">
|
||||
|
||||
然后对屏幕的背板用力,将屏幕顶出外壳
|
||||
|
||||

|
||||
|
||||
到此拆卸外壳结束。
|
||||
15
docs/hardware/en/maix/m1s/other/questions.md
Normal file
15
docs/hardware/en/maix/m1s/other/questions.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
title: M1s DOCK Questions
|
||||
keywords: M1s DOCK ,BL808, M1s
|
||||
update:
|
||||
- date: 2022-12-03
|
||||
version: v0.1
|
||||
author: wonder
|
||||
content:
|
||||
- Create file
|
||||
---
|
||||
|
||||
## c906_app/build_out/xxxxx/.map:No such file or dictionary
|
||||
|
||||
When compiling your firmware, make sure your command is `./build.sh demo_name`, like `./build.sh hello_world`, not `./build.sh hello_world/` (pay atention to the end symbol `/`)
|
||||
|
||||
120
docs/hardware/en/maix/m1s/other/start.md
Normal file
120
docs/hardware/en/maix/m1s/other/start.md
Normal file
@@ -0,0 +1,120 @@
|
||||
---
|
||||
title: M1s DOCK guides
|
||||
keywords: M1s DOCK ,BL808, M1s
|
||||
update:
|
||||
- date: 2022-12-03
|
||||
version: v0.1
|
||||
author: wonder
|
||||
content:
|
||||
- Create file
|
||||
---
|
||||
|
||||
The M1s Dock can be used for a variety of interesting things by its delicate design. Here we tell the usage about this device
|
||||
|
||||
## Power On
|
||||
|
||||
First time to start M1s Dock, screen displays what the camera captures, and the number on the screen changes of you press the keys on the side.
|
||||
|
||||

|
||||
|
||||
A virtual removable disk whose storage capacity is 3M will be shown on your computer if you connect this board with your computer by TypeC OTG port on this board.
|
||||
|
||||

|
||||
|
||||
2 serial devides will be shown on your computer if you connect this board with your computer by TypeC UART port on this board.
|
||||
|
||||

|
||||
|
||||
## Burn with u-disk
|
||||
|
||||
It's suggested using this way to burn firmware, by which we can burn the program for C906 core in the chip.
|
||||
|
||||
Connect this board by its TypeC OTG port with computer, hold the 2 sides keys (which have been marked on the following figure) of M1s Dock, then press RST button to make this board into u-disk burn mode.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/udisk_burn.png" alt="udisk_burn" style="transform:rotate(0deg);"></td>
|
||||
<td>Hold 2 side keys and press RST,make M1s Dock into u-disk burn mode</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Besides, when 2 side keys are being pressed, power on this board can make this board into u-disk burn mode too.
|
||||
|
||||
<img src="./../../../../zh/maix/m1s/other/assets/start/udisk_in_computer.png" alt="udisk_in_computer" style="transform:rotate(0deg);">
|
||||
|
||||
A removable disk with tiny storage capacity will be shown on your computer if this board is in u-disk burn mode. Just drag the firmware <a href="https://dl.sipeed.com/shareURL/MAIX/M1s/M1s_Dock/7_Firmware/demo_bin"> Here are some demo bins </a> into the removable disk to burn the firmware.
|
||||
|
||||
<img src="./../../../../zh/maix/m1s/other/assets/start/udisk_burn.gif" alt="udisk_burn" style="transform:rotate(0deg);">
|
||||
|
||||
After succeed dragging the firmware bin into removable disk, the board will reboot and the u-disk is removed. Try to repower on this board if its not working well after burnning firmware.
|
||||
|
||||
## Burn with UART
|
||||
|
||||
The u-disk burnning method above is used to burn firmware for C906 core, and if there are some trouble with firmware or when we need to upgrade the whole firmware, we need to burn this board by UART.
|
||||
|
||||
### Burn for M1s
|
||||
|
||||
Connect this board by its TypeC UART port with computer, 2 serial port will be shown on your computer (If your mouse doesn't work after connecting board with computer, please disconnect board with computer and visit [Burn onboard bl702](#burn-onboard-bl702) to solve this problem).
|
||||
|
||||
To burn for M1s, we need bouffalolab official burning application, visit https://dev.bouffalolab.com/download and download the file named `Bouffalo Lab Dev Cube`. Decompress the downloaded file then we get the application to burn the board.
|
||||
|
||||

|
||||
|
||||
We mainly use `BLDevCube`, `BLDevCube-macos` and `BLDevCube-ubuntu` these three files, by which to burn our board on different OS.
|
||||
|
||||

|
||||
|
||||
Run the application, choose bl808, then we put this [partition file](https://dl.sipeed.com/fileList/MAIX/M1s/M1s_Dock/7_Firmware/partition/partition_cfg_16M_m1sdock.toml) in partition table (marked with ②) in IOT page.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/chip_selection.png" alt="chip_selection" style="transform:rotate(0deg);"></td>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/choose_partition.png" alt="choose_partition" style="transform:rotate(0deg);" width="70%"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
After select the partition file, we have more choice in this page. We just need `boot2`, `firmware` and `d0fw` these optitions.
|
||||
|
||||
<img src="./../../../../zh/maix/m1s/other/assets/start/firmware_choose.png" alt="firmware_choose" style="transform:rotate(0deg);">
|
||||
|
||||
In the picture abuve, `boot2` is never changed, and it's in this dictionary: `BLDevCube\chips\bl808\builtin_imgs\boot2_isp_bl808_v6.4_rc6`, under where the path if this burning application is. `firmware` is the firmware file for E907 cpre, and `d0fw` is C906 core file, the previous [Burn with u-disk](#burn-with-u-disk) operation can also burn firmware for this core.
|
||||
|
||||
The firmware file for E907 or C906 can be gotten by compiling [M1s_dock example](https://gitee.com/sipeed/M1s_BL808_example).
|
||||
|
||||
The default firmware can be downloaded [here](https://dl.sipeed.com/shareURL/MAIX/M1s/M1s_Dock/7_Firmware/factory).
|
||||
|
||||
After choose the firmware, click the `Refresh` in the righr to refresh the serial port, then we can see 2 serial ports. If there are not 2 serial ports, visit [Burn onboard bl702](#burn-onboard-bl702) to solve this. We choose the bigger number serial port, and set uartrate 2000000 .
|
||||
|
||||

|
||||
|
||||
Click `Create & Download`, hole the BOOT key and RST KEY onboard, then release RST key first then release BOOT key to burn firmware for this board.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/boot_rst.jpg" alt="boot_rst" style="transform:rotate(0deg);"></td>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/finish_burning.png" alt="finish_burning" style="transform:rotate(0deg);" width="70%"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
### Burn onboard bl702
|
||||
|
||||
Generally speaking, we do this only when there is some trouble with our board.
|
||||
|
||||
Hold BOOT key before power this device, then connect this board ti==with computer by the UART TypeC USB port, after this the onboard is in download mode. Run `BLDevCube`, choose `BL702`, then in MCU page, choose the firmware. Here we have provided the [firmware](https://dl.sipeed.com/shareURL/MAIX/M1s/M1s_Dock/7_Firmware), download the file whose name starts with `usb2dualuart_bl702`.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/select_bl702.png" alt="select_bl702" style="transform:rotate(0deg);"></td>
|
||||
<td><img src="./../../../../zh/maix/m1s/other/assets/start/mcu_mode.png" alt="mcu_mode" style="transform:rotate(0deg);" width="70%"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Click `Refresh`,choose the serial port (there is only one port, if you can't see this port, make sure you have hold BOOT key before power this device), set UartRate 2000000, click `Create & Diwnload`.
|
||||
|
||||

|
||||
|
||||
After finishing burning, repower this board to use the new firmware.
|
||||
|
||||

|
||||
|
||||
## SDK Compile
|
||||
@@ -72,7 +72,20 @@
|
||||
},
|
||||
{
|
||||
"label": "M1s Board",
|
||||
"file": "maix/m1s/m1s_dock.md"
|
||||
"items":[
|
||||
{
|
||||
"label":"Introduction",
|
||||
"file":"maix/m1s/m1s_dock.md"
|
||||
},
|
||||
{
|
||||
"label":"Usage",
|
||||
"file":"maix/m1s/other/start.md"
|
||||
},
|
||||
{
|
||||
"label":"Others",
|
||||
"file":"maix/m1s/other/others.md"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "M1s Machine Key",
|
||||
|
||||
Reference in New Issue
Block a user