UART

Dependencies:   BSP_DISCO_L476VG LCD_DISCO_L476VG mbed

Committer:
codebreaker7
Date:
Wed Oct 05 10:24:06 2016 +0000
Revision:
0:7b78e040f288
UART

Who changed what in which revision?

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