Home
last modified time | relevance | path

Searched refs:number (Results 1 – 19 of 19) sorted by relevance

/hal_stm32-latest/lib/stm32wb0/
DCMakeLists.txt171 #Maximum number of simultaneous connections
176 # Maximum number of Enhanced ATT bearers
181 # Maximum number of Broadcast Isochronous Groups (BIGs) to support
192 # Maximum number of simultaneous Bluetooth isochronous channels supported.
202 # Maximum number of CIGs that are supported by the host.
208 # Maximum number of simultaneous Bluetooth isochronous channels supported.
226 ########### Beginning of number of radio tasks calculation ###########
279 ########### End of number of radio tasks calculation ###########
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/src/
Dstm32f2xx_hal_rtc.c1807 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1811 while (number >= 10U) in RTC_ByteToBcd2()
1814 number -= 10U; in RTC_ByteToBcd2()
1817 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1825 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1828 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1829 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/src/
Dstm32f0xx_hal_rtc.c1743 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1747 while (number >= 10U) in RTC_ByteToBcd2()
1750 number -= 10U; in RTC_ByteToBcd2()
1753 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1761 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1764 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1765 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/src/
Dstm32wb0x_hal_rtc.c1646 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1650 while (number >= 10U) in RTC_ByteToBcd2()
1653 number -= 10U; in RTC_ByteToBcd2()
1656 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1664 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1667 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1668 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/System/Config/Log/
Dlog_module_conf.h164 #define LOG_NUMBER64( number ) (uint32_t)( number >> 32u ), (uint32_t)( number ) argument
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_rtc.c1874 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1878 while (number >= 10U) in RTC_ByteToBcd2()
1881 number -= 10U; in RTC_ByteToBcd2()
1884 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1892 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1895 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1896 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/src/
Dstm32f7xx_hal_rtc.c1884 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1888 while (number >= 10U) in RTC_ByteToBcd2()
1891 number -= 10U; in RTC_ByteToBcd2()
1894 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1902 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1905 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1906 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32f3xx/drivers/src/
Dstm32f3xx_hal_rtc.c1893 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1897 while (number >= 10U) in RTC_ByteToBcd2()
1900 number -= 10U; in RTC_ByteToBcd2()
1903 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1911 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1914 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1915 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/src/
Dstm32l0xx_hal_rtc.c1896 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1900 while (number >= 10U) in RTC_ByteToBcd2()
1903 number -= 10U; in RTC_ByteToBcd2()
1906 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1914 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1917 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1918 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/src/
Dstm32l1xx_hal_rtc.c1935 uint8_t RTC_ByteToBcd2(uint8_t number) in RTC_ByteToBcd2() argument
1939 while (number >= 10U) in RTC_ByteToBcd2()
1942 number -= 10U; in RTC_ByteToBcd2()
1945 return ((uint8_t)(bcdhigh << 4U) | number); in RTC_ByteToBcd2()
1953 uint8_t RTC_Bcd2ToByte(uint8_t number) in RTC_Bcd2ToByte() argument
1956 tens = (((uint32_t)number & 0xF0U) >> 4U) * 10U; in RTC_Bcd2ToByte()
1957 return (uint8_t)(tens + ((uint32_t)number & 0x0FU)); in RTC_Bcd2ToByte()
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/include/
Dstm32f2xx_hal_rtc.h821 uint8_t RTC_ByteToBcd2(uint8_t number);
822 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32wb0x/drivers/include/
Dstm32wb0x_hal_rtc.h753 uint8_t RTC_ByteToBcd2(uint8_t number);
754 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32l0xx/drivers/include/
Dstm32l0xx_hal_rtc.h929 uint8_t RTC_ByteToBcd2(uint8_t number);
930 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32f0xx/drivers/include/
Dstm32f0xx_hal_rtc.h902 uint8_t RTC_ByteToBcd2(uint8_t number);
903 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/include/
Dstm32f7xx_hal_rtc.h903 uint8_t RTC_ByteToBcd2(uint8_t number);
904 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/include/
Dstm32l1xx_hal_rtc.h925 uint8_t RTC_ByteToBcd2(uint8_t number);
926 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32f3xx/drivers/include/
Dstm32f3xx_hal_rtc.h908 uint8_t RTC_ByteToBcd2(uint8_t number);
909 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_hal_rtc.h904 uint8_t RTC_ByteToBcd2(uint8_t number);
905 uint8_t RTC_Bcd2ToByte(uint8_t number);
/hal_stm32-latest/
DREADME.rst32 If there are changes in the number of *.c files the Kconfig file in the