Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/kiri-moto/gcode-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Allows for intro comment and config list to be re-positioned after the header or
- \{pos_x\} = last output X position
- \{pos_y\} = last output Y position
- \{pos_z\} = last output Z position
- \{stock_z\} = max stock volume height in mm

### CAM Header Directives

Expand Down
3 changes: 2 additions & 1 deletion src/kiri/mode/cam/work/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ export function cam_export(print, online) {
bottom: (offset ? 0 : -dev.bedDepth / 2),
time_sec: 0,
time_ms: 0,
time: 0
time: 0,
stock_z: stock.z
};

// console.log({ offset, origin, stock });
Expand Down