HAL
__LL_RTC_CONVERT_BIN2BCD
is only used within HAL.
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
STM32 Libraries and Samples
HAL
__LL_RTC_CONVERT_BIN2BCD
__LL_RTC_CONVERT_BIN2BCD macro
Helper macro to convert a value from 2 digit decimal format to BCD format
Syntax
Show:
Summary
Declaration
from
stm32f4xx_ll_rtc.h:623
#define
__LL_RTC_CONVERT_BIN2BCD
(
__VALUE__
)
(
uint8_t
)
(
(
(
(
__VALUE__
)
/
10U
)
<
<
4U
)
|
(
(
__VALUE__
)
%
10U
)
)
Arguments
Argument
Description
__VALUE__
Byte to be converted
Return value
Converted byte
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