Richard Vasquez / DMA_RAM_DAC
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers stm32f3xx_it.c Source File

stm32f3xx_it.c

00001 /**
00002   ******************************************************************************
00003   * @file    DMA_RAM_DAC/stm32f3xx_it.c 
00004   * @author  MCD Application Team
00005   * @version V1.0.0
00006   * @date    20-June-2014
00007   * @brief   Main Interrupt Service Routines.
00008   *          This file provides template for all exceptions handler and 
00009   *          peripherals interrupt service routine.
00010   ******************************************************************************
00011   * @attention
00012   *
00013   * <h2><center>&copy; COPYRIGHT 2014 STMicroelectronics</center></h2>
00014   *
00015   * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
00016   * You may not use this file except in compliance with the License.
00017   * You may obtain a copy of the License at:
00018   *
00019   *        http://www.st.com/software_license_agreement_liberty_v2
00020   *
00021   * Unless required by applicable law or agreed to in writing, software 
00022   * distributed under the License is distributed on an "AS IS" BASIS, 
00023   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00024   * See the License for the specific language governing permissions and
00025   * limitations under the License.
00026   *
00027   ******************************************************************************
00028   */
00029 
00030 /* Includes ------------------------------------------------------------------*/
00031 #include "stm32f3xx_it.h"
00032     
00033 /** @addtogroup STM32F3348_DISCOVERY_Examples
00034   * @{
00035   */
00036 
00037 /** @addtogroup DMA_RAM_DAC
00038   * @{
00039   */
00040 
00041 /* Private typedef -----------------------------------------------------------*/
00042 /* Private define ------------------------------------------------------------*/
00043 /* Private macro -------------------------------------------------------------*/
00044 /* Private variables ---------------------------------------------------------*/
00045 /* Private function prototypes -----------------------------------------------*/
00046 /* Private functions ---------------------------------------------------------*/
00047 
00048 /******************************************************************************/
00049 /*            Cortex-M Processor Exceptions Handlers                          */
00050 /******************************************************************************/
00051 
00052 /**
00053   * @brief  This function handles NMI exception.
00054   * @param  None
00055   * @retval None
00056   */
00057 void NMI_Handler(void)
00058 {
00059 }
00060 
00061 /**
00062   * @brief  This function handles Hard Fault exception.
00063   * @param  None
00064   * @retval None
00065   */
00066 void HardFault_Handler(void)
00067 {
00068   /* Go to infinite loop when Hard Fault exception occurs */
00069   while (1)
00070   {
00071   }
00072 }
00073 
00074 /**
00075   * @brief  This function handles Memory Manage exception.
00076   * @param  None
00077   * @retval None
00078   */
00079 void MemManage_Handler(void)
00080 {
00081   /* Go to infinite loop when Memory Manage exception occurs */
00082   while (1)
00083   {
00084   }
00085 }
00086 
00087 /**
00088   * @brief  This function handles Bus Fault exception.
00089   * @param  None
00090   * @retval None
00091   */
00092 void BusFault_Handler(void)
00093 {
00094   /* Go to infinite loop when Bus Fault exception occurs */
00095   while (1)
00096   {
00097   }
00098 }
00099 
00100 /**
00101   * @brief  This function handles Usage Fault exception.
00102   * @param  None
00103   * @retval None
00104   */
00105 void UsageFault_Handler(void)
00106 {
00107   /* Go to infinite loop when Usage Fault exception occurs */
00108   while (1)
00109   {
00110   }
00111 }
00112 
00113 /**
00114   * @brief  This function handles SVCall exception.
00115   * @param  None
00116   * @retval None
00117   */
00118 void SVC_Handler(void)
00119 {
00120 }
00121 
00122 /**
00123   * @brief  This function handles Debug Monitor exception.
00124   * @param  None
00125   * @retval None
00126   */
00127 void DebugMon_Handler(void)
00128 {
00129 }
00130 
00131 /**
00132   * @brief  This function handles PendSVC exception.
00133   * @param  None
00134   * @retval None
00135   */
00136 void PendSV_Handler(void)
00137 {
00138 }
00139 
00140 /**
00141   * @brief  This function handles SysTick Handler.
00142   * @param  None
00143   * @retval None
00144   */
00145 void SysTick_Handler(void)
00146 {
00147 }
00148 
00149 /******************************************************************************/
00150 /*                 STM32F3xx Peripherals Interrupt Handlers                   */
00151 /*  Add here the Interrupt Handler for the used peripheral(s) (PPP), for the  */
00152 /*  available peripheral interrupt handler's name please refer to the startup */
00153 /*  file (startup_stm32f334x8.s).                                             */
00154 /******************************************************************************/
00155 /**
00156   * @brief  This function handles PPP interrupt request.
00157   * @param  None
00158   * @retval None
00159   */
00160 /*void PPP_IRQHandler(void)
00161 {
00162 }*/
00163 
00164 /**
00165   * @}
00166   */ 
00167 
00168 /**
00169   * @}
00170   */ 
00171 
00172 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/