├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── LinuxCNC driver ├── README └── udp.comp ├── LinuxCNC test config └── udp-test │ ├── autosave.halscope │ ├── udp-display.hal │ ├── udp-display.xml │ ├── udp-test.hal │ ├── udp-test.ini │ ├── udp-test.ngc │ ├── udp-test.tbl │ ├── udp-test.var │ └── udp.comp ├── README.md ├── pic ├── sp-accel-pv diagram.png └── step-dir-waveform.png ├── platformio.ini ├── sdkconfig.esp32doit-devkit-v1 └── src ├── CMakeLists.txt ├── comm.h ├── globals.h ├── hardware.h ├── io.h ├── main.c ├── stepgen.h ├── w5500.c ├── w5500.defs.h └── w5500.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LICENSE -------------------------------------------------------------------------------- /LinuxCNC driver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC driver/README -------------------------------------------------------------------------------- /LinuxCNC driver/udp.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC driver/udp.comp -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/autosave.halscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/autosave.halscope -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-display.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-display.hal -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-display.xml -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-test.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-test.hal -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-test.ini -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-test.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-test.ngc -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-test.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-test.tbl -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp-test.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp-test.var -------------------------------------------------------------------------------- /LinuxCNC test config/udp-test/udp.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/LinuxCNC test config/udp-test/udp.comp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/README.md -------------------------------------------------------------------------------- /pic/sp-accel-pv diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/pic/sp-accel-pv diagram.png -------------------------------------------------------------------------------- /pic/step-dir-waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/pic/step-dir-waveform.png -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/platformio.ini -------------------------------------------------------------------------------- /sdkconfig.esp32doit-devkit-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/sdkconfig.esp32doit-devkit-v1 -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/comm.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/hardware.h -------------------------------------------------------------------------------- /src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/io.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/main.c -------------------------------------------------------------------------------- /src/stepgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/stepgen.h -------------------------------------------------------------------------------- /src/w5500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/w5500.c -------------------------------------------------------------------------------- /src/w5500.defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/w5500.defs.h -------------------------------------------------------------------------------- /src/w5500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzolee/HAL2UDP/HEAD/src/w5500.h --------------------------------------------------------------------------------