mirror of
https://github.com/grblHAL/core.git
synced 2026-02-06 00:52:35 +08:00
Fixed typo in parameter access for G59 coordinate. Ref. issue #814.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
## grblHAL ##
|
||||
|
||||
Latest build date is 20250922, see the [changelog](changelog.md) for details.
|
||||
Latest build date is 20250925, 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.
|
||||
|
||||
---
|
||||
20250525
|
||||
20250925
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
## grblHAL changelog
|
||||
|
||||
<a name="20250925">Build 20250925
|
||||
|
||||
Core:
|
||||
|
||||
* Fixed typo in parameter access for G59 coordinate. Ref. issue [#814](https://github.com/grblHAL/core/issues/814).
|
||||
|
||||
---
|
||||
|
||||
<a name="20250922">Build 20250922
|
||||
|
||||
* Added `G65P6` for disabling spindle on/off delay for the next spindle command (`M3`, `M4` and `M5`)
|
||||
|
||||
2
grbl.h
2
grbl.h
@@ -42,7 +42,7 @@
|
||||
#else
|
||||
#define GRBL_VERSION "1.1f"
|
||||
#endif
|
||||
#define GRBL_BUILD 20250922
|
||||
#define GRBL_BUILD 20250925
|
||||
|
||||
#define GRBL_URL "https://github.com/grblHAL"
|
||||
|
||||
|
||||
@@ -259,7 +259,7 @@ PROGMEM static const ngc_ro_param_t ngc_ro_params[] = {
|
||||
{ .id_min = 5261, .id_max = 5270, .get = coord_system_offset },
|
||||
{ .id_min = 5281, .id_max = 5290, .get = coord_system_offset },
|
||||
{ .id_min = 5301, .id_max = 5310, .get = coord_system_offset },
|
||||
{ .id_min = 5321, .id_max = 5230, .get = coord_system_offset },
|
||||
{ .id_min = 5321, .id_max = 5330, .get = coord_system_offset },
|
||||
{ .id_min = 5341, .id_max = 5350, .get = coord_system_offset },
|
||||
{ .id_min = 5361, .id_max = 5370, .get = coord_system_offset },
|
||||
{ .id_min = 5381, .id_max = 5390, .get = coord_system_offset },
|
||||
|
||||
Reference in New Issue
Block a user