-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from Jomo-desktop/ndev
读取id及烧录文档更新
- Loading branch information
Showing
20 changed files
with
431 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# 读取ID | ||
|
||
<!-- tabs:start --> | ||
|
||
### **USB ID读取方法** | ||
|
||
1.[连接到SSH](/board/fly_C8/ssh "点击即可跳转"),然后输入 ``ls /dev/serial/by-id/*`` 回车。如果一切正常,则会出现下面一行蓝色的ID。 | ||
|
||
<img src="../../images/boards/fly_super8/id.png" alt="id" style="zoom:80%;" /> | ||
|
||
2.在左侧边栏的配置选项里找到:fluidd为:``{…}`` ;mainsail为:``机器``,点击进去,即可找到``printer.cfg`` | ||
|
||
![fluidd](../../images/boards/fly_super8/fluidd.png) | ||
|
||
3.将蓝色的ID复制,填写到``printer.cfg``里。保存重启后即可连上主板。若Klipper提示 ``ADC out of range``为正常现象,将热床和热敏连接好,配置好喷头、热床的热敏引脚和输出引脚,再保存重启即可。 | ||
|
||
<img src="../../images/boards/fly_super8/id2.png" alt="id2" style="zoom:80%;" /> | ||
|
||
### **CAN ID读取方法** | ||
|
||
> [!TIP] | ||
> 已经识别到的CAN ID是不会被查找到的(即已经写入配置文件printer.cfg中的ID,连接成功并正常运行的,是不会被查找到的) | ||
|
||
|
||
> [!Tip] | ||
> | ||
> 请确保上位机的can0、桥接主板的CAN速率、CAN工具板的速率完全一致 | ||
```bash | ||
[mcu] | ||
canbus_uuid: b7c79ec3f948 #将读取到的uuid填写到此处 | ||
``` | ||
|
||
也可以在SSH中输入下面的命令查找uuid | ||
|
||
```bash | ||
~/klippy-env/bin/python ~/klipper/scripts/canbus_query.py can0 | ||
``` | ||
|
||
![uuid](../../images/boards/fly_sht36_42/uuid.png) | ||
|
||
出现``Found canbus_uuid=b7c79ec3f948``则查找到设备ID,其中``b7c79ec3f948``为设备UUID。 | ||
|
||
> [!TIP] | ||
> 如果找不到CAN ID,请检查: | ||
* 是否正确供电 | ||
* 您的镜像内核是否支持CAN | ||
* 固件编译是否正确 | ||
|
||
<!-- tabs:end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# 5. FLY-D7接线 | ||
|
||
**接线图制作中,敬请期待** | ||
> [!WARNING] | ||
> | ||
> 如果不使用UART功能,请务必在下图中插入两个跳线帽,否则主板不能正常使用!!! | ||
<img src="../../images/boards/fly_d7/jumper_uart.png" alt="jumper_uart" style="zoom:80%;" /> | ||
|
||
**其余接线图正在制作中,敬请期待** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# 读取ID | ||
|
||
<!-- tabs:start --> | ||
|
||
### **USB ID读取方法** | ||
|
||
1.[连接到SSH](/board/fly_C8/ssh "点击即可跳转"),然后输入 ``ls /dev/serial/by-id/*`` 回车。如果一切正常,则会出现下面一行蓝色的ID。 | ||
|
||
<img src="../../images/boards/fly_super8/id.png" alt="id" style="zoom:80%;" /> | ||
|
||
2.在左侧边栏的配置选项里找到:fluidd为:``{…}`` ;mainsail为:``机器``,点击进去,即可找到``printer.cfg`` | ||
|
||
![fluidd](../../images/boards/fly_super8/fluidd.png) | ||
|
||
3.将蓝色的ID复制,填写到``printer.cfg``里。保存重启后即可连上主板。若Klipper提示 ``ADC out of range``为正常现象,将热床和热敏连接好,配置好喷头、热床的热敏引脚和输出引脚,再保存重启即可。 | ||
|
||
<img src="../../images/boards/fly_super8/id2.png" alt="id2" style="zoom:80%;" /> | ||
|
||
### **CAN ID读取方法** | ||
|
||
> [!TIP] | ||
> 已经识别到的CAN ID是不会被查找到的(即已经写入配置文件printer.cfg中的ID,连接成功并正常运行的,是不会被查找到的) | ||
|
||
|
||
> [!Tip] | ||
> | ||
> 请确保上位机的can0、桥接主板的CAN速率、CAN工具板的速率完全一致 | ||
```bash | ||
[mcu] | ||
canbus_uuid: b7c79ec3f948 #将读取到的uuid填写到此处 | ||
``` | ||
|
||
也可以在SSH中输入下面的命令查找uuid | ||
|
||
```bash | ||
~/klippy-env/bin/python ~/klipper/scripts/canbus_query.py can0 | ||
``` | ||
|
||
![uuid](../../images/boards/fly_sht36_42/uuid.png) | ||
|
||
出现``Found canbus_uuid=b7c79ec3f948``则查找到设备ID,其中``b7c79ec3f948``为设备UUID。 | ||
|
||
> [!TIP] | ||
> 如果找不到CAN ID,请检查: | ||
* 是否正确供电 | ||
* 您的镜像内核是否支持CAN | ||
* 固件编译是否正确 | ||
|
||
<!-- tabs:end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# 读取ID | ||
|
||
<!-- tabs:start --> | ||
|
||
### **USB ID读取方法** | ||
|
||
1.[连接到SSH](/board/fly_C8/ssh "点击即可跳转"),然后输入 ``ls /dev/serial/by-id/*`` 回车。如果一切正常,则会出现下面一行蓝色的ID。 | ||
|
||
<img src="../../images/boards/fly_super8/id.png" alt="id" style="zoom:80%;" /> | ||
|
||
2.在左侧边栏的配置选项里找到:fluidd为:``{…}`` ;mainsail为:``机器``,点击进去,即可找到``printer.cfg`` | ||
|
||
![fluidd](../../images/boards/fly_super8/fluidd.png) | ||
|
||
3.将蓝色的ID复制,填写到``printer.cfg``里。保存重启后即可连上主板。若Klipper提示 ``ADC out of range``为正常现象,将热床和热敏连接好,配置好喷头、热床的热敏引脚和输出引脚,再保存重启即可。 | ||
|
||
<img src="../../images/boards/fly_super8/id2.png" alt="id2" style="zoom:80%;" /> | ||
|
||
### **CAN ID读取方法** | ||
|
||
> [!TIP] | ||
> 已经识别到的CAN ID是不会被查找到的(即已经写入配置文件printer.cfg中的ID,连接成功并正常运行的,是不会被查找到的) | ||
|
||
|
||
> [!Tip] | ||
> | ||
> 请确保上位机的can0、桥接主板的CAN速率、CAN工具板的速率完全一致 | ||
```bash | ||
[mcu] | ||
canbus_uuid: b7c79ec3f948 #将读取到的uuid填写到此处 | ||
``` | ||
|
||
也可以在SSH中输入下面的命令查找uuid | ||
|
||
```bash | ||
~/klippy-env/bin/python ~/klipper/scripts/canbus_query.py can0 | ||
``` | ||
|
||
![uuid](../../images/boards/fly_sht36_42/uuid.png) | ||
|
||
出现``Found canbus_uuid=b7c79ec3f948``则查找到设备ID,其中``b7c79ec3f948``为设备UUID。 | ||
|
||
> [!TIP] | ||
> 如果找不到CAN ID,请检查: | ||
* 是否正确供电 | ||
* 您的镜像内核是否支持CAN | ||
* 固件编译是否正确 | ||
|
||
<!-- tabs:end --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.