]> begriffs open source - freertos/blob - Source/portable/GCC/ARM_CM3/portmacro.h
Update to V5.4.1
[freertos] / Source / portable / GCC / ARM_CM3 / portmacro.h
1 /*\r
2         FreeRTOS V5.4.1 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS is free software; you can redistribute it and/or modify it     under \r
7         the terms of the GNU General Public License (version 2) as published by the \r
8         Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS without being obliged to provide the \r
11         source code for proprietary components outside of the FreeRTOS kernel.  \r
12         Alternative commercial license and support terms are also available upon \r
13         request.  See the licensing section of http://www.FreeRTOS.org for full \r
14         license details.\r
15 \r
16         FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19         more details.\r
20 \r
21         You should have received a copy of the GNU General Public License along\r
22         with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 \r
49 #ifndef PORTMACRO_H\r
50 #define PORTMACRO_H\r
51 \r
52 #ifdef __cplusplus\r
53 extern "C" {\r
54 #endif\r
55 \r
56 /*-----------------------------------------------------------\r
57  * Port specific definitions.  \r
58  *\r
59  * The settings in this file configure FreeRTOS correctly for the\r
60  * given hardware and compiler.\r
61  *\r
62  * These settings should not be altered.\r
63  *-----------------------------------------------------------\r
64  */\r
65 \r
66 /* Type definitions. */\r
67 #define portCHAR                char\r
68 #define portFLOAT               float\r
69 #define portDOUBLE              double\r
70 #define portLONG                long\r
71 #define portSHORT               short\r
72 #define portSTACK_TYPE  unsigned portLONG\r
73 #define portBASE_TYPE   long\r
74 \r
75 #if( configUSE_16_BIT_TICKS == 1 )\r
76         typedef unsigned portSHORT portTickType;\r
77         #define portMAX_DELAY ( portTickType ) 0xffff\r
78 #else\r
79         typedef unsigned portLONG portTickType;\r
80         #define portMAX_DELAY ( portTickType ) 0xffffffff\r
81 #endif\r
82 /*-----------------------------------------------------------*/ \r
83 \r
84 /* Architecture specifics. */\r
85 #define portSTACK_GROWTH                        ( -1 )\r
86 #define portTICK_RATE_MS                        ( ( portTickType ) 1000 / configTICK_RATE_HZ )          \r
87 #define portBYTE_ALIGNMENT                      4\r
88 /*-----------------------------------------------------------*/ \r
89 \r
90 \r
91 /* Scheduler utilities. */\r
92 extern void vPortYieldFromISR( void );\r
93 \r
94 #define portYIELD()                                     vPortYieldFromISR()\r
95 \r
96 #define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired ) vPortYieldFromISR()\r
97 /*-----------------------------------------------------------*/\r
98 \r
99 \r
100 /* Critical section management. */\r
101 \r
102 /* \r
103  * Set basepri to portMAX_SYSCALL_INTERRUPT_PRIORITY without effecting other\r
104  * registers.  r0 is clobbered.\r
105  */ \r
106 #define portSET_INTERRUPT_MASK()                                                \\r
107         __asm volatile                                                                          \\r
108         (                                                                                                       \\r
109                 "       mov r0, %0                                                              \n"     \\r
110                 "       msr basepri, r0                                                 \n" \\r
111                 ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY):"r0"        \\r
112         )\r
113         \r
114 /*\r
115  * Set basepri back to 0 without effective other registers.\r
116  * r0 is clobbered.\r
117  */\r
118 #define portCLEAR_INTERRUPT_MASK()                      \\r
119         __asm volatile                                                  \\r
120         (                                                                               \\r
121                 "       mov r0, #0                                      \n"     \\r
122                 "       msr basepri, r0                         \n"     \\r
123                 :::"r0"                                                         \\r
124         )\r
125 \r
126 #define portSET_INTERRUPT_MASK_FROM_ISR()               0;portSET_INTERRUPT_MASK()\r
127 #define portCLEAR_INTERRUPT_MASK_FROM_ISR(x)    portCLEAR_INTERRUPT_MASK();(void)x\r
128 \r
129 \r
130 extern void vPortEnterCritical( void );\r
131 extern void vPortExitCritical( void );\r
132 \r
133 #define portDISABLE_INTERRUPTS()        portSET_INTERRUPT_MASK()\r
134 #define portENABLE_INTERRUPTS()         portCLEAR_INTERRUPT_MASK()\r
135 #define portENTER_CRITICAL()            vPortEnterCritical()\r
136 #define portEXIT_CRITICAL()                     vPortExitCritical()\r
137 /*-----------------------------------------------------------*/\r
138 \r
139 /* Task function macros as described on the FreeRTOS.org WEB site. */\r
140 #define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
141 #define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
142 \r
143 #define portNOP()\r
144 \r
145 #ifdef __cplusplus\r
146 }\r
147 #endif\r
148 \r
149 #endif /* PORTMACRO_H */\r
150 \r