ESP-IDF
RINGBUF_TYPE_NOSPLIT
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
RINGBUF_TYPE_NOSPLIT
RINGBUF_TYPE_NOSPLIT value
No-split buffers will only store an item in contiguous memory and will never split an item. Each item requires an 8 byte overhead for a header and will always internally occupy a 32-bit aligned size of space.
Syntax
Show:
Summary
Declaration
from
ringbuf.h:29
RINGBUF_TYPE_NOSPLIT
=
0
;
Examples
References
from
examples
Code
Location
Referrer
RINGBUF_TYPE_NOSPLIT
=
0
,
ringbuf.h:29
if
(
xBufferType
==
RINGBUF_TYPE_NOSPLIT
)
{
ringbuf.c:224
prvInitializeNewRingbuffer()
return
xRingbufferCreate
(
(
rbALIGN_SIZE
(
xItemSize
)
+
rbHEADER_SIZE
)
*
xItemNum
,
RINGBUF_TYPE_NOSPLIT
)
;
ringbuf.c:961
xRingbufferCreateNoSplit()
p_rmt_obj
[
channel
]
->
rx_buf
=
xRingbufferCreate
(
rx_buf_size
,
RINGBUF_TYPE_NOSPLIT
)
;
rmt_legacy.c:1070
rmt_driver_install()
uart_obj
->
tx_ring_buf
=
xRingbufferCreateWithCaps
(
tx_buffer_size
,
RINGBUF_TYPE_NOSPLIT
,
UART_MALLOC_CAPS
)
;
uart.c:1687
uart_alloc_driver_obj()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
RINGBUF_TYPE_NOSPLIT
is read by 4 functions:
All items filtered out
RINGBUF_TYPE_NOSPLIT
rmt_driver_install()
uart_alloc_driver_obj()
prvInitializeNewRingbuffer()
xRingbufferCreateNoSplit()
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