-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
Submodule grbl
updated
41 files
+1 −0 | CMakeLists.txt | |
+2 −2 | README.md | |
+155 −3 | changelog.md | |
+95 −1 | config.h | |
+15 −13 | core_handlers.h | |
+181 −173 | crossbar.h | |
+6 −2 | driver_opts.h | |
+7 −6 | errors.c | |
+9 −9 | errors.h | |
+32 −40 | gcode.c | |
+2 −1 | gcode.h | |
+1 −1 | grbl.h | |
+31 −4 | grbllib.c | |
+10 −7 | hal.h | |
+12 −0 | ioports.c | |
+14 −11 | kinematics/corexy.c | |
+9 −6 | kinematics/maslow.c | |
+9 −6 | kinematics/wall_plotter.c | |
+35 −21 | machine_limits.c | |
+1 −1 | machine_limits.h | |
+1 −0 | messages.h | |
+96 −14 | ngc_expr.c | |
+2 −2 | ngc_expr.h | |
+95 −40 | ngc_flowctrl.c | |
+131 −1 | ngc_params.c | |
+8 −0 | ngc_params.h | |
+1 −1 | nuts_bolts.c | |
+15 −6 | nvs_buffer.c | |
+13 −7 | pin_bits_masks.h | |
+9 −1 | planner.c | |
+15 −0 | plugins_init.h | |
+40 −24 | report.c | |
+157 −47 | settings.c | |
+30 −27 | settings.h | |
+27 −25 | spindle_control.c | |
+1 −1 | spindle_control.h | |
+0 −1 | stream.c | |
+21 −6 | stream.h | |
+206 −0 | stream_passthru.c | |
+22 −0 | stream_passthru.h | |
+8 −6 | system.c |
Submodule plugins
updated
6 files
+3 −0 | CMakeLists.txt | |
+46 −1 | README.md | |
+1,030 −0 | esp_at.c | |
+45 −9 | eventout.c | |
+113 −0 | feed_override_m220.c | |
+172 −0 | homing_pulloff.c |