OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ARM7_STR71x_IAR/] [main.c] - Blame information for rev 577

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 577 jeremybenn
/*
2
    FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.
3
 
4
    ***************************************************************************
5
    *                                                                         *
6
    * If you are:                                                             *
7
    *                                                                         *
8
    *    + New to FreeRTOS,                                                   *
9
    *    + Wanting to learn FreeRTOS or multitasking in general quickly       *
10
    *    + Looking for basic training,                                        *
11
    *    + Wanting to improve your FreeRTOS skills and productivity           *
12
    *                                                                         *
13
    * then take a look at the FreeRTOS books - available as PDF or paperback  *
14
    *                                                                         *
15
    *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *
16
    *                  http://www.FreeRTOS.org/Documentation                  *
17
    *                                                                         *
18
    * A pdf reference manual is also available.  Both are usually delivered   *
19
    * to your inbox within 20 minutes to two hours when purchased between 8am *
20
    * and 8pm GMT (although please allow up to 24 hours in case of            *
21
    * exceptional circumstances).  Thank you for your support!                *
22
    *                                                                         *
23
    ***************************************************************************
24
 
25
    This file is part of the FreeRTOS distribution.
26
 
27
    FreeRTOS is free software; you can redistribute it and/or modify it under
28
    the terms of the GNU General Public License (version 2) as published by the
29
    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
30
    ***NOTE*** The exception to the GPL is included to allow you to distribute
31
    a combined work that includes FreeRTOS without being obliged to provide the
32
    source code for proprietary components outside of the FreeRTOS kernel.
33
    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
34
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
36
    more details. You should have received a copy of the GNU General Public
37
    License and the FreeRTOS license exception along with FreeRTOS; if not it
38
    can be viewed here: http://www.freertos.org/a00114.html and also obtained
39
    by writing to Richard Barry, contact details for whom are available on the
40
    FreeRTOS WEB site.
41
 
42
    1 tab == 4 spaces!
43
 
44
    http://www.FreeRTOS.org - Documentation, latest information, license and
45
    contact details.
46
 
47
    http://www.SafeRTOS.com - A version that is certified for use in safety
48
    critical systems.
49
 
50
    http://www.OpenRTOS.com - Commercial support, development, porting,
51
    licensing and training services.
52
*/
53
 
54
/*
55
        NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.
56
        The processor MUST be in supervisor mode when vTaskStartScheduler is
57
        called.  The demo applications included in the FreeRTOS.org download switch
58
        to supervisor mode prior to main being called.  If you are not using one of
59
        these demo application projects then ensure Supervisor mode is used.
60
*/
61
 
62
/*
63
 * Creates all the demo application tasks, then starts the scheduler.  The WEB
64
 * documentation provides more details of the demo application tasks.
65
 *
66
 * Main.c also creates a task called "Check".  This only executes every three
67
 * seconds but has the highest priority so is guaranteed to get processor time.
68
 * Its main function is to check that all the other tasks are still operational.
69
 * Each task (other than the "flash" tasks) maintains a unique count that is
70
 * incremented each time the task successfully completes its function.  Should
71
 * any error occur within such a task the count is permanently halted.  The
72
 * check task inspects the count of each task to ensure it has changed since
73
 * the last time the check task executed.  If all the count variables have
74
 * changed all the tasks are still executing error free, and the check task
75
 * toggles the onboard LED.  Should any task contain an error at any time
76
 * the LED toggle rate will change from 3 seconds to 500ms.
77
 *
78
 */
79
 
80
/* Library includes. */
81
#include "RCCU.h"
82
#include "wdg.h"
83
 
84
/* Scheduler includes. */
85
#include "FreeRTOS.h"
86
#include "task.h"
87
 
88
/* Demo application includes. */
89
#include "flash.h"
90
#include "integer.h"
91
#include "PollQ.h"
92
#include "BlockQ.h"
93
#include "semtest.h"
94
#include "dynamic.h"
95
#include "partest.h"
96
#include "comtest2.h"
97
 
98
/* Priorities for the demo application tasks. */
99
#define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )
100
#define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )
101
#define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )
102
#define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )
103
#define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )
104
#define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )
105
 
106
/* Constants required by the 'Check' task. */
107
#define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )
108
#define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )
109
#define mainCHECK_TASK_LED                      ( 4 )
110
 
111
/* Constants for the ComTest tasks. */
112
#define mainCOM_TEST_BAUD_RATE          ( ( unsigned long ) 115200 )
113
#define mainCOM_TEST_LED                        ( 6 ) /* The LED built onto the kickstart board. */
114
 
115
/*
116
 * The task that executes at the highest priority and calls
117
 * prvCheckOtherTasksAreStillRunning().  See the description at the top
118
 * of the file.
119
 */
120
static void vErrorChecks( void *pvParameters );
121
 
