This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

What is the easiest way to drive a Bipolar Stepper Motor? PWM, PPI, direct output pin control?

I've reviewed the different PWM examples that include the low power PWM, PWM driver and the PWM library.  What I'm looking for is a very simple solution to drive a bipolar stepper motor using two pins that control a stepper motor driver IC.  To drive a bipolar stepper motor all I need to do is to send four values {00, 10, 11, 01} on the two pins for one direction and in reverse order for the opposite direction.  I want to be able to control the number of steps that the the stepper rotates as well as to have it run for a period of time until I turn it off.  I also want to control the speed of the steps.  I'm not sure that the PWM is the best way to do this.  I've also determined that the low power PWM solution is adequate for my application, if using the PWM function is the best way to implement this, in that I don't need a high frequency for the stepper motor. 

Please advise.

  • Hi,

    To drive a bipolar stepper motor all I need to do is to send four values {00, 10, 11, 01} on the two pins for one direction and in reverse order for the opposite direction. 

    So for 00, both pins are low? and for 11 both pins are high ?

    How often are these values supposed to change (what frequency) ? 

    I want to be able to control the number of steps that the the stepper rotates

     How does this correlate to the four values ? 00 is one step, 10 is another step ?

    Do you have datasheet for this motor?

  • The two motor control signals control a motor driver circuit L6225 that creates a differential pair of drive signals for each of the two different coils in the bipolar stepper motor.  So, my two control signals become 4 drive signals to power the stepper motor. I've attached the datasheet.  Stepper motor drawing (Kevins)-revised- Final Approved.pdf 

    To answer your questions, my step frequency will be less than (i.e. slower than) one step per 10mS.  So the frequency is very low.  And yes, 00, 10, 11, 01 are the four steps required to step the motor 4 steps.  This sequence repeats to continue stepping in one direction.  To reverse direction these steps are performed in the reverse order.  Putting 00 on the two step control pins followed by a 10 will cause the motor to move one step.  Then changing the control pins from 10 to 11 will cause it to step once more.  Changing from 11 to 01 is another step and then 00 is the fourth step.  And from here the sequence repeats.

    Since I submitted this support request, I've studied the nRF52832 datasheet and have come to the conclusion that using the GPIO library seems to be the best solution since it gives me the ability to control the number of steps that I want the stepper to make at any given time, as well as to reverse direction at will.  I don't see a good option using the PWM output to be able to accurately control the number of steps.  The PPI subsection is soooo complicated and the documentation is rather thin considering it's complexity that I don't see a clean way to use it.  Maybe PPI is a good solution but I don't understand how to apply it.

  • EricDelangis said:
    And yes, 00, 10, 11, 01 are the four steps required to step the motor 4 steps.  This sequence repeats to continue stepping in one direction.  To reverse direction these steps are performed in the reverse order.  Putting 00 on the two step control pins followed by a 10 will cause the motor to move one step.  Then changing the control pins from 10 to 11 will cause it to step once more.  Changing from 11 to 01 is another step and then 00 is the fourth step.  And from here the sequence repeats.

     I would try using PWM for this first.

    Here is an example on how to achieve this "00, 10, 11, 01" sequence, with 10ms steps on pin 3 and 27:

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /**
    * Copyright (c) 2015 - 2018, Nordic Semiconductor ASA
    *
    * All rights reserved.
    *
    * Redistribution and use in source and binary forms, with or without modification,
    * are permitted provided that the following conditions are met:
    *
    * 1. Redistributions of source code must retain the above copyright notice, this
    * list of conditions and the following disclaimer.
    *
    * 2. Redistributions in binary form, except as embedded into a Nordic
    * Semiconductor ASA integrated circuit in a product or a software update for
    * such product, must reproduce the above copyright notice, this list of
    * conditions and the following disclaimer in the documentation and/or other
    * materials provided with the distribution.
    *
    * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
    * contributors may be used to endorse or promote products derived from this
    * software without specific prior written permission.
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Replace the code in the pwm_driver example in the SDK, with the code above to test it.