ESP-IDF
PERIPH_RCC_ACQUIRE_ATOMIC
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
PERIPH_RCC_ACQUIRE_ATOMIC
PERIPH_RCC_ACQUIRE_ATOMIC macro
Acquire the RCC lock for a peripheral module
Syntax
Show:
Summary
Declaration
from
periph_ctrl.h:28
#define
PERIPH_RCC_ACQUIRE_ATOMIC
(
rc_periph
,
rc_name
)
\
for
(
uint8_t
rc_name
,
_rc_cnt
=
1
,
__DECLARE_RCC_RC_ATOMIC_ENV
;
\
_rc_cnt
?
(
rc_name
=
periph_rcc_acquire_enter
(
rc_periph
)
,
1
)
:
0
;
\
periph_rcc_acquire_exit
(
rc_periph
,
rc_name
)
,
_rc_cnt
--
)
Arguments
Argument
rc_periph
rc_name
Notes
User code protected by this macro should be as short as possible, because it's a critical section This macro will increase the reference lock of that peripheral. You can get the value before the increment from the `rc_name` local variable
Examples
References
from
examples
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