TinyUSB Library
cdcd_interface_t::rx_ff
is only used within TinyUSB Library.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
TinyUSB Library
cdcd_interface_t::rx_ff
cdcd_interface_t::rx_ff field
Syntax
Show:
Summary
Declaration
from
cdc_device.c:62
tu_fifo_t
rx_ff
;
Examples
References
from
examples
Code
Location
Referrer
tu_fifo_t
rx_ff
;
cdc_device.c:62
uint16_t
available
=
tu_fifo_remaining
(
&
p_cdc
->
rx_ff
)
;
cdc_device.c:90
_prep_out_transaction()
available
=
tu_fifo_remaining
(
&
p_cdc
->
rx_ff
)
;
cdc_device.c:102
_prep_out_transaction()
return
tu_fifo_count
(
&
_cdcd_itf
[
itf
]
.
rx_ff
)
;
cdc_device.c:148
tud_cdc_n_available()
uint32_t
num_read
=
tu_fifo_read_n
(
&
p_cdc
->
rx_ff
,
buffer
,
(
uint16_t
)
TU_MIN
(
bufsize
,
UINT16_MAX
)
)
;
cdc_device.c:153
tud_cdc_n_read()
return
tu_fifo_peek
(
&
_cdcd_itf
[
itf
]
.
rx_ff
,
chr
)
;
cdc_device.c:159
tud_cdc_n_peek()
tu_fifo_clear
(
&
p_cdc
->
rx_ff
)
;
cdc_device.c:164
tud_cdc_n_read_flush()
tu_fifo_config
(
&
p_cdc
->
rx_ff
,
p_cdc
->
rx_ff_buf
,
TU_ARRAY_SIZE
(
p_cdc
->
rx_ff_buf
)
,
1
,
false
)
;
cdc_device.c:242
cdcd_init()
tu_fifo_config_mutex
(
&
p_cdc
->
rx_ff
,
NULL
,
mutex_rd
)
;
cdc_device.c:254
cdcd_init()
osal_mutex_t
mutex_rd
=
p_cdc
->
rx_ff
.
mutex_rd
;
cdc_device.c:264
cdcd_deinit()
tu_fifo_config_mutex
(
&
p_cdc
->
rx_ff
,
NULL
,
NULL
)
;
cdc_device.c:269
cdcd_deinit()
if
(
!
_cdcd_fifo_cfg
.
rx_persistent
)
tu_fifo_clear
(
&
p_cdc
->
rx_ff
)
;
cdc_device.c:289
cdcd_reset()
tu_fifo_write_n
(
&
p_cdc
->
rx_ff
,
p_cdc
->
epout_buf
,
(
uint16_t
)
xferred_bytes
)
;
cdc_device.c:441
cdcd_xfer_cb()
if
(
(
p_cdc
->
wanted_char
==
p_cdc
->
epout_buf
[
i
]
)
&&
!
tu_fifo_empty
(
&
p_cdc
->
rx_ff
)
)
{
cdc_device.c:446
cdcd_xfer_cb()
if
(
tud_cdc_rx_cb
&&
!
tu_fifo_empty
(
&
p_cdc
->
rx_ff
)
)
tud_cdc_rx_cb
(
itf
)
;
cdc_device.c:453
cdcd_xfer_cb()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
cdcd_interface_t::rx_ff
is read by 1 function:
All items filtered out
cdcd_interface_t::rx_ff
cdcd_deinit()
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