Hal Drivers for L4

Dependents:   BSP OneHopeOnePrayer FINAL_AUDIO_RECORD AudioDemo

Fork of STM32L4xx_HAL_Driver by Senior Design: Sound Monitor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers stm32l4xx_hal_msp_template.c Source File

stm32l4xx_hal_msp_template.c

Go to the documentation of this file.
00001 /**
00002   ******************************************************************************
00003   * @file    stm32l4xx_hal_msp_template.c
00004   * @author  MCD Application Team
00005   * @version V1.1.0
00006   * @date    16-September-2015
00007   * @brief   HAL MSP module.
00008   *          This file template is located in the HAL folder and should be copied 
00009   *          to the user folder.
00010   *         
00011   @verbatim
00012  ===============================================================================
00013                      ##### How to use this driver #####
00014  ===============================================================================
00015     [..]
00016     This file is generated automatically by MicroXplorer and eventually modified 
00017     by the user
00018 
00019   @endverbatim
00020   ******************************************************************************
00021   * @attention
00022   *
00023   * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
00024   *
00025   * Redistribution and use in source and binary forms, with or without modification,
00026   * are permitted provided that the following conditions are met:
00027   *   1. Redistributions of source code must retain the above copyright notice,
00028   *      this list of conditions and the following disclaimer.
00029   *   2. Redistributions in binary form must reproduce the above copyright notice,
00030   *      this list of conditions and the following disclaimer in the documentation
00031   *      and/or other materials provided with the distribution.
00032   *   3. Neither the name of STMicroelectronics nor the names of its contributors
00033   *      may be used to endorse or promote products derived from this software
00034   *      without specific prior written permission.
00035   *
00036   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00037   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00038   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00039   * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
00040   * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00041   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
00042   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00043   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00044   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
00045   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00046   *
00047   ******************************************************************************  
00048   */ 
00049 
00050 /* Includes ------------------------------------------------------------------*/
00051 #include "stm32l4xx_hal.h"
00052 
00053 /** @addtogroup STM32L4xx_HAL_Driver
00054   * @{
00055   */
00056 
00057 /** @defgroup HAL_MSP HAL MSP module driver
00058   * @brief HAL MSP module.
00059   * @{
00060   */
00061 
00062 /* Private typedef -----------------------------------------------------------*/
00063 /* Private define ------------------------------------------------------------*/
00064 /* Private macro -------------------------------------------------------------*/
00065 /* Private variables ---------------------------------------------------------*/
00066 /* Private function prototypes -----------------------------------------------*/
00067 /* Private functions ---------------------------------------------------------*/
00068 
00069 /** @defgroup HAL_MSP_Private_Functions
00070   * @{
00071   */
00072 
00073 /**
00074   * @brief  Initialize the Global MSP.
00075   * @param  None
00076   * @retval None
00077   */
00078 void HAL_MspInit(void)
00079 {
00080   /* NOTE : This function is generated automatically by STM32CubeMX and eventually  
00081             modified by the user
00082    */ 
00083 }
00084 
00085 /**
00086   * @brief  DeInitialize the Global MSP.
00087   * @param  None  
00088   * @retval None
00089   */
00090 void HAL_MspDeInit(void)
00091 {
00092   /* NOTE : This function is generated automatically by STM32CubeMX and eventually  
00093             modified by the user
00094    */
00095 }
00096 
00097 /**
00098   * @brief  Initialize the PPP MSP.
00099   * @param  None
00100   * @retval None
00101   */
00102 void HAL_PPP_MspInit(void)
00103 {
00104   /* NOTE : This function is generated automatically by STM32CubeMX and eventually  
00105             modified by the user
00106    */ 
00107 }
00108 
00109 /**
00110   * @brief  DeInitialize the PPP MSP.
00111   * @param  None  
00112   * @retval None
00113   */
00114 void HAL_PPP_MspDeInit(void)
00115 {
00116   /* NOTE : This function is generated automatically by STM32CubeMX and eventually  
00117             modified by the user
00118    */
00119 }
00120 
00121 /**
00122   * @}
00123   */
00124 
00125 /**
00126   * @}
00127   */
00128 
00129 /**
00130   * @}
00131   */
00132 
00133 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
00134