Searched refs:ret_chan (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-latest/components/esp_hw_support/include/ |
D | esp_etm.h | 52 …_t esp_etm_new_channel(const esp_etm_channel_config_t *config, esp_etm_channel_handle_t *ret_chan);
|
/hal_espressif-latest/components/esp_hw_support/ |
D | esp_etm.c | 175 …r_t esp_etm_new_channel(const esp_etm_channel_config_t *config, esp_etm_channel_handle_t *ret_chan) in esp_etm_new_channel() argument 182 ESP_GOTO_ON_FALSE(config && ret_chan, ESP_ERR_INVALID_ARG, err, TAG, "invalid args"); in esp_etm_new_channel() 194 *ret_chan = chan; in esp_etm_new_channel()
|
/hal_espressif-latest/components/esp_hw_support/include/esp_private/ |
D | gdma.h | 135 …err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_chan);
|
/hal_espressif-latest/components/esp_hw_support/dma/ |
D | gdma.c | 66 …_err_t gdma_new_channel(const gdma_channel_alloc_config_t *config, gdma_channel_handle_t *ret_chan) in gdma_new_channel() argument 74 ESP_GOTO_ON_FALSE(config && ret_chan, ESP_ERR_INVALID_ARG, err, TAG, "invalid argument"); in gdma_new_channel() 132 *ret_chan = &alloc_tx_channel->base; // return the installed channel in gdma_new_channel() 142 *ret_chan = &alloc_rx_channel->base; // return the installed channel in gdma_new_channel() 145 (*ret_chan)->spinlock = (portMUX_TYPE)portMUX_INITIALIZER_UNLOCKED; in gdma_new_channel() 147 group->group_id, pair->pair_id, *ret_chan); in gdma_new_channel()
|