Home
last modified time | relevance | path

Searched refs:status_bits (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/
Dmemprot_peri_ll.h62 uint32_t status_bits = memprot_ll_peri1_get_fault_reg(); in memprot_ll_peri1_get_fault_op_type() local
66 *op_subtype = (uint32_t)status_bits & PERI1_INTR_ST_OP_TYPE_BIT; in memprot_ll_peri1_get_fault_op_type()
112 uint32_t status_bits = memprot_ll_peri1_get_fault_reg(); in memprot_ll_peri1_rtcslow_get_fault_address() local
113 uint32_t fault_address = (status_bits & PERI1_INTR_ST_FAULTADDR_M) >> PERI1_INTR_ST_FAULTADDR_S; in memprot_ll_peri1_rtcslow_get_fault_address()
114 …uint32_t high_bits = (status_bits & PERI1_INTR_ST_OP_HIGH_BITS) ? PERI1_RTCSLOW_INTR_ST_FAULTADDR_… in memprot_ll_peri1_rtcslow_get_fault_address()
224 uint32_t status_bits = memprot_ll_peri2_get_fault_reg(); in memprot_ll_peri2_get_fault_op_type() local
225 *op_type = (uint32_t)status_bits & PERI2_INTR_ST_OP_RW_BIT; in memprot_ll_peri2_get_fault_op_type()
226 *op_subtype = (uint32_t)status_bits & PERI2_INTR_ST_OP_TYPE_BIT; in memprot_ll_peri2_get_fault_op_type()
267 uint32_t status_bits = memprot_ll_peri2_get_fault_reg(); in memprot_ll_peri2_rtcslow_get_fault_address() local
268 return (intptr_t)(status_bits & PERI2_INTR_ST_FAULTADDR_M); in memprot_ll_peri2_rtcslow_get_fault_address()
Dmemprot_ll.h62 uint32_t status_bits = memprot_ll_iram0_get_fault_reg(); in memprot_ll_iram0_get_fault_op_type() local
63 *op_type = (uint32_t)status_bits & IRAM0_INTR_ST_OP_RW_BIT; in memprot_ll_iram0_get_fault_op_type()
64 *op_subtype = (uint32_t)status_bits & IRAM0_INTR_ST_OP_TYPE_BIT; in memprot_ll_iram0_get_fault_op_type()
110 uint32_t status_bits = memprot_ll_iram0_get_fault_reg(); in memprot_ll_iram0_sram_get_fault_address() local
111 return (intptr_t)((status_bits & IRAM0_INTR_ST_FAULTADDR_M) | IRAM0_SRAM_INTR_ST_FAULTADDR_HI); in memprot_ll_iram0_sram_get_fault_address()
409 uint32_t status_bits = memprot_ll_iram0_get_fault_reg(); in memprot_ll_iram0_rtcfast_get_fault_address() local
410 … return (intptr_t)((status_bits & IRAM0_INTR_ST_FAULTADDR_M) | IRAM0_RTCFAST_INTR_ST_FAULTADDR_HI); in memprot_ll_iram0_rtcfast_get_fault_address()
571 uint32_t status_bits = memprot_ll_dram0_get_fault_reg(); in memprot_ll_dram0_get_fault_op_type() local
572 *op_type = status_bits & DRAM0_INTR_ST_OP_RW_BIT; in memprot_ll_dram0_get_fault_op_type()
573 *op_subtype = status_bits & DRAM0_INTR_ST_OP_ATOMIC_BIT; in memprot_ll_dram0_get_fault_op_type()
[all …]
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/
Dmemprot_ll.h85 uint32_t status_bits = esp_memprot_iram0_get_fault_reg();
87 uint32_t fault_addr = (status_bits & IRAM0_INTR_ST_FAULTADDR_M);
90 *op_type = (uint32_t)status_bits & IRAM0_INTR_ST_OP_RW_BIT;
91 *op_subtype = (uint32_t)status_bits & IRAM0_INTR_ST_OP_TYPE_BIT;
566 uint32_t status_bits = esp_memprot_dram0_get_fault_reg();
568 uint32_t fault_addr = (status_bits & DRAM0_INTR_ST_FAULTADDR_M) >> DRAM0_INTR_ST_FAULTADDR_S;
571 *op_type = (uint32_t)status_bits & DRAM0_INTR_ST_OP_RW_BIT;
572 *op_subtype = (uint32_t)status_bits & DRAM0_INTR_ST_OP_ATOMIC_BIT;
/hal_espressif-3.6.0/components/esp_websocket_client/
Desp_websocket_client.c115 EventGroupHandle_t status_bits; member
433 client->status_bits = xEventGroupCreate(); in esp_websocket_client_init()
434 ESP_WS_CLIENT_MEM_CHECK(TAG, client->status_bits, { in esp_websocket_client_init()
465 if (client->status_bits) { in esp_websocket_client_destroy()
466 vEventGroupDelete(client->status_bits); in esp_websocket_client_destroy()
599 xEventGroupClearBits(client->status_bits, STOPPED_BIT | CLOSE_FRAME_SENT_BIT); in esp_websocket_client_task()
629 …if ((CLOSE_FRAME_SENT_BIT & xEventGroupGetBits(client->status_bits)) == 0) { // only send and chec… in esp_websocket_client_task()
677 if ((CLOSE_FRAME_SENT_BIT & xEventGroupGetBits(client->status_bits)) == 0) { in esp_websocket_client_task()
680 xEventGroupSetBits(client->status_bits, CLOSE_FRAME_SENT_BIT); in esp_websocket_client_task()
698 (CLOSE_FRAME_SENT_BIT & xEventGroupGetBits(client->status_bits))) { in esp_websocket_client_task()
[all …]