无法使用带有ATmega16的L6234运行BLDC电机

时间:2016-04-28 07:05:20

标签: microcontroller avr atmega16 motordriver

我想在Atmega 16控制器的帮助下使用L6234驱动器IC驱动BlDC电机。驱动电机的逻辑在第9页的电机驱动器IC L6234数据表中给出。这是link for datasheet。所以,根据数据表,我写了一个代码来驱动我的电机。这是我的代码: -

#define F_CPU 8000000UL
#include<avr/io.h>
#include<avr/interrupt.h>
#include<util/delay.h>

#define hall1 (PINC & 1<<1)  // connect hall sensor1
#define hall2 (PINC & 1<<2)  //connect hall sensor2
#define hall3 (PINC & 1<<3)  //connect hall sensor3



void main()
{
    DDRC=0XF0;
    DDRB=0XFF; //output as In1=PB.0 ,In2=PB.1, In3=PB.2, En0=PB.3 ,En1=PB.4, En3=PB.5
    while(1)
    {
        if((hall3==4)&(hall2==0)&(hall1==1)) // step1
          {
             PORTB=0X19;
          }

        if((hall3==0)&(hall2==0)&(hall1==1)) // step2
          {
             PORTB=0X29;
          }

        if((hall3==0)&(hall2==2)&(hall1==1)) // step3
          {
             PORTB=0X33;
          }

        if((hall3==0)&(hall2==2)&(hall1==0)) // step4
          {
             PORTB=0X1E;
          }

        if((hall3==4)&(hall2==2)&(hall1==0))// step5
          {
             PORTB=0X2E;
          }

        if((hall3==4)&(hall2==0)&(hall1==0))// step6
          {
             PORTB=0X34;
          }
    }
}

但是当我运行此代码时,我的电机无法工作。那么,任何人都可以告诉我,我的代码中的错误在哪里。

1 个答案:

答案 0 :(得分:0)

您的代码格式使调试变得非常困难。既然你已经在使用宏了,我可以提一些建议让它更容易阅读吗?

你有#define hall3 (PINC & 1<<3),但是这个值必须是4或0.为什么不把它用作布尔值?

    if(hall3 && etc) // note the double &&

马上,这将解决一个错误。 1<<3 8不是4,因此当前编写代码时,if语句都不会成功。 (例如,1是1 <&lt;&lt;&lt; 0,而不是1&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;

PORTB硬编码输出也很难破译。我建议使用#defines来使这更容易。

#define EN1 3
#define EN2 4
#define EN3 5
#define IN1 0
#define IN2 1
#define IN3 2

...
    PORTB = 1<<EN1 | 1<<EN2 | 1<<IN1; // step 1