[quote=“jan1959”]Hi,
I need to change from this
// default settings
#define DEFAULT_AXIS_STEPS_PER_UNIT {64.25,64.25,2560,600} // default steps per unit for ultimaker
#define DEFAULT_MAX_FEEDRATE {500, 500, 50, 500} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {9000,9000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
To This
// default settings
#define DEFAULT_AXIS_STEPS_PER_UNIT {64.25,64.25,400,600} // default steps per unit for ultimaker
#define DEFAULT_MAX_FEEDRATE {500, 500, 50, 500} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {9000,9000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
Or…
How do i change in eprom please?[/quote]
Are you shure 400 steps is correct? Do you run your motor in Full step mode?
// EEPROM
// the microcontroller can store settings in the EEPROM, e.g. max velocity...
// M500 - stores paramters in EEPROM
// M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
//define this to enable eeprom support
#define EEPROM_SETTINGS //<<< uncomment this line!
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
// please keep turned on if you can.
#define EEPROM_CHITCHAT //<<< uncomment this line!
To enable eeprom settings with repetier uncomment this 2 lines in configuration_h :
#define EEPROM_SETTINGS //<<< uncomment this line!
#define EEPROM_CHITCHAT //<<< uncomment this line!
compile the Firmware and upload it to the board
Then start up repetier host and go to tools Firmware eeprom configuration
There you find a Window where you can easily change the settings