Selective eprom parameters
as i understand, the eprom stores important variables in the firmware without the need of flashing the arduino with new values, but this can lead to a user causing mayhem with the printer. Is there a way to disable the possibility of changing some of the values?
for example, through eprom changes, one can alter the printer size. Can this be disabled and how?
for example, through eprom changes, one can alter the printer size. Can this be disabled and how?
Comments
#if DRIVE_SYSTEM != DELTA
// writeFloat(EPR_X_HOMING_FEEDRATE, Com::tEPRXHomingFeedrate);
// writeFloat(EPR_Y_HOMING_FEEDRATE, Com::tEPRYHomingFeedrate);
#endif
// writeFloat(EPR_Z_HOMING_FEEDRATE, Com::tEPRZHomingFeedrate);
writeFloat(EPR_MAX_JERK, Com::tEPRMaxJerk);
#if DRIVE_SYSTEM != DELTA
writeFloat(EPR_MAX_ZJERK, Com::tEPRMaxZJerk);
#endif
writeFloat(EPR_X_HOME_OFFSET, Com::tEPRXHomePos);
writeFloat(EPR_Y_HOME_OFFSET, Com::tEPRYHomePos);