--- revised i2c timing defines

This commit is contained in:
Yunhorn 2024-09-09 16:11:51 +08:00
parent 00828b3334
commit d9695e223e
6 changed files with 349 additions and 331 deletions

View File

@ -95,6 +95,23 @@ void Error_Handler(void);
#define TOF_C_XSHUT_Pin GPIO_PIN_5
#define TOF_C_XSHUT_GPIO_Port GPIOB
#ifdef STM32WLE5xx
#define I2C2_SCL_PIN GPIO_PIN_12
#define I2C2_SDA_PIN GPIO_PIN_11
#define I2C2_SCL_PORT GPIOA
#define I2C2_SDA_PORT GPIOA
// FOR STM32WLE5CCU6 UFQFPN48 PA12 PA11
#define I2C2_STANDARD_100K 0x00000E14
#define I2C2_FAST_400K 0x00000004
#define I2C2_FAST_PLUS_1M 0x00000000
#endif
/* USER CODE END Private defines */
#ifdef __cplusplus

View File

@ -43,7 +43,7 @@ void MX_I2C2_Init(void)
/* USER CODE END I2C2_Init 1 */
hi2c2.Instance = I2C2;
hi2c2.Init.Timing = 0x2010091A; //0x2010091A = 400K Fast Mode, 0x20303E5D, 100K Standard mode, 0x20000209 Fast Mode Plus, 1Mbps
hi2c2.Init.Timing = I2C2_FAST_400K;
hi2c2.Init.OwnAddress1 = 0;
hi2c2.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
hi2c2.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
@ -100,12 +100,12 @@ void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle)
PA12 ------> I2C2_SCL
PA11 ------> I2C2_SDA
*/
GPIO_InitStruct.Pin = GPIO_PIN_12|GPIO_PIN_11;
GPIO_InitStruct.Pin = I2C2_SCL_PIN|I2C2_SDA_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_NOPULL; //GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF4_I2C2;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
HAL_GPIO_Init(I2C2_SCL_PORT, &GPIO_InitStruct);
/* I2C2 clock enable */
__HAL_RCC_I2C2_CLK_ENABLE();
@ -176,9 +176,9 @@ void HAL_I2C_MspDeInit(I2C_HandleTypeDef* i2cHandle)
PA12 ------> I2C2_SCL
PA11 ------> I2C2_SDA
*/
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_12);
HAL_GPIO_DeInit(I2C2_SCL_PORT, I2C2_SCL_PIN);
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_11);
HAL_GPIO_DeInit(I2C2_SCL_PORT, I2C2_SDA_PIN);
/* I2C2 DMA DeInit */
HAL_DMA_DeInit(i2cHandle->hdmarx);

Binary file not shown.

View File

