Team Riedel - display

Dependencies:   LCD_fonts SPI_TFT_ILI9341 CMSIS_DSP_401_without_cm4 mbed-src SDFileSystem wavfile

Committer:
linx0576
Date:
Mon Dec 14 22:13:11 2015 +0000
Revision:
13:ab0285338951
Parent:
9:5a860b9c8a6a
update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
EricLew 9:5a860b9c8a6a 1 /**
EricLew 9:5a860b9c8a6a 2 ******************************************************************************
EricLew 9:5a860b9c8a6a 3 * @file DFSDM/DFSDM_AudioRecord/Inc/stm32l4xx_it.h
EricLew 9:5a860b9c8a6a 4 * @author MCD Application Team
EricLew 9:5a860b9c8a6a 5 * @version V1.1.0
EricLew 9:5a860b9c8a6a 6 * @date 16-September-2015
EricLew 9:5a860b9c8a6a 7 * @brief This file contains the headers of the interrupt handlers.
EricLew 9:5a860b9c8a6a 8 ******************************************************************************
EricLew 9:5a860b9c8a6a 9 * @attention
EricLew 9:5a860b9c8a6a 10 *
EricLew 9:5a860b9c8a6a 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
EricLew 9:5a860b9c8a6a 12 *
EricLew 9:5a860b9c8a6a 13 * Redistribution and use in source and binary forms, with or without modification,
EricLew 9:5a860b9c8a6a 14 * are permitted provided that the following conditions are met:
EricLew 9:5a860b9c8a6a 15 * 1. Redistributions of source code must retain the above copyright notice,
EricLew 9:5a860b9c8a6a 16 * this list of conditions and the following disclaimer.
EricLew 9:5a860b9c8a6a 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
EricLew 9:5a860b9c8a6a 18 * this list of conditions and the following disclaimer in the documentation
EricLew 9:5a860b9c8a6a 19 * and/or other materials provided with the distribution.
EricLew 9:5a860b9c8a6a 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
EricLew 9:5a860b9c8a6a 21 * may be used to endorse or promote products derived from this software
EricLew 9:5a860b9c8a6a 22 * without specific prior written permission.
EricLew 9:5a860b9c8a6a 23 *
EricLew 9:5a860b9c8a6a 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
EricLew 9:5a860b9c8a6a 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
EricLew 9:5a860b9c8a6a 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
EricLew 9:5a860b9c8a6a 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
EricLew 9:5a860b9c8a6a 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
EricLew 9:5a860b9c8a6a 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
EricLew 9:5a860b9c8a6a 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
EricLew 9:5a860b9c8a6a 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
EricLew 9:5a860b9c8a6a 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
EricLew 9:5a860b9c8a6a 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
EricLew 9:5a860b9c8a6a 34 *
EricLew 9:5a860b9c8a6a 35 ******************************************************************************
EricLew 9:5a860b9c8a6a 36 */
EricLew 9:5a860b9c8a6a 37
EricLew 9:5a860b9c8a6a 38 /* Define to prevent recursive inclusion -------------------------------------*/
EricLew 9:5a860b9c8a6a 39 #ifndef __STM32L4xx_IT_H
EricLew 9:5a860b9c8a6a 40 #define __STM32L4xx_IT_H
EricLew 9:5a860b9c8a6a 41
EricLew 9:5a860b9c8a6a 42 #ifdef __cplusplus
EricLew 9:5a860b9c8a6a 43 extern "C" {
EricLew 9:5a860b9c8a6a 44 #endif
EricLew 9:5a860b9c8a6a 45
EricLew 9:5a860b9c8a6a 46 /* Includes ------------------------------------------------------------------*/
EricLew 9:5a860b9c8a6a 47 /* Exported types ------------------------------------------------------------*/
EricLew 9:5a860b9c8a6a 48 /* Exported constants --------------------------------------------------------*/
EricLew 9:5a860b9c8a6a 49 /* Exported macro ------------------------------------------------------------*/
EricLew 9:5a860b9c8a6a 50 /* Exported functions ------------------------------------------------------- */
EricLew 9:5a860b9c8a6a 51
EricLew 9:5a860b9c8a6a 52 void NMI_Handler(void);
EricLew 9:5a860b9c8a6a 53 void HardFault_Handler(void);
EricLew 9:5a860b9c8a6a 54 void MemManage_Handler(void);
EricLew 9:5a860b9c8a6a 55 void BusFault_Handler(void);
EricLew 9:5a860b9c8a6a 56 void UsageFault_Handler(void);
EricLew 9:5a860b9c8a6a 57 void SVC_Handler(void);
EricLew 9:5a860b9c8a6a 58 void DebugMon_Handler(void);
EricLew 9:5a860b9c8a6a 59 void PendSV_Handler(void);
EricLew 9:5a860b9c8a6a 60 void SysTick_Handler(void);
EricLew 9:5a860b9c8a6a 61
EricLew 9:5a860b9c8a6a 62 void DMA1_Channel4_IRQHandler(void);
EricLew 9:5a860b9c8a6a 63 void DMA2_Channel1_IRQHandler(void);
EricLew 9:5a860b9c8a6a 64
EricLew 9:5a860b9c8a6a 65 #ifdef __cplusplus
EricLew 9:5a860b9c8a6a 66 }
EricLew 9:5a860b9c8a6a 67 #endif
EricLew 9:5a860b9c8a6a 68
EricLew 9:5a860b9c8a6a 69 #endif /* __STM32L4xx_IT_H */
EricLew 9:5a860b9c8a6a 70
EricLew 9:5a860b9c8a6a 71 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
EricLew 9:5a860b9c8a6a 72