1 /*******************************************************************************
\r
3 * This software is supplied by Renesas Electronics Corporation and is only
\r
4 * intended for use with Renesas products. No other uses are authorized. This
\r
5 * software is owned by Renesas Electronics Corporation and is protected under
\r
6 * all applicable laws, including copyright laws.
\r
7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
\r
8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
\r
9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
\r
10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
\r
11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
\r
12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
\r
13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
\r
14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
\r
15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
\r
16 * Renesas reserves the right, without notice, to make changes to this software
\r
17 * and to discontinue the availability of this software. By using this software,
\r
18 * you agree to the additional terms and conditions found by accessing the
\r
20 * http://www.renesas.com/disclaimer
\r
22 * Copyright (C) 2012 Renesas Electronics Corporation. All rights reserved.
\r
23 *******************************************************************************/
\r
24 /*******************************************************************************
\r
25 * File Name : intc_handler.c
\r
27 * $Date:: 2013-04-10 12:58:44 +0100#$
\r
28 * Description : Aragon Sample Program - Handler process
\r
29 *******************************************************************************/
\r
32 /******************************************************************************
\r
33 Includes <System Includes> , "Project Includes"
\r
34 ******************************************************************************/
\r
35 #include "FreeRTOS.h"
\r
37 #include "r_typedefs.h"
\r
38 #include "devdrv_intc.h" /* INTC Driver Header */
\r
39 #include "iodefine.h"
\r
41 /* Do not include the following pragmas when compiling with IAR. */
\r
43 #pragma arm section code = "CODE_HANDLER"
\r
44 #pragma arm section rodata = "CONST_HANDLER"
\r
45 #pragma arm section rwdata = "DATA_HANDLER"
\r
46 #pragma arm section zidata = "BSS_HANDLER"
\r
49 /******************************************************************************
\r
51 ******************************************************************************/
\r
54 /******************************************************************************
\r
56 ******************************************************************************/
\r
59 /******************************************************************************
\r
60 Imported global variables and functions (from other files)
\r
61 ******************************************************************************/
\r
64 /******************************************************************************
\r
65 Exported global variables and functions (to be accessed by other files)
\r
66 ******************************************************************************/
\r
67 /* ==== Prototype declaration ==== */
\r
68 __irq void FiqHandler_Interrupt(void);
\r
70 /******************************************************************************
\r
71 Private global variables and functions
\r
72 ******************************************************************************/
\r
75 /*******************************************************************************
\r
76 * Function Name: FiqHandler_Interrupt
\r
79 * Return Value : none
\r
80 *******************************************************************************/
\r
81 __irq void FiqHandler_Interrupt(void)
\r
83 Userdef_FIQ_HandlerExe();
\r