Subversion Repositories DashDisplay

Rev

Rev 56 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /**
  2.   ******************************************************************************
  3.   * @file    stm32l1xx_hal_msp_template.c
  4.   * @author  MCD Application Team
  5.   * @brief   HAL MSP 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.   * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  12.   * All rights reserved.</center></h2>
  13.   *
  14.   * This software component is licensed by ST under BSD 3-Clause license,
  15.   * the "License"; You may not use this file except in compliance with the
  16.   * License. You may obtain a copy of the License at:
  17.   *                        opensource.org/licenses/BSD-3-Clause
  18.   *
  19.   ******************************************************************************
  20.   */
  21.  
  22. /* Includes ------------------------------------------------------------------*/
  23. #include "stm32l1xx_hal.h"
  24.  
  25. /** @addtogroup STM32L1xx_HAL_Driver
  26.   * @{
  27.   */
  28.  
  29. /** @defgroup HAL_MSP HAL_MSP
  30.   * @brief HAL MSP module.
  31.   * @{
  32.   */
  33.  
  34. /* Private typedef -----------------------------------------------------------*/
  35. /* Private define ------------------------------------------------------------*/
  36. /* Private macro -------------------------------------------------------------*/
  37. /* Private variables ---------------------------------------------------------*/
  38. /* Private function prototypes -----------------------------------------------*/
  39. /* Private functions ---------------------------------------------------------*/
  40.  
  41. /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions
  42.   * @{
  43.   */
  44.  
  45. /**
  46.   * @brief  Initializes the Global MSP.
  47.   * @retval None
  48.   */
  49. void HAL_MspInit(void)
  50. {
  51.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  52.             modified by the user
  53.    */
  54. }
  55.  
  56. /**
  57.   * @brief  DeInitializes the Global MSP.
  58.   * @retval None
  59.   */
  60. void HAL_MspDeInit(void)
  61. {
  62.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  63.             modified by the user
  64.    */
  65. }
  66.  
  67. /**
  68.   * @brief  Initializes the PPP MSP.
  69.   * @retval None
  70.   */
  71. void HAL_PPP_MspInit(void)
  72. {
  73.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  74.             modified by the user
  75.    */
  76. }
  77.  
  78. /**
  79.   * @brief  DeInitializes the PPP MSP.
  80.   * @retval None
  81.   */
  82. void HAL_PPP_MspDeInit(void)
  83. {
  84.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  85.             modified by the user
  86.    */
  87. }
  88.  
  89. /**
  90.   * @}
  91.   */
  92.  
  93. /**
  94.   * @}
  95.   */
  96.  
  97. /**
  98.   * @}
  99.   */
  100.  
  101. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
  102.