As mentioned in a previous post, I was having trouble with my y-axis motors not doing as they were told. Thinking it might be at least part due to my crappy wiring job, I starting making some improvements. I bought some stepper motor wire from Inventables. This wire has four conductors plus a shielding and an uninsulated ground wire.
I crimped on some Molex style female pins on the ends and a latching connector to connect to the motor side. I then slipped on some heat shrink tubing from the untouched end and tried to shrink it with a hot glue gun. Don’t do this. It works, but the residual hot glue around the tip makes a stringy mess. For the other end I used the side of an old soldering iron. Note: I say an old iron and not my good one because it does leave some residue that will stain the iron. You can see the ground conductor sticking out the bottom of the heat shrink tube. I saved this in case I wanted it later, which I did.
I crimped on an extra ground wire to the conductor and crimped a ring terminal onto that. When crimping the ring terminal I stripped off about 3/8″ of insulation from the wire, then folded the exposed wire over the insulation. This gave me a thicker thing to crimp on. The end near the stepper wire is a bit of a mess, I tried using the base of another grounding ring terminal to crimp the wires without soldering, but ended up soldering anyway. The other side was better. On the other side I used a non-latching connector to plug into the RAMPS shield.
With my connections made I started testing my my motor using Pronterface to send code to the Arduino running Sprinter firmware. Some more on my setup:
Pololu A4983 Stepper Driver
Configured for 1/16 stepping
Trim pot set about 10 o’clock
Single Y motor (Left) connected to Z socket using shielded 3ft stepper wire.
Acceleration ramping in Sprinter OFF
The Pololu heat sink and the motor were both remaining cool throughout the testing. I tried enabling acceleration ramping because at the higher speeds there was some violent jerking, even when it did complete a move.
// Comment this to disable ramp acceleration
#define RAMP_ACCELERATION 1
//// Acceleration settings
#ifdef RAMP_ACCELERATION
// 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.
float max_start_speed_units_per_second[] = {20.0,20.0,0.2,10.0};
long max_acceleration_units_per_sq_second[] = {70,70,50,10000}; // X, Y, Z and E max acceleration in mm/s^2 for printing moves or retracts
long max_travel_acceleration_units_per_sq_second[] = {500,500,50,500}; // X, Y, Z max acceleration in mm/s^2 for travel moves
#endif
Things were less jerky, but I still stopped short when moving in the negative Y direction. I even tried reducing the max acceleration with no improvement. It wasn’t like the motor was pulling out and shuddering it was as though it just stopped receiving step commands.
It was time to break out the big guns now. I set up an oscilloscope (borrowed from a friend) and connected it to the step pin and a ground on the RAMPS I2C breakout. I left the power to the motors OFF and just looked at the signals coming from the Arduino Mega. The pulses came in two widths. Primarily there were small pulses at 2.1us widths, but occationally there were also 8.4us wide pulses. The image below shows a trace where I am triggering on each rising edge and showing “persistance”.
Looking at a longer time scale I can see that each of the pulses are far apart and there was no chance that the pulse width would merge into the next pulse as I speculated at one point. Below is a longer trace showing two 100mm moves at 9000mm/min. The upper trace is the forward direction and the lower is reverse. (Persistance was used to keep the forward trace on the screen while taking the reverse trace.) Both traces show pulses throughout the entire 0.666sec of time they should. The motor power is still off at this point. Zooming in on the reverse trace I didn’t see any abnormalities.
I turned the motor power on and tried again at 9000mm/min. Now the motor stops short on the return and, interestingly, my pulses stop at the same time!
I repeated this test and made a video:
[youtube https://www.youtube.com/watch?v=tcTs_xJbnww]
Pulses stopped at 0.296sec when they should have continued to 0.666sec. That’s only 44.444mm of travel time. I measured the remaining distance (from the 100mm commanded) to the tape marking my start point. This was 50mm. Discrepancy may be due to the cart inertia carrying it after pulses end, or some pullout occurring in both directions during the violent starts.
It is curious that the pulses only stopped early when the motor was powered. This suggests that the motor power has some interaction with the controller being able to send signals.
Next Steps:
- Investigate effects of endstop options (in firmware and hardware)
- Investigate firmware options for STEP_DELAY_MICROS and STEP_DELAY_RATIO to combat missing steps
- Add a second motor