- 积分
- 11178
- 回帖
- 0
- 西莫币
-
- 贡献
-
- 威望
-
- 存款
-
- 阅读权限
- 80
- 最后登录
- 1970-1-1
签到天数: 123 天 连续签到: 11 天 [LV.7]常住居民III
|
发表于 2021-5-11 07:11
|
显示全部楼层
来自: 中国江苏
本帖最后由 czvmkl 于 2021-5-11 07:13 编辑
霍尔对于STM32他的作用就是起到外部中断的作用,安5 1 3 2 6 4这六步循环运作
void Hall_SW(void) //六步换向函数
{ motor_statue=1;
switch(Hall)
{ case 5:
/* Next step: Step 2 Configuration --------i-------------------- */
/* Channel3 configuration */
TIM1->CCR2=0; //AB 电机UV线通
TIM1->CCR1 = My_PWM;
TIM1->CCR3=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_13 | GPIO_Pin_15);
GPIO_SetBits(GPIOB, GPIO_Pin_14);
break;
case 1:
/* Next step: Step 3 Configuration ---------------------------- */
/* Channel2 configuration */
TIM1->CCR2=0; //AC 电机UW线通
TIM1->CCR1 = My_PWM;
TIM1->CCR3=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_13 | GPIO_Pin_14);
GPIO_SetBits(GPIOB, GPIO_Pin_15);
break;
case 3:
/* Next step: Step 4 Configuration ---------------------------- */
TIM1->CCR1=0; //BC 电机VW线通
TIM1->CCR2 = My_PWM;
TIM1->CCR3=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_13 | GPIO_Pin_14);
GPIO_SetBits(GPIOB, GPIO_Pin_15);
break;
case 2:
/* Next step: Step 5 Configuration ---------------------------- */
TIM1->CCR1=0; //BA 电机VU线通
TIM1->CCR2 = My_PWM;
TIM1->CCR3=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_14 | GPIO_Pin_15);
GPIO_SetBits(GPIOB, GPIO_Pin_13);
break;
case 6:
/* Next step: Step 6 Configuration ---------------------------- */
TIM1->CCR2=0;//CA 电机WU线通
TIM1->CCR3 = My_PWM;
TIM1->CCR1=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_14 | GPIO_Pin_15);
GPIO_SetBits(GPIOB, GPIO_Pin_13);
break;
case 4:
/* Next step: Step 1 Configuration ---------------------------- */
TIM1->CCR2=0; //CB 电机WV线通
TIM1->CCR3 = My_PWM;
TIM1->CCR1=0;
GPIO_ResetBits(GPIOB, GPIO_Pin_13 | GPIO_Pin_15);
GPIO_SetBits(GPIOB, GPIO_Pin_14);
break;
default:
/* Next step: Step 1 Configuration ---------------------------- */
/* Channel1 configuration */
break;
}
}
|
|