2 FreeRTOS V4.6.1 - copyright (C) 2003-2006 Richard Barry.
\r
3 MCF5235 Port - Copyright (C) 2006 Christian Walter.
\r
5 This file is part of the FreeRTOS distribution.
\r
7 FreeRTOS is free software; you can redistribute it and/or modify
\r
8 it under the terms of the GNU General Public License** as published by
\r
9 the Free Software Foundation; either version 2 of the License, or
\r
10 (at your option) any later version.
\r
12 FreeRTOS is distributed in the hope that it will be useful,
\r
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
15 GNU General Public License for more details.
\r
17 You should have received a copy of the GNU General Public License
\r
18 along with FreeRTOS; if not, write to the Free Software
\r
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
\r
21 A special exception to the GPL can be applied should you wish to distribute
\r
22 a combined work that includes FreeRTOS, without being obliged to provide
\r
23 the source code for any proprietary components. See the licensing section
\r
24 of http://www.FreeRTOS.org for full details of how and when the exception
\r
27 ***************************************************************************
\r
28 ***************************************************************************
\r
30 * Get the FreeRTOS eBook! See http://www.FreeRTOS.org/Documentation *
\r
32 * This is a concise, step by step, 'hands on' guide that describes both *
\r
33 * general multitasking concepts and FreeRTOS specifics. It presents and *
\r
34 * explains numerous examples that are written using the FreeRTOS API. *
\r
35 * Full source code for all the examples is provided in an accompanying *
\r
38 ***************************************************************************
\r
39 ***************************************************************************
\r
41 Please ensure to read the configuration and relevant port sections of the
\r
42 online documentation.
\r
44 http://www.FreeRTOS.org - Documentation, latest information, license and
\r
47 http://www.SafeRTOS.com - A version that is certified for use in safety
\r
50 http://www.OpenRTOS.com - Commercial support, development, porting,
\r
51 licensing and training services.
\r
54 /* ------------------------ System includes ------------------------------- */
\r
60 /* ------------------------ FreeRTOS includes ----------------------------- */
\r
61 #include "FreeRTOS.h"
\r
64 /* ------------------------ LWIP includes --------------------------------- */
\r
65 #include "lwip/api.h"
\r
66 #include "lwip/tcpip.h"
\r
67 #include "lwip/memp.h"
\r
69 /* ------------------------ Project includes ------------------------------ */
\r
70 #include "mcf5xxx.h"
\r
71 #include "mcf523x.h"
\r
75 #include "integer.h"
\r
77 #include "semtest.h"
\r
79 #include "dynamic.h"
\r
82 /* ------------------------ Defines --------------------------------------- */
\r
83 #define mainCOM_TEST_BAUD_RATE ( ( unsigned long ) 38400 )
\r
85 /* Priorities for the demo application tasks. */
\r
86 #define mainLED_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
\r
87 #define mainCOM_TEST_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
88 #define mainQUEUE_POLL_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
89 #define mainCHECK_TASK_PRIORITY ( tskIDLE_PRIORITY + 4 )
\r
90 #define mainSEM_TEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
91 #define mainBLOCK_Q_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
92 #define mainWEB_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
\r
93 #define STACK_DEFAULT ( 1024 )
\r
95 /* Interval in which tasks are checked. */
\r
96 #define mainCHECK_PERIOD ( ( TickType_t ) 2000 / portTICK_PERIOD_MS )
\r
98 /* Constants used by the vMemCheckTask() task. */
\r
99 #define mainCOUNT_INITIAL_VALUE ( ( unsigned long ) 0 )
\r
100 #define mainNO_TASK ( 0 )
\r
102 /* The size of the memory blocks allocated by the vMemCheckTask() task. */
\r
103 #define mainMEM_CHECK_SIZE_1 ( ( size_t ) 51 )
\r
104 #define mainMEM_CHECK_SIZE_2 ( ( size_t ) 52 )
\r
105 #define mainMEM_CHECK_SIZE_3 ( ( size_t ) 151 )
\r
107 /* ------------------------ Static variables ------------------------------ */
\r
108 xComPortHandle xSTDComPort = NULL;
\r
110 /* ------------------------ Static functions ------------------------------ */
\r
111 static portTASK_FUNCTION( vErrorChecks, pvParameters );
\r
112 static long prvCheckOtherTasksAreStillRunning( unsigned long
\r
113 ulMemCheckTaskCount );
\r
114 static portTASK_FUNCTION( vMemCheckTask, pvParameters );
\r
116 /* ------------------------ Implementation -------------------------------- */
\r
118 main( int argc, char *argv[] )
\r
120 asm volatile ( "move.w #0x2000, %sr\n\t" );
\r
122 xSTDComPort = xSerialPortInitMinimal( 38400, 8 );
\r
125 /* Start the demo/test application tasks. */
\r
126 vStartIntegerMathTasks( tskIDLE_PRIORITY );
\r
127 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
\r
128 //vStartMathTasks( tskIDLE_PRIORITY );
\r
129 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
\r
130 vStartDynamicPriorityTasks( );
\r
131 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
\r
133 /* Start the webserver. */
\r
134 ( void )sys_thread_new( vBasicWEBServer, NULL, mainWEB_TASK_PRIORITY );
\r
136 /* Start the check task - which is defined in this file. */
\r
137 xTaskCreate( vErrorChecks, "Check", 512, NULL,
\r
138 mainCHECK_TASK_PRIORITY, NULL );
\r
139 /* Now all the tasks have been started - start the scheduler. */
\r
140 vTaskStartScheduler( );
\r
142 /* Should never get here! */
\r
147 portTASK_FUNCTION( vErrorChecks, pvParameters )
\r
149 unsigned long ulMemCheckTaskRunningCount;
\r
150 TaskHandle_t xCreatedTask;
\r
152 /* The parameters are not used in this function. */
\r
153 ( void )pvParameters;
\r
157 ulMemCheckTaskRunningCount = mainCOUNT_INITIAL_VALUE;
\r
158 xCreatedTask = mainNO_TASK;
\r
159 if( xTaskCreate( vMemCheckTask, "MEM",
\r
160 configMINIMAL_STACK_SIZE, ( void * )&ulMemCheckTaskRunningCount,
\r
161 tskIDLE_PRIORITY, &xCreatedTask ) != pdPASS )
\r
163 xSerialPutChar( xSTDComPort, 'E', portMAX_DELAY );
\r
165 /* Delay until it is time to execute again. */
\r
166 vTaskDelay( mainCHECK_PERIOD );
\r
168 /* Delete the dynamically created task. */
\r
169 if( xCreatedTask != mainNO_TASK )
\r
171 vTaskDelete( xCreatedTask );
\r
174 if( prvCheckOtherTasksAreStillRunning( ulMemCheckTaskRunningCount ) != pdPASS )
\r
176 xSerialPutChar( xSTDComPort, 'E', portMAX_DELAY );
\r
180 xSerialPutChar( xSTDComPort, '.', portMAX_DELAY );
\r
186 prvCheckOtherTasksAreStillRunning( unsigned long ulMemCheckTaskCount )
\r
188 long lReturn = ( long ) pdPASS;
\r
190 /* Check all the demo tasks (other than the flash tasks) to ensure
\r
191 * that they are all still running, and that none of them have detected
\r
194 if( xAreIntegerMathsTaskStillRunning( ) != pdTRUE )
\r
196 lReturn = ( long ) pdFAIL;
\r
199 if( xArePollingQueuesStillRunning( ) != pdTRUE )
\r
201 lReturn = ( long ) pdFAIL;
\r
204 if( xAreSemaphoreTasksStillRunning( ) != pdTRUE )
\r
206 lReturn = ( long ) pdFAIL;
\r
209 if( xAreDynamicPriorityTasksStillRunning( ) != pdTRUE )
\r
211 lReturn = ( long ) pdFAIL;
\r
214 if( xAreBlockingQueuesStillRunning( ) != pdTRUE )
\r
216 lReturn = ( long ) pdFAIL;
\r
219 if( ulMemCheckTaskCount == mainCOUNT_INITIAL_VALUE )
\r
221 /* The vMemCheckTask did not increment the counter - it must
\r
224 lReturn = ( long ) pdFAIL;
\r
230 vMemCheckTask( void *pvParameters )
\r
232 unsigned long *pulMemCheckTaskRunningCounter;
\r
233 void *pvMem1, *pvMem2, *pvMem3;
\r
234 static long lErrorOccurred = pdFALSE;
\r
236 /* This task is dynamically created then deleted during each cycle of the
\r
237 vErrorChecks task to check the operation of the memory allocator. Each time
\r
238 the task is created memory is allocated for the stack and TCB. Each time
\r
239 the task is deleted this memory is returned to the heap. This task itself
\r
240 exercises the allocator by allocating and freeing blocks.
\r
242 The task executes at the idle priority so does not require a delay.
\r
244 pulMemCheckTaskRunningCounter is incremented each cycle to indicate to the
\r
245 vErrorChecks() task that this task is still executing without error. */
\r
247 pulMemCheckTaskRunningCounter = ( unsigned long * )pvParameters;
\r
251 if( lErrorOccurred == pdFALSE )
\r
253 /* We have never seen an error so increment the counter. */
\r
254 ( *pulMemCheckTaskRunningCounter )++;
\r
257 /* Allocate some memory - just to give the allocator some extra
\r
258 exercise. This has to be in a critical section to ensure the
\r
259 task does not get deleted while it has memory allocated. */
\r
260 vTaskSuspendAll( );
\r
262 pvMem1 = pvPortMalloc( mainMEM_CHECK_SIZE_1 );
\r
263 if( pvMem1 == NULL )
\r
265 lErrorOccurred = pdTRUE;
\r
269 memset( pvMem1, 0xaa, mainMEM_CHECK_SIZE_1 );
\r
270 vPortFree( pvMem1 );
\r
275 /* Again - with a different size block. */
\r
276 vTaskSuspendAll( );
\r
278 pvMem2 = pvPortMalloc( mainMEM_CHECK_SIZE_2 );
\r
279 if( pvMem2 == NULL )
\r
281 lErrorOccurred = pdTRUE;
\r
285 memset( pvMem2, 0xaa, mainMEM_CHECK_SIZE_2 );
\r
286 vPortFree( pvMem2 );
\r
291 /* Again - with a different size block. */
\r
292 vTaskSuspendAll( );
\r
294 pvMem3 = pvPortMalloc( mainMEM_CHECK_SIZE_3 );
\r
295 if( pvMem3 == NULL )
\r
297 lErrorOccurred = pdTRUE;
\r
301 memset( pvMem3, 0xaa, mainMEM_CHECK_SIZE_3 );
\r
302 vPortFree( pvMem3 );
\r