Imt.Base C++ API
V4.1.1.0
Loading...
Searching...
No Matches
AzureRTOSConfig.h
Go to the documentation of this file.
1
/**************************************************************************/
2
/* */
3
/* Copyright (c) Microsoft Corporation. All rights reserved. */
4
/* */
5
/* This software is licensed under the Microsoft Software License */
6
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
7
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
8
/* and in the root directory of this software. */
9
/* */
10
/**************************************************************************/
11
12
/**************************************************************************/
13
/**************************************************************************/
19
/**************************************************************************/
20
/**************************************************************************/
21
22
/**************************************************************************/
23
/* */
24
/* PORT SPECIFIC C INFORMATION RELEASE */
25
/* */
26
/* tx_user.h PORTABLE C */
27
/* 6.1.11 */
28
/* */
29
/* AUTHOR */
30
/* */
31
/* William E. Lamie, Microsoft Corporation */
32
/* */
33
/* DESCRIPTION */
34
/* */
35
/* This file contains user defines for configuring ThreadX in specific */
36
/* ways. This file will have an effect only if the application and */
37
/* ThreadX library are built with TX_INCLUDE_USER_DEFINE_FILE defined. */
38
/* Note that all the defines in this file may also be made on the */
39
/* command line when building ThreadX library and application objects. */
40
/* */
41
/* RELEASE HISTORY */
42
/* */
43
/* DATE NAME DESCRIPTION */
44
/* */
45
/* 05-19-2020 William E. Lamie Initial Version 6.0 */
46
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
47
/* resulting in version 6.1 */
48
/* 03-02-2021 Scott Larson Modified comment(s), */
49
/* added option to remove */
50
/* FileX pointer, */
51
/* resulting in version 6.1.5 */
52
/* 06-02-2021 Scott Larson Added options for multiple */
53
/* block pool search & delay, */
54
/* resulting in version 6.1.7 */
55
/* 10-15-2021 Yuxin Zhou Modified comment(s), added */
56
/* user-configurable symbol */
57
/* TX_TIMER_TICKS_PER_SECOND */
58
/* resulting in version 6.1.9 */
59
/* 04-25-2022 Wenhui Xie Modified comment(s), */
60
/* optimized the definition of */
61
/* TX_TIMER_TICKS_PER_SECOND, */
62
/* resulting in version 6.1.11 */
63
/* */
64
/**************************************************************************/
65
66
#ifndef TX_USER_H
67
#define TX_USER_H
68
69
/* Define various build options for the ThreadX port. The application should either make changes
70
here by commenting or un-commenting the conditional compilation defined OR supply the defines
71
though the compiler's equivalent of the -D option.
72
73
For maximum speed, the following should be defined:
74
75
TX_MAX_PRIORITIES 32
76
TX_DISABLE_PREEMPTION_THRESHOLD
77
TX_DISABLE_REDUNDANT_CLEARING
78
TX_DISABLE_NOTIFY_CALLBACKS
79
TX_NOT_INTERRUPTABLE
80
TX_TIMER_PROCESS_IN_ISR
81
TX_REACTIVATE_INLINE
82
TX_DISABLE_STACK_FILLING
83
TX_INLINE_THREAD_RESUME_SUSPEND
84
85
For minimum size, the following should be defined:
86
87
TX_MAX_PRIORITIES 32
88
TX_DISABLE_PREEMPTION_THRESHOLD
89
TX_DISABLE_REDUNDANT_CLEARING
90
TX_DISABLE_NOTIFY_CALLBACKS
91
TX_NO_FILEX_POINTER
92
TX_NOT_INTERRUPTABLE
93
TX_TIMER_PROCESS_IN_ISR
94
95
Of course, many of these defines reduce functionality and/or change the behavior of the
96
system in ways that may not be worth the trade-off. For example, the TX_TIMER_PROCESS_IN_ISR
97
results in faster and smaller code, however, it increases the amount of processing in the ISR.
98
In addition, some services that are available in timers are not available from ISRs and will
99
therefore return an error if this option is used. This may or may not be desirable for a
100
given application. */
101
102
/* Override various options with default values already assigned in tx_port.h. Please also refer
103
to tx_port.h for descriptions on each of these options. */
104
105
/*
106
#define TX_MAX_PRIORITIES 32
107
#define TX_MINIMUM_STACK ????
108
#define TX_THREAD_USER_EXTENSION ????
109
#define TX_TIMER_THREAD_STACK_SIZE ????
110
#define TX_TIMER_THREAD_PRIORITY ????
111
*/
112
113
/* Define the common timer tick reference for use by other middleware components. The default
114
value is 10ms (i.e. 100 ticks, defined in tx_api.h), but may be replaced by a port-specific
115
version in tx_port.h or here.
116
Note: the actual hardware timer value may need to be changed (usually in tx_initialize_low_level). */
117
118
/*
119
#define TX_TIMER_TICKS_PER_SECOND (100UL)
120
*/
121
122
/* Determine if there is a FileX pointer in the thread control block.
123
By default, the pointer is there for legacy/backwards compatibility.
124
The pointer must also be there for applications using FileX.
125
Define this to save space in the thread control block.
126
*/
127
128
/*
129
#define TX_NO_FILEX_POINTER
130
*/
131
132
/* Determine if timer expirations (application timers, timeouts, and tx_thread_sleep calls
133
should be processed within the a system timer thread or directly in the timer ISR.
134
By default, the timer thread is used. When the following is defined, the timer expiration
135
processing is done directly from the timer ISR, thereby eliminating the timer thread control
136
block, stack, and context switching to activate it. */
137
138
/*
139
#define TX_TIMER_PROCESS_IN_ISR
140
*/
141
142
/* Determine if in-line timer reactivation should be used within the timer expiration processing.
143
By default, this is disabled and a function call is used. When the following is defined,
144
reactivating is performed in-line resulting in faster timer processing but slightly larger
145
code size. */
146
147
/*
148
#define TX_REACTIVATE_INLINE
149
*/
150
151
/* Determine is stack filling is enabled. By default, ThreadX stack filling is enabled,
152
which places an 0xEF pattern in each byte of each thread's stack. This is used by
153
debuggers with ThreadX-awareness and by the ThreadX run-time stack checking feature. */
154
155
/*
156
#define TX_DISABLE_STACK_FILLING
157
*/
158
159
/* Determine whether or not stack checking is enabled. By default, ThreadX stack checking is
160
disabled. When the following is defined, ThreadX thread stack checking is enabled. If stack
161
checking is enabled (TX_ENABLE_STACK_CHECKING is defined), the TX_DISABLE_STACK_FILLING
162
define is negated, thereby forcing the stack fill which is necessary for the stack checking
163
logic. */
164
165
/*
166
#define TX_ENABLE_STACK_CHECKING
167
*/
168
169
/* Determine if preemption-threshold should be disabled. By default, preemption-threshold is
170
enabled. If the application does not use preemption-threshold, it may be disabled to reduce
171
code size and improve performance. */
172
173
/*
174
#define TX_DISABLE_PREEMPTION_THRESHOLD
175
*/
176
177
/* Determine if global ThreadX variables should be cleared. If the compiler startup code clears
178
the .bss section prior to ThreadX running, the define can be used to eliminate unnecessary
179
clearing of ThreadX global variables. */
180
181
/*
182
#define TX_DISABLE_REDUNDANT_CLEARING
183
*/
184
185
/* Determine if no timer processing is required. This option will help eliminate the timer
186
processing when not needed. The user will also have to comment out the call to
187
tx_timer_interrupt, which is typically made from assembly language in
188
tx_initialize_low_level. Note: if TX_NO_TIMER is used, the define TX_TIMER_PROCESS_IN_ISR
189
must also be used and tx_timer_initialize must be removed from ThreadX library. */
190
191
/*
192
#define TX_NO_TIMER
193
#ifndef TX_TIMER_PROCESS_IN_ISR
194
#define TX_TIMER_PROCESS_IN_ISR
195
#endif
196
*/
197
198
/* Determine if the notify callback option should be disabled. By default, notify callbacks are
199
enabled. If the application does not use notify callbacks, they may be disabled to reduce
200
code size and improve performance. */
201
202
/*
203
#define TX_DISABLE_NOTIFY_CALLBACKS
204
*/
205
206
/* Determine if the tx_thread_resume and tx_thread_suspend services should have their internal
207
code in-line. This results in a larger image, but improves the performance of the thread
208
resume and suspend services. */
209
210
/*
211
#define TX_INLINE_THREAD_RESUME_SUSPEND
212
*/
213
214
/* Determine if the internal ThreadX code is non-interruptable. This results in smaller code
215
size and less processing overhead, but increases the interrupt lockout time. */
216
217
/*
218
#define TX_NOT_INTERRUPTABLE
219
*/
220
221
/* Determine if the trace event logging code should be enabled. This causes slight increases in
222
code size and overhead, but provides the ability to generate system trace information which
223
is available for viewing in TraceX. */
224
225
/*
226
#define TX_ENABLE_EVENT_TRACE
227
*/
228
229
/* Determine if block pool performance gathering is required by the application. When the following is
230
defined, ThreadX gathers various block pool performance information. */
231
232
/*
233
#define TX_BLOCK_POOL_ENABLE_PERFORMANCE_INFO
234
*/
235
236
/* Determine if byte pool performance gathering is required by the application. When the following is
237
defined, ThreadX gathers various byte pool performance information. */
238
239
/*
240
#define TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO
241
*/
242
243
/* Determine if event flags performance gathering is required by the application. When the following is
244
defined, ThreadX gathers various event flags performance information. */
245
246
/*
247
#define TX_EVENT_FLAGS_ENABLE_PERFORMANCE_INFO
248
*/
249
250
/* Determine if mutex performance gathering is required by the application. When the following is
251
defined, ThreadX gathers various mutex performance information. */
252
253
/*
254
#define TX_MUTEX_ENABLE_PERFORMANCE_INFO
255
*/
256
257
/* Determine if queue performance gathering is required by the application. When the following is
258
defined, ThreadX gathers various queue performance information. */
259
260
/*
261
#define TX_QUEUE_ENABLE_PERFORMANCE_INFO
262
*/
263
264
/* Determine if semaphore performance gathering is required by the application. When the following is
265
defined, ThreadX gathers various semaphore performance information. */
266
267
/*
268
#define TX_SEMAPHORE_ENABLE_PERFORMANCE_INFO
269
*/
270
271
/* Determine if thread performance gathering is required by the application. When the following is
272
defined, ThreadX gathers various thread performance information. */
273
274
/*
275
#define TX_THREAD_ENABLE_PERFORMANCE_INFO
276
*/
277
278
/* Determine if timer performance gathering is required by the application. When the following is
279
defined, ThreadX gathers various timer performance information. */
280
281
/*
282
#define TX_TIMER_ENABLE_PERFORMANCE_INFO
283
*/
284
285
/* Override options for byte pool searches of multiple blocks. */
286
287
/*
288
#define TX_BYTE_POOL_MULTIPLE_BLOCK_SEARCH 20
289
*/
290
291
/* Override options for byte pool search delay to avoid thrashing. */
292
293
/*
294
#define TX_BYTE_POOL_DELAY_VALUE 3
295
*/
296
297
#endif
298
Imt.Base
CopyProject
Config
AzureRTOSConfig.h
Generated by
1.9.7