DISCOVERY BOARD AUDIO RECORD AND PLAYBACK. Errors are currently with LCD and QSPI definitions.

Dependencies:   BSP

Committer:
EricLew
Date:
Sun Nov 22 21:16:18 2015 +0000
Revision:
3:233580d5c68e
Parent:
0:c8cd09e8b137
11/22/2015

Who changed what in which revision?

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