Design of stepper motor drive circuit based on single chip microcomputer

Publisher:alpha11Latest update time:2011-11-17 Keywords:MCU Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Stepper motors are widely used in control systems. They can convert pulse signals into angular displacements and can be used as electromagnetic brake wheels, electromagnetic differentiators, or angular displacement generators.

Sometimes, if you want to use a stepper motor removed from some old equipment (this type of motor is generally not damaged) for other purposes, you usually need to design your own driver. This article introduces the driver designed for a stepper motor removed from an old Japanese printer. This article first introduces the working principle of the stepper motor, and then introduces the software and hardware design of its driver.

1. Working principle of stepper motor

The stepper motor is a four-phase stepper motor, which is powered by a unipolar DC power supply. As long as the phase windings of the stepper motor are energized in a suitable timing, the stepper motor can be made to rotate step by step. Figure 1 is a schematic diagram of the working principle of the four-phase reactive stepper motor.

Figure 1 Schematic diagram of four-phase stepper motor stepping


At the beginning, switch SB is connected to the power supply, SA, SC, and SD are disconnected, and the B-phase magnetic pole is aligned with the rotor teeth 0 and 3. At the same time, the rotor teeth 1 and 4 are staggered with the C and D-phase winding magnetic poles, and the teeth 2 and 5 are staggered with the D and A-phase winding magnetic poles.

When the switch SC is connected to the power supply and SB, SA, and SD are disconnected, the rotor rotates due to the magnetic lines of force between the C-phase winding and the 1st and 4th teeth, and the 1st and 4th teeth are aligned with the magnetic poles of the C-phase winding. However, the 0th and 3rd teeth are staggered with the A- and B-phase windings, and the 2nd and 5th teeth are aligned with the A- and D-phase windings.

By analogy, if the four-phase windings A, B, C, and D are powered in turn, the rotor will rotate in the directions A, B, C, and D.

Four-phase stepper motors can be divided into three working modes according to the different power-on sequences: single four-beat, double four-beat, and eight-beat. The step angles of single four-beat and double four-beat are equal, but the torque of single four-beat is small. The step angle of eight-beat working mode is half of that of single four-beat and double four-beat. Therefore, eight-beat working mode can maintain a higher torque and improve control accuracy.

The power-on timing and waveform of the single four-beat, double four-beat and eight-beat working modes are shown in Figure 2.a, b, and c respectively:

Figure 2. Stepper motor working timing waveform

Figure 3 Stepper motor driver system circuit diagram

AT89C2051 outputs the control pulse from P1.4 to P1.7 of P1 port, and enters 9014 after being inverted by 74LS14. After being amplified by 9014, it controls the photoelectric switch. After photoelectric isolation, the power tube TIP122 amplifies the pulse signal in voltage and current to drive each phase winding of the stepper motor. The stepper motor can perform forward rotation, reverse rotation, acceleration, deceleration and stop according to different pulse signals. In the figure, L1 is a phase winding of the stepper motor. AT89C2051 uses a crystal oscillator with a frequency of 22MHz. The purpose of using a higher crystal oscillator is to minimize the influence of AT89C2051 on the pulse signal cycle of the host computer under mode 2.

In Figure 3, RL1~RL4 are the internal resistance of the winding, and the 50Ω resistor is an external resistor that acts as a current limiter and is also a component that improves the loop time constant. D1~D4 are freewheeling diodes, which attenuate the back electromotive force generated by the motor winding through the freewheeling diodes (D1~D4), thereby protecting the power tube TIP122 from damage.

Connecting a 200μF capacitor in parallel with a 50Ω external resistor can improve the leading edge of the current pulse injected into the stepper motor winding and improve the high-frequency performance of the stepper motor. The 200Ω resistor in series with the freewheeling diode can reduce the discharge time constant of the loop, making the trailing edge of the current pulse in the winding steeper and the current falling time shorter, which also plays a role in improving the high-frequency working performance.

3. Software Design

The driver has three working modes to choose from according to the different combinations of the DIP switches KX and KY:

Mode 1 is the interrupt mode: P3.5 (INT1) is the step pulse input terminal, and P3.7 is the forward and reverse pulse input terminal. The host computer (PC or single-chip microcomputer) is connected to the driver with only two lines.

