WIP circular interpolation

This commit is contained in:
2020-05-14 00:19:39 +02:00
parent ff7f9d148f
commit 7831a23aa5
3 changed files with 205 additions and 117 deletions

View File

@@ -21,8 +21,8 @@ class InstructionSet
public function apply(Block $block): void
{
system('clear');
print("\n$block\n\n");
// system('clear');
// print("\n$block\n\n");
foreach ($block->words as $word) {
if (method_exists($this, "$word")) {
// There's a method dedicated to handling the full word (eg G22)
@@ -42,8 +42,6 @@ class InstructionSet
print("WARNING: No method or register for word '{$word}'\n");
}
}
dump($this->CNC6600->DR);
readline();
}