GM6000 Digital Heater Controller Branch: main
SDX-1330
stream_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 * Stream buffers are used to send a continuous stream of data from one task or
31 * interrupt to another. Their implementation is light weight, making them
32 * particularly suited for interrupt to task and core to core communication
33 * scenarios.
34 *
35 * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
36 * implementation (so also the message buffer implementation, as message buffers
37 * are built on top of stream buffers) assumes there is only one task or
38 * interrupt that will write to the buffer (the writer), and only one task or
39 * interrupt that will read from the buffer (the reader). It is safe for the
40 * writer and reader to be different tasks or interrupts, but, unlike other
41 * FreeRTOS objects, it is not safe to have multiple different writers or
42 * multiple different readers. If there are to be multiple different writers
43 * then the application writer must place each call to a writing API function
44 * (such as xStreamBufferSend()) inside a critical section and set the send
45 * block time to 0. Likewise, if there are to be multiple different readers
46 * then the application writer must place each call to a reading API function
47 * (such as xStreamBufferRead()) inside a critical section section and set the
48 * receive block time to 0.
49 *
50 */
51
52#ifndef STREAM_BUFFER_H
53#define STREAM_BUFFER_H
54
55/**
56 * Type by which stream buffers are referenced. For example, a call to
57 * xStreamBufferCreate() returns an StreamBufferHandle_t variable that can
58 * then be used as a parameter to xStreamBufferSend(), xStreamBufferReceive(),
59 * etc.
60 */
61typedef void *StreamBufferHandle_t;
62
63/**
64 * message_buffer.h
65 *
66<pre>
67StreamBufferHandle_t xStreamBufferCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes );
68</pre>
69 *
70 * Creates a new stream buffer using dynamically allocated memory. See
71 * xStreamBufferCreateStatic() for a version that uses statically allocated
72 * memory (memory that is allocated at compile time).
73 *
74 * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in
75 * FreeRTOSConfig.h for xStreamBufferCreate() to be available.
76 *
77 * @param xBufferSizeBytes The total number of bytes the stream buffer will be
78 * able to hold at any one time.
79 *
80 * @param xTriggerLevelBytes The number of bytes that must be in the stream
81 * buffer before a task that is blocked on the stream buffer to wait for data is
82 * moved out of the blocked state. For example, if a task is blocked on a read
83 * of an empty stream buffer that has a trigger level of 1 then the task will be
84 * unblocked when a single byte is written to the buffer or the task's block
85 * time expires. As another example, if a task is blocked on a read of an empty
86 * stream buffer that has a trigger level of 10 then the task will not be
87 * unblocked until the stream buffer contains at least 10 bytes or the task's
88 * block time expires. If a reading task's block time expires before the
89 * trigger level is reached then the task will still receive however many bytes
90 * are actually available. Setting a trigger level of 0 will result in a
91 * trigger level of 1 being used. It is not valid to specify a trigger level
92 * that is greater than the buffer size.
93 *
94 * @return If NULL is returned, then the stream buffer cannot be created
95 * because there is insufficient heap memory available for FreeRTOS to allocate
96 * the stream buffer data structures and storage area. A non-NULL value being
97 * returned indicates that the stream buffer has been created successfully -
98 * the returned value should be stored as the handle to the created stream
99 * buffer.
100 *
101 * Example use:
102<pre>
103
104void vAFunction( void )
105{
106StreamBufferHandle_t xStreamBuffer;
107const size_t xStreamBufferSizeBytes = 100, xTriggerLevel = 10;
108
109 // Create a stream buffer that can hold 100 bytes. The memory used to hold
110 // both the stream buffer structure and the data in the stream buffer is
111 // allocated dynamically.
112 xStreamBuffer = xStreamBufferCreate( xStreamBufferSizeBytes, xTriggerLevel );
113
114 if( xStreamBuffer == NULL )
115 {
116 // There was not enough heap memory space available to create the
117 // stream buffer.
118 }
119 else
120 {
121 // The stream buffer was created successfully and can now be used.
122 }
123}
124</pre>
125 * \defgroup xStreamBufferCreate xStreamBufferCreate
126 * \ingroup StreamBufferManagement
127 */
128#define xStreamBufferCreate(xBufferSizeBytes, xTriggerLevelBytes) \
129 xStreamBufferGenericCreate(xBufferSizeBytes, xTriggerLevelBytes, pdFALSE)
130
131/**
132 * stream_buffer.h
133 *
134<pre>
135StreamBufferHandle_t xStreamBufferCreateStatic( size_t xBufferSizeBytes,
136 size_t xTriggerLevelBytes,
137 uint8_t *pucStreamBufferStorageArea,
138 StaticStreamBuffer_t *pxStaticStreamBuffer );
139</pre>
140 * Creates a new stream buffer using statically allocated memory. See
141 * xStreamBufferCreate() for a version that uses dynamically allocated memory.
142 *
143 * configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for
144 * xStreamBufferCreateStatic() to be available.
145 *
146 * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the
147 * pucStreamBufferStorageArea parameter.
148 *
149 * @param xTriggerLevelBytes The number of bytes that must be in the stream
150 * buffer before a task that is blocked on the stream buffer to wait for data is
151 * moved out of the blocked state. For example, if a task is blocked on a read
152 * of an empty stream buffer that has a trigger level of 1 then the task will be
153 * unblocked when a single byte is written to the buffer or the task's block
154 * time expires. As another example, if a task is blocked on a read of an empty
155 * stream buffer that has a trigger level of 10 then the task will not be
156 * unblocked until the stream buffer contains at least 10 bytes or the task's
157 * block time expires. If a reading task's block time expires before the
158 * trigger level is reached then the task will still receive however many bytes
159 * are actually available. Setting a trigger level of 0 will result in a
160 * trigger level of 1 being used. It is not valid to specify a trigger level
161 * that is greater than the buffer size.
162 *
163 * @param pucStreamBufferStorageArea Must point to a uint8_t array that is at
164 * least xBufferSizeBytes + 1 big. This is the array to which streams are
165 * copied when they are written to the stream buffer.
166 *
167 * @param pxStaticStreamBuffer Must point to a variable of type
168 * StaticStreamBuffer_t, which will be used to hold the stream buffer's data
169 * structure.
170 *
171 * @return If the stream buffer is created successfully then a handle to the
172 * created stream buffer is returned. If either pucStreamBufferStorageArea or
173 * pxStaticstreamBuffer are NULL then NULL is returned.
174 *
175 * Example use:
176<pre>
177
178// Used to dimension the array used to hold the streams. The available space
179// will actually be one less than this, so 999.
180#define STORAGE_SIZE_BYTES 1000
181
182// Defines the memory that will actually hold the streams within the stream
183// buffer.
184static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ];
185
186// The variable used to hold the stream buffer structure.
187StaticStreamBuffer_t xStreamBufferStruct;
188
189void MyFunction( void )
190{
191StreamBufferHandle_t xStreamBuffer;
192const size_t xTriggerLevel = 1;
193
194 xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucBufferStorage ),
195 xTriggerLevel,
196 ucBufferStorage,
197 &xStreamBufferStruct );
198
199 // As neither the pucStreamBufferStorageArea or pxStaticStreamBuffer
200 // parameters were NULL, xStreamBuffer will not be NULL, and can be used to
201 // reference the created stream buffer in other stream buffer API calls.
202
203 // Other code that uses the stream buffer can go here.
204}
205
206</pre>
207 * \defgroup xStreamBufferCreateStatic xStreamBufferCreateStatic
208 * \ingroup StreamBufferManagement
209 */
210#define xStreamBufferCreateStatic( \
211 xBufferSizeBytes, xTriggerLevelBytes, pucStreamBufferStorageArea, pxStaticStreamBuffer) \
212 xStreamBufferGenericCreateStatic( \
213 xBufferSizeBytes, xTriggerLevelBytes, pdFALSE, pucStreamBufferStorageArea, pxStaticStreamBuffer)
214
215/**
216 * stream_buffer.h
217 *
218<pre>
219size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
220 const void *pvTxData,
221 size_t xDataLengthBytes,
222 TickType_t xTicksToWait );
223<pre>
224 *
225 * Sends bytes to a stream buffer. The bytes are copied into the stream buffer.
226 *
227 * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
228 * implementation (so also the message buffer implementation, as message buffers
229 * are built on top of stream buffers) assumes there is only one task or
230 * interrupt that will write to the buffer (the writer), and only one task or
231 * interrupt that will read from the buffer (the reader). It is safe for the
232 * writer and reader to be different tasks or interrupts, but, unlike other
233 * FreeRTOS objects, it is not safe to have multiple different writers or
234 * multiple different readers. If there are to be multiple different writers
235 * then the application writer must place each call to a writing API function
236 * (such as xStreamBufferSend()) inside a critical section and set the send
237 * block time to 0. Likewise, if there are to be multiple different readers
238 * then the application writer must place each call to a reading API function
239 * (such as xStreamBufferRead()) inside a critical section and set the receive
240 * block time to 0.
241 *
242 * Use xStreamBufferSend() to write to a stream buffer from a task. Use
243 * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
244 * service routine (ISR).
245 *
246 * @param xStreamBuffer The handle of the stream buffer to which a stream is
247 * being sent.
248 *
249 * @param pvTxData A pointer to the buffer that holds the bytes to be copied
250 * into the stream buffer.
251 *
252 * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData
253 * into the stream buffer.
254 *
255 * @param xTicksToWait The maximum amount of time the task should remain in the
256 * Blocked state to wait for enough space to become available in the stream
257 * buffer, should the stream buffer contain too little space to hold the
258 * another xDataLengthBytes bytes. The block time is specified in tick periods,
259 * so the absolute time it represents is dependent on the tick frequency. The
260 * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds
261 * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will
262 * cause the task to wait indefinitely (without timing out), provided
263 * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. If a task times out
264 * before it can write all xDataLengthBytes into the buffer it will still write
265 * as many bytes as possible. A task does not use any CPU time when it is in
266 * the blocked state.
267 *
268 * @return The number of bytes written to the stream buffer. If a task times
269 * out before it can write all xDataLengthBytes into the buffer it will still
270 * write as many bytes as possible.
271 *
272 * Example use:
273<pre>
274void vAFunction( StreamBufferHandle_t xStreamBuffer )
275{
276size_t xBytesSent;
277uint8_t ucArrayToSend[] = { 0, 1, 2, 3 };
278char *pcStringToSend = "String to send";
279const TickType_t x100ms = pdMS_TO_TICKS( 100 );
280
281 // Send an array to the stream buffer, blocking for a maximum of 100ms to
282 // wait for enough space to be available in the stream buffer.
283 xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms );
284
285 if( xBytesSent != sizeof( ucArrayToSend ) )
286 {
287 // The call to xStreamBufferSend() times out before there was enough
288 // space in the buffer for the data to be written, but it did
289 // successfully write xBytesSent bytes.
290 }
291
292 // Send the string to the stream buffer. Return immediately if there is not
293 // enough space in the buffer.
294 xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 );
295
296 if( xBytesSent != strlen( pcStringToSend ) )
297 {
298 // The entire string could not be added to the stream buffer because
299 // there was not enough free space in the buffer, but xBytesSent bytes
300 // were sent. Could try again to send the remaining bytes.
301 }
302}
303</pre>
304 * \defgroup xStreamBufferSend xStreamBufferSend
305 * \ingroup StreamBufferManagement
306 */
307size_t xStreamBufferSend(StreamBufferHandle_t xStreamBuffer, const void *pvTxData, size_t xDataLengthBytes,
308 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
309
310/**
311 * stream_buffer.h
312 *
313<pre>
314size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
315 const void *pvTxData,
316 size_t xDataLengthBytes,
317 BaseType_t *pxHigherPriorityTaskWoken );
318<pre>
319 *
320 * Interrupt safe version of the API function that sends a stream of bytes to
321 * the stream 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 xStreamBufferSend()) 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 xStreamBufferRead()) inside a critical section and set the receive
336 * block time to 0.
337 *
338 * Use xStreamBufferSend() to write to a stream buffer from a task. Use
339 * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt
340 * service routine (ISR).
341 *
342 * @param xStreamBuffer The handle of the stream buffer to which a stream is
343 * being sent.
344 *
345 * @param pvTxData A pointer to the data that is to be copied into the stream
346 * buffer.
347 *
348 * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData
349 * into the stream buffer.
350 *
351 * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will
352 * have a task blocked on it waiting for data. Calling
353 * xStreamBufferSendFromISR() can make data available, and so cause a task that
354 * was waiting for data to leave the Blocked state. If calling
355 * xStreamBufferSendFromISR() causes a task to leave the Blocked state, and the
356 * unblocked task has a priority higher than the currently executing task (the
357 * task that was interrupted), then, internally, xStreamBufferSendFromISR()
358 * will set *pxHigherPriorityTaskWoken to pdTRUE. If
359 * xStreamBufferSendFromISR() sets this value to pdTRUE, then normally a
360 * context switch should be performed before the interrupt is exited. This will
361 * ensure that the interrupt returns directly to the highest priority Ready
362 * state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it
363 * is passed into the function. See the example code below for an example.
364 *
365 * @return The number of bytes actually written to the stream buffer, which will
366 * be less than xDataLengthBytes if the stream buffer didn't have enough free
367 * space for all the bytes to be written.
368 *
369 * Example use:
370<pre>
371// A stream buffer that has already been created.
372StreamBufferHandle_t xStreamBuffer;
373
374void vAnInterruptServiceRoutine( void )
375{
376size_t xBytesSent;
377char *pcStringToSend = "String to send";
378BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
379
380 // Attempt to send the string to the stream buffer.
381 xBytesSent = xStreamBufferSendFromISR( xStreamBuffer,
382 ( void * ) pcStringToSend,
383 strlen( pcStringToSend ),
384 &xHigherPriorityTaskWoken );
385
386 if( xBytesSent != strlen( pcStringToSend ) )
387 {
388 // There was not enough free space in the stream buffer for the entire
389 // string to be written, ut xBytesSent bytes were written.
390 }
391
392 // If xHigherPriorityTaskWoken was set to pdTRUE inside
393 // xStreamBufferSendFromISR() then a task that has a priority above the
394 // priority of the currently executing task was unblocked and a context
395 // switch should be performed to ensure the ISR returns to the unblocked
396 // task. In most FreeRTOS ports this is done by simply passing
397 // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
398 // variables value, and perform the context switch if necessary. Check the
399 // documentation for the port in use for port specific instructions.
400 taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
401}
402</pre>
403 * \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR
404 * \ingroup StreamBufferManagement
405 */
406size_t xStreamBufferSendFromISR(StreamBufferHandle_t xStreamBuffer, const void *pvTxData, size_t xDataLengthBytes,
407 BaseType_t *const pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
408
409/**
410 * stream_buffer.h
411 *
412<pre>
413size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
414 void *pvRxData,
415 size_t xBufferLengthBytes,
416 TickType_t xTicksToWait );
417</pre>
418 *
419 * Receives bytes from a stream buffer.
420 *
421 * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer
422 * implementation (so also the message buffer implementation, as message buffers
423 * are built on top of stream buffers) assumes there is only one task or
424 * interrupt that will write to the buffer (the writer), and only one task or
425 * interrupt that will read from the buffer (the reader). It is safe for the
426 * writer and reader to be different tasks or interrupts, but, unlike other
427 * FreeRTOS objects, it is not safe to have multiple different writers or
428 * multiple different readers. If there are to be multiple different writers
429 * then the application writer must place each call to a writing API function
430 * (such as xStreamBufferSend()) inside a critical section and set the send
431 * block time to 0. Likewise, if there are to be multiple different readers
432 * then the application writer must place each call to a reading API function
433 * (such as xStreamBufferRead()) inside a critical section and set the receive
434 * block time to 0.
435 *
436 * Use xStreamBufferReceive() to read from a stream buffer from a task. Use
437 * xStreamBufferReceiveFromISR() to read from a stream buffer from an
438 * interrupt service routine (ISR).
439 *
440 * @param xStreamBuffer The handle of the stream buffer from which bytes are to
441 * be received.
442 *
443 * @param pvRxData A pointer to the buffer into which the received bytes will be
444 * copied.
445 *
446 * @param xBufferLengthBytes The length of the buffer pointed to by the
447 * pvRxData parameter. This sets the maximum number of bytes to receive in one
448 * call. xStreamBufferReceive will return as many bytes as possible up to a
449 * maximum set by xBufferLengthBytes.
450 *
451 * @param xTicksToWait The maximum amount of time the task should remain in the
452 * Blocked state to wait for data to become available if the stream buffer is
453 * empty. xStreamBufferReceive() will return immediately if xTicksToWait is
454 * zero. The block time is specified in tick periods, so the absolute time it
455 * represents is dependent on the tick frequency. The macro pdMS_TO_TICKS() can
456 * be used to convert a time specified in milliseconds into a time specified in
457 * ticks. Setting xTicksToWait to portMAX_DELAY will cause the task to wait
458 * indefinitely (without timing out), provided INCLUDE_vTaskSuspend is set to 1
459 * in FreeRTOSConfig.h. A task does not use any CPU time when it is in the
460 * Blocked state.
461 *
462 * @return The number of bytes actually read from the stream buffer, which will
463 * be less than xBufferLengthBytes if the call to xStreamBufferReceive() timed
464 * out before xBufferLengthBytes were available.
465 *
466 * Example use:
467<pre>
468void vAFunction( StreamBuffer_t xStreamBuffer )
469{
470uint8_t ucRxData[ 20 ];
471size_t xReceivedBytes;
472const TickType_t xBlockTime = pdMS_TO_TICKS( 20 );
473
474 // Receive up to another sizeof( ucRxData ) bytes from the stream buffer.
475 // Wait in the Blocked state (so not using any CPU processing time) for a
476 // maximum of 100ms for the full sizeof( ucRxData ) number of bytes to be
477 // available.
478 xReceivedBytes = xStreamBufferReceive( xStreamBuffer,
479 ( void * ) ucRxData,
480 sizeof( ucRxData ),
481 xBlockTime );
482
483 if( xReceivedBytes > 0 )
484 {
485 // A ucRxData contains another xRecievedBytes bytes of data, which can
486 // be processed here....
487 }
488}
489</pre>
490 * \defgroup xStreamBufferReceive xStreamBufferReceive
491 * \ingroup StreamBufferManagement
492 */
493size_t xStreamBufferReceive(StreamBufferHandle_t xStreamBuffer, void *pvRxData, size_t xBufferLengthBytes,
494 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
495
496/**
497 * stream_buffer.h
498 *
499<pre>
500size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer,
501 void *pvRxData,
502 size_t xBufferLengthBytes,
503 BaseType_t *pxHigherPriorityTaskWoken );
504</pre>
505 *
506 * An interrupt safe version of the API function that receives bytes from a
507 * stream buffer.
508 *
509 * Use xStreamBufferReceive() to read bytes from a stream buffer from a task.
510 * Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an
511 * interrupt service routine (ISR).
512 *
513 * @param xStreamBuffer The handle of the stream buffer from which a stream
514 * is being received.
515 *
516 * @param pvRxData A pointer to the buffer into which the received bytes are
517 * copied.
518 *
519 * @param xBufferLengthBytes The length of the buffer pointed to by the
520 * pvRxData parameter. This sets the maximum number of bytes to receive in one
521 * call. xStreamBufferReceive will return as many bytes as possible up to a
522 * maximum set by xBufferLengthBytes.
523 *
524 * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will
525 * have a task blocked on it waiting for space to become available. Calling
526 * xStreamBufferReceiveFromISR() can make space available, and so cause a task
527 * that is waiting for space to leave the Blocked state. If calling
528 * xStreamBufferReceiveFromISR() causes a task to leave the Blocked state, and
529 * the unblocked task has a priority higher than the currently executing task
530 * (the task that was interrupted), then, internally,
531 * xStreamBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE.
532 * If xStreamBufferReceiveFromISR() sets this value to pdTRUE, then normally a
533 * context switch should be performed before the interrupt is exited. That will
534 * ensure the interrupt returns directly to the highest priority Ready state
535 * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is
536 * passed into the function. See the code example below for an example.
537 *
538 * @return The number of bytes read from the stream buffer, if any.
539 *
540 * Example use:
541<pre>
542// A stream buffer that has already been created.
543StreamBuffer_t xStreamBuffer;
544
545void vAnInterruptServiceRoutine( void )
546{
547uint8_t ucRxData[ 20 ];
548size_t xReceivedBytes;
549BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE.
550
551 // Receive the next stream from the stream buffer.
552 xReceivedBytes = xStreamBufferReceiveFromISR( xStreamBuffer,
553 ( void * ) ucRxData,
554 sizeof( ucRxData ),
555 &xHigherPriorityTaskWoken );
556
557 if( xReceivedBytes > 0 )
558 {
559 // ucRxData contains xReceivedBytes read from the stream buffer.
560 // Process the stream here....
561 }
562
563 // If xHigherPriorityTaskWoken was set to pdTRUE inside
564 // xStreamBufferReceiveFromISR() then a task that has a priority above the
565 // priority of the currently executing task was unblocked and a context
566 // switch should be performed to ensure the ISR returns to the unblocked
567 // task. In most FreeRTOS ports this is done by simply passing
568 // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the
569 // variables value, and perform the context switch if necessary. Check the
570 // documentation for the port in use for port specific instructions.
571 taskYIELD_FROM_ISR( xHigherPriorityTaskWoken );
572}
573</pre>
574 * \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR
575 * \ingroup StreamBufferManagement
576 */
577size_t xStreamBufferReceiveFromISR(StreamBufferHandle_t xStreamBuffer, void *pvRxData, size_t xBufferLengthBytes,
578 BaseType_t *const pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
579
580/**
581 * stream_buffer.h
582 *
583<pre>
584void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer );
585</pre>
586 *
587 * Deletes a stream buffer that was previously created using a call to
588 * xStreamBufferCreate() or xStreamBufferCreateStatic(). If the stream
589 * buffer was created using dynamic memory (that is, by xStreamBufferCreate()),
590 * then the allocated memory is freed.
591 *
592 * A stream buffer handle must not be used after the stream buffer has been
593 * deleted.
594 *
595 * @param xStreamBuffer The handle of the stream buffer to be deleted.
596 *
597 * \defgroup vStreamBufferDelete vStreamBufferDelete
598 * \ingroup StreamBufferManagement
599 */
600void vStreamBufferDelete(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
601
602/**
603 * stream_buffer.h
604 *
605<pre>
606BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer );
607</pre>
608 *
609 * Queries a stream buffer to see if it is full. A stream buffer is full if it
610 * does not have any free space, and therefore cannot accept any more data.
611 *
612 * @param xStreamBuffer The handle of the stream buffer being queried.
613 *
614 * @return If the stream buffer is full then pdTRUE is returned. Otherwise
615 * pdFALSE is returned.
616 *
617 * \defgroup xStreamBufferIsFull xStreamBufferIsFull
618 * \ingroup StreamBufferManagement
619 */
620BaseType_t xStreamBufferIsFull(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
621
622/**
623 * stream_buffer.h
624 *
625<pre>
626BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer );
627</pre>
628 *
629 * Queries a stream buffer to see if it is empty. A stream buffer is empty if
630 * it does not contain any data.
631 *
632 * @param xStreamBuffer The handle of the stream buffer being queried.
633 *
634 * @return If the stream buffer is empty then pdTRUE is returned. Otherwise
635 * pdFALSE is returned.
636 *
637 * \defgroup xStreamBufferIsEmpty xStreamBufferIsEmpty
638 * \ingroup StreamBufferManagement
639 */
640BaseType_t xStreamBufferIsEmpty(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
641
642/**
643 * stream_buffer.h
644 *
645<pre>
646BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer );
647</pre>
648 *
649 * Resets a stream buffer to its initial, empty, state. Any data that was in
650 * the stream buffer is discarded. A stream buffer can only be reset if there
651 * are no tasks blocked waiting to either send to or receive from the stream
652 * buffer.
653 *
654 * @param xStreamBuffer The handle of the stream buffer being reset.
655 *
656 * @return If the stream buffer is reset then pdPASS is returned. If there was
657 * a task blocked waiting to send to or read from the stream buffer then the
658 * stream buffer is not reset and pdFAIL is returned.
659 *
660 * \defgroup xStreamBufferReset xStreamBufferReset
661 * \ingroup StreamBufferManagement
662 */
663BaseType_t xStreamBufferReset(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
664
665/**
666 * stream_buffer.h
667 *
668<pre>
669size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer );
670</pre>
671 *
672 * Queries a stream buffer to see how much free space it contains, which is
673 * equal to the amount of data that can be sent to the stream buffer before it
674 * is full.
675 *
676 * @param xStreamBuffer The handle of the stream buffer being queried.
677 *
678 * @return The number of bytes that can be written to the stream buffer before
679 * the stream buffer would be full.
680 *
681 * \defgroup xStreamBufferSpacesAvailable xStreamBufferSpacesAvailable
682 * \ingroup StreamBufferManagement
683 */
684size_t xStreamBufferSpacesAvailable(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
685
686/**
687 * stream_buffer.h
688 *
689<pre>
690size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer );
691</pre>
692 *
693 * Queries a stream buffer to see how much data it contains, which is equal to
694 * the number of bytes that can be read from the stream buffer before the stream
695 * buffer would be empty.
696 *
697 * @param xStreamBuffer The handle of the stream buffer being queried.
698 *
699 * @return The number of bytes that can be read from the stream buffer before
700 * the stream buffer would be empty.
701 *
702 * \defgroup xStreamBufferBytesAvailable xStreamBufferBytesAvailable
703 * \ingroup StreamBufferManagement
704 */
705size_t xStreamBufferBytesAvailable(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
706
707/**
708 * stream_buffer.h
709 *
710<pre>
711BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel );
712</pre>
713 *
714 * A stream buffer's trigger level is the number of bytes that must be in the
715 * stream buffer before a task that is blocked on the stream buffer to
716 * wait for data is moved out of the blocked state. For example, if a task is
717 * blocked on a read of an empty stream buffer that has a trigger level of 1
718 * then the task will be unblocked when a single byte is written to the buffer
719 * or the task's block time expires. As another example, if a task is blocked
720 * on a read of an empty stream buffer that has a trigger level of 10 then the
721 * task will not be unblocked until the stream buffer contains at least 10 bytes
722 * or the task's block time expires. If a reading task's block time expires
723 * before the trigger level is reached then the task will still receive however
724 * many bytes are actually available. Setting a trigger level of 0 will result
725 * in a trigger level of 1 being used. It is not valid to specify a trigger
726 * level that is greater than the buffer size.
727 *
728 * A trigger level is set when the stream buffer is created, and can be modified
729 * using xStreamBufferSetTriggerLevel().
730 *
731 * @param xStreamBuffer The handle of the stream buffer being updated.
732 *
733 * @param xTriggerLevel The new trigger level for the stream buffer.
734 *
735 * @return If xTriggerLevel was less than or equal to the stream buffer's length
736 * then the trigger level will be updated and pdTRUE is returned. Otherwise
737 * pdFALSE is returned.
738 *
739 * \defgroup xStreamBufferSetTriggerLevel xStreamBufferSetTriggerLevel
740 * \ingroup StreamBufferManagement
741 */
742BaseType_t xStreamBufferSetTriggerLevel(StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel) PRIVILEGED_FUNCTION;
743
744/**
745 * stream_buffer.h
746 *
747<pre>
748BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken
749);
750</pre>
751 *
752 * For advanced users only.
753 *
754 * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when
755 * data is sent to a message buffer or stream buffer. If there was a task that
756 * was blocked on the message or stream buffer waiting for data to arrive then
757 * the sbSEND_COMPLETED() macro sends a notification to the task to remove it
758 * from the Blocked state. xStreamBufferSendCompletedFromISR() does the same
759 * thing. It is provided to enable application writers to implement their own
760 * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME.
761 *
762 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
763 * additional information.
764 *
765 * @param xStreamBuffer The handle of the stream buffer to which data was
766 * written.
767 *
768 * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be
769 * initialised to pdFALSE before it is passed into
770 * xStreamBufferSendCompletedFromISR(). If calling
771 * xStreamBufferSendCompletedFromISR() removes a task from the Blocked state,
772 * and the task has a priority above the priority of the currently running task,
773 * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a
774 * context switch should be performed before exiting the ISR.
775 *
776 * @return If a task was removed from the Blocked state then pdTRUE is returned.
777 * Otherwise pdFALSE is returned.
778 *
779 * \defgroup xStreamBufferSendCompletedFromISR xStreamBufferSendCompletedFromISR
780 * \ingroup StreamBufferManagement
781 */
782BaseType_t xStreamBufferSendCompletedFromISR(StreamBufferHandle_t xStreamBuffer,
783 BaseType_t * pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
784
785/**
786 * stream_buffer.h
787 *
788<pre>
789BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t
790*pxHigherPriorityTaskWoken );
791</pre>
792 *
793 * For advanced users only.
794 *
795 * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when
796 * data is read out of a message buffer or stream buffer. If there was a task
797 * that was blocked on the message or stream buffer waiting for data to arrive
798 * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to
799 * remove it from the Blocked state. xStreamBufferReceiveCompletedFromISR()
800 * does the same thing. It is provided to enable application writers to
801 * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT
802 * ANY OTHER TIME.
803 *
804 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
805 * additional information.
806 *
807 * @param xStreamBuffer The handle of the stream buffer from which data was
808 * read.
809 *
810 * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be
811 * initialised to pdFALSE before it is passed into
812 * xStreamBufferReceiveCompletedFromISR(). If calling
813 * xStreamBufferReceiveCompletedFromISR() removes a task from the Blocked state,
814 * and the task has a priority above the priority of the currently running task,
815 * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a
816 * context switch should be performed before exiting the ISR.
817 *
818 * @return If a task was removed from the Blocked state then pdTRUE is returned.
819 * Otherwise pdFALSE is returned.
820 *
821 * \defgroup xStreamBufferReceiveCompletedFromISR xStreamBufferReceiveCompletedFromISR
822 * \ingroup StreamBufferManagement
823 */
824BaseType_t xStreamBufferReceiveCompletedFromISR(StreamBufferHandle_t xStreamBuffer,
825 BaseType_t * pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
826
827/* Functions below here are not part of the public API. */
828StreamBufferHandle_t xStreamBufferGenericCreate(size_t xBufferSizeBytes, size_t xTriggerLevelBytes,
829 BaseType_t xIsMessageBuffer) PRIVILEGED_FUNCTION;
830
831StreamBufferHandle_t
832xStreamBufferGenericCreateStatic(size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer,
833 uint8_t *const pucStreamBufferStorageArea,
834 StaticStreamBuffer_t *const pxStaticStreamBuffer) PRIVILEGED_FUNCTION;
835
836#if (configUSE_TRACE_FACILITY == 1)
837void vStreamBufferSetStreamBufferNumber(StreamBufferHandle_t xStreamBuffer,
838 UBaseType_t uxStreamBufferNumber) PRIVILEGED_FUNCTION;
839UBaseType_t uxStreamBufferGetStreamBufferNumber(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
840uint8_t ucStreamBufferGetStreamBufferType(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION;
841#endif
842
843#if defined(__cplusplus)
844extern "C" {
845#endif
846
847#endif /* !defined( STREAM_BUFFER_H ) */
Definition FreeRTOS.h:1144