Added definition for LinuxCNC M190 gcode, required by plasma plugin. No functional change.

This commit is contained in:
Terje Io
2025-02-22 17:40:04 +01:00
parent 1e44828151
commit 99fdc8f199
4 changed files with 16 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
## grblHAL ##
Latest build date is 20250221, see the [changelog](changelog.md) for details.
Latest build date is 20250222, see the [changelog](changelog.md) for details.
> [!NOTE]
> A settings reset will be performed on an update of builds prior to 20241208. Backup and restore of settings is recommended.
@@ -89,4 +89,4 @@ G/M-codes not supported by [legacy Grbl](https://github.com/gnea/grbl/wiki) are
Some [plugins](https://github.com/grblHAL/plugins) implements additional M-codes.
---
20250221
20250222
+12
View File
@@ -1,5 +1,17 @@
## grblHAL changelog
<a name="20250222">Build 20250222
Core:
* Added definition for LinuxCNC M190 gcode, required by plasma plugin. No functional change.
Plugins:
* Plasma: added basic support for LinuxCNC style M190 and "magic" comments. Untested. Ref. issue [#21](https://github.com/grblHAL/Plugin_plasma/issues/21).
---
<a name="20250221">Build 20250221
Core:
+1
View File
@@ -254,6 +254,7 @@ typedef enum {
LaserPPI_Rate = 127, //!< 127 - M127
LaserPPI_PulseLength = 128, //!< 128 - M128
RGB_WriteLEDs = 150, //!< 150 - M150, Marlin format
Plasma_SelectMaterial = 190, //!< 150 - M190, LinuxCNC format
OpenPNP_SetJerk = 20130, //!< 20130 - M201.3
OpenPNP_SetAcceleration = 204, //!< 204 - M204
SetFeedOverrides = 220, //!< 220 - M220, Marlin format
+1 -1
View File
@@ -42,7 +42,7 @@
#else
#define GRBL_VERSION "1.1f"
#endif
#define GRBL_BUILD 20250221
#define GRBL_BUILD 20250222
#define GRBL_URL "https://github.com/grblHAL"