using stm32cube to generate startup code

Dependencies:   mbed-src

Committer:
homayoun
Date:
Mon Aug 25 15:09:19 2014 +0000
Revision:
0:8a83ba215cd0
Using stm32cube generated code, and mbed-src library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
homayoun 0:8a83ba215cd0 1 /**
homayoun 0:8a83ba215cd0 2 ******************************************************************************
homayoun 0:8a83ba215cd0 3 * @file stm32f4xx_it.c
homayoun 0:8a83ba215cd0 4 * @date 21/08/2014 07:33:40
homayoun 0:8a83ba215cd0 5 * @brief Interrupt Service Routines.
homayoun 0:8a83ba215cd0 6 ******************************************************************************
homayoun 0:8a83ba215cd0 7 *
homayoun 0:8a83ba215cd0 8 * COPYRIGHT(c) 2014 STMicroelectronics
homayoun 0:8a83ba215cd0 9 *
homayoun 0:8a83ba215cd0 10 * Redistribution and use in source and binary forms, with or without modification,
homayoun 0:8a83ba215cd0 11 * are permitted provided that the following conditions are met:
homayoun 0:8a83ba215cd0 12 * 1. Redistributions of source code must retain the above copyright notice,
homayoun 0:8a83ba215cd0 13 * this list of conditions and the following disclaimer.
homayoun 0:8a83ba215cd0 14 * 2. Redistributions in binary form must reproduce the above copyright notice,
homayoun 0:8a83ba215cd0 15 * this list of conditions and the following disclaimer in the documentation
homayoun 0:8a83ba215cd0 16 * and/or other materials provided with the distribution.
homayoun 0:8a83ba215cd0 17 * 3. Neither the name of STMicroelectronics nor the names of its contributors
homayoun 0:8a83ba215cd0 18 * may be used to endorse or promote products derived from this software
homayoun 0:8a83ba215cd0 19 * without specific prior written permission.
homayoun 0:8a83ba215cd0 20 *
homayoun 0:8a83ba215cd0 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
homayoun 0:8a83ba215cd0 22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
homayoun 0:8a83ba215cd0 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
homayoun 0:8a83ba215cd0 24 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
homayoun 0:8a83ba215cd0 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
homayoun 0:8a83ba215cd0 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
homayoun 0:8a83ba215cd0 27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
homayoun 0:8a83ba215cd0 28 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
homayoun 0:8a83ba215cd0 29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
homayoun 0:8a83ba215cd0 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
homayoun 0:8a83ba215cd0 31 *
homayoun 0:8a83ba215cd0 32 ******************************************************************************
homayoun 0:8a83ba215cd0 33 */
homayoun 0:8a83ba215cd0 34 /* Includes ------------------------------------------------------------------*/
homayoun 0:8a83ba215cd0 35 #include "stm32f4xx_hal.h"
homayoun 0:8a83ba215cd0 36 #include "stm32f4xx.h"
homayoun 0:8a83ba215cd0 37 #include "stm32f4xx_it.h"
homayoun 0:8a83ba215cd0 38
homayoun 0:8a83ba215cd0 39 /* External variables --------------------------------------------------------*/
homayoun 0:8a83ba215cd0 40
homayoun 0:8a83ba215cd0 41 /******************************************************************************/
homayoun 0:8a83ba215cd0 42 /* Cortex-M4 Processor Interruption and Exception Handlers */
homayoun 0:8a83ba215cd0 43 /******************************************************************************/
homayoun 0:8a83ba215cd0 44
homayoun 0:8a83ba215cd0 45 /**
homayoun 0:8a83ba215cd0 46 * @brief This function handles System tick timer.
homayoun 0:8a83ba215cd0 47 */
homayoun 0:8a83ba215cd0 48 void SysTick_Handler(void)
homayoun 0:8a83ba215cd0 49 {
homayoun 0:8a83ba215cd0 50 HAL_IncTick();
homayoun 0:8a83ba215cd0 51 HAL_SYSTICK_IRQHandler();
homayoun 0:8a83ba215cd0 52 }
homayoun 0:8a83ba215cd0 53
homayoun 0:8a83ba215cd0 54 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/