Updated build date and a minor insignificant fix.

This commit is contained in:
Terje Io
2024-01-15 14:58:12 +01:00
parent 6afe6d1a7c
commit 685da469cb
4 changed files with 19 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ It has been written to complement grblHAL and has features such as proper keyboa
---
Latest build date is 20231222, see the [changelog](changelog.md) for details.
Latest build date is 20240115, see the [changelog](changelog.md) for details.
__NOTE:__ A settings reset will be performed on an update of builds earlier than 20230125. 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.
---
2023-12-10
20240115

View File

@@ -1,6 +1,20 @@
## grblHAL changelog
<a name="20240111"/>Build 20240111
<a name="20240115"/>Build 20240115
Core:
* Updated build date and a minor insignificant fix.
Drivers:
* ESP32: switched to low-level I/O register access for speed, added WS2812 RGB HAL, completed 32 \(or 31?\) bit I2S shift register output for ESP32-S3, 16 bit not yet ready.
* STM32F7xx: added missing code for ganged axis support \(auto squaring was not affected\).
---
<a name="20240109"/>Build 20240109
Core:

2
grbl.h
View File

@@ -42,7 +42,7 @@
#else
#define GRBL_VERSION "1.1f"
#endif
#define GRBL_BUILD 20240109
#define GRBL_BUILD 20240115
#define GRBL_URL "https://github.com/grblHAL"

View File

@@ -144,7 +144,7 @@ void limits_set_work_envelope (void)
void limits_set_machine_positions (axes_signals_t cycle, bool add_pulloff)
{
uint_fast8_t idx = N_AXIS;
float pulloff = add_pulloff ? settings.homing.pulloff : 0.0f;
float pulloff = add_pulloff ? settings.homing.pulloff : -0.0f;
if(settings.homing.flags.force_set_origin) {
do {