⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 71x_it.c

📁 Lcd test demo code based on St arm mcu
💻 C
字号:
/******************** (C) COPYRIGHT 2003 STMicroelectronics ********************
* File Name          : 71x_it.c
* Author             : MCD Application Team
* Date First Issued  : 16/05/2003
* Description        : Main Interrupt Service Routines
*
*    This file can be used to describe all the exceptions subroutines
*    that may occur within your application.
*    When an interrupt happens, the software will branch automatically
*    to the corresponding routine according to the interrupt vector
*    loaded in the PC register.
*
*    The following routines are all empty, user can write code for
*    exceptions handlers and peripherals IRQ interrupts.
*
*******************************************************************************
* History:
*  16/05/2003 : Created
*******************************************************************************/
#include "71x_it.h"
/*******************************************************************************
* Function Name  : Undefined_Handler
* Description    : This function Undefined instruction exception.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void Undefined_Handler(void)
{
}
/*******************************************************************************
* Function Name  : FIQ_Handler
* Description    : This function handles FIQ exception.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void FIQ_Handler(void)
{
}
/*******************************************************************************
* Function Name  : SWI_Handler
* Description    : This function handles SW exception.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void SWI_Handler(void)
{
}
/*******************************************************************************
* Function Name  : Prefetch_Handler
* Description    : This function handles prefect abort exception.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void Prefetch_Handler(void)
{
}
/*******************************************************************************
* Function Name  : Abort_Handler
* Description    : This function handles data abort exception.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void Abort_Handler(void)
{
}
/*******************************************************************************
* Function Name  : T0TIMI_IRQHandler
* Description    : This function handle the timer 0 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T0TIMI_IRQHandler   (void)
{
}
/*******************************************************************************
* Function Name  : FLASH_IRQHandler
* Description    : This function handle the FLASH global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void FLASH_IRQHandler    (void)
{

}
/*******************************************************************************
* Function Name  : RCCU_IRQHandler
* Description    : This function handle the RCCU global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void RCCU_IRQHandler     (void)
{
}
/*******************************************************************************
* Function Name  : RTC_IRQHandler
* Description    : This function handle the RTC global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void RTC_IRQHandler      (void)
{
}
/*******************************************************************************
* Function Name  : WDG_IRQHandler
* Description    : This function handle the WDG interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void WDG_IRQHandler      (void)
{
}
/*******************************************************************************
* Function Name  : XTI_IRQHandler
* Description    : This function handle the WUI wake-up event interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void XTI_IRQHandler    (void)
{

}
/*******************************************************************************
* Function Name  : USBHP_IRQHandler
* Description    : This function handle USB high priority event interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void USBHP_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : I2C0ITERR_IRQHandler
* Description    : This function handle the I2C0 error interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void I2C0ITERR_IRQHandler(void)
{
}
/*******************************************************************************
* Function Name  : I2C1ITERR_IRQHandler
* Description    : This function handle the I2C1 error interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void I2C1ITERR_IRQHandler(void)
{
}
/*******************************************************************************
* Function Name  : UART0_IRQHandler
* Description    : This function handle the UART0 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void UART0_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : UART1_IRQHandler
* Description    : This function handle the UART1 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void UART1_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : UART2_IRQHandler
* Description    : This function handle the UART2 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void UART2_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : UART3_IRQHandler
* Description    : This function handle the UART3 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void UART3_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : BSPI0_IRQHandler
* Description    : This function handle the BSPI0 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void BSPI0_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : BSPI1_IRQHandler
* Description    : This function handle the BSPI1 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void BSPI1_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : I2C0_IRQHandler
* Description    : This function handle the I2C0 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void I2C0_IRQHandler     (void)
{
}
/*******************************************************************************
* Function Name  : I2C1_IRQHandler
* Description    : This function handle the I2C1 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void I2C1_IRQHandler     (void)
{
}
/*******************************************************************************
* Function Name  : CAN_IRQHandler
* Description    : This function handle the CAN module global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void CAN_IRQHandler      (void)
{
}
/*******************************************************************************
* Function Name  : ADC12_IRQHandler
* Description    : This function handle the ACD sample ready interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void ADC12_IRQHandler      (void)
{
}
/*******************************************************************************
* Function Name  : T1TIMI_IRQHandler
* Description    : This function handle timer 1 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T1TIMI_IRQHandler   (void)
{
}
/*******************************************************************************
* Function Name  : T2TIMI_IRQHandler
* Description    : This function handle timer 2 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T2TIMI_IRQHandler   (void)
{
}
/*******************************************************************************
* Function Name  : T3TIMI_IRQHandler
* Description    : This function handle timer 3 global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T3TIMI_IRQHandler   (void)
{
}
/*******************************************************************************
* Function Name  : HDLC_IRQHandler
* Description    : This function handle HDLC global interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void HDLC_IRQHandler     (void)
{
}
/*******************************************************************************
* Function Name  : USBLP_IRQHandler
* Description    : This function handle USB low priority event interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void USBLP_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : T0TOI_IRQHandler
* Description    : This function handle the timer 0 overflow interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T0TOI_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : T0OC1_IRQHandler
* Description    : This function handle the timer 0 Output compare 1 interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T0OC1_IRQHandler    (void)
{
}
/*******************************************************************************
* Function Name  : T0OC2_IRQHandler
* Description    : This function handle the timer 0 Output compare 2 interrupt.
* Input          : detail input parameters
* Output         : detail output parameters
* Return         : detail return value
*******************************************************************************/
void T0OC2_IRQHandler    (void)
{
}
/******************* (C) COPYRIGHT 2003 STMicroelectronics *****END OF FILE****/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -