2 FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
7 This file is part of the FreeRTOS distribution.
9 FreeRTOS is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License (version 2) as published by the
11 Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.
13 ***************************************************************************
14 >>! NOTE: The modification to the GPL is included to allow you to !<<
15 >>! distribute a combined work that includes FreeRTOS without being !<<
16 >>! obliged to provide the source code for proprietary components !<<
17 >>! outside of the FreeRTOS kernel. !<<
18 ***************************************************************************
20 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
21 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22 FOR A PARTICULAR PURPOSE. Full license text is available on the following
23 link: http://www.freertos.org/a00114.html
25 ***************************************************************************
27 * FreeRTOS provides completely free yet professionally developed, *
28 * robust, strictly quality controlled, supported, and cross *
29 * platform software that is more than just the market leader, it *
30 * is the industry's de facto standard. *
32 * Help yourself get started quickly while simultaneously helping *
33 * to support the FreeRTOS project by purchasing a FreeRTOS *
34 * tutorial book, reference manual, or both: *
35 * http://www.FreeRTOS.org/Documentation *
37 ***************************************************************************
39 http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading
40 the FAQ page "My application does not run, what could be wrong?". Have you
41 defined configASSERT()?
43 http://www.FreeRTOS.org/support - In return for receiving this top quality
44 embedded software for free we request you assist our global community by
45 participating in the support forum.
47 http://www.FreeRTOS.org/training - Investing in training allows your team to
48 be as productive as possible as early as possible. Now you can receive
49 FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
50 Ltd, and the world's leading authority on the world's leading RTOS.
52 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
53 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
54 compatible FAT file system, and our tiny thread aware UDP/IP stack.
56 http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
57 Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
59 http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
60 Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS
61 licenses offer ticketed support, indemnification and commercial middleware.
63 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
64 engineered and independently SIL3 certified version for use in safety and
65 mission critical applications that require provable dependability.
71 * This version of flash .c is for use on systems that have limited stack space
72 * and no display facilities. The complete version can be found in the
73 * Demo/Common/Full directory.
75 * Three tasks are created, each of which flash an LED at a different rate. The first
76 * LED flashes every 200ms, the second every 400ms, the third every 600ms.
78 * The LED flash tasks provide instant visual feedback. They show that the scheduler
79 * is still operational.
86 /* Scheduler include files. */
90 /* Demo program include files. */
94 #define ledSTACK_SIZE configMINIMAL_STACK_SIZE
95 #define ledNUMBER_OF_LEDS ( 3 )
96 #define ledFLASH_RATE_BASE ( ( TickType_t ) 333 )
98 /* Variable used by the created tasks to calculate the LED number to use, and
99 the rate at which they should flash the LED. */
100 static volatile UBaseType_t uxFlashTaskNumber = 0;
102 /* The task that is created three times. */
103 static portTASK_FUNCTION_PROTO( vLEDFlashTask, pvParameters );
105 /*-----------------------------------------------------------*/
107 void vStartLEDFlashTasks( UBaseType_t uxPriority )
111 /* Create the three tasks. */
112 for( xLEDTask = 0; xLEDTask < ledNUMBER_OF_LEDS; ++xLEDTask )
114 /* Spawn the task. */
115 xTaskCreate( vLEDFlashTask, "LEDx", ledSTACK_SIZE, NULL, uxPriority, ( TaskHandle_t * ) NULL );
118 /*-----------------------------------------------------------*/
120 static portTASK_FUNCTION( vLEDFlashTask, pvParameters )
122 TickType_t xFlashRate, xLastFlashTime;
125 /* The parameters are not used. */
126 ( void ) pvParameters;
128 /* Calculate the LED and flash rate. */
129 portENTER_CRITICAL();
131 /* See which of the eight LED's we should use. */
132 uxLED = uxFlashTaskNumber;
134 /* Update so the next task uses the next LED. */
139 xFlashRate = ledFLASH_RATE_BASE + ( ledFLASH_RATE_BASE * ( TickType_t ) uxLED );
140 xFlashRate /= portTICK_PERIOD_MS;
142 /* We will turn the LED on and off again in the delay period, so each
143 delay is only half the total period. */
144 xFlashRate /= ( TickType_t ) 2;
146 /* We need to initialise xLastFlashTime prior to the first call to
147 vTaskDelayUntil(). */
148 xLastFlashTime = xTaskGetTickCount();
152 /* Delay for half the flash period then turn the LED on. */
153 vTaskDelayUntil( &xLastFlashTime, xFlashRate );
154 vParTestToggleLED( uxLED );
156 /* Delay for half the flash period then turn the LED off. */
157 vTaskDelayUntil( &xLastFlashTime, xFlashRate );
158 vParTestToggleLED( uxLED );
160 } /*lint !e715 !e818 !e830 Function definition must be standard for task creation. */