在脉冲模式下,步进电机启动器的脉冲频率与速度成正比,函数void CalculateSModelLine(float fre[], unsigned short period[], float len, float fre_max, float fre_min, float flexible)主要目的就是生成每一个细分步加速的速度。芯片用的是stm32f103c8t6,驱动器用的是2DM420。
程序流程如下:
- STM32硬件基本初始化,主要是针对定时器
- 调用函数CalculateSModelLine()生 成每一个细分步定时器的自动重装载值(实际就是改变脉冲的周期)
- 打开定时器
- 更新中断发生,将数组中的数据赋值给定时器的自动重装载寄存器
- 跳出中断后脉冲频频率就变化了
- 下一次更新中断产生
对应的计算接口code:
/* calculate the Period and Freq array value, fill the Period value into the Period register during the timer interrupt.
*calculate the acceleration procedure , a totally 1000 elements array.
* parameter fre[]: point to the array that keeps the freq value.
* period[]: point to the array that keeps the timer period value.
* len: the procedure of acceleration length.it is best thing to set the float number, some compile software maybe transfer error if set it as a int
* fre_max: maximum speed, frequency vale.
* fre_min: start minimum speed, frequency vale. mind : 10000000/65535 = 152, so fre_min can't less than 152.
* flexible: flexible value. adjust the S curves
*/
void CalculateSModelLine(float fre[], unsigned short period[], float len, float fre_max, float fre_min, float flexible)
{
int i=0;
float deno ;
float melo ;
float delt = fre_max-fre_min;
for(; i
{
melo = flexible * (i-len/2) / (len/2);
deno = 1.0 / (1 + expf(-melo)); //expf is a library function of exponential(e)
fre[i] = delt * deno + fre_min;
period[i] = (unsigned short)(10000000.0 / fre[i]); // 10000000 is the timer driver frequency
}
return ;
}
文章整合自:CSDN
编辑:ymf
-
驱动器
+关注
关注
54文章
9111浏览量
156464 -
步进电机
+关注
关注
153文章
3271浏览量
152746 -
脉冲模式
+关注
关注
0文章
3浏览量
6583
发布评论请先 登录
SGM42610/SGM42611步进电机驱动IC:特性、应用与设计要点
SGM42630步进电机驱动芯片:设计与应用详解
DRV8825步进电机控制器IC:设计与应用详解
德州仪器DRV8436步进电机驱动器:特性、应用与设计深度解析
DRV8424/25步进驱动器:创新科技助力电机控制
DRV8434步进电机驱动器:高效集成与智能控制的完美结合
德州仪器DRV8428步进电机驱动器:功能特点与应用指南
深入剖析DRV8424/25步进电机驱动器:特性、应用与设计指南
EVL6470步进电机驱动评估板技术解析与应用指南
关于TMC2208与TMC2209的区别及基于STM32F103控制TMC2209模块驱动2相4线步进电机
Analog Devices / Maxim Integrated MAX22204步进电机驱动器数据手册
Analog Devices / Maxim Integrated MAX22210步进电机驱动器数据手册
STM32步进电机驱动的算法
评论