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.
70 /*-----------------------------------------------------------
71 * Portable layer API. Each function must be defined for each port.
72 *----------------------------------------------------------*/
77 /* Each FreeRTOS port has a unique portmacro.h header file. Originally a
78 pre-processor definition was used to ensure the pre-processor found the correct
79 portmacro.h file for the port being used. That scheme was deprecated in favour
80 of setting the compiler's include path such that it found the correct
81 portmacro.h file - removing the need for the constant and allowing the
82 portmacro.h file to be located anywhere in relation to the port being used.
83 Purely for reasons of backward compatibility the old method is still valid, but
84 to make it clear that new projects should not use it, support for the port
85 specific constants has been moved into the deprecated_definitions.h header
87 #include "deprecated_definitions.h"
89 /* If portENTER_CRITICAL is not defined then including deprecated_definitions.h
90 did not result in a portmacro.h header file being included - and it should be
91 included here. In this case the path to the correct portmacro.h header file
92 must be set in the compiler's include path. */
93 #ifndef portENTER_CRITICAL
94 #include "portmacro.h"
97 #if portBYTE_ALIGNMENT == 32
98 #define portBYTE_ALIGNMENT_MASK ( 0x001f )
101 #if portBYTE_ALIGNMENT == 16
102 #define portBYTE_ALIGNMENT_MASK ( 0x000f )
105 #if portBYTE_ALIGNMENT == 8
106 #define portBYTE_ALIGNMENT_MASK ( 0x0007 )
109 #if portBYTE_ALIGNMENT == 4
110 #define portBYTE_ALIGNMENT_MASK ( 0x0003 )
113 #if portBYTE_ALIGNMENT == 2
114 #define portBYTE_ALIGNMENT_MASK ( 0x0001 )
117 #if portBYTE_ALIGNMENT == 1
118 #define portBYTE_ALIGNMENT_MASK ( 0x0000 )
121 #ifndef portBYTE_ALIGNMENT_MASK
122 #error "Invalid portBYTE_ALIGNMENT definition"
125 #ifndef portNUM_CONFIGURABLE_REGIONS
126 #define portNUM_CONFIGURABLE_REGIONS 1
133 #include "mpu_wrappers.h"
136 * Setup the stack of a new task so it is ready to be placed under the
137 * scheduler control. The registers have to be placed on the stack in
138 * the order that the port expects to find them.
141 #if( portUSING_MPU_WRAPPERS == 1 )
142 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION;
144 StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION;
147 /* Used by heap_5.c. */
148 typedef struct HeapRegion
150 uint8_t *pucStartAddress;
155 * Used to define multiple heap regions for use by heap_5.c. This function
156 * must be called before any calls to pvPortMalloc() - not creating a task,
157 * queue, semaphore, mutex, software timer, event group, etc. will result in
158 * pvPortMalloc being called.
160 * pxHeapRegions passes in an array of HeapRegion_t structures - each of which
161 * defines a region of memory that can be used as the heap. The array is
162 * terminated by a HeapRegions_t structure that has a size of 0. The region
163 * with the lowest start address must appear first in the array.
165 void vPortDefineHeapRegions( const HeapRegion_t * const pxHeapRegions ) PRIVILEGED_FUNCTION;
169 * Map to the memory management routines required for the port.
171 void *pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION;
172 void vPortFree( void *pv ) PRIVILEGED_FUNCTION;
173 void vPortInitialiseBlocks( void ) PRIVILEGED_FUNCTION;
174 size_t xPortGetFreeHeapSize( void ) PRIVILEGED_FUNCTION;
175 size_t xPortGetMinimumEverFreeHeapSize( void ) PRIVILEGED_FUNCTION;
178 * Setup the hardware ready for the scheduler to take control. This generally
179 * sets up a tick interrupt and sets timers for the correct tick frequency.
181 BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION;
184 * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so
185 * the hardware is left in its original condition after the scheduler stops
188 void vPortEndScheduler( void ) PRIVILEGED_FUNCTION;
191 * The structures and methods of manipulating the MPU are contained within the
194 * Fills the xMPUSettings structure with the memory region information
195 * contained in xRegions.
197 #if( portUSING_MPU_WRAPPERS == 1 )
198 struct xMEMORY_REGION;
199 void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t ulStackDepth ) PRIVILEGED_FUNCTION;
206 #endif /* PORTABLE_H */