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:
#define AXIS_RELATIVE_MODES true
Where is should be someting like;
#define AXIS_RELATIVE_MODES {true, true, true, true}
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 trueWhere is should be someting like;
#define AXIS_RELATIVE_MODES {true, true, true, true}