TinyUSB Library
cdch_interface_t::line_state
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
cdch_interface_t::line_state
cdch_interface_t::line_state field
Syntax
Show:
Summary
Declaration
from
cdc_host.c:62
uint8_t
line_state
;
Examples
References
from
examples
Code
Location
Referrer
uint8_t
line_state
;
// DTR (bit0), RTS (bit1)
cdc_host.c:62
p_cdc
->
line_state
=
0
;
cdc_host.c:260
make_new_itf()
return
(
p_cdc
->
line_state
&
CDC_CONTROL_LINE_STATE_DTR
)
?
true
:
false
;
cdc_host.c:317
tuh_cdc_get_dtr()
return
(
p_cdc
->
line_state
&
CDC_CONTROL_LINE_STATE_RTS
)
?
true
:
false
;
cdc_host.c:324
tuh_cdc_get_rts()
p_cdc
->
line_state
=
(
uint8_t
)
value
;
cdc_host.c:417
process_internal_control_complete()
p_cdc
->
line_state
=
(
uint8_t
)
value
;
cdc_host.c:434
process_internal_control_complete()
p_cdc
->
line_state
=
(
uint8_t
)
value
;
cdc_host.c:450
process_internal_control_complete()
p_cdc
->
line_state
|=
CDC_CONTROL_LINE_STATE_RTS
;
cdc_host.c:491
process_internal_control_complete()
p_cdc
->
line_state
&=
(
uint8_t
)
~
CDC_CONTROL_LINE_STATE_RTS
;
cdc_host.c:493
process_internal_control_complete()
p_cdc
->
line_state
|=
CDC_CONTROL_LINE_STATE_DTR
;
cdc_host.c:497
process_internal_control_complete()
p_cdc
->
line_state
&=
(
uint8_t
)
~
CDC_CONTROL_LINE_STATE_DTR
;
cdc_host.c:499
process_internal_control_complete()
p_cdc
->
line_state
=
(
uint8_t
)
line_state
;
cdc_host.c:543
tuh_cdc_set_control_line_state()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
cdch_interface_t::line_state
is written by 3 functions and is read by 3 functions:
make_new_itf()
process_internal_control_complete()
tuh_cdc_set_control_line_state()
All items filtered out
cdch_interface_t::line_state
tuh_cdc_get_dtr()
tuh_cdc_get_rts()
process_internal_control_complete()
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