stm32f1xx_hal_msp_template.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. ******************************************************************************
  3. * @file stm32f1xx_hal_msp_template.c
  4. * @author MCD Application Team
  5. * @brief HAL BSP module.
  6. * This file template is located in the HAL folder and should be copied
  7. * to the user folder.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2016 STMicroelectronics.
  12. * All rights reserved.
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /* Includes ------------------------------------------------------------------*/
  21. #include "stm32f1xx_hal.h"
  22. /** @addtogroup STM32F1xx_HAL_Driver
  23. * @{
  24. */
  25. /** @defgroup HAL_MSP HAL_MSP
  26. * @brief HAL MSP module.
  27. * @{
  28. */
  29. /* Private typedef -----------------------------------------------------------*/
  30. /* Private define ------------------------------------------------------------*/
  31. /* Private macro -------------------------------------------------------------*/
  32. /* Private variables ---------------------------------------------------------*/
  33. /* Private function prototypes -----------------------------------------------*/
  34. /* Private functions ---------------------------------------------------------*/
  35. /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions
  36. * @{
  37. */
  38. /**
  39. * @brief Initializes the Global MSP.
  40. * @retval None
  41. */
  42. void HAL_MspInit(void)
  43. {
  44. }
  45. /**
  46. * @brief DeInitializes the Global MSP.
  47. * @retval None
  48. */
  49. void HAL_MspDeInit(void)
  50. {
  51. }
  52. /**
  53. * @brief Initializes the PPP MSP.
  54. * @retval None
  55. */
  56. void HAL_PPP_MspInit(void)
  57. {
  58. }
  59. /**
  60. * @brief DeInitializes the PPP MSP.
  61. * @retval None
  62. */
  63. void HAL_PPP_MspDeInit(void)
  64. {
  65. }
  66. /**
  67. * @}
  68. */
  69. /**
  70. * @}
  71. */
  72. /**
  73. * @}
  74. */