Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ST_INTERFACES
Dependents: HelloWorld_IHM14A1
Fork of X_NUCLEO_IHM14A1 by
Components/Common/motor_def.h
- Committer:
- Davidroid
- Date:
- 2018-04-27
- Revision:
- 1:bc265521eb00
- Child:
- 2:4fd08b67958c
File content as of revision 1:bc265521eb00:
/** ****************************************************************************** * @file motor_def.h * @author STM * @version V1.7.0 * @date August 7th, 2017 * @brief This file contains all the functions prototypes for motor drivers. ****************************************************************************** * @attention * * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of STMicroelectronics nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MOTOR_H #define __MOTOR_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include <stdint.h> #include "component_def.h" /** @addtogroup BSP * @{ */ /** @addtogroup Components * @{ */ /** @defgroup Motor Motor * @{ */ /** @defgroup Motor_Exported_Constants Motor Exported Constants * @{ */ /// boolean for false condition #ifndef FALSE #define FALSE (0) #endif /// boolean for true condition #ifndef TRUE #define TRUE (1) #endif /** * @} */ /** @defgroup Motor_Exported_Types Motor Exported Types * @{ */ /** @defgroup Motor_Boolean_Type Motor Boolean Type * @{ */ ///bool Type typedef uint8_t bool; /** * @} */ /** @defgroup Device_Direction_Options Device Direction Options * @{ */ /// Direction options typedef enum { BACKWARD = 0, FORWARD = 1, UNKNOW_DIR = ((uint8_t)0xFF) } motor_direction_t; /** * @} */ /** @defgroup Device_Action_Options Device Action Options * @{ */ /// Action options typedef enum { ACTION_RESET = ((uint8_t)0x00), ACTION_COPY = ((uint8_t)0x08) } motor_action_t; /** * @} */ /** @defgroup Device_States Device States * @{ */ /// Device states typedef enum { ACCELERATING = 0, DECELERATINGTOSTOP = 1, DECELERATING = 2, STEADY = 3, INDEX_ACCEL = 4, INDEX_RUN = 5, INDEX_DECEL = 6, INDEX_DWELL = 7, INACTIVE = 8, STANDBY = 9, STANDBYTOINACTIVE = 10 } motor_state_t; /** * @} */ /** @defgroup Device_Step_mode Device Step mode * @{ */ /// Stepping options typedef enum { STEP_MODE_FULL = ((uint8_t)0x00), STEP_MODE_HALF = ((uint8_t)0x01), STEP_MODE_1_4 = ((uint8_t)0x02), STEP_MODE_1_8 = ((uint8_t)0x03), STEP_MODE_1_16 = ((uint8_t)0x04), STEP_MODE_1_32 = ((uint8_t)0x05), STEP_MODE_1_64 = ((uint8_t)0x06), STEP_MODE_1_128 = ((uint8_t)0x07), STEP_MODE_1_256 = ((uint8_t)0x08), STEP_MODE_UNKNOW = ((uint8_t)0xFE), STEP_MODE_WAVE = ((uint8_t)0xFF) } motor_step_mode_t; /** * @} */ /** @defgroup Decay_mode Decay mode * @{ */ /// Decay Mode typedef enum { SLOW_DECAY = 0, FAST_DECAY = 1, MIXED_DECAY = 2, UNKNOW_DECAY = ((uint8_t)0xFF) } motor_decay_mode_t; /** * @} */ /** @defgroup Stop_mode Stop mode * @{ */ /// Stop mode typedef enum { HOLD_MODE = 0, HIZ_MODE = 1, STANDBY_MODE = 2, UNKNOW_STOP_MODE = ((uint8_t)0xFF) } motor_stop_mode_t; /** * @} */ /** @defgroup Torque_mode Torque mode * @{ */ /// Torque mode typedef enum { ACC_TORQUE = 0, DEC_TORQUE = 1, RUN_TORQUE = 2, HOLD_TORQUE = 3, CURRENT_TORQUE = 4, UNKNOW_TORQUE = ((uint8_t)0xFF) } motor_torque_mode_t; /** * @} */ /** @defgroup Dual_Full_Bridge_Configuration Dual Full Bridge Configuration * @{ */ ///Dual full bridge configurations for brush DC motors typedef enum { PARALLELING_NONE___1_BIDIR_MOTOR_BRIDGE_A__1_BIDIR_MOTOR_BRIDGE_B = 0, PARALLELING_NONE___1_BIDIR_MOTOR_BRIDGE_A__2_UNDIR_MOTOR_BRIDGE_B = 1, PARALLELING_NONE___2_UNDIR_MOTOR_BRIDGE_A__1_BIDIR_MOTOR_BRIDGE_B = 2, PARALLELING_NONE___2_UNDIR_MOTOR_BRIDGE_A__2_UNDIR_MOTOR_BRIDGE_B = 3, PARALLELING_IN1A_IN2A__1_UNDIR_MOTOR_BRIDGE_A__1_BIDIR_MOTOR_BRIDGE_B = 4, PARALLELING_IN1A_IN2A__1_UNDIR_MOTOR_BRIDGE_A__2_UNDIR_MOTOR_BRIDGE_B = 5, PARALLELING_IN1B_IN2B__1_BIDIR_MOTOR_BRIDGE_A__1_UNDIR_MOTOR_BRIDGE_B = 6, PARALLELING_IN1B_IN2B__2_UNDIR_MOTOR_BRIDGE_A__1_UNDIR_MOTOR_BRIDGE_B = 7, PARALLELING_IN1A_IN2A__IN1B_IN2B__1_UNDIR_MOTOR_BRIDGE_A__1_UNDIR_MOTOR_BRIDGE_B = 8, PARALLELING_IN1A_IN2A__IN1B_IN2B__1_BIDIR_MOTOR = 9, PARALLELING_IN1A_IN1B__IN2A_IN2B__1_UNDIR_MOTOR_BRIDGE_1A__1_UNDIR_MOTOR_BRIDGE_2A = 10, PARALLELING_IN1A_IN1B__IN2A_IN2B__1_BIDIR_MOTOR = 11, PARALLELING_ALL_WITH_IN1A___1_UNDIR_MOTOR = 12, PARALLELING_END_ENUM = 13 } dual_full_bridge_config_t; /** * @} */ /** @defgroup Motor_Driver_Structure Motor Driver Structure * @{ */ /// Motor driver structure definition typedef struct { /* ACTION ----------------------------------------------------------------* * Declare here the component's generic functions. * * Tag this group of functions with the " Generic " C-style comment. * * A component's interface has to define at least the two generic * * functions provided here below within the "Example" section, as the * * first and second functions of its Virtual Table. They have to be * * specified exactly in the given way. * * * * Example: * * status_t (*Init) (void *handle, void *init); * * status_t (*ReadID) (void *handle, uint8_t *id); * *------------------------------------------------------------------------*/ /* Generic */ /// Function pointer to Init status_t (*Init)(void *handle, void *init); /// Function pointer to ReadID status_t (*ReadID)(void *handle, uint8_t *id); /* ACTION ----------------------------------------------------------------* * Declare here the component's interrupts related functions. * * Tag this group of functions with the " Interrupts " C-style comment. * * Do not specify any function if not required. * * * * Example: * * void (*ConfigIT) (void *handle, int a); * *------------------------------------------------------------------------*/ /* Interrupts */ /// Function pointer to AttachErrorHandler void(*AttachErrorHandler)(void *handle, void (*callback)(void *handle, uint16_t error)); /// Function pointer to AttachFlagInterrupt void (*AttachFlagInterrupt)(void *handle, void (*callback)(void *handle)); /// Function pointer to AttachBusyInterrupt void (*AttachBusyInterrupt)(void *handle, void (*callback)(void *handle)); /// Function pointer to FlagInterruptHandler void (*FlagInterruptHandler)(void *handle); /* ACTION ----------------------------------------------------------------* * Declare here the component's specific functions. * * Tag this group of functions with the " Specific " C-style comment. * * Do not specify any function if not required. * * * * Example: * * status_t (*GetValue) (void *handle, float *f); * *------------------------------------------------------------------------*/ /* Specific */ /// Function pointer to GetAcceleration uint16_t (*GetAcceleration)(void *handle, uint8_t deviceId); /// Function pointer to GetCurrentSpeed uint16_t (*GetCurrentSpeed)(void *handle, uint8_t deviceId); /// Function pointer to GetDeceleration uint16_t (*GetDeceleration)(void *handle, uint8_t deviceId); /// Function pointer to GetDeviceState motor_state_t(*GetDeviceState)(void *handle, uint8_t deviceId); /// Function pointer to GetFwVersion uint32_t (*GetFwVersion)(void *handle); /// Function pointer to GetMark int32_t (*GetMark)(void *handle, uint8_t deviceId); /// Function pointer to GetMaxSpeed uint16_t (*GetMaxSpeed)(void *handle, uint8_t deviceId); /// Function pointer to GetMinSpeed uint16_t (*GetMinSpeed)(void *handle, uint8_t deviceId); /// Function pointer to GetPosition int32_t (*GetPosition)(void *handle, uint8_t deviceId); /// Function pointer to GoHome void (*GoHome)(void *handle, uint8_t deviceId); /// Function pointer to GoMark void (*GoMark)(void *handle, uint8_t deviceId); /// Function pointer to GoTo void (*GoTo)(void *handle, uint8_t deviceId, int32_t targetPosition); /// Function pointer to HardStop void (*HardStop)(void *handle, uint8_t deviceId); /// Function pointer to Move void (*Move)(void *handle, uint8_t deviceId, motor_direction_t direction, uint32_t stepCount); /// Function pointer to ResetAllDevices void (*ResetAllDevices)(void *handle); /// Function pointer to Run void (*Run)(void *handle, uint8_t deviceId, motor_direction_t direction); /// Function pointer to SetAcceleration bool(*SetAcceleration)(void *handle, uint8_t deviceId, uint16_t newAcc); /// Function pointer to SetDeceleration bool(*SetDeceleration)(void *handle, uint8_t deviceId, uint16_t newDec); /// Function pointer to SetHome void (*SetHome)(void *handle, uint8_t deviceId); /// Function pointer to SetMark void (*SetMark)(void *handle, uint8_t deviceId); /// Function pointer to SetMaxSpeed bool (*SetMaxSpeed)(void *handle, uint8_t deviceId, uint16_t newMaxSpeed); /// Function pointer to SetMinSpeed bool (*SetMinSpeed)(void *handle, uint8_t deviceId, uint16_t newMinSpeed); /// Function pointer to SoftStop bool (*SoftStop)(void *handle, uint8_t deviceId); /// Function pointer to StepClockHandler void (*StepClockHandler)(void *handle, uint8_t deviceId); /// Function pointer to WaitWhileActive void (*WaitWhileActive)(void *handle, uint8_t deviceId); /// Function pointer to CmdDisable void (*CmdDisable)(void *handle, uint8_t deviceId); /// Function pointer to CmdEnable void (*CmdEnable)(void *handle, uint8_t deviceId); /// Function pointer to CmdGetParam uint32_t (*CmdGetParam)(void *handle, uint8_t deviceId, uint32_t cmd); /// Function pointer to CmdGetStatus uint16_t (*CmdGetStatus)(void *handle, uint8_t deviceId); /// Function pointer to CmdNop void (*CmdNop)(void *handle, uint8_t deviceId); /// Function pointer to CmdSetParam void (*CmdSetParam)(void *handle, uint8_t deviceId, uint32_t cmd, uint32_t param); /// Function pointer to ReadStatusRegister uint16_t (*ReadStatusRegister)(void *handle, uint8_t deviceId); /// Function pointer to ReleaseReset void (*ReleaseReset)(void *handle, uint8_t deviceId); /// Function pointer to Reset void (*Reset)(void *handle, uint8_t deviceId); /// Function pointer to SelectStepMode bool (*SelectStepMode)(void *handle, uint8_t deviceId, motor_step_mode_t stepMode); /// Function pointer to SetDirection void (*SetDirection)(void *handle, uint8_t deviceId, motor_direction_t direction); /// Function pointer to CmdGoToDir void (*CmdGoToDir)(void *handle, uint8_t deviceId, motor_direction_t direction, int32_t targetPosition); /// Function pointer to CheckBusyHw uint8_t (*CheckBusyHw)(void *handle); /// Function pointer to CheckStatusHw uint8_t (*CheckStatusHw)(void *handle); /// Function pointer to CmdGoUntil void (*CmdGoUntil)(void *handle, uint8_t deviceId, motor_action_t action, motor_direction_t direction, uint32_t position); /// Function pointer to CmdHardHiZ void (*CmdHardHiZ)(void *handle, uint8_t deviceId); /// Function pointer to CmdReleaseSw void (*CmdReleaseSw)(void *handle, uint8_t deviceId, motor_action_t action, motor_direction_t direction); /// Function pointer to CmdResetDevice void (*CmdResetDevice)(void *handle, uint8_t deviceId); /// Function pointer to CmdResetPos void (*CmdResetPos)(void *handle, uint8_t deviceId); /// Function pointer to CmdRun void (*CmdRun)(void *handle, uint8_t deviceId, motor_direction_t position, uint32_t p); /// Function pointer to CmdSoftHiZ void (*CmdSoftHiZ)(void *handle, uint8_t deviceId); /// Function pointer to CmdStepClock void (*CmdStepClock)(void *handle, uint8_t deviceId, motor_direction_t direction); /// Function pointer to FetchAndClearAllStatus void (*FetchAndClearAllStatus)(void *handle); /// Function pointer to GetFetchedStatus uint16_t (*GetFetchedStatus)(void *handle, uint8_t deviceId); /// Function pointer to GetNbDevices uint8_t (*GetNbDevices)(void *handle); /// Function pointer to IsDeviceBusy bool (*IsDeviceBusy)(void *handle, uint8_t deviceId); /// Function pointer to SendQueuedCommands void (*SendQueuedCommands)(void *handle); /// Function pointer to QueueCommands void (*QueueCommands)(void *handle, uint8_t deviceId, uint8_t p1, int32_t p2); /// Function pointer to WaitForAllDevicesNotBusy void (*WaitForAllDevicesNotBusy)(void *handle); /// Function pointer to ErrorHandler void (*ErrorHandler)(void *handle, uint16_t error); /// Function pointer to BusyInterruptHandler void (*BusyInterruptHandler)(void *handle); /// Function pointer to CmdSoftStop void (*CmdSoftStop)(void *handle, uint8_t deviceId); /// Function pointer to StartStepClock void (*StartStepClock)(void *handle, uint16_t p); /// Function pointer to StopStepClock void (*StopStepClock)(void *handle); /// Function pointer to SetDualFullBridgeConfig void (*SetDualFullBridgeConfig)(void *handle, uint8_t deviceId); /// Function pointer to GetBridgeInputPwmFreq uint32_t (*GetBridgeInputPwmFreq)(void *handle, uint8_t deviceId); /// Function pointer to SetBridgeInputPwmFreq void (*SetBridgeInputPwmFreq)(void *handle, uint8_t deviceId, uint32_t newFreq); /// Function pointer to SetStopMode void (*SetStopMode)(void *handle, uint8_t deviceId, motor_stop_mode_t stopMode); /// Function pointer to GetStopMode motor_stop_mode_t (*GetStopMode)(void *handle, uint8_t deviceId); /// Function pointer to SetDecayMode void (*SetDecayMode)(void *handle, uint8_t deviceId, motor_decay_mode_t decayMode); /// Function pointer to GetDecayMode motor_decay_mode_t (*GetDecayMode)(void *handle, uint8_t deviceId); /// Function pointer to GetStepMode motor_step_mode_t (*GetStepMode)(void *handle, uint8_t deviceId); /// Function pointer to GetDirection motor_direction_t (*GetDirection)(void *handle, uint8_t deviceId); /// Function pointer to ExitDeviceFromReset void (*ExitDeviceFromReset)(void *handle, uint8_t deviceId); /// Function pointer to SetTorque void (*SetTorque)(void *handle, uint8_t deviceId, motor_torque_mode_t torqueMode, uint8_t torqueValue); /// Function pointer to GetTorque uint8_t (*GetTorque)(void *handle, uint8_t deviceId, motor_torque_mode_t torqueMode); /// Function pointer to SetVRefFreq void (*SetRefFreq)(void *handle, uint8_t deviceId, uint32_t refFreq); /// Function pointer to GetVRefFreq uint32_t (*GetRefFreq)(void *handle, uint8_t deviceId); /// Function pointer to SetVRefDc void (*SetRefDc)(void *handle, uint8_t deviceId, uint8_t refDc); /// Function pointer to GetVRefDc uint8_t (*GetRefDc)(void *handle, uint8_t deviceId); /// Function pointer to SetNbDevices bool (*SetNbDevices)(void *handle, uint8_t deviceId); /// Function pointer to SetAnalogValue bool (*SetAnalogValue)(void *handle, uint8_t deviceId, uint32_t param, float value); /// Function pointer to GetAnalogValue float (*GetAnalogValue)(void *handle, uint8_t deviceId, uint32_t param); /// Function pointer to SetTorqueBoostEnable void (*SetTorqueBoostEnable)(void *handle, uint8_t deviceId, bool enable); /// Function pointer to GetTorqueBoostEnable bool (*GetTorqueBoostEnable)(void *handle, uint8_t deviceId); /// Function pointer to SetTorqueBoostThreshold void (*SetTorqueBoostThreshold)(void *handle, uint8_t deviceId, uint16_t speedThreshold); /// Function pointer to GetTorqueBoostThreshold uint16_t (*GetTorqueBoostThreshold)(void *handle, uint8_t deviceId); } MOTOR_vt_t; /** * @} */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ #ifdef __cplusplus } #endif #endif /* __MOTOR_H */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/