Compare commits

...

1 Commits

Author SHA1 Message Date
5c87b1067f Implemented M67 2020-05-14 12:26:29 +02:00

View File

@ -326,6 +326,9 @@ class InstructionSet
protected function M67(Block $block): void
{
throw new RuntimeException('[Enter new tool information without machine stop] is not implemented');
$T = $block->pop('T');
$this->CNC6600->TM->read($T);
$this->CNC6600->DR->T = $T;
}
}