]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR_ARM/src/cg_src/r_cg_icu_user.c
Modify RZ/T e2studio directory structure to accommodate an IAR project.
[freertos] / FreeRTOS / Demo / CORTEX_R4F_RZ_T_GCC_IAR_ARM / src / cg_src / r_cg_icu_user.c
1 /***********************************************************************************************************************\r
2 * DISCLAIMER\r
3 * This software is supplied by Renesas Electronics Corporation and is only intended for use with Renesas products.\r
4 * No other uses are authorized. This software is owned by Renesas Electronics Corporation and is protected under all\r
5 * applicable laws, including copyright laws.\r
6 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIESREGARDING THIS SOFTWARE, WHETHER EXPRESS, IMPLIED\r
7 * OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
8 * NON-INFRINGEMENT.  ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY\r
9 * LAW, NEITHER RENESAS ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE FOR ANY DIRECT,\r
10 * INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR\r
11 * ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\r
12 * Renesas reserves the right, without notice, to make changes to this software and to discontinue the availability\r
13 * of this software. By using this software, you agree to the additional terms and conditions found by accessing the\r
14 * following link:\r
15 * http://www.renesas.com/disclaimer\r
16 *\r
17 * Copyright (C) 2015 Renesas Electronics Corporation. All rights reserved.\r
18 ***********************************************************************************************************************/\r
19 \r
20 /***********************************************************************************************************************\r
21 * File Name    : r_cg_icu_user.c\r
22 * Version      : Code Generator for RZ/T1 V1.00.00.09 [02 Mar 2015]\r
23 * Device(s)    : R7S910018CBG\r
24 * Tool-Chain   : GCCARM\r
25 * Description  : This file implements device driver for ICU module.\r
26 * Creation Date: 22/04/2015\r
27 ***********************************************************************************************************************/\r
28 \r
29 /***********************************************************************************************************************\r
30 Pragma directive\r
31 ***********************************************************************************************************************/\r
32 /* Start user code for pragma. Do not edit comment generated here */\r
33 /* End user code. Do not edit comment generated here */\r
34 \r
35 /***********************************************************************************************************************\r
36 Includes\r
37 ***********************************************************************************************************************/\r
38 #include "r_cg_macrodriver.h"\r
39 #include "r_cg_icu.h"\r
40 /* Start user code for include. Do not edit comment generated here */\r
41 /* End user code. Do not edit comment generated here */\r
42 #include "r_cg_userdefine.h"\r
43 \r
44 /***********************************************************************************************************************\r
45 Global variables and functions\r
46 ***********************************************************************************************************************/\r
47 /* Start user code for global. Do not edit comment generated here */\r
48 \r
49 /* Stores switch states detected via interrupts */\r
50 volatile uint8_t  g_switch_press_flg = 0u;\r
51 \r
52 /* End user code. Do not edit comment generated here */\r
53 \r
54 /***********************************************************************************************************************\r
55 * Function Name: r_icu_irq12_interrupt\r
56 * Description  : This function handles the irqn pin interrupt.\r
57 * Arguments    : None\r
58 * Return Value : None\r
59 ***********************************************************************************************************************/\r
60 #ifdef __ICCARM__\r
61         __irq __arm\r
62 #endif /* __ICCARM__ */\r
63 void r_icu_irq12_interrupt(void)\r
64 {\r
65     VIC.PIC0.LONG = 0x00010000UL;\r
66     /* Start user code. Do not edit comment generated here */\r
67 \r
68     /* Set global switch flag to indicate SW3 is pressed */\r
69     g_switch_press_flg |=  SW3_PRESS_FLG;\r
70 \r
71     /* End user code. Do not edit comment generated here */\r
72     VIC.HVA0.LONG = 0x00000000UL;\r
73 }\r
74 \r
75 /* Start user code for adding. Do not edit comment generated here */\r
76 /* End user code. Do not edit comment generated here */\r