Fixed typo in parameter access for G59 coordinate. Ref. issue #814.

This commit is contained in:
Terje Io
2025-09-25 20:40:49 +02:00
parent 65dd33c569
commit e3803a252a
4 changed files with 12 additions and 4 deletions

View File

@@ -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

View File

@@ -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
View File

@@ -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"

View File

@@ -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 },