FreeRTOS
xSemaphoreCreateGenericWithCaps()
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FreeRTOS
xSemaphoreCreateGenericWithCaps()
xSemaphoreCreateGenericWithCaps() function
@cond
Syntax
Show:
Summary
Declaration
Definition
from
idf_additions.h:392
SemaphoreHandle_t
xSemaphoreCreateGenericWithCaps
(
UBaseType_t
uxMaxCount
,
UBaseType_t
uxInitialCount
,
const
uint8_t
ucQueueType
,
UBaseType_t
uxMemoryCaps
)
;
Implemented in
idf_additions.c:266
Arguments
Argument
uxMaxCount
uxInitialCount
ucQueueType
uxMemoryCaps
Examples
References
from
examples
Code
Location
Referrer
SemaphoreHandle_t
xSemaphoreCreateGenericWithCaps
(
UBaseType_t
uxMaxCount
,
idf_additions.c:266
SemaphoreHandle_t
xSemaphoreCreateGenericWithCaps
(
UBaseType_t
uxMaxCount
,
idf_additions.h:392
return
xSemaphoreCreateGenericWithCaps
(
0
,
0
,
queueQUEUE_TYPE_BINARY_SEMAPHORE
,
uxMemoryCaps
)
;
idf_additions.h:415
xSemaphoreCreateBinaryWithCaps()
return
xSemaphoreCreateGenericWithCaps
(
uxMaxCount
,
uxInitialCount
,
queueQUEUE_TYPE_COUNTING_SEMAPHORE
,
uxMemoryCaps
)
;
idf_additions.h:442
xSemaphoreCreateCountingWithCaps()
return
xSemaphoreCreateGenericWithCaps
(
0
,
0
,
queueQUEUE_TYPE_MUTEX
,
uxMemoryCaps
)
;
idf_additions.h:464
xSemaphoreCreateMutexWithCaps()
return
xSemaphoreCreateGenericWithCaps
(
0
,
0
,
queueQUEUE_TYPE_RECURSIVE_MUTEX
,
uxMemoryCaps
)
;
idf_additions.h:486
xSemaphoreCreateRecursiveMutexWithCaps()
Call Tree
from
examples
xSemaphoreCreateGenericWithCaps()
is called by 4 functions and calls 5 functions:
xSemaphoreCreateBinaryWithCaps()
xSemaphoreCreateCountingWithCaps()
xSemaphoreCreateMutexWithCaps()
xSemaphoreCreateRecursiveMutexWithCaps()
All items filtered out
xSemaphoreCreateGenericWithCaps()
heap_caps_malloc()
heap_caps_free()
xQueueCreateMutexStatic()
xQueueCreateCountingSemaphoreStatic()
xQueueGenericCreateStatic()
All items filtered out
Data Use
from
examples
xSemaphoreCreateGenericWithCaps()
:
All items filtered out
xSemaphoreCreateGenericWithCaps()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out