在脈沖模式下,步進(jìn)電機(jī)啟動(dòng)器的脈沖頻率與速度成正比,函數(shù)void CalculateSModelLine(float fre[], unsigned short period[], float len, float fre_max, float fre_min, float flexible)主要目的就是生成每一個(gè)細(xì)分步加速的速度。芯片用的是stm32f103c8t6,驅(qū)動(dòng)器用的是2DM420。
程序流程如下:
- STM32硬件基本初始化,主要是針對(duì)定時(shí)器
- 調(diào)用函數(shù)CalculateSModelLine()生 成每一個(gè)細(xì)分步定時(shí)器的自動(dòng)重裝載值(實(shí)際就是改變脈沖的周期)
- 打開定時(shí)器
- 更新中斷發(fā)生,將數(shù)組中的數(shù)據(jù)賦值給定時(shí)器的自動(dòng)重裝載寄存器
- 跳出中斷后脈沖頻頻率就變化了
- 下一次更新中斷產(chǎn)生
對(duì)應(yīng)的計(jì)算接口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
-
驅(qū)動(dòng)器
+關(guān)注
關(guān)注
54文章
8619瀏覽量
149047 -
步進(jìn)電機(jī)
+關(guān)注
關(guān)注
152文章
3156瀏覽量
149122 -
脈沖模式
+關(guān)注
關(guān)注
0文章
3瀏覽量
6509
發(fā)布評(píng)論請(qǐng)先 登錄
Analog Devices Inc. TMCM-3216步進(jìn)電機(jī)控制器/驅(qū)動(dòng)器模塊數(shù)據(jù)手冊(cè)

HJ4205步進(jìn)電機(jī)驅(qū)動(dòng)電路詳解

想讓步進(jìn)電機(jī)控制更順滑?微步控制優(yōu)勢(shì)與挑戰(zhàn)全揭秘!
步進(jìn)電機(jī)驅(qū)動(dòng)器有哪些分類,如何選型?

基于STM32F405RGT6的TMC2660步進(jìn)電機(jī)驅(qū)動(dòng)器,附帶原理圖+PCB

步進(jìn)電機(jī)驅(qū)動(dòng)器的主要驅(qū)動(dòng)方式有哪些?簡(jiǎn)單介紹
什么是步進(jìn)電機(jī)驅(qū)動(dòng)器?它具有什么特點(diǎn)?
步進(jìn)電機(jī)轉(zhuǎn)速怎么控制高低
51步進(jìn)電機(jī)仿真程序
步進(jìn)電機(jī)失步可能因素

評(píng)論