OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 2011|回复: 2

大神们帮帮忙啊!!!新手入门!!!

[复制链接]

4

主题

7

帖子

0

精华

新手上路

积分
38
金钱
38
注册时间
2017-7-20
在线时间
11 小时
发表于 2017-7-20 21:19:52 | 显示全部楼层 |阅读模式
void Motor_Init()
{
        GPIO_InitTypeDef GPIO_InitStructure;
   RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);//GPIOB
       

     GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3;       
     GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
     GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
           GPIO_Init(GPIOB,&GPIO_InitStructure);               
//                 GPIO_ResetBits(GPIOA,GPIO_Pin_7|GPIO_Pin_8|GPIO_Pin_6|GPIO_Pin_9);
}


void motor_CW(void)  
{
        int motor_step=0;
        switch(motor_step)
                {
    case 0:
      PBout(0)=1;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=0;        
    break;
    case 1:
       PBout(0)=1;
      PBout(1)=1;
      PBout(2)=0;
      PBout(3)=0;
    break;
    case 2:
       PBout(0)=0;
      PBout(1)=1;
      PBout(2)=0;
      PBout(3)=0;
    break;
    case 3:
       PBout(0)=0;
      PBout(1)=1;
      PBout(2)=1;
      PBout(3)=0;
    break;
    case 4:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=1;
      PBout(3)=0;
    break;
    case 5:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=1;
      PBout(3)=1;
    break;
     case 6:
      PBout(0)=0;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=1;
    break;
    case 7:
       PBout(0)=1;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=1;
    break;
    default:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=0;
    break;
  }
   motor_step++;
  if(motor_step>7)
    motor_step=0;
}
void motor_CCW(void)  //Äæê±Õë
{
        int motor_step=0;
  switch(motor_step){
    case 0:
       PBout(0)=1;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=1;
    break;
    case 1:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=1;
    break;
    case 2:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=1;
      PBout(3)=1;
    break;
    case 3:
      PBout(0)=0;
      PBout(1)=0;
      PBout(2)=1;
      PBout(3)=0;
    break;
    case 4:
      PBout(0)=0;
      PBout(1)=1;
      PBout(2)=1;
      PBout(3)=0;
    break;
    case 5:
       PBout(0)=0;
      PBout(1)=1;
      PBout(2)=0;
      PBout(3)=0;
    break;
    case 6:
      PBout(0)=1;
      PBout(1)=1;
      PBout(2)=0;
      PBout(3)=0;
    break;
    case 7:
       PBout(0)=1;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=0;
    break;
    default:
       PBout(0)=0;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=0;
    break;
  }
    motor_step++;
  if(motor_step>7)
                motor_step=0;
}
void motor_loop(uint8_t dir)
{
        if(dir)
         motor_CW();
        else
         motor_CCW();
}

#include "delay.h"
#include "motor.h"         
//#include "adc.h"


int main()
{

Motor_Init();
   while(1)
  {
  void motor_CW();
               
  }
}
这是我写的步进电机驱动的代码,用的是uln2003驱动板,IN1,IN2,IN3,IN4连接的分别是PB0,PB1,PB2,PB3.驱动板也外加有直流电源,但是步进电机毫无反应啊。求大神看看,指点指点啊!!!!


正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

4

主题

7

帖子

0

精华

新手上路

积分
38
金钱
38
注册时间
2017-7-20
在线时间
11 小时
 楼主| 发表于 2017-7-20 21:27:11 | 显示全部楼层
有没有大佬给指点指点啊
回复 支持 反对

使用道具 举报

0

主题

14

帖子

0

精华

初级会员

Rank: 2

积分
128
金钱
128
注册时间
2017-7-8
在线时间
24 小时
发表于 2017-7-20 21:36:20 | 显示全部楼层
void motor_CW(void)  
{
        int motor_step=0;
        switch(motor_step)
                {
    case 0:
      PBout(0)=1;
      PBout(1)=0;
      PBout(2)=0;
      PBout(3)=0;        
    break;...................
一进来motor_step=0; 后面motor_step++ 有什么用。好像可以设置成static  int motor_step=0;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-12-22 21:27

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表