51单片机用定时器中断实现两相四线步进电机时序控制

本文探讨了使用51单片机通过定时器中断控制两相四线步进电机时序的问题,指出由于中断服务程序执行时间过长,导致中断时效性不佳。建议改用延时子程序,以提高步进电机控制的时效性。
摘要由CSDN通过智能技术生成
#include<reg52.h>
#define iniMotor() (MOTOR=0x00)

sfr MOTOR=0x90;//define the sfr MOTOR is the address of P1 port  

static void iniTimer0(); //ini timer 0

static void motorDrive(unsigned char const pul,unsigned char const dir);	//stepper motor drive function

int main(){ 
	/*ini MOTOR(set P1 port to low)*/
	iniMotor();	
	/*ini timer 0*/
	iniTimer0();
	/*infinite loop,wait to interrupt of T0*/
	while(1); 	 
	return 0;
}

void iniTimer0(){
	EA=1;
	ET0=1;  //open the T0 interrupt	
	TMOD=0x01; //use mode 1:M1M0=01	
	TR0=1;	//run timer 0
}

void motorDrive(unsigned char const pul,unsigned char const dir){
	static unsigned char count;
	/*counterclockwise rotation sequential of motor:A- --> B- --> A+ --> B+
	         clockwise rotation sequential of motor:B+ --> A+ --> B- --> A- */                                                     
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值