Mode 2 is serial communication mode: the host computer (PC or single-chip microcomputer) sends the control command to the driver, and the driver completes the relevant control process according to the control command.

Mode 3 is the DIP switch control mode: directly control the stepper motor through different combinations of K1 to K5.

When the power is turned on or the reset button KR is pressed, AT89C2051 first detects the status of the DIP switches KX and KY, and enters different working modes according to the different combinations of KX and KY. The following is the program flow chart and source program of mode 1.

When compiling the program, special attention should be paid to the handling of the stepper motor during commutation. In order to make the stepper motor transition smoothly during commutation and avoid step errors, a flag should be set in each step. The 20H unit is the forward flag of the stepper motor; the 21H unit is the reverse flag. When rotating forward, not only the forward flag is assigned a value, but also the reverse flag is assigned a value; the same is true when reversing. In this way, when the stepper motor commutates, the previous position can be used as the starting point for reverse movement, avoiding step errors when the motor commutates.

Figure 4: Method 1 program flowchart

Method 1 source program:

MOV 20H,#00H; 20H unit is reset to initial value, motor forward position pointer

MOV 21H,#00H; 21H unit is reset to initial value, motor reverse position pointer

MOV P1,#0C0H; Initialize the P1 port to prevent the motor from short circuiting when powered on

MOV TMOD,#60H; Initialize T1 counter and enable interrupt

MOV TL1,#0FFH

MOV TH1,#0FFH

SETB ET1

SETB EA

SETB TR1

SJMP$

;***********Counter 1 interrupt procedure************

IT1P: JB P3.7, FAN; Motor forward and reverse pointer

;****************Motor rotates forward*****************

JB 00H,LOOP0

JB 01H,LOOP1

JB 02H,LOOP2

JB 03H,LOOP3

JB 04H,LOOP4

JB 05H,LOOP5

JB 06H,LOOP6

JB 07H,LOOP7

LOOP0: MOV P1,#0D0H

MOV 20H,#02H

MOV 21H,#40H

AJMP QUIT

LOOP1: MOV P1,#090H

MOV 20H,#04H

MOV 21H,#20H

AJMP QUIT

LOOP2: MOV P1,#0B0H

MOV 20H,#08H

MOV 21H,#10H

AJMP QUIT

LOOP3: MOV P1,#030H

MOV 20H,#10H

MOV 21H,#08H

AJMP QUIT

LOOP4: MOV P1

,#070H

MOV 20H,#20H

MOV 21H,#04H

AJMP QUIT

LOOP5: MOV P1,#060H

MOV 20H,#40H

MOV 21H,#02H

AJMP QUIT

LOOP6: MOV P1,#0E0H

MOV 20H,#80H

MOV 21H,#01H

AJMP QUIT

LOOP7: MOV P1,#0C0H

MOV 20H,#01H

MOV 21H,#80H

AJMP QUIT

;***************Motor reverses*****************

FAN: JB 08H,LOOQ0

JB 09H,LOOQ1

JB 0AH,LOOQ2

JB 0BH,LOOQ3

JB 0CH,LOOQ4

JB 0DH,LOOQ5

JB 0EH,LOOQ6

JB 0FH,LOOQ7

LOOQ0: MOV P1,#0A0H

MOV 21H,#02H

MOV 20H,#40H

AJMP QUIT

LOOQ1: MOV P1,#0E0H

MOV 21H,#04H

MOV 20H,#20H

AJMP QUIT

LOOQ2: MOV P1,#0C0H

MOV 21H,#08H

MOV 20H,#10H

AJMP QUIT

LOOQ3: MOV P1,#0D0H

MOV 21H,#10H

MOV 20H,#08H

AJMP QUIT

LOOQ4: MOV P1,#050H

MOV 21H,#20H

MOV 20H,#04H

AJMP QUIT

LOOQ5: MOV P1,#070H

MOV 21H,#40H

MOV 20H,#02H

AJMP QUIT

LOOQ6: MOV P1,#030H

MOV 21H,#80H

MOV 20H,#01H

AJMP QUIT

LOOQ7: MOV P1,#0B0H

MOV 21H,#01H

