Skip to content

Commit 18d6272

Browse files
committed
Fix for regression causing MPG mode switch malfunction. Ref. issue #846.
1 parent 6efbed8 commit 18d6272

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## grblHAL ##
22

3-
Latest build date is 20251108, see the [changelog](changelog.md) for details.
3+
Latest build date is 20251109, see the [changelog](changelog.md) for details.
44

55
> [!NOTE]
66
> 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
8989
Some [plugins](https://github.com/grblHAL/plugins) implements additional M-codes.
9090

9191
---
92-
20250928
92+
20251109

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## grblHAL changelog
22

3+
<a name="20251109">Build 20251109
4+
5+
Core:
6+
7+
* Fix for regression causing MPG mode switch malfunction. Ref. issue [#846](https://github.com/grblHAL/core/issues/846).
8+
9+
---
10+
311
<a name="20251108">Build 20251108
412

513
Core:

grbl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#else
4343
#define GRBL_VERSION "1.1f"
4444
#endif
45-
#define GRBL_BUILD 20251108
45+
#define GRBL_BUILD 20251109
4646

4747
#define GRBL_URL "https://github.com/grblHAL"
4848

pin_bits_masks.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static aux_ctrl_t aux_ctrl[] = {
155155
add_aux_input(Input_I2CStrobe, I2C_STROBE, IRQ_Mode_Change, 0)
156156
#endif
157157
#if MPG_ENABLE == 1 && defined(MPG_MODE_PIN)
158-
add_aux_input(Input_MPGSelect, MPG_MODE, IRQ_Mode_RisingFalling, 0)
158+
add_aux_input(Input_MPGSelect, MPG_MODE, IRQ_Mode_Change, 0)
159159
#endif
160160
#if QEI_SELECT_ENABLE && defined(QEI_SELECT_PIN)
161161
add_aux_input(Input_QEI_Select, QEI_SELECT, IRQ_Mode_RisingFalling, 0)
@@ -182,7 +182,7 @@ static aux_ctrl_t aux_ctrl[] = {
182182
add_aux_input_scan(Input_ToolsetterOvertravel, IRQ_Mode_Change, SIGNALS_TLS_OVERTRAVEL_BIT)
183183
#endif
184184
#if LIMITS_OVERRIDE_ENABLE
185-
add_aux_input_scan(Input_LimitsOverride, IRQ_Mode_Change, SIGNALS_LIMITS_OVERRIDE_BIT)
185+
add_aux_input_scan(Input_LimitsOverride, IRQ_Mode_None, SIGNALS_LIMITS_OVERRIDE_BIT)
186186
#endif
187187
#if STOP_DISABLE_ENABLE
188188
add_aux_input_scan(Input_StopDisable, IRQ_Mode_Change, SIGNALS_STOPDISABLE_BIT)

0 commit comments

Comments
 (0)