ESP-IDF
periph_ll_get_rst_en_mask()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (5/5)...
ESP-IDF
components
app_trace
app_update
bootloader_support
bt
cmock
console
cxx
driver
efuse
esp_adc
esp_app_format
esp_bootloader_format
esp_coex
esp_common
esp_driver_ana_cmpr
esp_driver_cam
esp_driver_dac
esp_driver_gpio
esp_driver_gptimer
esp_driver_i2c
esp_driver_i2s
esp_driver_jpeg
esp_driver_ledc
esp_driver_mcpwm
esp_driver_parlio
esp_driver_pcnt
esp_driver_rmt
esp_driver_sdio
esp_driver_sdm
esp_driver_sdmmc
esp_driver_sdspi
esp_driver_spi
esp_driver_tsens
esp_driver_uart
esp_driver_usb_serial_jtag
esp_eth
esp_event
esp_gdbstub
esp_hid
esp_http_client
esp_http_server
esp_https_ota
esp_https_server
esp_hw_support
esp_lcd
esp_local_ctrl
esp_mm
esp_netif
esp_partition
esp_phy
esp_pm
esp_psram
esp_ringbuf
esp_rom
esp_security
esp_system
esp_timer
esp_vfs_console
esp_wifi
esp-tls
espcoredump
hal
esp32
include
hal
adc_ll.h
aes_ll.h
brownout_ll.h
cache_ll.h
clk_gate_ll.h
periph_ll_get_clk_en_mask()
periph_ll_get_rst_en_mask()
periph_ll_get_clk_en_reg()
periph_ll_get_rst_en_reg()
periph_ll_enable_clk_clear_rst()
periph_ll_disable_clk_set_rst()
periph_ll_wifi_bt_module_enable_clk()
periph_ll_wifi_bt_module_disable_clk()
periph_ll_reset()
periph_ll_periph_enabled()
periph_ll_wifi_module_enable_clk_clear_rst()
periph_ll_wifi_module_disable_clk_set_rst()
clk_tree_ll.h
cpu_utility_ll.h
crosscore_int_ll.h
dac_ll.h
efuse_hal.h
efuse_ll.h
emac_ll.h
gpio_ll.h
i2c_ll.h
i2s_ll.h
ledc_ll.h
mcpwm_ll.h
mmu_ll.h
mpi_ll.h
mpu_ll.h
mwdt_ll.h
pcnt_ll.h
regi2c_ctrl_ll.h
rmt_ll.h
rtc_cntl_ll.h
rtc_io_ll.h
rwdt_ll.h
sar_ctrl_ll.h
sdio_slave_ll.h
sdm_ll.h
sdmmc_ll.h
sha_ll.h
spi_flash_encrypted_ll.h
spi_flash_ll.h
spi_ll.h
timer_ll.h
touch_sensor_hal.h
touch_sensor_ll.h
trace_ll.h
twai_ll.h
uart_ll.h
uhci_ll.h
cache_hal_esp32.c
clk_tree_hal.c
efuse_hal.c
gpio_hal_workaround.c
touch_sensor_hal.c
include
platform_port
adc_hal_common.c
adc_hal.c
adc_oneshot_hal.c
aes_hal.c
brownout_hal.c
color_hal.c
efuse_hal.c
emac_hal.c
gpio_hal.c
hal_utils.c
i2c_hal_iram.c
i2c_hal.c
i2s_hal.c
ledc_hal_iram.c
ledc_hal.c
mcpwm_hal.c
mmu_hal.c
mpi_hal.c
mpu_hal.c
pcnt_hal.c
rmt_hal.c
rtc_io_hal.c
sdio_slave_hal.c
sdm_hal.c
sdmmc_hal.c
sha_hal.c
spi_flash_encrypt_hal_iram.c
spi_flash_hal_common.inc
spi_flash_hal_iram.c
spi_flash_hal.c
spi_hal_iram.c
spi_hal.c
spi_slave_hal_iram.c
spi_slave_hal.c
timer_hal.c
touch_sensor_hal.c
twai_hal_iram.c
twai_hal.c
uart_hal_iram.c
uart_hal.c
wdt_hal_iram.c
heap
http_parser
ieee802154
log
mqtt
newlib
nvs_flash
nvs_sec_provider
openthread
perfmon
protobuf-c
protocomm
pthread
rt
sdmmc
soc
spi_flash
spiffs
tcp_transport
ulp
unity
vfs
wear_levelling
wifi_provisioning
wpa_supplicant
xtensa
examples
lwIP
FreeRTOS
cJSON
mbedTLS
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
periph_ll_get_rst_en_mask()
periph_ll_get_rst_en_mask() function
Syntax
Show:
Summary
Declaration
from
clk_gate_ll.h:95
static
inline
uint32_t
periph_ll_get_rst_en_mask
(
periph_module_t
periph
,
bool
enable
)
;
Arguments
Argument
periph
enable
Examples
References
from
examples
Code
Location
Referrer
static
inline
uint32_t
periph_ll_get_rst_en_mask
(
periph_module_t
periph
,
bool
enable
)
clk_gate_ll.h:95
DPORT_CLEAR_PERI_REG_MASK
(
periph_ll_get_rst_en_reg
(
periph
)
,
periph_ll_get_rst_en_mask
(
periph
,
true
)
)
;
clk_gate_ll.h:226
periph_ll_enable_clk_clear_rst()
DPORT_SET_PERI_REG_MASK
(
periph_ll_get_rst_en_reg
(
periph
)
,
periph_ll_get_rst_en_mask
(
periph
,
false
)
)
;
clk_gate_ll.h:232
periph_ll_disable_clk_set_rst()
DPORT_SET_PERI_REG_MASK
(
periph_ll_get_rst_en_reg
(
periph
)
,
periph_ll_get_rst_en_mask
(
periph
,
false
)
)
;
clk_gate_ll.h:247
periph_ll_reset()
DPORT_CLEAR_PERI_REG_MASK
(
periph_ll_get_rst_en_reg
(
periph
)
,
periph_ll_get_rst_en_mask
(
periph
,
false
)
)
;
clk_gate_ll.h:248
periph_ll_reset()
return
DPORT_REG_GET_BIT
(
periph_ll_get_rst_en_reg
(
periph
)
,
periph_ll_get_rst_en_mask
(
periph
,
false
)
)
==
0
&&
clk_gate_ll.h:253
periph_ll_periph_enabled()
Call Tree
from
examples
periph_ll_get_rst_en_mask()
is called by 4 functions:
periph_ll_enable_clk_clear_rst()
periph_ll_disable_clk_set_rst()
periph_ll_reset()
periph_ll_periph_enabled()
All items filtered out
periph_ll_get_rst_en_mask()
All items filtered out
Data Use
from
examples
periph_ll_get_rst_en_mask()
reads 29 variables:
periph_module_t::PERIPH_LEDC_MODULE
periph_module_t::PERIPH_UART0_MODULE
periph_module_t::PERIPH_UART1_MODULE
periph_module_t::PERIPH_UART2_MODULE
periph_module_t::PERIPH_I2C0_MODULE
periph_module_t::PERIPH_I2C1_MODULE
periph_module_t::PERIPH_I2S0_MODULE
periph_module_t::PERIPH_I2S1_MODULE
periph_module_t::PERIPH_TIMG0_MODULE
periph_module_t::PERIPH_TIMG1_MODULE
periph_module_t::PERIPH_PWM0_MODULE
periph_module_t::PERIPH_PWM1_MODULE
periph_module_t::PERIPH_UHCI0_MODULE
periph_module_t::PERIPH_UHCI1_MODULE
periph_module_t::PERIPH_RMT_MODULE
periph_module_t::PERIPH_PCNT_MODULE
periph_module_t::PERIPH_SPI_MODULE
periph_module_t::PERIPH_HSPI_MODULE
periph_module_t::PERIPH_VSPI_MODULE
periph_module_t::PERIPH_SPI_DMA_MODULE
periph_module_t::PERIPH_SDMMC_MODULE
periph_module_t::PERIPH_SDIO_SLAVE_MODULE
periph_module_t::PERIPH_TWAI_MODULE
periph_module_t::PERIPH_EMAC_MODULE
periph_module_t::PERIPH_WIFI_MODULE
periph_module_t::PERIPH_BT_MODULE
periph_module_t::PERIPH_AES_MODULE
periph_module_t::PERIPH_SHA_MODULE
periph_module_t::PERIPH_RSA_MODULE
All items filtered out
periph_ll_get_rst_en_mask()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out