]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/cg_src/r_cg_main.c
Update RX231 projects to blink the LED.
[freertos] / FreeRTOS / Demo / RX200_RX231-RSK_GCC_e2studio_IAR / src / cg_src / r_cg_main.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_main.c\r
22 * Version      : Code Generator for RX231 V1.00.00.03 [10 Jul 2015]\r
23 * Device(s)    : R5F52318AxFP\r
24 * Tool-Chain   : GCCRX\r
25 * Description  : This file implements main function.\r
26 * Creation Date: 23/09/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_cgc.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 /* End user code. Do not edit comment generated here */\r
49 \r
50 \r
51 void R_MAIN_UserInit(void);\r
52 /***********************************************************************************************************************\r
53 * Function Name: main\r
54 * Description  : This function implements main function.\r
55 * Arguments    : None\r
56 * Return Value : None\r
57 ***********************************************************************************************************************/\r
58 void main(void)\r
59 {\r
60     R_MAIN_UserInit();\r
61     /* Start user code. Do not edit comment generated here */\r
62     while (1U)\r
63     {\r
64         ;\r
65     }\r
66     /* End user code. Do not edit comment generated here */\r
67 }\r
68 /***********************************************************************************************************************\r
69 * Function Name: R_MAIN_UserInit\r
70 * Description  : This function adds user code before implementing main function.\r
71 * Arguments    : None\r
72 * Return Value : None\r
73 ***********************************************************************************************************************/\r
74 void R_MAIN_UserInit(void)\r
75 {\r
76     /* Start user code. Do not edit comment generated here */\r
77     uint16_t protect_dummy = (uint16_t)(SYSTEM.PRCR.WORD & 0x000FU);\r
78 \r
79     /* Disable protect bit */\r
80     SYSTEM.PRCR.WORD = 0xA50FU;\r
81 \r
82     SYSTEM.VBATTCR.BYTE = 0x81U;\r
83 \r
84     /* Restore the previous state of the protect register */\r
85     SYSTEM.PRCR.WORD = (uint16_t)(0xA500U | protect_dummy);\r
86     /* End user code. Do not edit comment generated here */\r
87 }\r
88 \r
89 /* Start user code for adding. Do not edit comment generated here */\r
90 /* End user code. Do not edit comment generated here */\r