MOV 20H,#80H

QUIT: RETI

END

4. Conclusion

The driver has been verified by experiments to be able to drive a 0.5Nm stepper motor. By adjusting the parameters of the resistance, capacitance and freewheeling diode of the driver part, it can drive a 1.2Nm stepper motor. The driver circuit is simple and reliable, with a compact structure, and is particularly suitable for systems with limited I/O port lines and microcontroller resources.

Keywords:MCU Reference address:Design of stepper motor drive circuit based on single chip microcomputer

Previous article:Method and circuit for liquid crystal display of multi-level Chinese character menu
Next article:How to use the 89S51 watchdog function

Recommended ReadingLatest update time:2024-11-16 20:38

Design of portable wireless medical drip monitoring system based on AVR microcontroller
 introduction     Intelligence and portability are the development trends of modern electronic products. The intelligence of medical electronics makes the operation of medical staff more convenient. Medical staff can carry a handheld monitor to monitor the drip in each ward in real time and keep abreast of relevant
[Medical Electronics]
Design of portable wireless medical drip monitoring system based on AVR microcontroller
One article to familiarize yourself with automotive MCUs
A traditional fuel vehicle requires about 500 to 600 chips, a mild hybrid vehicle requires about 1,000 chips, and plug-in hybrid and pure electric vehicles require at least 2,000 chips. This means that with the rapid development of smart electric vehicles, not only the demand for advanced process chips is increasing,
[Automotive Electronics]
One article to familiarize yourself with automotive MCUs
Infineon Technologies expands its AIROC Wi-Fi 6/6E portfolio with the powerful CYW5591x family of wireless microcontrollers
Infineon Technologies AG, a global semiconductor leader in power systems and the Internet of Things, recently launched the new AIROC™ CYW5591x wireless microcontroller (MCU) product series . The new series integrates powerful long-range Wi-Fi 6/6E with low-power Bluetooth 5.4 and secure multi-function MCUs,
[Embedded]
Infineon Technologies expands its AIROC Wi-Fi 6/6E portfolio with the powerful CYW5591x family of wireless microcontrollers
51 single chip microcomputer ~ digital tube circuit principle analysis, calculation
Digital tube introduction: 2. Circuit analysis: (principle as shown) ==74H573 chip principle analysis The 74H573 chip is equivalent to a latch. Giving the common pin a high level means giving P2.6=1, then giving P0=0XFF, and finally giving P2.6=0 to complete the output. Finally, when P2.6=0 is given, 0XFF is latc
[Microcontroller]
51 single chip microcomputer ~ digital tube circuit principle analysis, calculation
Breathing light based on 51 single chip microcomputer
principle: Due to the residual vision characteristics of the human eye: when the human eye observes the scene, it takes a short period of time for the light signal to be transmitted to the brain nerves. After the effect of the light ends, the visual image does not disappear immediately. This residual vision is called
[Microcontroller]
Homemade AVR MCU Unlocker
A rectangular wave generator can be made by using the 2MHz passive quartz crystal of the AVR microcontroller and the 6-phase inverter 74HC04, plus a few 1/4W color ring resistors. The following figure shows the pin distribution of 74HC04. As shown in the figure above and below, the 14th pin of 74HC04 is t
[Analog Electronics]
Homemade AVR MCU Unlocker
Practical Analysis of 8051 MCU (Taking STC89C52RC as an Example) | 01 - Lighting up an LED
1 Schematic Take lighting up the LED of the P2.2 port of the microcontroller as an example: It is not difficult to see from the figure that the right side of the LED is connected to VCC through a resistor. If you want to light up the LED, you have to pull down the port on the left side of the LED. According to the
[Microcontroller]
Practical Analysis of 8051 MCU (Taking STC89C52RC as an Example) | 01 - Lighting up an LED
Design of automatic quantitative water temperature controller based on single chip microcomputer technology
  1. Overall design and demonstration of the scheme   1.1 Selection of liquid level sensor   The self-made sensor is made by using the conductive properties of metal conductors and water. It can collect data at any position without blind spots, and is very conducive to the expansion of the device. And the cost is
[Microcontroller]
Design of automatic quantitative water temperature controller based on single chip microcomputer technology
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号