]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/main.c
bdb44dc7e6bf148a18001b901b18a406698a387a
[freertos] / FreeRTOS / Demo / RX200_RX231-RSK_Renesas_e2studio / src / main.c
1 /*\r
2  * FreeRTOS Kernel V10.3.0\r
3  * Copyright (C) 2020 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /******************************************************************************\r
29  * This project provides two demo applications.  A simple blinky style project,\r
30  * and a more comprehensive test and demo application.  The\r
31  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting (defined in this file) is used to\r
32  * select between the two.  The simply blinky demo is implemented and described\r
33  * in main_blinky.c.  The more comprehensive test and demo application is\r
34  * implemented and described in main_full.c.\r
35  *\r
36  * This file implements the code that is not demo specific, including the\r
37  * hardware setup, standard FreeRTOS hook functions, and the ISR hander called\r
38  * by the RTOS after interrupt entry (including nesting) has been taken care of.\r
39  *\r
40  * ENSURE TO READ THE DOCUMENTATION PAGE FOR THIS PORT AND DEMO APPLICATION ON\r
41  * THE http://www.FreeRTOS.org WEB SITE FOR FULL INFORMATION ON USING THIS DEMO\r
42  * APPLICATION, AND ITS ASSOCIATE FreeRTOS ARCHITECTURE PORT!\r
43  *\r
44  * http://www.freertos.org/RX231_RTOS_Renesas_GCC_IAR.html\r
45  *\r
46  */\r
47 \r
48 /* Scheduler include files. */\r
49 #include "FreeRTOS.h"\r
50 #include "task.h"\r
51 #include "semphr.h"\r
52 \r
53 /* Set mainCREATE_SIMPLE_BLINKY_DEMO_ONLY to one to run the simple blinky demo,\r
54 or 0 to run the more comprehensive test and demo application. */\r
55 #define mainCREATE_SIMPLE_BLINKY_DEMO_ONLY      1\r
56 \r
57 /*-----------------------------------------------------------*/\r
58 \r
59 /*\r
60  * Configure the hardware as necessary to run this demo.\r
61  */\r
62 static void prvSetupHardware( void );\r
63 \r
64 /*\r
65  * main_blinky() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.\r
66  * main_full() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0.\r
67  */\r
68 #if( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
69         extern void main_blinky( void );\r
70 #else\r
71         extern void main_full( void );\r
72 #endif /* #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 */\r
73 \r
74 /* Prototypes for the standard FreeRTOS callback/hook functions implemented\r
75 within this file. */\r
76 void vApplicationMallocFailedHook( void );\r
77 void vApplicationIdleHook( void );\r
78 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );\r
79 void vApplicationTickHook( void );\r
80 \r
81 /*-----------------------------------------------------------*/\r
82 \r
83 /* See http://www.freertos.org/RX231_RTOS_Renesas_GCC_IAR.html */\r
84 int main( void )\r
85 {\r
86         /* Configure the hardware ready to run the demo. */\r
87         prvSetupHardware();\r
88 \r
89         /* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
90         of this file. */\r
91         #if( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
92         {\r
93                 main_blinky();\r
94         }\r
95         #else\r
96         {\r
97                 main_full();\r
98         }\r
99         #endif\r
100 \r
101         return 0;\r
102 }\r
103 /*-----------------------------------------------------------*/\r
104 \r
105 static void prvSetupHardware( void )\r
106 {\r
107 /* Start user code. Do not edit comment generated here */\r
108 uint16_t usProtectDummy = ( uint16_t ) ( SYSTEM.PRCR.WORD & 0x000FU );\r
109 \r
110         /* Disable protect bit */\r
111         SYSTEM.PRCR.WORD = 0xA50FU;\r
112 \r
113         SYSTEM.VBATTCR.BYTE = 0x81U;\r
114 \r
115         /* Restore the previous state of the protect register */\r
116         SYSTEM.PRCR.WORD = ( uint16_t )( 0xA500U | usProtectDummy );\r
117 }\r
118 /*-----------------------------------------------------------*/\r
119 \r
120 void vApplicationMallocFailedHook( void )\r
121 {\r
122         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
123         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
124         internally by FreeRTOS API functions that create tasks, queues, software\r
125         timers, and semaphores.  The size of the FreeRTOS heap is set by the\r
126         configTOTAL_HEAP_SIZE configuration constant in FreeRTOSConfig.h. */\r
127 \r
128         /* Force an assert. */\r
129         configASSERT( ( volatile void * ) NULL );\r
130 }\r
131 /*-----------------------------------------------------------*/\r
132 \r
133 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
134 {\r
135         ( void ) pcTaskName;\r
136         ( void ) pxTask;\r
137 \r
138         /* Run time stack overflow checking is performed if\r
139         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
140         function is called if a stack overflow is detected. */\r
141 \r
142         /* Force an assert. */\r
143         configASSERT( ( volatile void * ) NULL );\r
144 }\r
145 /*-----------------------------------------------------------*/\r
146 \r
147 void vApplicationIdleHook( void )\r
148 {\r
149 volatile size_t xFreeHeapSpace;\r
150 \r
151         /* This is just a trivial example of an idle hook.  It is called on each\r
152         cycle of the idle task.  It must *NOT* attempt to block.  In this case the\r
153         idle task just queries the amount of FreeRTOS heap that remains.  See the\r
154         memory management section on the http://www.FreeRTOS.org web site for memory\r
155         management options.  If there is a lot of heap memory free then the\r
156         configTOTAL_HEAP_SIZE value in FreeRTOSConfig.h can be reduced to free up\r
157         RAM. */\r
158         xFreeHeapSpace = xPortGetFreeHeapSize();\r
159 \r
160         /* Remove compiler warning about xFreeHeapSpace being set but never used. */\r
161         ( void ) xFreeHeapSpace;\r
162 }\r
163 /*-----------------------------------------------------------*/\r
164 \r
165 void vApplicationTickHook( void )\r
166 {\r
167         #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 0\r
168         {\r
169                 extern void vFullDemoTickHook( void );\r
170 \r
171                 vFullDemoTickHook();\r
172         }\r
173         #endif\r
174 }\r
175 /*-----------------------------------------------------------*/\r
176 \r
177 /* The RX port uses this callback function to configure its tick interrupt.\r
178 This allows the application to choose the tick interrupt source. */\r
179 void vApplicationSetupTimerInterrupt( void )\r
180 {\r
181 const uint32_t ulEnableRegisterWrite = 0xA50BUL, ulDisableRegisterWrite = 0xA500UL;\r
182 \r
183     /* Disable register write protection. */\r
184     SYSTEM.PRCR.WORD = ulEnableRegisterWrite;\r
185 \r
186         /* Enable compare match timer 0. */\r
187         MSTP( CMT0 ) = 0;\r
188 \r
189         /* Interrupt on compare match. */\r
190         CMT0.CMCR.BIT.CMIE = 1;\r
191 \r
192         /* Set the compare match value. */\r
193         CMT0.CMCOR = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / configTICK_RATE_HZ ) -1 ) / 8 );\r
194 \r
195         /* Divide the PCLK by 8. */\r
196         CMT0.CMCR.BIT.CKS = 0;\r
197 \r
198         /* Enable the interrupt... */\r
199         _IEN( _CMT0_CMI0 ) = 1;\r
200 \r
201         /* ...and set its priority to the application defined kernel priority. */\r
202         _IPR( _CMT0_CMI0 ) = configKERNEL_INTERRUPT_PRIORITY;\r
203 \r
204         /* Start the timer. */\r
205         CMT.CMSTR0.BIT.STR0 = 1;\r
206 \r
207     /* Reneable register protection. */\r
208     SYSTEM.PRCR.WORD = ulDisableRegisterWrite;\r
209 }\r
210 \r
211 \r
212 \r