bkubicek / Marlin

Reprap FW optimized for gen6
17 stars 1 forks source link

Configuration H #9

Closed jetguy closed 13 years ago

jetguy commented 13 years ago

Shouldn't the max axis for an Ultimaker be 210mm all the way around in config.h? Anyway to may that a switch when board type 7 is selected?

define min_software_endstops false //If true, axis won't move to coordinates less than zero.

define max_software_endstops true //If true, axis won't move to coordinates greater than the defined lengths below.

define X_MAX_LENGTH 200

define Y_MAX_LENGTH 200

define Z_MAX_LENGTH 100

Should be:

define min_software_endstops false //If true, axis won't move to coordinates less than zero.

define max_software_endstops true //If true, axis won't move to coordinates greater than the defined lengths below.

define X_MAX_LENGTH 210

define Y_MAX_LENGTH 210

define Z_MAX_LENGTH 210

bradleyf commented 13 years ago

You're probably right. Most of us are not printing anything that large on this "experimental" firmware.

bkubicek commented 13 years ago

done. However, I saw no change in behaviour...

jetguy commented 13 years ago

Thanks, again, it's just my understanding of what a setting does VS what it actually does.