stm32f1xx_hal_msp.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. ******************************************************************************
  3. * @file Templates/Src/stm32f1xx_hal_msp.c
  4. * @author MCD Application Team
  5. * @brief HAL MSP module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Includes ------------------------------------------------------------------*/
  20. #include "main.h"
  21. /** @addtogroup STM32F1xx_HAL_Examples
  22. * @{
  23. */
  24. /** @addtogroup Templates
  25. * @{
  26. */
  27. /* Private typedef -----------------------------------------------------------*/
  28. /* Private define ------------------------------------------------------------*/
  29. /* Private macro -------------------------------------------------------------*/
  30. /* Private variables ---------------------------------------------------------*/
  31. /* Private function prototypes -----------------------------------------------*/
  32. /* Private functions ---------------------------------------------------------*/
  33. /** @defgroup HAL_MSP_Private_Functions
  34. * @{
  35. */
  36. /**
  37. * @brief Initializes the Global MSP.
  38. * @param None
  39. * @retval None
  40. */
  41. void HAL_MspInit(void)
  42. {
  43. }
  44. /**
  45. * @brief DeInitializes the Global MSP.
  46. * @param None
  47. * @retval None
  48. */
  49. void HAL_MspDeInit(void)
  50. {
  51. }
  52. /**
  53. * @brief Initializes the PPP MSP.
  54. * @param None
  55. * @retval None
  56. */
  57. /*void HAL_PPP_MspInit(void)
  58. {*/
  59. /*}*/
  60. /**
  61. * @brief DeInitializes the PPP MSP.
  62. * @param None
  63. * @retval None
  64. */
  65. /*void HAL_PPP_MspDeInit(void)
  66. {*/
  67. /*}*/
  68. /**
  69. * @}
  70. */
  71. /**
  72. * @}
  73. */
  74. /**
  75. * @}
  76. */
  77. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/