rusefi-1/firmware/hw_layer/stepper.h

89 lines
1.8 KiB
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file stepper.h
*
* @date Dec 24, 2014
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
#pragma once
2015-07-10 06:01:56 -07:00
2018-09-16 19:26:57 -07:00
#include "global.h"
2019-03-29 06:11:13 -07:00
#include "efi_gpio.h"
#include "backup_ram.h"
2020-01-08 22:03:23 -08:00
#include "thread_controller.h"
2015-07-10 06:01:56 -07:00
class StepperHw {
public:
virtual bool step(bool positive) = 0;
void pause() const;
protected:
void setReactionTime(float ms);
private:
float m_reactionTime = 5.0f;
};
class StepDirectionStepper final : public StepperHw {
public:
void initialize(brain_pin_e stepPin, brain_pin_e directionPin, pin_output_mode_e directionPinMode, float reactionTime, brain_pin_e enablePin, pin_output_mode_e enablePinMode);
bool step(bool positive) override;
private:
bool pulse();
void setDirection(bool isIncrementing);
bool m_currentDirection = false;
OutputPin directionPin, stepPin, enablePin;
pin_output_mode_e directionPinMode, stepPinMode, enablePinMode;
};
class DcMotor;
class DualHBridgeStepper final : public StepperHw {
public:
void initialize(DcMotor* motorPhaseA, DcMotor* motorPhaseB, float reactionTime);
bool step(bool positive) override;
private:
DcMotor* m_motorPhaseA = nullptr;
DcMotor* m_motorPhaseB = nullptr;
uint8_t m_phase = 0;
};
2020-01-08 22:03:23 -08:00
class StepperMotor final : private ThreadController<UTILITY_THREAD_STACK_SIZE> {
2015-07-10 06:01:56 -07:00
public:
StepperMotor();
2020-01-08 22:03:23 -08:00
void initialize(StepperHw *hardware, int totalSteps);
2020-01-08 22:03:23 -08:00
2015-07-10 06:01:56 -07:00
void setTargetPosition(int targetPosition);
int getTargetPosition() const;
2015-07-10 06:01:56 -07:00
bool isBusy() const;
2020-01-08 22:03:23 -08:00
int m_currentPosition = 0;
int m_totalSteps = 0;
protected:
void ThreadTask() override;
void setInitialPosition(void);
void saveStepperPos(int pos);
int loadStepperPos();
void changeCurrentPosition(bool positive);
void postCurrentPosition(void);
2020-01-08 22:03:23 -08:00
2015-07-10 06:01:56 -07:00
private:
StepperHw* m_hw = nullptr;
int m_targetPosition = 0;
bool initialPositionSet = false;
2015-07-10 06:01:56 -07:00
};