/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/rfcomm/ |
D | rfc_port_if.c | 143 UINT8 flow; in RFCOMM_ParNegReq() local 162 flow = (p_mcb->flow == PORT_FC_UNDEFINED) ? PORT_FC_DEFAULT : p_mcb->flow; in RFCOMM_ParNegReq() 165 if (flow == PORT_FC_CREDIT) { in RFCOMM_ParNegReq()
|
D | port_rfc.c | 325 if (p_mcb->flow == PORT_FC_UNDEFINED) { in PORT_ParNegInd() 327 p_mcb->flow = PORT_FC_TS710; in PORT_ParNegInd() 329 p_mcb->flow = PORT_FC_CREDIT; in PORT_ParNegInd() 341 } else if (p_mcb->flow == PORT_FC_CREDIT) { in PORT_ParNegInd() 380 if (p_mcb->flow == PORT_FC_UNDEFINED) { in PORT_ParNegCnf() 390 p_mcb->flow = PORT_FC_CREDIT; in PORT_ParNegCnf() 394 p_mcb->flow = PORT_FC_TS710; in PORT_ParNegCnf() 404 if (p_mcb->flow == PORT_FC_CREDIT) { in PORT_ParNegCnf()
|
D | rfc_utils.c | 437 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) { in rfc_inc_credit() 461 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) { in rfc_dec_credit()
|
D | rfc_port_fsm.c | 398 if ((p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) in rfc_port_sm_opened() 713 if (p_port->rfc.p_mcb->flow != PORT_FC_CREDIT) { in rfc_process_msc()
|
D | port_api.c | 798 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) { in PORT_FlowControl() 869 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) { 938 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT) { in PORT_FlowControl_GiveCredit()
|
/hal_espressif-3.4.0/components/esp_eth/ |
D | Kconfig | 105 bool "Enable software flow control" 108 Ethernet MAC engine on ESP32 doesn't feature a flow control logic. 109 The MAC driver can perform a software flow control if you enable this option. 110 Note that, if the RX buffer number is small, enabling software flow control will
|
/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/btu/ |
D | btu_hcif.c | 868 FLOW_SPEC flow; in btu_hcif_qos_setup_comp_evt() local 872 STREAM_TO_UINT8 (flow.qos_flags, p); in btu_hcif_qos_setup_comp_evt() 873 STREAM_TO_UINT8 (flow.service_type, p); in btu_hcif_qos_setup_comp_evt() 874 STREAM_TO_UINT32 (flow.token_rate, p); in btu_hcif_qos_setup_comp_evt() 875 STREAM_TO_UINT32 (flow.peak_bandwidth, p); in btu_hcif_qos_setup_comp_evt() 876 STREAM_TO_UINT32 (flow.latency, p); in btu_hcif_qos_setup_comp_evt() 877 STREAM_TO_UINT32 (flow.delay_variation, p); in btu_hcif_qos_setup_comp_evt() 879 btm_qos_setup_complete(status, handle, &flow); in btu_hcif_qos_setup_comp_evt()
|
/hal_espressif-3.4.0/components/bt/controller/esp32c3/ |
D | Kconfig.in | 196 bool "BLE adv report flow control supported" 199 … The function is mainly used to enable flow control for advertising reports. When it is enabled, 201 reports exceeds the size of BLE adv report flow control. 204 int "BLE adv report flow control number" 223 … When adv report flow control is enabled, The ADV lost event will be generated when the number
|
/hal_espressif-3.4.0/components/bt/controller/esp32s3/ |
D | Kconfig.in | 213 bool "BLE adv report flow control supported" 216 … The function is mainly used to enable flow control for advertising reports. When it is enabled, 218 reports exceeds the size of BLE adv report flow control. 221 int "BLE adv report flow control number" 240 … When adv report flow control is enabled, The ADV lost event will be generated when the number
|
/hal_espressif-3.4.0/examples/peripherals/uart/uart_echo/ |
D | README.md | 31 hardware control flow works. Connect the extra signals according to the following table, configure … 33 UART1 driver to use the hardware flow control by setting `.flow_ctrl = UART_HW_FLOWCTRL_CTS_RTS` an…
|
/hal_espressif-3.4.0/components/bt/controller/esp32/ |
D | Kconfig.in | 381 bool "BLE adv report flow control supported" 385 … The function is mainly used to enable flow control for advertising reports. When it is enabled, 387 reports exceeds the size of BLE adv report flow control. 390 int "BLE adv report flow control number" 409 … When adv report flow control is enabled, The ADV lost event will be generated when the number
|
/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/btm/ |
D | btm_acl.c | 1918 qossu.flow.qos_flags = p_flow->qos_flags; in btm_qos_setup_complete() 1919 qossu.flow.service_type = p_flow->service_type; in btm_qos_setup_complete() 1920 qossu.flow.token_rate = p_flow->token_rate; in btm_qos_setup_complete() 1921 qossu.flow.peak_bandwidth = p_flow->peak_bandwidth; in btm_qos_setup_complete() 1922 qossu.flow.latency = p_flow->latency; in btm_qos_setup_complete() 1923 qossu.flow.delay_variation = p_flow->delay_variation; in btm_qos_setup_complete() 1926 qossu.flow.delay_variation); in btm_qos_setup_complete()
|
/hal_espressif-3.4.0/examples/storage/partition_api/partition_ops/ |
D | README.md | 7 … to follow along the code easily. Nevertheless, this section provides an overview of the code flow.
|
/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/rfcomm/include/ |
D | port_int.h | 104 UINT8 flow; /* flow control mechanism for this mux */ member
|
/hal_espressif-3.4.0/components/esp_netif/ |
D | README.md | 72 ## Data/event flow:
|
/hal_espressif-3.4.0/examples/storage/nvs_rw_value/ |
D | README.md | 9 …alized in NVS. Diagnostic is provided in plain text to help track program flow and capture any iss…
|
/hal_espressif-3.4.0/docs/en/api-guides/tools/ |
D | idf-tools.rst | 143 * Visual Studio Code extension for ESP-IDF includes an onboarding flow. This flow helps setting up …
|
/hal_espressif-3.4.0/examples/storage/ext_flash_fatfs/ |
D | README.md | 10 The flow of the example is as follows:
|
/hal_espressif-3.4.0/docs/en/hw-reference/esp32/ |
D | get-started-wrover-kit-v2.rst | 87 CTS/RTS Serial port flow control signals: the pins are not connected to the circuitry b… 139 JP14 |jp14| Enable RTS/CTS flow control for serial communication
|
/hal_espressif-3.4.0/docs/en/api-reference/ |
D | template.rst | 50 7. Include flow diagram and screenshots of application output if applicable.
|
/hal_espressif-3.4.0/examples/ethernet/basic/ |
D | README.md | 9 … basic usage of `Ethernet driver` together with `tcpip_adapter`. The work flow of the example coul…
|
/hal_espressif-3.4.0/docs/en/api-reference/system/ |
D | esp_event.rst | 23 Using this library roughly entails the following flow: 32 In code, the flow above may look like as follows:
|
D | freertos.rst | 26 …mistakenly returns (i.e. does not call :cpp:func:`vTaskDelete`), the call flow will return to the …
|
/hal_espressif-3.4.0/docs/en/api-guides/ |
D | ulp.rst | 152 ESP32 ULP program flow 170 ESP32-S2 ULP program flow
|
D | hlinterrupts.rst | 65 so breaking C code execution flow is not a problem.
|