122
/*
123
 * Configure the processor for use with the IAR STR71x demo board.  This
124
 * just sets the PLL for the required frequency.
125
 */
126
static void prvSetupHardware( void );
127
 
128
/*
129
 * Checks that all the demo application tasks are still executing without error
130
 * - as described at the top of the file.  Called by vErrorChecks().
131
 */
132
static long prvCheckOtherTasksAreStillRunning( void );
133
 
134
 
135
/*-----------------------------------------------------------*/
136
 
137
/*
138
 * Starts all the other tasks, then starts the scheduler.
139
 */
140
void main( void )
141
{
142
        /* Setup any hardware that has not already been configured by the low
143
        level init routines. */
144
        prvSetupHardware();
145
 
146
        /* Initialise the LED outputs for use by the demo application tasks. */
147
        vParTestInitialise();
148
 
149
        /* Start all the standard demo application tasks. */
150
        vStartIntegerMathTasks( tskIDLE_PRIORITY );
151
        vStartLEDFlashTasks( mainLED_TASK_PRIORITY );
152
        vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
153
        vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
154
        vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
155
        vStartDynamicPriorityTasks();
156
        vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );
157
 
158
        /* Start the check task - which is defined in this file. */
159
        xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
160
 
161
        /* Start the scheduler.
162
 
163
        NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.
164
        The processor MUST be in supervisor mode when vTaskStartScheduler is
165
        called.  The demo applications included in the FreeRTOS.org download switch
166
        to supervisor mode prior to main being called.  If you are not using one of
167
        these demo application projects then ensure Supervisor mode is used here. */
168
 
169
        vTaskStartScheduler();
170
 
171
        /* We should never get here as control is now taken by the scheduler. */
172
        return;
173
}
174
/*-----------------------------------------------------------*/
175
 
176
static void prvSetupHardware( void )
177
{
178
    /* Setup the PLL to generate a 48MHz clock from the 4MHz CLK. */
179
 
180
    /* Turn of the div by two. */
181
        RCCU_Div2Config( DISABLE );
182
 
183
    /* 48MHz = ( 4MHz * 12 ) / 1 */
184
        RCCU_PLL1Config( RCCU_PLL1_Mul_12, RCCU_Div_1 );
185
    RCCU_RCLKSourceConfig( RCCU_PLL1_Output );
186
}
187
/*-----------------------------------------------------------*/
188
 
189
static void vErrorChecks( void *pvParameters )
190
{
191
portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;
192
portTickType xLastWakeTime;
193
 
194
        /* The parameters are not used in this task. */
195
        ( void ) pvParameters;
196
 
197
        /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()
198
        functions correctly. */
199
        xLastWakeTime = xTaskGetTickCount();
200
 
201
        /* Cycle for ever, delaying then checking all the other tasks are still
202
        operating without error.  If an error is detected then the delay period
203
        is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so
204
        the on board LED flash rate will increase. */
205
 
206
        for( ;; )
207
        {
208
                /* Delay until it is time to execute again.  The delay period is
209
                shorter following an error so the LED flashes faster. */
210
                vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );
211
 
212
                /* Check all the standard demo application tasks are executing without
213
                error. */
214
                if( prvCheckOtherTasksAreStillRunning() != pdPASS )
215
                {
216
                        /* An error has been detected in one of the tasks - flash faster. */
217
                        xDelayPeriod = mainERROR_FLASH_PERIOD;
218
                }
219
 
220
                vParTestToggleLED( mainCHECK_TASK_LED );
221
        }
222
}
223
/*-----------------------------------------------------------*/
224
 
225
static long prvCheckOtherTasksAreStillRunning( void )
226
{
227
long lReturn = ( long ) pdPASS;
228
 
229
        /* Check all the demo tasks (other than the flash tasks) to ensure
230
        that they are all still running, and that none of them have detected
231
        an error. */
232
 
233
        if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
234
        {
235
                lReturn = ( long ) pdFAIL;
236
        }
237
 
238
        if( xArePollingQueuesStillRunning() != pdTRUE )
239
        {
240
                lReturn = ( long ) pdFAIL;
241
        }
242
 
243
        if( xAreSemaphoreTasksStillRunning() != pdTRUE )
244
        {
245
                lReturn = ( long ) pdFAIL;
246
        }
247
 
248
        if( xAreBlockingQueuesStillRunning() != pdTRUE )
249
        {
250
                lReturn = ( long ) pdFAIL;
251
        }
252
 
253
        if( xAreComTestTasksStillRunning() != pdTRUE )
254
        {
255
                lReturn = ( long ) pdFAIL;
256
        }
257
 
258
        if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )
259
        {
260
                lReturn = ( long ) pdFAIL;
261
        }
262
 
263
        return lReturn;
264
}
265
/*-----------------------------------------------------------*/
266
 
267
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.