mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 10:45:11 +03:00
463 lines
15 KiB
C
463 lines
15 KiB
C
/*
|
|
* This file is part of the multistepper project.
|
|
* Copyright 2023 Edward V. Emelianov <edward.emelianoff@gmail.com>.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "flash.h"
|
|
#include "hardware.h"
|
|
#include "pdnuart.h"
|
|
#include "proto.h"
|
|
#include "steppers.h"
|
|
#include "strfunc.h"
|
|
#include "usb.h"
|
|
|
|
// goto zero stages
|
|
typedef enum{
|
|
M0RELAX, // normal moving
|
|
M0FAST, // fast move to zero
|
|
M0SLOW // slowest move from ESW
|
|
} mvto0state;
|
|
|
|
#ifdef EBUG
|
|
static uint8_t stp[MOTORSNO] = {0};
|
|
#endif
|
|
|
|
// motors' direction: 1 for positive, -1 for negative (we need it as could be reverse)
|
|
static int8_t motdir[MOTORSNO];
|
|
// current position (in steps) by STP counter
|
|
static volatile int32_t stppos[MOTORSNO] = {0};
|
|
// previous position when check (set to current in start of moving)
|
|
static int32_t prevstppos[MOTORSNO];
|
|
// target stepper position
|
|
static int32_t targstppos[MOTORSNO] = {0};
|
|
// position to start deceleration
|
|
static int32_t decelstartpos[MOTORSNO];
|
|
// ESW reaction - local copy
|
|
static uint8_t ESW_reaction[MOTORSNO];
|
|
|
|
// current speed
|
|
static uint16_t curspeed[MOTORSNO];
|
|
static uint16_t startspeed[MOTORSNO]; // speed when deceleration starts
|
|
// ==1 to stop @ nearest step
|
|
static uint8_t stopflag[MOTORSNO];
|
|
// motor state
|
|
static stp_state state[MOTORSNO];
|
|
// move to zero state
|
|
static mvto0state mvzerostate[MOTORSNO];
|
|
|
|
// lowest ARR value (highest speed), highest (lowest speed)
|
|
//static uint16_t stphighARR[MOTORSNO];
|
|
// microsteps=1<<ustepsshift
|
|
static uint16_t ustepsshift[MOTORSNO];
|
|
// amount of steps for full acceleration/deceleration
|
|
static uint32_t accdecsteps[MOTORSNO];
|
|
|
|
// time when acceleration or deceleration starts
|
|
static uint32_t Taccel[MOTORSNO] = {0};
|
|
|
|
// recalculate ARR according to new speed
|
|
TRUE_INLINE void recalcARR(int i){
|
|
uint32_t ARR = (((PCLK/(MOTORTIM_PSC+1)) / curspeed[i]) >> ustepsshift[i]) - 1;
|
|
if(ARR < MOTORTIM_ARRMIN) ARR = MOTORTIM_ARRMIN;
|
|
else if(ARR > 0xffff) ARR = 0xffff;
|
|
mottimers[i]->ARR = ARR;
|
|
curspeed[i] = (((PCLK/(MOTORTIM_PSC+1)) / (ARR+1)) >> ustepsshift[i]); // recalculate speed due to new val
|
|
}
|
|
|
|
// update stepper's settings
|
|
int update_stepper(uint8_t i){
|
|
if(i >= MOTORSNO) return FALSE;
|
|
accdecsteps[i] = (the_conf.maxspd[i] * the_conf.maxspd[i]) / the_conf.accel[i] / 2;
|
|
ustepsshift[i] = MSB(the_conf.microsteps[i]);
|
|
ESW_reaction[i] = the_conf.ESW_reaction[i];
|
|
switch(the_conf.motflags[i].drvtype){
|
|
case DRVTYPE_UART:
|
|
return pdnuart_init(i);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
// run this function after each steppers parameters changing
|
|
void init_steppers(){
|
|
mottimers_setup(); // reinit timers
|
|
// init variables
|
|
for(int i = 0; i < MOTORSNO; ++i){
|
|
stopflag[i] = 0;
|
|
motdir[i] = 0;
|
|
curspeed[i] = 0;
|
|
state[i] = STP_RELAX;
|
|
if(!the_conf.motflags[i].donthold) MOTOR_EN(i);
|
|
else MOTOR_DIS(i);
|
|
update_stepper(i);
|
|
}
|
|
}
|
|
|
|
// set absolute position of motor `i`
|
|
errcodes setmotpos(uint8_t i, int32_t position){
|
|
if(state[i] != STP_RELAX) return ERR_CANTRUN;
|
|
if(position > (int32_t)the_conf.maxsteps[i] || position < -(int32_t)the_conf.maxsteps[i])
|
|
return ERR_BADVAL; // too big position or zero
|
|
stppos[i] = position;
|
|
return ERR_OK;
|
|
}
|
|
|
|
// get current position
|
|
errcodes getpos(uint8_t i, int32_t *position){
|
|
*position = stppos[i];
|
|
return ERR_OK;
|
|
}
|
|
|
|
errcodes getremainsteps(uint8_t i, int32_t *position){
|
|
*position = targstppos[i] - stppos[i];
|
|
return ERR_OK;
|
|
}
|
|
|
|
// calculate acceleration/deceleration parameters for motor i
|
|
static void calcacceleration(uint8_t i){
|
|
switch(state[i]){ // do nothing in case of error/stopping
|
|
case STP_ERR:
|
|
case STP_RELAX:
|
|
case STP_STALL:
|
|
return;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
int32_t delta = targstppos[i] - stppos[i];
|
|
if(delta > 0){ // positive direction
|
|
if(delta > 2*(int32_t)accdecsteps[i]){ // can move by trapezoid
|
|
decelstartpos[i] = targstppos[i] - accdecsteps[i];
|
|
}else{ // triangle speed profile
|
|
decelstartpos[i] = stppos[i] + delta/2;
|
|
}
|
|
if(the_conf.motflags[i].reverse) MOTOR_CCW(i);
|
|
else MOTOR_CW(i);
|
|
}else{ // negative direction
|
|
delta = -delta;
|
|
if(delta > 2*(int32_t)accdecsteps[i]){ // can move by trapezoid
|
|
decelstartpos[i] = targstppos[i] + accdecsteps[i];
|
|
}else{ // triangle speed profile
|
|
decelstartpos[i] = stppos[i] - delta/2;
|
|
}
|
|
if(the_conf.motflags[i].reverse) MOTOR_CW(i);
|
|
else MOTOR_CCW(i);
|
|
}
|
|
if(state[i] != STP_MVSLOW){
|
|
DBG("->accel");
|
|
state[i] = STP_ACCEL;
|
|
}
|
|
startspeed[i] = curspeed[i];
|
|
Taccel[i] = Tms;
|
|
recalcARR(i);
|
|
}
|
|
|
|
// check if end-switch is blocking the moving of i'th motor
|
|
// @return TRUE if motor can't move
|
|
static int esw_block(uint8_t i){
|
|
int ret = FALSE;
|
|
uint8_t s = ESW_state(i);
|
|
if(s){ // ESW active
|
|
switch(ESW_reaction[i]){
|
|
case ESW_ANYSTOP: // stop motor in any direction
|
|
ret = TRUE;
|
|
break;
|
|
case ESW_STOPMINUS: // stop only @ given direction
|
|
if(motdir[i] == -1 && (s & 1)) ret = TRUE; // stop @ESW0
|
|
if(motdir[i] == 1 && (s & 2)) ret = TRUE; // stop @ESW1
|
|
break;
|
|
default: // ESW_IGNORE
|
|
break;
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
// move to absolute position
|
|
errcodes motor_absmove(uint8_t i, int32_t newpos){
|
|
//if(i >= MOTORSNO) return ERR_BADPAR; // bad motor number
|
|
int8_t dir = (newpos > stppos[i]) ? 1 : -1;
|
|
switch(state[i]){
|
|
case STP_ERR:
|
|
case STP_RELAX:
|
|
break;
|
|
case STP_STALL:
|
|
break;
|
|
default: // moving state
|
|
DBG("Is moving");
|
|
return ERR_CANTRUN;
|
|
}
|
|
if(newpos > (int32_t)the_conf.maxsteps[i] || newpos < -(int32_t)the_conf.maxsteps[i] || newpos == stppos[i]){
|
|
DBG("Too much steps");
|
|
return ERR_BADVAL; // too big position or zero
|
|
}
|
|
motdir[i] = dir; // should be before limit switch check
|
|
if(esw_block(i)){
|
|
DBG("Block by ESW");
|
|
return ERR_CANTRUN; // on end-switch
|
|
}
|
|
stopflag[i] = 0;
|
|
targstppos[i] = newpos;
|
|
prevstppos[i] = stppos[i];
|
|
curspeed[i] = the_conf.minspd[i];
|
|
state[i] = STP_ACCEL;
|
|
calcacceleration(i);
|
|
#ifdef EBUG
|
|
USB_sendstr("MOTOR"); USB_putbyte('0'+i);
|
|
USB_sendstr(" targstppos="); printi(targstppos[i]);
|
|
USB_sendstr(", decelstart="); printi(decelstartpos[i]);
|
|
USB_sendstr(", accdecsteps="); printu(accdecsteps[i]); newline();
|
|
#endif
|
|
MOTOR_EN(i);
|
|
mottimers[i]->CR1 |= TIM_CR1_CEN; // start timer
|
|
return ERR_OK;
|
|
}
|
|
|
|
// move i'th motor for relsteps
|
|
errcodes motor_relmove(uint8_t i, int32_t relsteps){
|
|
return motor_absmove(i, stppos[i] + relsteps);
|
|
}
|
|
|
|
errcodes motor_relslow(uint8_t i, int32_t relsteps){
|
|
errcodes e = motor_absmove(i, stppos[i] + relsteps);
|
|
if(ERR_OK == e){
|
|
DBG("-> MVSLOW");
|
|
state[i] = STP_MVSLOW;
|
|
}
|
|
return e;
|
|
}
|
|
|
|
// emergency stop and clear errors
|
|
void emstopmotor(uint8_t i){
|
|
switch(state[i]){
|
|
case STP_ERR: // clear error state
|
|
case STP_STALL:
|
|
DBG("-> RELAX");
|
|
state[i] = STP_RELAX;
|
|
// fallthrough
|
|
case STP_RELAX: // do nothing in stopping state
|
|
return;
|
|
default:
|
|
break;
|
|
}
|
|
stopflag[i] = 1;
|
|
}
|
|
|
|
stp_state getmotstate(uint8_t i){
|
|
return state[i];
|
|
}
|
|
|
|
// count steps @tim 14/15/16
|
|
void addmicrostep(uint8_t i){
|
|
static volatile uint16_t microsteps[MOTORSNO] = {0}; // current microsteps position
|
|
if(esw_block(i)) stopflag[i] = 1; // turn on stop flag if end-switch was active
|
|
if(++microsteps[i] == the_conf.microsteps[i]){
|
|
microsteps[i] = 0;
|
|
stppos[i] += motdir[i];
|
|
uint8_t stop_at_pos = 0;
|
|
if(motdir[i] > 0){
|
|
if(stppos[i] >= targstppos[i]){ // reached stop position
|
|
stop_at_pos = 1;
|
|
}
|
|
}else{
|
|
if(stppos[i] <= targstppos[i]){
|
|
stop_at_pos = 1;
|
|
}
|
|
}
|
|
if(stopflag[i] || stop_at_pos){ // stop NOW
|
|
mottimers[i]->CR1 &= ~TIM_CR1_CEN; // stop timer
|
|
if(stopflag[i]) targstppos[i] = stppos[i]; // keep position (for keep flag)
|
|
stopflag[i] = 0;
|
|
if(the_conf.motflags[i].donthold)
|
|
MOTOR_DIS(i); // turn off power
|
|
state[i] = STP_RELAX;
|
|
#ifdef EBUG
|
|
stp[i] = 1;
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef EBUG
|
|
#define TODECEL() do{state[i] = STP_DECEL; \
|
|
startspeed[i] = curspeed[i]; \
|
|
Taccel[i] = Tms; \
|
|
USB_sendstr("MOTOR"); USB_putbyte('0'+i); \
|
|
USB_sendstr(" -> DECEL@"); printi(stppos[i]); USB_sendstr(", V="); printu(curspeed[i]); newline(); \
|
|
}while(0)
|
|
#else
|
|
#define TODECEL() do{state[i] = STP_DECEL; \
|
|
startspeed[i] = curspeed[i]; \
|
|
Taccel[i] = Tms; \
|
|
}while(0)
|
|
#endif
|
|
|
|
// check state of i`th stepper
|
|
static void chkstepper(int i){
|
|
int32_t i32;
|
|
static uint8_t stopctr[MOTORSNO] = {0}; // counters for encoders/position zeroing after stopping @ esw
|
|
#ifdef EBUG
|
|
if(stp[i]){
|
|
stp[i] = 0;
|
|
// motor state could be changed outside of interrupt, so return it to relax
|
|
state[i] = STP_RELAX;
|
|
USB_sendstr("MOTOR"); USB_putbyte('0'+i); USB_sendstr(" stop @"); printi(stppos[i]);
|
|
USB_sendstr(", V="); printu(curspeed[i]);
|
|
USB_sendstr(", curstate="); printu(state[i]); newline();
|
|
}
|
|
#endif
|
|
switch(state[i]){
|
|
case STP_ACCEL: // acceleration to max speed
|
|
i32 = the_conf.minspd[i] + (the_conf.accel[i] * (Tms - Taccel[i])) / 1000;
|
|
if(i32 >= the_conf.maxspd[i]){ // max speed reached -> move with it
|
|
curspeed[i] = the_conf.maxspd[i];
|
|
state[i] = STP_MOVE;
|
|
#ifdef EBUG
|
|
USB_sendstr("MOTOR"); USB_putbyte('0'+i);
|
|
USB_sendstr(" -> MOVE@"); printi(stppos[i]); USB_sendstr(", V="); printu(curspeed[i]); newline();
|
|
#endif
|
|
}else{ // increase speed
|
|
curspeed[i] = i32;
|
|
}
|
|
recalcARR(i);
|
|
// check position for triangle profile
|
|
if(motdir[i] > 0){
|
|
if(stppos[i] >= decelstartpos[i]){ // reached end of acceleration
|
|
TODECEL();
|
|
}
|
|
}else{
|
|
if(stppos[i] <= decelstartpos[i]){
|
|
TODECEL();
|
|
}
|
|
}
|
|
break;
|
|
case STP_MOVE: // move @ constant speed until need to decelerate
|
|
// check position
|
|
if(motdir[i] > 0){
|
|
if(stppos[i] >= decelstartpos[i]){ // reached start of deceleration
|
|
TODECEL();
|
|
}
|
|
}else{
|
|
if(stppos[i] <= decelstartpos[i]){
|
|
TODECEL();
|
|
}
|
|
}
|
|
break;
|
|
case STP_DECEL:
|
|
//newspeed = curspeed[i] - dV[i];
|
|
i32 = startspeed[i] - (the_conf.accel[i] * (Tms - Taccel[i])) / 1000;
|
|
if(i32 > the_conf.minspd[i]){
|
|
curspeed[i] = i32;
|
|
}else{
|
|
curspeed[i] = the_conf.minspd[i];
|
|
state[i] = STP_MVSLOW;
|
|
#ifdef EBUG
|
|
USB_sendstr("MOTOR"); USB_putbyte('0'+i);
|
|
USB_sendstr(" -> MVSLOW@"); printi(stppos[i]); newline();
|
|
#endif
|
|
}
|
|
recalcARR(i);
|
|
break;
|
|
default: // do nothing, check mvzerostate
|
|
break;
|
|
}
|
|
switch(mvzerostate[i]){
|
|
case M0FAST:
|
|
if(state[i] == STP_RELAX || state[i] == STP_STALL){ // stopped -> move to +
|
|
#ifdef EBUG
|
|
USB_putbyte('M'); USB_putbyte('0'+i); USB_sendstr("FAST: motor stopped\n");
|
|
#endif
|
|
if(ERR_OK != motor_relslow(i, 1000)){
|
|
#ifdef EBUG
|
|
USND("Can't move");
|
|
#endif
|
|
DBG("->ERR");
|
|
state[i] = STP_ERR;
|
|
mvzerostate[i] = M0RELAX;
|
|
ESW_reaction[i] = the_conf.ESW_reaction[i];
|
|
}else{
|
|
mvzerostate[i] = M0SLOW;
|
|
stopctr[i] = 0;
|
|
}
|
|
}
|
|
break;
|
|
case M0SLOW:
|
|
if(0 == ESW_state(i)){ // moved out of limit switch - can stop
|
|
emstopmotor(i);
|
|
}
|
|
if((state[i] == STP_RELAX || state[i] == STP_STALL) && ++stopctr[i] > 5){ // wait at least 50ms
|
|
#ifdef EBUG
|
|
USB_putbyte('M'); USB_putbyte('0'+i); USND("SLOW: motor stopped");
|
|
#endif
|
|
ESW_reaction[i] = the_conf.ESW_reaction[i];
|
|
prevstppos[i] = targstppos[i] = stppos[i] = 0;
|
|
mvzerostate[i] = M0RELAX;
|
|
}
|
|
break;
|
|
default: // RELAX, STALL: do nothing
|
|
break;
|
|
}
|
|
}
|
|
|
|
errcodes motor_goto0(uint8_t i){
|
|
errcodes e = motor_absmove(i, -the_conf.maxsteps[i]);
|
|
if(ERR_OK != e){
|
|
if(!ESW_state(i)) return e; // not @ limit switch -> error
|
|
}else ESW_reaction[i] = ESW_STOPMINUS;
|
|
mvzerostate[i] = M0FAST;
|
|
return e;
|
|
}
|
|
|
|
// smooth motor stopping
|
|
void stopmotor(uint8_t i){
|
|
switch(state[i]){
|
|
case STP_MVSLOW: // immeditially stop on slowest speed
|
|
stopflag[i] = 1;
|
|
return;
|
|
break;
|
|
case STP_MOVE: // stop only in moving states
|
|
case STP_ACCEL:
|
|
break;
|
|
default: // do nothing in other states
|
|
return;
|
|
}
|
|
int32_t newstoppos = stppos[i]; // calculate steps need for stop (we can be @acceleration phase!)
|
|
int32_t add = (curspeed[i] * curspeed[i]) / the_conf.accel[i] / 2;
|
|
if(motdir[i] > 0){
|
|
newstoppos += add;
|
|
if(newstoppos < (int32_t)the_conf.maxsteps[i]) targstppos[i] = newstoppos;
|
|
}else{
|
|
newstoppos -= add;
|
|
if(newstoppos > -((int32_t)the_conf.maxsteps[i])) targstppos[i] = newstoppos;
|
|
}
|
|
TODECEL();
|
|
}
|
|
|
|
void process_steppers(){
|
|
static uint32_t Tlast = 0;
|
|
if(Tms - Tlast < MOTCHKINTERVAL) return; // hit every 10ms
|
|
Tlast = Tms;
|
|
for(int i = 0; i < MOTORSNO; ++i){
|
|
chkstepper(i);
|
|
}
|
|
}
|
|
|
|
uint8_t geteswreact(uint8_t i){
|
|
return ESW_reaction[i];
|
|
}
|