/hal_espressif-3.4.0/components/esp_eth/src/ |
D | esp_eth_mac_openeth.c | 49 uint8_t *rx_buf[RX_BUF_COUNT]; member 343 free(emac->rx_buf[i]); in emac_opencores_del() 362 emac->rx_buf[i] = heap_caps_calloc(1, DMA_BUF_SIZE, MALLOC_CAP_DMA); in esp_eth_mac_new_openeth() 363 if (!(emac->rx_buf[i])) { in esp_eth_mac_new_openeth() 366 openeth_init_rx_desc(openeth_rx_desc(i), emac->rx_buf[i]); in esp_eth_mac_new_openeth() 425 free(emac->rx_buf[i]); in esp_eth_mac_new_openeth()
|
D | esp_eth_mac_esp.c | 55 uint8_t *rx_buf[CONFIG_ETH_DMA_RX_BUFFER_NUM]; member 448 free(emac->rx_buf[i]); in esp_emac_free_driver_obj() 480 emac->rx_buf[i] = heap_caps_calloc(1, CONFIG_ETH_DMA_BUFFER_SIZE, MALLOC_CAP_DMA); in esp_emac_alloc_driver_obj() 481 ESP_GOTO_ON_FALSE(emac->rx_buf[i], ESP_ERR_NO_MEM, err, TAG, "no mem for RX DMA buffers"); in esp_emac_alloc_driver_obj() 586 emac_hal_init(&emac->hal, descriptors, emac->rx_buf, emac->tx_buf); in esp_eth_mac_new_esp32()
|
/hal_espressif-3.4.0/components/hal/ |
D | emac_hal.c | 124 uint8_t **rx_buf, uint8_t **tx_buf) in emac_hal_init() argument 130 hal->rx_buf = rx_buf; in emac_hal_init() 168 hal->rx_desc[i].Buffer1Addr = (uint32_t)(hal->rx_buf[i]); in emac_hal_reset_desc_chain()
|
/hal_espressif-3.4.0/components/driver/ |
D | rmt.c | 86 RingbufHandle_t rx_buf; member 831 if (p_rmt->rx_buf) { in rmt_driver_isr_default() 839 …BaseType_t res = xRingbufferSendFromISR(p_rmt->rx_buf, (void *)(p_rmt->rx_item_buf), p_rmt->rx_ite… in rmt_driver_isr_default() 841 … BaseType_t res = xRingbufferSendFromISR(p_rmt->rx_buf, (void *)addr, item_len * 4, &HPTaskAwoken); in rmt_driver_isr_default() 962 if (p_rmt_obj[channel]->rx_buf) { in rmt_driver_uninstall() 993 if (p_rmt_obj[channel]->rx_buf) { in rmt_driver_uninstall() 994 vRingbufferDelete(p_rmt_obj[channel]->rx_buf); in rmt_driver_uninstall() 995 p_rmt_obj[channel]->rx_buf = NULL; in rmt_driver_uninstall() 1066 if (p_rmt_obj[channel]->rx_buf == NULL && rx_buf_size > 0) { in rmt_driver_install() 1067 p_rmt_obj[channel]->rx_buf = xRingbufferCreate(rx_buf_size, RINGBUF_TYPE_NOSPLIT); in rmt_driver_install() [all …]
|
/hal_espressif-3.4.0/components/hal/include/hal/ |
D | emac_hal.h | 159 uint8_t **rx_buf; member 168 uint8_t **rx_buf, uint8_t **tx_buf);
|
/hal_espressif-3.4.0/examples/mesh/ip_internal_network/main/ |
D | mesh_netif.c | 80 static uint8_t rx_buf[RX_SIZE] = { 0, }; in receive_task() local 84 data.data = rx_buf; in receive_task()
|
/hal_espressif-3.4.0/examples/mesh/internal_communication/main/ |
D | mesh_main.c | 35 static uint8_t rx_buf[RX_SIZE] = { 0, }; variable 137 data.data = rx_buf; in esp_mesh_p2p_rx_main()
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32s2/rom/ |
D | opi_flash.h | 131 void esp_rom_spi_cmd_start(int spi_num, uint8_t* rx_buf, uint16_t rx_len, uint8_t cs_en_mask, bool …
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32s3/rom/ |
D | opi_flash.h | 171 void esp_rom_spi_cmd_start(int spi_num, uint8_t* rx_buf, uint16_t rx_len, uint8_t cs_en_mask, bool …
|
/hal_espressif-3.4.0/components/driver/test/ |
D | test_spi_master.c | 717 uint8_t rx_buf[320]; variable 742 memset(rx_buf, 0x66, 320); 745 memset( rx_buf, 0x66, sizeof(rx_buf)); 751 t.rx_buffer = rx_buf + i; 763 printf("%02X ", rx_buf[i]);
|
/hal_espressif-3.4.0/components/bt/esp_ble_mesh/mesh_core/ |
D | prov.c | 184 NET_BUF_SIMPLE_DEFINE_STATIC(rx_buf, 65); 247 net_buf_simple_reset(&rx_buf); in reset_state() 248 link.rx.buf = &rx_buf; in reset_state()
|