motorcontrol.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. ******************************************************************************
  3. * @file motorcontrol.h
  4. * @author Motor Control SDK Team, ST Microelectronics
  5. * @brief Motor Control Subsystem initialization functions.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under Ultimate Liberty license
  13. * SLA0044, the "License"; You may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at:
  15. * www.st.com/SLA0044
  16. *
  17. ******************************************************************************
  18. * @ingroup MCAPI
  19. */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __MOTORCONTROL_H
  22. #define __MOTORCONTROL_H
  23. #include "mc_config.h"
  24. #include "parameters_conversion.h"
  25. #include "mc_api.h"
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /* __cplusplus */
  29. /** @addtogroup MCSDK
  30. * @{
  31. */
  32. /** @addtogroup MCAPI
  33. * @{
  34. */
  35. /* Initializes the Motor Control Subsystem */
  36. void MX_MotorControl_Init(void);
  37. /* Do not remove the definition of this symbol. */
  38. #define MC_HAL_IS_USED
  39. /**
  40. * @}
  41. */
  42. /**
  43. * @}
  44. */
  45. #ifdef __cplusplus
  46. }
  47. #endif /* __cpluplus */
  48. #endif /* __MOTORCONTROL_H */
  49. /******************* (C) COPYRIGHT 2019 STMicroelectronics *****END OF FILE****/