Select one of the symbols to view example projects that use it.
 
Outline
#include "FreeRTOS.h"
#include "queue.h"
#include "semphr.h"
xQueueGenericReceive(QueueHandle_t, void *const, TickType_t, const BaseType_t)
vTaskDelayUntil(TickType_t *const, const TickType_t)
ulTaskNotifyTake(BaseType_t, TickType_t)
xTaskNotifyWait(uint32_t, uint32_t, uint32_t *, TickType_t)
Files
loading...
SourceVuESP-IDF Framework and ExamplesFreeRTOSesp_additions/freertos_compatibility.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /* * FreeRTOS has changed some functions in to macros (and vice-versa) over multiple * releases. This is not a breaking API change for source code, but may cause issues * for pre-compiled libraries that call these removed APIs. * * This file maintains these legacy APIs until the next ESP-IDF major release. * * Todo: Clean up for ESP-IDF v6.0 (IDF-8144) *//* ... */ #include "FreeRTOS.h" #include "queue.h" #include "semphr.h" BaseType_t xQueueGenericReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait, const BaseType_t xPeek ) { if( xPeek == pdTRUE ) { return xQueuePeek( xQueue, pvBuffer, xTicksToWait ); }{...} if( pvBuffer == NULL ) { return xQueueSemaphoreTake( xQueue, xTicksToWait ); }{...} return xQueueReceive( xQueue, pvBuffer, xTicksToWait ); }{ ... } /* * vTaskDelayUntil() was deprecated into a macro and replaced by xTaskDelayUntil(). * This is added for pre-compiled libraries that depend on ulTaskNotifyTake() * being a function. * * Todo: Remove this in v6.0 (IDF-3851) *//* ... */ #undef vTaskDelayUntil void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) { xTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement ); }{ ... } /* * ulTaskNotifyTake() was turned into a macro. This is added for pre-compiled * libraries that depend on ulTaskNotifyTake() being a function. * * Todo: Remove this in v6.0 (IDF-3851) *//* ... */ #undef ulTaskNotifyTake uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) { return ulTaskGenericNotifyTake( tskDEFAULT_INDEX_TO_NOTIFY, xClearCountOnExit, xTicksToWait ); }{ ... } /* * xTaskNotifyWait() was turned into a macro. This is added for pre-compiled * libraries that depend on xTaskNotifyWait() being a function. * * Todo: Remove this in v6.0 (IDF-3851) *//* ... */ #undef xTaskNotifyWait BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t * pulNotificationValue, TickType_t xTicksToWait ) { return xTaskGenericNotifyWait( tskDEFAULT_INDEX_TO_NOTIFY, ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ); }{ ... }
Details