linuxcnc-hal-sys 0.1.5

Generated, unsafe Rust bindings to the LinuxCNC HAL submodule
Documentation
1
2
3
4
5
6
7
8
9
10
component mult2 "Product of two inputs";
pin in float in0;
pin in float in1;
pin out float out "out = in0 * in1";
function _;
license "GPL";
;;
FUNCTION(_) {
    out = in0 * in1;
}