FreeRTOS
+
0
/1 examples
SourceVu will show references to
xSemaphoreCreateMutexWithCaps()
from the following samples and libraries:
ESP-IDF
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
xSemaphoreCreateMutexWithCaps()
xSemaphoreCreateMutexWithCaps() function
Creates a mutex semaphore with specific memory capabilities This function is similar to xSemaphoreCreateMutex(), except that it allows the memory allocated for the mutex semaphore to have specific capabilities (e.g., MALLOC_CAP_INTERNAL).
Syntax
Show:
Summary
Declaration
from
idf_additions.h:462
static
inline
SemaphoreHandle_t
xSemaphoreCreateMutexWithCaps
(
UBaseType_t
uxMemoryCaps
)
;
Arguments
Argument
Description
uxMemoryCaps
Memory capabilities of the mutex semaphore's memory (see esp_heap_caps.h)
Return value
Handle to the created mutex semaphore or NULL on failure.
Notes
A mutex semaphore created using this function must only be deleted using vSemaphoreDeleteWithCaps()
Examples
xSemaphoreCreateMutexWithCaps()
is referenced by 1 libraries and example projects:
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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