Searched refs:ringbuf_hdl (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/driver/deprecated/ |
D | adc_dma_legacy.c | 75 RingbufHandle_t ringbuf_hdl; //RX ringbuffer handler member 151 if (s_adc_digi_ctx->ringbuf_hdl) { in adc_digi_deinitialize() 152 vRingbufferDelete(s_adc_digi_ctx->ringbuf_hdl); in adc_digi_deinitialize() 153 s_adc_digi_ctx->ringbuf_hdl = NULL; in adc_digi_deinitialize() 196 …s_adc_digi_ctx->ringbuf_hdl = xRingbufferCreate(init_config->max_store_buf_size, RINGBUF_TYPE_BYTE… in adc_digi_initialize() 197 if (!s_adc_digi_ctx->ringbuf_hdl) { in adc_digi_initialize() 382 …ret = xRingbufferSendFromISR(adc_digi_ctx->ringbuf_hdl, finished_buffer, finished_size, &taskAwoke… in s_adc_dma_intr() 486 data = xRingbufferReceiveUpTo(s_adc_digi_ctx->ringbuf_hdl, &size, ticks_to_wait, length_max); in adc_digi_read_bytes() 495 vRingbufferReturnItem(s_adc_digi_ctx->ringbuf_hdl, data); in adc_digi_read_bytes()
|
/hal_espressif-latest/components/esp_adc/ |
D | adc_continuous.c | 123 …adc_ctx->ringbuf_hdl = xRingbufferCreateStatic(hdl_config->max_store_buf_size, RINGBUF_TYPE_BYTEBU… in adc_continuous_new_handle() 124 if (!adc_ctx->ringbuf_hdl) { in adc_continuous_new_handle() 299 …ret = xRingbufferSendFromISR(adc_digi_ctx->ringbuf_hdl, finished_buffer, finished_size, &taskAwoke… in s_adc_dma_intr() 431 data = xRingbufferReceiveUpTo(handle->ringbuf_hdl, &size, ticks_to_wait, length_max); in adc_continuous_read() 440 vRingbufferReturnItem(handle->ringbuf_hdl, data); in adc_continuous_read() 452 if (handle->ringbuf_hdl) { in adc_continuous_deinit() 453 vRingbufferDelete(handle->ringbuf_hdl); in adc_continuous_deinit() 454 handle->ringbuf_hdl = NULL; in adc_continuous_deinit()
|
D | adc_continuous_internal.h | 66 RingbufHandle_t ringbuf_hdl; //RX ringbuffer handler member
|