
Simple code to run steps
Dependencies: X-NUCLEO-IHM05A1 mbed
Fork of HelloWorld_IHM05A1 by
main.cpp
- Committer:
- Arkadi
- Date:
- 2018-01-14
- Revision:
- 10:93b6d1b02071
- Parent:
- 9:4b2736fbecdf
File content as of revision 10:93b6d1b02071:
/** ****************************************************************************** * @file main.cpp * @author IPC Rennes * @version V1.0.0 * @date April 13th, 2016 * @brief mbed simple application for the STMicroelectronics X-NUCLEO-IHM05A1 * Motor Control Expansion Board: control of 1 motor. ****************************************************************************** * @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. * ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ /* mbed specific header files. */ #include "mbed.h" /* Component specific header files. */ #include "L6208.h" #define DELAY_STEPS 1000 #define STEPS_PER 1 #define NUM_STEPS 400 #define NUM_ROTATION 1 int32_t steps=0; /* Definitions ---------------------------------------------------------------*/ #ifdef TARGET_NUCLEO_F334R8 #define VREFA_PWM_PIN D11 #define VREFB_PWM_PIN D9 #elif TARGET_NUCLEO_F302R8 #define VREFA_PWM_PIN D11 #define VREFB_PWM_PIN D15 /* HW mandatory patch: bridge manually D9 with D15 */ #else #define VREFA_PWM_PIN D3 #define VREFB_PWM_PIN D9 #endif /* Variables -----------------------------------------------------------------*/ /* Initialization parameters of the motor connected to the expansion board. */ l6208_init_t init = { 100, //Acceleration rate in step/s^2 or (1/16)th step/s^2 for microstep modes 50, //Acceleration current torque in % (from 0 to 100) 100, //Deceleration rate in step/s^2 or (1/16)th step/s^2 for microstep modes 50, //Deceleration current torque in % (from 0 to 100) 100, //Running speed in step/s or (1/16)th step/s for microstep modes 50, //Running current torque in % (from 0 to 100) 50, //Holding current torque in % (from 0 to 100) STEP_MODE_HALF, //Step mode via enum motorStepMode_t SLOW_DECAY, //Decay mode via enum motorDecayMode_t 10, //Dwelling time in ms FALSE, //Automatic HIZ STOP 100000 //VREFA and VREFB PWM frequency (Hz) }; /* Motor Control Component. */ L6208 *motor; /* Functions -----------------------------------------------------------------*/ /** * @brief This is an example of user handler for the flag interrupt. * @param None * @retval None * @note If needed, implement it, and then attach and enable it: * + motor->attach_flag_irq(&my_flag_irq_handler); * + motor->enable_flag_irq(); * To disable it: * + motor->DisbleFlagIRQ(); */ void my_flag_irq_handler(void) { printf(" WARNING: \"FLAG\" interrupt triggered:\r\n"); motor->disable(); printf(" Motor disabled.\r\n\n"); } /** * @brief This is an example of error handler. * @param[in] error Number of the error * @retval None * @note If needed, implement it, and then attach it: * + motor->attach_error_handler(&my_error_handler); */ void my_error_handler(uint16_t error) { /* Printing to the console. */ printf("Error %d detected\r\n\n", error); /* Infinite loop */ while (true) { } } /* Main ----------------------------------------------------------------------*/ int main() { /* Printing to the console. */ printf("STARTING MAIN PROGRAM\r\n"); printf(" Reminder:\r\n"); printf(" The position unit is in agreement to the step mode.\r\n"); printf(" The speed, acceleration or deceleration unit depend on the step mode:\r\n"); printf(" - For normal mode and half step mode, the unit is steps/s or /s^2.\r\n"); printf(" - For microstep modes, the unit is (1/16)steps/s or /s^2.\r\n"); //----- Initialization /* Initializing Motor Control Component. */ motor = new L6208(D2, D8, D7, D4, D5, D6, VREFA_PWM_PIN, VREFB_PWM_PIN); if (motor->init(&init) != COMPONENT_OK) { exit(EXIT_FAILURE); } /* Attaching and enabling an interrupt handler. */ motor->attach_flag_irq(&my_flag_irq_handler); motor->enable_flag_irq(); /* Attaching an error handler */ motor->attach_error_handler(&my_error_handler); /* Printing to the console. */ printf("Run motor at 1/16 micro stepping"); /* Print parameters to the console */ printf(" Motor Max Speed: %d step/s.\r\n", motor->get_max_speed()); printf(" Motor Min Speed: %d step/s.\r\n", motor->get_min_speed()); printf(" Motor Acceleration: %d step/s.\r\n", motor->get_acceleration()); printf(" Motor Deceleration: %d step/s.\r\n", motor->get_deceleration()); //----- Change step mode to full step mode motor->set_step_mode(StepperMotor::STEP_MODE_HALF); printf(" Motor step mode: %d (0:FS, 1:1/2, 2:1/4, 3:1/8, 4:1/16).\r\n", motor->get_step_mode()); ////----- run the motor BACKWARD // printf("--> Running the motor backward.\r\n"); // motor->run(StepperMotor::BWD); // // // // wait untill motor is at const speed // while (motor->get_status()!=STEADY) { // /* Print reached speed to the console in step/s or microsteps/s */ // printf(" Reached Speed: %d microstep/s.\r\n", motor->get_speed()); // wait_ms(50); // } // printf(" Reached Speed: %d microstep/s.\r\n", motor->get_speed()); // // // run continious // /* Wait for 1 second */ // wait(60); // ////----- Soft stop required while running // printf("--> Soft stop requested.\r\n"); // motor->soft_stop(); // // /* Wait for the motor of device ends moving */ // motor->wait_while_active(); while (steps<NUM_STEPS*NUM_ROTATION){ //----- move of STEPS_PER steps in the FW direction motor->move(StepperMotor::FWD, STEPS_PER); /* Wait for DELAY_STEPS*/ wait_ms(DELAY_STEPS); steps=motor->get_position(); printf("--> %d steps.\r\n",steps); } } /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/