Configuration fix for the Web Builder (ABC to UVW mapping).

This commit is contained in:
Terje Io
2023-02-19 19:12:42 +01:00
parent 5b546aef58
commit 635526b508
2 changed files with 3 additions and 3 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 20230213, see the [changelog](changelog.md) for details.
Latest build date is 20230218, 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.
__IMPORTANT!__ A new setting has been introduced for ganged axes motors in build 20211121.
I have only bench tested this for a couple of drivers, correct function should be verified after updating by those who have more than three motors configured.

View File

@@ -39,7 +39,7 @@ specific needs, i.e. performance tuning or adjusting to non-typical machines.
If more than 3 axes are configured a compliant driver and board map file is needed.
*/
#ifndef N_AXIS
#define N_AXIS 3 // Number of axes
#define N_AXIS 4 // Number of axes
#endif
/*! \def AXIS_REMAP_ABC2UVW
@@ -47,7 +47,7 @@ If more than 3 axes are configured a compliant driver and board map file is need
<br>__NOTE:__ Experimental, if more than 3 and less than 7 axes are configured the `ABC`
axis letters can be remapped to `UWV`.
*/
#if (N_AXIS > 3 && N_AXIS < 7) || defined __DOXYGEN__
#if (!defined AXIS_REMAP_ABC2UVW && (N_AXIS > 3 && N_AXIS < 7)) || defined __DOXYGEN__
#define AXIS_REMAP_ABC2UVW Off
#endif