/hal_espressif-latest/components/esp_coex/esp32h2/ |
D | esp_coex_adapter.c | 43 void *mux = malloc(sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() local 45 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 46 memcpy(mux, &tmp, sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 47 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c2/ |
D | esp_coex_adapter.c | 43 void *mux = malloc(sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() local 45 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 46 memcpy(mux,&tmp,sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 47 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c3/ |
D | esp_coex_adapter.c | 44 void *mux = malloc(sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() local 46 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 47 memcpy(mux,&tmp,sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 48 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c6/ |
D | esp_coex_adapter.c | 43 void *mux = malloc(sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() local 45 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 46 memcpy(mux, &tmp, sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 47 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_hw_support/ |
D | regi2c_ctrl.c | 16 static int mux; variable 18 #define ENTER_CRITICAL_SECTION() do { mux = irq_lock(); } while(0) 19 #define LEAVE_CRITICAL_SECTION() irq_unlock(mux);
|
/hal_espressif-latest/components/esp_coex/esp32s2/ |
D | esp_coex_adapter.c | 48 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() local 50 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 51 memcpy(mux,&tmp,sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 52 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32/ |
D | esp_coex_adapter.c | 46 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() local 48 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 49 memcpy(mux,&tmp,sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 50 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32s3/ |
D | esp_coex_adapter.c | 49 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() local 51 if (mux) { in esp_coex_common_spin_lock_create_wrapper() 52 memcpy(mux,&tmp,sizeof(portMUX_TYPE)); in esp_coex_common_spin_lock_create_wrapper() 53 return mux; in esp_coex_common_spin_lock_create_wrapper()
|
/hal_espressif-latest/components/esp_coex/include/private/ |
D | esp_coexist_adapter.h | 26 uint32_t (*_int_disable)(void *mux); 27 void (*_int_enable)(void *mux, uint32_t tmp);
|
/hal_espressif-latest/components/soc/include/soc/ |
D | rtc_io_periph.h | 41 uint32_t mux; /*!< Bit mask for selecting digital pad or RTC pad */ member
|
/hal_espressif-latest/components/driver/deprecated/ |
D | i2s_legacy.c | 93 SemaphoreHandle_t mux; member 581 vSemaphoreDelete((*dma)->mux); in i2s_destroy_dma_object() 614 (*dma)->mux = xSemaphoreCreateMutex(); in i2s_create_dma_object() 615 if (!(*dma)->mux) { in i2s_create_dma_object() 1046 xSemaphoreTake(p_i2s[i2s_num]->tx->mux, portMAX_DELAY); in i2s_set_clk() 1049 xSemaphoreTake(p_i2s[i2s_num]->rx->mux, portMAX_DELAY); in i2s_set_clk() 1122 xSemaphoreGive(p_i2s[i2s_num]->tx->mux); in i2s_set_clk() 1125 xSemaphoreGive(p_i2s[i2s_num]->rx->mux); in i2s_set_clk() 1151 xSemaphoreTake(p_i2s[i2s_num]->tx->mux, portMAX_DELAY); in i2s_pcm_config() 1154 xSemaphoreTake(p_i2s[i2s_num]->rx->mux, portMAX_DELAY); in i2s_pcm_config() [all …]
|
D | pcnt_legacy.c | 31 #define PCNT_ENTER_CRITICAL(mux) portENTER_CRITICAL(mux) argument 32 #define PCNT_EXIT_CRITICAL(mux) portEXIT_CRITICAL(mux) argument
|
D | timer_legacy.c | 34 #define TIMER_ENTER_CRITICAL(mux) portENTER_CRITICAL_SAFE(mux); argument 35 #define TIMER_EXIT_CRITICAL(mux) portEXIT_CRITICAL_SAFE(mux); argument
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | rtc_io_ll.h | 54 SET_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select() 58 CLEAR_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select()
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | rtc_io_ll.h | 52 SET_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select() 56 CLEAR_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | rtc_io_ll.h | 60 SET_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select() 64 CLEAR_PERI_REG_MASK(rtc_io_desc[rtcio_num].reg, (rtc_io_desc[rtcio_num].mux)); in rtcio_ll_function_select()
|