You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
G28 command is not working. If I send it in the terminal the board answers ok and the axis current position but nothing moves.
The axis are moving normally with manual actuation via G code.
I tried to debug myself but #define PINS_DEBUGGING is not compiling due to not supported platform and #define DEBUG_FEATURE is not showing anything extra in the terminal.
Firmware version
4.3.8 (Unfortunately the only one compiling for Minitronics 2.0)
My setup
The printer is a Prusa i3 clone using Cartesian. I use mechanical endstops for X and Y and HAL sensor for Z. I tested them and they are working fine.
Heaters, thermistors, steppers and ventilaros al all operational. The only issue is that when homing nothing is moving.
I do not think my setup changes have anything to do with this. But just in case:
#define MOTHERBOARD BOARD_MINITRONICS_V2
#define SERIAL_PORT_1 -1
#define DEFAULT_AXIS_STEPS_PER_UNIT {160, 160, 8000, 2263.54, 625, 625, 625}
#define DEFAULT_MAX_ACCELERATION {1000, 1000, 50, 1000, 1000, 1000, 1000}
#define DEFAULT_ACCELERATION 1000
#define DEFAULT_XJERK 5.0
#define DEFAULT_YJERK 5.0
#define X_DRIVER_TYPE DRV8825
#define Y_DRIVER_TYPE DRV8825
#define Z_DRIVER_TYPE DRV8825
#define X2_DRIVER_TYPE DRV8825
#define Y2_DRIVER_TYPE DRV8825
#define Z2_DRIVER_TYPE DRV8825
#define Z3_DRIVER_TYPE DRV8825
#define E0_DRIVER_TYPE DRV8825
#define E1_DRIVER_TYPE DRV8825
#define E2_DRIVER_TYPE DRV8825
#define E3_DRIVER_TYPE DRV8825
#define E4_DRIVER_TYPE DRV8825
#define E5_DRIVER_TYPE DRV8825
#define BEZIER_JERK_CONTROL
The text was updated successfully, but these errors were encountered:
After some deeper debugging I think I solved this one: The endstop pins are set for the Minitronics 2 to be MAX. My Prusa homes to min so this is solved by this delta:
Hello MK team!
I hope you can hell me here.
Issue description
G28 command is not working. If I send it in the terminal the board answers ok and the axis current position but nothing moves.
The axis are moving normally with manual actuation via G code.
I tried to debug myself but #define PINS_DEBUGGING is not compiling due to not supported platform and #define DEBUG_FEATURE is not showing anything extra in the terminal.
Firmware version
4.3.8 (Unfortunately the only one compiling for Minitronics 2.0)
My setup
The printer is a Prusa i3 clone using Cartesian. I use mechanical endstops for X and Y and HAL sensor for Z. I tested them and they are working fine.
Heaters, thermistors, steppers and ventilaros al all operational. The only issue is that when homing nothing is moving.
I do not think my setup changes have anything to do with this. But just in case:
#define MOTHERBOARD BOARD_MINITRONICS_V2
#define SERIAL_PORT_1 -1
#define DEFAULT_AXIS_STEPS_PER_UNIT {160, 160, 8000, 2263.54, 625, 625, 625}
#define DEFAULT_MAX_ACCELERATION {1000, 1000, 50, 1000, 1000, 1000, 1000}
#define DEFAULT_ACCELERATION 1000
#define DEFAULT_XJERK 5.0
#define DEFAULT_YJERK 5.0
#define X_DRIVER_TYPE DRV8825
#define Y_DRIVER_TYPE DRV8825
#define Z_DRIVER_TYPE DRV8825
#define X2_DRIVER_TYPE DRV8825
#define Y2_DRIVER_TYPE DRV8825
#define Z2_DRIVER_TYPE DRV8825
#define Z3_DRIVER_TYPE DRV8825
#define E0_DRIVER_TYPE DRV8825
#define E1_DRIVER_TYPE DRV8825
#define E2_DRIVER_TYPE DRV8825
#define E3_DRIVER_TYPE DRV8825
#define E4_DRIVER_TYPE DRV8825
#define E5_DRIVER_TYPE DRV8825
#define BEZIER_JERK_CONTROL
The text was updated successfully, but these errors were encountered: