AudioRecord and FFT/MSE comparison. Call AudioRecord_demo for control record and AudioSample for subsequent recordings.

Dependencies:   CMSIS_DSP_401 STM32L4xx_HAL_Driver

Fork of OneHopeOnePrayer by Senior Design: Sound Monitor

Committer:
EricLew
Date:
Sat Dec 05 16:17:25 2015 +0000
Revision:
5:f6afbd3fc47a
Parent:
0:d4e5ad7ad71c
Ported to Nucleo

Who changed what in which revision?

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