关闭 bkubicek 打开了这个问题 2011 年 9 月 22 日 · 1条评论 关闭 acelleration_st 修复#9 bkubicek 打开了这个问题 2011 年 9 月 22 日 · 1条评论 注释 贡献者 布库比切克 评论了 2011 年 9 月 22 日 在 marlin.pde ~15333 f(((block->acceleration_st / block->step_event_count) * block->steps_z ) > axis_steps_per_sqr_second[Z_AXIS]) block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS]; 这会导致一些舍入误差,从而导致我的 ultimaker 上的 z 加速过大。 if((block->acceleration_st * block->steps_z / block->step_event_count) > axis_steps_per_sqr_second[Z_AXIS]) 效果很好。 bkubicek已完成 关闭 2011 年 11 月 21 日 randomev 提到了这个问题 2013 年 1 月 9 日 + 芬兰语翻译 daid/Marlin#8 合并 sjkelly 提到了这个问题 2013 年 8 月 4 日 RAMBo LCD 支持、附加引脚和 Arduino 附加组件 #572 合并 Roxy-3D 提到了这个问题 2015 年 5 月 1 日 改进 G29 拓扑报告以包括更正后的拓扑。 #1978 关闭 thinkyhead 添加了引用此问题的提交 2015 年 8 月 1 日 Merge pull request #9 from Wackerbarth/rename_beeper …… 77e5fb1 realloser 将提交推送到引用此问题的 realloser/Marlin 2015 年 8 月 1 日 Merged in bryall13/marlin/hb (pull request MarlinFirmware#9) …… 6783e8f thinkyhead 添加了引用此问题的提交 2019 年 8 月 24 日 ADIMLab Granty v1 / v2 (#15017) …… 已验证 20fc66f fmuntean 添加了对引用此问题的 fmuntean/Marlin 的提交 2019 年 9 月 2 日 Squashed commit of the following: …… 5fd68b3 fmuntean 添加了对引用此问题的 fmuntean/Marlin 的提交 2019 年 9 月 3 日 Squashed commit of the following: …… 935bda2 Christoph-D 向 Christoph-D/Marlin 推送了一个引用了这个问题的提交 2020 年 6 月 2 日 Move up nozzle after aborting …… 58f1d18 maz3max 将提交提交到引用此问题的 maz3max/Marlin 2021 年 8 月 24 日 Move up nozzle after aborting …… 已验证 7c05040 arades79 添加了对引用此问题的 CELLINKAB/Marlin 的提交 2022 年 2 月 4 日 U e optical surface probe: MVP (MarlinFirmware#9) …… 已验证 f102185 github-动作 机器人 评论了 2022 年 4 月 24 日 由于关闭后最近没有任何活动,此问题已自动锁定。请为相关错误打开一个新问题。 github-动作 机器人 与合作者的锁定和有限对话 2022 年 4 月 24 日 喜欢 (0) 反向ttl #280 将软件翻译成 DOBOT Mooz 2。 #281 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 关闭
在 marlin.pde ~15333
f(((block->acceleration_st / block->step_event_count) * block->steps_z ) > axis_steps_per_sqr_second[Z_AXIS])
block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS];
这会导致一些舍入误差,从而导致我的 ultimaker 上的 z 加速过大。
if((block->acceleration_st * block->steps_z / block->step_event_count) > axis_steps_per_sqr_second[Z_AXIS])
效果很好。