Skip to content
Open
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
3 changes: 3 additions & 0 deletions src/emc/task/taskclass.cc
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,9 @@ int Task::emcIoAbort(EMC_ABORT /*reason*/)//EMC_TOOL_ABORT_TYPE
iocontrol_data.coolant_flood = 0; /* coolant flood output pin */
iocontrol_data.tool_change = 0; /* abort tool change if in progress */
iocontrol_data.tool_prepare = 0; /* abort tool prepare if in progress */
// release task wait on pending tool-change/prepare (old NML iocontrol
// returned RCS_DONE by default; in-process call must do it explicitly)
emcioStatus.status = RCS_STATUS::DONE;
return 0;
}

Expand Down
Loading