fatih

Dependencies:   mbed-rtos mbed ros_lib_indigo

Committer:
randalthor
Date:
Sat Mar 04 14:08:19 2017 +0000
Revision:
1:0f99619433e0
Parent:
0:4d2d2219c8e4
fatihh

Who changed what in which revision?

UserRevisionLine numberNew contents of line
randalthor 0:4d2d2219c8e4 1 /**
randalthor 0:4d2d2219c8e4 2 ******************************************************************************
randalthor 0:4d2d2219c8e4 3 * @file stm32f7xx_it.c
randalthor 0:4d2d2219c8e4 4 * @brief Interrupt Service Routines.
randalthor 0:4d2d2219c8e4 5 ******************************************************************************
randalthor 0:4d2d2219c8e4 6 *
randalthor 0:4d2d2219c8e4 7 * COPYRIGHT(c) 2017 STMicroelectronics
randalthor 0:4d2d2219c8e4 8 *
randalthor 0:4d2d2219c8e4 9 * Redistribution and use in source and binary forms, with or without modification,
randalthor 0:4d2d2219c8e4 10 * are permitted provided that the following conditions are met:
randalthor 0:4d2d2219c8e4 11 * 1. Redistributions of source code must retain the above copyright notice,
randalthor 0:4d2d2219c8e4 12 * this list of conditions and the following disclaimer.
randalthor 0:4d2d2219c8e4 13 * 2. Redistributions in binary form must reproduce the above copyright notice,
randalthor 0:4d2d2219c8e4 14 * this list of conditions and the following disclaimer in the documentation
randalthor 0:4d2d2219c8e4 15 * and/or other materials provided with the distribution.
randalthor 0:4d2d2219c8e4 16 * 3. Neither the name of STMicroelectronics nor the names of its contributors
randalthor 0:4d2d2219c8e4 17 * may be used to endorse or promote products derived from this software
randalthor 0:4d2d2219c8e4 18 * without specific prior written permission.
randalthor 0:4d2d2219c8e4 19 *
randalthor 0:4d2d2219c8e4 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
randalthor 0:4d2d2219c8e4 21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
randalthor 0:4d2d2219c8e4 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
randalthor 0:4d2d2219c8e4 23 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
randalthor 0:4d2d2219c8e4 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
randalthor 0:4d2d2219c8e4 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
randalthor 0:4d2d2219c8e4 26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
randalthor 0:4d2d2219c8e4 27 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
randalthor 0:4d2d2219c8e4 28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
randalthor 0:4d2d2219c8e4 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
randalthor 0:4d2d2219c8e4 30 *
randalthor 0:4d2d2219c8e4 31 ******************************************************************************
randalthor 0:4d2d2219c8e4 32 */
randalthor 0:4d2d2219c8e4 33 /* Includes ------------------------------------------------------------------*/
randalthor 0:4d2d2219c8e4 34 #include "stm32f7xx_hal.h"
randalthor 0:4d2d2219c8e4 35 #include "stm32f7xx.h"
randalthor 0:4d2d2219c8e4 36 #include "stm32f7xx_it.h"
randalthor 0:4d2d2219c8e4 37
randalthor 0:4d2d2219c8e4 38 /* USER CODE BEGIN 0 */
randalthor 0:4d2d2219c8e4 39
randalthor 0:4d2d2219c8e4 40 /* USER CODE END 0 */
randalthor 0:4d2d2219c8e4 41
randalthor 0:4d2d2219c8e4 42 /* External variables --------------------------------------------------------*/
randalthor 0:4d2d2219c8e4 43 extern DMA_HandleTypeDef hdma_adc2;
randalthor 0:4d2d2219c8e4 44
randalthor 0:4d2d2219c8e4 45 /******************************************************************************/
randalthor 0:4d2d2219c8e4 46 /* Cortex-M7 Processor Interruption and Exception Handlers */
randalthor 0:4d2d2219c8e4 47 /******************************************************************************/
randalthor 0:4d2d2219c8e4 48
randalthor 0:4d2d2219c8e4 49 /**
randalthor 0:4d2d2219c8e4 50 * @brief This function handles System service call via SWI instruction.
randalthor 0:4d2d2219c8e4 51 */
randalthor 0:4d2d2219c8e4 52
randalthor 0:4d2d2219c8e4 53
randalthor 0:4d2d2219c8e4 54 /******************************************************************************/
randalthor 0:4d2d2219c8e4 55 /* STM32F7xx Peripheral Interrupt Handlers */
randalthor 0:4d2d2219c8e4 56 /* Add here the Interrupt Handlers for the used peripherals. */
randalthor 0:4d2d2219c8e4 57 /* For the available peripheral interrupt handler names, */
randalthor 0:4d2d2219c8e4 58 /* please refer to the startup file (startup_stm32f7xx.s). */
randalthor 0:4d2d2219c8e4 59 /******************************************************************************/
randalthor 0:4d2d2219c8e4 60
randalthor 0:4d2d2219c8e4 61 /**
randalthor 0:4d2d2219c8e4 62 * @brief This function handles DMA2 stream2 global interrupt.
randalthor 0:4d2d2219c8e4 63 */
randalthor 0:4d2d2219c8e4 64 void DMA2_Stream2_IRQHandler(void)
randalthor 0:4d2d2219c8e4 65 {
randalthor 0:4d2d2219c8e4 66 /* USER CODE BEGIN DMA2_Stream2_IRQn 0 */
randalthor 0:4d2d2219c8e4 67
randalthor 0:4d2d2219c8e4 68 /* USER CODE END DMA2_Stream2_IRQn 0 */
randalthor 0:4d2d2219c8e4 69 HAL_DMA_IRQHandler(&hdma_adc2);
randalthor 0:4d2d2219c8e4 70 /* USER CODE BEGIN DMA2_Stream2_IRQn 1 */
randalthor 0:4d2d2219c8e4 71
randalthor 0:4d2d2219c8e4 72 /* USER CODE END DMA2_Stream2_IRQn 1 */
randalthor 0:4d2d2219c8e4 73 }
randalthor 0:4d2d2219c8e4 74
randalthor 0:4d2d2219c8e4 75 /* USER CODE BEGIN 1 */
randalthor 0:4d2d2219c8e4 76
randalthor 0:4d2d2219c8e4 77 /* USER CODE END 1 */
randalthor 0:4d2d2219c8e4 78 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
randalthor 0:4d2d2219c8e4 79