GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Bsp
Initech
alpha1-atmel
FreeRTOS
Source
include
message_buffer.h
1
/*
2
* FreeRTOS Kernel V10.0.0
3
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
*
5
* Permission is hereby granted, free of charge, to any person obtaining a copy of
6
* this software and associated documentation files (the "Software"), to deal in
7
* the Software without restriction, including without limitation the rights to
8
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
* the Software, and to permit persons to whom the Software is furnished to do so,
10
* subject to the following conditions:
11
*
12
* The above copyright notice and this permission notice shall be included in all
13
* copies or substantial portions of the Software. If you wish to use our Amazon
14
* FreeRTOS name, please do so in a fair use way that does not cause confusion.
15
*
16
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
*
23
* http://www.FreeRTOS.org
24
* http://aws.amazon.com/freertos
25
*
26
* 1 tab == 4 spaces!
27
*/
28
29
/*
30
* Message buffers build functionality on top of FreeRTOS stream buffers.
31
* Whereas stream buffers are used to send a continuous stream of data from one
32
* task or interrupt to another, message buffers are used to send variable
33
* length discrete messages from one task or interrupt to another. Their
34
* implementation is light weight, making them particularly suited for interrupt
35
* to task and core to core communication scenarios.
36
*
37
* ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
38
* implementation (so also the message buffer implementation, as message buffers
39
* are built on top of stream buffers) assumes there is only one task or
40
* interrupt that will write to the buffer (the writer), and only one task or
41
* interrupt that will read from the buffer (the reader). It is safe for the
42
* writer and reader to be different tasks or interrupts, but, unlike other
43
* FreeRTOS objects, it is not safe to have multiple different writers or
44
* multiple different readers. If there are to be multiple different writers
45
* then the application writer must place each call to a writing API function
46
* (such as xMessageBufferSend()) inside a critical section and set the send
47
* block time to 0. Likewise, if there are to be multiple different readers
48
* then the application writer must place each call to a reading API function
49
* (such as xMessageBufferRead()) inside a critical section and set the receive
50
* timeout to 0.
51
*
52
* Message buffers hold variable length messages. To enable that, when a
53
* message is written to the message buffer an additional sizeof( size_t ) bytes
54
* are also written to store the message's length (that happens internally, with
55
* the API function). sizeof( size_t ) is typically 4 bytes on a 32-bit
56
* architecture, so writing a 10 byte message to a message buffer on a 32-bit
57
* architecture will actually reduce the available space in the message buffer
58
* by 14 bytes (10 byte are used by the message, and 4 bytes to hold the length
59
* of the message).
60
*/
61
62
#ifndef FREERTOS_MESSAGE_BUFFER_H
63
#define FREERTOS_MESSAGE_BUFFER_H
64
65
/* Message buffers are built onto of stream buffers. */
66
#include "stream_buffer.h"
67
68
#if defined(__cplusplus)
69
extern
"C"
{
70
#endif
71
72
/**
73
* Type by which message buffers are referenced. For example, a call to
74
* xMessageBufferCreate() returns an MessageBufferHandle_t variable that can
75
* then be used as a parameter to xMessageBufferSend(), xMessageBufferReceive(),
76
* etc.
77
*/
78
typedef
void
*MessageBufferHandle_t;
79
80
/*-----------------------------------------------------------*/
81
82
/**
83
* message_buffer.h
84
*
85
<pre>
86
MessageBufferHandle_t xMessageBufferCreate( size_t xBufferSizeBytes );
87
</pre>
88
*
89
* Creates a new message buffer using dynamically allocated memory. See
90
* xMessageBufferCreateStatic() for a version that uses statically allocated
91
* memory (memory that is allocated at compile time).
92
*
93
* configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
94
* FreeRTOSConfig.h for xMessageBufferCreate() to be available.
95
*
96
* @param xBufferSizeBytes The total number of bytes (not messages) the message
97
* buffer will be able to hold at any one time. When a message is written to
98
* the message buffer an additional sizeof( size_t ) bytes are also written to
99
* store the message's length. sizeof( size_t ) is typically 4 bytes on a
100
* 32-bit architecture, so on most 32-bit architectures a 10 byte message will
101
* take up 14 bytes of message buffer space.
102
*
103
* @return If NULL is returned, then the message buffer cannot be created
104
* because there is insufficient heap memory available for FreeRTOS to allocate
105
* the message buffer data structures and storage area. A non-NULL value being
106
* returned indicates that the message buffer has been created successfully -
107
* the returned value should be stored as the handle to the created message
108
* buffer.
109
*
110
* Example use:
111
<pre>
112
113
void vAFunction( void )
114
{
115
MessageBufferHandle_t xMessageBuffer;
116
const size_t xMessageBufferSizeBytes = 100;
117
118
// Create a message buffer that can hold 100 bytes. The memory used to hold
119
// both the message buffer structure and the messages themselves is allocated
120
// dynamically. Each message added to the buffer consumes an additional 4
121
// bytes which are used to hold the lengh of the message.
122
xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes );
123
124
if( xMessageBuffer == NULL )
125
{
126
// There was not enough heap memory space available to create the
127
// message buffer.
128
}
129
else
130
{
131
// The message buffer was created successfully and can now be used.
132
}
133
134
</pre>
135
* \defgroup xMessageBufferCreate xMessageBufferCreate
136
* \ingroup MessageBufferManagement
137
*/
138
#define xMessageBufferCreate(xBufferSizeBytes) \
139
(MessageBufferHandle_t) xStreamBufferGenericCreate(xBufferSizeBytes, (size_t)0, pdTRUE)
140
141
/**
142
* message_buffer.h
143
*
144
<pre>
145
MessageBufferHandle_t xMessageBufferCreateStatic( size_t xBufferSizeBytes,
146
uint8_t *pucMessageBufferStorageArea,
147
StaticMessageBuffer_t *pxStaticMessageBuffer );
148
</pre>
149
* Creates a new message buffer using statically allocated memory. See
150
* xMessageBufferCreate() for a version that uses dynamically allocated memory.
151
*
152
* @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
153
* pucMessageBufferStorageArea parameter. When a message is written to the
154
* message buffer an additional sizeof( size_t ) bytes are also written to store
155
* the message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit
156
* architecture, so on most 32-bit architecture a 10 byte message will take up
157
* 14 bytes of message buffer space. The maximum number of bytes that can be
158
* stored in the message buffer is actually (xBufferSizeBytes - 1).
159
*
160
* @param pucMessageBufferStorageArea Must point to a uint8_t array that is at
161
* least xBufferSizeBytes + 1 big. This is the array to which messages are
162
* copied when they are written to the message buffer.
163
*
164
* @param pxStaticMessageBuffer Must point to a variable of type
165
* StaticMessageBuffer_t, which will be used to hold the message buffer's data
166
* structure.
167
*
168
* @return If the message buffer is created successfully then a handle to the
169
* created message buffer is returned. If either pucMessageBufferStorageArea or
170
* pxStaticmessageBuffer are NULL then NULL is returned.
171
*
172
* Example use:
173
<pre>
174
175
// Used to dimension the array used to hold the messages. The available space
176
// will actually be one less than this, so 999.
177
#define STORAGE_SIZE_BYTES 1000
178
179
// Defines the memory that will actually hold the messages within the message
180
// buffer.
181
static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
182
183
// The variable used to hold the message buffer structure.
184
StaticMessageBuffer_t xMessageBufferStruct;
185
186
void MyFunction( void )
187
{
188
MessageBufferHandle_t xMessageBuffer;
189
190
xMessageBuffer = xMessageBufferCreateStatic( sizeof( ucBufferStorage ),
191
ucBufferStorage,
192
&xMessageBufferStruct );
193
194
// As neither the pucMessageBufferStorageArea or pxStaticMessageBuffer
195
// parameters were NULL, xMessageBuffer will not be NULL, and can be used to
196
// reference the created message buffer in other message buffer API calls.
197
198
// Other code that uses the message buffer can go here.
199
}
200
201
</pre>
202
* \defgroup xMessageBufferCreateStatic xMessageBufferCreateStatic
203
* \ingroup MessageBufferManagement
204
*/
205
#define xMessageBufferCreateStatic(xBufferSizeBytes, pucMessageBufferStorageArea, pxStaticMessageBuffer) \
206
(MessageBufferHandle_t) xStreamBufferGenericCreateStatic( \
207
xBufferSizeBytes, 0, pdTRUE, pucMessageBufferStorageArea, pxStaticMessageBuffer)
208
209
/**
210
* message_buffer.h
211
*
212
<pre>
213
size_t xMessageBufferSend( MessageBufferHandle_t xMessageBuffer,
214
const void *pvTxData,
215
size_t xDataLengthBytes,
216
TickType_t xTicksToWait );
217
<pre>
218
*
219
* Sends a discrete message to the message buffer. The message can be any
220
* length that fits within the buffer's free space, and is copied into the
221
* buffer.
222
*
223
* ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
224
* implementation (so also the message buffer implementation, as message buffers
225
* are built on top of stream buffers) assumes there is only one task or
226
* interrupt that will write to the buffer (the writer), and only one task or
227
* interrupt that will read from the buffer (the reader). It is safe for the
228
* writer and reader to be different tasks or interrupts, but, unlike other
229
* FreeRTOS objects, it is not safe to have multiple different writers or
230
* multiple different readers. If there are to be multiple different writers
231
* then the application writer must place each call to a writing API function
232
* (such as xMessageBufferSend()) inside a critical section and set the send
233
* block time to 0. Likewise, if there are to be multiple different readers
234
* then the application writer must place each call to a reading API function
235
* (such as xMessageBufferRead()) inside a critical section and set the receive
236
* block time to 0.
237
*
238
* Use xMessageBufferSend() to write to a message buffer from a task. Use
239
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
240
* service routine (ISR).
241
*
242
* @param xMessageBuffer The handle of the message buffer to which a message is
243
* being sent.
244
*
245
* @param pvTxData A pointer to the message that is to be copied into the
246
* message buffer.
247
*
248
* @param xDataLengthBytes The length of the message. That is, the number of
249
* bytes to copy from pvTxData into the message buffer. When a message is
250
* written to the message buffer an additional sizeof( size_t ) bytes are also
251
* written to store the message's length. sizeof( size_t ) is typically 4 bytes
252
* on a 32-bit architecture, so on most 32-bit architecture setting
253
* xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
254
* bytes (20 bytes of message data and 4 bytes to hold the message length).
255
*
256
* @param xTicksToWait The maximum amount of time the calling task should remain
257
* in the Blocked state to wait for enough space to become available in the
258
* message buffer, should the message buffer have insufficient space when
259
* xMessageBufferSend() is called. The calling task will never block if
260
* xTicksToWait is zero. The block time is specified in tick periods, so the
261
* absolute time it represents is dependent on the tick frequency. The macro
262
* pdMS_TO_TICKS() can be used to convert a time specified in milliseconds into
263
* a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will cause
264
* the task to wait indefinitely (without timing out), provided
265
* INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any
266
* CPU time when they are in the Blocked state.
267
*
268
* @return The number of bytes written to the message buffer. If the call to
269
* xMessageBufferSend() times out before there was enough space to write the
270
* message into the message buffer then zero is returned. If the call did not
271
* time out then xDataLengthBytes is returned.
272
*
273
* Example use:
274
<pre>
275
void vAFunction( MessageBufferHandle_t xMessageBuffer )
276
{
277
size_t xBytesSent;
278
uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
279
char *pcStringToSend = "String to send";
280
const TickType_t x100ms = pdMS_TO_TICKS( 100 );
281
282
// Send an array to the message buffer, blocking for a maximum of 100ms to
283
// wait for enough space to be available in the message buffer.
284
xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
285
286
if( xBytesSent != sizeof( ucArrayToSend ) )
287
{
288
// The call to xMessageBufferSend() times out before there was enough
289
// space in the buffer for the data to be written.
290
}
291
292
// Send the string to the message buffer. Return immediately if there is
293
// not enough space in the buffer.
294
xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
295
296
if( xBytesSent != strlen( pcStringToSend ) )
297
{
298
// The string could not be added to the message buffer because there was
299
// not enough free space in the buffer.
300
}
301
}
302
</pre>
303
* \defgroup xMessageBufferSend xMessageBufferSend
304
* \ingroup MessageBufferManagement
305
*/
306
#define xMessageBufferSend(xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait) \
307
xStreamBufferSend((StreamBufferHandle_t)xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait)
308
309
/**
310
* message_buffer.h
311
*
312
<pre>
313
size_t xMessageBufferSendFromISR( MessageBufferHandle_t xMessageBuffer,
314
const void *pvTxData,
315
size_t xDataLengthBytes,
316
BaseType_t *pxHigherPriorityTaskWoken );
317
<pre>
318
*
319
* Interrupt safe version of the API function that sends a discrete message to
320
* the message buffer. The message can be any length that fits within the
321
* buffer's free space, and is copied into the buffer.
322
*
323
* ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
324
* implementation (so also the message buffer implementation, as message buffers
325
* are built on top of stream buffers) assumes there is only one task or
326
* interrupt that will write to the buffer (the writer), and only one task or
327
* interrupt that will read from the buffer (the reader). It is safe for the
328
* writer and reader to be different tasks or interrupts, but, unlike other
329
* FreeRTOS objects, it is not safe to have multiple different writers or
330
* multiple different readers. If there are to be multiple different writers
331
* then the application writer must place each call to a writing API function
332
* (such as xMessageBufferSend()) inside a critical section and set the send
333
* block time to 0. Likewise, if there are to be multiple different readers
334
* then the application writer must place each call to a reading API function
335
* (such as xMessageBufferRead()) inside a critical section and set the receive
336
* block time to 0.
337
*
338
* Use xMessageBufferSend() to write to a message buffer from a task. Use
339
* xMessageBufferSendFromISR() to write to a message buffer from an interrupt
340
* service routine (ISR).
341
*
342
* @param xMessageBuffer The handle of the message buffer to which a message is
343
* being sent.
344
*
345
* @param pvTxData A pointer to the message that is to be copied into the
346
* message buffer.
347
*
348
* @param xDataLengthBytes The length of the message. That is, the number of
349
* bytes to copy from pvTxData into the message buffer. When a message is
350
* written to the message buffer an additional sizeof( size_t ) bytes are also
351
* written to store the message's length. sizeof( size_t ) is typically 4 bytes
352
* on a 32-bit architecture, so on most 32-bit architecture setting
353
* xDataLengthBytes to 20 will reduce the free space in the message buffer by 24
354
* bytes (20 bytes of message data and 4 bytes to hold the message length).
355
*
356
* @param pxHigherPriorityTaskWoken It is possible that a message buffer will
357
* have a task blocked on it waiting for data. Calling
358
* xMessageBufferSendFromISR() can make data available, and so cause a task that
359
* was waiting for data to leave the Blocked state. If calling
360
* xMessageBufferSendFromISR() causes a task to leave the Blocked state, and the
361
* unblocked task has a priority higher than the currently executing task (the
362
* task that was interrupted), then, internally, xMessageBufferSendFromISR()
363
* will set *pxHigherPriorityTaskWoken to pdTRUE. If
364
* xMessageBufferSendFromISR() sets this value to pdTRUE, then normally a
365
* context switch should be performed before the interrupt is exited. This will
366
* ensure that the interrupt returns directly to the highest priority Ready
367
* state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it
368
* is passed into the function. See the code example below for an example.
369
*
370
* @return The number of bytes actually written to the message buffer. If the
371
* message buffer didn't have enough free space for the message to be stored
372
* then 0 is returned, otherwise xDataLengthBytes is returned.
373
*
374
* Example use:
375
<pre>
376
// A message buffer that has already been created.
377
MessageBufferHandle_t xMessageBuffer;
378
379
void vAnInterruptServiceRoutine( void )
380
{
381
size_t xBytesSent;
382
char *pcStringToSend = "String to send";
383
BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
384
385
// Attempt to send the string to the message buffer.
386
xBytesSent = xMessageBufferSendFromISR( xMessageBuffer,
387
( void * ) pcStringToSend,
388
strlen( pcStringToSend ),
389
&xHigherPriorityTaskWoken );
390
391
if( xBytesSent != strlen( pcStringToSend ) )
392
{
393
// The string could not be added to the message buffer because there was
394
// not enough free space in the buffer.
395
}
396
397
// If xHigherPriorityTaskWoken was set to pdTRUE inside
398
// xMessageBufferSendFromISR() then a task that has a priority above the
399
// priority of the currently executing task was unblocked and a context
400
// switch should be performed to ensure the ISR returns to the unblocked
401
// task. In most FreeRTOS ports this is done by simply passing
402
// xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
403
// variables value, and perform the context switch if necessary. Check the
404
// documentation for the port in use for port specific instructions.
405
taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
406
}
407
</pre>
408
* \defgroup xMessageBufferSendFromISR xMessageBufferSendFromISR
409
* \ingroup MessageBufferManagement
410
*/
411
#define xMessageBufferSendFromISR(xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken) \
412
xStreamBufferSendFromISR( \
413
(StreamBufferHandle_t)xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken)
414
415
/**
416
* message_buffer.h
417
*
418
<pre>
419
size_t xMessageBufferReceive( MessageBufferHandle_t xMessageBuffer,
420
void *pvRxData,
421
size_t xBufferLengthBytes,
422
TickType_t xTicksToWait );
423
</pre>
424
*
425
* Receives a discrete message from a message buffer. Messages can be of
426
* variable length and are copied out of the buffer.
427
*
428
* ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
429
* implementation (so also the message buffer implementation, as message buffers
430
* are built on top of stream buffers) assumes there is only one task or
431
* interrupt that will write to the buffer (the writer), and only one task or
432
* interrupt that will read from the buffer (the reader). It is safe for the
433
* writer and reader to be different tasks or interrupts, but, unlike other
434
* FreeRTOS objects, it is not safe to have multiple different writers or
435
* multiple different readers. If there are to be multiple different writers
436
* then the application writer must place each call to a writing API function
437
* (such as xMessageBufferSend()) inside a critical section and set the send
438
* block time to 0. Likewise, if there are to be multiple different readers
439
* then the application writer must place each call to a reading API function
440
* (such as xMessageBufferRead()) inside a critical section and set the receive
441
* block time to 0.
442
*
443
* Use xMessageBufferReceive() to read from a message buffer from a task. Use
444
* xMessageBufferReceiveFromISR() to read from a message buffer from an
445
* interrupt service routine (ISR).
446
*
447
* @param xMessageBuffer The handle of the message buffer from which a message
448
* is being received.
449
*
450
* @param pvRxData A pointer to the buffer into which the received message is
451
* to be copied.
452
*
453
* @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData
454
* parameter. This sets the maximum length of the message that can be received.
455
* If xBufferLengthBytes is too small to hold the next message then the message
456
* will be left in the message buffer and 0 will be returned.
457
*
458
* @param xTicksToWait The maximum amount of time the task should remain in the
459
* Blocked state to wait for a message, should the message buffer be empty.
460
* xMessageBufferReceive() will return immediately if xTicksToWait is zero and
461
* the message buffer is empty. The block time is specified in tick periods, so
462
* the absolute time it represents is dependent on the tick frequency. The
463
* macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds
464
* into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will
465
* cause the task to wait indefinitely (without timing out), provided
466
* INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any
467
* CPU time when they are in the Blocked state.
468
*
469
* @return The length, in bytes, of the message read from the message buffer, if
470
* any. If xMessageBufferReceive() times out before a message became available
471
* then zero is returned. If the length of the message is greater than
472
* xBufferLengthBytes then the message will be left in the message buffer and
473
* zero is returned.
474
*
475
* Example use:
476
<pre>
477
void vAFunction( MessageBuffer_t xMessageBuffer )
478
{
479
uint8_t ucRxData[ 20 ];
480
size_t xReceivedBytes;
481
const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
482
483
// Receive the next message from the message buffer. Wait in the Blocked
484
// state (so not using any CPU processing time) for a maximum of 100ms for
485
// a message to become available.
486
xReceivedBytes = xMessageBufferReceive( xMessageBuffer,
487
( void * ) ucRxData,
488
sizeof( ucRxData ),
489
xBlockTime );
490
491
if( xReceivedBytes > 0 )
492
{
493
// A ucRxData contains a message that is xReceivedBytes long. Process
494
// the message here....
495
}
496
}
497
</pre>
498
* \defgroup xMessageBufferReceive xMessageBufferReceive
499
* \ingroup MessageBufferManagement
500
*/
501
#define xMessageBufferReceive(xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait) \
502
xStreamBufferReceive((StreamBufferHandle_t)xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait)
503
504
/**
505
* message_buffer.h
506
*
507
<pre>
508
size_t xMessageBufferReceiveFromISR( MessageBufferHandle_t xMessageBuffer,
509
void *pvRxData,
510
size_t xBufferLengthBytes,
511
BaseType_t *pxHigherPriorityTaskWoken );
512
</pre>
513
*
514
* An interrupt safe version of the API function that receives a discrete
515
* message from a message buffer. Messages can be of variable length and are
516
* copied out of the buffer.
517
*
518
* ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
519
* implementation (so also the message buffer implementation, as message buffers
520
* are built on top of stream buffers) assumes there is only one task or
521
* interrupt that will write to the buffer (the writer), and only one task or
522
* interrupt that will read from the buffer (the reader). It is safe for the
523
* writer and reader to be different tasks or interrupts, but, unlike other
524
* FreeRTOS objects, it is not safe to have multiple different writers or
525
* multiple different readers. If there are to be multiple different writers
526
* then the application writer must place each call to a writing API function
527
* (such as xMessageBufferSend()) inside a critical section and set the send
528
* block time to 0. Likewise, if there are to be multiple different readers
529
* then the application writer must place each call to a reading API function
530
* (such as xMessageBufferRead()) inside a critical section and set the receive
531
* block time to 0.
532
*
533
* Use xMessageBufferReceive() to read from a message buffer from a task. Use
534
* xMessageBufferReceiveFromISR() to read from a message buffer from an
535
* interrupt service routine (ISR).
536
*
537
* @param xMessageBuffer The handle of the message buffer from which a message
538
* is being received.
539
*
540
* @param pvRxData A pointer to the buffer into which the received message is
541
* to be copied.
542
*
543
* @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData
544
* parameter. This sets the maximum length of the message that can be received.
545
* If xBufferLengthBytes is too small to hold the next message then the message
546
* will be left in the message buffer and 0 will be returned.
547
*
548
* @param pxHigherPriorityTaskWoken It is possible that a message buffer will
549
* have a task blocked on it waiting for space to become available. Calling
550
* xMessageBufferReceiveFromISR() can make space available, and so cause a task
551
* that is waiting for space to leave the Blocked state. If calling
552
* xMessageBufferReceiveFromISR() causes a task to leave the Blocked state, and
553
* the unblocked task has a priority higher than the currently executing task
554
* (the task that was interrupted), then, internally,
555
* xMessageBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE.
556
* If xMessageBufferReceiveFromISR() sets this value to pdTRUE, then normally a
557
* context switch should be performed before the interrupt is exited. That will
558
* ensure the interrupt returns directly to the highest priority Ready state
559
* task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is
560
* passed into the function. See the code example below for an example.
561
*
562
* @return The length, in bytes, of the message read from the message buffer, if
563
* any.
564
*
565
* Example use:
566
<pre>
567
// A message buffer that has already been created.
568
MessageBuffer_t xMessageBuffer;
569
570
void vAnInterruptServiceRoutine( void )
571
{
572
uint8_t ucRxData[ 20 ];
573
size_t xReceivedBytes;
574
BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
575
576
// Receive the next message from the message buffer.
577
xReceivedBytes = xMessageBufferReceiveFromISR( xMessageBuffer,
578
( void * ) ucRxData,
579
sizeof( ucRxData ),
580
&xHigherPriorityTaskWoken );
581
582
if( xReceivedBytes > 0 )
583
{
584
// A ucRxData contains a message that is xReceivedBytes long. Process
585
// the message here....
586
}
587
588
// If xHigherPriorityTaskWoken was set to pdTRUE inside
589
// xMessageBufferReceiveFromISR() then a task that has a priority above the
590
// priority of the currently executing task was unblocked and a context
591
// switch should be performed to ensure the ISR returns to the unblocked
592
// task. In most FreeRTOS ports this is done by simply passing
593
// xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
594
// variables value, and perform the context switch if necessary. Check the
595
// documentation for the port in use for port specific instructions.
596
taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
597
}
598
</pre>
599
* \defgroup xMessageBufferReceiveFromISR xMessageBufferReceiveFromISR
600
* \ingroup MessageBufferManagement
601
*/
602
#define xMessageBufferReceiveFromISR(xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken) \
603
xStreamBufferReceiveFromISR( \
604
(StreamBufferHandle_t)xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken)
605
606
/**
607
* message_buffer.h
608
*
609
<pre>
610
void vMessageBufferDelete( MessageBufferHandle_t xMessageBuffer );
611
</pre>
612
*
613
* Deletes a message buffer that was previously created using a call to
614
* xMessageBufferCreate() or xMessageBufferCreateStatic(). If the message
615
* buffer was created using dynamic memory (that is, by xMessageBufferCreate()),
616
* then the allocated memory is freed.
617
*
618
* A message buffer handle must not be used after the message buffer has been
619
* deleted.
620
*
621
* @param xMessageBuffer The handle of the message buffer to be deleted.
622
*
623
*/
624
#define vMessageBufferDelete(xMessageBuffer) vStreamBufferDelete((StreamBufferHandle_t)xMessageBuffer)
625
626
/**
627
* message_buffer.h
628
<pre>
629
BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer ) );
630
</pre>
631
*
632
* Tests to see if a message buffer is full. A message buffer is full if it
633
* cannot accept any more messages, of any size, until space is made available
634
* by a message being removed from the message buffer.
635
*
636
* @param xMessageBuffer The handle of the message buffer being queried.
637
*
638
* @return If the message buffer referenced by xMessageBuffer is full then
639
* pdTRUE is returned. Otherwise pdFALSE is returned.
640
*/
641
#define xMessageBufferIsFull(xMessageBuffer) xStreamBufferIsFull((StreamBufferHandle_t)xMessageBuffer)
642
643
/**
644
* message_buffer.h
645
<pre>
646
BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer ) );
647
</pre>
648
*
649
* Tests to see if a message buffer is empty (does not contain any messages).
650
*
651
* @param xMessageBuffer The handle of the message buffer being queried.
652
*
653
* @return If the message buffer referenced by xMessageBuffer is empty then
654
* pdTRUE is returned. Otherwise pdFALSE is returned.
655
*
656
*/
657
#define xMessageBufferIsEmpty(xMessageBuffer) xStreamBufferIsEmpty((StreamBufferHandle_t)xMessageBuffer)
658
659
/**
660
* message_buffer.h
661
<pre>
662
BaseType_t xMessageBufferReset( MessageBufferHandle_t xMessageBuffer );
663
</pre>
664
*
665
* Resets a message buffer to its initial empty state, discarding any message it
666
* contained.
667
*
668
* A message buffer can only be reset if there are no tasks blocked on it.
669
*
670
* @param xMessageBuffer The handle of the message buffer being reset.
671
*
672
* @return If the message buffer was reset then pdPASS is returned. If the
673
* message buffer could not be reset because either there was a task blocked on
674
* the message queue to wait for space to become available, or to wait for a
675
* a message to be available, then pdFAIL is returned.
676
*
677
* \defgroup xMessageBufferReset xMessageBufferReset
678
* \ingroup MessageBufferManagement
679
*/
680
#define xMessageBufferReset(xMessageBuffer) xStreamBufferReset((StreamBufferHandle_t)xMessageBuffer)
681
682
/**
683
* message_buffer.h
684
<pre>
685
size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer ) );
686
</pre>
687
* Returns the number of bytes of free space in the message buffer.
688
*
689
* @param xMessageBuffer The handle of the message buffer being queried.
690
*
691
* @return The number of bytes that can be written to the message buffer before
692
* the message buffer would be full. When a message is written to the message
693
* buffer an additional sizeof( size_t ) bytes are also written to store the
694
* message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit
695
* architecture, so if xMessageBufferSpacesAvailable() returns 10, then the size
696
* of the largest message that can be written to the message buffer is 6 bytes.
697
*
698
* \defgroup xMessageBufferSpaceAvailable xMessageBufferSpaceAvailable
699
* \ingroup MessageBufferManagement
700
*/
701
#define xMessageBufferSpaceAvailable(xMessageBuffer) xStreamBufferSpacesAvailable((StreamBufferHandle_t)xMessageBuffer)
702
703
/**
704
* message_buffer.h
705
*
706
<pre>
707
BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t
708
*pxHigherPriorityTaskWoken );
709
</pre>
710
*
711
* For advanced users only.
712
*
713
* The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when
714
* data is sent to a message buffer or stream buffer. If there was a task that
715
* was blocked on the message or stream buffer waiting for data to arrive then
716
* the sbSEND_COMPLETED() macro sends a notification to the task to remove it
717
* from the Blocked state. xMessageBufferSendCompletedFromISR() does the same
718
* thing. It is provided to enable application writers to implement their own
719
* version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME.
720
*
721
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
722
* additional information.
723
*
724
* @param xStreamBuffer The handle of the stream buffer to which data was
725
* written.
726
*
727
* @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be
728
* initialised to pdFALSE before it is passed into
729
* xMessageBufferSendCompletedFromISR(). If calling
730
* xMessageBufferSendCompletedFromISR() removes a task from the Blocked state,
731
* and the task has a priority above the priority of the currently running task,
732
* then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a
733
* context switch should be performed before exiting the ISR.
734
*
735
* @return If a task was removed from the Blocked state then pdTRUE is returned.
736
* Otherwise pdFALSE is returned.
737
*
738
* \defgroup xMessageBufferSendCompletedFromISR xMessageBufferSendCompletedFromISR
739
* \ingroup StreamBufferManagement
740
*/
741
#define xMessageBufferSendCompletedFromISR(xMessageBuffer, pxHigherPriorityTaskWoken) \
742
xStreamBufferSendCompletedFromISR((StreamBufferHandle_t)xMessageBuffer, pxHigherPriorityTaskWoken)
743
744
/**
745
* message_buffer.h
746
*
747
<pre>
748
BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t
749
*pxHigherPriorityTaskWoken );
750
</pre>
751
*
752
* For advanced users only.
753
*
754
* The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when
755
* data is read out of a message buffer or stream buffer. If there was a task
756
* that was blocked on the message or stream buffer waiting for data to arrive
757
* then the sbRECEIVE_COMPLETED() macro sends a notification to the task to
758
* remove it from the Blocked state. xMessageBufferReceiveCompletedFromISR()
759
* does the same thing. It is provided to enable application writers to
760
* implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT
761
* ANY OTHER TIME.
762
*
763
* See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
764
* additional information.
765
*
766
* @param xStreamBuffer The handle of the stream buffer from which data was
767
* read.
768
*
769
* @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be
770
* initialised to pdFALSE before it is passed into
771
* xMessageBufferReceiveCompletedFromISR(). If calling
772
* xMessageBufferReceiveCompletedFromISR() removes a task from the Blocked state,
773
* and the task has a priority above the priority of the currently running task,
774
* then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a
775
* context switch should be performed before exiting the ISR.
776
*
777
* @return If a task was removed from the Blocked state then pdTRUE is returned.
778
* Otherwise pdFALSE is returned.
779
*
780
* \defgroup xMessageBufferReceiveCompletedFromISR xMessageBufferReceiveCompletedFromISR
781
* \ingroup StreamBufferManagement
782
*/
783
#define xMessageBufferReceiveCompletedFromISR(xMessageBuffer, pxHigherPriorityTaskWoken) \
784
xStreamBufferReceiveCompletedFromISR((StreamBufferHandle_t)xMessageBuffer, pxHigherPriorityTaskWoken)
785
786
#if defined(__cplusplus)
787
}
/* extern "C" */
788
#endif
789
790
#endif
/* !defined( FREERTOS_MESSAGE_BUFFER_H ) */
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8