You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After changing the setting AXIS_RELATIVE_MODES in Configuration_adv to True I get te compile error:
from Marlin\Marlin_main.cpp:244:
Marlin\Configuration_adv.h:360:29: error: initializer fails to determine size of 'axis_relative_modes'
#define AXIS_RELATIVE_MODES true
It seems Marlin-conf is not aware of the array of values and saves the new setting as:
After changing the setting AXIS_RELATIVE_MODES in Configuration_adv to True I get te compile error:
It seems Marlin-conf is not aware of the array of values and saves the new setting as:
#define AXIS_RELATIVE_MODES true
Where is should be someting like;
#define AXIS_RELATIVE_MODES {true, true, true, true}
The text was updated successfully, but these errors were encountered: