disable short comp. update todo. tweak n2 pre/post
This commit is contained in:
parent
f2d5abcc72
commit
9dc1c03bdf
3 changed files with 10 additions and 8 deletions
|
|
@ -448,12 +448,12 @@ var gs_kiri_fdm = exports;
|
||||||
// usually outer shell (finish speed) override
|
// usually outer shell (finish speed) override
|
||||||
outMMM = out.speed * 60;
|
outMMM = out.speed * 60;
|
||||||
}
|
}
|
||||||
if (layer > 0 && dist < shortDist) {
|
// if (layer > 0 && dist < shortDist) {
|
||||||
outMMM = shortMMM + ((outMMM - shortMMM) * (dist / shortDist));
|
// outMMM = shortMMM + ((outMMM - shortMMM) * (dist / shortDist));
|
||||||
} else {
|
// } else {
|
||||||
// approximate compensation for acceleration & deceleration
|
// approximate compensation for acceleration & deceleration
|
||||||
time += (shortDist * 2) / outMMM / 10 * 60;
|
time += (shortDist * 2) / outMMM / 10 * 60;
|
||||||
}
|
// }
|
||||||
// print time
|
// print time
|
||||||
time += (dist / outMMM) * 60;
|
time += (dist / outMMM) * 60;
|
||||||
moveTo({x:x, y:y, e:emitMM}, outMMM);
|
moveTo({x:x, y:y, e:emitMM}, outMMM);
|
||||||
|
|
|
||||||
1
notes.md
1
notes.md
|
|
@ -1,5 +1,6 @@
|
||||||
# Kiri:Moto todo
|
# Kiri:Moto todo
|
||||||
|
|
||||||
|
* store settings profile used per-device so re-loaded on device switch
|
||||||
* prevent text selection of non-input
|
* prevent text selection of non-input
|
||||||
* widget general add-ons (fdm supports, cam tabs)
|
* widget general add-ons (fdm supports, cam tabs)
|
||||||
* bail on decimation if it's proving ineffective
|
* bail on decimation if it's proving ineffective
|
||||||
|
|
|
||||||
|
|
@ -11,12 +11,12 @@
|
||||||
"M107",
|
"M107",
|
||||||
"G28 X0 Y0",
|
"G28 X0 Y0",
|
||||||
"G28 Z0",
|
"G28 Z0",
|
||||||
"G1 Z0.5 F6000.00",
|
"G1 Z0.05 F6000.00",
|
||||||
"G92 E0",
|
"G92 E0",
|
||||||
"G1 X10 F600",
|
";G1 X10 F600",
|
||||||
"G1 F140 E29",
|
"G1 F140 E29",
|
||||||
"G1 F600 E28",
|
"G1 F600 E28",
|
||||||
"G1 Y20 Z0.05 F2000",
|
"G1 X15 Y15 Z0.02 F2000",
|
||||||
";G92 E0",
|
";G92 E0",
|
||||||
"G1 F6000.00",
|
"G1 F6000.00",
|
||||||
"M117 Printing...",
|
"M117 Printing...",
|
||||||
|
|
@ -30,7 +30,8 @@
|
||||||
"M140 S0",
|
"M140 S0",
|
||||||
"G91",
|
"G91",
|
||||||
"G1 E-1 F300",
|
"G1 E-1 F300",
|
||||||
"G1 Z+0.5 E-5 X-20 Y-20 F9000.00",
|
"G1 E-5 X20 Y20 F9000.00",
|
||||||
|
"G1 Z0.5 E-5 X-20 Y-20 F9000.00",
|
||||||
"G28 X0 Y0",
|
"G28 X0 Y0",
|
||||||
"M84",
|
"M84",
|
||||||
"G90"
|
"G90"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue