ESP-IDF
DPORT_READ_PERI_REG
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
DPORT_READ_PERI_REG
DPORT_READ_PERI_REG macro
Syntax
Show:
Summary
Declaration
from
dport_access.h:175
#define
DPORT_READ_PERI_REG
(
reg
)
DPORT_REG_READ
(
reg
)
Arguments
Argument
reg
Examples
References
from
examples
Code
Location
#define
DPORT_READ_PERI_REG
(
reg
)
DPORT_REG_READ
(
reg
)
dport_access.h:175
common_perip_clk
=
~
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
clk.c:224
hwcrypto_perip_clk
=
~
DPORT_READ_PERI_REG
(
DPORT_PERI_CLK_EN_REG
)
;
clk.c:225
wifi_bt_sdio_clk
=
~
DPORT_READ_PERI_REG
(
DPORT_WIFI_CLK_EN_REG
)
;
clk.c:226
#define
DPORT_CLEAR_PERI_REG_MASK
(
reg
,
mask
)
DPORT_WRITE_PERI_REG
(
(
reg
)
,
(
DPORT_READ_PERI_REG
(
reg
)
&
(
~
(
mask
)
)
)
)
dport_access.h:181
#define
DPORT_SET_PERI_REG_MASK
(
reg
,
mask
)
DPORT_WRITE_PERI_REG
(
(
reg
)
,
(
DPORT_READ_PERI_REG
(
reg
)
|
(
mask
)
)
)
dport_access.h:184
#define
DPORT_GET_PERI_REG_MASK
(
reg
,
mask
)
(
DPORT_READ_PERI_REG
(
reg
)
&
(
mask
)
)
dport_access.h:187
#define
DPORT_SET_PERI_REG_BITS
(
reg
,
bit_map
,
value
,
shift
)
DPORT_WRITE_PERI_REG
(
(
reg
)
,
(
(
DPORT_READ_PERI_REG
(
reg
)
&
(
~
(
(
bit_map
)
<
<
(
shift
)
)
)
)
|
(
(
(
value
)
&
bit_map
)
<
<
(
shift
)
)
)
)
dport_access.h:193
#define
DPORT_GET_PERI_REG_BITS2
(
reg
,
mask
,
shift
)
(
(
DPORT_READ_PERI_REG
(
reg
)
>
>
(
shift
)
)
&
(
mask
)
)
dport_access.h:196
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_WIFI_CLK_EN_REG
)
;
emac_ll.h:155
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
i2c_ll.h:737
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
i2c_ll.h:742
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
mcpwm_ll.h:79
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
rmt_ll.h:53
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_WIFI_CLK_EN_REG
)
;
sdio_slave_ll.h:86
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
timer_ll.h:35
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
twai_ll.h:165
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
uart_ll.h:85
uint32_t
reg_val
=
DPORT_READ_PERI_REG
(
DPORT_PERIP_CLK_EN_REG
)
;
uhci_ll.h:28
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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