关闭 SERIAL_ERRORLN()需要强制转换为整数。#148 特兰托 打开此问题 on Apr 20, 2012 ·2条评论 评论 特兰托 评论的 on Apr 20, 2012 调试一些温度传感器配置问题时,我注意到temperature.cpp中有类似这样的代码。(其中e是一个uint8_t。) 串行错误启动; 序列错误(e); 序列错误LNPGM(”:挤出机关闭。最高温度触发! “); 修复方法是将e强制转换为int。 序列错误((整数)e); 这需要应用于temperaturate.cpp中的max_temp_error()和min_temp_error()。 贡献者 布库比切克 评论的 on Apr 23, 2012 固定的 布库比切克 关闭此为 已完成 on Apr 23, 2012 小怪物 参考的 本期 在stipmonster/马林-bfb-sk 1 llz on Oct 31, 2013 fixed catsting to (int)e in serial error messages. … 33bb044 伯尔 移走 T:功能请求 用户请求的功能。PR:改善 标号 on Jun 29, 2015 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Display bed leveling results numerically MarlinFirmware#148 已核实 ae849e9 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Display bed leveling results numerically improvements MarlinFirmware#148 … 已核实 fa409a7 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Some sequence improvements MarlinFirmware#148 已核实 c2975e0 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Change SPs from 0x5000 onwards in an attempt to resolve color issues M… … 已核实 8ea758c 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Fix colors and actual display (got hex and decimal mixed up ?) Marlin… … 已核实 4768f1e 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Color algorithm improvements MarlinFirmware#148 已核实 cf19517 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Temporarily use the CR-6 SE progress icons for the MAX MarlinFirmware… … 已核实 9e5e126 八月246 推送提交 至8月246日/马林 引用了 本期 on May 18, 2021 Re-enable custom icons for the CR-6 MAX pending commit from @grobux M… … 已核实 f25d7ea 吉图亚行动 机器人 评论的 on Apr 15, 2022 此问题已自动锁定,因为在关闭后没有任何近期活动。请为相关错误打开一个新问题。 吉图亚行动 机器人 锁定和限制与协作者的对话 on Apr 15, 2022 喜欢 (0) 功能请求: 双挤出机支架的工具头距离定义 #146 用UNL2003运行grbl #144 v1.3.8-EDGE 重启后键盘快捷键消失 #427 关闭 无法在 gsender 1.2.0 中打开 .gcode 文件 #367 RaspberryPi 运行 gsender 时出现问题 #89 向 fluidnc 发送 $$ 会导致 gsender 崩溃 #473 v1.3.8-EDGE 重启后键盘快捷键消失 #427 关闭无法在 gsender 1.2.0 中打开 .gcode 文件 #367RaspberryPi 运行 gsender 时出现问题 #89向 fluidnc 发送 $$ 会导致 gsender 崩溃 #473功能请求:抑制发送到机器的 gcode 中的 gcode 注释。 #444 关闭通过网络连接进行连接 #171操纵杆运动的剩余问题 #204 关闭新版本认为我的机器一直处于锁定状态 #474 关闭
调试一些温度传感器配置问题时,我注意到temperature.cpp中有类似这样的代码。(其中e是一个uint8_t。)
串行错误启动;
序列错误(e);
序列错误LNPGM(”:挤出机关闭。最高温度触发! “);
修复方法是将e强制转换为int。
序列错误((整数)e);
这需要应用于temperaturate.cpp中的max_temp_error()和min_temp_error()。