| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- ******************************************************************************
- * @file motorcontrol.h
- * @author Motor Control SDK Team, ST Microelectronics
- * @brief Motor Control Subsystem initialization functions.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2019 STMicroelectronics.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by ST under Ultimate Liberty license
- * SLA0044, the "License"; You may not use this file except in compliance with
- * the License. You may obtain a copy of the License at:
- * www.st.com/SLA0044
- *
- ******************************************************************************
- * @ingroup MCAPI
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __MOTORCONTROL_H
- #define __MOTORCONTROL_H
- #include "mc_config.h"
- #include "parameters_conversion.h"
- #include "mc_api.h"
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- /** @addtogroup MCSDK
- * @{
- */
- /** @addtogroup MCAPI
- * @{
- */
- /* Initializes the Motor Control Subsystem */
- void MX_MotorControl_Init(void);
- /* Do not remove the definition of this symbol. */
- #define MC_HAL_IS_USED
- /**
- * @}
- */
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif /* __cpluplus */
- #endif /* __MOTORCONTROL_H */
- /******************* (C) COPYRIGHT 2019 STMicroelectronics *****END OF FILE****/
|