Subversion Repositories dashGPS

Rev

Blame | Last modification | View Log | Download | RSS feed

  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.   * <h2><center>&copy; Copyright (c) 2016 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 "stm32f1xx_hal.h"
  24.  
  25. /** @addtogroup STM32F1xx_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.  
  52. }
  53.  
  54. /**
  55.   * @brief  DeInitializes the Global MSP.
  56.   * @retval None
  57.   */
  58. void HAL_MspDeInit(void)
  59. {
  60.  
  61. }
  62.  
  63. /**
  64.   * @brief  Initializes the PPP MSP.
  65.   * @retval None
  66.   */
  67. void HAL_PPP_MspInit(void)
  68. {
  69.  
  70. }
  71.  
  72. /**
  73.   * @brief  DeInitializes the PPP MSP.
  74.   * @retval None
  75.   */
  76. void HAL_PPP_MspDeInit(void)
  77. {
  78.  
  79. }
  80.  
  81. /**
  82.   * @}
  83.   */
  84.  
  85. /**
  86.   * @}
  87.   */
  88.  
  89. /**
  90.   * @}
  91.   */
  92.  
  93. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
  94.