Skip to content

Commit

Permalink
note to use doubles in config.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Hechenberger committed Jun 10, 2014
1 parent 0a19ff5 commit 5299401
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions firmware/src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@


#ifndef V1401
#define CONFIG_X_STEPS_PER_MM 32.80839895 //microsteps/mm
#define CONFIG_Y_STEPS_PER_MM 32.80839895 //microsteps/mm
#define CONFIG_Z_STEPS_PER_MM 32.80839895 //microsteps/mm
#define CONFIG_X_STEPS_PER_MM 32.80839895 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#define CONFIG_Y_STEPS_PER_MM 32.80839895 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#define CONFIG_Z_STEPS_PER_MM 32.80839895 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#else
#define CONFIG_X_STEPS_PER_MM 88.88888888 //microsteps/mm
#define CONFIG_Y_STEPS_PER_MM 90.90909090 //microsteps/mm
#define CONFIG_Z_STEPS_PER_MM 33.33333333 //microsteps/mm
#define CONFIG_X_STEPS_PER_MM 88.88888888 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#define CONFIG_Y_STEPS_PER_MM 90.90909090 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#define CONFIG_Z_STEPS_PER_MM 33.33333333 //microsteps/mm (no integers, e.g. use 80.0 instead of 80)
#endif
#define CONFIG_PULSE_MICROSECONDS 5
#define CONFIG_FEEDRATE 8000.0 // in millimeters per minute
Expand Down

0 comments on commit 5299401

Please sign in to comment.