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.   * Copyright (c) 2017 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.  
  21. /* Includes ------------------------------------------------------------------*/
  22. #include "stm32l1xx_hal.h"
  23.  
  24. /** @addtogroup STM32L1xx_HAL_Driver
  25.   * @{
  26.   */
  27.  
  28. /** @defgroup HAL_MSP HAL_MSP
  29.   * @brief HAL MSP module.
  30.   * @{
  31.   */
  32.  
  33. /* Private typedef -----------------------------------------------------------*/
  34. /* Private define ------------------------------------------------------------*/
  35. /* Private macro -------------------------------------------------------------*/
  36. /* Private variables ---------------------------------------------------------*/
  37. /* Private function prototypes -----------------------------------------------*/
  38. /* Private functions ---------------------------------------------------------*/
  39.  
  40. /** @defgroup HAL_MSP_Exported_Functions HAL MSP Exported Functions
  41.   * @{
  42.   */
  43.  
  44. /**
  45.   * @brief  Initializes the Global MSP.
  46.   * @retval None
  47.   */
  48. void HAL_MspInit(void)
  49. {
  50.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  51.             modified by the user
  52.    */
  53. }
  54.  
  55. /**
  56.   * @brief  DeInitializes the Global MSP.
  57.   * @retval None
  58.   */
  59. void HAL_MspDeInit(void)
  60. {
  61.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  62.             modified by the user
  63.    */
  64. }
  65.  
  66. /**
  67.   * @brief  Initializes the PPP MSP.
  68.   * @retval None
  69.   */
  70. void HAL_PPP_MspInit(void)
  71. {
  72.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  73.             modified by the user
  74.    */
  75. }
  76.  
  77. /**
  78.   * @brief  DeInitializes the PPP MSP.
  79.   * @retval None
  80.   */
  81. void HAL_PPP_MspDeInit(void)
  82. {
  83.   /* NOTE : This function is generated automatically by STM32CubeMX and eventually
  84.             modified by the user
  85.    */
  86. }
  87.  
  88. /**
  89.   * @}
  90.   */
  91.  
  92. /**
  93.   * @}
  94.   */
  95.  
  96. /**
  97.   * @}
  98.   */
  99.  
  100.  
  101.