ESP-IDF
DPORT_REG_READ
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (5/5)...
ESP-IDF
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
DPORT_REG_READ
DPORT_REG_READ macro
Syntax
Show:
Summary
Declaration
from
dport_access.h:116
#define
DPORT_REG_READ
(
reg
)
esp_dport_access_reg_read
(
reg
)
Arguments
Argument
reg
Examples
References
from
examples
Code
Location
#define
DPORT_REG_READ
(
reg
)
_DPORT_REG_READ
(
reg
)
dport_access.h:113
#define
DPORT_REG_READ
(
reg
)
esp_dport_access_reg_read
(
reg
)
dport_access.h:116
return
(
esp_aes_state_t
)
DPORT_REG_READ
(
AES_IDLE_REG
)
;
aes_ll.h:164
uint32_t
bus_mask
=
DPORT_REG_READ
(
DPORT_PRO_CACHE_CTRL1_REG
)
;
cache_ll.h:181
uint32_t
bus_mask
=
DPORT_REG_READ
(
DPORT_APP_CACHE_CTRL1_REG
)
;
cache_ll.h:189
#define
DPORT_REG_GET_BIT
(
_r
,
_b
)
(
DPORT_REG_READ
(
_r
)
&
(
_b
)
)
dport_access.h:134
#define
DPORT_REG_SET_BIT
(
_r
,
_b
)
DPORT_REG_WRITE
(
(
_r
)
,
(
DPORT_REG_READ
(
_r
)
|
(
_b
)
)
)
dport_access.h:137
#define
DPORT_REG_CLR_BIT
(
_r
,
_b
)
DPORT_REG_WRITE
(
(
_r
)
,
(
DPORT_REG_READ
(
_r
)
&
(
~
(
_b
)
)
)
)
dport_access.h:140
#define
DPORT_REG_GET_FIELD
(
_r
,
_f
)
(
(
DPORT_REG_READ
(
_r
)
>
>
(
_f
##
_S
)
)
&
(
_f
##
_V
)
)
dport_access.h:146
#define
DPORT_REG_SET_FIELD
(
_r
,
_f
,
_v
)
DPORT_REG_WRITE
(
(
_r
)
,
(
(
DPORT_REG_READ
(
_r
)
&
(
~
(
(
_f
##
_V
)
<
<
(
_f
##
_S
)
)
)
)
|
(
(
(
_v
)
&
(
_f
##
_V
)
)
<
<
(
_f
##
_S
)
)
)
)
dport_access.h:149
#define
DPORT_READ_PERI_REG
(
reg
)
DPORT_REG_READ
(
reg
)
dport_access.h:175
val
=
DPORT_REG_READ
(
reg
)
;
hli_api.c:88
ptr
[
i
]
=
DPORT_REG_READ
(
(
uint32_t
)
&
hw
->
fifo_data
)
;
i2c_ll.h:580
return
DPORT_REG_READ
(
RSA_CLEAN_REG
)
==
0
;
mpi_ll.h:91
return
DPORT_REG_READ
(
RSA_INTERRUPT_REG
)
==
0
;
mpi_ll.h:101
return
(
DPORT_REG_READ
(
SHA_1_BUSY_REG
)
||
DPORT_REG_READ
(
SHA_256_BUSY_REG
)
sha_ll.h:137
||
DPORT_REG_READ
(
SHA_384_BUSY_REG
)
||
DPORT_REG_READ
(
SHA_512_BUSY_REG
)
)
;
sha_ll.h:138
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