@ -2719,476 +2719,477 @@ LOAD D:/STM32CubeIDE/STM32CubeIDE_1.15.0/STM32CubeIDE/plugins/com.st.stm32cube.i
0x08001910 0xf0 ./Application/User/Core/gpio.o
0x08001910 MX_GPIO_Init
.text.MX_I2C2_Init
0x08001a00 0x58 ./Application/User/Core/i2c.o
0x08001a00 0x54 ./Application/User/Core/i2c.o
0x08001a00 MX_I2C2_Init
.text.HAL_I2C_MspInit
0x08001a58 0xf4 ./Application/User/Core/i2c.o
0x08001a58 HAL_I2C_MspInit
.text._write 0x08001b4c 0x18 ./Application/User/Core/main.o
0x08001b4c _write
0x08001a54 0xf4 ./Application/User/Core/i2c.o
0x08001a54 HAL_I2C_MspInit
.text._write 0x08001b48 0x18 ./Application/User/Core/main.o
0x08001b48 _write
.text.SystemClock_Config
0x08001b64 0x8c ./Application/User/Core/main.o
0x08001b64 SystemClock_Config
0x08001b60 0x8c ./Application/User/Core/main.o
0x08001b60 SystemClock_Config
.text.startup.main
0x08001bf0 0x34 ./Application/User/Core/main.o
0x08001bf0 main
0x08001bec 0x34 ./Application/User/Core/main.o
0x08001bec main
.text.Error_Handler
0x08001c24 0x4 ./Application/User/Core/main.o
0x08001c24 Error_Handler
0x08001c20 0x4 ./Application/User/Core/main.o
0x08001c20 Error_Handler
.text.MX_RTC_Init
0x08001c28 0x74 ./Application/User/Core/rtc.o
0x08001c28 MX_RTC_Init
0x08001c24 0x74 ./Application/User/Core/rtc.o
0x08001c24 MX_RTC_Init
.text.HAL_RTC_MspInit
0x08001c9c 0x7c ./Application/User/Core/rtc.o
0x08001c9c HAL_RTC_MspInit
0x08001c98 0x7c ./Application/User/Core/rtc.o
0x08001c98 HAL_RTC_MspInit
.text.PWR_EnterOffMode
0x08001d18 0x2 ./Application/User/Core/stm32_lpm_if.o
0x08001d18 PWR_EnterOffMode
*fill* 0x08001d1a 0x2
0x08001d14 0x2 ./Application/User/Core/stm32_lpm_if.o
0x08001d14 PWR_EnterOffMode
*fill* 0x08001d16 0x2
.text.PWR_EnterStopMode
0x08001d1c 0x1c ./Application/User/Core/stm32_lpm_if.o
0x08001d1c PWR_EnterStopMode
0x08001d18 0x1c ./Application/User/Core/stm32_lpm_if.o
0x08001d18 PWR_EnterStopMode
.text.PWR_ExitSleepMode
0x08001d38 0x4 ./Application/User/Core/stm32_lpm_if.o
0x08001d38 PWR_ExitSleepMode
0x08001d34 0x4 ./Application/User/Core/stm32_lpm_if.o
0x08001d34 PWR_ExitSleepMode
.text.PWR_ExitStopMode
0x08001d3c 0xe ./Application/User/Core/stm32_lpm_if.o
0x08001d3c PWR_ExitStopMode
0x08001d38 0xe ./Application/User/Core/stm32_lpm_if.o
0x08001d38 PWR_ExitStopMode
.text.PWR_EnterSleepMode
0x08001d4a 0x12 ./Application/User/Core/stm32_lpm_if.o
0x08001d4a PWR_EnterSleepMode
0x08001d46 0x12 ./Application/User/Core/stm32_lpm_if.o
0x08001d46 PWR_EnterSleepMode
.text.PWR_ExitOffMode
0x08001d5c 0x2 ./Application/User/Core/stm32_lpm_if.o
0x08001d5c PWR_ExitOffMode
0x08001d58 0x2 ./Application/User/Core/stm32_lpm_if.o
0x08001d58 PWR_ExitOffMode
.text.HAL_MspInit
0x08001d5e 0x2 ./Application/User/Core/stm32wlxx_hal_msp.o
0x08001d5e HAL_MspInit
0x08001d5a 0x2 ./Application/User/Core/stm32wlxx_hal_msp.o
0x08001d5a HAL_MspInit
.text.NMI_Handler
0x08001d60 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d60 NMI_Handler
0x08001d5c 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d5c NMI_Handler
.text.HardFault_Handler
0x08001d62 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d62 HardFault_Handler
0x08001d5e 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d5e HardFault_Handler
.text.MemManage_Handler
0x08001d64 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d64 MemManage_Handler
0x08001d60 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d60 MemManage_Handler
.text.BusFault_Handler
0x08001d66 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d66 BusFault_Handler
0x08001d62 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d62 BusFault_Handler
.text.UsageFault_Handler
0x08001d68 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d68 UsageFault_Handler
0x08001d64 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d64 UsageFault_Handler
.text.SVC_Handler
0x08001d6a 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d6a SVC_Handler
0x08001d66 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d66 SVC_Handler
.text.DebugMon_Handler
0x08001d6c 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d6c DebugMon_Handler
0x08001d68 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d68 DebugMon_Handler
.text.PendSV_Handler
0x08001d6e 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d6e PendSV_Handler
0x08001d6a 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d6a PendSV_Handler
.text.SysTick_Handler
0x08001d70 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d70 SysTick_Handler
*fill* 0x08001d72 0x2
0x08001d6c 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d6c SysTick_Handler
*fill* 0x08001d6e 0x2
.text.TAMP_STAMP_LSECSS_SSRU_IRQHandler
0x08001d74 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d74 TAMP_STAMP_LSECSS_SSRU_IRQHandler
0x08001d70 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d70 TAMP_STAMP_LSECSS_SSRU_IRQHandler
.text.EXTI0_IRQHandler
0x08001d80 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d80 EXTI0_IRQHandler
0x08001d7c 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d7c EXTI0_IRQHandler
.text.EXTI1_IRQHandler
0x08001d8c 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001d8c EXTI1_IRQHandler
0x08001d88 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001d88 EXTI1_IRQHandler
.text.DMA1_Channel2_IRQHandler
0x08001d92 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d92 DMA1_Channel2_IRQHandler
0x08001d8e 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d8e DMA1_Channel2_IRQHandler
.text.DMA1_Channel3_IRQHandler
0x08001d94 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d94 DMA1_Channel3_IRQHandler
*fill* 0x08001d96 0x2
0x08001d90 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001d90 DMA1_Channel3_IRQHandler
*fill* 0x08001d92 0x2
.text.DMA1_Channel4_IRQHandler
0x08001d98 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d98 DMA1_Channel4_IRQHandler
0x08001d94 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001d94 DMA1_Channel4_IRQHandler
.text.DMA1_Channel5_IRQHandler
0x08001da4 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001da4 DMA1_Channel5_IRQHandler
0x08001da0 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001da0 DMA1_Channel5_IRQHandler
.text.DMA1_Channel6_IRQHandler
0x08001db0 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001db0 DMA1_Channel6_IRQHandler
0x08001dac 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001dac DMA1_Channel6_IRQHandler
.text.DMA1_Channel7_IRQHandler
0x08001dbc 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001dbc DMA1_Channel7_IRQHandler
0x08001db8 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001db8 DMA1_Channel7_IRQHandler
.text.EXTI4_IRQHandler
0x08001dc8 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001dc8 EXTI4_IRQHandler
0x08001dc4 0x2 ./Application/User/Core/stm32wlxx_it.o
0x08001dc4 EXTI4_IRQHandler
.text.EXTI9_5_IRQHandler
0x08001dca 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001dca EXTI9_5_IRQHandler
0x08001dc6 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001dc6 EXTI9_5_IRQHandler
.text.EXTI3_IRQHandler
0x08001dd0 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001dd0 EXTI3_IRQHandler
*fill* 0x08001dd6 0x2
0x08001dcc 0x6 ./Application/User/Core/stm32wlxx_it.o
0x08001dcc EXTI3_IRQHandler
*fill* 0x08001dd2 0x2
.text.USART2_IRQHandler
0x08001dd8 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001dd8 USART2_IRQHandler
0x08001dd4 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001dd4 USART2_IRQHandler
.text.RTC_Alarm_IRQHandler
0x08001de4 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001de4 RTC_Alarm_IRQHandler
0x08001de0 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001de0 RTC_Alarm_IRQHandler
.text.SUBGHZ_Radio_IRQHandler
0x08001df0 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001df0 SUBGHZ_Radio_IRQHandler
0x08001dec 0xc ./Application/User/Core/stm32wlxx_it.o
0x08001dec SUBGHZ_Radio_IRQHandler
.text.MX_SUBGHZ_Init
0x08001dfc 0x1c ./Application/User/Core/subghz.o
0x08001dfc MX_SUBGHZ_Init
0x08001df8 0x1c ./Application/User/Core/subghz.o
0x08001df8 MX_SUBGHZ_Init
.text.HAL_SUBGHZ_MspInit
0x08001e18 0x2e ./Application/User/Core/subghz.o
0x08001e18 HAL_SUBGHZ_MspInit
*fill* 0x08001e46 0x2
0x08001e14 0x2e ./Application/User/Core/subghz.o
0x08001e14 HAL_SUBGHZ_MspInit
*fill* 0x08001e42 0x2
.text.tiny_snprintf_like.constprop.0
0x08001e48 0x20 ./Application/User/Core/sys_app.o
0x08001e44 0x20 ./Application/User/Core/sys_app.o
.text.TimestampNow
0x08001e68 0x30 ./Application/User/Core/sys_app.o
0x08001e64 0x30 ./Application/User/Core/sys_app.o
.text.SystemApp_Init
0x08001e98 0x60 ./Application/User/Core/sys_app.o
0x08001e98 SystemApp_Init
0x08001e94 0x60 ./Application/User/Core/sys_app.o
0x08001e94 SystemApp_Init
.text.UTIL_SEQ_Idle
0x08001ef8 0x4 ./Application/User/Core/sys_app.o
0x08001ef8 UTIL_SEQ_Idle
0x08001ef4 0x4 ./Application/User/Core/sys_app.o
0x08001ef4 UTIL_SEQ_Idle
.text.GetBatteryLevel
0x08001efc 0x30 ./Application/User/Core/sys_app.o
0x08001efc GetBatteryLevel
0x08001ef8 0x30 ./Application/User/Core/sys_app.o
0x08001ef8 GetBatteryLevel
.text.GetTemperatureLevel
0x08001f2c 0x16 ./Application/User/Core/sys_app.o
0x08001f2c GetTemperatureLevel
*fill* 0x08001f42 0x2
0x08001f28 0x16 ./Application/User/Core/sys_app.o
0x08001f28 GetTemperatureLevel
*fill* 0x08001f3e 0x2
.text.GetUniqueId
0x08001f44 0x6c ./Application/User/Core/sys_app.o
0x08001f44 GetUniqueId
0x08001f40 0x6c ./Application/User/Core/sys_app.o
0x08001f40 GetUniqueId
.text.GetDevAddr
0x08001fb0 0x2c ./Application/User/Core/sys_app.o
0x08001fb0 GetDevAddr
0x08001fac 0x2c ./Application/User/Core/sys_app.o
0x08001fac GetDevAddr
.text.UTIL_ADV_TRACE_PreSendHook
0x08001fdc 0x8 ./Application/User/Core/sys_app.o
0x08001fdc UTIL_ADV_TRACE_PreSendHook
0x08001fd8 0x8 ./Application/User/Core/sys_app.o
0x08001fd8 UTIL_ADV_TRACE_PreSendHook
.text.UTIL_ADV_TRACE_PostSendHook
0x08001fe4 0x8 ./Application/User/Core/sys_app.o
0x08001fe4 UTIL_ADV_TRACE_PostSendHook
0x08001fe0 0x8 ./Application/User/Core/sys_app.o
0x08001fe0 UTIL_ADV_TRACE_PostSendHook
.text.HAL_InitTick
0x08001fec 0x4 ./Application/User/Core/sys_app.o
0x08001fec HAL_InitTick
0x08001fe8 0x4 ./Application/User/Core/sys_app.o
0x08001fe8 HAL_InitTick
.text.HAL_GetTick
0x08001ff0 0x10 ./Application/User/Core/sys_app.o
0x08001ff0 HAL_GetTick
0x08001fec 0x10 ./Application/User/Core/sys_app.o
0x08001fec HAL_GetTick
.text.HAL_Delay
0x08002000 0xc ./Application/User/Core/sys_app.o
0x08002000 HAL_Delay
0x08001ffc 0xc ./Application/User/Core/sys_app.o
0x08001ffc HAL_Delay
.text.LL_AHB2_GRP1_EnableClock.constprop.0
0x0800200c 0x1c ./Application/User/Core/sys_debug.o
0x08002008 0x1c ./Application/User/Core/sys_debug.o
.text.DBG_Init
0x08002028 0xb4 ./Application/User/Core/sys_debug.o
0x08002028 DBG_Init
0x08002024 0xb4 ./Application/User/Core/sys_debug.o
0x08002024 DBG_Init
.text.EnvSensors_Read
0x080020dc 0x38 ./Application/User/Core/sys_sensors.o
0x080020dc EnvSensors_Read
0x080020d8 0x38 ./Application/User/Core/sys_sensors.o
0x080020d8 EnvSensors_Read
.text.EnvSensors_Init
0x08002114 0x4 ./Application/User/Core/sys_sensors.o
0x08002114 EnvSensors_Init
.text._read 0x08002118 0x1c ./Application/User/Core/syscalls.o
0x08002118 _read
.text._close 0x08002134 0x6 ./Application/User/Core/syscalls.o
0x08002134 _close
.text._fstat 0x0800213a 0xa ./Application/User/Core/syscalls.o
0x0800213a _fstat
.text._isatty 0x08002144 0x4 ./Application/User/Core/syscalls.o
0x08002144 _isatty
.text._lseek 0x08002148 0x4 ./Application/User/Core/syscalls.o
0x08002148 _lseek
.text._sbrk 0x0800214c 0x40 ./Application/User/Core/sysmem.o
0x0800214c _sbrk
0x08002110 0x4 ./Application/User/Core/sys_sensors.o
0x08002110 EnvSensors_Init
.text._read 0x08002114 0x1c ./Application/User/Core/syscalls.o
0x08002114 _read
.text._close 0x08002130 0x6 ./Application/User/Core/syscalls.o
0x08002130 _close
.text._fstat 0x08002136 0xa ./Application/User/Core/syscalls.o
0x08002136 _fstat
.text._isatty 0x08002140 0x4 ./Application/User/Core/syscalls.o
0x08002140 _isatty
.text._lseek 0x08002144 0x4 ./Application/User/Core/syscalls.o
0x08002144 _lseek
.text._sbrk 0x08002148 0x40 ./Application/User/Core/sysmem.o
0x08002148 _sbrk
.text.TIMER_IF_GetTimerContext
0x0800218c 0xc ./Application/User/Core/timer_if.o
0x0800218c TIMER_IF_GetTimerContext
0x08002188 0xc ./Application/User/Core/timer_if.o
0x08002188 TIMER_IF_GetTimerContext
.text.TIMER_IF_GetMinimumTimeout
0x08002198 0x4 ./Application/User/Core/timer_if.o
0x08002198 TIMER_IF_GetMinimumTimeout
0x08002194 0x4 ./Application/User/Core/timer_if.o
0x08002194 TIMER_IF_GetMinimumTimeout
.text.TIMER_IF_Convert_ms2Tick
0x0800219c 0x14 ./Application/User/Core/timer_if.o
0x0800219c TIMER_IF_Convert_ms2Tick
0x08002198 0x14 ./Application/User/Core/timer_if.o
0x08002198 TIMER_IF_Convert_ms2Tick
.text.TIMER_IF_Convert_Tick2ms
0x080021b0 0x10 ./Application/User/Core/timer_if.o
0x080021b0 TIMER_IF_Convert_Tick2ms
0x080021ac 0x10 ./Application/User/Core/timer_if.o
0x080021ac TIMER_IF_Convert_Tick2ms
.text.GetTimerTicks
0x080021c0 0x14 ./Application/User/Core/timer_if.o
0x080021bc 0x14 ./Application/User/Core/timer_if.o
.text.TIMER_IF_SetTimerContext
0x080021d4 0x10 ./Application/User/Core/timer_if.o
0x080021d4 TIMER_IF_SetTimerContext
0x080021d0 0x10 ./Application/User/Core/timer_if.o
0x080021d0 TIMER_IF_SetTimerContext
.text.TIMER_IF_GetTimerElapsedTime
0x080021e4 0x14 ./Application/User/Core/timer_if.o
0x080021e4 TIMER_IF_GetTimerElapsedTime
0x080021e0 0x14 ./Application/User/Core/timer_if.o
0x080021e0 TIMER_IF_GetTimerElapsedTime
.text.TIMER_IF_GetTimerValue
0x080021f8 0x10 ./Application/User/Core/timer_if.o
0x080021f8 TIMER_IF_GetTimerValue
0x080021f4 0x10 ./Application/User/Core/timer_if.o
0x080021f4 TIMER_IF_GetTimerValue
.text.TIMER_IF_StopTimer
0x08002208 0x28 ./Application/User/Core/timer_if.o
0x08002208 TIMER_IF_StopTimer
0x08002204 0x28 ./Application/User/Core/timer_if.o
0x08002204 TIMER_IF_StopTimer
.text.TIMER_IF_BkUp_Write_Seconds
0x08002230 0x10 ./Application/User/Core/timer_if.o
0x08002230 TIMER_IF_BkUp_Write_Seconds
0x0800222c 0x10 ./Application/User/Core/timer_if.o
0x0800222c TIMER_IF_BkUp_Write_Seconds
.text.TIMER_IF_BkUp_Write_SubSeconds
0x08002240 0x10 ./Application/User/Core/timer_if.o
0x08002240 TIMER_IF_BkUp_Write_SubSeconds
0x0800223c 0x10 ./Application/User/Core/timer_if.o
0x0800223c TIMER_IF_BkUp_Write_SubSeconds
.text.TIMER_IF_StartTimer
0x08002250 0x50 ./Application/User/Core/timer_if.o
0x08002250 TIMER_IF_StartTimer
0x0800224c 0x50 ./Application/User/Core/timer_if.o
0x0800224c TIMER_IF_StartTimer
.text.TIMER_IF_GetTime
0x080022a0 0x30 ./Application/User/Core/timer_if.o
0x080022a0 TIMER_IF_GetTime
0x0800229c 0x30 ./Application/User/Core/timer_if.o
0x0800229c TIMER_IF_GetTime
.text.TIMER_IF_BkUp_Read_Seconds
0x080022d0 0xc ./Application/User/Core/timer_if.o
0x080022d0 TIMER_IF_BkUp_Read_Seconds
0x080022cc 0xc ./Application/User/Core/timer_if.o
0x080022cc TIMER_IF_BkUp_Read_Seconds
.text.TIMER_IF_BkUp_Read_SubSeconds
0x080022dc 0xc ./Application/User/Core/timer_if.o
0x080022dc TIMER_IF_BkUp_Read_SubSeconds
0x080022d8 0xc ./Application/User/Core/timer_if.o
0x080022d8 TIMER_IF_BkUp_Read_SubSeconds
.text.TIMER_IF_Init
0x080022e8 0x48 ./Application/User/Core/timer_if.o
0x080022e8 TIMER_IF_Init
0x080022e4 0x48 ./Application/User/Core/timer_if.o
0x080022e4 TIMER_IF_Init
.text.TIMER_IF_DelayMs
0x08002330 0x2a ./Application/User/Core/timer_if.o
0x08002330 TIMER_IF_DelayMs
0x0800232c 0x2a ./Application/User/Core/timer_if.o
0x0800232c TIMER_IF_DelayMs
.text.HAL_RTC_AlarmAEventCallback
0x0800235a 0x4 ./Application/User/Core/timer_if.o
0x0800235a HAL_RTC_AlarmAEventCallback
*fill* 0x0800235e 0x2
0x08002356 0x4 ./Application/User/Core/timer_if.o
0x08002356 HAL_RTC_AlarmAEventCallback
*fill* 0x0800235a 0x2
.text.HAL_RTCEx_SSRUEventCallback
0x08002360 0x20 ./Application/User/Core/timer_if.o
0x08002360 HAL_RTCEx_SSRUEventCallback
0x0800235c 0x20 ./Application/User/Core/timer_if.o
0x0800235c HAL_RTCEx_SSRUEventCallback
.text.MX_USART2_UART_Init
0x08002380 0x64 ./Application/User/Core/usart.o
0x08002380 MX_USART2_UART_Init
0x0800237c 0x64 ./Application/User/Core/usart.o
0x0800237c MX_USART2_UART_Init
.text.HAL_UART_MspInit
0x080023e4 0x104 ./Application/User/Core/usart.o
0x080023e4 HAL_UART_MspInit
0x080023e0 0x104 ./Application/User/Core/usart.o
0x080023e0 HAL_UART_MspInit
.text.HAL_UART_MspDeInit
0x080024e8 0x40 ./Application/User/Core/usart.o
0x080024e8 HAL_UART_MspDeInit
0x080024e4 0x40 ./Application/User/Core/usart.o
0x080024e4 HAL_UART_MspDeInit
.text.vcom_Trace_DMA
0x08002528 0x14 ./Application/User/Core/usart_if.o
0x08002528 vcom_Trace_DMA
0x08002524 0x14 ./Application/User/Core/usart_if.o
0x08002524 vcom_Trace_DMA
.text.vcom_ReceiveInit
0x0800253c 0x54 ./Application/User/Core/usart_if.o
0x0800253c vcom_ReceiveInit
0x08002538 0x54 ./Application/User/Core/usart_if.o
0x08002538 vcom_ReceiveInit
.text.vcom_Init
0x08002590 0x28 ./Application/User/Core/usart_if.o
0x08002590 vcom_Init
0x0800258c 0x28 ./Application/User/Core/usart_if.o
0x0800258c vcom_Init
.text.vcom_DeInit
0x080025b8 0x2c ./Application/User/Core/usart_if.o
0x080025b8 vcom_DeInit
0x080025b4 0x2c ./Application/User/Core/usart_if.o
0x080025b4 vcom_DeInit
.text.vcom_Resume
0x080025e4 0x28 ./Application/User/Core/usart_if.o
0x080025e4 vcom_Resume
0x080025e0 0x28 ./Application/User/Core/usart_if.o
0x080025e0 vcom_Resume
.text.HAL_UART_TxCpltCallback
0x0800260c 0x1c ./Application/User/Core/usart_if.o
0x0800260c HAL_UART_TxCpltCallback
0x08002608 0x1c ./Application/User/Core/usart_if.o
0x08002608 HAL_UART_TxCpltCallback
.text.HAL_UART_RxCpltCallback
0x08002628 0x3c ./Application/User/Core/usart_if.o
0x08002628 HAL_UART_RxCpltCallback
0x08002624 0x3c ./Application/User/Core/usart_if.o
0x08002624 HAL_UART_RxCpltCallback
.text.MX_LoRaWAN_Init
0x08002664 0xe ./Application/User/LoRaWAN/App/app_lorawan.o
0x08002664 MX_LoRaWAN_Init
0x08002660 0xe ./Application/User/LoRaWAN/App/app_lorawan.o
0x08002660 MX_LoRaWAN_Init
.text.MX_LoRaWAN_Process
0x08002672 0x8 ./Application/User/LoRaWAN/App/app_lorawan.o
0x08002672 MX_LoRaWAN_Process
0x0800266e 0x8 ./Application/User/LoRaWAN/App/app_lorawan.o
0x0800266e MX_LoRaWAN_Process
.text.OnSysTimeUpdate
0x0800267a 0x2 ./Application/User/LoRaWAN/App/lora_app.o
0x08002676 0x2 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnTxFrameCtrlChanged
0x0800267c 0xc ./Application/User/LoRaWAN/App/lora_app.o
0x08002678 0xc ./Application/User/LoRaWAN/App/lora_app.o
.text.OnPingSlotPeriodicityChanged
0x08002688 0xc ./Application/User/LoRaWAN/App/lora_app.o
0x08002684 0xc ./Application/User/LoRaWAN/App/lora_app.o
.text.OnClassChange
0x08002694 0x24 ./Application/User/LoRaWAN/App/lora_app.o
0x08002690 0x24 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnMacProcessNotify
0x080026b8 0x8 ./Application/User/LoRaWAN/App/lora_app.o
0x080026b4 0x8 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnTxPeriodicityChanged
0x080026c0 0x30 ./Application/User/LoRaWAN/App/lora_app.o
0x080026bc 0x30 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnJoinRequest
0x080026f0 0x90 ./Application/User/LoRaWAN/App/lora_app.o
0x080026ec 0x90 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnStopJoinTimerEvent
0x08002780 0x44 ./Application/User/LoRaWAN/App/lora_app.o
0x0800277c 0x44 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnRxTimerLedEvent
0x080027c4 0x10 ./Application/User/LoRaWAN/App/lora_app.o
0x080027c0 0x10 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnTxTimerLedEvent
0x080027d4 0x10 ./Application/User/LoRaWAN/App/lora_app.o
0x080027d0 0x10 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnRestoreContextRequest
0x080027e4 0xc ./Application/User/LoRaWAN/App/lora_app.o
0x080027e0 0xc ./Application/User/LoRaWAN/App/lora_app.o
.text.StopJoin
0x080027f0 0xa0 ./Application/User/LoRaWAN/App/lora_app.o
0x080027ec 0xa0 ./Application/User/LoRaWAN/App/lora_app.o
.text.SendTxData
0x08002890 0x240 ./Application/User/LoRaWAN/App/lora_app.o
0x0800288c 0x240 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnJoinTimerLedEvent
0x08002ad0 0x10 ./Application/User/LoRaWAN/App/lora_app.o
0x08002acc 0x10 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnBeaconStatusChange
0x08002ae0 0x7c ./Application/User/LoRaWAN/App/lora_app.o
0x08002adc 0x7c ./Application/User/LoRaWAN/App/lora_app.o
.text.OnNvmDataChange
0x08002b5c 0x1c ./Application/User/LoRaWAN/App/lora_app.o
0x08002b58 0x1c ./Application/User/LoRaWAN/App/lora_app.o
.text.OnTxTimerEvent
0x08002b78 0x58 ./Application/User/LoRaWAN/App/lora_app.o
0x08002b74 0x58 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnSystemReset
0x08002bd0 0x34 ./Application/User/LoRaWAN/App/lora_app.o
0x08002bcc 0x34 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnTxData
0x08002c04 0xb4 ./Application/User/LoRaWAN/App/lora_app.o
0x08002c00 0xb4 ./Application/User/LoRaWAN/App/lora_app.o
.text.OnRxData
0x08002cb8 0xdc ./Application/User/LoRaWAN/App/lora_app.o
0x08002cb4 0xdc ./Application/User/LoRaWAN/App/lora_app.o
.text.OnStoreContextRequest
0x08002d94 0x28 ./Application/User/LoRaWAN/App/lora_app.o
0x08002d90 0x28 ./Application/User/LoRaWAN/App/lora_app.o
.text.StoreContext
0x08002dbc 0x30 ./Application/User/LoRaWAN/App/lora_app.o
0x08002db8 0x30 ./Application/User/LoRaWAN/App/lora_app.o
.text.LoRaWAN_Init
0x08002dec 0x1c4 ./Application/User/LoRaWAN/App/lora_app.o
0x08002dec LoRaWAN_Init
0x08002de8 0x1c4 ./Application/User/LoRaWAN/App/lora_app.o
0x08002de8 LoRaWAN_Init
.text.HAL_GPIO_EXTI_Callback
0x08002fb0 0x34 ./Application/User/LoRaWAN/App/lora_app.o
0x08002fb0 HAL_GPIO_EXTI_Callback
0x08002fac 0x34 ./Application/User/LoRaWAN/App/lora_app.o
0x08002fac HAL_GPIO_EXTI_Callback
.text.LoraInfo_Init
0x08002fe4 0x14 ./Application/User/LoRaWAN/App/lora_info.o
0x08002fe4 LoraInfo_Init
0x08002fe0 0x14 ./Application/User/LoRaWAN/App/lora_info.o
0x08002fe0 LoraInfo_Init
.text.LoraInfo_GetPtr
0x08002ff8 0x8 ./Application/User/LoRaWAN/App/lora_info.o
0x08002ff8 LoraInfo_GetPtr
0x08002ff4 0x8 ./Application/User/LoRaWAN/App/lora_info.o
0x08002ff4 LoraInfo_GetPtr
.text.LL_AHB2_GRP1_EnableClock
0x08003000 0x18 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x08002ffc 0x18 ./Application/User/LoRaWAN/Target/radio_board_if.o
.text.RBI_Init
0x08003018 0x68 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x08003018 RBI_Init
0x08003014 0x68 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x08003014 RBI_Init
.text.RBI_ConfigRFSwitch
0x08003080 0x44 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x08003080 RBI_ConfigRFSwitch
0x0800307c 0x44 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x0800307c RBI_ConfigRFSwitch
.text.RBI_GetTxConfig
0x080030c4 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030c4 RBI_GetTxConfig
0x080030c0 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030c0 RBI_GetTxConfig
.text.RBI_IsTCXO
0x080030c8 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030c8 RBI_IsTCXO
0x080030c4 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030c4 RBI_IsTCXO
.text.RBI_IsDCDC
0x080030cc 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030cc RBI_IsDCDC
0x080030c8 0x4 ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030c8 RBI_IsDCDC
.text.RBI_GetRFOMaxPowerConfig
0x080030d0 0xa ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030d0 RBI_GetRFOMaxPowerConfig
*fill* 0x080030da 0x2
0x080030cc 0xa ./Application/User/LoRaWAN/Target/radio_board_if.o
0x080030cc RBI_GetRFOMaxPowerConfig
*fill* 0x080030d6 0x2
.text.Reset_Handler
0x080030dc 0x50 ./Application/User/Startup/startup_stm32wle5ccux.o
0x080030dc Reset_Handler
0x080030d8 0x50 ./Application/User/Startup/startup_stm32wle5ccux.o
0x080030d8 Reset_Handler
.text.Default_Handler
0x0800312c 0x2 ./Application/User/Startup/startup_stm32wle5ccux.o
0x0800312c EXTI2_IRQHandler
0x0800312c TIM1_CC_IRQHandler
0x0800312c LPTIM2_IRQHandler
0x0800312c I2C3_ER_IRQHandler
0x0800312c LPTIM3_IRQHandler
0x0800312c I2C2_EV_IRQHandler
0x0800312c SPI1_IRQHandler
0x0800312c DMA2_Channel2_IRQHandler
0x0800312c PKA_IRQHandler
0x0800312c TIM17_IRQHandler
0x0800312c SUBGHZSPI_IRQHandler
0x0800312c DMA2_Channel1_IRQHandler
0x0800312c I2C1_EV_IRQHandler
0x0800312c DMAMUX1_OVR_IRQHandler
0x0800312c TIM16_IRQHandler
0x0800312c DMA2_Channel4_IRQHandler
0x0800312c RCC_IRQHandler
0x0800312c TIM1_TRG_COM_IRQHandler
0x0800312c DMA1_Channel1_IRQHandler
0x0800312c Default_Handler
0x0800312c DMA2_Channel7_IRQHandler
0x0800312c EXTI15_10_IRQHandler
0x0800312c ADC_IRQHandler
0x0800312c I2C3_EV_IRQHandler
0x0800312c RTC_WKUP_IRQHandler
0x0800312c PVD_PVM_IRQHandler
0x0800312c SPI2_IRQHandler
0x0800312c DMA2_Channel5_IRQHandler
0x0800312c RNG_IRQHandler
0x0800312c COMP_IRQHandler
0x0800312c HSEM_IRQHandler
0x0800312c TIM1_UP_IRQHandler
0x0800312c WWDG_IRQHandler
0x0800312c LPUART1_IRQHandler
0x0800312c DMA2_Channel6_IRQHandler
0x0800312c TIM2_IRQHandler
0x0800312c TIM1_BRK_IRQHandler
0x0800312c DAC_IRQHandler
0x0800312c AES_IRQHandler
0x0800312c I2C2_ER_IRQHandler
0x0800312c FLASH_IRQHandler
0x0800312c USART1_IRQHandler
0x0800312c I2C1_ER_IRQHandler
0x0800312c LPTIM1_IRQHandler
0x0800312c DMA2_Channel3_IRQHandler
0x08003128 0x2 ./Application/User/Startup/startup_stm32wle5ccux.o
0x08003128 EXTI2_IRQHandler
0x08003128 TIM1_CC_IRQHandler
0x08003128 LPTIM2_IRQHandler
0x08003128 I2C3_ER_IRQHandler
0x08003128 LPTIM3_IRQHandler
0x08003128 I2C2_EV_IRQHandler
0x08003128 SPI1_IRQHandler
0x08003128 DMA2_Channel2_IRQHandler
0x08003128 PKA_IRQHandler
0x08003128 TIM17_IRQHandler
0x08003128 SUBGHZSPI_IRQHandler
0x08003128 DMA2_Channel1_IRQHandler
0x08003128 I2C1_EV_IRQHandler
0x08003128 DMAMUX1_OVR_IRQHandler
0x08003128 TIM16_IRQHandler
0x08003128 DMA2_Channel4_IRQHandler
0x08003128 RCC_IRQHandler
0x08003128 TIM1_TRG_COM_IRQHandler
0x08003128 DMA1_Channel1_IRQHandler
0x08003128 Default_Handler
0x08003128 DMA2_Channel7_IRQHandler
0x08003128 EXTI15_10_IRQHandler
0x08003128 ADC_IRQHandler
0x08003128 I2C3_EV_IRQHandler
0x08003128 RTC_WKUP_IRQHandler
0x08003128 PVD_PVM_IRQHandler
0x08003128 SPI2_IRQHandler
0x08003128 DMA2_Channel5_IRQHandler
0x08003128 RNG_IRQHandler
0x08003128 COMP_IRQHandler
0x08003128 HSEM_IRQHandler
0x08003128 TIM1_UP_IRQHandler
0x08003128 WWDG_IRQHandler
0x08003128 LPUART1_IRQHandler
0x08003128 DMA2_Channel6_IRQHandler
0x08003128 TIM2_IRQHandler
0x08003128 TIM1_BRK_IRQHandler
0x08003128 DAC_IRQHandler
0x08003128 AES_IRQHandler
0x08003128 I2C2_ER_IRQHandler
0x08003128 FLASH_IRQHandler
0x08003128 USART1_IRQHandler
0x08003128 I2C1_ER_IRQHandler
0x08003128 LPTIM1_IRQHandler
0x08003128 DMA2_Channel3_IRQHandler
.text.LL_AHB2_GRP1_EnableClock
0x0800312e 0x18 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
*fill* 0x08003146 0x2
0x0800312a 0x18 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
*fill* 0x08003142 0x2
.text._ExpanderWR
0x08003148 0x34 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x08003144 0x34 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
.text.XNUCLEO53L1A1_I2C2Configure
0x0800317c 0x168 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x0800317c XNUCLEO53L1A1_I2C2Configure
0x08003178 0x168 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x08003178 XNUCLEO53L1A1_I2C2Configure
.text.XNUCLEO53L1A1_Init
0x080032e4 0x4 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x080032e4 XNUCLEO53L1A1_Init
0x080032e0 0x4 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x080032e0 XNUCLEO53L1A1_Init
.text.XNUCLEO53L1A1_ResetId
0x080032e8 0x70 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x080032e8 XNUCLEO53L1A1_ResetId
0x080032e4 0x70 ./Application/User/TOF/App/X-NUCLEO-53L1A1.o
0x080032e4 XNUCLEO53L1A1_ResetId
.text.ProcessPeopleCountingData
0x08003358 0x224 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003358 ProcessPeopleCountingData
0x08003354 0x224 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003354 ProcessPeopleCountingData
.text.STS_people_count_sensor_Read
0x0800357c 0xc8 ./Application/User/TOF/App/app_tof_peoplecount.o
0x0800357c STS_people_count_sensor_Read
0x08003578 0xc8 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003578 STS_people_count_sensor_Read
.text.sts_tof_vl53lx_peoplecount_init
0x08003644 0x1d0 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003644 sts_tof_vl53lx_peoplecount_init
0x08003640 0x1d0 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003640 sts_tof_vl53lx_peoplecount_init
.text.STS_TOF_VL53LX_PeopleCounting_Process_Init
0x08003814 0x1c ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003814 STS_TOF_VL53LX_PeopleCounting_Process_Init
0x08003810 0x1c ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003810 STS_TOF_VL53LX_PeopleCounting_Process_Init
.text.sts_tof_vl53lx_peoplecount_start
0x08003830 0x110 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003830 sts_tof_vl53lx_peoplecount_start
0x0800382c 0x110 ./Application/User/TOF/App/app_tof_peoplecount.o
0x0800382c sts_tof_vl53lx_peoplecount_start
.text.STS_TOF_VL53LX_PeopleCounting_Process_Start
0x08003940 0x10 ./Application/User/TOF/App/app_tof_peoplecount.o
0x08003940 STS_TOF_VL53LX_PeopleCounting_Process_Start
0x0800393c 0x10 ./Application/User/TOF/App/app_tof_peoplecount.o
0x0800393c STS_TOF_VL53LX_PeopleCounting_Process_Start
.text.VL53L1X_ClearInterrupt
0x08003950 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003950 VL53L1X_ClearInterrupt
0x0800394c 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x0800394c VL53L1X_ClearInterrupt
.text.VL53L1X_GetInterruptPolarity
0x08003958 0x20 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003958 VL53L1X_GetInterruptPolarity
0x08003954 0x20 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003954 VL53L1X_GetInterruptPolarity
.text.VL53L1X_StartRanging
0x08003978 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003978 VL53L1X_StartRanging
0x08003974 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003974 VL53L1X_StartRanging
.text.VL53L1X_StopRanging
0x08003980 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003980 VL53L1X_StopRanging
0x0800397c 0x8 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x0800397c VL53L1X_StopRanging
.text.VL53L1X_CheckForDataReady
0x08003988 0x36 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003988 VL53L1X_CheckForDataReady
*fill* 0x080039be 0x2
0x08003984 0x36 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003984 VL53L1X_CheckForDataReady
*fill* 0x080039ba 0x2
.text.VL53L1X_SensorInit
0x080039c0 0x64 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x080039c0 VL53L1X_SensorInit
0x080039bc 0x64 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x080039bc VL53L1X_SensorInit
.text.VL53L1X_GetTimingBudgetInMs
0x08003a24 0x9e ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003a24 VL53L1X_GetTimingBudgetInMs
0x08003a20 0x9e ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003a20 VL53L1X_GetTimingBudgetInMs
.text.VL53L1X_GetDistanceMode
0x08003ac2 0x26 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003ac2 VL53L1X_GetDistanceMode
0x08003abe 0x26 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003abe VL53L1X_GetDistanceMode
.text.VL53L1X_SetTimingBudgetInMs
0x08003ae8 0x124 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003ae8 VL53L1X_SetTimingBudgetInMs
0x08003ae4 0x124 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003ae4 VL53L1X_SetTimingBudgetInMs
.text.VL53L1X_SetDistanceMode
0x08003c0c 0xac ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003c0c VL53L1X_SetDistanceMode
0x08003c08 0xac ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003c08 VL53L1X_SetDistanceMode
*fill* 0x08003cb4 0x4
.text.VL53L1X_SetInterMeasurementInMs
0x08003cb8 0x50 ./Drivers/BSP/vl53l1x_uld/VL53L1X_api.o
0x08003cb8 VL53L1X_SetInterMeasurementInMs