I just updated my Firmware on my RostockMax V2, and my Y axis is inverted.
The firmware is the 0.92.2
And I saw something in the configuration.h
Code: Select all
// ###### Inverting Axis Settings for Orion/Rostock MAX v2/DropLit
#if PRINTER == 1 || PRINTER == 2 || PRINTER ==4
#define INVERT_X_DIR 1
// need to invert Y axis for newer PSU Orions
#if POWER_SUPPLY == 2
#define INVERT_Y_DIR 1
#else
#define INVERT_Y_DIR 0
#endif
#define INVERT_Z_DIR
But I do not know what my situation is. Because i check on the begining of the code about the power supply. The last V2 is an "older machine"?
Code: Select all
// ##### Older Orions w/ATX had Y inverted and NEW PSU on orions needs opposite ###
// 1 = ATX on older machines 2 = Rail style PSU on newer machines ############################
#define POWER_SUPPLY 2
Thanks