Working linuxcnc lathe config with 2 ms cycle time

This commit is contained in:
Hakan Bastedt
2024-04-07 21:53:25 +02:00
parent a829b0c6e2
commit ed8e4d8d39
66 changed files with 10534 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
component metalmusings_encoder;
pin io bit index-c-enable;
pin in u32 index-status;
pin out u32 index-latch-enable;
function _;
license "GPL";
;;
//main function
FUNCTION(_) {
index_latch_enable = index_c_enable;
index_c_enable = index_status;
}