From 78f7d1c23a8b685314f95fdbaf08c84f6b409368 Mon Sep 17 00:00:00 2001 From: kevin Date: Tue, 24 Aug 2021 21:47:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E5=AE=9A=E6=97=B6=E5=99=A8=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E6=95=B0=E6=8D=AE=E6=95=88=E7=8E=87=E5=BE=88=E9=AB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Core/Inc/stm32f1xx_hal_conf.h | 2 +- Core/Inc/stm32f1xx_it.h | 1 + Core/Src/main.c | 42 + Core/Src/stm32f1xx_hal_msp.c | 50 + Core/Src/stm32f1xx_it.c | 16 +- Debug/Core/Src/main.d | 6 + Debug/Core/Src/main.su | 13 +- Debug/Core/Src/stm32f1xx_hal_msp.d | 8 +- Debug/Core/Src/stm32f1xx_hal_msp.su | 10 +- Debug/Core/Src/stm32f1xx_it.d | 6 + Debug/Core/Src/stm32f1xx_it.su | 1 + Debug/Core/Src/system_stm32f1xx.d | 8 +- .../STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.d | 8 +- .../Src/stm32f1xx_hal_cortex.d | 8 +- .../Src/stm32f1xx_hal_dma.d | 8 +- .../Src/stm32f1xx_hal_exti.d | 8 +- .../Src/stm32f1xx_hal_flash.d | 8 +- .../Src/stm32f1xx_hal_flash_ex.d | 8 +- .../Src/stm32f1xx_hal_gpio.d | 8 +- .../Src/stm32f1xx_hal_gpio_ex.d | 8 +- .../Src/stm32f1xx_hal_i2c.d | 8 +- .../Src/stm32f1xx_hal_pwr.d | 8 +- .../Src/stm32f1xx_hal_rcc.d | 8 +- .../Src/stm32f1xx_hal_rcc_ex.d | 8 +- .../Src/stm32f1xx_hal_sram.d | 8 +- .../Src/stm32f1xx_hal_tim.d | 8 +- .../Src/stm32f1xx_hal_tim.su | 119 + .../Src/stm32f1xx_hal_tim_ex.d | 8 +- .../Src/stm32f1xx_hal_tim_ex.su | 42 + .../Src/stm32f1xx_ll_fsmc.d | 8 +- Debug/HW_Devices/LCD.d | 8 +- Debug/HW_Devices/eeprom.d | 6 + Debug/HW_Devices/iic.d | 8 +- Debug/HW_Devices/touch.d | 6 + Debug/SW_APPs/APP_blood.d | 6 + Debug/SW_APPs/APP_blood.su | 3 +- Debug/SW_APPs/Main_APP.d | 6 + Debug/SW_APPs/windows.d | 6 + Debug/m3s.bin | Bin 44340 -> 46236 bytes Debug/m3s.list | 30714 ++++++++-------- Debug/m3s.map | 2601 +- SW_APPs/APP_blood.c | 50 +- m3s.ioc | 12 +- 43 files changed, 18086 insertions(+), 15792 deletions(-) diff --git a/Core/Inc/stm32f1xx_hal_conf.h b/Core/Inc/stm32f1xx_hal_conf.h index 998626e..897f8cd 100644 --- a/Core/Inc/stm32f1xx_hal_conf.h +++ b/Core/Inc/stm32f1xx_hal_conf.h @@ -63,7 +63,7 @@ /*#define HAL_SMARTCARD_MODULE_ENABLED */ /*#define HAL_SPI_MODULE_ENABLED */ #define HAL_SRAM_MODULE_ENABLED -/*#define HAL_TIM_MODULE_ENABLED */ +#define HAL_TIM_MODULE_ENABLED /*#define HAL_UART_MODULE_ENABLED */ /*#define HAL_USART_MODULE_ENABLED */ /*#define HAL_WWDG_MODULE_ENABLED */ diff --git a/Core/Inc/stm32f1xx_it.h b/Core/Inc/stm32f1xx_it.h index b662e7a..8a2b013 100644 --- a/Core/Inc/stm32f1xx_it.h +++ b/Core/Inc/stm32f1xx_it.h @@ -56,6 +56,7 @@ void SVC_Handler(void); void DebugMon_Handler(void); void PendSV_Handler(void); void SysTick_Handler(void); +void TIM6_IRQHandler(void); /* USER CODE BEGIN EFP */ /* USER CODE END EFP */ diff --git a/Core/Src/main.c b/Core/Src/main.c index abf212f..211eb7c 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -42,6 +42,8 @@ /* Private variables ---------------------------------------------------------*/ I2C_HandleTypeDef hi2c2; +TIM_HandleTypeDef htim6; + SRAM_HandleTypeDef hsram1; /* USER CODE BEGIN PV */ @@ -53,6 +55,7 @@ void SystemClock_Config(void); static void MX_GPIO_Init(void); static void MX_FSMC_Init(void); static void MX_I2C2_Init(void); +static void MX_TIM6_Init(void); /* USER CODE BEGIN PFP */ /* USER CODE END PFP */ @@ -92,6 +95,7 @@ int main(void) MX_GPIO_Init(); MX_FSMC_Init(); MX_I2C2_Init(); + MX_TIM6_Init(); /* USER CODE BEGIN 2 */ main_app(); /* USER CODE END 2 */ @@ -179,6 +183,44 @@ static void MX_I2C2_Init(void) } +/** + * @brief TIM6 Initialization Function + * @param None + * @retval None + */ +static void MX_TIM6_Init(void) +{ + + /* USER CODE BEGIN TIM6_Init 0 */ + + /* USER CODE END TIM6_Init 0 */ + + TIM_MasterConfigTypeDef sMasterConfig = {0}; + + /* USER CODE BEGIN TIM6_Init 1 */ + + /* USER CODE END TIM6_Init 1 */ + htim6.Instance = TIM6; + htim6.Init.Prescaler = 72-1; + htim6.Init.CounterMode = TIM_COUNTERMODE_UP; + htim6.Init.Period = 10000-1; + htim6.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim6) != HAL_OK) + { + Error_Handler(); + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + if (HAL_TIMEx_MasterConfigSynchronization(&htim6, &sMasterConfig) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM6_Init 2 */ + + /* USER CODE END TIM6_Init 2 */ + +} + /** * @brief GPIO Initialization Function * @param None diff --git a/Core/Src/stm32f1xx_hal_msp.c b/Core/Src/stm32f1xx_hal_msp.c index 5a4e074..4166f7f 100644 --- a/Core/Src/stm32f1xx_hal_msp.c +++ b/Core/Src/stm32f1xx_hal_msp.c @@ -146,6 +146,56 @@ void HAL_I2C_MspDeInit(I2C_HandleTypeDef* hi2c) } +/** +* @brief TIM_Base MSP Initialization +* This function configures the hardware resources used in this example +* @param htim_base: TIM_Base handle pointer +* @retval None +*/ +void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* htim_base) +{ + if(htim_base->Instance==TIM6) + { + /* USER CODE BEGIN TIM6_MspInit 0 */ + + /* USER CODE END TIM6_MspInit 0 */ + /* Peripheral clock enable */ + __HAL_RCC_TIM6_CLK_ENABLE(); + /* TIM6 interrupt Init */ + HAL_NVIC_SetPriority(TIM6_IRQn, 0, 0); + HAL_NVIC_EnableIRQ(TIM6_IRQn); + /* USER CODE BEGIN TIM6_MspInit 1 */ + + /* USER CODE END TIM6_MspInit 1 */ + } + +} + +/** +* @brief TIM_Base MSP De-Initialization +* This function freeze the hardware resources used in this example +* @param htim_base: TIM_Base handle pointer +* @retval None +*/ +void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* htim_base) +{ + if(htim_base->Instance==TIM6) + { + /* USER CODE BEGIN TIM6_MspDeInit 0 */ + + /* USER CODE END TIM6_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM6_CLK_DISABLE(); + + /* TIM6 interrupt DeInit */ + HAL_NVIC_DisableIRQ(TIM6_IRQn); + /* USER CODE BEGIN TIM6_MspDeInit 1 */ + + /* USER CODE END TIM6_MspDeInit 1 */ + } + +} + static uint32_t FSMC_Initialized = 0; static void HAL_FSMC_MspInit(void){ diff --git a/Core/Src/stm32f1xx_it.c b/Core/Src/stm32f1xx_it.c index 5dc9f33..20ee0c9 100644 --- a/Core/Src/stm32f1xx_it.c +++ b/Core/Src/stm32f1xx_it.c @@ -56,7 +56,7 @@ /* USER CODE END 0 */ /* External variables --------------------------------------------------------*/ - +extern TIM_HandleTypeDef htim6; /* USER CODE BEGIN EV */ /* USER CODE END EV */ @@ -199,6 +199,20 @@ void SysTick_Handler(void) /* please refer to the startup file (startup_stm32f1xx.s). */ /******************************************************************************/ +/** + * @brief This function handles TIM6 global interrupt. + */ +void TIM6_IRQHandler(void) +{ + /* USER CODE BEGIN TIM6_IRQn 0 */ + + /* USER CODE END TIM6_IRQn 0 */ + HAL_TIM_IRQHandler(&htim6); + /* USER CODE BEGIN TIM6_IRQn 1 */ + + /* USER CODE END TIM6_IRQn 1 */ +} + /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ diff --git a/Debug/Core/Src/main.d b/Debug/Core/Src/main.d index 00721df..cd0e11a 100644 --- a/Debug/Core/Src/main.d +++ b/Debug/Core/Src/main.d @@ -24,6 +24,8 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/SW_APPs/Main_APP.h ../Core/Inc/main.h: @@ -78,4 +80,8 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/SW_APPs/Main_APP.h: diff --git a/Debug/Core/Src/main.su b/Debug/Core/Src/main.su index 9177606..a53b664 100644 --- a/Debug/Core/Src/main.su +++ b/Debug/Core/Src/main.su @@ -1,6 +1,7 @@ -main.c:69:5:main 8 static -main.c:114:6:SystemClock_Config 72 static -main.c:153:13:MX_I2C2_Init 8 static -main.c:187:13:MX_GPIO_Init 48 static -main.c:256:13:MX_FSMC_Init 40 static -main.c:320:6:Error_Handler 4 static,ignoring_inline_asm +main.c:72:5:main 8 static +main.c:118:6:SystemClock_Config 72 static +main.c:157:13:MX_I2C2_Init 8 static +main.c:191:13:MX_TIM6_Init 16 static +main.c:229:13:MX_GPIO_Init 48 static +main.c:298:13:MX_FSMC_Init 40 static +main.c:362:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/Debug/Core/Src/stm32f1xx_hal_msp.d b/Debug/Core/Src/stm32f1xx_hal_msp.d index f07e032..0b6effd 100644 --- a/Debug/Core/Src/stm32f1xx_hal_msp.d +++ b/Debug/Core/Src/stm32f1xx_hal_msp.d @@ -23,7 +23,9 @@ Core/Src/stm32f1xx_hal_msp.o: ../Core/Src/stm32f1xx_hal_msp.c \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Core/Inc/main.h: @@ -76,3 +78,7 @@ Core/Src/stm32f1xx_hal_msp.o: ../Core/Src/stm32f1xx_hal_msp.c \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Core/Src/stm32f1xx_hal_msp.su b/Debug/Core/Src/stm32f1xx_hal_msp.su index 97f6b4e..377ad4a 100644 --- a/Debug/Core/Src/stm32f1xx_hal_msp.su +++ b/Debug/Core/Src/stm32f1xx_hal_msp.su @@ -1,7 +1,9 @@ stm32f1xx_hal_msp.c:64:6:HAL_MspInit 24 static stm32f1xx_hal_msp.c:90:6:HAL_I2C_MspInit 40 static stm32f1xx_hal_msp.c:124:6:HAL_I2C_MspDeInit 16 static -stm32f1xx_hal_msp.c:151:13:HAL_FSMC_MspInit 32 static -stm32f1xx_hal_msp.c:210:6:HAL_SRAM_MspInit 16 static -stm32f1xx_hal_msp.c:222:13:HAL_FSMC_MspDeInit 8 static -stm32f1xx_hal_msp.c:270:6:HAL_SRAM_MspDeInit 16 static +stm32f1xx_hal_msp.c:155:6:HAL_TIM_Base_MspInit 24 static +stm32f1xx_hal_msp.c:180:6:HAL_TIM_Base_MspDeInit 16 static +stm32f1xx_hal_msp.c:201:13:HAL_FSMC_MspInit 32 static +stm32f1xx_hal_msp.c:260:6:HAL_SRAM_MspInit 16 static +stm32f1xx_hal_msp.c:272:13:HAL_FSMC_MspDeInit 8 static +stm32f1xx_hal_msp.c:320:6:HAL_SRAM_MspDeInit 16 static diff --git a/Debug/Core/Src/stm32f1xx_it.d b/Debug/Core/Src/stm32f1xx_it.d index eb6308b..47f5325 100644 --- a/Debug/Core/Src/stm32f1xx_it.d +++ b/Debug/Core/Src/stm32f1xx_it.d @@ -24,6 +24,8 @@ Core/Src/stm32f1xx_it.o: ../Core/Src/stm32f1xx_it.c ../Core/Inc/main.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ ../Core/Inc/stm32f1xx_it.h ../Core/Inc/main.h: @@ -78,4 +80,8 @@ Core/Src/stm32f1xx_it.o: ../Core/Src/stm32f1xx_it.c ../Core/Inc/main.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + ../Core/Inc/stm32f1xx_it.h: diff --git a/Debug/Core/Src/stm32f1xx_it.su b/Debug/Core/Src/stm32f1xx_it.su index c0a6d67..af59de8 100644 --- a/Debug/Core/Src/stm32f1xx_it.su +++ b/Debug/Core/Src/stm32f1xx_it.su @@ -7,3 +7,4 @@ stm32f1xx_it.c:145:6:SVC_Handler 4 static stm32f1xx_it.c:158:6:DebugMon_Handler 4 static stm32f1xx_it.c:171:6:PendSV_Handler 4 static stm32f1xx_it.c:184:6:SysTick_Handler 8 static +stm32f1xx_it.c:205:6:TIM6_IRQHandler 8 static diff --git a/Debug/Core/Src/system_stm32f1xx.d b/Debug/Core/Src/system_stm32f1xx.d index f2a05a0..7f9d3dc 100644 --- a/Debug/Core/Src/system_stm32f1xx.d +++ b/Debug/Core/Src/system_stm32f1xx.d @@ -23,7 +23,9 @@ Core/Src/system_stm32f1xx.o: ../Core/Src/system_stm32f1xx.c \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: @@ -74,3 +76,7 @@ Core/Src/system_stm32f1xx.o: ../Core/Src/system_stm32f1xx.c \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.d index 0d4d164..8cb064d 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.d index 3a6338e..645b8f3 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.d index cbbaac6..fe60837 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.d index b7b8c06..5367757 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.d index 1e0ae93..f634596 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.d index 919636f..8e2e092 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.d index d0c88d9..35edfb7 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.d index 6be3df5..b0029c6 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.d index 28e38b6..55617ff 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.d index 72c38c0..1d2c5d3 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.d index b673568..51e7a77 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.d index 006e3fd..bb3c2e1 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.d index 18e0493..e5f9007 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.d index f625dda..a363f93 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.su b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.su index e69de29..f8a178b 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.su +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.su @@ -0,0 +1,119 @@ +stm32f1xx_hal_tim.c:266:19:HAL_TIM_Base_Init 16 static +stm32f1xx_hal_tim.c:325:19:HAL_TIM_Base_DeInit 16 static +stm32f1xx_hal_tim.c:368:13:HAL_TIM_Base_MspInit 16 static +stm32f1xx_hal_tim.c:383:13:HAL_TIM_Base_MspDeInit 16 static +stm32f1xx_hal_tim.c:399:19:HAL_TIM_Base_Start 24 static +stm32f1xx_hal_tim.c:438:19:HAL_TIM_Base_Stop 16 static +stm32f1xx_hal_tim.c:458:19:HAL_TIM_Base_Start_IT 24 static +stm32f1xx_hal_tim.c:500:19:HAL_TIM_Base_Stop_IT 16 static +stm32f1xx_hal_tim.c:525:19:HAL_TIM_Base_Start_DMA 32 static +stm32f1xx_hal_tim.c:594:19:HAL_TIM_Base_Stop_DMA 16 static +stm32f1xx_hal_tim.c:649:19:HAL_TIM_OC_Init 16 static +stm32f1xx_hal_tim.c:708:19:HAL_TIM_OC_DeInit 16 static +stm32f1xx_hal_tim.c:751:13:HAL_TIM_OC_MspInit 16 static +stm32f1xx_hal_tim.c:766:13:HAL_TIM_OC_MspDeInit 16 static +stm32f1xx_hal_tim.c:787:19:HAL_TIM_OC_Start 24 static +stm32f1xx_hal_tim.c:841:19:HAL_TIM_OC_Stop 16 static +stm32f1xx_hal_tim.c:876:19:HAL_TIM_OC_Start_IT 24 static +stm32f1xx_hal_tim.c:964:19:HAL_TIM_OC_Stop_IT 16 static +stm32f1xx_hal_tim.c:1035:19:HAL_TIM_OC_Start_DMA 32 static +stm32f1xx_hal_tim.c:1193:19:HAL_TIM_OC_Stop_DMA 16 static +stm32f1xx_hal_tim.c:1290:19:HAL_TIM_PWM_Init 16 static +stm32f1xx_hal_tim.c:1349:19:HAL_TIM_PWM_DeInit 16 static +stm32f1xx_hal_tim.c:1392:13:HAL_TIM_PWM_MspInit 16 static +stm32f1xx_hal_tim.c:1407:13:HAL_TIM_PWM_MspDeInit 16 static +stm32f1xx_hal_tim.c:1428:19:HAL_TIM_PWM_Start 24 static +stm32f1xx_hal_tim.c:1482:19:HAL_TIM_PWM_Stop 16 static +stm32f1xx_hal_tim.c:1517:19:HAL_TIM_PWM_Start_IT 24 static +stm32f1xx_hal_tim.c:1604:19:HAL_TIM_PWM_Stop_IT 16 static +stm32f1xx_hal_tim.c:1675:19:HAL_TIM_PWM_Start_DMA 32 static +stm32f1xx_hal_tim.c:1832:19:HAL_TIM_PWM_Stop_DMA 16 static +stm32f1xx_hal_tim.c:1929:19:HAL_TIM_IC_Init 16 static +stm32f1xx_hal_tim.c:1988:19:HAL_TIM_IC_DeInit 16 static +stm32f1xx_hal_tim.c:2031:13:HAL_TIM_IC_MspInit 16 static +stm32f1xx_hal_tim.c:2046:13:HAL_TIM_IC_MspDeInit 16 static +stm32f1xx_hal_tim.c:2067:19:HAL_TIM_IC_Start 24 static +stm32f1xx_hal_tim.c:2119:19:HAL_TIM_IC_Stop 16 static +stm32f1xx_hal_tim.c:2149:19:HAL_TIM_IC_Start_IT 24 static +stm32f1xx_hal_tim.c:2234:19:HAL_TIM_IC_Stop_IT 16 static +stm32f1xx_hal_tim.c:2300:19:HAL_TIM_IC_Start_DMA 32 static +stm32f1xx_hal_tim.c:2456:19:HAL_TIM_IC_Stop_DMA 16 static +stm32f1xx_hal_tim.c:2555:19:HAL_TIM_OnePulse_Init 16 static +stm32f1xx_hal_tim.c:2623:19:HAL_TIM_OnePulse_DeInit 16 static +stm32f1xx_hal_tim.c:2668:13:HAL_TIM_OnePulse_MspInit 16 static +stm32f1xx_hal_tim.c:2683:13:HAL_TIM_OnePulse_MspDeInit 16 static +stm32f1xx_hal_tim.c:2703:19:HAL_TIM_OnePulse_Start 24 static +stm32f1xx_hal_tim.c:2760:19:HAL_TIM_OnePulse_Stop 16 static +stm32f1xx_hal_tim.c:2803:19:HAL_TIM_OnePulse_Start_IT 24 static +stm32f1xx_hal_tim.c:2866:19:HAL_TIM_OnePulse_Stop_IT 16 static +stm32f1xx_hal_tim.c:2945:19:HAL_TIM_Encoder_Init 32 static +stm32f1xx_hal_tim.c:3058:19:HAL_TIM_Encoder_DeInit 16 static +stm32f1xx_hal_tim.c:3103:13:HAL_TIM_Encoder_MspInit 16 static +stm32f1xx_hal_tim.c:3118:13:HAL_TIM_Encoder_MspDeInit 16 static +stm32f1xx_hal_tim.c:3138:19:HAL_TIM_Encoder_Start 24 static +stm32f1xx_hal_tim.c:3232:19:HAL_TIM_Encoder_Stop 16 static +stm32f1xx_hal_tim.c:3292:19:HAL_TIM_Encoder_Start_IT 24 static +stm32f1xx_hal_tim.c:3392:19:HAL_TIM_Encoder_Stop_IT 16 static +stm32f1xx_hal_tim.c:3457:19:HAL_TIM_Encoder_Start_DMA 32 static +stm32f1xx_hal_tim.c:3669:19:HAL_TIM_Encoder_Stop_DMA 16 static +stm32f1xx_hal_tim.c:3746:6:HAL_TIM_IRQHandler 16 static +stm32f1xx_hal_tim.c:3961:19:HAL_TIM_OC_ConfigChannel 24 static +stm32f1xx_hal_tim.c:4037:19:HAL_TIM_IC_ConfigChannel 24 static +stm32f1xx_hal_tim.c:4130:19:HAL_TIM_PWM_ConfigChannel 24 static +stm32f1xx_hal_tim.c:4241:19:HAL_TIM_OnePulse_ConfigChannel 56 static +stm32f1xx_hal_tim.c:4380:19:HAL_TIM_DMABurst_WriteStart 32 static +stm32f1xx_hal_tim.c:4426:19:HAL_TIM_DMABurst_MultiWriteStart 24 static +stm32f1xx_hal_tim.c:4603:19:HAL_TIM_DMABurst_WriteStop 16 static +stm32f1xx_hal_tim.c:4698:19:HAL_TIM_DMABurst_ReadStart 32 static +stm32f1xx_hal_tim.c:4744:19:HAL_TIM_DMABurst_MultiReadStart 24 static +stm32f1xx_hal_tim.c:4922:19:HAL_TIM_DMABurst_ReadStop 16 static +stm32f1xx_hal_tim.c:4999:19:HAL_TIM_GenerateEvent 16 static +stm32f1xx_hal_tim.c:5036:19:HAL_TIM_ConfigOCrefClear 24 static +stm32f1xx_hal_tim.c:5160:19:HAL_TIM_ConfigClockSource 24 static +stm32f1xx_hal_tim.c:5312:19:HAL_TIM_ConfigTI1Input 24 static +stm32f1xx_hal_tim.c:5344:19:HAL_TIM_SlaveConfigSynchro 16 static +stm32f1xx_hal_tim.c:5384:19:HAL_TIM_SlaveConfigSynchro_IT 16 static +stm32f1xx_hal_tim.c:5427:10:HAL_TIM_ReadCapturedValue 24 static +stm32f1xx_hal_tim.c:5511:13:HAL_TIM_PeriodElapsedCallback 16 static +stm32f1xx_hal_tim.c:5526:13:HAL_TIM_PeriodElapsedHalfCpltCallback 16 static +stm32f1xx_hal_tim.c:5541:13:HAL_TIM_OC_DelayElapsedCallback 16 static +stm32f1xx_hal_tim.c:5556:13:HAL_TIM_IC_CaptureCallback 16 static +stm32f1xx_hal_tim.c:5571:13:HAL_TIM_IC_CaptureHalfCpltCallback 16 static +stm32f1xx_hal_tim.c:5586:13:HAL_TIM_PWM_PulseFinishedCallback 16 static +stm32f1xx_hal_tim.c:5601:13:HAL_TIM_PWM_PulseFinishedHalfCpltCallback 16 static +stm32f1xx_hal_tim.c:5616:13:HAL_TIM_TriggerCallback 16 static +stm32f1xx_hal_tim.c:5631:13:HAL_TIM_TriggerHalfCpltCallback 16 static +stm32f1xx_hal_tim.c:5646:13:HAL_TIM_ErrorCallback 16 static +stm32f1xx_hal_tim.c:6204:22:HAL_TIM_Base_GetState 16 static +stm32f1xx_hal_tim.c:6214:22:HAL_TIM_OC_GetState 16 static +stm32f1xx_hal_tim.c:6224:22:HAL_TIM_PWM_GetState 16 static +stm32f1xx_hal_tim.c:6234:22:HAL_TIM_IC_GetState 16 static +stm32f1xx_hal_tim.c:6244:22:HAL_TIM_OnePulse_GetState 16 static +stm32f1xx_hal_tim.c:6254:22:HAL_TIM_Encoder_GetState 16 static +stm32f1xx_hal_tim.c:6264:23:HAL_TIM_GetActiveChannel 16 static +stm32f1xx_hal_tim.c:6282:29:HAL_TIM_GetChannelState 24 static +stm32f1xx_hal_tim.c:6299:30:HAL_TIM_DMABurstState 16 static +stm32f1xx_hal_tim.c:6324:6:TIM_DMAError 24 static +stm32f1xx_hal_tim.c:6367:13:TIM_DMADelayPulseCplt 24 static +stm32f1xx_hal_tim.c:6426:6:TIM_DMADelayPulseHalfCplt 24 static +stm32f1xx_hal_tim.c:6465:6:TIM_DMACaptureCplt 24 static +stm32f1xx_hal_tim.c:6528:6:TIM_DMACaptureHalfCplt 24 static +stm32f1xx_hal_tim.c:6567:13:TIM_DMAPeriodElapsedCplt 24 static +stm32f1xx_hal_tim.c:6588:13:TIM_DMAPeriodElapsedHalfCplt 24 static +stm32f1xx_hal_tim.c:6604:13:TIM_DMATriggerCplt 24 static +stm32f1xx_hal_tim.c:6625:13:TIM_DMATriggerHalfCplt 24 static +stm32f1xx_hal_tim.c:6642:6:TIM_Base_SetConfig 24 static +stm32f1xx_hal_tim.c:6690:13:TIM_OC1_SetConfig 32 static +stm32f1xx_hal_tim.c:6765:6:TIM_OC2_SetConfig 32 static +stm32f1xx_hal_tim.c:6841:13:TIM_OC3_SetConfig 32 static +stm32f1xx_hal_tim.c:6915:13:TIM_OC4_SetConfig 32 static +stm32f1xx_hal_tim.c:6975:26:TIM_SlaveTimer_SetConfig 32 static +stm32f1xx_hal_tim.c:7106:6:TIM_TI1_SetConfig 32 static +stm32f1xx_hal_tim.c:7153:13:TIM_TI1_ConfigInputStage 32 static +stm32f1xx_hal_tim.c:7196:13:TIM_TI2_SetConfig 32 static +stm32f1xx_hal_tim.c:7236:13:TIM_TI2_ConfigInputStage 32 static +stm32f1xx_hal_tim.c:7278:13:TIM_TI3_SetConfig 32 static +stm32f1xx_hal_tim.c:7325:13:TIM_TI4_SetConfig 32 static +stm32f1xx_hal_tim.c:7368:13:TIM_ITRx_SetConfig 24 static +stm32f1xx_hal_tim.c:7398:6:TIM_ETR_SetConfig 32 static +stm32f1xx_hal_tim.c:7428:6:TIM_CCxChannelCmd 32 static diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.d index ffa9dad..2119a8a 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.su b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.su index e69de29..00f2dcb 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.su +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.su @@ -0,0 +1,42 @@ +stm32f1xx_hal_tim_ex.c:138:19:HAL_TIMEx_HallSensor_Init 48 static +stm32f1xx_hal_tim_ex.c:239:19:HAL_TIMEx_HallSensor_DeInit 16 static +stm32f1xx_hal_tim_ex.c:284:13:HAL_TIMEx_HallSensor_MspInit 16 static +stm32f1xx_hal_tim_ex.c:299:13:HAL_TIMEx_HallSensor_MspDeInit 16 static +stm32f1xx_hal_tim_ex.c:314:19:HAL_TIMEx_HallSensor_Start 24 static +stm32f1xx_hal_tim_ex.c:368:19:HAL_TIMEx_HallSensor_Stop 16 static +stm32f1xx_hal_tim_ex.c:396:19:HAL_TIMEx_HallSensor_Start_IT 24 static +stm32f1xx_hal_tim_ex.c:453:19:HAL_TIMEx_HallSensor_Stop_IT 16 static +stm32f1xx_hal_tim_ex.c:486:19:HAL_TIMEx_HallSensor_Start_DMA 32 static +stm32f1xx_hal_tim_ex.c:562:19:HAL_TIMEx_HallSensor_Stop_DMA 16 static +stm32f1xx_hal_tim_ex.c:624:19:HAL_TIMEx_OCN_Start 24 static +stm32f1xx_hal_tim_ex.c:675:19:HAL_TIMEx_OCN_Stop 16 static +stm32f1xx_hal_tim_ex.c:707:19:HAL_TIMEx_OCN_Start_IT 24 static +stm32f1xx_hal_tim_ex.c:789:19:HAL_TIMEx_OCN_Stop_IT 24 static +stm32f1xx_hal_tim_ex.c:858:19:HAL_TIMEx_OCN_Start_DMA 32 static +stm32f1xx_hal_tim_ex.c:990:19:HAL_TIMEx_OCN_Stop_DMA 16 static +stm32f1xx_hal_tim_ex.c:1085:19:HAL_TIMEx_PWMN_Start 24 static +stm32f1xx_hal_tim_ex.c:1135:19:HAL_TIMEx_PWMN_Stop 16 static +stm32f1xx_hal_tim_ex.c:1167:19:HAL_TIMEx_PWMN_Start_IT 24 static +stm32f1xx_hal_tim_ex.c:1248:19:HAL_TIMEx_PWMN_Stop_IT 24 static +stm32f1xx_hal_tim_ex.c:1318:19:HAL_TIMEx_PWMN_Start_DMA 32 static +stm32f1xx_hal_tim_ex.c:1450:19:HAL_TIMEx_PWMN_Stop_DMA 16 static +stm32f1xx_hal_tim_ex.c:1535:19:HAL_TIMEx_OnePulseN_Start 24 static +stm32f1xx_hal_tim_ex.c:1584:19:HAL_TIMEx_OnePulseN_Stop 24 static +stm32f1xx_hal_tim_ex.c:1623:19:HAL_TIMEx_OnePulseN_Start_IT 24 static +stm32f1xx_hal_tim_ex.c:1678:19:HAL_TIMEx_OnePulseN_Stop_IT 24 static +stm32f1xx_hal_tim_ex.c:1757:19:HAL_TIMEx_ConfigCommutEvent 24 static +stm32f1xx_hal_tim_ex.c:1813:19:HAL_TIMEx_ConfigCommutEvent_IT 24 static +stm32f1xx_hal_tim_ex.c:1870:19:HAL_TIMEx_ConfigCommutEvent_DMA 24 static +stm32f1xx_hal_tim_ex.c:1919:19:HAL_TIMEx_MasterConfigSynchronization 24 static +stm32f1xx_hal_tim_ex.c:1980:19:HAL_TIMEx_ConfigBreakDeadTime 24 static +stm32f1xx_hal_tim_ex.c:2027:19:HAL_TIMEx_RemapConfig 16 static +stm32f1xx_hal_tim_ex.c:2061:13:HAL_TIMEx_CommutCallback 16 static +stm32f1xx_hal_tim_ex.c:2075:13:HAL_TIMEx_CommutHalfCpltCallback 16 static +stm32f1xx_hal_tim_ex.c:2090:13:HAL_TIMEx_BreakCallback 16 static +stm32f1xx_hal_tim_ex.c:2123:22:HAL_TIMEx_HallSensor_GetState 16 static +stm32f1xx_hal_tim_ex.c:2138:29:HAL_TIMEx_GetChannelNState 24 static +stm32f1xx_hal_tim_ex.c:2167:6:TIMEx_DMACommutationCplt 24 static +stm32f1xx_hal_tim_ex.c:2186:6:TIMEx_DMACommutationHalfCplt 24 static +stm32f1xx_hal_tim_ex.c:2206:13:TIM_DMADelayPulseNCplt 24 static +stm32f1xx_hal_tim_ex.c:2265:13:TIM_DMAErrorCCxN 24 static +stm32f1xx_hal_tim_ex.c:2310:13:TIM_CCxNChannelCmd 32 static diff --git a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.d b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.d index dc9c226..796b046 100644 --- a/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.d +++ b/Debug/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.d @@ -24,7 +24,9 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: @@ -75,3 +77,7 @@ Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o: \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/HW_Devices/LCD.d b/Debug/HW_Devices/LCD.d index 9a3d928..441e24a 100644 --- a/Debug/HW_Devices/LCD.d +++ b/Debug/HW_Devices/LCD.d @@ -23,7 +23,9 @@ HW_Devices/LCD.o: ../HW_Devices/LCD.c ../HW_Devices/LCD.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../HW_Devices/LCD.h: @@ -78,3 +80,7 @@ HW_Devices/LCD.o: ../HW_Devices/LCD.c ../HW_Devices/LCD.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/HW_Devices/eeprom.d b/Debug/HW_Devices/eeprom.d index 19d082e..387a6ef 100644 --- a/Debug/HW_Devices/eeprom.d +++ b/Debug/HW_Devices/eeprom.d @@ -24,6 +24,8 @@ HW_Devices/eeprom.o: ../HW_Devices/eeprom.c ../HW_Devices/eeprom.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ ../HW_Devices/iic.h ../HW_Devices/eeprom.h: @@ -80,4 +82,8 @@ HW_Devices/eeprom.o: ../HW_Devices/eeprom.c ../HW_Devices/eeprom.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + ../HW_Devices/iic.h: diff --git a/Debug/HW_Devices/iic.d b/Debug/HW_Devices/iic.d index 6fa10a8..64c1c87 100644 --- a/Debug/HW_Devices/iic.d +++ b/Debug/HW_Devices/iic.d @@ -23,7 +23,9 @@ HW_Devices/iic.o: ../HW_Devices/iic.c ../HW_Devices/iic.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h ../HW_Devices/iic.h: @@ -78,3 +80,7 @@ HW_Devices/iic.o: ../HW_Devices/iic.c ../HW_Devices/iic.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: diff --git a/Debug/HW_Devices/touch.d b/Debug/HW_Devices/touch.d index 71f4604..44f481c 100644 --- a/Debug/HW_Devices/touch.d +++ b/Debug/HW_Devices/touch.d @@ -24,6 +24,8 @@ HW_Devices/touch.o: ../HW_Devices/touch.c ../HW_Devices/touch.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ ../HW_Devices/LCD.h ../HW_Devices/eeprom.h ../HW_Devices/touch.h: @@ -80,6 +82,10 @@ HW_Devices/touch.o: ../HW_Devices/touch.c ../HW_Devices/touch.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + ../HW_Devices/LCD.h: ../HW_Devices/eeprom.h: diff --git a/Debug/SW_APPs/APP_blood.d b/Debug/SW_APPs/APP_blood.d index 2559684..b82468c 100644 --- a/Debug/SW_APPs/APP_blood.d +++ b/Debug/SW_APPs/APP_blood.d @@ -24,6 +24,8 @@ SW_APPs/APP_blood.o: ../SW_APPs/APP_blood.c ../SW_APPs/APP_blood.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ ../SW_APPs/windows.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/LCD.h \ @@ -84,6 +86,10 @@ SW_APPs/APP_blood.o: ../SW_APPs/APP_blood.c ../SW_APPs/APP_blood.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + ../SW_APPs/windows.h: /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h: diff --git a/Debug/SW_APPs/APP_blood.su b/Debug/SW_APPs/APP_blood.su index 2b98007..0d85675 100644 --- a/Debug/SW_APPs/APP_blood.su +++ b/Debug/SW_APPs/APP_blood.su @@ -11,4 +11,5 @@ APP_blood.c:272:14:EE 40 static APP_blood.c:284:6:FFT 104 static APP_blood.c:341:5:find_max_num_index 32 static APP_blood.c:360:6:blood_data_translate 64 static -APP_blood.c:432:6:APP_blood_loop 24 static +APP_blood.c:436:6:APP_blood_loop 16 static +APP_blood.c:501:6:HAL_TIM_PeriodElapsedCallback 24 static diff --git a/Debug/SW_APPs/Main_APP.d b/Debug/SW_APPs/Main_APP.d index 5f4858f..b42679b 100644 --- a/Debug/SW_APPs/Main_APP.d +++ b/Debug/SW_APPs/Main_APP.d @@ -25,6 +25,8 @@ SW_APPs/Main_APP.o: ../SW_APPs/Main_APP.c ../SW_APPs/Main_APP.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ ../SW_APPs/windows.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/touch.h \ @@ -87,6 +89,10 @@ SW_APPs/Main_APP.o: ../SW_APPs/Main_APP.c ../SW_APPs/Main_APP.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + ../SW_APPs/windows.h: /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h: diff --git a/Debug/SW_APPs/windows.d b/Debug/SW_APPs/windows.d index 52f5b3d..36ebcdd 100644 --- a/Debug/SW_APPs/windows.d +++ b/Debug/SW_APPs/windows.d @@ -24,6 +24,8 @@ SW_APPs/windows.o: ../SW_APPs/windows.c ../SW_APPs/windows.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/touch.h @@ -81,6 +83,10 @@ SW_APPs/windows.o: ../SW_APPs/windows.c ../SW_APPs/windows.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: + /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h: /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/touch.h: diff --git a/Debug/m3s.bin b/Debug/m3s.bin index bf84c4f84663bcb9dabb0bb7bbff6d8192e5b159..fb26cd53c3c194ee8b5e71108b8206aa471be52a 100755 GIT binary patch delta 8831 zcmbtZ3wTt;*`9NDv)OF!7i6;=!e$pRArL|~N=Se#2^^9v5D1rI0NDg;mv9T{j|r>Y zprUAr(hj0ryr6A=ZzYfgg~pg)TWhtYKY^-9^l5Chl-kQeEpzsqz4V(oXEzIKpa1!r z=lOQ#yS?+xH#6Uvb8_M$fA})*MToP!n~U@xjYj(40euei1<(~Bbi*G3nZ~Hd)1fs3 zWt#pY^8Tj)|Dk``H%DLe4YR{rUpj_|xk4U2iw(R9n&&6*8Ku``-V21<*iOzmZ24v;sMveUL+4C+`E$Dgjwdu4dOL=copgE898G+U&}5BI`j{ zhO_2s`nHR%G|IK4*75#CIf^zjfNWJRWb?SHgj_)fx_d%V-4qx}KdoQr>PJZfC+L6~ z$brXY@1JT9BP&->QHT5`Va_`Ds*bw_`i0@fFT3vSYe6;{sH&AtGgl}9O*{S~drU=3 z5cF#mJr~nkK)*D|+4@>I)sMG%R9_S5gdle0nD~kyUX_!VR|FVn$&DBZV3!xf`*MzP z-FWV(FZcyAF1x9;{sG8Khs)zOyHgu*P4-}_b7*}^L#;nUbH2p@eGT+vm+VHc7`IxG z|8t4{h9xwRq0D=LP8ntJc+E{q%zu;`ufhCWyiIm#Y@U|HD|(n;DvbRRK66tp_iKFV zrhD_M+4>+@71YB+K06hjB@nlbHt~-J@q?p9++{4|MH!zkmUGAOWn)$D+j4|t2ixbt zS+fjt$nttG($n@8JTupvGB1!0q3Oj4`8b5v<(7uv6 z0{GO|Ycg=$WZZ8a!`0v+bCFFWC1agB;T*ccJSO!d~>aY0yv#LI-d8@QflJyOtZ2~>hshrNQ0dsDdsMCi_mp-gO;x$cc<$8cNf|1a zf*+bX&ES_6zrV=%ms2MueE@7az?{SK)O(Y#s(cLZEPEoU7B~aws&RqcmNZ%Aitqya zw+takfeA?XsC{|T8I^q(rmFgPd(PY$GhrEFJ1a#kxU|TJINUSUTJx@>JO4=7F1O z@xV|Xw^kkMQo!TpKrVoswzJf>T5TO_J6mmQ)V7wkUT~PB3g)WqObea1Qggaa>{3s! z5)=p3k+aPi9tp+lz6imX-8FuWzv!a9F>uO_XK62wo_E&sUFm8}V?86tl34F1=y|oQ zI|{m)Fk3SuOyf^v@Q!E|)43cSgc2m_nh?4uGIYEJaXOyV4<97qf0LJyRJ99<{w zkCh)KP-`quQ`>Cs)y(W{2P#fygPYnMSLf7HK2hP>(A2>MGo#5>auYqHBa3Hto1u>J z8ot=dJcnQ!lruAKi=XFBEfm3YH=88bYBZ==bJp7dTj8%_!Z2-zMf&@9k*>O8NI|t4 zZ5$}&qM%v^%8!74>9~`EQk0*mn6EO-w{O7IYxD}H*G(g(Y!p<_K(#6;t2UM@ zVK^5``nxn;aki9;+IBHp}Z7r&8 zTI?wu-Ebq7{NG8uv8|-;(|9-K=uKybN`_y%dYsCjO^35V4^=X>Q-Du|wgg%Yw3DIL z56W(vza36em3yUIa%b041S@Fhfh>TQA$V1Yd=O9wdUh!UJ-G}5R*FIlsSp&jiwDT{ z3ZUdRf%YJrlZ&lY>|h>j^|+H%6g_PRLB1YJ)>^v%n_JL8{BiYu^}LSE8jCYZq2LVi zwnf9r@ta|ZFFY&VbWXHp^uhHZI$LvWwzSvGEX)vyQj&6^7gv(JFjupimLH`ip< zNm{uGkf$KZbIJ_xN+527Xd|5}LR7x?~TY4mC|BJ$N$wDb9)*>JJ1 zLHZ=1bf8f{W}pI~n``g~m3QR71KpiK-vfFa=oz3FfqX#yHNNJmW-dQa3ovt#J{71M zXf#j(P%+RgbMUztckoE#tDJe1%R?Gup;x6cONgwIxB_H}kOLvgt&n`$>UX%rAieK` z`8kJ`12=qab|r1fYM!GYAJjBy42~m6f8s|_ctI@epxUECSzZc*rgvkDbLBl6Kc}IO zwv@9$(iFx)p->wnGs3uVUU}Bb0ZoI)y#&&sJbO|!c=J35w*&Xg+r$HtUpIvd;DvQn zoP-~#n_2{Q16koBx;3>fM4Cjob0w0uA}e2D0KP%wpr?o4ToHd(H_a<5wnZSZL0?-i z9(wuUMK4o5ksz5G3X&;6lYxqXihynoQ4}*+CV>xMV1%Algp2x}reXPE7;h()X4eHt zAVMuOp!a12F4$Ysp?873PVi^thdDbwSZ{)<4n=&Y>L>8tAn9T663Yhd_2qRD@-Q>4 zJv-HD-fa|QQW)ZeDbAH{dYh0*5!mJl#m*r&)tTVkAXl(JZ%t4mP|0lYwl*wr6*yNi z?pY}-8<@A*X!$1WT{akX4IrtWHKEr%Pw?5IUJ!Unys()!%lN&86CfcILO9%L!fA~T?gDOXoCr5%%I|BO#qG!E zRlb>9f^SF;<4U25Z5B0RY2`P4*)$0^a{|aO%kz(8~upC!zq!sBD|0c zxy*$Ow85Rd>f0Tlw=w-1(D%man?WzHJGB||D`|x3n`qWr;azQcJ?%XM+B~5Hw2Qnk z^%77wGWA|iD~r<&y+(i6Z0b}CdfI*mGTyhY0-VdhH?Wb)ZUJ32^WDav#Z5A?#k3PZ zTgkL*W5_NQIgPsCq(WB)@rhV06=Tj^MmDQZEELr9{u%h8 zCL1>qzuZ)$-y-UVgQQi&A2$^m=sKT(y#4Z7U)qxQxP&LiAZOld@FUS;Mnfspu z%2+zvMioIf79zQs4VHSgs*ST(wXTb*KyxmD@A=lP-pveyjsaP)N#q#A*()3XUI&@c zf$6FnY?j7&dJJGM)=K0q7OO+3hgkP~4Mt_mhvG`4OyRw3U>*b$V+Ito49<=-4sz|+ zKxW1~6v(6-crK2oQwy*p)2Y%C%rJr}m_oCrL|q=hudi6jzwk27x@{bPO~e(q)znF3 zfK|CZcjbmmwy9nNo*qO^|K_PwVG0&R=cfKa_Fh>RU_uq5LRmKBW{QK)0%6O5`ZWJg#7Oqkre@4mX^R5Po*G z)w?g|^jOR(J?6CQ2B+x|j7dmz){5npk>DfVAAdvx>>b_x@CaYFu3HI$V8LimVS7+ZElNGD7MEk~= ztN>)n?C)ckI8_rvkpYp++n(mAg$e z3P^=9E)iZ8GdqTvc^&4K7-lPd5G$a60HIC=9ognTJP%(rcbSLLz{p-%rcS&9wtEfu zSHZ!EW>Q=)kqVH>EhGDl9+v!qc`)U7L#JBu3k2x>Jk-&0YJGrsA7K}X8fSp~JxnWA zw0Ob3hnkx%#>*f@LdoDq1MSG82Ykbi)T*c-B4r`u=%h|RyVjRq(|FiQStre&At z4#1NppFJi5EY3_henu80SoYmC606uT4zg_d;w(J$_LC+Oy2P0%b zXfD&vgG;VSm{&iqj`QCe0M2dPJr{mg?#{3u=%x2ZxJ6!z+(~bdvl_xAL8|sLms#~y z;Ib}I$y}y07t2>%%E09>fpXBAg!1|l@Nfo7n8zgMQTi2+@!)YjPzd*JBjoHkR#G5H3t4QglgTt#9g|?H&ji=ZKqhld$Bk=8d-Y&<06r4X z5BVvOyHubwAo@k0UbTkd>Qx7YY!A?GpuYf5b1c#pUaU|G=g5I}@5$)*Ecy;#30a*Z zLWsM^He~J2fg&N1cGyp2*by+%q_NY}=!GX~v&#sAQ8B|+U^t2yW`I0PF=Tcrz;pJ4 zy#}YLD+&7aQIYUbGFxB`Tm%0K*FXBH4&2Yy?>RPNRvqVKu@(};NMO=1!PmC7eaN%>p&_>WkMCSzX;(y zcbj0OH$(WPyZ7>YBs`nN~D6DRsn%M9RMhB(8B9Xt5bvz1V^qc+I|LrGWVlNs|V>o$hrzN zRjgctx6LkO92AKshzcG4r|+W{83%P&P_0Ooz`u`nG#L6+(3wGeafg-vQ2>W`lzUG| zRYI9S$ZsMPUjK|ThbciVgptLric~_#8|*S!T265@pWOjER7 zq*9T5ENZWm>XHRsP@>3-K!P^tpXLv}VfI1kqYqU=vKjoD%RJyvuf_6;J_VJBjboMd z$3IQ9{4`& zP<`)s@Lbet)GfzSbbJHB=N3oJzu@?Wo`foOj-^q*Jd>uDdK#v62J zA+P-h@x*-(@@J3wdiNPP9@sY??=lgxC=_3?(7<8vCS+DWUa|j4FCit@si`u)-Vsvy zwR#<^hnY|j2`RtMLK)zCjI!%2lrd;M&71}Q)lXP3(Pe`DHu0N`;%xeY@pCzhfAYkb z{K|m)G%6?rgw%lJc!(GS1vXTmap^%~67ip&$e(bHEQ@eZgRhbLuol|(el$@&iwboY zIgrf^(_b;-oAl(2?3DN=#8bIN_~$PV-+K88r2hw|ryZdsutOHJT|#%tzaxC{mF9l| DQ`ORk delta 6818 zcmbtZ4O~>!w%_N>I1J+l2&BU>!oZ|~q{0jsg5?Ny1cm@VLBSe`Z1AJ}EEILX%BvY_ z?rw>At($#V`toDcQ1WVK`MU3xsP(k0d%1P%#?8EgY5RQ4%z0~{IZSB%-tYHb{(g(I z*MF`5+H38-&)$2EJG$9JpR*o>7>i&;`e8$n-U^ZiG6p0Y1l{s453tE9J`J7^fJ}`4 zP2%~j0e&Oj_J7YF|NX#z+{L7_+qPi?Yl6qF5p493O%n1&^2oOmBv(MbLcX7`oyU%t zICiKX&y30G|8!8pp>(Db`4-~Vn56zU_+GsdzZX+vc82Yv1$3h6xRFH`REZoftz!^= zF82A%&jKigNzN%mzE1*7%DvZgOg6MX4wPMQTG~;AtP)6GZA6bz6VHtX%Me@@H!LT@ z5B3K`b|!4MfL)XrYex;E@>px5$~A%QiiG#anb^Nd_%Cs0^I56vI+}KCjDFyEO2XRP z_A_>T__puaA4UA~kPMtSw46DJ9~~N>@TypH&Azn5#abno#@bjD(W8gl^uXJOcMV;w z%T@}-yJIAiOeDVt|=D& zerkGq*XaZ%sYpgA^miTSnvOReUbi3Z({M*!D_zo31S!kpe*CpLEuz8I;FigLJZ4x+ zaqKXp|G|v(GRQ<|PyT<%4d6x&^Xd}6V_Adb^;sHN=AyUWN*Ly{w`Ta62!?pmMrjyk zIUY6I%O(VIbVeZ_IVOks9RGcE5#BqdmU)u4yp3m8w~#jo05h+GJo z0c`d7-Yjcmg{n=%i?b>Wcc`9L37^lJ8A-$t@kgAQJv_2Y)xPjPkX^w%p z82h$ylYp#7E?OCVbOKpe2a0ALCtLBRyNn?mtaV zVSt8BMY;4bv*=|SL@b)BFYvwf>JMw-Y?2Wu$}>iH$WJ=J*UY6mFT1I2FKo#1oQ0D}53ne50Xj-4p5{t+Rw?W@ zU?(}-RQ3*qo#0HUr@k$e9i`CEtMo%6-ZHJka1Cb42XcwU-%k4%YYpP_({1KUfSlZh z^iWjISt#mtQd}@&IFpC#XCw^zFu-!sBRGHHc|UnCfVa+=%?cvE zI%5QsK7z+PXPU5Wrh_?xm(Co?$e>p;%P>*fCOp2v!DQmq6(O4mpQ>2Ge2TLxlRRHQ z2H$~P2hqbiGlOJ+Oaf_ND3SMtG9O~+Iwdk)V!8e>YVj~We!qsxd#C~IhZXw+V4u{- zeg*7OUHc<2k^v1jZlMu4*Wq}ZSwvfzfSI`luzuwUo4)~bnPN@>EHn*C&?@saO{Anx z!A_q7jBQ6<4vPFTSE}cs*VtppOXO@-Gw$4s9 z&tZ)zB+{vR236}x8NX7Us+Gt*5qDM_p^+%yE7hiv z-zv0=-7F)L)F2IUrdwxatY)Ylu^<|1gUJ(d#vC*7vP4`yCy^Bcc+ngqJ&o7RNd#CY z;@xvn;ugzip#ROgF2HbvGKm!NU*}jn`(b_3*vR@sAL9?ot7zy1S8L-R&jD2=ZDG&G zKAub9#p+#L*MOB*n=?-&7lKO^ACcs!b1<$U-aN*hS6kO> z0zz#7@3?=gC#cj<7x2YytyLrrCC(PE6?7exqXX9~xA^=ctcS*{sX!uHC07Sm1k+;v zl^A~xb7)+VoC@h4rDGO=V_^px)aDe)Wu?4O$RGW5C~i*ck6}hAWa};Zvwd`0+J>-B zdq{vD-joN>u%Rwa`|%eKOlKXhV4Lf9cAXzry7CJpQU3NVb9@$_bXQ%Q^_g=Q?5?>=5RhT8LHG8+D9^B&ugq{hpGOTQuQR& z|M5QlyOc;F|9Bpk))rPuWHJz~uEqtI(Moshq)PX=`o?**{fSW`T`%rWQ}-?HTc01EjefutvZbyY!UQ;=O@9 z|F}@*TR*XVo&>CyuQvOt8m(=1=V)$E*&Z95$av9%KXJQ|g@$9;> z8TUa%F1$>s}=j3J2YoE~s4|Wx5kmWyP5!g1-7>duvqA5z*(U8~=p&hb?wXX~H;Q{b# z71Y?9!ySL7Vp{vEFm_hO`q>{3WACe&&b}m!b*NZ`ePI|o09dH{wMz95DTO@b^n@y@ zqmD|pHGQ&uK@G&(tHXg>R7_*92xCvEnAYAq#UfduV*Tv*h5a5?F`d1z7n@2RQo#s& zK`%(E0PCA=l#*@UEyM2j$k$8ujdh|FQ5_?wRR%pEp%EKHmkR=^#_mr?Ab z*>0)j_M*$E|D@1`MIt{jYI5o&@+gd&y*So&bRO;O8A#jA zt(ZrXSr;xLTh@3u$;G=xa#cuF4~dCNxHxVYNAa(equauz!BWk-$?~ZXr!rC%Jmj+= zd;|?rtq+C~k$ewla))bBaffn`&VZjQ_@Fz{)BEBeG|PcdsY4F~xaIH@``LYNWq!wZ z$%GLeg3Bk}D@L7v5Lz|GG3(=$L;V=k>?+RZvofjypQB719h=#%D$py!ey@RFrQ$ag z@EJe*Ib5XxF!t>SOPr=AxUx?vgMFN?VU&KVb28Xyx7RMft{b=)G!s`?R8+|LMhJz@ z1h;YhWSm())Z-`)l1?F4u}>%(5B7n=c*PEwyK23~-g>a?dP4z&%YKrVA{=eC1LJKW z8>}WSt0)5)*ZDCDW37LqZ7W3xa@ ziGxyDD8Q(&81zUMbMuAVOSqo2@ zbO#$2Am0EnNWPPTY*ruSjWVwxD z4+U`3W1TSzUPt;xAPpePKvuoJtM+k*J>~b-H9W`6>|O%DXhBxoBEN?9UxxIfmcj=S zkY4{$fYCO^d$Ai!y`?MPVur7Q?lyzu97fiD_h~sjm+pe|UnnrM=hEGp16Ehg@#)^= zRS7JV_=$iWYbrgz3(QyENuK1&^VF6npo2p*isQ)#!G~2WUAbFiaN_`d6zowj0Otgh z(##<%MFsMVPJa54BC6LvM&QCbG8$P1$#%r5grb+Tg-C9QLi_&f? zoqqJo?r7_mp!0B%#r`HE%LMU|=2Z4d06UsT=L_Us9;L47WZO`BV`oPXipu#CC=5!e zck<-@Ks85$L7F+tT{)2a)Bpst@}wPpSk!_?5I)v58%O+G*j#l3kjhhm!`ARW#KI2 z&)!fxuo`wW20ouAA4eyu@qrDEI=UXSc4OPq_w+U&dwP?O(f~DVJf$|h=Qrjvy|Ag} zO~d*(kY43}+;YCx>$Oc&!(PG72YcZoTTZbt&jDj6Nc=*iU$_D3x4(g(#x}#N038JB zdc*qxzF(6#0CuiBL9V=s^nEF_S`ApyWnqMxN7=YMS7h@e;E17MaIIzry=jv zZ7Z3+?n}1knr1x@pXETjAQwTHBIMiGj!yi3EB;{n*x@c^h-9+-9dx3%{Rp(HRJ@+H zadO*yog0R32F6?4*0Ju_y`~)oh6Q!RADT=&Y2*9uN9e?KVDn@{J3je`ZLrK%++?Q4 zzS|kB`Cql`lsZ}JHBLAT4nSlSsmm?z6`w&R|iu_f?M-Ha-k z^@ES4iTpsPmcs(dVC*rSX: 800020c: b508 push {r3, lr} @@ -74,7 +74,7 @@ Disassembly of section .text: 800021a: bd08 pop {r3, pc} 800021c: 00000000 .word 0x00000000 8000220: 200001e4 .word 0x200001e4 - 8000224: 08009898 .word 0x08009898 + 8000224: 0800a000 .word 0x0800a000 08000228 : 8000228: 4603 mov r3, r0 @@ -1499,410 +1499,424 @@ int main(void) /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 8001224: f000 fb8e bl 8001944 + 8001224: f000 fbf6 bl 8001a14 /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); - 8001228: f000 f809 bl 800123e + 8001228: f000 f80b bl 8001242 /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ /* Initialize all configured peripherals */ MX_GPIO_Init(); - 800122c: f000 f87a bl 8001324 + 800122c: f000 f8b2 bl 8001394 MX_FSMC_Init(); - 8001230: f000 f93a bl 80014a8 + 8001230: f000 f972 bl 8001518 MX_I2C2_Init(); - 8001234: f000 f848 bl 80012c8 + 8001234: f000 f84a bl 80012cc + MX_TIM6_Init(); + 8001238: f000 f876 bl 8001328 /* USER CODE BEGIN 2 */ main_app(); - 8001238: f005 f8b8 bl 80063ac + 800123c: f005 fc6a bl 8006b14 /* USER CODE END 2 */ /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) - 800123c: e7fe b.n 800123c + 8001240: e7fe b.n 8001240 -0800123e : +08001242 : /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { - 800123e: b580 push {r7, lr} - 8001240: b090 sub sp, #64 ; 0x40 - 8001242: af00 add r7, sp, #0 + 8001242: b580 push {r7, lr} + 8001244: b090 sub sp, #64 ; 0x40 + 8001246: af00 add r7, sp, #0 RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - 8001244: f107 0318 add.w r3, r7, #24 - 8001248: 2228 movs r2, #40 ; 0x28 - 800124a: 2100 movs r1, #0 - 800124c: 4618 mov r0, r3 - 800124e: f005 fc17 bl 8006a80 + 8001248: f107 0318 add.w r3, r7, #24 + 800124c: 2228 movs r2, #40 ; 0x28 + 800124e: 2100 movs r1, #0 + 8001250: 4618 mov r0, r3 + 8001252: f005 ffc9 bl 80071e8 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; - 8001252: 1d3b adds r3, r7, #4 - 8001254: 2200 movs r2, #0 - 8001256: 601a str r2, [r3, #0] - 8001258: 605a str r2, [r3, #4] - 800125a: 609a str r2, [r3, #8] - 800125c: 60da str r2, [r3, #12] - 800125e: 611a str r2, [r3, #16] + 8001256: 1d3b adds r3, r7, #4 + 8001258: 2200 movs r2, #0 + 800125a: 601a str r2, [r3, #0] + 800125c: 605a str r2, [r3, #4] + 800125e: 609a str r2, [r3, #8] + 8001260: 60da str r2, [r3, #12] + 8001262: 611a str r2, [r3, #16] /** Initializes the RCC Oscillators according to the specified parameters * in the RCC_OscInitTypeDef structure. */ RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; - 8001260: 2301 movs r3, #1 - 8001262: 61bb str r3, [r7, #24] + 8001264: 2301 movs r3, #1 + 8001266: 61bb str r3, [r7, #24] RCC_OscInitStruct.HSEState = RCC_HSE_ON; - 8001264: f44f 3380 mov.w r3, #65536 ; 0x10000 - 8001268: 61fb str r3, [r7, #28] + 8001268: f44f 3380 mov.w r3, #65536 ; 0x10000 + 800126c: 61fb str r3, [r7, #28] RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1; - 800126a: 2300 movs r3, #0 - 800126c: 623b str r3, [r7, #32] + 800126e: 2300 movs r3, #0 + 8001270: 623b str r3, [r7, #32] RCC_OscInitStruct.HSIState = RCC_HSI_ON; - 800126e: 2301 movs r3, #1 - 8001270: 62bb str r3, [r7, #40] ; 0x28 + 8001272: 2301 movs r3, #1 + 8001274: 62bb str r3, [r7, #40] ; 0x28 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; - 8001272: 2302 movs r3, #2 - 8001274: 637b str r3, [r7, #52] ; 0x34 + 8001276: 2302 movs r3, #2 + 8001278: 637b str r3, [r7, #52] ; 0x34 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; - 8001276: f44f 3380 mov.w r3, #65536 ; 0x10000 - 800127a: 63bb str r3, [r7, #56] ; 0x38 + 800127a: f44f 3380 mov.w r3, #65536 ; 0x10000 + 800127e: 63bb str r3, [r7, #56] ; 0x38 RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9; - 800127c: f44f 13e0 mov.w r3, #1835008 ; 0x1c0000 - 8001280: 63fb str r3, [r7, #60] ; 0x3c + 8001280: f44f 13e0 mov.w r3, #1835008 ; 0x1c0000 + 8001284: 63fb str r3, [r7, #60] ; 0x3c if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 8001282: f107 0318 add.w r3, r7, #24 - 8001286: 4618 mov r0, r3 - 8001288: f001 fe8a bl 8002fa0 - 800128c: 4603 mov r3, r0 - 800128e: 2b00 cmp r3, #0 - 8001290: d001 beq.n 8001296 + 8001286: f107 0318 add.w r3, r7, #24 + 800128a: 4618 mov r0, r3 + 800128c: f001 ff1a bl 80030c4 + 8001290: 4603 mov r3, r0 + 8001292: 2b00 cmp r3, #0 + 8001294: d001 beq.n 800129a { Error_Handler(); - 8001292: f000 f96d bl 8001570 + 8001296: f000 f9a3 bl 80015e0 } /** Initializes the CPU, AHB and APB buses clocks */ RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 8001296: 230f movs r3, #15 - 8001298: 607b str r3, [r7, #4] + 800129a: 230f movs r3, #15 + 800129c: 607b str r3, [r7, #4] |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; - 800129a: 2302 movs r3, #2 - 800129c: 60bb str r3, [r7, #8] + 800129e: 2302 movs r3, #2 + 80012a0: 60bb str r3, [r7, #8] RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; - 800129e: 2300 movs r3, #0 - 80012a0: 60fb str r3, [r7, #12] + 80012a2: 2300 movs r3, #0 + 80012a4: 60fb str r3, [r7, #12] RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; - 80012a2: f44f 6380 mov.w r3, #1024 ; 0x400 - 80012a6: 613b str r3, [r7, #16] + 80012a6: f44f 6380 mov.w r3, #1024 ; 0x400 + 80012aa: 613b str r3, [r7, #16] RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - 80012a8: 2300 movs r3, #0 - 80012aa: 617b str r3, [r7, #20] + 80012ac: 2300 movs r3, #0 + 80012ae: 617b str r3, [r7, #20] if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) - 80012ac: 1d3b adds r3, r7, #4 - 80012ae: 2102 movs r1, #2 - 80012b0: 4618 mov r0, r3 - 80012b2: f002 f8f5 bl 80034a0 - 80012b6: 4603 mov r3, r0 - 80012b8: 2b00 cmp r3, #0 - 80012ba: d001 beq.n 80012c0 + 80012b0: 1d3b adds r3, r7, #4 + 80012b2: 2102 movs r1, #2 + 80012b4: 4618 mov r0, r3 + 80012b6: f002 f985 bl 80035c4 + 80012ba: 4603 mov r3, r0 + 80012bc: 2b00 cmp r3, #0 + 80012be: d001 beq.n 80012c4 { Error_Handler(); - 80012bc: f000 f958 bl 8001570 + 80012c0: f000 f98e bl 80015e0 } } - 80012c0: bf00 nop - 80012c2: 3740 adds r7, #64 ; 0x40 - 80012c4: 46bd mov sp, r7 - 80012c6: bd80 pop {r7, pc} + 80012c4: bf00 nop + 80012c6: 3740 adds r7, #64 ; 0x40 + 80012c8: 46bd mov sp, r7 + 80012ca: bd80 pop {r7, pc} -080012c8 : +080012cc : * @brief I2C2 Initialization Function * @param None * @retval None */ static void MX_I2C2_Init(void) { - 80012c8: b580 push {r7, lr} - 80012ca: af00 add r7, sp, #0 + 80012cc: b580 push {r7, lr} + 80012ce: af00 add r7, sp, #0 /* USER CODE END I2C2_Init 0 */ /* USER CODE BEGIN I2C2_Init 1 */ /* USER CODE END I2C2_Init 1 */ hi2c2.Instance = I2C2; - 80012cc: 4b12 ldr r3, [pc, #72] ; (8001318 ) - 80012ce: 4a13 ldr r2, [pc, #76] ; (800131c ) - 80012d0: 601a str r2, [r3, #0] + 80012d0: 4b12 ldr r3, [pc, #72] ; (800131c ) + 80012d2: 4a13 ldr r2, [pc, #76] ; (8001320 ) + 80012d4: 601a str r2, [r3, #0] hi2c2.Init.ClockSpeed = 100000; - 80012d2: 4b11 ldr r3, [pc, #68] ; (8001318 ) - 80012d4: 4a12 ldr r2, [pc, #72] ; (8001320 ) - 80012d6: 605a str r2, [r3, #4] + 80012d6: 4b11 ldr r3, [pc, #68] ; (800131c ) + 80012d8: 4a12 ldr r2, [pc, #72] ; (8001324 ) + 80012da: 605a str r2, [r3, #4] hi2c2.Init.DutyCycle = I2C_DUTYCYCLE_2; - 80012d8: 4b0f ldr r3, [pc, #60] ; (8001318 ) - 80012da: 2200 movs r2, #0 - 80012dc: 609a str r2, [r3, #8] + 80012dc: 4b0f ldr r3, [pc, #60] ; (800131c ) + 80012de: 2200 movs r2, #0 + 80012e0: 609a str r2, [r3, #8] hi2c2.Init.OwnAddress1 = 0; - 80012de: 4b0e ldr r3, [pc, #56] ; (8001318 ) - 80012e0: 2200 movs r2, #0 - 80012e2: 60da str r2, [r3, #12] + 80012e2: 4b0e ldr r3, [pc, #56] ; (800131c ) + 80012e4: 2200 movs r2, #0 + 80012e6: 60da str r2, [r3, #12] hi2c2.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; - 80012e4: 4b0c ldr r3, [pc, #48] ; (8001318 ) - 80012e6: f44f 4280 mov.w r2, #16384 ; 0x4000 - 80012ea: 611a str r2, [r3, #16] + 80012e8: 4b0c ldr r3, [pc, #48] ; (800131c ) + 80012ea: f44f 4280 mov.w r2, #16384 ; 0x4000 + 80012ee: 611a str r2, [r3, #16] hi2c2.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; - 80012ec: 4b0a ldr r3, [pc, #40] ; (8001318 ) - 80012ee: 2200 movs r2, #0 - 80012f0: 615a str r2, [r3, #20] + 80012f0: 4b0a ldr r3, [pc, #40] ; (800131c ) + 80012f2: 2200 movs r2, #0 + 80012f4: 615a str r2, [r3, #20] hi2c2.Init.OwnAddress2 = 0; - 80012f2: 4b09 ldr r3, [pc, #36] ; (8001318 ) - 80012f4: 2200 movs r2, #0 - 80012f6: 619a str r2, [r3, #24] + 80012f6: 4b09 ldr r3, [pc, #36] ; (800131c ) + 80012f8: 2200 movs r2, #0 + 80012fa: 619a str r2, [r3, #24] hi2c2.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; - 80012f8: 4b07 ldr r3, [pc, #28] ; (8001318 ) - 80012fa: 2200 movs r2, #0 - 80012fc: 61da str r2, [r3, #28] + 80012fc: 4b07 ldr r3, [pc, #28] ; (800131c ) + 80012fe: 2200 movs r2, #0 + 8001300: 61da str r2, [r3, #28] hi2c2.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; - 80012fe: 4b06 ldr r3, [pc, #24] ; (8001318 ) - 8001300: 2200 movs r2, #0 - 8001302: 621a str r2, [r3, #32] + 8001302: 4b06 ldr r3, [pc, #24] ; (800131c ) + 8001304: 2200 movs r2, #0 + 8001306: 621a str r2, [r3, #32] if (HAL_I2C_Init(&hi2c2) != HAL_OK) - 8001304: 4804 ldr r0, [pc, #16] ; (8001318 ) - 8001306: f000 fe4b bl 8001fa0 - 800130a: 4603 mov r3, r0 - 800130c: 2b00 cmp r3, #0 - 800130e: d001 beq.n 8001314 + 8001308: 4804 ldr r0, [pc, #16] ; (800131c ) + 800130a: f000 fedb bl 80020c4 + 800130e: 4603 mov r3, r0 + 8001310: 2b00 cmp r3, #0 + 8001312: d001 beq.n 8001318 { Error_Handler(); - 8001310: f000 f92e bl 8001570 + 8001314: f000 f964 bl 80015e0 } /* USER CODE BEGIN I2C2_Init 2 */ /* USER CODE END I2C2_Init 2 */ } - 8001314: bf00 nop - 8001316: bd80 pop {r7, pc} - 8001318: 20000218 .word 0x20000218 - 800131c: 40005800 .word 0x40005800 - 8001320: 000186a0 .word 0x000186a0 + 8001318: bf00 nop + 800131a: bd80 pop {r7, pc} + 800131c: 20000218 .word 0x20000218 + 8001320: 40005800 .word 0x40005800 + 8001324: 000186a0 .word 0x000186a0 -08001324 : +08001328 : + * @brief TIM6 Initialization Function + * @param None + * @retval None + */ +static void MX_TIM6_Init(void) +{ + 8001328: b580 push {r7, lr} + 800132a: b082 sub sp, #8 + 800132c: af00 add r7, sp, #0 + + /* USER CODE BEGIN TIM6_Init 0 */ + + /* USER CODE END TIM6_Init 0 */ + + TIM_MasterConfigTypeDef sMasterConfig = {0}; + 800132e: 463b mov r3, r7 + 8001330: 2200 movs r2, #0 + 8001332: 601a str r2, [r3, #0] + 8001334: 605a str r2, [r3, #4] + + /* USER CODE BEGIN TIM6_Init 1 */ + + /* USER CODE END TIM6_Init 1 */ + htim6.Instance = TIM6; + 8001336: 4b15 ldr r3, [pc, #84] ; (800138c ) + 8001338: 4a15 ldr r2, [pc, #84] ; (8001390 ) + 800133a: 601a str r2, [r3, #0] + htim6.Init.Prescaler = 72-1; + 800133c: 4b13 ldr r3, [pc, #76] ; (800138c ) + 800133e: 2247 movs r2, #71 ; 0x47 + 8001340: 605a str r2, [r3, #4] + htim6.Init.CounterMode = TIM_COUNTERMODE_UP; + 8001342: 4b12 ldr r3, [pc, #72] ; (800138c ) + 8001344: 2200 movs r2, #0 + 8001346: 609a str r2, [r3, #8] + htim6.Init.Period = 10000-1; + 8001348: 4b10 ldr r3, [pc, #64] ; (800138c ) + 800134a: f242 720f movw r2, #9999 ; 0x270f + 800134e: 60da str r2, [r3, #12] + htim6.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + 8001350: 4b0e ldr r3, [pc, #56] ; (800138c ) + 8001352: 2200 movs r2, #0 + 8001354: 619a str r2, [r3, #24] + if (HAL_TIM_Base_Init(&htim6) != HAL_OK) + 8001356: 480d ldr r0, [pc, #52] ; (800138c ) + 8001358: f002 fb07 bl 800396a + 800135c: 4603 mov r3, r0 + 800135e: 2b00 cmp r3, #0 + 8001360: d001 beq.n 8001366 + { + Error_Handler(); + 8001362: f000 f93d bl 80015e0 + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + 8001366: 2300 movs r3, #0 + 8001368: 603b str r3, [r7, #0] + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + 800136a: 2300 movs r3, #0 + 800136c: 607b str r3, [r7, #4] + if (HAL_TIMEx_MasterConfigSynchronization(&htim6, &sMasterConfig) != HAL_OK) + 800136e: 463b mov r3, r7 + 8001370: 4619 mov r1, r3 + 8001372: 4806 ldr r0, [pc, #24] ; (800138c ) + 8001374: f002 fd7c bl 8003e70 + 8001378: 4603 mov r3, r0 + 800137a: 2b00 cmp r3, #0 + 800137c: d001 beq.n 8001382 + { + Error_Handler(); + 800137e: f000 f92f bl 80015e0 + } + /* USER CODE BEGIN TIM6_Init 2 */ + + /* USER CODE END TIM6_Init 2 */ + +} + 8001382: bf00 nop + 8001384: 3708 adds r7, #8 + 8001386: 46bd mov sp, r7 + 8001388: bd80 pop {r7, pc} + 800138a: bf00 nop + 800138c: 200002b4 .word 0x200002b4 + 8001390: 40001000 .word 0x40001000 + +08001394 : * @brief GPIO Initialization Function * @param None * @retval None */ static void MX_GPIO_Init(void) { - 8001324: b580 push {r7, lr} - 8001326: b08a sub sp, #40 ; 0x28 - 8001328: af00 add r7, sp, #0 + 8001394: b580 push {r7, lr} + 8001396: b08a sub sp, #40 ; 0x28 + 8001398: af00 add r7, sp, #0 GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800132a: f107 0318 add.w r3, r7, #24 - 800132e: 2200 movs r2, #0 - 8001330: 601a str r2, [r3, #0] - 8001332: 605a str r2, [r3, #4] - 8001334: 609a str r2, [r3, #8] - 8001336: 60da str r2, [r3, #12] + 800139a: f107 0318 add.w r3, r7, #24 + 800139e: 2200 movs r2, #0 + 80013a0: 601a str r2, [r3, #0] + 80013a2: 605a str r2, [r3, #4] + 80013a4: 609a str r2, [r3, #8] + 80013a6: 60da str r2, [r3, #12] /* GPIO Ports Clock Enable */ __HAL_RCC_GPIOF_CLK_ENABLE(); - 8001338: 4b58 ldr r3, [pc, #352] ; (800149c ) - 800133a: 699b ldr r3, [r3, #24] - 800133c: 4a57 ldr r2, [pc, #348] ; (800149c ) - 800133e: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8001342: 6193 str r3, [r2, #24] - 8001344: 4b55 ldr r3, [pc, #340] ; (800149c ) - 8001346: 699b ldr r3, [r3, #24] - 8001348: f003 0380 and.w r3, r3, #128 ; 0x80 - 800134c: 617b str r3, [r7, #20] - 800134e: 697b ldr r3, [r7, #20] + 80013a8: 4b58 ldr r3, [pc, #352] ; (800150c ) + 80013aa: 699b ldr r3, [r3, #24] + 80013ac: 4a57 ldr r2, [pc, #348] ; (800150c ) + 80013ae: f043 0380 orr.w r3, r3, #128 ; 0x80 + 80013b2: 6193 str r3, [r2, #24] + 80013b4: 4b55 ldr r3, [pc, #340] ; (800150c ) + 80013b6: 699b ldr r3, [r3, #24] + 80013b8: f003 0380 and.w r3, r3, #128 ; 0x80 + 80013bc: 617b str r3, [r7, #20] + 80013be: 697b ldr r3, [r7, #20] __HAL_RCC_GPIOB_CLK_ENABLE(); - 8001350: 4b52 ldr r3, [pc, #328] ; (800149c ) - 8001352: 699b ldr r3, [r3, #24] - 8001354: 4a51 ldr r2, [pc, #324] ; (800149c ) - 8001356: f043 0308 orr.w r3, r3, #8 - 800135a: 6193 str r3, [r2, #24] - 800135c: 4b4f ldr r3, [pc, #316] ; (800149c ) - 800135e: 699b ldr r3, [r3, #24] - 8001360: f003 0308 and.w r3, r3, #8 - 8001364: 613b str r3, [r7, #16] - 8001366: 693b ldr r3, [r7, #16] + 80013c0: 4b52 ldr r3, [pc, #328] ; (800150c ) + 80013c2: 699b ldr r3, [r3, #24] + 80013c4: 4a51 ldr r2, [pc, #324] ; (800150c ) + 80013c6: f043 0308 orr.w r3, r3, #8 + 80013ca: 6193 str r3, [r2, #24] + 80013cc: 4b4f ldr r3, [pc, #316] ; (800150c ) + 80013ce: 699b ldr r3, [r3, #24] + 80013d0: f003 0308 and.w r3, r3, #8 + 80013d4: 613b str r3, [r7, #16] + 80013d6: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOG_CLK_ENABLE(); - 8001368: 4b4c ldr r3, [pc, #304] ; (800149c ) - 800136a: 699b ldr r3, [r3, #24] - 800136c: 4a4b ldr r2, [pc, #300] ; (800149c ) - 800136e: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8001372: 6193 str r3, [r2, #24] - 8001374: 4b49 ldr r3, [pc, #292] ; (800149c ) - 8001376: 699b ldr r3, [r3, #24] - 8001378: f403 7380 and.w r3, r3, #256 ; 0x100 - 800137c: 60fb str r3, [r7, #12] - 800137e: 68fb ldr r3, [r7, #12] + 80013d8: 4b4c ldr r3, [pc, #304] ; (800150c ) + 80013da: 699b ldr r3, [r3, #24] + 80013dc: 4a4b ldr r2, [pc, #300] ; (800150c ) + 80013de: f443 7380 orr.w r3, r3, #256 ; 0x100 + 80013e2: 6193 str r3, [r2, #24] + 80013e4: 4b49 ldr r3, [pc, #292] ; (800150c ) + 80013e6: 699b ldr r3, [r3, #24] + 80013e8: f403 7380 and.w r3, r3, #256 ; 0x100 + 80013ec: 60fb str r3, [r7, #12] + 80013ee: 68fb ldr r3, [r7, #12] __HAL_RCC_GPIOE_CLK_ENABLE(); - 8001380: 4b46 ldr r3, [pc, #280] ; (800149c ) - 8001382: 699b ldr r3, [r3, #24] - 8001384: 4a45 ldr r2, [pc, #276] ; (800149c ) - 8001386: f043 0340 orr.w r3, r3, #64 ; 0x40 - 800138a: 6193 str r3, [r2, #24] - 800138c: 4b43 ldr r3, [pc, #268] ; (800149c ) - 800138e: 699b ldr r3, [r3, #24] - 8001390: f003 0340 and.w r3, r3, #64 ; 0x40 - 8001394: 60bb str r3, [r7, #8] - 8001396: 68bb ldr r3, [r7, #8] + 80013f0: 4b46 ldr r3, [pc, #280] ; (800150c ) + 80013f2: 699b ldr r3, [r3, #24] + 80013f4: 4a45 ldr r2, [pc, #276] ; (800150c ) + 80013f6: f043 0340 orr.w r3, r3, #64 ; 0x40 + 80013fa: 6193 str r3, [r2, #24] + 80013fc: 4b43 ldr r3, [pc, #268] ; (800150c ) + 80013fe: 699b ldr r3, [r3, #24] + 8001400: f003 0340 and.w r3, r3, #64 ; 0x40 + 8001404: 60bb str r3, [r7, #8] + 8001406: 68bb ldr r3, [r7, #8] __HAL_RCC_GPIOD_CLK_ENABLE(); - 8001398: 4b40 ldr r3, [pc, #256] ; (800149c ) - 800139a: 699b ldr r3, [r3, #24] - 800139c: 4a3f ldr r2, [pc, #252] ; (800149c ) - 800139e: f043 0320 orr.w r3, r3, #32 - 80013a2: 6193 str r3, [r2, #24] - 80013a4: 4b3d ldr r3, [pc, #244] ; (800149c ) - 80013a6: 699b ldr r3, [r3, #24] - 80013a8: f003 0320 and.w r3, r3, #32 - 80013ac: 607b str r3, [r7, #4] - 80013ae: 687b ldr r3, [r7, #4] + 8001408: 4b40 ldr r3, [pc, #256] ; (800150c ) + 800140a: 699b ldr r3, [r3, #24] + 800140c: 4a3f ldr r2, [pc, #252] ; (800150c ) + 800140e: f043 0320 orr.w r3, r3, #32 + 8001412: 6193 str r3, [r2, #24] + 8001414: 4b3d ldr r3, [pc, #244] ; (800150c ) + 8001416: 699b ldr r3, [r3, #24] + 8001418: f003 0320 and.w r3, r3, #32 + 800141c: 607b str r3, [r7, #4] + 800141e: 687b ldr r3, [r7, #4] /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(TDIN_GPIO_Port, TDIN_Pin, GPIO_PIN_SET); - 80013b0: 2201 movs r2, #1 - 80013b2: f44f 7100 mov.w r1, #512 ; 0x200 - 80013b6: 483a ldr r0, [pc, #232] ; (80014a0 ) - 80013b8: f000 fdd9 bl 8001f6e + 8001420: 2201 movs r2, #1 + 8001422: f44f 7100 mov.w r1, #512 ; 0x200 + 8001426: 483a ldr r0, [pc, #232] ; (8001510 ) + 8001428: f000 fe33 bl 8002092 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(LCD_BL_GPIO_Port, LCD_BL_Pin, GPIO_PIN_RESET); - 80013bc: 2200 movs r2, #0 - 80013be: 2101 movs r1, #1 - 80013c0: 4838 ldr r0, [pc, #224] ; (80014a4 ) - 80013c2: f000 fdd4 bl 8001f6e + 800142c: 2200 movs r2, #0 + 800142e: 2101 movs r1, #1 + 8001430: 4838 ldr r0, [pc, #224] ; (8001514 ) + 8001432: f000 fe2e bl 8002092 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin|MAX_IRD_Pin|MAX_RD_Pin, GPIO_PIN_SET); - 80013c6: 2201 movs r2, #1 - 80013c8: f245 0106 movw r1, #20486 ; 0x5006 - 80013cc: 4835 ldr r0, [pc, #212] ; (80014a4 ) - 80013ce: f000 fdce bl 8001f6e + 8001436: 2201 movs r2, #1 + 8001438: f245 0106 movw r1, #20486 ; 0x5006 + 800143c: 4835 ldr r0, [pc, #212] ; (8001514 ) + 800143e: f000 fe28 bl 8002092 /*Configure GPIO pin : TDOUT_Pin */ GPIO_InitStruct.Pin = TDOUT_Pin; - 80013d2: f44f 7380 mov.w r3, #256 ; 0x100 - 80013d6: 61bb str r3, [r7, #24] + 8001442: f44f 7380 mov.w r3, #256 ; 0x100 + 8001446: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80013d8: 2300 movs r3, #0 - 80013da: 61fb str r3, [r7, #28] + 8001448: 2300 movs r3, #0 + 800144a: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80013dc: 2300 movs r3, #0 - 80013de: 623b str r3, [r7, #32] + 800144c: 2300 movs r3, #0 + 800144e: 623b str r3, [r7, #32] HAL_GPIO_Init(TDOUT_GPIO_Port, &GPIO_InitStruct); - 80013e0: f107 0318 add.w r3, r7, #24 - 80013e4: 4619 mov r1, r3 - 80013e6: 482e ldr r0, [pc, #184] ; (80014a0 ) - 80013e8: f000 fc16 bl 8001c18 + 8001450: f107 0318 add.w r3, r7, #24 + 8001454: 4619 mov r1, r3 + 8001456: 482e ldr r0, [pc, #184] ; (8001510 ) + 8001458: f000 fc70 bl 8001d3c /*Configure GPIO pin : TDIN_Pin */ GPIO_InitStruct.Pin = TDIN_Pin; - 80013ec: f44f 7300 mov.w r3, #512 ; 0x200 - 80013f0: 61bb str r3, [r7, #24] - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 80013f2: 2301 movs r3, #1 - 80013f4: 61fb str r3, [r7, #28] - GPIO_InitStruct.Pull = GPIO_NOPULL; - 80013f6: 2300 movs r3, #0 - 80013f8: 623b str r3, [r7, #32] - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80013fa: 2303 movs r3, #3 - 80013fc: 627b str r3, [r7, #36] ; 0x24 - HAL_GPIO_Init(TDIN_GPIO_Port, &GPIO_InitStruct); - 80013fe: f107 0318 add.w r3, r7, #24 - 8001402: 4619 mov r1, r3 - 8001404: 4826 ldr r0, [pc, #152] ; (80014a0 ) - 8001406: f000 fc07 bl 8001c18 - - /*Configure GPIO pin : TPEN_Pin */ - GPIO_InitStruct.Pin = TPEN_Pin; - 800140a: f44f 6380 mov.w r3, #1024 ; 0x400 - 800140e: 61bb str r3, [r7, #24] - GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 8001410: 2300 movs r3, #0 - 8001412: 61fb str r3, [r7, #28] - GPIO_InitStruct.Pull = GPIO_PULLUP; - 8001414: 2301 movs r3, #1 - 8001416: 623b str r3, [r7, #32] - HAL_GPIO_Init(TPEN_GPIO_Port, &GPIO_InitStruct); - 8001418: f107 0318 add.w r3, r7, #24 - 800141c: 4619 mov r1, r3 - 800141e: 4820 ldr r0, [pc, #128] ; (80014a0 ) - 8001420: f000 fbfa bl 8001c18 - - /*Configure GPIO pin : LCD_BL_Pin */ - GPIO_InitStruct.Pin = LCD_BL_Pin; - 8001424: 2301 movs r3, #1 - 8001426: 61bb str r3, [r7, #24] - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 8001428: 2301 movs r3, #1 - 800142a: 61fb str r3, [r7, #28] - GPIO_InitStruct.Pull = GPIO_NOPULL; - 800142c: 2300 movs r3, #0 - 800142e: 623b str r3, [r7, #32] - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 8001430: 2302 movs r3, #2 - 8001432: 627b str r3, [r7, #36] ; 0x24 - HAL_GPIO_Init(LCD_BL_GPIO_Port, &GPIO_InitStruct); - 8001434: f107 0318 add.w r3, r7, #24 - 8001438: 4619 mov r1, r3 - 800143a: 481a ldr r0, [pc, #104] ; (80014a4 ) - 800143c: f000 fbec bl 8001c18 - - /*Configure GPIO pins : TCLK_Pin TCS_Pin */ - GPIO_InitStruct.Pin = TCLK_Pin|TCS_Pin; - 8001440: 2306 movs r3, #6 - 8001442: 61bb str r3, [r7, #24] - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 8001444: 2301 movs r3, #1 - 8001446: 61fb str r3, [r7, #28] - GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001448: 2300 movs r3, #0 - 800144a: 623b str r3, [r7, #32] - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800144c: 2303 movs r3, #3 - 800144e: 627b str r3, [r7, #36] ; 0x24 - HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8001450: f107 0318 add.w r3, r7, #24 - 8001454: 4619 mov r1, r3 - 8001456: 4813 ldr r0, [pc, #76] ; (80014a4 ) - 8001458: f000 fbde bl 8001c18 - - /*Configure GPIO pins : MAX_IRD_Pin MAX_RD_Pin */ - GPIO_InitStruct.Pin = MAX_IRD_Pin|MAX_RD_Pin; - 800145c: f44f 43a0 mov.w r3, #20480 ; 0x5000 + 800145c: f44f 7300 mov.w r3, #512 ; 0x200 8001460: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; 8001462: 2301 movs r3, #1 8001464: 61fb str r3, [r7, #28] - GPIO_InitStruct.Pull = GPIO_PULLUP; - 8001466: 2301 movs r3, #1 + GPIO_InitStruct.Pull = GPIO_NOPULL; + 8001466: 2300 movs r3, #0 8001468: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; 800146a: 2303 movs r3, #3 800146c: 627b str r3, [r7, #36] ; 0x24 - HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + HAL_GPIO_Init(TDIN_GPIO_Port, &GPIO_InitStruct); 800146e: f107 0318 add.w r3, r7, #24 8001472: 4619 mov r1, r3 - 8001474: 480b ldr r0, [pc, #44] ; (80014a4 ) - 8001476: f000 fbcf bl 8001c18 + 8001474: 4826 ldr r0, [pc, #152] ; (8001510 ) + 8001476: f000 fc61 bl 8001d3c - /*Configure GPIO pin : MAX_INT_Pin */ - GPIO_InitStruct.Pin = MAX_INT_Pin; - 800147a: f44f 5300 mov.w r3, #8192 ; 0x2000 + /*Configure GPIO pin : TPEN_Pin */ + GPIO_InitStruct.Pin = TPEN_Pin; + 800147a: f44f 6380 mov.w r3, #1024 ; 0x400 800147e: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; 8001480: 2300 movs r3, #0 @@ -1910,18607 +1924,19995 @@ static void MX_GPIO_Init(void) GPIO_InitStruct.Pull = GPIO_PULLUP; 8001484: 2301 movs r3, #1 8001486: 623b str r3, [r7, #32] - HAL_GPIO_Init(MAX_INT_GPIO_Port, &GPIO_InitStruct); + HAL_GPIO_Init(TPEN_GPIO_Port, &GPIO_InitStruct); 8001488: f107 0318 add.w r3, r7, #24 800148c: 4619 mov r1, r3 - 800148e: 4805 ldr r0, [pc, #20] ; (80014a4 ) - 8001490: f000 fbc2 bl 8001c18 + 800148e: 4820 ldr r0, [pc, #128] ; (8001510 ) + 8001490: f000 fc54 bl 8001d3c + + /*Configure GPIO pin : LCD_BL_Pin */ + GPIO_InitStruct.Pin = LCD_BL_Pin; + 8001494: 2301 movs r3, #1 + 8001496: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + 8001498: 2301 movs r3, #1 + 800149a: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_NOPULL; + 800149c: 2300 movs r3, #0 + 800149e: 623b str r3, [r7, #32] + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + 80014a0: 2302 movs r3, #2 + 80014a2: 627b str r3, [r7, #36] ; 0x24 + HAL_GPIO_Init(LCD_BL_GPIO_Port, &GPIO_InitStruct); + 80014a4: f107 0318 add.w r3, r7, #24 + 80014a8: 4619 mov r1, r3 + 80014aa: 481a ldr r0, [pc, #104] ; (8001514 ) + 80014ac: f000 fc46 bl 8001d3c + + /*Configure GPIO pins : TCLK_Pin TCS_Pin */ + GPIO_InitStruct.Pin = TCLK_Pin|TCS_Pin; + 80014b0: 2306 movs r3, #6 + 80014b2: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + 80014b4: 2301 movs r3, #1 + 80014b6: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_NOPULL; + 80014b8: 2300 movs r3, #0 + 80014ba: 623b str r3, [r7, #32] + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + 80014bc: 2303 movs r3, #3 + 80014be: 627b str r3, [r7, #36] ; 0x24 + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + 80014c0: f107 0318 add.w r3, r7, #24 + 80014c4: 4619 mov r1, r3 + 80014c6: 4813 ldr r0, [pc, #76] ; (8001514 ) + 80014c8: f000 fc38 bl 8001d3c + + /*Configure GPIO pins : MAX_IRD_Pin MAX_RD_Pin */ + GPIO_InitStruct.Pin = MAX_IRD_Pin|MAX_RD_Pin; + 80014cc: f44f 43a0 mov.w r3, #20480 ; 0x5000 + 80014d0: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + 80014d2: 2301 movs r3, #1 + 80014d4: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_PULLUP; + 80014d6: 2301 movs r3, #1 + 80014d8: 623b str r3, [r7, #32] + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + 80014da: 2303 movs r3, #3 + 80014dc: 627b str r3, [r7, #36] ; 0x24 + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + 80014de: f107 0318 add.w r3, r7, #24 + 80014e2: 4619 mov r1, r3 + 80014e4: 480b ldr r0, [pc, #44] ; (8001514 ) + 80014e6: f000 fc29 bl 8001d3c + + /*Configure GPIO pin : MAX_INT_Pin */ + GPIO_InitStruct.Pin = MAX_INT_Pin; + 80014ea: f44f 5300 mov.w r3, #8192 ; 0x2000 + 80014ee: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + 80014f0: 2300 movs r3, #0 + 80014f2: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_PULLUP; + 80014f4: 2301 movs r3, #1 + 80014f6: 623b str r3, [r7, #32] + HAL_GPIO_Init(MAX_INT_GPIO_Port, &GPIO_InitStruct); + 80014f8: f107 0318 add.w r3, r7, #24 + 80014fc: 4619 mov r1, r3 + 80014fe: 4805 ldr r0, [pc, #20] ; (8001514 ) + 8001500: f000 fc1c bl 8001d3c } - 8001494: bf00 nop - 8001496: 3728 adds r7, #40 ; 0x28 - 8001498: 46bd mov sp, r7 - 800149a: bd80 pop {r7, pc} - 800149c: 40021000 .word 0x40021000 - 80014a0: 40011c00 .word 0x40011c00 - 80014a4: 40010c00 .word 0x40010c00 + 8001504: bf00 nop + 8001506: 3728 adds r7, #40 ; 0x28 + 8001508: 46bd mov sp, r7 + 800150a: bd80 pop {r7, pc} + 800150c: 40021000 .word 0x40021000 + 8001510: 40011c00 .word 0x40011c00 + 8001514: 40010c00 .word 0x40010c00 -080014a8 : +08001518 : /* FSMC initialization function */ static void MX_FSMC_Init(void) { - 80014a8: b580 push {r7, lr} - 80014aa: b088 sub sp, #32 - 80014ac: af00 add r7, sp, #0 + 8001518: b580 push {r7, lr} + 800151a: b088 sub sp, #32 + 800151c: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_Init 0 */ /* USER CODE END FSMC_Init 0 */ FSMC_NORSRAM_TimingTypeDef Timing = {0}; - 80014ae: 1d3b adds r3, r7, #4 - 80014b0: 2200 movs r2, #0 - 80014b2: 601a str r2, [r3, #0] - 80014b4: 605a str r2, [r3, #4] - 80014b6: 609a str r2, [r3, #8] - 80014b8: 60da str r2, [r3, #12] - 80014ba: 611a str r2, [r3, #16] - 80014bc: 615a str r2, [r3, #20] - 80014be: 619a str r2, [r3, #24] + 800151e: 1d3b adds r3, r7, #4 + 8001520: 2200 movs r2, #0 + 8001522: 601a str r2, [r3, #0] + 8001524: 605a str r2, [r3, #4] + 8001526: 609a str r2, [r3, #8] + 8001528: 60da str r2, [r3, #12] + 800152a: 611a str r2, [r3, #16] + 800152c: 615a str r2, [r3, #20] + 800152e: 619a str r2, [r3, #24] /* USER CODE END FSMC_Init 1 */ /** Perform the SRAM1 memory initialization sequence */ hsram1.Instance = FSMC_NORSRAM_DEVICE; - 80014c0: 4b28 ldr r3, [pc, #160] ; (8001564 ) - 80014c2: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 - 80014c6: 601a str r2, [r3, #0] + 8001530: 4b28 ldr r3, [pc, #160] ; (80015d4 ) + 8001532: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 + 8001536: 601a str r2, [r3, #0] hsram1.Extended = FSMC_NORSRAM_EXTENDED_DEVICE; - 80014c8: 4b26 ldr r3, [pc, #152] ; (8001564 ) - 80014ca: 4a27 ldr r2, [pc, #156] ; (8001568 ) - 80014cc: 605a str r2, [r3, #4] + 8001538: 4b26 ldr r3, [pc, #152] ; (80015d4 ) + 800153a: 4a27 ldr r2, [pc, #156] ; (80015d8 ) + 800153c: 605a str r2, [r3, #4] /* hsram1.Init */ hsram1.Init.NSBank = FSMC_NORSRAM_BANK4; - 80014ce: 4b25 ldr r3, [pc, #148] ; (8001564 ) - 80014d0: 2206 movs r2, #6 - 80014d2: 609a str r2, [r3, #8] + 800153e: 4b25 ldr r3, [pc, #148] ; (80015d4 ) + 8001540: 2206 movs r2, #6 + 8001542: 609a str r2, [r3, #8] hsram1.Init.DataAddressMux = FSMC_DATA_ADDRESS_MUX_DISABLE; - 80014d4: 4b23 ldr r3, [pc, #140] ; (8001564 ) - 80014d6: 2200 movs r2, #0 - 80014d8: 60da str r2, [r3, #12] + 8001544: 4b23 ldr r3, [pc, #140] ; (80015d4 ) + 8001546: 2200 movs r2, #0 + 8001548: 60da str r2, [r3, #12] hsram1.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM; - 80014da: 4b22 ldr r3, [pc, #136] ; (8001564 ) - 80014dc: 2200 movs r2, #0 - 80014de: 611a str r2, [r3, #16] + 800154a: 4b22 ldr r3, [pc, #136] ; (80015d4 ) + 800154c: 2200 movs r2, #0 + 800154e: 611a str r2, [r3, #16] hsram1.Init.MemoryDataWidth = FSMC_NORSRAM_MEM_BUS_WIDTH_16; - 80014e0: 4b20 ldr r3, [pc, #128] ; (8001564 ) - 80014e2: 2210 movs r2, #16 - 80014e4: 615a str r2, [r3, #20] + 8001550: 4b20 ldr r3, [pc, #128] ; (80015d4 ) + 8001552: 2210 movs r2, #16 + 8001554: 615a str r2, [r3, #20] hsram1.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE; - 80014e6: 4b1f ldr r3, [pc, #124] ; (8001564 ) - 80014e8: 2200 movs r2, #0 - 80014ea: 619a str r2, [r3, #24] + 8001556: 4b1f ldr r3, [pc, #124] ; (80015d4 ) + 8001558: 2200 movs r2, #0 + 800155a: 619a str r2, [r3, #24] hsram1.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW; - 80014ec: 4b1d ldr r3, [pc, #116] ; (8001564 ) - 80014ee: 2200 movs r2, #0 - 80014f0: 61da str r2, [r3, #28] + 800155c: 4b1d ldr r3, [pc, #116] ; (80015d4 ) + 800155e: 2200 movs r2, #0 + 8001560: 61da str r2, [r3, #28] hsram1.Init.WrapMode = FSMC_WRAP_MODE_DISABLE; - 80014f2: 4b1c ldr r3, [pc, #112] ; (8001564 ) - 80014f4: 2200 movs r2, #0 - 80014f6: 621a str r2, [r3, #32] + 8001562: 4b1c ldr r3, [pc, #112] ; (80015d4 ) + 8001564: 2200 movs r2, #0 + 8001566: 621a str r2, [r3, #32] hsram1.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS; - 80014f8: 4b1a ldr r3, [pc, #104] ; (8001564 ) - 80014fa: 2200 movs r2, #0 - 80014fc: 625a str r2, [r3, #36] ; 0x24 + 8001568: 4b1a ldr r3, [pc, #104] ; (80015d4 ) + 800156a: 2200 movs r2, #0 + 800156c: 625a str r2, [r3, #36] ; 0x24 hsram1.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE; - 80014fe: 4b19 ldr r3, [pc, #100] ; (8001564 ) - 8001500: f44f 5280 mov.w r2, #4096 ; 0x1000 - 8001504: 629a str r2, [r3, #40] ; 0x28 + 800156e: 4b19 ldr r3, [pc, #100] ; (80015d4 ) + 8001570: f44f 5280 mov.w r2, #4096 ; 0x1000 + 8001574: 629a str r2, [r3, #40] ; 0x28 hsram1.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE; - 8001506: 4b17 ldr r3, [pc, #92] ; (8001564 ) - 8001508: 2200 movs r2, #0 - 800150a: 62da str r2, [r3, #44] ; 0x2c + 8001576: 4b17 ldr r3, [pc, #92] ; (80015d4 ) + 8001578: 2200 movs r2, #0 + 800157a: 62da str r2, [r3, #44] ; 0x2c hsram1.Init.ExtendedMode = FSMC_EXTENDED_MODE_DISABLE; - 800150c: 4b15 ldr r3, [pc, #84] ; (8001564 ) - 800150e: 2200 movs r2, #0 - 8001510: 631a str r2, [r3, #48] ; 0x30 + 800157c: 4b15 ldr r3, [pc, #84] ; (80015d4 ) + 800157e: 2200 movs r2, #0 + 8001580: 631a str r2, [r3, #48] ; 0x30 hsram1.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE; - 8001512: 4b14 ldr r3, [pc, #80] ; (8001564 ) - 8001514: 2200 movs r2, #0 - 8001516: 635a str r2, [r3, #52] ; 0x34 + 8001582: 4b14 ldr r3, [pc, #80] ; (80015d4 ) + 8001584: 2200 movs r2, #0 + 8001586: 635a str r2, [r3, #52] ; 0x34 hsram1.Init.WriteBurst = FSMC_WRITE_BURST_DISABLE; - 8001518: 4b12 ldr r3, [pc, #72] ; (8001564 ) - 800151a: 2200 movs r2, #0 - 800151c: 639a str r2, [r3, #56] ; 0x38 + 8001588: 4b12 ldr r3, [pc, #72] ; (80015d4 ) + 800158a: 2200 movs r2, #0 + 800158c: 639a str r2, [r3, #56] ; 0x38 /* Timing */ Timing.AddressSetupTime = 0; - 800151e: 2300 movs r3, #0 - 8001520: 607b str r3, [r7, #4] + 800158e: 2300 movs r3, #0 + 8001590: 607b str r3, [r7, #4] Timing.AddressHoldTime = 15; - 8001522: 230f movs r3, #15 - 8001524: 60bb str r3, [r7, #8] + 8001592: 230f movs r3, #15 + 8001594: 60bb str r3, [r7, #8] Timing.DataSetupTime = 1; - 8001526: 2301 movs r3, #1 - 8001528: 60fb str r3, [r7, #12] + 8001596: 2301 movs r3, #1 + 8001598: 60fb str r3, [r7, #12] Timing.BusTurnAroundDuration = 0; - 800152a: 2300 movs r3, #0 - 800152c: 613b str r3, [r7, #16] + 800159a: 2300 movs r3, #0 + 800159c: 613b str r3, [r7, #16] Timing.CLKDivision = 16; - 800152e: 2310 movs r3, #16 - 8001530: 617b str r3, [r7, #20] + 800159e: 2310 movs r3, #16 + 80015a0: 617b str r3, [r7, #20] Timing.DataLatency = 17; - 8001532: 2311 movs r3, #17 - 8001534: 61bb str r3, [r7, #24] + 80015a2: 2311 movs r3, #17 + 80015a4: 61bb str r3, [r7, #24] Timing.AccessMode = FSMC_ACCESS_MODE_A; - 8001536: 2300 movs r3, #0 - 8001538: 61fb str r3, [r7, #28] + 80015a6: 2300 movs r3, #0 + 80015a8: 61fb str r3, [r7, #28] /* ExtTiming */ if (HAL_SRAM_Init(&hsram1, &Timing, NULL) != HAL_OK) - 800153a: 1d3b adds r3, r7, #4 - 800153c: 2200 movs r2, #0 - 800153e: 4619 mov r1, r3 - 8001540: 4808 ldr r0, [pc, #32] ; (8001564 ) - 8001542: f002 f933 bl 80037ac - 8001546: 4603 mov r3, r0 - 8001548: 2b00 cmp r3, #0 - 800154a: d001 beq.n 8001550 + 80015aa: 1d3b adds r3, r7, #4 + 80015ac: 2200 movs r2, #0 + 80015ae: 4619 mov r1, r3 + 80015b0: 4808 ldr r0, [pc, #32] ; (80015d4 ) + 80015b2: f002 f98d bl 80038d0 + 80015b6: 4603 mov r3, r0 + 80015b8: 2b00 cmp r3, #0 + 80015ba: d001 beq.n 80015c0 { Error_Handler( ); - 800154c: f000 f810 bl 8001570 + 80015bc: f000 f810 bl 80015e0 } /** Disconnect NADV */ __HAL_AFIO_FSMCNADV_DISCONNECTED(); - 8001550: 4b06 ldr r3, [pc, #24] ; (800156c ) - 8001552: 69db ldr r3, [r3, #28] - 8001554: 4a05 ldr r2, [pc, #20] ; (800156c ) - 8001556: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 800155a: 61d3 str r3, [r2, #28] + 80015c0: 4b06 ldr r3, [pc, #24] ; (80015dc ) + 80015c2: 69db ldr r3, [r3, #28] + 80015c4: 4a05 ldr r2, [pc, #20] ; (80015dc ) + 80015c6: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 80015ca: 61d3 str r3, [r2, #28] /* USER CODE BEGIN FSMC_Init 2 */ /* USER CODE END FSMC_Init 2 */ } - 800155c: bf00 nop - 800155e: 3720 adds r7, #32 - 8001560: 46bd mov sp, r7 - 8001562: bd80 pop {r7, pc} - 8001564: 2000026c .word 0x2000026c - 8001568: a0000104 .word 0xa0000104 - 800156c: 40010000 .word 0x40010000 + 80015cc: bf00 nop + 80015ce: 3720 adds r7, #32 + 80015d0: 46bd mov sp, r7 + 80015d2: bd80 pop {r7, pc} + 80015d4: 2000026c .word 0x2000026c + 80015d8: a0000104 .word 0xa0000104 + 80015dc: 40010000 .word 0x40010000 -08001570 : +080015e0 : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 8001570: b480 push {r7} - 8001572: af00 add r7, sp, #0 + 80015e0: b480 push {r7} + 80015e2: af00 add r7, sp, #0 \details Disables IRQ interrupts by setting the I-bit in the CPSR. Can only be executed in Privileged modes. */ __STATIC_FORCEINLINE void __disable_irq(void) { __ASM volatile ("cpsid i" : : : "memory"); - 8001574: b672 cpsid i + 80015e4: b672 cpsid i } - 8001576: bf00 nop + 80015e6: bf00 nop /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) - 8001578: e7fe b.n 8001578 + 80015e8: e7fe b.n 80015e8 ... -0800157c : +080015ec : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 800157c: b480 push {r7} - 800157e: b085 sub sp, #20 - 8001580: af00 add r7, sp, #0 + 80015ec: b480 push {r7} + 80015ee: b085 sub sp, #20 + 80015f0: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_AFIO_CLK_ENABLE(); - 8001582: 4b15 ldr r3, [pc, #84] ; (80015d8 ) - 8001584: 699b ldr r3, [r3, #24] - 8001586: 4a14 ldr r2, [pc, #80] ; (80015d8 ) - 8001588: f043 0301 orr.w r3, r3, #1 - 800158c: 6193 str r3, [r2, #24] - 800158e: 4b12 ldr r3, [pc, #72] ; (80015d8 ) - 8001590: 699b ldr r3, [r3, #24] - 8001592: f003 0301 and.w r3, r3, #1 - 8001596: 60bb str r3, [r7, #8] - 8001598: 68bb ldr r3, [r7, #8] + 80015f2: 4b15 ldr r3, [pc, #84] ; (8001648 ) + 80015f4: 699b ldr r3, [r3, #24] + 80015f6: 4a14 ldr r2, [pc, #80] ; (8001648 ) + 80015f8: f043 0301 orr.w r3, r3, #1 + 80015fc: 6193 str r3, [r2, #24] + 80015fe: 4b12 ldr r3, [pc, #72] ; (8001648 ) + 8001600: 699b ldr r3, [r3, #24] + 8001602: f003 0301 and.w r3, r3, #1 + 8001606: 60bb str r3, [r7, #8] + 8001608: 68bb ldr r3, [r7, #8] __HAL_RCC_PWR_CLK_ENABLE(); - 800159a: 4b0f ldr r3, [pc, #60] ; (80015d8 ) - 800159c: 69db ldr r3, [r3, #28] - 800159e: 4a0e ldr r2, [pc, #56] ; (80015d8 ) - 80015a0: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 80015a4: 61d3 str r3, [r2, #28] - 80015a6: 4b0c ldr r3, [pc, #48] ; (80015d8 ) - 80015a8: 69db ldr r3, [r3, #28] - 80015aa: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80015ae: 607b str r3, [r7, #4] - 80015b0: 687b ldr r3, [r7, #4] + 800160a: 4b0f ldr r3, [pc, #60] ; (8001648 ) + 800160c: 69db ldr r3, [r3, #28] + 800160e: 4a0e ldr r2, [pc, #56] ; (8001648 ) + 8001610: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8001614: 61d3 str r3, [r2, #28] + 8001616: 4b0c ldr r3, [pc, #48] ; (8001648 ) + 8001618: 69db ldr r3, [r3, #28] + 800161a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 800161e: 607b str r3, [r7, #4] + 8001620: 687b ldr r3, [r7, #4] /* System interrupt init*/ /** DISABLE: JTAG-DP Disabled and SW-DP Disabled */ __HAL_AFIO_REMAP_SWJ_DISABLE(); - 80015b2: 4b0a ldr r3, [pc, #40] ; (80015dc ) - 80015b4: 685b ldr r3, [r3, #4] - 80015b6: 60fb str r3, [r7, #12] - 80015b8: 68fb ldr r3, [r7, #12] - 80015ba: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 - 80015be: 60fb str r3, [r7, #12] - 80015c0: 68fb ldr r3, [r7, #12] - 80015c2: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 - 80015c6: 60fb str r3, [r7, #12] - 80015c8: 4a04 ldr r2, [pc, #16] ; (80015dc ) - 80015ca: 68fb ldr r3, [r7, #12] - 80015cc: 6053 str r3, [r2, #4] + 8001622: 4b0a ldr r3, [pc, #40] ; (800164c ) + 8001624: 685b ldr r3, [r3, #4] + 8001626: 60fb str r3, [r7, #12] + 8001628: 68fb ldr r3, [r7, #12] + 800162a: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 + 800162e: 60fb str r3, [r7, #12] + 8001630: 68fb ldr r3, [r7, #12] + 8001632: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 + 8001636: 60fb str r3, [r7, #12] + 8001638: 4a04 ldr r2, [pc, #16] ; (800164c ) + 800163a: 68fb ldr r3, [r7, #12] + 800163c: 6053 str r3, [r2, #4] /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 80015ce: bf00 nop - 80015d0: 3714 adds r7, #20 - 80015d2: 46bd mov sp, r7 - 80015d4: bc80 pop {r7} - 80015d6: 4770 bx lr - 80015d8: 40021000 .word 0x40021000 - 80015dc: 40010000 .word 0x40010000 + 800163e: bf00 nop + 8001640: 3714 adds r7, #20 + 8001642: 46bd mov sp, r7 + 8001644: bc80 pop {r7} + 8001646: 4770 bx lr + 8001648: 40021000 .word 0x40021000 + 800164c: 40010000 .word 0x40010000 -080015e0 : +08001650 : * This function configures the hardware resources used in this example * @param hi2c: I2C handle pointer * @retval None */ void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c) { - 80015e0: b580 push {r7, lr} - 80015e2: b088 sub sp, #32 - 80015e4: af00 add r7, sp, #0 - 80015e6: 6078 str r0, [r7, #4] + 8001650: b580 push {r7, lr} + 8001652: b088 sub sp, #32 + 8001654: af00 add r7, sp, #0 + 8001656: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80015e8: f107 0310 add.w r3, r7, #16 - 80015ec: 2200 movs r2, #0 - 80015ee: 601a str r2, [r3, #0] - 80015f0: 605a str r2, [r3, #4] - 80015f2: 609a str r2, [r3, #8] - 80015f4: 60da str r2, [r3, #12] + 8001658: f107 0310 add.w r3, r7, #16 + 800165c: 2200 movs r2, #0 + 800165e: 601a str r2, [r3, #0] + 8001660: 605a str r2, [r3, #4] + 8001662: 609a str r2, [r3, #8] + 8001664: 60da str r2, [r3, #12] if(hi2c->Instance==I2C2) - 80015f6: 687b ldr r3, [r7, #4] - 80015f8: 681b ldr r3, [r3, #0] - 80015fa: 4a16 ldr r2, [pc, #88] ; (8001654 ) - 80015fc: 4293 cmp r3, r2 - 80015fe: d124 bne.n 800164a + 8001666: 687b ldr r3, [r7, #4] + 8001668: 681b ldr r3, [r3, #0] + 800166a: 4a16 ldr r2, [pc, #88] ; (80016c4 ) + 800166c: 4293 cmp r3, r2 + 800166e: d124 bne.n 80016ba { /* USER CODE BEGIN I2C2_MspInit 0 */ /* USER CODE END I2C2_MspInit 0 */ __HAL_RCC_GPIOB_CLK_ENABLE(); - 8001600: 4b15 ldr r3, [pc, #84] ; (8001658 ) - 8001602: 699b ldr r3, [r3, #24] - 8001604: 4a14 ldr r2, [pc, #80] ; (8001658 ) - 8001606: f043 0308 orr.w r3, r3, #8 - 800160a: 6193 str r3, [r2, #24] - 800160c: 4b12 ldr r3, [pc, #72] ; (8001658 ) - 800160e: 699b ldr r3, [r3, #24] - 8001610: f003 0308 and.w r3, r3, #8 - 8001614: 60fb str r3, [r7, #12] - 8001616: 68fb ldr r3, [r7, #12] + 8001670: 4b15 ldr r3, [pc, #84] ; (80016c8 ) + 8001672: 699b ldr r3, [r3, #24] + 8001674: 4a14 ldr r2, [pc, #80] ; (80016c8 ) + 8001676: f043 0308 orr.w r3, r3, #8 + 800167a: 6193 str r3, [r2, #24] + 800167c: 4b12 ldr r3, [pc, #72] ; (80016c8 ) + 800167e: 699b ldr r3, [r3, #24] + 8001680: f003 0308 and.w r3, r3, #8 + 8001684: 60fb str r3, [r7, #12] + 8001686: 68fb ldr r3, [r7, #12] /**I2C2 GPIO Configuration PB10 ------> I2C2_SCL PB11 ------> I2C2_SDA */ GPIO_InitStruct.Pin = GPIO_PIN_10|GPIO_PIN_11; - 8001618: f44f 6340 mov.w r3, #3072 ; 0xc00 - 800161c: 613b str r3, [r7, #16] + 8001688: f44f 6340 mov.w r3, #3072 ; 0xc00 + 800168c: 613b str r3, [r7, #16] GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; - 800161e: 2312 movs r3, #18 - 8001620: 617b str r3, [r7, #20] + 800168e: 2312 movs r3, #18 + 8001690: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001622: 2303 movs r3, #3 - 8001624: 61fb str r3, [r7, #28] + 8001692: 2303 movs r3, #3 + 8001694: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8001626: f107 0310 add.w r3, r7, #16 - 800162a: 4619 mov r1, r3 - 800162c: 480b ldr r0, [pc, #44] ; (800165c ) - 800162e: f000 faf3 bl 8001c18 + 8001696: f107 0310 add.w r3, r7, #16 + 800169a: 4619 mov r1, r3 + 800169c: 480b ldr r0, [pc, #44] ; (80016cc ) + 800169e: f000 fb4d bl 8001d3c /* Peripheral clock enable */ __HAL_RCC_I2C2_CLK_ENABLE(); - 8001632: 4b09 ldr r3, [pc, #36] ; (8001658 ) - 8001634: 69db ldr r3, [r3, #28] - 8001636: 4a08 ldr r2, [pc, #32] ; (8001658 ) - 8001638: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 - 800163c: 61d3 str r3, [r2, #28] - 800163e: 4b06 ldr r3, [pc, #24] ; (8001658 ) - 8001640: 69db ldr r3, [r3, #28] - 8001642: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 8001646: 60bb str r3, [r7, #8] - 8001648: 68bb ldr r3, [r7, #8] + 80016a2: 4b09 ldr r3, [pc, #36] ; (80016c8 ) + 80016a4: 69db ldr r3, [r3, #28] + 80016a6: 4a08 ldr r2, [pc, #32] ; (80016c8 ) + 80016a8: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 + 80016ac: 61d3 str r3, [r2, #28] + 80016ae: 4b06 ldr r3, [pc, #24] ; (80016c8 ) + 80016b0: 69db ldr r3, [r3, #28] + 80016b2: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 80016b6: 60bb str r3, [r7, #8] + 80016b8: 68bb ldr r3, [r7, #8] /* USER CODE BEGIN I2C2_MspInit 1 */ /* USER CODE END I2C2_MspInit 1 */ } } - 800164a: bf00 nop - 800164c: 3720 adds r7, #32 - 800164e: 46bd mov sp, r7 - 8001650: bd80 pop {r7, pc} - 8001652: bf00 nop - 8001654: 40005800 .word 0x40005800 - 8001658: 40021000 .word 0x40021000 - 800165c: 40010c00 .word 0x40010c00 + 80016ba: bf00 nop + 80016bc: 3720 adds r7, #32 + 80016be: 46bd mov sp, r7 + 80016c0: bd80 pop {r7, pc} + 80016c2: bf00 nop + 80016c4: 40005800 .word 0x40005800 + 80016c8: 40021000 .word 0x40021000 + 80016cc: 40010c00 .word 0x40010c00 -08001660 : +080016d0 : +* This function configures the hardware resources used in this example +* @param htim_base: TIM_Base handle pointer +* @retval None +*/ +void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* htim_base) +{ + 80016d0: b580 push {r7, lr} + 80016d2: b084 sub sp, #16 + 80016d4: af00 add r7, sp, #0 + 80016d6: 6078 str r0, [r7, #4] + if(htim_base->Instance==TIM6) + 80016d8: 687b ldr r3, [r7, #4] + 80016da: 681b ldr r3, [r3, #0] + 80016dc: 4a0d ldr r2, [pc, #52] ; (8001714 ) + 80016de: 4293 cmp r3, r2 + 80016e0: d113 bne.n 800170a + { + /* USER CODE BEGIN TIM6_MspInit 0 */ + + /* USER CODE END TIM6_MspInit 0 */ + /* Peripheral clock enable */ + __HAL_RCC_TIM6_CLK_ENABLE(); + 80016e2: 4b0d ldr r3, [pc, #52] ; (8001718 ) + 80016e4: 69db ldr r3, [r3, #28] + 80016e6: 4a0c ldr r2, [pc, #48] ; (8001718 ) + 80016e8: f043 0310 orr.w r3, r3, #16 + 80016ec: 61d3 str r3, [r2, #28] + 80016ee: 4b0a ldr r3, [pc, #40] ; (8001718 ) + 80016f0: 69db ldr r3, [r3, #28] + 80016f2: f003 0310 and.w r3, r3, #16 + 80016f6: 60fb str r3, [r7, #12] + 80016f8: 68fb ldr r3, [r7, #12] + /* TIM6 interrupt Init */ + HAL_NVIC_SetPriority(TIM6_IRQn, 0, 0); + 80016fa: 2200 movs r2, #0 + 80016fc: 2100 movs r1, #0 + 80016fe: 2036 movs r0, #54 ; 0x36 + 8001700: f000 fae5 bl 8001cce + HAL_NVIC_EnableIRQ(TIM6_IRQn); + 8001704: 2036 movs r0, #54 ; 0x36 + 8001706: f000 fafe bl 8001d06 + /* USER CODE BEGIN TIM6_MspInit 1 */ + + /* USER CODE END TIM6_MspInit 1 */ + } + +} + 800170a: bf00 nop + 800170c: 3710 adds r7, #16 + 800170e: 46bd mov sp, r7 + 8001710: bd80 pop {r7, pc} + 8001712: bf00 nop + 8001714: 40001000 .word 0x40001000 + 8001718: 40021000 .word 0x40021000 + +0800171c : } static uint32_t FSMC_Initialized = 0; static void HAL_FSMC_MspInit(void){ - 8001660: b580 push {r7, lr} - 8001662: b086 sub sp, #24 - 8001664: af00 add r7, sp, #0 + 800171c: b580 push {r7, lr} + 800171e: b086 sub sp, #24 + 8001720: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_MspInit 0 */ /* USER CODE END FSMC_MspInit 0 */ GPIO_InitTypeDef GPIO_InitStruct ={0}; - 8001666: f107 0308 add.w r3, r7, #8 - 800166a: 2200 movs r2, #0 - 800166c: 601a str r2, [r3, #0] - 800166e: 605a str r2, [r3, #4] - 8001670: 609a str r2, [r3, #8] - 8001672: 60da str r2, [r3, #12] + 8001722: f107 0308 add.w r3, r7, #8 + 8001726: 2200 movs r2, #0 + 8001728: 601a str r2, [r3, #0] + 800172a: 605a str r2, [r3, #4] + 800172c: 609a str r2, [r3, #8] + 800172e: 60da str r2, [r3, #12] if (FSMC_Initialized) { - 8001674: 4b1f ldr r3, [pc, #124] ; (80016f4 ) - 8001676: 681b ldr r3, [r3, #0] - 8001678: 2b00 cmp r3, #0 - 800167a: d136 bne.n 80016ea + 8001730: 4b1f ldr r3, [pc, #124] ; (80017b0 ) + 8001732: 681b ldr r3, [r3, #0] + 8001734: 2b00 cmp r3, #0 + 8001736: d136 bne.n 80017a6 return; } FSMC_Initialized = 1; - 800167c: 4b1d ldr r3, [pc, #116] ; (80016f4 ) - 800167e: 2201 movs r2, #1 - 8001680: 601a str r2, [r3, #0] + 8001738: 4b1d ldr r3, [pc, #116] ; (80017b0 ) + 800173a: 2201 movs r2, #1 + 800173c: 601a str r2, [r3, #0] /* Peripheral clock enable */ __HAL_RCC_FSMC_CLK_ENABLE(); - 8001682: 4b1d ldr r3, [pc, #116] ; (80016f8 ) - 8001684: 695b ldr r3, [r3, #20] - 8001686: 4a1c ldr r2, [pc, #112] ; (80016f8 ) - 8001688: f443 7380 orr.w r3, r3, #256 ; 0x100 - 800168c: 6153 str r3, [r2, #20] - 800168e: 4b1a ldr r3, [pc, #104] ; (80016f8 ) - 8001690: 695b ldr r3, [r3, #20] - 8001692: f403 7380 and.w r3, r3, #256 ; 0x100 - 8001696: 607b str r3, [r7, #4] - 8001698: 687b ldr r3, [r7, #4] + 800173e: 4b1d ldr r3, [pc, #116] ; (80017b4 ) + 8001740: 695b ldr r3, [r3, #20] + 8001742: 4a1c ldr r2, [pc, #112] ; (80017b4 ) + 8001744: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8001748: 6153 str r3, [r2, #20] + 800174a: 4b1a ldr r3, [pc, #104] ; (80017b4 ) + 800174c: 695b ldr r3, [r3, #20] + 800174e: f403 7380 and.w r3, r3, #256 ; 0x100 + 8001752: 607b str r3, [r7, #4] + 8001754: 687b ldr r3, [r7, #4] PD1 ------> FSMC_D3 PD4 ------> FSMC_NOE PD5 ------> FSMC_NWE PG12 ------> FSMC_NE4 */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_12; - 800169a: f241 0301 movw r3, #4097 ; 0x1001 - 800169e: 60bb str r3, [r7, #8] + 8001756: f241 0301 movw r3, #4097 ; 0x1001 + 800175a: 60bb str r3, [r7, #8] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80016a0: 2302 movs r3, #2 - 80016a2: 60fb str r3, [r7, #12] + 800175c: 2302 movs r3, #2 + 800175e: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80016a4: 2303 movs r3, #3 - 80016a6: 617b str r3, [r7, #20] + 8001760: 2303 movs r3, #3 + 8001762: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOG, &GPIO_InitStruct); - 80016a8: f107 0308 add.w r3, r7, #8 - 80016ac: 4619 mov r1, r3 - 80016ae: 4813 ldr r0, [pc, #76] ; (80016fc ) - 80016b0: f000 fab2 bl 8001c18 + 8001764: f107 0308 add.w r3, r7, #8 + 8001768: 4619 mov r1, r3 + 800176a: 4813 ldr r0, [pc, #76] ; (80017b8 ) + 800176c: f000 fae6 bl 8001d3c GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10 - 80016b4: f64f 7380 movw r3, #65408 ; 0xff80 - 80016b8: 60bb str r3, [r7, #8] + 8001770: f64f 7380 movw r3, #65408 ; 0xff80 + 8001774: 60bb str r3, [r7, #8] |GPIO_PIN_11|GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14 |GPIO_PIN_15; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80016ba: 2302 movs r3, #2 - 80016bc: 60fb str r3, [r7, #12] + 8001776: 2302 movs r3, #2 + 8001778: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80016be: 2303 movs r3, #3 - 80016c0: 617b str r3, [r7, #20] + 800177a: 2303 movs r3, #3 + 800177c: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); - 80016c2: f107 0308 add.w r3, r7, #8 - 80016c6: 4619 mov r1, r3 - 80016c8: 480d ldr r0, [pc, #52] ; (8001700 ) - 80016ca: f000 faa5 bl 8001c18 + 800177e: f107 0308 add.w r3, r7, #8 + 8001782: 4619 mov r1, r3 + 8001784: 480d ldr r0, [pc, #52] ; (80017bc ) + 8001786: f000 fad9 bl 8001d3c GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_14 - 80016ce: f24c 7333 movw r3, #50995 ; 0xc733 - 80016d2: 60bb str r3, [r7, #8] + 800178a: f24c 7333 movw r3, #50995 ; 0xc733 + 800178e: 60bb str r3, [r7, #8] |GPIO_PIN_15|GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_4 |GPIO_PIN_5; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80016d4: 2302 movs r3, #2 - 80016d6: 60fb str r3, [r7, #12] + 8001790: 2302 movs r3, #2 + 8001792: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80016d8: 2303 movs r3, #3 - 80016da: 617b str r3, [r7, #20] + 8001794: 2303 movs r3, #3 + 8001796: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 80016dc: f107 0308 add.w r3, r7, #8 - 80016e0: 4619 mov r1, r3 - 80016e2: 4808 ldr r0, [pc, #32] ; (8001704 ) - 80016e4: f000 fa98 bl 8001c18 - 80016e8: e000 b.n 80016ec + 8001798: f107 0308 add.w r3, r7, #8 + 800179c: 4619 mov r1, r3 + 800179e: 4808 ldr r0, [pc, #32] ; (80017c0 ) + 80017a0: f000 facc bl 8001d3c + 80017a4: e000 b.n 80017a8 return; - 80016ea: bf00 nop + 80017a6: bf00 nop /* USER CODE BEGIN FSMC_MspInit 1 */ /* USER CODE END FSMC_MspInit 1 */ } - 80016ec: 3718 adds r7, #24 - 80016ee: 46bd mov sp, r7 - 80016f0: bd80 pop {r7, pc} - 80016f2: bf00 nop - 80016f4: 200001fc .word 0x200001fc - 80016f8: 40021000 .word 0x40021000 - 80016fc: 40012000 .word 0x40012000 - 8001700: 40011800 .word 0x40011800 - 8001704: 40011400 .word 0x40011400 + 80017a8: 3718 adds r7, #24 + 80017aa: 46bd mov sp, r7 + 80017ac: bd80 pop {r7, pc} + 80017ae: bf00 nop + 80017b0: 200001fc .word 0x200001fc + 80017b4: 40021000 .word 0x40021000 + 80017b8: 40012000 .word 0x40012000 + 80017bc: 40011800 .word 0x40011800 + 80017c0: 40011400 .word 0x40011400 -08001708 : +080017c4 : void HAL_SRAM_MspInit(SRAM_HandleTypeDef* hsram){ - 8001708: b580 push {r7, lr} - 800170a: b082 sub sp, #8 - 800170c: af00 add r7, sp, #0 - 800170e: 6078 str r0, [r7, #4] + 80017c4: b580 push {r7, lr} + 80017c6: b082 sub sp, #8 + 80017c8: af00 add r7, sp, #0 + 80017ca: 6078 str r0, [r7, #4] /* USER CODE BEGIN SRAM_MspInit 0 */ /* USER CODE END SRAM_MspInit 0 */ HAL_FSMC_MspInit(); - 8001710: f7ff ffa6 bl 8001660 + 80017cc: f7ff ffa6 bl 800171c /* USER CODE BEGIN SRAM_MspInit 1 */ /* USER CODE END SRAM_MspInit 1 */ } - 8001714: bf00 nop - 8001716: 3708 adds r7, #8 - 8001718: 46bd mov sp, r7 - 800171a: bd80 pop {r7, pc} + 80017d0: bf00 nop + 80017d2: 3708 adds r7, #8 + 80017d4: 46bd mov sp, r7 + 80017d6: bd80 pop {r7, pc} -0800171c : +080017d8 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 800171c: b480 push {r7} - 800171e: af00 add r7, sp, #0 + 80017d8: b480 push {r7} + 80017da: af00 add r7, sp, #0 /* USER CODE BEGIN NonMaskableInt_IRQn 0 */ /* USER CODE END NonMaskableInt_IRQn 0 */ /* USER CODE BEGIN NonMaskableInt_IRQn 1 */ while (1) - 8001720: e7fe b.n 8001720 + 80017dc: e7fe b.n 80017dc -08001722 : +080017de : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8001722: b480 push {r7} - 8001724: af00 add r7, sp, #0 + 80017de: b480 push {r7} + 80017e0: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8001726: e7fe b.n 8001726 + 80017e2: e7fe b.n 80017e2 -08001728 : +080017e4 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8001728: b480 push {r7} - 800172a: af00 add r7, sp, #0 + 80017e4: b480 push {r7} + 80017e6: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 800172c: e7fe b.n 800172c + 80017e8: e7fe b.n 80017e8 -0800172e : +080017ea : /** * @brief This function handles Prefetch fault, memory access fault. */ void BusFault_Handler(void) { - 800172e: b480 push {r7} - 8001730: af00 add r7, sp, #0 + 80017ea: b480 push {r7} + 80017ec: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8001732: e7fe b.n 8001732 + 80017ee: e7fe b.n 80017ee -08001734 : +080017f0 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8001734: b480 push {r7} - 8001736: af00 add r7, sp, #0 + 80017f0: b480 push {r7} + 80017f2: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8001738: e7fe b.n 8001738 + 80017f4: e7fe b.n 80017f4 -0800173a : +080017f6 : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 800173a: b480 push {r7} - 800173c: af00 add r7, sp, #0 + 80017f6: b480 push {r7} + 80017f8: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 800173e: bf00 nop - 8001740: 46bd mov sp, r7 - 8001742: bc80 pop {r7} - 8001744: 4770 bx lr + 80017fa: bf00 nop + 80017fc: 46bd mov sp, r7 + 80017fe: bc80 pop {r7} + 8001800: 4770 bx lr -08001746 : +08001802 : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8001746: b480 push {r7} - 8001748: af00 add r7, sp, #0 + 8001802: b480 push {r7} + 8001804: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 800174a: bf00 nop - 800174c: 46bd mov sp, r7 - 800174e: bc80 pop {r7} - 8001750: 4770 bx lr + 8001806: bf00 nop + 8001808: 46bd mov sp, r7 + 800180a: bc80 pop {r7} + 800180c: 4770 bx lr -08001752 : +0800180e : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 8001752: b480 push {r7} - 8001754: af00 add r7, sp, #0 + 800180e: b480 push {r7} + 8001810: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 8001756: bf00 nop - 8001758: 46bd mov sp, r7 - 800175a: bc80 pop {r7} - 800175c: 4770 bx lr + 8001812: bf00 nop + 8001814: 46bd mov sp, r7 + 8001816: bc80 pop {r7} + 8001818: 4770 bx lr -0800175e : +0800181a : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 800175e: b580 push {r7, lr} - 8001760: af00 add r7, sp, #0 + 800181a: b580 push {r7, lr} + 800181c: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 8001762: f000 f935 bl 80019d0 + 800181e: f000 f93f bl 8001aa0 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 8001766: bf00 nop - 8001768: bd80 pop {r7, pc} + 8001822: bf00 nop + 8001824: bd80 pop {r7, pc} + ... -0800176a <_getpid>: +08001828 : + +/** + * @brief This function handles TIM6 global interrupt. + */ +void TIM6_IRQHandler(void) +{ + 8001828: b580 push {r7, lr} + 800182a: af00 add r7, sp, #0 + /* USER CODE BEGIN TIM6_IRQn 0 */ + + /* USER CODE END TIM6_IRQn 0 */ + HAL_TIM_IRQHandler(&htim6); + 800182c: 4802 ldr r0, [pc, #8] ; (8001838 ) + 800182e: f002 f979 bl 8003b24 + /* USER CODE BEGIN TIM6_IRQn 1 */ + + /* USER CODE END TIM6_IRQn 1 */ +} + 8001832: bf00 nop + 8001834: bd80 pop {r7, pc} + 8001836: bf00 nop + 8001838: 200002b4 .word 0x200002b4 + +0800183c <_getpid>: void initialise_monitor_handles() { } int _getpid(void) { - 800176a: b480 push {r7} - 800176c: af00 add r7, sp, #0 + 800183c: b480 push {r7} + 800183e: af00 add r7, sp, #0 return 1; - 800176e: 2301 movs r3, #1 + 8001840: 2301 movs r3, #1 } - 8001770: 4618 mov r0, r3 - 8001772: 46bd mov sp, r7 - 8001774: bc80 pop {r7} - 8001776: 4770 bx lr + 8001842: 4618 mov r0, r3 + 8001844: 46bd mov sp, r7 + 8001846: bc80 pop {r7} + 8001848: 4770 bx lr -08001778 <_kill>: +0800184a <_kill>: int _kill(int pid, int sig) { - 8001778: b580 push {r7, lr} - 800177a: b082 sub sp, #8 - 800177c: af00 add r7, sp, #0 - 800177e: 6078 str r0, [r7, #4] - 8001780: 6039 str r1, [r7, #0] + 800184a: b580 push {r7, lr} + 800184c: b082 sub sp, #8 + 800184e: af00 add r7, sp, #0 + 8001850: 6078 str r0, [r7, #4] + 8001852: 6039 str r1, [r7, #0] errno = EINVAL; - 8001782: f005 f943 bl 8006a0c <__errno> - 8001786: 4603 mov r3, r0 - 8001788: 2216 movs r2, #22 - 800178a: 601a str r2, [r3, #0] + 8001854: f005 fc8e bl 8007174 <__errno> + 8001858: 4603 mov r3, r0 + 800185a: 2216 movs r2, #22 + 800185c: 601a str r2, [r3, #0] return -1; - 800178c: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800185e: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 8001790: 4618 mov r0, r3 - 8001792: 3708 adds r7, #8 - 8001794: 46bd mov sp, r7 - 8001796: bd80 pop {r7, pc} + 8001862: 4618 mov r0, r3 + 8001864: 3708 adds r7, #8 + 8001866: 46bd mov sp, r7 + 8001868: bd80 pop {r7, pc} -08001798 <_exit>: +0800186a <_exit>: void _exit (int status) { - 8001798: b580 push {r7, lr} - 800179a: b082 sub sp, #8 - 800179c: af00 add r7, sp, #0 - 800179e: 6078 str r0, [r7, #4] + 800186a: b580 push {r7, lr} + 800186c: b082 sub sp, #8 + 800186e: af00 add r7, sp, #0 + 8001870: 6078 str r0, [r7, #4] _kill(status, -1); - 80017a0: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 80017a4: 6878 ldr r0, [r7, #4] - 80017a6: f7ff ffe7 bl 8001778 <_kill> + 8001872: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 8001876: 6878 ldr r0, [r7, #4] + 8001878: f7ff ffe7 bl 800184a <_kill> while (1) {} /* Make sure we hang here */ - 80017aa: e7fe b.n 80017aa <_exit+0x12> + 800187c: e7fe b.n 800187c <_exit+0x12> -080017ac <_read>: +0800187e <_read>: } __attribute__((weak)) int _read(int file, char *ptr, int len) { - 80017ac: b580 push {r7, lr} - 80017ae: b086 sub sp, #24 - 80017b0: af00 add r7, sp, #0 - 80017b2: 60f8 str r0, [r7, #12] - 80017b4: 60b9 str r1, [r7, #8] - 80017b6: 607a str r2, [r7, #4] + 800187e: b580 push {r7, lr} + 8001880: b086 sub sp, #24 + 8001882: af00 add r7, sp, #0 + 8001884: 60f8 str r0, [r7, #12] + 8001886: 60b9 str r1, [r7, #8] + 8001888: 607a str r2, [r7, #4] int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) - 80017b8: 2300 movs r3, #0 - 80017ba: 617b str r3, [r7, #20] - 80017bc: e00a b.n 80017d4 <_read+0x28> + 800188a: 2300 movs r3, #0 + 800188c: 617b str r3, [r7, #20] + 800188e: e00a b.n 80018a6 <_read+0x28> { *ptr++ = __io_getchar(); - 80017be: f3af 8000 nop.w - 80017c2: 4601 mov r1, r0 - 80017c4: 68bb ldr r3, [r7, #8] - 80017c6: 1c5a adds r2, r3, #1 - 80017c8: 60ba str r2, [r7, #8] - 80017ca: b2ca uxtb r2, r1 - 80017cc: 701a strb r2, [r3, #0] + 8001890: f3af 8000 nop.w + 8001894: 4601 mov r1, r0 + 8001896: 68bb ldr r3, [r7, #8] + 8001898: 1c5a adds r2, r3, #1 + 800189a: 60ba str r2, [r7, #8] + 800189c: b2ca uxtb r2, r1 + 800189e: 701a strb r2, [r3, #0] for (DataIdx = 0; DataIdx < len; DataIdx++) - 80017ce: 697b ldr r3, [r7, #20] - 80017d0: 3301 adds r3, #1 - 80017d2: 617b str r3, [r7, #20] - 80017d4: 697a ldr r2, [r7, #20] - 80017d6: 687b ldr r3, [r7, #4] - 80017d8: 429a cmp r2, r3 - 80017da: dbf0 blt.n 80017be <_read+0x12> + 80018a0: 697b ldr r3, [r7, #20] + 80018a2: 3301 adds r3, #1 + 80018a4: 617b str r3, [r7, #20] + 80018a6: 697a ldr r2, [r7, #20] + 80018a8: 687b ldr r3, [r7, #4] + 80018aa: 429a cmp r2, r3 + 80018ac: dbf0 blt.n 8001890 <_read+0x12> } return len; - 80017dc: 687b ldr r3, [r7, #4] + 80018ae: 687b ldr r3, [r7, #4] } - 80017de: 4618 mov r0, r3 - 80017e0: 3718 adds r7, #24 - 80017e2: 46bd mov sp, r7 - 80017e4: bd80 pop {r7, pc} + 80018b0: 4618 mov r0, r3 + 80018b2: 3718 adds r7, #24 + 80018b4: 46bd mov sp, r7 + 80018b6: bd80 pop {r7, pc} -080017e6 <_write>: +080018b8 <_write>: __attribute__((weak)) int _write(int file, char *ptr, int len) { - 80017e6: b580 push {r7, lr} - 80017e8: b086 sub sp, #24 - 80017ea: af00 add r7, sp, #0 - 80017ec: 60f8 str r0, [r7, #12] - 80017ee: 60b9 str r1, [r7, #8] - 80017f0: 607a str r2, [r7, #4] + 80018b8: b580 push {r7, lr} + 80018ba: b086 sub sp, #24 + 80018bc: af00 add r7, sp, #0 + 80018be: 60f8 str r0, [r7, #12] + 80018c0: 60b9 str r1, [r7, #8] + 80018c2: 607a str r2, [r7, #4] int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) - 80017f2: 2300 movs r3, #0 - 80017f4: 617b str r3, [r7, #20] - 80017f6: e009 b.n 800180c <_write+0x26> + 80018c4: 2300 movs r3, #0 + 80018c6: 617b str r3, [r7, #20] + 80018c8: e009 b.n 80018de <_write+0x26> { __io_putchar(*ptr++); - 80017f8: 68bb ldr r3, [r7, #8] - 80017fa: 1c5a adds r2, r3, #1 - 80017fc: 60ba str r2, [r7, #8] - 80017fe: 781b ldrb r3, [r3, #0] - 8001800: 4618 mov r0, r3 - 8001802: f3af 8000 nop.w + 80018ca: 68bb ldr r3, [r7, #8] + 80018cc: 1c5a adds r2, r3, #1 + 80018ce: 60ba str r2, [r7, #8] + 80018d0: 781b ldrb r3, [r3, #0] + 80018d2: 4618 mov r0, r3 + 80018d4: f3af 8000 nop.w for (DataIdx = 0; DataIdx < len; DataIdx++) - 8001806: 697b ldr r3, [r7, #20] - 8001808: 3301 adds r3, #1 - 800180a: 617b str r3, [r7, #20] - 800180c: 697a ldr r2, [r7, #20] - 800180e: 687b ldr r3, [r7, #4] - 8001810: 429a cmp r2, r3 - 8001812: dbf1 blt.n 80017f8 <_write+0x12> + 80018d8: 697b ldr r3, [r7, #20] + 80018da: 3301 adds r3, #1 + 80018dc: 617b str r3, [r7, #20] + 80018de: 697a ldr r2, [r7, #20] + 80018e0: 687b ldr r3, [r7, #4] + 80018e2: 429a cmp r2, r3 + 80018e4: dbf1 blt.n 80018ca <_write+0x12> } return len; - 8001814: 687b ldr r3, [r7, #4] + 80018e6: 687b ldr r3, [r7, #4] } - 8001816: 4618 mov r0, r3 - 8001818: 3718 adds r7, #24 - 800181a: 46bd mov sp, r7 - 800181c: bd80 pop {r7, pc} + 80018e8: 4618 mov r0, r3 + 80018ea: 3718 adds r7, #24 + 80018ec: 46bd mov sp, r7 + 80018ee: bd80 pop {r7, pc} -0800181e <_close>: +080018f0 <_close>: int _close(int file) { - 800181e: b480 push {r7} - 8001820: b083 sub sp, #12 - 8001822: af00 add r7, sp, #0 - 8001824: 6078 str r0, [r7, #4] + 80018f0: b480 push {r7} + 80018f2: b083 sub sp, #12 + 80018f4: af00 add r7, sp, #0 + 80018f6: 6078 str r0, [r7, #4] return -1; - 8001826: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 80018f8: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 800182a: 4618 mov r0, r3 - 800182c: 370c adds r7, #12 - 800182e: 46bd mov sp, r7 - 8001830: bc80 pop {r7} - 8001832: 4770 bx lr + 80018fc: 4618 mov r0, r3 + 80018fe: 370c adds r7, #12 + 8001900: 46bd mov sp, r7 + 8001902: bc80 pop {r7} + 8001904: 4770 bx lr -08001834 <_fstat>: +08001906 <_fstat>: int _fstat(int file, struct stat *st) { - 8001834: b480 push {r7} - 8001836: b083 sub sp, #12 - 8001838: af00 add r7, sp, #0 - 800183a: 6078 str r0, [r7, #4] - 800183c: 6039 str r1, [r7, #0] + 8001906: b480 push {r7} + 8001908: b083 sub sp, #12 + 800190a: af00 add r7, sp, #0 + 800190c: 6078 str r0, [r7, #4] + 800190e: 6039 str r1, [r7, #0] st->st_mode = S_IFCHR; - 800183e: 683b ldr r3, [r7, #0] - 8001840: f44f 5200 mov.w r2, #8192 ; 0x2000 - 8001844: 605a str r2, [r3, #4] + 8001910: 683b ldr r3, [r7, #0] + 8001912: f44f 5200 mov.w r2, #8192 ; 0x2000 + 8001916: 605a str r2, [r3, #4] return 0; - 8001846: 2300 movs r3, #0 + 8001918: 2300 movs r3, #0 } - 8001848: 4618 mov r0, r3 - 800184a: 370c adds r7, #12 - 800184c: 46bd mov sp, r7 - 800184e: bc80 pop {r7} - 8001850: 4770 bx lr + 800191a: 4618 mov r0, r3 + 800191c: 370c adds r7, #12 + 800191e: 46bd mov sp, r7 + 8001920: bc80 pop {r7} + 8001922: 4770 bx lr -08001852 <_isatty>: +08001924 <_isatty>: int _isatty(int file) { - 8001852: b480 push {r7} - 8001854: b083 sub sp, #12 - 8001856: af00 add r7, sp, #0 - 8001858: 6078 str r0, [r7, #4] + 8001924: b480 push {r7} + 8001926: b083 sub sp, #12 + 8001928: af00 add r7, sp, #0 + 800192a: 6078 str r0, [r7, #4] return 1; - 800185a: 2301 movs r3, #1 + 800192c: 2301 movs r3, #1 } - 800185c: 4618 mov r0, r3 - 800185e: 370c adds r7, #12 - 8001860: 46bd mov sp, r7 - 8001862: bc80 pop {r7} - 8001864: 4770 bx lr + 800192e: 4618 mov r0, r3 + 8001930: 370c adds r7, #12 + 8001932: 46bd mov sp, r7 + 8001934: bc80 pop {r7} + 8001936: 4770 bx lr -08001866 <_lseek>: +08001938 <_lseek>: int _lseek(int file, int ptr, int dir) { - 8001866: b480 push {r7} - 8001868: b085 sub sp, #20 - 800186a: af00 add r7, sp, #0 - 800186c: 60f8 str r0, [r7, #12] - 800186e: 60b9 str r1, [r7, #8] - 8001870: 607a str r2, [r7, #4] + 8001938: b480 push {r7} + 800193a: b085 sub sp, #20 + 800193c: af00 add r7, sp, #0 + 800193e: 60f8 str r0, [r7, #12] + 8001940: 60b9 str r1, [r7, #8] + 8001942: 607a str r2, [r7, #4] return 0; - 8001872: 2300 movs r3, #0 + 8001944: 2300 movs r3, #0 } - 8001874: 4618 mov r0, r3 - 8001876: 3714 adds r7, #20 - 8001878: 46bd mov sp, r7 - 800187a: bc80 pop {r7} - 800187c: 4770 bx lr - ... + 8001946: 4618 mov r0, r3 + 8001948: 3714 adds r7, #20 + 800194a: 46bd mov sp, r7 + 800194c: bc80 pop {r7} + 800194e: 4770 bx lr -08001880 <_sbrk>: +08001950 <_sbrk>: * * @param incr Memory size * @return Pointer to allocated memory */ void *_sbrk(ptrdiff_t incr) { - 8001880: b580 push {r7, lr} - 8001882: b086 sub sp, #24 - 8001884: af00 add r7, sp, #0 - 8001886: 6078 str r0, [r7, #4] + 8001950: b580 push {r7, lr} + 8001952: b086 sub sp, #24 + 8001954: af00 add r7, sp, #0 + 8001956: 6078 str r0, [r7, #4] extern uint8_t _end; /* Symbol defined in the linker script */ extern uint8_t _estack; /* Symbol defined in the linker script */ extern uint32_t _Min_Stack_Size; /* Symbol defined in the linker script */ const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size; - 8001888: 4a14 ldr r2, [pc, #80] ; (80018dc <_sbrk+0x5c>) - 800188a: 4b15 ldr r3, [pc, #84] ; (80018e0 <_sbrk+0x60>) - 800188c: 1ad3 subs r3, r2, r3 - 800188e: 617b str r3, [r7, #20] + 8001958: 4a14 ldr r2, [pc, #80] ; (80019ac <_sbrk+0x5c>) + 800195a: 4b15 ldr r3, [pc, #84] ; (80019b0 <_sbrk+0x60>) + 800195c: 1ad3 subs r3, r2, r3 + 800195e: 617b str r3, [r7, #20] const uint8_t *max_heap = (uint8_t *)stack_limit; - 8001890: 697b ldr r3, [r7, #20] - 8001892: 613b str r3, [r7, #16] + 8001960: 697b ldr r3, [r7, #20] + 8001962: 613b str r3, [r7, #16] uint8_t *prev_heap_end; /* Initialize heap end at first call */ if (NULL == __sbrk_heap_end) - 8001894: 4b13 ldr r3, [pc, #76] ; (80018e4 <_sbrk+0x64>) - 8001896: 681b ldr r3, [r3, #0] - 8001898: 2b00 cmp r3, #0 - 800189a: d102 bne.n 80018a2 <_sbrk+0x22> + 8001964: 4b13 ldr r3, [pc, #76] ; (80019b4 <_sbrk+0x64>) + 8001966: 681b ldr r3, [r3, #0] + 8001968: 2b00 cmp r3, #0 + 800196a: d102 bne.n 8001972 <_sbrk+0x22> { __sbrk_heap_end = &_end; - 800189c: 4b11 ldr r3, [pc, #68] ; (80018e4 <_sbrk+0x64>) - 800189e: 4a12 ldr r2, [pc, #72] ; (80018e8 <_sbrk+0x68>) - 80018a0: 601a str r2, [r3, #0] + 800196c: 4b11 ldr r3, [pc, #68] ; (80019b4 <_sbrk+0x64>) + 800196e: 4a12 ldr r2, [pc, #72] ; (80019b8 <_sbrk+0x68>) + 8001970: 601a str r2, [r3, #0] } /* Protect heap from growing into the reserved MSP stack */ if (__sbrk_heap_end + incr > max_heap) - 80018a2: 4b10 ldr r3, [pc, #64] ; (80018e4 <_sbrk+0x64>) - 80018a4: 681a ldr r2, [r3, #0] - 80018a6: 687b ldr r3, [r7, #4] - 80018a8: 4413 add r3, r2 - 80018aa: 693a ldr r2, [r7, #16] - 80018ac: 429a cmp r2, r3 - 80018ae: d207 bcs.n 80018c0 <_sbrk+0x40> + 8001972: 4b10 ldr r3, [pc, #64] ; (80019b4 <_sbrk+0x64>) + 8001974: 681a ldr r2, [r3, #0] + 8001976: 687b ldr r3, [r7, #4] + 8001978: 4413 add r3, r2 + 800197a: 693a ldr r2, [r7, #16] + 800197c: 429a cmp r2, r3 + 800197e: d207 bcs.n 8001990 <_sbrk+0x40> { errno = ENOMEM; - 80018b0: f005 f8ac bl 8006a0c <__errno> - 80018b4: 4603 mov r3, r0 - 80018b6: 220c movs r2, #12 - 80018b8: 601a str r2, [r3, #0] + 8001980: f005 fbf8 bl 8007174 <__errno> + 8001984: 4603 mov r3, r0 + 8001986: 220c movs r2, #12 + 8001988: 601a str r2, [r3, #0] return (void *)-1; - 80018ba: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 80018be: e009 b.n 80018d4 <_sbrk+0x54> + 800198a: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800198e: e009 b.n 80019a4 <_sbrk+0x54> } prev_heap_end = __sbrk_heap_end; - 80018c0: 4b08 ldr r3, [pc, #32] ; (80018e4 <_sbrk+0x64>) - 80018c2: 681b ldr r3, [r3, #0] - 80018c4: 60fb str r3, [r7, #12] + 8001990: 4b08 ldr r3, [pc, #32] ; (80019b4 <_sbrk+0x64>) + 8001992: 681b ldr r3, [r3, #0] + 8001994: 60fb str r3, [r7, #12] __sbrk_heap_end += incr; - 80018c6: 4b07 ldr r3, [pc, #28] ; (80018e4 <_sbrk+0x64>) - 80018c8: 681a ldr r2, [r3, #0] - 80018ca: 687b ldr r3, [r7, #4] - 80018cc: 4413 add r3, r2 - 80018ce: 4a05 ldr r2, [pc, #20] ; (80018e4 <_sbrk+0x64>) - 80018d0: 6013 str r3, [r2, #0] + 8001996: 4b07 ldr r3, [pc, #28] ; (80019b4 <_sbrk+0x64>) + 8001998: 681a ldr r2, [r3, #0] + 800199a: 687b ldr r3, [r7, #4] + 800199c: 4413 add r3, r2 + 800199e: 4a05 ldr r2, [pc, #20] ; (80019b4 <_sbrk+0x64>) + 80019a0: 6013 str r3, [r2, #0] return (void *)prev_heap_end; - 80018d2: 68fb ldr r3, [r7, #12] + 80019a2: 68fb ldr r3, [r7, #12] } - 80018d4: 4618 mov r0, r3 - 80018d6: 3718 adds r7, #24 - 80018d8: 46bd mov sp, r7 - 80018da: bd80 pop {r7, pc} - 80018dc: 20010000 .word 0x20010000 - 80018e0: 00000800 .word 0x00000800 - 80018e4: 20000200 .word 0x20000200 - 80018e8: 20002468 .word 0x20002468 + 80019a4: 4618 mov r0, r3 + 80019a6: 3718 adds r7, #24 + 80019a8: 46bd mov sp, r7 + 80019aa: bd80 pop {r7, pc} + 80019ac: 20010000 .word 0x20010000 + 80019b0: 00000800 .word 0x00000800 + 80019b4: 20000200 .word 0x20000200 + 80019b8: 200024b0 .word 0x200024b0 -080018ec : +080019bc : * @note This function should be used only after reset. * @param None * @retval None */ void SystemInit (void) { - 80018ec: b480 push {r7} - 80018ee: af00 add r7, sp, #0 + 80019bc: b480 push {r7} + 80019be: af00 add r7, sp, #0 /* Configure the Vector Table location -------------------------------------*/ #if defined(USER_VECT_TAB_ADDRESS) SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */ #endif /* USER_VECT_TAB_ADDRESS */ } - 80018f0: bf00 nop - 80018f2: 46bd mov sp, r7 - 80018f4: bc80 pop {r7} - 80018f6: 4770 bx lr + 80019c0: bf00 nop + 80019c2: 46bd mov sp, r7 + 80019c4: bc80 pop {r7} + 80019c6: 4770 bx lr -080018f8 : +080019c8 : .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 80018f8: 480c ldr r0, [pc, #48] ; (800192c ) + 80019c8: 480c ldr r0, [pc, #48] ; (80019fc ) ldr r1, =_edata - 80018fa: 490d ldr r1, [pc, #52] ; (8001930 ) + 80019ca: 490d ldr r1, [pc, #52] ; (8001a00 ) ldr r2, =_sidata - 80018fc: 4a0d ldr r2, [pc, #52] ; (8001934 ) + 80019cc: 4a0d ldr r2, [pc, #52] ; (8001a04 ) movs r3, #0 - 80018fe: 2300 movs r3, #0 + 80019ce: 2300 movs r3, #0 b LoopCopyDataInit - 8001900: e002 b.n 8001908 + 80019d0: e002 b.n 80019d8 -08001902 : +080019d2 : CopyDataInit: ldr r4, [r2, r3] - 8001902: 58d4 ldr r4, [r2, r3] + 80019d2: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 8001904: 50c4 str r4, [r0, r3] + 80019d4: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 8001906: 3304 adds r3, #4 + 80019d6: 3304 adds r3, #4 -08001908 : +080019d8 : LoopCopyDataInit: adds r4, r0, r3 - 8001908: 18c4 adds r4, r0, r3 + 80019d8: 18c4 adds r4, r0, r3 cmp r4, r1 - 800190a: 428c cmp r4, r1 + 80019da: 428c cmp r4, r1 bcc CopyDataInit - 800190c: d3f9 bcc.n 8001902 + 80019dc: d3f9 bcc.n 80019d2 /* Zero fill the bss segment. */ ldr r2, =_sbss - 800190e: 4a0a ldr r2, [pc, #40] ; (8001938 ) + 80019de: 4a0a ldr r2, [pc, #40] ; (8001a08 ) ldr r4, =_ebss - 8001910: 4c0a ldr r4, [pc, #40] ; (800193c ) + 80019e0: 4c0a ldr r4, [pc, #40] ; (8001a0c ) movs r3, #0 - 8001912: 2300 movs r3, #0 + 80019e2: 2300 movs r3, #0 b LoopFillZerobss - 8001914: e001 b.n 800191a + 80019e4: e001 b.n 80019ea -08001916 : +080019e6 : FillZerobss: str r3, [r2] - 8001916: 6013 str r3, [r2, #0] + 80019e6: 6013 str r3, [r2, #0] adds r2, r2, #4 - 8001918: 3204 adds r2, #4 + 80019e8: 3204 adds r2, #4 -0800191a : +080019ea : LoopFillZerobss: cmp r2, r4 - 800191a: 42a2 cmp r2, r4 + 80019ea: 42a2 cmp r2, r4 bcc FillZerobss - 800191c: d3fb bcc.n 8001916 + 80019ec: d3fb bcc.n 80019e6 /* Call the clock system intitialization function.*/ bl SystemInit - 800191e: f7ff ffe5 bl 80018ec + 80019ee: f7ff ffe5 bl 80019bc /* Call static constructors */ bl __libc_init_array - 8001922: f005 f879 bl 8006a18 <__libc_init_array> + 80019f2: f005 fbc5 bl 8007180 <__libc_init_array> /* Call the application's entry point.*/ bl main - 8001926: f7ff fc7b bl 8001220
+ 80019f6: f7ff fc13 bl 8001220
bx lr - 800192a: 4770 bx lr + 80019fa: 4770 bx lr ldr r0, =_sdata - 800192c: 20000000 .word 0x20000000 + 80019fc: 20000000 .word 0x20000000 ldr r1, =_edata - 8001930: 200001e0 .word 0x200001e0 + 8001a00: 200001e0 .word 0x200001e0 ldr r2, =_sidata - 8001934: 0800ab54 .word 0x0800ab54 + 8001a04: 0800b2bc .word 0x0800b2bc ldr r2, =_sbss - 8001938: 200001e0 .word 0x200001e0 + 8001a08: 200001e0 .word 0x200001e0 ldr r4, =_ebss - 800193c: 20002464 .word 0x20002464 + 8001a0c: 200024ac .word 0x200024ac -08001940 : +08001a10 : * @retval : None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 8001940: e7fe b.n 8001940 + 8001a10: e7fe b.n 8001a10 ... -08001944 : +08001a14 : * need to ensure that the SysTick time base is always set to 1 millisecond * to have correct HAL operation. * @retval HAL status */ HAL_StatusTypeDef HAL_Init(void) { - 8001944: b580 push {r7, lr} - 8001946: af00 add r7, sp, #0 + 8001a14: b580 push {r7, lr} + 8001a16: af00 add r7, sp, #0 defined(STM32F102x6) || defined(STM32F102xB) || \ defined(STM32F103x6) || defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F103xG) || \ defined(STM32F105xC) || defined(STM32F107xC) /* Prefetch buffer is not available on value line devices */ __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 8001948: 4b08 ldr r3, [pc, #32] ; (800196c ) - 800194a: 681b ldr r3, [r3, #0] - 800194c: 4a07 ldr r2, [pc, #28] ; (800196c ) - 800194e: f043 0310 orr.w r3, r3, #16 - 8001952: 6013 str r3, [r2, #0] + 8001a18: 4b08 ldr r3, [pc, #32] ; (8001a3c ) + 8001a1a: 681b ldr r3, [r3, #0] + 8001a1c: 4a07 ldr r2, [pc, #28] ; (8001a3c ) + 8001a1e: f043 0310 orr.w r3, r3, #16 + 8001a22: 6013 str r3, [r2, #0] #endif #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8001954: 2003 movs r0, #3 - 8001956: f000 f92b bl 8001bb0 + 8001a24: 2003 movs r0, #3 + 8001a26: f000 f947 bl 8001cb8 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 800195a: 200f movs r0, #15 - 800195c: f000 f808 bl 8001970 + 8001a2a: 200f movs r0, #15 + 8001a2c: f000 f808 bl 8001a40 /* Init the low level hardware */ HAL_MspInit(); - 8001960: f7ff fe0c bl 800157c + 8001a30: f7ff fddc bl 80015ec /* Return function status */ return HAL_OK; - 8001964: 2300 movs r3, #0 + 8001a34: 2300 movs r3, #0 } - 8001966: 4618 mov r0, r3 - 8001968: bd80 pop {r7, pc} - 800196a: bf00 nop - 800196c: 40022000 .word 0x40022000 + 8001a36: 4618 mov r0, r3 + 8001a38: bd80 pop {r7, pc} + 8001a3a: bf00 nop + 8001a3c: 40022000 .word 0x40022000 -08001970 : +08001a40 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8001970: b580 push {r7, lr} - 8001972: b082 sub sp, #8 - 8001974: af00 add r7, sp, #0 - 8001976: 6078 str r0, [r7, #4] + 8001a40: b580 push {r7, lr} + 8001a42: b082 sub sp, #8 + 8001a44: af00 add r7, sp, #0 + 8001a46: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8001978: 4b12 ldr r3, [pc, #72] ; (80019c4 ) - 800197a: 681a ldr r2, [r3, #0] - 800197c: 4b12 ldr r3, [pc, #72] ; (80019c8 ) - 800197e: 781b ldrb r3, [r3, #0] - 8001980: 4619 mov r1, r3 - 8001982: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8001986: fbb3 f3f1 udiv r3, r3, r1 - 800198a: fbb2 f3f3 udiv r3, r2, r3 - 800198e: 4618 mov r0, r3 - 8001990: f000 f935 bl 8001bfe - 8001994: 4603 mov r3, r0 - 8001996: 2b00 cmp r3, #0 - 8001998: d001 beq.n 800199e + 8001a48: 4b12 ldr r3, [pc, #72] ; (8001a94 ) + 8001a4a: 681a ldr r2, [r3, #0] + 8001a4c: 4b12 ldr r3, [pc, #72] ; (8001a98 ) + 8001a4e: 781b ldrb r3, [r3, #0] + 8001a50: 4619 mov r1, r3 + 8001a52: f44f 737a mov.w r3, #1000 ; 0x3e8 + 8001a56: fbb3 f3f1 udiv r3, r3, r1 + 8001a5a: fbb2 f3f3 udiv r3, r2, r3 + 8001a5e: 4618 mov r0, r3 + 8001a60: f000 f95f bl 8001d22 + 8001a64: 4603 mov r3, r0 + 8001a66: 2b00 cmp r3, #0 + 8001a68: d001 beq.n 8001a6e { return HAL_ERROR; - 800199a: 2301 movs r3, #1 - 800199c: e00e b.n 80019bc + 8001a6a: 2301 movs r3, #1 + 8001a6c: e00e b.n 8001a8c } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 800199e: 687b ldr r3, [r7, #4] - 80019a0: 2b0f cmp r3, #15 - 80019a2: d80a bhi.n 80019ba + 8001a6e: 687b ldr r3, [r7, #4] + 8001a70: 2b0f cmp r3, #15 + 8001a72: d80a bhi.n 8001a8a { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 80019a4: 2200 movs r2, #0 - 80019a6: 6879 ldr r1, [r7, #4] - 80019a8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80019ac: f000 f90b bl 8001bc6 + 8001a74: 2200 movs r2, #0 + 8001a76: 6879 ldr r1, [r7, #4] + 8001a78: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001a7c: f000 f927 bl 8001cce uwTickPrio = TickPriority; - 80019b0: 4a06 ldr r2, [pc, #24] ; (80019cc ) - 80019b2: 687b ldr r3, [r7, #4] - 80019b4: 6013 str r3, [r2, #0] + 8001a80: 4a06 ldr r2, [pc, #24] ; (8001a9c ) + 8001a82: 687b ldr r3, [r7, #4] + 8001a84: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 80019b6: 2300 movs r3, #0 - 80019b8: e000 b.n 80019bc + 8001a86: 2300 movs r3, #0 + 8001a88: e000 b.n 8001a8c return HAL_ERROR; - 80019ba: 2301 movs r3, #1 + 8001a8a: 2301 movs r3, #1 } - 80019bc: 4618 mov r0, r3 - 80019be: 3708 adds r7, #8 - 80019c0: 46bd mov sp, r7 - 80019c2: bd80 pop {r7, pc} - 80019c4: 20000000 .word 0x20000000 - 80019c8: 20000008 .word 0x20000008 - 80019cc: 20000004 .word 0x20000004 + 8001a8c: 4618 mov r0, r3 + 8001a8e: 3708 adds r7, #8 + 8001a90: 46bd mov sp, r7 + 8001a92: bd80 pop {r7, pc} + 8001a94: 20000000 .word 0x20000000 + 8001a98: 20000008 .word 0x20000008 + 8001a9c: 20000004 .word 0x20000004 -080019d0 : +08001aa0 : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval None */ __weak void HAL_IncTick(void) { - 80019d0: b480 push {r7} - 80019d2: af00 add r7, sp, #0 + 8001aa0: b480 push {r7} + 8001aa2: af00 add r7, sp, #0 uwTick += uwTickFreq; - 80019d4: 4b05 ldr r3, [pc, #20] ; (80019ec ) - 80019d6: 781b ldrb r3, [r3, #0] - 80019d8: 461a mov r2, r3 - 80019da: 4b05 ldr r3, [pc, #20] ; (80019f0 ) - 80019dc: 681b ldr r3, [r3, #0] - 80019de: 4413 add r3, r2 - 80019e0: 4a03 ldr r2, [pc, #12] ; (80019f0 ) - 80019e2: 6013 str r3, [r2, #0] + 8001aa4: 4b05 ldr r3, [pc, #20] ; (8001abc ) + 8001aa6: 781b ldrb r3, [r3, #0] + 8001aa8: 461a mov r2, r3 + 8001aaa: 4b05 ldr r3, [pc, #20] ; (8001ac0 ) + 8001aac: 681b ldr r3, [r3, #0] + 8001aae: 4413 add r3, r2 + 8001ab0: 4a03 ldr r2, [pc, #12] ; (8001ac0 ) + 8001ab2: 6013 str r3, [r2, #0] } - 80019e4: bf00 nop - 80019e6: 46bd mov sp, r7 - 80019e8: bc80 pop {r7} - 80019ea: 4770 bx lr - 80019ec: 20000008 .word 0x20000008 - 80019f0: 200002b4 .word 0x200002b4 + 8001ab4: bf00 nop + 8001ab6: 46bd mov sp, r7 + 8001ab8: bc80 pop {r7} + 8001aba: 4770 bx lr + 8001abc: 20000008 .word 0x20000008 + 8001ac0: 200002fc .word 0x200002fc -080019f4 : +08001ac4 : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval tick value */ __weak uint32_t HAL_GetTick(void) { - 80019f4: b480 push {r7} - 80019f6: af00 add r7, sp, #0 + 8001ac4: b480 push {r7} + 8001ac6: af00 add r7, sp, #0 return uwTick; - 80019f8: 4b02 ldr r3, [pc, #8] ; (8001a04 ) - 80019fa: 681b ldr r3, [r3, #0] + 8001ac8: 4b02 ldr r3, [pc, #8] ; (8001ad4 ) + 8001aca: 681b ldr r3, [r3, #0] } - 80019fc: 4618 mov r0, r3 - 80019fe: 46bd mov sp, r7 - 8001a00: bc80 pop {r7} - 8001a02: 4770 bx lr - 8001a04: 200002b4 .word 0x200002b4 + 8001acc: 4618 mov r0, r3 + 8001ace: 46bd mov sp, r7 + 8001ad0: bc80 pop {r7} + 8001ad2: 4770 bx lr + 8001ad4: 200002fc .word 0x200002fc -08001a08 : +08001ad8 : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 8001a08: b580 push {r7, lr} - 8001a0a: b084 sub sp, #16 - 8001a0c: af00 add r7, sp, #0 - 8001a0e: 6078 str r0, [r7, #4] + 8001ad8: b580 push {r7, lr} + 8001ada: b084 sub sp, #16 + 8001adc: af00 add r7, sp, #0 + 8001ade: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 8001a10: f7ff fff0 bl 80019f4 - 8001a14: 60b8 str r0, [r7, #8] + 8001ae0: f7ff fff0 bl 8001ac4 + 8001ae4: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 8001a16: 687b ldr r3, [r7, #4] - 8001a18: 60fb str r3, [r7, #12] + 8001ae6: 687b ldr r3, [r7, #4] + 8001ae8: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 8001a1a: 68fb ldr r3, [r7, #12] - 8001a1c: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8001a20: d005 beq.n 8001a2e + 8001aea: 68fb ldr r3, [r7, #12] + 8001aec: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8001af0: d005 beq.n 8001afe { wait += (uint32_t)(uwTickFreq); - 8001a22: 4b0a ldr r3, [pc, #40] ; (8001a4c ) - 8001a24: 781b ldrb r3, [r3, #0] - 8001a26: 461a mov r2, r3 - 8001a28: 68fb ldr r3, [r7, #12] - 8001a2a: 4413 add r3, r2 - 8001a2c: 60fb str r3, [r7, #12] + 8001af2: 4b0a ldr r3, [pc, #40] ; (8001b1c ) + 8001af4: 781b ldrb r3, [r3, #0] + 8001af6: 461a mov r2, r3 + 8001af8: 68fb ldr r3, [r7, #12] + 8001afa: 4413 add r3, r2 + 8001afc: 60fb str r3, [r7, #12] } while ((HAL_GetTick() - tickstart) < wait) - 8001a2e: bf00 nop - 8001a30: f7ff ffe0 bl 80019f4 - 8001a34: 4602 mov r2, r0 - 8001a36: 68bb ldr r3, [r7, #8] - 8001a38: 1ad3 subs r3, r2, r3 - 8001a3a: 68fa ldr r2, [r7, #12] - 8001a3c: 429a cmp r2, r3 - 8001a3e: d8f7 bhi.n 8001a30 + 8001afe: bf00 nop + 8001b00: f7ff ffe0 bl 8001ac4 + 8001b04: 4602 mov r2, r0 + 8001b06: 68bb ldr r3, [r7, #8] + 8001b08: 1ad3 subs r3, r2, r3 + 8001b0a: 68fa ldr r2, [r7, #12] + 8001b0c: 429a cmp r2, r3 + 8001b0e: d8f7 bhi.n 8001b00 { } } - 8001a40: bf00 nop - 8001a42: bf00 nop - 8001a44: 3710 adds r7, #16 - 8001a46: 46bd mov sp, r7 - 8001a48: bd80 pop {r7, pc} - 8001a4a: bf00 nop - 8001a4c: 20000008 .word 0x20000008 + 8001b10: bf00 nop + 8001b12: bf00 nop + 8001b14: 3710 adds r7, #16 + 8001b16: 46bd mov sp, r7 + 8001b18: bd80 pop {r7, pc} + 8001b1a: bf00 nop + 8001b1c: 20000008 .word 0x20000008 -08001a50 <__NVIC_SetPriorityGrouping>: +08001b20 <__NVIC_SetPriorityGrouping>: In case of a conflict between priority grouping and available priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. \param [in] PriorityGroup Priority grouping field. */ __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8001a50: b480 push {r7} - 8001a52: b085 sub sp, #20 - 8001a54: af00 add r7, sp, #0 - 8001a56: 6078 str r0, [r7, #4] + 8001b20: b480 push {r7} + 8001b22: b085 sub sp, #20 + 8001b24: af00 add r7, sp, #0 + 8001b26: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001a58: 687b ldr r3, [r7, #4] - 8001a5a: f003 0307 and.w r3, r3, #7 - 8001a5e: 60fb str r3, [r7, #12] + 8001b28: 687b ldr r3, [r7, #4] + 8001b2a: f003 0307 and.w r3, r3, #7 + 8001b2e: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 8001a60: 4b0c ldr r3, [pc, #48] ; (8001a94 <__NVIC_SetPriorityGrouping+0x44>) - 8001a62: 68db ldr r3, [r3, #12] - 8001a64: 60bb str r3, [r7, #8] + 8001b30: 4b0c ldr r3, [pc, #48] ; (8001b64 <__NVIC_SetPriorityGrouping+0x44>) + 8001b32: 68db ldr r3, [r3, #12] + 8001b34: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001a66: 68ba ldr r2, [r7, #8] - 8001a68: f64f 03ff movw r3, #63743 ; 0xf8ff - 8001a6c: 4013 ands r3, r2 - 8001a6e: 60bb str r3, [r7, #8] + 8001b36: 68ba ldr r2, [r7, #8] + 8001b38: f64f 03ff movw r3, #63743 ; 0xf8ff + 8001b3c: 4013 ands r3, r2 + 8001b3e: 60bb str r3, [r7, #8] reg_value = (reg_value | ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ - 8001a70: 68fb ldr r3, [r7, #12] - 8001a72: 021a lsls r2, r3, #8 + 8001b40: 68fb ldr r3, [r7, #12] + 8001b42: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001a74: 68bb ldr r3, [r7, #8] - 8001a76: 4313 orrs r3, r2 + 8001b44: 68bb ldr r3, [r7, #8] + 8001b46: 4313 orrs r3, r2 reg_value = (reg_value | - 8001a78: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 - 8001a7c: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8001a80: 60bb str r3, [r7, #8] + 8001b48: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 + 8001b4c: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8001b50: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 8001a82: 4a04 ldr r2, [pc, #16] ; (8001a94 <__NVIC_SetPriorityGrouping+0x44>) - 8001a84: 68bb ldr r3, [r7, #8] - 8001a86: 60d3 str r3, [r2, #12] + 8001b52: 4a04 ldr r2, [pc, #16] ; (8001b64 <__NVIC_SetPriorityGrouping+0x44>) + 8001b54: 68bb ldr r3, [r7, #8] + 8001b56: 60d3 str r3, [r2, #12] } - 8001a88: bf00 nop - 8001a8a: 3714 adds r7, #20 - 8001a8c: 46bd mov sp, r7 - 8001a8e: bc80 pop {r7} - 8001a90: 4770 bx lr - 8001a92: bf00 nop - 8001a94: e000ed00 .word 0xe000ed00 + 8001b58: bf00 nop + 8001b5a: 3714 adds r7, #20 + 8001b5c: 46bd mov sp, r7 + 8001b5e: bc80 pop {r7} + 8001b60: 4770 bx lr + 8001b62: bf00 nop + 8001b64: e000ed00 .word 0xe000ed00 -08001a98 <__NVIC_GetPriorityGrouping>: +08001b68 <__NVIC_GetPriorityGrouping>: \brief Get Priority Grouping \details Reads the priority grouping field from the NVIC Interrupt Controller. \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). */ __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void) { - 8001a98: b480 push {r7} - 8001a9a: af00 add r7, sp, #0 + 8001b68: b480 push {r7} + 8001b6a: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8001a9c: 4b04 ldr r3, [pc, #16] ; (8001ab0 <__NVIC_GetPriorityGrouping+0x18>) - 8001a9e: 68db ldr r3, [r3, #12] - 8001aa0: 0a1b lsrs r3, r3, #8 - 8001aa2: f003 0307 and.w r3, r3, #7 + 8001b6c: 4b04 ldr r3, [pc, #16] ; (8001b80 <__NVIC_GetPriorityGrouping+0x18>) + 8001b6e: 68db ldr r3, [r3, #12] + 8001b70: 0a1b lsrs r3, r3, #8 + 8001b72: f003 0307 and.w r3, r3, #7 } - 8001aa6: 4618 mov r0, r3 - 8001aa8: 46bd mov sp, r7 - 8001aaa: bc80 pop {r7} - 8001aac: 4770 bx lr - 8001aae: bf00 nop - 8001ab0: e000ed00 .word 0xe000ed00 + 8001b76: 4618 mov r0, r3 + 8001b78: 46bd mov sp, r7 + 8001b7a: bc80 pop {r7} + 8001b7c: 4770 bx lr + 8001b7e: bf00 nop + 8001b80: e000ed00 .word 0xe000ed00 -08001ab4 <__NVIC_SetPriority>: +08001b84 <__NVIC_EnableIRQ>: + \details Enables a device specific interrupt in the NVIC interrupt controller. + \param [in] IRQn Device specific interrupt number. + \note IRQn must not be negative. + */ +__STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn) +{ + 8001b84: b480 push {r7} + 8001b86: b083 sub sp, #12 + 8001b88: af00 add r7, sp, #0 + 8001b8a: 4603 mov r3, r0 + 8001b8c: 71fb strb r3, [r7, #7] + if ((int32_t)(IRQn) >= 0) + 8001b8e: f997 3007 ldrsb.w r3, [r7, #7] + 8001b92: 2b00 cmp r3, #0 + 8001b94: db0b blt.n 8001bae <__NVIC_EnableIRQ+0x2a> + { + NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); + 8001b96: 79fb ldrb r3, [r7, #7] + 8001b98: f003 021f and.w r2, r3, #31 + 8001b9c: 4906 ldr r1, [pc, #24] ; (8001bb8 <__NVIC_EnableIRQ+0x34>) + 8001b9e: f997 3007 ldrsb.w r3, [r7, #7] + 8001ba2: 095b lsrs r3, r3, #5 + 8001ba4: 2001 movs r0, #1 + 8001ba6: fa00 f202 lsl.w r2, r0, r2 + 8001baa: f841 2023 str.w r2, [r1, r3, lsl #2] + } +} + 8001bae: bf00 nop + 8001bb0: 370c adds r7, #12 + 8001bb2: 46bd mov sp, r7 + 8001bb4: bc80 pop {r7} + 8001bb6: 4770 bx lr + 8001bb8: e000e100 .word 0xe000e100 + +08001bbc <__NVIC_SetPriority>: \param [in] IRQn Interrupt number. \param [in] priority Priority to set. \note The priority cannot be set for every processor exception. */ __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) { - 8001ab4: b480 push {r7} - 8001ab6: b083 sub sp, #12 - 8001ab8: af00 add r7, sp, #0 - 8001aba: 4603 mov r3, r0 - 8001abc: 6039 str r1, [r7, #0] - 8001abe: 71fb strb r3, [r7, #7] + 8001bbc: b480 push {r7} + 8001bbe: b083 sub sp, #12 + 8001bc0: af00 add r7, sp, #0 + 8001bc2: 4603 mov r3, r0 + 8001bc4: 6039 str r1, [r7, #0] + 8001bc6: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001ac0: f997 3007 ldrsb.w r3, [r7, #7] - 8001ac4: 2b00 cmp r3, #0 - 8001ac6: db0a blt.n 8001ade <__NVIC_SetPriority+0x2a> + 8001bc8: f997 3007 ldrsb.w r3, [r7, #7] + 8001bcc: 2b00 cmp r3, #0 + 8001bce: db0a blt.n 8001be6 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001ac8: 683b ldr r3, [r7, #0] - 8001aca: b2da uxtb r2, r3 - 8001acc: 490c ldr r1, [pc, #48] ; (8001b00 <__NVIC_SetPriority+0x4c>) - 8001ace: f997 3007 ldrsb.w r3, [r7, #7] - 8001ad2: 0112 lsls r2, r2, #4 - 8001ad4: b2d2 uxtb r2, r2 - 8001ad6: 440b add r3, r1 - 8001ad8: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 8001bd0: 683b ldr r3, [r7, #0] + 8001bd2: b2da uxtb r2, r3 + 8001bd4: 490c ldr r1, [pc, #48] ; (8001c08 <__NVIC_SetPriority+0x4c>) + 8001bd6: f997 3007 ldrsb.w r3, [r7, #7] + 8001bda: 0112 lsls r2, r2, #4 + 8001bdc: b2d2 uxtb r2, r2 + 8001bde: 440b add r3, r1 + 8001be0: f883 2300 strb.w r2, [r3, #768] ; 0x300 } else { SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); } } - 8001adc: e00a b.n 8001af4 <__NVIC_SetPriority+0x40> + 8001be4: e00a b.n 8001bfc <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001ade: 683b ldr r3, [r7, #0] - 8001ae0: b2da uxtb r2, r3 - 8001ae2: 4908 ldr r1, [pc, #32] ; (8001b04 <__NVIC_SetPriority+0x50>) - 8001ae4: 79fb ldrb r3, [r7, #7] - 8001ae6: f003 030f and.w r3, r3, #15 - 8001aea: 3b04 subs r3, #4 - 8001aec: 0112 lsls r2, r2, #4 - 8001aee: b2d2 uxtb r2, r2 - 8001af0: 440b add r3, r1 - 8001af2: 761a strb r2, [r3, #24] + 8001be6: 683b ldr r3, [r7, #0] + 8001be8: b2da uxtb r2, r3 + 8001bea: 4908 ldr r1, [pc, #32] ; (8001c0c <__NVIC_SetPriority+0x50>) + 8001bec: 79fb ldrb r3, [r7, #7] + 8001bee: f003 030f and.w r3, r3, #15 + 8001bf2: 3b04 subs r3, #4 + 8001bf4: 0112 lsls r2, r2, #4 + 8001bf6: b2d2 uxtb r2, r2 + 8001bf8: 440b add r3, r1 + 8001bfa: 761a strb r2, [r3, #24] } - 8001af4: bf00 nop - 8001af6: 370c adds r7, #12 - 8001af8: 46bd mov sp, r7 - 8001afa: bc80 pop {r7} - 8001afc: 4770 bx lr - 8001afe: bf00 nop - 8001b00: e000e100 .word 0xe000e100 - 8001b04: e000ed00 .word 0xe000ed00 + 8001bfc: bf00 nop + 8001bfe: 370c adds r7, #12 + 8001c00: 46bd mov sp, r7 + 8001c02: bc80 pop {r7} + 8001c04: 4770 bx lr + 8001c06: bf00 nop + 8001c08: e000e100 .word 0xe000e100 + 8001c0c: e000ed00 .word 0xe000ed00 -08001b08 : +08001c10 : \param [in] PreemptPriority Preemptive priority value (starting from 0). \param [in] SubPriority Subpriority value (starting from 0). \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). */ __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) { - 8001b08: b480 push {r7} - 8001b0a: b089 sub sp, #36 ; 0x24 - 8001b0c: af00 add r7, sp, #0 - 8001b0e: 60f8 str r0, [r7, #12] - 8001b10: 60b9 str r1, [r7, #8] - 8001b12: 607a str r2, [r7, #4] + 8001c10: b480 push {r7} + 8001c12: b089 sub sp, #36 ; 0x24 + 8001c14: af00 add r7, sp, #0 + 8001c16: 60f8 str r0, [r7, #12] + 8001c18: 60b9 str r1, [r7, #8] + 8001c1a: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001b14: 68fb ldr r3, [r7, #12] - 8001b16: f003 0307 and.w r3, r3, #7 - 8001b1a: 61fb str r3, [r7, #28] + 8001c1c: 68fb ldr r3, [r7, #12] + 8001c1e: f003 0307 and.w r3, r3, #7 + 8001c22: 61fb str r3, [r7, #28] uint32_t PreemptPriorityBits; uint32_t SubPriorityBits; PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 8001b1c: 69fb ldr r3, [r7, #28] - 8001b1e: f1c3 0307 rsb r3, r3, #7 - 8001b22: 2b04 cmp r3, #4 - 8001b24: bf28 it cs - 8001b26: 2304 movcs r3, #4 - 8001b28: 61bb str r3, [r7, #24] + 8001c24: 69fb ldr r3, [r7, #28] + 8001c26: f1c3 0307 rsb r3, r3, #7 + 8001c2a: 2b04 cmp r3, #4 + 8001c2c: bf28 it cs + 8001c2e: 2304 movcs r3, #4 + 8001c30: 61bb str r3, [r7, #24] SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); - 8001b2a: 69fb ldr r3, [r7, #28] - 8001b2c: 3304 adds r3, #4 - 8001b2e: 2b06 cmp r3, #6 - 8001b30: d902 bls.n 8001b38 - 8001b32: 69fb ldr r3, [r7, #28] - 8001b34: 3b03 subs r3, #3 - 8001b36: e000 b.n 8001b3a - 8001b38: 2300 movs r3, #0 - 8001b3a: 617b str r3, [r7, #20] + 8001c32: 69fb ldr r3, [r7, #28] + 8001c34: 3304 adds r3, #4 + 8001c36: 2b06 cmp r3, #6 + 8001c38: d902 bls.n 8001c40 + 8001c3a: 69fb ldr r3, [r7, #28] + 8001c3c: 3b03 subs r3, #3 + 8001c3e: e000 b.n 8001c42 + 8001c40: 2300 movs r3, #0 + 8001c42: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001b3c: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8001b40: 69bb ldr r3, [r7, #24] - 8001b42: fa02 f303 lsl.w r3, r2, r3 - 8001b46: 43da mvns r2, r3 - 8001b48: 68bb ldr r3, [r7, #8] - 8001b4a: 401a ands r2, r3 - 8001b4c: 697b ldr r3, [r7, #20] - 8001b4e: 409a lsls r2, r3 + 8001c44: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8001c48: 69bb ldr r3, [r7, #24] + 8001c4a: fa02 f303 lsl.w r3, r2, r3 + 8001c4e: 43da mvns r2, r3 + 8001c50: 68bb ldr r3, [r7, #8] + 8001c52: 401a ands r2, r3 + 8001c54: 697b ldr r3, [r7, #20] + 8001c56: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001b50: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 8001b54: 697b ldr r3, [r7, #20] - 8001b56: fa01 f303 lsl.w r3, r1, r3 - 8001b5a: 43d9 mvns r1, r3 - 8001b5c: 687b ldr r3, [r7, #4] - 8001b5e: 400b ands r3, r1 + 8001c58: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 8001c5c: 697b ldr r3, [r7, #20] + 8001c5e: fa01 f303 lsl.w r3, r1, r3 + 8001c62: 43d9 mvns r1, r3 + 8001c64: 687b ldr r3, [r7, #4] + 8001c66: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001b60: 4313 orrs r3, r2 + 8001c68: 4313 orrs r3, r2 ); } - 8001b62: 4618 mov r0, r3 - 8001b64: 3724 adds r7, #36 ; 0x24 - 8001b66: 46bd mov sp, r7 - 8001b68: bc80 pop {r7} - 8001b6a: 4770 bx lr + 8001c6a: 4618 mov r0, r3 + 8001c6c: 3724 adds r7, #36 ; 0x24 + 8001c6e: 46bd mov sp, r7 + 8001c70: bc80 pop {r7} + 8001c72: 4770 bx lr -08001b6c : +08001c74 : \note When the variable __Vendor_SysTickConfig is set to 1, then the function SysTick_Config is not included. In this case, the file device.h must contain a vendor-specific implementation of this function. */ __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks) { - 8001b6c: b580 push {r7, lr} - 8001b6e: b082 sub sp, #8 - 8001b70: af00 add r7, sp, #0 - 8001b72: 6078 str r0, [r7, #4] + 8001c74: b580 push {r7, lr} + 8001c76: b082 sub sp, #8 + 8001c78: af00 add r7, sp, #0 + 8001c7a: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8001b74: 687b ldr r3, [r7, #4] - 8001b76: 3b01 subs r3, #1 - 8001b78: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 - 8001b7c: d301 bcc.n 8001b82 + 8001c7c: 687b ldr r3, [r7, #4] + 8001c7e: 3b01 subs r3, #1 + 8001c80: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 + 8001c84: d301 bcc.n 8001c8a { return (1UL); /* Reload value impossible */ - 8001b7e: 2301 movs r3, #1 - 8001b80: e00f b.n 8001ba2 + 8001c86: 2301 movs r3, #1 + 8001c88: e00f b.n 8001caa } SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8001b82: 4a0a ldr r2, [pc, #40] ; (8001bac ) - 8001b84: 687b ldr r3, [r7, #4] - 8001b86: 3b01 subs r3, #1 - 8001b88: 6053 str r3, [r2, #4] + 8001c8a: 4a0a ldr r2, [pc, #40] ; (8001cb4 ) + 8001c8c: 687b ldr r3, [r7, #4] + 8001c8e: 3b01 subs r3, #1 + 8001c90: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 8001b8a: 210f movs r1, #15 - 8001b8c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8001b90: f7ff ff90 bl 8001ab4 <__NVIC_SetPriority> + 8001c92: 210f movs r1, #15 + 8001c94: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001c98: f7ff ff90 bl 8001bbc <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8001b94: 4b05 ldr r3, [pc, #20] ; (8001bac ) - 8001b96: 2200 movs r2, #0 - 8001b98: 609a str r2, [r3, #8] + 8001c9c: 4b05 ldr r3, [pc, #20] ; (8001cb4 ) + 8001c9e: 2200 movs r2, #0 + 8001ca0: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8001b9a: 4b04 ldr r3, [pc, #16] ; (8001bac ) - 8001b9c: 2207 movs r2, #7 - 8001b9e: 601a str r2, [r3, #0] + 8001ca2: 4b04 ldr r3, [pc, #16] ; (8001cb4 ) + 8001ca4: 2207 movs r2, #7 + 8001ca6: 601a str r2, [r3, #0] SysTick_CTRL_TICKINT_Msk | SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ return (0UL); /* Function successful */ - 8001ba0: 2300 movs r3, #0 + 8001ca8: 2300 movs r3, #0 } - 8001ba2: 4618 mov r0, r3 - 8001ba4: 3708 adds r7, #8 - 8001ba6: 46bd mov sp, r7 - 8001ba8: bd80 pop {r7, pc} - 8001baa: bf00 nop - 8001bac: e000e010 .word 0xe000e010 + 8001caa: 4618 mov r0, r3 + 8001cac: 3708 adds r7, #8 + 8001cae: 46bd mov sp, r7 + 8001cb0: bd80 pop {r7, pc} + 8001cb2: bf00 nop + 8001cb4: e000e010 .word 0xe000e010 -08001bb0 : +08001cb8 : * @note When the NVIC_PriorityGroup_0 is selected, IRQ preemption is no more possible. * The pending IRQ priority will be managed only by the subpriority. * @retval None */ void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8001bb0: b580 push {r7, lr} - 8001bb2: b082 sub sp, #8 - 8001bb4: af00 add r7, sp, #0 - 8001bb6: 6078 str r0, [r7, #4] + 8001cb8: b580 push {r7, lr} + 8001cba: b082 sub sp, #8 + 8001cbc: af00 add r7, sp, #0 + 8001cbe: 6078 str r0, [r7, #4] /* Check the parameters */ assert_param(IS_NVIC_PRIORITY_GROUP(PriorityGroup)); /* Set the PRIGROUP[10:8] bits according to the PriorityGroup parameter value */ NVIC_SetPriorityGrouping(PriorityGroup); - 8001bb8: 6878 ldr r0, [r7, #4] - 8001bba: f7ff ff49 bl 8001a50 <__NVIC_SetPriorityGrouping> + 8001cc0: 6878 ldr r0, [r7, #4] + 8001cc2: f7ff ff2d bl 8001b20 <__NVIC_SetPriorityGrouping> } - 8001bbe: bf00 nop - 8001bc0: 3708 adds r7, #8 - 8001bc2: 46bd mov sp, r7 - 8001bc4: bd80 pop {r7, pc} + 8001cc6: bf00 nop + 8001cc8: 3708 adds r7, #8 + 8001cca: 46bd mov sp, r7 + 8001ccc: bd80 pop {r7, pc} -08001bc6 : +08001cce : * This parameter can be a value between 0 and 15 * A lower priority value indicates a higher priority. * @retval None */ void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority) { - 8001bc6: b580 push {r7, lr} - 8001bc8: b086 sub sp, #24 - 8001bca: af00 add r7, sp, #0 - 8001bcc: 4603 mov r3, r0 - 8001bce: 60b9 str r1, [r7, #8] - 8001bd0: 607a str r2, [r7, #4] - 8001bd2: 73fb strb r3, [r7, #15] + 8001cce: b580 push {r7, lr} + 8001cd0: b086 sub sp, #24 + 8001cd2: af00 add r7, sp, #0 + 8001cd4: 4603 mov r3, r0 + 8001cd6: 60b9 str r1, [r7, #8] + 8001cd8: 607a str r2, [r7, #4] + 8001cda: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8001bd4: 2300 movs r3, #0 - 8001bd6: 617b str r3, [r7, #20] + 8001cdc: 2300 movs r3, #0 + 8001cde: 617b str r3, [r7, #20] /* Check the parameters */ assert_param(IS_NVIC_SUB_PRIORITY(SubPriority)); assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority)); prioritygroup = NVIC_GetPriorityGrouping(); - 8001bd8: f7ff ff5e bl 8001a98 <__NVIC_GetPriorityGrouping> - 8001bdc: 6178 str r0, [r7, #20] + 8001ce0: f7ff ff42 bl 8001b68 <__NVIC_GetPriorityGrouping> + 8001ce4: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8001bde: 687a ldr r2, [r7, #4] - 8001be0: 68b9 ldr r1, [r7, #8] - 8001be2: 6978 ldr r0, [r7, #20] - 8001be4: f7ff ff90 bl 8001b08 - 8001be8: 4602 mov r2, r0 - 8001bea: f997 300f ldrsb.w r3, [r7, #15] - 8001bee: 4611 mov r1, r2 - 8001bf0: 4618 mov r0, r3 - 8001bf2: f7ff ff5f bl 8001ab4 <__NVIC_SetPriority> + 8001ce6: 687a ldr r2, [r7, #4] + 8001ce8: 68b9 ldr r1, [r7, #8] + 8001cea: 6978 ldr r0, [r7, #20] + 8001cec: f7ff ff90 bl 8001c10 + 8001cf0: 4602 mov r2, r0 + 8001cf2: f997 300f ldrsb.w r3, [r7, #15] + 8001cf6: 4611 mov r1, r2 + 8001cf8: 4618 mov r0, r3 + 8001cfa: f7ff ff5f bl 8001bbc <__NVIC_SetPriority> } - 8001bf6: bf00 nop - 8001bf8: 3718 adds r7, #24 - 8001bfa: 46bd mov sp, r7 - 8001bfc: bd80 pop {r7, pc} + 8001cfe: bf00 nop + 8001d00: 3718 adds r7, #24 + 8001d02: 46bd mov sp, r7 + 8001d04: bd80 pop {r7, pc} -08001bfe : +08001d06 : + * This parameter can be an enumerator of IRQn_Type enumeration + * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f10xxx.h)) + * @retval None + */ +void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) +{ + 8001d06: b580 push {r7, lr} + 8001d08: b082 sub sp, #8 + 8001d0a: af00 add r7, sp, #0 + 8001d0c: 4603 mov r3, r0 + 8001d0e: 71fb strb r3, [r7, #7] + /* Check the parameters */ + assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); + + /* Enable interrupt */ + NVIC_EnableIRQ(IRQn); + 8001d10: f997 3007 ldrsb.w r3, [r7, #7] + 8001d14: 4618 mov r0, r3 + 8001d16: f7ff ff35 bl 8001b84 <__NVIC_EnableIRQ> +} + 8001d1a: bf00 nop + 8001d1c: 3708 adds r7, #8 + 8001d1e: 46bd mov sp, r7 + 8001d20: bd80 pop {r7, pc} + +08001d22 : * @param TicksNumb: Specifies the ticks Number of ticks between two interrupts. * @retval status: - 0 Function succeeded. * - 1 Function failed. */ uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb) { - 8001bfe: b580 push {r7, lr} - 8001c00: b082 sub sp, #8 - 8001c02: af00 add r7, sp, #0 - 8001c04: 6078 str r0, [r7, #4] + 8001d22: b580 push {r7, lr} + 8001d24: b082 sub sp, #8 + 8001d26: af00 add r7, sp, #0 + 8001d28: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 8001c06: 6878 ldr r0, [r7, #4] - 8001c08: f7ff ffb0 bl 8001b6c - 8001c0c: 4603 mov r3, r0 + 8001d2a: 6878 ldr r0, [r7, #4] + 8001d2c: f7ff ffa2 bl 8001c74 + 8001d30: 4603 mov r3, r0 } - 8001c0e: 4618 mov r0, r3 - 8001c10: 3708 adds r7, #8 - 8001c12: 46bd mov sp, r7 - 8001c14: bd80 pop {r7, pc} + 8001d32: 4618 mov r0, r3 + 8001d34: 3708 adds r7, #8 + 8001d36: 46bd mov sp, r7 + 8001d38: bd80 pop {r7, pc} ... -08001c18 : +08001d3c : * @param GPIO_Init: pointer to a GPIO_InitTypeDef structure that contains * the configuration information for the specified GPIO peripheral. * @retval None */ void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init) { - 8001c18: b480 push {r7} - 8001c1a: b08b sub sp, #44 ; 0x2c - 8001c1c: af00 add r7, sp, #0 - 8001c1e: 6078 str r0, [r7, #4] - 8001c20: 6039 str r1, [r7, #0] + 8001d3c: b480 push {r7} + 8001d3e: b08b sub sp, #44 ; 0x2c + 8001d40: af00 add r7, sp, #0 + 8001d42: 6078 str r0, [r7, #4] + 8001d44: 6039 str r1, [r7, #0] uint32_t position = 0x00u; - 8001c22: 2300 movs r3, #0 - 8001c24: 627b str r3, [r7, #36] ; 0x24 + 8001d46: 2300 movs r3, #0 + 8001d48: 627b str r3, [r7, #36] ; 0x24 uint32_t ioposition; uint32_t iocurrent; uint32_t temp; uint32_t config = 0x00u; - 8001c26: 2300 movs r3, #0 - 8001c28: 623b str r3, [r7, #32] + 8001d4a: 2300 movs r3, #0 + 8001d4c: 623b str r3, [r7, #32] assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_GPIO_PIN(GPIO_Init->Pin)); assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); /* Configure the port pins */ while (((GPIO_Init->Pin) >> position) != 0x00u) - 8001c2a: e179 b.n 8001f20 + 8001d4e: e179 b.n 8002044 { /* Get the IO position */ ioposition = (0x01uL << position); - 8001c2c: 2201 movs r2, #1 - 8001c2e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001c30: fa02 f303 lsl.w r3, r2, r3 - 8001c34: 61fb str r3, [r7, #28] + 8001d50: 2201 movs r2, #1 + 8001d52: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001d54: fa02 f303 lsl.w r3, r2, r3 + 8001d58: 61fb str r3, [r7, #28] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8001c36: 683b ldr r3, [r7, #0] - 8001c38: 681b ldr r3, [r3, #0] - 8001c3a: 69fa ldr r2, [r7, #28] - 8001c3c: 4013 ands r3, r2 - 8001c3e: 61bb str r3, [r7, #24] + 8001d5a: 683b ldr r3, [r7, #0] + 8001d5c: 681b ldr r3, [r3, #0] + 8001d5e: 69fa ldr r2, [r7, #28] + 8001d60: 4013 ands r3, r2 + 8001d62: 61bb str r3, [r7, #24] if (iocurrent == ioposition) - 8001c40: 69ba ldr r2, [r7, #24] - 8001c42: 69fb ldr r3, [r7, #28] - 8001c44: 429a cmp r2, r3 - 8001c46: f040 8168 bne.w 8001f1a + 8001d64: 69ba ldr r2, [r7, #24] + 8001d66: 69fb ldr r3, [r7, #28] + 8001d68: 429a cmp r2, r3 + 8001d6a: f040 8168 bne.w 800203e { /* Check the Alternate function parameters */ assert_param(IS_GPIO_AF_INSTANCE(GPIOx)); /* Based on the required mode, filling config variable with MODEy[1:0] and CNFy[3:2] corresponding bits */ switch (GPIO_Init->Mode) - 8001c4a: 683b ldr r3, [r7, #0] - 8001c4c: 685b ldr r3, [r3, #4] - 8001c4e: 4aa0 ldr r2, [pc, #640] ; (8001ed0 ) - 8001c50: 4293 cmp r3, r2 - 8001c52: d05e beq.n 8001d12 - 8001c54: 4a9e ldr r2, [pc, #632] ; (8001ed0 ) - 8001c56: 4293 cmp r3, r2 - 8001c58: d875 bhi.n 8001d46 - 8001c5a: 4a9e ldr r2, [pc, #632] ; (8001ed4 ) - 8001c5c: 4293 cmp r3, r2 - 8001c5e: d058 beq.n 8001d12 - 8001c60: 4a9c ldr r2, [pc, #624] ; (8001ed4 ) - 8001c62: 4293 cmp r3, r2 - 8001c64: d86f bhi.n 8001d46 - 8001c66: 4a9c ldr r2, [pc, #624] ; (8001ed8 ) - 8001c68: 4293 cmp r3, r2 - 8001c6a: d052 beq.n 8001d12 - 8001c6c: 4a9a ldr r2, [pc, #616] ; (8001ed8 ) - 8001c6e: 4293 cmp r3, r2 - 8001c70: d869 bhi.n 8001d46 - 8001c72: 4a9a ldr r2, [pc, #616] ; (8001edc ) - 8001c74: 4293 cmp r3, r2 - 8001c76: d04c beq.n 8001d12 - 8001c78: 4a98 ldr r2, [pc, #608] ; (8001edc ) - 8001c7a: 4293 cmp r3, r2 - 8001c7c: d863 bhi.n 8001d46 - 8001c7e: 4a98 ldr r2, [pc, #608] ; (8001ee0 ) - 8001c80: 4293 cmp r3, r2 - 8001c82: d046 beq.n 8001d12 - 8001c84: 4a96 ldr r2, [pc, #600] ; (8001ee0 ) - 8001c86: 4293 cmp r3, r2 - 8001c88: d85d bhi.n 8001d46 - 8001c8a: 2b12 cmp r3, #18 - 8001c8c: d82a bhi.n 8001ce4 - 8001c8e: 2b12 cmp r3, #18 - 8001c90: d859 bhi.n 8001d46 - 8001c92: a201 add r2, pc, #4 ; (adr r2, 8001c98 ) - 8001c94: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8001c98: 08001d13 .word 0x08001d13 - 8001c9c: 08001ced .word 0x08001ced - 8001ca0: 08001cff .word 0x08001cff - 8001ca4: 08001d41 .word 0x08001d41 - 8001ca8: 08001d47 .word 0x08001d47 - 8001cac: 08001d47 .word 0x08001d47 - 8001cb0: 08001d47 .word 0x08001d47 - 8001cb4: 08001d47 .word 0x08001d47 - 8001cb8: 08001d47 .word 0x08001d47 - 8001cbc: 08001d47 .word 0x08001d47 - 8001cc0: 08001d47 .word 0x08001d47 - 8001cc4: 08001d47 .word 0x08001d47 - 8001cc8: 08001d47 .word 0x08001d47 - 8001ccc: 08001d47 .word 0x08001d47 - 8001cd0: 08001d47 .word 0x08001d47 - 8001cd4: 08001d47 .word 0x08001d47 - 8001cd8: 08001d47 .word 0x08001d47 - 8001cdc: 08001cf5 .word 0x08001cf5 - 8001ce0: 08001d09 .word 0x08001d09 - 8001ce4: 4a7f ldr r2, [pc, #508] ; (8001ee4 ) - 8001ce6: 4293 cmp r3, r2 - 8001ce8: d013 beq.n 8001d12 + 8001d6e: 683b ldr r3, [r7, #0] + 8001d70: 685b ldr r3, [r3, #4] + 8001d72: 4aa0 ldr r2, [pc, #640] ; (8001ff4 ) + 8001d74: 4293 cmp r3, r2 + 8001d76: d05e beq.n 8001e36 + 8001d78: 4a9e ldr r2, [pc, #632] ; (8001ff4 ) + 8001d7a: 4293 cmp r3, r2 + 8001d7c: d875 bhi.n 8001e6a + 8001d7e: 4a9e ldr r2, [pc, #632] ; (8001ff8 ) + 8001d80: 4293 cmp r3, r2 + 8001d82: d058 beq.n 8001e36 + 8001d84: 4a9c ldr r2, [pc, #624] ; (8001ff8 ) + 8001d86: 4293 cmp r3, r2 + 8001d88: d86f bhi.n 8001e6a + 8001d8a: 4a9c ldr r2, [pc, #624] ; (8001ffc ) + 8001d8c: 4293 cmp r3, r2 + 8001d8e: d052 beq.n 8001e36 + 8001d90: 4a9a ldr r2, [pc, #616] ; (8001ffc ) + 8001d92: 4293 cmp r3, r2 + 8001d94: d869 bhi.n 8001e6a + 8001d96: 4a9a ldr r2, [pc, #616] ; (8002000 ) + 8001d98: 4293 cmp r3, r2 + 8001d9a: d04c beq.n 8001e36 + 8001d9c: 4a98 ldr r2, [pc, #608] ; (8002000 ) + 8001d9e: 4293 cmp r3, r2 + 8001da0: d863 bhi.n 8001e6a + 8001da2: 4a98 ldr r2, [pc, #608] ; (8002004 ) + 8001da4: 4293 cmp r3, r2 + 8001da6: d046 beq.n 8001e36 + 8001da8: 4a96 ldr r2, [pc, #600] ; (8002004 ) + 8001daa: 4293 cmp r3, r2 + 8001dac: d85d bhi.n 8001e6a + 8001dae: 2b12 cmp r3, #18 + 8001db0: d82a bhi.n 8001e08 + 8001db2: 2b12 cmp r3, #18 + 8001db4: d859 bhi.n 8001e6a + 8001db6: a201 add r2, pc, #4 ; (adr r2, 8001dbc ) + 8001db8: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8001dbc: 08001e37 .word 0x08001e37 + 8001dc0: 08001e11 .word 0x08001e11 + 8001dc4: 08001e23 .word 0x08001e23 + 8001dc8: 08001e65 .word 0x08001e65 + 8001dcc: 08001e6b .word 0x08001e6b + 8001dd0: 08001e6b .word 0x08001e6b + 8001dd4: 08001e6b .word 0x08001e6b + 8001dd8: 08001e6b .word 0x08001e6b + 8001ddc: 08001e6b .word 0x08001e6b + 8001de0: 08001e6b .word 0x08001e6b + 8001de4: 08001e6b .word 0x08001e6b + 8001de8: 08001e6b .word 0x08001e6b + 8001dec: 08001e6b .word 0x08001e6b + 8001df0: 08001e6b .word 0x08001e6b + 8001df4: 08001e6b .word 0x08001e6b + 8001df8: 08001e6b .word 0x08001e6b + 8001dfc: 08001e6b .word 0x08001e6b + 8001e00: 08001e19 .word 0x08001e19 + 8001e04: 08001e2d .word 0x08001e2d + 8001e08: 4a7f ldr r2, [pc, #508] ; (8002008 ) + 8001e0a: 4293 cmp r3, r2 + 8001e0c: d013 beq.n 8001e36 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; break; /* Parameters are checked with assert_param */ default: break; - 8001cea: e02c b.n 8001d46 + 8001e0e: e02c b.n 8001e6a config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_PP; - 8001cec: 683b ldr r3, [r7, #0] - 8001cee: 68db ldr r3, [r3, #12] - 8001cf0: 623b str r3, [r7, #32] + 8001e10: 683b ldr r3, [r7, #0] + 8001e12: 68db ldr r3, [r3, #12] + 8001e14: 623b str r3, [r7, #32] break; - 8001cf2: e029 b.n 8001d48 + 8001e16: e029 b.n 8001e6c config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_OD; - 8001cf4: 683b ldr r3, [r7, #0] - 8001cf6: 68db ldr r3, [r3, #12] - 8001cf8: 3304 adds r3, #4 - 8001cfa: 623b str r3, [r7, #32] + 8001e18: 683b ldr r3, [r7, #0] + 8001e1a: 68db ldr r3, [r3, #12] + 8001e1c: 3304 adds r3, #4 + 8001e1e: 623b str r3, [r7, #32] break; - 8001cfc: e024 b.n 8001d48 + 8001e20: e024 b.n 8001e6c config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_PP; - 8001cfe: 683b ldr r3, [r7, #0] - 8001d00: 68db ldr r3, [r3, #12] - 8001d02: 3308 adds r3, #8 - 8001d04: 623b str r3, [r7, #32] + 8001e22: 683b ldr r3, [r7, #0] + 8001e24: 68db ldr r3, [r3, #12] + 8001e26: 3308 adds r3, #8 + 8001e28: 623b str r3, [r7, #32] break; - 8001d06: e01f b.n 8001d48 + 8001e2a: e01f b.n 8001e6c config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_OD; - 8001d08: 683b ldr r3, [r7, #0] - 8001d0a: 68db ldr r3, [r3, #12] - 8001d0c: 330c adds r3, #12 - 8001d0e: 623b str r3, [r7, #32] + 8001e2c: 683b ldr r3, [r7, #0] + 8001e2e: 68db ldr r3, [r3, #12] + 8001e30: 330c adds r3, #12 + 8001e32: 623b str r3, [r7, #32] break; - 8001d10: e01a b.n 8001d48 + 8001e34: e01a b.n 8001e6c if (GPIO_Init->Pull == GPIO_NOPULL) - 8001d12: 683b ldr r3, [r7, #0] - 8001d14: 689b ldr r3, [r3, #8] - 8001d16: 2b00 cmp r3, #0 - 8001d18: d102 bne.n 8001d20 + 8001e36: 683b ldr r3, [r7, #0] + 8001e38: 689b ldr r3, [r3, #8] + 8001e3a: 2b00 cmp r3, #0 + 8001e3c: d102 bne.n 8001e44 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_FLOATING; - 8001d1a: 2304 movs r3, #4 - 8001d1c: 623b str r3, [r7, #32] + 8001e3e: 2304 movs r3, #4 + 8001e40: 623b str r3, [r7, #32] break; - 8001d1e: e013 b.n 8001d48 + 8001e42: e013 b.n 8001e6c else if (GPIO_Init->Pull == GPIO_PULLUP) - 8001d20: 683b ldr r3, [r7, #0] - 8001d22: 689b ldr r3, [r3, #8] - 8001d24: 2b01 cmp r3, #1 - 8001d26: d105 bne.n 8001d34 + 8001e44: 683b ldr r3, [r7, #0] + 8001e46: 689b ldr r3, [r3, #8] + 8001e48: 2b01 cmp r3, #1 + 8001e4a: d105 bne.n 8001e58 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001d28: 2308 movs r3, #8 - 8001d2a: 623b str r3, [r7, #32] + 8001e4c: 2308 movs r3, #8 + 8001e4e: 623b str r3, [r7, #32] GPIOx->BSRR = ioposition; - 8001d2c: 687b ldr r3, [r7, #4] - 8001d2e: 69fa ldr r2, [r7, #28] - 8001d30: 611a str r2, [r3, #16] + 8001e50: 687b ldr r3, [r7, #4] + 8001e52: 69fa ldr r2, [r7, #28] + 8001e54: 611a str r2, [r3, #16] break; - 8001d32: e009 b.n 8001d48 + 8001e56: e009 b.n 8001e6c config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001d34: 2308 movs r3, #8 - 8001d36: 623b str r3, [r7, #32] + 8001e58: 2308 movs r3, #8 + 8001e5a: 623b str r3, [r7, #32] GPIOx->BRR = ioposition; - 8001d38: 687b ldr r3, [r7, #4] - 8001d3a: 69fa ldr r2, [r7, #28] - 8001d3c: 615a str r2, [r3, #20] + 8001e5c: 687b ldr r3, [r7, #4] + 8001e5e: 69fa ldr r2, [r7, #28] + 8001e60: 615a str r2, [r3, #20] break; - 8001d3e: e003 b.n 8001d48 + 8001e62: e003 b.n 8001e6c config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; - 8001d40: 2300 movs r3, #0 - 8001d42: 623b str r3, [r7, #32] + 8001e64: 2300 movs r3, #0 + 8001e66: 623b str r3, [r7, #32] break; - 8001d44: e000 b.n 8001d48 + 8001e68: e000 b.n 8001e6c break; - 8001d46: bf00 nop + 8001e6a: bf00 nop } /* Check if the current bit belongs to first half or last half of the pin count number in order to address CRH or CRL register*/ configregister = (iocurrent < GPIO_PIN_8) ? &GPIOx->CRL : &GPIOx->CRH; - 8001d48: 69bb ldr r3, [r7, #24] - 8001d4a: 2bff cmp r3, #255 ; 0xff - 8001d4c: d801 bhi.n 8001d52 - 8001d4e: 687b ldr r3, [r7, #4] - 8001d50: e001 b.n 8001d56 - 8001d52: 687b ldr r3, [r7, #4] - 8001d54: 3304 adds r3, #4 - 8001d56: 617b str r3, [r7, #20] + 8001e6c: 69bb ldr r3, [r7, #24] + 8001e6e: 2bff cmp r3, #255 ; 0xff + 8001e70: d801 bhi.n 8001e76 + 8001e72: 687b ldr r3, [r7, #4] + 8001e74: e001 b.n 8001e7a + 8001e76: 687b ldr r3, [r7, #4] + 8001e78: 3304 adds r3, #4 + 8001e7a: 617b str r3, [r7, #20] registeroffset = (iocurrent < GPIO_PIN_8) ? (position << 2u) : ((position - 8u) << 2u); - 8001d58: 69bb ldr r3, [r7, #24] - 8001d5a: 2bff cmp r3, #255 ; 0xff - 8001d5c: d802 bhi.n 8001d64 - 8001d5e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001d60: 009b lsls r3, r3, #2 - 8001d62: e002 b.n 8001d6a - 8001d64: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001d66: 3b08 subs r3, #8 - 8001d68: 009b lsls r3, r3, #2 - 8001d6a: 613b str r3, [r7, #16] + 8001e7c: 69bb ldr r3, [r7, #24] + 8001e7e: 2bff cmp r3, #255 ; 0xff + 8001e80: d802 bhi.n 8001e88 + 8001e82: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001e84: 009b lsls r3, r3, #2 + 8001e86: e002 b.n 8001e8e + 8001e88: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001e8a: 3b08 subs r3, #8 + 8001e8c: 009b lsls r3, r3, #2 + 8001e8e: 613b str r3, [r7, #16] /* Apply the new configuration of the pin to the register */ MODIFY_REG((*configregister), ((GPIO_CRL_MODE0 | GPIO_CRL_CNF0) << registeroffset), (config << registeroffset)); - 8001d6c: 697b ldr r3, [r7, #20] - 8001d6e: 681a ldr r2, [r3, #0] - 8001d70: 210f movs r1, #15 - 8001d72: 693b ldr r3, [r7, #16] - 8001d74: fa01 f303 lsl.w r3, r1, r3 - 8001d78: 43db mvns r3, r3 - 8001d7a: 401a ands r2, r3 - 8001d7c: 6a39 ldr r1, [r7, #32] - 8001d7e: 693b ldr r3, [r7, #16] - 8001d80: fa01 f303 lsl.w r3, r1, r3 - 8001d84: 431a orrs r2, r3 - 8001d86: 697b ldr r3, [r7, #20] - 8001d88: 601a str r2, [r3, #0] + 8001e90: 697b ldr r3, [r7, #20] + 8001e92: 681a ldr r2, [r3, #0] + 8001e94: 210f movs r1, #15 + 8001e96: 693b ldr r3, [r7, #16] + 8001e98: fa01 f303 lsl.w r3, r1, r3 + 8001e9c: 43db mvns r3, r3 + 8001e9e: 401a ands r2, r3 + 8001ea0: 6a39 ldr r1, [r7, #32] + 8001ea2: 693b ldr r3, [r7, #16] + 8001ea4: fa01 f303 lsl.w r3, r1, r3 + 8001ea8: 431a orrs r2, r3 + 8001eaa: 697b ldr r3, [r7, #20] + 8001eac: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if ((GPIO_Init->Mode & EXTI_MODE) == EXTI_MODE) - 8001d8a: 683b ldr r3, [r7, #0] - 8001d8c: 685b ldr r3, [r3, #4] - 8001d8e: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8001d92: 2b00 cmp r3, #0 - 8001d94: f000 80c1 beq.w 8001f1a + 8001eae: 683b ldr r3, [r7, #0] + 8001eb0: 685b ldr r3, [r3, #4] + 8001eb2: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8001eb6: 2b00 cmp r3, #0 + 8001eb8: f000 80c1 beq.w 800203e { /* Enable AFIO Clock */ __HAL_RCC_AFIO_CLK_ENABLE(); - 8001d98: 4b53 ldr r3, [pc, #332] ; (8001ee8 ) - 8001d9a: 699b ldr r3, [r3, #24] - 8001d9c: 4a52 ldr r2, [pc, #328] ; (8001ee8 ) - 8001d9e: f043 0301 orr.w r3, r3, #1 - 8001da2: 6193 str r3, [r2, #24] - 8001da4: 4b50 ldr r3, [pc, #320] ; (8001ee8 ) - 8001da6: 699b ldr r3, [r3, #24] - 8001da8: f003 0301 and.w r3, r3, #1 - 8001dac: 60bb str r3, [r7, #8] - 8001dae: 68bb ldr r3, [r7, #8] + 8001ebc: 4b53 ldr r3, [pc, #332] ; (800200c ) + 8001ebe: 699b ldr r3, [r3, #24] + 8001ec0: 4a52 ldr r2, [pc, #328] ; (800200c ) + 8001ec2: f043 0301 orr.w r3, r3, #1 + 8001ec6: 6193 str r3, [r2, #24] + 8001ec8: 4b50 ldr r3, [pc, #320] ; (800200c ) + 8001eca: 699b ldr r3, [r3, #24] + 8001ecc: f003 0301 and.w r3, r3, #1 + 8001ed0: 60bb str r3, [r7, #8] + 8001ed2: 68bb ldr r3, [r7, #8] temp = AFIO->EXTICR[position >> 2u]; - 8001db0: 4a4e ldr r2, [pc, #312] ; (8001eec ) - 8001db2: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001db4: 089b lsrs r3, r3, #2 - 8001db6: 3302 adds r3, #2 - 8001db8: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8001dbc: 60fb str r3, [r7, #12] + 8001ed4: 4a4e ldr r2, [pc, #312] ; (8002010 ) + 8001ed6: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001ed8: 089b lsrs r3, r3, #2 + 8001eda: 3302 adds r3, #2 + 8001edc: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8001ee0: 60fb str r3, [r7, #12] CLEAR_BIT(temp, (0x0Fu) << (4u * (position & 0x03u))); - 8001dbe: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001dc0: f003 0303 and.w r3, r3, #3 - 8001dc4: 009b lsls r3, r3, #2 - 8001dc6: 220f movs r2, #15 - 8001dc8: fa02 f303 lsl.w r3, r2, r3 - 8001dcc: 43db mvns r3, r3 - 8001dce: 68fa ldr r2, [r7, #12] - 8001dd0: 4013 ands r3, r2 - 8001dd2: 60fb str r3, [r7, #12] + 8001ee2: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001ee4: f003 0303 and.w r3, r3, #3 + 8001ee8: 009b lsls r3, r3, #2 + 8001eea: 220f movs r2, #15 + 8001eec: fa02 f303 lsl.w r3, r2, r3 + 8001ef0: 43db mvns r3, r3 + 8001ef2: 68fa ldr r2, [r7, #12] + 8001ef4: 4013 ands r3, r2 + 8001ef6: 60fb str r3, [r7, #12] SET_BIT(temp, (GPIO_GET_INDEX(GPIOx)) << (4u * (position & 0x03u))); - 8001dd4: 687b ldr r3, [r7, #4] - 8001dd6: 4a46 ldr r2, [pc, #280] ; (8001ef0 ) - 8001dd8: 4293 cmp r3, r2 - 8001dda: d01f beq.n 8001e1c - 8001ddc: 687b ldr r3, [r7, #4] - 8001dde: 4a45 ldr r2, [pc, #276] ; (8001ef4 ) - 8001de0: 4293 cmp r3, r2 - 8001de2: d019 beq.n 8001e18 - 8001de4: 687b ldr r3, [r7, #4] - 8001de6: 4a44 ldr r2, [pc, #272] ; (8001ef8 ) - 8001de8: 4293 cmp r3, r2 - 8001dea: d013 beq.n 8001e14 - 8001dec: 687b ldr r3, [r7, #4] - 8001dee: 4a43 ldr r2, [pc, #268] ; (8001efc ) - 8001df0: 4293 cmp r3, r2 - 8001df2: d00d beq.n 8001e10 - 8001df4: 687b ldr r3, [r7, #4] - 8001df6: 4a42 ldr r2, [pc, #264] ; (8001f00 ) - 8001df8: 4293 cmp r3, r2 - 8001dfa: d007 beq.n 8001e0c - 8001dfc: 687b ldr r3, [r7, #4] - 8001dfe: 4a41 ldr r2, [pc, #260] ; (8001f04 ) - 8001e00: 4293 cmp r3, r2 - 8001e02: d101 bne.n 8001e08 - 8001e04: 2305 movs r3, #5 - 8001e06: e00a b.n 8001e1e - 8001e08: 2306 movs r3, #6 - 8001e0a: e008 b.n 8001e1e - 8001e0c: 2304 movs r3, #4 - 8001e0e: e006 b.n 8001e1e - 8001e10: 2303 movs r3, #3 - 8001e12: e004 b.n 8001e1e - 8001e14: 2302 movs r3, #2 - 8001e16: e002 b.n 8001e1e - 8001e18: 2301 movs r3, #1 - 8001e1a: e000 b.n 8001e1e - 8001e1c: 2300 movs r3, #0 - 8001e1e: 6a7a ldr r2, [r7, #36] ; 0x24 - 8001e20: f002 0203 and.w r2, r2, #3 - 8001e24: 0092 lsls r2, r2, #2 - 8001e26: 4093 lsls r3, r2 - 8001e28: 68fa ldr r2, [r7, #12] - 8001e2a: 4313 orrs r3, r2 - 8001e2c: 60fb str r3, [r7, #12] + 8001ef8: 687b ldr r3, [r7, #4] + 8001efa: 4a46 ldr r2, [pc, #280] ; (8002014 ) + 8001efc: 4293 cmp r3, r2 + 8001efe: d01f beq.n 8001f40 + 8001f00: 687b ldr r3, [r7, #4] + 8001f02: 4a45 ldr r2, [pc, #276] ; (8002018 ) + 8001f04: 4293 cmp r3, r2 + 8001f06: d019 beq.n 8001f3c + 8001f08: 687b ldr r3, [r7, #4] + 8001f0a: 4a44 ldr r2, [pc, #272] ; (800201c ) + 8001f0c: 4293 cmp r3, r2 + 8001f0e: d013 beq.n 8001f38 + 8001f10: 687b ldr r3, [r7, #4] + 8001f12: 4a43 ldr r2, [pc, #268] ; (8002020 ) + 8001f14: 4293 cmp r3, r2 + 8001f16: d00d beq.n 8001f34 + 8001f18: 687b ldr r3, [r7, #4] + 8001f1a: 4a42 ldr r2, [pc, #264] ; (8002024 ) + 8001f1c: 4293 cmp r3, r2 + 8001f1e: d007 beq.n 8001f30 + 8001f20: 687b ldr r3, [r7, #4] + 8001f22: 4a41 ldr r2, [pc, #260] ; (8002028 ) + 8001f24: 4293 cmp r3, r2 + 8001f26: d101 bne.n 8001f2c + 8001f28: 2305 movs r3, #5 + 8001f2a: e00a b.n 8001f42 + 8001f2c: 2306 movs r3, #6 + 8001f2e: e008 b.n 8001f42 + 8001f30: 2304 movs r3, #4 + 8001f32: e006 b.n 8001f42 + 8001f34: 2303 movs r3, #3 + 8001f36: e004 b.n 8001f42 + 8001f38: 2302 movs r3, #2 + 8001f3a: e002 b.n 8001f42 + 8001f3c: 2301 movs r3, #1 + 8001f3e: e000 b.n 8001f42 + 8001f40: 2300 movs r3, #0 + 8001f42: 6a7a ldr r2, [r7, #36] ; 0x24 + 8001f44: f002 0203 and.w r2, r2, #3 + 8001f48: 0092 lsls r2, r2, #2 + 8001f4a: 4093 lsls r3, r2 + 8001f4c: 68fa ldr r2, [r7, #12] + 8001f4e: 4313 orrs r3, r2 + 8001f50: 60fb str r3, [r7, #12] AFIO->EXTICR[position >> 2u] = temp; - 8001e2e: 492f ldr r1, [pc, #188] ; (8001eec ) - 8001e30: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001e32: 089b lsrs r3, r3, #2 - 8001e34: 3302 adds r3, #2 - 8001e36: 68fa ldr r2, [r7, #12] - 8001e38: f841 2023 str.w r2, [r1, r3, lsl #2] + 8001f52: 492f ldr r1, [pc, #188] ; (8002010 ) + 8001f54: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001f56: 089b lsrs r3, r3, #2 + 8001f58: 3302 adds r3, #2 + 8001f5a: 68fa ldr r2, [r7, #12] + 8001f5c: f841 2023 str.w r2, [r1, r3, lsl #2] /* Configure the interrupt mask */ if ((GPIO_Init->Mode & GPIO_MODE_IT) == GPIO_MODE_IT) - 8001e3c: 683b ldr r3, [r7, #0] - 8001e3e: 685b ldr r3, [r3, #4] - 8001e40: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8001e44: 2b00 cmp r3, #0 - 8001e46: d006 beq.n 8001e56 + 8001f60: 683b ldr r3, [r7, #0] + 8001f62: 685b ldr r3, [r3, #4] + 8001f64: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8001f68: 2b00 cmp r3, #0 + 8001f6a: d006 beq.n 8001f7a { SET_BIT(EXTI->IMR, iocurrent); - 8001e48: 4b2f ldr r3, [pc, #188] ; (8001f08 ) - 8001e4a: 681a ldr r2, [r3, #0] - 8001e4c: 492e ldr r1, [pc, #184] ; (8001f08 ) - 8001e4e: 69bb ldr r3, [r7, #24] - 8001e50: 4313 orrs r3, r2 - 8001e52: 600b str r3, [r1, #0] - 8001e54: e006 b.n 8001e64 + 8001f6c: 4b2f ldr r3, [pc, #188] ; (800202c ) + 8001f6e: 681a ldr r2, [r3, #0] + 8001f70: 492e ldr r1, [pc, #184] ; (800202c ) + 8001f72: 69bb ldr r3, [r7, #24] + 8001f74: 4313 orrs r3, r2 + 8001f76: 600b str r3, [r1, #0] + 8001f78: e006 b.n 8001f88 } else { CLEAR_BIT(EXTI->IMR, iocurrent); - 8001e56: 4b2c ldr r3, [pc, #176] ; (8001f08 ) - 8001e58: 681a ldr r2, [r3, #0] - 8001e5a: 69bb ldr r3, [r7, #24] - 8001e5c: 43db mvns r3, r3 - 8001e5e: 492a ldr r1, [pc, #168] ; (8001f08 ) - 8001e60: 4013 ands r3, r2 - 8001e62: 600b str r3, [r1, #0] + 8001f7a: 4b2c ldr r3, [pc, #176] ; (800202c ) + 8001f7c: 681a ldr r2, [r3, #0] + 8001f7e: 69bb ldr r3, [r7, #24] + 8001f80: 43db mvns r3, r3 + 8001f82: 492a ldr r1, [pc, #168] ; (800202c ) + 8001f84: 4013 ands r3, r2 + 8001f86: 600b str r3, [r1, #0] } /* Configure the event mask */ if ((GPIO_Init->Mode & GPIO_MODE_EVT) == GPIO_MODE_EVT) - 8001e64: 683b ldr r3, [r7, #0] - 8001e66: 685b ldr r3, [r3, #4] - 8001e68: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001e6c: 2b00 cmp r3, #0 - 8001e6e: d006 beq.n 8001e7e + 8001f88: 683b ldr r3, [r7, #0] + 8001f8a: 685b ldr r3, [r3, #4] + 8001f8c: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001f90: 2b00 cmp r3, #0 + 8001f92: d006 beq.n 8001fa2 { SET_BIT(EXTI->EMR, iocurrent); - 8001e70: 4b25 ldr r3, [pc, #148] ; (8001f08 ) - 8001e72: 685a ldr r2, [r3, #4] - 8001e74: 4924 ldr r1, [pc, #144] ; (8001f08 ) - 8001e76: 69bb ldr r3, [r7, #24] - 8001e78: 4313 orrs r3, r2 - 8001e7a: 604b str r3, [r1, #4] - 8001e7c: e006 b.n 8001e8c + 8001f94: 4b25 ldr r3, [pc, #148] ; (800202c ) + 8001f96: 685a ldr r2, [r3, #4] + 8001f98: 4924 ldr r1, [pc, #144] ; (800202c ) + 8001f9a: 69bb ldr r3, [r7, #24] + 8001f9c: 4313 orrs r3, r2 + 8001f9e: 604b str r3, [r1, #4] + 8001fa0: e006 b.n 8001fb0 } else { CLEAR_BIT(EXTI->EMR, iocurrent); - 8001e7e: 4b22 ldr r3, [pc, #136] ; (8001f08 ) - 8001e80: 685a ldr r2, [r3, #4] - 8001e82: 69bb ldr r3, [r7, #24] - 8001e84: 43db mvns r3, r3 - 8001e86: 4920 ldr r1, [pc, #128] ; (8001f08 ) - 8001e88: 4013 ands r3, r2 - 8001e8a: 604b str r3, [r1, #4] + 8001fa2: 4b22 ldr r3, [pc, #136] ; (800202c ) + 8001fa4: 685a ldr r2, [r3, #4] + 8001fa6: 69bb ldr r3, [r7, #24] + 8001fa8: 43db mvns r3, r3 + 8001faa: 4920 ldr r1, [pc, #128] ; (800202c ) + 8001fac: 4013 ands r3, r2 + 8001fae: 604b str r3, [r1, #4] } /* Enable or disable the rising trigger */ if ((GPIO_Init->Mode & RISING_EDGE) == RISING_EDGE) - 8001e8c: 683b ldr r3, [r7, #0] - 8001e8e: 685b ldr r3, [r3, #4] - 8001e90: f403 1380 and.w r3, r3, #1048576 ; 0x100000 - 8001e94: 2b00 cmp r3, #0 - 8001e96: d006 beq.n 8001ea6 + 8001fb0: 683b ldr r3, [r7, #0] + 8001fb2: 685b ldr r3, [r3, #4] + 8001fb4: f403 1380 and.w r3, r3, #1048576 ; 0x100000 + 8001fb8: 2b00 cmp r3, #0 + 8001fba: d006 beq.n 8001fca { SET_BIT(EXTI->RTSR, iocurrent); - 8001e98: 4b1b ldr r3, [pc, #108] ; (8001f08 ) - 8001e9a: 689a ldr r2, [r3, #8] - 8001e9c: 491a ldr r1, [pc, #104] ; (8001f08 ) - 8001e9e: 69bb ldr r3, [r7, #24] - 8001ea0: 4313 orrs r3, r2 - 8001ea2: 608b str r3, [r1, #8] - 8001ea4: e006 b.n 8001eb4 + 8001fbc: 4b1b ldr r3, [pc, #108] ; (800202c ) + 8001fbe: 689a ldr r2, [r3, #8] + 8001fc0: 491a ldr r1, [pc, #104] ; (800202c ) + 8001fc2: 69bb ldr r3, [r7, #24] + 8001fc4: 4313 orrs r3, r2 + 8001fc6: 608b str r3, [r1, #8] + 8001fc8: e006 b.n 8001fd8 } else { CLEAR_BIT(EXTI->RTSR, iocurrent); - 8001ea6: 4b18 ldr r3, [pc, #96] ; (8001f08 ) - 8001ea8: 689a ldr r2, [r3, #8] - 8001eaa: 69bb ldr r3, [r7, #24] - 8001eac: 43db mvns r3, r3 - 8001eae: 4916 ldr r1, [pc, #88] ; (8001f08 ) - 8001eb0: 4013 ands r3, r2 - 8001eb2: 608b str r3, [r1, #8] + 8001fca: 4b18 ldr r3, [pc, #96] ; (800202c ) + 8001fcc: 689a ldr r2, [r3, #8] + 8001fce: 69bb ldr r3, [r7, #24] + 8001fd0: 43db mvns r3, r3 + 8001fd2: 4916 ldr r1, [pc, #88] ; (800202c ) + 8001fd4: 4013 ands r3, r2 + 8001fd6: 608b str r3, [r1, #8] } /* Enable or disable the falling trigger */ if ((GPIO_Init->Mode & FALLING_EDGE) == FALLING_EDGE) - 8001eb4: 683b ldr r3, [r7, #0] - 8001eb6: 685b ldr r3, [r3, #4] - 8001eb8: f403 1300 and.w r3, r3, #2097152 ; 0x200000 - 8001ebc: 2b00 cmp r3, #0 - 8001ebe: d025 beq.n 8001f0c + 8001fd8: 683b ldr r3, [r7, #0] + 8001fda: 685b ldr r3, [r3, #4] + 8001fdc: f403 1300 and.w r3, r3, #2097152 ; 0x200000 + 8001fe0: 2b00 cmp r3, #0 + 8001fe2: d025 beq.n 8002030 { SET_BIT(EXTI->FTSR, iocurrent); - 8001ec0: 4b11 ldr r3, [pc, #68] ; (8001f08 ) - 8001ec2: 68da ldr r2, [r3, #12] - 8001ec4: 4910 ldr r1, [pc, #64] ; (8001f08 ) - 8001ec6: 69bb ldr r3, [r7, #24] - 8001ec8: 4313 orrs r3, r2 - 8001eca: 60cb str r3, [r1, #12] - 8001ecc: e025 b.n 8001f1a - 8001ece: bf00 nop - 8001ed0: 10320000 .word 0x10320000 - 8001ed4: 10310000 .word 0x10310000 - 8001ed8: 10220000 .word 0x10220000 - 8001edc: 10210000 .word 0x10210000 - 8001ee0: 10120000 .word 0x10120000 - 8001ee4: 10110000 .word 0x10110000 - 8001ee8: 40021000 .word 0x40021000 - 8001eec: 40010000 .word 0x40010000 - 8001ef0: 40010800 .word 0x40010800 - 8001ef4: 40010c00 .word 0x40010c00 - 8001ef8: 40011000 .word 0x40011000 - 8001efc: 40011400 .word 0x40011400 - 8001f00: 40011800 .word 0x40011800 - 8001f04: 40011c00 .word 0x40011c00 - 8001f08: 40010400 .word 0x40010400 + 8001fe4: 4b11 ldr r3, [pc, #68] ; (800202c ) + 8001fe6: 68da ldr r2, [r3, #12] + 8001fe8: 4910 ldr r1, [pc, #64] ; (800202c ) + 8001fea: 69bb ldr r3, [r7, #24] + 8001fec: 4313 orrs r3, r2 + 8001fee: 60cb str r3, [r1, #12] + 8001ff0: e025 b.n 800203e + 8001ff2: bf00 nop + 8001ff4: 10320000 .word 0x10320000 + 8001ff8: 10310000 .word 0x10310000 + 8001ffc: 10220000 .word 0x10220000 + 8002000: 10210000 .word 0x10210000 + 8002004: 10120000 .word 0x10120000 + 8002008: 10110000 .word 0x10110000 + 800200c: 40021000 .word 0x40021000 + 8002010: 40010000 .word 0x40010000 + 8002014: 40010800 .word 0x40010800 + 8002018: 40010c00 .word 0x40010c00 + 800201c: 40011000 .word 0x40011000 + 8002020: 40011400 .word 0x40011400 + 8002024: 40011800 .word 0x40011800 + 8002028: 40011c00 .word 0x40011c00 + 800202c: 40010400 .word 0x40010400 } else { CLEAR_BIT(EXTI->FTSR, iocurrent); - 8001f0c: 4b0b ldr r3, [pc, #44] ; (8001f3c ) - 8001f0e: 68da ldr r2, [r3, #12] - 8001f10: 69bb ldr r3, [r7, #24] - 8001f12: 43db mvns r3, r3 - 8001f14: 4909 ldr r1, [pc, #36] ; (8001f3c ) - 8001f16: 4013 ands r3, r2 - 8001f18: 60cb str r3, [r1, #12] + 8002030: 4b0b ldr r3, [pc, #44] ; (8002060 ) + 8002032: 68da ldr r2, [r3, #12] + 8002034: 69bb ldr r3, [r7, #24] + 8002036: 43db mvns r3, r3 + 8002038: 4909 ldr r1, [pc, #36] ; (8002060 ) + 800203a: 4013 ands r3, r2 + 800203c: 60cb str r3, [r1, #12] } } } position++; - 8001f1a: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001f1c: 3301 adds r3, #1 - 8001f1e: 627b str r3, [r7, #36] ; 0x24 + 800203e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002040: 3301 adds r3, #1 + 8002042: 627b str r3, [r7, #36] ; 0x24 while (((GPIO_Init->Pin) >> position) != 0x00u) - 8001f20: 683b ldr r3, [r7, #0] - 8001f22: 681a ldr r2, [r3, #0] - 8001f24: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001f26: fa22 f303 lsr.w r3, r2, r3 - 8001f2a: 2b00 cmp r3, #0 - 8001f2c: f47f ae7e bne.w 8001c2c + 8002044: 683b ldr r3, [r7, #0] + 8002046: 681a ldr r2, [r3, #0] + 8002048: 6a7b ldr r3, [r7, #36] ; 0x24 + 800204a: fa22 f303 lsr.w r3, r2, r3 + 800204e: 2b00 cmp r3, #0 + 8002050: f47f ae7e bne.w 8001d50 } } - 8001f30: bf00 nop - 8001f32: bf00 nop - 8001f34: 372c adds r7, #44 ; 0x2c - 8001f36: 46bd mov sp, r7 - 8001f38: bc80 pop {r7} - 8001f3a: 4770 bx lr - 8001f3c: 40010400 .word 0x40010400 + 8002054: bf00 nop + 8002056: bf00 nop + 8002058: 372c adds r7, #44 ; 0x2c + 800205a: 46bd mov sp, r7 + 800205c: bc80 pop {r7} + 800205e: 4770 bx lr + 8002060: 40010400 .word 0x40010400 -08001f40 : +08002064 : * @param GPIO_Pin: specifies the port bit to read. * This parameter can be GPIO_PIN_x where x can be (0..15). * @retval The input port pin value. */ GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin) { - 8001f40: b480 push {r7} - 8001f42: b085 sub sp, #20 - 8001f44: af00 add r7, sp, #0 - 8001f46: 6078 str r0, [r7, #4] - 8001f48: 460b mov r3, r1 - 8001f4a: 807b strh r3, [r7, #2] + 8002064: b480 push {r7} + 8002066: b085 sub sp, #20 + 8002068: af00 add r7, sp, #0 + 800206a: 6078 str r0, [r7, #4] + 800206c: 460b mov r3, r1 + 800206e: 807b strh r3, [r7, #2] GPIO_PinState bitstatus; /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); if ((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) - 8001f4c: 687b ldr r3, [r7, #4] - 8001f4e: 689a ldr r2, [r3, #8] - 8001f50: 887b ldrh r3, [r7, #2] - 8001f52: 4013 ands r3, r2 - 8001f54: 2b00 cmp r3, #0 - 8001f56: d002 beq.n 8001f5e + 8002070: 687b ldr r3, [r7, #4] + 8002072: 689a ldr r2, [r3, #8] + 8002074: 887b ldrh r3, [r7, #2] + 8002076: 4013 ands r3, r2 + 8002078: 2b00 cmp r3, #0 + 800207a: d002 beq.n 8002082 { bitstatus = GPIO_PIN_SET; - 8001f58: 2301 movs r3, #1 - 8001f5a: 73fb strb r3, [r7, #15] - 8001f5c: e001 b.n 8001f62 + 800207c: 2301 movs r3, #1 + 800207e: 73fb strb r3, [r7, #15] + 8002080: e001 b.n 8002086 } else { bitstatus = GPIO_PIN_RESET; - 8001f5e: 2300 movs r3, #0 - 8001f60: 73fb strb r3, [r7, #15] + 8002082: 2300 movs r3, #0 + 8002084: 73fb strb r3, [r7, #15] } return bitstatus; - 8001f62: 7bfb ldrb r3, [r7, #15] + 8002086: 7bfb ldrb r3, [r7, #15] } - 8001f64: 4618 mov r0, r3 - 8001f66: 3714 adds r7, #20 - 8001f68: 46bd mov sp, r7 - 8001f6a: bc80 pop {r7} - 8001f6c: 4770 bx lr + 8002088: 4618 mov r0, r3 + 800208a: 3714 adds r7, #20 + 800208c: 46bd mov sp, r7 + 800208e: bc80 pop {r7} + 8002090: 4770 bx lr -08001f6e : +08002092 : * @arg GPIO_PIN_RESET: to clear the port pin * @arg GPIO_PIN_SET: to set the port pin * @retval None */ void HAL_GPIO_WritePin(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) { - 8001f6e: b480 push {r7} - 8001f70: b083 sub sp, #12 - 8001f72: af00 add r7, sp, #0 - 8001f74: 6078 str r0, [r7, #4] - 8001f76: 460b mov r3, r1 - 8001f78: 807b strh r3, [r7, #2] - 8001f7a: 4613 mov r3, r2 - 8001f7c: 707b strb r3, [r7, #1] + 8002092: b480 push {r7} + 8002094: b083 sub sp, #12 + 8002096: af00 add r7, sp, #0 + 8002098: 6078 str r0, [r7, #4] + 800209a: 460b mov r3, r1 + 800209c: 807b strh r3, [r7, #2] + 800209e: 4613 mov r3, r2 + 80020a0: 707b strb r3, [r7, #1] /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); assert_param(IS_GPIO_PIN_ACTION(PinState)); if (PinState != GPIO_PIN_RESET) - 8001f7e: 787b ldrb r3, [r7, #1] - 8001f80: 2b00 cmp r3, #0 - 8001f82: d003 beq.n 8001f8c + 80020a2: 787b ldrb r3, [r7, #1] + 80020a4: 2b00 cmp r3, #0 + 80020a6: d003 beq.n 80020b0 { GPIOx->BSRR = GPIO_Pin; - 8001f84: 887a ldrh r2, [r7, #2] - 8001f86: 687b ldr r3, [r7, #4] - 8001f88: 611a str r2, [r3, #16] + 80020a8: 887a ldrh r2, [r7, #2] + 80020aa: 687b ldr r3, [r7, #4] + 80020ac: 611a str r2, [r3, #16] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; } } - 8001f8a: e003 b.n 8001f94 + 80020ae: e003 b.n 80020b8 GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; - 8001f8c: 887b ldrh r3, [r7, #2] - 8001f8e: 041a lsls r2, r3, #16 - 8001f90: 687b ldr r3, [r7, #4] - 8001f92: 611a str r2, [r3, #16] + 80020b0: 887b ldrh r3, [r7, #2] + 80020b2: 041a lsls r2, r3, #16 + 80020b4: 687b ldr r3, [r7, #4] + 80020b6: 611a str r2, [r3, #16] } - 8001f94: bf00 nop - 8001f96: 370c adds r7, #12 - 8001f98: 46bd mov sp, r7 - 8001f9a: bc80 pop {r7} - 8001f9c: 4770 bx lr + 80020b8: bf00 nop + 80020ba: 370c adds r7, #12 + 80020bc: 46bd mov sp, r7 + 80020be: bc80 pop {r7} + 80020c0: 4770 bx lr ... -08001fa0 : +080020c4 : * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains * the configuration information for the specified I2C. * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c) { - 8001fa0: b580 push {r7, lr} - 8001fa2: b084 sub sp, #16 - 8001fa4: af00 add r7, sp, #0 - 8001fa6: 6078 str r0, [r7, #4] + 80020c4: b580 push {r7, lr} + 80020c6: b084 sub sp, #16 + 80020c8: af00 add r7, sp, #0 + 80020ca: 6078 str r0, [r7, #4] uint32_t freqrange; uint32_t pclk1; /* Check the I2C handle allocation */ if (hi2c == NULL) - 8001fa8: 687b ldr r3, [r7, #4] - 8001faa: 2b00 cmp r3, #0 - 8001fac: d101 bne.n 8001fb2 + 80020cc: 687b ldr r3, [r7, #4] + 80020ce: 2b00 cmp r3, #0 + 80020d0: d101 bne.n 80020d6 { return HAL_ERROR; - 8001fae: 2301 movs r3, #1 - 8001fb0: e12b b.n 800220a + 80020d2: 2301 movs r3, #1 + 80020d4: e12b b.n 800232e assert_param(IS_I2C_DUAL_ADDRESS(hi2c->Init.DualAddressMode)); assert_param(IS_I2C_OWN_ADDRESS2(hi2c->Init.OwnAddress2)); assert_param(IS_I2C_GENERAL_CALL(hi2c->Init.GeneralCallMode)); assert_param(IS_I2C_NO_STRETCH(hi2c->Init.NoStretchMode)); if (hi2c->State == HAL_I2C_STATE_RESET) - 8001fb2: 687b ldr r3, [r7, #4] - 8001fb4: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8001fb8: b2db uxtb r3, r3 - 8001fba: 2b00 cmp r3, #0 - 8001fbc: d106 bne.n 8001fcc + 80020d6: 687b ldr r3, [r7, #4] + 80020d8: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 80020dc: b2db uxtb r3, r3 + 80020de: 2b00 cmp r3, #0 + 80020e0: d106 bne.n 80020f0 { /* Allocate lock resource and initialize it */ hi2c->Lock = HAL_UNLOCKED; - 8001fbe: 687b ldr r3, [r7, #4] - 8001fc0: 2200 movs r2, #0 - 8001fc2: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80020e2: 687b ldr r3, [r7, #4] + 80020e4: 2200 movs r2, #0 + 80020e6: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Init the low level hardware : GPIO, CLOCK, NVIC */ hi2c->MspInitCallback(hi2c); #else /* Init the low level hardware : GPIO, CLOCK, NVIC */ HAL_I2C_MspInit(hi2c); - 8001fc6: 6878 ldr r0, [r7, #4] - 8001fc8: f7ff fb0a bl 80015e0 + 80020ea: 6878 ldr r0, [r7, #4] + 80020ec: f7ff fab0 bl 8001650 #endif /* USE_HAL_I2C_REGISTER_CALLBACKS */ } hi2c->State = HAL_I2C_STATE_BUSY; - 8001fcc: 687b ldr r3, [r7, #4] - 8001fce: 2224 movs r2, #36 ; 0x24 - 8001fd0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80020f0: 687b ldr r3, [r7, #4] + 80020f2: 2224 movs r2, #36 ; 0x24 + 80020f4: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Disable the selected I2C peripheral */ __HAL_I2C_DISABLE(hi2c); - 8001fd4: 687b ldr r3, [r7, #4] - 8001fd6: 681b ldr r3, [r3, #0] - 8001fd8: 681a ldr r2, [r3, #0] - 8001fda: 687b ldr r3, [r7, #4] - 8001fdc: 681b ldr r3, [r3, #0] - 8001fde: f022 0201 bic.w r2, r2, #1 - 8001fe2: 601a str r2, [r3, #0] + 80020f8: 687b ldr r3, [r7, #4] + 80020fa: 681b ldr r3, [r3, #0] + 80020fc: 681a ldr r2, [r3, #0] + 80020fe: 687b ldr r3, [r7, #4] + 8002100: 681b ldr r3, [r3, #0] + 8002102: f022 0201 bic.w r2, r2, #1 + 8002106: 601a str r2, [r3, #0] /*Reset I2C*/ hi2c->Instance->CR1 |= I2C_CR1_SWRST; - 8001fe4: 687b ldr r3, [r7, #4] - 8001fe6: 681b ldr r3, [r3, #0] - 8001fe8: 681a ldr r2, [r3, #0] - 8001fea: 687b ldr r3, [r7, #4] - 8001fec: 681b ldr r3, [r3, #0] - 8001fee: f442 4200 orr.w r2, r2, #32768 ; 0x8000 - 8001ff2: 601a str r2, [r3, #0] + 8002108: 687b ldr r3, [r7, #4] + 800210a: 681b ldr r3, [r3, #0] + 800210c: 681a ldr r2, [r3, #0] + 800210e: 687b ldr r3, [r7, #4] + 8002110: 681b ldr r3, [r3, #0] + 8002112: f442 4200 orr.w r2, r2, #32768 ; 0x8000 + 8002116: 601a str r2, [r3, #0] hi2c->Instance->CR1 &= ~I2C_CR1_SWRST; - 8001ff4: 687b ldr r3, [r7, #4] - 8001ff6: 681b ldr r3, [r3, #0] - 8001ff8: 681a ldr r2, [r3, #0] - 8001ffa: 687b ldr r3, [r7, #4] - 8001ffc: 681b ldr r3, [r3, #0] - 8001ffe: f422 4200 bic.w r2, r2, #32768 ; 0x8000 - 8002002: 601a str r2, [r3, #0] + 8002118: 687b ldr r3, [r7, #4] + 800211a: 681b ldr r3, [r3, #0] + 800211c: 681a ldr r2, [r3, #0] + 800211e: 687b ldr r3, [r7, #4] + 8002120: 681b ldr r3, [r3, #0] + 8002122: f422 4200 bic.w r2, r2, #32768 ; 0x8000 + 8002126: 601a str r2, [r3, #0] /* Get PCLK1 frequency */ pclk1 = HAL_RCC_GetPCLK1Freq(); - 8002004: f001 fba0 bl 8003748 - 8002008: 60f8 str r0, [r7, #12] + 8002128: f001 fba0 bl 800386c + 800212c: 60f8 str r0, [r7, #12] /* Check the minimum allowed PCLK1 frequency */ if (I2C_MIN_PCLK_FREQ(pclk1, hi2c->Init.ClockSpeed) == 1U) - 800200a: 687b ldr r3, [r7, #4] - 800200c: 685b ldr r3, [r3, #4] - 800200e: 4a81 ldr r2, [pc, #516] ; (8002214 ) - 8002010: 4293 cmp r3, r2 - 8002012: d807 bhi.n 8002024 - 8002014: 68fb ldr r3, [r7, #12] - 8002016: 4a80 ldr r2, [pc, #512] ; (8002218 ) - 8002018: 4293 cmp r3, r2 - 800201a: bf94 ite ls - 800201c: 2301 movls r3, #1 - 800201e: 2300 movhi r3, #0 - 8002020: b2db uxtb r3, r3 - 8002022: e006 b.n 8002032 - 8002024: 68fb ldr r3, [r7, #12] - 8002026: 4a7d ldr r2, [pc, #500] ; (800221c ) - 8002028: 4293 cmp r3, r2 - 800202a: bf94 ite ls - 800202c: 2301 movls r3, #1 - 800202e: 2300 movhi r3, #0 - 8002030: b2db uxtb r3, r3 - 8002032: 2b00 cmp r3, #0 - 8002034: d001 beq.n 800203a + 800212e: 687b ldr r3, [r7, #4] + 8002130: 685b ldr r3, [r3, #4] + 8002132: 4a81 ldr r2, [pc, #516] ; (8002338 ) + 8002134: 4293 cmp r3, r2 + 8002136: d807 bhi.n 8002148 + 8002138: 68fb ldr r3, [r7, #12] + 800213a: 4a80 ldr r2, [pc, #512] ; (800233c ) + 800213c: 4293 cmp r3, r2 + 800213e: bf94 ite ls + 8002140: 2301 movls r3, #1 + 8002142: 2300 movhi r3, #0 + 8002144: b2db uxtb r3, r3 + 8002146: e006 b.n 8002156 + 8002148: 68fb ldr r3, [r7, #12] + 800214a: 4a7d ldr r2, [pc, #500] ; (8002340 ) + 800214c: 4293 cmp r3, r2 + 800214e: bf94 ite ls + 8002150: 2301 movls r3, #1 + 8002152: 2300 movhi r3, #0 + 8002154: b2db uxtb r3, r3 + 8002156: 2b00 cmp r3, #0 + 8002158: d001 beq.n 800215e { return HAL_ERROR; - 8002036: 2301 movs r3, #1 - 8002038: e0e7 b.n 800220a + 800215a: 2301 movs r3, #1 + 800215c: e0e7 b.n 800232e } /* Calculate frequency range */ freqrange = I2C_FREQRANGE(pclk1); - 800203a: 68fb ldr r3, [r7, #12] - 800203c: 4a78 ldr r2, [pc, #480] ; (8002220 ) - 800203e: fba2 2303 umull r2, r3, r2, r3 - 8002042: 0c9b lsrs r3, r3, #18 - 8002044: 60bb str r3, [r7, #8] + 800215e: 68fb ldr r3, [r7, #12] + 8002160: 4a78 ldr r2, [pc, #480] ; (8002344 ) + 8002162: fba2 2303 umull r2, r3, r2, r3 + 8002166: 0c9b lsrs r3, r3, #18 + 8002168: 60bb str r3, [r7, #8] /*---------------------------- I2Cx CR2 Configuration ----------------------*/ /* Configure I2Cx: Frequency range */ MODIFY_REG(hi2c->Instance->CR2, I2C_CR2_FREQ, freqrange); - 8002046: 687b ldr r3, [r7, #4] - 8002048: 681b ldr r3, [r3, #0] - 800204a: 685b ldr r3, [r3, #4] - 800204c: f023 013f bic.w r1, r3, #63 ; 0x3f - 8002050: 687b ldr r3, [r7, #4] - 8002052: 681b ldr r3, [r3, #0] - 8002054: 68ba ldr r2, [r7, #8] - 8002056: 430a orrs r2, r1 - 8002058: 605a str r2, [r3, #4] + 800216a: 687b ldr r3, [r7, #4] + 800216c: 681b ldr r3, [r3, #0] + 800216e: 685b ldr r3, [r3, #4] + 8002170: f023 013f bic.w r1, r3, #63 ; 0x3f + 8002174: 687b ldr r3, [r7, #4] + 8002176: 681b ldr r3, [r3, #0] + 8002178: 68ba ldr r2, [r7, #8] + 800217a: 430a orrs r2, r1 + 800217c: 605a str r2, [r3, #4] /*---------------------------- I2Cx TRISE Configuration --------------------*/ /* Configure I2Cx: Rise Time */ MODIFY_REG(hi2c->Instance->TRISE, I2C_TRISE_TRISE, I2C_RISE_TIME(freqrange, hi2c->Init.ClockSpeed)); - 800205a: 687b ldr r3, [r7, #4] - 800205c: 681b ldr r3, [r3, #0] - 800205e: 6a1b ldr r3, [r3, #32] - 8002060: f023 013f bic.w r1, r3, #63 ; 0x3f - 8002064: 687b ldr r3, [r7, #4] - 8002066: 685b ldr r3, [r3, #4] - 8002068: 4a6a ldr r2, [pc, #424] ; (8002214 ) - 800206a: 4293 cmp r3, r2 - 800206c: d802 bhi.n 8002074 - 800206e: 68bb ldr r3, [r7, #8] - 8002070: 3301 adds r3, #1 - 8002072: e009 b.n 8002088 - 8002074: 68bb ldr r3, [r7, #8] - 8002076: f44f 7296 mov.w r2, #300 ; 0x12c - 800207a: fb02 f303 mul.w r3, r2, r3 - 800207e: 4a69 ldr r2, [pc, #420] ; (8002224 ) - 8002080: fba2 2303 umull r2, r3, r2, r3 - 8002084: 099b lsrs r3, r3, #6 - 8002086: 3301 adds r3, #1 - 8002088: 687a ldr r2, [r7, #4] - 800208a: 6812 ldr r2, [r2, #0] - 800208c: 430b orrs r3, r1 - 800208e: 6213 str r3, [r2, #32] + 800217e: 687b ldr r3, [r7, #4] + 8002180: 681b ldr r3, [r3, #0] + 8002182: 6a1b ldr r3, [r3, #32] + 8002184: f023 013f bic.w r1, r3, #63 ; 0x3f + 8002188: 687b ldr r3, [r7, #4] + 800218a: 685b ldr r3, [r3, #4] + 800218c: 4a6a ldr r2, [pc, #424] ; (8002338 ) + 800218e: 4293 cmp r3, r2 + 8002190: d802 bhi.n 8002198 + 8002192: 68bb ldr r3, [r7, #8] + 8002194: 3301 adds r3, #1 + 8002196: e009 b.n 80021ac + 8002198: 68bb ldr r3, [r7, #8] + 800219a: f44f 7296 mov.w r2, #300 ; 0x12c + 800219e: fb02 f303 mul.w r3, r2, r3 + 80021a2: 4a69 ldr r2, [pc, #420] ; (8002348 ) + 80021a4: fba2 2303 umull r2, r3, r2, r3 + 80021a8: 099b lsrs r3, r3, #6 + 80021aa: 3301 adds r3, #1 + 80021ac: 687a ldr r2, [r7, #4] + 80021ae: 6812 ldr r2, [r2, #0] + 80021b0: 430b orrs r3, r1 + 80021b2: 6213 str r3, [r2, #32] /*---------------------------- I2Cx CCR Configuration ----------------------*/ /* Configure I2Cx: Speed */ MODIFY_REG(hi2c->Instance->CCR, (I2C_CCR_FS | I2C_CCR_DUTY | I2C_CCR_CCR), I2C_SPEED(pclk1, hi2c->Init.ClockSpeed, hi2c->Init.DutyCycle)); - 8002090: 687b ldr r3, [r7, #4] - 8002092: 681b ldr r3, [r3, #0] - 8002094: 69db ldr r3, [r3, #28] - 8002096: f423 424f bic.w r2, r3, #52992 ; 0xcf00 - 800209a: f022 02ff bic.w r2, r2, #255 ; 0xff - 800209e: 687b ldr r3, [r7, #4] - 80020a0: 685b ldr r3, [r3, #4] - 80020a2: 495c ldr r1, [pc, #368] ; (8002214 ) - 80020a4: 428b cmp r3, r1 - 80020a6: d819 bhi.n 80020dc - 80020a8: 68fb ldr r3, [r7, #12] - 80020aa: 1e59 subs r1, r3, #1 - 80020ac: 687b ldr r3, [r7, #4] - 80020ae: 685b ldr r3, [r3, #4] - 80020b0: 005b lsls r3, r3, #1 - 80020b2: fbb1 f3f3 udiv r3, r1, r3 - 80020b6: 1c59 adds r1, r3, #1 - 80020b8: f640 73fc movw r3, #4092 ; 0xffc - 80020bc: 400b ands r3, r1 - 80020be: 2b00 cmp r3, #0 - 80020c0: d00a beq.n 80020d8 - 80020c2: 68fb ldr r3, [r7, #12] - 80020c4: 1e59 subs r1, r3, #1 - 80020c6: 687b ldr r3, [r7, #4] - 80020c8: 685b ldr r3, [r3, #4] - 80020ca: 005b lsls r3, r3, #1 - 80020cc: fbb1 f3f3 udiv r3, r1, r3 - 80020d0: 3301 adds r3, #1 - 80020d2: f3c3 030b ubfx r3, r3, #0, #12 - 80020d6: e051 b.n 800217c - 80020d8: 2304 movs r3, #4 - 80020da: e04f b.n 800217c - 80020dc: 687b ldr r3, [r7, #4] - 80020de: 689b ldr r3, [r3, #8] - 80020e0: 2b00 cmp r3, #0 - 80020e2: d111 bne.n 8002108 - 80020e4: 68fb ldr r3, [r7, #12] - 80020e6: 1e58 subs r0, r3, #1 - 80020e8: 687b ldr r3, [r7, #4] - 80020ea: 6859 ldr r1, [r3, #4] - 80020ec: 460b mov r3, r1 - 80020ee: 005b lsls r3, r3, #1 - 80020f0: 440b add r3, r1 - 80020f2: fbb0 f3f3 udiv r3, r0, r3 - 80020f6: 3301 adds r3, #1 - 80020f8: f3c3 030b ubfx r3, r3, #0, #12 - 80020fc: 2b00 cmp r3, #0 - 80020fe: bf0c ite eq - 8002100: 2301 moveq r3, #1 - 8002102: 2300 movne r3, #0 - 8002104: b2db uxtb r3, r3 - 8002106: e012 b.n 800212e - 8002108: 68fb ldr r3, [r7, #12] - 800210a: 1e58 subs r0, r3, #1 - 800210c: 687b ldr r3, [r7, #4] - 800210e: 6859 ldr r1, [r3, #4] - 8002110: 460b mov r3, r1 - 8002112: 009b lsls r3, r3, #2 - 8002114: 440b add r3, r1 - 8002116: 0099 lsls r1, r3, #2 - 8002118: 440b add r3, r1 - 800211a: fbb0 f3f3 udiv r3, r0, r3 - 800211e: 3301 adds r3, #1 - 8002120: f3c3 030b ubfx r3, r3, #0, #12 - 8002124: 2b00 cmp r3, #0 - 8002126: bf0c ite eq - 8002128: 2301 moveq r3, #1 - 800212a: 2300 movne r3, #0 - 800212c: b2db uxtb r3, r3 - 800212e: 2b00 cmp r3, #0 - 8002130: d001 beq.n 8002136 - 8002132: 2301 movs r3, #1 - 8002134: e022 b.n 800217c - 8002136: 687b ldr r3, [r7, #4] - 8002138: 689b ldr r3, [r3, #8] - 800213a: 2b00 cmp r3, #0 - 800213c: d10e bne.n 800215c - 800213e: 68fb ldr r3, [r7, #12] - 8002140: 1e58 subs r0, r3, #1 - 8002142: 687b ldr r3, [r7, #4] - 8002144: 6859 ldr r1, [r3, #4] - 8002146: 460b mov r3, r1 - 8002148: 005b lsls r3, r3, #1 - 800214a: 440b add r3, r1 - 800214c: fbb0 f3f3 udiv r3, r0, r3 - 8002150: 3301 adds r3, #1 - 8002152: f3c3 030b ubfx r3, r3, #0, #12 - 8002156: f443 4300 orr.w r3, r3, #32768 ; 0x8000 - 800215a: e00f b.n 800217c - 800215c: 68fb ldr r3, [r7, #12] - 800215e: 1e58 subs r0, r3, #1 - 8002160: 687b ldr r3, [r7, #4] - 8002162: 6859 ldr r1, [r3, #4] - 8002164: 460b mov r3, r1 - 8002166: 009b lsls r3, r3, #2 - 8002168: 440b add r3, r1 - 800216a: 0099 lsls r1, r3, #2 - 800216c: 440b add r3, r1 - 800216e: fbb0 f3f3 udiv r3, r0, r3 - 8002172: 3301 adds r3, #1 - 8002174: f3c3 030b ubfx r3, r3, #0, #12 - 8002178: f443 4340 orr.w r3, r3, #49152 ; 0xc000 - 800217c: 6879 ldr r1, [r7, #4] - 800217e: 6809 ldr r1, [r1, #0] - 8002180: 4313 orrs r3, r2 - 8002182: 61cb str r3, [r1, #28] + 80021b4: 687b ldr r3, [r7, #4] + 80021b6: 681b ldr r3, [r3, #0] + 80021b8: 69db ldr r3, [r3, #28] + 80021ba: f423 424f bic.w r2, r3, #52992 ; 0xcf00 + 80021be: f022 02ff bic.w r2, r2, #255 ; 0xff + 80021c2: 687b ldr r3, [r7, #4] + 80021c4: 685b ldr r3, [r3, #4] + 80021c6: 495c ldr r1, [pc, #368] ; (8002338 ) + 80021c8: 428b cmp r3, r1 + 80021ca: d819 bhi.n 8002200 + 80021cc: 68fb ldr r3, [r7, #12] + 80021ce: 1e59 subs r1, r3, #1 + 80021d0: 687b ldr r3, [r7, #4] + 80021d2: 685b ldr r3, [r3, #4] + 80021d4: 005b lsls r3, r3, #1 + 80021d6: fbb1 f3f3 udiv r3, r1, r3 + 80021da: 1c59 adds r1, r3, #1 + 80021dc: f640 73fc movw r3, #4092 ; 0xffc + 80021e0: 400b ands r3, r1 + 80021e2: 2b00 cmp r3, #0 + 80021e4: d00a beq.n 80021fc + 80021e6: 68fb ldr r3, [r7, #12] + 80021e8: 1e59 subs r1, r3, #1 + 80021ea: 687b ldr r3, [r7, #4] + 80021ec: 685b ldr r3, [r3, #4] + 80021ee: 005b lsls r3, r3, #1 + 80021f0: fbb1 f3f3 udiv r3, r1, r3 + 80021f4: 3301 adds r3, #1 + 80021f6: f3c3 030b ubfx r3, r3, #0, #12 + 80021fa: e051 b.n 80022a0 + 80021fc: 2304 movs r3, #4 + 80021fe: e04f b.n 80022a0 + 8002200: 687b ldr r3, [r7, #4] + 8002202: 689b ldr r3, [r3, #8] + 8002204: 2b00 cmp r3, #0 + 8002206: d111 bne.n 800222c + 8002208: 68fb ldr r3, [r7, #12] + 800220a: 1e58 subs r0, r3, #1 + 800220c: 687b ldr r3, [r7, #4] + 800220e: 6859 ldr r1, [r3, #4] + 8002210: 460b mov r3, r1 + 8002212: 005b lsls r3, r3, #1 + 8002214: 440b add r3, r1 + 8002216: fbb0 f3f3 udiv r3, r0, r3 + 800221a: 3301 adds r3, #1 + 800221c: f3c3 030b ubfx r3, r3, #0, #12 + 8002220: 2b00 cmp r3, #0 + 8002222: bf0c ite eq + 8002224: 2301 moveq r3, #1 + 8002226: 2300 movne r3, #0 + 8002228: b2db uxtb r3, r3 + 800222a: e012 b.n 8002252 + 800222c: 68fb ldr r3, [r7, #12] + 800222e: 1e58 subs r0, r3, #1 + 8002230: 687b ldr r3, [r7, #4] + 8002232: 6859 ldr r1, [r3, #4] + 8002234: 460b mov r3, r1 + 8002236: 009b lsls r3, r3, #2 + 8002238: 440b add r3, r1 + 800223a: 0099 lsls r1, r3, #2 + 800223c: 440b add r3, r1 + 800223e: fbb0 f3f3 udiv r3, r0, r3 + 8002242: 3301 adds r3, #1 + 8002244: f3c3 030b ubfx r3, r3, #0, #12 + 8002248: 2b00 cmp r3, #0 + 800224a: bf0c ite eq + 800224c: 2301 moveq r3, #1 + 800224e: 2300 movne r3, #0 + 8002250: b2db uxtb r3, r3 + 8002252: 2b00 cmp r3, #0 + 8002254: d001 beq.n 800225a + 8002256: 2301 movs r3, #1 + 8002258: e022 b.n 80022a0 + 800225a: 687b ldr r3, [r7, #4] + 800225c: 689b ldr r3, [r3, #8] + 800225e: 2b00 cmp r3, #0 + 8002260: d10e bne.n 8002280 + 8002262: 68fb ldr r3, [r7, #12] + 8002264: 1e58 subs r0, r3, #1 + 8002266: 687b ldr r3, [r7, #4] + 8002268: 6859 ldr r1, [r3, #4] + 800226a: 460b mov r3, r1 + 800226c: 005b lsls r3, r3, #1 + 800226e: 440b add r3, r1 + 8002270: fbb0 f3f3 udiv r3, r0, r3 + 8002274: 3301 adds r3, #1 + 8002276: f3c3 030b ubfx r3, r3, #0, #12 + 800227a: f443 4300 orr.w r3, r3, #32768 ; 0x8000 + 800227e: e00f b.n 80022a0 + 8002280: 68fb ldr r3, [r7, #12] + 8002282: 1e58 subs r0, r3, #1 + 8002284: 687b ldr r3, [r7, #4] + 8002286: 6859 ldr r1, [r3, #4] + 8002288: 460b mov r3, r1 + 800228a: 009b lsls r3, r3, #2 + 800228c: 440b add r3, r1 + 800228e: 0099 lsls r1, r3, #2 + 8002290: 440b add r3, r1 + 8002292: fbb0 f3f3 udiv r3, r0, r3 + 8002296: 3301 adds r3, #1 + 8002298: f3c3 030b ubfx r3, r3, #0, #12 + 800229c: f443 4340 orr.w r3, r3, #49152 ; 0xc000 + 80022a0: 6879 ldr r1, [r7, #4] + 80022a2: 6809 ldr r1, [r1, #0] + 80022a4: 4313 orrs r3, r2 + 80022a6: 61cb str r3, [r1, #28] /*---------------------------- I2Cx CR1 Configuration ----------------------*/ /* Configure I2Cx: Generalcall and NoStretch mode */ MODIFY_REG(hi2c->Instance->CR1, (I2C_CR1_ENGC | I2C_CR1_NOSTRETCH), (hi2c->Init.GeneralCallMode | hi2c->Init.NoStretchMode)); - 8002184: 687b ldr r3, [r7, #4] - 8002186: 681b ldr r3, [r3, #0] - 8002188: 681b ldr r3, [r3, #0] - 800218a: f023 01c0 bic.w r1, r3, #192 ; 0xc0 - 800218e: 687b ldr r3, [r7, #4] - 8002190: 69da ldr r2, [r3, #28] - 8002192: 687b ldr r3, [r7, #4] - 8002194: 6a1b ldr r3, [r3, #32] - 8002196: 431a orrs r2, r3 - 8002198: 687b ldr r3, [r7, #4] - 800219a: 681b ldr r3, [r3, #0] - 800219c: 430a orrs r2, r1 - 800219e: 601a str r2, [r3, #0] + 80022a8: 687b ldr r3, [r7, #4] + 80022aa: 681b ldr r3, [r3, #0] + 80022ac: 681b ldr r3, [r3, #0] + 80022ae: f023 01c0 bic.w r1, r3, #192 ; 0xc0 + 80022b2: 687b ldr r3, [r7, #4] + 80022b4: 69da ldr r2, [r3, #28] + 80022b6: 687b ldr r3, [r7, #4] + 80022b8: 6a1b ldr r3, [r3, #32] + 80022ba: 431a orrs r2, r3 + 80022bc: 687b ldr r3, [r7, #4] + 80022be: 681b ldr r3, [r3, #0] + 80022c0: 430a orrs r2, r1 + 80022c2: 601a str r2, [r3, #0] /*---------------------------- I2Cx OAR1 Configuration ---------------------*/ /* Configure I2Cx: Own Address1 and addressing mode */ MODIFY_REG(hi2c->Instance->OAR1, (I2C_OAR1_ADDMODE | I2C_OAR1_ADD8_9 | I2C_OAR1_ADD1_7 | I2C_OAR1_ADD0), (hi2c->Init.AddressingMode | hi2c->Init.OwnAddress1)); - 80021a0: 687b ldr r3, [r7, #4] - 80021a2: 681b ldr r3, [r3, #0] - 80021a4: 689b ldr r3, [r3, #8] - 80021a6: f423 4303 bic.w r3, r3, #33536 ; 0x8300 - 80021aa: f023 03ff bic.w r3, r3, #255 ; 0xff - 80021ae: 687a ldr r2, [r7, #4] - 80021b0: 6911 ldr r1, [r2, #16] - 80021b2: 687a ldr r2, [r7, #4] - 80021b4: 68d2 ldr r2, [r2, #12] - 80021b6: 4311 orrs r1, r2 - 80021b8: 687a ldr r2, [r7, #4] - 80021ba: 6812 ldr r2, [r2, #0] - 80021bc: 430b orrs r3, r1 - 80021be: 6093 str r3, [r2, #8] + 80022c4: 687b ldr r3, [r7, #4] + 80022c6: 681b ldr r3, [r3, #0] + 80022c8: 689b ldr r3, [r3, #8] + 80022ca: f423 4303 bic.w r3, r3, #33536 ; 0x8300 + 80022ce: f023 03ff bic.w r3, r3, #255 ; 0xff + 80022d2: 687a ldr r2, [r7, #4] + 80022d4: 6911 ldr r1, [r2, #16] + 80022d6: 687a ldr r2, [r7, #4] + 80022d8: 68d2 ldr r2, [r2, #12] + 80022da: 4311 orrs r1, r2 + 80022dc: 687a ldr r2, [r7, #4] + 80022de: 6812 ldr r2, [r2, #0] + 80022e0: 430b orrs r3, r1 + 80022e2: 6093 str r3, [r2, #8] /*---------------------------- I2Cx OAR2 Configuration ---------------------*/ /* Configure I2Cx: Dual mode and Own Address2 */ MODIFY_REG(hi2c->Instance->OAR2, (I2C_OAR2_ENDUAL | I2C_OAR2_ADD2), (hi2c->Init.DualAddressMode | hi2c->Init.OwnAddress2)); - 80021c0: 687b ldr r3, [r7, #4] - 80021c2: 681b ldr r3, [r3, #0] - 80021c4: 68db ldr r3, [r3, #12] - 80021c6: f023 01ff bic.w r1, r3, #255 ; 0xff - 80021ca: 687b ldr r3, [r7, #4] - 80021cc: 695a ldr r2, [r3, #20] - 80021ce: 687b ldr r3, [r7, #4] - 80021d0: 699b ldr r3, [r3, #24] - 80021d2: 431a orrs r2, r3 - 80021d4: 687b ldr r3, [r7, #4] - 80021d6: 681b ldr r3, [r3, #0] - 80021d8: 430a orrs r2, r1 - 80021da: 60da str r2, [r3, #12] + 80022e4: 687b ldr r3, [r7, #4] + 80022e6: 681b ldr r3, [r3, #0] + 80022e8: 68db ldr r3, [r3, #12] + 80022ea: f023 01ff bic.w r1, r3, #255 ; 0xff + 80022ee: 687b ldr r3, [r7, #4] + 80022f0: 695a ldr r2, [r3, #20] + 80022f2: 687b ldr r3, [r7, #4] + 80022f4: 699b ldr r3, [r3, #24] + 80022f6: 431a orrs r2, r3 + 80022f8: 687b ldr r3, [r7, #4] + 80022fa: 681b ldr r3, [r3, #0] + 80022fc: 430a orrs r2, r1 + 80022fe: 60da str r2, [r3, #12] /* Enable the selected I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 80021dc: 687b ldr r3, [r7, #4] - 80021de: 681b ldr r3, [r3, #0] - 80021e0: 681a ldr r2, [r3, #0] - 80021e2: 687b ldr r3, [r7, #4] - 80021e4: 681b ldr r3, [r3, #0] - 80021e6: f042 0201 orr.w r2, r2, #1 - 80021ea: 601a str r2, [r3, #0] + 8002300: 687b ldr r3, [r7, #4] + 8002302: 681b ldr r3, [r3, #0] + 8002304: 681a ldr r2, [r3, #0] + 8002306: 687b ldr r3, [r7, #4] + 8002308: 681b ldr r3, [r3, #0] + 800230a: f042 0201 orr.w r2, r2, #1 + 800230e: 601a str r2, [r3, #0] hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 80021ec: 687b ldr r3, [r7, #4] - 80021ee: 2200 movs r2, #0 - 80021f0: 641a str r2, [r3, #64] ; 0x40 + 8002310: 687b ldr r3, [r7, #4] + 8002312: 2200 movs r2, #0 + 8002314: 641a str r2, [r3, #64] ; 0x40 hi2c->State = HAL_I2C_STATE_READY; - 80021f2: 687b ldr r3, [r7, #4] - 80021f4: 2220 movs r2, #32 - 80021f6: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002316: 687b ldr r3, [r7, #4] + 8002318: 2220 movs r2, #32 + 800231a: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->PreviousState = I2C_STATE_NONE; - 80021fa: 687b ldr r3, [r7, #4] - 80021fc: 2200 movs r2, #0 - 80021fe: 631a str r2, [r3, #48] ; 0x30 + 800231e: 687b ldr r3, [r7, #4] + 8002320: 2200 movs r2, #0 + 8002322: 631a str r2, [r3, #48] ; 0x30 hi2c->Mode = HAL_I2C_MODE_NONE; - 8002200: 687b ldr r3, [r7, #4] - 8002202: 2200 movs r2, #0 - 8002204: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002324: 687b ldr r3, [r7, #4] + 8002326: 2200 movs r2, #0 + 8002328: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 8002208: 2300 movs r3, #0 + 800232c: 2300 movs r3, #0 } - 800220a: 4618 mov r0, r3 - 800220c: 3710 adds r7, #16 - 800220e: 46bd mov sp, r7 - 8002210: bd80 pop {r7, pc} - 8002212: bf00 nop - 8002214: 000186a0 .word 0x000186a0 - 8002218: 001e847f .word 0x001e847f - 800221c: 003d08ff .word 0x003d08ff - 8002220: 431bde83 .word 0x431bde83 - 8002224: 10624dd3 .word 0x10624dd3 + 800232e: 4618 mov r0, r3 + 8002330: 3710 adds r7, #16 + 8002332: 46bd mov sp, r7 + 8002334: bd80 pop {r7, pc} + 8002336: bf00 nop + 8002338: 000186a0 .word 0x000186a0 + 800233c: 001e847f .word 0x001e847f + 8002340: 003d08ff .word 0x003d08ff + 8002344: 431bde83 .word 0x431bde83 + 8002348: 10624dd3 .word 0x10624dd3 -08002228 : +0800234c : * @param Size Amount of data to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Mem_Write(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 8002228: b580 push {r7, lr} - 800222a: b088 sub sp, #32 - 800222c: af02 add r7, sp, #8 - 800222e: 60f8 str r0, [r7, #12] - 8002230: 4608 mov r0, r1 - 8002232: 4611 mov r1, r2 - 8002234: 461a mov r2, r3 - 8002236: 4603 mov r3, r0 - 8002238: 817b strh r3, [r7, #10] - 800223a: 460b mov r3, r1 - 800223c: 813b strh r3, [r7, #8] - 800223e: 4613 mov r3, r2 - 8002240: 80fb strh r3, [r7, #6] + 800234c: b580 push {r7, lr} + 800234e: b088 sub sp, #32 + 8002350: af02 add r7, sp, #8 + 8002352: 60f8 str r0, [r7, #12] + 8002354: 4608 mov r0, r1 + 8002356: 4611 mov r1, r2 + 8002358: 461a mov r2, r3 + 800235a: 4603 mov r3, r0 + 800235c: 817b strh r3, [r7, #10] + 800235e: 460b mov r3, r1 + 8002360: 813b strh r3, [r7, #8] + 8002362: 4613 mov r3, r2 + 8002364: 80fb strh r3, [r7, #6] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 8002242: f7ff fbd7 bl 80019f4 - 8002246: 6178 str r0, [r7, #20] + 8002366: f7ff fbad bl 8001ac4 + 800236a: 6178 str r0, [r7, #20] /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 8002248: 68fb ldr r3, [r7, #12] - 800224a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 800224e: b2db uxtb r3, r3 - 8002250: 2b20 cmp r3, #32 - 8002252: f040 80d9 bne.w 8002408 + 800236c: 68fb ldr r3, [r7, #12] + 800236e: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002372: b2db uxtb r3, r3 + 8002374: 2b20 cmp r3, #32 + 8002376: f040 80d9 bne.w 800252c { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 8002256: 697b ldr r3, [r7, #20] - 8002258: 9300 str r3, [sp, #0] - 800225a: 2319 movs r3, #25 - 800225c: 2201 movs r2, #1 - 800225e: 496d ldr r1, [pc, #436] ; (8002414 ) - 8002260: 68f8 ldr r0, [r7, #12] - 8002262: f000 fcc1 bl 8002be8 - 8002266: 4603 mov r3, r0 - 8002268: 2b00 cmp r3, #0 - 800226a: d001 beq.n 8002270 + 800237a: 697b ldr r3, [r7, #20] + 800237c: 9300 str r3, [sp, #0] + 800237e: 2319 movs r3, #25 + 8002380: 2201 movs r2, #1 + 8002382: 496d ldr r1, [pc, #436] ; (8002538 ) + 8002384: 68f8 ldr r0, [r7, #12] + 8002386: f000 fcc1 bl 8002d0c + 800238a: 4603 mov r3, r0 + 800238c: 2b00 cmp r3, #0 + 800238e: d001 beq.n 8002394 { return HAL_BUSY; - 800226c: 2302 movs r3, #2 - 800226e: e0cc b.n 800240a + 8002390: 2302 movs r3, #2 + 8002392: e0cc b.n 800252e } /* Process Locked */ __HAL_LOCK(hi2c); - 8002270: 68fb ldr r3, [r7, #12] - 8002272: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002276: 2b01 cmp r3, #1 - 8002278: d101 bne.n 800227e - 800227a: 2302 movs r3, #2 - 800227c: e0c5 b.n 800240a - 800227e: 68fb ldr r3, [r7, #12] - 8002280: 2201 movs r2, #1 - 8002282: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002394: 68fb ldr r3, [r7, #12] + 8002396: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800239a: 2b01 cmp r3, #1 + 800239c: d101 bne.n 80023a2 + 800239e: 2302 movs r3, #2 + 80023a0: e0c5 b.n 800252e + 80023a2: 68fb ldr r3, [r7, #12] + 80023a4: 2201 movs r2, #1 + 80023a6: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check if the I2C is already enabled */ if ((hi2c->Instance->CR1 & I2C_CR1_PE) != I2C_CR1_PE) - 8002286: 68fb ldr r3, [r7, #12] - 8002288: 681b ldr r3, [r3, #0] - 800228a: 681b ldr r3, [r3, #0] - 800228c: f003 0301 and.w r3, r3, #1 - 8002290: 2b01 cmp r3, #1 - 8002292: d007 beq.n 80022a4 + 80023aa: 68fb ldr r3, [r7, #12] + 80023ac: 681b ldr r3, [r3, #0] + 80023ae: 681b ldr r3, [r3, #0] + 80023b0: f003 0301 and.w r3, r3, #1 + 80023b4: 2b01 cmp r3, #1 + 80023b6: d007 beq.n 80023c8 { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002294: 68fb ldr r3, [r7, #12] - 8002296: 681b ldr r3, [r3, #0] - 8002298: 681a ldr r2, [r3, #0] - 800229a: 68fb ldr r3, [r7, #12] - 800229c: 681b ldr r3, [r3, #0] - 800229e: f042 0201 orr.w r2, r2, #1 - 80022a2: 601a str r2, [r3, #0] + 80023b8: 68fb ldr r3, [r7, #12] + 80023ba: 681b ldr r3, [r3, #0] + 80023bc: 681a ldr r2, [r3, #0] + 80023be: 68fb ldr r3, [r7, #12] + 80023c0: 681b ldr r3, [r3, #0] + 80023c2: f042 0201 orr.w r2, r2, #1 + 80023c6: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 80022a4: 68fb ldr r3, [r7, #12] - 80022a6: 681b ldr r3, [r3, #0] - 80022a8: 681a ldr r2, [r3, #0] - 80022aa: 68fb ldr r3, [r7, #12] - 80022ac: 681b ldr r3, [r3, #0] - 80022ae: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 80022b2: 601a str r2, [r3, #0] + 80023c8: 68fb ldr r3, [r7, #12] + 80023ca: 681b ldr r3, [r3, #0] + 80023cc: 681a ldr r2, [r3, #0] + 80023ce: 68fb ldr r3, [r7, #12] + 80023d0: 681b ldr r3, [r3, #0] + 80023d2: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 80023d6: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_TX; - 80022b4: 68fb ldr r3, [r7, #12] - 80022b6: 2221 movs r2, #33 ; 0x21 - 80022b8: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80023d8: 68fb ldr r3, [r7, #12] + 80023da: 2221 movs r2, #33 ; 0x21 + 80023dc: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 80022bc: 68fb ldr r3, [r7, #12] - 80022be: 2240 movs r2, #64 ; 0x40 - 80022c0: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80023e0: 68fb ldr r3, [r7, #12] + 80023e2: 2240 movs r2, #64 ; 0x40 + 80023e4: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 80022c4: 68fb ldr r3, [r7, #12] - 80022c6: 2200 movs r2, #0 - 80022c8: 641a str r2, [r3, #64] ; 0x40 + 80023e8: 68fb ldr r3, [r7, #12] + 80023ea: 2200 movs r2, #0 + 80023ec: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 80022ca: 68fb ldr r3, [r7, #12] - 80022cc: 6a3a ldr r2, [r7, #32] - 80022ce: 625a str r2, [r3, #36] ; 0x24 + 80023ee: 68fb ldr r3, [r7, #12] + 80023f0: 6a3a ldr r2, [r7, #32] + 80023f2: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 80022d0: 68fb ldr r3, [r7, #12] - 80022d2: 8cba ldrh r2, [r7, #36] ; 0x24 - 80022d4: 855a strh r2, [r3, #42] ; 0x2a + 80023f4: 68fb ldr r3, [r7, #12] + 80023f6: 8cba ldrh r2, [r7, #36] ; 0x24 + 80023f8: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 80022d6: 68fb ldr r3, [r7, #12] - 80022d8: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80022da: b29a uxth r2, r3 - 80022dc: 68fb ldr r3, [r7, #12] - 80022de: 851a strh r2, [r3, #40] ; 0x28 + 80023fa: 68fb ldr r3, [r7, #12] + 80023fc: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80023fe: b29a uxth r2, r3 + 8002400: 68fb ldr r3, [r7, #12] + 8002402: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 80022e0: 68fb ldr r3, [r7, #12] - 80022e2: 4a4d ldr r2, [pc, #308] ; (8002418 ) - 80022e4: 62da str r2, [r3, #44] ; 0x2c + 8002404: 68fb ldr r3, [r7, #12] + 8002406: 4a4d ldr r2, [pc, #308] ; (800253c ) + 8002408: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 80022e6: 88f8 ldrh r0, [r7, #6] - 80022e8: 893a ldrh r2, [r7, #8] - 80022ea: 8979 ldrh r1, [r7, #10] - 80022ec: 697b ldr r3, [r7, #20] - 80022ee: 9301 str r3, [sp, #4] - 80022f0: 6abb ldr r3, [r7, #40] ; 0x28 - 80022f2: 9300 str r3, [sp, #0] - 80022f4: 4603 mov r3, r0 - 80022f6: 68f8 ldr r0, [r7, #12] - 80022f8: f000 faf8 bl 80028ec - 80022fc: 4603 mov r3, r0 - 80022fe: 2b00 cmp r3, #0 - 8002300: d052 beq.n 80023a8 + 800240a: 88f8 ldrh r0, [r7, #6] + 800240c: 893a ldrh r2, [r7, #8] + 800240e: 8979 ldrh r1, [r7, #10] + 8002410: 697b ldr r3, [r7, #20] + 8002412: 9301 str r3, [sp, #4] + 8002414: 6abb ldr r3, [r7, #40] ; 0x28 + 8002416: 9300 str r3, [sp, #0] + 8002418: 4603 mov r3, r0 + 800241a: 68f8 ldr r0, [r7, #12] + 800241c: f000 faf8 bl 8002a10 + 8002420: 4603 mov r3, r0 + 8002422: 2b00 cmp r3, #0 + 8002424: d052 beq.n 80024cc { return HAL_ERROR; - 8002302: 2301 movs r3, #1 - 8002304: e081 b.n 800240a + 8002426: 2301 movs r3, #1 + 8002428: e081 b.n 800252e } while (hi2c->XferSize > 0U) { /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 8002306: 697a ldr r2, [r7, #20] - 8002308: 6ab9 ldr r1, [r7, #40] ; 0x28 - 800230a: 68f8 ldr r0, [r7, #12] - 800230c: f000 fd42 bl 8002d94 - 8002310: 4603 mov r3, r0 - 8002312: 2b00 cmp r3, #0 - 8002314: d00d beq.n 8002332 + 800242a: 697a ldr r2, [r7, #20] + 800242c: 6ab9 ldr r1, [r7, #40] ; 0x28 + 800242e: 68f8 ldr r0, [r7, #12] + 8002430: f000 fd42 bl 8002eb8 + 8002434: 4603 mov r3, r0 + 8002436: 2b00 cmp r3, #0 + 8002438: d00d beq.n 8002456 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002316: 68fb ldr r3, [r7, #12] - 8002318: 6c1b ldr r3, [r3, #64] ; 0x40 - 800231a: 2b04 cmp r3, #4 - 800231c: d107 bne.n 800232e + 800243a: 68fb ldr r3, [r7, #12] + 800243c: 6c1b ldr r3, [r3, #64] ; 0x40 + 800243e: 2b04 cmp r3, #4 + 8002440: d107 bne.n 8002452 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800231e: 68fb ldr r3, [r7, #12] - 8002320: 681b ldr r3, [r3, #0] - 8002322: 681a ldr r2, [r3, #0] - 8002324: 68fb ldr r3, [r7, #12] - 8002326: 681b ldr r3, [r3, #0] - 8002328: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800232c: 601a str r2, [r3, #0] + 8002442: 68fb ldr r3, [r7, #12] + 8002444: 681b ldr r3, [r3, #0] + 8002446: 681a ldr r2, [r3, #0] + 8002448: 68fb ldr r3, [r7, #12] + 800244a: 681b ldr r3, [r3, #0] + 800244c: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002450: 601a str r2, [r3, #0] } return HAL_ERROR; - 800232e: 2301 movs r3, #1 - 8002330: e06b b.n 800240a + 8002452: 2301 movs r3, #1 + 8002454: e06b b.n 800252e } /* Write data to DR */ hi2c->Instance->DR = *hi2c->pBuffPtr; - 8002332: 68fb ldr r3, [r7, #12] - 8002334: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002336: 781a ldrb r2, [r3, #0] - 8002338: 68fb ldr r3, [r7, #12] - 800233a: 681b ldr r3, [r3, #0] - 800233c: 611a str r2, [r3, #16] + 8002456: 68fb ldr r3, [r7, #12] + 8002458: 6a5b ldr r3, [r3, #36] ; 0x24 + 800245a: 781a ldrb r2, [r3, #0] + 800245c: 68fb ldr r3, [r7, #12] + 800245e: 681b ldr r3, [r3, #0] + 8002460: 611a str r2, [r3, #16] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800233e: 68fb ldr r3, [r7, #12] - 8002340: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002342: 1c5a adds r2, r3, #1 - 8002344: 68fb ldr r3, [r7, #12] - 8002346: 625a str r2, [r3, #36] ; 0x24 + 8002462: 68fb ldr r3, [r7, #12] + 8002464: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002466: 1c5a adds r2, r3, #1 + 8002468: 68fb ldr r3, [r7, #12] + 800246a: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002348: 68fb ldr r3, [r7, #12] - 800234a: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800234c: 3b01 subs r3, #1 - 800234e: b29a uxth r2, r3 - 8002350: 68fb ldr r3, [r7, #12] - 8002352: 851a strh r2, [r3, #40] ; 0x28 + 800246c: 68fb ldr r3, [r7, #12] + 800246e: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002470: 3b01 subs r3, #1 + 8002472: b29a uxth r2, r3 + 8002474: 68fb ldr r3, [r7, #12] + 8002476: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002354: 68fb ldr r3, [r7, #12] - 8002356: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002358: b29b uxth r3, r3 - 800235a: 3b01 subs r3, #1 - 800235c: b29a uxth r2, r3 - 800235e: 68fb ldr r3, [r7, #12] - 8002360: 855a strh r2, [r3, #42] ; 0x2a + 8002478: 68fb ldr r3, [r7, #12] + 800247a: 8d5b ldrh r3, [r3, #42] ; 0x2a + 800247c: b29b uxth r3, r3 + 800247e: 3b01 subs r3, #1 + 8002480: b29a uxth r2, r3 + 8002482: 68fb ldr r3, [r7, #12] + 8002484: 855a strh r2, [r3, #42] ; 0x2a if ((__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) && (hi2c->XferSize != 0U)) - 8002362: 68fb ldr r3, [r7, #12] - 8002364: 681b ldr r3, [r3, #0] - 8002366: 695b ldr r3, [r3, #20] - 8002368: f003 0304 and.w r3, r3, #4 - 800236c: 2b04 cmp r3, #4 - 800236e: d11b bne.n 80023a8 - 8002370: 68fb ldr r3, [r7, #12] - 8002372: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002374: 2b00 cmp r3, #0 - 8002376: d017 beq.n 80023a8 + 8002486: 68fb ldr r3, [r7, #12] + 8002488: 681b ldr r3, [r3, #0] + 800248a: 695b ldr r3, [r3, #20] + 800248c: f003 0304 and.w r3, r3, #4 + 8002490: 2b04 cmp r3, #4 + 8002492: d11b bne.n 80024cc + 8002494: 68fb ldr r3, [r7, #12] + 8002496: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002498: 2b00 cmp r3, #0 + 800249a: d017 beq.n 80024cc { /* Write data to DR */ hi2c->Instance->DR = *hi2c->pBuffPtr; - 8002378: 68fb ldr r3, [r7, #12] - 800237a: 6a5b ldr r3, [r3, #36] ; 0x24 - 800237c: 781a ldrb r2, [r3, #0] - 800237e: 68fb ldr r3, [r7, #12] - 8002380: 681b ldr r3, [r3, #0] - 8002382: 611a str r2, [r3, #16] + 800249c: 68fb ldr r3, [r7, #12] + 800249e: 6a5b ldr r3, [r3, #36] ; 0x24 + 80024a0: 781a ldrb r2, [r3, #0] + 80024a2: 68fb ldr r3, [r7, #12] + 80024a4: 681b ldr r3, [r3, #0] + 80024a6: 611a str r2, [r3, #16] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002384: 68fb ldr r3, [r7, #12] - 8002386: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002388: 1c5a adds r2, r3, #1 - 800238a: 68fb ldr r3, [r7, #12] - 800238c: 625a str r2, [r3, #36] ; 0x24 + 80024a8: 68fb ldr r3, [r7, #12] + 80024aa: 6a5b ldr r3, [r3, #36] ; 0x24 + 80024ac: 1c5a adds r2, r3, #1 + 80024ae: 68fb ldr r3, [r7, #12] + 80024b0: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 800238e: 68fb ldr r3, [r7, #12] - 8002390: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002392: 3b01 subs r3, #1 - 8002394: b29a uxth r2, r3 - 8002396: 68fb ldr r3, [r7, #12] - 8002398: 851a strh r2, [r3, #40] ; 0x28 + 80024b2: 68fb ldr r3, [r7, #12] + 80024b4: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80024b6: 3b01 subs r3, #1 + 80024b8: b29a uxth r2, r3 + 80024ba: 68fb ldr r3, [r7, #12] + 80024bc: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800239a: 68fb ldr r3, [r7, #12] - 800239c: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800239e: b29b uxth r3, r3 - 80023a0: 3b01 subs r3, #1 - 80023a2: b29a uxth r2, r3 - 80023a4: 68fb ldr r3, [r7, #12] - 80023a6: 855a strh r2, [r3, #42] ; 0x2a + 80024be: 68fb ldr r3, [r7, #12] + 80024c0: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80024c2: b29b uxth r3, r3 + 80024c4: 3b01 subs r3, #1 + 80024c6: b29a uxth r2, r3 + 80024c8: 68fb ldr r3, [r7, #12] + 80024ca: 855a strh r2, [r3, #42] ; 0x2a while (hi2c->XferSize > 0U) - 80023a8: 68fb ldr r3, [r7, #12] - 80023aa: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80023ac: 2b00 cmp r3, #0 - 80023ae: d1aa bne.n 8002306 + 80024cc: 68fb ldr r3, [r7, #12] + 80024ce: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80024d0: 2b00 cmp r3, #0 + 80024d2: d1aa bne.n 800242a } } /* Wait until BTF flag is set */ if (I2C_WaitOnBTFFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80023b0: 697a ldr r2, [r7, #20] - 80023b2: 6ab9 ldr r1, [r7, #40] ; 0x28 - 80023b4: 68f8 ldr r0, [r7, #12] - 80023b6: f000 fd2e bl 8002e16 - 80023ba: 4603 mov r3, r0 - 80023bc: 2b00 cmp r3, #0 - 80023be: d00d beq.n 80023dc + 80024d4: 697a ldr r2, [r7, #20] + 80024d6: 6ab9 ldr r1, [r7, #40] ; 0x28 + 80024d8: 68f8 ldr r0, [r7, #12] + 80024da: f000 fd2e bl 8002f3a + 80024de: 4603 mov r3, r0 + 80024e0: 2b00 cmp r3, #0 + 80024e2: d00d beq.n 8002500 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 80023c0: 68fb ldr r3, [r7, #12] - 80023c2: 6c1b ldr r3, [r3, #64] ; 0x40 - 80023c4: 2b04 cmp r3, #4 - 80023c6: d107 bne.n 80023d8 + 80024e4: 68fb ldr r3, [r7, #12] + 80024e6: 6c1b ldr r3, [r3, #64] ; 0x40 + 80024e8: 2b04 cmp r3, #4 + 80024ea: d107 bne.n 80024fc { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80023c8: 68fb ldr r3, [r7, #12] - 80023ca: 681b ldr r3, [r3, #0] - 80023cc: 681a ldr r2, [r3, #0] - 80023ce: 68fb ldr r3, [r7, #12] - 80023d0: 681b ldr r3, [r3, #0] - 80023d2: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80023d6: 601a str r2, [r3, #0] + 80024ec: 68fb ldr r3, [r7, #12] + 80024ee: 681b ldr r3, [r3, #0] + 80024f0: 681a ldr r2, [r3, #0] + 80024f2: 68fb ldr r3, [r7, #12] + 80024f4: 681b ldr r3, [r3, #0] + 80024f6: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80024fa: 601a str r2, [r3, #0] } return HAL_ERROR; - 80023d8: 2301 movs r3, #1 - 80023da: e016 b.n 800240a + 80024fc: 2301 movs r3, #1 + 80024fe: e016 b.n 800252e } /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80023dc: 68fb ldr r3, [r7, #12] - 80023de: 681b ldr r3, [r3, #0] - 80023e0: 681a ldr r2, [r3, #0] - 80023e2: 68fb ldr r3, [r7, #12] - 80023e4: 681b ldr r3, [r3, #0] - 80023e6: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80023ea: 601a str r2, [r3, #0] + 8002500: 68fb ldr r3, [r7, #12] + 8002502: 681b ldr r3, [r3, #0] + 8002504: 681a ldr r2, [r3, #0] + 8002506: 68fb ldr r3, [r7, #12] + 8002508: 681b ldr r3, [r3, #0] + 800250a: f442 7200 orr.w r2, r2, #512 ; 0x200 + 800250e: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_READY; - 80023ec: 68fb ldr r3, [r7, #12] - 80023ee: 2220 movs r2, #32 - 80023f0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002510: 68fb ldr r3, [r7, #12] + 8002512: 2220 movs r2, #32 + 8002514: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 80023f4: 68fb ldr r3, [r7, #12] - 80023f6: 2200 movs r2, #0 - 80023f8: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002518: 68fb ldr r3, [r7, #12] + 800251a: 2200 movs r2, #0 + 800251c: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 80023fc: 68fb ldr r3, [r7, #12] - 80023fe: 2200 movs r2, #0 - 8002400: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002520: 68fb ldr r3, [r7, #12] + 8002522: 2200 movs r2, #0 + 8002524: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 8002404: 2300 movs r3, #0 - 8002406: e000 b.n 800240a + 8002528: 2300 movs r3, #0 + 800252a: e000 b.n 800252e } else { return HAL_BUSY; - 8002408: 2302 movs r3, #2 + 800252c: 2302 movs r3, #2 } } - 800240a: 4618 mov r0, r3 - 800240c: 3718 adds r7, #24 - 800240e: 46bd mov sp, r7 - 8002410: bd80 pop {r7, pc} - 8002412: bf00 nop - 8002414: 00100002 .word 0x00100002 - 8002418: ffff0000 .word 0xffff0000 + 800252e: 4618 mov r0, r3 + 8002530: 3718 adds r7, #24 + 8002532: 46bd mov sp, r7 + 8002534: bd80 pop {r7, pc} + 8002536: bf00 nop + 8002538: 00100002 .word 0x00100002 + 800253c: ffff0000 .word 0xffff0000 -0800241c : +08002540 : * @param Size Amount of data to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Mem_Read(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 800241c: b580 push {r7, lr} - 800241e: b08c sub sp, #48 ; 0x30 - 8002420: af02 add r7, sp, #8 - 8002422: 60f8 str r0, [r7, #12] - 8002424: 4608 mov r0, r1 - 8002426: 4611 mov r1, r2 - 8002428: 461a mov r2, r3 - 800242a: 4603 mov r3, r0 - 800242c: 817b strh r3, [r7, #10] - 800242e: 460b mov r3, r1 - 8002430: 813b strh r3, [r7, #8] - 8002432: 4613 mov r3, r2 - 8002434: 80fb strh r3, [r7, #6] + 8002540: b580 push {r7, lr} + 8002542: b08c sub sp, #48 ; 0x30 + 8002544: af02 add r7, sp, #8 + 8002546: 60f8 str r0, [r7, #12] + 8002548: 4608 mov r0, r1 + 800254a: 4611 mov r1, r2 + 800254c: 461a mov r2, r3 + 800254e: 4603 mov r3, r0 + 8002550: 817b strh r3, [r7, #10] + 8002552: 460b mov r3, r1 + 8002554: 813b strh r3, [r7, #8] + 8002556: 4613 mov r3, r2 + 8002558: 80fb strh r3, [r7, #6] __IO uint32_t count = 0U; - 8002436: 2300 movs r3, #0 - 8002438: 623b str r3, [r7, #32] + 800255a: 2300 movs r3, #0 + 800255c: 623b str r3, [r7, #32] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 800243a: f7ff fadb bl 80019f4 - 800243e: 6278 str r0, [r7, #36] ; 0x24 + 800255e: f7ff fab1 bl 8001ac4 + 8002562: 6278 str r0, [r7, #36] ; 0x24 /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 8002440: 68fb ldr r3, [r7, #12] - 8002442: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002446: b2db uxtb r3, r3 - 8002448: 2b20 cmp r3, #32 - 800244a: f040 8244 bne.w 80028d6 + 8002564: 68fb ldr r3, [r7, #12] + 8002566: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 800256a: b2db uxtb r3, r3 + 800256c: 2b20 cmp r3, #32 + 800256e: f040 8244 bne.w 80029fa { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 800244e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002450: 9300 str r3, [sp, #0] - 8002452: 2319 movs r3, #25 - 8002454: 2201 movs r2, #1 - 8002456: 4982 ldr r1, [pc, #520] ; (8002660 ) - 8002458: 68f8 ldr r0, [r7, #12] - 800245a: f000 fbc5 bl 8002be8 - 800245e: 4603 mov r3, r0 - 8002460: 2b00 cmp r3, #0 - 8002462: d001 beq.n 8002468 + 8002572: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002574: 9300 str r3, [sp, #0] + 8002576: 2319 movs r3, #25 + 8002578: 2201 movs r2, #1 + 800257a: 4982 ldr r1, [pc, #520] ; (8002784 ) + 800257c: 68f8 ldr r0, [r7, #12] + 800257e: f000 fbc5 bl 8002d0c + 8002582: 4603 mov r3, r0 + 8002584: 2b00 cmp r3, #0 + 8002586: d001 beq.n 800258c { return HAL_BUSY; - 8002464: 2302 movs r3, #2 - 8002466: e237 b.n 80028d8 + 8002588: 2302 movs r3, #2 + 800258a: e237 b.n 80029fc } /* Process Locked */ __HAL_LOCK(hi2c); - 8002468: 68fb ldr r3, [r7, #12] - 800246a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 800246e: 2b01 cmp r3, #1 - 8002470: d101 bne.n 8002476 - 8002472: 2302 movs r3, #2 - 8002474: e230 b.n 80028d8 - 8002476: 68fb ldr r3, [r7, #12] - 8002478: 2201 movs r2, #1 - 800247a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800258c: 68fb ldr r3, [r7, #12] + 800258e: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8002592: 2b01 cmp r3, #1 + 8002594: d101 bne.n 800259a + 8002596: 2302 movs r3, #2 + 8002598: e230 b.n 80029fc + 800259a: 68fb ldr r3, [r7, #12] + 800259c: 2201 movs r2, #1 + 800259e: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check if the I2C is already enabled */ if ((hi2c->Instance->CR1 & I2C_CR1_PE) != I2C_CR1_PE) - 800247e: 68fb ldr r3, [r7, #12] - 8002480: 681b ldr r3, [r3, #0] - 8002482: 681b ldr r3, [r3, #0] - 8002484: f003 0301 and.w r3, r3, #1 - 8002488: 2b01 cmp r3, #1 - 800248a: d007 beq.n 800249c + 80025a2: 68fb ldr r3, [r7, #12] + 80025a4: 681b ldr r3, [r3, #0] + 80025a6: 681b ldr r3, [r3, #0] + 80025a8: f003 0301 and.w r3, r3, #1 + 80025ac: 2b01 cmp r3, #1 + 80025ae: d007 beq.n 80025c0 { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 800248c: 68fb ldr r3, [r7, #12] - 800248e: 681b ldr r3, [r3, #0] - 8002490: 681a ldr r2, [r3, #0] - 8002492: 68fb ldr r3, [r7, #12] - 8002494: 681b ldr r3, [r3, #0] - 8002496: f042 0201 orr.w r2, r2, #1 - 800249a: 601a str r2, [r3, #0] + 80025b0: 68fb ldr r3, [r7, #12] + 80025b2: 681b ldr r3, [r3, #0] + 80025b4: 681a ldr r2, [r3, #0] + 80025b6: 68fb ldr r3, [r7, #12] + 80025b8: 681b ldr r3, [r3, #0] + 80025ba: f042 0201 orr.w r2, r2, #1 + 80025be: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 800249c: 68fb ldr r3, [r7, #12] - 800249e: 681b ldr r3, [r3, #0] - 80024a0: 681a ldr r2, [r3, #0] - 80024a2: 68fb ldr r3, [r7, #12] - 80024a4: 681b ldr r3, [r3, #0] - 80024a6: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 80024aa: 601a str r2, [r3, #0] + 80025c0: 68fb ldr r3, [r7, #12] + 80025c2: 681b ldr r3, [r3, #0] + 80025c4: 681a ldr r2, [r3, #0] + 80025c6: 68fb ldr r3, [r7, #12] + 80025c8: 681b ldr r3, [r3, #0] + 80025ca: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 80025ce: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_RX; - 80024ac: 68fb ldr r3, [r7, #12] - 80024ae: 2222 movs r2, #34 ; 0x22 - 80024b0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80025d0: 68fb ldr r3, [r7, #12] + 80025d2: 2222 movs r2, #34 ; 0x22 + 80025d4: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 80024b4: 68fb ldr r3, [r7, #12] - 80024b6: 2240 movs r2, #64 ; 0x40 - 80024b8: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80025d8: 68fb ldr r3, [r7, #12] + 80025da: 2240 movs r2, #64 ; 0x40 + 80025dc: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 80024bc: 68fb ldr r3, [r7, #12] - 80024be: 2200 movs r2, #0 - 80024c0: 641a str r2, [r3, #64] ; 0x40 + 80025e0: 68fb ldr r3, [r7, #12] + 80025e2: 2200 movs r2, #0 + 80025e4: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 80024c2: 68fb ldr r3, [r7, #12] - 80024c4: 6b3a ldr r2, [r7, #48] ; 0x30 - 80024c6: 625a str r2, [r3, #36] ; 0x24 + 80025e6: 68fb ldr r3, [r7, #12] + 80025e8: 6b3a ldr r2, [r7, #48] ; 0x30 + 80025ea: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 80024c8: 68fb ldr r3, [r7, #12] - 80024ca: 8eba ldrh r2, [r7, #52] ; 0x34 - 80024cc: 855a strh r2, [r3, #42] ; 0x2a + 80025ec: 68fb ldr r3, [r7, #12] + 80025ee: 8eba ldrh r2, [r7, #52] ; 0x34 + 80025f0: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 80024ce: 68fb ldr r3, [r7, #12] - 80024d0: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80024d2: b29a uxth r2, r3 - 80024d4: 68fb ldr r3, [r7, #12] - 80024d6: 851a strh r2, [r3, #40] ; 0x28 + 80025f2: 68fb ldr r3, [r7, #12] + 80025f4: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80025f6: b29a uxth r2, r3 + 80025f8: 68fb ldr r3, [r7, #12] + 80025fa: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 80024d8: 68fb ldr r3, [r7, #12] - 80024da: 4a62 ldr r2, [pc, #392] ; (8002664 ) - 80024dc: 62da str r2, [r3, #44] ; 0x2c + 80025fc: 68fb ldr r3, [r7, #12] + 80025fe: 4a62 ldr r2, [pc, #392] ; (8002788 ) + 8002600: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 80024de: 88f8 ldrh r0, [r7, #6] - 80024e0: 893a ldrh r2, [r7, #8] - 80024e2: 8979 ldrh r1, [r7, #10] - 80024e4: 6a7b ldr r3, [r7, #36] ; 0x24 - 80024e6: 9301 str r3, [sp, #4] - 80024e8: 6bbb ldr r3, [r7, #56] ; 0x38 - 80024ea: 9300 str r3, [sp, #0] - 80024ec: 4603 mov r3, r0 - 80024ee: 68f8 ldr r0, [r7, #12] - 80024f0: f000 fa92 bl 8002a18 - 80024f4: 4603 mov r3, r0 - 80024f6: 2b00 cmp r3, #0 - 80024f8: d001 beq.n 80024fe + 8002602: 88f8 ldrh r0, [r7, #6] + 8002604: 893a ldrh r2, [r7, #8] + 8002606: 8979 ldrh r1, [r7, #10] + 8002608: 6a7b ldr r3, [r7, #36] ; 0x24 + 800260a: 9301 str r3, [sp, #4] + 800260c: 6bbb ldr r3, [r7, #56] ; 0x38 + 800260e: 9300 str r3, [sp, #0] + 8002610: 4603 mov r3, r0 + 8002612: 68f8 ldr r0, [r7, #12] + 8002614: f000 fa92 bl 8002b3c + 8002618: 4603 mov r3, r0 + 800261a: 2b00 cmp r3, #0 + 800261c: d001 beq.n 8002622 { return HAL_ERROR; - 80024fa: 2301 movs r3, #1 - 80024fc: e1ec b.n 80028d8 + 800261e: 2301 movs r3, #1 + 8002620: e1ec b.n 80029fc } if (hi2c->XferSize == 0U) - 80024fe: 68fb ldr r3, [r7, #12] - 8002500: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002502: 2b00 cmp r3, #0 - 8002504: d113 bne.n 800252e + 8002622: 68fb ldr r3, [r7, #12] + 8002624: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002626: 2b00 cmp r3, #0 + 8002628: d113 bne.n 8002652 { /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002506: 2300 movs r3, #0 - 8002508: 61fb str r3, [r7, #28] - 800250a: 68fb ldr r3, [r7, #12] - 800250c: 681b ldr r3, [r3, #0] - 800250e: 695b ldr r3, [r3, #20] - 8002510: 61fb str r3, [r7, #28] - 8002512: 68fb ldr r3, [r7, #12] - 8002514: 681b ldr r3, [r3, #0] - 8002516: 699b ldr r3, [r3, #24] - 8002518: 61fb str r3, [r7, #28] - 800251a: 69fb ldr r3, [r7, #28] + 800262a: 2300 movs r3, #0 + 800262c: 61fb str r3, [r7, #28] + 800262e: 68fb ldr r3, [r7, #12] + 8002630: 681b ldr r3, [r3, #0] + 8002632: 695b ldr r3, [r3, #20] + 8002634: 61fb str r3, [r7, #28] + 8002636: 68fb ldr r3, [r7, #12] + 8002638: 681b ldr r3, [r3, #0] + 800263a: 699b ldr r3, [r3, #24] + 800263c: 61fb str r3, [r7, #28] + 800263e: 69fb ldr r3, [r7, #28] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800251c: 68fb ldr r3, [r7, #12] - 800251e: 681b ldr r3, [r3, #0] - 8002520: 681a ldr r2, [r3, #0] - 8002522: 68fb ldr r3, [r7, #12] - 8002524: 681b ldr r3, [r3, #0] - 8002526: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800252a: 601a str r2, [r3, #0] - 800252c: e1c0 b.n 80028b0 + 8002640: 68fb ldr r3, [r7, #12] + 8002642: 681b ldr r3, [r3, #0] + 8002644: 681a ldr r2, [r3, #0] + 8002646: 68fb ldr r3, [r7, #12] + 8002648: 681b ldr r3, [r3, #0] + 800264a: f442 7200 orr.w r2, r2, #512 ; 0x200 + 800264e: 601a str r2, [r3, #0] + 8002650: e1c0 b.n 80029d4 } else if (hi2c->XferSize == 1U) - 800252e: 68fb ldr r3, [r7, #12] - 8002530: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002532: 2b01 cmp r3, #1 - 8002534: d11e bne.n 8002574 + 8002652: 68fb ldr r3, [r7, #12] + 8002654: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002656: 2b01 cmp r3, #1 + 8002658: d11e bne.n 8002698 { /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002536: 68fb ldr r3, [r7, #12] - 8002538: 681b ldr r3, [r3, #0] - 800253a: 681a ldr r2, [r3, #0] - 800253c: 68fb ldr r3, [r7, #12] - 800253e: 681b ldr r3, [r3, #0] - 8002540: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 8002544: 601a str r2, [r3, #0] + 800265a: 68fb ldr r3, [r7, #12] + 800265c: 681b ldr r3, [r3, #0] + 800265e: 681a ldr r2, [r3, #0] + 8002660: 68fb ldr r3, [r7, #12] + 8002662: 681b ldr r3, [r3, #0] + 8002664: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 8002668: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 8002546: b672 cpsid i + 800266a: b672 cpsid i } - 8002548: bf00 nop + 800266c: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 800254a: 2300 movs r3, #0 - 800254c: 61bb str r3, [r7, #24] - 800254e: 68fb ldr r3, [r7, #12] - 8002550: 681b ldr r3, [r3, #0] - 8002552: 695b ldr r3, [r3, #20] - 8002554: 61bb str r3, [r7, #24] - 8002556: 68fb ldr r3, [r7, #12] - 8002558: 681b ldr r3, [r3, #0] - 800255a: 699b ldr r3, [r3, #24] - 800255c: 61bb str r3, [r7, #24] - 800255e: 69bb ldr r3, [r7, #24] + 800266e: 2300 movs r3, #0 + 8002670: 61bb str r3, [r7, #24] + 8002672: 68fb ldr r3, [r7, #12] + 8002674: 681b ldr r3, [r3, #0] + 8002676: 695b ldr r3, [r3, #20] + 8002678: 61bb str r3, [r7, #24] + 800267a: 68fb ldr r3, [r7, #12] + 800267c: 681b ldr r3, [r3, #0] + 800267e: 699b ldr r3, [r3, #24] + 8002680: 61bb str r3, [r7, #24] + 8002682: 69bb ldr r3, [r7, #24] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002560: 68fb ldr r3, [r7, #12] - 8002562: 681b ldr r3, [r3, #0] - 8002564: 681a ldr r2, [r3, #0] - 8002566: 68fb ldr r3, [r7, #12] - 8002568: 681b ldr r3, [r3, #0] - 800256a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800256e: 601a str r2, [r3, #0] + 8002684: 68fb ldr r3, [r7, #12] + 8002686: 681b ldr r3, [r3, #0] + 8002688: 681a ldr r2, [r3, #0] + 800268a: 68fb ldr r3, [r7, #12] + 800268c: 681b ldr r3, [r3, #0] + 800268e: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002692: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 8002570: b662 cpsie i + 8002694: b662 cpsie i } - 8002572: e035 b.n 80025e0 + 8002696: e035 b.n 8002704 /* Re-enable IRQs */ __enable_irq(); } else if (hi2c->XferSize == 2U) - 8002574: 68fb ldr r3, [r7, #12] - 8002576: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002578: 2b02 cmp r3, #2 - 800257a: d11e bne.n 80025ba + 8002698: 68fb ldr r3, [r7, #12] + 800269a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800269c: 2b02 cmp r3, #2 + 800269e: d11e bne.n 80026de { /* Enable Pos */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 800257c: 68fb ldr r3, [r7, #12] - 800257e: 681b ldr r3, [r3, #0] - 8002580: 681a ldr r2, [r3, #0] - 8002582: 68fb ldr r3, [r7, #12] - 8002584: 681b ldr r3, [r3, #0] - 8002586: f442 6200 orr.w r2, r2, #2048 ; 0x800 - 800258a: 601a str r2, [r3, #0] + 80026a0: 68fb ldr r3, [r7, #12] + 80026a2: 681b ldr r3, [r3, #0] + 80026a4: 681a ldr r2, [r3, #0] + 80026a6: 68fb ldr r3, [r7, #12] + 80026a8: 681b ldr r3, [r3, #0] + 80026aa: f442 6200 orr.w r2, r2, #2048 ; 0x800 + 80026ae: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 800258c: b672 cpsid i + 80026b0: b672 cpsid i } - 800258e: bf00 nop + 80026b2: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002590: 2300 movs r3, #0 - 8002592: 617b str r3, [r7, #20] - 8002594: 68fb ldr r3, [r7, #12] - 8002596: 681b ldr r3, [r3, #0] - 8002598: 695b ldr r3, [r3, #20] - 800259a: 617b str r3, [r7, #20] - 800259c: 68fb ldr r3, [r7, #12] - 800259e: 681b ldr r3, [r3, #0] - 80025a0: 699b ldr r3, [r3, #24] - 80025a2: 617b str r3, [r7, #20] - 80025a4: 697b ldr r3, [r7, #20] + 80026b4: 2300 movs r3, #0 + 80026b6: 617b str r3, [r7, #20] + 80026b8: 68fb ldr r3, [r7, #12] + 80026ba: 681b ldr r3, [r3, #0] + 80026bc: 695b ldr r3, [r3, #20] + 80026be: 617b str r3, [r7, #20] + 80026c0: 68fb ldr r3, [r7, #12] + 80026c2: 681b ldr r3, [r3, #0] + 80026c4: 699b ldr r3, [r3, #24] + 80026c6: 617b str r3, [r7, #20] + 80026c8: 697b ldr r3, [r7, #20] /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80025a6: 68fb ldr r3, [r7, #12] - 80025a8: 681b ldr r3, [r3, #0] - 80025aa: 681a ldr r2, [r3, #0] - 80025ac: 68fb ldr r3, [r7, #12] - 80025ae: 681b ldr r3, [r3, #0] - 80025b0: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 80025b4: 601a str r2, [r3, #0] + 80026ca: 68fb ldr r3, [r7, #12] + 80026cc: 681b ldr r3, [r3, #0] + 80026ce: 681a ldr r2, [r3, #0] + 80026d0: 68fb ldr r3, [r7, #12] + 80026d2: 681b ldr r3, [r3, #0] + 80026d4: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 80026d8: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 80025b6: b662 cpsie i + 80026da: b662 cpsie i } - 80025b8: e012 b.n 80025e0 + 80026dc: e012 b.n 8002704 __enable_irq(); } else { /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80025ba: 68fb ldr r3, [r7, #12] - 80025bc: 681b ldr r3, [r3, #0] - 80025be: 681a ldr r2, [r3, #0] - 80025c0: 68fb ldr r3, [r7, #12] - 80025c2: 681b ldr r3, [r3, #0] - 80025c4: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 80025c8: 601a str r2, [r3, #0] + 80026de: 68fb ldr r3, [r7, #12] + 80026e0: 681b ldr r3, [r3, #0] + 80026e2: 681a ldr r2, [r3, #0] + 80026e4: 68fb ldr r3, [r7, #12] + 80026e6: 681b ldr r3, [r3, #0] + 80026e8: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 80026ec: 601a str r2, [r3, #0] /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 80025ca: 2300 movs r3, #0 - 80025cc: 613b str r3, [r7, #16] - 80025ce: 68fb ldr r3, [r7, #12] - 80025d0: 681b ldr r3, [r3, #0] - 80025d2: 695b ldr r3, [r3, #20] - 80025d4: 613b str r3, [r7, #16] - 80025d6: 68fb ldr r3, [r7, #12] - 80025d8: 681b ldr r3, [r3, #0] - 80025da: 699b ldr r3, [r3, #24] - 80025dc: 613b str r3, [r7, #16] - 80025de: 693b ldr r3, [r7, #16] + 80026ee: 2300 movs r3, #0 + 80026f0: 613b str r3, [r7, #16] + 80026f2: 68fb ldr r3, [r7, #12] + 80026f4: 681b ldr r3, [r3, #0] + 80026f6: 695b ldr r3, [r3, #20] + 80026f8: 613b str r3, [r7, #16] + 80026fa: 68fb ldr r3, [r7, #12] + 80026fc: 681b ldr r3, [r3, #0] + 80026fe: 699b ldr r3, [r3, #24] + 8002700: 613b str r3, [r7, #16] + 8002702: 693b ldr r3, [r7, #16] } while (hi2c->XferSize > 0U) - 80025e0: e166 b.n 80028b0 + 8002704: e166 b.n 80029d4 { if (hi2c->XferSize <= 3U) - 80025e2: 68fb ldr r3, [r7, #12] - 80025e4: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80025e6: 2b03 cmp r3, #3 - 80025e8: f200 811f bhi.w 800282a + 8002706: 68fb ldr r3, [r7, #12] + 8002708: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800270a: 2b03 cmp r3, #3 + 800270c: f200 811f bhi.w 800294e { /* One byte */ if (hi2c->XferSize == 1U) - 80025ec: 68fb ldr r3, [r7, #12] - 80025ee: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80025f0: 2b01 cmp r3, #1 - 80025f2: d123 bne.n 800263c + 8002710: 68fb ldr r3, [r7, #12] + 8002712: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002714: 2b01 cmp r3, #1 + 8002716: d123 bne.n 8002760 { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80025f4: 6a7a ldr r2, [r7, #36] ; 0x24 - 80025f6: 6bb9 ldr r1, [r7, #56] ; 0x38 - 80025f8: 68f8 ldr r0, [r7, #12] - 80025fa: f000 fc4d bl 8002e98 - 80025fe: 4603 mov r3, r0 - 8002600: 2b00 cmp r3, #0 - 8002602: d001 beq.n 8002608 + 8002718: 6a7a ldr r2, [r7, #36] ; 0x24 + 800271a: 6bb9 ldr r1, [r7, #56] ; 0x38 + 800271c: 68f8 ldr r0, [r7, #12] + 800271e: f000 fc4d bl 8002fbc + 8002722: 4603 mov r3, r0 + 8002724: 2b00 cmp r3, #0 + 8002726: d001 beq.n 800272c { return HAL_ERROR; - 8002604: 2301 movs r3, #1 - 8002606: e167 b.n 80028d8 + 8002728: 2301 movs r3, #1 + 800272a: e167 b.n 80029fc } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002608: 68fb ldr r3, [r7, #12] - 800260a: 681b ldr r3, [r3, #0] - 800260c: 691a ldr r2, [r3, #16] - 800260e: 68fb ldr r3, [r7, #12] - 8002610: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002612: b2d2 uxtb r2, r2 - 8002614: 701a strb r2, [r3, #0] + 800272c: 68fb ldr r3, [r7, #12] + 800272e: 681b ldr r3, [r3, #0] + 8002730: 691a ldr r2, [r3, #16] + 8002732: 68fb ldr r3, [r7, #12] + 8002734: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002736: b2d2 uxtb r2, r2 + 8002738: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002616: 68fb ldr r3, [r7, #12] - 8002618: 6a5b ldr r3, [r3, #36] ; 0x24 - 800261a: 1c5a adds r2, r3, #1 - 800261c: 68fb ldr r3, [r7, #12] - 800261e: 625a str r2, [r3, #36] ; 0x24 + 800273a: 68fb ldr r3, [r7, #12] + 800273c: 6a5b ldr r3, [r3, #36] ; 0x24 + 800273e: 1c5a adds r2, r3, #1 + 8002740: 68fb ldr r3, [r7, #12] + 8002742: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002620: 68fb ldr r3, [r7, #12] - 8002622: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002624: 3b01 subs r3, #1 - 8002626: b29a uxth r2, r3 - 8002628: 68fb ldr r3, [r7, #12] - 800262a: 851a strh r2, [r3, #40] ; 0x28 + 8002744: 68fb ldr r3, [r7, #12] + 8002746: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002748: 3b01 subs r3, #1 + 800274a: b29a uxth r2, r3 + 800274c: 68fb ldr r3, [r7, #12] + 800274e: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800262c: 68fb ldr r3, [r7, #12] - 800262e: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002630: b29b uxth r3, r3 - 8002632: 3b01 subs r3, #1 - 8002634: b29a uxth r2, r3 - 8002636: 68fb ldr r3, [r7, #12] - 8002638: 855a strh r2, [r3, #42] ; 0x2a - 800263a: e139 b.n 80028b0 + 8002750: 68fb ldr r3, [r7, #12] + 8002752: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002754: b29b uxth r3, r3 + 8002756: 3b01 subs r3, #1 + 8002758: b29a uxth r2, r3 + 800275a: 68fb ldr r3, [r7, #12] + 800275c: 855a strh r2, [r3, #42] ; 0x2a + 800275e: e139 b.n 80029d4 } /* Two bytes */ else if (hi2c->XferSize == 2U) - 800263c: 68fb ldr r3, [r7, #12] - 800263e: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002640: 2b02 cmp r3, #2 - 8002642: d152 bne.n 80026ea + 8002760: 68fb ldr r3, [r7, #12] + 8002762: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002764: 2b02 cmp r3, #2 + 8002766: d152 bne.n 800280e { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 8002644: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002646: 9300 str r3, [sp, #0] - 8002648: 6bbb ldr r3, [r7, #56] ; 0x38 - 800264a: 2200 movs r2, #0 - 800264c: 4906 ldr r1, [pc, #24] ; (8002668 ) - 800264e: 68f8 ldr r0, [r7, #12] - 8002650: f000 faca bl 8002be8 - 8002654: 4603 mov r3, r0 - 8002656: 2b00 cmp r3, #0 - 8002658: d008 beq.n 800266c + 8002768: 6a7b ldr r3, [r7, #36] ; 0x24 + 800276a: 9300 str r3, [sp, #0] + 800276c: 6bbb ldr r3, [r7, #56] ; 0x38 + 800276e: 2200 movs r2, #0 + 8002770: 4906 ldr r1, [pc, #24] ; (800278c ) + 8002772: 68f8 ldr r0, [r7, #12] + 8002774: f000 faca bl 8002d0c + 8002778: 4603 mov r3, r0 + 800277a: 2b00 cmp r3, #0 + 800277c: d008 beq.n 8002790 { return HAL_ERROR; - 800265a: 2301 movs r3, #1 - 800265c: e13c b.n 80028d8 - 800265e: bf00 nop - 8002660: 00100002 .word 0x00100002 - 8002664: ffff0000 .word 0xffff0000 - 8002668: 00010004 .word 0x00010004 + 800277e: 2301 movs r3, #1 + 8002780: e13c b.n 80029fc + 8002782: bf00 nop + 8002784: 00100002 .word 0x00100002 + 8002788: ffff0000 .word 0xffff0000 + 800278c: 00010004 .word 0x00010004 __ASM volatile ("cpsid i" : : : "memory"); - 800266c: b672 cpsid i + 8002790: b672 cpsid i } - 800266e: bf00 nop + 8002792: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002670: 68fb ldr r3, [r7, #12] - 8002672: 681b ldr r3, [r3, #0] - 8002674: 681a ldr r2, [r3, #0] - 8002676: 68fb ldr r3, [r7, #12] - 8002678: 681b ldr r3, [r3, #0] - 800267a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800267e: 601a str r2, [r3, #0] + 8002794: 68fb ldr r3, [r7, #12] + 8002796: 681b ldr r3, [r3, #0] + 8002798: 681a ldr r2, [r3, #0] + 800279a: 68fb ldr r3, [r7, #12] + 800279c: 681b ldr r3, [r3, #0] + 800279e: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80027a2: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002680: 68fb ldr r3, [r7, #12] - 8002682: 681b ldr r3, [r3, #0] - 8002684: 691a ldr r2, [r3, #16] - 8002686: 68fb ldr r3, [r7, #12] - 8002688: 6a5b ldr r3, [r3, #36] ; 0x24 - 800268a: b2d2 uxtb r2, r2 - 800268c: 701a strb r2, [r3, #0] + 80027a4: 68fb ldr r3, [r7, #12] + 80027a6: 681b ldr r3, [r3, #0] + 80027a8: 691a ldr r2, [r3, #16] + 80027aa: 68fb ldr r3, [r7, #12] + 80027ac: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027ae: b2d2 uxtb r2, r2 + 80027b0: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800268e: 68fb ldr r3, [r7, #12] - 8002690: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002692: 1c5a adds r2, r3, #1 - 8002694: 68fb ldr r3, [r7, #12] - 8002696: 625a str r2, [r3, #36] ; 0x24 + 80027b2: 68fb ldr r3, [r7, #12] + 80027b4: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027b6: 1c5a adds r2, r3, #1 + 80027b8: 68fb ldr r3, [r7, #12] + 80027ba: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002698: 68fb ldr r3, [r7, #12] - 800269a: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800269c: 3b01 subs r3, #1 - 800269e: b29a uxth r2, r3 - 80026a0: 68fb ldr r3, [r7, #12] - 80026a2: 851a strh r2, [r3, #40] ; 0x28 + 80027bc: 68fb ldr r3, [r7, #12] + 80027be: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80027c0: 3b01 subs r3, #1 + 80027c2: b29a uxth r2, r3 + 80027c4: 68fb ldr r3, [r7, #12] + 80027c6: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80026a4: 68fb ldr r3, [r7, #12] - 80026a6: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80026a8: b29b uxth r3, r3 - 80026aa: 3b01 subs r3, #1 - 80026ac: b29a uxth r2, r3 - 80026ae: 68fb ldr r3, [r7, #12] - 80026b0: 855a strh r2, [r3, #42] ; 0x2a + 80027c8: 68fb ldr r3, [r7, #12] + 80027ca: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80027cc: b29b uxth r3, r3 + 80027ce: 3b01 subs r3, #1 + 80027d0: b29a uxth r2, r3 + 80027d2: 68fb ldr r3, [r7, #12] + 80027d4: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 80026b2: b662 cpsie i + 80027d6: b662 cpsie i } - 80026b4: bf00 nop + 80027d8: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80026b6: 68fb ldr r3, [r7, #12] - 80026b8: 681b ldr r3, [r3, #0] - 80026ba: 691a ldr r2, [r3, #16] - 80026bc: 68fb ldr r3, [r7, #12] - 80026be: 6a5b ldr r3, [r3, #36] ; 0x24 - 80026c0: b2d2 uxtb r2, r2 - 80026c2: 701a strb r2, [r3, #0] + 80027da: 68fb ldr r3, [r7, #12] + 80027dc: 681b ldr r3, [r3, #0] + 80027de: 691a ldr r2, [r3, #16] + 80027e0: 68fb ldr r3, [r7, #12] + 80027e2: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027e4: b2d2 uxtb r2, r2 + 80027e6: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80026c4: 68fb ldr r3, [r7, #12] - 80026c6: 6a5b ldr r3, [r3, #36] ; 0x24 - 80026c8: 1c5a adds r2, r3, #1 - 80026ca: 68fb ldr r3, [r7, #12] - 80026cc: 625a str r2, [r3, #36] ; 0x24 + 80027e8: 68fb ldr r3, [r7, #12] + 80027ea: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027ec: 1c5a adds r2, r3, #1 + 80027ee: 68fb ldr r3, [r7, #12] + 80027f0: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80026ce: 68fb ldr r3, [r7, #12] - 80026d0: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80026d2: 3b01 subs r3, #1 - 80026d4: b29a uxth r2, r3 - 80026d6: 68fb ldr r3, [r7, #12] - 80026d8: 851a strh r2, [r3, #40] ; 0x28 + 80027f2: 68fb ldr r3, [r7, #12] + 80027f4: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80027f6: 3b01 subs r3, #1 + 80027f8: b29a uxth r2, r3 + 80027fa: 68fb ldr r3, [r7, #12] + 80027fc: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80026da: 68fb ldr r3, [r7, #12] - 80026dc: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80026de: b29b uxth r3, r3 - 80026e0: 3b01 subs r3, #1 - 80026e2: b29a uxth r2, r3 - 80026e4: 68fb ldr r3, [r7, #12] - 80026e6: 855a strh r2, [r3, #42] ; 0x2a - 80026e8: e0e2 b.n 80028b0 + 80027fe: 68fb ldr r3, [r7, #12] + 8002800: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002802: b29b uxth r3, r3 + 8002804: 3b01 subs r3, #1 + 8002806: b29a uxth r2, r3 + 8002808: 68fb ldr r3, [r7, #12] + 800280a: 855a strh r2, [r3, #42] ; 0x2a + 800280c: e0e2 b.n 80029d4 } /* 3 Last bytes */ else { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 80026ea: 6a7b ldr r3, [r7, #36] ; 0x24 - 80026ec: 9300 str r3, [sp, #0] - 80026ee: 6bbb ldr r3, [r7, #56] ; 0x38 - 80026f0: 2200 movs r2, #0 - 80026f2: 497b ldr r1, [pc, #492] ; (80028e0 ) - 80026f4: 68f8 ldr r0, [r7, #12] - 80026f6: f000 fa77 bl 8002be8 - 80026fa: 4603 mov r3, r0 - 80026fc: 2b00 cmp r3, #0 - 80026fe: d001 beq.n 8002704 + 800280e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002810: 9300 str r3, [sp, #0] + 8002812: 6bbb ldr r3, [r7, #56] ; 0x38 + 8002814: 2200 movs r2, #0 + 8002816: 497b ldr r1, [pc, #492] ; (8002a04 ) + 8002818: 68f8 ldr r0, [r7, #12] + 800281a: f000 fa77 bl 8002d0c + 800281e: 4603 mov r3, r0 + 8002820: 2b00 cmp r3, #0 + 8002822: d001 beq.n 8002828 { return HAL_ERROR; - 8002700: 2301 movs r3, #1 - 8002702: e0e9 b.n 80028d8 + 8002824: 2301 movs r3, #1 + 8002826: e0e9 b.n 80029fc } /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002704: 68fb ldr r3, [r7, #12] - 8002706: 681b ldr r3, [r3, #0] - 8002708: 681a ldr r2, [r3, #0] - 800270a: 68fb ldr r3, [r7, #12] - 800270c: 681b ldr r3, [r3, #0] - 800270e: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 8002712: 601a str r2, [r3, #0] + 8002828: 68fb ldr r3, [r7, #12] + 800282a: 681b ldr r3, [r3, #0] + 800282c: 681a ldr r2, [r3, #0] + 800282e: 68fb ldr r3, [r7, #12] + 8002830: 681b ldr r3, [r3, #0] + 8002832: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 8002836: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 8002714: b672 cpsid i + 8002838: b672 cpsid i } - 8002716: bf00 nop + 800283a: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002718: 68fb ldr r3, [r7, #12] - 800271a: 681b ldr r3, [r3, #0] - 800271c: 691a ldr r2, [r3, #16] - 800271e: 68fb ldr r3, [r7, #12] - 8002720: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002722: b2d2 uxtb r2, r2 - 8002724: 701a strb r2, [r3, #0] + 800283c: 68fb ldr r3, [r7, #12] + 800283e: 681b ldr r3, [r3, #0] + 8002840: 691a ldr r2, [r3, #16] + 8002842: 68fb ldr r3, [r7, #12] + 8002844: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002846: b2d2 uxtb r2, r2 + 8002848: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002726: 68fb ldr r3, [r7, #12] - 8002728: 6a5b ldr r3, [r3, #36] ; 0x24 - 800272a: 1c5a adds r2, r3, #1 - 800272c: 68fb ldr r3, [r7, #12] - 800272e: 625a str r2, [r3, #36] ; 0x24 + 800284a: 68fb ldr r3, [r7, #12] + 800284c: 6a5b ldr r3, [r3, #36] ; 0x24 + 800284e: 1c5a adds r2, r3, #1 + 8002850: 68fb ldr r3, [r7, #12] + 8002852: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002730: 68fb ldr r3, [r7, #12] - 8002732: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002734: 3b01 subs r3, #1 - 8002736: b29a uxth r2, r3 - 8002738: 68fb ldr r3, [r7, #12] - 800273a: 851a strh r2, [r3, #40] ; 0x28 + 8002854: 68fb ldr r3, [r7, #12] + 8002856: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002858: 3b01 subs r3, #1 + 800285a: b29a uxth r2, r3 + 800285c: 68fb ldr r3, [r7, #12] + 800285e: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800273c: 68fb ldr r3, [r7, #12] - 800273e: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002740: b29b uxth r3, r3 - 8002742: 3b01 subs r3, #1 - 8002744: b29a uxth r2, r3 - 8002746: 68fb ldr r3, [r7, #12] - 8002748: 855a strh r2, [r3, #42] ; 0x2a + 8002860: 68fb ldr r3, [r7, #12] + 8002862: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002864: b29b uxth r3, r3 + 8002866: 3b01 subs r3, #1 + 8002868: b29a uxth r2, r3 + 800286a: 68fb ldr r3, [r7, #12] + 800286c: 855a strh r2, [r3, #42] ; 0x2a /* Wait until BTF flag is set */ count = I2C_TIMEOUT_FLAG * (SystemCoreClock / 25U / 1000U); - 800274a: 4b66 ldr r3, [pc, #408] ; (80028e4 ) - 800274c: 681b ldr r3, [r3, #0] - 800274e: 08db lsrs r3, r3, #3 - 8002750: 4a65 ldr r2, [pc, #404] ; (80028e8 ) - 8002752: fba2 2303 umull r2, r3, r2, r3 - 8002756: 0a1a lsrs r2, r3, #8 - 8002758: 4613 mov r3, r2 - 800275a: 009b lsls r3, r3, #2 - 800275c: 4413 add r3, r2 - 800275e: 00da lsls r2, r3, #3 - 8002760: 1ad3 subs r3, r2, r3 - 8002762: 623b str r3, [r7, #32] + 800286e: 4b66 ldr r3, [pc, #408] ; (8002a08 ) + 8002870: 681b ldr r3, [r3, #0] + 8002872: 08db lsrs r3, r3, #3 + 8002874: 4a65 ldr r2, [pc, #404] ; (8002a0c ) + 8002876: fba2 2303 umull r2, r3, r2, r3 + 800287a: 0a1a lsrs r2, r3, #8 + 800287c: 4613 mov r3, r2 + 800287e: 009b lsls r3, r3, #2 + 8002880: 4413 add r3, r2 + 8002882: 00da lsls r2, r3, #3 + 8002884: 1ad3 subs r3, r2, r3 + 8002886: 623b str r3, [r7, #32] do { count--; - 8002764: 6a3b ldr r3, [r7, #32] - 8002766: 3b01 subs r3, #1 - 8002768: 623b str r3, [r7, #32] + 8002888: 6a3b ldr r3, [r7, #32] + 800288a: 3b01 subs r3, #1 + 800288c: 623b str r3, [r7, #32] if (count == 0U) - 800276a: 6a3b ldr r3, [r7, #32] - 800276c: 2b00 cmp r3, #0 - 800276e: d118 bne.n 80027a2 + 800288e: 6a3b ldr r3, [r7, #32] + 8002890: 2b00 cmp r3, #0 + 8002892: d118 bne.n 80028c6 { hi2c->PreviousState = I2C_STATE_NONE; - 8002770: 68fb ldr r3, [r7, #12] - 8002772: 2200 movs r2, #0 - 8002774: 631a str r2, [r3, #48] ; 0x30 + 8002894: 68fb ldr r3, [r7, #12] + 8002896: 2200 movs r2, #0 + 8002898: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002776: 68fb ldr r3, [r7, #12] - 8002778: 2220 movs r2, #32 - 800277a: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800289a: 68fb ldr r3, [r7, #12] + 800289c: 2220 movs r2, #32 + 800289e: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 800277e: 68fb ldr r3, [r7, #12] - 8002780: 2200 movs r2, #0 - 8002782: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80028a2: 68fb ldr r3, [r7, #12] + 80028a4: 2200 movs r2, #0 + 80028a6: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002786: 68fb ldr r3, [r7, #12] - 8002788: 6c1b ldr r3, [r3, #64] ; 0x40 - 800278a: f043 0220 orr.w r2, r3, #32 - 800278e: 68fb ldr r3, [r7, #12] - 8002790: 641a str r2, [r3, #64] ; 0x40 + 80028aa: 68fb ldr r3, [r7, #12] + 80028ac: 6c1b ldr r3, [r3, #64] ; 0x40 + 80028ae: f043 0220 orr.w r2, r3, #32 + 80028b2: 68fb ldr r3, [r7, #12] + 80028b4: 641a str r2, [r3, #64] ; 0x40 __ASM volatile ("cpsie i" : : : "memory"); - 8002792: b662 cpsie i + 80028b6: b662 cpsie i } - 8002794: bf00 nop + 80028b8: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002796: 68fb ldr r3, [r7, #12] - 8002798: 2200 movs r2, #0 - 800279a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80028ba: 68fb ldr r3, [r7, #12] + 80028bc: 2200 movs r2, #0 + 80028be: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 800279e: 2301 movs r3, #1 - 80027a0: e09a b.n 80028d8 + 80028c2: 2301 movs r3, #1 + 80028c4: e09a b.n 80029fc } } while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET); - 80027a2: 68fb ldr r3, [r7, #12] - 80027a4: 681b ldr r3, [r3, #0] - 80027a6: 695b ldr r3, [r3, #20] - 80027a8: f003 0304 and.w r3, r3, #4 - 80027ac: 2b04 cmp r3, #4 - 80027ae: d1d9 bne.n 8002764 + 80028c6: 68fb ldr r3, [r7, #12] + 80028c8: 681b ldr r3, [r3, #0] + 80028ca: 695b ldr r3, [r3, #20] + 80028cc: f003 0304 and.w r3, r3, #4 + 80028d0: 2b04 cmp r3, #4 + 80028d2: d1d9 bne.n 8002888 /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80027b0: 68fb ldr r3, [r7, #12] - 80027b2: 681b ldr r3, [r3, #0] - 80027b4: 681a ldr r2, [r3, #0] - 80027b6: 68fb ldr r3, [r7, #12] - 80027b8: 681b ldr r3, [r3, #0] - 80027ba: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80027be: 601a str r2, [r3, #0] + 80028d4: 68fb ldr r3, [r7, #12] + 80028d6: 681b ldr r3, [r3, #0] + 80028d8: 681a ldr r2, [r3, #0] + 80028da: 68fb ldr r3, [r7, #12] + 80028dc: 681b ldr r3, [r3, #0] + 80028de: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80028e2: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80027c0: 68fb ldr r3, [r7, #12] - 80027c2: 681b ldr r3, [r3, #0] - 80027c4: 691a ldr r2, [r3, #16] - 80027c6: 68fb ldr r3, [r7, #12] - 80027c8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80027ca: b2d2 uxtb r2, r2 - 80027cc: 701a strb r2, [r3, #0] + 80028e4: 68fb ldr r3, [r7, #12] + 80028e6: 681b ldr r3, [r3, #0] + 80028e8: 691a ldr r2, [r3, #16] + 80028ea: 68fb ldr r3, [r7, #12] + 80028ec: 6a5b ldr r3, [r3, #36] ; 0x24 + 80028ee: b2d2 uxtb r2, r2 + 80028f0: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80027ce: 68fb ldr r3, [r7, #12] - 80027d0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80027d2: 1c5a adds r2, r3, #1 - 80027d4: 68fb ldr r3, [r7, #12] - 80027d6: 625a str r2, [r3, #36] ; 0x24 + 80028f2: 68fb ldr r3, [r7, #12] + 80028f4: 6a5b ldr r3, [r3, #36] ; 0x24 + 80028f6: 1c5a adds r2, r3, #1 + 80028f8: 68fb ldr r3, [r7, #12] + 80028fa: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80027d8: 68fb ldr r3, [r7, #12] - 80027da: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80027dc: 3b01 subs r3, #1 - 80027de: b29a uxth r2, r3 - 80027e0: 68fb ldr r3, [r7, #12] - 80027e2: 851a strh r2, [r3, #40] ; 0x28 + 80028fc: 68fb ldr r3, [r7, #12] + 80028fe: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002900: 3b01 subs r3, #1 + 8002902: b29a uxth r2, r3 + 8002904: 68fb ldr r3, [r7, #12] + 8002906: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80027e4: 68fb ldr r3, [r7, #12] - 80027e6: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80027e8: b29b uxth r3, r3 - 80027ea: 3b01 subs r3, #1 - 80027ec: b29a uxth r2, r3 - 80027ee: 68fb ldr r3, [r7, #12] - 80027f0: 855a strh r2, [r3, #42] ; 0x2a + 8002908: 68fb ldr r3, [r7, #12] + 800290a: 8d5b ldrh r3, [r3, #42] ; 0x2a + 800290c: b29b uxth r3, r3 + 800290e: 3b01 subs r3, #1 + 8002910: b29a uxth r2, r3 + 8002912: 68fb ldr r3, [r7, #12] + 8002914: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 80027f2: b662 cpsie i + 8002916: b662 cpsie i } - 80027f4: bf00 nop + 8002918: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80027f6: 68fb ldr r3, [r7, #12] - 80027f8: 681b ldr r3, [r3, #0] - 80027fa: 691a ldr r2, [r3, #16] - 80027fc: 68fb ldr r3, [r7, #12] - 80027fe: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002800: b2d2 uxtb r2, r2 - 8002802: 701a strb r2, [r3, #0] + 800291a: 68fb ldr r3, [r7, #12] + 800291c: 681b ldr r3, [r3, #0] + 800291e: 691a ldr r2, [r3, #16] + 8002920: 68fb ldr r3, [r7, #12] + 8002922: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002924: b2d2 uxtb r2, r2 + 8002926: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002804: 68fb ldr r3, [r7, #12] - 8002806: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002808: 1c5a adds r2, r3, #1 - 800280a: 68fb ldr r3, [r7, #12] - 800280c: 625a str r2, [r3, #36] ; 0x24 + 8002928: 68fb ldr r3, [r7, #12] + 800292a: 6a5b ldr r3, [r3, #36] ; 0x24 + 800292c: 1c5a adds r2, r3, #1 + 800292e: 68fb ldr r3, [r7, #12] + 8002930: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 800280e: 68fb ldr r3, [r7, #12] - 8002810: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002812: 3b01 subs r3, #1 - 8002814: b29a uxth r2, r3 - 8002816: 68fb ldr r3, [r7, #12] - 8002818: 851a strh r2, [r3, #40] ; 0x28 + 8002932: 68fb ldr r3, [r7, #12] + 8002934: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002936: 3b01 subs r3, #1 + 8002938: b29a uxth r2, r3 + 800293a: 68fb ldr r3, [r7, #12] + 800293c: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800281a: 68fb ldr r3, [r7, #12] - 800281c: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800281e: b29b uxth r3, r3 - 8002820: 3b01 subs r3, #1 - 8002822: b29a uxth r2, r3 - 8002824: 68fb ldr r3, [r7, #12] - 8002826: 855a strh r2, [r3, #42] ; 0x2a - 8002828: e042 b.n 80028b0 + 800293e: 68fb ldr r3, [r7, #12] + 8002940: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002942: b29b uxth r3, r3 + 8002944: 3b01 subs r3, #1 + 8002946: b29a uxth r2, r3 + 8002948: 68fb ldr r3, [r7, #12] + 800294a: 855a strh r2, [r3, #42] ; 0x2a + 800294c: e042 b.n 80029d4 } } else { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 800282a: 6a7a ldr r2, [r7, #36] ; 0x24 - 800282c: 6bb9 ldr r1, [r7, #56] ; 0x38 - 800282e: 68f8 ldr r0, [r7, #12] - 8002830: f000 fb32 bl 8002e98 - 8002834: 4603 mov r3, r0 - 8002836: 2b00 cmp r3, #0 - 8002838: d001 beq.n 800283e + 800294e: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002950: 6bb9 ldr r1, [r7, #56] ; 0x38 + 8002952: 68f8 ldr r0, [r7, #12] + 8002954: f000 fb32 bl 8002fbc + 8002958: 4603 mov r3, r0 + 800295a: 2b00 cmp r3, #0 + 800295c: d001 beq.n 8002962 { return HAL_ERROR; - 800283a: 2301 movs r3, #1 - 800283c: e04c b.n 80028d8 + 800295e: 2301 movs r3, #1 + 8002960: e04c b.n 80029fc } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 800283e: 68fb ldr r3, [r7, #12] - 8002840: 681b ldr r3, [r3, #0] - 8002842: 691a ldr r2, [r3, #16] - 8002844: 68fb ldr r3, [r7, #12] - 8002846: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002848: b2d2 uxtb r2, r2 - 800284a: 701a strb r2, [r3, #0] + 8002962: 68fb ldr r3, [r7, #12] + 8002964: 681b ldr r3, [r3, #0] + 8002966: 691a ldr r2, [r3, #16] + 8002968: 68fb ldr r3, [r7, #12] + 800296a: 6a5b ldr r3, [r3, #36] ; 0x24 + 800296c: b2d2 uxtb r2, r2 + 800296e: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800284c: 68fb ldr r3, [r7, #12] - 800284e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002850: 1c5a adds r2, r3, #1 - 8002852: 68fb ldr r3, [r7, #12] - 8002854: 625a str r2, [r3, #36] ; 0x24 + 8002970: 68fb ldr r3, [r7, #12] + 8002972: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002974: 1c5a adds r2, r3, #1 + 8002976: 68fb ldr r3, [r7, #12] + 8002978: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002856: 68fb ldr r3, [r7, #12] - 8002858: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800285a: 3b01 subs r3, #1 - 800285c: b29a uxth r2, r3 - 800285e: 68fb ldr r3, [r7, #12] - 8002860: 851a strh r2, [r3, #40] ; 0x28 + 800297a: 68fb ldr r3, [r7, #12] + 800297c: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800297e: 3b01 subs r3, #1 + 8002980: b29a uxth r2, r3 + 8002982: 68fb ldr r3, [r7, #12] + 8002984: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002862: 68fb ldr r3, [r7, #12] - 8002864: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002866: b29b uxth r3, r3 - 8002868: 3b01 subs r3, #1 - 800286a: b29a uxth r2, r3 - 800286c: 68fb ldr r3, [r7, #12] - 800286e: 855a strh r2, [r3, #42] ; 0x2a + 8002986: 68fb ldr r3, [r7, #12] + 8002988: 8d5b ldrh r3, [r3, #42] ; 0x2a + 800298a: b29b uxth r3, r3 + 800298c: 3b01 subs r3, #1 + 800298e: b29a uxth r2, r3 + 8002990: 68fb ldr r3, [r7, #12] + 8002992: 855a strh r2, [r3, #42] ; 0x2a if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) - 8002870: 68fb ldr r3, [r7, #12] - 8002872: 681b ldr r3, [r3, #0] - 8002874: 695b ldr r3, [r3, #20] - 8002876: f003 0304 and.w r3, r3, #4 - 800287a: 2b04 cmp r3, #4 - 800287c: d118 bne.n 80028b0 + 8002994: 68fb ldr r3, [r7, #12] + 8002996: 681b ldr r3, [r3, #0] + 8002998: 695b ldr r3, [r3, #20] + 800299a: f003 0304 and.w r3, r3, #4 + 800299e: 2b04 cmp r3, #4 + 80029a0: d118 bne.n 80029d4 { /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 800287e: 68fb ldr r3, [r7, #12] - 8002880: 681b ldr r3, [r3, #0] - 8002882: 691a ldr r2, [r3, #16] - 8002884: 68fb ldr r3, [r7, #12] - 8002886: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002888: b2d2 uxtb r2, r2 - 800288a: 701a strb r2, [r3, #0] + 80029a2: 68fb ldr r3, [r7, #12] + 80029a4: 681b ldr r3, [r3, #0] + 80029a6: 691a ldr r2, [r3, #16] + 80029a8: 68fb ldr r3, [r7, #12] + 80029aa: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029ac: b2d2 uxtb r2, r2 + 80029ae: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800288c: 68fb ldr r3, [r7, #12] - 800288e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002890: 1c5a adds r2, r3, #1 - 8002892: 68fb ldr r3, [r7, #12] - 8002894: 625a str r2, [r3, #36] ; 0x24 + 80029b0: 68fb ldr r3, [r7, #12] + 80029b2: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029b4: 1c5a adds r2, r3, #1 + 80029b6: 68fb ldr r3, [r7, #12] + 80029b8: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002896: 68fb ldr r3, [r7, #12] - 8002898: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800289a: 3b01 subs r3, #1 - 800289c: b29a uxth r2, r3 - 800289e: 68fb ldr r3, [r7, #12] - 80028a0: 851a strh r2, [r3, #40] ; 0x28 + 80029ba: 68fb ldr r3, [r7, #12] + 80029bc: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80029be: 3b01 subs r3, #1 + 80029c0: b29a uxth r2, r3 + 80029c2: 68fb ldr r3, [r7, #12] + 80029c4: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80028a2: 68fb ldr r3, [r7, #12] - 80028a4: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80028a6: b29b uxth r3, r3 - 80028a8: 3b01 subs r3, #1 - 80028aa: b29a uxth r2, r3 - 80028ac: 68fb ldr r3, [r7, #12] - 80028ae: 855a strh r2, [r3, #42] ; 0x2a + 80029c6: 68fb ldr r3, [r7, #12] + 80029c8: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80029ca: b29b uxth r3, r3 + 80029cc: 3b01 subs r3, #1 + 80029ce: b29a uxth r2, r3 + 80029d0: 68fb ldr r3, [r7, #12] + 80029d2: 855a strh r2, [r3, #42] ; 0x2a while (hi2c->XferSize > 0U) - 80028b0: 68fb ldr r3, [r7, #12] - 80028b2: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80028b4: 2b00 cmp r3, #0 - 80028b6: f47f ae94 bne.w 80025e2 + 80029d4: 68fb ldr r3, [r7, #12] + 80029d6: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80029d8: 2b00 cmp r3, #0 + 80029da: f47f ae94 bne.w 8002706 } } } hi2c->State = HAL_I2C_STATE_READY; - 80028ba: 68fb ldr r3, [r7, #12] - 80028bc: 2220 movs r2, #32 - 80028be: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80029de: 68fb ldr r3, [r7, #12] + 80029e0: 2220 movs r2, #32 + 80029e2: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 80028c2: 68fb ldr r3, [r7, #12] - 80028c4: 2200 movs r2, #0 - 80028c6: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80029e6: 68fb ldr r3, [r7, #12] + 80029e8: 2200 movs r2, #0 + 80029ea: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 80028ca: 68fb ldr r3, [r7, #12] - 80028cc: 2200 movs r2, #0 - 80028ce: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80029ee: 68fb ldr r3, [r7, #12] + 80029f0: 2200 movs r2, #0 + 80029f2: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 80028d2: 2300 movs r3, #0 - 80028d4: e000 b.n 80028d8 + 80029f6: 2300 movs r3, #0 + 80029f8: e000 b.n 80029fc } else { return HAL_BUSY; - 80028d6: 2302 movs r3, #2 + 80029fa: 2302 movs r3, #2 } } - 80028d8: 4618 mov r0, r3 - 80028da: 3728 adds r7, #40 ; 0x28 - 80028dc: 46bd mov sp, r7 - 80028de: bd80 pop {r7, pc} - 80028e0: 00010004 .word 0x00010004 - 80028e4: 20000000 .word 0x20000000 - 80028e8: 14f8b589 .word 0x14f8b589 + 80029fc: 4618 mov r0, r3 + 80029fe: 3728 adds r7, #40 ; 0x28 + 8002a00: 46bd mov sp, r7 + 8002a02: bd80 pop {r7, pc} + 8002a04: 00010004 .word 0x00010004 + 8002a08: 20000000 .word 0x20000000 + 8002a0c: 14f8b589 .word 0x14f8b589 -080028ec : +08002a10 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_RequestMemoryWrite(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) { - 80028ec: b580 push {r7, lr} - 80028ee: b088 sub sp, #32 - 80028f0: af02 add r7, sp, #8 - 80028f2: 60f8 str r0, [r7, #12] - 80028f4: 4608 mov r0, r1 - 80028f6: 4611 mov r1, r2 - 80028f8: 461a mov r2, r3 - 80028fa: 4603 mov r3, r0 - 80028fc: 817b strh r3, [r7, #10] - 80028fe: 460b mov r3, r1 - 8002900: 813b strh r3, [r7, #8] - 8002902: 4613 mov r3, r2 - 8002904: 80fb strh r3, [r7, #6] + 8002a10: b580 push {r7, lr} + 8002a12: b088 sub sp, #32 + 8002a14: af02 add r7, sp, #8 + 8002a16: 60f8 str r0, [r7, #12] + 8002a18: 4608 mov r0, r1 + 8002a1a: 4611 mov r1, r2 + 8002a1c: 461a mov r2, r3 + 8002a1e: 4603 mov r3, r0 + 8002a20: 817b strh r3, [r7, #10] + 8002a22: 460b mov r3, r1 + 8002a24: 813b strh r3, [r7, #8] + 8002a26: 4613 mov r3, r2 + 8002a28: 80fb strh r3, [r7, #6] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002906: 68fb ldr r3, [r7, #12] - 8002908: 681b ldr r3, [r3, #0] - 800290a: 681a ldr r2, [r3, #0] - 800290c: 68fb ldr r3, [r7, #12] - 800290e: 681b ldr r3, [r3, #0] - 8002910: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002914: 601a str r2, [r3, #0] + 8002a2a: 68fb ldr r3, [r7, #12] + 8002a2c: 681b ldr r3, [r3, #0] + 8002a2e: 681a ldr r2, [r3, #0] + 8002a30: 68fb ldr r3, [r7, #12] + 8002a32: 681b ldr r3, [r3, #0] + 8002a34: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002a38: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002916: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002918: 9300 str r3, [sp, #0] - 800291a: 6a3b ldr r3, [r7, #32] - 800291c: 2200 movs r2, #0 - 800291e: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002922: 68f8 ldr r0, [r7, #12] - 8002924: f000 f960 bl 8002be8 - 8002928: 4603 mov r3, r0 - 800292a: 2b00 cmp r3, #0 - 800292c: d00d beq.n 800294a + 8002a3a: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002a3c: 9300 str r3, [sp, #0] + 8002a3e: 6a3b ldr r3, [r7, #32] + 8002a40: 2200 movs r2, #0 + 8002a42: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002a46: 68f8 ldr r0, [r7, #12] + 8002a48: f000 f960 bl 8002d0c + 8002a4c: 4603 mov r3, r0 + 8002a4e: 2b00 cmp r3, #0 + 8002a50: d00d beq.n 8002a6e { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 800292e: 68fb ldr r3, [r7, #12] - 8002930: 681b ldr r3, [r3, #0] - 8002932: 681b ldr r3, [r3, #0] - 8002934: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002938: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 800293c: d103 bne.n 8002946 + 8002a52: 68fb ldr r3, [r7, #12] + 8002a54: 681b ldr r3, [r3, #0] + 8002a56: 681b ldr r3, [r3, #0] + 8002a58: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002a5c: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002a60: d103 bne.n 8002a6a { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 800293e: 68fb ldr r3, [r7, #12] - 8002940: f44f 7200 mov.w r2, #512 ; 0x200 - 8002944: 641a str r2, [r3, #64] ; 0x40 + 8002a62: 68fb ldr r3, [r7, #12] + 8002a64: f44f 7200 mov.w r2, #512 ; 0x200 + 8002a68: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002946: 2303 movs r3, #3 - 8002948: e05f b.n 8002a0a + 8002a6a: 2303 movs r3, #3 + 8002a6c: e05f b.n 8002b2e } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 800294a: 897b ldrh r3, [r7, #10] - 800294c: b2db uxtb r3, r3 - 800294e: 461a mov r2, r3 - 8002950: 68fb ldr r3, [r7, #12] - 8002952: 681b ldr r3, [r3, #0] - 8002954: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002958: 611a str r2, [r3, #16] + 8002a6e: 897b ldrh r3, [r7, #10] + 8002a70: b2db uxtb r3, r3 + 8002a72: 461a mov r2, r3 + 8002a74: 68fb ldr r3, [r7, #12] + 8002a76: 681b ldr r3, [r3, #0] + 8002a78: f002 02fe and.w r2, r2, #254 ; 0xfe + 8002a7c: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 800295a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800295c: 6a3a ldr r2, [r7, #32] - 800295e: 492d ldr r1, [pc, #180] ; (8002a14 ) - 8002960: 68f8 ldr r0, [r7, #12] - 8002962: f000 f998 bl 8002c96 - 8002966: 4603 mov r3, r0 - 8002968: 2b00 cmp r3, #0 - 800296a: d001 beq.n 8002970 + 8002a7e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002a80: 6a3a ldr r2, [r7, #32] + 8002a82: 492d ldr r1, [pc, #180] ; (8002b38 ) + 8002a84: 68f8 ldr r0, [r7, #12] + 8002a86: f000 f998 bl 8002dba + 8002a8a: 4603 mov r3, r0 + 8002a8c: 2b00 cmp r3, #0 + 8002a8e: d001 beq.n 8002a94 { return HAL_ERROR; - 800296c: 2301 movs r3, #1 - 800296e: e04c b.n 8002a0a + 8002a90: 2301 movs r3, #1 + 8002a92: e04c b.n 8002b2e } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002970: 2300 movs r3, #0 - 8002972: 617b str r3, [r7, #20] - 8002974: 68fb ldr r3, [r7, #12] - 8002976: 681b ldr r3, [r3, #0] - 8002978: 695b ldr r3, [r3, #20] - 800297a: 617b str r3, [r7, #20] - 800297c: 68fb ldr r3, [r7, #12] - 800297e: 681b ldr r3, [r3, #0] - 8002980: 699b ldr r3, [r3, #24] - 8002982: 617b str r3, [r7, #20] - 8002984: 697b ldr r3, [r7, #20] + 8002a94: 2300 movs r3, #0 + 8002a96: 617b str r3, [r7, #20] + 8002a98: 68fb ldr r3, [r7, #12] + 8002a9a: 681b ldr r3, [r3, #0] + 8002a9c: 695b ldr r3, [r3, #20] + 8002a9e: 617b str r3, [r7, #20] + 8002aa0: 68fb ldr r3, [r7, #12] + 8002aa2: 681b ldr r3, [r3, #0] + 8002aa4: 699b ldr r3, [r3, #24] + 8002aa6: 617b str r3, [r7, #20] + 8002aa8: 697b ldr r3, [r7, #20] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002986: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002988: 6a39 ldr r1, [r7, #32] - 800298a: 68f8 ldr r0, [r7, #12] - 800298c: f000 fa02 bl 8002d94 - 8002990: 4603 mov r3, r0 - 8002992: 2b00 cmp r3, #0 - 8002994: d00d beq.n 80029b2 + 8002aaa: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002aac: 6a39 ldr r1, [r7, #32] + 8002aae: 68f8 ldr r0, [r7, #12] + 8002ab0: f000 fa02 bl 8002eb8 + 8002ab4: 4603 mov r3, r0 + 8002ab6: 2b00 cmp r3, #0 + 8002ab8: d00d beq.n 8002ad6 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002996: 68fb ldr r3, [r7, #12] - 8002998: 6c1b ldr r3, [r3, #64] ; 0x40 - 800299a: 2b04 cmp r3, #4 - 800299c: d107 bne.n 80029ae + 8002aba: 68fb ldr r3, [r7, #12] + 8002abc: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002abe: 2b04 cmp r3, #4 + 8002ac0: d107 bne.n 8002ad2 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800299e: 68fb ldr r3, [r7, #12] - 80029a0: 681b ldr r3, [r3, #0] - 80029a2: 681a ldr r2, [r3, #0] - 80029a4: 68fb ldr r3, [r7, #12] - 80029a6: 681b ldr r3, [r3, #0] - 80029a8: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80029ac: 601a str r2, [r3, #0] + 8002ac2: 68fb ldr r3, [r7, #12] + 8002ac4: 681b ldr r3, [r3, #0] + 8002ac6: 681a ldr r2, [r3, #0] + 8002ac8: 68fb ldr r3, [r7, #12] + 8002aca: 681b ldr r3, [r3, #0] + 8002acc: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002ad0: 601a str r2, [r3, #0] } return HAL_ERROR; - 80029ae: 2301 movs r3, #1 - 80029b0: e02b b.n 8002a0a + 8002ad2: 2301 movs r3, #1 + 8002ad4: e02b b.n 8002b2e } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 80029b2: 88fb ldrh r3, [r7, #6] - 80029b4: 2b01 cmp r3, #1 - 80029b6: d105 bne.n 80029c4 + 8002ad6: 88fb ldrh r3, [r7, #6] + 8002ad8: 2b01 cmp r3, #1 + 8002ada: d105 bne.n 8002ae8 { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 80029b8: 893b ldrh r3, [r7, #8] - 80029ba: b2da uxtb r2, r3 - 80029bc: 68fb ldr r3, [r7, #12] - 80029be: 681b ldr r3, [r3, #0] - 80029c0: 611a str r2, [r3, #16] - 80029c2: e021 b.n 8002a08 + 8002adc: 893b ldrh r3, [r7, #8] + 8002ade: b2da uxtb r2, r3 + 8002ae0: 68fb ldr r3, [r7, #12] + 8002ae2: 681b ldr r3, [r3, #0] + 8002ae4: 611a str r2, [r3, #16] + 8002ae6: e021 b.n 8002b2c } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 80029c4: 893b ldrh r3, [r7, #8] - 80029c6: 0a1b lsrs r3, r3, #8 - 80029c8: b29b uxth r3, r3 - 80029ca: b2da uxtb r2, r3 - 80029cc: 68fb ldr r3, [r7, #12] - 80029ce: 681b ldr r3, [r3, #0] - 80029d0: 611a str r2, [r3, #16] + 8002ae8: 893b ldrh r3, [r7, #8] + 8002aea: 0a1b lsrs r3, r3, #8 + 8002aec: b29b uxth r3, r3 + 8002aee: b2da uxtb r2, r3 + 8002af0: 68fb ldr r3, [r7, #12] + 8002af2: 681b ldr r3, [r3, #0] + 8002af4: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 80029d2: 6a7a ldr r2, [r7, #36] ; 0x24 - 80029d4: 6a39 ldr r1, [r7, #32] - 80029d6: 68f8 ldr r0, [r7, #12] - 80029d8: f000 f9dc bl 8002d94 - 80029dc: 4603 mov r3, r0 - 80029de: 2b00 cmp r3, #0 - 80029e0: d00d beq.n 80029fe + 8002af6: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002af8: 6a39 ldr r1, [r7, #32] + 8002afa: 68f8 ldr r0, [r7, #12] + 8002afc: f000 f9dc bl 8002eb8 + 8002b00: 4603 mov r3, r0 + 8002b02: 2b00 cmp r3, #0 + 8002b04: d00d beq.n 8002b22 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 80029e2: 68fb ldr r3, [r7, #12] - 80029e4: 6c1b ldr r3, [r3, #64] ; 0x40 - 80029e6: 2b04 cmp r3, #4 - 80029e8: d107 bne.n 80029fa + 8002b06: 68fb ldr r3, [r7, #12] + 8002b08: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002b0a: 2b04 cmp r3, #4 + 8002b0c: d107 bne.n 8002b1e { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80029ea: 68fb ldr r3, [r7, #12] - 80029ec: 681b ldr r3, [r3, #0] - 80029ee: 681a ldr r2, [r3, #0] - 80029f0: 68fb ldr r3, [r7, #12] - 80029f2: 681b ldr r3, [r3, #0] - 80029f4: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80029f8: 601a str r2, [r3, #0] + 8002b0e: 68fb ldr r3, [r7, #12] + 8002b10: 681b ldr r3, [r3, #0] + 8002b12: 681a ldr r2, [r3, #0] + 8002b14: 68fb ldr r3, [r7, #12] + 8002b16: 681b ldr r3, [r3, #0] + 8002b18: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002b1c: 601a str r2, [r3, #0] } return HAL_ERROR; - 80029fa: 2301 movs r3, #1 - 80029fc: e005 b.n 8002a0a + 8002b1e: 2301 movs r3, #1 + 8002b20: e005 b.n 8002b2e } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 80029fe: 893b ldrh r3, [r7, #8] - 8002a00: b2da uxtb r2, r3 - 8002a02: 68fb ldr r3, [r7, #12] - 8002a04: 681b ldr r3, [r3, #0] - 8002a06: 611a str r2, [r3, #16] + 8002b22: 893b ldrh r3, [r7, #8] + 8002b24: b2da uxtb r2, r3 + 8002b26: 68fb ldr r3, [r7, #12] + 8002b28: 681b ldr r3, [r3, #0] + 8002b2a: 611a str r2, [r3, #16] } return HAL_OK; - 8002a08: 2300 movs r3, #0 + 8002b2c: 2300 movs r3, #0 } - 8002a0a: 4618 mov r0, r3 - 8002a0c: 3718 adds r7, #24 - 8002a0e: 46bd mov sp, r7 - 8002a10: bd80 pop {r7, pc} - 8002a12: bf00 nop - 8002a14: 00010002 .word 0x00010002 + 8002b2e: 4618 mov r0, r3 + 8002b30: 3718 adds r7, #24 + 8002b32: 46bd mov sp, r7 + 8002b34: bd80 pop {r7, pc} + 8002b36: bf00 nop + 8002b38: 00010002 .word 0x00010002 -08002a18 : +08002b3c : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_RequestMemoryRead(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) { - 8002a18: b580 push {r7, lr} - 8002a1a: b088 sub sp, #32 - 8002a1c: af02 add r7, sp, #8 - 8002a1e: 60f8 str r0, [r7, #12] - 8002a20: 4608 mov r0, r1 - 8002a22: 4611 mov r1, r2 - 8002a24: 461a mov r2, r3 - 8002a26: 4603 mov r3, r0 - 8002a28: 817b strh r3, [r7, #10] - 8002a2a: 460b mov r3, r1 - 8002a2c: 813b strh r3, [r7, #8] - 8002a2e: 4613 mov r3, r2 - 8002a30: 80fb strh r3, [r7, #6] + 8002b3c: b580 push {r7, lr} + 8002b3e: b088 sub sp, #32 + 8002b40: af02 add r7, sp, #8 + 8002b42: 60f8 str r0, [r7, #12] + 8002b44: 4608 mov r0, r1 + 8002b46: 4611 mov r1, r2 + 8002b48: 461a mov r2, r3 + 8002b4a: 4603 mov r3, r0 + 8002b4c: 817b strh r3, [r7, #10] + 8002b4e: 460b mov r3, r1 + 8002b50: 813b strh r3, [r7, #8] + 8002b52: 4613 mov r3, r2 + 8002b54: 80fb strh r3, [r7, #6] /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002a32: 68fb ldr r3, [r7, #12] - 8002a34: 681b ldr r3, [r3, #0] - 8002a36: 681a ldr r2, [r3, #0] - 8002a38: 68fb ldr r3, [r7, #12] - 8002a3a: 681b ldr r3, [r3, #0] - 8002a3c: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 8002a40: 601a str r2, [r3, #0] + 8002b56: 68fb ldr r3, [r7, #12] + 8002b58: 681b ldr r3, [r3, #0] + 8002b5a: 681a ldr r2, [r3, #0] + 8002b5c: 68fb ldr r3, [r7, #12] + 8002b5e: 681b ldr r3, [r3, #0] + 8002b60: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 8002b64: 601a str r2, [r3, #0] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002a42: 68fb ldr r3, [r7, #12] - 8002a44: 681b ldr r3, [r3, #0] - 8002a46: 681a ldr r2, [r3, #0] - 8002a48: 68fb ldr r3, [r7, #12] - 8002a4a: 681b ldr r3, [r3, #0] - 8002a4c: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002a50: 601a str r2, [r3, #0] + 8002b66: 68fb ldr r3, [r7, #12] + 8002b68: 681b ldr r3, [r3, #0] + 8002b6a: 681a ldr r2, [r3, #0] + 8002b6c: 68fb ldr r3, [r7, #12] + 8002b6e: 681b ldr r3, [r3, #0] + 8002b70: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002b74: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002a52: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002a54: 9300 str r3, [sp, #0] - 8002a56: 6a3b ldr r3, [r7, #32] - 8002a58: 2200 movs r2, #0 - 8002a5a: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002a5e: 68f8 ldr r0, [r7, #12] - 8002a60: f000 f8c2 bl 8002be8 - 8002a64: 4603 mov r3, r0 - 8002a66: 2b00 cmp r3, #0 - 8002a68: d00d beq.n 8002a86 + 8002b76: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002b78: 9300 str r3, [sp, #0] + 8002b7a: 6a3b ldr r3, [r7, #32] + 8002b7c: 2200 movs r2, #0 + 8002b7e: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002b82: 68f8 ldr r0, [r7, #12] + 8002b84: f000 f8c2 bl 8002d0c + 8002b88: 4603 mov r3, r0 + 8002b8a: 2b00 cmp r3, #0 + 8002b8c: d00d beq.n 8002baa { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002a6a: 68fb ldr r3, [r7, #12] - 8002a6c: 681b ldr r3, [r3, #0] - 8002a6e: 681b ldr r3, [r3, #0] - 8002a70: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002a74: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002a78: d103 bne.n 8002a82 + 8002b8e: 68fb ldr r3, [r7, #12] + 8002b90: 681b ldr r3, [r3, #0] + 8002b92: 681b ldr r3, [r3, #0] + 8002b94: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002b98: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002b9c: d103 bne.n 8002ba6 { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002a7a: 68fb ldr r3, [r7, #12] - 8002a7c: f44f 7200 mov.w r2, #512 ; 0x200 - 8002a80: 641a str r2, [r3, #64] ; 0x40 + 8002b9e: 68fb ldr r3, [r7, #12] + 8002ba0: f44f 7200 mov.w r2, #512 ; 0x200 + 8002ba4: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002a82: 2303 movs r3, #3 - 8002a84: e0aa b.n 8002bdc + 8002ba6: 2303 movs r3, #3 + 8002ba8: e0aa b.n 8002d00 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 8002a86: 897b ldrh r3, [r7, #10] - 8002a88: b2db uxtb r3, r3 - 8002a8a: 461a mov r2, r3 - 8002a8c: 68fb ldr r3, [r7, #12] - 8002a8e: 681b ldr r3, [r3, #0] - 8002a90: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002a94: 611a str r2, [r3, #16] + 8002baa: 897b ldrh r3, [r7, #10] + 8002bac: b2db uxtb r3, r3 + 8002bae: 461a mov r2, r3 + 8002bb0: 68fb ldr r3, [r7, #12] + 8002bb2: 681b ldr r3, [r3, #0] + 8002bb4: f002 02fe and.w r2, r2, #254 ; 0xfe + 8002bb8: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002a96: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002a98: 6a3a ldr r2, [r7, #32] - 8002a9a: 4952 ldr r1, [pc, #328] ; (8002be4 ) - 8002a9c: 68f8 ldr r0, [r7, #12] - 8002a9e: f000 f8fa bl 8002c96 - 8002aa2: 4603 mov r3, r0 - 8002aa4: 2b00 cmp r3, #0 - 8002aa6: d001 beq.n 8002aac + 8002bba: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002bbc: 6a3a ldr r2, [r7, #32] + 8002bbe: 4952 ldr r1, [pc, #328] ; (8002d08 ) + 8002bc0: 68f8 ldr r0, [r7, #12] + 8002bc2: f000 f8fa bl 8002dba + 8002bc6: 4603 mov r3, r0 + 8002bc8: 2b00 cmp r3, #0 + 8002bca: d001 beq.n 8002bd0 { return HAL_ERROR; - 8002aa8: 2301 movs r3, #1 - 8002aaa: e097 b.n 8002bdc + 8002bcc: 2301 movs r3, #1 + 8002bce: e097 b.n 8002d00 } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002aac: 2300 movs r3, #0 - 8002aae: 617b str r3, [r7, #20] - 8002ab0: 68fb ldr r3, [r7, #12] - 8002ab2: 681b ldr r3, [r3, #0] - 8002ab4: 695b ldr r3, [r3, #20] - 8002ab6: 617b str r3, [r7, #20] - 8002ab8: 68fb ldr r3, [r7, #12] - 8002aba: 681b ldr r3, [r3, #0] - 8002abc: 699b ldr r3, [r3, #24] - 8002abe: 617b str r3, [r7, #20] - 8002ac0: 697b ldr r3, [r7, #20] + 8002bd0: 2300 movs r3, #0 + 8002bd2: 617b str r3, [r7, #20] + 8002bd4: 68fb ldr r3, [r7, #12] + 8002bd6: 681b ldr r3, [r3, #0] + 8002bd8: 695b ldr r3, [r3, #20] + 8002bda: 617b str r3, [r7, #20] + 8002bdc: 68fb ldr r3, [r7, #12] + 8002bde: 681b ldr r3, [r3, #0] + 8002be0: 699b ldr r3, [r3, #24] + 8002be2: 617b str r3, [r7, #20] + 8002be4: 697b ldr r3, [r7, #20] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002ac2: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002ac4: 6a39 ldr r1, [r7, #32] - 8002ac6: 68f8 ldr r0, [r7, #12] - 8002ac8: f000 f964 bl 8002d94 - 8002acc: 4603 mov r3, r0 - 8002ace: 2b00 cmp r3, #0 - 8002ad0: d00d beq.n 8002aee + 8002be6: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002be8: 6a39 ldr r1, [r7, #32] + 8002bea: 68f8 ldr r0, [r7, #12] + 8002bec: f000 f964 bl 8002eb8 + 8002bf0: 4603 mov r3, r0 + 8002bf2: 2b00 cmp r3, #0 + 8002bf4: d00d beq.n 8002c12 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002ad2: 68fb ldr r3, [r7, #12] - 8002ad4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002ad6: 2b04 cmp r3, #4 - 8002ad8: d107 bne.n 8002aea + 8002bf6: 68fb ldr r3, [r7, #12] + 8002bf8: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002bfa: 2b04 cmp r3, #4 + 8002bfc: d107 bne.n 8002c0e { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002ada: 68fb ldr r3, [r7, #12] - 8002adc: 681b ldr r3, [r3, #0] - 8002ade: 681a ldr r2, [r3, #0] - 8002ae0: 68fb ldr r3, [r7, #12] - 8002ae2: 681b ldr r3, [r3, #0] - 8002ae4: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002ae8: 601a str r2, [r3, #0] + 8002bfe: 68fb ldr r3, [r7, #12] + 8002c00: 681b ldr r3, [r3, #0] + 8002c02: 681a ldr r2, [r3, #0] + 8002c04: 68fb ldr r3, [r7, #12] + 8002c06: 681b ldr r3, [r3, #0] + 8002c08: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002c0c: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002aea: 2301 movs r3, #1 - 8002aec: e076 b.n 8002bdc + 8002c0e: 2301 movs r3, #1 + 8002c10: e076 b.n 8002d00 } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 8002aee: 88fb ldrh r3, [r7, #6] - 8002af0: 2b01 cmp r3, #1 - 8002af2: d105 bne.n 8002b00 + 8002c12: 88fb ldrh r3, [r7, #6] + 8002c14: 2b01 cmp r3, #1 + 8002c16: d105 bne.n 8002c24 { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002af4: 893b ldrh r3, [r7, #8] - 8002af6: b2da uxtb r2, r3 - 8002af8: 68fb ldr r3, [r7, #12] - 8002afa: 681b ldr r3, [r3, #0] - 8002afc: 611a str r2, [r3, #16] - 8002afe: e021 b.n 8002b44 + 8002c18: 893b ldrh r3, [r7, #8] + 8002c1a: b2da uxtb r2, r3 + 8002c1c: 68fb ldr r3, [r7, #12] + 8002c1e: 681b ldr r3, [r3, #0] + 8002c20: 611a str r2, [r3, #16] + 8002c22: e021 b.n 8002c68 } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 8002b00: 893b ldrh r3, [r7, #8] - 8002b02: 0a1b lsrs r3, r3, #8 - 8002b04: b29b uxth r3, r3 - 8002b06: b2da uxtb r2, r3 - 8002b08: 68fb ldr r3, [r7, #12] - 8002b0a: 681b ldr r3, [r3, #0] - 8002b0c: 611a str r2, [r3, #16] + 8002c24: 893b ldrh r3, [r7, #8] + 8002c26: 0a1b lsrs r3, r3, #8 + 8002c28: b29b uxth r3, r3 + 8002c2a: b2da uxtb r2, r3 + 8002c2c: 68fb ldr r3, [r7, #12] + 8002c2e: 681b ldr r3, [r3, #0] + 8002c30: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002b0e: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002b10: 6a39 ldr r1, [r7, #32] - 8002b12: 68f8 ldr r0, [r7, #12] - 8002b14: f000 f93e bl 8002d94 - 8002b18: 4603 mov r3, r0 - 8002b1a: 2b00 cmp r3, #0 - 8002b1c: d00d beq.n 8002b3a + 8002c32: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002c34: 6a39 ldr r1, [r7, #32] + 8002c36: 68f8 ldr r0, [r7, #12] + 8002c38: f000 f93e bl 8002eb8 + 8002c3c: 4603 mov r3, r0 + 8002c3e: 2b00 cmp r3, #0 + 8002c40: d00d beq.n 8002c5e { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002b1e: 68fb ldr r3, [r7, #12] - 8002b20: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002b22: 2b04 cmp r3, #4 - 8002b24: d107 bne.n 8002b36 + 8002c42: 68fb ldr r3, [r7, #12] + 8002c44: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002c46: 2b04 cmp r3, #4 + 8002c48: d107 bne.n 8002c5a { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002b26: 68fb ldr r3, [r7, #12] - 8002b28: 681b ldr r3, [r3, #0] - 8002b2a: 681a ldr r2, [r3, #0] - 8002b2c: 68fb ldr r3, [r7, #12] - 8002b2e: 681b ldr r3, [r3, #0] - 8002b30: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002b34: 601a str r2, [r3, #0] + 8002c4a: 68fb ldr r3, [r7, #12] + 8002c4c: 681b ldr r3, [r3, #0] + 8002c4e: 681a ldr r2, [r3, #0] + 8002c50: 68fb ldr r3, [r7, #12] + 8002c52: 681b ldr r3, [r3, #0] + 8002c54: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002c58: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002b36: 2301 movs r3, #1 - 8002b38: e050 b.n 8002bdc + 8002c5a: 2301 movs r3, #1 + 8002c5c: e050 b.n 8002d00 } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002b3a: 893b ldrh r3, [r7, #8] - 8002b3c: b2da uxtb r2, r3 - 8002b3e: 68fb ldr r3, [r7, #12] - 8002b40: 681b ldr r3, [r3, #0] - 8002b42: 611a str r2, [r3, #16] + 8002c5e: 893b ldrh r3, [r7, #8] + 8002c60: b2da uxtb r2, r3 + 8002c62: 68fb ldr r3, [r7, #12] + 8002c64: 681b ldr r3, [r3, #0] + 8002c66: 611a str r2, [r3, #16] } /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002b44: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002b46: 6a39 ldr r1, [r7, #32] - 8002b48: 68f8 ldr r0, [r7, #12] - 8002b4a: f000 f923 bl 8002d94 - 8002b4e: 4603 mov r3, r0 - 8002b50: 2b00 cmp r3, #0 - 8002b52: d00d beq.n 8002b70 + 8002c68: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002c6a: 6a39 ldr r1, [r7, #32] + 8002c6c: 68f8 ldr r0, [r7, #12] + 8002c6e: f000 f923 bl 8002eb8 + 8002c72: 4603 mov r3, r0 + 8002c74: 2b00 cmp r3, #0 + 8002c76: d00d beq.n 8002c94 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002b54: 68fb ldr r3, [r7, #12] - 8002b56: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002b58: 2b04 cmp r3, #4 - 8002b5a: d107 bne.n 8002b6c + 8002c78: 68fb ldr r3, [r7, #12] + 8002c7a: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002c7c: 2b04 cmp r3, #4 + 8002c7e: d107 bne.n 8002c90 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002b5c: 68fb ldr r3, [r7, #12] - 8002b5e: 681b ldr r3, [r3, #0] - 8002b60: 681a ldr r2, [r3, #0] - 8002b62: 68fb ldr r3, [r7, #12] - 8002b64: 681b ldr r3, [r3, #0] - 8002b66: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002b6a: 601a str r2, [r3, #0] + 8002c80: 68fb ldr r3, [r7, #12] + 8002c82: 681b ldr r3, [r3, #0] + 8002c84: 681a ldr r2, [r3, #0] + 8002c86: 68fb ldr r3, [r7, #12] + 8002c88: 681b ldr r3, [r3, #0] + 8002c8a: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002c8e: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002b6c: 2301 movs r3, #1 - 8002b6e: e035 b.n 8002bdc + 8002c90: 2301 movs r3, #1 + 8002c92: e035 b.n 8002d00 } /* Generate Restart */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002b70: 68fb ldr r3, [r7, #12] - 8002b72: 681b ldr r3, [r3, #0] - 8002b74: 681a ldr r2, [r3, #0] - 8002b76: 68fb ldr r3, [r7, #12] - 8002b78: 681b ldr r3, [r3, #0] - 8002b7a: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002b7e: 601a str r2, [r3, #0] + 8002c94: 68fb ldr r3, [r7, #12] + 8002c96: 681b ldr r3, [r3, #0] + 8002c98: 681a ldr r2, [r3, #0] + 8002c9a: 68fb ldr r3, [r7, #12] + 8002c9c: 681b ldr r3, [r3, #0] + 8002c9e: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002ca2: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002b80: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002b82: 9300 str r3, [sp, #0] - 8002b84: 6a3b ldr r3, [r7, #32] - 8002b86: 2200 movs r2, #0 - 8002b88: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002b8c: 68f8 ldr r0, [r7, #12] - 8002b8e: f000 f82b bl 8002be8 - 8002b92: 4603 mov r3, r0 - 8002b94: 2b00 cmp r3, #0 - 8002b96: d00d beq.n 8002bb4 + 8002ca4: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002ca6: 9300 str r3, [sp, #0] + 8002ca8: 6a3b ldr r3, [r7, #32] + 8002caa: 2200 movs r2, #0 + 8002cac: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002cb0: 68f8 ldr r0, [r7, #12] + 8002cb2: f000 f82b bl 8002d0c + 8002cb6: 4603 mov r3, r0 + 8002cb8: 2b00 cmp r3, #0 + 8002cba: d00d beq.n 8002cd8 { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002b98: 68fb ldr r3, [r7, #12] - 8002b9a: 681b ldr r3, [r3, #0] - 8002b9c: 681b ldr r3, [r3, #0] - 8002b9e: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002ba2: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002ba6: d103 bne.n 8002bb0 + 8002cbc: 68fb ldr r3, [r7, #12] + 8002cbe: 681b ldr r3, [r3, #0] + 8002cc0: 681b ldr r3, [r3, #0] + 8002cc2: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002cc6: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002cca: d103 bne.n 8002cd4 { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002ba8: 68fb ldr r3, [r7, #12] - 8002baa: f44f 7200 mov.w r2, #512 ; 0x200 - 8002bae: 641a str r2, [r3, #64] ; 0x40 + 8002ccc: 68fb ldr r3, [r7, #12] + 8002cce: f44f 7200 mov.w r2, #512 ; 0x200 + 8002cd2: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002bb0: 2303 movs r3, #3 - 8002bb2: e013 b.n 8002bdc + 8002cd4: 2303 movs r3, #3 + 8002cd6: e013 b.n 8002d00 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_READ(DevAddress); - 8002bb4: 897b ldrh r3, [r7, #10] - 8002bb6: b2db uxtb r3, r3 - 8002bb8: f043 0301 orr.w r3, r3, #1 - 8002bbc: b2da uxtb r2, r3 - 8002bbe: 68fb ldr r3, [r7, #12] - 8002bc0: 681b ldr r3, [r3, #0] - 8002bc2: 611a str r2, [r3, #16] + 8002cd8: 897b ldrh r3, [r7, #10] + 8002cda: b2db uxtb r3, r3 + 8002cdc: f043 0301 orr.w r3, r3, #1 + 8002ce0: b2da uxtb r2, r3 + 8002ce2: 68fb ldr r3, [r7, #12] + 8002ce4: 681b ldr r3, [r3, #0] + 8002ce6: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002bc4: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002bc6: 6a3a ldr r2, [r7, #32] - 8002bc8: 4906 ldr r1, [pc, #24] ; (8002be4 ) - 8002bca: 68f8 ldr r0, [r7, #12] - 8002bcc: f000 f863 bl 8002c96 - 8002bd0: 4603 mov r3, r0 - 8002bd2: 2b00 cmp r3, #0 - 8002bd4: d001 beq.n 8002bda + 8002ce8: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002cea: 6a3a ldr r2, [r7, #32] + 8002cec: 4906 ldr r1, [pc, #24] ; (8002d08 ) + 8002cee: 68f8 ldr r0, [r7, #12] + 8002cf0: f000 f863 bl 8002dba + 8002cf4: 4603 mov r3, r0 + 8002cf6: 2b00 cmp r3, #0 + 8002cf8: d001 beq.n 8002cfe { return HAL_ERROR; - 8002bd6: 2301 movs r3, #1 - 8002bd8: e000 b.n 8002bdc + 8002cfa: 2301 movs r3, #1 + 8002cfc: e000 b.n 8002d00 } return HAL_OK; - 8002bda: 2300 movs r3, #0 + 8002cfe: 2300 movs r3, #0 } - 8002bdc: 4618 mov r0, r3 - 8002bde: 3718 adds r7, #24 - 8002be0: 46bd mov sp, r7 - 8002be2: bd80 pop {r7, pc} - 8002be4: 00010002 .word 0x00010002 + 8002d00: 4618 mov r0, r3 + 8002d02: 3718 adds r7, #24 + 8002d04: 46bd mov sp, r7 + 8002d06: bd80 pop {r7, pc} + 8002d08: 00010002 .word 0x00010002 -08002be8 : +08002d0c : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, FlagStatus Status, uint32_t Timeout, uint32_t Tickstart) { - 8002be8: b580 push {r7, lr} - 8002bea: b084 sub sp, #16 - 8002bec: af00 add r7, sp, #0 - 8002bee: 60f8 str r0, [r7, #12] - 8002bf0: 60b9 str r1, [r7, #8] - 8002bf2: 603b str r3, [r7, #0] - 8002bf4: 4613 mov r3, r2 - 8002bf6: 71fb strb r3, [r7, #7] + 8002d0c: b580 push {r7, lr} + 8002d0e: b084 sub sp, #16 + 8002d10: af00 add r7, sp, #0 + 8002d12: 60f8 str r0, [r7, #12] + 8002d14: 60b9 str r1, [r7, #8] + 8002d16: 603b str r3, [r7, #0] + 8002d18: 4613 mov r3, r2 + 8002d1a: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002bf8: e025 b.n 8002c46 + 8002d1c: e025 b.n 8002d6a { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002bfa: 683b ldr r3, [r7, #0] - 8002bfc: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002c00: d021 beq.n 8002c46 + 8002d1e: 683b ldr r3, [r7, #0] + 8002d20: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002d24: d021 beq.n 8002d6a { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002c02: f7fe fef7 bl 80019f4 - 8002c06: 4602 mov r2, r0 - 8002c08: 69bb ldr r3, [r7, #24] - 8002c0a: 1ad3 subs r3, r2, r3 - 8002c0c: 683a ldr r2, [r7, #0] - 8002c0e: 429a cmp r2, r3 - 8002c10: d302 bcc.n 8002c18 - 8002c12: 683b ldr r3, [r7, #0] - 8002c14: 2b00 cmp r3, #0 - 8002c16: d116 bne.n 8002c46 + 8002d26: f7fe fecd bl 8001ac4 + 8002d2a: 4602 mov r2, r0 + 8002d2c: 69bb ldr r3, [r7, #24] + 8002d2e: 1ad3 subs r3, r2, r3 + 8002d30: 683a ldr r2, [r7, #0] + 8002d32: 429a cmp r2, r3 + 8002d34: d302 bcc.n 8002d3c + 8002d36: 683b ldr r3, [r7, #0] + 8002d38: 2b00 cmp r3, #0 + 8002d3a: d116 bne.n 8002d6a { hi2c->PreviousState = I2C_STATE_NONE; - 8002c18: 68fb ldr r3, [r7, #12] - 8002c1a: 2200 movs r2, #0 - 8002c1c: 631a str r2, [r3, #48] ; 0x30 + 8002d3c: 68fb ldr r3, [r7, #12] + 8002d3e: 2200 movs r2, #0 + 8002d40: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002c1e: 68fb ldr r3, [r7, #12] - 8002c20: 2220 movs r2, #32 - 8002c22: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002d42: 68fb ldr r3, [r7, #12] + 8002d44: 2220 movs r2, #32 + 8002d46: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002c26: 68fb ldr r3, [r7, #12] - 8002c28: 2200 movs r2, #0 - 8002c2a: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002d4a: 68fb ldr r3, [r7, #12] + 8002d4c: 2200 movs r2, #0 + 8002d4e: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002c2e: 68fb ldr r3, [r7, #12] - 8002c30: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002c32: f043 0220 orr.w r2, r3, #32 - 8002c36: 68fb ldr r3, [r7, #12] - 8002c38: 641a str r2, [r3, #64] ; 0x40 + 8002d52: 68fb ldr r3, [r7, #12] + 8002d54: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002d56: f043 0220 orr.w r2, r3, #32 + 8002d5a: 68fb ldr r3, [r7, #12] + 8002d5c: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002c3a: 68fb ldr r3, [r7, #12] - 8002c3c: 2200 movs r2, #0 - 8002c3e: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002d5e: 68fb ldr r3, [r7, #12] + 8002d60: 2200 movs r2, #0 + 8002d62: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002c42: 2301 movs r3, #1 - 8002c44: e023 b.n 8002c8e + 8002d66: 2301 movs r3, #1 + 8002d68: e023 b.n 8002db2 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002c46: 68bb ldr r3, [r7, #8] - 8002c48: 0c1b lsrs r3, r3, #16 - 8002c4a: b2db uxtb r3, r3 - 8002c4c: 2b01 cmp r3, #1 - 8002c4e: d10d bne.n 8002c6c - 8002c50: 68fb ldr r3, [r7, #12] - 8002c52: 681b ldr r3, [r3, #0] - 8002c54: 695b ldr r3, [r3, #20] - 8002c56: 43da mvns r2, r3 - 8002c58: 68bb ldr r3, [r7, #8] - 8002c5a: 4013 ands r3, r2 - 8002c5c: b29b uxth r3, r3 - 8002c5e: 2b00 cmp r3, #0 - 8002c60: bf0c ite eq - 8002c62: 2301 moveq r3, #1 - 8002c64: 2300 movne r3, #0 - 8002c66: b2db uxtb r3, r3 - 8002c68: 461a mov r2, r3 - 8002c6a: e00c b.n 8002c86 - 8002c6c: 68fb ldr r3, [r7, #12] - 8002c6e: 681b ldr r3, [r3, #0] - 8002c70: 699b ldr r3, [r3, #24] - 8002c72: 43da mvns r2, r3 - 8002c74: 68bb ldr r3, [r7, #8] - 8002c76: 4013 ands r3, r2 - 8002c78: b29b uxth r3, r3 - 8002c7a: 2b00 cmp r3, #0 - 8002c7c: bf0c ite eq - 8002c7e: 2301 moveq r3, #1 - 8002c80: 2300 movne r3, #0 - 8002c82: b2db uxtb r3, r3 - 8002c84: 461a mov r2, r3 - 8002c86: 79fb ldrb r3, [r7, #7] - 8002c88: 429a cmp r2, r3 - 8002c8a: d0b6 beq.n 8002bfa + 8002d6a: 68bb ldr r3, [r7, #8] + 8002d6c: 0c1b lsrs r3, r3, #16 + 8002d6e: b2db uxtb r3, r3 + 8002d70: 2b01 cmp r3, #1 + 8002d72: d10d bne.n 8002d90 + 8002d74: 68fb ldr r3, [r7, #12] + 8002d76: 681b ldr r3, [r3, #0] + 8002d78: 695b ldr r3, [r3, #20] + 8002d7a: 43da mvns r2, r3 + 8002d7c: 68bb ldr r3, [r7, #8] + 8002d7e: 4013 ands r3, r2 + 8002d80: b29b uxth r3, r3 + 8002d82: 2b00 cmp r3, #0 + 8002d84: bf0c ite eq + 8002d86: 2301 moveq r3, #1 + 8002d88: 2300 movne r3, #0 + 8002d8a: b2db uxtb r3, r3 + 8002d8c: 461a mov r2, r3 + 8002d8e: e00c b.n 8002daa + 8002d90: 68fb ldr r3, [r7, #12] + 8002d92: 681b ldr r3, [r3, #0] + 8002d94: 699b ldr r3, [r3, #24] + 8002d96: 43da mvns r2, r3 + 8002d98: 68bb ldr r3, [r7, #8] + 8002d9a: 4013 ands r3, r2 + 8002d9c: b29b uxth r3, r3 + 8002d9e: 2b00 cmp r3, #0 + 8002da0: bf0c ite eq + 8002da2: 2301 moveq r3, #1 + 8002da4: 2300 movne r3, #0 + 8002da6: b2db uxtb r3, r3 + 8002da8: 461a mov r2, r3 + 8002daa: 79fb ldrb r3, [r7, #7] + 8002dac: 429a cmp r2, r3 + 8002dae: d0b6 beq.n 8002d1e } } } return HAL_OK; - 8002c8c: 2300 movs r3, #0 + 8002db0: 2300 movs r3, #0 } - 8002c8e: 4618 mov r0, r3 - 8002c90: 3710 adds r7, #16 - 8002c92: 46bd mov sp, r7 - 8002c94: bd80 pop {r7, pc} + 8002db2: 4618 mov r0, r3 + 8002db4: 3710 adds r7, #16 + 8002db6: 46bd mov sp, r7 + 8002db8: bd80 pop {r7, pc} -08002c96 : +08002dba : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnMasterAddressFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, uint32_t Timeout, uint32_t Tickstart) { - 8002c96: b580 push {r7, lr} - 8002c98: b084 sub sp, #16 - 8002c9a: af00 add r7, sp, #0 - 8002c9c: 60f8 str r0, [r7, #12] - 8002c9e: 60b9 str r1, [r7, #8] - 8002ca0: 607a str r2, [r7, #4] - 8002ca2: 603b str r3, [r7, #0] + 8002dba: b580 push {r7, lr} + 8002dbc: b084 sub sp, #16 + 8002dbe: af00 add r7, sp, #0 + 8002dc0: 60f8 str r0, [r7, #12] + 8002dc2: 60b9 str r1, [r7, #8] + 8002dc4: 607a str r2, [r7, #4] + 8002dc6: 603b str r3, [r7, #0] while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002ca4: e051 b.n 8002d4a + 8002dc8: e051 b.n 8002e6e { if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 8002ca6: 68fb ldr r3, [r7, #12] - 8002ca8: 681b ldr r3, [r3, #0] - 8002caa: 695b ldr r3, [r3, #20] - 8002cac: f403 6380 and.w r3, r3, #1024 ; 0x400 - 8002cb0: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8002cb4: d123 bne.n 8002cfe + 8002dca: 68fb ldr r3, [r7, #12] + 8002dcc: 681b ldr r3, [r3, #0] + 8002dce: 695b ldr r3, [r3, #20] + 8002dd0: f403 6380 and.w r3, r3, #1024 ; 0x400 + 8002dd4: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 8002dd8: d123 bne.n 8002e22 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002cb6: 68fb ldr r3, [r7, #12] - 8002cb8: 681b ldr r3, [r3, #0] - 8002cba: 681a ldr r2, [r3, #0] - 8002cbc: 68fb ldr r3, [r7, #12] - 8002cbe: 681b ldr r3, [r3, #0] - 8002cc0: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002cc4: 601a str r2, [r3, #0] + 8002dda: 68fb ldr r3, [r7, #12] + 8002ddc: 681b ldr r3, [r3, #0] + 8002dde: 681a ldr r2, [r3, #0] + 8002de0: 68fb ldr r3, [r7, #12] + 8002de2: 681b ldr r3, [r3, #0] + 8002de4: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002de8: 601a str r2, [r3, #0] /* Clear AF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 8002cc6: 68fb ldr r3, [r7, #12] - 8002cc8: 681b ldr r3, [r3, #0] - 8002cca: f46f 6280 mvn.w r2, #1024 ; 0x400 - 8002cce: 615a str r2, [r3, #20] + 8002dea: 68fb ldr r3, [r7, #12] + 8002dec: 681b ldr r3, [r3, #0] + 8002dee: f46f 6280 mvn.w r2, #1024 ; 0x400 + 8002df2: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002cd0: 68fb ldr r3, [r7, #12] - 8002cd2: 2200 movs r2, #0 - 8002cd4: 631a str r2, [r3, #48] ; 0x30 + 8002df4: 68fb ldr r3, [r7, #12] + 8002df6: 2200 movs r2, #0 + 8002df8: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002cd6: 68fb ldr r3, [r7, #12] - 8002cd8: 2220 movs r2, #32 - 8002cda: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002dfa: 68fb ldr r3, [r7, #12] + 8002dfc: 2220 movs r2, #32 + 8002dfe: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002cde: 68fb ldr r3, [r7, #12] - 8002ce0: 2200 movs r2, #0 - 8002ce2: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002e02: 68fb ldr r3, [r7, #12] + 8002e04: 2200 movs r2, #0 + 8002e06: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8002ce6: 68fb ldr r3, [r7, #12] - 8002ce8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002cea: f043 0204 orr.w r2, r3, #4 - 8002cee: 68fb ldr r3, [r7, #12] - 8002cf0: 641a str r2, [r3, #64] ; 0x40 + 8002e0a: 68fb ldr r3, [r7, #12] + 8002e0c: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002e0e: f043 0204 orr.w r2, r3, #4 + 8002e12: 68fb ldr r3, [r7, #12] + 8002e14: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002cf2: 68fb ldr r3, [r7, #12] - 8002cf4: 2200 movs r2, #0 - 8002cf6: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e16: 68fb ldr r3, [r7, #12] + 8002e18: 2200 movs r2, #0 + 8002e1a: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002cfa: 2301 movs r3, #1 - 8002cfc: e046 b.n 8002d8c + 8002e1e: 2301 movs r3, #1 + 8002e20: e046 b.n 8002eb0 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002cfe: 687b ldr r3, [r7, #4] - 8002d00: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002d04: d021 beq.n 8002d4a + 8002e22: 687b ldr r3, [r7, #4] + 8002e24: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002e28: d021 beq.n 8002e6e { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002d06: f7fe fe75 bl 80019f4 - 8002d0a: 4602 mov r2, r0 - 8002d0c: 683b ldr r3, [r7, #0] - 8002d0e: 1ad3 subs r3, r2, r3 - 8002d10: 687a ldr r2, [r7, #4] - 8002d12: 429a cmp r2, r3 - 8002d14: d302 bcc.n 8002d1c - 8002d16: 687b ldr r3, [r7, #4] - 8002d18: 2b00 cmp r3, #0 - 8002d1a: d116 bne.n 8002d4a + 8002e2a: f7fe fe4b bl 8001ac4 + 8002e2e: 4602 mov r2, r0 + 8002e30: 683b ldr r3, [r7, #0] + 8002e32: 1ad3 subs r3, r2, r3 + 8002e34: 687a ldr r2, [r7, #4] + 8002e36: 429a cmp r2, r3 + 8002e38: d302 bcc.n 8002e40 + 8002e3a: 687b ldr r3, [r7, #4] + 8002e3c: 2b00 cmp r3, #0 + 8002e3e: d116 bne.n 8002e6e { hi2c->PreviousState = I2C_STATE_NONE; - 8002d1c: 68fb ldr r3, [r7, #12] - 8002d1e: 2200 movs r2, #0 - 8002d20: 631a str r2, [r3, #48] ; 0x30 + 8002e40: 68fb ldr r3, [r7, #12] + 8002e42: 2200 movs r2, #0 + 8002e44: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002d22: 68fb ldr r3, [r7, #12] - 8002d24: 2220 movs r2, #32 - 8002d26: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002e46: 68fb ldr r3, [r7, #12] + 8002e48: 2220 movs r2, #32 + 8002e4a: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002d2a: 68fb ldr r3, [r7, #12] - 8002d2c: 2200 movs r2, #0 - 8002d2e: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002e4e: 68fb ldr r3, [r7, #12] + 8002e50: 2200 movs r2, #0 + 8002e52: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002d32: 68fb ldr r3, [r7, #12] - 8002d34: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002d36: f043 0220 orr.w r2, r3, #32 - 8002d3a: 68fb ldr r3, [r7, #12] - 8002d3c: 641a str r2, [r3, #64] ; 0x40 + 8002e56: 68fb ldr r3, [r7, #12] + 8002e58: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002e5a: f043 0220 orr.w r2, r3, #32 + 8002e5e: 68fb ldr r3, [r7, #12] + 8002e60: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002d3e: 68fb ldr r3, [r7, #12] - 8002d40: 2200 movs r2, #0 - 8002d42: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e62: 68fb ldr r3, [r7, #12] + 8002e64: 2200 movs r2, #0 + 8002e66: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002d46: 2301 movs r3, #1 - 8002d48: e020 b.n 8002d8c + 8002e6a: 2301 movs r3, #1 + 8002e6c: e020 b.n 8002eb0 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002d4a: 68bb ldr r3, [r7, #8] - 8002d4c: 0c1b lsrs r3, r3, #16 - 8002d4e: b2db uxtb r3, r3 - 8002d50: 2b01 cmp r3, #1 - 8002d52: d10c bne.n 8002d6e - 8002d54: 68fb ldr r3, [r7, #12] - 8002d56: 681b ldr r3, [r3, #0] - 8002d58: 695b ldr r3, [r3, #20] - 8002d5a: 43da mvns r2, r3 - 8002d5c: 68bb ldr r3, [r7, #8] - 8002d5e: 4013 ands r3, r2 - 8002d60: b29b uxth r3, r3 - 8002d62: 2b00 cmp r3, #0 - 8002d64: bf14 ite ne - 8002d66: 2301 movne r3, #1 - 8002d68: 2300 moveq r3, #0 - 8002d6a: b2db uxtb r3, r3 - 8002d6c: e00b b.n 8002d86 - 8002d6e: 68fb ldr r3, [r7, #12] - 8002d70: 681b ldr r3, [r3, #0] - 8002d72: 699b ldr r3, [r3, #24] - 8002d74: 43da mvns r2, r3 - 8002d76: 68bb ldr r3, [r7, #8] - 8002d78: 4013 ands r3, r2 - 8002d7a: b29b uxth r3, r3 - 8002d7c: 2b00 cmp r3, #0 - 8002d7e: bf14 ite ne - 8002d80: 2301 movne r3, #1 - 8002d82: 2300 moveq r3, #0 - 8002d84: b2db uxtb r3, r3 - 8002d86: 2b00 cmp r3, #0 - 8002d88: d18d bne.n 8002ca6 + 8002e6e: 68bb ldr r3, [r7, #8] + 8002e70: 0c1b lsrs r3, r3, #16 + 8002e72: b2db uxtb r3, r3 + 8002e74: 2b01 cmp r3, #1 + 8002e76: d10c bne.n 8002e92 + 8002e78: 68fb ldr r3, [r7, #12] + 8002e7a: 681b ldr r3, [r3, #0] + 8002e7c: 695b ldr r3, [r3, #20] + 8002e7e: 43da mvns r2, r3 + 8002e80: 68bb ldr r3, [r7, #8] + 8002e82: 4013 ands r3, r2 + 8002e84: b29b uxth r3, r3 + 8002e86: 2b00 cmp r3, #0 + 8002e88: bf14 ite ne + 8002e8a: 2301 movne r3, #1 + 8002e8c: 2300 moveq r3, #0 + 8002e8e: b2db uxtb r3, r3 + 8002e90: e00b b.n 8002eaa + 8002e92: 68fb ldr r3, [r7, #12] + 8002e94: 681b ldr r3, [r3, #0] + 8002e96: 699b ldr r3, [r3, #24] + 8002e98: 43da mvns r2, r3 + 8002e9a: 68bb ldr r3, [r7, #8] + 8002e9c: 4013 ands r3, r2 + 8002e9e: b29b uxth r3, r3 + 8002ea0: 2b00 cmp r3, #0 + 8002ea2: bf14 ite ne + 8002ea4: 2301 movne r3, #1 + 8002ea6: 2300 moveq r3, #0 + 8002ea8: b2db uxtb r3, r3 + 8002eaa: 2b00 cmp r3, #0 + 8002eac: d18d bne.n 8002dca } } } return HAL_OK; - 8002d8a: 2300 movs r3, #0 + 8002eae: 2300 movs r3, #0 } - 8002d8c: 4618 mov r0, r3 - 8002d8e: 3710 adds r7, #16 - 8002d90: 46bd mov sp, r7 - 8002d92: bd80 pop {r7, pc} + 8002eb0: 4618 mov r0, r3 + 8002eb2: 3710 adds r7, #16 + 8002eb4: 46bd mov sp, r7 + 8002eb6: bd80 pop {r7, pc} -08002d94 : +08002eb8 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnTXEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002d94: b580 push {r7, lr} - 8002d96: b084 sub sp, #16 - 8002d98: af00 add r7, sp, #0 - 8002d9a: 60f8 str r0, [r7, #12] - 8002d9c: 60b9 str r1, [r7, #8] - 8002d9e: 607a str r2, [r7, #4] + 8002eb8: b580 push {r7, lr} + 8002eba: b084 sub sp, #16 + 8002ebc: af00 add r7, sp, #0 + 8002ebe: 60f8 str r0, [r7, #12] + 8002ec0: 60b9 str r1, [r7, #8] + 8002ec2: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002da0: e02d b.n 8002dfe + 8002ec4: e02d b.n 8002f22 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002da2: 68f8 ldr r0, [r7, #12] - 8002da4: f000 f8ce bl 8002f44 - 8002da8: 4603 mov r3, r0 - 8002daa: 2b00 cmp r3, #0 - 8002dac: d001 beq.n 8002db2 + 8002ec6: 68f8 ldr r0, [r7, #12] + 8002ec8: f000 f8ce bl 8003068 + 8002ecc: 4603 mov r3, r0 + 8002ece: 2b00 cmp r3, #0 + 8002ed0: d001 beq.n 8002ed6 { return HAL_ERROR; - 8002dae: 2301 movs r3, #1 - 8002db0: e02d b.n 8002e0e + 8002ed2: 2301 movs r3, #1 + 8002ed4: e02d b.n 8002f32 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002db2: 68bb ldr r3, [r7, #8] - 8002db4: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002db8: d021 beq.n 8002dfe + 8002ed6: 68bb ldr r3, [r7, #8] + 8002ed8: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002edc: d021 beq.n 8002f22 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002dba: f7fe fe1b bl 80019f4 - 8002dbe: 4602 mov r2, r0 - 8002dc0: 687b ldr r3, [r7, #4] - 8002dc2: 1ad3 subs r3, r2, r3 - 8002dc4: 68ba ldr r2, [r7, #8] - 8002dc6: 429a cmp r2, r3 - 8002dc8: d302 bcc.n 8002dd0 - 8002dca: 68bb ldr r3, [r7, #8] - 8002dcc: 2b00 cmp r3, #0 - 8002dce: d116 bne.n 8002dfe + 8002ede: f7fe fdf1 bl 8001ac4 + 8002ee2: 4602 mov r2, r0 + 8002ee4: 687b ldr r3, [r7, #4] + 8002ee6: 1ad3 subs r3, r2, r3 + 8002ee8: 68ba ldr r2, [r7, #8] + 8002eea: 429a cmp r2, r3 + 8002eec: d302 bcc.n 8002ef4 + 8002eee: 68bb ldr r3, [r7, #8] + 8002ef0: 2b00 cmp r3, #0 + 8002ef2: d116 bne.n 8002f22 { hi2c->PreviousState = I2C_STATE_NONE; - 8002dd0: 68fb ldr r3, [r7, #12] - 8002dd2: 2200 movs r2, #0 - 8002dd4: 631a str r2, [r3, #48] ; 0x30 + 8002ef4: 68fb ldr r3, [r7, #12] + 8002ef6: 2200 movs r2, #0 + 8002ef8: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002dd6: 68fb ldr r3, [r7, #12] - 8002dd8: 2220 movs r2, #32 - 8002dda: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002efa: 68fb ldr r3, [r7, #12] + 8002efc: 2220 movs r2, #32 + 8002efe: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002dde: 68fb ldr r3, [r7, #12] - 8002de0: 2200 movs r2, #0 - 8002de2: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002f02: 68fb ldr r3, [r7, #12] + 8002f04: 2200 movs r2, #0 + 8002f06: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002de6: 68fb ldr r3, [r7, #12] - 8002de8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002dea: f043 0220 orr.w r2, r3, #32 - 8002dee: 68fb ldr r3, [r7, #12] - 8002df0: 641a str r2, [r3, #64] ; 0x40 + 8002f0a: 68fb ldr r3, [r7, #12] + 8002f0c: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002f0e: f043 0220 orr.w r2, r3, #32 + 8002f12: 68fb ldr r3, [r7, #12] + 8002f14: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002df2: 68fb ldr r3, [r7, #12] - 8002df4: 2200 movs r2, #0 - 8002df6: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002f16: 68fb ldr r3, [r7, #12] + 8002f18: 2200 movs r2, #0 + 8002f1a: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002dfa: 2301 movs r3, #1 - 8002dfc: e007 b.n 8002e0e + 8002f1e: 2301 movs r3, #1 + 8002f20: e007 b.n 8002f32 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002dfe: 68fb ldr r3, [r7, #12] - 8002e00: 681b ldr r3, [r3, #0] - 8002e02: 695b ldr r3, [r3, #20] - 8002e04: f003 0380 and.w r3, r3, #128 ; 0x80 - 8002e08: 2b80 cmp r3, #128 ; 0x80 - 8002e0a: d1ca bne.n 8002da2 + 8002f22: 68fb ldr r3, [r7, #12] + 8002f24: 681b ldr r3, [r3, #0] + 8002f26: 695b ldr r3, [r3, #20] + 8002f28: f003 0380 and.w r3, r3, #128 ; 0x80 + 8002f2c: 2b80 cmp r3, #128 ; 0x80 + 8002f2e: d1ca bne.n 8002ec6 } } } return HAL_OK; - 8002e0c: 2300 movs r3, #0 + 8002f30: 2300 movs r3, #0 } - 8002e0e: 4618 mov r0, r3 - 8002e10: 3710 adds r7, #16 - 8002e12: 46bd mov sp, r7 - 8002e14: bd80 pop {r7, pc} + 8002f32: 4618 mov r0, r3 + 8002f34: 3710 adds r7, #16 + 8002f36: 46bd mov sp, r7 + 8002f38: bd80 pop {r7, pc} -08002e16 : +08002f3a : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnBTFFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002e16: b580 push {r7, lr} - 8002e18: b084 sub sp, #16 - 8002e1a: af00 add r7, sp, #0 - 8002e1c: 60f8 str r0, [r7, #12] - 8002e1e: 60b9 str r1, [r7, #8] - 8002e20: 607a str r2, [r7, #4] + 8002f3a: b580 push {r7, lr} + 8002f3c: b084 sub sp, #16 + 8002f3e: af00 add r7, sp, #0 + 8002f40: 60f8 str r0, [r7, #12] + 8002f42: 60b9 str r1, [r7, #8] + 8002f44: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8002e22: e02d b.n 8002e80 + 8002f46: e02d b.n 8002fa4 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002e24: 68f8 ldr r0, [r7, #12] - 8002e26: f000 f88d bl 8002f44 - 8002e2a: 4603 mov r3, r0 - 8002e2c: 2b00 cmp r3, #0 - 8002e2e: d001 beq.n 8002e34 + 8002f48: 68f8 ldr r0, [r7, #12] + 8002f4a: f000 f88d bl 8003068 + 8002f4e: 4603 mov r3, r0 + 8002f50: 2b00 cmp r3, #0 + 8002f52: d001 beq.n 8002f58 { return HAL_ERROR; - 8002e30: 2301 movs r3, #1 - 8002e32: e02d b.n 8002e90 + 8002f54: 2301 movs r3, #1 + 8002f56: e02d b.n 8002fb4 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002e34: 68bb ldr r3, [r7, #8] - 8002e36: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002e3a: d021 beq.n 8002e80 + 8002f58: 68bb ldr r3, [r7, #8] + 8002f5a: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002f5e: d021 beq.n 8002fa4 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002e3c: f7fe fdda bl 80019f4 - 8002e40: 4602 mov r2, r0 - 8002e42: 687b ldr r3, [r7, #4] - 8002e44: 1ad3 subs r3, r2, r3 - 8002e46: 68ba ldr r2, [r7, #8] - 8002e48: 429a cmp r2, r3 - 8002e4a: d302 bcc.n 8002e52 - 8002e4c: 68bb ldr r3, [r7, #8] - 8002e4e: 2b00 cmp r3, #0 - 8002e50: d116 bne.n 8002e80 + 8002f60: f7fe fdb0 bl 8001ac4 + 8002f64: 4602 mov r2, r0 + 8002f66: 687b ldr r3, [r7, #4] + 8002f68: 1ad3 subs r3, r2, r3 + 8002f6a: 68ba ldr r2, [r7, #8] + 8002f6c: 429a cmp r2, r3 + 8002f6e: d302 bcc.n 8002f76 + 8002f70: 68bb ldr r3, [r7, #8] + 8002f72: 2b00 cmp r3, #0 + 8002f74: d116 bne.n 8002fa4 { hi2c->PreviousState = I2C_STATE_NONE; - 8002e52: 68fb ldr r3, [r7, #12] - 8002e54: 2200 movs r2, #0 - 8002e56: 631a str r2, [r3, #48] ; 0x30 + 8002f76: 68fb ldr r3, [r7, #12] + 8002f78: 2200 movs r2, #0 + 8002f7a: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002e58: 68fb ldr r3, [r7, #12] - 8002e5a: 2220 movs r2, #32 - 8002e5c: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002f7c: 68fb ldr r3, [r7, #12] + 8002f7e: 2220 movs r2, #32 + 8002f80: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002e60: 68fb ldr r3, [r7, #12] - 8002e62: 2200 movs r2, #0 - 8002e64: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002f84: 68fb ldr r3, [r7, #12] + 8002f86: 2200 movs r2, #0 + 8002f88: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002e68: 68fb ldr r3, [r7, #12] - 8002e6a: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002e6c: f043 0220 orr.w r2, r3, #32 - 8002e70: 68fb ldr r3, [r7, #12] - 8002e72: 641a str r2, [r3, #64] ; 0x40 + 8002f8c: 68fb ldr r3, [r7, #12] + 8002f8e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002f90: f043 0220 orr.w r2, r3, #32 + 8002f94: 68fb ldr r3, [r7, #12] + 8002f96: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002e74: 68fb ldr r3, [r7, #12] - 8002e76: 2200 movs r2, #0 - 8002e78: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002f98: 68fb ldr r3, [r7, #12] + 8002f9a: 2200 movs r2, #0 + 8002f9c: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002e7c: 2301 movs r3, #1 - 8002e7e: e007 b.n 8002e90 + 8002fa0: 2301 movs r3, #1 + 8002fa2: e007 b.n 8002fb4 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8002e80: 68fb ldr r3, [r7, #12] - 8002e82: 681b ldr r3, [r3, #0] - 8002e84: 695b ldr r3, [r3, #20] - 8002e86: f003 0304 and.w r3, r3, #4 - 8002e8a: 2b04 cmp r3, #4 - 8002e8c: d1ca bne.n 8002e24 + 8002fa4: 68fb ldr r3, [r7, #12] + 8002fa6: 681b ldr r3, [r3, #0] + 8002fa8: 695b ldr r3, [r3, #20] + 8002faa: f003 0304 and.w r3, r3, #4 + 8002fae: 2b04 cmp r3, #4 + 8002fb0: d1ca bne.n 8002f48 } } } return HAL_OK; - 8002e8e: 2300 movs r3, #0 + 8002fb2: 2300 movs r3, #0 } - 8002e90: 4618 mov r0, r3 - 8002e92: 3710 adds r7, #16 - 8002e94: 46bd mov sp, r7 - 8002e96: bd80 pop {r7, pc} + 8002fb4: 4618 mov r0, r3 + 8002fb6: 3710 adds r7, #16 + 8002fb8: 46bd mov sp, r7 + 8002fba: bd80 pop {r7, pc} -08002e98 : +08002fbc : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnRXNEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002e98: b580 push {r7, lr} - 8002e9a: b084 sub sp, #16 - 8002e9c: af00 add r7, sp, #0 - 8002e9e: 60f8 str r0, [r7, #12] - 8002ea0: 60b9 str r1, [r7, #8] - 8002ea2: 607a str r2, [r7, #4] + 8002fbc: b580 push {r7, lr} + 8002fbe: b084 sub sp, #16 + 8002fc0: af00 add r7, sp, #0 + 8002fc2: 60f8 str r0, [r7, #12] + 8002fc4: 60b9 str r1, [r7, #8] + 8002fc6: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 8002ea4: e042 b.n 8002f2c + 8002fc8: e042 b.n 8003050 { /* Check if a STOPF is detected */ if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == SET) - 8002ea6: 68fb ldr r3, [r7, #12] - 8002ea8: 681b ldr r3, [r3, #0] - 8002eaa: 695b ldr r3, [r3, #20] - 8002eac: f003 0310 and.w r3, r3, #16 - 8002eb0: 2b10 cmp r3, #16 - 8002eb2: d119 bne.n 8002ee8 + 8002fca: 68fb ldr r3, [r7, #12] + 8002fcc: 681b ldr r3, [r3, #0] + 8002fce: 695b ldr r3, [r3, #20] + 8002fd0: f003 0310 and.w r3, r3, #16 + 8002fd4: 2b10 cmp r3, #16 + 8002fd6: d119 bne.n 800300c { /* Clear STOP Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); - 8002eb4: 68fb ldr r3, [r7, #12] - 8002eb6: 681b ldr r3, [r3, #0] - 8002eb8: f06f 0210 mvn.w r2, #16 - 8002ebc: 615a str r2, [r3, #20] + 8002fd8: 68fb ldr r3, [r7, #12] + 8002fda: 681b ldr r3, [r3, #0] + 8002fdc: f06f 0210 mvn.w r2, #16 + 8002fe0: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002ebe: 68fb ldr r3, [r7, #12] - 8002ec0: 2200 movs r2, #0 - 8002ec2: 631a str r2, [r3, #48] ; 0x30 + 8002fe2: 68fb ldr r3, [r7, #12] + 8002fe4: 2200 movs r2, #0 + 8002fe6: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002ec4: 68fb ldr r3, [r7, #12] - 8002ec6: 2220 movs r2, #32 - 8002ec8: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002fe8: 68fb ldr r3, [r7, #12] + 8002fea: 2220 movs r2, #32 + 8002fec: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002ecc: 68fb ldr r3, [r7, #12] - 8002ece: 2200 movs r2, #0 - 8002ed0: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002ff0: 68fb ldr r3, [r7, #12] + 8002ff2: 2200 movs r2, #0 + 8002ff4: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_NONE; - 8002ed4: 68fb ldr r3, [r7, #12] - 8002ed6: 6c1a ldr r2, [r3, #64] ; 0x40 - 8002ed8: 68fb ldr r3, [r7, #12] - 8002eda: 641a str r2, [r3, #64] ; 0x40 + 8002ff8: 68fb ldr r3, [r7, #12] + 8002ffa: 6c1a ldr r2, [r3, #64] ; 0x40 + 8002ffc: 68fb ldr r3, [r7, #12] + 8002ffe: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002edc: 68fb ldr r3, [r7, #12] - 8002ede: 2200 movs r2, #0 - 8002ee0: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8003000: 68fb ldr r3, [r7, #12] + 8003002: 2200 movs r2, #0 + 8003004: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002ee4: 2301 movs r3, #1 - 8002ee6: e029 b.n 8002f3c + 8003008: 2301 movs r3, #1 + 800300a: e029 b.n 8003060 } /* Check for the Timeout */ if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002ee8: f7fe fd84 bl 80019f4 - 8002eec: 4602 mov r2, r0 - 8002eee: 687b ldr r3, [r7, #4] - 8002ef0: 1ad3 subs r3, r2, r3 - 8002ef2: 68ba ldr r2, [r7, #8] - 8002ef4: 429a cmp r2, r3 - 8002ef6: d302 bcc.n 8002efe - 8002ef8: 68bb ldr r3, [r7, #8] - 8002efa: 2b00 cmp r3, #0 - 8002efc: d116 bne.n 8002f2c + 800300c: f7fe fd5a bl 8001ac4 + 8003010: 4602 mov r2, r0 + 8003012: 687b ldr r3, [r7, #4] + 8003014: 1ad3 subs r3, r2, r3 + 8003016: 68ba ldr r2, [r7, #8] + 8003018: 429a cmp r2, r3 + 800301a: d302 bcc.n 8003022 + 800301c: 68bb ldr r3, [r7, #8] + 800301e: 2b00 cmp r3, #0 + 8003020: d116 bne.n 8003050 { hi2c->PreviousState = I2C_STATE_NONE; - 8002efe: 68fb ldr r3, [r7, #12] - 8002f00: 2200 movs r2, #0 - 8002f02: 631a str r2, [r3, #48] ; 0x30 + 8003022: 68fb ldr r3, [r7, #12] + 8003024: 2200 movs r2, #0 + 8003026: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002f04: 68fb ldr r3, [r7, #12] - 8002f06: 2220 movs r2, #32 - 8002f08: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8003028: 68fb ldr r3, [r7, #12] + 800302a: 2220 movs r2, #32 + 800302c: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002f0c: 68fb ldr r3, [r7, #12] - 8002f0e: 2200 movs r2, #0 - 8002f10: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8003030: 68fb ldr r3, [r7, #12] + 8003032: 2200 movs r2, #0 + 8003034: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002f14: 68fb ldr r3, [r7, #12] - 8002f16: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002f18: f043 0220 orr.w r2, r3, #32 - 8002f1c: 68fb ldr r3, [r7, #12] - 8002f1e: 641a str r2, [r3, #64] ; 0x40 + 8003038: 68fb ldr r3, [r7, #12] + 800303a: 6c1b ldr r3, [r3, #64] ; 0x40 + 800303c: f043 0220 orr.w r2, r3, #32 + 8003040: 68fb ldr r3, [r7, #12] + 8003042: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002f20: 68fb ldr r3, [r7, #12] - 8002f22: 2200 movs r2, #0 - 8002f24: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8003044: 68fb ldr r3, [r7, #12] + 8003046: 2200 movs r2, #0 + 8003048: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002f28: 2301 movs r3, #1 - 8002f2a: e007 b.n 8002f3c + 800304c: 2301 movs r3, #1 + 800304e: e007 b.n 8003060 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 8002f2c: 68fb ldr r3, [r7, #12] - 8002f2e: 681b ldr r3, [r3, #0] - 8002f30: 695b ldr r3, [r3, #20] - 8002f32: f003 0340 and.w r3, r3, #64 ; 0x40 - 8002f36: 2b40 cmp r3, #64 ; 0x40 - 8002f38: d1b5 bne.n 8002ea6 + 8003050: 68fb ldr r3, [r7, #12] + 8003052: 681b ldr r3, [r3, #0] + 8003054: 695b ldr r3, [r3, #20] + 8003056: f003 0340 and.w r3, r3, #64 ; 0x40 + 800305a: 2b40 cmp r3, #64 ; 0x40 + 800305c: d1b5 bne.n 8002fca } } return HAL_OK; - 8002f3a: 2300 movs r3, #0 + 800305e: 2300 movs r3, #0 } - 8002f3c: 4618 mov r0, r3 - 8002f3e: 3710 adds r7, #16 - 8002f40: 46bd mov sp, r7 - 8002f42: bd80 pop {r7, pc} + 8003060: 4618 mov r0, r3 + 8003062: 3710 adds r7, #16 + 8003064: 46bd mov sp, r7 + 8003066: bd80 pop {r7, pc} -08002f44 : +08003068 : * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains * the configuration information for the specified I2C. * @retval HAL status */ static HAL_StatusTypeDef I2C_IsAcknowledgeFailed(I2C_HandleTypeDef *hi2c) { - 8002f44: b480 push {r7} - 8002f46: b083 sub sp, #12 - 8002f48: af00 add r7, sp, #0 - 8002f4a: 6078 str r0, [r7, #4] + 8003068: b480 push {r7} + 800306a: b083 sub sp, #12 + 800306c: af00 add r7, sp, #0 + 800306e: 6078 str r0, [r7, #4] if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 8002f4c: 687b ldr r3, [r7, #4] - 8002f4e: 681b ldr r3, [r3, #0] - 8002f50: 695b ldr r3, [r3, #20] - 8002f52: f403 6380 and.w r3, r3, #1024 ; 0x400 - 8002f56: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8002f5a: d11b bne.n 8002f94 + 8003070: 687b ldr r3, [r7, #4] + 8003072: 681b ldr r3, [r3, #0] + 8003074: 695b ldr r3, [r3, #20] + 8003076: f403 6380 and.w r3, r3, #1024 ; 0x400 + 800307a: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 800307e: d11b bne.n 80030b8 { /* Clear NACKF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 8002f5c: 687b ldr r3, [r7, #4] - 8002f5e: 681b ldr r3, [r3, #0] - 8002f60: f46f 6280 mvn.w r2, #1024 ; 0x400 - 8002f64: 615a str r2, [r3, #20] + 8003080: 687b ldr r3, [r7, #4] + 8003082: 681b ldr r3, [r3, #0] + 8003084: f46f 6280 mvn.w r2, #1024 ; 0x400 + 8003088: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002f66: 687b ldr r3, [r7, #4] - 8002f68: 2200 movs r2, #0 - 8002f6a: 631a str r2, [r3, #48] ; 0x30 + 800308a: 687b ldr r3, [r7, #4] + 800308c: 2200 movs r2, #0 + 800308e: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002f6c: 687b ldr r3, [r7, #4] - 8002f6e: 2220 movs r2, #32 - 8002f70: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8003090: 687b ldr r3, [r7, #4] + 8003092: 2220 movs r2, #32 + 8003094: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002f74: 687b ldr r3, [r7, #4] - 8002f76: 2200 movs r2, #0 - 8002f78: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8003098: 687b ldr r3, [r7, #4] + 800309a: 2200 movs r2, #0 + 800309c: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8002f7c: 687b ldr r3, [r7, #4] - 8002f7e: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002f80: f043 0204 orr.w r2, r3, #4 - 8002f84: 687b ldr r3, [r7, #4] - 8002f86: 641a str r2, [r3, #64] ; 0x40 + 80030a0: 687b ldr r3, [r7, #4] + 80030a2: 6c1b ldr r3, [r3, #64] ; 0x40 + 80030a4: f043 0204 orr.w r2, r3, #4 + 80030a8: 687b ldr r3, [r7, #4] + 80030aa: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002f88: 687b ldr r3, [r7, #4] - 8002f8a: 2200 movs r2, #0 - 8002f8c: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80030ac: 687b ldr r3, [r7, #4] + 80030ae: 2200 movs r2, #0 + 80030b0: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002f90: 2301 movs r3, #1 - 8002f92: e000 b.n 8002f96 + 80030b4: 2301 movs r3, #1 + 80030b6: e000 b.n 80030ba } return HAL_OK; - 8002f94: 2300 movs r3, #0 + 80030b8: 2300 movs r3, #0 } - 8002f96: 4618 mov r0, r3 - 8002f98: 370c adds r7, #12 - 8002f9a: 46bd mov sp, r7 - 8002f9c: bc80 pop {r7} - 8002f9e: 4770 bx lr + 80030ba: 4618 mov r0, r3 + 80030bc: 370c adds r7, #12 + 80030be: 46bd mov sp, r7 + 80030c0: bc80 pop {r7} + 80030c2: 4770 bx lr -08002fa0 : +080030c4 : * supported by this macro. User should request a transition to HSE Off * first and then HSE On or HSE Bypass. * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) { - 8002fa0: b580 push {r7, lr} - 8002fa2: b086 sub sp, #24 - 8002fa4: af00 add r7, sp, #0 - 8002fa6: 6078 str r0, [r7, #4] + 80030c4: b580 push {r7, lr} + 80030c6: b086 sub sp, #24 + 80030c8: af00 add r7, sp, #0 + 80030ca: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 8002fa8: 687b ldr r3, [r7, #4] - 8002faa: 2b00 cmp r3, #0 - 8002fac: d101 bne.n 8002fb2 + 80030cc: 687b ldr r3, [r7, #4] + 80030ce: 2b00 cmp r3, #0 + 80030d0: d101 bne.n 80030d6 { return HAL_ERROR; - 8002fae: 2301 movs r3, #1 - 8002fb0: e26c b.n 800348c + 80030d2: 2301 movs r3, #1 + 80030d4: e26c b.n 80035b0 /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8002fb2: 687b ldr r3, [r7, #4] - 8002fb4: 681b ldr r3, [r3, #0] - 8002fb6: f003 0301 and.w r3, r3, #1 - 8002fba: 2b00 cmp r3, #0 - 8002fbc: f000 8087 beq.w 80030ce + 80030d6: 687b ldr r3, [r7, #4] + 80030d8: 681b ldr r3, [r3, #0] + 80030da: f003 0301 and.w r3, r3, #1 + 80030de: 2b00 cmp r3, #0 + 80030e0: f000 8087 beq.w 80031f2 { /* Check the parameters */ assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); /* When the HSE is used as system clock or clock source for PLL in these cases it is not allowed to be disabled */ if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSE) - 8002fc0: 4b92 ldr r3, [pc, #584] ; (800320c ) - 8002fc2: 685b ldr r3, [r3, #4] - 8002fc4: f003 030c and.w r3, r3, #12 - 8002fc8: 2b04 cmp r3, #4 - 8002fca: d00c beq.n 8002fe6 + 80030e4: 4b92 ldr r3, [pc, #584] ; (8003330 ) + 80030e6: 685b ldr r3, [r3, #4] + 80030e8: f003 030c and.w r3, r3, #12 + 80030ec: 2b04 cmp r3, #4 + 80030ee: d00c beq.n 800310a || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE))) - 8002fcc: 4b8f ldr r3, [pc, #572] ; (800320c ) - 8002fce: 685b ldr r3, [r3, #4] - 8002fd0: f003 030c and.w r3, r3, #12 - 8002fd4: 2b08 cmp r3, #8 - 8002fd6: d112 bne.n 8002ffe - 8002fd8: 4b8c ldr r3, [pc, #560] ; (800320c ) - 8002fda: 685b ldr r3, [r3, #4] - 8002fdc: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8002fe0: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8002fe4: d10b bne.n 8002ffe + 80030f0: 4b8f ldr r3, [pc, #572] ; (8003330 ) + 80030f2: 685b ldr r3, [r3, #4] + 80030f4: f003 030c and.w r3, r3, #12 + 80030f8: 2b08 cmp r3, #8 + 80030fa: d112 bne.n 8003122 + 80030fc: 4b8c ldr r3, [pc, #560] ; (8003330 ) + 80030fe: 685b ldr r3, [r3, #4] + 8003100: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8003104: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 8003108: d10b bne.n 8003122 { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8002fe6: 4b89 ldr r3, [pc, #548] ; (800320c ) - 8002fe8: 681b ldr r3, [r3, #0] - 8002fea: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8002fee: 2b00 cmp r3, #0 - 8002ff0: d06c beq.n 80030cc - 8002ff2: 687b ldr r3, [r7, #4] - 8002ff4: 685b ldr r3, [r3, #4] - 8002ff6: 2b00 cmp r3, #0 - 8002ff8: d168 bne.n 80030cc + 800310a: 4b89 ldr r3, [pc, #548] ; (8003330 ) + 800310c: 681b ldr r3, [r3, #0] + 800310e: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8003112: 2b00 cmp r3, #0 + 8003114: d06c beq.n 80031f0 + 8003116: 687b ldr r3, [r7, #4] + 8003118: 685b ldr r3, [r3, #4] + 800311a: 2b00 cmp r3, #0 + 800311c: d168 bne.n 80031f0 { return HAL_ERROR; - 8002ffa: 2301 movs r3, #1 - 8002ffc: e246 b.n 800348c + 800311e: 2301 movs r3, #1 + 8003120: e246 b.n 80035b0 } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8002ffe: 687b ldr r3, [r7, #4] - 8003000: 685b ldr r3, [r3, #4] - 8003002: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8003006: d106 bne.n 8003016 - 8003008: 4b80 ldr r3, [pc, #512] ; (800320c ) - 800300a: 681b ldr r3, [r3, #0] - 800300c: 4a7f ldr r2, [pc, #508] ; (800320c ) - 800300e: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8003012: 6013 str r3, [r2, #0] - 8003014: e02e b.n 8003074 - 8003016: 687b ldr r3, [r7, #4] - 8003018: 685b ldr r3, [r3, #4] - 800301a: 2b00 cmp r3, #0 - 800301c: d10c bne.n 8003038 - 800301e: 4b7b ldr r3, [pc, #492] ; (800320c ) - 8003020: 681b ldr r3, [r3, #0] - 8003022: 4a7a ldr r2, [pc, #488] ; (800320c ) - 8003024: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 8003028: 6013 str r3, [r2, #0] - 800302a: 4b78 ldr r3, [pc, #480] ; (800320c ) - 800302c: 681b ldr r3, [r3, #0] - 800302e: 4a77 ldr r2, [pc, #476] ; (800320c ) - 8003030: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 8003034: 6013 str r3, [r2, #0] - 8003036: e01d b.n 8003074 - 8003038: 687b ldr r3, [r7, #4] - 800303a: 685b ldr r3, [r3, #4] - 800303c: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 - 8003040: d10c bne.n 800305c - 8003042: 4b72 ldr r3, [pc, #456] ; (800320c ) - 8003044: 681b ldr r3, [r3, #0] - 8003046: 4a71 ldr r2, [pc, #452] ; (800320c ) - 8003048: f443 2380 orr.w r3, r3, #262144 ; 0x40000 - 800304c: 6013 str r3, [r2, #0] - 800304e: 4b6f ldr r3, [pc, #444] ; (800320c ) - 8003050: 681b ldr r3, [r3, #0] - 8003052: 4a6e ldr r2, [pc, #440] ; (800320c ) - 8003054: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8003058: 6013 str r3, [r2, #0] - 800305a: e00b b.n 8003074 - 800305c: 4b6b ldr r3, [pc, #428] ; (800320c ) - 800305e: 681b ldr r3, [r3, #0] - 8003060: 4a6a ldr r2, [pc, #424] ; (800320c ) - 8003062: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 8003066: 6013 str r3, [r2, #0] - 8003068: 4b68 ldr r3, [pc, #416] ; (800320c ) - 800306a: 681b ldr r3, [r3, #0] - 800306c: 4a67 ldr r2, [pc, #412] ; (800320c ) - 800306e: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 8003072: 6013 str r3, [r2, #0] + 8003122: 687b ldr r3, [r7, #4] + 8003124: 685b ldr r3, [r3, #4] + 8003126: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 800312a: d106 bne.n 800313a + 800312c: 4b80 ldr r3, [pc, #512] ; (8003330 ) + 800312e: 681b ldr r3, [r3, #0] + 8003130: 4a7f ldr r2, [pc, #508] ; (8003330 ) + 8003132: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8003136: 6013 str r3, [r2, #0] + 8003138: e02e b.n 8003198 + 800313a: 687b ldr r3, [r7, #4] + 800313c: 685b ldr r3, [r3, #4] + 800313e: 2b00 cmp r3, #0 + 8003140: d10c bne.n 800315c + 8003142: 4b7b ldr r3, [pc, #492] ; (8003330 ) + 8003144: 681b ldr r3, [r3, #0] + 8003146: 4a7a ldr r2, [pc, #488] ; (8003330 ) + 8003148: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 800314c: 6013 str r3, [r2, #0] + 800314e: 4b78 ldr r3, [pc, #480] ; (8003330 ) + 8003150: 681b ldr r3, [r3, #0] + 8003152: 4a77 ldr r2, [pc, #476] ; (8003330 ) + 8003154: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 8003158: 6013 str r3, [r2, #0] + 800315a: e01d b.n 8003198 + 800315c: 687b ldr r3, [r7, #4] + 800315e: 685b ldr r3, [r3, #4] + 8003160: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 + 8003164: d10c bne.n 8003180 + 8003166: 4b72 ldr r3, [pc, #456] ; (8003330 ) + 8003168: 681b ldr r3, [r3, #0] + 800316a: 4a71 ldr r2, [pc, #452] ; (8003330 ) + 800316c: f443 2380 orr.w r3, r3, #262144 ; 0x40000 + 8003170: 6013 str r3, [r2, #0] + 8003172: 4b6f ldr r3, [pc, #444] ; (8003330 ) + 8003174: 681b ldr r3, [r3, #0] + 8003176: 4a6e ldr r2, [pc, #440] ; (8003330 ) + 8003178: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 800317c: 6013 str r3, [r2, #0] + 800317e: e00b b.n 8003198 + 8003180: 4b6b ldr r3, [pc, #428] ; (8003330 ) + 8003182: 681b ldr r3, [r3, #0] + 8003184: 4a6a ldr r2, [pc, #424] ; (8003330 ) + 8003186: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 800318a: 6013 str r3, [r2, #0] + 800318c: 4b68 ldr r3, [pc, #416] ; (8003330 ) + 800318e: 681b ldr r3, [r3, #0] + 8003190: 4a67 ldr r2, [pc, #412] ; (8003330 ) + 8003192: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 8003196: 6013 str r3, [r2, #0] /* Check the HSE State */ if (RCC_OscInitStruct->HSEState != RCC_HSE_OFF) - 8003074: 687b ldr r3, [r7, #4] - 8003076: 685b ldr r3, [r3, #4] - 8003078: 2b00 cmp r3, #0 - 800307a: d013 beq.n 80030a4 + 8003198: 687b ldr r3, [r7, #4] + 800319a: 685b ldr r3, [r3, #4] + 800319c: 2b00 cmp r3, #0 + 800319e: d013 beq.n 80031c8 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800307c: f7fe fcba bl 80019f4 - 8003080: 6138 str r0, [r7, #16] + 80031a0: f7fe fc90 bl 8001ac4 + 80031a4: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8003082: e008 b.n 8003096 + 80031a6: e008 b.n 80031ba { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8003084: f7fe fcb6 bl 80019f4 - 8003088: 4602 mov r2, r0 - 800308a: 693b ldr r3, [r7, #16] - 800308c: 1ad3 subs r3, r2, r3 - 800308e: 2b64 cmp r3, #100 ; 0x64 - 8003090: d901 bls.n 8003096 + 80031a8: f7fe fc8c bl 8001ac4 + 80031ac: 4602 mov r2, r0 + 80031ae: 693b ldr r3, [r7, #16] + 80031b0: 1ad3 subs r3, r2, r3 + 80031b2: 2b64 cmp r3, #100 ; 0x64 + 80031b4: d901 bls.n 80031ba { return HAL_TIMEOUT; - 8003092: 2303 movs r3, #3 - 8003094: e1fa b.n 800348c + 80031b6: 2303 movs r3, #3 + 80031b8: e1fa b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8003096: 4b5d ldr r3, [pc, #372] ; (800320c ) - 8003098: 681b ldr r3, [r3, #0] - 800309a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 800309e: 2b00 cmp r3, #0 - 80030a0: d0f0 beq.n 8003084 - 80030a2: e014 b.n 80030ce + 80031ba: 4b5d ldr r3, [pc, #372] ; (8003330 ) + 80031bc: 681b ldr r3, [r3, #0] + 80031be: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 80031c2: 2b00 cmp r3, #0 + 80031c4: d0f0 beq.n 80031a8 + 80031c6: e014 b.n 80031f2 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 80030a4: f7fe fca6 bl 80019f4 - 80030a8: 6138 str r0, [r7, #16] + 80031c8: f7fe fc7c bl 8001ac4 + 80031cc: 6138 str r0, [r7, #16] /* Wait till HSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 80030aa: e008 b.n 80030be + 80031ce: e008 b.n 80031e2 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 80030ac: f7fe fca2 bl 80019f4 - 80030b0: 4602 mov r2, r0 - 80030b2: 693b ldr r3, [r7, #16] - 80030b4: 1ad3 subs r3, r2, r3 - 80030b6: 2b64 cmp r3, #100 ; 0x64 - 80030b8: d901 bls.n 80030be + 80031d0: f7fe fc78 bl 8001ac4 + 80031d4: 4602 mov r2, r0 + 80031d6: 693b ldr r3, [r7, #16] + 80031d8: 1ad3 subs r3, r2, r3 + 80031da: 2b64 cmp r3, #100 ; 0x64 + 80031dc: d901 bls.n 80031e2 { return HAL_TIMEOUT; - 80030ba: 2303 movs r3, #3 - 80030bc: e1e6 b.n 800348c + 80031de: 2303 movs r3, #3 + 80031e0: e1e6 b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 80030be: 4b53 ldr r3, [pc, #332] ; (800320c ) - 80030c0: 681b ldr r3, [r3, #0] - 80030c2: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 80030c6: 2b00 cmp r3, #0 - 80030c8: d1f0 bne.n 80030ac - 80030ca: e000 b.n 80030ce + 80031e2: 4b53 ldr r3, [pc, #332] ; (8003330 ) + 80031e4: 681b ldr r3, [r3, #0] + 80031e6: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 80031ea: 2b00 cmp r3, #0 + 80031ec: d1f0 bne.n 80031d0 + 80031ee: e000 b.n 80031f2 if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 80030cc: bf00 nop + 80031f0: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 80030ce: 687b ldr r3, [r7, #4] - 80030d0: 681b ldr r3, [r3, #0] - 80030d2: f003 0302 and.w r3, r3, #2 - 80030d6: 2b00 cmp r3, #0 - 80030d8: d063 beq.n 80031a2 + 80031f2: 687b ldr r3, [r7, #4] + 80031f4: 681b ldr r3, [r3, #0] + 80031f6: f003 0302 and.w r3, r3, #2 + 80031fa: 2b00 cmp r3, #0 + 80031fc: d063 beq.n 80032c6 /* Check the parameters */ assert_param(IS_RCC_HSI(RCC_OscInitStruct->HSIState)); assert_param(IS_RCC_CALIBRATION_VALUE(RCC_OscInitStruct->HSICalibrationValue)); /* Check if HSI is used as system clock or as PLL source when PLL is selected as system clock */ if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSI) - 80030da: 4b4c ldr r3, [pc, #304] ; (800320c ) - 80030dc: 685b ldr r3, [r3, #4] - 80030de: f003 030c and.w r3, r3, #12 - 80030e2: 2b00 cmp r3, #0 - 80030e4: d00b beq.n 80030fe + 80031fe: 4b4c ldr r3, [pc, #304] ; (8003330 ) + 8003200: 685b ldr r3, [r3, #4] + 8003202: f003 030c and.w r3, r3, #12 + 8003206: 2b00 cmp r3, #0 + 8003208: d00b beq.n 8003222 || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI_DIV2))) - 80030e6: 4b49 ldr r3, [pc, #292] ; (800320c ) - 80030e8: 685b ldr r3, [r3, #4] - 80030ea: f003 030c and.w r3, r3, #12 - 80030ee: 2b08 cmp r3, #8 - 80030f0: d11c bne.n 800312c - 80030f2: 4b46 ldr r3, [pc, #280] ; (800320c ) - 80030f4: 685b ldr r3, [r3, #4] - 80030f6: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 80030fa: 2b00 cmp r3, #0 - 80030fc: d116 bne.n 800312c + 800320a: 4b49 ldr r3, [pc, #292] ; (8003330 ) + 800320c: 685b ldr r3, [r3, #4] + 800320e: f003 030c and.w r3, r3, #12 + 8003212: 2b08 cmp r3, #8 + 8003214: d11c bne.n 8003250 + 8003216: 4b46 ldr r3, [pc, #280] ; (8003330 ) + 8003218: 685b ldr r3, [r3, #4] + 800321a: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 800321e: 2b00 cmp r3, #0 + 8003220: d116 bne.n 8003250 { /* When HSI is used as system clock it will not disabled */ if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 80030fe: 4b43 ldr r3, [pc, #268] ; (800320c ) - 8003100: 681b ldr r3, [r3, #0] - 8003102: f003 0302 and.w r3, r3, #2 - 8003106: 2b00 cmp r3, #0 - 8003108: d005 beq.n 8003116 - 800310a: 687b ldr r3, [r7, #4] - 800310c: 691b ldr r3, [r3, #16] - 800310e: 2b01 cmp r3, #1 - 8003110: d001 beq.n 8003116 + 8003222: 4b43 ldr r3, [pc, #268] ; (8003330 ) + 8003224: 681b ldr r3, [r3, #0] + 8003226: f003 0302 and.w r3, r3, #2 + 800322a: 2b00 cmp r3, #0 + 800322c: d005 beq.n 800323a + 800322e: 687b ldr r3, [r7, #4] + 8003230: 691b ldr r3, [r3, #16] + 8003232: 2b01 cmp r3, #1 + 8003234: d001 beq.n 800323a { return HAL_ERROR; - 8003112: 2301 movs r3, #1 - 8003114: e1ba b.n 800348c + 8003236: 2301 movs r3, #1 + 8003238: e1ba b.n 80035b0 } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8003116: 4b3d ldr r3, [pc, #244] ; (800320c ) - 8003118: 681b ldr r3, [r3, #0] - 800311a: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 800311e: 687b ldr r3, [r7, #4] - 8003120: 695b ldr r3, [r3, #20] - 8003122: 00db lsls r3, r3, #3 - 8003124: 4939 ldr r1, [pc, #228] ; (800320c ) - 8003126: 4313 orrs r3, r2 - 8003128: 600b str r3, [r1, #0] + 800323a: 4b3d ldr r3, [pc, #244] ; (8003330 ) + 800323c: 681b ldr r3, [r3, #0] + 800323e: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8003242: 687b ldr r3, [r7, #4] + 8003244: 695b ldr r3, [r3, #20] + 8003246: 00db lsls r3, r3, #3 + 8003248: 4939 ldr r1, [pc, #228] ; (8003330 ) + 800324a: 4313 orrs r3, r2 + 800324c: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 800312a: e03a b.n 80031a2 + 800324e: e03a b.n 80032c6 } } else { /* Check the HSI State */ if (RCC_OscInitStruct->HSIState != RCC_HSI_OFF) - 800312c: 687b ldr r3, [r7, #4] - 800312e: 691b ldr r3, [r3, #16] - 8003130: 2b00 cmp r3, #0 - 8003132: d020 beq.n 8003176 + 8003250: 687b ldr r3, [r7, #4] + 8003252: 691b ldr r3, [r3, #16] + 8003254: 2b00 cmp r3, #0 + 8003256: d020 beq.n 800329a { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 8003134: 4b36 ldr r3, [pc, #216] ; (8003210 ) - 8003136: 2201 movs r2, #1 - 8003138: 601a str r2, [r3, #0] + 8003258: 4b36 ldr r3, [pc, #216] ; (8003334 ) + 800325a: 2201 movs r2, #1 + 800325c: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800313a: f7fe fc5b bl 80019f4 - 800313e: 6138 str r0, [r7, #16] + 800325e: f7fe fc31 bl 8001ac4 + 8003262: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8003140: e008 b.n 8003154 + 8003264: e008 b.n 8003278 { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8003142: f7fe fc57 bl 80019f4 - 8003146: 4602 mov r2, r0 - 8003148: 693b ldr r3, [r7, #16] - 800314a: 1ad3 subs r3, r2, r3 - 800314c: 2b02 cmp r3, #2 - 800314e: d901 bls.n 8003154 + 8003266: f7fe fc2d bl 8001ac4 + 800326a: 4602 mov r2, r0 + 800326c: 693b ldr r3, [r7, #16] + 800326e: 1ad3 subs r3, r2, r3 + 8003270: 2b02 cmp r3, #2 + 8003272: d901 bls.n 8003278 { return HAL_TIMEOUT; - 8003150: 2303 movs r3, #3 - 8003152: e19b b.n 800348c + 8003274: 2303 movs r3, #3 + 8003276: e19b b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8003154: 4b2d ldr r3, [pc, #180] ; (800320c ) - 8003156: 681b ldr r3, [r3, #0] - 8003158: f003 0302 and.w r3, r3, #2 - 800315c: 2b00 cmp r3, #0 - 800315e: d0f0 beq.n 8003142 + 8003278: 4b2d ldr r3, [pc, #180] ; (8003330 ) + 800327a: 681b ldr r3, [r3, #0] + 800327c: f003 0302 and.w r3, r3, #2 + 8003280: 2b00 cmp r3, #0 + 8003282: d0f0 beq.n 8003266 } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8003160: 4b2a ldr r3, [pc, #168] ; (800320c ) - 8003162: 681b ldr r3, [r3, #0] - 8003164: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8003168: 687b ldr r3, [r7, #4] - 800316a: 695b ldr r3, [r3, #20] - 800316c: 00db lsls r3, r3, #3 - 800316e: 4927 ldr r1, [pc, #156] ; (800320c ) - 8003170: 4313 orrs r3, r2 - 8003172: 600b str r3, [r1, #0] - 8003174: e015 b.n 80031a2 + 8003284: 4b2a ldr r3, [pc, #168] ; (8003330 ) + 8003286: 681b ldr r3, [r3, #0] + 8003288: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 800328c: 687b ldr r3, [r7, #4] + 800328e: 695b ldr r3, [r3, #20] + 8003290: 00db lsls r3, r3, #3 + 8003292: 4927 ldr r1, [pc, #156] ; (8003330 ) + 8003294: 4313 orrs r3, r2 + 8003296: 600b str r3, [r1, #0] + 8003298: e015 b.n 80032c6 } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 8003176: 4b26 ldr r3, [pc, #152] ; (8003210 ) - 8003178: 2200 movs r2, #0 - 800317a: 601a str r2, [r3, #0] + 800329a: 4b26 ldr r3, [pc, #152] ; (8003334 ) + 800329c: 2200 movs r2, #0 + 800329e: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800317c: f7fe fc3a bl 80019f4 - 8003180: 6138 str r0, [r7, #16] + 80032a0: f7fe fc10 bl 8001ac4 + 80032a4: 6138 str r0, [r7, #16] /* Wait till HSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8003182: e008 b.n 8003196 + 80032a6: e008 b.n 80032ba { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8003184: f7fe fc36 bl 80019f4 - 8003188: 4602 mov r2, r0 - 800318a: 693b ldr r3, [r7, #16] - 800318c: 1ad3 subs r3, r2, r3 - 800318e: 2b02 cmp r3, #2 - 8003190: d901 bls.n 8003196 + 80032a8: f7fe fc0c bl 8001ac4 + 80032ac: 4602 mov r2, r0 + 80032ae: 693b ldr r3, [r7, #16] + 80032b0: 1ad3 subs r3, r2, r3 + 80032b2: 2b02 cmp r3, #2 + 80032b4: d901 bls.n 80032ba { return HAL_TIMEOUT; - 8003192: 2303 movs r3, #3 - 8003194: e17a b.n 800348c + 80032b6: 2303 movs r3, #3 + 80032b8: e17a b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8003196: 4b1d ldr r3, [pc, #116] ; (800320c ) - 8003198: 681b ldr r3, [r3, #0] - 800319a: f003 0302 and.w r3, r3, #2 - 800319e: 2b00 cmp r3, #0 - 80031a0: d1f0 bne.n 8003184 + 80032ba: 4b1d ldr r3, [pc, #116] ; (8003330 ) + 80032bc: 681b ldr r3, [r3, #0] + 80032be: f003 0302 and.w r3, r3, #2 + 80032c2: 2b00 cmp r3, #0 + 80032c4: d1f0 bne.n 80032a8 } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 80031a2: 687b ldr r3, [r7, #4] - 80031a4: 681b ldr r3, [r3, #0] - 80031a6: f003 0308 and.w r3, r3, #8 - 80031aa: 2b00 cmp r3, #0 - 80031ac: d03a beq.n 8003224 + 80032c6: 687b ldr r3, [r7, #4] + 80032c8: 681b ldr r3, [r3, #0] + 80032ca: f003 0308 and.w r3, r3, #8 + 80032ce: 2b00 cmp r3, #0 + 80032d0: d03a beq.n 8003348 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if (RCC_OscInitStruct->LSIState != RCC_LSI_OFF) - 80031ae: 687b ldr r3, [r7, #4] - 80031b0: 699b ldr r3, [r3, #24] - 80031b2: 2b00 cmp r3, #0 - 80031b4: d019 beq.n 80031ea + 80032d2: 687b ldr r3, [r7, #4] + 80032d4: 699b ldr r3, [r3, #24] + 80032d6: 2b00 cmp r3, #0 + 80032d8: d019 beq.n 800330e { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 80031b6: 4b17 ldr r3, [pc, #92] ; (8003214 ) - 80031b8: 2201 movs r2, #1 - 80031ba: 601a str r2, [r3, #0] + 80032da: 4b17 ldr r3, [pc, #92] ; (8003338 ) + 80032dc: 2201 movs r2, #1 + 80032de: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80031bc: f7fe fc1a bl 80019f4 - 80031c0: 6138 str r0, [r7, #16] + 80032e0: f7fe fbf0 bl 8001ac4 + 80032e4: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 80031c2: e008 b.n 80031d6 + 80032e6: e008 b.n 80032fa { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 80031c4: f7fe fc16 bl 80019f4 - 80031c8: 4602 mov r2, r0 - 80031ca: 693b ldr r3, [r7, #16] - 80031cc: 1ad3 subs r3, r2, r3 - 80031ce: 2b02 cmp r3, #2 - 80031d0: d901 bls.n 80031d6 + 80032e8: f7fe fbec bl 8001ac4 + 80032ec: 4602 mov r2, r0 + 80032ee: 693b ldr r3, [r7, #16] + 80032f0: 1ad3 subs r3, r2, r3 + 80032f2: 2b02 cmp r3, #2 + 80032f4: d901 bls.n 80032fa { return HAL_TIMEOUT; - 80031d2: 2303 movs r3, #3 - 80031d4: e15a b.n 800348c + 80032f6: 2303 movs r3, #3 + 80032f8: e15a b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 80031d6: 4b0d ldr r3, [pc, #52] ; (800320c ) - 80031d8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80031da: f003 0302 and.w r3, r3, #2 - 80031de: 2b00 cmp r3, #0 - 80031e0: d0f0 beq.n 80031c4 + 80032fa: 4b0d ldr r3, [pc, #52] ; (8003330 ) + 80032fc: 6a5b ldr r3, [r3, #36] ; 0x24 + 80032fe: f003 0302 and.w r3, r3, #2 + 8003302: 2b00 cmp r3, #0 + 8003304: d0f0 beq.n 80032e8 } } /* To have a fully stabilized clock in the specified range, a software delay of 1ms should be added.*/ RCC_Delay(1); - 80031e2: 2001 movs r0, #1 - 80031e4: f000 fac4 bl 8003770 - 80031e8: e01c b.n 8003224 + 8003306: 2001 movs r0, #1 + 8003308: f000 fac4 bl 8003894 + 800330c: e01c b.n 8003348 } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 80031ea: 4b0a ldr r3, [pc, #40] ; (8003214 ) - 80031ec: 2200 movs r2, #0 - 80031ee: 601a str r2, [r3, #0] + 800330e: 4b0a ldr r3, [pc, #40] ; (8003338 ) + 8003310: 2200 movs r2, #0 + 8003312: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80031f0: f7fe fc00 bl 80019f4 - 80031f4: 6138 str r0, [r7, #16] + 8003314: f7fe fbd6 bl 8001ac4 + 8003318: 6138 str r0, [r7, #16] /* Wait till LSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 80031f6: e00f b.n 8003218 + 800331a: e00f b.n 800333c { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 80031f8: f7fe fbfc bl 80019f4 - 80031fc: 4602 mov r2, r0 - 80031fe: 693b ldr r3, [r7, #16] - 8003200: 1ad3 subs r3, r2, r3 - 8003202: 2b02 cmp r3, #2 - 8003204: d908 bls.n 8003218 + 800331c: f7fe fbd2 bl 8001ac4 + 8003320: 4602 mov r2, r0 + 8003322: 693b ldr r3, [r7, #16] + 8003324: 1ad3 subs r3, r2, r3 + 8003326: 2b02 cmp r3, #2 + 8003328: d908 bls.n 800333c { return HAL_TIMEOUT; - 8003206: 2303 movs r3, #3 - 8003208: e140 b.n 800348c - 800320a: bf00 nop - 800320c: 40021000 .word 0x40021000 - 8003210: 42420000 .word 0x42420000 - 8003214: 42420480 .word 0x42420480 + 800332a: 2303 movs r3, #3 + 800332c: e140 b.n 80035b0 + 800332e: bf00 nop + 8003330: 40021000 .word 0x40021000 + 8003334: 42420000 .word 0x42420000 + 8003338: 42420480 .word 0x42420480 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8003218: 4b9e ldr r3, [pc, #632] ; (8003494 ) - 800321a: 6a5b ldr r3, [r3, #36] ; 0x24 - 800321c: f003 0302 and.w r3, r3, #2 - 8003220: 2b00 cmp r3, #0 - 8003222: d1e9 bne.n 80031f8 + 800333c: 4b9e ldr r3, [pc, #632] ; (80035b8 ) + 800333e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003340: f003 0302 and.w r3, r3, #2 + 8003344: 2b00 cmp r3, #0 + 8003346: d1e9 bne.n 800331c } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8003224: 687b ldr r3, [r7, #4] - 8003226: 681b ldr r3, [r3, #0] - 8003228: f003 0304 and.w r3, r3, #4 - 800322c: 2b00 cmp r3, #0 - 800322e: f000 80a6 beq.w 800337e + 8003348: 687b ldr r3, [r7, #4] + 800334a: 681b ldr r3, [r3, #0] + 800334c: f003 0304 and.w r3, r3, #4 + 8003350: 2b00 cmp r3, #0 + 8003352: f000 80a6 beq.w 80034a2 { FlagStatus pwrclkchanged = RESET; - 8003232: 2300 movs r3, #0 - 8003234: 75fb strb r3, [r7, #23] + 8003356: 2300 movs r3, #0 + 8003358: 75fb strb r3, [r7, #23] /* Check the parameters */ assert_param(IS_RCC_LSE(RCC_OscInitStruct->LSEState)); /* Update LSE configuration in Backup Domain control register */ /* Requires to enable write access to Backup Domain of necessary */ if (__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8003236: 4b97 ldr r3, [pc, #604] ; (8003494 ) - 8003238: 69db ldr r3, [r3, #28] - 800323a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 800323e: 2b00 cmp r3, #0 - 8003240: d10d bne.n 800325e + 800335a: 4b97 ldr r3, [pc, #604] ; (80035b8 ) + 800335c: 69db ldr r3, [r3, #28] + 800335e: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8003362: 2b00 cmp r3, #0 + 8003364: d10d bne.n 8003382 { __HAL_RCC_PWR_CLK_ENABLE(); - 8003242: 4b94 ldr r3, [pc, #592] ; (8003494 ) - 8003244: 69db ldr r3, [r3, #28] - 8003246: 4a93 ldr r2, [pc, #588] ; (8003494 ) - 8003248: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 800324c: 61d3 str r3, [r2, #28] - 800324e: 4b91 ldr r3, [pc, #580] ; (8003494 ) - 8003250: 69db ldr r3, [r3, #28] - 8003252: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8003256: 60bb str r3, [r7, #8] - 8003258: 68bb ldr r3, [r7, #8] + 8003366: 4b94 ldr r3, [pc, #592] ; (80035b8 ) + 8003368: 69db ldr r3, [r3, #28] + 800336a: 4a93 ldr r2, [pc, #588] ; (80035b8 ) + 800336c: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8003370: 61d3 str r3, [r2, #28] + 8003372: 4b91 ldr r3, [pc, #580] ; (80035b8 ) + 8003374: 69db ldr r3, [r3, #28] + 8003376: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 800337a: 60bb str r3, [r7, #8] + 800337c: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 800325a: 2301 movs r3, #1 - 800325c: 75fb strb r3, [r7, #23] + 800337e: 2301 movs r3, #1 + 8003380: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800325e: 4b8e ldr r3, [pc, #568] ; (8003498 ) - 8003260: 681b ldr r3, [r3, #0] - 8003262: f403 7380 and.w r3, r3, #256 ; 0x100 - 8003266: 2b00 cmp r3, #0 - 8003268: d118 bne.n 800329c + 8003382: 4b8e ldr r3, [pc, #568] ; (80035bc ) + 8003384: 681b ldr r3, [r3, #0] + 8003386: f403 7380 and.w r3, r3, #256 ; 0x100 + 800338a: 2b00 cmp r3, #0 + 800338c: d118 bne.n 80033c0 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 800326a: 4b8b ldr r3, [pc, #556] ; (8003498 ) - 800326c: 681b ldr r3, [r3, #0] - 800326e: 4a8a ldr r2, [pc, #552] ; (8003498 ) - 8003270: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8003274: 6013 str r3, [r2, #0] + 800338e: 4b8b ldr r3, [pc, #556] ; (80035bc ) + 8003390: 681b ldr r3, [r3, #0] + 8003392: 4a8a ldr r2, [pc, #552] ; (80035bc ) + 8003394: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8003398: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 8003276: f7fe fbbd bl 80019f4 - 800327a: 6138 str r0, [r7, #16] + 800339a: f7fe fb93 bl 8001ac4 + 800339e: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800327c: e008 b.n 8003290 + 80033a0: e008 b.n 80033b4 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 800327e: f7fe fbb9 bl 80019f4 - 8003282: 4602 mov r2, r0 - 8003284: 693b ldr r3, [r7, #16] - 8003286: 1ad3 subs r3, r2, r3 - 8003288: 2b64 cmp r3, #100 ; 0x64 - 800328a: d901 bls.n 8003290 + 80033a2: f7fe fb8f bl 8001ac4 + 80033a6: 4602 mov r2, r0 + 80033a8: 693b ldr r3, [r7, #16] + 80033aa: 1ad3 subs r3, r2, r3 + 80033ac: 2b64 cmp r3, #100 ; 0x64 + 80033ae: d901 bls.n 80033b4 { return HAL_TIMEOUT; - 800328c: 2303 movs r3, #3 - 800328e: e0fd b.n 800348c + 80033b0: 2303 movs r3, #3 + 80033b2: e0fd b.n 80035b0 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8003290: 4b81 ldr r3, [pc, #516] ; (8003498 ) - 8003292: 681b ldr r3, [r3, #0] - 8003294: f403 7380 and.w r3, r3, #256 ; 0x100 - 8003298: 2b00 cmp r3, #0 - 800329a: d0f0 beq.n 800327e + 80033b4: 4b81 ldr r3, [pc, #516] ; (80035bc ) + 80033b6: 681b ldr r3, [r3, #0] + 80033b8: f403 7380 and.w r3, r3, #256 ; 0x100 + 80033bc: 2b00 cmp r3, #0 + 80033be: d0f0 beq.n 80033a2 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 800329c: 687b ldr r3, [r7, #4] - 800329e: 68db ldr r3, [r3, #12] - 80032a0: 2b01 cmp r3, #1 - 80032a2: d106 bne.n 80032b2 - 80032a4: 4b7b ldr r3, [pc, #492] ; (8003494 ) - 80032a6: 6a1b ldr r3, [r3, #32] - 80032a8: 4a7a ldr r2, [pc, #488] ; (8003494 ) - 80032aa: f043 0301 orr.w r3, r3, #1 - 80032ae: 6213 str r3, [r2, #32] - 80032b0: e02d b.n 800330e - 80032b2: 687b ldr r3, [r7, #4] - 80032b4: 68db ldr r3, [r3, #12] - 80032b6: 2b00 cmp r3, #0 - 80032b8: d10c bne.n 80032d4 - 80032ba: 4b76 ldr r3, [pc, #472] ; (8003494 ) - 80032bc: 6a1b ldr r3, [r3, #32] - 80032be: 4a75 ldr r2, [pc, #468] ; (8003494 ) - 80032c0: f023 0301 bic.w r3, r3, #1 - 80032c4: 6213 str r3, [r2, #32] - 80032c6: 4b73 ldr r3, [pc, #460] ; (8003494 ) - 80032c8: 6a1b ldr r3, [r3, #32] - 80032ca: 4a72 ldr r2, [pc, #456] ; (8003494 ) - 80032cc: f023 0304 bic.w r3, r3, #4 - 80032d0: 6213 str r3, [r2, #32] - 80032d2: e01c b.n 800330e - 80032d4: 687b ldr r3, [r7, #4] - 80032d6: 68db ldr r3, [r3, #12] - 80032d8: 2b05 cmp r3, #5 - 80032da: d10c bne.n 80032f6 - 80032dc: 4b6d ldr r3, [pc, #436] ; (8003494 ) - 80032de: 6a1b ldr r3, [r3, #32] - 80032e0: 4a6c ldr r2, [pc, #432] ; (8003494 ) - 80032e2: f043 0304 orr.w r3, r3, #4 - 80032e6: 6213 str r3, [r2, #32] - 80032e8: 4b6a ldr r3, [pc, #424] ; (8003494 ) - 80032ea: 6a1b ldr r3, [r3, #32] - 80032ec: 4a69 ldr r2, [pc, #420] ; (8003494 ) - 80032ee: f043 0301 orr.w r3, r3, #1 - 80032f2: 6213 str r3, [r2, #32] - 80032f4: e00b b.n 800330e - 80032f6: 4b67 ldr r3, [pc, #412] ; (8003494 ) - 80032f8: 6a1b ldr r3, [r3, #32] - 80032fa: 4a66 ldr r2, [pc, #408] ; (8003494 ) - 80032fc: f023 0301 bic.w r3, r3, #1 - 8003300: 6213 str r3, [r2, #32] - 8003302: 4b64 ldr r3, [pc, #400] ; (8003494 ) - 8003304: 6a1b ldr r3, [r3, #32] - 8003306: 4a63 ldr r2, [pc, #396] ; (8003494 ) - 8003308: f023 0304 bic.w r3, r3, #4 - 800330c: 6213 str r3, [r2, #32] + 80033c0: 687b ldr r3, [r7, #4] + 80033c2: 68db ldr r3, [r3, #12] + 80033c4: 2b01 cmp r3, #1 + 80033c6: d106 bne.n 80033d6 + 80033c8: 4b7b ldr r3, [pc, #492] ; (80035b8 ) + 80033ca: 6a1b ldr r3, [r3, #32] + 80033cc: 4a7a ldr r2, [pc, #488] ; (80035b8 ) + 80033ce: f043 0301 orr.w r3, r3, #1 + 80033d2: 6213 str r3, [r2, #32] + 80033d4: e02d b.n 8003432 + 80033d6: 687b ldr r3, [r7, #4] + 80033d8: 68db ldr r3, [r3, #12] + 80033da: 2b00 cmp r3, #0 + 80033dc: d10c bne.n 80033f8 + 80033de: 4b76 ldr r3, [pc, #472] ; (80035b8 ) + 80033e0: 6a1b ldr r3, [r3, #32] + 80033e2: 4a75 ldr r2, [pc, #468] ; (80035b8 ) + 80033e4: f023 0301 bic.w r3, r3, #1 + 80033e8: 6213 str r3, [r2, #32] + 80033ea: 4b73 ldr r3, [pc, #460] ; (80035b8 ) + 80033ec: 6a1b ldr r3, [r3, #32] + 80033ee: 4a72 ldr r2, [pc, #456] ; (80035b8 ) + 80033f0: f023 0304 bic.w r3, r3, #4 + 80033f4: 6213 str r3, [r2, #32] + 80033f6: e01c b.n 8003432 + 80033f8: 687b ldr r3, [r7, #4] + 80033fa: 68db ldr r3, [r3, #12] + 80033fc: 2b05 cmp r3, #5 + 80033fe: d10c bne.n 800341a + 8003400: 4b6d ldr r3, [pc, #436] ; (80035b8 ) + 8003402: 6a1b ldr r3, [r3, #32] + 8003404: 4a6c ldr r2, [pc, #432] ; (80035b8 ) + 8003406: f043 0304 orr.w r3, r3, #4 + 800340a: 6213 str r3, [r2, #32] + 800340c: 4b6a ldr r3, [pc, #424] ; (80035b8 ) + 800340e: 6a1b ldr r3, [r3, #32] + 8003410: 4a69 ldr r2, [pc, #420] ; (80035b8 ) + 8003412: f043 0301 orr.w r3, r3, #1 + 8003416: 6213 str r3, [r2, #32] + 8003418: e00b b.n 8003432 + 800341a: 4b67 ldr r3, [pc, #412] ; (80035b8 ) + 800341c: 6a1b ldr r3, [r3, #32] + 800341e: 4a66 ldr r2, [pc, #408] ; (80035b8 ) + 8003420: f023 0301 bic.w r3, r3, #1 + 8003424: 6213 str r3, [r2, #32] + 8003426: 4b64 ldr r3, [pc, #400] ; (80035b8 ) + 8003428: 6a1b ldr r3, [r3, #32] + 800342a: 4a63 ldr r2, [pc, #396] ; (80035b8 ) + 800342c: f023 0304 bic.w r3, r3, #4 + 8003430: 6213 str r3, [r2, #32] /* Check the LSE State */ if (RCC_OscInitStruct->LSEState != RCC_LSE_OFF) - 800330e: 687b ldr r3, [r7, #4] - 8003310: 68db ldr r3, [r3, #12] - 8003312: 2b00 cmp r3, #0 - 8003314: d015 beq.n 8003342 + 8003432: 687b ldr r3, [r7, #4] + 8003434: 68db ldr r3, [r3, #12] + 8003436: 2b00 cmp r3, #0 + 8003438: d015 beq.n 8003466 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003316: f7fe fb6d bl 80019f4 - 800331a: 6138 str r0, [r7, #16] + 800343a: f7fe fb43 bl 8001ac4 + 800343e: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 800331c: e00a b.n 8003334 + 8003440: e00a b.n 8003458 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 800331e: f7fe fb69 bl 80019f4 - 8003322: 4602 mov r2, r0 - 8003324: 693b ldr r3, [r7, #16] - 8003326: 1ad3 subs r3, r2, r3 - 8003328: f241 3288 movw r2, #5000 ; 0x1388 - 800332c: 4293 cmp r3, r2 - 800332e: d901 bls.n 8003334 + 8003442: f7fe fb3f bl 8001ac4 + 8003446: 4602 mov r2, r0 + 8003448: 693b ldr r3, [r7, #16] + 800344a: 1ad3 subs r3, r2, r3 + 800344c: f241 3288 movw r2, #5000 ; 0x1388 + 8003450: 4293 cmp r3, r2 + 8003452: d901 bls.n 8003458 { return HAL_TIMEOUT; - 8003330: 2303 movs r3, #3 - 8003332: e0ab b.n 800348c + 8003454: 2303 movs r3, #3 + 8003456: e0ab b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8003334: 4b57 ldr r3, [pc, #348] ; (8003494 ) - 8003336: 6a1b ldr r3, [r3, #32] - 8003338: f003 0302 and.w r3, r3, #2 - 800333c: 2b00 cmp r3, #0 - 800333e: d0ee beq.n 800331e - 8003340: e014 b.n 800336c + 8003458: 4b57 ldr r3, [pc, #348] ; (80035b8 ) + 800345a: 6a1b ldr r3, [r3, #32] + 800345c: f003 0302 and.w r3, r3, #2 + 8003460: 2b00 cmp r3, #0 + 8003462: d0ee beq.n 8003442 + 8003464: e014 b.n 8003490 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003342: f7fe fb57 bl 80019f4 - 8003346: 6138 str r0, [r7, #16] + 8003466: f7fe fb2d bl 8001ac4 + 800346a: 6138 str r0, [r7, #16] /* Wait till LSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8003348: e00a b.n 8003360 + 800346c: e00a b.n 8003484 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 800334a: f7fe fb53 bl 80019f4 - 800334e: 4602 mov r2, r0 - 8003350: 693b ldr r3, [r7, #16] - 8003352: 1ad3 subs r3, r2, r3 - 8003354: f241 3288 movw r2, #5000 ; 0x1388 - 8003358: 4293 cmp r3, r2 - 800335a: d901 bls.n 8003360 + 800346e: f7fe fb29 bl 8001ac4 + 8003472: 4602 mov r2, r0 + 8003474: 693b ldr r3, [r7, #16] + 8003476: 1ad3 subs r3, r2, r3 + 8003478: f241 3288 movw r2, #5000 ; 0x1388 + 800347c: 4293 cmp r3, r2 + 800347e: d901 bls.n 8003484 { return HAL_TIMEOUT; - 800335c: 2303 movs r3, #3 - 800335e: e095 b.n 800348c + 8003480: 2303 movs r3, #3 + 8003482: e095 b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8003360: 4b4c ldr r3, [pc, #304] ; (8003494 ) - 8003362: 6a1b ldr r3, [r3, #32] - 8003364: f003 0302 and.w r3, r3, #2 - 8003368: 2b00 cmp r3, #0 - 800336a: d1ee bne.n 800334a + 8003484: 4b4c ldr r3, [pc, #304] ; (80035b8 ) + 8003486: 6a1b ldr r3, [r3, #32] + 8003488: f003 0302 and.w r3, r3, #2 + 800348c: 2b00 cmp r3, #0 + 800348e: d1ee bne.n 800346e } } } /* Require to disable power clock if necessary */ if (pwrclkchanged == SET) - 800336c: 7dfb ldrb r3, [r7, #23] - 800336e: 2b01 cmp r3, #1 - 8003370: d105 bne.n 800337e + 8003490: 7dfb ldrb r3, [r7, #23] + 8003492: 2b01 cmp r3, #1 + 8003494: d105 bne.n 80034a2 { __HAL_RCC_PWR_CLK_DISABLE(); - 8003372: 4b48 ldr r3, [pc, #288] ; (8003494 ) - 8003374: 69db ldr r3, [r3, #28] - 8003376: 4a47 ldr r2, [pc, #284] ; (8003494 ) - 8003378: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 - 800337c: 61d3 str r3, [r2, #28] + 8003496: 4b48 ldr r3, [pc, #288] ; (80035b8 ) + 8003498: 69db ldr r3, [r3, #28] + 800349a: 4a47 ldr r2, [pc, #284] ; (80035b8 ) + 800349c: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 + 80034a0: 61d3 str r3, [r2, #28] #endif /* RCC_CR_PLL2ON */ /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 800337e: 687b ldr r3, [r7, #4] - 8003380: 69db ldr r3, [r3, #28] - 8003382: 2b00 cmp r3, #0 - 8003384: f000 8081 beq.w 800348a + 80034a2: 687b ldr r3, [r7, #4] + 80034a4: 69db ldr r3, [r3, #28] + 80034a6: 2b00 cmp r3, #0 + 80034a8: f000 8081 beq.w 80035ae { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 8003388: 4b42 ldr r3, [pc, #264] ; (8003494 ) - 800338a: 685b ldr r3, [r3, #4] - 800338c: f003 030c and.w r3, r3, #12 - 8003390: 2b08 cmp r3, #8 - 8003392: d061 beq.n 8003458 + 80034ac: 4b42 ldr r3, [pc, #264] ; (80035b8 ) + 80034ae: 685b ldr r3, [r3, #4] + 80034b0: f003 030c and.w r3, r3, #12 + 80034b4: 2b08 cmp r3, #8 + 80034b6: d061 beq.n 800357c { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8003394: 687b ldr r3, [r7, #4] - 8003396: 69db ldr r3, [r3, #28] - 8003398: 2b02 cmp r3, #2 - 800339a: d146 bne.n 800342a + 80034b8: 687b ldr r3, [r7, #4] + 80034ba: 69db ldr r3, [r3, #28] + 80034bc: 2b02 cmp r3, #2 + 80034be: d146 bne.n 800354e /* Check the parameters */ assert_param(IS_RCC_PLLSOURCE(RCC_OscInitStruct->PLL.PLLSource)); assert_param(IS_RCC_PLL_MUL(RCC_OscInitStruct->PLL.PLLMUL)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800339c: 4b3f ldr r3, [pc, #252] ; (800349c ) - 800339e: 2200 movs r2, #0 - 80033a0: 601a str r2, [r3, #0] + 80034c0: 4b3f ldr r3, [pc, #252] ; (80035c0 ) + 80034c2: 2200 movs r2, #0 + 80034c4: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80033a2: f7fe fb27 bl 80019f4 - 80033a6: 6138 str r0, [r7, #16] + 80034c6: f7fe fafd bl 8001ac4 + 80034ca: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80033a8: e008 b.n 80033bc + 80034cc: e008 b.n 80034e0 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80033aa: f7fe fb23 bl 80019f4 - 80033ae: 4602 mov r2, r0 - 80033b0: 693b ldr r3, [r7, #16] - 80033b2: 1ad3 subs r3, r2, r3 - 80033b4: 2b02 cmp r3, #2 - 80033b6: d901 bls.n 80033bc + 80034ce: f7fe faf9 bl 8001ac4 + 80034d2: 4602 mov r2, r0 + 80034d4: 693b ldr r3, [r7, #16] + 80034d6: 1ad3 subs r3, r2, r3 + 80034d8: 2b02 cmp r3, #2 + 80034da: d901 bls.n 80034e0 { return HAL_TIMEOUT; - 80033b8: 2303 movs r3, #3 - 80033ba: e067 b.n 800348c + 80034dc: 2303 movs r3, #3 + 80034de: e067 b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80033bc: 4b35 ldr r3, [pc, #212] ; (8003494 ) - 80033be: 681b ldr r3, [r3, #0] - 80033c0: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80033c4: 2b00 cmp r3, #0 - 80033c6: d1f0 bne.n 80033aa + 80034e0: 4b35 ldr r3, [pc, #212] ; (80035b8 ) + 80034e2: 681b ldr r3, [r3, #0] + 80034e4: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 80034e8: 2b00 cmp r3, #0 + 80034ea: d1f0 bne.n 80034ce } } /* Configure the HSE prediv factor --------------------------------*/ /* It can be written only when the PLL is disabled. Not used in PLL source is different than HSE */ if (RCC_OscInitStruct->PLL.PLLSource == RCC_PLLSOURCE_HSE) - 80033c8: 687b ldr r3, [r7, #4] - 80033ca: 6a1b ldr r3, [r3, #32] - 80033cc: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 80033d0: d108 bne.n 80033e4 + 80034ec: 687b ldr r3, [r7, #4] + 80034ee: 6a1b ldr r3, [r3, #32] + 80034f0: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 80034f4: d108 bne.n 8003508 /* Set PREDIV1 source */ SET_BIT(RCC->CFGR2, RCC_OscInitStruct->Prediv1Source); #endif /* RCC_CFGR2_PREDIV1SRC */ /* Set PREDIV1 Value */ __HAL_RCC_HSE_PREDIV_CONFIG(RCC_OscInitStruct->HSEPredivValue); - 80033d2: 4b30 ldr r3, [pc, #192] ; (8003494 ) - 80033d4: 685b ldr r3, [r3, #4] - 80033d6: f423 3200 bic.w r2, r3, #131072 ; 0x20000 - 80033da: 687b ldr r3, [r7, #4] - 80033dc: 689b ldr r3, [r3, #8] - 80033de: 492d ldr r1, [pc, #180] ; (8003494 ) - 80033e0: 4313 orrs r3, r2 - 80033e2: 604b str r3, [r1, #4] + 80034f6: 4b30 ldr r3, [pc, #192] ; (80035b8 ) + 80034f8: 685b ldr r3, [r3, #4] + 80034fa: f423 3200 bic.w r2, r3, #131072 ; 0x20000 + 80034fe: 687b ldr r3, [r7, #4] + 8003500: 689b ldr r3, [r3, #8] + 8003502: 492d ldr r1, [pc, #180] ; (80035b8 ) + 8003504: 4313 orrs r3, r2 + 8003506: 604b str r3, [r1, #4] } /* Configure the main PLL clock source and multiplication factors. */ __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 80033e4: 4b2b ldr r3, [pc, #172] ; (8003494 ) - 80033e6: 685b ldr r3, [r3, #4] - 80033e8: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 - 80033ec: 687b ldr r3, [r7, #4] - 80033ee: 6a19 ldr r1, [r3, #32] - 80033f0: 687b ldr r3, [r7, #4] - 80033f2: 6a5b ldr r3, [r3, #36] ; 0x24 - 80033f4: 430b orrs r3, r1 - 80033f6: 4927 ldr r1, [pc, #156] ; (8003494 ) - 80033f8: 4313 orrs r3, r2 - 80033fa: 604b str r3, [r1, #4] + 8003508: 4b2b ldr r3, [pc, #172] ; (80035b8 ) + 800350a: 685b ldr r3, [r3, #4] + 800350c: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 + 8003510: 687b ldr r3, [r7, #4] + 8003512: 6a19 ldr r1, [r3, #32] + 8003514: 687b ldr r3, [r7, #4] + 8003516: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003518: 430b orrs r3, r1 + 800351a: 4927 ldr r1, [pc, #156] ; (80035b8 ) + 800351c: 4313 orrs r3, r2 + 800351e: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLMUL); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 80033fc: 4b27 ldr r3, [pc, #156] ; (800349c ) - 80033fe: 2201 movs r2, #1 - 8003400: 601a str r2, [r3, #0] + 8003520: 4b27 ldr r3, [pc, #156] ; (80035c0 ) + 8003522: 2201 movs r2, #1 + 8003524: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003402: f7fe faf7 bl 80019f4 - 8003406: 6138 str r0, [r7, #16] + 8003526: f7fe facd bl 8001ac4 + 800352a: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8003408: e008 b.n 800341c + 800352c: e008 b.n 8003540 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800340a: f7fe faf3 bl 80019f4 - 800340e: 4602 mov r2, r0 - 8003410: 693b ldr r3, [r7, #16] - 8003412: 1ad3 subs r3, r2, r3 - 8003414: 2b02 cmp r3, #2 - 8003416: d901 bls.n 800341c + 800352e: f7fe fac9 bl 8001ac4 + 8003532: 4602 mov r2, r0 + 8003534: 693b ldr r3, [r7, #16] + 8003536: 1ad3 subs r3, r2, r3 + 8003538: 2b02 cmp r3, #2 + 800353a: d901 bls.n 8003540 { return HAL_TIMEOUT; - 8003418: 2303 movs r3, #3 - 800341a: e037 b.n 800348c + 800353c: 2303 movs r3, #3 + 800353e: e037 b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800341c: 4b1d ldr r3, [pc, #116] ; (8003494 ) - 800341e: 681b ldr r3, [r3, #0] - 8003420: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003424: 2b00 cmp r3, #0 - 8003426: d0f0 beq.n 800340a - 8003428: e02f b.n 800348a + 8003540: 4b1d ldr r3, [pc, #116] ; (80035b8 ) + 8003542: 681b ldr r3, [r3, #0] + 8003544: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8003548: 2b00 cmp r3, #0 + 800354a: d0f0 beq.n 800352e + 800354c: e02f b.n 80035ae } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800342a: 4b1c ldr r3, [pc, #112] ; (800349c ) - 800342c: 2200 movs r2, #0 - 800342e: 601a str r2, [r3, #0] + 800354e: 4b1c ldr r3, [pc, #112] ; (80035c0 ) + 8003550: 2200 movs r2, #0 + 8003552: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003430: f7fe fae0 bl 80019f4 - 8003434: 6138 str r0, [r7, #16] + 8003554: f7fe fab6 bl 8001ac4 + 8003558: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8003436: e008 b.n 800344a + 800355a: e008 b.n 800356e { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8003438: f7fe fadc bl 80019f4 - 800343c: 4602 mov r2, r0 - 800343e: 693b ldr r3, [r7, #16] - 8003440: 1ad3 subs r3, r2, r3 - 8003442: 2b02 cmp r3, #2 - 8003444: d901 bls.n 800344a + 800355c: f7fe fab2 bl 8001ac4 + 8003560: 4602 mov r2, r0 + 8003562: 693b ldr r3, [r7, #16] + 8003564: 1ad3 subs r3, r2, r3 + 8003566: 2b02 cmp r3, #2 + 8003568: d901 bls.n 800356e { return HAL_TIMEOUT; - 8003446: 2303 movs r3, #3 - 8003448: e020 b.n 800348c + 800356a: 2303 movs r3, #3 + 800356c: e020 b.n 80035b0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800344a: 4b12 ldr r3, [pc, #72] ; (8003494 ) - 800344c: 681b ldr r3, [r3, #0] - 800344e: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003452: 2b00 cmp r3, #0 - 8003454: d1f0 bne.n 8003438 - 8003456: e018 b.n 800348a + 800356e: 4b12 ldr r3, [pc, #72] ; (80035b8 ) + 8003570: 681b ldr r3, [r3, #0] + 8003572: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8003576: 2b00 cmp r3, #0 + 8003578: d1f0 bne.n 800355c + 800357a: e018 b.n 80035ae } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 8003458: 687b ldr r3, [r7, #4] - 800345a: 69db ldr r3, [r3, #28] - 800345c: 2b01 cmp r3, #1 - 800345e: d101 bne.n 8003464 + 800357c: 687b ldr r3, [r7, #4] + 800357e: 69db ldr r3, [r3, #28] + 8003580: 2b01 cmp r3, #1 + 8003582: d101 bne.n 8003588 { return HAL_ERROR; - 8003460: 2301 movs r3, #1 - 8003462: e013 b.n 800348c + 8003584: 2301 movs r3, #1 + 8003586: e013 b.n 80035b0 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->CFGR; - 8003464: 4b0b ldr r3, [pc, #44] ; (8003494 ) - 8003466: 685b ldr r3, [r3, #4] - 8003468: 60fb str r3, [r7, #12] + 8003588: 4b0b ldr r3, [pc, #44] ; (80035b8 ) + 800358a: 685b ldr r3, [r3, #4] + 800358c: 60fb str r3, [r7, #12] if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800346a: 68fb ldr r3, [r7, #12] - 800346c: f403 3280 and.w r2, r3, #65536 ; 0x10000 - 8003470: 687b ldr r3, [r7, #4] - 8003472: 6a1b ldr r3, [r3, #32] - 8003474: 429a cmp r2, r3 - 8003476: d106 bne.n 8003486 + 800358e: 68fb ldr r3, [r7, #12] + 8003590: f403 3280 and.w r2, r3, #65536 ; 0x10000 + 8003594: 687b ldr r3, [r7, #4] + 8003596: 6a1b ldr r3, [r3, #32] + 8003598: 429a cmp r2, r3 + 800359a: d106 bne.n 80035aa (READ_BIT(pll_config, RCC_CFGR_PLLMULL) != RCC_OscInitStruct->PLL.PLLMUL)) - 8003478: 68fb ldr r3, [r7, #12] - 800347a: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 - 800347e: 687b ldr r3, [r7, #4] - 8003480: 6a5b ldr r3, [r3, #36] ; 0x24 + 800359c: 68fb ldr r3, [r7, #12] + 800359e: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 + 80035a2: 687b ldr r3, [r7, #4] + 80035a4: 6a5b ldr r3, [r3, #36] ; 0x24 if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8003482: 429a cmp r2, r3 - 8003484: d001 beq.n 800348a + 80035a6: 429a cmp r2, r3 + 80035a8: d001 beq.n 80035ae { return HAL_ERROR; - 8003486: 2301 movs r3, #1 - 8003488: e000 b.n 800348c + 80035aa: 2301 movs r3, #1 + 80035ac: e000 b.n 80035b0 } } } } return HAL_OK; - 800348a: 2300 movs r3, #0 + 80035ae: 2300 movs r3, #0 } - 800348c: 4618 mov r0, r3 - 800348e: 3718 adds r7, #24 - 8003490: 46bd mov sp, r7 - 8003492: bd80 pop {r7, pc} - 8003494: 40021000 .word 0x40021000 - 8003498: 40007000 .word 0x40007000 - 800349c: 42420060 .word 0x42420060 + 80035b0: 4618 mov r0, r3 + 80035b2: 3718 adds r7, #24 + 80035b4: 46bd mov sp, r7 + 80035b6: bd80 pop {r7, pc} + 80035b8: 40021000 .word 0x40021000 + 80035bc: 40007000 .word 0x40007000 + 80035c0: 42420060 .word 0x42420060 -080034a0 : +080035c4 : * You can use @ref HAL_RCC_GetClockConfig() function to know which clock is * currently used as system clock source. * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 80034a0: b580 push {r7, lr} - 80034a2: b084 sub sp, #16 - 80034a4: af00 add r7, sp, #0 - 80034a6: 6078 str r0, [r7, #4] - 80034a8: 6039 str r1, [r7, #0] + 80035c4: b580 push {r7, lr} + 80035c6: b084 sub sp, #16 + 80035c8: af00 add r7, sp, #0 + 80035ca: 6078 str r0, [r7, #4] + 80035cc: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 80034aa: 687b ldr r3, [r7, #4] - 80034ac: 2b00 cmp r3, #0 - 80034ae: d101 bne.n 80034b4 + 80035ce: 687b ldr r3, [r7, #4] + 80035d0: 2b00 cmp r3, #0 + 80035d2: d101 bne.n 80035d8 { return HAL_ERROR; - 80034b0: 2301 movs r3, #1 - 80034b2: e0d0 b.n 8003656 + 80035d4: 2301 movs r3, #1 + 80035d6: e0d0 b.n 800377a must be correctly programmed according to the frequency of the CPU clock (HCLK) of the device. */ #if defined(FLASH_ACR_LATENCY) /* Increasing the number of wait states because of higher CPU frequency */ if (FLatency > __HAL_FLASH_GET_LATENCY()) - 80034b4: 4b6a ldr r3, [pc, #424] ; (8003660 ) - 80034b6: 681b ldr r3, [r3, #0] - 80034b8: f003 0307 and.w r3, r3, #7 - 80034bc: 683a ldr r2, [r7, #0] - 80034be: 429a cmp r2, r3 - 80034c0: d910 bls.n 80034e4 + 80035d8: 4b6a ldr r3, [pc, #424] ; (8003784 ) + 80035da: 681b ldr r3, [r3, #0] + 80035dc: f003 0307 and.w r3, r3, #7 + 80035e0: 683a ldr r2, [r7, #0] + 80035e2: 429a cmp r2, r3 + 80035e4: d910 bls.n 8003608 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80034c2: 4b67 ldr r3, [pc, #412] ; (8003660 ) - 80034c4: 681b ldr r3, [r3, #0] - 80034c6: f023 0207 bic.w r2, r3, #7 - 80034ca: 4965 ldr r1, [pc, #404] ; (8003660 ) - 80034cc: 683b ldr r3, [r7, #0] - 80034ce: 4313 orrs r3, r2 - 80034d0: 600b str r3, [r1, #0] + 80035e6: 4b67 ldr r3, [pc, #412] ; (8003784 ) + 80035e8: 681b ldr r3, [r3, #0] + 80035ea: f023 0207 bic.w r2, r3, #7 + 80035ee: 4965 ldr r1, [pc, #404] ; (8003784 ) + 80035f0: 683b ldr r3, [r7, #0] + 80035f2: 4313 orrs r3, r2 + 80035f4: 600b str r3, [r1, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 80034d2: 4b63 ldr r3, [pc, #396] ; (8003660 ) - 80034d4: 681b ldr r3, [r3, #0] - 80034d6: f003 0307 and.w r3, r3, #7 - 80034da: 683a ldr r2, [r7, #0] - 80034dc: 429a cmp r2, r3 - 80034de: d001 beq.n 80034e4 + 80035f6: 4b63 ldr r3, [pc, #396] ; (8003784 ) + 80035f8: 681b ldr r3, [r3, #0] + 80035fa: f003 0307 and.w r3, r3, #7 + 80035fe: 683a ldr r2, [r7, #0] + 8003600: 429a cmp r2, r3 + 8003602: d001 beq.n 8003608 { return HAL_ERROR; - 80034e0: 2301 movs r3, #1 - 80034e2: e0b8 b.n 8003656 + 8003604: 2301 movs r3, #1 + 8003606: e0b8 b.n 800377a } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 80034e4: 687b ldr r3, [r7, #4] - 80034e6: 681b ldr r3, [r3, #0] - 80034e8: f003 0302 and.w r3, r3, #2 - 80034ec: 2b00 cmp r3, #0 - 80034ee: d020 beq.n 8003532 + 8003608: 687b ldr r3, [r7, #4] + 800360a: 681b ldr r3, [r3, #0] + 800360c: f003 0302 and.w r3, r3, #2 + 8003610: 2b00 cmp r3, #0 + 8003612: d020 beq.n 8003656 { /* Set the highest APBx dividers in order to ensure that we do not go through a non-spec phase whatever we decrease or increase HCLK. */ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80034f0: 687b ldr r3, [r7, #4] - 80034f2: 681b ldr r3, [r3, #0] - 80034f4: f003 0304 and.w r3, r3, #4 - 80034f8: 2b00 cmp r3, #0 - 80034fa: d005 beq.n 8003508 + 8003614: 687b ldr r3, [r7, #4] + 8003616: 681b ldr r3, [r3, #0] + 8003618: f003 0304 and.w r3, r3, #4 + 800361c: 2b00 cmp r3, #0 + 800361e: d005 beq.n 800362c { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 80034fc: 4b59 ldr r3, [pc, #356] ; (8003664 ) - 80034fe: 685b ldr r3, [r3, #4] - 8003500: 4a58 ldr r2, [pc, #352] ; (8003664 ) - 8003502: f443 63e0 orr.w r3, r3, #1792 ; 0x700 - 8003506: 6053 str r3, [r2, #4] + 8003620: 4b59 ldr r3, [pc, #356] ; (8003788 ) + 8003622: 685b ldr r3, [r3, #4] + 8003624: 4a58 ldr r2, [pc, #352] ; (8003788 ) + 8003626: f443 63e0 orr.w r3, r3, #1792 ; 0x700 + 800362a: 6053 str r3, [r2, #4] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8003508: 687b ldr r3, [r7, #4] - 800350a: 681b ldr r3, [r3, #0] - 800350c: f003 0308 and.w r3, r3, #8 - 8003510: 2b00 cmp r3, #0 - 8003512: d005 beq.n 8003520 + 800362c: 687b ldr r3, [r7, #4] + 800362e: 681b ldr r3, [r3, #0] + 8003630: f003 0308 and.w r3, r3, #8 + 8003634: 2b00 cmp r3, #0 + 8003636: d005 beq.n 8003644 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 8003514: 4b53 ldr r3, [pc, #332] ; (8003664 ) - 8003516: 685b ldr r3, [r3, #4] - 8003518: 4a52 ldr r2, [pc, #328] ; (8003664 ) - 800351a: f443 5360 orr.w r3, r3, #14336 ; 0x3800 - 800351e: 6053 str r3, [r2, #4] + 8003638: 4b53 ldr r3, [pc, #332] ; (8003788 ) + 800363a: 685b ldr r3, [r3, #4] + 800363c: 4a52 ldr r2, [pc, #328] ; (8003788 ) + 800363e: f443 5360 orr.w r3, r3, #14336 ; 0x3800 + 8003642: 6053 str r3, [r2, #4] } /* Set the new HCLK clock divider */ assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 8003520: 4b50 ldr r3, [pc, #320] ; (8003664 ) - 8003522: 685b ldr r3, [r3, #4] - 8003524: f023 02f0 bic.w r2, r3, #240 ; 0xf0 - 8003528: 687b ldr r3, [r7, #4] - 800352a: 689b ldr r3, [r3, #8] - 800352c: 494d ldr r1, [pc, #308] ; (8003664 ) - 800352e: 4313 orrs r3, r2 - 8003530: 604b str r3, [r1, #4] + 8003644: 4b50 ldr r3, [pc, #320] ; (8003788 ) + 8003646: 685b ldr r3, [r3, #4] + 8003648: f023 02f0 bic.w r2, r3, #240 ; 0xf0 + 800364c: 687b ldr r3, [r7, #4] + 800364e: 689b ldr r3, [r3, #8] + 8003650: 494d ldr r1, [pc, #308] ; (8003788 ) + 8003652: 4313 orrs r3, r2 + 8003654: 604b str r3, [r1, #4] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 8003532: 687b ldr r3, [r7, #4] - 8003534: 681b ldr r3, [r3, #0] - 8003536: f003 0301 and.w r3, r3, #1 - 800353a: 2b00 cmp r3, #0 - 800353c: d040 beq.n 80035c0 + 8003656: 687b ldr r3, [r7, #4] + 8003658: 681b ldr r3, [r3, #0] + 800365a: f003 0301 and.w r3, r3, #1 + 800365e: 2b00 cmp r3, #0 + 8003660: d040 beq.n 80036e4 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 800353e: 687b ldr r3, [r7, #4] - 8003540: 685b ldr r3, [r3, #4] - 8003542: 2b01 cmp r3, #1 - 8003544: d107 bne.n 8003556 + 8003662: 687b ldr r3, [r7, #4] + 8003664: 685b ldr r3, [r3, #4] + 8003666: 2b01 cmp r3, #1 + 8003668: d107 bne.n 800367a { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8003546: 4b47 ldr r3, [pc, #284] ; (8003664 ) - 8003548: 681b ldr r3, [r3, #0] - 800354a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 800354e: 2b00 cmp r3, #0 - 8003550: d115 bne.n 800357e + 800366a: 4b47 ldr r3, [pc, #284] ; (8003788 ) + 800366c: 681b ldr r3, [r3, #0] + 800366e: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8003672: 2b00 cmp r3, #0 + 8003674: d115 bne.n 80036a2 { return HAL_ERROR; - 8003552: 2301 movs r3, #1 - 8003554: e07f b.n 8003656 + 8003676: 2301 movs r3, #1 + 8003678: e07f b.n 800377a } } /* PLL is selected as System Clock Source */ else if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 8003556: 687b ldr r3, [r7, #4] - 8003558: 685b ldr r3, [r3, #4] - 800355a: 2b02 cmp r3, #2 - 800355c: d107 bne.n 800356e + 800367a: 687b ldr r3, [r7, #4] + 800367c: 685b ldr r3, [r3, #4] + 800367e: 2b02 cmp r3, #2 + 8003680: d107 bne.n 8003692 { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800355e: 4b41 ldr r3, [pc, #260] ; (8003664 ) - 8003560: 681b ldr r3, [r3, #0] - 8003562: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003566: 2b00 cmp r3, #0 - 8003568: d109 bne.n 800357e + 8003682: 4b41 ldr r3, [pc, #260] ; (8003788 ) + 8003684: 681b ldr r3, [r3, #0] + 8003686: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800368a: 2b00 cmp r3, #0 + 800368c: d109 bne.n 80036a2 { return HAL_ERROR; - 800356a: 2301 movs r3, #1 - 800356c: e073 b.n 8003656 + 800368e: 2301 movs r3, #1 + 8003690: e073 b.n 800377a } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800356e: 4b3d ldr r3, [pc, #244] ; (8003664 ) - 8003570: 681b ldr r3, [r3, #0] - 8003572: f003 0302 and.w r3, r3, #2 - 8003576: 2b00 cmp r3, #0 - 8003578: d101 bne.n 800357e + 8003692: 4b3d ldr r3, [pc, #244] ; (8003788 ) + 8003694: 681b ldr r3, [r3, #0] + 8003696: f003 0302 and.w r3, r3, #2 + 800369a: 2b00 cmp r3, #0 + 800369c: d101 bne.n 80036a2 { return HAL_ERROR; - 800357a: 2301 movs r3, #1 - 800357c: e06b b.n 8003656 + 800369e: 2301 movs r3, #1 + 80036a0: e06b b.n 800377a } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 800357e: 4b39 ldr r3, [pc, #228] ; (8003664 ) - 8003580: 685b ldr r3, [r3, #4] - 8003582: f023 0203 bic.w r2, r3, #3 - 8003586: 687b ldr r3, [r7, #4] - 8003588: 685b ldr r3, [r3, #4] - 800358a: 4936 ldr r1, [pc, #216] ; (8003664 ) - 800358c: 4313 orrs r3, r2 - 800358e: 604b str r3, [r1, #4] + 80036a2: 4b39 ldr r3, [pc, #228] ; (8003788 ) + 80036a4: 685b ldr r3, [r3, #4] + 80036a6: f023 0203 bic.w r2, r3, #3 + 80036aa: 687b ldr r3, [r7, #4] + 80036ac: 685b ldr r3, [r3, #4] + 80036ae: 4936 ldr r1, [pc, #216] ; (8003788 ) + 80036b0: 4313 orrs r3, r2 + 80036b2: 604b str r3, [r1, #4] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003590: f7fe fa30 bl 80019f4 - 8003594: 60f8 str r0, [r7, #12] + 80036b4: f7fe fa06 bl 8001ac4 + 80036b8: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8003596: e00a b.n 80035ae + 80036ba: e00a b.n 80036d2 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8003598: f7fe fa2c bl 80019f4 - 800359c: 4602 mov r2, r0 - 800359e: 68fb ldr r3, [r7, #12] - 80035a0: 1ad3 subs r3, r2, r3 - 80035a2: f241 3288 movw r2, #5000 ; 0x1388 - 80035a6: 4293 cmp r3, r2 - 80035a8: d901 bls.n 80035ae + 80036bc: f7fe fa02 bl 8001ac4 + 80036c0: 4602 mov r2, r0 + 80036c2: 68fb ldr r3, [r7, #12] + 80036c4: 1ad3 subs r3, r2, r3 + 80036c6: f241 3288 movw r2, #5000 ; 0x1388 + 80036ca: 4293 cmp r3, r2 + 80036cc: d901 bls.n 80036d2 { return HAL_TIMEOUT; - 80035aa: 2303 movs r3, #3 - 80035ac: e053 b.n 8003656 + 80036ce: 2303 movs r3, #3 + 80036d0: e053 b.n 800377a while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 80035ae: 4b2d ldr r3, [pc, #180] ; (8003664 ) - 80035b0: 685b ldr r3, [r3, #4] - 80035b2: f003 020c and.w r2, r3, #12 - 80035b6: 687b ldr r3, [r7, #4] - 80035b8: 685b ldr r3, [r3, #4] - 80035ba: 009b lsls r3, r3, #2 - 80035bc: 429a cmp r2, r3 - 80035be: d1eb bne.n 8003598 + 80036d2: 4b2d ldr r3, [pc, #180] ; (8003788 ) + 80036d4: 685b ldr r3, [r3, #4] + 80036d6: f003 020c and.w r2, r3, #12 + 80036da: 687b ldr r3, [r7, #4] + 80036dc: 685b ldr r3, [r3, #4] + 80036de: 009b lsls r3, r3, #2 + 80036e0: 429a cmp r2, r3 + 80036e2: d1eb bne.n 80036bc } } #if defined(FLASH_ACR_LATENCY) /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 80035c0: 4b27 ldr r3, [pc, #156] ; (8003660 ) - 80035c2: 681b ldr r3, [r3, #0] - 80035c4: f003 0307 and.w r3, r3, #7 - 80035c8: 683a ldr r2, [r7, #0] - 80035ca: 429a cmp r2, r3 - 80035cc: d210 bcs.n 80035f0 + 80036e4: 4b27 ldr r3, [pc, #156] ; (8003784 ) + 80036e6: 681b ldr r3, [r3, #0] + 80036e8: f003 0307 and.w r3, r3, #7 + 80036ec: 683a ldr r2, [r7, #0] + 80036ee: 429a cmp r2, r3 + 80036f0: d210 bcs.n 8003714 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80035ce: 4b24 ldr r3, [pc, #144] ; (8003660 ) - 80035d0: 681b ldr r3, [r3, #0] - 80035d2: f023 0207 bic.w r2, r3, #7 - 80035d6: 4922 ldr r1, [pc, #136] ; (8003660 ) - 80035d8: 683b ldr r3, [r7, #0] - 80035da: 4313 orrs r3, r2 - 80035dc: 600b str r3, [r1, #0] + 80036f2: 4b24 ldr r3, [pc, #144] ; (8003784 ) + 80036f4: 681b ldr r3, [r3, #0] + 80036f6: f023 0207 bic.w r2, r3, #7 + 80036fa: 4922 ldr r1, [pc, #136] ; (8003784 ) + 80036fc: 683b ldr r3, [r7, #0] + 80036fe: 4313 orrs r3, r2 + 8003700: 600b str r3, [r1, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 80035de: 4b20 ldr r3, [pc, #128] ; (8003660 ) - 80035e0: 681b ldr r3, [r3, #0] - 80035e2: f003 0307 and.w r3, r3, #7 - 80035e6: 683a ldr r2, [r7, #0] - 80035e8: 429a cmp r2, r3 - 80035ea: d001 beq.n 80035f0 + 8003702: 4b20 ldr r3, [pc, #128] ; (8003784 ) + 8003704: 681b ldr r3, [r3, #0] + 8003706: f003 0307 and.w r3, r3, #7 + 800370a: 683a ldr r2, [r7, #0] + 800370c: 429a cmp r2, r3 + 800370e: d001 beq.n 8003714 { return HAL_ERROR; - 80035ec: 2301 movs r3, #1 - 80035ee: e032 b.n 8003656 + 8003710: 2301 movs r3, #1 + 8003712: e032 b.n 800377a } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80035f0: 687b ldr r3, [r7, #4] - 80035f2: 681b ldr r3, [r3, #0] - 80035f4: f003 0304 and.w r3, r3, #4 - 80035f8: 2b00 cmp r3, #0 - 80035fa: d008 beq.n 800360e + 8003714: 687b ldr r3, [r7, #4] + 8003716: 681b ldr r3, [r3, #0] + 8003718: f003 0304 and.w r3, r3, #4 + 800371c: 2b00 cmp r3, #0 + 800371e: d008 beq.n 8003732 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80035fc: 4b19 ldr r3, [pc, #100] ; (8003664 ) - 80035fe: 685b ldr r3, [r3, #4] - 8003600: f423 62e0 bic.w r2, r3, #1792 ; 0x700 - 8003604: 687b ldr r3, [r7, #4] - 8003606: 68db ldr r3, [r3, #12] - 8003608: 4916 ldr r1, [pc, #88] ; (8003664 ) - 800360a: 4313 orrs r3, r2 - 800360c: 604b str r3, [r1, #4] + 8003720: 4b19 ldr r3, [pc, #100] ; (8003788 ) + 8003722: 685b ldr r3, [r3, #4] + 8003724: f423 62e0 bic.w r2, r3, #1792 ; 0x700 + 8003728: 687b ldr r3, [r7, #4] + 800372a: 68db ldr r3, [r3, #12] + 800372c: 4916 ldr r1, [pc, #88] ; (8003788 ) + 800372e: 4313 orrs r3, r2 + 8003730: 604b str r3, [r1, #4] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 800360e: 687b ldr r3, [r7, #4] - 8003610: 681b ldr r3, [r3, #0] - 8003612: f003 0308 and.w r3, r3, #8 - 8003616: 2b00 cmp r3, #0 - 8003618: d009 beq.n 800362e + 8003732: 687b ldr r3, [r7, #4] + 8003734: 681b ldr r3, [r3, #0] + 8003736: f003 0308 and.w r3, r3, #8 + 800373a: 2b00 cmp r3, #0 + 800373c: d009 beq.n 8003752 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); - 800361a: 4b12 ldr r3, [pc, #72] ; (8003664 ) - 800361c: 685b ldr r3, [r3, #4] - 800361e: f423 5260 bic.w r2, r3, #14336 ; 0x3800 - 8003622: 687b ldr r3, [r7, #4] - 8003624: 691b ldr r3, [r3, #16] - 8003626: 00db lsls r3, r3, #3 - 8003628: 490e ldr r1, [pc, #56] ; (8003664 ) - 800362a: 4313 orrs r3, r2 - 800362c: 604b str r3, [r1, #4] + 800373e: 4b12 ldr r3, [pc, #72] ; (8003788 ) + 8003740: 685b ldr r3, [r3, #4] + 8003742: f423 5260 bic.w r2, r3, #14336 ; 0x3800 + 8003746: 687b ldr r3, [r7, #4] + 8003748: 691b ldr r3, [r3, #16] + 800374a: 00db lsls r3, r3, #3 + 800374c: 490e ldr r1, [pc, #56] ; (8003788 ) + 800374e: 4313 orrs r3, r2 + 8003750: 604b str r3, [r1, #4] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 800362e: f000 f821 bl 8003674 - 8003632: 4602 mov r2, r0 - 8003634: 4b0b ldr r3, [pc, #44] ; (8003664 ) - 8003636: 685b ldr r3, [r3, #4] - 8003638: 091b lsrs r3, r3, #4 - 800363a: f003 030f and.w r3, r3, #15 - 800363e: 490a ldr r1, [pc, #40] ; (8003668 ) - 8003640: 5ccb ldrb r3, [r1, r3] - 8003642: fa22 f303 lsr.w r3, r2, r3 - 8003646: 4a09 ldr r2, [pc, #36] ; (800366c ) - 8003648: 6013 str r3, [r2, #0] + 8003752: f000 f821 bl 8003798 + 8003756: 4602 mov r2, r0 + 8003758: 4b0b ldr r3, [pc, #44] ; (8003788 ) + 800375a: 685b ldr r3, [r3, #4] + 800375c: 091b lsrs r3, r3, #4 + 800375e: f003 030f and.w r3, r3, #15 + 8003762: 490a ldr r1, [pc, #40] ; (800378c ) + 8003764: 5ccb ldrb r3, [r1, r3] + 8003766: fa22 f303 lsr.w r3, r2, r3 + 800376a: 4a09 ldr r2, [pc, #36] ; (8003790 ) + 800376c: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings*/ HAL_InitTick(uwTickPrio); - 800364a: 4b09 ldr r3, [pc, #36] ; (8003670 ) - 800364c: 681b ldr r3, [r3, #0] - 800364e: 4618 mov r0, r3 - 8003650: f7fe f98e bl 8001970 + 800376e: 4b09 ldr r3, [pc, #36] ; (8003794 ) + 8003770: 681b ldr r3, [r3, #0] + 8003772: 4618 mov r0, r3 + 8003774: f7fe f964 bl 8001a40 return HAL_OK; - 8003654: 2300 movs r3, #0 + 8003778: 2300 movs r3, #0 } - 8003656: 4618 mov r0, r3 - 8003658: 3710 adds r7, #16 - 800365a: 46bd mov sp, r7 - 800365c: bd80 pop {r7, pc} - 800365e: bf00 nop - 8003660: 40022000 .word 0x40022000 - 8003664: 40021000 .word 0x40021000 - 8003668: 080099c0 .word 0x080099c0 - 800366c: 20000000 .word 0x20000000 - 8003670: 20000004 .word 0x20000004 + 800377a: 4618 mov r0, r3 + 800377c: 3710 adds r7, #16 + 800377e: 46bd mov sp, r7 + 8003780: bd80 pop {r7, pc} + 8003782: bf00 nop + 8003784: 40022000 .word 0x40022000 + 8003788: 40021000 .word 0x40021000 + 800378c: 0800a128 .word 0x0800a128 + 8003790: 20000000 .word 0x20000000 + 8003794: 20000004 .word 0x20000004 -08003674 : +08003798 : * right SYSCLK value. Otherwise, any configuration based on this function will be incorrect. * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 8003674: b490 push {r4, r7} - 8003676: b08a sub sp, #40 ; 0x28 - 8003678: af00 add r7, sp, #0 + 8003798: b490 push {r4, r7} + 800379a: b08a sub sp, #40 ; 0x28 + 800379c: af00 add r7, sp, #0 #if defined(RCC_CFGR2_PREDIV1SRC) const uint8_t aPLLMULFactorTable[14] = {0, 0, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 13}; const uint8_t aPredivFactorTable[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; #else const uint8_t aPLLMULFactorTable[16] = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16}; - 800367a: 4b2a ldr r3, [pc, #168] ; (8003724 ) - 800367c: 1d3c adds r4, r7, #4 - 800367e: cb0f ldmia r3, {r0, r1, r2, r3} - 8003680: e884 000f stmia.w r4, {r0, r1, r2, r3} + 800379e: 4b2a ldr r3, [pc, #168] ; (8003848 ) + 80037a0: 1d3c adds r4, r7, #4 + 80037a2: cb0f ldmia r3, {r0, r1, r2, r3} + 80037a4: e884 000f stmia.w r4, {r0, r1, r2, r3} #if defined(RCC_CFGR2_PREDIV1) const uint8_t aPredivFactorTable[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; #else const uint8_t aPredivFactorTable[2] = {1, 2}; - 8003684: f240 2301 movw r3, #513 ; 0x201 - 8003688: 803b strh r3, [r7, #0] + 80037a8: f240 2301 movw r3, #513 ; 0x201 + 80037ac: 803b strh r3, [r7, #0] #endif /*RCC_CFGR2_PREDIV1*/ #endif uint32_t tmpreg = 0U, prediv = 0U, pllclk = 0U, pllmul = 0U; - 800368a: 2300 movs r3, #0 - 800368c: 61fb str r3, [r7, #28] - 800368e: 2300 movs r3, #0 - 8003690: 61bb str r3, [r7, #24] - 8003692: 2300 movs r3, #0 - 8003694: 627b str r3, [r7, #36] ; 0x24 - 8003696: 2300 movs r3, #0 - 8003698: 617b str r3, [r7, #20] + 80037ae: 2300 movs r3, #0 + 80037b0: 61fb str r3, [r7, #28] + 80037b2: 2300 movs r3, #0 + 80037b4: 61bb str r3, [r7, #24] + 80037b6: 2300 movs r3, #0 + 80037b8: 627b str r3, [r7, #36] ; 0x24 + 80037ba: 2300 movs r3, #0 + 80037bc: 617b str r3, [r7, #20] uint32_t sysclockfreq = 0U; - 800369a: 2300 movs r3, #0 - 800369c: 623b str r3, [r7, #32] + 80037be: 2300 movs r3, #0 + 80037c0: 623b str r3, [r7, #32] #if defined(RCC_CFGR2_PREDIV1SRC) uint32_t prediv2 = 0U, pll2mul = 0U; #endif /*RCC_CFGR2_PREDIV1SRC*/ tmpreg = RCC->CFGR; - 800369e: 4b22 ldr r3, [pc, #136] ; (8003728 ) - 80036a0: 685b ldr r3, [r3, #4] - 80036a2: 61fb str r3, [r7, #28] + 80037c2: 4b22 ldr r3, [pc, #136] ; (800384c ) + 80037c4: 685b ldr r3, [r3, #4] + 80037c6: 61fb str r3, [r7, #28] /* Get SYSCLK source -------------------------------------------------------*/ switch (tmpreg & RCC_CFGR_SWS) - 80036a4: 69fb ldr r3, [r7, #28] - 80036a6: f003 030c and.w r3, r3, #12 - 80036aa: 2b04 cmp r3, #4 - 80036ac: d002 beq.n 80036b4 - 80036ae: 2b08 cmp r3, #8 - 80036b0: d003 beq.n 80036ba - 80036b2: e02d b.n 8003710 + 80037c8: 69fb ldr r3, [r7, #28] + 80037ca: f003 030c and.w r3, r3, #12 + 80037ce: 2b04 cmp r3, #4 + 80037d0: d002 beq.n 80037d8 + 80037d2: 2b08 cmp r3, #8 + 80037d4: d003 beq.n 80037de + 80037d6: e02d b.n 8003834 { case RCC_SYSCLKSOURCE_STATUS_HSE: /* HSE used as system clock */ { sysclockfreq = HSE_VALUE; - 80036b4: 4b1d ldr r3, [pc, #116] ; (800372c ) - 80036b6: 623b str r3, [r7, #32] + 80037d8: 4b1d ldr r3, [pc, #116] ; (8003850 ) + 80037da: 623b str r3, [r7, #32] break; - 80036b8: e02d b.n 8003716 + 80037dc: e02d b.n 800383a } case RCC_SYSCLKSOURCE_STATUS_PLLCLK: /* PLL used as system clock */ { pllmul = aPLLMULFactorTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMULL) >> RCC_CFGR_PLLMULL_Pos]; - 80036ba: 69fb ldr r3, [r7, #28] - 80036bc: 0c9b lsrs r3, r3, #18 - 80036be: f003 030f and.w r3, r3, #15 - 80036c2: f107 0228 add.w r2, r7, #40 ; 0x28 - 80036c6: 4413 add r3, r2 - 80036c8: f813 3c24 ldrb.w r3, [r3, #-36] - 80036cc: 617b str r3, [r7, #20] + 80037de: 69fb ldr r3, [r7, #28] + 80037e0: 0c9b lsrs r3, r3, #18 + 80037e2: f003 030f and.w r3, r3, #15 + 80037e6: f107 0228 add.w r2, r7, #40 ; 0x28 + 80037ea: 4413 add r3, r2 + 80037ec: f813 3c24 ldrb.w r3, [r3, #-36] + 80037f0: 617b str r3, [r7, #20] if ((tmpreg & RCC_CFGR_PLLSRC) != RCC_PLLSOURCE_HSI_DIV2) - 80036ce: 69fb ldr r3, [r7, #28] - 80036d0: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 80036d4: 2b00 cmp r3, #0 - 80036d6: d013 beq.n 8003700 + 80037f2: 69fb ldr r3, [r7, #28] + 80037f4: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 80037f8: 2b00 cmp r3, #0 + 80037fa: d013 beq.n 8003824 { #if defined(RCC_CFGR2_PREDIV1) prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR2 & RCC_CFGR2_PREDIV1) >> RCC_CFGR2_PREDIV1_Pos]; #else prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR & RCC_CFGR_PLLXTPRE) >> RCC_CFGR_PLLXTPRE_Pos]; - 80036d8: 4b13 ldr r3, [pc, #76] ; (8003728 ) - 80036da: 685b ldr r3, [r3, #4] - 80036dc: 0c5b lsrs r3, r3, #17 - 80036de: f003 0301 and.w r3, r3, #1 - 80036e2: f107 0228 add.w r2, r7, #40 ; 0x28 - 80036e6: 4413 add r3, r2 - 80036e8: f813 3c28 ldrb.w r3, [r3, #-40] - 80036ec: 61bb str r3, [r7, #24] + 80037fc: 4b13 ldr r3, [pc, #76] ; (800384c ) + 80037fe: 685b ldr r3, [r3, #4] + 8003800: 0c5b lsrs r3, r3, #17 + 8003802: f003 0301 and.w r3, r3, #1 + 8003806: f107 0228 add.w r2, r7, #40 ; 0x28 + 800380a: 4413 add r3, r2 + 800380c: f813 3c28 ldrb.w r3, [r3, #-40] + 8003810: 61bb str r3, [r7, #24] { pllclk = pllclk / 2; } #else /* HSE used as PLL clock source : PLLCLK = HSE/PREDIV1 * PLLMUL */ pllclk = (uint32_t)((HSE_VALUE * pllmul) / prediv); - 80036ee: 697b ldr r3, [r7, #20] - 80036f0: 4a0e ldr r2, [pc, #56] ; (800372c ) - 80036f2: fb02 f203 mul.w r2, r2, r3 - 80036f6: 69bb ldr r3, [r7, #24] - 80036f8: fbb2 f3f3 udiv r3, r2, r3 - 80036fc: 627b str r3, [r7, #36] ; 0x24 - 80036fe: e004 b.n 800370a + 8003812: 697b ldr r3, [r7, #20] + 8003814: 4a0e ldr r2, [pc, #56] ; (8003850 ) + 8003816: fb02 f203 mul.w r2, r2, r3 + 800381a: 69bb ldr r3, [r7, #24] + 800381c: fbb2 f3f3 udiv r3, r2, r3 + 8003820: 627b str r3, [r7, #36] ; 0x24 + 8003822: e004 b.n 800382e #endif /*RCC_CFGR2_PREDIV1SRC*/ } else { /* HSI used as PLL clock source : PLLCLK = HSI/2 * PLLMUL */ pllclk = (uint32_t)((HSI_VALUE >> 1) * pllmul); - 8003700: 697b ldr r3, [r7, #20] - 8003702: 4a0b ldr r2, [pc, #44] ; (8003730 ) - 8003704: fb02 f303 mul.w r3, r2, r3 - 8003708: 627b str r3, [r7, #36] ; 0x24 + 8003824: 697b ldr r3, [r7, #20] + 8003826: 4a0b ldr r2, [pc, #44] ; (8003854 ) + 8003828: fb02 f303 mul.w r3, r2, r3 + 800382c: 627b str r3, [r7, #36] ; 0x24 } sysclockfreq = pllclk; - 800370a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800370c: 623b str r3, [r7, #32] + 800382e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8003830: 623b str r3, [r7, #32] break; - 800370e: e002 b.n 8003716 + 8003832: e002 b.n 800383a } case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ default: /* HSI used as system clock */ { sysclockfreq = HSI_VALUE; - 8003710: 4b06 ldr r3, [pc, #24] ; (800372c ) - 8003712: 623b str r3, [r7, #32] + 8003834: 4b06 ldr r3, [pc, #24] ; (8003850 ) + 8003836: 623b str r3, [r7, #32] break; - 8003714: bf00 nop + 8003838: bf00 nop } } return sysclockfreq; - 8003716: 6a3b ldr r3, [r7, #32] + 800383a: 6a3b ldr r3, [r7, #32] } - 8003718: 4618 mov r0, r3 - 800371a: 3728 adds r7, #40 ; 0x28 - 800371c: 46bd mov sp, r7 - 800371e: bc90 pop {r4, r7} - 8003720: 4770 bx lr - 8003722: bf00 nop - 8003724: 080098b0 .word 0x080098b0 - 8003728: 40021000 .word 0x40021000 - 800372c: 007a1200 .word 0x007a1200 - 8003730: 003d0900 .word 0x003d0900 + 800383c: 4618 mov r0, r3 + 800383e: 3728 adds r7, #40 ; 0x28 + 8003840: 46bd mov sp, r7 + 8003842: bc90 pop {r4, r7} + 8003844: 4770 bx lr + 8003846: bf00 nop + 8003848: 0800a018 .word 0x0800a018 + 800384c: 40021000 .word 0x40021000 + 8003850: 007a1200 .word 0x007a1200 + 8003854: 003d0900 .word 0x003d0900 -08003734 : +08003858 : * @note The SystemCoreClock CMSIS variable is used to store System Clock Frequency * and updated within this function * @retval HCLK frequency */ uint32_t HAL_RCC_GetHCLKFreq(void) { - 8003734: b480 push {r7} - 8003736: af00 add r7, sp, #0 + 8003858: b480 push {r7} + 800385a: af00 add r7, sp, #0 return SystemCoreClock; - 8003738: 4b02 ldr r3, [pc, #8] ; (8003744 ) - 800373a: 681b ldr r3, [r3, #0] + 800385c: 4b02 ldr r3, [pc, #8] ; (8003868 ) + 800385e: 681b ldr r3, [r3, #0] } - 800373c: 4618 mov r0, r3 - 800373e: 46bd mov sp, r7 - 8003740: bc80 pop {r7} - 8003742: 4770 bx lr - 8003744: 20000000 .word 0x20000000 + 8003860: 4618 mov r0, r3 + 8003862: 46bd mov sp, r7 + 8003864: bc80 pop {r7} + 8003866: 4770 bx lr + 8003868: 20000000 .word 0x20000000 -08003748 : +0800386c : * @note Each time PCLK1 changes, this function must be called to update the * right PCLK1 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK1 frequency */ uint32_t HAL_RCC_GetPCLK1Freq(void) { - 8003748: b580 push {r7, lr} - 800374a: af00 add r7, sp, #0 + 800386c: b580 push {r7, lr} + 800386e: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK1 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1) >> RCC_CFGR_PPRE1_Pos]); - 800374c: f7ff fff2 bl 8003734 - 8003750: 4602 mov r2, r0 - 8003752: 4b05 ldr r3, [pc, #20] ; (8003768 ) - 8003754: 685b ldr r3, [r3, #4] - 8003756: 0a1b lsrs r3, r3, #8 - 8003758: f003 0307 and.w r3, r3, #7 - 800375c: 4903 ldr r1, [pc, #12] ; (800376c ) - 800375e: 5ccb ldrb r3, [r1, r3] - 8003760: fa22 f303 lsr.w r3, r2, r3 + 8003870: f7ff fff2 bl 8003858 + 8003874: 4602 mov r2, r0 + 8003876: 4b05 ldr r3, [pc, #20] ; (800388c ) + 8003878: 685b ldr r3, [r3, #4] + 800387a: 0a1b lsrs r3, r3, #8 + 800387c: f003 0307 and.w r3, r3, #7 + 8003880: 4903 ldr r1, [pc, #12] ; (8003890 ) + 8003882: 5ccb ldrb r3, [r1, r3] + 8003884: fa22 f303 lsr.w r3, r2, r3 } - 8003764: 4618 mov r0, r3 - 8003766: bd80 pop {r7, pc} - 8003768: 40021000 .word 0x40021000 - 800376c: 080099d0 .word 0x080099d0 + 8003888: 4618 mov r0, r3 + 800388a: bd80 pop {r7, pc} + 800388c: 40021000 .word 0x40021000 + 8003890: 0800a138 .word 0x0800a138 -08003770 : +08003894 : * @brief This function provides delay (in milliseconds) based on CPU cycles method. * @param mdelay: specifies the delay time length, in milliseconds. * @retval None */ static void RCC_Delay(uint32_t mdelay) { - 8003770: b480 push {r7} - 8003772: b085 sub sp, #20 - 8003774: af00 add r7, sp, #0 - 8003776: 6078 str r0, [r7, #4] + 8003894: b480 push {r7} + 8003896: b085 sub sp, #20 + 8003898: af00 add r7, sp, #0 + 800389a: 6078 str r0, [r7, #4] __IO uint32_t Delay = mdelay * (SystemCoreClock / 8U / 1000U); - 8003778: 4b0a ldr r3, [pc, #40] ; (80037a4 ) - 800377a: 681b ldr r3, [r3, #0] - 800377c: 4a0a ldr r2, [pc, #40] ; (80037a8 ) - 800377e: fba2 2303 umull r2, r3, r2, r3 - 8003782: 0a5b lsrs r3, r3, #9 - 8003784: 687a ldr r2, [r7, #4] - 8003786: fb02 f303 mul.w r3, r2, r3 - 800378a: 60fb str r3, [r7, #12] + 800389c: 4b0a ldr r3, [pc, #40] ; (80038c8 ) + 800389e: 681b ldr r3, [r3, #0] + 80038a0: 4a0a ldr r2, [pc, #40] ; (80038cc ) + 80038a2: fba2 2303 umull r2, r3, r2, r3 + 80038a6: 0a5b lsrs r3, r3, #9 + 80038a8: 687a ldr r2, [r7, #4] + 80038aa: fb02 f303 mul.w r3, r2, r3 + 80038ae: 60fb str r3, [r7, #12] do { __NOP(); - 800378c: bf00 nop + 80038b0: bf00 nop } while (Delay --); - 800378e: 68fb ldr r3, [r7, #12] - 8003790: 1e5a subs r2, r3, #1 - 8003792: 60fa str r2, [r7, #12] - 8003794: 2b00 cmp r3, #0 - 8003796: d1f9 bne.n 800378c + 80038b2: 68fb ldr r3, [r7, #12] + 80038b4: 1e5a subs r2, r3, #1 + 80038b6: 60fa str r2, [r7, #12] + 80038b8: 2b00 cmp r3, #0 + 80038ba: d1f9 bne.n 80038b0 } - 8003798: bf00 nop - 800379a: bf00 nop - 800379c: 3714 adds r7, #20 - 800379e: 46bd mov sp, r7 - 80037a0: bc80 pop {r7} - 80037a2: 4770 bx lr - 80037a4: 20000000 .word 0x20000000 - 80037a8: 10624dd3 .word 0x10624dd3 + 80038bc: bf00 nop + 80038be: bf00 nop + 80038c0: 3714 adds r7, #20 + 80038c2: 46bd mov sp, r7 + 80038c4: bc80 pop {r7} + 80038c6: 4770 bx lr + 80038c8: 20000000 .word 0x20000000 + 80038cc: 10624dd3 .word 0x10624dd3 -080037ac : +080038d0 : * @param ExtTiming Pointer to SRAM extended mode timing structure * @retval HAL status */ HAL_StatusTypeDef HAL_SRAM_Init(SRAM_HandleTypeDef *hsram, FSMC_NORSRAM_TimingTypeDef *Timing, FSMC_NORSRAM_TimingTypeDef *ExtTiming) { - 80037ac: b580 push {r7, lr} - 80037ae: b084 sub sp, #16 - 80037b0: af00 add r7, sp, #0 - 80037b2: 60f8 str r0, [r7, #12] - 80037b4: 60b9 str r1, [r7, #8] - 80037b6: 607a str r2, [r7, #4] + 80038d0: b580 push {r7, lr} + 80038d2: b084 sub sp, #16 + 80038d4: af00 add r7, sp, #0 + 80038d6: 60f8 str r0, [r7, #12] + 80038d8: 60b9 str r1, [r7, #8] + 80038da: 607a str r2, [r7, #4] /* Check the SRAM handle parameter */ if ((hsram == NULL) || (hsram->Init.BurstAccessMode == FSMC_BURST_ACCESS_MODE_ENABLE)) - 80037b8: 68fb ldr r3, [r7, #12] - 80037ba: 2b00 cmp r3, #0 - 80037bc: d004 beq.n 80037c8 - 80037be: 68fb ldr r3, [r7, #12] - 80037c0: 699b ldr r3, [r3, #24] - 80037c2: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 80037c6: d101 bne.n 80037cc + 80038dc: 68fb ldr r3, [r7, #12] + 80038de: 2b00 cmp r3, #0 + 80038e0: d004 beq.n 80038ec + 80038e2: 68fb ldr r3, [r7, #12] + 80038e4: 699b ldr r3, [r3, #24] + 80038e6: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 80038ea: d101 bne.n 80038f0 { return HAL_ERROR; - 80037c8: 2301 movs r3, #1 - 80037ca: e038 b.n 800383e + 80038ec: 2301 movs r3, #1 + 80038ee: e038 b.n 8003962 } if (hsram->State == HAL_SRAM_STATE_RESET) - 80037cc: 68fb ldr r3, [r7, #12] - 80037ce: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 - 80037d2: b2db uxtb r3, r3 - 80037d4: 2b00 cmp r3, #0 - 80037d6: d106 bne.n 80037e6 + 80038f0: 68fb ldr r3, [r7, #12] + 80038f2: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 + 80038f6: b2db uxtb r3, r3 + 80038f8: 2b00 cmp r3, #0 + 80038fa: d106 bne.n 800390a { /* Allocate lock resource and initialize it */ hsram->Lock = HAL_UNLOCKED; - 80037d8: 68fb ldr r3, [r7, #12] - 80037da: 2200 movs r2, #0 - 80037dc: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 80038fc: 68fb ldr r3, [r7, #12] + 80038fe: 2200 movs r2, #0 + 8003900: f883 2040 strb.w r2, [r3, #64] ; 0x40 /* Init the low level hardware */ hsram->MspInitCallback(hsram); #else /* Initialize the low level hardware (MSP) */ HAL_SRAM_MspInit(hsram); - 80037e0: 68f8 ldr r0, [r7, #12] - 80037e2: f7fd ff91 bl 8001708 + 8003904: 68f8 ldr r0, [r7, #12] + 8003906: f7fd ff5d bl 80017c4 #endif /* USE_HAL_SRAM_REGISTER_CALLBACKS */ } /* Initialize SRAM control Interface */ (void)FSMC_NORSRAM_Init(hsram->Instance, &(hsram->Init)); - 80037e6: 68fb ldr r3, [r7, #12] - 80037e8: 681a ldr r2, [r3, #0] - 80037ea: 68fb ldr r3, [r7, #12] - 80037ec: 3308 adds r3, #8 - 80037ee: 4619 mov r1, r3 - 80037f0: 4610 mov r0, r2 - 80037f2: f000 f829 bl 8003848 + 800390a: 68fb ldr r3, [r7, #12] + 800390c: 681a ldr r2, [r3, #0] + 800390e: 68fb ldr r3, [r7, #12] + 8003910: 3308 adds r3, #8 + 8003912: 4619 mov r1, r3 + 8003914: 4610 mov r0, r2 + 8003916: f000 fb29 bl 8003f6c /* Initialize SRAM timing Interface */ (void)FSMC_NORSRAM_Timing_Init(hsram->Instance, Timing, hsram->Init.NSBank); - 80037f6: 68fb ldr r3, [r7, #12] - 80037f8: 6818 ldr r0, [r3, #0] - 80037fa: 68fb ldr r3, [r7, #12] - 80037fc: 689b ldr r3, [r3, #8] - 80037fe: 461a mov r2, r3 - 8003800: 68b9 ldr r1, [r7, #8] - 8003802: f000 f88b bl 800391c + 800391a: 68fb ldr r3, [r7, #12] + 800391c: 6818 ldr r0, [r3, #0] + 800391e: 68fb ldr r3, [r7, #12] + 8003920: 689b ldr r3, [r3, #8] + 8003922: 461a mov r2, r3 + 8003924: 68b9 ldr r1, [r7, #8] + 8003926: f000 fb8b bl 8004040 /* Initialize SRAM extended mode timing Interface */ (void)FSMC_NORSRAM_Extended_Timing_Init(hsram->Extended, ExtTiming, hsram->Init.NSBank, - 8003806: 68fb ldr r3, [r7, #12] - 8003808: 6858 ldr r0, [r3, #4] - 800380a: 68fb ldr r3, [r7, #12] - 800380c: 689a ldr r2, [r3, #8] - 800380e: 68fb ldr r3, [r7, #12] - 8003810: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003812: 6879 ldr r1, [r7, #4] - 8003814: f000 f8b6 bl 8003984 + 800392a: 68fb ldr r3, [r7, #12] + 800392c: 6858 ldr r0, [r3, #4] + 800392e: 68fb ldr r3, [r7, #12] + 8003930: 689a ldr r2, [r3, #8] + 8003932: 68fb ldr r3, [r7, #12] + 8003934: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003936: 6879 ldr r1, [r7, #4] + 8003938: f000 fbb6 bl 80040a8 hsram->Init.ExtendedMode); /* Enable the NORSRAM device */ __FSMC_NORSRAM_ENABLE(hsram->Instance, hsram->Init.NSBank); - 8003818: 68fb ldr r3, [r7, #12] - 800381a: 681b ldr r3, [r3, #0] - 800381c: 68fa ldr r2, [r7, #12] - 800381e: 6892 ldr r2, [r2, #8] - 8003820: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 8003824: 68fb ldr r3, [r7, #12] - 8003826: 681b ldr r3, [r3, #0] - 8003828: 68fa ldr r2, [r7, #12] - 800382a: 6892 ldr r2, [r2, #8] - 800382c: f041 0101 orr.w r1, r1, #1 - 8003830: f843 1022 str.w r1, [r3, r2, lsl #2] + 800393c: 68fb ldr r3, [r7, #12] + 800393e: 681b ldr r3, [r3, #0] + 8003940: 68fa ldr r2, [r7, #12] + 8003942: 6892 ldr r2, [r2, #8] + 8003944: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 8003948: 68fb ldr r3, [r7, #12] + 800394a: 681b ldr r3, [r3, #0] + 800394c: 68fa ldr r2, [r7, #12] + 800394e: 6892 ldr r2, [r2, #8] + 8003950: f041 0101 orr.w r1, r1, #1 + 8003954: f843 1022 str.w r1, [r3, r2, lsl #2] /* Initialize the SRAM controller state */ hsram->State = HAL_SRAM_STATE_READY; - 8003834: 68fb ldr r3, [r7, #12] - 8003836: 2201 movs r2, #1 - 8003838: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 8003958: 68fb ldr r3, [r7, #12] + 800395a: 2201 movs r2, #1 + 800395c: f883 2041 strb.w r2, [r3, #65] ; 0x41 return HAL_OK; - 800383c: 2300 movs r3, #0 + 8003960: 2300 movs r3, #0 } - 800383e: 4618 mov r0, r3 - 8003840: 3710 adds r7, #16 - 8003842: 46bd mov sp, r7 - 8003844: bd80 pop {r7, pc} - ... + 8003962: 4618 mov r0, r3 + 8003964: 3710 adds r7, #16 + 8003966: 46bd mov sp, r7 + 8003968: bd80 pop {r7, pc} -08003848 : +0800396a : + * Ex: call @ref HAL_TIM_Base_DeInit() before HAL_TIM_Base_Init() + * @param htim TIM Base handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *htim) +{ + 800396a: b580 push {r7, lr} + 800396c: b082 sub sp, #8 + 800396e: af00 add r7, sp, #0 + 8003970: 6078 str r0, [r7, #4] + /* Check the TIM handle allocation */ + if (htim == NULL) + 8003972: 687b ldr r3, [r7, #4] + 8003974: 2b00 cmp r3, #0 + 8003976: d101 bne.n 800397c + { + return HAL_ERROR; + 8003978: 2301 movs r3, #1 + 800397a: e041 b.n 8003a00 + assert_param(IS_TIM_INSTANCE(htim->Instance)); + assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); + assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); + assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); + + if (htim->State == HAL_TIM_STATE_RESET) + 800397c: 687b ldr r3, [r7, #4] + 800397e: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8003982: b2db uxtb r3, r3 + 8003984: 2b00 cmp r3, #0 + 8003986: d106 bne.n 8003996 + { + /* Allocate lock resource and initialize it */ + htim->Lock = HAL_UNLOCKED; + 8003988: 687b ldr r3, [r7, #4] + 800398a: 2200 movs r2, #0 + 800398c: f883 203c strb.w r2, [r3, #60] ; 0x3c + } + /* Init the low level hardware : GPIO, CLOCK, NVIC */ + htim->Base_MspInitCallback(htim); +#else + /* Init the low level hardware : GPIO, CLOCK, NVIC */ + HAL_TIM_Base_MspInit(htim); + 8003990: 6878 ldr r0, [r7, #4] + 8003992: f7fd fe9d bl 80016d0 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + + /* Set the TIM state */ + htim->State = HAL_TIM_STATE_BUSY; + 8003996: 687b ldr r3, [r7, #4] + 8003998: 2202 movs r2, #2 + 800399a: f883 203d strb.w r2, [r3, #61] ; 0x3d + + /* Set the Time Base configuration */ + TIM_Base_SetConfig(htim->Instance, &htim->Init); + 800399e: 687b ldr r3, [r7, #4] + 80039a0: 681a ldr r2, [r3, #0] + 80039a2: 687b ldr r3, [r7, #4] + 80039a4: 3304 adds r3, #4 + 80039a6: 4619 mov r1, r3 + 80039a8: 4610 mov r0, r2 + 80039aa: f000 f9e7 bl 8003d7c + + /* Initialize the DMA burst operation state */ + htim->DMABurstState = HAL_DMA_BURST_STATE_READY; + 80039ae: 687b ldr r3, [r7, #4] + 80039b0: 2201 movs r2, #1 + 80039b2: f883 2046 strb.w r2, [r3, #70] ; 0x46 + + /* Initialize the TIM channels state */ + TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); + 80039b6: 687b ldr r3, [r7, #4] + 80039b8: 2201 movs r2, #1 + 80039ba: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80039be: 687b ldr r3, [r7, #4] + 80039c0: 2201 movs r2, #1 + 80039c2: f883 203f strb.w r2, [r3, #63] ; 0x3f + 80039c6: 687b ldr r3, [r7, #4] + 80039c8: 2201 movs r2, #1 + 80039ca: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 80039ce: 687b ldr r3, [r7, #4] + 80039d0: 2201 movs r2, #1 + 80039d2: f883 2041 strb.w r2, [r3, #65] ; 0x41 + TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); + 80039d6: 687b ldr r3, [r7, #4] + 80039d8: 2201 movs r2, #1 + 80039da: f883 2042 strb.w r2, [r3, #66] ; 0x42 + 80039de: 687b ldr r3, [r7, #4] + 80039e0: 2201 movs r2, #1 + 80039e2: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 80039e6: 687b ldr r3, [r7, #4] + 80039e8: 2201 movs r2, #1 + 80039ea: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 80039ee: 687b ldr r3, [r7, #4] + 80039f0: 2201 movs r2, #1 + 80039f2: f883 2045 strb.w r2, [r3, #69] ; 0x45 + + /* Initialize the TIM state*/ + htim->State = HAL_TIM_STATE_READY; + 80039f6: 687b ldr r3, [r7, #4] + 80039f8: 2201 movs r2, #1 + 80039fa: f883 203d strb.w r2, [r3, #61] ; 0x3d + + return HAL_OK; + 80039fe: 2300 movs r3, #0 +} + 8003a00: 4618 mov r0, r3 + 8003a02: 3708 adds r7, #8 + 8003a04: 46bd mov sp, r7 + 8003a06: bd80 pop {r7, pc} + +08003a08 : + * @brief Starts the TIM Base generation in interrupt mode. + * @param htim TIM Base handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim) +{ + 8003a08: b480 push {r7} + 8003a0a: b085 sub sp, #20 + 8003a0c: af00 add r7, sp, #0 + 8003a0e: 6078 str r0, [r7, #4] + + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + /* Check the TIM state */ + if (htim->State != HAL_TIM_STATE_READY) + 8003a10: 687b ldr r3, [r7, #4] + 8003a12: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8003a16: b2db uxtb r3, r3 + 8003a18: 2b01 cmp r3, #1 + 8003a1a: d001 beq.n 8003a20 + { + return HAL_ERROR; + 8003a1c: 2301 movs r3, #1 + 8003a1e: e044 b.n 8003aaa + } + + /* Set the TIM state */ + htim->State = HAL_TIM_STATE_BUSY; + 8003a20: 687b ldr r3, [r7, #4] + 8003a22: 2202 movs r2, #2 + 8003a24: f883 203d strb.w r2, [r3, #61] ; 0x3d + + /* Enable the TIM Update interrupt */ + __HAL_TIM_ENABLE_IT(htim, TIM_IT_UPDATE); + 8003a28: 687b ldr r3, [r7, #4] + 8003a2a: 681b ldr r3, [r3, #0] + 8003a2c: 68da ldr r2, [r3, #12] + 8003a2e: 687b ldr r3, [r7, #4] + 8003a30: 681b ldr r3, [r3, #0] + 8003a32: f042 0201 orr.w r2, r2, #1 + 8003a36: 60da str r2, [r3, #12] + + /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ + if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) + 8003a38: 687b ldr r3, [r7, #4] + 8003a3a: 681b ldr r3, [r3, #0] + 8003a3c: 4a1d ldr r2, [pc, #116] ; (8003ab4 ) + 8003a3e: 4293 cmp r3, r2 + 8003a40: d018 beq.n 8003a74 + 8003a42: 687b ldr r3, [r7, #4] + 8003a44: 681b ldr r3, [r3, #0] + 8003a46: 4a1c ldr r2, [pc, #112] ; (8003ab8 ) + 8003a48: 4293 cmp r3, r2 + 8003a4a: d013 beq.n 8003a74 + 8003a4c: 687b ldr r3, [r7, #4] + 8003a4e: 681b ldr r3, [r3, #0] + 8003a50: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8003a54: d00e beq.n 8003a74 + 8003a56: 687b ldr r3, [r7, #4] + 8003a58: 681b ldr r3, [r3, #0] + 8003a5a: 4a18 ldr r2, [pc, #96] ; (8003abc ) + 8003a5c: 4293 cmp r3, r2 + 8003a5e: d009 beq.n 8003a74 + 8003a60: 687b ldr r3, [r7, #4] + 8003a62: 681b ldr r3, [r3, #0] + 8003a64: 4a16 ldr r2, [pc, #88] ; (8003ac0 ) + 8003a66: 4293 cmp r3, r2 + 8003a68: d004 beq.n 8003a74 + 8003a6a: 687b ldr r3, [r7, #4] + 8003a6c: 681b ldr r3, [r3, #0] + 8003a6e: 4a15 ldr r2, [pc, #84] ; (8003ac4 ) + 8003a70: 4293 cmp r3, r2 + 8003a72: d111 bne.n 8003a98 + { + tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; + 8003a74: 687b ldr r3, [r7, #4] + 8003a76: 681b ldr r3, [r3, #0] + 8003a78: 689b ldr r3, [r3, #8] + 8003a7a: f003 0307 and.w r3, r3, #7 + 8003a7e: 60fb str r3, [r7, #12] + if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) + 8003a80: 68fb ldr r3, [r7, #12] + 8003a82: 2b06 cmp r3, #6 + 8003a84: d010 beq.n 8003aa8 + { + __HAL_TIM_ENABLE(htim); + 8003a86: 687b ldr r3, [r7, #4] + 8003a88: 681b ldr r3, [r3, #0] + 8003a8a: 681a ldr r2, [r3, #0] + 8003a8c: 687b ldr r3, [r7, #4] + 8003a8e: 681b ldr r3, [r3, #0] + 8003a90: f042 0201 orr.w r2, r2, #1 + 8003a94: 601a str r2, [r3, #0] + if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) + 8003a96: e007 b.n 8003aa8 + } + } + else + { + __HAL_TIM_ENABLE(htim); + 8003a98: 687b ldr r3, [r7, #4] + 8003a9a: 681b ldr r3, [r3, #0] + 8003a9c: 681a ldr r2, [r3, #0] + 8003a9e: 687b ldr r3, [r7, #4] + 8003aa0: 681b ldr r3, [r3, #0] + 8003aa2: f042 0201 orr.w r2, r2, #1 + 8003aa6: 601a str r2, [r3, #0] + } + + /* Return function status */ + return HAL_OK; + 8003aa8: 2300 movs r3, #0 +} + 8003aaa: 4618 mov r0, r3 + 8003aac: 3714 adds r7, #20 + 8003aae: 46bd mov sp, r7 + 8003ab0: bc80 pop {r7} + 8003ab2: 4770 bx lr + 8003ab4: 40012c00 .word 0x40012c00 + 8003ab8: 40013400 .word 0x40013400 + 8003abc: 40000400 .word 0x40000400 + 8003ac0: 40000800 .word 0x40000800 + 8003ac4: 40000c00 .word 0x40000c00 + +08003ac8 : + * @brief Stops the TIM Base generation in interrupt mode. + * @param htim TIM Base handle + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIM_Base_Stop_IT(TIM_HandleTypeDef *htim) +{ + 8003ac8: b480 push {r7} + 8003aca: b083 sub sp, #12 + 8003acc: af00 add r7, sp, #0 + 8003ace: 6078 str r0, [r7, #4] + /* Check the parameters */ + assert_param(IS_TIM_INSTANCE(htim->Instance)); + + /* Disable the TIM Update interrupt */ + __HAL_TIM_DISABLE_IT(htim, TIM_IT_UPDATE); + 8003ad0: 687b ldr r3, [r7, #4] + 8003ad2: 681b ldr r3, [r3, #0] + 8003ad4: 68da ldr r2, [r3, #12] + 8003ad6: 687b ldr r3, [r7, #4] + 8003ad8: 681b ldr r3, [r3, #0] + 8003ada: f022 0201 bic.w r2, r2, #1 + 8003ade: 60da str r2, [r3, #12] + + /* Disable the Peripheral */ + __HAL_TIM_DISABLE(htim); + 8003ae0: 687b ldr r3, [r7, #4] + 8003ae2: 681b ldr r3, [r3, #0] + 8003ae4: 6a1a ldr r2, [r3, #32] + 8003ae6: f241 1311 movw r3, #4369 ; 0x1111 + 8003aea: 4013 ands r3, r2 + 8003aec: 2b00 cmp r3, #0 + 8003aee: d10f bne.n 8003b10 + 8003af0: 687b ldr r3, [r7, #4] + 8003af2: 681b ldr r3, [r3, #0] + 8003af4: 6a1a ldr r2, [r3, #32] + 8003af6: f240 4344 movw r3, #1092 ; 0x444 + 8003afa: 4013 ands r3, r2 + 8003afc: 2b00 cmp r3, #0 + 8003afe: d107 bne.n 8003b10 + 8003b00: 687b ldr r3, [r7, #4] + 8003b02: 681b ldr r3, [r3, #0] + 8003b04: 681a ldr r2, [r3, #0] + 8003b06: 687b ldr r3, [r7, #4] + 8003b08: 681b ldr r3, [r3, #0] + 8003b0a: f022 0201 bic.w r2, r2, #1 + 8003b0e: 601a str r2, [r3, #0] + + /* Set the TIM state */ + htim->State = HAL_TIM_STATE_READY; + 8003b10: 687b ldr r3, [r7, #4] + 8003b12: 2201 movs r2, #1 + 8003b14: f883 203d strb.w r2, [r3, #61] ; 0x3d + + /* Return function status */ + return HAL_OK; + 8003b18: 2300 movs r3, #0 +} + 8003b1a: 4618 mov r0, r3 + 8003b1c: 370c adds r7, #12 + 8003b1e: 46bd mov sp, r7 + 8003b20: bc80 pop {r7} + 8003b22: 4770 bx lr + +08003b24 : + * @brief This function handles TIM interrupts requests. + * @param htim TIM handle + * @retval None + */ +void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) +{ + 8003b24: b580 push {r7, lr} + 8003b26: b082 sub sp, #8 + 8003b28: af00 add r7, sp, #0 + 8003b2a: 6078 str r0, [r7, #4] + /* Capture compare 1 event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC1) != RESET) + 8003b2c: 687b ldr r3, [r7, #4] + 8003b2e: 681b ldr r3, [r3, #0] + 8003b30: 691b ldr r3, [r3, #16] + 8003b32: f003 0302 and.w r3, r3, #2 + 8003b36: 2b02 cmp r3, #2 + 8003b38: d122 bne.n 8003b80 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC1) != RESET) + 8003b3a: 687b ldr r3, [r7, #4] + 8003b3c: 681b ldr r3, [r3, #0] + 8003b3e: 68db ldr r3, [r3, #12] + 8003b40: f003 0302 and.w r3, r3, #2 + 8003b44: 2b02 cmp r3, #2 + 8003b46: d11b bne.n 8003b80 + { + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC1); + 8003b48: 687b ldr r3, [r7, #4] + 8003b4a: 681b ldr r3, [r3, #0] + 8003b4c: f06f 0202 mvn.w r2, #2 + 8003b50: 611a str r2, [r3, #16] + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; + 8003b52: 687b ldr r3, [r7, #4] + 8003b54: 2201 movs r2, #1 + 8003b56: 771a strb r2, [r3, #28] + + /* Input capture event */ + if ((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) + 8003b58: 687b ldr r3, [r7, #4] + 8003b5a: 681b ldr r3, [r3, #0] + 8003b5c: 699b ldr r3, [r3, #24] + 8003b5e: f003 0303 and.w r3, r3, #3 + 8003b62: 2b00 cmp r3, #0 + 8003b64: d003 beq.n 8003b6e + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->IC_CaptureCallback(htim); +#else + HAL_TIM_IC_CaptureCallback(htim); + 8003b66: 6878 ldr r0, [r7, #4] + 8003b68: f000 f8ed bl 8003d46 + 8003b6c: e005 b.n 8003b7a + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->OC_DelayElapsedCallback(htim); + htim->PWM_PulseFinishedCallback(htim); +#else + HAL_TIM_OC_DelayElapsedCallback(htim); + 8003b6e: 6878 ldr r0, [r7, #4] + 8003b70: f000 f8e0 bl 8003d34 + HAL_TIM_PWM_PulseFinishedCallback(htim); + 8003b74: 6878 ldr r0, [r7, #4] + 8003b76: f000 f8ef bl 8003d58 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + 8003b7a: 687b ldr r3, [r7, #4] + 8003b7c: 2200 movs r2, #0 + 8003b7e: 771a strb r2, [r3, #28] + } + } + } + /* Capture compare 2 event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC2) != RESET) + 8003b80: 687b ldr r3, [r7, #4] + 8003b82: 681b ldr r3, [r3, #0] + 8003b84: 691b ldr r3, [r3, #16] + 8003b86: f003 0304 and.w r3, r3, #4 + 8003b8a: 2b04 cmp r3, #4 + 8003b8c: d122 bne.n 8003bd4 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC2) != RESET) + 8003b8e: 687b ldr r3, [r7, #4] + 8003b90: 681b ldr r3, [r3, #0] + 8003b92: 68db ldr r3, [r3, #12] + 8003b94: f003 0304 and.w r3, r3, #4 + 8003b98: 2b04 cmp r3, #4 + 8003b9a: d11b bne.n 8003bd4 + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC2); + 8003b9c: 687b ldr r3, [r7, #4] + 8003b9e: 681b ldr r3, [r3, #0] + 8003ba0: f06f 0204 mvn.w r2, #4 + 8003ba4: 611a str r2, [r3, #16] + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; + 8003ba6: 687b ldr r3, [r7, #4] + 8003ba8: 2202 movs r2, #2 + 8003baa: 771a strb r2, [r3, #28] + /* Input capture event */ + if ((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) + 8003bac: 687b ldr r3, [r7, #4] + 8003bae: 681b ldr r3, [r3, #0] + 8003bb0: 699b ldr r3, [r3, #24] + 8003bb2: f403 7340 and.w r3, r3, #768 ; 0x300 + 8003bb6: 2b00 cmp r3, #0 + 8003bb8: d003 beq.n 8003bc2 + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->IC_CaptureCallback(htim); +#else + HAL_TIM_IC_CaptureCallback(htim); + 8003bba: 6878 ldr r0, [r7, #4] + 8003bbc: f000 f8c3 bl 8003d46 + 8003bc0: e005 b.n 8003bce + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->OC_DelayElapsedCallback(htim); + htim->PWM_PulseFinishedCallback(htim); +#else + HAL_TIM_OC_DelayElapsedCallback(htim); + 8003bc2: 6878 ldr r0, [r7, #4] + 8003bc4: f000 f8b6 bl 8003d34 + HAL_TIM_PWM_PulseFinishedCallback(htim); + 8003bc8: 6878 ldr r0, [r7, #4] + 8003bca: f000 f8c5 bl 8003d58 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + 8003bce: 687b ldr r3, [r7, #4] + 8003bd0: 2200 movs r2, #0 + 8003bd2: 771a strb r2, [r3, #28] + } + } + /* Capture compare 3 event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC3) != RESET) + 8003bd4: 687b ldr r3, [r7, #4] + 8003bd6: 681b ldr r3, [r3, #0] + 8003bd8: 691b ldr r3, [r3, #16] + 8003bda: f003 0308 and.w r3, r3, #8 + 8003bde: 2b08 cmp r3, #8 + 8003be0: d122 bne.n 8003c28 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC3) != RESET) + 8003be2: 687b ldr r3, [r7, #4] + 8003be4: 681b ldr r3, [r3, #0] + 8003be6: 68db ldr r3, [r3, #12] + 8003be8: f003 0308 and.w r3, r3, #8 + 8003bec: 2b08 cmp r3, #8 + 8003bee: d11b bne.n 8003c28 + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC3); + 8003bf0: 687b ldr r3, [r7, #4] + 8003bf2: 681b ldr r3, [r3, #0] + 8003bf4: f06f 0208 mvn.w r2, #8 + 8003bf8: 611a str r2, [r3, #16] + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; + 8003bfa: 687b ldr r3, [r7, #4] + 8003bfc: 2204 movs r2, #4 + 8003bfe: 771a strb r2, [r3, #28] + /* Input capture event */ + if ((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) + 8003c00: 687b ldr r3, [r7, #4] + 8003c02: 681b ldr r3, [r3, #0] + 8003c04: 69db ldr r3, [r3, #28] + 8003c06: f003 0303 and.w r3, r3, #3 + 8003c0a: 2b00 cmp r3, #0 + 8003c0c: d003 beq.n 8003c16 + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->IC_CaptureCallback(htim); +#else + HAL_TIM_IC_CaptureCallback(htim); + 8003c0e: 6878 ldr r0, [r7, #4] + 8003c10: f000 f899 bl 8003d46 + 8003c14: e005 b.n 8003c22 + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->OC_DelayElapsedCallback(htim); + htim->PWM_PulseFinishedCallback(htim); +#else + HAL_TIM_OC_DelayElapsedCallback(htim); + 8003c16: 6878 ldr r0, [r7, #4] + 8003c18: f000 f88c bl 8003d34 + HAL_TIM_PWM_PulseFinishedCallback(htim); + 8003c1c: 6878 ldr r0, [r7, #4] + 8003c1e: f000 f89b bl 8003d58 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + 8003c22: 687b ldr r3, [r7, #4] + 8003c24: 2200 movs r2, #0 + 8003c26: 771a strb r2, [r3, #28] + } + } + /* Capture compare 4 event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC4) != RESET) + 8003c28: 687b ldr r3, [r7, #4] + 8003c2a: 681b ldr r3, [r3, #0] + 8003c2c: 691b ldr r3, [r3, #16] + 8003c2e: f003 0310 and.w r3, r3, #16 + 8003c32: 2b10 cmp r3, #16 + 8003c34: d122 bne.n 8003c7c + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC4) != RESET) + 8003c36: 687b ldr r3, [r7, #4] + 8003c38: 681b ldr r3, [r3, #0] + 8003c3a: 68db ldr r3, [r3, #12] + 8003c3c: f003 0310 and.w r3, r3, #16 + 8003c40: 2b10 cmp r3, #16 + 8003c42: d11b bne.n 8003c7c + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC4); + 8003c44: 687b ldr r3, [r7, #4] + 8003c46: 681b ldr r3, [r3, #0] + 8003c48: f06f 0210 mvn.w r2, #16 + 8003c4c: 611a str r2, [r3, #16] + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; + 8003c4e: 687b ldr r3, [r7, #4] + 8003c50: 2208 movs r2, #8 + 8003c52: 771a strb r2, [r3, #28] + /* Input capture event */ + if ((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) + 8003c54: 687b ldr r3, [r7, #4] + 8003c56: 681b ldr r3, [r3, #0] + 8003c58: 69db ldr r3, [r3, #28] + 8003c5a: f403 7340 and.w r3, r3, #768 ; 0x300 + 8003c5e: 2b00 cmp r3, #0 + 8003c60: d003 beq.n 8003c6a + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->IC_CaptureCallback(htim); +#else + HAL_TIM_IC_CaptureCallback(htim); + 8003c62: 6878 ldr r0, [r7, #4] + 8003c64: f000 f86f bl 8003d46 + 8003c68: e005 b.n 8003c76 + { +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->OC_DelayElapsedCallback(htim); + htim->PWM_PulseFinishedCallback(htim); +#else + HAL_TIM_OC_DelayElapsedCallback(htim); + 8003c6a: 6878 ldr r0, [r7, #4] + 8003c6c: f000 f862 bl 8003d34 + HAL_TIM_PWM_PulseFinishedCallback(htim); + 8003c70: 6878 ldr r0, [r7, #4] + 8003c72: f000 f871 bl 8003d58 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; + 8003c76: 687b ldr r3, [r7, #4] + 8003c78: 2200 movs r2, #0 + 8003c7a: 771a strb r2, [r3, #28] + } + } + /* TIM Update event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_UPDATE) != RESET) + 8003c7c: 687b ldr r3, [r7, #4] + 8003c7e: 681b ldr r3, [r3, #0] + 8003c80: 691b ldr r3, [r3, #16] + 8003c82: f003 0301 and.w r3, r3, #1 + 8003c86: 2b01 cmp r3, #1 + 8003c88: d10e bne.n 8003ca8 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_UPDATE) != RESET) + 8003c8a: 687b ldr r3, [r7, #4] + 8003c8c: 681b ldr r3, [r3, #0] + 8003c8e: 68db ldr r3, [r3, #12] + 8003c90: f003 0301 and.w r3, r3, #1 + 8003c94: 2b01 cmp r3, #1 + 8003c96: d107 bne.n 8003ca8 + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_UPDATE); + 8003c98: 687b ldr r3, [r7, #4] + 8003c9a: 681b ldr r3, [r3, #0] + 8003c9c: f06f 0201 mvn.w r2, #1 + 8003ca0: 611a str r2, [r3, #16] +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->PeriodElapsedCallback(htim); +#else + HAL_TIM_PeriodElapsedCallback(htim); + 8003ca2: 6878 ldr r0, [r7, #4] + 8003ca4: f002 fee0 bl 8006a68 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + } + /* TIM Break input event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_BREAK) != RESET) + 8003ca8: 687b ldr r3, [r7, #4] + 8003caa: 681b ldr r3, [r3, #0] + 8003cac: 691b ldr r3, [r3, #16] + 8003cae: f003 0380 and.w r3, r3, #128 ; 0x80 + 8003cb2: 2b80 cmp r3, #128 ; 0x80 + 8003cb4: d10e bne.n 8003cd4 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_BREAK) != RESET) + 8003cb6: 687b ldr r3, [r7, #4] + 8003cb8: 681b ldr r3, [r3, #0] + 8003cba: 68db ldr r3, [r3, #12] + 8003cbc: f003 0380 and.w r3, r3, #128 ; 0x80 + 8003cc0: 2b80 cmp r3, #128 ; 0x80 + 8003cc2: d107 bne.n 8003cd4 + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_BREAK); + 8003cc4: 687b ldr r3, [r7, #4] + 8003cc6: 681b ldr r3, [r3, #0] + 8003cc8: f06f 0280 mvn.w r2, #128 ; 0x80 + 8003ccc: 611a str r2, [r3, #16] +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->BreakCallback(htim); +#else + HAL_TIMEx_BreakCallback(htim); + 8003cce: 6878 ldr r0, [r7, #4] + 8003cd0: f000 f943 bl 8003f5a +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + } + /* TIM Trigger detection event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) + 8003cd4: 687b ldr r3, [r7, #4] + 8003cd6: 681b ldr r3, [r3, #0] + 8003cd8: 691b ldr r3, [r3, #16] + 8003cda: f003 0340 and.w r3, r3, #64 ; 0x40 + 8003cde: 2b40 cmp r3, #64 ; 0x40 + 8003ce0: d10e bne.n 8003d00 + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) != RESET) + 8003ce2: 687b ldr r3, [r7, #4] + 8003ce4: 681b ldr r3, [r3, #0] + 8003ce6: 68db ldr r3, [r3, #12] + 8003ce8: f003 0340 and.w r3, r3, #64 ; 0x40 + 8003cec: 2b40 cmp r3, #64 ; 0x40 + 8003cee: d107 bne.n 8003d00 + { + __HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER); + 8003cf0: 687b ldr r3, [r7, #4] + 8003cf2: 681b ldr r3, [r3, #0] + 8003cf4: f06f 0240 mvn.w r2, #64 ; 0x40 + 8003cf8: 611a str r2, [r3, #16] +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->TriggerCallback(htim); +#else + HAL_TIM_TriggerCallback(htim); + 8003cfa: 6878 ldr r0, [r7, #4] + 8003cfc: f000 f835 bl 8003d6a +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + } + /* TIM commutation event */ + if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_COM) != RESET) + 8003d00: 687b ldr r3, [r7, #4] + 8003d02: 681b ldr r3, [r3, #0] + 8003d04: 691b ldr r3, [r3, #16] + 8003d06: f003 0320 and.w r3, r3, #32 + 8003d0a: 2b20 cmp r3, #32 + 8003d0c: d10e bne.n 8003d2c + { + if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_COM) != RESET) + 8003d0e: 687b ldr r3, [r7, #4] + 8003d10: 681b ldr r3, [r3, #0] + 8003d12: 68db ldr r3, [r3, #12] + 8003d14: f003 0320 and.w r3, r3, #32 + 8003d18: 2b20 cmp r3, #32 + 8003d1a: d107 bne.n 8003d2c + { + __HAL_TIM_CLEAR_IT(htim, TIM_FLAG_COM); + 8003d1c: 687b ldr r3, [r7, #4] + 8003d1e: 681b ldr r3, [r3, #0] + 8003d20: f06f 0220 mvn.w r2, #32 + 8003d24: 611a str r2, [r3, #16] +#if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) + htim->CommutationCallback(htim); +#else + HAL_TIMEx_CommutCallback(htim); + 8003d26: 6878 ldr r0, [r7, #4] + 8003d28: f000 f90e bl 8003f48 +#endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ + } + } +} + 8003d2c: bf00 nop + 8003d2e: 3708 adds r7, #8 + 8003d30: 46bd mov sp, r7 + 8003d32: bd80 pop {r7, pc} + +08003d34 : + * @brief Output Compare callback in non-blocking mode + * @param htim TIM OC handle + * @retval None + */ +__weak void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim) +{ + 8003d34: b480 push {r7} + 8003d36: b083 sub sp, #12 + 8003d38: af00 add r7, sp, #0 + 8003d3a: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIM_OC_DelayElapsedCallback could be implemented in the user file + */ +} + 8003d3c: bf00 nop + 8003d3e: 370c adds r7, #12 + 8003d40: 46bd mov sp, r7 + 8003d42: bc80 pop {r7} + 8003d44: 4770 bx lr + +08003d46 : + * @brief Input Capture callback in non-blocking mode + * @param htim TIM IC handle + * @retval None + */ +__weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) +{ + 8003d46: b480 push {r7} + 8003d48: b083 sub sp, #12 + 8003d4a: af00 add r7, sp, #0 + 8003d4c: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIM_IC_CaptureCallback could be implemented in the user file + */ +} + 8003d4e: bf00 nop + 8003d50: 370c adds r7, #12 + 8003d52: 46bd mov sp, r7 + 8003d54: bc80 pop {r7} + 8003d56: 4770 bx lr + +08003d58 : + * @brief PWM Pulse finished callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) +{ + 8003d58: b480 push {r7} + 8003d5a: b083 sub sp, #12 + 8003d5c: af00 add r7, sp, #0 + 8003d5e: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIM_PWM_PulseFinishedCallback could be implemented in the user file + */ +} + 8003d60: bf00 nop + 8003d62: 370c adds r7, #12 + 8003d64: 46bd mov sp, r7 + 8003d66: bc80 pop {r7} + 8003d68: 4770 bx lr + +08003d6a : + * @brief Hall Trigger detection callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) +{ + 8003d6a: b480 push {r7} + 8003d6c: b083 sub sp, #12 + 8003d6e: af00 add r7, sp, #0 + 8003d70: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIM_TriggerCallback could be implemented in the user file + */ +} + 8003d72: bf00 nop + 8003d74: 370c adds r7, #12 + 8003d76: 46bd mov sp, r7 + 8003d78: bc80 pop {r7} + 8003d7a: 4770 bx lr + +08003d7c : + * @param TIMx TIM peripheral + * @param Structure TIM Base configuration structure + * @retval None + */ +void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure) +{ + 8003d7c: b480 push {r7} + 8003d7e: b085 sub sp, #20 + 8003d80: af00 add r7, sp, #0 + 8003d82: 6078 str r0, [r7, #4] + 8003d84: 6039 str r1, [r7, #0] + uint32_t tmpcr1; + tmpcr1 = TIMx->CR1; + 8003d86: 687b ldr r3, [r7, #4] + 8003d88: 681b ldr r3, [r3, #0] + 8003d8a: 60fb str r3, [r7, #12] + + /* Set TIM Time Base Unit parameters ---------------------------------------*/ + if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) + 8003d8c: 687b ldr r3, [r7, #4] + 8003d8e: 4a33 ldr r2, [pc, #204] ; (8003e5c ) + 8003d90: 4293 cmp r3, r2 + 8003d92: d013 beq.n 8003dbc + 8003d94: 687b ldr r3, [r7, #4] + 8003d96: 4a32 ldr r2, [pc, #200] ; (8003e60 ) + 8003d98: 4293 cmp r3, r2 + 8003d9a: d00f beq.n 8003dbc + 8003d9c: 687b ldr r3, [r7, #4] + 8003d9e: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8003da2: d00b beq.n 8003dbc + 8003da4: 687b ldr r3, [r7, #4] + 8003da6: 4a2f ldr r2, [pc, #188] ; (8003e64 ) + 8003da8: 4293 cmp r3, r2 + 8003daa: d007 beq.n 8003dbc + 8003dac: 687b ldr r3, [r7, #4] + 8003dae: 4a2e ldr r2, [pc, #184] ; (8003e68 ) + 8003db0: 4293 cmp r3, r2 + 8003db2: d003 beq.n 8003dbc + 8003db4: 687b ldr r3, [r7, #4] + 8003db6: 4a2d ldr r2, [pc, #180] ; (8003e6c ) + 8003db8: 4293 cmp r3, r2 + 8003dba: d108 bne.n 8003dce + { + /* Select the Counter Mode */ + tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); + 8003dbc: 68fb ldr r3, [r7, #12] + 8003dbe: f023 0370 bic.w r3, r3, #112 ; 0x70 + 8003dc2: 60fb str r3, [r7, #12] + tmpcr1 |= Structure->CounterMode; + 8003dc4: 683b ldr r3, [r7, #0] + 8003dc6: 685b ldr r3, [r3, #4] + 8003dc8: 68fa ldr r2, [r7, #12] + 8003dca: 4313 orrs r3, r2 + 8003dcc: 60fb str r3, [r7, #12] + } + + if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) + 8003dce: 687b ldr r3, [r7, #4] + 8003dd0: 4a22 ldr r2, [pc, #136] ; (8003e5c ) + 8003dd2: 4293 cmp r3, r2 + 8003dd4: d013 beq.n 8003dfe + 8003dd6: 687b ldr r3, [r7, #4] + 8003dd8: 4a21 ldr r2, [pc, #132] ; (8003e60 ) + 8003dda: 4293 cmp r3, r2 + 8003ddc: d00f beq.n 8003dfe + 8003dde: 687b ldr r3, [r7, #4] + 8003de0: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8003de4: d00b beq.n 8003dfe + 8003de6: 687b ldr r3, [r7, #4] + 8003de8: 4a1e ldr r2, [pc, #120] ; (8003e64 ) + 8003dea: 4293 cmp r3, r2 + 8003dec: d007 beq.n 8003dfe + 8003dee: 687b ldr r3, [r7, #4] + 8003df0: 4a1d ldr r2, [pc, #116] ; (8003e68 ) + 8003df2: 4293 cmp r3, r2 + 8003df4: d003 beq.n 8003dfe + 8003df6: 687b ldr r3, [r7, #4] + 8003df8: 4a1c ldr r2, [pc, #112] ; (8003e6c ) + 8003dfa: 4293 cmp r3, r2 + 8003dfc: d108 bne.n 8003e10 + { + /* Set the clock division */ + tmpcr1 &= ~TIM_CR1_CKD; + 8003dfe: 68fb ldr r3, [r7, #12] + 8003e00: f423 7340 bic.w r3, r3, #768 ; 0x300 + 8003e04: 60fb str r3, [r7, #12] + tmpcr1 |= (uint32_t)Structure->ClockDivision; + 8003e06: 683b ldr r3, [r7, #0] + 8003e08: 68db ldr r3, [r3, #12] + 8003e0a: 68fa ldr r2, [r7, #12] + 8003e0c: 4313 orrs r3, r2 + 8003e0e: 60fb str r3, [r7, #12] + } + + /* Set the auto-reload preload */ + MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); + 8003e10: 68fb ldr r3, [r7, #12] + 8003e12: f023 0280 bic.w r2, r3, #128 ; 0x80 + 8003e16: 683b ldr r3, [r7, #0] + 8003e18: 695b ldr r3, [r3, #20] + 8003e1a: 4313 orrs r3, r2 + 8003e1c: 60fb str r3, [r7, #12] + + TIMx->CR1 = tmpcr1; + 8003e1e: 687b ldr r3, [r7, #4] + 8003e20: 68fa ldr r2, [r7, #12] + 8003e22: 601a str r2, [r3, #0] + + /* Set the Autoreload value */ + TIMx->ARR = (uint32_t)Structure->Period ; + 8003e24: 683b ldr r3, [r7, #0] + 8003e26: 689a ldr r2, [r3, #8] + 8003e28: 687b ldr r3, [r7, #4] + 8003e2a: 62da str r2, [r3, #44] ; 0x2c + + /* Set the Prescaler value */ + TIMx->PSC = Structure->Prescaler; + 8003e2c: 683b ldr r3, [r7, #0] + 8003e2e: 681a ldr r2, [r3, #0] + 8003e30: 687b ldr r3, [r7, #4] + 8003e32: 629a str r2, [r3, #40] ; 0x28 + + if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) + 8003e34: 687b ldr r3, [r7, #4] + 8003e36: 4a09 ldr r2, [pc, #36] ; (8003e5c ) + 8003e38: 4293 cmp r3, r2 + 8003e3a: d003 beq.n 8003e44 + 8003e3c: 687b ldr r3, [r7, #4] + 8003e3e: 4a08 ldr r2, [pc, #32] ; (8003e60 ) + 8003e40: 4293 cmp r3, r2 + 8003e42: d103 bne.n 8003e4c + { + /* Set the Repetition Counter value */ + TIMx->RCR = Structure->RepetitionCounter; + 8003e44: 683b ldr r3, [r7, #0] + 8003e46: 691a ldr r2, [r3, #16] + 8003e48: 687b ldr r3, [r7, #4] + 8003e4a: 631a str r2, [r3, #48] ; 0x30 + } + + /* Generate an update event to reload the Prescaler + and the repetition counter (only for advanced timer) value immediately */ + TIMx->EGR = TIM_EGR_UG; + 8003e4c: 687b ldr r3, [r7, #4] + 8003e4e: 2201 movs r2, #1 + 8003e50: 615a str r2, [r3, #20] +} + 8003e52: bf00 nop + 8003e54: 3714 adds r7, #20 + 8003e56: 46bd mov sp, r7 + 8003e58: bc80 pop {r7} + 8003e5a: 4770 bx lr + 8003e5c: 40012c00 .word 0x40012c00 + 8003e60: 40013400 .word 0x40013400 + 8003e64: 40000400 .word 0x40000400 + 8003e68: 40000800 .word 0x40000800 + 8003e6c: 40000c00 .word 0x40000c00 + +08003e70 : + * mode. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, + TIM_MasterConfigTypeDef *sMasterConfig) +{ + 8003e70: b480 push {r7} + 8003e72: b085 sub sp, #20 + 8003e74: af00 add r7, sp, #0 + 8003e76: 6078 str r0, [r7, #4] + 8003e78: 6039 str r1, [r7, #0] + assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance)); + assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger)); + assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode)); + + /* Check input state */ + __HAL_LOCK(htim); + 8003e7a: 687b ldr r3, [r7, #4] + 8003e7c: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8003e80: 2b01 cmp r3, #1 + 8003e82: d101 bne.n 8003e88 + 8003e84: 2302 movs r3, #2 + 8003e86: e050 b.n 8003f2a + 8003e88: 687b ldr r3, [r7, #4] + 8003e8a: 2201 movs r2, #1 + 8003e8c: f883 203c strb.w r2, [r3, #60] ; 0x3c + + /* Change the handler state */ + htim->State = HAL_TIM_STATE_BUSY; + 8003e90: 687b ldr r3, [r7, #4] + 8003e92: 2202 movs r2, #2 + 8003e94: f883 203d strb.w r2, [r3, #61] ; 0x3d + + /* Get the TIMx CR2 register value */ + tmpcr2 = htim->Instance->CR2; + 8003e98: 687b ldr r3, [r7, #4] + 8003e9a: 681b ldr r3, [r3, #0] + 8003e9c: 685b ldr r3, [r3, #4] + 8003e9e: 60fb str r3, [r7, #12] + + /* Get the TIMx SMCR register value */ + tmpsmcr = htim->Instance->SMCR; + 8003ea0: 687b ldr r3, [r7, #4] + 8003ea2: 681b ldr r3, [r3, #0] + 8003ea4: 689b ldr r3, [r3, #8] + 8003ea6: 60bb str r3, [r7, #8] + + /* Reset the MMS Bits */ + tmpcr2 &= ~TIM_CR2_MMS; + 8003ea8: 68fb ldr r3, [r7, #12] + 8003eaa: f023 0370 bic.w r3, r3, #112 ; 0x70 + 8003eae: 60fb str r3, [r7, #12] + /* Select the TRGO source */ + tmpcr2 |= sMasterConfig->MasterOutputTrigger; + 8003eb0: 683b ldr r3, [r7, #0] + 8003eb2: 681b ldr r3, [r3, #0] + 8003eb4: 68fa ldr r2, [r7, #12] + 8003eb6: 4313 orrs r3, r2 + 8003eb8: 60fb str r3, [r7, #12] + + /* Update TIMx CR2 */ + htim->Instance->CR2 = tmpcr2; + 8003eba: 687b ldr r3, [r7, #4] + 8003ebc: 681b ldr r3, [r3, #0] + 8003ebe: 68fa ldr r2, [r7, #12] + 8003ec0: 605a str r2, [r3, #4] + + if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) + 8003ec2: 687b ldr r3, [r7, #4] + 8003ec4: 681b ldr r3, [r3, #0] + 8003ec6: 4a1b ldr r2, [pc, #108] ; (8003f34 ) + 8003ec8: 4293 cmp r3, r2 + 8003eca: d018 beq.n 8003efe + 8003ecc: 687b ldr r3, [r7, #4] + 8003ece: 681b ldr r3, [r3, #0] + 8003ed0: 4a19 ldr r2, [pc, #100] ; (8003f38 ) + 8003ed2: 4293 cmp r3, r2 + 8003ed4: d013 beq.n 8003efe + 8003ed6: 687b ldr r3, [r7, #4] + 8003ed8: 681b ldr r3, [r3, #0] + 8003eda: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8003ede: d00e beq.n 8003efe + 8003ee0: 687b ldr r3, [r7, #4] + 8003ee2: 681b ldr r3, [r3, #0] + 8003ee4: 4a15 ldr r2, [pc, #84] ; (8003f3c ) + 8003ee6: 4293 cmp r3, r2 + 8003ee8: d009 beq.n 8003efe + 8003eea: 687b ldr r3, [r7, #4] + 8003eec: 681b ldr r3, [r3, #0] + 8003eee: 4a14 ldr r2, [pc, #80] ; (8003f40 ) + 8003ef0: 4293 cmp r3, r2 + 8003ef2: d004 beq.n 8003efe + 8003ef4: 687b ldr r3, [r7, #4] + 8003ef6: 681b ldr r3, [r3, #0] + 8003ef8: 4a12 ldr r2, [pc, #72] ; (8003f44 ) + 8003efa: 4293 cmp r3, r2 + 8003efc: d10c bne.n 8003f18 + { + /* Reset the MSM Bit */ + tmpsmcr &= ~TIM_SMCR_MSM; + 8003efe: 68bb ldr r3, [r7, #8] + 8003f00: f023 0380 bic.w r3, r3, #128 ; 0x80 + 8003f04: 60bb str r3, [r7, #8] + /* Set master mode */ + tmpsmcr |= sMasterConfig->MasterSlaveMode; + 8003f06: 683b ldr r3, [r7, #0] + 8003f08: 685b ldr r3, [r3, #4] + 8003f0a: 68ba ldr r2, [r7, #8] + 8003f0c: 4313 orrs r3, r2 + 8003f0e: 60bb str r3, [r7, #8] + + /* Update TIMx SMCR */ + htim->Instance->SMCR = tmpsmcr; + 8003f10: 687b ldr r3, [r7, #4] + 8003f12: 681b ldr r3, [r3, #0] + 8003f14: 68ba ldr r2, [r7, #8] + 8003f16: 609a str r2, [r3, #8] + } + + /* Change the htim state */ + htim->State = HAL_TIM_STATE_READY; + 8003f18: 687b ldr r3, [r7, #4] + 8003f1a: 2201 movs r2, #1 + 8003f1c: f883 203d strb.w r2, [r3, #61] ; 0x3d + + __HAL_UNLOCK(htim); + 8003f20: 687b ldr r3, [r7, #4] + 8003f22: 2200 movs r2, #0 + 8003f24: f883 203c strb.w r2, [r3, #60] ; 0x3c + + return HAL_OK; + 8003f28: 2300 movs r3, #0 +} + 8003f2a: 4618 mov r0, r3 + 8003f2c: 3714 adds r7, #20 + 8003f2e: 46bd mov sp, r7 + 8003f30: bc80 pop {r7} + 8003f32: 4770 bx lr + 8003f34: 40012c00 .word 0x40012c00 + 8003f38: 40013400 .word 0x40013400 + 8003f3c: 40000400 .word 0x40000400 + 8003f40: 40000800 .word 0x40000800 + 8003f44: 40000c00 .word 0x40000c00 + +08003f48 : + * @brief Hall commutation changed callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim) +{ + 8003f48: b480 push {r7} + 8003f4a: b083 sub sp, #12 + 8003f4c: af00 add r7, sp, #0 + 8003f4e: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIMEx_CommutCallback could be implemented in the user file + */ +} + 8003f50: bf00 nop + 8003f52: 370c adds r7, #12 + 8003f54: 46bd mov sp, r7 + 8003f56: bc80 pop {r7} + 8003f58: 4770 bx lr + +08003f5a : + * @brief Hall Break detection callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim) +{ + 8003f5a: b480 push {r7} + 8003f5c: b083 sub sp, #12 + 8003f5e: af00 add r7, sp, #0 + 8003f60: 6078 str r0, [r7, #4] + UNUSED(htim); + + /* NOTE : This function should not be modified, when the callback is needed, + the HAL_TIMEx_BreakCallback could be implemented in the user file + */ +} + 8003f62: bf00 nop + 8003f64: 370c adds r7, #12 + 8003f66: 46bd mov sp, r7 + 8003f68: bc80 pop {r7} + 8003f6a: 4770 bx lr + +08003f6c : * @param Init Pointer to NORSRAM Initialization structure * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Init(FSMC_NORSRAM_TypeDef *Device, FSMC_NORSRAM_InitTypeDef *Init) { - 8003848: b480 push {r7} - 800384a: b087 sub sp, #28 - 800384c: af00 add r7, sp, #0 - 800384e: 6078 str r0, [r7, #4] - 8003850: 6039 str r1, [r7, #0] + 8003f6c: b480 push {r7} + 8003f6e: b087 sub sp, #28 + 8003f70: af00 add r7, sp, #0 + 8003f72: 6078 str r0, [r7, #4] + 8003f74: 6039 str r1, [r7, #0] assert_param(IS_FSMC_ASYNWAIT(Init->AsynchronousWait)); assert_param(IS_FSMC_WRITE_BURST(Init->WriteBurst)); assert_param(IS_FSMC_PAGESIZE(Init->PageSize)); /* Disable NORSRAM Device */ __FSMC_NORSRAM_DISABLE(Device, Init->NSBank); - 8003852: 683b ldr r3, [r7, #0] - 8003854: 681a ldr r2, [r3, #0] - 8003856: 687b ldr r3, [r7, #4] - 8003858: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800385c: 683a ldr r2, [r7, #0] - 800385e: 6812 ldr r2, [r2, #0] - 8003860: f023 0101 bic.w r1, r3, #1 - 8003864: 687b ldr r3, [r7, #4] - 8003866: f843 1022 str.w r1, [r3, r2, lsl #2] + 8003f76: 683b ldr r3, [r7, #0] + 8003f78: 681a ldr r2, [r3, #0] + 8003f7a: 687b ldr r3, [r7, #4] + 8003f7c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8003f80: 683a ldr r2, [r7, #0] + 8003f82: 6812 ldr r2, [r2, #0] + 8003f84: f023 0101 bic.w r1, r3, #1 + 8003f88: 687b ldr r3, [r7, #4] + 8003f8a: f843 1022 str.w r1, [r3, r2, lsl #2] /* Set NORSRAM device control parameters */ if (Init->MemoryType == FSMC_MEMORY_TYPE_NOR) - 800386a: 683b ldr r3, [r7, #0] - 800386c: 689b ldr r3, [r3, #8] - 800386e: 2b08 cmp r3, #8 - 8003870: d102 bne.n 8003878 + 8003f8e: 683b ldr r3, [r7, #0] + 8003f90: 689b ldr r3, [r3, #8] + 8003f92: 2b08 cmp r3, #8 + 8003f94: d102 bne.n 8003f9c { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_ENABLE; - 8003872: 2340 movs r3, #64 ; 0x40 - 8003874: 617b str r3, [r7, #20] - 8003876: e001 b.n 800387c + 8003f96: 2340 movs r3, #64 ; 0x40 + 8003f98: 617b str r3, [r7, #20] + 8003f9a: e001 b.n 8003fa0 } else { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_DISABLE; - 8003878: 2300 movs r3, #0 - 800387a: 617b str r3, [r7, #20] + 8003f9c: 2300 movs r3, #0 + 8003f9e: 617b str r3, [r7, #20] } btcr_reg = (flashaccess | \ Init->DataAddressMux | \ - 800387c: 683b ldr r3, [r7, #0] - 800387e: 685a ldr r2, [r3, #4] + 8003fa0: 683b ldr r3, [r7, #0] + 8003fa2: 685a ldr r2, [r3, #4] btcr_reg = (flashaccess | \ - 8003880: 697b ldr r3, [r7, #20] - 8003882: 431a orrs r2, r3 + 8003fa4: 697b ldr r3, [r7, #20] + 8003fa6: 431a orrs r2, r3 Init->MemoryType | \ - 8003884: 683b ldr r3, [r7, #0] - 8003886: 689b ldr r3, [r3, #8] + 8003fa8: 683b ldr r3, [r7, #0] + 8003faa: 689b ldr r3, [r3, #8] Init->DataAddressMux | \ - 8003888: 431a orrs r2, r3 + 8003fac: 431a orrs r2, r3 Init->MemoryDataWidth | \ - 800388a: 683b ldr r3, [r7, #0] - 800388c: 68db ldr r3, [r3, #12] + 8003fae: 683b ldr r3, [r7, #0] + 8003fb0: 68db ldr r3, [r3, #12] Init->MemoryType | \ - 800388e: 431a orrs r2, r3 + 8003fb2: 431a orrs r2, r3 Init->BurstAccessMode | \ - 8003890: 683b ldr r3, [r7, #0] - 8003892: 691b ldr r3, [r3, #16] + 8003fb4: 683b ldr r3, [r7, #0] + 8003fb6: 691b ldr r3, [r3, #16] Init->MemoryDataWidth | \ - 8003894: 431a orrs r2, r3 + 8003fb8: 431a orrs r2, r3 Init->WaitSignalPolarity | \ - 8003896: 683b ldr r3, [r7, #0] - 8003898: 695b ldr r3, [r3, #20] + 8003fba: 683b ldr r3, [r7, #0] + 8003fbc: 695b ldr r3, [r3, #20] Init->BurstAccessMode | \ - 800389a: 431a orrs r2, r3 + 8003fbe: 431a orrs r2, r3 Init->WaitSignalActive | \ - 800389c: 683b ldr r3, [r7, #0] - 800389e: 69db ldr r3, [r3, #28] + 8003fc0: 683b ldr r3, [r7, #0] + 8003fc2: 69db ldr r3, [r3, #28] Init->WaitSignalPolarity | \ - 80038a0: 431a orrs r2, r3 + 8003fc4: 431a orrs r2, r3 Init->WriteOperation | \ - 80038a2: 683b ldr r3, [r7, #0] - 80038a4: 6a1b ldr r3, [r3, #32] + 8003fc6: 683b ldr r3, [r7, #0] + 8003fc8: 6a1b ldr r3, [r3, #32] Init->WaitSignalActive | \ - 80038a6: 431a orrs r2, r3 + 8003fca: 431a orrs r2, r3 Init->WaitSignal | \ - 80038a8: 683b ldr r3, [r7, #0] - 80038aa: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003fcc: 683b ldr r3, [r7, #0] + 8003fce: 6a5b ldr r3, [r3, #36] ; 0x24 Init->WriteOperation | \ - 80038ac: 431a orrs r2, r3 + 8003fd0: 431a orrs r2, r3 Init->ExtendedMode | \ - 80038ae: 683b ldr r3, [r7, #0] - 80038b0: 6a9b ldr r3, [r3, #40] ; 0x28 + 8003fd2: 683b ldr r3, [r7, #0] + 8003fd4: 6a9b ldr r3, [r3, #40] ; 0x28 Init->WaitSignal | \ - 80038b2: 431a orrs r2, r3 + 8003fd6: 431a orrs r2, r3 Init->AsynchronousWait | \ - 80038b4: 683b ldr r3, [r7, #0] - 80038b6: 6adb ldr r3, [r3, #44] ; 0x2c + 8003fd8: 683b ldr r3, [r7, #0] + 8003fda: 6adb ldr r3, [r3, #44] ; 0x2c Init->ExtendedMode | \ - 80038b8: 431a orrs r2, r3 + 8003fdc: 431a orrs r2, r3 Init->WriteBurst); - 80038ba: 683b ldr r3, [r7, #0] - 80038bc: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003fde: 683b ldr r3, [r7, #0] + 8003fe0: 6b1b ldr r3, [r3, #48] ; 0x30 btcr_reg = (flashaccess | \ - 80038be: 4313 orrs r3, r2 - 80038c0: 613b str r3, [r7, #16] + 8003fe2: 4313 orrs r3, r2 + 8003fe4: 613b str r3, [r7, #16] btcr_reg |= Init->WrapMode; - 80038c2: 683b ldr r3, [r7, #0] - 80038c4: 699b ldr r3, [r3, #24] - 80038c6: 693a ldr r2, [r7, #16] - 80038c8: 4313 orrs r3, r2 - 80038ca: 613b str r3, [r7, #16] + 8003fe6: 683b ldr r3, [r7, #0] + 8003fe8: 699b ldr r3, [r3, #24] + 8003fea: 693a ldr r2, [r7, #16] + 8003fec: 4313 orrs r3, r2 + 8003fee: 613b str r3, [r7, #16] btcr_reg |= Init->PageSize; - 80038cc: 683b ldr r3, [r7, #0] - 80038ce: 6b5b ldr r3, [r3, #52] ; 0x34 - 80038d0: 693a ldr r2, [r7, #16] - 80038d2: 4313 orrs r3, r2 - 80038d4: 613b str r3, [r7, #16] + 8003ff0: 683b ldr r3, [r7, #0] + 8003ff2: 6b5b ldr r3, [r3, #52] ; 0x34 + 8003ff4: 693a ldr r2, [r7, #16] + 8003ff6: 4313 orrs r3, r2 + 8003ff8: 613b str r3, [r7, #16] mask = (FSMC_BCRx_MBKEN | - 80038d6: 4b10 ldr r3, [pc, #64] ; (8003918 ) - 80038d8: 60fb str r3, [r7, #12] + 8003ffa: 4b10 ldr r3, [pc, #64] ; (800403c ) + 8003ffc: 60fb str r3, [r7, #12] FSMC_BCRx_WAITEN | FSMC_BCRx_EXTMOD | FSMC_BCRx_ASYNCWAIT | FSMC_BCRx_CBURSTRW); mask |= FSMC_BCRx_WRAPMOD; - 80038da: 68fb ldr r3, [r7, #12] - 80038dc: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 80038e0: 60fb str r3, [r7, #12] + 8003ffe: 68fb ldr r3, [r7, #12] + 8004000: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8004004: 60fb str r3, [r7, #12] mask |= 0x00070000U; /* CPSIZE to be defined in CMSIS file */ - 80038e2: 68fb ldr r3, [r7, #12] - 80038e4: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 - 80038e8: 60fb str r3, [r7, #12] + 8004006: 68fb ldr r3, [r7, #12] + 8004008: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 + 800400c: 60fb str r3, [r7, #12] MODIFY_REG(Device->BTCR[Init->NSBank], mask, btcr_reg); - 80038ea: 683b ldr r3, [r7, #0] - 80038ec: 681a ldr r2, [r3, #0] - 80038ee: 687b ldr r3, [r7, #4] - 80038f0: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 80038f4: 68fb ldr r3, [r7, #12] - 80038f6: 43db mvns r3, r3 - 80038f8: ea02 0103 and.w r1, r2, r3 - 80038fc: 683b ldr r3, [r7, #0] - 80038fe: 681a ldr r2, [r3, #0] - 8003900: 693b ldr r3, [r7, #16] - 8003902: 4319 orrs r1, r3 - 8003904: 687b ldr r3, [r7, #4] - 8003906: f843 1022 str.w r1, [r3, r2, lsl #2] + 800400e: 683b ldr r3, [r7, #0] + 8004010: 681a ldr r2, [r3, #0] + 8004012: 687b ldr r3, [r7, #4] + 8004014: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 8004018: 68fb ldr r3, [r7, #12] + 800401a: 43db mvns r3, r3 + 800401c: ea02 0103 and.w r1, r2, r3 + 8004020: 683b ldr r3, [r7, #0] + 8004022: 681a ldr r2, [r3, #0] + 8004024: 693b ldr r3, [r7, #16] + 8004026: 4319 orrs r1, r3 + 8004028: 687b ldr r3, [r7, #4] + 800402a: f843 1022 str.w r1, [r3, r2, lsl #2] return HAL_OK; - 800390a: 2300 movs r3, #0 + 800402e: 2300 movs r3, #0 } - 800390c: 4618 mov r0, r3 - 800390e: 371c adds r7, #28 - 8003910: 46bd mov sp, r7 - 8003912: bc80 pop {r7} - 8003914: 4770 bx lr - 8003916: bf00 nop - 8003918: 0008fb7f .word 0x0008fb7f + 8004030: 4618 mov r0, r3 + 8004032: 371c adds r7, #28 + 8004034: 46bd mov sp, r7 + 8004036: bc80 pop {r7} + 8004038: 4770 bx lr + 800403a: bf00 nop + 800403c: 0008fb7f .word 0x0008fb7f -0800391c : +08004040 : * @param Bank NORSRAM bank number * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Timing_Init(FSMC_NORSRAM_TypeDef *Device, FSMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank) { - 800391c: b480 push {r7} - 800391e: b085 sub sp, #20 - 8003920: af00 add r7, sp, #0 - 8003922: 60f8 str r0, [r7, #12] - 8003924: 60b9 str r1, [r7, #8] - 8003926: 607a str r2, [r7, #4] + 8004040: b480 push {r7} + 8004042: b085 sub sp, #20 + 8004044: af00 add r7, sp, #0 + 8004046: 60f8 str r0, [r7, #12] + 8004048: 60b9 str r1, [r7, #8] + 800404a: 607a str r2, [r7, #4] assert_param(IS_FSMC_DATA_LATENCY(Timing->DataLatency)); assert_param(IS_FSMC_ACCESS_MODE(Timing->AccessMode)); assert_param(IS_FSMC_NORSRAM_BANK(Bank)); /* Set FSMC_NORSRAM device timing parameters */ MODIFY_REG(Device->BTCR[Bank + 1U], BTR_CLEAR_MASK, (Timing->AddressSetupTime | - 8003928: 687b ldr r3, [r7, #4] - 800392a: 1c5a adds r2, r3, #1 - 800392c: 68fb ldr r3, [r7, #12] - 800392e: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8003932: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 - 8003936: 68bb ldr r3, [r7, #8] - 8003938: 681a ldr r2, [r3, #0] - 800393a: 68bb ldr r3, [r7, #8] - 800393c: 685b ldr r3, [r3, #4] - 800393e: 011b lsls r3, r3, #4 - 8003940: 431a orrs r2, r3 - 8003942: 68bb ldr r3, [r7, #8] - 8003944: 689b ldr r3, [r3, #8] - 8003946: 021b lsls r3, r3, #8 - 8003948: 431a orrs r2, r3 - 800394a: 68bb ldr r3, [r7, #8] - 800394c: 68db ldr r3, [r3, #12] - 800394e: 041b lsls r3, r3, #16 - 8003950: 431a orrs r2, r3 - 8003952: 68bb ldr r3, [r7, #8] - 8003954: 691b ldr r3, [r3, #16] - 8003956: 3b01 subs r3, #1 - 8003958: 051b lsls r3, r3, #20 - 800395a: 431a orrs r2, r3 - 800395c: 68bb ldr r3, [r7, #8] - 800395e: 695b ldr r3, [r3, #20] - 8003960: 3b02 subs r3, #2 - 8003962: 061b lsls r3, r3, #24 - 8003964: 431a orrs r2, r3 - 8003966: 68bb ldr r3, [r7, #8] - 8003968: 699b ldr r3, [r3, #24] - 800396a: 4313 orrs r3, r2 - 800396c: 687a ldr r2, [r7, #4] - 800396e: 3201 adds r2, #1 - 8003970: 4319 orrs r1, r3 - 8003972: 68fb ldr r3, [r7, #12] - 8003974: f843 1022 str.w r1, [r3, r2, lsl #2] + 800404c: 687b ldr r3, [r7, #4] + 800404e: 1c5a adds r2, r3, #1 + 8004050: 68fb ldr r3, [r7, #12] + 8004052: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8004056: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 + 800405a: 68bb ldr r3, [r7, #8] + 800405c: 681a ldr r2, [r3, #0] + 800405e: 68bb ldr r3, [r7, #8] + 8004060: 685b ldr r3, [r3, #4] + 8004062: 011b lsls r3, r3, #4 + 8004064: 431a orrs r2, r3 + 8004066: 68bb ldr r3, [r7, #8] + 8004068: 689b ldr r3, [r3, #8] + 800406a: 021b lsls r3, r3, #8 + 800406c: 431a orrs r2, r3 + 800406e: 68bb ldr r3, [r7, #8] + 8004070: 68db ldr r3, [r3, #12] + 8004072: 041b lsls r3, r3, #16 + 8004074: 431a orrs r2, r3 + 8004076: 68bb ldr r3, [r7, #8] + 8004078: 691b ldr r3, [r3, #16] + 800407a: 3b01 subs r3, #1 + 800407c: 051b lsls r3, r3, #20 + 800407e: 431a orrs r2, r3 + 8004080: 68bb ldr r3, [r7, #8] + 8004082: 695b ldr r3, [r3, #20] + 8004084: 3b02 subs r3, #2 + 8004086: 061b lsls r3, r3, #24 + 8004088: 431a orrs r2, r3 + 800408a: 68bb ldr r3, [r7, #8] + 800408c: 699b ldr r3, [r3, #24] + 800408e: 4313 orrs r3, r2 + 8004090: 687a ldr r2, [r7, #4] + 8004092: 3201 adds r2, #1 + 8004094: 4319 orrs r1, r3 + 8004096: 68fb ldr r3, [r7, #12] + 8004098: f843 1022 str.w r1, [r3, r2, lsl #2] ((Timing->BusTurnAroundDuration) << FSMC_BTRx_BUSTURN_Pos) | (((Timing->CLKDivision) - 1U) << FSMC_BTRx_CLKDIV_Pos) | (((Timing->DataLatency) - 2U) << FSMC_BTRx_DATLAT_Pos) | (Timing->AccessMode))); return HAL_OK; - 8003978: 2300 movs r3, #0 + 800409c: 2300 movs r3, #0 } - 800397a: 4618 mov r0, r3 - 800397c: 3714 adds r7, #20 - 800397e: 46bd mov sp, r7 - 8003980: bc80 pop {r7} - 8003982: 4770 bx lr + 800409e: 4618 mov r0, r3 + 80040a0: 3714 adds r7, #20 + 80040a2: 46bd mov sp, r7 + 80040a4: bc80 pop {r7} + 80040a6: 4770 bx lr -08003984 : +080040a8 : * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Extended_Timing_Init(FSMC_NORSRAM_EXTENDED_TypeDef *Device, FSMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank, uint32_t ExtendedMode) { - 8003984: b480 push {r7} - 8003986: b085 sub sp, #20 - 8003988: af00 add r7, sp, #0 - 800398a: 60f8 str r0, [r7, #12] - 800398c: 60b9 str r1, [r7, #8] - 800398e: 607a str r2, [r7, #4] - 8003990: 603b str r3, [r7, #0] + 80040a8: b480 push {r7} + 80040aa: b085 sub sp, #20 + 80040ac: af00 add r7, sp, #0 + 80040ae: 60f8 str r0, [r7, #12] + 80040b0: 60b9 str r1, [r7, #8] + 80040b2: 607a str r2, [r7, #4] + 80040b4: 603b str r3, [r7, #0] /* Check the parameters */ assert_param(IS_FSMC_EXTENDED_MODE(ExtendedMode)); /* Set NORSRAM device timing register for write configuration, if extended mode is used */ if (ExtendedMode == FSMC_EXTENDED_MODE_ENABLE) - 8003992: 683b ldr r3, [r7, #0] - 8003994: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 - 8003998: d11d bne.n 80039d6 + 80040b6: 683b ldr r3, [r7, #0] + 80040b8: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 + 80040bc: d11d bne.n 80040fa assert_param(IS_FSMC_ACCESS_MODE(Timing->AccessMode)); assert_param(IS_FSMC_NORSRAM_BANK(Bank)); /* Set NORSRAM device timing register for write configuration, if extended mode is used */ #if defined(FSMC_BWTRx_BUSTURN) MODIFY_REG(Device->BWTR[Bank], BWTR_CLEAR_MASK, (Timing->AddressSetupTime | - 800399a: 68fb ldr r3, [r7, #12] - 800399c: 687a ldr r2, [r7, #4] - 800399e: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 80039a2: 4b13 ldr r3, [pc, #76] ; (80039f0 ) - 80039a4: 4013 ands r3, r2 - 80039a6: 68ba ldr r2, [r7, #8] - 80039a8: 6811 ldr r1, [r2, #0] - 80039aa: 68ba ldr r2, [r7, #8] - 80039ac: 6852 ldr r2, [r2, #4] - 80039ae: 0112 lsls r2, r2, #4 - 80039b0: 4311 orrs r1, r2 - 80039b2: 68ba ldr r2, [r7, #8] - 80039b4: 6892 ldr r2, [r2, #8] - 80039b6: 0212 lsls r2, r2, #8 - 80039b8: 4311 orrs r1, r2 - 80039ba: 68ba ldr r2, [r7, #8] - 80039bc: 6992 ldr r2, [r2, #24] - 80039be: 4311 orrs r1, r2 - 80039c0: 68ba ldr r2, [r7, #8] - 80039c2: 68d2 ldr r2, [r2, #12] - 80039c4: 0412 lsls r2, r2, #16 - 80039c6: 430a orrs r2, r1 - 80039c8: ea43 0102 orr.w r1, r3, r2 - 80039cc: 68fb ldr r3, [r7, #12] - 80039ce: 687a ldr r2, [r7, #4] - 80039d0: f843 1022 str.w r1, [r3, r2, lsl #2] - 80039d4: e005 b.n 80039e2 + 80040be: 68fb ldr r3, [r7, #12] + 80040c0: 687a ldr r2, [r7, #4] + 80040c2: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 80040c6: 4b13 ldr r3, [pc, #76] ; (8004114 ) + 80040c8: 4013 ands r3, r2 + 80040ca: 68ba ldr r2, [r7, #8] + 80040cc: 6811 ldr r1, [r2, #0] + 80040ce: 68ba ldr r2, [r7, #8] + 80040d0: 6852 ldr r2, [r2, #4] + 80040d2: 0112 lsls r2, r2, #4 + 80040d4: 4311 orrs r1, r2 + 80040d6: 68ba ldr r2, [r7, #8] + 80040d8: 6892 ldr r2, [r2, #8] + 80040da: 0212 lsls r2, r2, #8 + 80040dc: 4311 orrs r1, r2 + 80040de: 68ba ldr r2, [r7, #8] + 80040e0: 6992 ldr r2, [r2, #24] + 80040e2: 4311 orrs r1, r2 + 80040e4: 68ba ldr r2, [r7, #8] + 80040e6: 68d2 ldr r2, [r2, #12] + 80040e8: 0412 lsls r2, r2, #16 + 80040ea: 430a orrs r2, r1 + 80040ec: ea43 0102 orr.w r1, r3, r2 + 80040f0: 68fb ldr r3, [r7, #12] + 80040f2: 687a ldr r2, [r7, #4] + 80040f4: f843 1022 str.w r1, [r3, r2, lsl #2] + 80040f8: e005 b.n 8004106 (((Timing->DataLatency) - 2U) << FSMC_BWTRx_DATLAT_Pos))); #endif /* FSMC_BWTRx_BUSTURN */ } else { Device->BWTR[Bank] = 0x0FFFFFFFU; - 80039d6: 68fb ldr r3, [r7, #12] - 80039d8: 687a ldr r2, [r7, #4] - 80039da: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 - 80039de: f843 1022 str.w r1, [r3, r2, lsl #2] + 80040fa: 68fb ldr r3, [r7, #12] + 80040fc: 687a ldr r2, [r7, #4] + 80040fe: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 + 8004102: f843 1022 str.w r1, [r3, r2, lsl #2] } return HAL_OK; - 80039e2: 2300 movs r3, #0 + 8004106: 2300 movs r3, #0 } - 80039e4: 4618 mov r0, r3 - 80039e6: 3714 adds r7, #20 - 80039e8: 46bd mov sp, r7 - 80039ea: bc80 pop {r7} - 80039ec: 4770 bx lr - 80039ee: bf00 nop - 80039f0: cff00000 .word 0xcff00000 + 8004108: 4618 mov r0, r3 + 800410a: 3714 adds r7, #20 + 800410c: 46bd mov sp, r7 + 800410e: bc80 pop {r7} + 8004110: 4770 bx lr + 8004112: bf00 nop + 8004114: cff00000 .word 0xcff00000 -080039f4 : +08004118 : _lcd_dev lcddev; //管理LCD重要参数 //**************************************************几种快速接口 //写寄存器函数 //regval:寄存器值 void LCD_WR_REG(uint16_t regval) { - 80039f4: b480 push {r7} - 80039f6: b083 sub sp, #12 - 80039f8: af00 add r7, sp, #0 - 80039fa: 4603 mov r3, r0 - 80039fc: 80fb strh r3, [r7, #6] + 8004118: b480 push {r7} + 800411a: b083 sub sp, #12 + 800411c: af00 add r7, sp, #0 + 800411e: 4603 mov r3, r0 + 8004120: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=regval;//写入要写的寄存器序号 - 80039fe: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8003a02: 88fb ldrh r3, [r7, #6] - 8003a04: 8013 strh r3, [r2, #0] + 8004122: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8004126: 88fb ldrh r3, [r7, #6] + 8004128: 8013 strh r3, [r2, #0] } - 8003a06: bf00 nop - 8003a08: 370c adds r7, #12 - 8003a0a: 46bd mov sp, r7 - 8003a0c: bc80 pop {r7} - 8003a0e: 4770 bx lr + 800412a: bf00 nop + 800412c: 370c adds r7, #12 + 800412e: 46bd mov sp, r7 + 8004130: bc80 pop {r7} + 8004132: 4770 bx lr -08003a10 : +08004134 : //写LCD数据 //data:要写入的值 void LCD_WR_DATA(uint16_t data) { - 8003a10: b480 push {r7} - 8003a12: b083 sub sp, #12 - 8003a14: af00 add r7, sp, #0 - 8003a16: 4603 mov r3, r0 - 8003a18: 80fb strh r3, [r7, #6] + 8004134: b480 push {r7} + 8004136: b083 sub sp, #12 + 8004138: af00 add r7, sp, #0 + 800413a: 4603 mov r3, r0 + 800413c: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=data; - 8003a1a: 4a04 ldr r2, [pc, #16] ; (8003a2c ) - 8003a1c: 88fb ldrh r3, [r7, #6] - 8003a1e: 8013 strh r3, [r2, #0] + 800413e: 4a04 ldr r2, [pc, #16] ; (8004150 ) + 8004140: 88fb ldrh r3, [r7, #6] + 8004142: 8013 strh r3, [r2, #0] } - 8003a20: bf00 nop - 8003a22: 370c adds r7, #12 - 8003a24: 46bd mov sp, r7 - 8003a26: bc80 pop {r7} - 8003a28: 4770 bx lr - 8003a2a: bf00 nop - 8003a2c: 6c000800 .word 0x6c000800 + 8004144: bf00 nop + 8004146: 370c adds r7, #12 + 8004148: 46bd mov sp, r7 + 800414a: bc80 pop {r7} + 800414c: 4770 bx lr + 800414e: bf00 nop + 8004150: 6c000800 .word 0x6c000800 -08003a30 : +08004154 : } //写寄存器 //LCD_Reg:寄存器地址 //LCD_RegValue:要写入的数据 void LCD_WriteReg(uint16_t LCD_Reg, uint16_t LCD_RegValue) { - 8003a30: b480 push {r7} - 8003a32: b083 sub sp, #12 - 8003a34: af00 add r7, sp, #0 - 8003a36: 4603 mov r3, r0 - 8003a38: 460a mov r2, r1 - 8003a3a: 80fb strh r3, [r7, #6] - 8003a3c: 4613 mov r3, r2 - 8003a3e: 80bb strh r3, [r7, #4] + 8004154: b480 push {r7} + 8004156: b083 sub sp, #12 + 8004158: af00 add r7, sp, #0 + 800415a: 4603 mov r3, r0 + 800415c: 460a mov r2, r1 + 800415e: 80fb strh r3, [r7, #6] + 8004160: 4613 mov r3, r2 + 8004162: 80bb strh r3, [r7, #4] LCD_REG_ADDRESS = LCD_Reg; //写入要写的寄存器序号 - 8003a40: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8003a44: 88fb ldrh r3, [r7, #6] - 8003a46: 8013 strh r3, [r2, #0] + 8004164: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8004168: 88fb ldrh r3, [r7, #6] + 800416a: 8013 strh r3, [r2, #0] LCD_DATA_ADDRESS = LCD_RegValue;//写入数据 - 8003a48: 4a03 ldr r2, [pc, #12] ; (8003a58 ) - 8003a4a: 88bb ldrh r3, [r7, #4] - 8003a4c: 8013 strh r3, [r2, #0] + 800416c: 4a03 ldr r2, [pc, #12] ; (800417c ) + 800416e: 88bb ldrh r3, [r7, #4] + 8004170: 8013 strh r3, [r2, #0] } - 8003a4e: bf00 nop - 8003a50: 370c adds r7, #12 - 8003a52: 46bd mov sp, r7 - 8003a54: bc80 pop {r7} - 8003a56: 4770 bx lr - 8003a58: 6c000800 .word 0x6c000800 + 8004172: bf00 nop + 8004174: 370c adds r7, #12 + 8004176: 46bd mov sp, r7 + 8004178: bc80 pop {r7} + 800417a: 4770 bx lr + 800417c: 6c000800 .word 0x6c000800 -08003a5c : +08004180 : //读寄存器 //LCD_Reg:寄存器地址 //返回值:读到的数据 uint16_t LCD_ReadReg(uint16_t LCD_Reg) { - 8003a5c: b480 push {r7} - 8003a5e: b083 sub sp, #12 - 8003a60: af00 add r7, sp, #0 - 8003a62: 4603 mov r3, r0 - 8003a64: 80fb strh r3, [r7, #6] + 8004180: b480 push {r7} + 8004182: b083 sub sp, #12 + 8004184: af00 add r7, sp, #0 + 8004186: 4603 mov r3, r0 + 8004188: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=LCD_Reg; //写入要读的寄存器序号 - 8003a66: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8003a6a: 88fb ldrh r3, [r7, #6] - 8003a6c: 8013 strh r3, [r2, #0] + 800418a: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 800418e: 88fb ldrh r3, [r7, #6] + 8004190: 8013 strh r3, [r2, #0] //delay_us(5); return LCD_DATA_ADDRESS; //返回读到的值 - 8003a6e: 4b04 ldr r3, [pc, #16] ; (8003a80 ) - 8003a70: 881b ldrh r3, [r3, #0] - 8003a72: b29b uxth r3, r3 + 8004192: 4b04 ldr r3, [pc, #16] ; (80041a4 ) + 8004194: 881b ldrh r3, [r3, #0] + 8004196: b29b uxth r3, r3 } - 8003a74: 4618 mov r0, r3 - 8003a76: 370c adds r7, #12 - 8003a78: 46bd mov sp, r7 - 8003a7a: bc80 pop {r7} - 8003a7c: 4770 bx lr - 8003a7e: bf00 nop - 8003a80: 6c000800 .word 0x6c000800 + 8004198: 4618 mov r0, r3 + 800419a: 370c adds r7, #12 + 800419c: 46bd mov sp, r7 + 800419e: bc80 pop {r7} + 80041a0: 4770 bx lr + 80041a2: bf00 nop + 80041a4: 6c000800 .word 0x6c000800 -08003a84 : +080041a8 : //注意:其他函数可能会受到此函数设置的影响(尤其是9341/6804这两个奇葩), //所以,一般设置为L2R_U2D即可,如果设置为其他扫描方式,可能导致显示不正常. //dir:0~7,代表8个方向(具体定义见lcd.h) //9320/9325/9328/4531/4535/1505/b505/8989/5408/9341/5310等IC已经实际测试 void LCD_Scan_Dir(uint8_t dir) { - 8003a84: b580 push {r7, lr} - 8003a86: b084 sub sp, #16 - 8003a88: af00 add r7, sp, #0 - 8003a8a: 4603 mov r3, r0 - 8003a8c: 71fb strb r3, [r7, #7] + 80041a8: b580 push {r7, lr} + 80041aa: b084 sub sp, #16 + 80041ac: af00 add r7, sp, #0 + 80041ae: 4603 mov r3, r0 + 80041b0: 71fb strb r3, [r7, #7] uint16_t regval=0; - 8003a8e: 2300 movs r3, #0 - 8003a90: 81fb strh r3, [r7, #14] + 80041b2: 2300 movs r3, #0 + 80041b4: 81fb strh r3, [r7, #14] uint8_t dirreg=0; - 8003a92: 2300 movs r3, #0 - 8003a94: 737b strb r3, [r7, #13] + 80041b6: 2300 movs r3, #0 + 80041b8: 737b strb r3, [r7, #13] uint16_t temp; if(lcddev.dir==1&&lcddev.id!=0X6804)//横屏时,对6804不改变扫描方向! - 8003a96: 4ba8 ldr r3, [pc, #672] ; (8003d38 ) - 8003a98: 799b ldrb r3, [r3, #6] - 8003a9a: 2b01 cmp r3, #1 - 8003a9c: d134 bne.n 8003b08 - 8003a9e: 4ba6 ldr r3, [pc, #664] ; (8003d38 ) - 8003aa0: 889b ldrh r3, [r3, #4] - 8003aa2: f646 0204 movw r2, #26628 ; 0x6804 - 8003aa6: 4293 cmp r3, r2 - 8003aa8: d02e beq.n 8003b08 + 80041ba: 4ba8 ldr r3, [pc, #672] ; (800445c ) + 80041bc: 799b ldrb r3, [r3, #6] + 80041be: 2b01 cmp r3, #1 + 80041c0: d134 bne.n 800422c + 80041c2: 4ba6 ldr r3, [pc, #664] ; (800445c ) + 80041c4: 889b ldrh r3, [r3, #4] + 80041c6: f646 0204 movw r2, #26628 ; 0x6804 + 80041ca: 4293 cmp r3, r2 + 80041cc: d02e beq.n 800422c { switch(dir)//方向转换 - 8003aaa: 79fb ldrb r3, [r7, #7] - 8003aac: 2b07 cmp r3, #7 - 8003aae: d82c bhi.n 8003b0a - 8003ab0: a201 add r2, pc, #4 ; (adr r2, 8003ab8 ) - 8003ab2: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8003ab6: bf00 nop - 8003ab8: 08003ad9 .word 0x08003ad9 - 8003abc: 08003adf .word 0x08003adf - 8003ac0: 08003ae5 .word 0x08003ae5 - 8003ac4: 08003aeb .word 0x08003aeb - 8003ac8: 08003af1 .word 0x08003af1 - 8003acc: 08003af7 .word 0x08003af7 - 8003ad0: 08003afd .word 0x08003afd - 8003ad4: 08003b03 .word 0x08003b03 + 80041ce: 79fb ldrb r3, [r7, #7] + 80041d0: 2b07 cmp r3, #7 + 80041d2: d82c bhi.n 800422e + 80041d4: a201 add r2, pc, #4 ; (adr r2, 80041dc ) + 80041d6: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80041da: bf00 nop + 80041dc: 080041fd .word 0x080041fd + 80041e0: 08004203 .word 0x08004203 + 80041e4: 08004209 .word 0x08004209 + 80041e8: 0800420f .word 0x0800420f + 80041ec: 08004215 .word 0x08004215 + 80041f0: 0800421b .word 0x0800421b + 80041f4: 08004221 .word 0x08004221 + 80041f8: 08004227 .word 0x08004227 { case 0:dir=6;break; - 8003ad8: 2306 movs r3, #6 - 8003ada: 71fb strb r3, [r7, #7] - 8003adc: e015 b.n 8003b0a + 80041fc: 2306 movs r3, #6 + 80041fe: 71fb strb r3, [r7, #7] + 8004200: e015 b.n 800422e case 1:dir=7;break; - 8003ade: 2307 movs r3, #7 - 8003ae0: 71fb strb r3, [r7, #7] - 8003ae2: e012 b.n 8003b0a + 8004202: 2307 movs r3, #7 + 8004204: 71fb strb r3, [r7, #7] + 8004206: e012 b.n 800422e case 2:dir=4;break; - 8003ae4: 2304 movs r3, #4 - 8003ae6: 71fb strb r3, [r7, #7] - 8003ae8: e00f b.n 8003b0a + 8004208: 2304 movs r3, #4 + 800420a: 71fb strb r3, [r7, #7] + 800420c: e00f b.n 800422e case 3:dir=5;break; - 8003aea: 2305 movs r3, #5 - 8003aec: 71fb strb r3, [r7, #7] - 8003aee: e00c b.n 8003b0a + 800420e: 2305 movs r3, #5 + 8004210: 71fb strb r3, [r7, #7] + 8004212: e00c b.n 800422e case 4:dir=1;break; - 8003af0: 2301 movs r3, #1 - 8003af2: 71fb strb r3, [r7, #7] - 8003af4: e009 b.n 8003b0a + 8004214: 2301 movs r3, #1 + 8004216: 71fb strb r3, [r7, #7] + 8004218: e009 b.n 800422e case 5:dir=0;break; - 8003af6: 2300 movs r3, #0 - 8003af8: 71fb strb r3, [r7, #7] - 8003afa: e006 b.n 8003b0a + 800421a: 2300 movs r3, #0 + 800421c: 71fb strb r3, [r7, #7] + 800421e: e006 b.n 800422e case 6:dir=3;break; - 8003afc: 2303 movs r3, #3 - 8003afe: 71fb strb r3, [r7, #7] - 8003b00: e003 b.n 8003b0a + 8004220: 2303 movs r3, #3 + 8004222: 71fb strb r3, [r7, #7] + 8004224: e003 b.n 800422e case 7:dir=2;break; - 8003b02: 2302 movs r3, #2 - 8003b04: 71fb strb r3, [r7, #7] - 8003b06: e000 b.n 8003b0a + 8004226: 2302 movs r3, #2 + 8004228: 71fb strb r3, [r7, #7] + 800422a: e000 b.n 800422e } } - 8003b08: bf00 nop + 800422c: bf00 nop if(lcddev.id==0x9341||lcddev.id==0X6804||lcddev.id==0X5310)//9341/6804/5310,很特殊 - 8003b0a: 4b8b ldr r3, [pc, #556] ; (8003d38 ) - 8003b0c: 889b ldrh r3, [r3, #4] - 8003b0e: f249 3241 movw r2, #37697 ; 0x9341 - 8003b12: 4293 cmp r3, r2 - 8003b14: d00c beq.n 8003b30 - 8003b16: 4b88 ldr r3, [pc, #544] ; (8003d38 ) - 8003b18: 889b ldrh r3, [r3, #4] - 8003b1a: f646 0204 movw r2, #26628 ; 0x6804 - 8003b1e: 4293 cmp r3, r2 - 8003b20: d006 beq.n 8003b30 - 8003b22: 4b85 ldr r3, [pc, #532] ; (8003d38 ) - 8003b24: 889b ldrh r3, [r3, #4] - 8003b26: f245 3210 movw r2, #21264 ; 0x5310 - 8003b2a: 4293 cmp r3, r2 - 8003b2c: f040 80bb bne.w 8003ca6 + 800422e: 4b8b ldr r3, [pc, #556] ; (800445c ) + 8004230: 889b ldrh r3, [r3, #4] + 8004232: f249 3241 movw r2, #37697 ; 0x9341 + 8004236: 4293 cmp r3, r2 + 8004238: d00c beq.n 8004254 + 800423a: 4b88 ldr r3, [pc, #544] ; (800445c ) + 800423c: 889b ldrh r3, [r3, #4] + 800423e: f646 0204 movw r2, #26628 ; 0x6804 + 8004242: 4293 cmp r3, r2 + 8004244: d006 beq.n 8004254 + 8004246: 4b85 ldr r3, [pc, #532] ; (800445c ) + 8004248: 889b ldrh r3, [r3, #4] + 800424a: f245 3210 movw r2, #21264 ; 0x5310 + 800424e: 4293 cmp r3, r2 + 8004250: f040 80bb bne.w 80043ca { switch(dir) - 8003b30: 79fb ldrb r3, [r7, #7] - 8003b32: 2b07 cmp r3, #7 - 8003b34: d835 bhi.n 8003ba2 - 8003b36: a201 add r2, pc, #4 ; (adr r2, 8003b3c ) - 8003b38: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8003b3c: 08003ba3 .word 0x08003ba3 - 8003b40: 08003b5d .word 0x08003b5d - 8003b44: 08003b67 .word 0x08003b67 - 8003b48: 08003b71 .word 0x08003b71 - 8003b4c: 08003b7b .word 0x08003b7b - 8003b50: 08003b85 .word 0x08003b85 - 8003b54: 08003b8f .word 0x08003b8f - 8003b58: 08003b99 .word 0x08003b99 + 8004254: 79fb ldrb r3, [r7, #7] + 8004256: 2b07 cmp r3, #7 + 8004258: d835 bhi.n 80042c6 + 800425a: a201 add r2, pc, #4 ; (adr r2, 8004260 ) + 800425c: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004260: 080042c7 .word 0x080042c7 + 8004264: 08004281 .word 0x08004281 + 8004268: 0800428b .word 0x0800428b + 800426c: 08004295 .word 0x08004295 + 8004270: 0800429f .word 0x0800429f + 8004274: 080042a9 .word 0x080042a9 + 8004278: 080042b3 .word 0x080042b3 + 800427c: 080042bd .word 0x080042bd { case L2R_U2D://从左到右,从上到下 regval|=(0<<7)|(0<<6)|(0<<5); break; case L2R_D2U://从左到右,从下到上 regval|=(1<<7)|(0<<6)|(0<<5); - 8003b5c: 89fb ldrh r3, [r7, #14] - 8003b5e: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8003b62: 81fb strh r3, [r7, #14] + 8004280: 89fb ldrh r3, [r7, #14] + 8004282: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8004286: 81fb strh r3, [r7, #14] break; - 8003b64: e01d b.n 8003ba2 + 8004288: e01d b.n 80042c6 case R2L_U2D://从右到左,从上到下 regval|=(0<<7)|(1<<6)|(0<<5); - 8003b66: 89fb ldrh r3, [r7, #14] - 8003b68: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8003b6c: 81fb strh r3, [r7, #14] + 800428a: 89fb ldrh r3, [r7, #14] + 800428c: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8004290: 81fb strh r3, [r7, #14] break; - 8003b6e: e018 b.n 8003ba2 + 8004292: e018 b.n 80042c6 case R2L_D2U://从右到左,从下到上 regval|=(1<<7)|(1<<6)|(0<<5); - 8003b70: 89fb ldrh r3, [r7, #14] - 8003b72: f043 03c0 orr.w r3, r3, #192 ; 0xc0 - 8003b76: 81fb strh r3, [r7, #14] + 8004294: 89fb ldrh r3, [r7, #14] + 8004296: f043 03c0 orr.w r3, r3, #192 ; 0xc0 + 800429a: 81fb strh r3, [r7, #14] break; - 8003b78: e013 b.n 8003ba2 + 800429c: e013 b.n 80042c6 case U2D_L2R://从上到下,从左到右 regval|=(0<<7)|(0<<6)|(1<<5); - 8003b7a: 89fb ldrh r3, [r7, #14] - 8003b7c: f043 0320 orr.w r3, r3, #32 - 8003b80: 81fb strh r3, [r7, #14] + 800429e: 89fb ldrh r3, [r7, #14] + 80042a0: f043 0320 orr.w r3, r3, #32 + 80042a4: 81fb strh r3, [r7, #14] break; - 8003b82: e00e b.n 8003ba2 + 80042a6: e00e b.n 80042c6 case U2D_R2L://从上到下,从右到左 regval|=(0<<7)|(1<<6)|(1<<5); - 8003b84: 89fb ldrh r3, [r7, #14] - 8003b86: f043 0360 orr.w r3, r3, #96 ; 0x60 - 8003b8a: 81fb strh r3, [r7, #14] + 80042a8: 89fb ldrh r3, [r7, #14] + 80042aa: f043 0360 orr.w r3, r3, #96 ; 0x60 + 80042ae: 81fb strh r3, [r7, #14] break; - 8003b8c: e009 b.n 8003ba2 + 80042b0: e009 b.n 80042c6 case D2U_L2R://从下到上,从左到右 regval|=(1<<7)|(0<<6)|(1<<5); - 8003b8e: 89fb ldrh r3, [r7, #14] - 8003b90: f043 03a0 orr.w r3, r3, #160 ; 0xa0 - 8003b94: 81fb strh r3, [r7, #14] + 80042b2: 89fb ldrh r3, [r7, #14] + 80042b4: f043 03a0 orr.w r3, r3, #160 ; 0xa0 + 80042b8: 81fb strh r3, [r7, #14] break; - 8003b96: e004 b.n 8003ba2 + 80042ba: e004 b.n 80042c6 case D2U_R2L://从下到上,从右到左 regval|=(1<<7)|(1<<6)|(1<<5); - 8003b98: 89fb ldrh r3, [r7, #14] - 8003b9a: f043 03e0 orr.w r3, r3, #224 ; 0xe0 - 8003b9e: 81fb strh r3, [r7, #14] + 80042bc: 89fb ldrh r3, [r7, #14] + 80042be: f043 03e0 orr.w r3, r3, #224 ; 0xe0 + 80042c2: 81fb strh r3, [r7, #14] break; - 8003ba0: bf00 nop + 80042c4: bf00 nop } dirreg=0X36; - 8003ba2: 2336 movs r3, #54 ; 0x36 - 8003ba4: 737b strb r3, [r7, #13] + 80042c6: 2336 movs r3, #54 ; 0x36 + 80042c8: 737b strb r3, [r7, #13] if(lcddev.id!=0X5310)regval|=0X08;//5310不需要BGR - 8003ba6: 4b64 ldr r3, [pc, #400] ; (8003d38 ) - 8003ba8: 889b ldrh r3, [r3, #4] - 8003baa: f245 3210 movw r2, #21264 ; 0x5310 - 8003bae: 4293 cmp r3, r2 - 8003bb0: d003 beq.n 8003bba - 8003bb2: 89fb ldrh r3, [r7, #14] - 8003bb4: f043 0308 orr.w r3, r3, #8 - 8003bb8: 81fb strh r3, [r7, #14] + 80042ca: 4b64 ldr r3, [pc, #400] ; (800445c ) + 80042cc: 889b ldrh r3, [r3, #4] + 80042ce: f245 3210 movw r2, #21264 ; 0x5310 + 80042d2: 4293 cmp r3, r2 + 80042d4: d003 beq.n 80042de + 80042d6: 89fb ldrh r3, [r7, #14] + 80042d8: f043 0308 orr.w r3, r3, #8 + 80042dc: 81fb strh r3, [r7, #14] if(lcddev.id==0X6804)regval|=0x02;//6804的BIT6和9341的反了 - 8003bba: 4b5f ldr r3, [pc, #380] ; (8003d38 ) - 8003bbc: 889b ldrh r3, [r3, #4] - 8003bbe: f646 0204 movw r2, #26628 ; 0x6804 - 8003bc2: 4293 cmp r3, r2 - 8003bc4: d103 bne.n 8003bce - 8003bc6: 89fb ldrh r3, [r7, #14] - 8003bc8: f043 0302 orr.w r3, r3, #2 - 8003bcc: 81fb strh r3, [r7, #14] + 80042de: 4b5f ldr r3, [pc, #380] ; (800445c ) + 80042e0: 889b ldrh r3, [r3, #4] + 80042e2: f646 0204 movw r2, #26628 ; 0x6804 + 80042e6: 4293 cmp r3, r2 + 80042e8: d103 bne.n 80042f2 + 80042ea: 89fb ldrh r3, [r7, #14] + 80042ec: f043 0302 orr.w r3, r3, #2 + 80042f0: 81fb strh r3, [r7, #14] LCD_WriteReg(dirreg,regval); - 8003bce: 7b7b ldrb r3, [r7, #13] - 8003bd0: b29b uxth r3, r3 - 8003bd2: 89fa ldrh r2, [r7, #14] - 8003bd4: 4611 mov r1, r2 - 8003bd6: 4618 mov r0, r3 - 8003bd8: f7ff ff2a bl 8003a30 + 80042f2: 7b7b ldrb r3, [r7, #13] + 80042f4: b29b uxth r3, r3 + 80042f6: 89fa ldrh r2, [r7, #14] + 80042f8: 4611 mov r1, r2 + 80042fa: 4618 mov r0, r3 + 80042fc: f7ff ff2a bl 8004154 if((regval&0X20)||lcddev.dir==1) - 8003bdc: 89fb ldrh r3, [r7, #14] - 8003bde: f003 0320 and.w r3, r3, #32 - 8003be2: 2b00 cmp r3, #0 - 8003be4: d103 bne.n 8003bee - 8003be6: 4b54 ldr r3, [pc, #336] ; (8003d38 ) - 8003be8: 799b ldrb r3, [r3, #6] - 8003bea: 2b01 cmp r3, #1 - 8003bec: d110 bne.n 8003c10 + 8004300: 89fb ldrh r3, [r7, #14] + 8004302: f003 0320 and.w r3, r3, #32 + 8004306: 2b00 cmp r3, #0 + 8004308: d103 bne.n 8004312 + 800430a: 4b54 ldr r3, [pc, #336] ; (800445c ) + 800430c: 799b ldrb r3, [r3, #6] + 800430e: 2b01 cmp r3, #1 + 8004310: d110 bne.n 8004334 { if(lcddev.width) - 8003bf0: 881a ldrh r2, [r3, #0] - 8003bf2: 4b51 ldr r3, [pc, #324] ; (8003d38 ) - 8003bf4: 885b ldrh r3, [r3, #2] - 8003bf6: 429a cmp r2, r3 - 8003bf8: d21a bcs.n 8003c30 + 8004312: 4b52 ldr r3, [pc, #328] ; (800445c ) + 8004314: 881a ldrh r2, [r3, #0] + 8004316: 4b51 ldr r3, [pc, #324] ; (800445c ) + 8004318: 885b ldrh r3, [r3, #2] + 800431a: 429a cmp r2, r3 + 800431c: d21a bcs.n 8004354 { temp=lcddev.width; - 8003bfa: 4b4f ldr r3, [pc, #316] ; (8003d38 ) - 8003bfc: 881b ldrh r3, [r3, #0] - 8003bfe: 817b strh r3, [r7, #10] + 800431e: 4b4f ldr r3, [pc, #316] ; (800445c ) + 8004320: 881b ldrh r3, [r3, #0] + 8004322: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8003c00: 4b4d ldr r3, [pc, #308] ; (8003d38 ) - 8003c02: 885a ldrh r2, [r3, #2] - 8003c04: 4b4c ldr r3, [pc, #304] ; (8003d38 ) - 8003c06: 801a strh r2, [r3, #0] + 8004324: 4b4d ldr r3, [pc, #308] ; (800445c ) + 8004326: 885a ldrh r2, [r3, #2] + 8004328: 4b4c ldr r3, [pc, #304] ; (800445c ) + 800432a: 801a strh r2, [r3, #0] lcddev.height=temp; - 8003c08: 4a4b ldr r2, [pc, #300] ; (8003d38 ) - 8003c0a: 897b ldrh r3, [r7, #10] - 8003c0c: 8053 strh r3, [r2, #2] + 800432c: 4a4b ldr r2, [pc, #300] ; (800445c ) + 800432e: 897b ldrh r3, [r7, #10] + 8004330: 8053 strh r3, [r2, #2] if(lcddev.width + 8004332: e00f b.n 8004354 } }else { if(lcddev.width>lcddev.height)//交换X,Y - 8003c10: 4b49 ldr r3, [pc, #292] ; (8003d38 ) - 8003c12: 881a ldrh r2, [r3, #0] - 8003c14: 4b48 ldr r3, [pc, #288] ; (8003d38 ) - 8003c16: 885b ldrh r3, [r3, #2] - 8003c18: 429a cmp r2, r3 - 8003c1a: d909 bls.n 8003c30 + 8004334: 4b49 ldr r3, [pc, #292] ; (800445c ) + 8004336: 881a ldrh r2, [r3, #0] + 8004338: 4b48 ldr r3, [pc, #288] ; (800445c ) + 800433a: 885b ldrh r3, [r3, #2] + 800433c: 429a cmp r2, r3 + 800433e: d909 bls.n 8004354 { temp=lcddev.width; - 8003c1c: 4b46 ldr r3, [pc, #280] ; (8003d38 ) - 8003c1e: 881b ldrh r3, [r3, #0] - 8003c20: 817b strh r3, [r7, #10] + 8004340: 4b46 ldr r3, [pc, #280] ; (800445c ) + 8004342: 881b ldrh r3, [r3, #0] + 8004344: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8003c22: 4b45 ldr r3, [pc, #276] ; (8003d38 ) - 8003c24: 885a ldrh r2, [r3, #2] - 8003c26: 4b44 ldr r3, [pc, #272] ; (8003d38 ) - 8003c28: 801a strh r2, [r3, #0] + 8004346: 4b45 ldr r3, [pc, #276] ; (800445c ) + 8004348: 885a ldrh r2, [r3, #2] + 800434a: 4b44 ldr r3, [pc, #272] ; (800445c ) + 800434c: 801a strh r2, [r3, #0] lcddev.height=temp; - 8003c2a: 4a43 ldr r2, [pc, #268] ; (8003d38 ) - 8003c2c: 897b ldrh r3, [r7, #10] - 8003c2e: 8053 strh r3, [r2, #2] + 800434e: 4a43 ldr r2, [pc, #268] ; (800445c ) + 8004350: 897b ldrh r3, [r7, #10] + 8004352: 8053 strh r3, [r2, #2] } } LCD_WR_REG(lcddev.setxcmd); - 8003c30: 4b41 ldr r3, [pc, #260] ; (8003d38 ) - 8003c32: 7a1b ldrb r3, [r3, #8] - 8003c34: b29b uxth r3, r3 - 8003c36: 4618 mov r0, r3 - 8003c38: f7ff fedc bl 80039f4 + 8004354: 4b41 ldr r3, [pc, #260] ; (800445c ) + 8004356: 7a1b ldrb r3, [r3, #8] + 8004358: b29b uxth r3, r3 + 800435a: 4618 mov r0, r3 + 800435c: f7ff fedc bl 8004118 LCD_WR_DATA(0);LCD_WR_DATA(0); - 8003c3c: 2000 movs r0, #0 - 8003c3e: f7ff fee7 bl 8003a10 - 8003c42: 2000 movs r0, #0 - 8003c44: f7ff fee4 bl 8003a10 + 8004360: 2000 movs r0, #0 + 8004362: f7ff fee7 bl 8004134 + 8004366: 2000 movs r0, #0 + 8004368: f7ff fee4 bl 8004134 LCD_WR_DATA((lcddev.width-1)>>8);LCD_WR_DATA((lcddev.width-1)&0XFF); - 8003c48: 4b3b ldr r3, [pc, #236] ; (8003d38 ) - 8003c4a: 881b ldrh r3, [r3, #0] - 8003c4c: 3b01 subs r3, #1 - 8003c4e: 121b asrs r3, r3, #8 - 8003c50: b29b uxth r3, r3 - 8003c52: 4618 mov r0, r3 - 8003c54: f7ff fedc bl 8003a10 - 8003c58: 4b37 ldr r3, [pc, #220] ; (8003d38 ) - 8003c5a: 881b ldrh r3, [r3, #0] - 8003c5c: 3b01 subs r3, #1 - 8003c5e: b29b uxth r3, r3 - 8003c60: b2db uxtb r3, r3 - 8003c62: b29b uxth r3, r3 - 8003c64: 4618 mov r0, r3 - 8003c66: f7ff fed3 bl 8003a10 + 800436c: 4b3b ldr r3, [pc, #236] ; (800445c ) + 800436e: 881b ldrh r3, [r3, #0] + 8004370: 3b01 subs r3, #1 + 8004372: 121b asrs r3, r3, #8 + 8004374: b29b uxth r3, r3 + 8004376: 4618 mov r0, r3 + 8004378: f7ff fedc bl 8004134 + 800437c: 4b37 ldr r3, [pc, #220] ; (800445c ) + 800437e: 881b ldrh r3, [r3, #0] + 8004380: 3b01 subs r3, #1 + 8004382: b29b uxth r3, r3 + 8004384: b2db uxtb r3, r3 + 8004386: b29b uxth r3, r3 + 8004388: 4618 mov r0, r3 + 800438a: f7ff fed3 bl 8004134 LCD_WR_REG(lcddev.setycmd); - 8003c6a: 4b33 ldr r3, [pc, #204] ; (8003d38 ) - 8003c6c: 7a5b ldrb r3, [r3, #9] - 8003c6e: b29b uxth r3, r3 - 8003c70: 4618 mov r0, r3 - 8003c72: f7ff febf bl 80039f4 + 800438e: 4b33 ldr r3, [pc, #204] ; (800445c ) + 8004390: 7a5b ldrb r3, [r3, #9] + 8004392: b29b uxth r3, r3 + 8004394: 4618 mov r0, r3 + 8004396: f7ff febf bl 8004118 LCD_WR_DATA(0);LCD_WR_DATA(0); - 8003c76: 2000 movs r0, #0 - 8003c78: f7ff feca bl 8003a10 - 8003c7c: 2000 movs r0, #0 - 8003c7e: f7ff fec7 bl 8003a10 + 800439a: 2000 movs r0, #0 + 800439c: f7ff feca bl 8004134 + 80043a0: 2000 movs r0, #0 + 80043a2: f7ff fec7 bl 8004134 LCD_WR_DATA((lcddev.height-1)>>8);LCD_WR_DATA((lcddev.height-1)&0XFF); - 8003c82: 4b2d ldr r3, [pc, #180] ; (8003d38 ) - 8003c84: 885b ldrh r3, [r3, #2] - 8003c86: 3b01 subs r3, #1 - 8003c88: 121b asrs r3, r3, #8 - 8003c8a: b29b uxth r3, r3 - 8003c8c: 4618 mov r0, r3 - 8003c8e: f7ff febf bl 8003a10 - 8003c92: 4b29 ldr r3, [pc, #164] ; (8003d38 ) - 8003c94: 885b ldrh r3, [r3, #2] - 8003c96: 3b01 subs r3, #1 - 8003c98: b29b uxth r3, r3 - 8003c9a: b2db uxtb r3, r3 - 8003c9c: b29b uxth r3, r3 - 8003c9e: 4618 mov r0, r3 - 8003ca0: f7ff feb6 bl 8003a10 - 8003ca4: e058 b.n 8003d58 + 80043a6: 4b2d ldr r3, [pc, #180] ; (800445c ) + 80043a8: 885b ldrh r3, [r3, #2] + 80043aa: 3b01 subs r3, #1 + 80043ac: 121b asrs r3, r3, #8 + 80043ae: b29b uxth r3, r3 + 80043b0: 4618 mov r0, r3 + 80043b2: f7ff febf bl 8004134 + 80043b6: 4b29 ldr r3, [pc, #164] ; (800445c ) + 80043b8: 885b ldrh r3, [r3, #2] + 80043ba: 3b01 subs r3, #1 + 80043bc: b29b uxth r3, r3 + 80043be: b2db uxtb r3, r3 + 80043c0: b29b uxth r3, r3 + 80043c2: 4618 mov r0, r3 + 80043c4: f7ff feb6 bl 8004134 + 80043c8: e058 b.n 800447c }else { switch(dir) - 8003ca6: 79fb ldrb r3, [r7, #7] - 8003ca8: 2b07 cmp r3, #7 - 8003caa: d836 bhi.n 8003d1a - 8003cac: a201 add r2, pc, #4 ; (adr r2, 8003cb4 ) - 8003cae: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8003cb2: bf00 nop - 8003cb4: 08003cd5 .word 0x08003cd5 - 8003cb8: 08003cdf .word 0x08003cdf - 8003cbc: 08003ce9 .word 0x08003ce9 - 8003cc0: 08003d1b .word 0x08003d1b - 8003cc4: 08003cf3 .word 0x08003cf3 - 8003cc8: 08003cfd .word 0x08003cfd - 8003ccc: 08003d07 .word 0x08003d07 - 8003cd0: 08003d11 .word 0x08003d11 + 80043ca: 79fb ldrb r3, [r7, #7] + 80043cc: 2b07 cmp r3, #7 + 80043ce: d836 bhi.n 800443e + 80043d0: a201 add r2, pc, #4 ; (adr r2, 80043d8 ) + 80043d2: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80043d6: bf00 nop + 80043d8: 080043f9 .word 0x080043f9 + 80043dc: 08004403 .word 0x08004403 + 80043e0: 0800440d .word 0x0800440d + 80043e4: 0800443f .word 0x0800443f + 80043e8: 08004417 .word 0x08004417 + 80043ec: 08004421 .word 0x08004421 + 80043f0: 0800442b .word 0x0800442b + 80043f4: 08004435 .word 0x08004435 { case L2R_U2D://从左到右,从上到下 regval|=(1<<5)|(1<<4)|(0<<3); - 8003cd4: 89fb ldrh r3, [r7, #14] - 8003cd6: f043 0330 orr.w r3, r3, #48 ; 0x30 - 8003cda: 81fb strh r3, [r7, #14] + 80043f8: 89fb ldrh r3, [r7, #14] + 80043fa: f043 0330 orr.w r3, r3, #48 ; 0x30 + 80043fe: 81fb strh r3, [r7, #14] break; - 8003cdc: e01d b.n 8003d1a + 8004400: e01d b.n 800443e case L2R_D2U://从左到右,从下到上 regval|=(0<<5)|(1<<4)|(0<<3); - 8003cde: 89fb ldrh r3, [r7, #14] - 8003ce0: f043 0310 orr.w r3, r3, #16 - 8003ce4: 81fb strh r3, [r7, #14] + 8004402: 89fb ldrh r3, [r7, #14] + 8004404: f043 0310 orr.w r3, r3, #16 + 8004408: 81fb strh r3, [r7, #14] break; - 8003ce6: e018 b.n 8003d1a + 800440a: e018 b.n 800443e case R2L_U2D://从右到左,从上到下 regval|=(1<<5)|(0<<4)|(0<<3); - 8003ce8: 89fb ldrh r3, [r7, #14] - 8003cea: f043 0320 orr.w r3, r3, #32 - 8003cee: 81fb strh r3, [r7, #14] + 800440c: 89fb ldrh r3, [r7, #14] + 800440e: f043 0320 orr.w r3, r3, #32 + 8004412: 81fb strh r3, [r7, #14] break; - 8003cf0: e013 b.n 8003d1a + 8004414: e013 b.n 800443e case R2L_D2U://从右到左,从下到上 regval|=(0<<5)|(0<<4)|(0<<3); break; case U2D_L2R://从上到下,从左到右 regval|=(1<<5)|(1<<4)|(1<<3); - 8003cf2: 89fb ldrh r3, [r7, #14] - 8003cf4: f043 0338 orr.w r3, r3, #56 ; 0x38 - 8003cf8: 81fb strh r3, [r7, #14] + 8004416: 89fb ldrh r3, [r7, #14] + 8004418: f043 0338 orr.w r3, r3, #56 ; 0x38 + 800441c: 81fb strh r3, [r7, #14] break; - 8003cfa: e00e b.n 8003d1a + 800441e: e00e b.n 800443e case U2D_R2L://从上到下,从右到左 regval|=(1<<5)|(0<<4)|(1<<3); - 8003cfc: 89fb ldrh r3, [r7, #14] - 8003cfe: f043 0328 orr.w r3, r3, #40 ; 0x28 - 8003d02: 81fb strh r3, [r7, #14] + 8004420: 89fb ldrh r3, [r7, #14] + 8004422: f043 0328 orr.w r3, r3, #40 ; 0x28 + 8004426: 81fb strh r3, [r7, #14] break; - 8003d04: e009 b.n 8003d1a + 8004428: e009 b.n 800443e case D2U_L2R://从下到上,从左到右 regval|=(0<<5)|(1<<4)|(1<<3); - 8003d06: 89fb ldrh r3, [r7, #14] - 8003d08: f043 0318 orr.w r3, r3, #24 - 8003d0c: 81fb strh r3, [r7, #14] + 800442a: 89fb ldrh r3, [r7, #14] + 800442c: f043 0318 orr.w r3, r3, #24 + 8004430: 81fb strh r3, [r7, #14] break; - 8003d0e: e004 b.n 8003d1a + 8004432: e004 b.n 800443e case D2U_R2L://从下到上,从右到左 regval|=(0<<5)|(0<<4)|(1<<3); - 8003d10: 89fb ldrh r3, [r7, #14] - 8003d12: f043 0308 orr.w r3, r3, #8 - 8003d16: 81fb strh r3, [r7, #14] + 8004434: 89fb ldrh r3, [r7, #14] + 8004436: f043 0308 orr.w r3, r3, #8 + 800443a: 81fb strh r3, [r7, #14] break; - 8003d18: bf00 nop + 800443c: bf00 nop } if(lcddev.id==0x8989)//8989 IC - 8003d1a: 4b07 ldr r3, [pc, #28] ; (8003d38 ) - 8003d1c: 889b ldrh r3, [r3, #4] - 8003d1e: f648 1289 movw r2, #35209 ; 0x8989 - 8003d22: 4293 cmp r3, r2 - 8003d24: d10a bne.n 8003d3c + 800443e: 4b07 ldr r3, [pc, #28] ; (800445c ) + 8004440: 889b ldrh r3, [r3, #4] + 8004442: f648 1289 movw r2, #35209 ; 0x8989 + 8004446: 4293 cmp r3, r2 + 8004448: d10a bne.n 8004460 { dirreg=0X11; - 8003d26: 2311 movs r3, #17 - 8003d28: 737b strb r3, [r7, #13] + 800444a: 2311 movs r3, #17 + 800444c: 737b strb r3, [r7, #13] regval|=0X6040; //65K - 8003d2a: 89fb ldrh r3, [r7, #14] - 8003d2c: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 - 8003d30: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8003d34: 81fb strh r3, [r7, #14] - 8003d36: e007 b.n 8003d48 - 8003d38: 200002b8 .word 0x200002b8 + 800444e: 89fb ldrh r3, [r7, #14] + 8004450: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 + 8004454: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8004458: 81fb strh r3, [r7, #14] + 800445a: e007 b.n 800446c + 800445c: 20000300 .word 0x20000300 }else//其他驱动IC { dirreg=0X03; - 8003d3c: 2303 movs r3, #3 - 8003d3e: 737b strb r3, [r7, #13] + 8004460: 2303 movs r3, #3 + 8004462: 737b strb r3, [r7, #13] regval|=1<<12; - 8003d40: 89fb ldrh r3, [r7, #14] - 8003d42: f443 5380 orr.w r3, r3, #4096 ; 0x1000 - 8003d46: 81fb strh r3, [r7, #14] + 8004464: 89fb ldrh r3, [r7, #14] + 8004466: f443 5380 orr.w r3, r3, #4096 ; 0x1000 + 800446a: 81fb strh r3, [r7, #14] } LCD_WriteReg(dirreg,regval); - 8003d48: 7b7b ldrb r3, [r7, #13] - 8003d4a: b29b uxth r3, r3 - 8003d4c: 89fa ldrh r2, [r7, #14] - 8003d4e: 4611 mov r1, r2 - 8003d50: 4618 mov r0, r3 - 8003d52: f7ff fe6d bl 8003a30 + 800446c: 7b7b ldrb r3, [r7, #13] + 800446e: b29b uxth r3, r3 + 8004470: 89fa ldrh r2, [r7, #14] + 8004472: 4611 mov r1, r2 + 8004474: 4618 mov r0, r3 + 8004476: f7ff fe6d bl 8004154 } } - 8003d56: bf00 nop - 8003d58: bf00 nop - 8003d5a: 3710 adds r7, #16 - 8003d5c: 46bd mov sp, r7 - 8003d5e: bd80 pop {r7, pc} + 800447a: bf00 nop + 800447c: bf00 nop + 800447e: 3710 adds r7, #16 + 8004480: 46bd mov sp, r7 + 8004482: bd80 pop {r7, pc} -08003d60 : +08004484 : //设置LCD显示方向 //dir:0,竖屏;1,横屏 void LCD_Display_Dir(uint8_t dir) { - 8003d60: b580 push {r7, lr} - 8003d62: b082 sub sp, #8 - 8003d64: af00 add r7, sp, #0 - 8003d66: 4603 mov r3, r0 - 8003d68: 71fb strb r3, [r7, #7] + 8004484: b580 push {r7, lr} + 8004486: b082 sub sp, #8 + 8004488: af00 add r7, sp, #0 + 800448a: 4603 mov r3, r0 + 800448c: 71fb strb r3, [r7, #7] if(dir==0) //竖屏 - 8003d6a: 79fb ldrb r3, [r7, #7] - 8003d6c: 2b00 cmp r3, #0 - 8003d6e: d154 bne.n 8003e1a + 800448e: 79fb ldrb r3, [r7, #7] + 8004490: 2b00 cmp r3, #0 + 8004492: d154 bne.n 800453e { lcddev.dir=0; //竖屏 - 8003d70: 4b5d ldr r3, [pc, #372] ; (8003ee8 ) - 8003d72: 2200 movs r2, #0 - 8003d74: 719a strb r2, [r3, #6] + 8004494: 4b5d ldr r3, [pc, #372] ; (800460c ) + 8004496: 2200 movs r2, #0 + 8004498: 719a strb r2, [r3, #6] lcddev.width=240; - 8003d76: 4b5c ldr r3, [pc, #368] ; (8003ee8 ) - 8003d78: 22f0 movs r2, #240 ; 0xf0 - 8003d7a: 801a strh r2, [r3, #0] + 800449a: 4b5c ldr r3, [pc, #368] ; (800460c ) + 800449c: 22f0 movs r2, #240 ; 0xf0 + 800449e: 801a strh r2, [r3, #0] lcddev.height=320; - 8003d7c: 4b5a ldr r3, [pc, #360] ; (8003ee8 ) - 8003d7e: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003d82: 805a strh r2, [r3, #2] + 80044a0: 4b5a ldr r3, [pc, #360] ; (800460c ) + 80044a2: f44f 72a0 mov.w r2, #320 ; 0x140 + 80044a6: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X6804||lcddev.id==0X5310) - 8003d84: 4b58 ldr r3, [pc, #352] ; (8003ee8 ) - 8003d86: 889b ldrh r3, [r3, #4] - 8003d88: f249 3241 movw r2, #37697 ; 0x9341 - 8003d8c: 4293 cmp r3, r2 - 8003d8e: d00b beq.n 8003da8 - 8003d90: 4b55 ldr r3, [pc, #340] ; (8003ee8 ) - 8003d92: 889b ldrh r3, [r3, #4] - 8003d94: f646 0204 movw r2, #26628 ; 0x6804 - 8003d98: 4293 cmp r3, r2 - 8003d9a: d005 beq.n 8003da8 - 8003d9c: 4b52 ldr r3, [pc, #328] ; (8003ee8 ) - 8003d9e: 889b ldrh r3, [r3, #4] - 8003da0: f245 3210 movw r2, #21264 ; 0x5310 - 8003da4: 4293 cmp r3, r2 - 8003da6: d11e bne.n 8003de6 + 80044a8: 4b58 ldr r3, [pc, #352] ; (800460c ) + 80044aa: 889b ldrh r3, [r3, #4] + 80044ac: f249 3241 movw r2, #37697 ; 0x9341 + 80044b0: 4293 cmp r3, r2 + 80044b2: d00b beq.n 80044cc + 80044b4: 4b55 ldr r3, [pc, #340] ; (800460c ) + 80044b6: 889b ldrh r3, [r3, #4] + 80044b8: f646 0204 movw r2, #26628 ; 0x6804 + 80044bc: 4293 cmp r3, r2 + 80044be: d005 beq.n 80044cc + 80044c0: 4b52 ldr r3, [pc, #328] ; (800460c ) + 80044c2: 889b ldrh r3, [r3, #4] + 80044c4: f245 3210 movw r2, #21264 ; 0x5310 + 80044c8: 4293 cmp r3, r2 + 80044ca: d11e bne.n 800450a { lcddev.wramcmd=0X2C; - 8003da8: 4b4f ldr r3, [pc, #316] ; (8003ee8 ) - 8003daa: 222c movs r2, #44 ; 0x2c - 8003dac: 71da strb r2, [r3, #7] + 80044cc: 4b4f ldr r3, [pc, #316] ; (800460c ) + 80044ce: 222c movs r2, #44 ; 0x2c + 80044d0: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8003dae: 4b4e ldr r3, [pc, #312] ; (8003ee8 ) - 8003db0: 222a movs r2, #42 ; 0x2a - 8003db2: 721a strb r2, [r3, #8] + 80044d2: 4b4e ldr r3, [pc, #312] ; (800460c ) + 80044d4: 222a movs r2, #42 ; 0x2a + 80044d6: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8003db4: 4b4c ldr r3, [pc, #304] ; (8003ee8 ) - 8003db6: 222b movs r2, #43 ; 0x2b - 8003db8: 725a strb r2, [r3, #9] + 80044d8: 4b4c ldr r3, [pc, #304] ; (800460c ) + 80044da: 222b movs r2, #43 ; 0x2b + 80044dc: 725a strb r2, [r3, #9] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003dba: 4b4b ldr r3, [pc, #300] ; (8003ee8 ) - 8003dbc: 889b ldrh r3, [r3, #4] - 8003dbe: f646 0204 movw r2, #26628 ; 0x6804 - 8003dc2: 4293 cmp r3, r2 - 8003dc4: d006 beq.n 8003dd4 - 8003dc6: 4b48 ldr r3, [pc, #288] ; (8003ee8 ) - 8003dc8: 889b ldrh r3, [r3, #4] - 8003dca: f245 3210 movw r2, #21264 ; 0x5310 - 8003dce: 4293 cmp r3, r2 - 8003dd0: f040 8081 bne.w 8003ed6 + 80044de: 4b4b ldr r3, [pc, #300] ; (800460c ) + 80044e0: 889b ldrh r3, [r3, #4] + 80044e2: f646 0204 movw r2, #26628 ; 0x6804 + 80044e6: 4293 cmp r3, r2 + 80044e8: d006 beq.n 80044f8 + 80044ea: 4b48 ldr r3, [pc, #288] ; (800460c ) + 80044ec: 889b ldrh r3, [r3, #4] + 80044ee: f245 3210 movw r2, #21264 ; 0x5310 + 80044f2: 4293 cmp r3, r2 + 80044f4: f040 8081 bne.w 80045fa { lcddev.width=320; - 8003dd4: 4b44 ldr r3, [pc, #272] ; (8003ee8 ) - 8003dd6: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003dda: 801a strh r2, [r3, #0] + 80044f8: 4b44 ldr r3, [pc, #272] ; (800460c ) + 80044fa: f44f 72a0 mov.w r2, #320 ; 0x140 + 80044fe: 801a strh r2, [r3, #0] lcddev.height=480; - 8003ddc: 4b42 ldr r3, [pc, #264] ; (8003ee8 ) - 8003dde: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 8003de2: 805a strh r2, [r3, #2] + 8004500: 4b42 ldr r3, [pc, #264] ; (800460c ) + 8004502: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 8004506: 805a strh r2, [r3, #2] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003de4: e077 b.n 8003ed6 + 8004508: e077 b.n 80045fa } }else if(lcddev.id==0X8989) - 8003de6: 4b40 ldr r3, [pc, #256] ; (8003ee8 ) - 8003de8: 889b ldrh r3, [r3, #4] - 8003dea: f648 1289 movw r2, #35209 ; 0x8989 - 8003dee: 4293 cmp r3, r2 - 8003df0: d109 bne.n 8003e06 + 800450a: 4b40 ldr r3, [pc, #256] ; (800460c ) + 800450c: 889b ldrh r3, [r3, #4] + 800450e: f648 1289 movw r2, #35209 ; 0x8989 + 8004512: 4293 cmp r3, r2 + 8004514: d109 bne.n 800452a { lcddev.wramcmd=R34; - 8003df2: 4b3d ldr r3, [pc, #244] ; (8003ee8 ) - 8003df4: 2222 movs r2, #34 ; 0x22 - 8003df6: 71da strb r2, [r3, #7] + 8004516: 4b3d ldr r3, [pc, #244] ; (800460c ) + 8004518: 2222 movs r2, #34 ; 0x22 + 800451a: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4E; - 8003df8: 4b3b ldr r3, [pc, #236] ; (8003ee8 ) - 8003dfa: 224e movs r2, #78 ; 0x4e - 8003dfc: 721a strb r2, [r3, #8] + 800451c: 4b3b ldr r3, [pc, #236] ; (800460c ) + 800451e: 224e movs r2, #78 ; 0x4e + 8004520: 721a strb r2, [r3, #8] lcddev.setycmd=0X4F; - 8003dfe: 4b3a ldr r3, [pc, #232] ; (8003ee8 ) - 8003e00: 224f movs r2, #79 ; 0x4f - 8003e02: 725a strb r2, [r3, #9] - 8003e04: e068 b.n 8003ed8 + 8004522: 4b3a ldr r3, [pc, #232] ; (800460c ) + 8004524: 224f movs r2, #79 ; 0x4f + 8004526: 725a strb r2, [r3, #9] + 8004528: e068 b.n 80045fc }else { lcddev.wramcmd=R34; - 8003e06: 4b38 ldr r3, [pc, #224] ; (8003ee8 ) - 8003e08: 2222 movs r2, #34 ; 0x22 - 8003e0a: 71da strb r2, [r3, #7] + 800452a: 4b38 ldr r3, [pc, #224] ; (800460c ) + 800452c: 2222 movs r2, #34 ; 0x22 + 800452e: 71da strb r2, [r3, #7] lcddev.setxcmd=R32; - 8003e0c: 4b36 ldr r3, [pc, #216] ; (8003ee8 ) - 8003e0e: 2220 movs r2, #32 - 8003e10: 721a strb r2, [r3, #8] + 8004530: 4b36 ldr r3, [pc, #216] ; (800460c ) + 8004532: 2220 movs r2, #32 + 8004534: 721a strb r2, [r3, #8] lcddev.setycmd=R33; - 8003e12: 4b35 ldr r3, [pc, #212] ; (8003ee8 ) - 8003e14: 2221 movs r2, #33 ; 0x21 - 8003e16: 725a strb r2, [r3, #9] - 8003e18: e05e b.n 8003ed8 + 8004536: 4b35 ldr r3, [pc, #212] ; (800460c ) + 8004538: 2221 movs r2, #33 ; 0x21 + 800453a: 725a strb r2, [r3, #9] + 800453c: e05e b.n 80045fc } }else //横屏 { lcddev.dir=1; //横屏 - 8003e1a: 4b33 ldr r3, [pc, #204] ; (8003ee8 ) - 8003e1c: 2201 movs r2, #1 - 8003e1e: 719a strb r2, [r3, #6] + 800453e: 4b33 ldr r3, [pc, #204] ; (800460c ) + 8004540: 2201 movs r2, #1 + 8004542: 719a strb r2, [r3, #6] lcddev.width=320; - 8003e20: 4b31 ldr r3, [pc, #196] ; (8003ee8 ) - 8003e22: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003e26: 801a strh r2, [r3, #0] + 8004544: 4b31 ldr r3, [pc, #196] ; (800460c ) + 8004546: f44f 72a0 mov.w r2, #320 ; 0x140 + 800454a: 801a strh r2, [r3, #0] lcddev.height=240; - 8003e28: 4b2f ldr r3, [pc, #188] ; (8003ee8 ) - 8003e2a: 22f0 movs r2, #240 ; 0xf0 - 8003e2c: 805a strh r2, [r3, #2] + 800454c: 4b2f ldr r3, [pc, #188] ; (800460c ) + 800454e: 22f0 movs r2, #240 ; 0xf0 + 8004550: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X5310) - 8003e2e: 4b2e ldr r3, [pc, #184] ; (8003ee8 ) - 8003e30: 889b ldrh r3, [r3, #4] - 8003e32: f249 3241 movw r2, #37697 ; 0x9341 - 8003e36: 4293 cmp r3, r2 - 8003e38: d005 beq.n 8003e46 - 8003e3a: 4b2b ldr r3, [pc, #172] ; (8003ee8 ) - 8003e3c: 889b ldrh r3, [r3, #4] - 8003e3e: f245 3210 movw r2, #21264 ; 0x5310 - 8003e42: 4293 cmp r3, r2 - 8003e44: d109 bne.n 8003e5a + 8004552: 4b2e ldr r3, [pc, #184] ; (800460c ) + 8004554: 889b ldrh r3, [r3, #4] + 8004556: f249 3241 movw r2, #37697 ; 0x9341 + 800455a: 4293 cmp r3, r2 + 800455c: d005 beq.n 800456a + 800455e: 4b2b ldr r3, [pc, #172] ; (800460c ) + 8004560: 889b ldrh r3, [r3, #4] + 8004562: f245 3210 movw r2, #21264 ; 0x5310 + 8004566: 4293 cmp r3, r2 + 8004568: d109 bne.n 800457e { lcddev.wramcmd=0X2C; - 8003e46: 4b28 ldr r3, [pc, #160] ; (8003ee8 ) - 8003e48: 222c movs r2, #44 ; 0x2c - 8003e4a: 71da strb r2, [r3, #7] + 800456a: 4b28 ldr r3, [pc, #160] ; (800460c ) + 800456c: 222c movs r2, #44 ; 0x2c + 800456e: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8003e4c: 4b26 ldr r3, [pc, #152] ; (8003ee8 ) - 8003e4e: 222a movs r2, #42 ; 0x2a - 8003e50: 721a strb r2, [r3, #8] + 8004570: 4b26 ldr r3, [pc, #152] ; (800460c ) + 8004572: 222a movs r2, #42 ; 0x2a + 8004574: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8003e52: 4b25 ldr r3, [pc, #148] ; (8003ee8 ) - 8003e54: 222b movs r2, #43 ; 0x2b - 8003e56: 725a strb r2, [r3, #9] - 8003e58: e028 b.n 8003eac + 8004576: 4b25 ldr r3, [pc, #148] ; (800460c ) + 8004578: 222b movs r2, #43 ; 0x2b + 800457a: 725a strb r2, [r3, #9] + 800457c: e028 b.n 80045d0 }else if(lcddev.id==0X6804) - 8003e5a: 4b23 ldr r3, [pc, #140] ; (8003ee8 ) - 8003e5c: 889b ldrh r3, [r3, #4] - 8003e5e: f646 0204 movw r2, #26628 ; 0x6804 - 8003e62: 4293 cmp r3, r2 - 8003e64: d109 bne.n 8003e7a + 800457e: 4b23 ldr r3, [pc, #140] ; (800460c ) + 8004580: 889b ldrh r3, [r3, #4] + 8004582: f646 0204 movw r2, #26628 ; 0x6804 + 8004586: 4293 cmp r3, r2 + 8004588: d109 bne.n 800459e { lcddev.wramcmd=0X2C; - 8003e66: 4b20 ldr r3, [pc, #128] ; (8003ee8 ) - 8003e68: 222c movs r2, #44 ; 0x2c - 8003e6a: 71da strb r2, [r3, #7] + 800458a: 4b20 ldr r3, [pc, #128] ; (800460c ) + 800458c: 222c movs r2, #44 ; 0x2c + 800458e: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2B; - 8003e6c: 4b1e ldr r3, [pc, #120] ; (8003ee8 ) - 8003e6e: 222b movs r2, #43 ; 0x2b - 8003e70: 721a strb r2, [r3, #8] + 8004590: 4b1e ldr r3, [pc, #120] ; (800460c ) + 8004592: 222b movs r2, #43 ; 0x2b + 8004594: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8003e72: 4b1d ldr r3, [pc, #116] ; (8003ee8 ) - 8003e74: 222a movs r2, #42 ; 0x2a - 8003e76: 725a strb r2, [r3, #9] - 8003e78: e018 b.n 8003eac + 8004596: 4b1d ldr r3, [pc, #116] ; (800460c ) + 8004598: 222a movs r2, #42 ; 0x2a + 800459a: 725a strb r2, [r3, #9] + 800459c: e018 b.n 80045d0 }else if(lcddev.id==0X8989) - 8003e7a: 4b1b ldr r3, [pc, #108] ; (8003ee8 ) - 8003e7c: 889b ldrh r3, [r3, #4] - 8003e7e: f648 1289 movw r2, #35209 ; 0x8989 - 8003e82: 4293 cmp r3, r2 - 8003e84: d109 bne.n 8003e9a + 800459e: 4b1b ldr r3, [pc, #108] ; (800460c ) + 80045a0: 889b ldrh r3, [r3, #4] + 80045a2: f648 1289 movw r2, #35209 ; 0x8989 + 80045a6: 4293 cmp r3, r2 + 80045a8: d109 bne.n 80045be { lcddev.wramcmd=R34; - 8003e86: 4b18 ldr r3, [pc, #96] ; (8003ee8 ) - 8003e88: 2222 movs r2, #34 ; 0x22 - 8003e8a: 71da strb r2, [r3, #7] + 80045aa: 4b18 ldr r3, [pc, #96] ; (800460c ) + 80045ac: 2222 movs r2, #34 ; 0x22 + 80045ae: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4F; - 8003e8c: 4b16 ldr r3, [pc, #88] ; (8003ee8 ) - 8003e8e: 224f movs r2, #79 ; 0x4f - 8003e90: 721a strb r2, [r3, #8] + 80045b0: 4b16 ldr r3, [pc, #88] ; (800460c ) + 80045b2: 224f movs r2, #79 ; 0x4f + 80045b4: 721a strb r2, [r3, #8] lcddev.setycmd=0X4E; - 8003e92: 4b15 ldr r3, [pc, #84] ; (8003ee8 ) - 8003e94: 224e movs r2, #78 ; 0x4e - 8003e96: 725a strb r2, [r3, #9] - 8003e98: e008 b.n 8003eac + 80045b6: 4b15 ldr r3, [pc, #84] ; (800460c ) + 80045b8: 224e movs r2, #78 ; 0x4e + 80045ba: 725a strb r2, [r3, #9] + 80045bc: e008 b.n 80045d0 }else { lcddev.wramcmd=R34; - 8003e9a: 4b13 ldr r3, [pc, #76] ; (8003ee8 ) - 8003e9c: 2222 movs r2, #34 ; 0x22 - 8003e9e: 71da strb r2, [r3, #7] + 80045be: 4b13 ldr r3, [pc, #76] ; (800460c ) + 80045c0: 2222 movs r2, #34 ; 0x22 + 80045c2: 71da strb r2, [r3, #7] lcddev.setxcmd=R33; - 8003ea0: 4b11 ldr r3, [pc, #68] ; (8003ee8 ) - 8003ea2: 2221 movs r2, #33 ; 0x21 - 8003ea4: 721a strb r2, [r3, #8] + 80045c4: 4b11 ldr r3, [pc, #68] ; (800460c ) + 80045c6: 2221 movs r2, #33 ; 0x21 + 80045c8: 721a strb r2, [r3, #8] lcddev.setycmd=R32; - 8003ea6: 4b10 ldr r3, [pc, #64] ; (8003ee8 ) - 8003ea8: 2220 movs r2, #32 - 8003eaa: 725a strb r2, [r3, #9] + 80045ca: 4b10 ldr r3, [pc, #64] ; (800460c ) + 80045cc: 2220 movs r2, #32 + 80045ce: 725a strb r2, [r3, #9] } if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003eac: 4b0e ldr r3, [pc, #56] ; (8003ee8 ) - 8003eae: 889b ldrh r3, [r3, #4] - 8003eb0: f646 0204 movw r2, #26628 ; 0x6804 - 8003eb4: 4293 cmp r3, r2 - 8003eb6: d005 beq.n 8003ec4 - 8003eb8: 4b0b ldr r3, [pc, #44] ; (8003ee8 ) - 8003eba: 889b ldrh r3, [r3, #4] - 8003ebc: f245 3210 movw r2, #21264 ; 0x5310 - 8003ec0: 4293 cmp r3, r2 - 8003ec2: d109 bne.n 8003ed8 + 80045d0: 4b0e ldr r3, [pc, #56] ; (800460c ) + 80045d2: 889b ldrh r3, [r3, #4] + 80045d4: f646 0204 movw r2, #26628 ; 0x6804 + 80045d8: 4293 cmp r3, r2 + 80045da: d005 beq.n 80045e8 + 80045dc: 4b0b ldr r3, [pc, #44] ; (800460c ) + 80045de: 889b ldrh r3, [r3, #4] + 80045e0: f245 3210 movw r2, #21264 ; 0x5310 + 80045e4: 4293 cmp r3, r2 + 80045e6: d109 bne.n 80045fc { lcddev.width=480; - 8003ec4: 4b08 ldr r3, [pc, #32] ; (8003ee8 ) - 8003ec6: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 8003eca: 801a strh r2, [r3, #0] + 80045e8: 4b08 ldr r3, [pc, #32] ; (800460c ) + 80045ea: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 80045ee: 801a strh r2, [r3, #0] lcddev.height=320; - 8003ecc: 4b06 ldr r3, [pc, #24] ; (8003ee8 ) - 8003ece: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003ed2: 805a strh r2, [r3, #2] - 8003ed4: e000 b.n 8003ed8 + 80045f0: 4b06 ldr r3, [pc, #24] ; (800460c ) + 80045f2: f44f 72a0 mov.w r2, #320 ; 0x140 + 80045f6: 805a strh r2, [r3, #2] + 80045f8: e000 b.n 80045fc if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003ed6: bf00 nop + 80045fa: bf00 nop } } LCD_Scan_Dir(DFT_SCAN_DIR); //默认扫描方向 - 8003ed8: 2000 movs r0, #0 - 8003eda: f7ff fdd3 bl 8003a84 + 80045fc: 2000 movs r0, #0 + 80045fe: f7ff fdd3 bl 80041a8 } - 8003ede: bf00 nop - 8003ee0: 3708 adds r7, #8 - 8003ee2: 46bd mov sp, r7 - 8003ee4: bd80 pop {r7, pc} - 8003ee6: bf00 nop - 8003ee8: 200002b8 .word 0x200002b8 + 8004602: bf00 nop + 8004604: 3708 adds r7, #8 + 8004606: 46bd mov sp, r7 + 8004608: bd80 pop {r7, pc} + 800460a: bf00 nop + 800460c: 20000300 .word 0x20000300 -08003eec : +08004610 : //初始化lcd //该初始化函数可以初始化各种液晶! void LCDx_Init(void) { - 8003eec: b580 push {r7, lr} - 8003eee: af00 add r7, sp, #0 + 8004610: b580 push {r7, lr} + 8004612: af00 add r7, sp, #0 HAL_Delay(50); // delay 50 ms - 8003ef0: 2032 movs r0, #50 ; 0x32 - 8003ef2: f7fd fd89 bl 8001a08 + 8004614: 2032 movs r0, #50 ; 0x32 + 8004616: f7fd fa5f bl 8001ad8 LCD_WriteReg(0x0000,0x0001); - 8003ef6: 2101 movs r1, #1 - 8003ef8: 2000 movs r0, #0 - 8003efa: f7ff fd99 bl 8003a30 + 800461a: 2101 movs r1, #1 + 800461c: 2000 movs r0, #0 + 800461e: f7ff fd99 bl 8004154 HAL_Delay(50); // delay 50 ms - 8003efe: 2032 movs r0, #50 ; 0x32 - 8003f00: f7fd fd82 bl 8001a08 + 8004622: 2032 movs r0, #50 ; 0x32 + 8004624: f7fd fa58 bl 8001ad8 lcddev.id = LCD_ReadReg(0x0000); - 8003f04: 2000 movs r0, #0 - 8003f06: f7ff fda9 bl 8003a5c - 8003f0a: 4603 mov r3, r0 - 8003f0c: 461a mov r2, r3 - 8003f0e: 4b70 ldr r3, [pc, #448] ; (80040d0 ) - 8003f10: 809a strh r2, [r3, #4] + 8004628: 2000 movs r0, #0 + 800462a: f7ff fda9 bl 8004180 + 800462e: 4603 mov r3, r0 + 8004630: 461a mov r2, r3 + 8004632: 4b70 ldr r3, [pc, #448] ; (80047f4 ) + 8004634: 809a strh r2, [r3, #4] LCD_WriteReg(0x00E5,0x78F0); - 8003f12: f647 01f0 movw r1, #30960 ; 0x78f0 - 8003f16: 20e5 movs r0, #229 ; 0xe5 - 8003f18: f7ff fd8a bl 8003a30 + 8004636: f647 01f0 movw r1, #30960 ; 0x78f0 + 800463a: 20e5 movs r0, #229 ; 0xe5 + 800463c: f7ff fd8a bl 8004154 LCD_WriteReg(0x0001,0x0100); - 8003f1c: f44f 7180 mov.w r1, #256 ; 0x100 - 8003f20: 2001 movs r0, #1 - 8003f22: f7ff fd85 bl 8003a30 + 8004640: f44f 7180 mov.w r1, #256 ; 0x100 + 8004644: 2001 movs r0, #1 + 8004646: f7ff fd85 bl 8004154 LCD_WriteReg(0x0002,0x0700); - 8003f26: f44f 61e0 mov.w r1, #1792 ; 0x700 - 8003f2a: 2002 movs r0, #2 - 8003f2c: f7ff fd80 bl 8003a30 + 800464a: f44f 61e0 mov.w r1, #1792 ; 0x700 + 800464e: 2002 movs r0, #2 + 8004650: f7ff fd80 bl 8004154 LCD_WriteReg(0x0003,0x1030); - 8003f30: f241 0130 movw r1, #4144 ; 0x1030 - 8003f34: 2003 movs r0, #3 - 8003f36: f7ff fd7b bl 8003a30 + 8004654: f241 0130 movw r1, #4144 ; 0x1030 + 8004658: 2003 movs r0, #3 + 800465a: f7ff fd7b bl 8004154 LCD_WriteReg(0x0004,0x0000); - 8003f3a: 2100 movs r1, #0 - 8003f3c: 2004 movs r0, #4 - 8003f3e: f7ff fd77 bl 8003a30 + 800465e: 2100 movs r1, #0 + 8004660: 2004 movs r0, #4 + 8004662: f7ff fd77 bl 8004154 LCD_WriteReg(0x0008,0x0202); - 8003f42: f240 2102 movw r1, #514 ; 0x202 - 8003f46: 2008 movs r0, #8 - 8003f48: f7ff fd72 bl 8003a30 + 8004666: f240 2102 movw r1, #514 ; 0x202 + 800466a: 2008 movs r0, #8 + 800466c: f7ff fd72 bl 8004154 LCD_WriteReg(0x0009,0x0000); - 8003f4c: 2100 movs r1, #0 - 8003f4e: 2009 movs r0, #9 - 8003f50: f7ff fd6e bl 8003a30 + 8004670: 2100 movs r1, #0 + 8004672: 2009 movs r0, #9 + 8004674: f7ff fd6e bl 8004154 LCD_WriteReg(0x000A,0x0000); - 8003f54: 2100 movs r1, #0 - 8003f56: 200a movs r0, #10 - 8003f58: f7ff fd6a bl 8003a30 + 8004678: 2100 movs r1, #0 + 800467a: 200a movs r0, #10 + 800467c: f7ff fd6a bl 8004154 LCD_WriteReg(0x000C,0x0000); - 8003f5c: 2100 movs r1, #0 - 8003f5e: 200c movs r0, #12 - 8003f60: f7ff fd66 bl 8003a30 + 8004680: 2100 movs r1, #0 + 8004682: 200c movs r0, #12 + 8004684: f7ff fd66 bl 8004154 LCD_WriteReg(0x000D,0x0000); - 8003f64: 2100 movs r1, #0 - 8003f66: 200d movs r0, #13 - 8003f68: f7ff fd62 bl 8003a30 + 8004688: 2100 movs r1, #0 + 800468a: 200d movs r0, #13 + 800468c: f7ff fd62 bl 8004154 LCD_WriteReg(0x000F,0x0000); - 8003f6c: 2100 movs r1, #0 - 8003f6e: 200f movs r0, #15 - 8003f70: f7ff fd5e bl 8003a30 + 8004690: 2100 movs r1, #0 + 8004692: 200f movs r0, #15 + 8004694: f7ff fd5e bl 8004154 //power on sequence VGHVGL LCD_WriteReg(0x0010,0x0000); - 8003f74: 2100 movs r1, #0 - 8003f76: 2010 movs r0, #16 - 8003f78: f7ff fd5a bl 8003a30 + 8004698: 2100 movs r1, #0 + 800469a: 2010 movs r0, #16 + 800469c: f7ff fd5a bl 8004154 LCD_WriteReg(0x0011,0x0007); - 8003f7c: 2107 movs r1, #7 - 8003f7e: 2011 movs r0, #17 - 8003f80: f7ff fd56 bl 8003a30 + 80046a0: 2107 movs r1, #7 + 80046a2: 2011 movs r0, #17 + 80046a4: f7ff fd56 bl 8004154 LCD_WriteReg(0x0012,0x0000); - 8003f84: 2100 movs r1, #0 - 8003f86: 2012 movs r0, #18 - 8003f88: f7ff fd52 bl 8003a30 + 80046a8: 2100 movs r1, #0 + 80046aa: 2012 movs r0, #18 + 80046ac: f7ff fd52 bl 8004154 LCD_WriteReg(0x0013,0x0000); - 8003f8c: 2100 movs r1, #0 - 8003f8e: 2013 movs r0, #19 - 8003f90: f7ff fd4e bl 8003a30 + 80046b0: 2100 movs r1, #0 + 80046b2: 2013 movs r0, #19 + 80046b4: f7ff fd4e bl 8004154 LCD_WriteReg(0x0007,0x0000); - 8003f94: 2100 movs r1, #0 - 8003f96: 2007 movs r0, #7 - 8003f98: f7ff fd4a bl 8003a30 + 80046b8: 2100 movs r1, #0 + 80046ba: 2007 movs r0, #7 + 80046bc: f7ff fd4a bl 8004154 //vgh LCD_WriteReg(0x0010,0x1690); - 8003f9c: f241 6190 movw r1, #5776 ; 0x1690 - 8003fa0: 2010 movs r0, #16 - 8003fa2: f7ff fd45 bl 8003a30 + 80046c0: f241 6190 movw r1, #5776 ; 0x1690 + 80046c4: 2010 movs r0, #16 + 80046c6: f7ff fd45 bl 8004154 LCD_WriteReg(0x0011,0x0227); - 8003fa6: f240 2127 movw r1, #551 ; 0x227 - 8003faa: 2011 movs r0, #17 - 8003fac: f7ff fd40 bl 8003a30 + 80046ca: f240 2127 movw r1, #551 ; 0x227 + 80046ce: 2011 movs r0, #17 + 80046d0: f7ff fd40 bl 8004154 //delayms(100); //vregiout LCD_WriteReg(0x0012,0x009D); //0x001b - 8003fb0: 219d movs r1, #157 ; 0x9d - 8003fb2: 2012 movs r0, #18 - 8003fb4: f7ff fd3c bl 8003a30 + 80046d4: 219d movs r1, #157 ; 0x9d + 80046d6: 2012 movs r0, #18 + 80046d8: f7ff fd3c bl 8004154 //delayms(100); //vom amplitude LCD_WriteReg(0x0013,0x1900); - 8003fb8: f44f 51c8 mov.w r1, #6400 ; 0x1900 - 8003fbc: 2013 movs r0, #19 - 8003fbe: f7ff fd37 bl 8003a30 + 80046dc: f44f 51c8 mov.w r1, #6400 ; 0x1900 + 80046e0: 2013 movs r0, #19 + 80046e2: f7ff fd37 bl 8004154 //delayms(100); //vom H LCD_WriteReg(0x0029,0x0025); - 8003fc2: 2125 movs r1, #37 ; 0x25 - 8003fc4: 2029 movs r0, #41 ; 0x29 - 8003fc6: f7ff fd33 bl 8003a30 + 80046e6: 2125 movs r1, #37 ; 0x25 + 80046e8: 2029 movs r0, #41 ; 0x29 + 80046ea: f7ff fd33 bl 8004154 LCD_WriteReg(0x002B,0x000D); - 8003fca: 210d movs r1, #13 - 8003fcc: 202b movs r0, #43 ; 0x2b - 8003fce: f7ff fd2f bl 8003a30 + 80046ee: 210d movs r1, #13 + 80046f0: 202b movs r0, #43 ; 0x2b + 80046f2: f7ff fd2f bl 8004154 //gamma LCD_WriteReg(0x0030,0x0007); - 8003fd2: 2107 movs r1, #7 - 8003fd4: 2030 movs r0, #48 ; 0x30 - 8003fd6: f7ff fd2b bl 8003a30 + 80046f6: 2107 movs r1, #7 + 80046f8: 2030 movs r0, #48 ; 0x30 + 80046fa: f7ff fd2b bl 8004154 LCD_WriteReg(0x0031,0x0303); - 8003fda: f240 3103 movw r1, #771 ; 0x303 - 8003fde: 2031 movs r0, #49 ; 0x31 - 8003fe0: f7ff fd26 bl 8003a30 + 80046fe: f240 3103 movw r1, #771 ; 0x303 + 8004702: 2031 movs r0, #49 ; 0x31 + 8004704: f7ff fd26 bl 8004154 LCD_WriteReg(0x0032,0x0003);// 0006 - 8003fe4: 2103 movs r1, #3 - 8003fe6: 2032 movs r0, #50 ; 0x32 - 8003fe8: f7ff fd22 bl 8003a30 + 8004708: 2103 movs r1, #3 + 800470a: 2032 movs r0, #50 ; 0x32 + 800470c: f7ff fd22 bl 8004154 LCD_WriteReg(0x0035,0x0206); - 8003fec: f240 2106 movw r1, #518 ; 0x206 - 8003ff0: 2035 movs r0, #53 ; 0x35 - 8003ff2: f7ff fd1d bl 8003a30 + 8004710: f240 2106 movw r1, #518 ; 0x206 + 8004714: 2035 movs r0, #53 ; 0x35 + 8004716: f7ff fd1d bl 8004154 LCD_WriteReg(0x0036,0x0008); - 8003ff6: 2108 movs r1, #8 - 8003ff8: 2036 movs r0, #54 ; 0x36 - 8003ffa: f7ff fd19 bl 8003a30 + 800471a: 2108 movs r1, #8 + 800471c: 2036 movs r0, #54 ; 0x36 + 800471e: f7ff fd19 bl 8004154 LCD_WriteReg(0x0037,0x0406); - 8003ffe: f240 4106 movw r1, #1030 ; 0x406 - 8004002: 2037 movs r0, #55 ; 0x37 - 8004004: f7ff fd14 bl 8003a30 + 8004722: f240 4106 movw r1, #1030 ; 0x406 + 8004726: 2037 movs r0, #55 ; 0x37 + 8004728: f7ff fd14 bl 8004154 LCD_WriteReg(0x0038,0x0304);//0200 - 8004008: f44f 7141 mov.w r1, #772 ; 0x304 - 800400c: 2038 movs r0, #56 ; 0x38 - 800400e: f7ff fd0f bl 8003a30 + 800472c: f44f 7141 mov.w r1, #772 ; 0x304 + 8004730: 2038 movs r0, #56 ; 0x38 + 8004732: f7ff fd0f bl 8004154 LCD_WriteReg(0x0039,0x0007); - 8004012: 2107 movs r1, #7 - 8004014: 2039 movs r0, #57 ; 0x39 - 8004016: f7ff fd0b bl 8003a30 + 8004736: 2107 movs r1, #7 + 8004738: 2039 movs r0, #57 ; 0x39 + 800473a: f7ff fd0b bl 8004154 LCD_WriteReg(0x003C,0x0602);// 0504 - 800401a: f240 6102 movw r1, #1538 ; 0x602 - 800401e: 203c movs r0, #60 ; 0x3c - 8004020: f7ff fd06 bl 8003a30 + 800473e: f240 6102 movw r1, #1538 ; 0x602 + 8004742: 203c movs r0, #60 ; 0x3c + 8004744: f7ff fd06 bl 8004154 LCD_WriteReg(0x003D,0x0008); - 8004024: 2108 movs r1, #8 - 8004026: 203d movs r0, #61 ; 0x3d - 8004028: f7ff fd02 bl 8003a30 + 8004748: 2108 movs r1, #8 + 800474a: 203d movs r0, #61 ; 0x3d + 800474c: f7ff fd02 bl 8004154 //ram LCD_WriteReg(0x0050,0x0000); - 800402c: 2100 movs r1, #0 - 800402e: 2050 movs r0, #80 ; 0x50 - 8004030: f7ff fcfe bl 8003a30 + 8004750: 2100 movs r1, #0 + 8004752: 2050 movs r0, #80 ; 0x50 + 8004754: f7ff fcfe bl 8004154 LCD_WriteReg(0x0051,0x00EF); - 8004034: 21ef movs r1, #239 ; 0xef - 8004036: 2051 movs r0, #81 ; 0x51 - 8004038: f7ff fcfa bl 8003a30 + 8004758: 21ef movs r1, #239 ; 0xef + 800475a: 2051 movs r0, #81 ; 0x51 + 800475c: f7ff fcfa bl 8004154 LCD_WriteReg(0x0052,0x0000); - 800403c: 2100 movs r1, #0 - 800403e: 2052 movs r0, #82 ; 0x52 - 8004040: f7ff fcf6 bl 8003a30 + 8004760: 2100 movs r1, #0 + 8004762: 2052 movs r0, #82 ; 0x52 + 8004764: f7ff fcf6 bl 8004154 LCD_WriteReg(0x0053,0x013F); - 8004044: f240 113f movw r1, #319 ; 0x13f - 8004048: 2053 movs r0, #83 ; 0x53 - 800404a: f7ff fcf1 bl 8003a30 + 8004768: f240 113f movw r1, #319 ; 0x13f + 800476c: 2053 movs r0, #83 ; 0x53 + 800476e: f7ff fcf1 bl 8004154 LCD_WriteReg(0x0060,0xA700); - 800404e: f44f 4127 mov.w r1, #42752 ; 0xa700 - 8004052: 2060 movs r0, #96 ; 0x60 - 8004054: f7ff fcec bl 8003a30 + 8004772: f44f 4127 mov.w r1, #42752 ; 0xa700 + 8004776: 2060 movs r0, #96 ; 0x60 + 8004778: f7ff fcec bl 8004154 LCD_WriteReg(0x0061,0x0001); - 8004058: 2101 movs r1, #1 - 800405a: 2061 movs r0, #97 ; 0x61 - 800405c: f7ff fce8 bl 8003a30 + 800477c: 2101 movs r1, #1 + 800477e: 2061 movs r0, #97 ; 0x61 + 8004780: f7ff fce8 bl 8004154 LCD_WriteReg(0x006A,0x0000); - 8004060: 2100 movs r1, #0 - 8004062: 206a movs r0, #106 ; 0x6a - 8004064: f7ff fce4 bl 8003a30 + 8004784: 2100 movs r1, #0 + 8004786: 206a movs r0, #106 ; 0x6a + 8004788: f7ff fce4 bl 8004154 // LCD_WriteReg(0x0080,0x0000); - 8004068: 2100 movs r1, #0 - 800406a: 2080 movs r0, #128 ; 0x80 - 800406c: f7ff fce0 bl 8003a30 + 800478c: 2100 movs r1, #0 + 800478e: 2080 movs r0, #128 ; 0x80 + 8004790: f7ff fce0 bl 8004154 LCD_WriteReg(0x0081,0x0000); - 8004070: 2100 movs r1, #0 - 8004072: 2081 movs r0, #129 ; 0x81 - 8004074: f7ff fcdc bl 8003a30 + 8004794: 2100 movs r1, #0 + 8004796: 2081 movs r0, #129 ; 0x81 + 8004798: f7ff fcdc bl 8004154 LCD_WriteReg(0x0082,0x0000); - 8004078: 2100 movs r1, #0 - 800407a: 2082 movs r0, #130 ; 0x82 - 800407c: f7ff fcd8 bl 8003a30 + 800479c: 2100 movs r1, #0 + 800479e: 2082 movs r0, #130 ; 0x82 + 80047a0: f7ff fcd8 bl 8004154 LCD_WriteReg(0x0083,0x0000); - 8004080: 2100 movs r1, #0 - 8004082: 2083 movs r0, #131 ; 0x83 - 8004084: f7ff fcd4 bl 8003a30 + 80047a4: 2100 movs r1, #0 + 80047a6: 2083 movs r0, #131 ; 0x83 + 80047a8: f7ff fcd4 bl 8004154 LCD_WriteReg(0x0084,0x0000); - 8004088: 2100 movs r1, #0 - 800408a: 2084 movs r0, #132 ; 0x84 - 800408c: f7ff fcd0 bl 8003a30 + 80047ac: 2100 movs r1, #0 + 80047ae: 2084 movs r0, #132 ; 0x84 + 80047b0: f7ff fcd0 bl 8004154 LCD_WriteReg(0x0085,0x0000); - 8004090: 2100 movs r1, #0 - 8004092: 2085 movs r0, #133 ; 0x85 - 8004094: f7ff fccc bl 8003a30 + 80047b4: 2100 movs r1, #0 + 80047b6: 2085 movs r0, #133 ; 0x85 + 80047b8: f7ff fccc bl 8004154 // LCD_WriteReg(0x0090,0x0010); - 8004098: 2110 movs r1, #16 - 800409a: 2090 movs r0, #144 ; 0x90 - 800409c: f7ff fcc8 bl 8003a30 + 80047bc: 2110 movs r1, #16 + 80047be: 2090 movs r0, #144 ; 0x90 + 80047c0: f7ff fcc8 bl 8004154 LCD_WriteReg(0x0092,0x0600); - 80040a0: f44f 61c0 mov.w r1, #1536 ; 0x600 - 80040a4: 2092 movs r0, #146 ; 0x92 - 80040a6: f7ff fcc3 bl 8003a30 + 80047c4: f44f 61c0 mov.w r1, #1536 ; 0x600 + 80047c8: 2092 movs r0, #146 ; 0x92 + 80047ca: f7ff fcc3 bl 8004154 LCD_WriteReg(0x0007,0x0133); - 80040aa: f240 1133 movw r1, #307 ; 0x133 - 80040ae: 2007 movs r0, #7 - 80040b0: f7ff fcbe bl 8003a30 + 80047ce: f240 1133 movw r1, #307 ; 0x133 + 80047d2: 2007 movs r0, #7 + 80047d4: f7ff fcbe bl 8004154 LCD_WriteReg(0x00,0x0022);// - 80040b4: 2122 movs r1, #34 ; 0x22 - 80040b6: 2000 movs r0, #0 - 80040b8: f7ff fcba bl 8003a30 + 80047d8: 2122 movs r1, #34 ; 0x22 + 80047da: 2000 movs r0, #0 + 80047dc: f7ff fcba bl 8004154 LCD_Display_Dir(1); //默认为h屏 - 80040bc: 2001 movs r0, #1 - 80040be: f7ff fe4f bl 8003d60 + 80047e0: 2001 movs r0, #1 + 80047e2: f7ff fe4f bl 8004484 LCD_BL(0); - 80040c2: 2200 movs r2, #0 - 80040c4: 2101 movs r1, #1 - 80040c6: 4803 ldr r0, [pc, #12] ; (80040d4 ) - 80040c8: f7fd ff51 bl 8001f6e + 80047e6: 2200 movs r2, #0 + 80047e8: 2101 movs r1, #1 + 80047ea: 4803 ldr r0, [pc, #12] ; (80047f8 ) + 80047ec: f7fd fc51 bl 8002092 } - 80040cc: bf00 nop - 80040ce: bd80 pop {r7, pc} - 80040d0: 200002b8 .word 0x200002b8 - 80040d4: 40010c00 .word 0x40010c00 + 80047f0: bf00 nop + 80047f2: bd80 pop {r7, pc} + 80047f4: 20000300 .word 0x20000300 + 80047f8: 40010c00 .word 0x40010c00 -080040d8 : +080047fc : //***********************************************************打点 读点 什么的 //设置光标位置 //Xpos:横坐标 //Ypos:纵坐标 void LCD_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 80040d8: b580 push {r7, lr} - 80040da: b082 sub sp, #8 - 80040dc: af00 add r7, sp, #0 - 80040de: 4603 mov r3, r0 - 80040e0: 460a mov r2, r1 - 80040e2: 80fb strh r3, [r7, #6] - 80040e4: 4613 mov r3, r2 - 80040e6: 80bb strh r3, [r7, #4] + 80047fc: b580 push {r7, lr} + 80047fe: b082 sub sp, #8 + 8004800: af00 add r7, sp, #0 + 8004802: 4603 mov r3, r0 + 8004804: 460a mov r2, r1 + 8004806: 80fb strh r3, [r7, #6] + 8004808: 4613 mov r3, r2 + 800480a: 80bb strh r3, [r7, #4] if(lcddev.id==0X9341||lcddev.id==0X5310) - 80040e8: 4b42 ldr r3, [pc, #264] ; (80041f4 ) - 80040ea: 889b ldrh r3, [r3, #4] - 80040ec: f249 3241 movw r2, #37697 ; 0x9341 - 80040f0: 4293 cmp r3, r2 - 80040f2: d005 beq.n 8004100 - 80040f4: 4b3f ldr r3, [pc, #252] ; (80041f4 ) - 80040f6: 889b ldrh r3, [r3, #4] - 80040f8: f245 3210 movw r2, #21264 ; 0x5310 - 80040fc: 4293 cmp r3, r2 - 80040fe: d124 bne.n 800414a + 800480c: 4b42 ldr r3, [pc, #264] ; (8004918 ) + 800480e: 889b ldrh r3, [r3, #4] + 8004810: f249 3241 movw r2, #37697 ; 0x9341 + 8004814: 4293 cmp r3, r2 + 8004816: d005 beq.n 8004824 + 8004818: 4b3f ldr r3, [pc, #252] ; (8004918 ) + 800481a: 889b ldrh r3, [r3, #4] + 800481c: f245 3210 movw r2, #21264 ; 0x5310 + 8004820: 4293 cmp r3, r2 + 8004822: d124 bne.n 800486e { LCD_WR_REG(lcddev.setxcmd); - 8004100: 4b3c ldr r3, [pc, #240] ; (80041f4 ) - 8004102: 7a1b ldrb r3, [r3, #8] - 8004104: b29b uxth r3, r3 - 8004106: 4618 mov r0, r3 - 8004108: f7ff fc74 bl 80039f4 + 8004824: 4b3c ldr r3, [pc, #240] ; (8004918 ) + 8004826: 7a1b ldrb r3, [r3, #8] + 8004828: b29b uxth r3, r3 + 800482a: 4618 mov r0, r3 + 800482c: f7ff fc74 bl 8004118 LCD_WR_DATA(Xpos>>8); - 800410c: 88fb ldrh r3, [r7, #6] - 800410e: 0a1b lsrs r3, r3, #8 - 8004110: b29b uxth r3, r3 - 8004112: 4618 mov r0, r3 - 8004114: f7ff fc7c bl 8003a10 + 8004830: 88fb ldrh r3, [r7, #6] + 8004832: 0a1b lsrs r3, r3, #8 + 8004834: b29b uxth r3, r3 + 8004836: 4618 mov r0, r3 + 8004838: f7ff fc7c bl 8004134 LCD_WR_DATA(Xpos&0XFF); - 8004118: 88fb ldrh r3, [r7, #6] - 800411a: b2db uxtb r3, r3 - 800411c: b29b uxth r3, r3 - 800411e: 4618 mov r0, r3 - 8004120: f7ff fc76 bl 8003a10 + 800483c: 88fb ldrh r3, [r7, #6] + 800483e: b2db uxtb r3, r3 + 8004840: b29b uxth r3, r3 + 8004842: 4618 mov r0, r3 + 8004844: f7ff fc76 bl 8004134 LCD_WR_REG(lcddev.setycmd); - 8004124: 4b33 ldr r3, [pc, #204] ; (80041f4 ) - 8004126: 7a5b ldrb r3, [r3, #9] - 8004128: b29b uxth r3, r3 - 800412a: 4618 mov r0, r3 - 800412c: f7ff fc62 bl 80039f4 + 8004848: 4b33 ldr r3, [pc, #204] ; (8004918 ) + 800484a: 7a5b ldrb r3, [r3, #9] + 800484c: b29b uxth r3, r3 + 800484e: 4618 mov r0, r3 + 8004850: f7ff fc62 bl 8004118 LCD_WR_DATA(Ypos>>8); - 8004130: 88bb ldrh r3, [r7, #4] - 8004132: 0a1b lsrs r3, r3, #8 - 8004134: b29b uxth r3, r3 - 8004136: 4618 mov r0, r3 - 8004138: f7ff fc6a bl 8003a10 + 8004854: 88bb ldrh r3, [r7, #4] + 8004856: 0a1b lsrs r3, r3, #8 + 8004858: b29b uxth r3, r3 + 800485a: 4618 mov r0, r3 + 800485c: f7ff fc6a bl 8004134 LCD_WR_DATA(Ypos&0XFF); - 800413c: 88bb ldrh r3, [r7, #4] - 800413e: b2db uxtb r3, r3 - 8004140: b29b uxth r3, r3 - 8004142: 4618 mov r0, r3 - 8004144: f7ff fc64 bl 8003a10 + 8004860: 88bb ldrh r3, [r7, #4] + 8004862: b2db uxtb r3, r3 + 8004864: b29b uxth r3, r3 + 8004866: 4618 mov r0, r3 + 8004868: f7ff fc64 bl 8004134 { if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 LCD_WriteReg(lcddev.setxcmd, Xpos); LCD_WriteReg(lcddev.setycmd, Ypos); } } - 8004148: e050 b.n 80041ec + 800486c: e050 b.n 8004910 }else if(lcddev.id==0X6804) - 800414a: 4b2a ldr r3, [pc, #168] ; (80041f4 ) - 800414c: 889b ldrh r3, [r3, #4] - 800414e: f646 0204 movw r2, #26628 ; 0x6804 - 8004152: 4293 cmp r3, r2 - 8004154: d12f bne.n 80041b6 + 800486e: 4b2a ldr r3, [pc, #168] ; (8004918 ) + 8004870: 889b ldrh r3, [r3, #4] + 8004872: f646 0204 movw r2, #26628 ; 0x6804 + 8004876: 4293 cmp r3, r2 + 8004878: d12f bne.n 80048da if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏时处理 - 8004156: 4b27 ldr r3, [pc, #156] ; (80041f4 ) - 8004158: 799b ldrb r3, [r3, #6] - 800415a: 2b01 cmp r3, #1 - 800415c: d106 bne.n 800416c - 800415e: 4b25 ldr r3, [pc, #148] ; (80041f4 ) - 8004160: 881a ldrh r2, [r3, #0] - 8004162: 88fb ldrh r3, [r7, #6] - 8004164: 1ad3 subs r3, r2, r3 - 8004166: b29b uxth r3, r3 - 8004168: 3b01 subs r3, #1 - 800416a: 80fb strh r3, [r7, #6] + 800487a: 4b27 ldr r3, [pc, #156] ; (8004918 ) + 800487c: 799b ldrb r3, [r3, #6] + 800487e: 2b01 cmp r3, #1 + 8004880: d106 bne.n 8004890 + 8004882: 4b25 ldr r3, [pc, #148] ; (8004918 ) + 8004884: 881a ldrh r2, [r3, #0] + 8004886: 88fb ldrh r3, [r7, #6] + 8004888: 1ad3 subs r3, r2, r3 + 800488a: b29b uxth r3, r3 + 800488c: 3b01 subs r3, #1 + 800488e: 80fb strh r3, [r7, #6] LCD_WR_REG(lcddev.setxcmd); - 800416c: 4b21 ldr r3, [pc, #132] ; (80041f4 ) - 800416e: 7a1b ldrb r3, [r3, #8] - 8004170: b29b uxth r3, r3 - 8004172: 4618 mov r0, r3 - 8004174: f7ff fc3e bl 80039f4 + 8004890: 4b21 ldr r3, [pc, #132] ; (8004918 ) + 8004892: 7a1b ldrb r3, [r3, #8] + 8004894: b29b uxth r3, r3 + 8004896: 4618 mov r0, r3 + 8004898: f7ff fc3e bl 8004118 LCD_WR_DATA(Xpos>>8); - 8004178: 88fb ldrh r3, [r7, #6] - 800417a: 0a1b lsrs r3, r3, #8 - 800417c: b29b uxth r3, r3 - 800417e: 4618 mov r0, r3 - 8004180: f7ff fc46 bl 8003a10 + 800489c: 88fb ldrh r3, [r7, #6] + 800489e: 0a1b lsrs r3, r3, #8 + 80048a0: b29b uxth r3, r3 + 80048a2: 4618 mov r0, r3 + 80048a4: f7ff fc46 bl 8004134 LCD_WR_DATA(Xpos&0XFF); - 8004184: 88fb ldrh r3, [r7, #6] - 8004186: b2db uxtb r3, r3 - 8004188: b29b uxth r3, r3 - 800418a: 4618 mov r0, r3 - 800418c: f7ff fc40 bl 8003a10 + 80048a8: 88fb ldrh r3, [r7, #6] + 80048aa: b2db uxtb r3, r3 + 80048ac: b29b uxth r3, r3 + 80048ae: 4618 mov r0, r3 + 80048b0: f7ff fc40 bl 8004134 LCD_WR_REG(lcddev.setycmd); - 8004190: 4b18 ldr r3, [pc, #96] ; (80041f4 ) - 8004192: 7a5b ldrb r3, [r3, #9] - 8004194: b29b uxth r3, r3 - 8004196: 4618 mov r0, r3 - 8004198: f7ff fc2c bl 80039f4 + 80048b4: 4b18 ldr r3, [pc, #96] ; (8004918 ) + 80048b6: 7a5b ldrb r3, [r3, #9] + 80048b8: b29b uxth r3, r3 + 80048ba: 4618 mov r0, r3 + 80048bc: f7ff fc2c bl 8004118 LCD_WR_DATA(Ypos>>8); - 800419c: 88bb ldrh r3, [r7, #4] - 800419e: 0a1b lsrs r3, r3, #8 - 80041a0: b29b uxth r3, r3 - 80041a2: 4618 mov r0, r3 - 80041a4: f7ff fc34 bl 8003a10 + 80048c0: 88bb ldrh r3, [r7, #4] + 80048c2: 0a1b lsrs r3, r3, #8 + 80048c4: b29b uxth r3, r3 + 80048c6: 4618 mov r0, r3 + 80048c8: f7ff fc34 bl 8004134 LCD_WR_DATA(Ypos&0XFF); - 80041a8: 88bb ldrh r3, [r7, #4] - 80041aa: b2db uxtb r3, r3 - 80041ac: b29b uxth r3, r3 - 80041ae: 4618 mov r0, r3 - 80041b0: f7ff fc2e bl 8003a10 + 80048cc: 88bb ldrh r3, [r7, #4] + 80048ce: b2db uxtb r3, r3 + 80048d0: b29b uxth r3, r3 + 80048d2: 4618 mov r0, r3 + 80048d4: f7ff fc2e bl 8004134 } - 80041b4: e01a b.n 80041ec + 80048d8: e01a b.n 8004910 if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 - 80041b6: 4b0f ldr r3, [pc, #60] ; (80041f4 ) - 80041b8: 799b ldrb r3, [r3, #6] - 80041ba: 2b01 cmp r3, #1 - 80041bc: d106 bne.n 80041cc - 80041be: 4b0d ldr r3, [pc, #52] ; (80041f4 ) - 80041c0: 881a ldrh r2, [r3, #0] - 80041c2: 88fb ldrh r3, [r7, #6] - 80041c4: 1ad3 subs r3, r2, r3 - 80041c6: b29b uxth r3, r3 - 80041c8: 3b01 subs r3, #1 - 80041ca: 80fb strh r3, [r7, #6] + 80048da: 4b0f ldr r3, [pc, #60] ; (8004918 ) + 80048dc: 799b ldrb r3, [r3, #6] + 80048de: 2b01 cmp r3, #1 + 80048e0: d106 bne.n 80048f0 + 80048e2: 4b0d ldr r3, [pc, #52] ; (8004918 ) + 80048e4: 881a ldrh r2, [r3, #0] + 80048e6: 88fb ldrh r3, [r7, #6] + 80048e8: 1ad3 subs r3, r2, r3 + 80048ea: b29b uxth r3, r3 + 80048ec: 3b01 subs r3, #1 + 80048ee: 80fb strh r3, [r7, #6] LCD_WriteReg(lcddev.setxcmd, Xpos); - 80041cc: 4b09 ldr r3, [pc, #36] ; (80041f4 ) - 80041ce: 7a1b ldrb r3, [r3, #8] - 80041d0: b29b uxth r3, r3 - 80041d2: 88fa ldrh r2, [r7, #6] - 80041d4: 4611 mov r1, r2 - 80041d6: 4618 mov r0, r3 - 80041d8: f7ff fc2a bl 8003a30 + 80048f0: 4b09 ldr r3, [pc, #36] ; (8004918 ) + 80048f2: 7a1b ldrb r3, [r3, #8] + 80048f4: b29b uxth r3, r3 + 80048f6: 88fa ldrh r2, [r7, #6] + 80048f8: 4611 mov r1, r2 + 80048fa: 4618 mov r0, r3 + 80048fc: f7ff fc2a bl 8004154 LCD_WriteReg(lcddev.setycmd, Ypos); - 80041dc: 4b05 ldr r3, [pc, #20] ; (80041f4 ) - 80041de: 7a5b ldrb r3, [r3, #9] - 80041e0: b29b uxth r3, r3 - 80041e2: 88ba ldrh r2, [r7, #4] - 80041e4: 4611 mov r1, r2 - 80041e6: 4618 mov r0, r3 - 80041e8: f7ff fc22 bl 8003a30 + 8004900: 4b05 ldr r3, [pc, #20] ; (8004918 ) + 8004902: 7a5b ldrb r3, [r3, #9] + 8004904: b29b uxth r3, r3 + 8004906: 88ba ldrh r2, [r7, #4] + 8004908: 4611 mov r1, r2 + 800490a: 4618 mov r0, r3 + 800490c: f7ff fc22 bl 8004154 } - 80041ec: bf00 nop - 80041ee: 3708 adds r7, #8 - 80041f0: 46bd mov sp, r7 - 80041f2: bd80 pop {r7, pc} - 80041f4: 200002b8 .word 0x200002b8 + 8004910: bf00 nop + 8004912: 3708 adds r7, #8 + 8004914: 46bd mov sp, r7 + 8004916: bd80 pop {r7, pc} + 8004918: 20000300 .word 0x20000300 -080041f8 : +0800491c : } //画点 //x,y:坐标 //POINT_COLOR:此点的颜色 void LCD_set_dot(uint16_t x,uint16_t y,uint16_t color) { - 80041f8: b580 push {r7, lr} - 80041fa: b082 sub sp, #8 - 80041fc: af00 add r7, sp, #0 - 80041fe: 4603 mov r3, r0 - 8004200: 80fb strh r3, [r7, #6] - 8004202: 460b mov r3, r1 - 8004204: 80bb strh r3, [r7, #4] - 8004206: 4613 mov r3, r2 - 8004208: 807b strh r3, [r7, #2] + 800491c: b580 push {r7, lr} + 800491e: b082 sub sp, #8 + 8004920: af00 add r7, sp, #0 + 8004922: 4603 mov r3, r0 + 8004924: 80fb strh r3, [r7, #6] + 8004926: 460b mov r3, r1 + 8004928: 80bb strh r3, [r7, #4] + 800492a: 4613 mov r3, r2 + 800492c: 807b strh r3, [r7, #2] LCD_SetCursor(x,y); //设置光标位置 - 800420a: 88ba ldrh r2, [r7, #4] - 800420c: 88fb ldrh r3, [r7, #6] - 800420e: 4611 mov r1, r2 - 8004210: 4618 mov r0, r3 - 8004212: f7ff ff61 bl 80040d8 + 800492e: 88ba ldrh r2, [r7, #4] + 8004930: 88fb ldrh r3, [r7, #6] + 8004932: 4611 mov r1, r2 + 8004934: 4618 mov r0, r3 + 8004936: f7ff ff61 bl 80047fc LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 8004216: 4b06 ldr r3, [pc, #24] ; (8004230 ) - 8004218: 79da ldrb r2, [r3, #7] - 800421a: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 800421e: b292 uxth r2, r2 - 8004220: 801a strh r2, [r3, #0] + 800493a: 4b06 ldr r3, [pc, #24] ; (8004954 ) + 800493c: 79da ldrb r2, [r3, #7] + 800493e: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 8004942: b292 uxth r2, r2 + 8004944: 801a strh r2, [r3, #0] LCD_DATA_ADDRESS=color; - 8004222: 4a04 ldr r2, [pc, #16] ; (8004234 ) - 8004224: 887b ldrh r3, [r7, #2] - 8004226: 8013 strh r3, [r2, #0] + 8004946: 4a04 ldr r2, [pc, #16] ; (8004958 ) + 8004948: 887b ldrh r3, [r7, #2] + 800494a: 8013 strh r3, [r2, #0] } - 8004228: bf00 nop - 800422a: 3708 adds r7, #8 - 800422c: 46bd mov sp, r7 - 800422e: bd80 pop {r7, pc} - 8004230: 200002b8 .word 0x200002b8 - 8004234: 6c000800 .word 0x6c000800 + 800494c: bf00 nop + 800494e: 3708 adds r7, #8 + 8004950: 46bd mov sp, r7 + 8004952: bd80 pop {r7, pc} + 8004954: 20000300 .word 0x20000300 + 8004958: 6c000800 .word 0x6c000800 -08004238 : +0800495c : //清屏函数 //color:要清屏的填充色 void LCD_Clear(uint16_t color) { - 8004238: b580 push {r7, lr} - 800423a: b084 sub sp, #16 - 800423c: af00 add r7, sp, #0 - 800423e: 4603 mov r3, r0 - 8004240: 80fb strh r3, [r7, #6] + 800495c: b580 push {r7, lr} + 800495e: b084 sub sp, #16 + 8004960: af00 add r7, sp, #0 + 8004962: 4603 mov r3, r0 + 8004964: 80fb strh r3, [r7, #6] uint32_t index=0; - 8004242: 2300 movs r3, #0 - 8004244: 60fb str r3, [r7, #12] + 8004966: 2300 movs r3, #0 + 8004968: 60fb str r3, [r7, #12] uint32_t totalpoint=lcddev.width; - 8004246: 4b23 ldr r3, [pc, #140] ; (80042d4 ) - 8004248: 881b ldrh r3, [r3, #0] - 800424a: 60bb str r3, [r7, #8] + 800496a: 4b23 ldr r3, [pc, #140] ; (80049f8 ) + 800496c: 881b ldrh r3, [r3, #0] + 800496e: 60bb str r3, [r7, #8] totalpoint*=lcddev.height; //得到总点数 - 800424c: 4b21 ldr r3, [pc, #132] ; (80042d4 ) - 800424e: 885b ldrh r3, [r3, #2] - 8004250: 461a mov r2, r3 - 8004252: 68bb ldr r3, [r7, #8] - 8004254: fb02 f303 mul.w r3, r2, r3 - 8004258: 60bb str r3, [r7, #8] + 8004970: 4b21 ldr r3, [pc, #132] ; (80049f8 ) + 8004972: 885b ldrh r3, [r3, #2] + 8004974: 461a mov r2, r3 + 8004976: 68bb ldr r3, [r7, #8] + 8004978: fb02 f303 mul.w r3, r2, r3 + 800497c: 60bb str r3, [r7, #8] if((lcddev.id==0X6804)&&(lcddev.dir==1))//6804横屏的时候特殊处理 - 800425a: 4b1e ldr r3, [pc, #120] ; (80042d4 ) - 800425c: 889b ldrh r3, [r3, #4] - 800425e: f646 0204 movw r2, #26628 ; 0x6804 - 8004262: 4293 cmp r3, r2 - 8004264: d11a bne.n 800429c - 8004266: 4b1b ldr r3, [pc, #108] ; (80042d4 ) - 8004268: 799b ldrb r3, [r3, #6] - 800426a: 2b01 cmp r3, #1 - 800426c: d116 bne.n 800429c + 800497e: 4b1e ldr r3, [pc, #120] ; (80049f8 ) + 8004980: 889b ldrh r3, [r3, #4] + 8004982: f646 0204 movw r2, #26628 ; 0x6804 + 8004986: 4293 cmp r3, r2 + 8004988: d11a bne.n 80049c0 + 800498a: 4b1b ldr r3, [pc, #108] ; (80049f8 ) + 800498c: 799b ldrb r3, [r3, #6] + 800498e: 2b01 cmp r3, #1 + 8004990: d116 bne.n 80049c0 { lcddev.dir=0; - 800426e: 4b19 ldr r3, [pc, #100] ; (80042d4 ) - 8004270: 2200 movs r2, #0 - 8004272: 719a strb r2, [r3, #6] + 8004992: 4b19 ldr r3, [pc, #100] ; (80049f8 ) + 8004994: 2200 movs r2, #0 + 8004996: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2A; - 8004274: 4b17 ldr r3, [pc, #92] ; (80042d4 ) - 8004276: 222a movs r2, #42 ; 0x2a - 8004278: 721a strb r2, [r3, #8] + 8004998: 4b17 ldr r3, [pc, #92] ; (80049f8 ) + 800499a: 222a movs r2, #42 ; 0x2a + 800499c: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 800427a: 4b16 ldr r3, [pc, #88] ; (80042d4 ) - 800427c: 222b movs r2, #43 ; 0x2b - 800427e: 725a strb r2, [r3, #9] + 800499e: 4b16 ldr r3, [pc, #88] ; (80049f8 ) + 80049a0: 222b movs r2, #43 ; 0x2b + 80049a2: 725a strb r2, [r3, #9] LCD_SetCursor(0x00,0x0000); //设置光标位置 - 8004280: 2100 movs r1, #0 - 8004282: 2000 movs r0, #0 - 8004284: f7ff ff28 bl 80040d8 + 80049a4: 2100 movs r1, #0 + 80049a6: 2000 movs r0, #0 + 80049a8: f7ff ff28 bl 80047fc lcddev.dir=1; - 8004288: 4b12 ldr r3, [pc, #72] ; (80042d4 ) - 800428a: 2201 movs r2, #1 - 800428c: 719a strb r2, [r3, #6] + 80049ac: 4b12 ldr r3, [pc, #72] ; (80049f8 ) + 80049ae: 2201 movs r2, #1 + 80049b0: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2B; - 800428e: 4b11 ldr r3, [pc, #68] ; (80042d4 ) - 8004290: 222b movs r2, #43 ; 0x2b - 8004292: 721a strb r2, [r3, #8] + 80049b2: 4b11 ldr r3, [pc, #68] ; (80049f8 ) + 80049b4: 222b movs r2, #43 ; 0x2b + 80049b6: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8004294: 4b0f ldr r3, [pc, #60] ; (80042d4 ) - 8004296: 222a movs r2, #42 ; 0x2a - 8004298: 725a strb r2, [r3, #9] - 800429a: e003 b.n 80042a4 + 80049b8: 4b0f ldr r3, [pc, #60] ; (80049f8 ) + 80049ba: 222a movs r2, #42 ; 0x2a + 80049bc: 725a strb r2, [r3, #9] + 80049be: e003 b.n 80049c8 }else LCD_SetCursor(0x00,0x0000); //设置光标位置 - 800429c: 2100 movs r1, #0 - 800429e: 2000 movs r0, #0 - 80042a0: f7ff ff1a bl 80040d8 + 80049c0: 2100 movs r1, #0 + 80049c2: 2000 movs r0, #0 + 80049c4: f7ff ff1a bl 80047fc LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 80042a4: 4b0b ldr r3, [pc, #44] ; (80042d4 ) - 80042a6: 79da ldrb r2, [r3, #7] - 80042a8: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 80042ac: b292 uxth r2, r2 - 80042ae: 801a strh r2, [r3, #0] + 80049c8: 4b0b ldr r3, [pc, #44] ; (80049f8 ) + 80049ca: 79da ldrb r2, [r3, #7] + 80049cc: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 80049d0: b292 uxth r2, r2 + 80049d2: 801a strh r2, [r3, #0] for(index=0;index + 80049d4: 2300 movs r3, #0 + 80049d6: 60fb str r3, [r7, #12] + 80049d8: e005 b.n 80049e6 { LCD_DATA_ADDRESS=color; - 80042b6: 4a08 ldr r2, [pc, #32] ; (80042d8 ) - 80042b8: 88fb ldrh r3, [r7, #6] - 80042ba: 8013 strh r3, [r2, #0] + 80049da: 4a08 ldr r2, [pc, #32] ; (80049fc ) + 80049dc: 88fb ldrh r3, [r7, #6] + 80049de: 8013 strh r3, [r2, #0] for(index=0;index + 80049e0: 68fb ldr r3, [r7, #12] + 80049e2: 3301 adds r3, #1 + 80049e4: 60fb str r3, [r7, #12] + 80049e6: 68fa ldr r2, [r7, #12] + 80049e8: 68bb ldr r3, [r7, #8] + 80049ea: 429a cmp r2, r3 + 80049ec: d3f5 bcc.n 80049da } } - 80042ca: bf00 nop - 80042cc: bf00 nop - 80042ce: 3710 adds r7, #16 - 80042d0: 46bd mov sp, r7 - 80042d2: bd80 pop {r7, pc} - 80042d4: 200002b8 .word 0x200002b8 - 80042d8: 6c000800 .word 0x6c000800 + 80049ee: bf00 nop + 80049f0: bf00 nop + 80049f2: 3710 adds r7, #16 + 80049f4: 46bd mov sp, r7 + 80049f6: bd80 pop {r7, pc} + 80049f8: 20000300 .word 0x20000300 + 80049fc: 6c000800 .word 0x6c000800 -080042dc : +08004a00 : //***********************************2D //画线 //x1,y1:起点坐标 //x2,y2:终点坐标 void LCD_DrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2,uint16_t color) { - 80042dc: b590 push {r4, r7, lr} - 80042de: b08d sub sp, #52 ; 0x34 - 80042e0: af00 add r7, sp, #0 - 80042e2: 4604 mov r4, r0 - 80042e4: 4608 mov r0, r1 - 80042e6: 4611 mov r1, r2 - 80042e8: 461a mov r2, r3 - 80042ea: 4623 mov r3, r4 - 80042ec: 80fb strh r3, [r7, #6] - 80042ee: 4603 mov r3, r0 - 80042f0: 80bb strh r3, [r7, #4] - 80042f2: 460b mov r3, r1 - 80042f4: 807b strh r3, [r7, #2] - 80042f6: 4613 mov r3, r2 - 80042f8: 803b strh r3, [r7, #0] + 8004a00: b590 push {r4, r7, lr} + 8004a02: b08d sub sp, #52 ; 0x34 + 8004a04: af00 add r7, sp, #0 + 8004a06: 4604 mov r4, r0 + 8004a08: 4608 mov r0, r1 + 8004a0a: 4611 mov r1, r2 + 8004a0c: 461a mov r2, r3 + 8004a0e: 4623 mov r3, r4 + 8004a10: 80fb strh r3, [r7, #6] + 8004a12: 4603 mov r3, r0 + 8004a14: 80bb strh r3, [r7, #4] + 8004a16: 460b mov r3, r1 + 8004a18: 807b strh r3, [r7, #2] + 8004a1a: 4613 mov r3, r2 + 8004a1c: 803b strh r3, [r7, #0] uint16_t t; int xerr=0,yerr=0,delta_x,delta_y,distance; - 80042fa: 2300 movs r3, #0 - 80042fc: 62bb str r3, [r7, #40] ; 0x28 - 80042fe: 2300 movs r3, #0 - 8004300: 627b str r3, [r7, #36] ; 0x24 + 8004a1e: 2300 movs r3, #0 + 8004a20: 62bb str r3, [r7, #40] ; 0x28 + 8004a22: 2300 movs r3, #0 + 8004a24: 627b str r3, [r7, #36] ; 0x24 int incx,incy,uRow,uCol; delta_x=x2-x1; //计算坐标增量 - 8004302: 887a ldrh r2, [r7, #2] - 8004304: 88fb ldrh r3, [r7, #6] - 8004306: 1ad3 subs r3, r2, r3 - 8004308: 623b str r3, [r7, #32] + 8004a26: 887a ldrh r2, [r7, #2] + 8004a28: 88fb ldrh r3, [r7, #6] + 8004a2a: 1ad3 subs r3, r2, r3 + 8004a2c: 623b str r3, [r7, #32] delta_y=y2-y1; - 800430a: 883a ldrh r2, [r7, #0] - 800430c: 88bb ldrh r3, [r7, #4] - 800430e: 1ad3 subs r3, r2, r3 - 8004310: 61fb str r3, [r7, #28] + 8004a2e: 883a ldrh r2, [r7, #0] + 8004a30: 88bb ldrh r3, [r7, #4] + 8004a32: 1ad3 subs r3, r2, r3 + 8004a34: 61fb str r3, [r7, #28] uRow=x1; - 8004312: 88fb ldrh r3, [r7, #6] - 8004314: 60fb str r3, [r7, #12] + 8004a36: 88fb ldrh r3, [r7, #6] + 8004a38: 60fb str r3, [r7, #12] uCol=y1; - 8004316: 88bb ldrh r3, [r7, #4] - 8004318: 60bb str r3, [r7, #8] + 8004a3a: 88bb ldrh r3, [r7, #4] + 8004a3c: 60bb str r3, [r7, #8] if(delta_x>0)incx=1; //设置单步方向 - 800431a: 6a3b ldr r3, [r7, #32] - 800431c: 2b00 cmp r3, #0 - 800431e: dd02 ble.n 8004326 - 8004320: 2301 movs r3, #1 - 8004322: 617b str r3, [r7, #20] - 8004324: e00b b.n 800433e + 8004a3e: 6a3b ldr r3, [r7, #32] + 8004a40: 2b00 cmp r3, #0 + 8004a42: dd02 ble.n 8004a4a + 8004a44: 2301 movs r3, #1 + 8004a46: 617b str r3, [r7, #20] + 8004a48: e00b b.n 8004a62 else if(delta_x==0)incx=0;//垂直线 - 8004326: 6a3b ldr r3, [r7, #32] - 8004328: 2b00 cmp r3, #0 - 800432a: d102 bne.n 8004332 - 800432c: 2300 movs r3, #0 - 800432e: 617b str r3, [r7, #20] - 8004330: e005 b.n 800433e + 8004a4a: 6a3b ldr r3, [r7, #32] + 8004a4c: 2b00 cmp r3, #0 + 8004a4e: d102 bne.n 8004a56 + 8004a50: 2300 movs r3, #0 + 8004a52: 617b str r3, [r7, #20] + 8004a54: e005 b.n 8004a62 else {incx=-1;delta_x=-delta_x;} - 8004332: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 8004336: 617b str r3, [r7, #20] - 8004338: 6a3b ldr r3, [r7, #32] - 800433a: 425b negs r3, r3 - 800433c: 623b str r3, [r7, #32] + 8004a56: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8004a5a: 617b str r3, [r7, #20] + 8004a5c: 6a3b ldr r3, [r7, #32] + 8004a5e: 425b negs r3, r3 + 8004a60: 623b str r3, [r7, #32] if(delta_y>0)incy=1; - 800433e: 69fb ldr r3, [r7, #28] - 8004340: 2b00 cmp r3, #0 - 8004342: dd02 ble.n 800434a - 8004344: 2301 movs r3, #1 - 8004346: 613b str r3, [r7, #16] - 8004348: e00b b.n 8004362 + 8004a62: 69fb ldr r3, [r7, #28] + 8004a64: 2b00 cmp r3, #0 + 8004a66: dd02 ble.n 8004a6e + 8004a68: 2301 movs r3, #1 + 8004a6a: 613b str r3, [r7, #16] + 8004a6c: e00b b.n 8004a86 else if(delta_y==0)incy=0;//水平线 - 800434a: 69fb ldr r3, [r7, #28] - 800434c: 2b00 cmp r3, #0 - 800434e: d102 bne.n 8004356 - 8004350: 2300 movs r3, #0 - 8004352: 613b str r3, [r7, #16] - 8004354: e005 b.n 8004362 + 8004a6e: 69fb ldr r3, [r7, #28] + 8004a70: 2b00 cmp r3, #0 + 8004a72: d102 bne.n 8004a7a + 8004a74: 2300 movs r3, #0 + 8004a76: 613b str r3, [r7, #16] + 8004a78: e005 b.n 8004a86 else{incy=-1;delta_y=-delta_y;} - 8004356: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 800435a: 613b str r3, [r7, #16] - 800435c: 69fb ldr r3, [r7, #28] - 800435e: 425b negs r3, r3 - 8004360: 61fb str r3, [r7, #28] + 8004a7a: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8004a7e: 613b str r3, [r7, #16] + 8004a80: 69fb ldr r3, [r7, #28] + 8004a82: 425b negs r3, r3 + 8004a84: 61fb str r3, [r7, #28] if( delta_x>delta_y)distance=delta_x; //选取基本增量坐标轴 - 8004362: 6a3a ldr r2, [r7, #32] - 8004364: 69fb ldr r3, [r7, #28] - 8004366: 429a cmp r2, r3 - 8004368: dd02 ble.n 8004370 - 800436a: 6a3b ldr r3, [r7, #32] - 800436c: 61bb str r3, [r7, #24] - 800436e: e001 b.n 8004374 + 8004a86: 6a3a ldr r2, [r7, #32] + 8004a88: 69fb ldr r3, [r7, #28] + 8004a8a: 429a cmp r2, r3 + 8004a8c: dd02 ble.n 8004a94 + 8004a8e: 6a3b ldr r3, [r7, #32] + 8004a90: 61bb str r3, [r7, #24] + 8004a92: e001 b.n 8004a98 else distance=delta_y; - 8004370: 69fb ldr r3, [r7, #28] - 8004372: 61bb str r3, [r7, #24] + 8004a94: 69fb ldr r3, [r7, #28] + 8004a96: 61bb str r3, [r7, #24] for(t=0;t<=distance+1;t++ )//画线输出 - 8004374: 2300 movs r3, #0 - 8004376: 85fb strh r3, [r7, #46] ; 0x2e - 8004378: e02b b.n 80043d2 + 8004a98: 2300 movs r3, #0 + 8004a9a: 85fb strh r3, [r7, #46] ; 0x2e + 8004a9c: e02b b.n 8004af6 { LCD_set_dot(uRow,uCol,color);//画点 - 800437a: 68fb ldr r3, [r7, #12] - 800437c: b29b uxth r3, r3 - 800437e: 68ba ldr r2, [r7, #8] - 8004380: b291 uxth r1, r2 - 8004382: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 - 8004386: 4618 mov r0, r3 - 8004388: f7ff ff36 bl 80041f8 + 8004a9e: 68fb ldr r3, [r7, #12] + 8004aa0: b29b uxth r3, r3 + 8004aa2: 68ba ldr r2, [r7, #8] + 8004aa4: b291 uxth r1, r2 + 8004aa6: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 + 8004aaa: 4618 mov r0, r3 + 8004aac: f7ff ff36 bl 800491c xerr+=delta_x ; - 800438c: 6aba ldr r2, [r7, #40] ; 0x28 - 800438e: 6a3b ldr r3, [r7, #32] - 8004390: 4413 add r3, r2 - 8004392: 62bb str r3, [r7, #40] ; 0x28 + 8004ab0: 6aba ldr r2, [r7, #40] ; 0x28 + 8004ab2: 6a3b ldr r3, [r7, #32] + 8004ab4: 4413 add r3, r2 + 8004ab6: 62bb str r3, [r7, #40] ; 0x28 yerr+=delta_y ; - 8004394: 6a7a ldr r2, [r7, #36] ; 0x24 - 8004396: 69fb ldr r3, [r7, #28] - 8004398: 4413 add r3, r2 - 800439a: 627b str r3, [r7, #36] ; 0x24 + 8004ab8: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004aba: 69fb ldr r3, [r7, #28] + 8004abc: 4413 add r3, r2 + 8004abe: 627b str r3, [r7, #36] ; 0x24 if(xerr>distance) - 800439c: 6aba ldr r2, [r7, #40] ; 0x28 - 800439e: 69bb ldr r3, [r7, #24] - 80043a0: 429a cmp r2, r3 - 80043a2: dd07 ble.n 80043b4 + 8004ac0: 6aba ldr r2, [r7, #40] ; 0x28 + 8004ac2: 69bb ldr r3, [r7, #24] + 8004ac4: 429a cmp r2, r3 + 8004ac6: dd07 ble.n 8004ad8 { xerr-=distance; - 80043a4: 6aba ldr r2, [r7, #40] ; 0x28 - 80043a6: 69bb ldr r3, [r7, #24] - 80043a8: 1ad3 subs r3, r2, r3 - 80043aa: 62bb str r3, [r7, #40] ; 0x28 + 8004ac8: 6aba ldr r2, [r7, #40] ; 0x28 + 8004aca: 69bb ldr r3, [r7, #24] + 8004acc: 1ad3 subs r3, r2, r3 + 8004ace: 62bb str r3, [r7, #40] ; 0x28 uRow+=incx; - 80043ac: 68fa ldr r2, [r7, #12] - 80043ae: 697b ldr r3, [r7, #20] - 80043b0: 4413 add r3, r2 - 80043b2: 60fb str r3, [r7, #12] + 8004ad0: 68fa ldr r2, [r7, #12] + 8004ad2: 697b ldr r3, [r7, #20] + 8004ad4: 4413 add r3, r2 + 8004ad6: 60fb str r3, [r7, #12] } if(yerr>distance) - 80043b4: 6a7a ldr r2, [r7, #36] ; 0x24 - 80043b6: 69bb ldr r3, [r7, #24] - 80043b8: 429a cmp r2, r3 - 80043ba: dd07 ble.n 80043cc + 8004ad8: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004ada: 69bb ldr r3, [r7, #24] + 8004adc: 429a cmp r2, r3 + 8004ade: dd07 ble.n 8004af0 { yerr-=distance; - 80043bc: 6a7a ldr r2, [r7, #36] ; 0x24 - 80043be: 69bb ldr r3, [r7, #24] - 80043c0: 1ad3 subs r3, r2, r3 - 80043c2: 627b str r3, [r7, #36] ; 0x24 + 8004ae0: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004ae2: 69bb ldr r3, [r7, #24] + 8004ae4: 1ad3 subs r3, r2, r3 + 8004ae6: 627b str r3, [r7, #36] ; 0x24 uCol+=incy; - 80043c4: 68ba ldr r2, [r7, #8] - 80043c6: 693b ldr r3, [r7, #16] - 80043c8: 4413 add r3, r2 - 80043ca: 60bb str r3, [r7, #8] + 8004ae8: 68ba ldr r2, [r7, #8] + 8004aea: 693b ldr r3, [r7, #16] + 8004aec: 4413 add r3, r2 + 8004aee: 60bb str r3, [r7, #8] for(t=0;t<=distance+1;t++ )//画线输出 - 80043cc: 8dfb ldrh r3, [r7, #46] ; 0x2e - 80043ce: 3301 adds r3, #1 - 80043d0: 85fb strh r3, [r7, #46] ; 0x2e - 80043d2: 8dfa ldrh r2, [r7, #46] ; 0x2e - 80043d4: 69bb ldr r3, [r7, #24] - 80043d6: 3301 adds r3, #1 - 80043d8: 429a cmp r2, r3 - 80043da: ddce ble.n 800437a + 8004af0: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8004af2: 3301 adds r3, #1 + 8004af4: 85fb strh r3, [r7, #46] ; 0x2e + 8004af6: 8dfa ldrh r2, [r7, #46] ; 0x2e + 8004af8: 69bb ldr r3, [r7, #24] + 8004afa: 3301 adds r3, #1 + 8004afc: 429a cmp r2, r3 + 8004afe: ddce ble.n 8004a9e } } } - 80043dc: bf00 nop - 80043de: bf00 nop - 80043e0: 3734 adds r7, #52 ; 0x34 - 80043e2: 46bd mov sp, r7 - 80043e4: bd90 pop {r4, r7, pc} + 8004b00: bf00 nop + 8004b02: bf00 nop + 8004b04: 3734 adds r7, #52 ; 0x34 + 8004b06: 46bd mov sp, r7 + 8004b08: bd90 pop {r4, r7, pc} -080043e6 : +08004b0a : //在指定位置画一个指定大小的圆 //(x,y):中心点 //r :半径 void Draw_Circle(uint16_t x0,uint16_t y0,uint16_t r,uint16_t color) { - 80043e6: b590 push {r4, r7, lr} - 80043e8: b087 sub sp, #28 - 80043ea: af00 add r7, sp, #0 - 80043ec: 4604 mov r4, r0 - 80043ee: 4608 mov r0, r1 - 80043f0: 4611 mov r1, r2 - 80043f2: 461a mov r2, r3 - 80043f4: 4623 mov r3, r4 - 80043f6: 80fb strh r3, [r7, #6] - 80043f8: 4603 mov r3, r0 - 80043fa: 80bb strh r3, [r7, #4] - 80043fc: 460b mov r3, r1 - 80043fe: 807b strh r3, [r7, #2] - 8004400: 4613 mov r3, r2 - 8004402: 803b strh r3, [r7, #0] + 8004b0a: b590 push {r4, r7, lr} + 8004b0c: b087 sub sp, #28 + 8004b0e: af00 add r7, sp, #0 + 8004b10: 4604 mov r4, r0 + 8004b12: 4608 mov r0, r1 + 8004b14: 4611 mov r1, r2 + 8004b16: 461a mov r2, r3 + 8004b18: 4623 mov r3, r4 + 8004b1a: 80fb strh r3, [r7, #6] + 8004b1c: 4603 mov r3, r0 + 8004b1e: 80bb strh r3, [r7, #4] + 8004b20: 460b mov r3, r1 + 8004b22: 807b strh r3, [r7, #2] + 8004b24: 4613 mov r3, r2 + 8004b26: 803b strh r3, [r7, #0] int a,b; int di; a=0;b=r; - 8004404: 2300 movs r3, #0 - 8004406: 617b str r3, [r7, #20] - 8004408: 887b ldrh r3, [r7, #2] - 800440a: 613b str r3, [r7, #16] + 8004b28: 2300 movs r3, #0 + 8004b2a: 617b str r3, [r7, #20] + 8004b2c: 887b ldrh r3, [r7, #2] + 8004b2e: 613b str r3, [r7, #16] di=3-(r<<1); //判断下个点位置的标志 - 800440c: 887b ldrh r3, [r7, #2] - 800440e: 005b lsls r3, r3, #1 - 8004410: f1c3 0303 rsb r3, r3, #3 - 8004414: 60fb str r3, [r7, #12] + 8004b30: 887b ldrh r3, [r7, #2] + 8004b32: 005b lsls r3, r3, #1 + 8004b34: f1c3 0303 rsb r3, r3, #3 + 8004b38: 60fb str r3, [r7, #12] while(a<=b) - 8004416: e087 b.n 8004528 + 8004b3a: e087 b.n 8004c4c { LCD_set_dot(x0+a,y0-b,color); //5 - 8004418: 697b ldr r3, [r7, #20] - 800441a: b29a uxth r2, r3 - 800441c: 88fb ldrh r3, [r7, #6] - 800441e: 4413 add r3, r2 - 8004420: b298 uxth r0, r3 - 8004422: 693b ldr r3, [r7, #16] - 8004424: b29b uxth r3, r3 - 8004426: 88ba ldrh r2, [r7, #4] - 8004428: 1ad3 subs r3, r2, r3 - 800442a: b29b uxth r3, r3 - 800442c: 883a ldrh r2, [r7, #0] - 800442e: 4619 mov r1, r3 - 8004430: f7ff fee2 bl 80041f8 + 8004b3c: 697b ldr r3, [r7, #20] + 8004b3e: b29a uxth r2, r3 + 8004b40: 88fb ldrh r3, [r7, #6] + 8004b42: 4413 add r3, r2 + 8004b44: b298 uxth r0, r3 + 8004b46: 693b ldr r3, [r7, #16] + 8004b48: b29b uxth r3, r3 + 8004b4a: 88ba ldrh r2, [r7, #4] + 8004b4c: 1ad3 subs r3, r2, r3 + 8004b4e: b29b uxth r3, r3 + 8004b50: 883a ldrh r2, [r7, #0] + 8004b52: 4619 mov r1, r3 + 8004b54: f7ff fee2 bl 800491c LCD_set_dot(x0+b,y0-a,color); //0 - 8004434: 693b ldr r3, [r7, #16] - 8004436: b29a uxth r2, r3 - 8004438: 88fb ldrh r3, [r7, #6] - 800443a: 4413 add r3, r2 - 800443c: b298 uxth r0, r3 - 800443e: 697b ldr r3, [r7, #20] - 8004440: b29b uxth r3, r3 - 8004442: 88ba ldrh r2, [r7, #4] - 8004444: 1ad3 subs r3, r2, r3 - 8004446: b29b uxth r3, r3 - 8004448: 883a ldrh r2, [r7, #0] - 800444a: 4619 mov r1, r3 - 800444c: f7ff fed4 bl 80041f8 + 8004b58: 693b ldr r3, [r7, #16] + 8004b5a: b29a uxth r2, r3 + 8004b5c: 88fb ldrh r3, [r7, #6] + 8004b5e: 4413 add r3, r2 + 8004b60: b298 uxth r0, r3 + 8004b62: 697b ldr r3, [r7, #20] + 8004b64: b29b uxth r3, r3 + 8004b66: 88ba ldrh r2, [r7, #4] + 8004b68: 1ad3 subs r3, r2, r3 + 8004b6a: b29b uxth r3, r3 + 8004b6c: 883a ldrh r2, [r7, #0] + 8004b6e: 4619 mov r1, r3 + 8004b70: f7ff fed4 bl 800491c LCD_set_dot(x0+b,y0+a,color); //4 - 8004450: 693b ldr r3, [r7, #16] - 8004452: b29a uxth r2, r3 - 8004454: 88fb ldrh r3, [r7, #6] - 8004456: 4413 add r3, r2 - 8004458: b298 uxth r0, r3 - 800445a: 697b ldr r3, [r7, #20] - 800445c: b29a uxth r2, r3 - 800445e: 88bb ldrh r3, [r7, #4] - 8004460: 4413 add r3, r2 - 8004462: b29b uxth r3, r3 - 8004464: 883a ldrh r2, [r7, #0] - 8004466: 4619 mov r1, r3 - 8004468: f7ff fec6 bl 80041f8 + 8004b74: 693b ldr r3, [r7, #16] + 8004b76: b29a uxth r2, r3 + 8004b78: 88fb ldrh r3, [r7, #6] + 8004b7a: 4413 add r3, r2 + 8004b7c: b298 uxth r0, r3 + 8004b7e: 697b ldr r3, [r7, #20] + 8004b80: b29a uxth r2, r3 + 8004b82: 88bb ldrh r3, [r7, #4] + 8004b84: 4413 add r3, r2 + 8004b86: b29b uxth r3, r3 + 8004b88: 883a ldrh r2, [r7, #0] + 8004b8a: 4619 mov r1, r3 + 8004b8c: f7ff fec6 bl 800491c LCD_set_dot(x0+a,y0+b,color); //6 - 800446c: 697b ldr r3, [r7, #20] - 800446e: b29a uxth r2, r3 - 8004470: 88fb ldrh r3, [r7, #6] - 8004472: 4413 add r3, r2 - 8004474: b298 uxth r0, r3 - 8004476: 693b ldr r3, [r7, #16] - 8004478: b29a uxth r2, r3 - 800447a: 88bb ldrh r3, [r7, #4] - 800447c: 4413 add r3, r2 - 800447e: b29b uxth r3, r3 - 8004480: 883a ldrh r2, [r7, #0] - 8004482: 4619 mov r1, r3 - 8004484: f7ff feb8 bl 80041f8 + 8004b90: 697b ldr r3, [r7, #20] + 8004b92: b29a uxth r2, r3 + 8004b94: 88fb ldrh r3, [r7, #6] + 8004b96: 4413 add r3, r2 + 8004b98: b298 uxth r0, r3 + 8004b9a: 693b ldr r3, [r7, #16] + 8004b9c: b29a uxth r2, r3 + 8004b9e: 88bb ldrh r3, [r7, #4] + 8004ba0: 4413 add r3, r2 + 8004ba2: b29b uxth r3, r3 + 8004ba4: 883a ldrh r2, [r7, #0] + 8004ba6: 4619 mov r1, r3 + 8004ba8: f7ff feb8 bl 800491c LCD_set_dot(x0-a,y0+b,color); //1 - 8004488: 697b ldr r3, [r7, #20] - 800448a: b29b uxth r3, r3 - 800448c: 88fa ldrh r2, [r7, #6] - 800448e: 1ad3 subs r3, r2, r3 - 8004490: b298 uxth r0, r3 - 8004492: 693b ldr r3, [r7, #16] - 8004494: b29a uxth r2, r3 - 8004496: 88bb ldrh r3, [r7, #4] - 8004498: 4413 add r3, r2 - 800449a: b29b uxth r3, r3 - 800449c: 883a ldrh r2, [r7, #0] - 800449e: 4619 mov r1, r3 - 80044a0: f7ff feaa bl 80041f8 + 8004bac: 697b ldr r3, [r7, #20] + 8004bae: b29b uxth r3, r3 + 8004bb0: 88fa ldrh r2, [r7, #6] + 8004bb2: 1ad3 subs r3, r2, r3 + 8004bb4: b298 uxth r0, r3 + 8004bb6: 693b ldr r3, [r7, #16] + 8004bb8: b29a uxth r2, r3 + 8004bba: 88bb ldrh r3, [r7, #4] + 8004bbc: 4413 add r3, r2 + 8004bbe: b29b uxth r3, r3 + 8004bc0: 883a ldrh r2, [r7, #0] + 8004bc2: 4619 mov r1, r3 + 8004bc4: f7ff feaa bl 800491c LCD_set_dot(x0-b,y0+a,color); - 80044a4: 693b ldr r3, [r7, #16] - 80044a6: b29b uxth r3, r3 - 80044a8: 88fa ldrh r2, [r7, #6] - 80044aa: 1ad3 subs r3, r2, r3 - 80044ac: b298 uxth r0, r3 - 80044ae: 697b ldr r3, [r7, #20] - 80044b0: b29a uxth r2, r3 - 80044b2: 88bb ldrh r3, [r7, #4] - 80044b4: 4413 add r3, r2 - 80044b6: b29b uxth r3, r3 - 80044b8: 883a ldrh r2, [r7, #0] - 80044ba: 4619 mov r1, r3 - 80044bc: f7ff fe9c bl 80041f8 + 8004bc8: 693b ldr r3, [r7, #16] + 8004bca: b29b uxth r3, r3 + 8004bcc: 88fa ldrh r2, [r7, #6] + 8004bce: 1ad3 subs r3, r2, r3 + 8004bd0: b298 uxth r0, r3 + 8004bd2: 697b ldr r3, [r7, #20] + 8004bd4: b29a uxth r2, r3 + 8004bd6: 88bb ldrh r3, [r7, #4] + 8004bd8: 4413 add r3, r2 + 8004bda: b29b uxth r3, r3 + 8004bdc: 883a ldrh r2, [r7, #0] + 8004bde: 4619 mov r1, r3 + 8004be0: f7ff fe9c bl 800491c LCD_set_dot(x0-a,y0-b,color); //2 - 80044c0: 697b ldr r3, [r7, #20] - 80044c2: b29b uxth r3, r3 - 80044c4: 88fa ldrh r2, [r7, #6] - 80044c6: 1ad3 subs r3, r2, r3 - 80044c8: b298 uxth r0, r3 - 80044ca: 693b ldr r3, [r7, #16] - 80044cc: b29b uxth r3, r3 - 80044ce: 88ba ldrh r2, [r7, #4] - 80044d0: 1ad3 subs r3, r2, r3 - 80044d2: b29b uxth r3, r3 - 80044d4: 883a ldrh r2, [r7, #0] - 80044d6: 4619 mov r1, r3 - 80044d8: f7ff fe8e bl 80041f8 + 8004be4: 697b ldr r3, [r7, #20] + 8004be6: b29b uxth r3, r3 + 8004be8: 88fa ldrh r2, [r7, #6] + 8004bea: 1ad3 subs r3, r2, r3 + 8004bec: b298 uxth r0, r3 + 8004bee: 693b ldr r3, [r7, #16] + 8004bf0: b29b uxth r3, r3 + 8004bf2: 88ba ldrh r2, [r7, #4] + 8004bf4: 1ad3 subs r3, r2, r3 + 8004bf6: b29b uxth r3, r3 + 8004bf8: 883a ldrh r2, [r7, #0] + 8004bfa: 4619 mov r1, r3 + 8004bfc: f7ff fe8e bl 800491c LCD_set_dot(x0-b,y0-a,color); //7 - 80044dc: 693b ldr r3, [r7, #16] - 80044de: b29b uxth r3, r3 - 80044e0: 88fa ldrh r2, [r7, #6] - 80044e2: 1ad3 subs r3, r2, r3 - 80044e4: b298 uxth r0, r3 - 80044e6: 697b ldr r3, [r7, #20] - 80044e8: b29b uxth r3, r3 - 80044ea: 88ba ldrh r2, [r7, #4] - 80044ec: 1ad3 subs r3, r2, r3 - 80044ee: b29b uxth r3, r3 - 80044f0: 883a ldrh r2, [r7, #0] - 80044f2: 4619 mov r1, r3 - 80044f4: f7ff fe80 bl 80041f8 + 8004c00: 693b ldr r3, [r7, #16] + 8004c02: b29b uxth r3, r3 + 8004c04: 88fa ldrh r2, [r7, #6] + 8004c06: 1ad3 subs r3, r2, r3 + 8004c08: b298 uxth r0, r3 + 8004c0a: 697b ldr r3, [r7, #20] + 8004c0c: b29b uxth r3, r3 + 8004c0e: 88ba ldrh r2, [r7, #4] + 8004c10: 1ad3 subs r3, r2, r3 + 8004c12: b29b uxth r3, r3 + 8004c14: 883a ldrh r2, [r7, #0] + 8004c16: 4619 mov r1, r3 + 8004c18: f7ff fe80 bl 800491c a++; - 80044f8: 697b ldr r3, [r7, #20] - 80044fa: 3301 adds r3, #1 - 80044fc: 617b str r3, [r7, #20] + 8004c1c: 697b ldr r3, [r7, #20] + 8004c1e: 3301 adds r3, #1 + 8004c20: 617b str r3, [r7, #20] //使用Bresenham算法画圆 if(di<0)di +=4*a+6; - 80044fe: 68fb ldr r3, [r7, #12] - 8004500: 2b00 cmp r3, #0 - 8004502: da06 bge.n 8004512 - 8004504: 697b ldr r3, [r7, #20] - 8004506: 009b lsls r3, r3, #2 - 8004508: 3306 adds r3, #6 - 800450a: 68fa ldr r2, [r7, #12] - 800450c: 4413 add r3, r2 - 800450e: 60fb str r3, [r7, #12] - 8004510: e00a b.n 8004528 + 8004c22: 68fb ldr r3, [r7, #12] + 8004c24: 2b00 cmp r3, #0 + 8004c26: da06 bge.n 8004c36 + 8004c28: 697b ldr r3, [r7, #20] + 8004c2a: 009b lsls r3, r3, #2 + 8004c2c: 3306 adds r3, #6 + 8004c2e: 68fa ldr r2, [r7, #12] + 8004c30: 4413 add r3, r2 + 8004c32: 60fb str r3, [r7, #12] + 8004c34: e00a b.n 8004c4c else { di+=10+4*(a-b); - 8004512: 697a ldr r2, [r7, #20] - 8004514: 693b ldr r3, [r7, #16] - 8004516: 1ad3 subs r3, r2, r3 - 8004518: 009b lsls r3, r3, #2 - 800451a: 330a adds r3, #10 - 800451c: 68fa ldr r2, [r7, #12] - 800451e: 4413 add r3, r2 - 8004520: 60fb str r3, [r7, #12] + 8004c36: 697a ldr r2, [r7, #20] + 8004c38: 693b ldr r3, [r7, #16] + 8004c3a: 1ad3 subs r3, r2, r3 + 8004c3c: 009b lsls r3, r3, #2 + 8004c3e: 330a adds r3, #10 + 8004c40: 68fa ldr r2, [r7, #12] + 8004c42: 4413 add r3, r2 + 8004c44: 60fb str r3, [r7, #12] b--; - 8004522: 693b ldr r3, [r7, #16] - 8004524: 3b01 subs r3, #1 - 8004526: 613b str r3, [r7, #16] + 8004c46: 693b ldr r3, [r7, #16] + 8004c48: 3b01 subs r3, #1 + 8004c4a: 613b str r3, [r7, #16] while(a<=b) - 8004528: 697a ldr r2, [r7, #20] - 800452a: 693b ldr r3, [r7, #16] - 800452c: 429a cmp r2, r3 - 800452e: f77f af73 ble.w 8004418 + 8004c4c: 697a ldr r2, [r7, #20] + 8004c4e: 693b ldr r3, [r7, #16] + 8004c50: 429a cmp r2, r3 + 8004c52: f77f af73 ble.w 8004b3c } } } - 8004532: bf00 nop - 8004534: bf00 nop - 8004536: 371c adds r7, #28 - 8004538: 46bd mov sp, r7 - 800453a: bd90 pop {r4, r7, pc} + 8004c56: bf00 nop + 8004c58: bf00 nop + 8004c5a: 371c adds r7, #28 + 8004c5c: 46bd mov sp, r7 + 8004c5e: bd90 pop {r4, r7, pc} -0800453c : +08004c60 : //num:要显示的字符:" "--->"~" //size:字体大小 12/16 //mode:叠加方式(1)还是非叠加方式(0) void LCD_ShowChar(uint16_t x,uint16_t y,uint8_t num,uint8_t size,uint16_t bg,uint16_t color) { - 800453c: b590 push {r4, r7, lr} - 800453e: b085 sub sp, #20 - 8004540: af00 add r7, sp, #0 - 8004542: 4604 mov r4, r0 - 8004544: 4608 mov r0, r1 - 8004546: 4611 mov r1, r2 - 8004548: 461a mov r2, r3 - 800454a: 4623 mov r3, r4 - 800454c: 80fb strh r3, [r7, #6] - 800454e: 4603 mov r3, r0 - 8004550: 80bb strh r3, [r7, #4] - 8004552: 460b mov r3, r1 - 8004554: 70fb strb r3, [r7, #3] - 8004556: 4613 mov r3, r2 - 8004558: 70bb strb r3, [r7, #2] + 8004c60: b590 push {r4, r7, lr} + 8004c62: b085 sub sp, #20 + 8004c64: af00 add r7, sp, #0 + 8004c66: 4604 mov r4, r0 + 8004c68: 4608 mov r0, r1 + 8004c6a: 4611 mov r1, r2 + 8004c6c: 461a mov r2, r3 + 8004c6e: 4623 mov r3, r4 + 8004c70: 80fb strh r3, [r7, #6] + 8004c72: 4603 mov r3, r0 + 8004c74: 80bb strh r3, [r7, #4] + 8004c76: 460b mov r3, r1 + 8004c78: 70fb strb r3, [r7, #3] + 8004c7a: 4613 mov r3, r2 + 8004c7c: 70bb strb r3, [r7, #2] uint8_t temp,t1,t; uint16_t y0=y; - 800455a: 88bb ldrh r3, [r7, #4] - 800455c: 817b strh r3, [r7, #10] + 8004c7e: 88bb ldrh r3, [r7, #4] + 8004c80: 817b strh r3, [r7, #10] //设置窗口 num=num-' ';//得到偏移后的值 - 800455e: 78fb ldrb r3, [r7, #3] - 8004560: 3b20 subs r3, #32 - 8004562: 70fb strb r3, [r7, #3] + 8004c82: 78fb ldrb r3, [r7, #3] + 8004c84: 3b20 subs r3, #32 + 8004c86: 70fb strb r3, [r7, #3] for(t=0;t + 8004c88: 2300 movs r3, #0 + 8004c8a: 737b strb r3, [r7, #13] + 8004c8c: e055 b.n 8004d3a { if(size==12){temp=asc2_1206[num][t];} //调用1206字体 - 800456a: 78bb ldrb r3, [r7, #2] - 800456c: 2b0c cmp r3, #12 - 800456e: d10b bne.n 8004588 - 8004570: 78fa ldrb r2, [r7, #3] - 8004572: 7b79 ldrb r1, [r7, #13] - 8004574: 482c ldr r0, [pc, #176] ; (8004628 ) - 8004576: 4613 mov r3, r2 - 8004578: 005b lsls r3, r3, #1 - 800457a: 4413 add r3, r2 - 800457c: 009b lsls r3, r3, #2 - 800457e: 4403 add r3, r0 - 8004580: 440b add r3, r1 - 8004582: 781b ldrb r3, [r3, #0] - 8004584: 73fb strb r3, [r7, #15] - 8004586: e007 b.n 8004598 + 8004c8e: 78bb ldrb r3, [r7, #2] + 8004c90: 2b0c cmp r3, #12 + 8004c92: d10b bne.n 8004cac + 8004c94: 78fa ldrb r2, [r7, #3] + 8004c96: 7b79 ldrb r1, [r7, #13] + 8004c98: 482c ldr r0, [pc, #176] ; (8004d4c ) + 8004c9a: 4613 mov r3, r2 + 8004c9c: 005b lsls r3, r3, #1 + 8004c9e: 4413 add r3, r2 + 8004ca0: 009b lsls r3, r3, #2 + 8004ca2: 4403 add r3, r0 + 8004ca4: 440b add r3, r1 + 8004ca6: 781b ldrb r3, [r3, #0] + 8004ca8: 73fb strb r3, [r7, #15] + 8004caa: e007 b.n 8004cbc else{ temp=asc2_1608[num][t]; } //调用1608字体 - 8004588: 78fa ldrb r2, [r7, #3] - 800458a: 7b7b ldrb r3, [r7, #13] - 800458c: 4927 ldr r1, [pc, #156] ; (800462c ) - 800458e: 0112 lsls r2, r2, #4 - 8004590: 440a add r2, r1 - 8004592: 4413 add r3, r2 - 8004594: 781b ldrb r3, [r3, #0] - 8004596: 73fb strb r3, [r7, #15] + 8004cac: 78fa ldrb r2, [r7, #3] + 8004cae: 7b7b ldrb r3, [r7, #13] + 8004cb0: 4927 ldr r1, [pc, #156] ; (8004d50 ) + 8004cb2: 0112 lsls r2, r2, #4 + 8004cb4: 440a add r2, r1 + 8004cb6: 4413 add r3, r2 + 8004cb8: 781b ldrb r3, [r3, #0] + 8004cba: 73fb strb r3, [r7, #15] for(t1=0;t1<8;t1++) - 8004598: 2300 movs r3, #0 - 800459a: 73bb strb r3, [r7, #14] - 800459c: e033 b.n 8004606 + 8004cbc: 2300 movs r3, #0 + 8004cbe: 73bb strb r3, [r7, #14] + 8004cc0: e033 b.n 8004d2a { if(temp&0x80){LCD_set_dot(x,y,color);}else{if(bg!=color){LCD_set_dot(x,y,bg);}} - 800459e: f997 300f ldrsb.w r3, [r7, #15] - 80045a2: 2b00 cmp r3, #0 - 80045a4: da06 bge.n 80045b4 - 80045a6: 8cba ldrh r2, [r7, #36] ; 0x24 - 80045a8: 88b9 ldrh r1, [r7, #4] - 80045aa: 88fb ldrh r3, [r7, #6] - 80045ac: 4618 mov r0, r3 - 80045ae: f7ff fe23 bl 80041f8 - 80045b2: e009 b.n 80045c8 - 80045b4: 8c3a ldrh r2, [r7, #32] - 80045b6: 8cbb ldrh r3, [r7, #36] ; 0x24 - 80045b8: 429a cmp r2, r3 - 80045ba: d005 beq.n 80045c8 - 80045bc: 8c3a ldrh r2, [r7, #32] - 80045be: 88b9 ldrh r1, [r7, #4] - 80045c0: 88fb ldrh r3, [r7, #6] - 80045c2: 4618 mov r0, r3 - 80045c4: f7ff fe18 bl 80041f8 + 8004cc2: f997 300f ldrsb.w r3, [r7, #15] + 8004cc6: 2b00 cmp r3, #0 + 8004cc8: da06 bge.n 8004cd8 + 8004cca: 8cba ldrh r2, [r7, #36] ; 0x24 + 8004ccc: 88b9 ldrh r1, [r7, #4] + 8004cce: 88fb ldrh r3, [r7, #6] + 8004cd0: 4618 mov r0, r3 + 8004cd2: f7ff fe23 bl 800491c + 8004cd6: e009 b.n 8004cec + 8004cd8: 8c3a ldrh r2, [r7, #32] + 8004cda: 8cbb ldrh r3, [r7, #36] ; 0x24 + 8004cdc: 429a cmp r2, r3 + 8004cde: d005 beq.n 8004cec + 8004ce0: 8c3a ldrh r2, [r7, #32] + 8004ce2: 88b9 ldrh r1, [r7, #4] + 8004ce4: 88fb ldrh r3, [r7, #6] + 8004ce6: 4618 mov r0, r3 + 8004ce8: f7ff fe18 bl 800491c temp<<=1; - 80045c8: 7bfb ldrb r3, [r7, #15] - 80045ca: 005b lsls r3, r3, #1 - 80045cc: 73fb strb r3, [r7, #15] + 8004cec: 7bfb ldrb r3, [r7, #15] + 8004cee: 005b lsls r3, r3, #1 + 8004cf0: 73fb strb r3, [r7, #15] y++; - 80045ce: 88bb ldrh r3, [r7, #4] - 80045d0: 3301 adds r3, #1 - 80045d2: 80bb strh r3, [r7, #4] + 8004cf2: 88bb ldrh r3, [r7, #4] + 8004cf4: 3301 adds r3, #1 + 8004cf6: 80bb strh r3, [r7, #4] if(x>=lcddev.width){return;}//超区域了 - 80045d4: 4b16 ldr r3, [pc, #88] ; (8004630 ) - 80045d6: 881b ldrh r3, [r3, #0] - 80045d8: 88fa ldrh r2, [r7, #6] - 80045da: 429a cmp r2, r3 - 80045dc: d220 bcs.n 8004620 + 8004cf8: 4b16 ldr r3, [pc, #88] ; (8004d54 ) + 8004cfa: 881b ldrh r3, [r3, #0] + 8004cfc: 88fa ldrh r2, [r7, #6] + 8004cfe: 429a cmp r2, r3 + 8004d00: d220 bcs.n 8004d44 if((y-y0)==size) - 80045de: 88ba ldrh r2, [r7, #4] - 80045e0: 897b ldrh r3, [r7, #10] - 80045e2: 1ad2 subs r2, r2, r3 - 80045e4: 78bb ldrb r3, [r7, #2] - 80045e6: 429a cmp r2, r3 - 80045e8: d10a bne.n 8004600 + 8004d02: 88ba ldrh r2, [r7, #4] + 8004d04: 897b ldrh r3, [r7, #10] + 8004d06: 1ad2 subs r2, r2, r3 + 8004d08: 78bb ldrb r3, [r7, #2] + 8004d0a: 429a cmp r2, r3 + 8004d0c: d10a bne.n 8004d24 { y=y0; - 80045ea: 897b ldrh r3, [r7, #10] - 80045ec: 80bb strh r3, [r7, #4] + 8004d0e: 897b ldrh r3, [r7, #10] + 8004d10: 80bb strh r3, [r7, #4] x++; - 80045ee: 88fb ldrh r3, [r7, #6] - 80045f0: 3301 adds r3, #1 - 80045f2: 80fb strh r3, [r7, #6] + 8004d12: 88fb ldrh r3, [r7, #6] + 8004d14: 3301 adds r3, #1 + 8004d16: 80fb strh r3, [r7, #6] if(x>=lcddev.width){return;}//超区域了 - 80045f4: 4b0e ldr r3, [pc, #56] ; (8004630 ) - 80045f6: 881b ldrh r3, [r3, #0] - 80045f8: 88fa ldrh r2, [r7, #6] - 80045fa: 429a cmp r2, r3 - 80045fc: d307 bcc.n 800460e - 80045fe: e010 b.n 8004622 + 8004d18: 4b0e ldr r3, [pc, #56] ; (8004d54 ) + 8004d1a: 881b ldrh r3, [r3, #0] + 8004d1c: 88fa ldrh r2, [r7, #6] + 8004d1e: 429a cmp r2, r3 + 8004d20: d307 bcc.n 8004d32 + 8004d22: e010 b.n 8004d46 for(t1=0;t1<8;t1++) - 8004600: 7bbb ldrb r3, [r7, #14] - 8004602: 3301 adds r3, #1 - 8004604: 73bb strb r3, [r7, #14] - 8004606: 7bbb ldrb r3, [r7, #14] - 8004608: 2b07 cmp r3, #7 - 800460a: d9c8 bls.n 800459e - 800460c: e000 b.n 8004610 + 8004d24: 7bbb ldrb r3, [r7, #14] + 8004d26: 3301 adds r3, #1 + 8004d28: 73bb strb r3, [r7, #14] + 8004d2a: 7bbb ldrb r3, [r7, #14] + 8004d2c: 2b07 cmp r3, #7 + 8004d2e: d9c8 bls.n 8004cc2 + 8004d30: e000 b.n 8004d34 break; - 800460e: bf00 nop + 8004d32: bf00 nop for(t=0;t - 800461e: e000 b.n 8004622 + 8004d34: 7b7b ldrb r3, [r7, #13] + 8004d36: 3301 adds r3, #1 + 8004d38: 737b strb r3, [r7, #13] + 8004d3a: 7b7a ldrb r2, [r7, #13] + 8004d3c: 78bb ldrb r3, [r7, #2] + 8004d3e: 429a cmp r2, r3 + 8004d40: d3a5 bcc.n 8004c8e + 8004d42: e000 b.n 8004d46 if(x>=lcddev.width){return;}//超区域了 - 8004620: bf00 nop + 8004d44: bf00 nop } } } - 8004622: 3714 adds r7, #20 - 8004624: 46bd mov sp, r7 - 8004626: bd90 pop {r4, r7, pc} - 8004628: 080099d8 .word 0x080099d8 - 800462c: 08009e4c .word 0x08009e4c - 8004630: 200002b8 .word 0x200002b8 + 8004d46: 3714 adds r7, #20 + 8004d48: 46bd mov sp, r7 + 8004d4a: bd90 pop {r4, r7, pc} + 8004d4c: 0800a140 .word 0x0800a140 + 8004d50: 0800a5b4 .word 0x0800a5b4 + 8004d54: 20000300 .word 0x20000300 -08004634 : +08004d58 : //width,height:区域大小 //size:字体大小 //*p:字符串起始地址 void LCD_ShowString(uint16_t x,uint16_t y,uint8_t *p,uint8_t size,uint16_t bg,uint16_t color) { - 8004634: b590 push {r4, r7, lr} - 8004636: b087 sub sp, #28 - 8004638: af02 add r7, sp, #8 - 800463a: 60ba str r2, [r7, #8] - 800463c: 461a mov r2, r3 - 800463e: 4603 mov r3, r0 - 8004640: 81fb strh r3, [r7, #14] - 8004642: 460b mov r3, r1 - 8004644: 81bb strh r3, [r7, #12] - 8004646: 4613 mov r3, r2 - 8004648: 71fb strb r3, [r7, #7] + 8004d58: b590 push {r4, r7, lr} + 8004d5a: b087 sub sp, #28 + 8004d5c: af02 add r7, sp, #8 + 8004d5e: 60ba str r2, [r7, #8] + 8004d60: 461a mov r2, r3 + 8004d62: 4603 mov r3, r0 + 8004d64: 81fb strh r3, [r7, #14] + 8004d66: 460b mov r3, r1 + 8004d68: 81bb strh r3, [r7, #12] + 8004d6a: 4613 mov r3, r2 + 8004d6c: 71fb strb r3, [r7, #7] while(*p!='\0') - 800464a: e026 b.n 800469a + 8004d6e: e026 b.n 8004dbe { if(x>=lcddev.width||*p=='\n') - 800464c: 4b17 ldr r3, [pc, #92] ; (80046ac ) - 800464e: 881b ldrh r3, [r3, #0] - 8004650: 89fa ldrh r2, [r7, #14] - 8004652: 429a cmp r2, r3 - 8004654: d203 bcs.n 800465e - 8004656: 68bb ldr r3, [r7, #8] - 8004658: 781b ldrb r3, [r3, #0] - 800465a: 2b0a cmp r3, #10 - 800465c: d107 bne.n 800466e + 8004d70: 4b17 ldr r3, [pc, #92] ; (8004dd0 ) + 8004d72: 881b ldrh r3, [r3, #0] + 8004d74: 89fa ldrh r2, [r7, #14] + 8004d76: 429a cmp r2, r3 + 8004d78: d203 bcs.n 8004d82 + 8004d7a: 68bb ldr r3, [r7, #8] + 8004d7c: 781b ldrb r3, [r3, #0] + 8004d7e: 2b0a cmp r3, #10 + 8004d80: d107 bne.n 8004d92 { x=0; - 800465e: 2300 movs r3, #0 - 8004660: 81fb strh r3, [r7, #14] + 8004d82: 2300 movs r3, #0 + 8004d84: 81fb strh r3, [r7, #14] y+=size; - 8004662: 79fb ldrb r3, [r7, #7] - 8004664: b29a uxth r2, r3 - 8004666: 89bb ldrh r3, [r7, #12] - 8004668: 4413 add r3, r2 - 800466a: 81bb strh r3, [r7, #12] - 800466c: e012 b.n 8004694 + 8004d86: 79fb ldrb r3, [r7, #7] + 8004d88: b29a uxth r2, r3 + 8004d8a: 89bb ldrh r3, [r7, #12] + 8004d8c: 4413 add r3, r2 + 8004d8e: 81bb strh r3, [r7, #12] + 8004d90: e012 b.n 8004db8 }else { LCD_ShowChar(x,y,*p,size,bg,color); - 800466e: 68bb ldr r3, [r7, #8] - 8004670: 781a ldrb r2, [r3, #0] - 8004672: 79fc ldrb r4, [r7, #7] - 8004674: 89b9 ldrh r1, [r7, #12] - 8004676: 89f8 ldrh r0, [r7, #14] - 8004678: 8cbb ldrh r3, [r7, #36] ; 0x24 - 800467a: 9301 str r3, [sp, #4] - 800467c: 8c3b ldrh r3, [r7, #32] - 800467e: 9300 str r3, [sp, #0] - 8004680: 4623 mov r3, r4 - 8004682: f7ff ff5b bl 800453c + 8004d92: 68bb ldr r3, [r7, #8] + 8004d94: 781a ldrb r2, [r3, #0] + 8004d96: 79fc ldrb r4, [r7, #7] + 8004d98: 89b9 ldrh r1, [r7, #12] + 8004d9a: 89f8 ldrh r0, [r7, #14] + 8004d9c: 8cbb ldrh r3, [r7, #36] ; 0x24 + 8004d9e: 9301 str r3, [sp, #4] + 8004da0: 8c3b ldrh r3, [r7, #32] + 8004da2: 9300 str r3, [sp, #0] + 8004da4: 4623 mov r3, r4 + 8004da6: f7ff ff5b bl 8004c60 x+=(size/2); - 8004686: 79fb ldrb r3, [r7, #7] - 8004688: 085b lsrs r3, r3, #1 - 800468a: b2db uxtb r3, r3 - 800468c: b29a uxth r2, r3 - 800468e: 89fb ldrh r3, [r7, #14] - 8004690: 4413 add r3, r2 - 8004692: 81fb strh r3, [r7, #14] + 8004daa: 79fb ldrb r3, [r7, #7] + 8004dac: 085b lsrs r3, r3, #1 + 8004dae: b2db uxtb r3, r3 + 8004db0: b29a uxth r2, r3 + 8004db2: 89fb ldrh r3, [r7, #14] + 8004db4: 4413 add r3, r2 + 8004db6: 81fb strh r3, [r7, #14] } p++; - 8004694: 68bb ldr r3, [r7, #8] - 8004696: 3301 adds r3, #1 - 8004698: 60bb str r3, [r7, #8] + 8004db8: 68bb ldr r3, [r7, #8] + 8004dba: 3301 adds r3, #1 + 8004dbc: 60bb str r3, [r7, #8] while(*p!='\0') - 800469a: 68bb ldr r3, [r7, #8] - 800469c: 781b ldrb r3, [r3, #0] - 800469e: 2b00 cmp r3, #0 - 80046a0: d1d4 bne.n 800464c + 8004dbe: 68bb ldr r3, [r7, #8] + 8004dc0: 781b ldrb r3, [r3, #0] + 8004dc2: 2b00 cmp r3, #0 + 8004dc4: d1d4 bne.n 8004d70 } } - 80046a2: bf00 nop - 80046a4: bf00 nop - 80046a6: 3714 adds r7, #20 - 80046a8: 46bd mov sp, r7 - 80046aa: bd90 pop {r4, r7, pc} - 80046ac: 200002b8 .word 0x200002b8 + 8004dc6: bf00 nop + 8004dc8: bf00 nop + 8004dca: 3714 adds r7, #20 + 8004dcc: 46bd mov sp, r7 + 8004dce: bd90 pop {r4, r7, pc} + 8004dd0: 20000300 .word 0x20000300 -080046b0 : +08004dd4 : //因为eeprom芯片的写入速度有限,每写入一个字符都需要等待一段时间才能完成写入 //整个系统不可能等它一个的,传统的解决方法可以使用定时器中断或者多线程开辟子任务在后台保存, //这里的解决方法是使用状态机,通过一个链表将要保存的数据串起来,再通过状态循环一个个保存,保存延时等于循环用时。 eeprom_write_buff_info eeprom_write_buffer; //创建链表 void EPPROM_SLOWWRITE_INIT() //初始化链表 { - 80046b0: b480 push {r7} - 80046b2: af00 add r7, sp, #0 + 8004dd4: b480 push {r7} + 8004dd6: af00 add r7, sp, #0 eeprom_write_buffer.buff=NULL; - 80046b4: 4b0a ldr r3, [pc, #40] ; (80046e0 ) - 80046b6: 2200 movs r2, #0 - 80046b8: 601a str r2, [r3, #0] + 8004dd8: 4b0a ldr r3, [pc, #40] ; (8004e04 ) + 8004dda: 2200 movs r2, #0 + 8004ddc: 601a str r2, [r3, #0] eeprom_write_buffer.end=NULL; - 80046ba: 4b09 ldr r3, [pc, #36] ; (80046e0 ) - 80046bc: 2200 movs r2, #0 - 80046be: 609a str r2, [r3, #8] + 8004dde: 4b09 ldr r3, [pc, #36] ; (8004e04 ) + 8004de0: 2200 movs r2, #0 + 8004de2: 609a str r2, [r3, #8] eeprom_write_buffer.head=NULL; - 80046c0: 4b07 ldr r3, [pc, #28] ; (80046e0 ) - 80046c2: 2200 movs r2, #0 - 80046c4: 605a str r2, [r3, #4] + 8004de4: 4b07 ldr r3, [pc, #28] ; (8004e04 ) + 8004de6: 2200 movs r2, #0 + 8004de8: 605a str r2, [r3, #4] eeprom_write_buffer.save_timeout=5; //避免状态机循环过快导致的保存失败,这个是最少延时。(感觉没必要写在这里,太浪费空间了) - 80046c6: 4b06 ldr r3, [pc, #24] ; (80046e0 ) - 80046c8: 2205 movs r2, #5 - 80046ca: 741a strb r2, [r3, #16] + 8004dea: 4b06 ldr r3, [pc, #24] ; (8004e04 ) + 8004dec: 2205 movs r2, #5 + 8004dee: 741a strb r2, [r3, #16] eeprom_write_buffer.save_busy=0; //最小延时内为忙状态 - 80046cc: 4a04 ldr r2, [pc, #16] ; (80046e0 ) - 80046ce: 7c53 ldrb r3, [r2, #17] - 80046d0: f36f 0300 bfc r3, #0, #1 - 80046d4: 7453 strb r3, [r2, #17] + 8004df0: 4a04 ldr r2, [pc, #16] ; (8004e04 ) + 8004df2: 7c53 ldrb r3, [r2, #17] + 8004df4: f36f 0300 bfc r3, #0, #1 + 8004df8: 7453 strb r3, [r2, #17] } - 80046d6: bf00 nop - 80046d8: 46bd mov sp, r7 - 80046da: bc80 pop {r7} - 80046dc: 4770 bx lr - 80046de: bf00 nop - 80046e0: 200002c4 .word 0x200002c4 + 8004dfa: bf00 nop + 8004dfc: 46bd mov sp, r7 + 8004dfe: bc80 pop {r7} + 8004e00: 4770 bx lr + 8004e02: bf00 nop + 8004e04: 2000030c .word 0x2000030c -080046e4 : +08004e08 : //循环保存服务,检查链表头是否有数据是否忙。 void EEPROM_SLOWWRITE_SERVER() { - 80046e4: b580 push {r7, lr} - 80046e6: b082 sub sp, #8 - 80046e8: af00 add r7, sp, #0 + 8004e08: b580 push {r7, lr} + 8004e0a: b082 sub sp, #8 + 8004e0c: af00 add r7, sp, #0 eeprom_write_buff *buff; char data; if(eeprom_write_buffer.save_busy) - 80046ea: 4b20 ldr r3, [pc, #128] ; (800476c ) - 80046ec: 7c5b ldrb r3, [r3, #17] - 80046ee: f003 0301 and.w r3, r3, #1 - 80046f2: b2db uxtb r3, r3 - 80046f4: 2b00 cmp r3, #0 - 80046f6: d00c beq.n 8004712 + 8004e0e: 4b20 ldr r3, [pc, #128] ; (8004e90 ) + 8004e10: 7c5b ldrb r3, [r3, #17] + 8004e12: f003 0301 and.w r3, r3, #1 + 8004e16: b2db uxtb r3, r3 + 8004e18: 2b00 cmp r3, #0 + 8004e1a: d00c beq.n 8004e36 { if(HAL_GetTick()>eeprom_write_buffer.save_time) - 80046f8: f7fd f97c bl 80019f4 - 80046fc: 4602 mov r2, r0 - 80046fe: 4b1b ldr r3, [pc, #108] ; (800476c ) - 8004700: 68db ldr r3, [r3, #12] - 8004702: 429a cmp r2, r3 - 8004704: d92e bls.n 8004764 + 8004e1c: f7fc fe52 bl 8001ac4 + 8004e20: 4602 mov r2, r0 + 8004e22: 4b1b ldr r3, [pc, #108] ; (8004e90 ) + 8004e24: 68db ldr r3, [r3, #12] + 8004e26: 429a cmp r2, r3 + 8004e28: d92e bls.n 8004e88 { eeprom_write_buffer.save_busy=0; - 8004706: 4a19 ldr r2, [pc, #100] ; (800476c ) - 8004708: 7c53 ldrb r3, [r2, #17] - 800470a: f36f 0300 bfc r3, #0, #1 - 800470e: 7453 strb r3, [r2, #17] + 8004e2a: 4a19 ldr r2, [pc, #100] ; (8004e90 ) + 8004e2c: 7c53 ldrb r3, [r2, #17] + 8004e2e: f36f 0300 bfc r3, #0, #1 + 8004e32: 7453 strb r3, [r2, #17] free(eeprom_write_buffer.head); eeprom_write_buffer.head=buff; } } } - 8004710: e028 b.n 8004764 + 8004e34: e028 b.n 8004e88 if(eeprom_write_buffer.head!=NULL) - 8004712: 4b16 ldr r3, [pc, #88] ; (800476c ) - 8004714: 685b ldr r3, [r3, #4] - 8004716: 2b00 cmp r3, #0 - 8004718: d024 beq.n 8004764 + 8004e36: 4b16 ldr r3, [pc, #88] ; (8004e90 ) + 8004e38: 685b ldr r3, [r3, #4] + 8004e3a: 2b00 cmp r3, #0 + 8004e3c: d024 beq.n 8004e88 eeprom_write_buffer.save_busy=1; - 800471a: 4a14 ldr r2, [pc, #80] ; (800476c ) - 800471c: 7c53 ldrb r3, [r2, #17] - 800471e: f043 0301 orr.w r3, r3, #1 - 8004722: 7453 strb r3, [r2, #17] + 8004e3e: 4a14 ldr r2, [pc, #80] ; (8004e90 ) + 8004e40: 7c53 ldrb r3, [r2, #17] + 8004e42: f043 0301 orr.w r3, r3, #1 + 8004e46: 7453 strb r3, [r2, #17] eeprom_write_buffer.save_time=HAL_GetTick()+eeprom_write_buffer.save_timeout; - 8004724: f7fd f966 bl 80019f4 - 8004728: 4603 mov r3, r0 - 800472a: 4a10 ldr r2, [pc, #64] ; (800476c ) - 800472c: 7c12 ldrb r2, [r2, #16] - 800472e: 4413 add r3, r2 - 8004730: 4a0e ldr r2, [pc, #56] ; (800476c ) - 8004732: 60d3 str r3, [r2, #12] + 8004e48: f7fc fe3c bl 8001ac4 + 8004e4c: 4603 mov r3, r0 + 8004e4e: 4a10 ldr r2, [pc, #64] ; (8004e90 ) + 8004e50: 7c12 ldrb r2, [r2, #16] + 8004e52: 4413 add r3, r2 + 8004e54: 4a0e ldr r2, [pc, #56] ; (8004e90 ) + 8004e56: 60d3 str r3, [r2, #12] buff=eeprom_write_buffer.head->next; - 8004734: 4b0d ldr r3, [pc, #52] ; (800476c ) - 8004736: 685b ldr r3, [r3, #4] - 8004738: 681b ldr r3, [r3, #0] - 800473a: 607b str r3, [r7, #4] + 8004e58: 4b0d ldr r3, [pc, #52] ; (8004e90 ) + 8004e5a: 685b ldr r3, [r3, #4] + 8004e5c: 681b ldr r3, [r3, #0] + 8004e5e: 607b str r3, [r7, #4] data=eeprom_write_buffer.head->date; - 800473c: 4b0b ldr r3, [pc, #44] ; (800476c ) - 800473e: 685b ldr r3, [r3, #4] - 8004740: 799b ldrb r3, [r3, #6] - 8004742: 70fb strb r3, [r7, #3] + 8004e60: 4b0b ldr r3, [pc, #44] ; (8004e90 ) + 8004e62: 685b ldr r3, [r3, #4] + 8004e64: 799b ldrb r3, [r3, #6] + 8004e66: 70fb strb r3, [r7, #3] IIC_SAND_DATE(EEPROM_ADDRESS,eeprom_write_buffer.head->add,&data,1); - 8004744: 4b09 ldr r3, [pc, #36] ; (800476c ) - 8004746: 685b ldr r3, [r3, #4] - 8004748: 8899 ldrh r1, [r3, #4] - 800474a: 1cfa adds r2, r7, #3 - 800474c: 2301 movs r3, #1 - 800474e: 20a0 movs r0, #160 ; 0xa0 - 8004750: f000 f866 bl 8004820 + 8004e68: 4b09 ldr r3, [pc, #36] ; (8004e90 ) + 8004e6a: 685b ldr r3, [r3, #4] + 8004e6c: 8899 ldrh r1, [r3, #4] + 8004e6e: 1cfa adds r2, r7, #3 + 8004e70: 2301 movs r3, #1 + 8004e72: 20a0 movs r0, #160 ; 0xa0 + 8004e74: f000 f866 bl 8004f44 free(eeprom_write_buffer.head); - 8004754: 4b05 ldr r3, [pc, #20] ; (800476c ) - 8004756: 685b ldr r3, [r3, #4] - 8004758: 4618 mov r0, r3 - 800475a: f002 f989 bl 8006a70 + 8004e78: 4b05 ldr r3, [pc, #20] ; (8004e90 ) + 8004e7a: 685b ldr r3, [r3, #4] + 8004e7c: 4618 mov r0, r3 + 8004e7e: f002 f9ab bl 80071d8 eeprom_write_buffer.head=buff; - 800475e: 4a03 ldr r2, [pc, #12] ; (800476c ) - 8004760: 687b ldr r3, [r7, #4] - 8004762: 6053 str r3, [r2, #4] + 8004e82: 4a03 ldr r2, [pc, #12] ; (8004e90 ) + 8004e84: 687b ldr r3, [r7, #4] + 8004e86: 6053 str r3, [r2, #4] } - 8004764: bf00 nop - 8004766: 3708 adds r7, #8 - 8004768: 46bd mov sp, r7 - 800476a: bd80 pop {r7, pc} - 800476c: 200002c4 .word 0x200002c4 + 8004e88: bf00 nop + 8004e8a: 3708 adds r7, #8 + 8004e8c: 46bd mov sp, r7 + 8004e8e: bd80 pop {r7, pc} + 8004e90: 2000030c .word 0x2000030c -08004770 : +08004e94 : //从eeprom读取数据 void EEPROM_READ_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8004770: b580 push {r7, lr} - 8004772: b082 sub sp, #8 - 8004774: af00 add r7, sp, #0 - 8004776: 4603 mov r3, r0 - 8004778: 6039 str r1, [r7, #0] - 800477a: 80fb strh r3, [r7, #6] - 800477c: 4613 mov r3, r2 - 800477e: 80bb strh r3, [r7, #4] + 8004e94: b580 push {r7, lr} + 8004e96: b082 sub sp, #8 + 8004e98: af00 add r7, sp, #0 + 8004e9a: 4603 mov r3, r0 + 8004e9c: 6039 str r1, [r7, #0] + 8004e9e: 80fb strh r3, [r7, #6] + 8004ea0: 4613 mov r3, r2 + 8004ea2: 80bb strh r3, [r7, #4] IIC_READ_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); - 8004780: 88bb ldrh r3, [r7, #4] - 8004782: 88f9 ldrh r1, [r7, #6] - 8004784: 683a ldr r2, [r7, #0] - 8004786: 20a0 movs r0, #160 ; 0xa0 - 8004788: f000 f868 bl 800485c + 8004ea4: 88bb ldrh r3, [r7, #4] + 8004ea6: 88f9 ldrh r1, [r7, #6] + 8004ea8: 683a ldr r2, [r7, #0] + 8004eaa: 20a0 movs r0, #160 ; 0xa0 + 8004eac: f000 f868 bl 8004f80 } - 800478c: bf00 nop - 800478e: 3708 adds r7, #8 - 8004790: 46bd mov sp, r7 - 8004792: bd80 pop {r7, pc} + 8004eb0: bf00 nop + 8004eb2: 3708 adds r7, #8 + 8004eb4: 46bd mov sp, r7 + 8004eb6: bd80 pop {r7, pc} -08004794 : +08004eb8 : //向eeprom写入数据 void EEPROM_WRITE_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8004794: b580 push {r7, lr} - 8004796: b086 sub sp, #24 - 8004798: af00 add r7, sp, #0 - 800479a: 4603 mov r3, r0 - 800479c: 6039 str r1, [r7, #0] - 800479e: 80fb strh r3, [r7, #6] - 80047a0: 4613 mov r3, r2 - 80047a2: 80bb strh r3, [r7, #4] + 8004eb8: b580 push {r7, lr} + 8004eba: b086 sub sp, #24 + 8004ebc: af00 add r7, sp, #0 + 8004ebe: 4603 mov r3, r0 + 8004ec0: 6039 str r1, [r7, #0] + 8004ec2: 80fb strh r3, [r7, #6] + 8004ec4: 4613 mov r3, r2 + 8004ec6: 80bb strh r3, [r7, #4] //IIC_SAND_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); uint16_t addoffset=0; - 80047a4: 2300 movs r3, #0 - 80047a6: 82fb strh r3, [r7, #22] + 8004ec8: 2300 movs r3, #0 + 8004eca: 82fb strh r3, [r7, #22] eeprom_write_buff *buff; eeprom_write_buff *buff2; while(LONG--) - 80047a8: e02d b.n 8004806 + 8004ecc: e02d b.n 8004f2a { buff =(eeprom_write_buff*)malloc(sizeof(eeprom_write_buff)); - 80047aa: 2008 movs r0, #8 - 80047ac: f002 f958 bl 8006a60 - 80047b0: 4603 mov r3, r0 - 80047b2: 613b str r3, [r7, #16] + 8004ece: 2008 movs r0, #8 + 8004ed0: f002 f97a bl 80071c8 + 8004ed4: 4603 mov r3, r0 + 8004ed6: 613b str r3, [r7, #16] if(buff!=NULL) - 80047b4: 693b ldr r3, [r7, #16] - 80047b6: 2b00 cmp r3, #0 - 80047b8: d02b beq.n 8004812 + 8004ed8: 693b ldr r3, [r7, #16] + 8004eda: 2b00 cmp r3, #0 + 8004edc: d02b beq.n 8004f36 { buff->add=IN_DEVICE_ADD+addoffset; - 80047ba: 88fa ldrh r2, [r7, #6] - 80047bc: 8afb ldrh r3, [r7, #22] - 80047be: 4413 add r3, r2 - 80047c0: b29a uxth r2, r3 - 80047c2: 693b ldr r3, [r7, #16] - 80047c4: 809a strh r2, [r3, #4] + 8004ede: 88fa ldrh r2, [r7, #6] + 8004ee0: 8afb ldrh r3, [r7, #22] + 8004ee2: 4413 add r3, r2 + 8004ee4: b29a uxth r2, r3 + 8004ee6: 693b ldr r3, [r7, #16] + 8004ee8: 809a strh r2, [r3, #4] buff->date=DATAS[addoffset]; - 80047c6: 8afb ldrh r3, [r7, #22] - 80047c8: 683a ldr r2, [r7, #0] - 80047ca: 4413 add r3, r2 - 80047cc: 781a ldrb r2, [r3, #0] - 80047ce: 693b ldr r3, [r7, #16] - 80047d0: 719a strb r2, [r3, #6] + 8004eea: 8afb ldrh r3, [r7, #22] + 8004eec: 683a ldr r2, [r7, #0] + 8004eee: 4413 add r3, r2 + 8004ef0: 781a ldrb r2, [r3, #0] + 8004ef2: 693b ldr r3, [r7, #16] + 8004ef4: 719a strb r2, [r3, #6] buff->next=NULL; - 80047d2: 693b ldr r3, [r7, #16] - 80047d4: 2200 movs r2, #0 - 80047d6: 601a str r2, [r3, #0] + 8004ef6: 693b ldr r3, [r7, #16] + 8004ef8: 2200 movs r2, #0 + 8004efa: 601a str r2, [r3, #0] }else{return ;} if(eeprom_write_buffer.head==NULL) - 80047d8: 4b10 ldr r3, [pc, #64] ; (800481c ) - 80047da: 685b ldr r3, [r3, #4] - 80047dc: 2b00 cmp r3, #0 - 80047de: d106 bne.n 80047ee + 8004efc: 4b10 ldr r3, [pc, #64] ; (8004f40 ) + 8004efe: 685b ldr r3, [r3, #4] + 8004f00: 2b00 cmp r3, #0 + 8004f02: d106 bne.n 8004f12 { eeprom_write_buffer.head=buff; - 80047e0: 4a0e ldr r2, [pc, #56] ; (800481c ) - 80047e2: 693b ldr r3, [r7, #16] - 80047e4: 6053 str r3, [r2, #4] + 8004f04: 4a0e ldr r2, [pc, #56] ; (8004f40 ) + 8004f06: 693b ldr r3, [r7, #16] + 8004f08: 6053 str r3, [r2, #4] eeprom_write_buffer.end=buff; - 80047e6: 4a0d ldr r2, [pc, #52] ; (800481c ) - 80047e8: 693b ldr r3, [r7, #16] - 80047ea: 6093 str r3, [r2, #8] - 80047ec: e008 b.n 8004800 + 8004f0a: 4a0d ldr r2, [pc, #52] ; (8004f40 ) + 8004f0c: 693b ldr r3, [r7, #16] + 8004f0e: 6093 str r3, [r2, #8] + 8004f10: e008 b.n 8004f24 }else { buff2=eeprom_write_buffer.end; - 80047ee: 4b0b ldr r3, [pc, #44] ; (800481c ) - 80047f0: 689b ldr r3, [r3, #8] - 80047f2: 60fb str r3, [r7, #12] + 8004f12: 4b0b ldr r3, [pc, #44] ; (8004f40 ) + 8004f14: 689b ldr r3, [r3, #8] + 8004f16: 60fb str r3, [r7, #12] buff2->next=buff; - 80047f4: 68fb ldr r3, [r7, #12] - 80047f6: 693a ldr r2, [r7, #16] - 80047f8: 601a str r2, [r3, #0] + 8004f18: 68fb ldr r3, [r7, #12] + 8004f1a: 693a ldr r2, [r7, #16] + 8004f1c: 601a str r2, [r3, #0] eeprom_write_buffer.end=buff; - 80047fa: 4a08 ldr r2, [pc, #32] ; (800481c ) - 80047fc: 693b ldr r3, [r7, #16] - 80047fe: 6093 str r3, [r2, #8] + 8004f1e: 4a08 ldr r2, [pc, #32] ; (8004f40 ) + 8004f20: 693b ldr r3, [r7, #16] + 8004f22: 6093 str r3, [r2, #8] } addoffset++; - 8004800: 8afb ldrh r3, [r7, #22] - 8004802: 3301 adds r3, #1 - 8004804: 82fb strh r3, [r7, #22] + 8004f24: 8afb ldrh r3, [r7, #22] + 8004f26: 3301 adds r3, #1 + 8004f28: 82fb strh r3, [r7, #22] while(LONG--) - 8004806: 88bb ldrh r3, [r7, #4] - 8004808: 1e5a subs r2, r3, #1 - 800480a: 80ba strh r2, [r7, #4] - 800480c: 2b00 cmp r3, #0 - 800480e: d1cc bne.n 80047aa - 8004810: e000 b.n 8004814 + 8004f2a: 88bb ldrh r3, [r7, #4] + 8004f2c: 1e5a subs r2, r3, #1 + 8004f2e: 80ba strh r2, [r7, #4] + 8004f30: 2b00 cmp r3, #0 + 8004f32: d1cc bne.n 8004ece + 8004f34: e000 b.n 8004f38 }else{return ;} - 8004812: bf00 nop + 8004f36: bf00 nop } } - 8004814: 3718 adds r7, #24 - 8004816: 46bd mov sp, r7 - 8004818: bd80 pop {r7, pc} - 800481a: bf00 nop - 800481c: 200002c4 .word 0x200002c4 + 8004f38: 3718 adds r7, #24 + 8004f3a: 46bd mov sp, r7 + 8004f3c: bd80 pop {r7, pc} + 8004f3e: bf00 nop + 8004f40: 2000030c .word 0x2000030c -08004820 : +08004f44 : //iic硬件接口 extern I2C_HandleTypeDef hi2c2; void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8004820: b580 push {r7, lr} - 8004822: b088 sub sp, #32 - 8004824: af04 add r7, sp, #16 - 8004826: 60ba str r2, [r7, #8] - 8004828: 461a mov r2, r3 - 800482a: 4603 mov r3, r0 - 800482c: 81fb strh r3, [r7, #14] - 800482e: 460b mov r3, r1 - 8004830: 81bb strh r3, [r7, #12] - 8004832: 4613 mov r3, r2 - 8004834: 80fb strh r3, [r7, #6] + 8004f44: b580 push {r7, lr} + 8004f46: b088 sub sp, #32 + 8004f48: af04 add r7, sp, #16 + 8004f4a: 60ba str r2, [r7, #8] + 8004f4c: 461a mov r2, r3 + 8004f4e: 4603 mov r3, r0 + 8004f50: 81fb strh r3, [r7, #14] + 8004f52: 460b mov r3, r1 + 8004f54: 81bb strh r3, [r7, #12] + 8004f56: 4613 mov r3, r2 + 8004f58: 80fb strh r3, [r7, #6] HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 8004836: 89ba ldrh r2, [r7, #12] - 8004838: 89f9 ldrh r1, [r7, #14] - 800483a: 2364 movs r3, #100 ; 0x64 - 800483c: 9302 str r3, [sp, #8] - 800483e: 88fb ldrh r3, [r7, #6] - 8004840: 9301 str r3, [sp, #4] - 8004842: 68bb ldr r3, [r7, #8] - 8004844: 9300 str r3, [sp, #0] - 8004846: 2301 movs r3, #1 - 8004848: 4803 ldr r0, [pc, #12] ; (8004858 ) - 800484a: f7fd fced bl 8002228 + 8004f5a: 89ba ldrh r2, [r7, #12] + 8004f5c: 89f9 ldrh r1, [r7, #14] + 8004f5e: 2364 movs r3, #100 ; 0x64 + 8004f60: 9302 str r3, [sp, #8] + 8004f62: 88fb ldrh r3, [r7, #6] + 8004f64: 9301 str r3, [sp, #4] + 8004f66: 68bb ldr r3, [r7, #8] + 8004f68: 9300 str r3, [sp, #0] + 8004f6a: 2301 movs r3, #1 + 8004f6c: 4803 ldr r0, [pc, #12] ; (8004f7c ) + 8004f6e: f7fd f9ed bl 800234c } - 800484e: bf00 nop - 8004850: 3710 adds r7, #16 - 8004852: 46bd mov sp, r7 - 8004854: bd80 pop {r7, pc} - 8004856: bf00 nop - 8004858: 20000218 .word 0x20000218 + 8004f72: bf00 nop + 8004f74: 3710 adds r7, #16 + 8004f76: 46bd mov sp, r7 + 8004f78: bd80 pop {r7, pc} + 8004f7a: bf00 nop + 8004f7c: 20000218 .word 0x20000218 -0800485c : +08004f80 : void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 800485c: b580 push {r7, lr} - 800485e: b088 sub sp, #32 - 8004860: af04 add r7, sp, #16 - 8004862: 60ba str r2, [r7, #8] - 8004864: 461a mov r2, r3 - 8004866: 4603 mov r3, r0 - 8004868: 81fb strh r3, [r7, #14] - 800486a: 460b mov r3, r1 - 800486c: 81bb strh r3, [r7, #12] - 800486e: 4613 mov r3, r2 - 8004870: 80fb strh r3, [r7, #6] + 8004f80: b580 push {r7, lr} + 8004f82: b088 sub sp, #32 + 8004f84: af04 add r7, sp, #16 + 8004f86: 60ba str r2, [r7, #8] + 8004f88: 461a mov r2, r3 + 8004f8a: 4603 mov r3, r0 + 8004f8c: 81fb strh r3, [r7, #14] + 8004f8e: 460b mov r3, r1 + 8004f90: 81bb strh r3, [r7, #12] + 8004f92: 4613 mov r3, r2 + 8004f94: 80fb strh r3, [r7, #6] HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 8004872: 89ba ldrh r2, [r7, #12] - 8004874: 89f9 ldrh r1, [r7, #14] - 8004876: 2364 movs r3, #100 ; 0x64 - 8004878: 9302 str r3, [sp, #8] - 800487a: 88fb ldrh r3, [r7, #6] - 800487c: 9301 str r3, [sp, #4] - 800487e: 68bb ldr r3, [r7, #8] - 8004880: 9300 str r3, [sp, #0] - 8004882: 2301 movs r3, #1 - 8004884: 4803 ldr r0, [pc, #12] ; (8004894 ) - 8004886: f7fd fdc9 bl 800241c + 8004f96: 89ba ldrh r2, [r7, #12] + 8004f98: 89f9 ldrh r1, [r7, #14] + 8004f9a: 2364 movs r3, #100 ; 0x64 + 8004f9c: 9302 str r3, [sp, #8] + 8004f9e: 88fb ldrh r3, [r7, #6] + 8004fa0: 9301 str r3, [sp, #4] + 8004fa2: 68bb ldr r3, [r7, #8] + 8004fa4: 9300 str r3, [sp, #0] + 8004fa6: 2301 movs r3, #1 + 8004fa8: 4803 ldr r0, [pc, #12] ; (8004fb8 ) + 8004faa: f7fd fac9 bl 8002540 } - 800488a: bf00 nop - 800488c: 3710 adds r7, #16 - 800488e: 46bd mov sp, r7 - 8004890: bd80 pop {r7, pc} - 8004892: bf00 nop - 8004894: 20000218 .word 0x20000218 + 8004fae: bf00 nop + 8004fb0: 3710 adds r7, #16 + 8004fb2: 46bd mov sp, r7 + 8004fb4: bd80 pop {r7, pc} + 8004fb6: bf00 nop + 8004fb8: 20000218 .word 0x20000218 -08004898 : +08004fbc : //SPI写数据 //向触摸屏IC写入1byte数据 //num:要写入的数据 void TP_Write_Byte(char num) { - 8004898: b580 push {r7, lr} - 800489a: b084 sub sp, #16 - 800489c: af00 add r7, sp, #0 - 800489e: 4603 mov r3, r0 - 80048a0: 71fb strb r3, [r7, #7] + 8004fbc: b580 push {r7, lr} + 8004fbe: b084 sub sp, #16 + 8004fc0: af00 add r7, sp, #0 + 8004fc2: 4603 mov r3, r0 + 8004fc4: 71fb strb r3, [r7, #7] for(uint8_t count=0;count<8;count++) - 80048a2: 2300 movs r3, #0 - 80048a4: 73fb strb r3, [r7, #15] - 80048a6: e020 b.n 80048ea + 8004fc6: 2300 movs r3, #0 + 8004fc8: 73fb strb r3, [r7, #15] + 8004fca: e020 b.n 800500e { if(num&0x80){TDIN(1);} - 80048a8: f997 3007 ldrsb.w r3, [r7, #7] - 80048ac: 2b00 cmp r3, #0 - 80048ae: da06 bge.n 80048be - 80048b0: 2201 movs r2, #1 - 80048b2: f44f 7100 mov.w r1, #512 ; 0x200 - 80048b6: 4811 ldr r0, [pc, #68] ; (80048fc ) - 80048b8: f7fd fb59 bl 8001f6e - 80048bc: e005 b.n 80048ca + 8004fcc: f997 3007 ldrsb.w r3, [r7, #7] + 8004fd0: 2b00 cmp r3, #0 + 8004fd2: da06 bge.n 8004fe2 + 8004fd4: 2201 movs r2, #1 + 8004fd6: f44f 7100 mov.w r1, #512 ; 0x200 + 8004fda: 4811 ldr r0, [pc, #68] ; (8005020 ) + 8004fdc: f7fd f859 bl 8002092 + 8004fe0: e005 b.n 8004fee else {TDIN(0);} - 80048be: 2200 movs r2, #0 - 80048c0: f44f 7100 mov.w r1, #512 ; 0x200 - 80048c4: 480d ldr r0, [pc, #52] ; (80048fc ) - 80048c6: f7fd fb52 bl 8001f6e + 8004fe2: 2200 movs r2, #0 + 8004fe4: f44f 7100 mov.w r1, #512 ; 0x200 + 8004fe8: 480d ldr r0, [pc, #52] ; (8005020 ) + 8004fea: f7fd f852 bl 8002092 num<<=1; - 80048ca: 79fb ldrb r3, [r7, #7] - 80048cc: 005b lsls r3, r3, #1 - 80048ce: 71fb strb r3, [r7, #7] + 8004fee: 79fb ldrb r3, [r7, #7] + 8004ff0: 005b lsls r3, r3, #1 + 8004ff2: 71fb strb r3, [r7, #7] TCLK(0); - 80048d0: 2200 movs r2, #0 - 80048d2: 2102 movs r1, #2 - 80048d4: 480a ldr r0, [pc, #40] ; (8004900 ) - 80048d6: f7fd fb4a bl 8001f6e + 8004ff4: 2200 movs r2, #0 + 8004ff6: 2102 movs r1, #2 + 8004ff8: 480a ldr r0, [pc, #40] ; (8005024 ) + 8004ffa: f7fd f84a bl 8002092 TCLK(1); //上升沿有效 - 80048da: 2201 movs r2, #1 - 80048dc: 2102 movs r1, #2 - 80048de: 4808 ldr r0, [pc, #32] ; (8004900 ) - 80048e0: f7fd fb45 bl 8001f6e + 8004ffe: 2201 movs r2, #1 + 8005000: 2102 movs r1, #2 + 8005002: 4808 ldr r0, [pc, #32] ; (8005024 ) + 8005004: f7fd f845 bl 8002092 for(uint8_t count=0;count<8;count++) - 80048e4: 7bfb ldrb r3, [r7, #15] - 80048e6: 3301 adds r3, #1 - 80048e8: 73fb strb r3, [r7, #15] - 80048ea: 7bfb ldrb r3, [r7, #15] - 80048ec: 2b07 cmp r3, #7 - 80048ee: d9db bls.n 80048a8 + 8005008: 7bfb ldrb r3, [r7, #15] + 800500a: 3301 adds r3, #1 + 800500c: 73fb strb r3, [r7, #15] + 800500e: 7bfb ldrb r3, [r7, #15] + 8005010: 2b07 cmp r3, #7 + 8005012: d9db bls.n 8004fcc } } - 80048f0: bf00 nop - 80048f2: bf00 nop - 80048f4: 3710 adds r7, #16 - 80048f6: 46bd mov sp, r7 - 80048f8: bd80 pop {r7, pc} - 80048fa: bf00 nop - 80048fc: 40011c00 .word 0x40011c00 - 8004900: 40010c00 .word 0x40010c00 + 8005014: bf00 nop + 8005016: bf00 nop + 8005018: 3710 adds r7, #16 + 800501a: 46bd mov sp, r7 + 800501c: bd80 pop {r7, pc} + 800501e: bf00 nop + 8005020: 40011c00 .word 0x40011c00 + 8005024: 40010c00 .word 0x40010c00 -08004904 : +08005028 : //SPI读数据 //从触摸屏IC读取adc值 //CMD:指令 //返回值:读到的数据 uint16_t TP_Read_AD(char CMD) { - 8004904: b580 push {r7, lr} - 8004906: b084 sub sp, #16 - 8004908: af00 add r7, sp, #0 - 800490a: 4603 mov r3, r0 - 800490c: 71fb strb r3, [r7, #7] + 8005028: b580 push {r7, lr} + 800502a: b084 sub sp, #16 + 800502c: af00 add r7, sp, #0 + 800502e: 4603 mov r3, r0 + 8005030: 71fb strb r3, [r7, #7] uint16_t Num=0; - 800490e: 2300 movs r3, #0 - 8004910: 81fb strh r3, [r7, #14] + 8005032: 2300 movs r3, #0 + 8005034: 81fb strh r3, [r7, #14] TCLK(0); //先拉低时钟 - 8004912: 2200 movs r2, #0 - 8004914: 2102 movs r1, #2 - 8004916: 482b ldr r0, [pc, #172] ; (80049c4 ) - 8004918: f7fd fb29 bl 8001f6e + 8005036: 2200 movs r2, #0 + 8005038: 2102 movs r1, #2 + 800503a: 482b ldr r0, [pc, #172] ; (80050e8 ) + 800503c: f7fd f829 bl 8002092 TDIN(0); //拉低数据线 - 800491c: 2200 movs r2, #0 - 800491e: f44f 7100 mov.w r1, #512 ; 0x200 - 8004922: 4829 ldr r0, [pc, #164] ; (80049c8 ) - 8004924: f7fd fb23 bl 8001f6e + 8005040: 2200 movs r2, #0 + 8005042: f44f 7100 mov.w r1, #512 ; 0x200 + 8005046: 4829 ldr r0, [pc, #164] ; (80050ec ) + 8005048: f7fd f823 bl 8002092 TCS(0); //选中触摸屏IC - 8004928: 2200 movs r2, #0 - 800492a: 2104 movs r1, #4 - 800492c: 4825 ldr r0, [pc, #148] ; (80049c4 ) - 800492e: f7fd fb1e bl 8001f6e + 800504c: 2200 movs r2, #0 + 800504e: 2104 movs r1, #4 + 8005050: 4825 ldr r0, [pc, #148] ; (80050e8 ) + 8005052: f7fd f81e bl 8002092 TP_Write_Byte(CMD);//发送命令字 - 8004932: 79fb ldrb r3, [r7, #7] - 8004934: 4618 mov r0, r3 - 8004936: f7ff ffaf bl 8004898 + 8005056: 79fb ldrb r3, [r7, #7] + 8005058: 4618 mov r0, r3 + 800505a: f7ff ffaf bl 8004fbc HAL_GetTick(); //稍微延时,ad转换需要时间 - 800493a: f7fd f85b bl 80019f4 + 800505e: f7fc fd31 bl 8001ac4 HAL_GetTick(); - 800493e: f7fd f859 bl 80019f4 + 8005062: f7fc fd2f bl 8001ac4 HAL_GetTick(); - 8004942: f7fd f857 bl 80019f4 + 8005066: f7fc fd2d bl 8001ac4 HAL_GetTick(); - 8004946: f7fd f855 bl 80019f4 + 800506a: f7fc fd2b bl 8001ac4 HAL_GetTick(); - 800494a: f7fd f853 bl 80019f4 + 800506e: f7fc fd29 bl 8001ac4 HAL_GetTick(); - 800494e: f7fd f851 bl 80019f4 + 8005072: f7fc fd27 bl 8001ac4 TCLK(1); //给1个时钟,清除BUSY - 8004952: 2201 movs r2, #1 - 8004954: 2102 movs r1, #2 - 8004956: 481b ldr r0, [pc, #108] ; (80049c4 ) - 8004958: f7fd fb09 bl 8001f6e + 8005076: 2201 movs r2, #1 + 8005078: 2102 movs r1, #2 + 800507a: 481b ldr r0, [pc, #108] ; (80050e8 ) + 800507c: f7fd f809 bl 8002092 TCLK(0); - 800495c: 2200 movs r2, #0 - 800495e: 2102 movs r1, #2 - 8004960: 4818 ldr r0, [pc, #96] ; (80049c4 ) - 8004962: f7fd fb04 bl 8001f6e + 8005080: 2200 movs r2, #0 + 8005082: 2102 movs r1, #2 + 8005084: 4818 ldr r0, [pc, #96] ; (80050e8 ) + 8005086: f7fd f804 bl 8002092 for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 8004966: 2300 movs r3, #0 - 8004968: 737b strb r3, [r7, #13] - 800496a: e01a b.n 80049a2 + 800508a: 2300 movs r3, #0 + 800508c: 737b strb r3, [r7, #13] + 800508e: e01a b.n 80050c6 { Num<<=1; - 800496c: 89fb ldrh r3, [r7, #14] - 800496e: 005b lsls r3, r3, #1 - 8004970: 81fb strh r3, [r7, #14] + 8005090: 89fb ldrh r3, [r7, #14] + 8005092: 005b lsls r3, r3, #1 + 8005094: 81fb strh r3, [r7, #14] TCLK(0); //下降沿有效 - 8004972: 2200 movs r2, #0 - 8004974: 2102 movs r1, #2 - 8004976: 4813 ldr r0, [pc, #76] ; (80049c4 ) - 8004978: f7fd faf9 bl 8001f6e + 8005096: 2200 movs r2, #0 + 8005098: 2102 movs r1, #2 + 800509a: 4813 ldr r0, [pc, #76] ; (80050e8 ) + 800509c: f7fc fff9 bl 8002092 TCLK(1);; - 800497c: 2201 movs r2, #1 - 800497e: 2102 movs r1, #2 - 8004980: 4810 ldr r0, [pc, #64] ; (80049c4 ) - 8004982: f7fd faf4 bl 8001f6e + 80050a0: 2201 movs r2, #1 + 80050a2: 2102 movs r1, #2 + 80050a4: 4810 ldr r0, [pc, #64] ; (80050e8 ) + 80050a6: f7fc fff4 bl 8002092 if(TDOUT){Num++;} - 8004986: f44f 7180 mov.w r1, #256 ; 0x100 - 800498a: 480f ldr r0, [pc, #60] ; (80049c8 ) - 800498c: f7fd fad8 bl 8001f40 - 8004990: 4603 mov r3, r0 - 8004992: 2b00 cmp r3, #0 - 8004994: d002 beq.n 800499c - 8004996: 89fb ldrh r3, [r7, #14] - 8004998: 3301 adds r3, #1 - 800499a: 81fb strh r3, [r7, #14] + 80050aa: f44f 7180 mov.w r1, #256 ; 0x100 + 80050ae: 480f ldr r0, [pc, #60] ; (80050ec ) + 80050b0: f7fc ffd8 bl 8002064 + 80050b4: 4603 mov r3, r0 + 80050b6: 2b00 cmp r3, #0 + 80050b8: d002 beq.n 80050c0 + 80050ba: 89fb ldrh r3, [r7, #14] + 80050bc: 3301 adds r3, #1 + 80050be: 81fb strh r3, [r7, #14] for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 800499c: 7b7b ldrb r3, [r7, #13] - 800499e: 3301 adds r3, #1 - 80049a0: 737b strb r3, [r7, #13] - 80049a2: 7b7b ldrb r3, [r7, #13] - 80049a4: 2b0f cmp r3, #15 - 80049a6: d9e1 bls.n 800496c + 80050c0: 7b7b ldrb r3, [r7, #13] + 80050c2: 3301 adds r3, #1 + 80050c4: 737b strb r3, [r7, #13] + 80050c6: 7b7b ldrb r3, [r7, #13] + 80050c8: 2b0f cmp r3, #15 + 80050ca: d9e1 bls.n 8005090 } Num>>=4; //只有高12位有效. - 80049a8: 89fb ldrh r3, [r7, #14] - 80049aa: 091b lsrs r3, r3, #4 - 80049ac: 81fb strh r3, [r7, #14] + 80050cc: 89fb ldrh r3, [r7, #14] + 80050ce: 091b lsrs r3, r3, #4 + 80050d0: 81fb strh r3, [r7, #14] TCS(1); //释放片选 - 80049ae: 2201 movs r2, #1 - 80049b0: 2104 movs r1, #4 - 80049b2: 4804 ldr r0, [pc, #16] ; (80049c4 ) - 80049b4: f7fd fadb bl 8001f6e + 80050d2: 2201 movs r2, #1 + 80050d4: 2104 movs r1, #4 + 80050d6: 4804 ldr r0, [pc, #16] ; (80050e8 ) + 80050d8: f7fc ffdb bl 8002092 return(Num); - 80049b8: 89fb ldrh r3, [r7, #14] + 80050dc: 89fb ldrh r3, [r7, #14] } - 80049ba: 4618 mov r0, r3 - 80049bc: 3710 adds r7, #16 - 80049be: 46bd mov sp, r7 - 80049c0: bd80 pop {r7, pc} - 80049c2: bf00 nop - 80049c4: 40010c00 .word 0x40010c00 - 80049c8: 40011c00 .word 0x40011c00 + 80050de: 4618 mov r0, r3 + 80050e0: 3710 adds r7, #16 + 80050e2: 46bd mov sp, r7 + 80050e4: bd80 pop {r7, pc} + 80050e6: bf00 nop + 80050e8: 40010c00 .word 0x40010c00 + 80050ec: 40011c00 .word 0x40011c00 -080049cc : +080050f0 : //xy:指令(CMD_RDX/CMD_RDY) //返回值:读到的数据 #define READ_TIMES 5 //读取次数 #define LOST_VAL 1 //丢弃值 uint16_t TP_Read_XOY(uint8_t xy) { - 80049cc: b590 push {r4, r7, lr} - 80049ce: b089 sub sp, #36 ; 0x24 - 80049d0: af00 add r7, sp, #0 - 80049d2: 4603 mov r3, r0 - 80049d4: 71fb strb r3, [r7, #7] + 80050f0: b590 push {r4, r7, lr} + 80050f2: b089 sub sp, #36 ; 0x24 + 80050f4: af00 add r7, sp, #0 + 80050f6: 4603 mov r3, r0 + 80050f8: 71fb strb r3, [r7, #7] uint16_t i, j; uint16_t buf[READ_TIMES]; uint16_t sum=0; - 80049d6: 2300 movs r3, #0 - 80049d8: 837b strh r3, [r7, #26] + 80050fa: 2300 movs r3, #0 + 80050fc: 837b strh r3, [r7, #26] uint16_t temp; for(i=0;i - 80049e0: 8bfc ldrh r4, [r7, #30] - 80049e2: 79fb ldrb r3, [r7, #7] - 80049e4: 4618 mov r0, r3 - 80049e6: f7ff ff8d bl 8004904 - 80049ea: 4603 mov r3, r0 - 80049ec: 461a mov r2, r3 - 80049ee: 0063 lsls r3, r4, #1 - 80049f0: f107 0120 add.w r1, r7, #32 - 80049f4: 440b add r3, r1 - 80049f6: f823 2c14 strh.w r2, [r3, #-20] - 80049fa: 8bfb ldrh r3, [r7, #30] - 80049fc: 3301 adds r3, #1 - 80049fe: 83fb strh r3, [r7, #30] - 8004a00: 8bfb ldrh r3, [r7, #30] - 8004a02: 2b04 cmp r3, #4 - 8004a04: d9ec bls.n 80049e0 + 80050fe: 2300 movs r3, #0 + 8005100: 83fb strh r3, [r7, #30] + 8005102: e00f b.n 8005124 + 8005104: 8bfc ldrh r4, [r7, #30] + 8005106: 79fb ldrb r3, [r7, #7] + 8005108: 4618 mov r0, r3 + 800510a: f7ff ff8d bl 8005028 + 800510e: 4603 mov r3, r0 + 8005110: 461a mov r2, r3 + 8005112: 0063 lsls r3, r4, #1 + 8005114: f107 0120 add.w r1, r7, #32 + 8005118: 440b add r3, r1 + 800511a: f823 2c14 strh.w r2, [r3, #-20] + 800511e: 8bfb ldrh r3, [r7, #30] + 8005120: 3301 adds r3, #1 + 8005122: 83fb strh r3, [r7, #30] + 8005124: 8bfb ldrh r3, [r7, #30] + 8005126: 2b04 cmp r3, #4 + 8005128: d9ec bls.n 8005104 for(i=0;i + 800512a: 2300 movs r3, #0 + 800512c: 83fb strh r3, [r7, #30] + 800512e: e03b b.n 80051a8 { for(j=i+1;j + 8005130: 8bfb ldrh r3, [r7, #30] + 8005132: 3301 adds r3, #1 + 8005134: 83bb strh r3, [r7, #28] + 8005136: e031 b.n 800519c { if(buf[i]>buf[j])//升序排列 - 8004a14: 8bfb ldrh r3, [r7, #30] - 8004a16: 005b lsls r3, r3, #1 - 8004a18: f107 0220 add.w r2, r7, #32 - 8004a1c: 4413 add r3, r2 - 8004a1e: f833 2c14 ldrh.w r2, [r3, #-20] - 8004a22: 8bbb ldrh r3, [r7, #28] - 8004a24: 005b lsls r3, r3, #1 - 8004a26: f107 0120 add.w r1, r7, #32 - 8004a2a: 440b add r3, r1 - 8004a2c: f833 3c14 ldrh.w r3, [r3, #-20] - 8004a30: 429a cmp r2, r3 - 8004a32: d91e bls.n 8004a72 + 8005138: 8bfb ldrh r3, [r7, #30] + 800513a: 005b lsls r3, r3, #1 + 800513c: f107 0220 add.w r2, r7, #32 + 8005140: 4413 add r3, r2 + 8005142: f833 2c14 ldrh.w r2, [r3, #-20] + 8005146: 8bbb ldrh r3, [r7, #28] + 8005148: 005b lsls r3, r3, #1 + 800514a: f107 0120 add.w r1, r7, #32 + 800514e: 440b add r3, r1 + 8005150: f833 3c14 ldrh.w r3, [r3, #-20] + 8005154: 429a cmp r2, r3 + 8005156: d91e bls.n 8005196 { temp=buf[i]; - 8004a34: 8bfb ldrh r3, [r7, #30] - 8004a36: 005b lsls r3, r3, #1 - 8004a38: f107 0220 add.w r2, r7, #32 - 8004a3c: 4413 add r3, r2 - 8004a3e: f833 3c14 ldrh.w r3, [r3, #-20] - 8004a42: 833b strh r3, [r7, #24] + 8005158: 8bfb ldrh r3, [r7, #30] + 800515a: 005b lsls r3, r3, #1 + 800515c: f107 0220 add.w r2, r7, #32 + 8005160: 4413 add r3, r2 + 8005162: f833 3c14 ldrh.w r3, [r3, #-20] + 8005166: 833b strh r3, [r7, #24] buf[i]=buf[j]; - 8004a44: 8bbb ldrh r3, [r7, #28] - 8004a46: 8bfa ldrh r2, [r7, #30] - 8004a48: 005b lsls r3, r3, #1 - 8004a4a: f107 0120 add.w r1, r7, #32 - 8004a4e: 440b add r3, r1 - 8004a50: f833 1c14 ldrh.w r1, [r3, #-20] - 8004a54: 0053 lsls r3, r2, #1 - 8004a56: f107 0220 add.w r2, r7, #32 - 8004a5a: 4413 add r3, r2 - 8004a5c: 460a mov r2, r1 - 8004a5e: f823 2c14 strh.w r2, [r3, #-20] + 8005168: 8bbb ldrh r3, [r7, #28] + 800516a: 8bfa ldrh r2, [r7, #30] + 800516c: 005b lsls r3, r3, #1 + 800516e: f107 0120 add.w r1, r7, #32 + 8005172: 440b add r3, r1 + 8005174: f833 1c14 ldrh.w r1, [r3, #-20] + 8005178: 0053 lsls r3, r2, #1 + 800517a: f107 0220 add.w r2, r7, #32 + 800517e: 4413 add r3, r2 + 8005180: 460a mov r2, r1 + 8005182: f823 2c14 strh.w r2, [r3, #-20] buf[j]=temp; - 8004a62: 8bbb ldrh r3, [r7, #28] - 8004a64: 005b lsls r3, r3, #1 - 8004a66: f107 0220 add.w r2, r7, #32 - 8004a6a: 4413 add r3, r2 - 8004a6c: 8b3a ldrh r2, [r7, #24] - 8004a6e: f823 2c14 strh.w r2, [r3, #-20] + 8005186: 8bbb ldrh r3, [r7, #28] + 8005188: 005b lsls r3, r3, #1 + 800518a: f107 0220 add.w r2, r7, #32 + 800518e: 4413 add r3, r2 + 8005190: 8b3a ldrh r2, [r7, #24] + 8005192: f823 2c14 strh.w r2, [r3, #-20] for(j=i+1;j + 8005196: 8bbb ldrh r3, [r7, #28] + 8005198: 3301 adds r3, #1 + 800519a: 83bb strh r3, [r7, #28] + 800519c: 8bbb ldrh r3, [r7, #28] + 800519e: 2b04 cmp r3, #4 + 80051a0: d9ca bls.n 8005138 for(i=0;i + 80051a2: 8bfb ldrh r3, [r7, #30] + 80051a4: 3301 adds r3, #1 + 80051a6: 83fb strh r3, [r7, #30] + 80051a8: 8bfb ldrh r3, [r7, #30] + 80051aa: 2b03 cmp r3, #3 + 80051ac: d9c0 bls.n 8005130 } } } sum=0; - 8004a8a: 2300 movs r3, #0 - 8004a8c: 837b strh r3, [r7, #26] + 80051ae: 2300 movs r3, #0 + 80051b0: 837b strh r3, [r7, #26] for(i=LOST_VAL;i - 8004a94: 8bfb ldrh r3, [r7, #30] - 8004a96: 005b lsls r3, r3, #1 - 8004a98: f107 0220 add.w r2, r7, #32 - 8004a9c: 4413 add r3, r2 - 8004a9e: f833 2c14 ldrh.w r2, [r3, #-20] - 8004aa2: 8b7b ldrh r3, [r7, #26] - 8004aa4: 4413 add r3, r2 - 8004aa6: 837b strh r3, [r7, #26] - 8004aa8: 8bfb ldrh r3, [r7, #30] - 8004aaa: 3301 adds r3, #1 - 8004aac: 83fb strh r3, [r7, #30] - 8004aae: 8bfb ldrh r3, [r7, #30] - 8004ab0: 2b03 cmp r3, #3 - 8004ab2: d9ef bls.n 8004a94 + 80051b2: 2301 movs r3, #1 + 80051b4: 83fb strh r3, [r7, #30] + 80051b6: e00c b.n 80051d2 + 80051b8: 8bfb ldrh r3, [r7, #30] + 80051ba: 005b lsls r3, r3, #1 + 80051bc: f107 0220 add.w r2, r7, #32 + 80051c0: 4413 add r3, r2 + 80051c2: f833 2c14 ldrh.w r2, [r3, #-20] + 80051c6: 8b7b ldrh r3, [r7, #26] + 80051c8: 4413 add r3, r2 + 80051ca: 837b strh r3, [r7, #26] + 80051cc: 8bfb ldrh r3, [r7, #30] + 80051ce: 3301 adds r3, #1 + 80051d0: 83fb strh r3, [r7, #30] + 80051d2: 8bfb ldrh r3, [r7, #30] + 80051d4: 2b03 cmp r3, #3 + 80051d6: d9ef bls.n 80051b8 temp=sum/(READ_TIMES-2*LOST_VAL); - 8004ab4: 8b7b ldrh r3, [r7, #26] - 8004ab6: 4a05 ldr r2, [pc, #20] ; (8004acc ) - 8004ab8: fba2 2303 umull r2, r3, r2, r3 - 8004abc: 085b lsrs r3, r3, #1 - 8004abe: 833b strh r3, [r7, #24] + 80051d8: 8b7b ldrh r3, [r7, #26] + 80051da: 4a05 ldr r2, [pc, #20] ; (80051f0 ) + 80051dc: fba2 2303 umull r2, r3, r2, r3 + 80051e0: 085b lsrs r3, r3, #1 + 80051e2: 833b strh r3, [r7, #24] return temp; - 8004ac0: 8b3b ldrh r3, [r7, #24] + 80051e4: 8b3b ldrh r3, [r7, #24] } - 8004ac2: 4618 mov r0, r3 - 8004ac4: 3724 adds r7, #36 ; 0x24 - 8004ac6: 46bd mov sp, r7 - 8004ac8: bd90 pop {r4, r7, pc} - 8004aca: bf00 nop - 8004acc: aaaaaaab .word 0xaaaaaaab + 80051e6: 4618 mov r0, r3 + 80051e8: 3724 adds r7, #36 ; 0x24 + 80051ea: 46bd mov sp, r7 + 80051ec: bd90 pop {r4, r7, pc} + 80051ee: bf00 nop + 80051f0: aaaaaaab .word 0xaaaaaaab -08004ad0 : +080051f4 : //读取x,y坐标 //x,y:读取到的坐标ADC值 void TP_Read_XY_ADC(int16_t *x,int16_t *y) { - 8004ad0: b580 push {r7, lr} - 8004ad2: b084 sub sp, #16 - 8004ad4: af00 add r7, sp, #0 - 8004ad6: 6078 str r0, [r7, #4] - 8004ad8: 6039 str r1, [r7, #0] + 80051f4: b580 push {r7, lr} + 80051f6: b084 sub sp, #16 + 80051f8: af00 add r7, sp, #0 + 80051fa: 6078 str r0, [r7, #4] + 80051fc: 6039 str r1, [r7, #0] int16_t xtemp,ytemp; xtemp=TP_Read_XOY(CMD_RDX); - 8004ada: 2090 movs r0, #144 ; 0x90 - 8004adc: f7ff ff76 bl 80049cc - 8004ae0: 4603 mov r3, r0 - 8004ae2: 81fb strh r3, [r7, #14] + 80051fe: 2090 movs r0, #144 ; 0x90 + 8005200: f7ff ff76 bl 80050f0 + 8005204: 4603 mov r3, r0 + 8005206: 81fb strh r3, [r7, #14] ytemp=TP_Read_XOY(CMD_RDY); - 8004ae4: 20d0 movs r0, #208 ; 0xd0 - 8004ae6: f7ff ff71 bl 80049cc - 8004aea: 4603 mov r3, r0 - 8004aec: 81bb strh r3, [r7, #12] + 8005208: 20d0 movs r0, #208 ; 0xd0 + 800520a: f7ff ff71 bl 80050f0 + 800520e: 4603 mov r3, r0 + 8005210: 81bb strh r3, [r7, #12] *x=xtemp; - 8004aee: 687b ldr r3, [r7, #4] - 8004af0: 89fa ldrh r2, [r7, #14] - 8004af2: 801a strh r2, [r3, #0] + 8005212: 687b ldr r3, [r7, #4] + 8005214: 89fa ldrh r2, [r7, #14] + 8005216: 801a strh r2, [r3, #0] *y=ytemp; - 8004af4: 683b ldr r3, [r7, #0] - 8004af6: 89ba ldrh r2, [r7, #12] - 8004af8: 801a strh r2, [r3, #0] + 8005218: 683b ldr r3, [r7, #0] + 800521a: 89ba ldrh r2, [r7, #12] + 800521c: 801a strh r2, [r3, #0] } - 8004afa: bf00 nop - 8004afc: 3710 adds r7, #16 - 8004afe: 46bd mov sp, r7 - 8004b00: bd80 pop {r7, pc} + 800521e: bf00 nop + 8005220: 3710 adds r7, #16 + 8005222: 46bd mov sp, r7 + 8005224: bd80 pop {r7, pc} -08004b02 : +08005226 : //该函数能大大提高准确度 //x,y:读取到的坐标值 //返回值:0,失败;1,成功。 #define ERR_RANGE 10 //误差范围 uint8_t TP_Read_XY2(int16_t *x,int16_t *y) { - 8004b02: b580 push {r7, lr} - 8004b04: b084 sub sp, #16 - 8004b06: af00 add r7, sp, #0 - 8004b08: 6078 str r0, [r7, #4] - 8004b0a: 6039 str r1, [r7, #0] + 8005226: b580 push {r7, lr} + 8005228: b084 sub sp, #16 + 800522a: af00 add r7, sp, #0 + 800522c: 6078 str r0, [r7, #4] + 800522e: 6039 str r1, [r7, #0] int16_t x1,y1; int16_t x2,y2; TP_Read_XY_ADC(&x1,&y1); - 8004b0c: f107 020c add.w r2, r7, #12 - 8004b10: f107 030e add.w r3, r7, #14 - 8004b14: 4611 mov r1, r2 - 8004b16: 4618 mov r0, r3 - 8004b18: f7ff ffda bl 8004ad0 + 8005230: f107 020c add.w r2, r7, #12 + 8005234: f107 030e add.w r3, r7, #14 + 8005238: 4611 mov r1, r2 + 800523a: 4618 mov r0, r3 + 800523c: f7ff ffda bl 80051f4 TP_Read_XY_ADC(&x2,&y2); - 8004b1c: f107 0208 add.w r2, r7, #8 - 8004b20: f107 030a add.w r3, r7, #10 - 8004b24: 4611 mov r1, r2 - 8004b26: 4618 mov r0, r3 - 8004b28: f7ff ffd2 bl 8004ad0 + 8005240: f107 0208 add.w r2, r7, #8 + 8005244: f107 030a add.w r3, r7, #10 + 8005248: 4611 mov r1, r2 + 800524a: 4618 mov r0, r3 + 800524c: f7ff ffd2 bl 80051f4 if(((x2<=x1&&x1 - 8004b38: f9b7 300a ldrsh.w r3, [r7, #10] - 8004b3c: 3309 adds r3, #9 - 8004b3e: f9b7 200e ldrsh.w r2, [r7, #14] - 8004b42: 4293 cmp r3, r2 - 8004b44: da0c bge.n 8004b60 - 8004b46: f9b7 200e ldrsh.w r2, [r7, #14] - 8004b4a: f9b7 300a ldrsh.w r3, [r7, #10] - 8004b4e: 429a cmp r2, r3 - 8004b50: dc3a bgt.n 8004bc8 - 8004b52: f9b7 300e ldrsh.w r3, [r7, #14] - 8004b56: 3309 adds r3, #9 - 8004b58: f9b7 200a ldrsh.w r2, [r7, #10] - 8004b5c: 4293 cmp r3, r2 - 8004b5e: db33 blt.n 8004bc8 + 8005250: f9b7 200a ldrsh.w r2, [r7, #10] + 8005254: f9b7 300e ldrsh.w r3, [r7, #14] + 8005258: 429a cmp r2, r3 + 800525a: dc06 bgt.n 800526a + 800525c: f9b7 300a ldrsh.w r3, [r7, #10] + 8005260: 3309 adds r3, #9 + 8005262: f9b7 200e ldrsh.w r2, [r7, #14] + 8005266: 4293 cmp r3, r2 + 8005268: da0c bge.n 8005284 + 800526a: f9b7 200e ldrsh.w r2, [r7, #14] + 800526e: f9b7 300a ldrsh.w r3, [r7, #10] + 8005272: 429a cmp r2, r3 + 8005274: dc3a bgt.n 80052ec + 8005276: f9b7 300e ldrsh.w r3, [r7, #14] + 800527a: 3309 adds r3, #9 + 800527c: f9b7 200a ldrsh.w r2, [r7, #10] + 8005280: 4293 cmp r3, r2 + 8005282: db33 blt.n 80052ec &&((y2<=y1&&y1 - 8004b6c: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004b70: 3309 adds r3, #9 - 8004b72: f9b7 200c ldrsh.w r2, [r7, #12] - 8004b76: 4293 cmp r3, r2 - 8004b78: da0c bge.n 8004b94 - 8004b7a: f9b7 200c ldrsh.w r2, [r7, #12] - 8004b7e: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004b82: 429a cmp r2, r3 - 8004b84: dc20 bgt.n 8004bc8 - 8004b86: f9b7 300c ldrsh.w r3, [r7, #12] - 8004b8a: 3309 adds r3, #9 - 8004b8c: f9b7 2008 ldrsh.w r2, [r7, #8] - 8004b90: 4293 cmp r3, r2 - 8004b92: db19 blt.n 8004bc8 + 8005284: f9b7 2008 ldrsh.w r2, [r7, #8] + 8005288: f9b7 300c ldrsh.w r3, [r7, #12] + 800528c: 429a cmp r2, r3 + 800528e: dc06 bgt.n 800529e + 8005290: f9b7 3008 ldrsh.w r3, [r7, #8] + 8005294: 3309 adds r3, #9 + 8005296: f9b7 200c ldrsh.w r2, [r7, #12] + 800529a: 4293 cmp r3, r2 + 800529c: da0c bge.n 80052b8 + 800529e: f9b7 200c ldrsh.w r2, [r7, #12] + 80052a2: f9b7 3008 ldrsh.w r3, [r7, #8] + 80052a6: 429a cmp r2, r3 + 80052a8: dc20 bgt.n 80052ec + 80052aa: f9b7 300c ldrsh.w r3, [r7, #12] + 80052ae: 3309 adds r3, #9 + 80052b0: f9b7 2008 ldrsh.w r2, [r7, #8] + 80052b4: 4293 cmp r3, r2 + 80052b6: db19 blt.n 80052ec { *x=(x1+x2)/2; - 8004b94: f9b7 300e ldrsh.w r3, [r7, #14] - 8004b98: 461a mov r2, r3 - 8004b9a: f9b7 300a ldrsh.w r3, [r7, #10] - 8004b9e: 4413 add r3, r2 - 8004ba0: 0fda lsrs r2, r3, #31 - 8004ba2: 4413 add r3, r2 - 8004ba4: 105b asrs r3, r3, #1 - 8004ba6: b21a sxth r2, r3 - 8004ba8: 687b ldr r3, [r7, #4] - 8004baa: 801a strh r2, [r3, #0] + 80052b8: f9b7 300e ldrsh.w r3, [r7, #14] + 80052bc: 461a mov r2, r3 + 80052be: f9b7 300a ldrsh.w r3, [r7, #10] + 80052c2: 4413 add r3, r2 + 80052c4: 0fda lsrs r2, r3, #31 + 80052c6: 4413 add r3, r2 + 80052c8: 105b asrs r3, r3, #1 + 80052ca: b21a sxth r2, r3 + 80052cc: 687b ldr r3, [r7, #4] + 80052ce: 801a strh r2, [r3, #0] *y=(y1+y2)/2; - 8004bac: f9b7 300c ldrsh.w r3, [r7, #12] - 8004bb0: 461a mov r2, r3 - 8004bb2: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004bb6: 4413 add r3, r2 - 8004bb8: 0fda lsrs r2, r3, #31 - 8004bba: 4413 add r3, r2 - 8004bbc: 105b asrs r3, r3, #1 - 8004bbe: b21a sxth r2, r3 - 8004bc0: 683b ldr r3, [r7, #0] - 8004bc2: 801a strh r2, [r3, #0] + 80052d0: f9b7 300c ldrsh.w r3, [r7, #12] + 80052d4: 461a mov r2, r3 + 80052d6: f9b7 3008 ldrsh.w r3, [r7, #8] + 80052da: 4413 add r3, r2 + 80052dc: 0fda lsrs r2, r3, #31 + 80052de: 4413 add r3, r2 + 80052e0: 105b asrs r3, r3, #1 + 80052e2: b21a sxth r2, r3 + 80052e4: 683b ldr r3, [r7, #0] + 80052e6: 801a strh r2, [r3, #0] return 1; - 8004bc4: 2301 movs r3, #1 - 8004bc6: e000 b.n 8004bca + 80052e8: 2301 movs r3, #1 + 80052ea: e000 b.n 80052ee }else return 0; - 8004bc8: 2300 movs r3, #0 + 80052ec: 2300 movs r3, #0 } - 8004bca: 4618 mov r0, r3 - 8004bcc: 3710 adds r7, #16 - 8004bce: 46bd mov sp, r7 - 8004bd0: bd80 pop {r7, pc} + 80052ee: 4618 mov r0, r3 + 80052f0: 3710 adds r7, #16 + 80052f2: 46bd mov sp, r7 + 80052f4: bd80 pop {r7, pc} ... -08004bd4 : +080052f8 : touch_device t0;// t0 yyds~ touch_config tconfig; //触摸更新服务,状态机写法,循环获取坐标 void TP_Server() { - 8004bd4: b598 push {r3, r4, r7, lr} - 8004bd6: af00 add r7, sp, #0 + 80052f8: b598 push {r3, r4, r7, lr} + 80052fa: af00 add r7, sp, #0 if(TPEN==0) //如果有触摸 - 8004bd8: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004bdc: 4835 ldr r0, [pc, #212] ; (8004cb4 ) - 8004bde: f7fd f9af bl 8001f40 - 8004be2: 4603 mov r3, r0 - 8004be4: 2b00 cmp r3, #0 - 8004be6: d155 bne.n 8004c94 + 80052fc: f44f 6180 mov.w r1, #1024 ; 0x400 + 8005300: 4835 ldr r0, [pc, #212] ; (80053d8 ) + 8005302: f7fc feaf bl 8002064 + 8005306: 4603 mov r3, r0 + 8005308: 2b00 cmp r3, #0 + 800530a: d155 bne.n 80053b8 { if(TP_Read_XY2(&t0.adc_x,&t0.adc_y)) - 8004be8: 4933 ldr r1, [pc, #204] ; (8004cb8 ) - 8004bea: 4834 ldr r0, [pc, #208] ; (8004cbc ) - 8004bec: f7ff ff89 bl 8004b02 - 8004bf0: 4603 mov r3, r0 - 8004bf2: 2b00 cmp r3, #0 - 8004bf4: d043 beq.n 8004c7e + 800530c: 4933 ldr r1, [pc, #204] ; (80053dc ) + 800530e: 4834 ldr r0, [pc, #208] ; (80053e0 ) + 8005310: f7ff ff89 bl 8005226 + 8005314: 4603 mov r3, r0 + 8005316: 2b00 cmp r3, #0 + 8005318: d043 beq.n 80053a2 {//先读取ad值 t0.pix_x=(t0.adc_x/tconfig.x_acc)-tconfig.x_offset;//转换为像素坐标 - 8004bf6: 4b31 ldr r3, [pc, #196] ; (8004cbc ) - 8004bf8: 881b ldrh r3, [r3, #0] - 8004bfa: 4618 mov r0, r3 - 8004bfc: f7fc f8ba bl 8000d74 <__aeabi_i2f> - 8004c00: 4602 mov r2, r0 - 8004c02: 4b2f ldr r3, [pc, #188] ; (8004cc0 ) - 8004c04: 685b ldr r3, [r3, #4] - 8004c06: 4619 mov r1, r3 - 8004c08: 4610 mov r0, r2 - 8004c0a: f7fc f9bb bl 8000f84 <__aeabi_fdiv> - 8004c0e: 4603 mov r3, r0 - 8004c10: 461c mov r4, r3 - 8004c12: 4b2b ldr r3, [pc, #172] ; (8004cc0 ) - 8004c14: 68db ldr r3, [r3, #12] - 8004c16: 4618 mov r0, r3 - 8004c18: f7fc f8ac bl 8000d74 <__aeabi_i2f> - 8004c1c: 4603 mov r3, r0 - 8004c1e: 4619 mov r1, r3 - 8004c20: 4620 mov r0, r4 - 8004c22: f7fb fff1 bl 8000c08 <__aeabi_fsub> - 8004c26: 4603 mov r3, r0 - 8004c28: 4618 mov r0, r3 - 8004c2a: f7fc fad3 bl 80011d4 <__aeabi_f2iz> - 8004c2e: 4603 mov r3, r0 - 8004c30: 4a22 ldr r2, [pc, #136] ; (8004cbc ) - 8004c32: 6053 str r3, [r2, #4] + 800531a: 4b31 ldr r3, [pc, #196] ; (80053e0 ) + 800531c: 881b ldrh r3, [r3, #0] + 800531e: 4618 mov r0, r3 + 8005320: f7fb fd28 bl 8000d74 <__aeabi_i2f> + 8005324: 4602 mov r2, r0 + 8005326: 4b2f ldr r3, [pc, #188] ; (80053e4 ) + 8005328: 685b ldr r3, [r3, #4] + 800532a: 4619 mov r1, r3 + 800532c: 4610 mov r0, r2 + 800532e: f7fb fe29 bl 8000f84 <__aeabi_fdiv> + 8005332: 4603 mov r3, r0 + 8005334: 461c mov r4, r3 + 8005336: 4b2b ldr r3, [pc, #172] ; (80053e4 ) + 8005338: 68db ldr r3, [r3, #12] + 800533a: 4618 mov r0, r3 + 800533c: f7fb fd1a bl 8000d74 <__aeabi_i2f> + 8005340: 4603 mov r3, r0 + 8005342: 4619 mov r1, r3 + 8005344: 4620 mov r0, r4 + 8005346: f7fb fc5f bl 8000c08 <__aeabi_fsub> + 800534a: 4603 mov r3, r0 + 800534c: 4618 mov r0, r3 + 800534e: f7fb ff41 bl 80011d4 <__aeabi_f2iz> + 8005352: 4603 mov r3, r0 + 8005354: 4a22 ldr r2, [pc, #136] ; (80053e0 ) + 8005356: 6053 str r3, [r2, #4] t0.pix_y=(t0.adc_y/tconfig.y_acc)-tconfig.y_offset; - 8004c34: 4b21 ldr r3, [pc, #132] ; (8004cbc ) - 8004c36: 885b ldrh r3, [r3, #2] - 8004c38: 4618 mov r0, r3 - 8004c3a: f7fc f89b bl 8000d74 <__aeabi_i2f> - 8004c3e: 4602 mov r2, r0 - 8004c40: 4b1f ldr r3, [pc, #124] ; (8004cc0 ) - 8004c42: 689b ldr r3, [r3, #8] - 8004c44: 4619 mov r1, r3 - 8004c46: 4610 mov r0, r2 - 8004c48: f7fc f99c bl 8000f84 <__aeabi_fdiv> - 8004c4c: 4603 mov r3, r0 - 8004c4e: 461c mov r4, r3 - 8004c50: 4b1b ldr r3, [pc, #108] ; (8004cc0 ) - 8004c52: 691b ldr r3, [r3, #16] - 8004c54: 4618 mov r0, r3 - 8004c56: f7fc f88d bl 8000d74 <__aeabi_i2f> - 8004c5a: 4603 mov r3, r0 - 8004c5c: 4619 mov r1, r3 - 8004c5e: 4620 mov r0, r4 - 8004c60: f7fb ffd2 bl 8000c08 <__aeabi_fsub> - 8004c64: 4603 mov r3, r0 - 8004c66: 4618 mov r0, r3 - 8004c68: f7fc fab4 bl 80011d4 <__aeabi_f2iz> - 8004c6c: 4603 mov r3, r0 - 8004c6e: 4a13 ldr r2, [pc, #76] ; (8004cbc ) - 8004c70: 6093 str r3, [r2, #8] + 8005358: 4b21 ldr r3, [pc, #132] ; (80053e0 ) + 800535a: 885b ldrh r3, [r3, #2] + 800535c: 4618 mov r0, r3 + 800535e: f7fb fd09 bl 8000d74 <__aeabi_i2f> + 8005362: 4602 mov r2, r0 + 8005364: 4b1f ldr r3, [pc, #124] ; (80053e4 ) + 8005366: 689b ldr r3, [r3, #8] + 8005368: 4619 mov r1, r3 + 800536a: 4610 mov r0, r2 + 800536c: f7fb fe0a bl 8000f84 <__aeabi_fdiv> + 8005370: 4603 mov r3, r0 + 8005372: 461c mov r4, r3 + 8005374: 4b1b ldr r3, [pc, #108] ; (80053e4 ) + 8005376: 691b ldr r3, [r3, #16] + 8005378: 4618 mov r0, r3 + 800537a: f7fb fcfb bl 8000d74 <__aeabi_i2f> + 800537e: 4603 mov r3, r0 + 8005380: 4619 mov r1, r3 + 8005382: 4620 mov r0, r4 + 8005384: f7fb fc40 bl 8000c08 <__aeabi_fsub> + 8005388: 4603 mov r3, r0 + 800538a: 4618 mov r0, r3 + 800538c: f7fb ff22 bl 80011d4 <__aeabi_f2iz> + 8005390: 4603 mov r3, r0 + 8005392: 4a13 ldr r2, [pc, #76] ; (80053e0 ) + 8005394: 6093 str r3, [r2, #8] t0.d=1; - 8004c72: 4a12 ldr r2, [pc, #72] ; (8004cbc ) - 8004c74: 7b13 ldrb r3, [r2, #12] - 8004c76: f043 0304 orr.w r3, r3, #4 - 8004c7a: 7313 strb r3, [r2, #12] - 8004c7c: e004 b.n 8004c88 + 8005396: 4a12 ldr r2, [pc, #72] ; (80053e0 ) + 8005398: 7b13 ldrb r3, [r2, #12] + 800539a: f043 0304 orr.w r3, r3, #4 + 800539e: 7313 strb r3, [r2, #12] + 80053a0: e004 b.n 80053ac }else { t0.d=0; - 8004c7e: 4a0f ldr r2, [pc, #60] ; (8004cbc ) - 8004c80: 7b13 ldrb r3, [r2, #12] - 8004c82: f36f 0382 bfc r3, #2, #1 - 8004c86: 7313 strb r3, [r2, #12] + 80053a2: 4a0f ldr r2, [pc, #60] ; (80053e0 ) + 80053a4: 7b13 ldrb r3, [r2, #12] + 80053a6: f36f 0382 bfc r3, #2, #1 + 80053aa: 7313 strb r3, [r2, #12] } t0.c=1; - 8004c88: 4a0c ldr r2, [pc, #48] ; (8004cbc ) - 8004c8a: 7b13 ldrb r3, [r2, #12] - 8004c8c: f043 0302 orr.w r3, r3, #2 - 8004c90: 7313 strb r3, [r2, #12] + 80053ac: 4a0c ldr r2, [pc, #48] ; (80053e0 ) + 80053ae: 7b13 ldrb r3, [r2, #12] + 80053b0: f043 0302 orr.w r3, r3, #2 + 80053b4: 7313 strb r3, [r2, #12] { t0.c=0; t0.pix_x=-1; t0.pix_y=-1; } } - 8004c92: e00c b.n 8004cae + 80053b6: e00c b.n 80053d2 t0.c=0; - 8004c94: 4a09 ldr r2, [pc, #36] ; (8004cbc ) - 8004c96: 7b13 ldrb r3, [r2, #12] - 8004c98: f36f 0341 bfc r3, #1, #1 - 8004c9c: 7313 strb r3, [r2, #12] + 80053b8: 4a09 ldr r2, [pc, #36] ; (80053e0 ) + 80053ba: 7b13 ldrb r3, [r2, #12] + 80053bc: f36f 0341 bfc r3, #1, #1 + 80053c0: 7313 strb r3, [r2, #12] t0.pix_x=-1; - 8004c9e: 4b07 ldr r3, [pc, #28] ; (8004cbc ) - 8004ca0: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8004ca4: 605a str r2, [r3, #4] + 80053c2: 4b07 ldr r3, [pc, #28] ; (80053e0 ) + 80053c4: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 80053c8: 605a str r2, [r3, #4] t0.pix_y=-1; - 8004ca6: 4b05 ldr r3, [pc, #20] ; (8004cbc ) - 8004ca8: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8004cac: 609a str r2, [r3, #8] + 80053ca: 4b05 ldr r3, [pc, #20] ; (80053e0 ) + 80053cc: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 80053d0: 609a str r2, [r3, #8] } - 8004cae: bf00 nop - 8004cb0: bd98 pop {r3, r4, r7, pc} - 8004cb2: bf00 nop - 8004cb4: 40011c00 .word 0x40011c00 - 8004cb8: 200002f2 .word 0x200002f2 - 8004cbc: 200002f0 .word 0x200002f0 - 8004cc0: 200002d8 .word 0x200002d8 + 80053d2: bf00 nop + 80053d4: bd98 pop {r3, r4, r7, pc} + 80053d6: bf00 nop + 80053d8: 40011c00 .word 0x40011c00 + 80053dc: 2000033a .word 0x2000033a + 80053e0: 20000338 .word 0x20000338 + 80053e4: 20000320 .word 0x20000320 -08004cc4 : +080053e8 : return 0; } //校准用,画一个目标坐标 //r=坐标半径,显示特效用 void TP_DrwaTrage(int x,int y,int r) { - 8004cc4: b590 push {r4, r7, lr} - 8004cc6: b087 sub sp, #28 - 8004cc8: af02 add r7, sp, #8 - 8004cca: 60f8 str r0, [r7, #12] - 8004ccc: 60b9 str r1, [r7, #8] - 8004cce: 607a str r2, [r7, #4] + 80053e8: b590 push {r4, r7, lr} + 80053ea: b087 sub sp, #28 + 80053ec: af02 add r7, sp, #8 + 80053ee: 60f8 str r0, [r7, #12] + 80053f0: 60b9 str r1, [r7, #8] + 80053f2: 607a str r2, [r7, #4] Draw_Circle(x,y,r+1,GRAY); - 8004cd0: 68fb ldr r3, [r7, #12] - 8004cd2: b298 uxth r0, r3 - 8004cd4: 68bb ldr r3, [r7, #8] - 8004cd6: b299 uxth r1, r3 - 8004cd8: 687b ldr r3, [r7, #4] - 8004cda: b29b uxth r3, r3 - 8004cdc: 3301 adds r3, #1 - 8004cde: b29a uxth r2, r3 - 8004ce0: f248 4330 movw r3, #33840 ; 0x8430 - 8004ce4: f7ff fb7f bl 80043e6 + 80053f4: 68fb ldr r3, [r7, #12] + 80053f6: b298 uxth r0, r3 + 80053f8: 68bb ldr r3, [r7, #8] + 80053fa: b299 uxth r1, r3 + 80053fc: 687b ldr r3, [r7, #4] + 80053fe: b29b uxth r3, r3 + 8005400: 3301 adds r3, #1 + 8005402: b29a uxth r2, r3 + 8005404: f248 4330 movw r3, #33840 ; 0x8430 + 8005408: f7ff fb7f bl 8004b0a Draw_Circle(x,y,r,RED); - 8004ce8: 68fb ldr r3, [r7, #12] - 8004cea: b298 uxth r0, r3 - 8004cec: 68bb ldr r3, [r7, #8] - 8004cee: b299 uxth r1, r3 - 8004cf0: 687b ldr r3, [r7, #4] - 8004cf2: b29a uxth r2, r3 - 8004cf4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004cf8: f7ff fb75 bl 80043e6 + 800540c: 68fb ldr r3, [r7, #12] + 800540e: b298 uxth r0, r3 + 8005410: 68bb ldr r3, [r7, #8] + 8005412: b299 uxth r1, r3 + 8005414: 687b ldr r3, [r7, #4] + 8005416: b29a uxth r2, r3 + 8005418: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800541c: f7ff fb75 bl 8004b0a LCD_DrawLine(x,y,x+10,y,RED); - 8004cfc: 68fb ldr r3, [r7, #12] - 8004cfe: b298 uxth r0, r3 - 8004d00: 68bb ldr r3, [r7, #8] - 8004d02: b299 uxth r1, r3 - 8004d04: 68fb ldr r3, [r7, #12] - 8004d06: b29b uxth r3, r3 - 8004d08: 330a adds r3, #10 - 8004d0a: b29a uxth r2, r3 - 8004d0c: 68bb ldr r3, [r7, #8] - 8004d0e: b29b uxth r3, r3 - 8004d10: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004d14: 9400 str r4, [sp, #0] - 8004d16: f7ff fae1 bl 80042dc + 8005420: 68fb ldr r3, [r7, #12] + 8005422: b298 uxth r0, r3 + 8005424: 68bb ldr r3, [r7, #8] + 8005426: b299 uxth r1, r3 + 8005428: 68fb ldr r3, [r7, #12] + 800542a: b29b uxth r3, r3 + 800542c: 330a adds r3, #10 + 800542e: b29a uxth r2, r3 + 8005430: 68bb ldr r3, [r7, #8] + 8005432: b29b uxth r3, r3 + 8005434: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8005438: 9400 str r4, [sp, #0] + 800543a: f7ff fae1 bl 8004a00 LCD_DrawLine(x,y,x,y+10,RED); - 8004d1a: 68fb ldr r3, [r7, #12] - 8004d1c: b298 uxth r0, r3 - 8004d1e: 68bb ldr r3, [r7, #8] - 8004d20: b299 uxth r1, r3 - 8004d22: 68fb ldr r3, [r7, #12] - 8004d24: b29a uxth r2, r3 - 8004d26: 68bb ldr r3, [r7, #8] - 8004d28: b29b uxth r3, r3 - 8004d2a: 330a adds r3, #10 - 8004d2c: b29b uxth r3, r3 - 8004d2e: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004d32: 9400 str r4, [sp, #0] - 8004d34: f7ff fad2 bl 80042dc + 800543e: 68fb ldr r3, [r7, #12] + 8005440: b298 uxth r0, r3 + 8005442: 68bb ldr r3, [r7, #8] + 8005444: b299 uxth r1, r3 + 8005446: 68fb ldr r3, [r7, #12] + 8005448: b29a uxth r2, r3 + 800544a: 68bb ldr r3, [r7, #8] + 800544c: b29b uxth r3, r3 + 800544e: 330a adds r3, #10 + 8005450: b29b uxth r3, r3 + 8005452: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8005456: 9400 str r4, [sp, #0] + 8005458: f7ff fad2 bl 8004a00 LCD_DrawLine(x,y,x-10,y,RED); - 8004d38: 68fb ldr r3, [r7, #12] - 8004d3a: b298 uxth r0, r3 - 8004d3c: 68bb ldr r3, [r7, #8] - 8004d3e: b299 uxth r1, r3 - 8004d40: 68fb ldr r3, [r7, #12] - 8004d42: b29b uxth r3, r3 - 8004d44: 3b0a subs r3, #10 - 8004d46: b29a uxth r2, r3 - 8004d48: 68bb ldr r3, [r7, #8] - 8004d4a: b29b uxth r3, r3 - 8004d4c: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004d50: 9400 str r4, [sp, #0] - 8004d52: f7ff fac3 bl 80042dc + 800545c: 68fb ldr r3, [r7, #12] + 800545e: b298 uxth r0, r3 + 8005460: 68bb ldr r3, [r7, #8] + 8005462: b299 uxth r1, r3 + 8005464: 68fb ldr r3, [r7, #12] + 8005466: b29b uxth r3, r3 + 8005468: 3b0a subs r3, #10 + 800546a: b29a uxth r2, r3 + 800546c: 68bb ldr r3, [r7, #8] + 800546e: b29b uxth r3, r3 + 8005470: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8005474: 9400 str r4, [sp, #0] + 8005476: f7ff fac3 bl 8004a00 LCD_DrawLine(x,y,x,y-10,RED); - 8004d56: 68fb ldr r3, [r7, #12] - 8004d58: b298 uxth r0, r3 - 8004d5a: 68bb ldr r3, [r7, #8] - 8004d5c: b299 uxth r1, r3 - 8004d5e: 68fb ldr r3, [r7, #12] - 8004d60: b29a uxth r2, r3 - 8004d62: 68bb ldr r3, [r7, #8] - 8004d64: b29b uxth r3, r3 - 8004d66: 3b0a subs r3, #10 - 8004d68: b29b uxth r3, r3 - 8004d6a: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004d6e: 9400 str r4, [sp, #0] - 8004d70: f7ff fab4 bl 80042dc + 800547a: 68fb ldr r3, [r7, #12] + 800547c: b298 uxth r0, r3 + 800547e: 68bb ldr r3, [r7, #8] + 8005480: b299 uxth r1, r3 + 8005482: 68fb ldr r3, [r7, #12] + 8005484: b29a uxth r2, r3 + 8005486: 68bb ldr r3, [r7, #8] + 8005488: b29b uxth r3, r3 + 800548a: 3b0a subs r3, #10 + 800548c: b29b uxth r3, r3 + 800548e: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8005492: 9400 str r4, [sp, #0] + 8005494: f7ff fab4 bl 8004a00 } - 8004d74: bf00 nop - 8004d76: 3714 adds r7, #20 - 8004d78: 46bd mov sp, r7 - 8004d7a: bd90 pop {r4, r7, pc} + 8005498: bf00 nop + 800549a: 3714 adds r7, #20 + 800549c: 46bd mov sp, r7 + 800549e: bd90 pop {r4, r7, pc} -08004d7c : +080054a0 : //触摸屏校准 void TP_adjustment() { - 8004d7c: b5b0 push {r4, r5, r7, lr} - 8004d7e: b0a4 sub sp, #144 ; 0x90 - 8004d80: af02 add r7, sp, #8 + 80054a0: b5b0 push {r4, r5, r7, lr} + 80054a2: b0a4 sub sp, #144 ; 0x90 + 80054a4: af02 add r7, sp, #8 //判断是否需要校准,从eeprom获取数据 EEPROM_READ_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 8004d82: 2218 movs r2, #24 - 8004d84: 4916 ldr r1, [pc, #88] ; (8004de0 ) - 8004d86: 2010 movs r0, #16 - 8004d88: f7ff fcf2 bl 8004770 + 80054a6: 2218 movs r2, #24 + 80054a8: 4916 ldr r1, [pc, #88] ; (8005504 ) + 80054aa: 2010 movs r0, #16 + 80054ac: f7ff fcf2 bl 8004e94 if(tconfig.begin==0xab&&tconfig.end==0xcd) //判断校准标记 - 8004d8c: 4b14 ldr r3, [pc, #80] ; (8004de0 ) - 8004d8e: 781b ldrb r3, [r3, #0] - 8004d90: 2bab cmp r3, #171 ; 0xab - 8004d92: d104 bne.n 8004d9e - 8004d94: 4b12 ldr r3, [pc, #72] ; (8004de0 ) - 8004d96: 7d1b ldrb r3, [r3, #20] - 8004d98: 2bcd cmp r3, #205 ; 0xcd - 8004d9a: f000 82a5 beq.w 80052e8 + 80054b0: 4b14 ldr r3, [pc, #80] ; (8005504 ) + 80054b2: 781b ldrb r3, [r3, #0] + 80054b4: 2bab cmp r3, #171 ; 0xab + 80054b6: d104 bne.n 80054c2 + 80054b8: 4b12 ldr r3, [pc, #72] ; (8005504 ) + 80054ba: 7d1b ldrb r3, [r3, #20] + 80054bc: 2bcd cmp r3, #205 ; 0xcd + 80054be: f000 82a5 beq.w 8005a0c { return; //已经校准过了 } //校准方法比较简单,读取4个坐标计算ad值与像素的关系 char str[64]; //用于字符串提示 uint16_t y_adc,x_adc,step=0,r=10; //adc缓存,校准步骤,坐标的半径 - 8004d9e: 2300 movs r3, #0 - 8004da0: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 - 8004da4: 230a movs r3, #10 - 8004da6: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 80054c2: 2300 movs r3, #0 + 80054c4: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 80054c8: 230a movs r3, #10 + 80054ca: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 uint16_t y1,y2,y3,y4,x1,x2,x3,x4; //4个点缓存 int y5,x5,xd,xl,yd,yl; //通过4个点算出xy的长边和短边 float acc_x,acc_y; //算出的关系倍率 int offset_x,offset_y; //算出的偏差 uint32_t wait=HAL_GetTick()+50000,ms100=0; //校准时间,50秒没操作就自动退出 - 8004daa: f7fc fe23 bl 80019f4 - 8004dae: 4603 mov r3, r0 - 8004db0: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 8004db4: 3350 adds r3, #80 ; 0x50 - 8004db6: 673b str r3, [r7, #112] ; 0x70 - 8004db8: 2300 movs r3, #0 - 8004dba: 66fb str r3, [r7, #108] ; 0x6c + 80054ce: f7fc faf9 bl 8001ac4 + 80054d2: 4603 mov r3, r0 + 80054d4: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 80054d8: 3350 adds r3, #80 ; 0x50 + 80054da: 673b str r3, [r7, #112] ; 0x70 + 80054dc: 2300 movs r3, #0 + 80054de: 66fb str r3, [r7, #108] ; 0x6c //显示字符串提示 LCD_Clear(GRAY); - 8004dbc: f248 4030 movw r0, #33840 ; 0x8430 - 8004dc0: f7ff fa3a bl 8004238 + 80054e0: f248 4030 movw r0, #33840 ; 0x8430 + 80054e4: f7ff fa3a bl 800495c LCD_ShowString(0,50,"Calibrate the touch screen",16,RED,RED); - 8004dc4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004dc8: 9301 str r3, [sp, #4] - 8004dca: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004dce: 9300 str r3, [sp, #0] - 8004dd0: 2310 movs r3, #16 - 8004dd2: 4a04 ldr r2, [pc, #16] ; (8004de4 ) - 8004dd4: 2132 movs r1, #50 ; 0x32 - 8004dd6: 2000 movs r0, #0 - 8004dd8: f7ff fc2c bl 8004634 + 80054e8: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80054ec: 9301 str r3, [sp, #4] + 80054ee: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80054f2: 9300 str r3, [sp, #0] + 80054f4: 2310 movs r3, #16 + 80054f6: 4a04 ldr r2, [pc, #16] ; (8005508 ) + 80054f8: 2132 movs r1, #50 ; 0x32 + 80054fa: 2000 movs r0, #0 + 80054fc: f7ff fc2c bl 8004d58 //TP_DrwaTrage(30,30,10); //开始校准 while(HAL_GetTick() - 8004dde: bf00 nop - 8004de0: 200002d8 .word 0x200002d8 - 8004de4: 080098c0 .word 0x080098c0 + 8005500: e27c b.n 80059fc + 8005502: bf00 nop + 8005504: 20000320 .word 0x20000320 + 8005508: 0800a028 .word 0x0800a028 { if(TPEN==0) //如果屏幕被按下 - 8004de8: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004dec: 48cf ldr r0, [pc, #828] ; (800512c ) - 8004dee: f7fd f8a7 bl 8001f40 - 8004df2: 4603 mov r3, r0 - 8004df4: 2b00 cmp r3, #0 - 8004df6: d146 bne.n 8004e86 + 800550c: f44f 6180 mov.w r1, #1024 ; 0x400 + 8005510: 48cf ldr r0, [pc, #828] ; (8005850 ) + 8005512: f7fc fda7 bl 8002064 + 8005516: 4603 mov r3, r0 + 8005518: 2b00 cmp r3, #0 + 800551a: d146 bne.n 80055aa { wait=HAL_GetTick()+50000; //重置50秒 - 8004df8: f7fc fdfc bl 80019f4 - 8004dfc: 4603 mov r3, r0 - 8004dfe: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 8004e02: 3350 adds r3, #80 ; 0x50 - 8004e04: 673b str r3, [r7, #112] ; 0x70 + 800551c: f7fc fad2 bl 8001ac4 + 8005520: 4603 mov r3, r0 + 8005522: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 8005526: 3350 adds r3, #80 ; 0x50 + 8005528: 673b str r3, [r7, #112] ; 0x70 TP_Read_XY2(&x_adc,&y_adc); //读取xy ad值 - 8004e06: 1cba adds r2, r7, #2 - 8004e08: 463b mov r3, r7 - 8004e0a: 4611 mov r1, r2 - 8004e0c: 4618 mov r0, r3 - 8004e0e: f7ff fe78 bl 8004b02 + 800552a: 1cba adds r2, r7, #2 + 800552c: 463b mov r3, r7 + 800552e: 4611 mov r1, r2 + 8005530: 4618 mov r0, r3 + 8005532: f7ff fe78 bl 8005226 //将读到的值显示出来 sprintf(str,"ADC_X:%04d",x_adc); - 8004e12: 883b ldrh r3, [r7, #0] - 8004e14: 461a mov r2, r3 - 8004e16: 1d3b adds r3, r7, #4 - 8004e18: 49c5 ldr r1, [pc, #788] ; (8005130 ) - 8004e1a: 4618 mov r0, r3 - 8004e1c: f002 fb4e bl 80074bc + 8005536: 883b ldrh r3, [r7, #0] + 8005538: 461a mov r2, r3 + 800553a: 1d3b adds r3, r7, #4 + 800553c: 49c5 ldr r1, [pc, #788] ; (8005854 ) + 800553e: 4618 mov r0, r3 + 8005540: f002 fb70 bl 8007c24 LCD_ShowString(100, 0, str, 16, RED, GRAY); - 8004e20: 1d3a adds r2, r7, #4 - 8004e22: f248 4330 movw r3, #33840 ; 0x8430 - 8004e26: 9301 str r3, [sp, #4] - 8004e28: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e2c: 9300 str r3, [sp, #0] - 8004e2e: 2310 movs r3, #16 - 8004e30: 2100 movs r1, #0 - 8004e32: 2064 movs r0, #100 ; 0x64 - 8004e34: f7ff fbfe bl 8004634 + 8005544: 1d3a adds r2, r7, #4 + 8005546: f248 4330 movw r3, #33840 ; 0x8430 + 800554a: 9301 str r3, [sp, #4] + 800554c: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005550: 9300 str r3, [sp, #0] + 8005552: 2310 movs r3, #16 + 8005554: 2100 movs r1, #0 + 8005556: 2064 movs r0, #100 ; 0x64 + 8005558: f7ff fbfe bl 8004d58 sprintf(str,"ADC_Y:%04d",y_adc); - 8004e38: 887b ldrh r3, [r7, #2] - 8004e3a: 461a mov r2, r3 - 8004e3c: 1d3b adds r3, r7, #4 - 8004e3e: 49bd ldr r1, [pc, #756] ; (8005134 ) - 8004e40: 4618 mov r0, r3 - 8004e42: f002 fb3b bl 80074bc + 800555c: 887b ldrh r3, [r7, #2] + 800555e: 461a mov r2, r3 + 8005560: 1d3b adds r3, r7, #4 + 8005562: 49bd ldr r1, [pc, #756] ; (8005858 ) + 8005564: 4618 mov r0, r3 + 8005566: f002 fb5d bl 8007c24 LCD_ShowString(100, 16, str, 16, RED, GRAY); - 8004e46: 1d3a adds r2, r7, #4 - 8004e48: f248 4330 movw r3, #33840 ; 0x8430 - 8004e4c: 9301 str r3, [sp, #4] - 8004e4e: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e52: 9300 str r3, [sp, #0] - 8004e54: 2310 movs r3, #16 - 8004e56: 2110 movs r1, #16 - 8004e58: 2064 movs r0, #100 ; 0x64 - 8004e5a: f7ff fbeb bl 8004634 + 800556a: 1d3a adds r2, r7, #4 + 800556c: f248 4330 movw r3, #33840 ; 0x8430 + 8005570: 9301 str r3, [sp, #4] + 8005572: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005576: 9300 str r3, [sp, #0] + 8005578: 2310 movs r3, #16 + 800557a: 2110 movs r1, #16 + 800557c: 2064 movs r0, #100 ; 0x64 + 800557e: f7ff fbeb bl 8004d58 //特效,半径开始收缩 if(HAL_GetTick()>ms100) - 8004e5e: f7fc fdc9 bl 80019f4 - 8004e62: 4602 mov r2, r0 - 8004e64: 6efb ldr r3, [r7, #108] ; 0x6c - 8004e66: 4293 cmp r3, r2 - 8004e68: d20d bcs.n 8004e86 + 8005582: f7fc fa9f bl 8001ac4 + 8005586: 4602 mov r2, r0 + 8005588: 6efb ldr r3, [r7, #108] ; 0x6c + 800558a: 4293 cmp r3, r2 + 800558c: d20d bcs.n 80055aa { ms100=HAL_GetTick()+100; - 8004e6a: f7fc fdc3 bl 80019f4 - 8004e6e: 4603 mov r3, r0 - 8004e70: 3364 adds r3, #100 ; 0x64 - 8004e72: 66fb str r3, [r7, #108] ; 0x6c + 800558e: f7fc fa99 bl 8001ac4 + 8005592: 4603 mov r3, r0 + 8005594: 3364 adds r3, #100 ; 0x64 + 8005596: 66fb str r3, [r7, #108] ; 0x6c if(r>0){r--;} - 8004e74: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004e78: 2b00 cmp r3, #0 - 8004e7a: d004 beq.n 8004e86 - 8004e7c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004e80: 3b01 subs r3, #1 - 8004e82: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8005598: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 800559c: 2b00 cmp r3, #0 + 800559e: d004 beq.n 80055aa + 80055a0: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80055a4: 3b01 subs r3, #1 + 80055a6: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //步骤0,将点画在(30,30)此时半径为10 if(step==0) - 8004e86: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004e8a: 2b00 cmp r3, #0 - 8004e8c: d129 bne.n 8004ee2 + 80055aa: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80055ae: 2b00 cmp r3, #0 + 80055b0: d129 bne.n 8005606 { TP_DrwaTrage(30,30,r); - 8004e8e: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004e92: 461a mov r2, r3 - 8004e94: 211e movs r1, #30 - 8004e96: 201e movs r0, #30 - 8004e98: f7ff ff14 bl 8004cc4 + 80055b2: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80055b6: 461a mov r2, r3 + 80055b8: 211e movs r1, #30 + 80055ba: 201e movs r0, #30 + 80055bc: f7ff ff14 bl 80053e8 if(r==0)//当半径收缩为0的时候 - 8004e9c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004ea0: 2b00 cmp r3, #0 - 8004ea2: d11e bne.n 8004ee2 + 80055c0: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80055c4: 2b00 cmp r3, #0 + 80055c6: d11e bne.n 8005606 { //进入下一个步骤,缓存这个点的值,显示出来 step+=1; - 8004ea4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ea8: 3301 adds r3, #1 - 8004eaa: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 80055c8: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80055cc: 3301 adds r3, #1 + 80055ce: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y1=y_adc; - 8004eae: 887b ldrh r3, [r7, #2] - 8004eb0: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 + 80055d2: 887b ldrh r3, [r7, #2] + 80055d4: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 x1=x_adc; - 8004eb4: 883b ldrh r3, [r7, #0] - 8004eb6: f8a7 307a strh.w r3, [r7, #122] ; 0x7a + 80055d8: 883b ldrh r3, [r7, #0] + 80055da: f8a7 307a strh.w r3, [r7, #122] ; 0x7a sprintf(str,"point_1 x:%d y:%d",x1,y1); - 8004eba: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a - 8004ebe: f8b7 3082 ldrh.w r3, [r7, #130] ; 0x82 - 8004ec2: 1d38 adds r0, r7, #4 - 8004ec4: 499c ldr r1, [pc, #624] ; (8005138 ) - 8004ec6: f002 faf9 bl 80074bc + 80055de: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a + 80055e2: f8b7 3082 ldrh.w r3, [r7, #130] ; 0x82 + 80055e6: 1d38 adds r0, r7, #4 + 80055e8: 499c ldr r1, [pc, #624] ; (800585c ) + 80055ea: f002 fb1b bl 8007c24 LCD_ShowString(0,66,str,16,RED,RED); - 8004eca: 1d3a adds r2, r7, #4 - 8004ecc: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004ed0: 9301 str r3, [sp, #4] - 8004ed2: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004ed6: 9300 str r3, [sp, #0] - 8004ed8: 2310 movs r3, #16 - 8004eda: 2142 movs r1, #66 ; 0x42 - 8004edc: 2000 movs r0, #0 - 8004ede: f7ff fba9 bl 8004634 + 80055ee: 1d3a adds r2, r7, #4 + 80055f0: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80055f4: 9301 str r3, [sp, #4] + 80055f6: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80055fa: 9300 str r3, [sp, #0] + 80055fc: 2310 movs r3, #16 + 80055fe: 2142 movs r1, #66 ; 0x42 + 8005600: 2000 movs r0, #0 + 8005602: f7ff fba9 bl 8004d58 } } //步骤1,等待屏幕被松开,进入下一个步骤,重置半径 if(step==1) - 8004ee2: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ee6: 2b01 cmp r3, #1 - 8004ee8: d10f bne.n 8004f0a + 8005606: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 800560a: 2b01 cmp r3, #1 + 800560c: d10f bne.n 800562e { if(TPEN==1) - 8004eea: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004eee: 488f ldr r0, [pc, #572] ; (800512c ) - 8004ef0: f7fd f826 bl 8001f40 - 8004ef4: 4603 mov r3, r0 - 8004ef6: 2b01 cmp r3, #1 - 8004ef8: d107 bne.n 8004f0a + 800560e: f44f 6180 mov.w r1, #1024 ; 0x400 + 8005612: 488f ldr r0, [pc, #572] ; (8005850 ) + 8005614: f7fc fd26 bl 8002064 + 8005618: 4603 mov r3, r0 + 800561a: 2b01 cmp r3, #1 + 800561c: d107 bne.n 800562e { step+=1; - 8004efa: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004efe: 3301 adds r3, #1 - 8004f00: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 800561e: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8005622: 3301 adds r3, #1 + 8005624: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004f04: 230a movs r3, #10 - 8004f06: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8005628: 230a movs r3, #10 + 800562a: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //下面几个步骤和上面一样 if(step==2) - 8004f0a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f0e: 2b02 cmp r3, #2 - 8004f10: d12a bne.n 8004f68 + 800562e: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8005632: 2b02 cmp r3, #2 + 8005634: d12a bne.n 800568c { TP_DrwaTrage(290,30,r); - 8004f12: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004f16: 461a mov r2, r3 - 8004f18: 211e movs r1, #30 - 8004f1a: f44f 7091 mov.w r0, #290 ; 0x122 - 8004f1e: f7ff fed1 bl 8004cc4 + 8005636: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 800563a: 461a mov r2, r3 + 800563c: 211e movs r1, #30 + 800563e: f44f 7091 mov.w r0, #290 ; 0x122 + 8005642: f7ff fed1 bl 80053e8 if(r==0) - 8004f22: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004f26: 2b00 cmp r3, #0 - 8004f28: d11e bne.n 8004f68 + 8005646: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 800564a: 2b00 cmp r3, #0 + 800564c: d11e bne.n 800568c { step+=1; - 8004f2a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f2e: 3301 adds r3, #1 - 8004f30: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 800564e: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8005652: 3301 adds r3, #1 + 8005654: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y2=y_adc; - 8004f34: 887b ldrh r3, [r7, #2] - 8004f36: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 + 8005658: 887b ldrh r3, [r7, #2] + 800565a: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 x2=x_adc; - 8004f3a: 883b ldrh r3, [r7, #0] - 8004f3c: f8a7 3078 strh.w r3, [r7, #120] ; 0x78 + 800565e: 883b ldrh r3, [r7, #0] + 8005660: f8a7 3078 strh.w r3, [r7, #120] ; 0x78 sprintf(str,"point_2 x:%d y:%d",x2,y2); - 8004f40: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 - 8004f44: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 - 8004f48: 1d38 adds r0, r7, #4 - 8004f4a: 497c ldr r1, [pc, #496] ; (800513c ) - 8004f4c: f002 fab6 bl 80074bc + 8005664: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 + 8005668: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 + 800566c: 1d38 adds r0, r7, #4 + 800566e: 497c ldr r1, [pc, #496] ; (8005860 ) + 8005670: f002 fad8 bl 8007c24 LCD_ShowString(0,66+16,str,16,RED,RED); - 8004f50: 1d3a adds r2, r7, #4 - 8004f52: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004f56: 9301 str r3, [sp, #4] - 8004f58: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004f5c: 9300 str r3, [sp, #0] - 8004f5e: 2310 movs r3, #16 - 8004f60: 2152 movs r1, #82 ; 0x52 - 8004f62: 2000 movs r0, #0 - 8004f64: f7ff fb66 bl 8004634 + 8005674: 1d3a adds r2, r7, #4 + 8005676: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800567a: 9301 str r3, [sp, #4] + 800567c: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005680: 9300 str r3, [sp, #0] + 8005682: 2310 movs r3, #16 + 8005684: 2152 movs r1, #82 ; 0x52 + 8005686: 2000 movs r0, #0 + 8005688: f7ff fb66 bl 8004d58 } } if(step==3) - 8004f68: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f6c: 2b03 cmp r3, #3 - 8004f6e: d10f bne.n 8004f90 + 800568c: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8005690: 2b03 cmp r3, #3 + 8005692: d10f bne.n 80056b4 { if(TPEN==1) - 8004f70: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004f74: 486d ldr r0, [pc, #436] ; (800512c ) - 8004f76: f7fc ffe3 bl 8001f40 - 8004f7a: 4603 mov r3, r0 - 8004f7c: 2b01 cmp r3, #1 - 8004f7e: d107 bne.n 8004f90 + 8005694: f44f 6180 mov.w r1, #1024 ; 0x400 + 8005698: 486d ldr r0, [pc, #436] ; (8005850 ) + 800569a: f7fc fce3 bl 8002064 + 800569e: 4603 mov r3, r0 + 80056a0: 2b01 cmp r3, #1 + 80056a2: d107 bne.n 80056b4 { step+=1; - 8004f80: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f84: 3301 adds r3, #1 - 8004f86: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 80056a4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80056a8: 3301 adds r3, #1 + 80056aa: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004f8a: 230a movs r3, #10 - 8004f8c: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 80056ae: 230a movs r3, #10 + 80056b0: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } if(step==4) - 8004f90: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f94: 2b04 cmp r3, #4 - 8004f96: d129 bne.n 8004fec + 80056b4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80056b8: 2b04 cmp r3, #4 + 80056ba: d129 bne.n 8005710 { TP_DrwaTrage(30,210,r); - 8004f98: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004f9c: 461a mov r2, r3 - 8004f9e: 21d2 movs r1, #210 ; 0xd2 - 8004fa0: 201e movs r0, #30 - 8004fa2: f7ff fe8f bl 8004cc4 + 80056bc: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80056c0: 461a mov r2, r3 + 80056c2: 21d2 movs r1, #210 ; 0xd2 + 80056c4: 201e movs r0, #30 + 80056c6: f7ff fe8f bl 80053e8 if(r==0) - 8004fa6: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004faa: 2b00 cmp r3, #0 - 8004fac: d11e bne.n 8004fec + 80056ca: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80056ce: 2b00 cmp r3, #0 + 80056d0: d11e bne.n 8005710 { step+=1; - 8004fae: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004fb2: 3301 adds r3, #1 - 8004fb4: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 80056d2: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80056d6: 3301 adds r3, #1 + 80056d8: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y3=y_adc; - 8004fb8: 887b ldrh r3, [r7, #2] - 8004fba: f8a7 307e strh.w r3, [r7, #126] ; 0x7e + 80056dc: 887b ldrh r3, [r7, #2] + 80056de: f8a7 307e strh.w r3, [r7, #126] ; 0x7e x3=x_adc; - 8004fbe: 883b ldrh r3, [r7, #0] - 8004fc0: f8a7 3076 strh.w r3, [r7, #118] ; 0x76 + 80056e2: 883b ldrh r3, [r7, #0] + 80056e4: f8a7 3076 strh.w r3, [r7, #118] ; 0x76 sprintf(str,"point_3 x:%d y:%d",x3,y3); - 8004fc4: f8b7 2076 ldrh.w r2, [r7, #118] ; 0x76 - 8004fc8: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e - 8004fcc: 1d38 adds r0, r7, #4 - 8004fce: 495c ldr r1, [pc, #368] ; (8005140 ) - 8004fd0: f002 fa74 bl 80074bc + 80056e8: f8b7 2076 ldrh.w r2, [r7, #118] ; 0x76 + 80056ec: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e + 80056f0: 1d38 adds r0, r7, #4 + 80056f2: 495c ldr r1, [pc, #368] ; (8005864 ) + 80056f4: f002 fa96 bl 8007c24 LCD_ShowString(0,66+16+16,str,16,RED,RED); - 8004fd4: 1d3a adds r2, r7, #4 - 8004fd6: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004fda: 9301 str r3, [sp, #4] - 8004fdc: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004fe0: 9300 str r3, [sp, #0] - 8004fe2: 2310 movs r3, #16 - 8004fe4: 2162 movs r1, #98 ; 0x62 - 8004fe6: 2000 movs r0, #0 - 8004fe8: f7ff fb24 bl 8004634 + 80056f8: 1d3a adds r2, r7, #4 + 80056fa: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80056fe: 9301 str r3, [sp, #4] + 8005700: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005704: 9300 str r3, [sp, #0] + 8005706: 2310 movs r3, #16 + 8005708: 2162 movs r1, #98 ; 0x62 + 800570a: 2000 movs r0, #0 + 800570c: f7ff fb24 bl 8004d58 } } if(step==5) - 8004fec: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ff0: 2b05 cmp r3, #5 - 8004ff2: d10f bne.n 8005014 + 8005710: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8005714: 2b05 cmp r3, #5 + 8005716: d10f bne.n 8005738 { if(TPEN==1) - 8004ff4: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004ff8: 484c ldr r0, [pc, #304] ; (800512c ) - 8004ffa: f7fc ffa1 bl 8001f40 - 8004ffe: 4603 mov r3, r0 - 8005000: 2b01 cmp r3, #1 - 8005002: d107 bne.n 8005014 + 8005718: f44f 6180 mov.w r1, #1024 ; 0x400 + 800571c: 484c ldr r0, [pc, #304] ; (8005850 ) + 800571e: f7fc fca1 bl 8002064 + 8005722: 4603 mov r3, r0 + 8005724: 2b01 cmp r3, #1 + 8005726: d107 bne.n 8005738 { step+=1; - 8005004: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8005008: 3301 adds r3, #1 - 800500a: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8005728: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 800572c: 3301 adds r3, #1 + 800572e: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 800500e: 230a movs r3, #10 - 8005010: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8005732: 230a movs r3, #10 + 8005734: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } if(step==6) - 8005014: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8005018: 2b06 cmp r3, #6 - 800501a: d12a bne.n 8005072 + 8005738: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 800573c: 2b06 cmp r3, #6 + 800573e: d12a bne.n 8005796 { TP_DrwaTrage(290,210,r); - 800501c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8005020: 461a mov r2, r3 - 8005022: 21d2 movs r1, #210 ; 0xd2 - 8005024: f44f 7091 mov.w r0, #290 ; 0x122 - 8005028: f7ff fe4c bl 8004cc4 + 8005740: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8005744: 461a mov r2, r3 + 8005746: 21d2 movs r1, #210 ; 0xd2 + 8005748: f44f 7091 mov.w r0, #290 ; 0x122 + 800574c: f7ff fe4c bl 80053e8 if(r==0) - 800502c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8005030: 2b00 cmp r3, #0 - 8005032: d11e bne.n 8005072 + 8005750: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8005754: 2b00 cmp r3, #0 + 8005756: d11e bne.n 8005796 { step+=1; - 8005034: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8005038: 3301 adds r3, #1 - 800503a: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8005758: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 800575c: 3301 adds r3, #1 + 800575e: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y4=y_adc; - 800503e: 887b ldrh r3, [r7, #2] - 8005040: f8a7 307c strh.w r3, [r7, #124] ; 0x7c + 8005762: 887b ldrh r3, [r7, #2] + 8005764: f8a7 307c strh.w r3, [r7, #124] ; 0x7c x4=x_adc; - 8005044: 883b ldrh r3, [r7, #0] - 8005046: f8a7 3074 strh.w r3, [r7, #116] ; 0x74 + 8005768: 883b ldrh r3, [r7, #0] + 800576a: f8a7 3074 strh.w r3, [r7, #116] ; 0x74 sprintf(str,"point_4 x:%d y:%d",x4,y4); - 800504a: f8b7 2074 ldrh.w r2, [r7, #116] ; 0x74 - 800504e: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c - 8005052: 1d38 adds r0, r7, #4 - 8005054: 493b ldr r1, [pc, #236] ; (8005144 ) - 8005056: f002 fa31 bl 80074bc + 800576e: f8b7 2074 ldrh.w r2, [r7, #116] ; 0x74 + 8005772: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c + 8005776: 1d38 adds r0, r7, #4 + 8005778: 493b ldr r1, [pc, #236] ; (8005868 ) + 800577a: f002 fa53 bl 8007c24 LCD_ShowString(0,66+16+16+16,str,16,RED,RED); - 800505a: 1d3a adds r2, r7, #4 - 800505c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005060: 9301 str r3, [sp, #4] - 8005062: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005066: 9300 str r3, [sp, #0] - 8005068: 2310 movs r3, #16 - 800506a: 2172 movs r1, #114 ; 0x72 - 800506c: 2000 movs r0, #0 - 800506e: f7ff fae1 bl 8004634 + 800577e: 1d3a adds r2, r7, #4 + 8005780: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005784: 9301 str r3, [sp, #4] + 8005786: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800578a: 9300 str r3, [sp, #0] + 800578c: 2310 movs r3, #16 + 800578e: 2172 movs r1, #114 ; 0x72 + 8005790: 2000 movs r0, #0 + 8005792: f7ff fae1 bl 8004d58 } } if(step==7) - 8005072: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8005076: 2b07 cmp r3, #7 - 8005078: d10f bne.n 800509a + 8005796: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 800579a: 2b07 cmp r3, #7 + 800579c: d10f bne.n 80057be { if(TPEN==1) - 800507a: f44f 6180 mov.w r1, #1024 ; 0x400 - 800507e: 482b ldr r0, [pc, #172] ; (800512c ) - 8005080: f7fc ff5e bl 8001f40 - 8005084: 4603 mov r3, r0 - 8005086: 2b01 cmp r3, #1 - 8005088: d107 bne.n 800509a + 800579e: f44f 6180 mov.w r1, #1024 ; 0x400 + 80057a2: 482b ldr r0, [pc, #172] ; (8005850 ) + 80057a4: f7fc fc5e bl 8002064 + 80057a8: 4603 mov r3, r0 + 80057aa: 2b01 cmp r3, #1 + 80057ac: d107 bne.n 80057be { step+=1; - 800508a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 800508e: 3301 adds r3, #1 - 8005090: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 80057ae: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80057b2: 3301 adds r3, #1 + 80057b4: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8005094: 230a movs r3, #10 - 8005096: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 80057b8: 230a movs r3, #10 + 80057ba: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //当4个点读取完,开始计算关系 if(step==8) - 800509a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 800509e: 2b08 cmp r3, #8 - 80050a0: f040 811a bne.w 80052d8 + 80057be: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 80057c2: 2b08 cmp r3, #8 + 80057c4: f040 811a bne.w 80059fc { //其实只需要两个点就能校准,通过取平均值获得xy的长边和短边 xd=((x1+x3)/2); - 80050a4: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a - 80050a8: f8b7 3076 ldrh.w r3, [r7, #118] ; 0x76 - 80050ac: 4413 add r3, r2 - 80050ae: 0fda lsrs r2, r3, #31 - 80050b0: 4413 add r3, r2 - 80050b2: 105b asrs r3, r3, #1 - 80050b4: 66bb str r3, [r7, #104] ; 0x68 + 80057c8: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a + 80057cc: f8b7 3076 ldrh.w r3, [r7, #118] ; 0x76 + 80057d0: 4413 add r3, r2 + 80057d2: 0fda lsrs r2, r3, #31 + 80057d4: 4413 add r3, r2 + 80057d6: 105b asrs r3, r3, #1 + 80057d8: 66bb str r3, [r7, #104] ; 0x68 xl=((x2+x4)/2); - 80050b6: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 - 80050ba: f8b7 3074 ldrh.w r3, [r7, #116] ; 0x74 - 80050be: 4413 add r3, r2 - 80050c0: 0fda lsrs r2, r3, #31 - 80050c2: 4413 add r3, r2 - 80050c4: 105b asrs r3, r3, #1 - 80050c6: 667b str r3, [r7, #100] ; 0x64 + 80057da: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 + 80057de: f8b7 3074 ldrh.w r3, [r7, #116] ; 0x74 + 80057e2: 4413 add r3, r2 + 80057e4: 0fda lsrs r2, r3, #31 + 80057e6: 4413 add r3, r2 + 80057e8: 105b asrs r3, r3, #1 + 80057ea: 667b str r3, [r7, #100] ; 0x64 yd=((y1+y2)/2); - 80050c8: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 - 80050cc: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 - 80050d0: 4413 add r3, r2 - 80050d2: 0fda lsrs r2, r3, #31 - 80050d4: 4413 add r3, r2 - 80050d6: 105b asrs r3, r3, #1 - 80050d8: 663b str r3, [r7, #96] ; 0x60 + 80057ec: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 + 80057f0: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 + 80057f4: 4413 add r3, r2 + 80057f6: 0fda lsrs r2, r3, #31 + 80057f8: 4413 add r3, r2 + 80057fa: 105b asrs r3, r3, #1 + 80057fc: 663b str r3, [r7, #96] ; 0x60 yl=((y3+y4)/2); - 80050da: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e - 80050de: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c - 80050e2: 4413 add r3, r2 - 80050e4: 0fda lsrs r2, r3, #31 - 80050e6: 4413 add r3, r2 - 80050e8: 105b asrs r3, r3, #1 - 80050ea: 65fb str r3, [r7, #92] ; 0x5c + 80057fe: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e + 8005802: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c + 8005806: 4413 add r3, r2 + 8005808: 0fda lsrs r2, r3, #31 + 800580a: 4413 add r3, r2 + 800580c: 105b asrs r3, r3, #1 + 800580e: 65fb str r3, [r7, #92] ; 0x5c //长边减去短边可以再获得一个点 x5=xl-xd; - 80050ec: 6e7a ldr r2, [r7, #100] ; 0x64 - 80050ee: 6ebb ldr r3, [r7, #104] ; 0x68 - 80050f0: 1ad3 subs r3, r2, r3 - 80050f2: 65bb str r3, [r7, #88] ; 0x58 + 8005810: 6e7a ldr r2, [r7, #100] ; 0x64 + 8005812: 6ebb ldr r3, [r7, #104] ; 0x68 + 8005814: 1ad3 subs r3, r2, r3 + 8005816: 65bb str r3, [r7, #88] ; 0x58 y5=yl-yd; - 80050f4: 6dfa ldr r2, [r7, #92] ; 0x5c - 80050f6: 6e3b ldr r3, [r7, #96] ; 0x60 - 80050f8: 1ad3 subs r3, r2, r3 - 80050fa: 657b str r3, [r7, #84] ; 0x54 + 8005818: 6dfa ldr r2, [r7, #92] ; 0x5c + 800581a: 6e3b ldr r3, [r7, #96] ; 0x60 + 800581c: 1ad3 subs r3, r2, r3 + 800581e: 657b str r3, [r7, #84] ; 0x54 //这个点如果是负数,肯定有错,可能是xy搞反了 if(x5<0||y5<0) - 80050fc: 6dbb ldr r3, [r7, #88] ; 0x58 - 80050fe: 2b00 cmp r3, #0 - 8005100: db02 blt.n 8005108 - 8005102: 6d7b ldr r3, [r7, #84] ; 0x54 - 8005104: 2b00 cmp r3, #0 - 8005106: da21 bge.n 800514c + 8005820: 6dbb ldr r3, [r7, #88] ; 0x58 + 8005822: 2b00 cmp r3, #0 + 8005824: db02 blt.n 800582c + 8005826: 6d7b ldr r3, [r7, #84] ; 0x54 + 8005828: 2b00 cmp r3, #0 + 800582a: da21 bge.n 8005870 { //显示error sprintf(str,"ERROR"); - 8005108: 1d3b adds r3, r7, #4 - 800510a: 490f ldr r1, [pc, #60] ; (8005148 ) - 800510c: 4618 mov r0, r3 - 800510e: f002 f9d5 bl 80074bc + 800582c: 1d3b adds r3, r7, #4 + 800582e: 490f ldr r1, [pc, #60] ; (800586c ) + 8005830: 4618 mov r0, r3 + 8005832: f002 f9f7 bl 8007c24 LCD_ShowString(0,66+16+16+16+16,str,16,RED, GRAY); - 8005112: 1d3a adds r2, r7, #4 - 8005114: f248 4330 movw r3, #33840 ; 0x8430 - 8005118: 9301 str r3, [sp, #4] - 800511a: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800511e: 9300 str r3, [sp, #0] - 8005120: 2310 movs r3, #16 - 8005122: 2182 movs r1, #130 ; 0x82 - 8005124: 2000 movs r0, #0 - 8005126: f7ff fa85 bl 8004634 + 8005836: 1d3a adds r2, r7, #4 + 8005838: f248 4330 movw r3, #33840 ; 0x8430 + 800583c: 9301 str r3, [sp, #4] + 800583e: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005842: 9300 str r3, [sp, #0] + 8005844: 2310 movs r3, #16 + 8005846: 2182 movs r1, #130 ; 0x82 + 8005848: 2000 movs r0, #0 + 800584a: f7ff fa85 bl 8004d58 { - 800512a: e0cb b.n 80052c4 - 800512c: 40011c00 .word 0x40011c00 - 8005130: 080098dc .word 0x080098dc - 8005134: 080098e8 .word 0x080098e8 - 8005138: 080098f4 .word 0x080098f4 - 800513c: 08009908 .word 0x08009908 - 8005140: 0800991c .word 0x0800991c - 8005144: 08009930 .word 0x08009930 - 8005148: 08009944 .word 0x08009944 + 800584e: e0cb b.n 80059e8 + 8005850: 40011c00 .word 0x40011c00 + 8005854: 0800a044 .word 0x0800a044 + 8005858: 0800a050 .word 0x0800a050 + 800585c: 0800a05c .word 0x0800a05c + 8005860: 0800a070 .word 0x0800a070 + 8005864: 0800a084 .word 0x0800a084 + 8005868: 0800a098 .word 0x0800a098 + 800586c: 0800a0ac .word 0x0800a0ac }else { //计算关系倍率 //ad的长边减去短边再除去实际屏幕像素的长边减短边(260=320-30-30,180=240-30-30) acc_x=x5/260.0; - 800514c: 6db8 ldr r0, [r7, #88] ; 0x58 - 800514e: f7fb f9c5 bl 80004dc <__aeabi_i2d> - 8005152: f04f 0200 mov.w r2, #0 - 8005156: 4b66 ldr r3, [pc, #408] ; (80052f0 ) - 8005158: f7fb fb54 bl 8000804 <__aeabi_ddiv> - 800515c: 4602 mov r2, r0 - 800515e: 460b mov r3, r1 - 8005160: 4610 mov r0, r2 - 8005162: 4619 mov r1, r3 - 8005164: f7fb fcfc bl 8000b60 <__aeabi_d2f> - 8005168: 4603 mov r3, r0 - 800516a: 653b str r3, [r7, #80] ; 0x50 + 8005870: 6db8 ldr r0, [r7, #88] ; 0x58 + 8005872: f7fa fe33 bl 80004dc <__aeabi_i2d> + 8005876: f04f 0200 mov.w r2, #0 + 800587a: 4b66 ldr r3, [pc, #408] ; (8005a14 ) + 800587c: f7fa ffc2 bl 8000804 <__aeabi_ddiv> + 8005880: 4602 mov r2, r0 + 8005882: 460b mov r3, r1 + 8005884: 4610 mov r0, r2 + 8005886: 4619 mov r1, r3 + 8005888: f7fb f96a bl 8000b60 <__aeabi_d2f> + 800588c: 4603 mov r3, r0 + 800588e: 653b str r3, [r7, #80] ; 0x50 acc_y=y5/180.0; - 800516c: 6d78 ldr r0, [r7, #84] ; 0x54 - 800516e: f7fb f9b5 bl 80004dc <__aeabi_i2d> - 8005172: f04f 0200 mov.w r2, #0 - 8005176: 4b5f ldr r3, [pc, #380] ; (80052f4 ) - 8005178: f7fb fb44 bl 8000804 <__aeabi_ddiv> - 800517c: 4602 mov r2, r0 - 800517e: 460b mov r3, r1 - 8005180: 4610 mov r0, r2 - 8005182: 4619 mov r1, r3 - 8005184: f7fb fcec bl 8000b60 <__aeabi_d2f> - 8005188: 4603 mov r3, r0 - 800518a: 64fb str r3, [r7, #76] ; 0x4c + 8005890: 6d78 ldr r0, [r7, #84] ; 0x54 + 8005892: f7fa fe23 bl 80004dc <__aeabi_i2d> + 8005896: f04f 0200 mov.w r2, #0 + 800589a: 4b5f ldr r3, [pc, #380] ; (8005a18 ) + 800589c: f7fa ffb2 bl 8000804 <__aeabi_ddiv> + 80058a0: 4602 mov r2, r0 + 80058a2: 460b mov r3, r1 + 80058a4: 4610 mov r0, r2 + 80058a6: 4619 mov r1, r3 + 80058a8: f7fb f95a bl 8000b60 <__aeabi_d2f> + 80058ac: 4603 mov r3, r0 + 80058ae: 64fb str r3, [r7, #76] ; 0x4c //验证倍率,将实际值减去验证值就等于误差值,因为有两个点,所以计算了两个误差后求了平均值 offset_x=(((xd/acc_x)-30)+((xl/acc_x)-290))/2; - 800518c: 6eb8 ldr r0, [r7, #104] ; 0x68 - 800518e: f7fb fdf1 bl 8000d74 <__aeabi_i2f> - 8005192: 4603 mov r3, r0 - 8005194: 6d39 ldr r1, [r7, #80] ; 0x50 - 8005196: 4618 mov r0, r3 - 8005198: f7fb fef4 bl 8000f84 <__aeabi_fdiv> - 800519c: 4603 mov r3, r0 - 800519e: 4956 ldr r1, [pc, #344] ; (80052f8 ) - 80051a0: 4618 mov r0, r3 - 80051a2: f7fb fd31 bl 8000c08 <__aeabi_fsub> - 80051a6: 4603 mov r3, r0 - 80051a8: 461c mov r4, r3 - 80051aa: 6e78 ldr r0, [r7, #100] ; 0x64 - 80051ac: f7fb fde2 bl 8000d74 <__aeabi_i2f> - 80051b0: 4603 mov r3, r0 - 80051b2: 6d39 ldr r1, [r7, #80] ; 0x50 - 80051b4: 4618 mov r0, r3 - 80051b6: f7fb fee5 bl 8000f84 <__aeabi_fdiv> - 80051ba: 4603 mov r3, r0 - 80051bc: 494f ldr r1, [pc, #316] ; (80052fc ) - 80051be: 4618 mov r0, r3 - 80051c0: f7fb fd22 bl 8000c08 <__aeabi_fsub> - 80051c4: 4603 mov r3, r0 - 80051c6: 4619 mov r1, r3 - 80051c8: 4620 mov r0, r4 - 80051ca: f7fb fd1f bl 8000c0c <__addsf3> - 80051ce: 4603 mov r3, r0 - 80051d0: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 80051d4: 4618 mov r0, r3 - 80051d6: f7fb fed5 bl 8000f84 <__aeabi_fdiv> - 80051da: 4603 mov r3, r0 - 80051dc: 4618 mov r0, r3 - 80051de: f7fb fff9 bl 80011d4 <__aeabi_f2iz> - 80051e2: 4603 mov r3, r0 - 80051e4: 64bb str r3, [r7, #72] ; 0x48 + 80058b0: 6eb8 ldr r0, [r7, #104] ; 0x68 + 80058b2: f7fb fa5f bl 8000d74 <__aeabi_i2f> + 80058b6: 4603 mov r3, r0 + 80058b8: 6d39 ldr r1, [r7, #80] ; 0x50 + 80058ba: 4618 mov r0, r3 + 80058bc: f7fb fb62 bl 8000f84 <__aeabi_fdiv> + 80058c0: 4603 mov r3, r0 + 80058c2: 4956 ldr r1, [pc, #344] ; (8005a1c ) + 80058c4: 4618 mov r0, r3 + 80058c6: f7fb f99f bl 8000c08 <__aeabi_fsub> + 80058ca: 4603 mov r3, r0 + 80058cc: 461c mov r4, r3 + 80058ce: 6e78 ldr r0, [r7, #100] ; 0x64 + 80058d0: f7fb fa50 bl 8000d74 <__aeabi_i2f> + 80058d4: 4603 mov r3, r0 + 80058d6: 6d39 ldr r1, [r7, #80] ; 0x50 + 80058d8: 4618 mov r0, r3 + 80058da: f7fb fb53 bl 8000f84 <__aeabi_fdiv> + 80058de: 4603 mov r3, r0 + 80058e0: 494f ldr r1, [pc, #316] ; (8005a20 ) + 80058e2: 4618 mov r0, r3 + 80058e4: f7fb f990 bl 8000c08 <__aeabi_fsub> + 80058e8: 4603 mov r3, r0 + 80058ea: 4619 mov r1, r3 + 80058ec: 4620 mov r0, r4 + 80058ee: f7fb f98d bl 8000c0c <__addsf3> + 80058f2: 4603 mov r3, r0 + 80058f4: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 80058f8: 4618 mov r0, r3 + 80058fa: f7fb fb43 bl 8000f84 <__aeabi_fdiv> + 80058fe: 4603 mov r3, r0 + 8005900: 4618 mov r0, r3 + 8005902: f7fb fc67 bl 80011d4 <__aeabi_f2iz> + 8005906: 4603 mov r3, r0 + 8005908: 64bb str r3, [r7, #72] ; 0x48 offset_y=(((yd/acc_y)-30)+((yl/acc_y)-210))/2; - 80051e6: 6e38 ldr r0, [r7, #96] ; 0x60 - 80051e8: f7fb fdc4 bl 8000d74 <__aeabi_i2f> - 80051ec: 4603 mov r3, r0 - 80051ee: 6cf9 ldr r1, [r7, #76] ; 0x4c - 80051f0: 4618 mov r0, r3 - 80051f2: f7fb fec7 bl 8000f84 <__aeabi_fdiv> - 80051f6: 4603 mov r3, r0 - 80051f8: 493f ldr r1, [pc, #252] ; (80052f8 ) - 80051fa: 4618 mov r0, r3 - 80051fc: f7fb fd04 bl 8000c08 <__aeabi_fsub> - 8005200: 4603 mov r3, r0 - 8005202: 461c mov r4, r3 - 8005204: 6df8 ldr r0, [r7, #92] ; 0x5c - 8005206: f7fb fdb5 bl 8000d74 <__aeabi_i2f> - 800520a: 4603 mov r3, r0 - 800520c: 6cf9 ldr r1, [r7, #76] ; 0x4c - 800520e: 4618 mov r0, r3 - 8005210: f7fb feb8 bl 8000f84 <__aeabi_fdiv> - 8005214: 4603 mov r3, r0 - 8005216: 493a ldr r1, [pc, #232] ; (8005300 ) - 8005218: 4618 mov r0, r3 - 800521a: f7fb fcf5 bl 8000c08 <__aeabi_fsub> - 800521e: 4603 mov r3, r0 - 8005220: 4619 mov r1, r3 - 8005222: 4620 mov r0, r4 - 8005224: f7fb fcf2 bl 8000c0c <__addsf3> - 8005228: 4603 mov r3, r0 - 800522a: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 800522e: 4618 mov r0, r3 - 8005230: f7fb fea8 bl 8000f84 <__aeabi_fdiv> - 8005234: 4603 mov r3, r0 - 8005236: 4618 mov r0, r3 - 8005238: f7fb ffcc bl 80011d4 <__aeabi_f2iz> - 800523c: 4603 mov r3, r0 - 800523e: 647b str r3, [r7, #68] ; 0x44 + 800590a: 6e38 ldr r0, [r7, #96] ; 0x60 + 800590c: f7fb fa32 bl 8000d74 <__aeabi_i2f> + 8005910: 4603 mov r3, r0 + 8005912: 6cf9 ldr r1, [r7, #76] ; 0x4c + 8005914: 4618 mov r0, r3 + 8005916: f7fb fb35 bl 8000f84 <__aeabi_fdiv> + 800591a: 4603 mov r3, r0 + 800591c: 493f ldr r1, [pc, #252] ; (8005a1c ) + 800591e: 4618 mov r0, r3 + 8005920: f7fb f972 bl 8000c08 <__aeabi_fsub> + 8005924: 4603 mov r3, r0 + 8005926: 461c mov r4, r3 + 8005928: 6df8 ldr r0, [r7, #92] ; 0x5c + 800592a: f7fb fa23 bl 8000d74 <__aeabi_i2f> + 800592e: 4603 mov r3, r0 + 8005930: 6cf9 ldr r1, [r7, #76] ; 0x4c + 8005932: 4618 mov r0, r3 + 8005934: f7fb fb26 bl 8000f84 <__aeabi_fdiv> + 8005938: 4603 mov r3, r0 + 800593a: 493a ldr r1, [pc, #232] ; (8005a24 ) + 800593c: 4618 mov r0, r3 + 800593e: f7fb f963 bl 8000c08 <__aeabi_fsub> + 8005942: 4603 mov r3, r0 + 8005944: 4619 mov r1, r3 + 8005946: 4620 mov r0, r4 + 8005948: f7fb f960 bl 8000c0c <__addsf3> + 800594c: 4603 mov r3, r0 + 800594e: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 8005952: 4618 mov r0, r3 + 8005954: f7fb fb16 bl 8000f84 <__aeabi_fdiv> + 8005958: 4603 mov r3, r0 + 800595a: 4618 mov r0, r3 + 800595c: f7fb fc3a bl 80011d4 <__aeabi_f2iz> + 8005960: 4603 mov r3, r0 + 8005962: 647b str r3, [r7, #68] ; 0x44 //保存计算结果 tconfig.x_acc=acc_x; - 8005240: 4a30 ldr r2, [pc, #192] ; (8005304 ) - 8005242: 6d3b ldr r3, [r7, #80] ; 0x50 - 8005244: 6053 str r3, [r2, #4] + 8005964: 4a30 ldr r2, [pc, #192] ; (8005a28 ) + 8005966: 6d3b ldr r3, [r7, #80] ; 0x50 + 8005968: 6053 str r3, [r2, #4] tconfig.x_offset=offset_x; - 8005246: 4a2f ldr r2, [pc, #188] ; (8005304 ) - 8005248: 6cbb ldr r3, [r7, #72] ; 0x48 - 800524a: 60d3 str r3, [r2, #12] + 800596a: 4a2f ldr r2, [pc, #188] ; (8005a28 ) + 800596c: 6cbb ldr r3, [r7, #72] ; 0x48 + 800596e: 60d3 str r3, [r2, #12] tconfig.y_acc=acc_y; - 800524c: 4a2d ldr r2, [pc, #180] ; (8005304 ) - 800524e: 6cfb ldr r3, [r7, #76] ; 0x4c - 8005250: 6093 str r3, [r2, #8] + 8005970: 4a2d ldr r2, [pc, #180] ; (8005a28 ) + 8005972: 6cfb ldr r3, [r7, #76] ; 0x4c + 8005974: 6093 str r3, [r2, #8] tconfig.y_offset=offset_y; - 8005252: 4a2c ldr r2, [pc, #176] ; (8005304 ) - 8005254: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005256: 6113 str r3, [r2, #16] + 8005976: 4a2c ldr r2, [pc, #176] ; (8005a28 ) + 8005978: 6c7b ldr r3, [r7, #68] ; 0x44 + 800597a: 6113 str r3, [r2, #16] //eeprom块标记 tconfig.begin=0xab; - 8005258: 4b2a ldr r3, [pc, #168] ; (8005304 ) - 800525a: 22ab movs r2, #171 ; 0xab - 800525c: 701a strb r2, [r3, #0] + 800597c: 4b2a ldr r3, [pc, #168] ; (8005a28 ) + 800597e: 22ab movs r2, #171 ; 0xab + 8005980: 701a strb r2, [r3, #0] tconfig.end=0xcd; - 800525e: 4b29 ldr r3, [pc, #164] ; (8005304 ) - 8005260: 22cd movs r2, #205 ; 0xcd - 8005262: 751a strb r2, [r3, #20] + 8005982: 4b29 ldr r3, [pc, #164] ; (8005a28 ) + 8005984: 22cd movs r2, #205 ; 0xcd + 8005986: 751a strb r2, [r3, #20] //显示计算结果 sprintf(str,"x_acc=%f y_acc=%f",acc_x,acc_y); - 8005264: 6d38 ldr r0, [r7, #80] ; 0x50 - 8005266: f7fb f94b bl 8000500 <__aeabi_f2d> - 800526a: 4604 mov r4, r0 - 800526c: 460d mov r5, r1 - 800526e: 6cf8 ldr r0, [r7, #76] ; 0x4c - 8005270: f7fb f946 bl 8000500 <__aeabi_f2d> - 8005274: 4602 mov r2, r0 - 8005276: 460b mov r3, r1 - 8005278: 1d38 adds r0, r7, #4 - 800527a: e9cd 2300 strd r2, r3, [sp] - 800527e: 4622 mov r2, r4 - 8005280: 462b mov r3, r5 - 8005282: 4921 ldr r1, [pc, #132] ; (8005308 ) - 8005284: f002 f91a bl 80074bc + 8005988: 6d38 ldr r0, [r7, #80] ; 0x50 + 800598a: f7fa fdb9 bl 8000500 <__aeabi_f2d> + 800598e: 4604 mov r4, r0 + 8005990: 460d mov r5, r1 + 8005992: 6cf8 ldr r0, [r7, #76] ; 0x4c + 8005994: f7fa fdb4 bl 8000500 <__aeabi_f2d> + 8005998: 4602 mov r2, r0 + 800599a: 460b mov r3, r1 + 800599c: 1d38 adds r0, r7, #4 + 800599e: e9cd 2300 strd r2, r3, [sp] + 80059a2: 4622 mov r2, r4 + 80059a4: 462b mov r3, r5 + 80059a6: 4921 ldr r1, [pc, #132] ; (8005a2c ) + 80059a8: f002 f93c bl 8007c24 LCD_ShowString(0,66+16+16+16+16,str,16,RED,RED); - 8005288: 1d3a adds r2, r7, #4 - 800528a: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800528e: 9301 str r3, [sp, #4] - 8005290: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005294: 9300 str r3, [sp, #0] - 8005296: 2310 movs r3, #16 - 8005298: 2182 movs r1, #130 ; 0x82 - 800529a: 2000 movs r0, #0 - 800529c: f7ff f9ca bl 8004634 + 80059ac: 1d3a adds r2, r7, #4 + 80059ae: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80059b2: 9301 str r3, [sp, #4] + 80059b4: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80059b8: 9300 str r3, [sp, #0] + 80059ba: 2310 movs r3, #16 + 80059bc: 2182 movs r1, #130 ; 0x82 + 80059be: 2000 movs r0, #0 + 80059c0: f7ff f9ca bl 8004d58 sprintf(str,"x_offset=%d y_offset=%d",offset_x,offset_y); - 80052a0: 1d38 adds r0, r7, #4 - 80052a2: 6c7b ldr r3, [r7, #68] ; 0x44 - 80052a4: 6cba ldr r2, [r7, #72] ; 0x48 - 80052a6: 4919 ldr r1, [pc, #100] ; (800530c ) - 80052a8: f002 f908 bl 80074bc + 80059c4: 1d38 adds r0, r7, #4 + 80059c6: 6c7b ldr r3, [r7, #68] ; 0x44 + 80059c8: 6cba ldr r2, [r7, #72] ; 0x48 + 80059ca: 4919 ldr r1, [pc, #100] ; (8005a30 ) + 80059cc: f002 f92a bl 8007c24 LCD_ShowString(0,66+16+16+16+16+16,str,16,RED,RED); - 80052ac: 1d3a adds r2, r7, #4 - 80052ae: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80052b2: 9301 str r3, [sp, #4] - 80052b4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80052b8: 9300 str r3, [sp, #0] - 80052ba: 2310 movs r3, #16 - 80052bc: 2192 movs r1, #146 ; 0x92 - 80052be: 2000 movs r0, #0 - 80052c0: f7ff f9b8 bl 8004634 + 80059d0: 1d3a adds r2, r7, #4 + 80059d2: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80059d6: 9301 str r3, [sp, #4] + 80059d8: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80059dc: 9300 str r3, [sp, #0] + 80059de: 2310 movs r3, #16 + 80059e0: 2192 movs r1, #146 ; 0x92 + 80059e2: 2000 movs r0, #0 + 80059e4: f7ff f9b8 bl 8004d58 } //将结果保存起来 EEPROM_WRITE_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 80052c4: 2218 movs r2, #24 - 80052c6: 490f ldr r1, [pc, #60] ; (8005304 ) - 80052c8: 2010 movs r0, #16 - 80052ca: f7ff fa63 bl 8004794 + 80059e8: 2218 movs r2, #24 + 80059ea: 490f ldr r1, [pc, #60] ; (8005a28 ) + 80059ec: 2010 movs r0, #16 + 80059ee: f7ff fa63 bl 8004eb8 HAL_Delay(1000); - 80052ce: f44f 707a mov.w r0, #1000 ; 0x3e8 - 80052d2: f7fc fb99 bl 8001a08 + 80059f2: f44f 707a mov.w r0, #1000 ; 0x3e8 + 80059f6: f7fc f86f bl 8001ad8 return; - 80052d6: e008 b.n 80052ea + 80059fa: e008 b.n 8005a0e while(HAL_GetTick() - 80052dc: 4602 mov r2, r0 - 80052de: 6f3b ldr r3, [r7, #112] ; 0x70 - 80052e0: 4293 cmp r3, r2 - 80052e2: f63f ad81 bhi.w 8004de8 - 80052e6: e000 b.n 80052ea + 80059fc: f7fc f862 bl 8001ac4 + 8005a00: 4602 mov r2, r0 + 8005a02: 6f3b ldr r3, [r7, #112] ; 0x70 + 8005a04: 4293 cmp r3, r2 + 8005a06: f63f ad81 bhi.w 800550c + 8005a0a: e000 b.n 8005a0e return; //已经校准过了 - 80052e8: bf00 nop + 8005a0c: bf00 nop } } } - 80052ea: 3788 adds r7, #136 ; 0x88 - 80052ec: 46bd mov sp, r7 - 80052ee: bdb0 pop {r4, r5, r7, pc} - 80052f0: 40704000 .word 0x40704000 - 80052f4: 40668000 .word 0x40668000 - 80052f8: 41f00000 .word 0x41f00000 - 80052fc: 43910000 .word 0x43910000 - 8005300: 43520000 .word 0x43520000 - 8005304: 200002d8 .word 0x200002d8 - 8005308: 0800994c .word 0x0800994c - 800530c: 08009960 .word 0x08009960 + 8005a0e: 3788 adds r7, #136 ; 0x88 + 8005a10: 46bd mov sp, r7 + 8005a12: bdb0 pop {r4, r5, r7, pc} + 8005a14: 40704000 .word 0x40704000 + 8005a18: 40668000 .word 0x40668000 + 8005a1c: 41f00000 .word 0x41f00000 + 8005a20: 43910000 .word 0x43910000 + 8005a24: 43520000 .word 0x43520000 + 8005a28: 20000320 .word 0x20000320 + 8005a2c: 0800a0b4 .word 0x0800a0b4 + 8005a30: 0800a0c8 .word 0x0800a0c8 -08005310 : +08005a34 : uint16_t fifo_ir; char blood_str[64]; -uint16_t g_fft_index = 0; //fft输入输出下标 + uint8_t Max30102_reset(void) { - 8005310: b580 push {r7, lr} - 8005312: b082 sub sp, #8 - 8005314: af00 add r7, sp, #0 + 8005a34: b580 push {r7, lr} + 8005a36: b082 sub sp, #8 + 8005a38: af00 add r7, sp, #0 char a=0x40; - 8005316: 2340 movs r3, #64 ; 0x40 - 8005318: 71fb strb r3, [r7, #7] + 8005a3a: 2340 movs r3, #64 ; 0x40 + 8005a3c: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG, &a,1); - 800531a: 1dfa adds r2, r7, #7 - 800531c: 2301 movs r3, #1 - 800531e: 2109 movs r1, #9 - 8005320: 20ae movs r0, #174 ; 0xae - 8005322: f7ff fa7d bl 8004820 + 8005a3e: 1dfa adds r2, r7, #7 + 8005a40: 2301 movs r3, #1 + 8005a42: 2109 movs r1, #9 + 8005a44: 20ae movs r0, #174 ; 0xae + 8005a46: f7ff fa7d bl 8004f44 } - 8005326: bf00 nop - 8005328: 4618 mov r0, r3 - 800532a: 3708 adds r7, #8 - 800532c: 46bd mov sp, r7 - 800532e: bd80 pop {r7, pc} + 8005a4a: bf00 nop + 8005a4c: 4618 mov r0, r3 + 8005a4e: 3708 adds r7, #8 + 8005a50: 46bd mov sp, r7 + 8005a52: bd80 pop {r7, pc} -08005330 : +08005a54 : void MAX30102_Config(void) { - 8005330: b580 push {r7, lr} - 8005332: b082 sub sp, #8 - 8005334: af00 add r7, sp, #0 + 8005a54: b580 push {r7, lr} + 8005a56: b082 sub sp, #8 + 8005a58: af00 add r7, sp, #0 char a; a=0xc0; - 8005336: 23c0 movs r3, #192 ; 0xc0 - 8005338: 71fb strb r3, [r7, #7] + 8005a5a: 23c0 movs r3, #192 ; 0xc0 + 8005a5c: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_1,&a,1);//// INTR setting - 800533a: 1dfa adds r2, r7, #7 - 800533c: 2301 movs r3, #1 - 800533e: 2102 movs r1, #2 - 8005340: 20ae movs r0, #174 ; 0xae - 8005342: f7ff fa6d bl 8004820 + 8005a5e: 1dfa adds r2, r7, #7 + 8005a60: 2301 movs r3, #1 + 8005a62: 2102 movs r1, #2 + 8005a64: 20ae movs r0, #174 ; 0xae + 8005a66: f7ff fa6d bl 8004f44 a=0; - 8005346: 2300 movs r3, #0 - 8005348: 71fb strb r3, [r7, #7] + 8005a6a: 2300 movs r3, #0 + 8005a6c: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_2,&a,1);// - 800534a: 1dfa adds r2, r7, #7 - 800534c: 2301 movs r3, #1 - 800534e: 2103 movs r1, #3 - 8005350: 20ae movs r0, #174 ; 0xae - 8005352: f7ff fa65 bl 8004820 + 8005a6e: 1dfa adds r2, r7, #7 + 8005a70: 2301 movs r3, #1 + 8005a72: 2103 movs r1, #3 + 8005a74: 20ae movs r0, #174 ; 0xae + 8005a76: f7ff fa65 bl 8004f44 IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_WR_PTR,&a,1);//FIFO_WR_PTR[4:0] - 8005356: 1dfa adds r2, r7, #7 - 8005358: 2301 movs r3, #1 - 800535a: 2104 movs r1, #4 - 800535c: 20ae movs r0, #174 ; 0xae - 800535e: f7ff fa5f bl 8004820 + 8005a7a: 1dfa adds r2, r7, #7 + 8005a7c: 2301 movs r3, #1 + 8005a7e: 2104 movs r1, #4 + 8005a80: 20ae movs r0, #174 ; 0xae + 8005a82: f7ff fa5f bl 8004f44 IIC_SAND_DATE(MAX30102_Device_address,REG_OVF_COUNTER,&a,1);//OVF_COUNTER[4:0] - 8005362: 1dfa adds r2, r7, #7 - 8005364: 2301 movs r3, #1 - 8005366: 2105 movs r1, #5 - 8005368: 20ae movs r0, #174 ; 0xae - 800536a: f7ff fa59 bl 8004820 + 8005a86: 1dfa adds r2, r7, #7 + 8005a88: 2301 movs r3, #1 + 8005a8a: 2105 movs r1, #5 + 8005a8c: 20ae movs r0, #174 ; 0xae + 8005a8e: f7ff fa59 bl 8004f44 IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_RD_PTR,&a,1);//FIFO_RD_PTR[4:0] - 800536e: 1dfa adds r2, r7, #7 - 8005370: 2301 movs r3, #1 - 8005372: 2106 movs r1, #6 - 8005374: 20ae movs r0, #174 ; 0xae - 8005376: f7ff fa53 bl 8004820 + 8005a92: 1dfa adds r2, r7, #7 + 8005a94: 2301 movs r3, #1 + 8005a96: 2106 movs r1, #6 + 8005a98: 20ae movs r0, #174 ; 0xae + 8005a9a: f7ff fa53 bl 8004f44 a=0x0f; - 800537a: 230f movs r3, #15 - 800537c: 71fb strb r3, [r7, #7] + 8005a9e: 230f movs r3, #15 + 8005aa0: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_CONFIG,&a,1);//sample avg = 1, fifo rollover=false, fifo almost full = 17 - 800537e: 1dfa adds r2, r7, #7 - 8005380: 2301 movs r3, #1 - 8005382: 2108 movs r1, #8 - 8005384: 20ae movs r0, #174 ; 0xae - 8005386: f7ff fa4b bl 8004820 + 8005aa2: 1dfa adds r2, r7, #7 + 8005aa4: 2301 movs r3, #1 + 8005aa6: 2108 movs r1, #8 + 8005aa8: 20ae movs r0, #174 ; 0xae + 8005aaa: f7ff fa4b bl 8004f44 a=0x03; - 800538a: 2303 movs r3, #3 - 800538c: 71fb strb r3, [r7, #7] + 8005aae: 2303 movs r3, #3 + 8005ab0: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG,&a,1);//0x02 for Red only, 0x03 for SpO2 mode 0x07 multimode LED - 800538e: 1dfa adds r2, r7, #7 - 8005390: 2301 movs r3, #1 - 8005392: 2109 movs r1, #9 - 8005394: 20ae movs r0, #174 ; 0xae - 8005396: f7ff fa43 bl 8004820 + 8005ab2: 1dfa adds r2, r7, #7 + 8005ab4: 2301 movs r3, #1 + 8005ab6: 2109 movs r1, #9 + 8005ab8: 20ae movs r0, #174 ; 0xae + 8005aba: f7ff fa43 bl 8004f44 a=0x27; - 800539a: 2327 movs r3, #39 ; 0x27 - 800539c: 71fb strb r3, [r7, #7] + 8005abe: 2327 movs r3, #39 ; 0x27 + 8005ac0: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_SPO2_CONFIG,&a,1); // SPO2_ADC range = 4096nA, SPO2 sample rate (50 Hz), LED pulseWidth (400uS) - 800539e: 1dfa adds r2, r7, #7 - 80053a0: 2301 movs r3, #1 - 80053a2: 210a movs r1, #10 - 80053a4: 20ae movs r0, #174 ; 0xae - 80053a6: f7ff fa3b bl 8004820 + 8005ac2: 1dfa adds r2, r7, #7 + 8005ac4: 2301 movs r3, #1 + 8005ac6: 210a movs r1, #10 + 8005ac8: 20ae movs r0, #174 ; 0xae + 8005aca: f7ff fa3b bl 8004f44 a=0x32; - 80053aa: 2332 movs r3, #50 ; 0x32 - 80053ac: 71fb strb r3, [r7, #7] + 8005ace: 2332 movs r3, #50 ; 0x32 + 8005ad0: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_LED1_PA,&a,1);//Choose value for ~ 10mA for LED1 - 80053ae: 1dfa adds r2, r7, #7 - 80053b0: 2301 movs r3, #1 - 80053b2: 210c movs r1, #12 - 80053b4: 20ae movs r0, #174 ; 0xae - 80053b6: f7ff fa33 bl 8004820 + 8005ad2: 1dfa adds r2, r7, #7 + 8005ad4: 2301 movs r3, #1 + 8005ad6: 210c movs r1, #12 + 8005ad8: 20ae movs r0, #174 ; 0xae + 8005ada: f7ff fa33 bl 8004f44 IIC_SAND_DATE(MAX30102_Device_address,REG_LED2_PA,&a,1);// Choose value for ~ 10mA for LED2 - 80053ba: 1dfa adds r2, r7, #7 - 80053bc: 2301 movs r3, #1 - 80053be: 210d movs r1, #13 - 80053c0: 20ae movs r0, #174 ; 0xae - 80053c2: f7ff fa2d bl 8004820 + 8005ade: 1dfa adds r2, r7, #7 + 8005ae0: 2301 movs r3, #1 + 8005ae2: 210d movs r1, #13 + 8005ae4: 20ae movs r0, #174 ; 0xae + 8005ae6: f7ff fa2d bl 8004f44 a=0x7f; - 80053c6: 237f movs r3, #127 ; 0x7f - 80053c8: 71fb strb r3, [r7, #7] + 8005aea: 237f movs r3, #127 ; 0x7f + 8005aec: 71fb strb r3, [r7, #7] IIC_SAND_DATE(MAX30102_Device_address,REG_PILOT_PA,&a,1);// Choose value for ~ 25mA for Pilot LED - 80053ca: 1dfa adds r2, r7, #7 - 80053cc: 2301 movs r3, #1 - 80053ce: 2110 movs r1, #16 - 80053d0: 20ae movs r0, #174 ; 0xae - 80053d2: f7ff fa25 bl 8004820 + 8005aee: 1dfa adds r2, r7, #7 + 8005af0: 2301 movs r3, #1 + 8005af2: 2110 movs r1, #16 + 8005af4: 20ae movs r0, #174 ; 0xae + 8005af6: f7ff fa25 bl 8004f44 } - 80053d6: bf00 nop - 80053d8: 3708 adds r7, #8 - 80053da: 46bd mov sp, r7 - 80053dc: bd80 pop {r7, pc} + 8005afa: bf00 nop + 8005afc: 3708 adds r7, #8 + 8005afe: 46bd mov sp, r7 + 8005b00: bd80 pop {r7, pc} ... -080053e0 : +08005b04 : void max30102_read_fifo(void) { - 80053e0: b580 push {r7, lr} - 80053e2: b082 sub sp, #8 - 80053e4: af00 add r7, sp, #0 + 8005b04: b580 push {r7, lr} + 8005b06: b082 sub sp, #8 + 8005b08: af00 add r7, sp, #0 uint16_t un_temp; fifo_red=0; - 80053e6: 4b3c ldr r3, [pc, #240] ; (80054d8 ) - 80053e8: 2200 movs r2, #0 - 80053ea: 801a strh r2, [r3, #0] + 8005b0a: 4b3c ldr r3, [pc, #240] ; (8005bfc ) + 8005b0c: 2200 movs r2, #0 + 8005b0e: 801a strh r2, [r3, #0] fifo_ir=0; - 80053ec: 4b3b ldr r3, [pc, #236] ; (80054dc ) - 80053ee: 2200 movs r2, #0 - 80053f0: 801a strh r2, [r3, #0] + 8005b10: 4b3b ldr r3, [pc, #236] ; (8005c00 ) + 8005b12: 2200 movs r2, #0 + 8005b14: 801a strh r2, [r3, #0] uint8_t ach_i2c_data[6]; //read and clear status register IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_1,&ach_i2c_data,1); - 80053f2: 463a mov r2, r7 - 80053f4: 2301 movs r3, #1 - 80053f6: 2100 movs r1, #0 - 80053f8: 20ae movs r0, #174 ; 0xae - 80053fa: f7ff fa2f bl 800485c + 8005b16: 463a mov r2, r7 + 8005b18: 2301 movs r3, #1 + 8005b1a: 2100 movs r1, #0 + 8005b1c: 20ae movs r0, #174 ; 0xae + 8005b1e: f7ff fa2f bl 8004f80 IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_2,&ach_i2c_data,1); - 80053fe: 463a mov r2, r7 - 8005400: 2301 movs r3, #1 - 8005402: 2101 movs r1, #1 - 8005404: 20ae movs r0, #174 ; 0xae - 8005406: f7ff fa29 bl 800485c + 8005b22: 463a mov r2, r7 + 8005b24: 2301 movs r3, #1 + 8005b26: 2101 movs r1, #1 + 8005b28: 20ae movs r0, #174 ; 0xae + 8005b2a: f7ff fa29 bl 8004f80 ach_i2c_data[0]=REG_FIFO_DATA; - 800540a: 2307 movs r3, #7 - 800540c: 703b strb r3, [r7, #0] + 8005b2e: 2307 movs r3, #7 + 8005b30: 703b strb r3, [r7, #0] IIC_READ_DATE(MAX30102_Device_address,REG_FIFO_DATA,&ach_i2c_data,6); - 800540e: 463a mov r2, r7 - 8005410: 2306 movs r3, #6 - 8005412: 2107 movs r1, #7 - 8005414: 20ae movs r0, #174 ; 0xae - 8005416: f7ff fa21 bl 800485c + 8005b32: 463a mov r2, r7 + 8005b34: 2306 movs r3, #6 + 8005b36: 2107 movs r1, #7 + 8005b38: 20ae movs r0, #174 ; 0xae + 8005b3a: f7ff fa21 bl 8004f80 un_temp=ach_i2c_data[0]; - 800541a: 783b ldrb r3, [r7, #0] - 800541c: 80fb strh r3, [r7, #6] + 8005b3e: 783b ldrb r3, [r7, #0] + 8005b40: 80fb strh r3, [r7, #6] un_temp<<=14; - 800541e: 88fb ldrh r3, [r7, #6] - 8005420: 039b lsls r3, r3, #14 - 8005422: 80fb strh r3, [r7, #6] + 8005b42: 88fb ldrh r3, [r7, #6] + 8005b44: 039b lsls r3, r3, #14 + 8005b46: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 8005424: 4b2c ldr r3, [pc, #176] ; (80054d8 ) - 8005426: 881a ldrh r2, [r3, #0] - 8005428: 88fb ldrh r3, [r7, #6] - 800542a: 4413 add r3, r2 - 800542c: b29a uxth r2, r3 - 800542e: 4b2a ldr r3, [pc, #168] ; (80054d8 ) - 8005430: 801a strh r2, [r3, #0] + 8005b48: 4b2c ldr r3, [pc, #176] ; (8005bfc ) + 8005b4a: 881a ldrh r2, [r3, #0] + 8005b4c: 88fb ldrh r3, [r7, #6] + 8005b4e: 4413 add r3, r2 + 8005b50: b29a uxth r2, r3 + 8005b52: 4b2a ldr r3, [pc, #168] ; (8005bfc ) + 8005b54: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[1]; - 8005432: 787b ldrb r3, [r7, #1] - 8005434: 80fb strh r3, [r7, #6] + 8005b56: 787b ldrb r3, [r7, #1] + 8005b58: 80fb strh r3, [r7, #6] un_temp<<=6; - 8005436: 88fb ldrh r3, [r7, #6] - 8005438: 019b lsls r3, r3, #6 - 800543a: 80fb strh r3, [r7, #6] + 8005b5a: 88fb ldrh r3, [r7, #6] + 8005b5c: 019b lsls r3, r3, #6 + 8005b5e: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 800543c: 4b26 ldr r3, [pc, #152] ; (80054d8 ) - 800543e: 881a ldrh r2, [r3, #0] - 8005440: 88fb ldrh r3, [r7, #6] - 8005442: 4413 add r3, r2 - 8005444: b29a uxth r2, r3 - 8005446: 4b24 ldr r3, [pc, #144] ; (80054d8 ) - 8005448: 801a strh r2, [r3, #0] + 8005b60: 4b26 ldr r3, [pc, #152] ; (8005bfc ) + 8005b62: 881a ldrh r2, [r3, #0] + 8005b64: 88fb ldrh r3, [r7, #6] + 8005b66: 4413 add r3, r2 + 8005b68: b29a uxth r2, r3 + 8005b6a: 4b24 ldr r3, [pc, #144] ; (8005bfc ) + 8005b6c: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[2]; - 800544a: 78bb ldrb r3, [r7, #2] - 800544c: 80fb strh r3, [r7, #6] + 8005b6e: 78bb ldrb r3, [r7, #2] + 8005b70: 80fb strh r3, [r7, #6] un_temp>>=2; - 800544e: 88fb ldrh r3, [r7, #6] - 8005450: 089b lsrs r3, r3, #2 - 8005452: 80fb strh r3, [r7, #6] + 8005b72: 88fb ldrh r3, [r7, #6] + 8005b74: 089b lsrs r3, r3, #2 + 8005b76: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 8005454: 4b20 ldr r3, [pc, #128] ; (80054d8 ) - 8005456: 881a ldrh r2, [r3, #0] - 8005458: 88fb ldrh r3, [r7, #6] - 800545a: 4413 add r3, r2 - 800545c: b29a uxth r2, r3 - 800545e: 4b1e ldr r3, [pc, #120] ; (80054d8 ) - 8005460: 801a strh r2, [r3, #0] + 8005b78: 4b20 ldr r3, [pc, #128] ; (8005bfc ) + 8005b7a: 881a ldrh r2, [r3, #0] + 8005b7c: 88fb ldrh r3, [r7, #6] + 8005b7e: 4413 add r3, r2 + 8005b80: b29a uxth r2, r3 + 8005b82: 4b1e ldr r3, [pc, #120] ; (8005bfc ) + 8005b84: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[3]; - 8005462: 78fb ldrb r3, [r7, #3] - 8005464: 80fb strh r3, [r7, #6] + 8005b86: 78fb ldrb r3, [r7, #3] + 8005b88: 80fb strh r3, [r7, #6] un_temp<<=14; - 8005466: 88fb ldrh r3, [r7, #6] - 8005468: 039b lsls r3, r3, #14 - 800546a: 80fb strh r3, [r7, #6] + 8005b8a: 88fb ldrh r3, [r7, #6] + 8005b8c: 039b lsls r3, r3, #14 + 8005b8e: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 800546c: 4b1b ldr r3, [pc, #108] ; (80054dc ) - 800546e: 881a ldrh r2, [r3, #0] - 8005470: 88fb ldrh r3, [r7, #6] - 8005472: 4413 add r3, r2 - 8005474: b29a uxth r2, r3 - 8005476: 4b19 ldr r3, [pc, #100] ; (80054dc ) - 8005478: 801a strh r2, [r3, #0] + 8005b90: 4b1b ldr r3, [pc, #108] ; (8005c00 ) + 8005b92: 881a ldrh r2, [r3, #0] + 8005b94: 88fb ldrh r3, [r7, #6] + 8005b96: 4413 add r3, r2 + 8005b98: b29a uxth r2, r3 + 8005b9a: 4b19 ldr r3, [pc, #100] ; (8005c00 ) + 8005b9c: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[4]; - 800547a: 793b ldrb r3, [r7, #4] - 800547c: 80fb strh r3, [r7, #6] + 8005b9e: 793b ldrb r3, [r7, #4] + 8005ba0: 80fb strh r3, [r7, #6] un_temp<<=6; - 800547e: 88fb ldrh r3, [r7, #6] - 8005480: 019b lsls r3, r3, #6 - 8005482: 80fb strh r3, [r7, #6] + 8005ba2: 88fb ldrh r3, [r7, #6] + 8005ba4: 019b lsls r3, r3, #6 + 8005ba6: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 8005484: 4b15 ldr r3, [pc, #84] ; (80054dc ) - 8005486: 881a ldrh r2, [r3, #0] - 8005488: 88fb ldrh r3, [r7, #6] - 800548a: 4413 add r3, r2 - 800548c: b29a uxth r2, r3 - 800548e: 4b13 ldr r3, [pc, #76] ; (80054dc ) - 8005490: 801a strh r2, [r3, #0] + 8005ba8: 4b15 ldr r3, [pc, #84] ; (8005c00 ) + 8005baa: 881a ldrh r2, [r3, #0] + 8005bac: 88fb ldrh r3, [r7, #6] + 8005bae: 4413 add r3, r2 + 8005bb0: b29a uxth r2, r3 + 8005bb2: 4b13 ldr r3, [pc, #76] ; (8005c00 ) + 8005bb4: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[5]; - 8005492: 797b ldrb r3, [r7, #5] - 8005494: 80fb strh r3, [r7, #6] + 8005bb6: 797b ldrb r3, [r7, #5] + 8005bb8: 80fb strh r3, [r7, #6] un_temp>>=2; - 8005496: 88fb ldrh r3, [r7, #6] - 8005498: 089b lsrs r3, r3, #2 - 800549a: 80fb strh r3, [r7, #6] + 8005bba: 88fb ldrh r3, [r7, #6] + 8005bbc: 089b lsrs r3, r3, #2 + 8005bbe: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 800549c: 4b0f ldr r3, [pc, #60] ; (80054dc ) - 800549e: 881a ldrh r2, [r3, #0] - 80054a0: 88fb ldrh r3, [r7, #6] - 80054a2: 4413 add r3, r2 - 80054a4: b29a uxth r2, r3 - 80054a6: 4b0d ldr r3, [pc, #52] ; (80054dc ) - 80054a8: 801a strh r2, [r3, #0] + 8005bc0: 4b0f ldr r3, [pc, #60] ; (8005c00 ) + 8005bc2: 881a ldrh r2, [r3, #0] + 8005bc4: 88fb ldrh r3, [r7, #6] + 8005bc6: 4413 add r3, r2 + 8005bc8: b29a uxth r2, r3 + 8005bca: 4b0d ldr r3, [pc, #52] ; (8005c00 ) + 8005bcc: 801a strh r2, [r3, #0] if(fifo_ir<=10000) - 80054aa: 4b0c ldr r3, [pc, #48] ; (80054dc ) - 80054ac: 881b ldrh r3, [r3, #0] - 80054ae: f242 7210 movw r2, #10000 ; 0x2710 - 80054b2: 4293 cmp r3, r2 - 80054b4: d802 bhi.n 80054bc + 8005bce: 4b0c ldr r3, [pc, #48] ; (8005c00 ) + 8005bd0: 881b ldrh r3, [r3, #0] + 8005bd2: f242 7210 movw r2, #10000 ; 0x2710 + 8005bd6: 4293 cmp r3, r2 + 8005bd8: d802 bhi.n 8005be0 { fifo_ir=0; - 80054b6: 4b09 ldr r3, [pc, #36] ; (80054dc ) - 80054b8: 2200 movs r2, #0 - 80054ba: 801a strh r2, [r3, #0] + 8005bda: 4b09 ldr r3, [pc, #36] ; (8005c00 ) + 8005bdc: 2200 movs r2, #0 + 8005bde: 801a strh r2, [r3, #0] } if(fifo_red<=10000) - 80054bc: 4b06 ldr r3, [pc, #24] ; (80054d8 ) - 80054be: 881b ldrh r3, [r3, #0] - 80054c0: f242 7210 movw r2, #10000 ; 0x2710 - 80054c4: 4293 cmp r3, r2 - 80054c6: d802 bhi.n 80054ce + 8005be0: 4b06 ldr r3, [pc, #24] ; (8005bfc ) + 8005be2: 881b ldrh r3, [r3, #0] + 8005be4: f242 7210 movw r2, #10000 ; 0x2710 + 8005be8: 4293 cmp r3, r2 + 8005bea: d802 bhi.n 8005bf2 { fifo_red=0; - 80054c8: 4b03 ldr r3, [pc, #12] ; (80054d8 ) - 80054ca: 2200 movs r2, #0 - 80054cc: 801a strh r2, [r3, #0] + 8005bec: 4b03 ldr r3, [pc, #12] ; (8005bfc ) + 8005bee: 2200 movs r2, #0 + 8005bf0: 801a strh r2, [r3, #0] } } - 80054ce: bf00 nop - 80054d0: 3708 adds r7, #8 - 80054d2: 46bd mov sp, r7 - 80054d4: bd80 pop {r7, pc} - 80054d6: bf00 nop - 80054d8: 20002450 .word 0x20002450 - 80054dc: 20000340 .word 0x20000340 + 8005bf2: bf00 nop + 8005bf4: 3708 adds r7, #8 + 8005bf6: 46bd mov sp, r7 + 8005bf8: bd80 pop {r7, pc} + 8005bfa: bf00 nop + 8005bfc: 20002498 .word 0x20002498 + 8005c00: 20000388 .word 0x20000388 -080054e0 : +08005c04 : void APP_blood_init(window *a_window) { - 80054e0: b580 push {r7, lr} - 80054e2: b082 sub sp, #8 - 80054e4: af00 add r7, sp, #0 - 80054e6: 6078 str r0, [r7, #4] + 8005c04: b580 push {r7, lr} + 8005c06: b082 sub sp, #8 + 8005c08: af00 add r7, sp, #0 + 8005c0a: 6078 str r0, [r7, #4] blood_win=a_window; - 80054e8: 4a0b ldr r2, [pc, #44] ; (8005518 ) - 80054ea: 687b ldr r3, [r7, #4] - 80054ec: 6013 str r3, [r2, #0] + 8005c0c: 4a0b ldr r2, [pc, #44] ; (8005c3c ) + 8005c0e: 687b ldr r3, [r7, #4] + 8005c10: 6013 str r3, [r2, #0] HAL_GPIO_WritePin(MAX_RD_GPIO_Port, MAX_RD_Pin, 0); - 80054ee: 2200 movs r2, #0 - 80054f0: f44f 4180 mov.w r1, #16384 ; 0x4000 - 80054f4: 4809 ldr r0, [pc, #36] ; (800551c ) - 80054f6: f7fc fd3a bl 8001f6e + 8005c12: 2200 movs r2, #0 + 8005c14: f44f 4180 mov.w r1, #16384 ; 0x4000 + 8005c18: 4809 ldr r0, [pc, #36] ; (8005c40 ) + 8005c1a: f7fc fa3a bl 8002092 HAL_GPIO_WritePin(MAX_IRD_GPIO_Port, MAX_IRD_Pin, 0); - 80054fa: 2200 movs r2, #0 - 80054fc: f44f 5180 mov.w r1, #4096 ; 0x1000 - 8005500: 4806 ldr r0, [pc, #24] ; (800551c ) - 8005502: f7fc fd34 bl 8001f6e - + 8005c1e: 2200 movs r2, #0 + 8005c20: f44f 5180 mov.w r1, #4096 ; 0x1000 + 8005c24: 4806 ldr r0, [pc, #24] ; (8005c40 ) + 8005c26: f7fc fa34 bl 8002092 + //HAL_TIM_Base_Start_IT(&htim6); Max30102_reset(); - 8005506: f7ff ff03 bl 8005310 + 8005c2a: f7ff ff03 bl 8005a34 MAX30102_Config(); - 800550a: f7ff ff11 bl 8005330 + 8005c2e: f7ff ff11 bl 8005a54 //读取FIFO max30102_read_fifo(); } } */ } - 800550e: bf00 nop - 8005510: 3708 adds r7, #8 - 8005512: 46bd mov sp, r7 - 8005514: bd80 pop {r7, pc} - 8005516: bf00 nop - 8005518: 20000344 .word 0x20000344 - 800551c: 40010c00 .word 0x40010c00 + 8005c32: bf00 nop + 8005c34: 3708 adds r7, #8 + 8005c36: 46bd mov sp, r7 + 8005c38: bd80 pop {r7, pc} + 8005c3a: bf00 nop + 8005c3c: 2000038c .word 0x2000038c + 8005c40: 40010c00 .word 0x40010c00 -08005520 : +08005c44 : struct compx s1[FFT_N+16]; //FFT输入和输出:从S[1]开始存放,根据大小自己定义 struct compx s2[FFT_N+16]; //FFT输入和输出:从S[1]开始存放,根据大小自己定义 //向下取整 double my_floor(double x) { - 8005520: b580 push {r7, lr} - 8005522: b084 sub sp, #16 - 8005524: af00 add r7, sp, #0 - 8005526: e9c7 0100 strd r0, r1, [r7] + 8005c44: b580 push {r7, lr} + 8005c46: b084 sub sp, #16 + 8005c48: af00 add r7, sp, #0 + 8005c4a: e9c7 0100 strd r0, r1, [r7] double y=x; - 800552a: e9d7 2300 ldrd r2, r3, [r7] - 800552e: e9c7 2302 strd r2, r3, [r7, #8] + 8005c4e: e9d7 2300 ldrd r2, r3, [r7] + 8005c52: e9c7 2302 strd r2, r3, [r7, #8] if( (*( ( (int *) &y)+1) & 0x80000000) != 0) //或者if(x<0) - 8005532: f107 0308 add.w r3, r7, #8 - 8005536: 3304 adds r3, #4 - 8005538: 681b ldr r3, [r3, #0] - 800553a: 2b00 cmp r3, #0 - 800553c: da14 bge.n 8005568 + 8005c56: f107 0308 add.w r3, r7, #8 + 8005c5a: 3304 adds r3, #4 + 8005c5c: 681b ldr r3, [r3, #0] + 8005c5e: 2b00 cmp r3, #0 + 8005c60: da14 bge.n 8005c8c return (float)((int)x)-1; - 800553e: e9d7 0100 ldrd r0, r1, [r7] - 8005542: f7fb fae5 bl 8000b10 <__aeabi_d2iz> - 8005546: 4603 mov r3, r0 - 8005548: 4618 mov r0, r3 - 800554a: f7fb fc13 bl 8000d74 <__aeabi_i2f> - 800554e: 4603 mov r3, r0 - 8005550: f04f 517e mov.w r1, #1065353216 ; 0x3f800000 - 8005554: 4618 mov r0, r3 - 8005556: f7fb fb57 bl 8000c08 <__aeabi_fsub> - 800555a: 4603 mov r3, r0 - 800555c: 4618 mov r0, r3 - 800555e: f7fa ffcf bl 8000500 <__aeabi_f2d> - 8005562: 4602 mov r2, r0 - 8005564: 460b mov r3, r1 - 8005566: e00d b.n 8005584 + 8005c62: e9d7 0100 ldrd r0, r1, [r7] + 8005c66: f7fa ff53 bl 8000b10 <__aeabi_d2iz> + 8005c6a: 4603 mov r3, r0 + 8005c6c: 4618 mov r0, r3 + 8005c6e: f7fb f881 bl 8000d74 <__aeabi_i2f> + 8005c72: 4603 mov r3, r0 + 8005c74: f04f 517e mov.w r1, #1065353216 ; 0x3f800000 + 8005c78: 4618 mov r0, r3 + 8005c7a: f7fa ffc5 bl 8000c08 <__aeabi_fsub> + 8005c7e: 4603 mov r3, r0 + 8005c80: 4618 mov r0, r3 + 8005c82: f7fa fc3d bl 8000500 <__aeabi_f2d> + 8005c86: 4602 mov r2, r0 + 8005c88: 460b mov r3, r1 + 8005c8a: e00d b.n 8005ca8 else return (float)((int)x); - 8005568: e9d7 0100 ldrd r0, r1, [r7] - 800556c: f7fb fad0 bl 8000b10 <__aeabi_d2iz> - 8005570: 4603 mov r3, r0 - 8005572: 4618 mov r0, r3 - 8005574: f7fb fbfe bl 8000d74 <__aeabi_i2f> - 8005578: 4603 mov r3, r0 - 800557a: 4618 mov r0, r3 - 800557c: f7fa ffc0 bl 8000500 <__aeabi_f2d> - 8005580: 4602 mov r2, r0 - 8005582: 460b mov r3, r1 + 8005c8c: e9d7 0100 ldrd r0, r1, [r7] + 8005c90: f7fa ff3e bl 8000b10 <__aeabi_d2iz> + 8005c94: 4603 mov r3, r0 + 8005c96: 4618 mov r0, r3 + 8005c98: f7fb f86c bl 8000d74 <__aeabi_i2f> + 8005c9c: 4603 mov r3, r0 + 8005c9e: 4618 mov r0, r3 + 8005ca0: f7fa fc2e bl 8000500 <__aeabi_f2d> + 8005ca4: 4602 mov r2, r0 + 8005ca6: 460b mov r3, r1 } - 8005584: 4610 mov r0, r2 - 8005586: 4619 mov r1, r3 - 8005588: 3710 adds r7, #16 - 800558a: 46bd mov sp, r7 - 800558c: bd80 pop {r7, pc} + 8005ca8: 4610 mov r0, r2 + 8005caa: 4619 mov r1, r3 + 8005cac: 3710 adds r7, #16 + 8005cae: 46bd mov sp, r7 + 8005cb0: bd80 pop {r7, pc} -0800558e : +08005cb2 : //求余运算 double my_fmod(double x, double y) { - 800558e: b5b0 push {r4, r5, r7, lr} - 8005590: b088 sub sp, #32 - 8005592: af00 add r7, sp, #0 - 8005594: e9c7 0102 strd r0, r1, [r7, #8] - 8005598: e9c7 2300 strd r2, r3, [r7] + 8005cb2: b5b0 push {r4, r5, r7, lr} + 8005cb4: b088 sub sp, #32 + 8005cb6: af00 add r7, sp, #0 + 8005cb8: e9c7 0102 strd r0, r1, [r7, #8] + 8005cbc: e9c7 2300 strd r2, r3, [r7] double temp, ret; if (y == 0.0) - 800559c: f04f 0200 mov.w r2, #0 - 80055a0: f04f 0300 mov.w r3, #0 - 80055a4: e9d7 0100 ldrd r0, r1, [r7] - 80055a8: f7fb fa6a bl 8000a80 <__aeabi_dcmpeq> - 80055ac: 4603 mov r3, r0 - 80055ae: 2b00 cmp r3, #0 - 80055b0: d004 beq.n 80055bc + 8005cc0: f04f 0200 mov.w r2, #0 + 8005cc4: f04f 0300 mov.w r3, #0 + 8005cc8: e9d7 0100 ldrd r0, r1, [r7] + 8005ccc: f7fa fed8 bl 8000a80 <__aeabi_dcmpeq> + 8005cd0: 4603 mov r3, r0 + 8005cd2: 2b00 cmp r3, #0 + 8005cd4: d004 beq.n 8005ce0 return 0.0; - 80055b2: f04f 0200 mov.w r2, #0 - 80055b6: f04f 0300 mov.w r3, #0 - 80055ba: e04d b.n 8005658 + 8005cd6: f04f 0200 mov.w r2, #0 + 8005cda: f04f 0300 mov.w r3, #0 + 8005cde: e04d b.n 8005d7c temp = my_floor(x/y); - 80055bc: e9d7 2300 ldrd r2, r3, [r7] - 80055c0: e9d7 0102 ldrd r0, r1, [r7, #8] - 80055c4: f7fb f91e bl 8000804 <__aeabi_ddiv> - 80055c8: 4602 mov r2, r0 - 80055ca: 460b mov r3, r1 - 80055cc: 4610 mov r0, r2 - 80055ce: 4619 mov r1, r3 - 80055d0: f7ff ffa6 bl 8005520 - 80055d4: e9c7 0104 strd r0, r1, [r7, #16] + 8005ce0: e9d7 2300 ldrd r2, r3, [r7] + 8005ce4: e9d7 0102 ldrd r0, r1, [r7, #8] + 8005ce8: f7fa fd8c bl 8000804 <__aeabi_ddiv> + 8005cec: 4602 mov r2, r0 + 8005cee: 460b mov r3, r1 + 8005cf0: 4610 mov r0, r2 + 8005cf2: 4619 mov r1, r3 + 8005cf4: f7ff ffa6 bl 8005c44 + 8005cf8: e9c7 0104 strd r0, r1, [r7, #16] ret = x - temp * y; - 80055d8: e9d7 2300 ldrd r2, r3, [r7] - 80055dc: e9d7 0104 ldrd r0, r1, [r7, #16] - 80055e0: f7fa ffe6 bl 80005b0 <__aeabi_dmul> - 80055e4: 4602 mov r2, r0 - 80055e6: 460b mov r3, r1 - 80055e8: e9d7 0102 ldrd r0, r1, [r7, #8] - 80055ec: f7fa fe28 bl 8000240 <__aeabi_dsub> - 80055f0: 4602 mov r2, r0 - 80055f2: 460b mov r3, r1 - 80055f4: e9c7 2306 strd r2, r3, [r7, #24] + 8005cfc: e9d7 2300 ldrd r2, r3, [r7] + 8005d00: e9d7 0104 ldrd r0, r1, [r7, #16] + 8005d04: f7fa fc54 bl 80005b0 <__aeabi_dmul> + 8005d08: 4602 mov r2, r0 + 8005d0a: 460b mov r3, r1 + 8005d0c: e9d7 0102 ldrd r0, r1, [r7, #8] + 8005d10: f7fa fa96 bl 8000240 <__aeabi_dsub> + 8005d14: 4602 mov r2, r0 + 8005d16: 460b mov r3, r1 + 8005d18: e9c7 2306 strd r2, r3, [r7, #24] if ((x < 0.0) != (y < 0.0)) - 80055f8: 2301 movs r3, #1 - 80055fa: 461c mov r4, r3 - 80055fc: f04f 0200 mov.w r2, #0 - 8005600: f04f 0300 mov.w r3, #0 - 8005604: e9d7 0102 ldrd r0, r1, [r7, #8] - 8005608: f7fb fa44 bl 8000a94 <__aeabi_dcmplt> - 800560c: 4603 mov r3, r0 - 800560e: 2b00 cmp r3, #0 - 8005610: d101 bne.n 8005616 - 8005612: 2300 movs r3, #0 - 8005614: 461c mov r4, r3 - 8005616: b2e4 uxtb r4, r4 - 8005618: 2301 movs r3, #1 - 800561a: 461d mov r5, r3 - 800561c: f04f 0200 mov.w r2, #0 - 8005620: f04f 0300 mov.w r3, #0 - 8005624: e9d7 0100 ldrd r0, r1, [r7] - 8005628: f7fb fa34 bl 8000a94 <__aeabi_dcmplt> - 800562c: 4603 mov r3, r0 - 800562e: 2b00 cmp r3, #0 - 8005630: d101 bne.n 8005636 - 8005632: 2300 movs r3, #0 - 8005634: 461d mov r5, r3 - 8005636: b2eb uxtb r3, r5 - 8005638: 4063 eors r3, r4 - 800563a: b2db uxtb r3, r3 - 800563c: 2b00 cmp r3, #0 - 800563e: d009 beq.n 8005654 + 8005d1c: 2301 movs r3, #1 + 8005d1e: 461c mov r4, r3 + 8005d20: f04f 0200 mov.w r2, #0 + 8005d24: f04f 0300 mov.w r3, #0 + 8005d28: e9d7 0102 ldrd r0, r1, [r7, #8] + 8005d2c: f7fa feb2 bl 8000a94 <__aeabi_dcmplt> + 8005d30: 4603 mov r3, r0 + 8005d32: 2b00 cmp r3, #0 + 8005d34: d101 bne.n 8005d3a + 8005d36: 2300 movs r3, #0 + 8005d38: 461c mov r4, r3 + 8005d3a: b2e4 uxtb r4, r4 + 8005d3c: 2301 movs r3, #1 + 8005d3e: 461d mov r5, r3 + 8005d40: f04f 0200 mov.w r2, #0 + 8005d44: f04f 0300 mov.w r3, #0 + 8005d48: e9d7 0100 ldrd r0, r1, [r7] + 8005d4c: f7fa fea2 bl 8000a94 <__aeabi_dcmplt> + 8005d50: 4603 mov r3, r0 + 8005d52: 2b00 cmp r3, #0 + 8005d54: d101 bne.n 8005d5a + 8005d56: 2300 movs r3, #0 + 8005d58: 461d mov r5, r3 + 8005d5a: b2eb uxtb r3, r5 + 8005d5c: 4063 eors r3, r4 + 8005d5e: b2db uxtb r3, r3 + 8005d60: 2b00 cmp r3, #0 + 8005d62: d009 beq.n 8005d78 ret = ret - y; - 8005640: e9d7 2300 ldrd r2, r3, [r7] - 8005644: e9d7 0106 ldrd r0, r1, [r7, #24] - 8005648: f7fa fdfa bl 8000240 <__aeabi_dsub> - 800564c: 4602 mov r2, r0 - 800564e: 460b mov r3, r1 - 8005650: e9c7 2306 strd r2, r3, [r7, #24] + 8005d64: e9d7 2300 ldrd r2, r3, [r7] + 8005d68: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005d6c: f7fa fa68 bl 8000240 <__aeabi_dsub> + 8005d70: 4602 mov r2, r0 + 8005d72: 460b mov r3, r1 + 8005d74: e9c7 2306 strd r2, r3, [r7, #24] return ret; - 8005654: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005d78: e9d7 2306 ldrd r2, r3, [r7, #24] } - 8005658: 4610 mov r0, r2 - 800565a: 4619 mov r1, r3 - 800565c: 3720 adds r7, #32 - 800565e: 46bd mov sp, r7 - 8005660: bdb0 pop {r4, r5, r7, pc} - 8005662: 0000 movs r0, r0 - 8005664: 0000 movs r0, r0 + 8005d7c: 4610 mov r0, r2 + 8005d7e: 4619 mov r1, r3 + 8005d80: 3720 adds r7, #32 + 8005d82: 46bd mov sp, r7 + 8005d84: bdb0 pop {r4, r5, r7, pc} ... -08005668 : +08005d88 : //正弦函数 double XSin( double x ) { - 8005668: e92d 43b0 stmdb sp!, {r4, r5, r7, r8, r9, lr} - 800566c: b08a sub sp, #40 ; 0x28 - 800566e: af00 add r7, sp, #0 - 8005670: e9c7 0100 strd r0, r1, [r7] + 8005d88: e92d 43b0 stmdb sp!, {r4, r5, r7, r8, r9, lr} + 8005d8c: b08a sub sp, #40 ; 0x28 + 8005d8e: af00 add r7, sp, #0 + 8005d90: e9c7 0100 strd r0, r1, [r7] int s = 0 , n; - 8005674: 2300 movs r3, #0 - 8005676: 627b str r3, [r7, #36] ; 0x24 + 8005d94: 2300 movs r3, #0 + 8005d96: 627b str r3, [r7, #36] ; 0x24 double dx , sx , cx; if( x < 0 ) - 8005678: f04f 0200 mov.w r2, #0 - 800567c: f04f 0300 mov.w r3, #0 - 8005680: e9d7 0100 ldrd r0, r1, [r7] - 8005684: f7fb fa06 bl 8000a94 <__aeabi_dcmplt> - 8005688: 4603 mov r3, r0 - 800568a: 2b00 cmp r3, #0 - 800568c: d007 beq.n 800569e + 8005d98: f04f 0200 mov.w r2, #0 + 8005d9c: f04f 0300 mov.w r3, #0 + 8005da0: e9d7 0100 ldrd r0, r1, [r7] + 8005da4: f7fa fe76 bl 8000a94 <__aeabi_dcmplt> + 8005da8: 4603 mov r3, r0 + 8005daa: 2b00 cmp r3, #0 + 8005dac: d007 beq.n 8005dbe s = 1 , x = -x; - 800568e: 2301 movs r3, #1 - 8005690: 627b str r3, [r7, #36] ; 0x24 - 8005692: 683b ldr r3, [r7, #0] - 8005694: 603b str r3, [r7, #0] - 8005696: 687b ldr r3, [r7, #4] - 8005698: f083 4300 eor.w r3, r3, #2147483648 ; 0x80000000 - 800569c: 607b str r3, [r7, #4] + 8005dae: 2301 movs r3, #1 + 8005db0: 627b str r3, [r7, #36] ; 0x24 + 8005db2: 683b ldr r3, [r7, #0] + 8005db4: 603b str r3, [r7, #0] + 8005db6: 687b ldr r3, [r7, #4] + 8005db8: f083 4300 eor.w r3, r3, #2147483648 ; 0x80000000 + 8005dbc: 607b str r3, [r7, #4] x = my_fmod( x , 2 * XPI ); - 800569e: a392 add r3, pc, #584 ; (adr r3, 80058e8 ) - 80056a0: e9d3 2300 ldrd r2, r3, [r3] - 80056a4: e9d7 0100 ldrd r0, r1, [r7] - 80056a8: f7ff ff71 bl 800558e - 80056ac: e9c7 0100 strd r0, r1, [r7] + 8005dbe: a392 add r3, pc, #584 ; (adr r3, 8006008 ) + 8005dc0: e9d3 2300 ldrd r2, r3, [r3] + 8005dc4: e9d7 0100 ldrd r0, r1, [r7] + 8005dc8: f7ff ff73 bl 8005cb2 + 8005dcc: e9c7 0100 strd r0, r1, [r7] if( x > XPI ) - 80056b0: a38f add r3, pc, #572 ; (adr r3, 80058f0 ) - 80056b2: e9d3 2300 ldrd r2, r3, [r3] - 80056b6: e9d7 0100 ldrd r0, r1, [r7] - 80056ba: f7fb fa09 bl 8000ad0 <__aeabi_dcmpgt> - 80056be: 4603 mov r3, r0 - 80056c0: 2b00 cmp r3, #0 - 80056c2: d011 beq.n 80056e8 + 8005dd0: a38f add r3, pc, #572 ; (adr r3, 8006010 ) + 8005dd2: e9d3 2300 ldrd r2, r3, [r3] + 8005dd6: e9d7 0100 ldrd r0, r1, [r7] + 8005dda: f7fa fe79 bl 8000ad0 <__aeabi_dcmpgt> + 8005dde: 4603 mov r3, r0 + 8005de0: 2b00 cmp r3, #0 + 8005de2: d011 beq.n 8005e08 s = !s , x -= XPI; - 80056c4: 6a7b ldr r3, [r7, #36] ; 0x24 - 80056c6: 2b00 cmp r3, #0 - 80056c8: bf0c ite eq - 80056ca: 2301 moveq r3, #1 - 80056cc: 2300 movne r3, #0 - 80056ce: b2db uxtb r3, r3 - 80056d0: 627b str r3, [r7, #36] ; 0x24 - 80056d2: a387 add r3, pc, #540 ; (adr r3, 80058f0 ) - 80056d4: e9d3 2300 ldrd r2, r3, [r3] - 80056d8: e9d7 0100 ldrd r0, r1, [r7] - 80056dc: f7fa fdb0 bl 8000240 <__aeabi_dsub> - 80056e0: 4602 mov r2, r0 - 80056e2: 460b mov r3, r1 - 80056e4: e9c7 2300 strd r2, r3, [r7] + 8005de4: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005de6: 2b00 cmp r3, #0 + 8005de8: bf0c ite eq + 8005dea: 2301 moveq r3, #1 + 8005dec: 2300 movne r3, #0 + 8005dee: b2db uxtb r3, r3 + 8005df0: 627b str r3, [r7, #36] ; 0x24 + 8005df2: a387 add r3, pc, #540 ; (adr r3, 8006010 ) + 8005df4: e9d3 2300 ldrd r2, r3, [r3] + 8005df8: e9d7 0100 ldrd r0, r1, [r7] + 8005dfc: f7fa fa20 bl 8000240 <__aeabi_dsub> + 8005e00: 4602 mov r2, r0 + 8005e02: 460b mov r3, r1 + 8005e04: e9c7 2300 strd r2, r3, [r7] if( x > XPI / 2 ) - 80056e8: a383 add r3, pc, #524 ; (adr r3, 80058f8 ) - 80056ea: e9d3 2300 ldrd r2, r3, [r3] - 80056ee: e9d7 0100 ldrd r0, r1, [r7] - 80056f2: f7fb f9ed bl 8000ad0 <__aeabi_dcmpgt> - 80056f6: 4603 mov r3, r0 - 80056f8: 2b00 cmp r3, #0 - 80056fa: d00a beq.n 8005712 + 8005e08: a383 add r3, pc, #524 ; (adr r3, 8006018 ) + 8005e0a: e9d3 2300 ldrd r2, r3, [r3] + 8005e0e: e9d7 0100 ldrd r0, r1, [r7] + 8005e12: f7fa fe5d bl 8000ad0 <__aeabi_dcmpgt> + 8005e16: 4603 mov r3, r0 + 8005e18: 2b00 cmp r3, #0 + 8005e1a: d00a beq.n 8005e32 x = XPI - x; - 80056fc: e9d7 2300 ldrd r2, r3, [r7] - 8005700: a17b add r1, pc, #492 ; (adr r1, 80058f0 ) - 8005702: e9d1 0100 ldrd r0, r1, [r1] - 8005706: f7fa fd9b bl 8000240 <__aeabi_dsub> - 800570a: 4602 mov r2, r0 - 800570c: 460b mov r3, r1 - 800570e: e9c7 2300 strd r2, r3, [r7] + 8005e1c: e9d7 2300 ldrd r2, r3, [r7] + 8005e20: a17b add r1, pc, #492 ; (adr r1, 8006010 ) + 8005e22: e9d1 0100 ldrd r0, r1, [r1] + 8005e26: f7fa fa0b bl 8000240 <__aeabi_dsub> + 8005e2a: 4602 mov r2, r0 + 8005e2c: 460b mov r3, r1 + 8005e2e: e9c7 2300 strd r2, r3, [r7] n = (int)( x / XINCL ); - 8005712: a37b add r3, pc, #492 ; (adr r3, 8005900 ) - 8005714: e9d3 2300 ldrd r2, r3, [r3] - 8005718: e9d7 0100 ldrd r0, r1, [r7] - 800571c: f7fb f872 bl 8000804 <__aeabi_ddiv> - 8005720: 4602 mov r2, r0 - 8005722: 460b mov r3, r1 - 8005724: 4610 mov r0, r2 - 8005726: 4619 mov r1, r3 - 8005728: f7fb f9f2 bl 8000b10 <__aeabi_d2iz> - 800572c: 4603 mov r3, r0 - 800572e: 623b str r3, [r7, #32] + 8005e32: a37b add r3, pc, #492 ; (adr r3, 8006020 ) + 8005e34: e9d3 2300 ldrd r2, r3, [r3] + 8005e38: e9d7 0100 ldrd r0, r1, [r7] + 8005e3c: f7fa fce2 bl 8000804 <__aeabi_ddiv> + 8005e40: 4602 mov r2, r0 + 8005e42: 460b mov r3, r1 + 8005e44: 4610 mov r0, r2 + 8005e46: 4619 mov r1, r3 + 8005e48: f7fa fe62 bl 8000b10 <__aeabi_d2iz> + 8005e4c: 4603 mov r3, r0 + 8005e4e: 623b str r3, [r7, #32] dx = x - n * XINCL; - 8005730: 6a38 ldr r0, [r7, #32] - 8005732: f7fa fed3 bl 80004dc <__aeabi_i2d> - 8005736: a372 add r3, pc, #456 ; (adr r3, 8005900 ) - 8005738: e9d3 2300 ldrd r2, r3, [r3] - 800573c: f7fa ff38 bl 80005b0 <__aeabi_dmul> - 8005740: 4602 mov r2, r0 - 8005742: 460b mov r3, r1 - 8005744: e9d7 0100 ldrd r0, r1, [r7] - 8005748: f7fa fd7a bl 8000240 <__aeabi_dsub> - 800574c: 4602 mov r2, r0 - 800574e: 460b mov r3, r1 - 8005750: e9c7 2306 strd r2, r3, [r7, #24] + 8005e50: 6a38 ldr r0, [r7, #32] + 8005e52: f7fa fb43 bl 80004dc <__aeabi_i2d> + 8005e56: a372 add r3, pc, #456 ; (adr r3, 8006020 ) + 8005e58: e9d3 2300 ldrd r2, r3, [r3] + 8005e5c: f7fa fba8 bl 80005b0 <__aeabi_dmul> + 8005e60: 4602 mov r2, r0 + 8005e62: 460b mov r3, r1 + 8005e64: e9d7 0100 ldrd r0, r1, [r7] + 8005e68: f7fa f9ea bl 8000240 <__aeabi_dsub> + 8005e6c: 4602 mov r2, r0 + 8005e6e: 460b mov r3, r1 + 8005e70: e9c7 2306 strd r2, r3, [r7, #24] if( dx > XINCL / 2 ) - 8005754: a36c add r3, pc, #432 ; (adr r3, 8005908 ) - 8005756: e9d3 2300 ldrd r2, r3, [r3] - 800575a: e9d7 0106 ldrd r0, r1, [r7, #24] - 800575e: f7fb f9b7 bl 8000ad0 <__aeabi_dcmpgt> - 8005762: 4603 mov r3, r0 - 8005764: 2b00 cmp r3, #0 - 8005766: d00d beq.n 8005784 + 8005e74: a36c add r3, pc, #432 ; (adr r3, 8006028 ) + 8005e76: e9d3 2300 ldrd r2, r3, [r3] + 8005e7a: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005e7e: f7fa fe27 bl 8000ad0 <__aeabi_dcmpgt> + 8005e82: 4603 mov r3, r0 + 8005e84: 2b00 cmp r3, #0 + 8005e86: d00d beq.n 8005ea4 ++n , dx -= XINCL; - 8005768: 6a3b ldr r3, [r7, #32] - 800576a: 3301 adds r3, #1 - 800576c: 623b str r3, [r7, #32] - 800576e: a364 add r3, pc, #400 ; (adr r3, 8005900 ) - 8005770: e9d3 2300 ldrd r2, r3, [r3] - 8005774: e9d7 0106 ldrd r0, r1, [r7, #24] - 8005778: f7fa fd62 bl 8000240 <__aeabi_dsub> - 800577c: 4602 mov r2, r0 - 800577e: 460b mov r3, r1 - 8005780: e9c7 2306 strd r2, r3, [r7, #24] + 8005e88: 6a3b ldr r3, [r7, #32] + 8005e8a: 3301 adds r3, #1 + 8005e8c: 623b str r3, [r7, #32] + 8005e8e: a364 add r3, pc, #400 ; (adr r3, 8006020 ) + 8005e90: e9d3 2300 ldrd r2, r3, [r3] + 8005e94: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005e98: f7fa f9d2 bl 8000240 <__aeabi_dsub> + 8005e9c: 4602 mov r2, r0 + 8005e9e: 460b mov r3, r1 + 8005ea0: e9c7 2306 strd r2, r3, [r7, #24] sx = XSinTbl[n]; - 8005784: 4a62 ldr r2, [pc, #392] ; (8005910 ) - 8005786: 6a3b ldr r3, [r7, #32] - 8005788: 00db lsls r3, r3, #3 - 800578a: 4413 add r3, r2 - 800578c: e9d3 2300 ldrd r2, r3, [r3] - 8005790: e9c7 2304 strd r2, r3, [r7, #16] + 8005ea4: 4a62 ldr r2, [pc, #392] ; (8006030 ) + 8005ea6: 6a3b ldr r3, [r7, #32] + 8005ea8: 00db lsls r3, r3, #3 + 8005eaa: 4413 add r3, r2 + 8005eac: e9d3 2300 ldrd r2, r3, [r3] + 8005eb0: e9c7 2304 strd r2, r3, [r7, #16] cx = XSinTbl[XENTRY-n]; - 8005794: 6a3b ldr r3, [r7, #32] - 8005796: f1c3 0364 rsb r3, r3, #100 ; 0x64 - 800579a: 4a5d ldr r2, [pc, #372] ; (8005910 ) - 800579c: 00db lsls r3, r3, #3 - 800579e: 4413 add r3, r2 - 80057a0: e9d3 2300 ldrd r2, r3, [r3] - 80057a4: e9c7 2302 strd r2, r3, [r7, #8] + 8005eb4: 6a3b ldr r3, [r7, #32] + 8005eb6: f1c3 0364 rsb r3, r3, #100 ; 0x64 + 8005eba: 4a5d ldr r2, [pc, #372] ; (8006030 ) + 8005ebc: 00db lsls r3, r3, #3 + 8005ebe: 4413 add r3, r2 + 8005ec0: e9d3 2300 ldrd r2, r3, [r3] + 8005ec4: e9c7 2302 strd r2, r3, [r7, #8] x = sx + dx*cx - (dx*dx)*sx/2 - 80057a8: e9d7 2302 ldrd r2, r3, [r7, #8] - 80057ac: e9d7 0106 ldrd r0, r1, [r7, #24] - 80057b0: f7fa fefe bl 80005b0 <__aeabi_dmul> - 80057b4: 4602 mov r2, r0 - 80057b6: 460b mov r3, r1 - 80057b8: 4610 mov r0, r2 - 80057ba: 4619 mov r1, r3 - 80057bc: e9d7 2304 ldrd r2, r3, [r7, #16] - 80057c0: f7fa fd40 bl 8000244 <__adddf3> - 80057c4: 4602 mov r2, r0 - 80057c6: 460b mov r3, r1 - 80057c8: 4690 mov r8, r2 - 80057ca: 4699 mov r9, r3 - 80057cc: e9d7 2306 ldrd r2, r3, [r7, #24] - 80057d0: e9d7 0106 ldrd r0, r1, [r7, #24] - 80057d4: f7fa feec bl 80005b0 <__aeabi_dmul> - 80057d8: 4602 mov r2, r0 - 80057da: 460b mov r3, r1 - 80057dc: 4610 mov r0, r2 - 80057de: 4619 mov r1, r3 - 80057e0: e9d7 2304 ldrd r2, r3, [r7, #16] - 80057e4: f7fa fee4 bl 80005b0 <__aeabi_dmul> - 80057e8: 4602 mov r2, r0 - 80057ea: 460b mov r3, r1 - 80057ec: 4610 mov r0, r2 - 80057ee: 4619 mov r1, r3 - 80057f0: f04f 0200 mov.w r2, #0 - 80057f4: f04f 4380 mov.w r3, #1073741824 ; 0x40000000 - 80057f8: f7fb f804 bl 8000804 <__aeabi_ddiv> - 80057fc: 4602 mov r2, r0 - 80057fe: 460b mov r3, r1 - 8005800: 4640 mov r0, r8 - 8005802: 4649 mov r1, r9 - 8005804: f7fa fd1c bl 8000240 <__aeabi_dsub> - 8005808: 4602 mov r2, r0 - 800580a: 460b mov r3, r1 - 800580c: 4690 mov r8, r2 - 800580e: 4699 mov r9, r3 + 8005ec8: e9d7 2302 ldrd r2, r3, [r7, #8] + 8005ecc: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005ed0: f7fa fb6e bl 80005b0 <__aeabi_dmul> + 8005ed4: 4602 mov r2, r0 + 8005ed6: 460b mov r3, r1 + 8005ed8: 4610 mov r0, r2 + 8005eda: 4619 mov r1, r3 + 8005edc: e9d7 2304 ldrd r2, r3, [r7, #16] + 8005ee0: f7fa f9b0 bl 8000244 <__adddf3> + 8005ee4: 4602 mov r2, r0 + 8005ee6: 460b mov r3, r1 + 8005ee8: 4690 mov r8, r2 + 8005eea: 4699 mov r9, r3 + 8005eec: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005ef0: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005ef4: f7fa fb5c bl 80005b0 <__aeabi_dmul> + 8005ef8: 4602 mov r2, r0 + 8005efa: 460b mov r3, r1 + 8005efc: 4610 mov r0, r2 + 8005efe: 4619 mov r1, r3 + 8005f00: e9d7 2304 ldrd r2, r3, [r7, #16] + 8005f04: f7fa fb54 bl 80005b0 <__aeabi_dmul> + 8005f08: 4602 mov r2, r0 + 8005f0a: 460b mov r3, r1 + 8005f0c: 4610 mov r0, r2 + 8005f0e: 4619 mov r1, r3 + 8005f10: f04f 0200 mov.w r2, #0 + 8005f14: f04f 4380 mov.w r3, #1073741824 ; 0x40000000 + 8005f18: f7fa fc74 bl 8000804 <__aeabi_ddiv> + 8005f1c: 4602 mov r2, r0 + 8005f1e: 460b mov r3, r1 + 8005f20: 4640 mov r0, r8 + 8005f22: 4649 mov r1, r9 + 8005f24: f7fa f98c bl 8000240 <__aeabi_dsub> + 8005f28: 4602 mov r2, r0 + 8005f2a: 460b mov r3, r1 + 8005f2c: 4690 mov r8, r2 + 8005f2e: 4699 mov r9, r3 - (dx*dx*dx)*cx/6 - 8005810: e9d7 2306 ldrd r2, r3, [r7, #24] - 8005814: e9d7 0106 ldrd r0, r1, [r7, #24] - 8005818: f7fa feca bl 80005b0 <__aeabi_dmul> - 800581c: 4602 mov r2, r0 - 800581e: 460b mov r3, r1 - 8005820: 4610 mov r0, r2 - 8005822: 4619 mov r1, r3 - 8005824: e9d7 2306 ldrd r2, r3, [r7, #24] - 8005828: f7fa fec2 bl 80005b0 <__aeabi_dmul> - 800582c: 4602 mov r2, r0 - 800582e: 460b mov r3, r1 - 8005830: 4610 mov r0, r2 - 8005832: 4619 mov r1, r3 - 8005834: e9d7 2302 ldrd r2, r3, [r7, #8] - 8005838: f7fa feba bl 80005b0 <__aeabi_dmul> - 800583c: 4602 mov r2, r0 - 800583e: 460b mov r3, r1 - 8005840: 4610 mov r0, r2 - 8005842: 4619 mov r1, r3 - 8005844: f04f 0200 mov.w r2, #0 - 8005848: 4b32 ldr r3, [pc, #200] ; (8005914 ) - 800584a: f7fa ffdb bl 8000804 <__aeabi_ddiv> - 800584e: 4602 mov r2, r0 - 8005850: 460b mov r3, r1 - 8005852: 4640 mov r0, r8 - 8005854: 4649 mov r1, r9 - 8005856: f7fa fcf3 bl 8000240 <__aeabi_dsub> - 800585a: 4602 mov r2, r0 - 800585c: 460b mov r3, r1 - 800585e: 4690 mov r8, r2 - 8005860: 4699 mov r9, r3 + 8005f30: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005f34: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005f38: f7fa fb3a bl 80005b0 <__aeabi_dmul> + 8005f3c: 4602 mov r2, r0 + 8005f3e: 460b mov r3, r1 + 8005f40: 4610 mov r0, r2 + 8005f42: 4619 mov r1, r3 + 8005f44: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005f48: f7fa fb32 bl 80005b0 <__aeabi_dmul> + 8005f4c: 4602 mov r2, r0 + 8005f4e: 460b mov r3, r1 + 8005f50: 4610 mov r0, r2 + 8005f52: 4619 mov r1, r3 + 8005f54: e9d7 2302 ldrd r2, r3, [r7, #8] + 8005f58: f7fa fb2a bl 80005b0 <__aeabi_dmul> + 8005f5c: 4602 mov r2, r0 + 8005f5e: 460b mov r3, r1 + 8005f60: 4610 mov r0, r2 + 8005f62: 4619 mov r1, r3 + 8005f64: f04f 0200 mov.w r2, #0 + 8005f68: 4b32 ldr r3, [pc, #200] ; (8006034 ) + 8005f6a: f7fa fc4b bl 8000804 <__aeabi_ddiv> + 8005f6e: 4602 mov r2, r0 + 8005f70: 460b mov r3, r1 + 8005f72: 4640 mov r0, r8 + 8005f74: 4649 mov r1, r9 + 8005f76: f7fa f963 bl 8000240 <__aeabi_dsub> + 8005f7a: 4602 mov r2, r0 + 8005f7c: 460b mov r3, r1 + 8005f7e: 4690 mov r8, r2 + 8005f80: 4699 mov r9, r3 + (dx*dx*dx*dx)*sx/24; - 8005862: e9d7 2306 ldrd r2, r3, [r7, #24] - 8005866: e9d7 0106 ldrd r0, r1, [r7, #24] - 800586a: f7fa fea1 bl 80005b0 <__aeabi_dmul> - 800586e: 4602 mov r2, r0 - 8005870: 460b mov r3, r1 - 8005872: 4610 mov r0, r2 - 8005874: 4619 mov r1, r3 - 8005876: e9d7 2306 ldrd r2, r3, [r7, #24] - 800587a: f7fa fe99 bl 80005b0 <__aeabi_dmul> - 800587e: 4602 mov r2, r0 - 8005880: 460b mov r3, r1 - 8005882: 4610 mov r0, r2 - 8005884: 4619 mov r1, r3 - 8005886: e9d7 2306 ldrd r2, r3, [r7, #24] - 800588a: f7fa fe91 bl 80005b0 <__aeabi_dmul> - 800588e: 4602 mov r2, r0 - 8005890: 460b mov r3, r1 - 8005892: 4610 mov r0, r2 - 8005894: 4619 mov r1, r3 - 8005896: e9d7 2304 ldrd r2, r3, [r7, #16] - 800589a: f7fa fe89 bl 80005b0 <__aeabi_dmul> - 800589e: 4602 mov r2, r0 - 80058a0: 460b mov r3, r1 - 80058a2: 4610 mov r0, r2 - 80058a4: 4619 mov r1, r3 - 80058a6: f04f 0200 mov.w r2, #0 - 80058aa: 4b1b ldr r3, [pc, #108] ; (8005918 ) - 80058ac: f7fa ffaa bl 8000804 <__aeabi_ddiv> - 80058b0: 4602 mov r2, r0 - 80058b2: 460b mov r3, r1 + 8005f82: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005f86: e9d7 0106 ldrd r0, r1, [r7, #24] + 8005f8a: f7fa fb11 bl 80005b0 <__aeabi_dmul> + 8005f8e: 4602 mov r2, r0 + 8005f90: 460b mov r3, r1 + 8005f92: 4610 mov r0, r2 + 8005f94: 4619 mov r1, r3 + 8005f96: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005f9a: f7fa fb09 bl 80005b0 <__aeabi_dmul> + 8005f9e: 4602 mov r2, r0 + 8005fa0: 460b mov r3, r1 + 8005fa2: 4610 mov r0, r2 + 8005fa4: 4619 mov r1, r3 + 8005fa6: e9d7 2306 ldrd r2, r3, [r7, #24] + 8005faa: f7fa fb01 bl 80005b0 <__aeabi_dmul> + 8005fae: 4602 mov r2, r0 + 8005fb0: 460b mov r3, r1 + 8005fb2: 4610 mov r0, r2 + 8005fb4: 4619 mov r1, r3 + 8005fb6: e9d7 2304 ldrd r2, r3, [r7, #16] + 8005fba: f7fa faf9 bl 80005b0 <__aeabi_dmul> + 8005fbe: 4602 mov r2, r0 + 8005fc0: 460b mov r3, r1 + 8005fc2: 4610 mov r0, r2 + 8005fc4: 4619 mov r1, r3 + 8005fc6: f04f 0200 mov.w r2, #0 + 8005fca: 4b1b ldr r3, [pc, #108] ; (8006038 ) + 8005fcc: f7fa fc1a bl 8000804 <__aeabi_ddiv> + 8005fd0: 4602 mov r2, r0 + 8005fd2: 460b mov r3, r1 x = sx + dx*cx - (dx*dx)*sx/2 - 80058b4: 4640 mov r0, r8 - 80058b6: 4649 mov r1, r9 - 80058b8: f7fa fcc4 bl 8000244 <__adddf3> - 80058bc: 4602 mov r2, r0 - 80058be: 460b mov r3, r1 - 80058c0: e9c7 2300 strd r2, r3, [r7] + 8005fd4: 4640 mov r0, r8 + 8005fd6: 4649 mov r1, r9 + 8005fd8: f7fa f934 bl 8000244 <__adddf3> + 8005fdc: 4602 mov r2, r0 + 8005fde: 460b mov r3, r1 + 8005fe0: e9c7 2300 strd r2, r3, [r7] return s ? -x : x; - 80058c4: 6a7b ldr r3, [r7, #36] ; 0x24 - 80058c6: 2b00 cmp r3, #0 - 80058c8: d004 beq.n 80058d4 - 80058ca: 683c ldr r4, [r7, #0] - 80058cc: 687b ldr r3, [r7, #4] - 80058ce: f083 4500 eor.w r5, r3, #2147483648 ; 0x80000000 - 80058d2: e001 b.n 80058d8 - 80058d4: e9d7 4500 ldrd r4, r5, [r7] - 80058d8: 4622 mov r2, r4 - 80058da: 462b mov r3, r5 + 8005fe4: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005fe6: 2b00 cmp r3, #0 + 8005fe8: d004 beq.n 8005ff4 + 8005fea: 683c ldr r4, [r7, #0] + 8005fec: 687b ldr r3, [r7, #4] + 8005fee: f083 4500 eor.w r5, r3, #2147483648 ; 0x80000000 + 8005ff2: e001 b.n 8005ff8 + 8005ff4: e9d7 4500 ldrd r4, r5, [r7] + 8005ff8: 4622 mov r2, r4 + 8005ffa: 462b mov r3, r5 } - 80058dc: 4610 mov r0, r2 - 80058de: 4619 mov r1, r3 - 80058e0: 3728 adds r7, #40 ; 0x28 - 80058e2: 46bd mov sp, r7 - 80058e4: e8bd 83b0 ldmia.w sp!, {r4, r5, r7, r8, r9, pc} - 80058e8: 54442d18 .word 0x54442d18 - 80058ec: 401921fb .word 0x401921fb - 80058f0: 54442d18 .word 0x54442d18 - 80058f4: 400921fb .word 0x400921fb - 80058f8: 54442d18 .word 0x54442d18 - 80058fc: 3ff921fb .word 0x3ff921fb - 8005900: 9217271a .word 0x9217271a - 8005904: 3f9015bf .word 0x3f9015bf - 8005908: 9217271a .word 0x9217271a - 800590c: 3f8015bf .word 0x3f8015bf - 8005910: 0800a440 .word 0x0800a440 - 8005914: 40180000 .word 0x40180000 - 8005918: 40380000 .word 0x40380000 - 800591c: 00000000 .word 0x00000000 + 8005ffc: 4610 mov r0, r2 + 8005ffe: 4619 mov r1, r3 + 8006000: 3728 adds r7, #40 ; 0x28 + 8006002: 46bd mov sp, r7 + 8006004: e8bd 83b0 ldmia.w sp!, {r4, r5, r7, r8, r9, pc} + 8006008: 54442d18 .word 0x54442d18 + 800600c: 401921fb .word 0x401921fb + 8006010: 54442d18 .word 0x54442d18 + 8006014: 400921fb .word 0x400921fb + 8006018: 54442d18 .word 0x54442d18 + 800601c: 3ff921fb .word 0x3ff921fb + 8006020: 9217271a .word 0x9217271a + 8006024: 3f9015bf .word 0x3f9015bf + 8006028: 9217271a .word 0x9217271a + 800602c: 3f8015bf .word 0x3f8015bf + 8006030: 0800aba8 .word 0x0800aba8 + 8006034: 40180000 .word 0x40180000 + 8006038: 40380000 .word 0x40380000 + 800603c: 00000000 .word 0x00000000 -08005920 : +08006040 : //余弦函数 double XCos( double x ) { - 8005920: b580 push {r7, lr} - 8005922: b082 sub sp, #8 - 8005924: af00 add r7, sp, #0 - 8005926: e9c7 0100 strd r0, r1, [r7] + 8006040: b580 push {r7, lr} + 8006042: b082 sub sp, #8 + 8006044: af00 add r7, sp, #0 + 8006046: e9c7 0100 strd r0, r1, [r7] return XSin( x + XPI/2 ); - 800592a: a30b add r3, pc, #44 ; (adr r3, 8005958 ) - 800592c: e9d3 2300 ldrd r2, r3, [r3] - 8005930: e9d7 0100 ldrd r0, r1, [r7] - 8005934: f7fa fc86 bl 8000244 <__adddf3> - 8005938: 4602 mov r2, r0 - 800593a: 460b mov r3, r1 - 800593c: 4610 mov r0, r2 - 800593e: 4619 mov r1, r3 - 8005940: f7ff fe92 bl 8005668 - 8005944: 4602 mov r2, r0 - 8005946: 460b mov r3, r1 + 800604a: a30b add r3, pc, #44 ; (adr r3, 8006078 ) + 800604c: e9d3 2300 ldrd r2, r3, [r3] + 8006050: e9d7 0100 ldrd r0, r1, [r7] + 8006054: f7fa f8f6 bl 8000244 <__adddf3> + 8006058: 4602 mov r2, r0 + 800605a: 460b mov r3, r1 + 800605c: 4610 mov r0, r2 + 800605e: 4619 mov r1, r3 + 8006060: f7ff fe92 bl 8005d88 + 8006064: 4602 mov r2, r0 + 8006066: 460b mov r3, r1 } - 8005948: 4610 mov r0, r2 - 800594a: 4619 mov r1, r3 - 800594c: 3708 adds r7, #8 - 800594e: 46bd mov sp, r7 - 8005950: bd80 pop {r7, pc} - 8005952: bf00 nop - 8005954: f3af 8000 nop.w - 8005958: 54442d18 .word 0x54442d18 - 800595c: 3ff921fb .word 0x3ff921fb + 8006068: 4610 mov r0, r2 + 800606a: 4619 mov r1, r3 + 800606c: 3708 adds r7, #8 + 800606e: 46bd mov sp, r7 + 8006070: bd80 pop {r7, pc} + 8006072: bf00 nop + 8006074: f3af 8000 nop.w + 8006078: 54442d18 .word 0x54442d18 + 800607c: 3ff921fb .word 0x3ff921fb -08005960 : +08006080 : 函数功能:对两个复数进行乘法运算 输入参数:两个以联合体定义的复数a,b 输出参数:a和b的乘积,以联合体的形式输出 *******************************************************************/ struct compx EE(struct compx a,struct compx b) { - 8005960: b082 sub sp, #8 - 8005962: b590 push {r4, r7, lr} - 8005964: b087 sub sp, #28 - 8005966: af00 add r7, sp, #0 - 8005968: 60f8 str r0, [r7, #12] - 800596a: 1d38 adds r0, r7, #4 - 800596c: e880 0006 stmia.w r0, {r1, r2} - 8005970: 62fb str r3, [r7, #44] ; 0x2c + 8006080: b082 sub sp, #8 + 8006082: b590 push {r4, r7, lr} + 8006084: b087 sub sp, #28 + 8006086: af00 add r7, sp, #0 + 8006088: 60f8 str r0, [r7, #12] + 800608a: 1d38 adds r0, r7, #4 + 800608c: e880 0006 stmia.w r0, {r1, r2} + 8006090: 62fb str r3, [r7, #44] ; 0x2c struct compx c; c.real=a.real*b.real-a.imag*b.imag; - 8005972: 687b ldr r3, [r7, #4] - 8005974: 6afa ldr r2, [r7, #44] ; 0x2c - 8005976: 4611 mov r1, r2 - 8005978: 4618 mov r0, r3 - 800597a: f7fb fa4f bl 8000e1c <__aeabi_fmul> - 800597e: 4603 mov r3, r0 - 8005980: 461c mov r4, r3 - 8005982: 68bb ldr r3, [r7, #8] - 8005984: 6b3a ldr r2, [r7, #48] ; 0x30 - 8005986: 4611 mov r1, r2 - 8005988: 4618 mov r0, r3 - 800598a: f7fb fa47 bl 8000e1c <__aeabi_fmul> - 800598e: 4603 mov r3, r0 - 8005990: 4619 mov r1, r3 - 8005992: 4620 mov r0, r4 - 8005994: f7fb f938 bl 8000c08 <__aeabi_fsub> - 8005998: 4603 mov r3, r0 - 800599a: 613b str r3, [r7, #16] + 8006092: 687b ldr r3, [r7, #4] + 8006094: 6afa ldr r2, [r7, #44] ; 0x2c + 8006096: 4611 mov r1, r2 + 8006098: 4618 mov r0, r3 + 800609a: f7fa febf bl 8000e1c <__aeabi_fmul> + 800609e: 4603 mov r3, r0 + 80060a0: 461c mov r4, r3 + 80060a2: 68bb ldr r3, [r7, #8] + 80060a4: 6b3a ldr r2, [r7, #48] ; 0x30 + 80060a6: 4611 mov r1, r2 + 80060a8: 4618 mov r0, r3 + 80060aa: f7fa feb7 bl 8000e1c <__aeabi_fmul> + 80060ae: 4603 mov r3, r0 + 80060b0: 4619 mov r1, r3 + 80060b2: 4620 mov r0, r4 + 80060b4: f7fa fda8 bl 8000c08 <__aeabi_fsub> + 80060b8: 4603 mov r3, r0 + 80060ba: 613b str r3, [r7, #16] c.imag=a.real*b.imag+a.imag*b.real; - 800599c: 687b ldr r3, [r7, #4] - 800599e: 6b3a ldr r2, [r7, #48] ; 0x30 - 80059a0: 4611 mov r1, r2 - 80059a2: 4618 mov r0, r3 - 80059a4: f7fb fa3a bl 8000e1c <__aeabi_fmul> - 80059a8: 4603 mov r3, r0 - 80059aa: 461c mov r4, r3 - 80059ac: 68bb ldr r3, [r7, #8] - 80059ae: 6afa ldr r2, [r7, #44] ; 0x2c - 80059b0: 4611 mov r1, r2 - 80059b2: 4618 mov r0, r3 - 80059b4: f7fb fa32 bl 8000e1c <__aeabi_fmul> - 80059b8: 4603 mov r3, r0 - 80059ba: 4619 mov r1, r3 - 80059bc: 4620 mov r0, r4 - 80059be: f7fb f925 bl 8000c0c <__addsf3> - 80059c2: 4603 mov r3, r0 - 80059c4: 617b str r3, [r7, #20] + 80060bc: 687b ldr r3, [r7, #4] + 80060be: 6b3a ldr r2, [r7, #48] ; 0x30 + 80060c0: 4611 mov r1, r2 + 80060c2: 4618 mov r0, r3 + 80060c4: f7fa feaa bl 8000e1c <__aeabi_fmul> + 80060c8: 4603 mov r3, r0 + 80060ca: 461c mov r4, r3 + 80060cc: 68bb ldr r3, [r7, #8] + 80060ce: 6afa ldr r2, [r7, #44] ; 0x2c + 80060d0: 4611 mov r1, r2 + 80060d2: 4618 mov r0, r3 + 80060d4: f7fa fea2 bl 8000e1c <__aeabi_fmul> + 80060d8: 4603 mov r3, r0 + 80060da: 4619 mov r1, r3 + 80060dc: 4620 mov r0, r4 + 80060de: f7fa fd95 bl 8000c0c <__addsf3> + 80060e2: 4603 mov r3, r0 + 80060e4: 617b str r3, [r7, #20] return(c); - 80059c6: 68fb ldr r3, [r7, #12] - 80059c8: 461a mov r2, r3 - 80059ca: f107 0310 add.w r3, r7, #16 - 80059ce: e893 0003 ldmia.w r3, {r0, r1} - 80059d2: e882 0003 stmia.w r2, {r0, r1} + 80060e6: 68fb ldr r3, [r7, #12] + 80060e8: 461a mov r2, r3 + 80060ea: f107 0310 add.w r3, r7, #16 + 80060ee: e893 0003 ldmia.w r3, {r0, r1} + 80060f2: e882 0003 stmia.w r2, {r0, r1} } - 80059d6: 68f8 ldr r0, [r7, #12] - 80059d8: 371c adds r7, #28 - 80059da: 46bd mov sp, r7 - 80059dc: e8bd 4090 ldmia.w sp!, {r4, r7, lr} - 80059e0: b002 add sp, #8 - 80059e2: 4770 bx lr - 80059e4: 0000 movs r0, r0 + 80060f6: 68f8 ldr r0, [r7, #12] + 80060f8: 371c adds r7, #28 + 80060fa: 46bd mov sp, r7 + 80060fc: e8bd 4090 ldmia.w sp!, {r4, r7, lr} + 8006100: b002 add sp, #8 + 8006102: 4770 bx lr + 8006104: 0000 movs r0, r0 ... -080059e8 : +08006108 : 函数原型:void FFT(struct compx *xin,int N) 函数功能:对输入的复数组进行快速傅里叶变换(FFT) 输入参数:*xin复数结构体组的首地址指针,struct型 *****************************************************************/ void FFT(struct compx *xin) { - 80059e8: b590 push {r4, r7, lr} - 80059ea: b097 sub sp, #92 ; 0x5c - 80059ec: af02 add r7, sp, #8 - 80059ee: 6078 str r0, [r7, #4] + 8006108: b590 push {r4, r7, lr} + 800610a: b097 sub sp, #92 ; 0x5c + 800610c: af02 add r7, sp, #8 + 800610e: 6078 str r0, [r7, #4] int f,m,nv2,nm1,i,k,l,j=0; - 80059f0: 2300 movs r3, #0 - 80059f2: 63bb str r3, [r7, #56] ; 0x38 + 8006110: 2300 movs r3, #0 + 8006112: 63bb str r3, [r7, #56] ; 0x38 struct compx u,w,t; nv2=FFT_N/2; //变址运算,即把自然顺序变成倒位序,采用雷德算法 - 80059f4: f44f 7380 mov.w r3, #256 ; 0x100 - 80059f8: 637b str r3, [r7, #52] ; 0x34 + 8006114: f44f 7380 mov.w r3, #256 ; 0x100 + 8006118: 637b str r3, [r7, #52] ; 0x34 nm1=FFT_N-1; - 80059fa: f240 13ff movw r3, #511 ; 0x1ff - 80059fe: 633b str r3, [r7, #48] ; 0x30 + 800611a: f240 13ff movw r3, #511 ; 0x1ff + 800611e: 633b str r3, [r7, #48] ; 0x30 for(i=0;i + 8006120: 2300 movs r3, #0 + 8006122: 647b str r3, [r7, #68] ; 0x44 + 8006124: e03c b.n 80061a0 { if(i + 8006126: 6c7a ldr r2, [r7, #68] ; 0x44 + 8006128: 6bbb ldr r3, [r7, #56] ; 0x38 + 800612a: 429a cmp r2, r3 + 800612c: da21 bge.n 8006172 { t=xin[j]; - 8005a0e: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005a10: 00db lsls r3, r3, #3 - 8005a12: 687a ldr r2, [r7, #4] - 8005a14: 441a add r2, r3 - 8005a16: f107 030c add.w r3, r7, #12 - 8005a1a: e892 0003 ldmia.w r2, {r0, r1} - 8005a1e: e883 0003 stmia.w r3, {r0, r1} + 800612e: 6bbb ldr r3, [r7, #56] ; 0x38 + 8006130: 00db lsls r3, r3, #3 + 8006132: 687a ldr r2, [r7, #4] + 8006134: 441a add r2, r3 + 8006136: f107 030c add.w r3, r7, #12 + 800613a: e892 0003 ldmia.w r2, {r0, r1} + 800613e: e883 0003 stmia.w r3, {r0, r1} xin[j]=xin[i]; - 8005a22: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005a24: 00db lsls r3, r3, #3 - 8005a26: 687a ldr r2, [r7, #4] - 8005a28: 18d1 adds r1, r2, r3 - 8005a2a: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005a2c: 00db lsls r3, r3, #3 - 8005a2e: 687a ldr r2, [r7, #4] - 8005a30: 4413 add r3, r2 - 8005a32: 460a mov r2, r1 - 8005a34: e892 0003 ldmia.w r2, {r0, r1} - 8005a38: e883 0003 stmia.w r3, {r0, r1} + 8006142: 6c7b ldr r3, [r7, #68] ; 0x44 + 8006144: 00db lsls r3, r3, #3 + 8006146: 687a ldr r2, [r7, #4] + 8006148: 18d1 adds r1, r2, r3 + 800614a: 6bbb ldr r3, [r7, #56] ; 0x38 + 800614c: 00db lsls r3, r3, #3 + 800614e: 687a ldr r2, [r7, #4] + 8006150: 4413 add r3, r2 + 8006152: 460a mov r2, r1 + 8006154: e892 0003 ldmia.w r2, {r0, r1} + 8006158: e883 0003 stmia.w r3, {r0, r1} xin[i]=t; - 8005a3c: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005a3e: 00db lsls r3, r3, #3 - 8005a40: 687a ldr r2, [r7, #4] - 8005a42: 4413 add r3, r2 - 8005a44: 461a mov r2, r3 - 8005a46: f107 030c add.w r3, r7, #12 - 8005a4a: e893 0003 ldmia.w r3, {r0, r1} - 8005a4e: e882 0003 stmia.w r2, {r0, r1} + 800615c: 6c7b ldr r3, [r7, #68] ; 0x44 + 800615e: 00db lsls r3, r3, #3 + 8006160: 687a ldr r2, [r7, #4] + 8006162: 4413 add r3, r2 + 8006164: 461a mov r2, r3 + 8006166: f107 030c add.w r3, r7, #12 + 800616a: e893 0003 ldmia.w r3, {r0, r1} + 800616e: e882 0003 stmia.w r2, {r0, r1} } k=nv2; //求j的下一个倒位序 - 8005a52: 6b7b ldr r3, [r7, #52] ; 0x34 - 8005a54: 643b str r3, [r7, #64] ; 0x40 + 8006172: 6b7b ldr r3, [r7, #52] ; 0x34 + 8006174: 643b str r3, [r7, #64] ; 0x40 while(k<=j) //如果k<=j,表示j的最高位为1 - 8005a56: e008 b.n 8005a6a + 8006176: e008 b.n 800618a { j=j-k; //把最高位变成0 - 8005a58: 6bba ldr r2, [r7, #56] ; 0x38 - 8005a5a: 6c3b ldr r3, [r7, #64] ; 0x40 - 8005a5c: 1ad3 subs r3, r2, r3 - 8005a5e: 63bb str r3, [r7, #56] ; 0x38 + 8006178: 6bba ldr r2, [r7, #56] ; 0x38 + 800617a: 6c3b ldr r3, [r7, #64] ; 0x40 + 800617c: 1ad3 subs r3, r2, r3 + 800617e: 63bb str r3, [r7, #56] ; 0x38 k=k/2; //k/2,比较次高位,依次类推,逐个比较,直到某个位为0 - 8005a60: 6c3b ldr r3, [r7, #64] ; 0x40 - 8005a62: 0fda lsrs r2, r3, #31 - 8005a64: 4413 add r3, r2 - 8005a66: 105b asrs r3, r3, #1 - 8005a68: 643b str r3, [r7, #64] ; 0x40 + 8006180: 6c3b ldr r3, [r7, #64] ; 0x40 + 8006182: 0fda lsrs r2, r3, #31 + 8006184: 4413 add r3, r2 + 8006186: 105b asrs r3, r3, #1 + 8006188: 643b str r3, [r7, #64] ; 0x40 while(k<=j) //如果k<=j,表示j的最高位为1 - 8005a6a: 6c3a ldr r2, [r7, #64] ; 0x40 - 8005a6c: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005a6e: 429a cmp r2, r3 - 8005a70: ddf2 ble.n 8005a58 + 800618a: 6c3a ldr r2, [r7, #64] ; 0x40 + 800618c: 6bbb ldr r3, [r7, #56] ; 0x38 + 800618e: 429a cmp r2, r3 + 8006190: ddf2 ble.n 8006178 } j=j+k; //把0改为1 - 8005a72: 6bba ldr r2, [r7, #56] ; 0x38 - 8005a74: 6c3b ldr r3, [r7, #64] ; 0x40 - 8005a76: 4413 add r3, r2 - 8005a78: 63bb str r3, [r7, #56] ; 0x38 + 8006192: 6bba ldr r2, [r7, #56] ; 0x38 + 8006194: 6c3b ldr r3, [r7, #64] ; 0x40 + 8006196: 4413 add r3, r2 + 8006198: 63bb str r3, [r7, #56] ; 0x38 for(i=0;i + 800619a: 6c7b ldr r3, [r7, #68] ; 0x44 + 800619c: 3301 adds r3, #1 + 800619e: 647b str r3, [r7, #68] ; 0x44 + 80061a0: 6c7a ldr r2, [r7, #68] ; 0x44 + 80061a2: 6b3b ldr r3, [r7, #48] ; 0x30 + 80061a4: 429a cmp r2, r3 + 80061a6: dbbe blt.n 8006126 } { //FFT运算核,使用蝶形运算完成FFT运算 int le,lei,ip; f=FFT_N; - 8005a88: f44f 7300 mov.w r3, #512 ; 0x200 - 8005a8c: 64fb str r3, [r7, #76] ; 0x4c + 80061a8: f44f 7300 mov.w r3, #512 ; 0x200 + 80061ac: 64fb str r3, [r7, #76] ; 0x4c for(l=1;(f=f/2)!=1;l++) //计算l的值,即计算蝶形级数 - 8005a8e: 2301 movs r3, #1 - 8005a90: 63fb str r3, [r7, #60] ; 0x3c - 8005a92: e002 b.n 8005a9a - 8005a94: 6bfb ldr r3, [r7, #60] ; 0x3c - 8005a96: 3301 adds r3, #1 - 8005a98: 63fb str r3, [r7, #60] ; 0x3c - 8005a9a: 6cfb ldr r3, [r7, #76] ; 0x4c - 8005a9c: 0fda lsrs r2, r3, #31 - 8005a9e: 4413 add r3, r2 - 8005aa0: 105b asrs r3, r3, #1 - 8005aa2: 64fb str r3, [r7, #76] ; 0x4c - 8005aa4: 6cfb ldr r3, [r7, #76] ; 0x4c - 8005aa6: 2b01 cmp r3, #1 - 8005aa8: d1f4 bne.n 8005a94 + 80061ae: 2301 movs r3, #1 + 80061b0: 63fb str r3, [r7, #60] ; 0x3c + 80061b2: e002 b.n 80061ba + 80061b4: 6bfb ldr r3, [r7, #60] ; 0x3c + 80061b6: 3301 adds r3, #1 + 80061b8: 63fb str r3, [r7, #60] ; 0x3c + 80061ba: 6cfb ldr r3, [r7, #76] ; 0x4c + 80061bc: 0fda lsrs r2, r3, #31 + 80061be: 4413 add r3, r2 + 80061c0: 105b asrs r3, r3, #1 + 80061c2: 64fb str r3, [r7, #76] ; 0x4c + 80061c4: 6cfb ldr r3, [r7, #76] ; 0x4c + 80061c6: 2b01 cmp r3, #1 + 80061c8: d1f4 bne.n 80061b4 ; for(m=1;m<=l;m++) // 控制蝶形结级数 - 8005aaa: 2301 movs r3, #1 - 8005aac: 64bb str r3, [r7, #72] ; 0x48 - 8005aae: e0ac b.n 8005c0a + 80061ca: 2301 movs r3, #1 + 80061cc: 64bb str r3, [r7, #72] ; 0x48 + 80061ce: e0ac b.n 800632a { //m表示第m级蝶形,l为蝶形级总数l=log(2)N le=2<<(m-1); //le蝶形结距离,即第m级蝶形的蝶形结相距le点 - 8005ab0: 6cbb ldr r3, [r7, #72] ; 0x48 - 8005ab2: 3b01 subs r3, #1 - 8005ab4: 2202 movs r2, #2 - 8005ab6: fa02 f303 lsl.w r3, r2, r3 - 8005aba: 62fb str r3, [r7, #44] ; 0x2c + 80061d0: 6cbb ldr r3, [r7, #72] ; 0x48 + 80061d2: 3b01 subs r3, #1 + 80061d4: 2202 movs r2, #2 + 80061d6: fa02 f303 lsl.w r3, r2, r3 + 80061da: 62fb str r3, [r7, #44] ; 0x2c lei=le/2; //同一蝶形结中参加运算的两点的距离 - 8005abc: 6afb ldr r3, [r7, #44] ; 0x2c - 8005abe: 0fda lsrs r2, r3, #31 - 8005ac0: 4413 add r3, r2 - 8005ac2: 105b asrs r3, r3, #1 - 8005ac4: 62bb str r3, [r7, #40] ; 0x28 + 80061dc: 6afb ldr r3, [r7, #44] ; 0x2c + 80061de: 0fda lsrs r2, r3, #31 + 80061e0: 4413 add r3, r2 + 80061e2: 105b asrs r3, r3, #1 + 80061e4: 62bb str r3, [r7, #40] ; 0x28 u.real=1.0; //u为蝶形结运算系数,初始值为1 - 8005ac6: f04f 537e mov.w r3, #1065353216 ; 0x3f800000 - 8005aca: 61fb str r3, [r7, #28] + 80061e6: f04f 537e mov.w r3, #1065353216 ; 0x3f800000 + 80061ea: 61fb str r3, [r7, #28] u.imag=0.0; - 8005acc: f04f 0300 mov.w r3, #0 - 8005ad0: 623b str r3, [r7, #32] + 80061ec: f04f 0300 mov.w r3, #0 + 80061f0: 623b str r3, [r7, #32] w.real=XCos(PI/lei); //w为系数商,即当前系数与前一个系数的商 - 8005ad2: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005ad4: f7fa fd02 bl 80004dc <__aeabi_i2d> - 8005ad8: 4602 mov r2, r0 - 8005ada: 460b mov r3, r1 - 8005adc: a150 add r1, pc, #320 ; (adr r1, 8005c20 ) - 8005ade: e9d1 0100 ldrd r0, r1, [r1] - 8005ae2: f7fa fe8f bl 8000804 <__aeabi_ddiv> - 8005ae6: 4602 mov r2, r0 - 8005ae8: 460b mov r3, r1 - 8005aea: 4610 mov r0, r2 - 8005aec: 4619 mov r1, r3 - 8005aee: f7ff ff17 bl 8005920 - 8005af2: 4602 mov r2, r0 - 8005af4: 460b mov r3, r1 - 8005af6: 4610 mov r0, r2 - 8005af8: 4619 mov r1, r3 - 8005afa: f7fb f831 bl 8000b60 <__aeabi_d2f> - 8005afe: 4603 mov r3, r0 - 8005b00: 617b str r3, [r7, #20] + 80061f2: 6ab8 ldr r0, [r7, #40] ; 0x28 + 80061f4: f7fa f972 bl 80004dc <__aeabi_i2d> + 80061f8: 4602 mov r2, r0 + 80061fa: 460b mov r3, r1 + 80061fc: a150 add r1, pc, #320 ; (adr r1, 8006340 ) + 80061fe: e9d1 0100 ldrd r0, r1, [r1] + 8006202: f7fa faff bl 8000804 <__aeabi_ddiv> + 8006206: 4602 mov r2, r0 + 8006208: 460b mov r3, r1 + 800620a: 4610 mov r0, r2 + 800620c: 4619 mov r1, r3 + 800620e: f7ff ff17 bl 8006040 + 8006212: 4602 mov r2, r0 + 8006214: 460b mov r3, r1 + 8006216: 4610 mov r0, r2 + 8006218: 4619 mov r1, r3 + 800621a: f7fa fca1 bl 8000b60 <__aeabi_d2f> + 800621e: 4603 mov r3, r0 + 8006220: 617b str r3, [r7, #20] w.imag=-XSin(PI/lei); - 8005b02: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005b04: f7fa fcea bl 80004dc <__aeabi_i2d> - 8005b08: 4602 mov r2, r0 - 8005b0a: 460b mov r3, r1 - 8005b0c: a144 add r1, pc, #272 ; (adr r1, 8005c20 ) - 8005b0e: e9d1 0100 ldrd r0, r1, [r1] - 8005b12: f7fa fe77 bl 8000804 <__aeabi_ddiv> - 8005b16: 4602 mov r2, r0 - 8005b18: 460b mov r3, r1 - 8005b1a: 4610 mov r0, r2 - 8005b1c: 4619 mov r1, r3 - 8005b1e: f7ff fda3 bl 8005668 - 8005b22: 4602 mov r2, r0 - 8005b24: 460b mov r3, r1 - 8005b26: 4610 mov r0, r2 - 8005b28: 4619 mov r1, r3 - 8005b2a: f7fb f819 bl 8000b60 <__aeabi_d2f> - 8005b2e: 4603 mov r3, r0 - 8005b30: f083 4300 eor.w r3, r3, #2147483648 ; 0x80000000 - 8005b34: 61bb str r3, [r7, #24] + 8006222: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8006224: f7fa f95a bl 80004dc <__aeabi_i2d> + 8006228: 4602 mov r2, r0 + 800622a: 460b mov r3, r1 + 800622c: a144 add r1, pc, #272 ; (adr r1, 8006340 ) + 800622e: e9d1 0100 ldrd r0, r1, [r1] + 8006232: f7fa fae7 bl 8000804 <__aeabi_ddiv> + 8006236: 4602 mov r2, r0 + 8006238: 460b mov r3, r1 + 800623a: 4610 mov r0, r2 + 800623c: 4619 mov r1, r3 + 800623e: f7ff fda3 bl 8005d88 + 8006242: 4602 mov r2, r0 + 8006244: 460b mov r3, r1 + 8006246: 4610 mov r0, r2 + 8006248: 4619 mov r1, r3 + 800624a: f7fa fc89 bl 8000b60 <__aeabi_d2f> + 800624e: 4603 mov r3, r0 + 8006250: f083 4300 eor.w r3, r3, #2147483648 ; 0x80000000 + 8006254: 61bb str r3, [r7, #24] for(j=0;j<=lei-1;j++) //控制计算不同种蝶形结,即计算系数不同的蝶形结 - 8005b36: 2300 movs r3, #0 - 8005b38: 63bb str r3, [r7, #56] ; 0x38 - 8005b3a: e05f b.n 8005bfc + 8006256: 2300 movs r3, #0 + 8006258: 63bb str r3, [r7, #56] ; 0x38 + 800625a: e05f b.n 800631c { for(i=j;i<=FFT_N-1;i=i+le) //控制同一蝶形结运算,即计算系数相同蝶形结 - 8005b3c: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005b3e: 647b str r3, [r7, #68] ; 0x44 - 8005b40: e04b b.n 8005bda + 800625c: 6bbb ldr r3, [r7, #56] ; 0x38 + 800625e: 647b str r3, [r7, #68] ; 0x44 + 8006260: e04b b.n 80062fa { ip=i+lei; //i,ip分别表示参加蝶形运算的两个节点 - 8005b42: 6c7a ldr r2, [r7, #68] ; 0x44 - 8005b44: 6abb ldr r3, [r7, #40] ; 0x28 - 8005b46: 4413 add r3, r2 - 8005b48: 627b str r3, [r7, #36] ; 0x24 + 8006262: 6c7a ldr r2, [r7, #68] ; 0x44 + 8006264: 6abb ldr r3, [r7, #40] ; 0x28 + 8006266: 4413 add r3, r2 + 8006268: 627b str r3, [r7, #36] ; 0x24 t=EE(xin[ip],u); //蝶形运算,详见公式 - 8005b4a: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005b4c: 00db lsls r3, r3, #3 - 8005b4e: 687a ldr r2, [r7, #4] - 8005b50: 441a add r2, r3 - 8005b52: f107 000c add.w r0, r7, #12 - 8005b56: 6a3b ldr r3, [r7, #32] - 8005b58: 9300 str r3, [sp, #0] - 8005b5a: 69fb ldr r3, [r7, #28] - 8005b5c: ca06 ldmia r2, {r1, r2} - 8005b5e: f7ff feff bl 8005960 + 800626a: 6a7b ldr r3, [r7, #36] ; 0x24 + 800626c: 00db lsls r3, r3, #3 + 800626e: 687a ldr r2, [r7, #4] + 8006270: 441a add r2, r3 + 8006272: f107 000c add.w r0, r7, #12 + 8006276: 6a3b ldr r3, [r7, #32] + 8006278: 9300 str r3, [sp, #0] + 800627a: 69fb ldr r3, [r7, #28] + 800627c: ca06 ldmia r2, {r1, r2} + 800627e: f7ff feff bl 8006080 xin[ip].real=xin[i].real-t.real; - 8005b62: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005b64: 00db lsls r3, r3, #3 - 8005b66: 687a ldr r2, [r7, #4] - 8005b68: 4413 add r3, r2 - 8005b6a: 6818 ldr r0, [r3, #0] - 8005b6c: 68f9 ldr r1, [r7, #12] - 8005b6e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005b70: 00db lsls r3, r3, #3 - 8005b72: 687a ldr r2, [r7, #4] - 8005b74: 18d4 adds r4, r2, r3 - 8005b76: f7fb f847 bl 8000c08 <__aeabi_fsub> - 8005b7a: 4603 mov r3, r0 - 8005b7c: 6023 str r3, [r4, #0] + 8006282: 6c7b ldr r3, [r7, #68] ; 0x44 + 8006284: 00db lsls r3, r3, #3 + 8006286: 687a ldr r2, [r7, #4] + 8006288: 4413 add r3, r2 + 800628a: 6818 ldr r0, [r3, #0] + 800628c: 68f9 ldr r1, [r7, #12] + 800628e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8006290: 00db lsls r3, r3, #3 + 8006292: 687a ldr r2, [r7, #4] + 8006294: 18d4 adds r4, r2, r3 + 8006296: f7fa fcb7 bl 8000c08 <__aeabi_fsub> + 800629a: 4603 mov r3, r0 + 800629c: 6023 str r3, [r4, #0] xin[ip].imag=xin[i].imag-t.imag; - 8005b7e: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005b80: 00db lsls r3, r3, #3 - 8005b82: 687a ldr r2, [r7, #4] - 8005b84: 4413 add r3, r2 - 8005b86: 6858 ldr r0, [r3, #4] - 8005b88: 6939 ldr r1, [r7, #16] - 8005b8a: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005b8c: 00db lsls r3, r3, #3 - 8005b8e: 687a ldr r2, [r7, #4] - 8005b90: 18d4 adds r4, r2, r3 - 8005b92: f7fb f839 bl 8000c08 <__aeabi_fsub> - 8005b96: 4603 mov r3, r0 - 8005b98: 6063 str r3, [r4, #4] + 800629e: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062a0: 00db lsls r3, r3, #3 + 80062a2: 687a ldr r2, [r7, #4] + 80062a4: 4413 add r3, r2 + 80062a6: 6858 ldr r0, [r3, #4] + 80062a8: 6939 ldr r1, [r7, #16] + 80062aa: 6a7b ldr r3, [r7, #36] ; 0x24 + 80062ac: 00db lsls r3, r3, #3 + 80062ae: 687a ldr r2, [r7, #4] + 80062b0: 18d4 adds r4, r2, r3 + 80062b2: f7fa fca9 bl 8000c08 <__aeabi_fsub> + 80062b6: 4603 mov r3, r0 + 80062b8: 6063 str r3, [r4, #4] xin[i].real=xin[i].real+t.real; - 8005b9a: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005b9c: 00db lsls r3, r3, #3 - 8005b9e: 687a ldr r2, [r7, #4] - 8005ba0: 4413 add r3, r2 - 8005ba2: 6818 ldr r0, [r3, #0] - 8005ba4: 68f9 ldr r1, [r7, #12] - 8005ba6: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005ba8: 00db lsls r3, r3, #3 - 8005baa: 687a ldr r2, [r7, #4] - 8005bac: 18d4 adds r4, r2, r3 - 8005bae: f7fb f82d bl 8000c0c <__addsf3> - 8005bb2: 4603 mov r3, r0 - 8005bb4: 6023 str r3, [r4, #0] + 80062ba: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062bc: 00db lsls r3, r3, #3 + 80062be: 687a ldr r2, [r7, #4] + 80062c0: 4413 add r3, r2 + 80062c2: 6818 ldr r0, [r3, #0] + 80062c4: 68f9 ldr r1, [r7, #12] + 80062c6: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062c8: 00db lsls r3, r3, #3 + 80062ca: 687a ldr r2, [r7, #4] + 80062cc: 18d4 adds r4, r2, r3 + 80062ce: f7fa fc9d bl 8000c0c <__addsf3> + 80062d2: 4603 mov r3, r0 + 80062d4: 6023 str r3, [r4, #0] xin[i].imag=xin[i].imag+t.imag; - 8005bb6: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005bb8: 00db lsls r3, r3, #3 - 8005bba: 687a ldr r2, [r7, #4] - 8005bbc: 4413 add r3, r2 - 8005bbe: 6858 ldr r0, [r3, #4] - 8005bc0: 6939 ldr r1, [r7, #16] - 8005bc2: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005bc4: 00db lsls r3, r3, #3 - 8005bc6: 687a ldr r2, [r7, #4] - 8005bc8: 18d4 adds r4, r2, r3 - 8005bca: f7fb f81f bl 8000c0c <__addsf3> - 8005bce: 4603 mov r3, r0 - 8005bd0: 6063 str r3, [r4, #4] + 80062d6: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062d8: 00db lsls r3, r3, #3 + 80062da: 687a ldr r2, [r7, #4] + 80062dc: 4413 add r3, r2 + 80062de: 6858 ldr r0, [r3, #4] + 80062e0: 6939 ldr r1, [r7, #16] + 80062e2: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062e4: 00db lsls r3, r3, #3 + 80062e6: 687a ldr r2, [r7, #4] + 80062e8: 18d4 adds r4, r2, r3 + 80062ea: f7fa fc8f bl 8000c0c <__addsf3> + 80062ee: 4603 mov r3, r0 + 80062f0: 6063 str r3, [r4, #4] for(i=j;i<=FFT_N-1;i=i+le) //控制同一蝶形结运算,即计算系数相同蝶形结 - 8005bd2: 6c7a ldr r2, [r7, #68] ; 0x44 - 8005bd4: 6afb ldr r3, [r7, #44] ; 0x2c - 8005bd6: 4413 add r3, r2 - 8005bd8: 647b str r3, [r7, #68] ; 0x44 - 8005bda: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005bdc: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 8005be0: dbaf blt.n 8005b42 + 80062f2: 6c7a ldr r2, [r7, #68] ; 0x44 + 80062f4: 6afb ldr r3, [r7, #44] ; 0x2c + 80062f6: 4413 add r3, r2 + 80062f8: 647b str r3, [r7, #68] ; 0x44 + 80062fa: 6c7b ldr r3, [r7, #68] ; 0x44 + 80062fc: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8006300: dbaf blt.n 8006262 } u=EE(u,w); //改变系数,进行下一个蝶形运算 - 8005be2: f107 001c add.w r0, r7, #28 - 8005be6: 69bb ldr r3, [r7, #24] - 8005be8: 9300 str r3, [sp, #0] - 8005bea: 697b ldr r3, [r7, #20] - 8005bec: f107 021c add.w r2, r7, #28 - 8005bf0: ca06 ldmia r2, {r1, r2} - 8005bf2: f7ff feb5 bl 8005960 + 8006302: f107 001c add.w r0, r7, #28 + 8006306: 69bb ldr r3, [r7, #24] + 8006308: 9300 str r3, [sp, #0] + 800630a: 697b ldr r3, [r7, #20] + 800630c: f107 021c add.w r2, r7, #28 + 8006310: ca06 ldmia r2, {r1, r2} + 8006312: f7ff feb5 bl 8006080 for(j=0;j<=lei-1;j++) //控制计算不同种蝶形结,即计算系数不同的蝶形结 - 8005bf6: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005bf8: 3301 adds r3, #1 - 8005bfa: 63bb str r3, [r7, #56] ; 0x38 - 8005bfc: 6aba ldr r2, [r7, #40] ; 0x28 - 8005bfe: 6bbb ldr r3, [r7, #56] ; 0x38 - 8005c00: 429a cmp r2, r3 - 8005c02: dc9b bgt.n 8005b3c + 8006316: 6bbb ldr r3, [r7, #56] ; 0x38 + 8006318: 3301 adds r3, #1 + 800631a: 63bb str r3, [r7, #56] ; 0x38 + 800631c: 6aba ldr r2, [r7, #40] ; 0x28 + 800631e: 6bbb ldr r3, [r7, #56] ; 0x38 + 8006320: 429a cmp r2, r3 + 8006322: dc9b bgt.n 800625c for(m=1;m<=l;m++) // 控制蝶形结级数 - 8005c04: 6cbb ldr r3, [r7, #72] ; 0x48 - 8005c06: 3301 adds r3, #1 - 8005c08: 64bb str r3, [r7, #72] ; 0x48 - 8005c0a: 6cba ldr r2, [r7, #72] ; 0x48 - 8005c0c: 6bfb ldr r3, [r7, #60] ; 0x3c - 8005c0e: 429a cmp r2, r3 - 8005c10: f77f af4e ble.w 8005ab0 + 8006324: 6cbb ldr r3, [r7, #72] ; 0x48 + 8006326: 3301 adds r3, #1 + 8006328: 64bb str r3, [r7, #72] ; 0x48 + 800632a: 6cba ldr r2, [r7, #72] ; 0x48 + 800632c: 6bfb ldr r3, [r7, #60] ; 0x3c + 800632e: 429a cmp r2, r3 + 8006330: f77f af4e ble.w 80061d0 } } } } - 8005c14: bf00 nop - 8005c16: bf00 nop - 8005c18: 3754 adds r7, #84 ; 0x54 - 8005c1a: 46bd mov sp, r7 - 8005c1c: bd90 pop {r4, r7, pc} - 8005c1e: bf00 nop - 8005c20: 54442d18 .word 0x54442d18 - 8005c24: 400921fb .word 0x400921fb + 8006334: bf00 nop + 8006336: bf00 nop + 8006338: 3754 adds r7, #84 ; 0x54 + 800633a: 46bd mov sp, r7 + 800633c: bd90 pop {r4, r7, pc} + 800633e: bf00 nop + 8006340: 54442d18 .word 0x54442d18 + 8006344: 400921fb .word 0x400921fb -08005c28 : +08006348 : //读取峰值 int find_max_num_index(struct compx *data,int count) { - 8005c28: b580 push {r7, lr} - 8005c2a: b086 sub sp, #24 - 8005c2c: af00 add r7, sp, #0 - 8005c2e: 6078 str r0, [r7, #4] - 8005c30: 6039 str r1, [r7, #0] + 8006348: b580 push {r7, lr} + 800634a: b086 sub sp, #24 + 800634c: af00 add r7, sp, #0 + 800634e: 6078 str r0, [r7, #4] + 8006350: 6039 str r1, [r7, #0] int i=START_INDEX; - 8005c32: 2304 movs r3, #4 - 8005c34: 617b str r3, [r7, #20] + 8006352: 2304 movs r3, #4 + 8006354: 617b str r3, [r7, #20] int max_num_index = i; - 8005c36: 697b ldr r3, [r7, #20] - 8005c38: 613b str r3, [r7, #16] + 8006356: 697b ldr r3, [r7, #20] + 8006358: 613b str r3, [r7, #16] //struct compx temp=data[i]; float temp = data[i].real; - 8005c3a: 697b ldr r3, [r7, #20] - 8005c3c: 00db lsls r3, r3, #3 - 8005c3e: 687a ldr r2, [r7, #4] - 8005c40: 4413 add r3, r2 - 8005c42: 681b ldr r3, [r3, #0] - 8005c44: 60fb str r3, [r7, #12] + 800635a: 697b ldr r3, [r7, #20] + 800635c: 00db lsls r3, r3, #3 + 800635e: 687a ldr r2, [r7, #4] + 8006360: 4413 add r3, r2 + 8006362: 681b ldr r3, [r3, #0] + 8006364: 60fb str r3, [r7, #12] for(i=START_INDEX;i + 8006366: 2304 movs r3, #4 + 8006368: 617b str r3, [r7, #20] + 800636a: e016 b.n 800639a { if(temp < data[i].real) - 8005c4c: 697b ldr r3, [r7, #20] - 8005c4e: 00db lsls r3, r3, #3 - 8005c50: 687a ldr r2, [r7, #4] - 8005c52: 4413 add r3, r2 - 8005c54: 681b ldr r3, [r3, #0] - 8005c56: 4619 mov r1, r3 - 8005c58: 68f8 ldr r0, [r7, #12] - 8005c5a: f7fb fa7d bl 8001158 <__aeabi_fcmplt> - 8005c5e: 4603 mov r3, r0 - 8005c60: 2b00 cmp r3, #0 - 8005c62: d007 beq.n 8005c74 + 800636c: 697b ldr r3, [r7, #20] + 800636e: 00db lsls r3, r3, #3 + 8006370: 687a ldr r2, [r7, #4] + 8006372: 4413 add r3, r2 + 8006374: 681b ldr r3, [r3, #0] + 8006376: 4619 mov r1, r3 + 8006378: 68f8 ldr r0, [r7, #12] + 800637a: f7fa feed bl 8001158 <__aeabi_fcmplt> + 800637e: 4603 mov r3, r0 + 8006380: 2b00 cmp r3, #0 + 8006382: d007 beq.n 8006394 { temp = data[i].real; - 8005c64: 697b ldr r3, [r7, #20] - 8005c66: 00db lsls r3, r3, #3 - 8005c68: 687a ldr r2, [r7, #4] - 8005c6a: 4413 add r3, r2 - 8005c6c: 681b ldr r3, [r3, #0] - 8005c6e: 60fb str r3, [r7, #12] + 8006384: 697b ldr r3, [r7, #20] + 8006386: 00db lsls r3, r3, #3 + 8006388: 687a ldr r2, [r7, #4] + 800638a: 4413 add r3, r2 + 800638c: 681b ldr r3, [r3, #0] + 800638e: 60fb str r3, [r7, #12] max_num_index = i; - 8005c70: 697b ldr r3, [r7, #20] - 8005c72: 613b str r3, [r7, #16] + 8006390: 697b ldr r3, [r7, #20] + 8006392: 613b str r3, [r7, #16] for(i=START_INDEX;i + 8006394: 697b ldr r3, [r7, #20] + 8006396: 3301 adds r3, #1 + 8006398: 617b str r3, [r7, #20] + 800639a: 697a ldr r2, [r7, #20] + 800639c: 683b ldr r3, [r7, #0] + 800639e: 429a cmp r2, r3 + 80063a0: dbe4 blt.n 800636c } } //printf("max_num_index=%d\r\n",max_num_index); return max_num_index; - 8005c82: 693b ldr r3, [r7, #16] + 80063a2: 693b ldr r3, [r7, #16] } - 8005c84: 4618 mov r0, r3 - 8005c86: 3718 adds r7, #24 - 8005c88: 46bd mov sp, r7 - 8005c8a: bd80 pop {r7, pc} - 8005c8c: 0000 movs r0, r0 + 80063a4: 4618 mov r0, r3 + 80063a6: 3718 adds r7, #24 + 80063a8: 46bd mov sp, r7 + 80063aa: bd80 pop {r7, pc} + 80063ac: 0000 movs r0, r0 ... -08005c90 : +080063b0 : //血液信息转换 void blood_data_translate(void) { - 8005c90: b5b0 push {r4, r5, r7, lr} - 8005c92: b08c sub sp, #48 ; 0x30 - 8005c94: af00 add r7, sp, #0 + 80063b0: b5b0 push {r4, r5, r7, lr} + 80063b2: b08c sub sp, #48 ; 0x30 + 80063b4: af00 add r7, sp, #0 float n_denom; uint16_t i; //直流滤波 float dc_red =0; - 8005c96: f04f 0300 mov.w r3, #0 - 8005c9a: 62bb str r3, [r7, #40] ; 0x28 + 80063b6: f04f 0300 mov.w r3, #0 + 80063ba: 62bb str r3, [r7, #40] ; 0x28 float dc_ir =0; - 8005c9c: f04f 0300 mov.w r3, #0 - 8005ca0: 627b str r3, [r7, #36] ; 0x24 + 80063bc: f04f 0300 mov.w r3, #0 + 80063c0: 627b str r3, [r7, #36] ; 0x24 float ac_red =0; - 8005ca2: f04f 0300 mov.w r3, #0 - 8005ca6: 623b str r3, [r7, #32] + 80063c2: f04f 0300 mov.w r3, #0 + 80063c6: 623b str r3, [r7, #32] float ac_ir =0; - 8005ca8: f04f 0300 mov.w r3, #0 - 8005cac: 61fb str r3, [r7, #28] + 80063c8: f04f 0300 mov.w r3, #0 + 80063cc: 61fb str r3, [r7, #28] for (i=0 ; i + 80063ce: 2300 movs r3, #0 + 80063d0: 85fb strh r3, [r7, #46] ; 0x2e + 80063d2: e016 b.n 8006402 { dc_red += s1[i].real ; - 8005cb4: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005cb6: 4a56 ldr r2, [pc, #344] ; (8005e10 ) - 8005cb8: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005cbc: 4619 mov r1, r3 - 8005cbe: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005cc0: f7fa ffa4 bl 8000c0c <__addsf3> - 8005cc4: 4603 mov r3, r0 - 8005cc6: 62bb str r3, [r7, #40] ; 0x28 + 80063d4: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80063d6: 4a56 ldr r2, [pc, #344] ; (8006530 ) + 80063d8: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80063dc: 4619 mov r1, r3 + 80063de: 6ab8 ldr r0, [r7, #40] ; 0x28 + 80063e0: f7fa fc14 bl 8000c0c <__addsf3> + 80063e4: 4603 mov r3, r0 + 80063e6: 62bb str r3, [r7, #40] ; 0x28 dc_ir += s2[i].real ; - 8005cc8: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005cca: 4a52 ldr r2, [pc, #328] ; (8005e14 ) - 8005ccc: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005cd0: 4619 mov r1, r3 - 8005cd2: 6a78 ldr r0, [r7, #36] ; 0x24 - 8005cd4: f7fa ff9a bl 8000c0c <__addsf3> - 8005cd8: 4603 mov r3, r0 - 8005cda: 627b str r3, [r7, #36] ; 0x24 + 80063e8: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80063ea: 4a52 ldr r2, [pc, #328] ; (8006534 ) + 80063ec: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80063f0: 4619 mov r1, r3 + 80063f2: 6a78 ldr r0, [r7, #36] ; 0x24 + 80063f4: f7fa fc0a bl 8000c0c <__addsf3> + 80063f8: 4603 mov r3, r0 + 80063fa: 627b str r3, [r7, #36] ; 0x24 for (i=0 ; i + 80063fc: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80063fe: 3301 adds r3, #1 + 8006400: 85fb strh r3, [r7, #46] ; 0x2e + 8006402: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006404: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8006408: d3e4 bcc.n 80063d4 } dc_red =dc_red/FFT_N ; - 8005cea: f04f 4188 mov.w r1, #1140850688 ; 0x44000000 - 8005cee: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005cf0: f7fb f948 bl 8000f84 <__aeabi_fdiv> - 8005cf4: 4603 mov r3, r0 - 8005cf6: 62bb str r3, [r7, #40] ; 0x28 + 800640a: f04f 4188 mov.w r1, #1140850688 ; 0x44000000 + 800640e: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8006410: f7fa fdb8 bl 8000f84 <__aeabi_fdiv> + 8006414: 4603 mov r3, r0 + 8006416: 62bb str r3, [r7, #40] ; 0x28 dc_ir =dc_ir/FFT_N ; - 8005cf8: f04f 4188 mov.w r1, #1140850688 ; 0x44000000 - 8005cfc: 6a78 ldr r0, [r7, #36] ; 0x24 - 8005cfe: f7fb f941 bl 8000f84 <__aeabi_fdiv> - 8005d02: 4603 mov r3, r0 - 8005d04: 627b str r3, [r7, #36] ; 0x24 + 8006418: f04f 4188 mov.w r1, #1140850688 ; 0x44000000 + 800641c: 6a78 ldr r0, [r7, #36] ; 0x24 + 800641e: f7fa fdb1 bl 8000f84 <__aeabi_fdiv> + 8006422: 4603 mov r3, r0 + 8006424: 627b str r3, [r7, #36] ; 0x24 for (i=0 ; i + 8006426: 2300 movs r3, #0 + 8006428: 85fb strh r3, [r7, #46] ; 0x2e + 800642a: e01e b.n 800646a { s1[i].real = s1[i].real - dc_red ; - 8005d0c: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005d0e: 4a40 ldr r2, [pc, #256] ; (8005e10 ) - 8005d10: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005d14: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005d16: 6ab9 ldr r1, [r7, #40] ; 0x28 - 8005d18: 4618 mov r0, r3 - 8005d1a: f7fa ff75 bl 8000c08 <__aeabi_fsub> - 8005d1e: 4603 mov r3, r0 - 8005d20: 461a mov r2, r3 - 8005d22: 4b3b ldr r3, [pc, #236] ; (8005e10 ) - 8005d24: f843 2034 str.w r2, [r3, r4, lsl #3] + 800642c: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800642e: 4a40 ldr r2, [pc, #256] ; (8006530 ) + 8006430: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006434: 8dfc ldrh r4, [r7, #46] ; 0x2e + 8006436: 6ab9 ldr r1, [r7, #40] ; 0x28 + 8006438: 4618 mov r0, r3 + 800643a: f7fa fbe5 bl 8000c08 <__aeabi_fsub> + 800643e: 4603 mov r3, r0 + 8006440: 461a mov r2, r3 + 8006442: 4b3b ldr r3, [pc, #236] ; (8006530 ) + 8006444: f843 2034 str.w r2, [r3, r4, lsl #3] s2[i].real = s2[i].real - dc_ir ; - 8005d28: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005d2a: 4a3a ldr r2, [pc, #232] ; (8005e14 ) - 8005d2c: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005d30: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005d32: 6a79 ldr r1, [r7, #36] ; 0x24 - 8005d34: 4618 mov r0, r3 - 8005d36: f7fa ff67 bl 8000c08 <__aeabi_fsub> - 8005d3a: 4603 mov r3, r0 - 8005d3c: 461a mov r2, r3 - 8005d3e: 4b35 ldr r3, [pc, #212] ; (8005e14 ) - 8005d40: f843 2034 str.w r2, [r3, r4, lsl #3] + 8006448: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800644a: 4a3a ldr r2, [pc, #232] ; (8006534 ) + 800644c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006450: 8dfc ldrh r4, [r7, #46] ; 0x2e + 8006452: 6a79 ldr r1, [r7, #36] ; 0x24 + 8006454: 4618 mov r0, r3 + 8006456: f7fa fbd7 bl 8000c08 <__aeabi_fsub> + 800645a: 4603 mov r3, r0 + 800645c: 461a mov r2, r3 + 800645e: 4b35 ldr r3, [pc, #212] ; (8006534 ) + 8006460: f843 2034 str.w r2, [r3, r4, lsl #3] for (i=0 ; i + 8006464: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006466: 3301 adds r3, #1 + 8006468: 85fb strh r3, [r7, #46] ; 0x2e + 800646a: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800646c: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8006470: d3dc bcc.n 800642c } //移动平均滤波 for(i = 1;i < FFT_N-1;i++) - 8005d52: 2301 movs r3, #1 - 8005d54: 85fb strh r3, [r7, #46] ; 0x2e - 8005d56: e054 b.n 8005e02 + 8006472: 2301 movs r3, #1 + 8006474: 85fb strh r3, [r7, #46] ; 0x2e + 8006476: e054 b.n 8006522 { n_denom= ( s1[i-1].real + 2*s1[i].real + s1[i+1].real); - 8005d58: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005d5a: 3b01 subs r3, #1 - 8005d5c: 4a2c ldr r2, [pc, #176] ; (8005e10 ) - 8005d5e: f852 4033 ldr.w r4, [r2, r3, lsl #3] - 8005d62: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005d64: 4a2a ldr r2, [pc, #168] ; (8005e10 ) - 8005d66: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005d6a: 4619 mov r1, r3 - 8005d6c: 4618 mov r0, r3 - 8005d6e: f7fa ff4d bl 8000c0c <__addsf3> - 8005d72: 4603 mov r3, r0 - 8005d74: 4619 mov r1, r3 - 8005d76: 4620 mov r0, r4 - 8005d78: f7fa ff48 bl 8000c0c <__addsf3> - 8005d7c: 4603 mov r3, r0 - 8005d7e: 4618 mov r0, r3 - 8005d80: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005d82: 3301 adds r3, #1 - 8005d84: 4a22 ldr r2, [pc, #136] ; (8005e10 ) - 8005d86: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005d8a: 4619 mov r1, r3 - 8005d8c: f7fa ff3e bl 8000c0c <__addsf3> - 8005d90: 4603 mov r3, r0 - 8005d92: 607b str r3, [r7, #4] + 8006478: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800647a: 3b01 subs r3, #1 + 800647c: 4a2c ldr r2, [pc, #176] ; (8006530 ) + 800647e: f852 4033 ldr.w r4, [r2, r3, lsl #3] + 8006482: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006484: 4a2a ldr r2, [pc, #168] ; (8006530 ) + 8006486: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 800648a: 4619 mov r1, r3 + 800648c: 4618 mov r0, r3 + 800648e: f7fa fbbd bl 8000c0c <__addsf3> + 8006492: 4603 mov r3, r0 + 8006494: 4619 mov r1, r3 + 8006496: 4620 mov r0, r4 + 8006498: f7fa fbb8 bl 8000c0c <__addsf3> + 800649c: 4603 mov r3, r0 + 800649e: 4618 mov r0, r3 + 80064a0: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80064a2: 3301 adds r3, #1 + 80064a4: 4a22 ldr r2, [pc, #136] ; (8006530 ) + 80064a6: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80064aa: 4619 mov r1, r3 + 80064ac: f7fa fbae bl 8000c0c <__addsf3> + 80064b0: 4603 mov r3, r0 + 80064b2: 607b str r3, [r7, #4] s1[i].real= n_denom/4.00; - 8005d94: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005d96: f04f 4181 mov.w r1, #1082130432 ; 0x40800000 - 8005d9a: 6878 ldr r0, [r7, #4] - 8005d9c: f7fb f8f2 bl 8000f84 <__aeabi_fdiv> - 8005da0: 4603 mov r3, r0 - 8005da2: 461a mov r2, r3 - 8005da4: 4b1a ldr r3, [pc, #104] ; (8005e10 ) - 8005da6: f843 2034 str.w r2, [r3, r4, lsl #3] + 80064b4: 8dfc ldrh r4, [r7, #46] ; 0x2e + 80064b6: f04f 4181 mov.w r1, #1082130432 ; 0x40800000 + 80064ba: 6878 ldr r0, [r7, #4] + 80064bc: f7fa fd62 bl 8000f84 <__aeabi_fdiv> + 80064c0: 4603 mov r3, r0 + 80064c2: 461a mov r2, r3 + 80064c4: 4b1a ldr r3, [pc, #104] ; (8006530 ) + 80064c6: f843 2034 str.w r2, [r3, r4, lsl #3] n_denom= ( s2[i-1].real + 2*s2[i].real + s2[i+1].real); - 8005daa: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005dac: 3b01 subs r3, #1 - 8005dae: 4a19 ldr r2, [pc, #100] ; (8005e14 ) - 8005db0: f852 4033 ldr.w r4, [r2, r3, lsl #3] - 8005db4: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005db6: 4a17 ldr r2, [pc, #92] ; (8005e14 ) - 8005db8: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005dbc: 4619 mov r1, r3 - 8005dbe: 4618 mov r0, r3 - 8005dc0: f7fa ff24 bl 8000c0c <__addsf3> - 8005dc4: 4603 mov r3, r0 - 8005dc6: 4619 mov r1, r3 - 8005dc8: 4620 mov r0, r4 - 8005dca: f7fa ff1f bl 8000c0c <__addsf3> - 8005dce: 4603 mov r3, r0 - 8005dd0: 4618 mov r0, r3 - 8005dd2: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005dd4: 3301 adds r3, #1 - 8005dd6: 4a0f ldr r2, [pc, #60] ; (8005e14 ) - 8005dd8: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005ddc: 4619 mov r1, r3 - 8005dde: f7fa ff15 bl 8000c0c <__addsf3> - 8005de2: 4603 mov r3, r0 - 8005de4: 607b str r3, [r7, #4] + 80064ca: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80064cc: 3b01 subs r3, #1 + 80064ce: 4a19 ldr r2, [pc, #100] ; (8006534 ) + 80064d0: f852 4033 ldr.w r4, [r2, r3, lsl #3] + 80064d4: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80064d6: 4a17 ldr r2, [pc, #92] ; (8006534 ) + 80064d8: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80064dc: 4619 mov r1, r3 + 80064de: 4618 mov r0, r3 + 80064e0: f7fa fb94 bl 8000c0c <__addsf3> + 80064e4: 4603 mov r3, r0 + 80064e6: 4619 mov r1, r3 + 80064e8: 4620 mov r0, r4 + 80064ea: f7fa fb8f bl 8000c0c <__addsf3> + 80064ee: 4603 mov r3, r0 + 80064f0: 4618 mov r0, r3 + 80064f2: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80064f4: 3301 adds r3, #1 + 80064f6: 4a0f ldr r2, [pc, #60] ; (8006534 ) + 80064f8: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80064fc: 4619 mov r1, r3 + 80064fe: f7fa fb85 bl 8000c0c <__addsf3> + 8006502: 4603 mov r3, r0 + 8006504: 607b str r3, [r7, #4] s2[i].real= n_denom/4.00; - 8005de6: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005de8: f04f 4181 mov.w r1, #1082130432 ; 0x40800000 - 8005dec: 6878 ldr r0, [r7, #4] - 8005dee: f7fb f8c9 bl 8000f84 <__aeabi_fdiv> - 8005df2: 4603 mov r3, r0 - 8005df4: 461a mov r2, r3 - 8005df6: 4b07 ldr r3, [pc, #28] ; (8005e14 ) - 8005df8: f843 2034 str.w r2, [r3, r4, lsl #3] + 8006506: 8dfc ldrh r4, [r7, #46] ; 0x2e + 8006508: f04f 4181 mov.w r1, #1082130432 ; 0x40800000 + 800650c: 6878 ldr r0, [r7, #4] + 800650e: f7fa fd39 bl 8000f84 <__aeabi_fdiv> + 8006512: 4603 mov r3, r0 + 8006514: 461a mov r2, r3 + 8006516: 4b07 ldr r3, [pc, #28] ; (8006534 ) + 8006518: f843 2034 str.w r2, [r3, r4, lsl #3] for(i = 1;i < FFT_N-1;i++) - 8005dfc: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005dfe: 3301 adds r3, #1 - 8005e00: 85fb strh r3, [r7, #46] ; 0x2e - 8005e02: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e04: f5b3 7fff cmp.w r3, #510 ; 0x1fe - 8005e08: d9a6 bls.n 8005d58 + 800651c: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800651e: 3301 adds r3, #1 + 8006520: 85fb strh r3, [r7, #46] ; 0x2e + 8006522: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006524: f5b3 7fff cmp.w r3, #510 ; 0x1fe + 8006528: d9a6 bls.n 8006478 } //八点平均滤波 for(i = 0;i < FFT_N-8;i++) - 8005e0a: 2300 movs r3, #0 - 8005e0c: 85fb strh r3, [r7, #46] ; 0x2e - 8005e0e: e0b2 b.n 8005f76 - 8005e10: 20000348 .word 0x20000348 - 8005e14: 200013c8 .word 0x200013c8 + 800652a: 2300 movs r3, #0 + 800652c: 85fb strh r3, [r7, #46] ; 0x2e + 800652e: e0b2 b.n 8006696 + 8006530: 20000390 .word 0x20000390 + 8006534: 20001410 .word 0x20001410 { n_denom= ( s1[i].real+s1[i+1].real+ s1[i+2].real+ s1[i+3].real+ s1[i+4].real+ s1[i+5].real+ s1[i+6].real+ s1[i+7].real); - 8005e18: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e1a: 4a8e ldr r2, [pc, #568] ; (8006054 ) - 8005e1c: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8005e20: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e22: 3301 adds r3, #1 - 8005e24: 498b ldr r1, [pc, #556] ; (8006054 ) - 8005e26: f851 3033 ldr.w r3, [r1, r3, lsl #3] - 8005e2a: 4619 mov r1, r3 - 8005e2c: 4610 mov r0, r2 - 8005e2e: f7fa feed bl 8000c0c <__addsf3> - 8005e32: 4603 mov r3, r0 - 8005e34: 4618 mov r0, r3 - 8005e36: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e38: 3302 adds r3, #2 - 8005e3a: 4a86 ldr r2, [pc, #536] ; (8006054 ) - 8005e3c: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005e40: 4619 mov r1, r3 - 8005e42: f7fa fee3 bl 8000c0c <__addsf3> - 8005e46: 4603 mov r3, r0 - 8005e48: 4618 mov r0, r3 - 8005e4a: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e4c: 3303 adds r3, #3 - 8005e4e: 4a81 ldr r2, [pc, #516] ; (8006054 ) - 8005e50: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005e54: 4619 mov r1, r3 - 8005e56: f7fa fed9 bl 8000c0c <__addsf3> - 8005e5a: 4603 mov r3, r0 - 8005e5c: 4618 mov r0, r3 - 8005e5e: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e60: 3304 adds r3, #4 - 8005e62: 4a7c ldr r2, [pc, #496] ; (8006054 ) - 8005e64: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005e68: 4619 mov r1, r3 - 8005e6a: f7fa fecf bl 8000c0c <__addsf3> - 8005e6e: 4603 mov r3, r0 - 8005e70: 4618 mov r0, r3 - 8005e72: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e74: 3305 adds r3, #5 - 8005e76: 4a77 ldr r2, [pc, #476] ; (8006054 ) - 8005e78: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005e7c: 4619 mov r1, r3 - 8005e7e: f7fa fec5 bl 8000c0c <__addsf3> - 8005e82: 4603 mov r3, r0 - 8005e84: 4618 mov r0, r3 - 8005e86: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e88: 3306 adds r3, #6 - 8005e8a: 4a72 ldr r2, [pc, #456] ; (8006054 ) - 8005e8c: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005e90: 4619 mov r1, r3 - 8005e92: f7fa febb bl 8000c0c <__addsf3> - 8005e96: 4603 mov r3, r0 - 8005e98: 4618 mov r0, r3 - 8005e9a: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005e9c: 3307 adds r3, #7 - 8005e9e: 4a6d ldr r2, [pc, #436] ; (8006054 ) - 8005ea0: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005ea4: 4619 mov r1, r3 - 8005ea6: f7fa feb1 bl 8000c0c <__addsf3> - 8005eaa: 4603 mov r3, r0 - 8005eac: 607b str r3, [r7, #4] + 8006538: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800653a: 4a8d ldr r2, [pc, #564] ; (8006770 ) + 800653c: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 8006540: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006542: 3301 adds r3, #1 + 8006544: 498a ldr r1, [pc, #552] ; (8006770 ) + 8006546: f851 3033 ldr.w r3, [r1, r3, lsl #3] + 800654a: 4619 mov r1, r3 + 800654c: 4610 mov r0, r2 + 800654e: f7fa fb5d bl 8000c0c <__addsf3> + 8006552: 4603 mov r3, r0 + 8006554: 4618 mov r0, r3 + 8006556: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006558: 3302 adds r3, #2 + 800655a: 4a85 ldr r2, [pc, #532] ; (8006770 ) + 800655c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006560: 4619 mov r1, r3 + 8006562: f7fa fb53 bl 8000c0c <__addsf3> + 8006566: 4603 mov r3, r0 + 8006568: 4618 mov r0, r3 + 800656a: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800656c: 3303 adds r3, #3 + 800656e: 4a80 ldr r2, [pc, #512] ; (8006770 ) + 8006570: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006574: 4619 mov r1, r3 + 8006576: f7fa fb49 bl 8000c0c <__addsf3> + 800657a: 4603 mov r3, r0 + 800657c: 4618 mov r0, r3 + 800657e: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006580: 3304 adds r3, #4 + 8006582: 4a7b ldr r2, [pc, #492] ; (8006770 ) + 8006584: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006588: 4619 mov r1, r3 + 800658a: f7fa fb3f bl 8000c0c <__addsf3> + 800658e: 4603 mov r3, r0 + 8006590: 4618 mov r0, r3 + 8006592: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006594: 3305 adds r3, #5 + 8006596: 4a76 ldr r2, [pc, #472] ; (8006770 ) + 8006598: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 800659c: 4619 mov r1, r3 + 800659e: f7fa fb35 bl 8000c0c <__addsf3> + 80065a2: 4603 mov r3, r0 + 80065a4: 4618 mov r0, r3 + 80065a6: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80065a8: 3306 adds r3, #6 + 80065aa: 4a71 ldr r2, [pc, #452] ; (8006770 ) + 80065ac: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80065b0: 4619 mov r1, r3 + 80065b2: f7fa fb2b bl 8000c0c <__addsf3> + 80065b6: 4603 mov r3, r0 + 80065b8: 4618 mov r0, r3 + 80065ba: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80065bc: 3307 adds r3, #7 + 80065be: 4a6c ldr r2, [pc, #432] ; (8006770 ) + 80065c0: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80065c4: 4619 mov r1, r3 + 80065c6: f7fa fb21 bl 8000c0c <__addsf3> + 80065ca: 4603 mov r3, r0 + 80065cc: 607b str r3, [r7, #4] s1[i].real= n_denom/8.00; - 8005eae: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005eb0: f04f 4182 mov.w r1, #1090519040 ; 0x41000000 - 8005eb4: 6878 ldr r0, [r7, #4] - 8005eb6: f7fb f865 bl 8000f84 <__aeabi_fdiv> - 8005eba: 4603 mov r3, r0 - 8005ebc: 461a mov r2, r3 - 8005ebe: 4b65 ldr r3, [pc, #404] ; (8006054 ) - 8005ec0: f843 2034 str.w r2, [r3, r4, lsl #3] + 80065ce: 8dfc ldrh r4, [r7, #46] ; 0x2e + 80065d0: f04f 4182 mov.w r1, #1090519040 ; 0x41000000 + 80065d4: 6878 ldr r0, [r7, #4] + 80065d6: f7fa fcd5 bl 8000f84 <__aeabi_fdiv> + 80065da: 4603 mov r3, r0 + 80065dc: 461a mov r2, r3 + 80065de: 4b64 ldr r3, [pc, #400] ; (8006770 ) + 80065e0: f843 2034 str.w r2, [r3, r4, lsl #3] n_denom= ( s2[i].real+s2[i+1].real+ s2[i+2].real+ s2[i+3].real+ s2[i+4].real+ s2[i+5].real+ s2[i+6].real+ s2[i+7].real); - 8005ec4: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005ec6: 4a64 ldr r2, [pc, #400] ; (8006058 ) - 8005ec8: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8005ecc: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005ece: 3301 adds r3, #1 - 8005ed0: 4961 ldr r1, [pc, #388] ; (8006058 ) - 8005ed2: f851 3033 ldr.w r3, [r1, r3, lsl #3] - 8005ed6: 4619 mov r1, r3 - 8005ed8: 4610 mov r0, r2 - 8005eda: f7fa fe97 bl 8000c0c <__addsf3> - 8005ede: 4603 mov r3, r0 - 8005ee0: 4618 mov r0, r3 - 8005ee2: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005ee4: 3302 adds r3, #2 - 8005ee6: 4a5c ldr r2, [pc, #368] ; (8006058 ) - 8005ee8: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005eec: 4619 mov r1, r3 - 8005eee: f7fa fe8d bl 8000c0c <__addsf3> - 8005ef2: 4603 mov r3, r0 - 8005ef4: 4618 mov r0, r3 - 8005ef6: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005ef8: 3303 adds r3, #3 - 8005efa: 4a57 ldr r2, [pc, #348] ; (8006058 ) - 8005efc: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005f00: 4619 mov r1, r3 - 8005f02: f7fa fe83 bl 8000c0c <__addsf3> - 8005f06: 4603 mov r3, r0 - 8005f08: 4618 mov r0, r3 - 8005f0a: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f0c: 3304 adds r3, #4 - 8005f0e: 4a52 ldr r2, [pc, #328] ; (8006058 ) - 8005f10: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005f14: 4619 mov r1, r3 - 8005f16: f7fa fe79 bl 8000c0c <__addsf3> - 8005f1a: 4603 mov r3, r0 - 8005f1c: 4618 mov r0, r3 - 8005f1e: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f20: 3305 adds r3, #5 - 8005f22: 4a4d ldr r2, [pc, #308] ; (8006058 ) - 8005f24: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005f28: 4619 mov r1, r3 - 8005f2a: f7fa fe6f bl 8000c0c <__addsf3> - 8005f2e: 4603 mov r3, r0 - 8005f30: 4618 mov r0, r3 - 8005f32: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f34: 3306 adds r3, #6 - 8005f36: 4a48 ldr r2, [pc, #288] ; (8006058 ) - 8005f38: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005f3c: 4619 mov r1, r3 - 8005f3e: f7fa fe65 bl 8000c0c <__addsf3> - 8005f42: 4603 mov r3, r0 - 8005f44: 4618 mov r0, r3 - 8005f46: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f48: 3307 adds r3, #7 - 8005f4a: 4a43 ldr r2, [pc, #268] ; (8006058 ) - 8005f4c: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8005f50: 4619 mov r1, r3 - 8005f52: f7fa fe5b bl 8000c0c <__addsf3> - 8005f56: 4603 mov r3, r0 - 8005f58: 607b str r3, [r7, #4] + 80065e4: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80065e6: 4a63 ldr r2, [pc, #396] ; (8006774 ) + 80065e8: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 80065ec: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80065ee: 3301 adds r3, #1 + 80065f0: 4960 ldr r1, [pc, #384] ; (8006774 ) + 80065f2: f851 3033 ldr.w r3, [r1, r3, lsl #3] + 80065f6: 4619 mov r1, r3 + 80065f8: 4610 mov r0, r2 + 80065fa: f7fa fb07 bl 8000c0c <__addsf3> + 80065fe: 4603 mov r3, r0 + 8006600: 4618 mov r0, r3 + 8006602: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006604: 3302 adds r3, #2 + 8006606: 4a5b ldr r2, [pc, #364] ; (8006774 ) + 8006608: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 800660c: 4619 mov r1, r3 + 800660e: f7fa fafd bl 8000c0c <__addsf3> + 8006612: 4603 mov r3, r0 + 8006614: 4618 mov r0, r3 + 8006616: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006618: 3303 adds r3, #3 + 800661a: 4a56 ldr r2, [pc, #344] ; (8006774 ) + 800661c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006620: 4619 mov r1, r3 + 8006622: f7fa faf3 bl 8000c0c <__addsf3> + 8006626: 4603 mov r3, r0 + 8006628: 4618 mov r0, r3 + 800662a: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800662c: 3304 adds r3, #4 + 800662e: 4a51 ldr r2, [pc, #324] ; (8006774 ) + 8006630: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006634: 4619 mov r1, r3 + 8006636: f7fa fae9 bl 8000c0c <__addsf3> + 800663a: 4603 mov r3, r0 + 800663c: 4618 mov r0, r3 + 800663e: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006640: 3305 adds r3, #5 + 8006642: 4a4c ldr r2, [pc, #304] ; (8006774 ) + 8006644: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006648: 4619 mov r1, r3 + 800664a: f7fa fadf bl 8000c0c <__addsf3> + 800664e: 4603 mov r3, r0 + 8006650: 4618 mov r0, r3 + 8006652: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006654: 3306 adds r3, #6 + 8006656: 4a47 ldr r2, [pc, #284] ; (8006774 ) + 8006658: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 800665c: 4619 mov r1, r3 + 800665e: f7fa fad5 bl 8000c0c <__addsf3> + 8006662: 4603 mov r3, r0 + 8006664: 4618 mov r0, r3 + 8006666: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006668: 3307 adds r3, #7 + 800666a: 4a42 ldr r2, [pc, #264] ; (8006774 ) + 800666c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006670: 4619 mov r1, r3 + 8006672: f7fa facb bl 8000c0c <__addsf3> + 8006676: 4603 mov r3, r0 + 8006678: 607b str r3, [r7, #4] s2[i].real= n_denom/8.00; - 8005f5a: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005f5c: f04f 4182 mov.w r1, #1090519040 ; 0x41000000 - 8005f60: 6878 ldr r0, [r7, #4] - 8005f62: f7fb f80f bl 8000f84 <__aeabi_fdiv> - 8005f66: 4603 mov r3, r0 - 8005f68: 461a mov r2, r3 - 8005f6a: 4b3b ldr r3, [pc, #236] ; (8006058 ) - 8005f6c: f843 2034 str.w r2, [r3, r4, lsl #3] + 800667a: 8dfc ldrh r4, [r7, #46] ; 0x2e + 800667c: f04f 4182 mov.w r1, #1090519040 ; 0x41000000 + 8006680: 6878 ldr r0, [r7, #4] + 8006682: f7fa fc7f bl 8000f84 <__aeabi_fdiv> + 8006686: 4603 mov r3, r0 + 8006688: 461a mov r2, r3 + 800668a: 4b3a ldr r3, [pc, #232] ; (8006774 ) + 800668c: f843 2034 str.w r2, [r3, r4, lsl #3] for(i = 0;i < FFT_N-8;i++) - 8005f70: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f72: 3301 adds r3, #1 - 8005f74: 85fb strh r3, [r7, #46] ; 0x2e - 8005f76: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f78: f5b3 7ffc cmp.w r3, #504 ; 0x1f8 - 8005f7c: f4ff af4c bcc.w 8005e18 + 8006690: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006692: 3301 adds r3, #1 + 8006694: 85fb strh r3, [r7, #46] ; 0x2e + 8006696: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006698: f5b3 7ffc cmp.w r3, #504 ; 0x1f8 + 800669c: f4ff af4c bcc.w 8006538 } //开始变换显示 - g_fft_index = 0; - 8005f80: 4b36 ldr r3, [pc, #216] ; (800605c ) - 8005f82: 2200 movs r2, #0 - 8005f84: 801a strh r2, [r3, #0] + //快速傅里叶变换 FFT(s1); - 8005f86: 4833 ldr r0, [pc, #204] ; (8006054 ) - 8005f88: f7ff fd2e bl 80059e8 + 80066a0: 4833 ldr r0, [pc, #204] ; (8006770 ) + 80066a2: f7ff fd31 bl 8006108 FFT(s2); - 8005f8c: 4832 ldr r0, [pc, #200] ; (8006058 ) - 8005f8e: f7ff fd2b bl 80059e8 + 80066a6: 4833 ldr r0, [pc, #204] ; (8006774 ) + 80066a8: f7ff fd2e bl 8006108 //解平方 for(i = 0;i < FFT_N;i++) - 8005f92: 2300 movs r3, #0 - 8005f94: 85fb strh r3, [r7, #46] ; 0x2e - 8005f96: e056 b.n 8006046 + 80066ac: 2300 movs r3, #0 + 80066ae: 85fb strh r3, [r7, #46] ; 0x2e + 80066b0: e056 b.n 8006760 { s1[i].real=sqrtf(s1[i].real*s1[i].real+s1[i].imag*s1[i].imag); - 8005f98: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005f9a: 4a2e ldr r2, [pc, #184] ; (8006054 ) - 8005f9c: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8005fa0: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005fa2: 492c ldr r1, [pc, #176] ; (8006054 ) - 8005fa4: f851 3033 ldr.w r3, [r1, r3, lsl #3] - 8005fa8: 4619 mov r1, r3 - 8005faa: 4610 mov r0, r2 - 8005fac: f7fa ff36 bl 8000e1c <__aeabi_fmul> - 8005fb0: 4603 mov r3, r0 - 8005fb2: 461c mov r4, r3 - 8005fb4: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005fb6: 4a27 ldr r2, [pc, #156] ; (8006054 ) - 8005fb8: 00db lsls r3, r3, #3 - 8005fba: 4413 add r3, r2 - 8005fbc: 685a ldr r2, [r3, #4] - 8005fbe: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005fc0: 4924 ldr r1, [pc, #144] ; (8006054 ) - 8005fc2: 00db lsls r3, r3, #3 - 8005fc4: 440b add r3, r1 - 8005fc6: 685b ldr r3, [r3, #4] - 8005fc8: 4619 mov r1, r3 - 8005fca: 4610 mov r0, r2 - 8005fcc: f7fa ff26 bl 8000e1c <__aeabi_fmul> - 8005fd0: 4603 mov r3, r0 - 8005fd2: 4619 mov r1, r3 - 8005fd4: 4620 mov r0, r4 - 8005fd6: f7fa fe19 bl 8000c0c <__addsf3> - 8005fda: 4603 mov r3, r0 - 8005fdc: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8005fde: 4618 mov r0, r3 - 8005fe0: f003 fbe6 bl 80097b0 - 8005fe4: 4603 mov r3, r0 - 8005fe6: 4a1b ldr r2, [pc, #108] ; (8006054 ) - 8005fe8: f842 3034 str.w r3, [r2, r4, lsl #3] + 80066b2: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80066b4: 4a2e ldr r2, [pc, #184] ; (8006770 ) + 80066b6: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 80066ba: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80066bc: 492c ldr r1, [pc, #176] ; (8006770 ) + 80066be: f851 3033 ldr.w r3, [r1, r3, lsl #3] + 80066c2: 4619 mov r1, r3 + 80066c4: 4610 mov r0, r2 + 80066c6: f7fa fba9 bl 8000e1c <__aeabi_fmul> + 80066ca: 4603 mov r3, r0 + 80066cc: 461c mov r4, r3 + 80066ce: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80066d0: 4a27 ldr r2, [pc, #156] ; (8006770 ) + 80066d2: 00db lsls r3, r3, #3 + 80066d4: 4413 add r3, r2 + 80066d6: 685a ldr r2, [r3, #4] + 80066d8: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80066da: 4925 ldr r1, [pc, #148] ; (8006770 ) + 80066dc: 00db lsls r3, r3, #3 + 80066de: 440b add r3, r1 + 80066e0: 685b ldr r3, [r3, #4] + 80066e2: 4619 mov r1, r3 + 80066e4: 4610 mov r0, r2 + 80066e6: f7fa fb99 bl 8000e1c <__aeabi_fmul> + 80066ea: 4603 mov r3, r0 + 80066ec: 4619 mov r1, r3 + 80066ee: 4620 mov r0, r4 + 80066f0: f7fa fa8c bl 8000c0c <__addsf3> + 80066f4: 4603 mov r3, r0 + 80066f6: 8dfc ldrh r4, [r7, #46] ; 0x2e + 80066f8: 4618 mov r0, r3 + 80066fa: f003 fc0d bl 8009f18 + 80066fe: 4603 mov r3, r0 + 8006700: 4a1b ldr r2, [pc, #108] ; (8006770 ) + 8006702: f842 3034 str.w r3, [r2, r4, lsl #3] s1[i].real=sqrtf(s2[i].real*s2[i].real+s2[i].imag*s2[i].imag); - 8005fec: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005fee: 4a1a ldr r2, [pc, #104] ; (8006058 ) - 8005ff0: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8005ff4: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8005ff6: 4918 ldr r1, [pc, #96] ; (8006058 ) - 8005ff8: f851 3033 ldr.w r3, [r1, r3, lsl #3] - 8005ffc: 4619 mov r1, r3 - 8005ffe: 4610 mov r0, r2 - 8006000: f7fa ff0c bl 8000e1c <__aeabi_fmul> - 8006004: 4603 mov r3, r0 - 8006006: 461c mov r4, r3 - 8006008: 8dfb ldrh r3, [r7, #46] ; 0x2e - 800600a: 4a13 ldr r2, [pc, #76] ; (8006058 ) - 800600c: 00db lsls r3, r3, #3 - 800600e: 4413 add r3, r2 - 8006010: 685a ldr r2, [r3, #4] - 8006012: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8006014: 4910 ldr r1, [pc, #64] ; (8006058 ) - 8006016: 00db lsls r3, r3, #3 - 8006018: 440b add r3, r1 - 800601a: 685b ldr r3, [r3, #4] - 800601c: 4619 mov r1, r3 - 800601e: 4610 mov r0, r2 - 8006020: f7fa fefc bl 8000e1c <__aeabi_fmul> - 8006024: 4603 mov r3, r0 - 8006026: 4619 mov r1, r3 - 8006028: 4620 mov r0, r4 - 800602a: f7fa fdef bl 8000c0c <__addsf3> - 800602e: 4603 mov r3, r0 - 8006030: 8dfc ldrh r4, [r7, #46] ; 0x2e - 8006032: 4618 mov r0, r3 - 8006034: f003 fbbc bl 80097b0 - 8006038: 4603 mov r3, r0 - 800603a: 4a06 ldr r2, [pc, #24] ; (8006054 ) - 800603c: f842 3034 str.w r3, [r2, r4, lsl #3] + 8006706: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006708: 4a1a ldr r2, [pc, #104] ; (8006774 ) + 800670a: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 800670e: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006710: 4918 ldr r1, [pc, #96] ; (8006774 ) + 8006712: f851 3033 ldr.w r3, [r1, r3, lsl #3] + 8006716: 4619 mov r1, r3 + 8006718: 4610 mov r0, r2 + 800671a: f7fa fb7f bl 8000e1c <__aeabi_fmul> + 800671e: 4603 mov r3, r0 + 8006720: 461c mov r4, r3 + 8006722: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006724: 4a13 ldr r2, [pc, #76] ; (8006774 ) + 8006726: 00db lsls r3, r3, #3 + 8006728: 4413 add r3, r2 + 800672a: 685a ldr r2, [r3, #4] + 800672c: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800672e: 4911 ldr r1, [pc, #68] ; (8006774 ) + 8006730: 00db lsls r3, r3, #3 + 8006732: 440b add r3, r1 + 8006734: 685b ldr r3, [r3, #4] + 8006736: 4619 mov r1, r3 + 8006738: 4610 mov r0, r2 + 800673a: f7fa fb6f bl 8000e1c <__aeabi_fmul> + 800673e: 4603 mov r3, r0 + 8006740: 4619 mov r1, r3 + 8006742: 4620 mov r0, r4 + 8006744: f7fa fa62 bl 8000c0c <__addsf3> + 8006748: 4603 mov r3, r0 + 800674a: 8dfc ldrh r4, [r7, #46] ; 0x2e + 800674c: 4618 mov r0, r3 + 800674e: f003 fbe3 bl 8009f18 + 8006752: 4603 mov r3, r0 + 8006754: 4a06 ldr r2, [pc, #24] ; (8006770 ) + 8006756: f842 3034 str.w r3, [r2, r4, lsl #3] for(i = 0;i < FFT_N;i++) - 8006040: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8006042: 3301 adds r3, #1 - 8006044: 85fb strh r3, [r7, #46] ; 0x2e - 8006046: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8006048: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 800604c: d3a4 bcc.n 8005f98 + 800675a: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800675c: 3301 adds r3, #1 + 800675e: 85fb strh r3, [r7, #46] ; 0x2e + 8006760: 8dfb ldrh r3, [r7, #46] ; 0x2e + 8006762: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8006766: d3a4 bcc.n 80066b2 } //计算交流分量 for (i=1 ; i - 8006054: 20000348 .word 0x20000348 - 8006058: 200013c8 .word 0x200013c8 - 800605c: 20000204 .word 0x20000204 + 8006768: 2301 movs r3, #1 + 800676a: 85fb strh r3, [r7, #46] ; 0x2e + 800676c: e01b b.n 80067a6 + 800676e: bf00 nop + 8006770: 20000390 .word 0x20000390 + 8006774: 20001410 .word 0x20001410 { ac_red += s1[i].real ; - 8006060: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8006062: 4a55 ldr r2, [pc, #340] ; (80061b8 ) - 8006064: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8006068: 4619 mov r1, r3 - 800606a: 6a38 ldr r0, [r7, #32] - 800606c: f7fa fdce bl 8000c0c <__addsf3> - 8006070: 4603 mov r3, r0 - 8006072: 623b str r3, [r7, #32] + 8006778: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800677a: 4a55 ldr r2, [pc, #340] ; (80068d0 ) + 800677c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006780: 4619 mov r1, r3 + 8006782: 6a38 ldr r0, [r7, #32] + 8006784: f7fa fa42 bl 8000c0c <__addsf3> + 8006788: 4603 mov r3, r0 + 800678a: 623b str r3, [r7, #32] ac_ir += s2[i].real ; - 8006074: 8dfb ldrh r3, [r7, #46] ; 0x2e - 8006076: 4a51 ldr r2, [pc, #324] ; (80061bc ) - 8006078: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 800607c: 4619 mov r1, r3 - 800607e: 69f8 ldr r0, [r7, #28] - 8006080: f7fa fdc4 bl 8000c0c <__addsf3> - 8006084: 4603 mov r3, r0 - 8006086: 61fb str r3, [r7, #28] + 800678c: 8dfb ldrh r3, [r7, #46] ; 0x2e + 800678e: 4a51 ldr r2, [pc, #324] ; (80068d4 ) + 8006790: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8006794: 4619 mov r1, r3 + 8006796: 69f8 ldr r0, [r7, #28] + 8006798: f7fa fa38 bl 8000c0c <__addsf3> + 800679c: 4603 mov r3, r0 + 800679e: 61fb str r3, [r7, #28] for (i=1 ; i + 80067a0: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80067a2: 3301 adds r3, #1 + 80067a4: 85fb strh r3, [r7, #46] ; 0x2e + 80067a6: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80067a8: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 80067ac: d3e4 bcc.n 8006778 } //读取峰值点的横坐标 结果的物理意义为 int s1_max_index = find_max_num_index(s1, 30); - 8006096: 211e movs r1, #30 - 8006098: 4847 ldr r0, [pc, #284] ; (80061b8 ) - 800609a: f7ff fdc5 bl 8005c28 - 800609e: 61b8 str r0, [r7, #24] + 80067ae: 211e movs r1, #30 + 80067b0: 4847 ldr r0, [pc, #284] ; (80068d0 ) + 80067b2: f7ff fdc9 bl 8006348 + 80067b6: 61b8 str r0, [r7, #24] int s2_max_index = find_max_num_index(s2, 30); - 80060a0: 211e movs r1, #30 - 80060a2: 4846 ldr r0, [pc, #280] ; (80061bc ) - 80060a4: f7ff fdc0 bl 8005c28 - 80060a8: 6178 str r0, [r7, #20] + 80067b8: 211e movs r1, #30 + 80067ba: 4846 ldr r0, [pc, #280] ; (80068d4 ) + 80067bc: f7ff fdc4 bl 8006348 + 80067c0: 6178 str r0, [r7, #20] float Heart_Rate = 60.00 * ((100.0 * s1_max_index )/ 512.00); - 80060aa: 69b8 ldr r0, [r7, #24] - 80060ac: f7fa fa16 bl 80004dc <__aeabi_i2d> - 80060b0: f04f 0200 mov.w r2, #0 - 80060b4: 4b42 ldr r3, [pc, #264] ; (80061c0 ) - 80060b6: f7fa fa7b bl 80005b0 <__aeabi_dmul> - 80060ba: 4602 mov r2, r0 - 80060bc: 460b mov r3, r1 - 80060be: 4610 mov r0, r2 - 80060c0: 4619 mov r1, r3 - 80060c2: f04f 0200 mov.w r2, #0 - 80060c6: f04f 4381 mov.w r3, #1082130432 ; 0x40800000 - 80060ca: f7fa fb9b bl 8000804 <__aeabi_ddiv> - 80060ce: 4602 mov r2, r0 - 80060d0: 460b mov r3, r1 - 80060d2: 4610 mov r0, r2 - 80060d4: 4619 mov r1, r3 - 80060d6: f04f 0200 mov.w r2, #0 - 80060da: 4b3a ldr r3, [pc, #232] ; (80061c4 ) - 80060dc: f7fa fa68 bl 80005b0 <__aeabi_dmul> - 80060e0: 4602 mov r2, r0 - 80060e2: 460b mov r3, r1 - 80060e4: 4610 mov r0, r2 - 80060e6: 4619 mov r1, r3 - 80060e8: f7fa fd3a bl 8000b60 <__aeabi_d2f> - 80060ec: 4603 mov r3, r0 - 80060ee: 613b str r3, [r7, #16] + 80067c2: 69b8 ldr r0, [r7, #24] + 80067c4: f7f9 fe8a bl 80004dc <__aeabi_i2d> + 80067c8: f04f 0200 mov.w r2, #0 + 80067cc: 4b42 ldr r3, [pc, #264] ; (80068d8 ) + 80067ce: f7f9 feef bl 80005b0 <__aeabi_dmul> + 80067d2: 4602 mov r2, r0 + 80067d4: 460b mov r3, r1 + 80067d6: 4610 mov r0, r2 + 80067d8: 4619 mov r1, r3 + 80067da: f04f 0200 mov.w r2, #0 + 80067de: f04f 4381 mov.w r3, #1082130432 ; 0x40800000 + 80067e2: f7fa f80f bl 8000804 <__aeabi_ddiv> + 80067e6: 4602 mov r2, r0 + 80067e8: 460b mov r3, r1 + 80067ea: 4610 mov r0, r2 + 80067ec: 4619 mov r1, r3 + 80067ee: f04f 0200 mov.w r2, #0 + 80067f2: 4b3a ldr r3, [pc, #232] ; (80068dc ) + 80067f4: f7f9 fedc bl 80005b0 <__aeabi_dmul> + 80067f8: 4602 mov r2, r0 + 80067fa: 460b mov r3, r1 + 80067fc: 4610 mov r0, r2 + 80067fe: 4619 mov r1, r3 + 8006800: f7fa f9ae bl 8000b60 <__aeabi_d2f> + 8006804: 4603 mov r3, r0 + 8006806: 613b str r3, [r7, #16] g_blooddata.heart = Heart_Rate; - 80060f0: 6938 ldr r0, [r7, #16] - 80060f2: f7fb f86f bl 80011d4 <__aeabi_f2iz> - 80060f6: 4603 mov r3, r0 - 80060f8: 4a33 ldr r2, [pc, #204] ; (80061c8 ) - 80060fa: 6013 str r3, [r2, #0] + 8006808: 6938 ldr r0, [r7, #16] + 800680a: f7fa fce3 bl 80011d4 <__aeabi_f2iz> + 800680e: 4603 mov r3, r0 + 8006810: 4a33 ldr r2, [pc, #204] ; (80068e0 ) + 8006812: 6013 str r3, [r2, #0] float R = (ac_ir*dc_red)/(ac_red*dc_ir); - 80060fc: 6ab9 ldr r1, [r7, #40] ; 0x28 - 80060fe: 69f8 ldr r0, [r7, #28] - 8006100: f7fa fe8c bl 8000e1c <__aeabi_fmul> - 8006104: 4603 mov r3, r0 - 8006106: 461c mov r4, r3 - 8006108: 6a79 ldr r1, [r7, #36] ; 0x24 - 800610a: 6a38 ldr r0, [r7, #32] - 800610c: f7fa fe86 bl 8000e1c <__aeabi_fmul> - 8006110: 4603 mov r3, r0 - 8006112: 4619 mov r1, r3 - 8006114: 4620 mov r0, r4 - 8006116: f7fa ff35 bl 8000f84 <__aeabi_fdiv> - 800611a: 4603 mov r3, r0 - 800611c: 60fb str r3, [r7, #12] + 8006814: 6ab9 ldr r1, [r7, #40] ; 0x28 + 8006816: 69f8 ldr r0, [r7, #28] + 8006818: f7fa fb00 bl 8000e1c <__aeabi_fmul> + 800681c: 4603 mov r3, r0 + 800681e: 461c mov r4, r3 + 8006820: 6a79 ldr r1, [r7, #36] ; 0x24 + 8006822: 6a38 ldr r0, [r7, #32] + 8006824: f7fa fafa bl 8000e1c <__aeabi_fmul> + 8006828: 4603 mov r3, r0 + 800682a: 4619 mov r1, r3 + 800682c: 4620 mov r0, r4 + 800682e: f7fa fba9 bl 8000f84 <__aeabi_fdiv> + 8006832: 4603 mov r3, r0 + 8006834: 60fb str r3, [r7, #12] float sp02_num =-45.060*R*R+ 30.354 *R + 94.845; - 800611e: 68f8 ldr r0, [r7, #12] - 8006120: f7fa f9ee bl 8000500 <__aeabi_f2d> - 8006124: a31e add r3, pc, #120 ; (adr r3, 80061a0 ) - 8006126: e9d3 2300 ldrd r2, r3, [r3] - 800612a: f7fa fa41 bl 80005b0 <__aeabi_dmul> - 800612e: 4602 mov r2, r0 - 8006130: 460b mov r3, r1 - 8006132: 4614 mov r4, r2 - 8006134: 461d mov r5, r3 - 8006136: 68f8 ldr r0, [r7, #12] - 8006138: f7fa f9e2 bl 8000500 <__aeabi_f2d> - 800613c: 4602 mov r2, r0 - 800613e: 460b mov r3, r1 - 8006140: 4620 mov r0, r4 - 8006142: 4629 mov r1, r5 - 8006144: f7fa fa34 bl 80005b0 <__aeabi_dmul> - 8006148: 4602 mov r2, r0 - 800614a: 460b mov r3, r1 - 800614c: 4614 mov r4, r2 - 800614e: 461d mov r5, r3 - 8006150: 68f8 ldr r0, [r7, #12] - 8006152: f7fa f9d5 bl 8000500 <__aeabi_f2d> - 8006156: a314 add r3, pc, #80 ; (adr r3, 80061a8 ) - 8006158: e9d3 2300 ldrd r2, r3, [r3] - 800615c: f7fa fa28 bl 80005b0 <__aeabi_dmul> - 8006160: 4602 mov r2, r0 - 8006162: 460b mov r3, r1 - 8006164: 4620 mov r0, r4 - 8006166: 4629 mov r1, r5 - 8006168: f7fa f86c bl 8000244 <__adddf3> - 800616c: 4602 mov r2, r0 - 800616e: 460b mov r3, r1 - 8006170: 4610 mov r0, r2 - 8006172: 4619 mov r1, r3 - 8006174: a30e add r3, pc, #56 ; (adr r3, 80061b0 ) - 8006176: e9d3 2300 ldrd r2, r3, [r3] - 800617a: f7fa f863 bl 8000244 <__adddf3> - 800617e: 4602 mov r2, r0 - 8006180: 460b mov r3, r1 - 8006182: 4610 mov r0, r2 - 8006184: 4619 mov r1, r3 - 8006186: f7fa fceb bl 8000b60 <__aeabi_d2f> - 800618a: 4603 mov r3, r0 - 800618c: 60bb str r3, [r7, #8] + 8006836: 68f8 ldr r0, [r7, #12] + 8006838: f7f9 fe62 bl 8000500 <__aeabi_f2d> + 800683c: a31e add r3, pc, #120 ; (adr r3, 80068b8 ) + 800683e: e9d3 2300 ldrd r2, r3, [r3] + 8006842: f7f9 feb5 bl 80005b0 <__aeabi_dmul> + 8006846: 4602 mov r2, r0 + 8006848: 460b mov r3, r1 + 800684a: 4614 mov r4, r2 + 800684c: 461d mov r5, r3 + 800684e: 68f8 ldr r0, [r7, #12] + 8006850: f7f9 fe56 bl 8000500 <__aeabi_f2d> + 8006854: 4602 mov r2, r0 + 8006856: 460b mov r3, r1 + 8006858: 4620 mov r0, r4 + 800685a: 4629 mov r1, r5 + 800685c: f7f9 fea8 bl 80005b0 <__aeabi_dmul> + 8006860: 4602 mov r2, r0 + 8006862: 460b mov r3, r1 + 8006864: 4614 mov r4, r2 + 8006866: 461d mov r5, r3 + 8006868: 68f8 ldr r0, [r7, #12] + 800686a: f7f9 fe49 bl 8000500 <__aeabi_f2d> + 800686e: a314 add r3, pc, #80 ; (adr r3, 80068c0 ) + 8006870: e9d3 2300 ldrd r2, r3, [r3] + 8006874: f7f9 fe9c bl 80005b0 <__aeabi_dmul> + 8006878: 4602 mov r2, r0 + 800687a: 460b mov r3, r1 + 800687c: 4620 mov r0, r4 + 800687e: 4629 mov r1, r5 + 8006880: f7f9 fce0 bl 8000244 <__adddf3> + 8006884: 4602 mov r2, r0 + 8006886: 460b mov r3, r1 + 8006888: 4610 mov r0, r2 + 800688a: 4619 mov r1, r3 + 800688c: a30e add r3, pc, #56 ; (adr r3, 80068c8 ) + 800688e: e9d3 2300 ldrd r2, r3, [r3] + 8006892: f7f9 fcd7 bl 8000244 <__adddf3> + 8006896: 4602 mov r2, r0 + 8006898: 460b mov r3, r1 + 800689a: 4610 mov r0, r2 + 800689c: 4619 mov r1, r3 + 800689e: f7fa f95f bl 8000b60 <__aeabi_d2f> + 80068a2: 4603 mov r3, r0 + 80068a4: 60bb str r3, [r7, #8] g_blooddata.SpO2 = sp02_num; - 800618e: 4a0e ldr r2, [pc, #56] ; (80061c8 ) - 8006190: 68bb ldr r3, [r7, #8] - 8006192: 6053 str r3, [r2, #4] + 80068a6: 4a0e ldr r2, [pc, #56] ; (80068e0 ) + 80068a8: 68bb ldr r3, [r7, #8] + 80068aa: 6053 str r3, [r2, #4] } - 8006194: bf00 nop - 8006196: 3730 adds r7, #48 ; 0x30 - 8006198: 46bd mov sp, r7 - 800619a: bdb0 pop {r4, r5, r7, pc} - 800619c: f3af 8000 nop.w - 80061a0: 147ae148 .word 0x147ae148 - 80061a4: c04687ae .word 0xc04687ae - 80061a8: be76c8b4 .word 0xbe76c8b4 - 80061ac: 403e5a9f .word 0x403e5a9f - 80061b0: 7ae147ae .word 0x7ae147ae - 80061b4: 4057b614 .word 0x4057b614 - 80061b8: 20000348 .word 0x20000348 - 80061bc: 200013c8 .word 0x200013c8 - 80061c0: 40590000 .word 0x40590000 - 80061c4: 404e0000 .word 0x404e0000 - 80061c8: 20000208 .word 0x20000208 + 80068ac: bf00 nop + 80068ae: 3730 adds r7, #48 ; 0x30 + 80068b0: 46bd mov sp, r7 + 80068b2: bdb0 pop {r4, r5, r7, pc} + 80068b4: f3af 8000 nop.w + 80068b8: 147ae148 .word 0x147ae148 + 80068bc: c04687ae .word 0xc04687ae + 80068c0: be76c8b4 .word 0xbe76c8b4 + 80068c4: 403e5a9f .word 0x403e5a9f + 80068c8: 7ae147ae .word 0x7ae147ae + 80068cc: 4057b614 .word 0x4057b614 + 80068d0: 20000390 .word 0x20000390 + 80068d4: 20001410 .word 0x20001410 + 80068d8: 40590000 .word 0x40590000 + 80068dc: 404e0000 .word 0x404e0000 + 80068e0: 20000204 .word 0x20000204 -080061cc : +080068e4 : + +char get_data_lock=0;; +char get_data_flag=0; +uint16_t g_fft_index = 0; //fft输入输出下标 void APP_blood_loop() { - 80061cc: b590 push {r4, r7, lr} - 80061ce: b083 sub sp, #12 - 80061d0: af02 add r7, sp, #8 + 80068e4: b580 push {r7, lr} + 80068e6: b082 sub sp, #8 + 80068e8: af02 add r7, sp, #8 - //标志位被使能时 读取FIFO - g_fft_index=0; - 80061d2: 4b68 ldr r3, [pc, #416] ; (8006374 ) - 80061d4: 2200 movs r2, #0 - 80061d6: 801a strh r2, [r3, #0] - - while(g_fft_index < FFT_N) - 80061d8: e03c b.n 8006254 + if(get_data_lock==0) + 80068ea: 4b50 ldr r3, [pc, #320] ; (8006a2c ) + 80068ec: 781b ldrb r3, [r3, #0] + 80068ee: 2b00 cmp r3, #0 + 80068f0: d10b bne.n 800690a { - while(MAX30102_INTPin_Read()==0) - { - //读取FIFO - max30102_read_fifo(); //read from MAX30102 FIFO2 - 80061da: f7ff f901 bl 80053e0 - //将数据写入fft输入并清除输出 - if(g_fft_index < FFT_N) - 80061de: 4b65 ldr r3, [pc, #404] ; (8006374 ) - 80061e0: 881b ldrh r3, [r3, #0] - 80061e2: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 80061e6: d22d bcs.n 8006244 - { - //将数据写入fft输入并清除输出 - s1[g_fft_index].real = fifo_red; - 80061e8: 4b63 ldr r3, [pc, #396] ; (8006378 ) - 80061ea: 881b ldrh r3, [r3, #0] - 80061ec: 4a61 ldr r2, [pc, #388] ; (8006374 ) - 80061ee: 8812 ldrh r2, [r2, #0] - 80061f0: 4614 mov r4, r2 - 80061f2: 4618 mov r0, r3 - 80061f4: f7fa fdba bl 8000d6c <__aeabi_ui2f> - 80061f8: 4603 mov r3, r0 - 80061fa: 4a60 ldr r2, [pc, #384] ; (800637c ) - 80061fc: f842 3034 str.w r3, [r2, r4, lsl #3] - s1[g_fft_index].imag= 0; - 8006200: 4b5c ldr r3, [pc, #368] ; (8006374 ) - 8006202: 881b ldrh r3, [r3, #0] - 8006204: 4a5d ldr r2, [pc, #372] ; (800637c ) - 8006206: 00db lsls r3, r3, #3 - 8006208: 4413 add r3, r2 - 800620a: f04f 0200 mov.w r2, #0 - 800620e: 605a str r2, [r3, #4] - s2[g_fft_index].real = fifo_ir; - 8006210: 4b5b ldr r3, [pc, #364] ; (8006380 ) - 8006212: 881b ldrh r3, [r3, #0] - 8006214: 4a57 ldr r2, [pc, #348] ; (8006374 ) - 8006216: 8812 ldrh r2, [r2, #0] - 8006218: 4614 mov r4, r2 - 800621a: 4618 mov r0, r3 - 800621c: f7fa fda6 bl 8000d6c <__aeabi_ui2f> - 8006220: 4603 mov r3, r0 - 8006222: 4a58 ldr r2, [pc, #352] ; (8006384 ) - 8006224: f842 3034 str.w r3, [r2, r4, lsl #3] - s2[g_fft_index].imag= 0; - 8006228: 4b52 ldr r3, [pc, #328] ; (8006374 ) - 800622a: 881b ldrh r3, [r3, #0] - 800622c: 4a55 ldr r2, [pc, #340] ; (8006384 ) - 800622e: 00db lsls r3, r3, #3 - 8006230: 4413 add r3, r2 - 8006232: f04f 0200 mov.w r2, #0 - 8006236: 605a str r2, [r3, #4] - g_fft_index++; - 8006238: 4b4e ldr r3, [pc, #312] ; (8006374 ) - 800623a: 881b ldrh r3, [r3, #0] - 800623c: 3301 adds r3, #1 - 800623e: b29a uxth r2, r3 - 8006240: 4b4c ldr r3, [pc, #304] ; (8006374 ) - 8006242: 801a strh r2, [r3, #0] - while(MAX30102_INTPin_Read()==0) - 8006244: f44f 5100 mov.w r1, #8192 ; 0x2000 - 8006248: 484f ldr r0, [pc, #316] ; (8006388 ) - 800624a: f7fb fe79 bl 8001f40 - 800624e: 4603 mov r3, r0 - 8006250: 2b00 cmp r3, #0 - 8006252: d0c2 beq.n 80061da - while(g_fft_index < FFT_N) - 8006254: 4b47 ldr r3, [pc, #284] ; (8006374 ) - 8006256: 881b ldrh r3, [r3, #0] - 8006258: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 800625c: d3f2 bcc.n 8006244 - s2[a].real = fifo_ir; - s2[a].imag= 0; + get_data_lock=1; + 80068f2: 4b4e ldr r3, [pc, #312] ; (8006a2c ) + 80068f4: 2201 movs r2, #1 + 80068f6: 701a strb r2, [r3, #0] + get_data_flag=0; + 80068f8: 4b4d ldr r3, [pc, #308] ; (8006a30 ) + 80068fa: 2200 movs r2, #0 + 80068fc: 701a strb r2, [r3, #0] + g_fft_index = 0; + 80068fe: 4b4d ldr r3, [pc, #308] ; (8006a34 ) + 8006900: 2200 movs r2, #0 + 8006902: 801a strh r2, [r3, #0] + HAL_TIM_Base_Start_IT(&htim6); + 8006904: 484c ldr r0, [pc, #304] ; (8006a38 ) + 8006906: f7fd f87f bl 8003a08 + } + if(get_data_flag==1) + 800690a: 4b49 ldr r3, [pc, #292] ; (8006a30 ) + 800690c: 781b ldrb r3, [r3, #0] + 800690e: 2b01 cmp r3, #1 + 8006910: d104 bne.n 800691c + { + blood_data_translate(); + 8006912: f7ff fd4d bl 80063b0 + get_data_lock=0; + 8006916: 4b45 ldr r3, [pc, #276] ; (8006a2c ) + 8006918: 2200 movs r2, #0 + 800691a: 701a strb r2, [r3, #0] } */ //max30102_read_fifo(); - blood_data_translate(); - 800625e: f7ff fd17 bl 8005c90 + //blood_data_translate(); sprintf(blood_str,"fifo_red:%d",fifo_red); - 8006262: 4b45 ldr r3, [pc, #276] ; (8006378 ) - 8006264: 881b ldrh r3, [r3, #0] - 8006266: 461a mov r2, r3 - 8006268: 4948 ldr r1, [pc, #288] ; (800638c ) - 800626a: 4849 ldr r0, [pc, #292] ; (8006390 ) - 800626c: f001 f926 bl 80074bc + 800691c: 4b47 ldr r3, [pc, #284] ; (8006a3c ) + 800691e: 881b ldrh r3, [r3, #0] + 8006920: 461a mov r2, r3 + 8006922: 4947 ldr r1, [pc, #284] ; (8006a40 ) + 8006924: 4847 ldr r0, [pc, #284] ; (8006a44 ) + 8006926: f001 f97d bl 8007c24 LCD_ShowString(blood_win->x, blood_win->y+16, &blood_str, 16, WHITE, RED); - 8006270: 4b48 ldr r3, [pc, #288] ; (8006394 ) - 8006272: 681b ldr r3, [r3, #0] - 8006274: 8818 ldrh r0, [r3, #0] - 8006276: 4b47 ldr r3, [pc, #284] ; (8006394 ) - 8006278: 681b ldr r3, [r3, #0] - 800627a: 885b ldrh r3, [r3, #2] - 800627c: 3310 adds r3, #16 - 800627e: b299 uxth r1, r3 - 8006280: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006284: 9301 str r3, [sp, #4] - 8006286: f64f 73ff movw r3, #65535 ; 0xffff - 800628a: 9300 str r3, [sp, #0] - 800628c: 2310 movs r3, #16 - 800628e: 4a40 ldr r2, [pc, #256] ; (8006390 ) - 8006290: f7fe f9d0 bl 8004634 + 800692a: 4b47 ldr r3, [pc, #284] ; (8006a48 ) + 800692c: 681b ldr r3, [r3, #0] + 800692e: 8818 ldrh r0, [r3, #0] + 8006930: 4b45 ldr r3, [pc, #276] ; (8006a48 ) + 8006932: 681b ldr r3, [r3, #0] + 8006934: 885b ldrh r3, [r3, #2] + 8006936: 3310 adds r3, #16 + 8006938: b299 uxth r1, r3 + 800693a: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800693e: 9301 str r3, [sp, #4] + 8006940: f64f 73ff movw r3, #65535 ; 0xffff + 8006944: 9300 str r3, [sp, #0] + 8006946: 2310 movs r3, #16 + 8006948: 4a3e ldr r2, [pc, #248] ; (8006a44 ) + 800694a: f7fe fa05 bl 8004d58 sprintf(blood_str,"fifo_ir:%d",fifo_ir); - 8006294: 4b3a ldr r3, [pc, #232] ; (8006380 ) - 8006296: 881b ldrh r3, [r3, #0] - 8006298: 461a mov r2, r3 - 800629a: 493f ldr r1, [pc, #252] ; (8006398 ) - 800629c: 483c ldr r0, [pc, #240] ; (8006390 ) - 800629e: f001 f90d bl 80074bc + 800694e: 4b3f ldr r3, [pc, #252] ; (8006a4c ) + 8006950: 881b ldrh r3, [r3, #0] + 8006952: 461a mov r2, r3 + 8006954: 493e ldr r1, [pc, #248] ; (8006a50 ) + 8006956: 483b ldr r0, [pc, #236] ; (8006a44 ) + 8006958: f001 f964 bl 8007c24 LCD_ShowString(blood_win->x, blood_win->y+32, &blood_str, 16, WHITE, RED); - 80062a2: 4b3c ldr r3, [pc, #240] ; (8006394 ) - 80062a4: 681b ldr r3, [r3, #0] - 80062a6: 8818 ldrh r0, [r3, #0] - 80062a8: 4b3a ldr r3, [pc, #232] ; (8006394 ) - 80062aa: 681b ldr r3, [r3, #0] - 80062ac: 885b ldrh r3, [r3, #2] - 80062ae: 3320 adds r3, #32 - 80062b0: b299 uxth r1, r3 - 80062b2: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80062b6: 9301 str r3, [sp, #4] - 80062b8: f64f 73ff movw r3, #65535 ; 0xffff - 80062bc: 9300 str r3, [sp, #0] - 80062be: 2310 movs r3, #16 - 80062c0: 4a33 ldr r2, [pc, #204] ; (8006390 ) - 80062c2: f7fe f9b7 bl 8004634 + 800695c: 4b3a ldr r3, [pc, #232] ; (8006a48 ) + 800695e: 681b ldr r3, [r3, #0] + 8006960: 8818 ldrh r0, [r3, #0] + 8006962: 4b39 ldr r3, [pc, #228] ; (8006a48 ) + 8006964: 681b ldr r3, [r3, #0] + 8006966: 885b ldrh r3, [r3, #2] + 8006968: 3320 adds r3, #32 + 800696a: b299 uxth r1, r3 + 800696c: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006970: 9301 str r3, [sp, #4] + 8006972: f64f 73ff movw r3, #65535 ; 0xffff + 8006976: 9300 str r3, [sp, #0] + 8006978: 2310 movs r3, #16 + 800697a: 4a32 ldr r2, [pc, #200] ; (8006a44 ) + 800697c: f7fe f9ec bl 8004d58 sprintf(blood_str,"heart:%04d",g_blooddata.heart); - 80062c6: 4b35 ldr r3, [pc, #212] ; (800639c ) - 80062c8: 681b ldr r3, [r3, #0] - 80062ca: 461a mov r2, r3 - 80062cc: 4934 ldr r1, [pc, #208] ; (80063a0 ) - 80062ce: 4830 ldr r0, [pc, #192] ; (8006390 ) - 80062d0: f001 f8f4 bl 80074bc + 8006980: 4b34 ldr r3, [pc, #208] ; (8006a54 ) + 8006982: 681b ldr r3, [r3, #0] + 8006984: 461a mov r2, r3 + 8006986: 4934 ldr r1, [pc, #208] ; (8006a58 ) + 8006988: 482e ldr r0, [pc, #184] ; (8006a44 ) + 800698a: f001 f94b bl 8007c24 LCD_ShowString(blood_win->x, blood_win->y+48, &blood_str, 16, WHITE, RED); - 80062d4: 4b2f ldr r3, [pc, #188] ; (8006394 ) - 80062d6: 681b ldr r3, [r3, #0] - 80062d8: 8818 ldrh r0, [r3, #0] - 80062da: 4b2e ldr r3, [pc, #184] ; (8006394 ) - 80062dc: 681b ldr r3, [r3, #0] - 80062de: 885b ldrh r3, [r3, #2] - 80062e0: 3330 adds r3, #48 ; 0x30 - 80062e2: b299 uxth r1, r3 - 80062e4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80062e8: 9301 str r3, [sp, #4] - 80062ea: f64f 73ff movw r3, #65535 ; 0xffff - 80062ee: 9300 str r3, [sp, #0] - 80062f0: 2310 movs r3, #16 - 80062f2: 4a27 ldr r2, [pc, #156] ; (8006390 ) - 80062f4: f7fe f99e bl 8004634 + 800698e: 4b2e ldr r3, [pc, #184] ; (8006a48 ) + 8006990: 681b ldr r3, [r3, #0] + 8006992: 8818 ldrh r0, [r3, #0] + 8006994: 4b2c ldr r3, [pc, #176] ; (8006a48 ) + 8006996: 681b ldr r3, [r3, #0] + 8006998: 885b ldrh r3, [r3, #2] + 800699a: 3330 adds r3, #48 ; 0x30 + 800699c: b299 uxth r1, r3 + 800699e: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80069a2: 9301 str r3, [sp, #4] + 80069a4: f64f 73ff movw r3, #65535 ; 0xffff + 80069a8: 9300 str r3, [sp, #0] + 80069aa: 2310 movs r3, #16 + 80069ac: 4a25 ldr r2, [pc, #148] ; (8006a44 ) + 80069ae: f7fe f9d3 bl 8004d58 sprintf(blood_str,"SpO2:%2.2f ",g_blooddata.SpO2); - 80062f8: 4b28 ldr r3, [pc, #160] ; (800639c ) - 80062fa: 685b ldr r3, [r3, #4] - 80062fc: 4618 mov r0, r3 - 80062fe: f7fa f8ff bl 8000500 <__aeabi_f2d> - 8006302: 4602 mov r2, r0 - 8006304: 460b mov r3, r1 - 8006306: 4927 ldr r1, [pc, #156] ; (80063a4 ) - 8006308: 4821 ldr r0, [pc, #132] ; (8006390 ) - 800630a: f001 f8d7 bl 80074bc + 80069b2: 4b28 ldr r3, [pc, #160] ; (8006a54 ) + 80069b4: 685b ldr r3, [r3, #4] + 80069b6: 4618 mov r0, r3 + 80069b8: f7f9 fda2 bl 8000500 <__aeabi_f2d> + 80069bc: 4602 mov r2, r0 + 80069be: 460b mov r3, r1 + 80069c0: 4926 ldr r1, [pc, #152] ; (8006a5c ) + 80069c2: 4820 ldr r0, [pc, #128] ; (8006a44 ) + 80069c4: f001 f92e bl 8007c24 LCD_ShowString(blood_win->x, blood_win->y+64, &blood_str, 16, WHITE, RED); - 800630e: 4b21 ldr r3, [pc, #132] ; (8006394 ) - 8006310: 681b ldr r3, [r3, #0] - 8006312: 8818 ldrh r0, [r3, #0] - 8006314: 4b1f ldr r3, [pc, #124] ; (8006394 ) - 8006316: 681b ldr r3, [r3, #0] - 8006318: 885b ldrh r3, [r3, #2] - 800631a: 3340 adds r3, #64 ; 0x40 - 800631c: b299 uxth r1, r3 - 800631e: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006322: 9301 str r3, [sp, #4] - 8006324: f64f 73ff movw r3, #65535 ; 0xffff - 8006328: 9300 str r3, [sp, #0] - 800632a: 2310 movs r3, #16 - 800632c: 4a18 ldr r2, [pc, #96] ; (8006390 ) - 800632e: f7fe f981 bl 8004634 + 80069c8: 4b1f ldr r3, [pc, #124] ; (8006a48 ) + 80069ca: 681b ldr r3, [r3, #0] + 80069cc: 8818 ldrh r0, [r3, #0] + 80069ce: 4b1e ldr r3, [pc, #120] ; (8006a48 ) + 80069d0: 681b ldr r3, [r3, #0] + 80069d2: 885b ldrh r3, [r3, #2] + 80069d4: 3340 adds r3, #64 ; 0x40 + 80069d6: b299 uxth r1, r3 + 80069d8: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80069dc: 9301 str r3, [sp, #4] + 80069de: f64f 73ff movw r3, #65535 ; 0xffff + 80069e2: 9300 str r3, [sp, #0] + 80069e4: 2310 movs r3, #16 + 80069e6: 4a17 ldr r2, [pc, #92] ; (8006a44 ) + 80069e8: f7fe f9b6 bl 8004d58 sprintf(blood_str,"INT:%d",MAX30102_INTPin_Read()); - 8006332: f44f 5100 mov.w r1, #8192 ; 0x2000 - 8006336: 4814 ldr r0, [pc, #80] ; (8006388 ) - 8006338: f7fb fe02 bl 8001f40 - 800633c: 4603 mov r3, r0 - 800633e: 461a mov r2, r3 - 8006340: 4919 ldr r1, [pc, #100] ; (80063a8 ) - 8006342: 4813 ldr r0, [pc, #76] ; (8006390 ) - 8006344: f001 f8ba bl 80074bc + 80069ec: f44f 5100 mov.w r1, #8192 ; 0x2000 + 80069f0: 481b ldr r0, [pc, #108] ; (8006a60 ) + 80069f2: f7fb fb37 bl 8002064 + 80069f6: 4603 mov r3, r0 + 80069f8: 461a mov r2, r3 + 80069fa: 491a ldr r1, [pc, #104] ; (8006a64 ) + 80069fc: 4811 ldr r0, [pc, #68] ; (8006a44 ) + 80069fe: f001 f911 bl 8007c24 LCD_ShowString(blood_win->x, blood_win->y+80, &blood_str, 16, WHITE, RED); - 8006348: 4b12 ldr r3, [pc, #72] ; (8006394 ) - 800634a: 681b ldr r3, [r3, #0] - 800634c: 8818 ldrh r0, [r3, #0] - 800634e: 4b11 ldr r3, [pc, #68] ; (8006394 ) - 8006350: 681b ldr r3, [r3, #0] - 8006352: 885b ldrh r3, [r3, #2] - 8006354: 3350 adds r3, #80 ; 0x50 - 8006356: b299 uxth r1, r3 - 8006358: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800635c: 9301 str r3, [sp, #4] - 800635e: f64f 73ff movw r3, #65535 ; 0xffff - 8006362: 9300 str r3, [sp, #0] - 8006364: 2310 movs r3, #16 - 8006366: 4a0a ldr r2, [pc, #40] ; (8006390 ) - 8006368: f7fe f964 bl 8004634 + 8006a02: 4b11 ldr r3, [pc, #68] ; (8006a48 ) + 8006a04: 681b ldr r3, [r3, #0] + 8006a06: 8818 ldrh r0, [r3, #0] + 8006a08: 4b0f ldr r3, [pc, #60] ; (8006a48 ) + 8006a0a: 681b ldr r3, [r3, #0] + 8006a0c: 885b ldrh r3, [r3, #2] + 8006a0e: 3350 adds r3, #80 ; 0x50 + 8006a10: b299 uxth r1, r3 + 8006a12: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006a16: 9301 str r3, [sp, #4] + 8006a18: f64f 73ff movw r3, #65535 ; 0xffff + 8006a1c: 9300 str r3, [sp, #0] + 8006a1e: 2310 movs r3, #16 + 8006a20: 4a08 ldr r2, [pc, #32] ; (8006a44 ) + 8006a22: f7fe f999 bl 8004d58 } - 800636c: bf00 nop - 800636e: 3704 adds r7, #4 - 8006370: 46bd mov sp, r7 - 8006372: bd90 pop {r4, r7, pc} - 8006374: 20000204 .word 0x20000204 - 8006378: 20002450 .word 0x20002450 - 800637c: 20000348 .word 0x20000348 - 8006380: 20000340 .word 0x20000340 - 8006384: 200013c8 .word 0x200013c8 - 8006388: 40010c00 .word 0x40010c00 - 800638c: 08009978 .word 0x08009978 - 8006390: 20000300 .word 0x20000300 - 8006394: 20000344 .word 0x20000344 - 8006398: 08009984 .word 0x08009984 - 800639c: 20000208 .word 0x20000208 - 80063a0: 08009990 .word 0x08009990 - 80063a4: 0800999c .word 0x0800999c - 80063a8: 080099ac .word 0x080099ac + 8006a26: bf00 nop + 8006a28: 46bd mov sp, r7 + 8006a2a: bd80 pop {r7, pc} + 8006a2c: 2000020c .word 0x2000020c + 8006a30: 2000020d .word 0x2000020d + 8006a34: 2000020e .word 0x2000020e + 8006a38: 200002b4 .word 0x200002b4 + 8006a3c: 20002498 .word 0x20002498 + 8006a40: 0800a0e0 .word 0x0800a0e0 + 8006a44: 20000348 .word 0x20000348 + 8006a48: 2000038c .word 0x2000038c + 8006a4c: 20000388 .word 0x20000388 + 8006a50: 0800a0ec .word 0x0800a0ec + 8006a54: 20000204 .word 0x20000204 + 8006a58: 0800a0f8 .word 0x0800a0f8 + 8006a5c: 0800a104 .word 0x0800a104 + 8006a60: 40010c00 .word 0x40010c00 + 8006a64: 0800a114 .word 0x0800a114 -080063ac : +08006a68 : + +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)//10us +{ + 8006a68: b590 push {r4, r7, lr} + 8006a6a: b083 sub sp, #12 + 8006a6c: af00 add r7, sp, #0 + 8006a6e: 6078 str r0, [r7, #4] + if (htim == (&htim6)) + 8006a70: 687b ldr r3, [r7, #4] + 8006a72: 4a21 ldr r2, [pc, #132] ; (8006af8 ) + 8006a74: 4293 cmp r3, r2 + 8006a76: d13a bne.n 8006aee + { + max30102_read_fifo(); //read from MAX30102 FIFO2 + 8006a78: f7ff f844 bl 8005b04 + //将数据写入fft输入并清除输出 + s1[g_fft_index].real = fifo_red; + 8006a7c: 4b1f ldr r3, [pc, #124] ; (8006afc ) + 8006a7e: 881b ldrh r3, [r3, #0] + 8006a80: 4a1f ldr r2, [pc, #124] ; (8006b00 ) + 8006a82: 8812 ldrh r2, [r2, #0] + 8006a84: 4614 mov r4, r2 + 8006a86: 4618 mov r0, r3 + 8006a88: f7fa f970 bl 8000d6c <__aeabi_ui2f> + 8006a8c: 4603 mov r3, r0 + 8006a8e: 4a1d ldr r2, [pc, #116] ; (8006b04 ) + 8006a90: f842 3034 str.w r3, [r2, r4, lsl #3] + s1[g_fft_index].imag= 0; + 8006a94: 4b1a ldr r3, [pc, #104] ; (8006b00 ) + 8006a96: 881b ldrh r3, [r3, #0] + 8006a98: 4a1a ldr r2, [pc, #104] ; (8006b04 ) + 8006a9a: 00db lsls r3, r3, #3 + 8006a9c: 4413 add r3, r2 + 8006a9e: f04f 0200 mov.w r2, #0 + 8006aa2: 605a str r2, [r3, #4] + s2[g_fft_index].real = fifo_ir; + 8006aa4: 4b18 ldr r3, [pc, #96] ; (8006b08 ) + 8006aa6: 881b ldrh r3, [r3, #0] + 8006aa8: 4a15 ldr r2, [pc, #84] ; (8006b00 ) + 8006aaa: 8812 ldrh r2, [r2, #0] + 8006aac: 4614 mov r4, r2 + 8006aae: 4618 mov r0, r3 + 8006ab0: f7fa f95c bl 8000d6c <__aeabi_ui2f> + 8006ab4: 4603 mov r3, r0 + 8006ab6: 4a15 ldr r2, [pc, #84] ; (8006b0c ) + 8006ab8: f842 3034 str.w r3, [r2, r4, lsl #3] + s2[g_fft_index].imag= 0; + 8006abc: 4b10 ldr r3, [pc, #64] ; (8006b00 ) + 8006abe: 881b ldrh r3, [r3, #0] + 8006ac0: 4a12 ldr r2, [pc, #72] ; (8006b0c ) + 8006ac2: 00db lsls r3, r3, #3 + 8006ac4: 4413 add r3, r2 + 8006ac6: f04f 0200 mov.w r2, #0 + 8006aca: 605a str r2, [r3, #4] + g_fft_index++; + 8006acc: 4b0c ldr r3, [pc, #48] ; (8006b00 ) + 8006ace: 881b ldrh r3, [r3, #0] + 8006ad0: 3301 adds r3, #1 + 8006ad2: b29a uxth r2, r3 + 8006ad4: 4b0a ldr r3, [pc, #40] ; (8006b00 ) + 8006ad6: 801a strh r2, [r3, #0] + if(g_fft_index>FFT_N) + 8006ad8: 4b09 ldr r3, [pc, #36] ; (8006b00 ) + 8006ada: 881b ldrh r3, [r3, #0] + 8006adc: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8006ae0: d905 bls.n 8006aee + { + get_data_flag=1; + 8006ae2: 4b0b ldr r3, [pc, #44] ; (8006b10 ) + 8006ae4: 2201 movs r2, #1 + 8006ae6: 701a strb r2, [r3, #0] + HAL_TIM_Base_Stop_IT(&htim6); + 8006ae8: 4803 ldr r0, [pc, #12] ; (8006af8 ) + 8006aea: f7fc ffed bl 8003ac8 + } + + } +} + 8006aee: bf00 nop + 8006af0: 370c adds r7, #12 + 8006af2: 46bd mov sp, r7 + 8006af4: bd90 pop {r4, r7, pc} + 8006af6: bf00 nop + 8006af8: 200002b4 .word 0x200002b4 + 8006afc: 20002498 .word 0x20002498 + 8006b00: 2000020e .word 0x2000020e + 8006b04: 20000390 .word 0x20000390 + 8006b08: 20000388 .word 0x20000388 + 8006b0c: 20001410 .word 0x20001410 + 8006b10: 2000020d .word 0x2000020d + +08006b14 : extern touch_device t0; task run_loop;//主循环状态机 void main_app() { - 80063ac: b580 push {r7, lr} - 80063ae: b096 sub sp, #88 ; 0x58 - 80063b0: af04 add r7, sp, #16 + 8006b14: b580 push {r7, lr} + 8006b16: b096 sub sp, #88 ; 0x58 + 8006b18: af04 add r7, sp, #16 char str[64]; LCDx_Init(); - 80063b2: f7fd fd9b bl 8003eec + 8006b1a: f7fd fd79 bl 8004610 EPPROM_SLOWWRITE_INIT(); - 80063b6: f7fe f97b bl 80046b0 + 8006b1e: f7fe f959 bl 8004dd4 TP_adjustment(); - 80063ba: f7fe fcdf bl 8004d7c + 8006b22: f7fe fcbd bl 80054a0 UI *ui=UI_Init(BLACK); - 80063be: 2000 movs r0, #0 - 80063c0: f000 f850 bl 8006464 - 80063c4: 6478 str r0, [r7, #68] ; 0x44 + 8006b26: 2000 movs r0, #0 + 8006b28: f000 f850 bl 8006bcc + 8006b2c: 6478 str r0, [r7, #68] ; 0x44 APP_blood_init(New_Window(ui,10,10,128,128,WHITE,"MAX30102")); - 80063c6: 4b11 ldr r3, [pc, #68] ; (800640c ) - 80063c8: 9302 str r3, [sp, #8] - 80063ca: f64f 73ff movw r3, #65535 ; 0xffff - 80063ce: 9301 str r3, [sp, #4] - 80063d0: 2380 movs r3, #128 ; 0x80 - 80063d2: 9300 str r3, [sp, #0] - 80063d4: 2380 movs r3, #128 ; 0x80 - 80063d6: 220a movs r2, #10 - 80063d8: 210a movs r1, #10 - 80063da: 6c78 ldr r0, [r7, #68] ; 0x44 - 80063dc: f000 f875 bl 80064ca - 80063e0: 4603 mov r3, r0 - 80063e2: 4618 mov r0, r3 - 80063e4: f7ff f87c bl 80054e0 + 8006b2e: 4b11 ldr r3, [pc, #68] ; (8006b74 ) + 8006b30: 9302 str r3, [sp, #8] + 8006b32: f64f 73ff movw r3, #65535 ; 0xffff + 8006b36: 9301 str r3, [sp, #4] + 8006b38: 2380 movs r3, #128 ; 0x80 + 8006b3a: 9300 str r3, [sp, #0] + 8006b3c: 2380 movs r3, #128 ; 0x80 + 8006b3e: 220a movs r2, #10 + 8006b40: 210a movs r1, #10 + 8006b42: 6c78 ldr r0, [r7, #68] ; 0x44 + 8006b44: f000 f875 bl 8006c32 + 8006b48: 4603 mov r3, r0 + 8006b4a: 4618 mov r0, r3 + 8006b4c: f7ff f85a bl 8005c04 //New_Window(ui,25,30,150,100,GREEN,"GREEN"); //New_Window(ui,80,80,60,90,YELLOW,"YELLOW"); //New_Window(ui,120,90,70,60,MAGENTA,"MAGENTA"); ui->refresh_ui_flag=1; - 80063e8: 6c7a ldr r2, [r7, #68] ; 0x44 - 80063ea: f892 3020 ldrb.w r3, [r2, #32] - 80063ee: f043 0304 orr.w r3, r3, #4 - 80063f2: f882 3020 strb.w r3, [r2, #32] + 8006b50: 6c7a ldr r2, [r7, #68] ; 0x44 + 8006b52: f892 3020 ldrb.w r3, [r2, #32] + 8006b56: f043 0304 orr.w r3, r3, #4 + 8006b5a: f882 3020 strb.w r3, [r2, #32] } */ APP_blood_loop(); - 80063f6: f7ff fee9 bl 80061cc + 8006b5e: f7ff fec1 bl 80068e4 UI_Server(ui); - 80063fa: 6c78 ldr r0, [r7, #68] ; 0x44 - 80063fc: f000 fa0c bl 8006818 + 8006b62: 6c78 ldr r0, [r7, #68] ; 0x44 + 8006b64: f000 fa0c bl 8006f80 TP_Server(); - 8006400: f7fe fbe8 bl 8004bd4 + 8006b68: f7fe fbc6 bl 80052f8 EEPROM_SLOWWRITE_SERVER(); - 8006404: f7fe f96e bl 80046e4 + 8006b6c: f7fe f94c bl 8004e08 { - 8006408: e7f5 b.n 80063f6 - 800640a: bf00 nop - 800640c: 080099b4 .word 0x080099b4 + 8006b70: e7f5 b.n 8006b5e + 8006b72: bf00 nop + 8006b74: 0800a11c .word 0x0800a11c -08006410 : +08006b78 : #include "touch.h" extern touch_device t0; //接口 //设置屏幕像素坐标 void Inteface_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 8006410: b580 push {r7, lr} - 8006412: b082 sub sp, #8 - 8006414: af00 add r7, sp, #0 - 8006416: 4603 mov r3, r0 - 8006418: 460a mov r2, r1 - 800641a: 80fb strh r3, [r7, #6] - 800641c: 4613 mov r3, r2 - 800641e: 80bb strh r3, [r7, #4] + 8006b78: b580 push {r7, lr} + 8006b7a: b082 sub sp, #8 + 8006b7c: af00 add r7, sp, #0 + 8006b7e: 4603 mov r3, r0 + 8006b80: 460a mov r2, r1 + 8006b82: 80fb strh r3, [r7, #6] + 8006b84: 4613 mov r3, r2 + 8006b86: 80bb strh r3, [r7, #4] LCD_SetCursor(Xpos,Ypos); //设置光标位置 - 8006420: 88ba ldrh r2, [r7, #4] - 8006422: 88fb ldrh r3, [r7, #6] - 8006424: 4611 mov r1, r2 - 8006426: 4618 mov r0, r3 - 8006428: f7fd fe56 bl 80040d8 + 8006b88: 88ba ldrh r2, [r7, #4] + 8006b8a: 88fb ldrh r3, [r7, #6] + 8006b8c: 4611 mov r1, r2 + 8006b8e: 4618 mov r0, r3 + 8006b90: f7fd fe34 bl 80047fc LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 800642c: 4b04 ldr r3, [pc, #16] ; (8006440 ) - 800642e: 79da ldrb r2, [r3, #7] - 8006430: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 8006434: b292 uxth r2, r2 - 8006436: 801a strh r2, [r3, #0] + 8006b94: 4b04 ldr r3, [pc, #16] ; (8006ba8 ) + 8006b96: 79da ldrb r2, [r3, #7] + 8006b98: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 8006b9c: b292 uxth r2, r2 + 8006b9e: 801a strh r2, [r3, #0] } - 8006438: bf00 nop - 800643a: 3708 adds r7, #8 - 800643c: 46bd mov sp, r7 - 800643e: bd80 pop {r7, pc} - 8006440: 200002b8 .word 0x200002b8 + 8006ba0: bf00 nop + 8006ba2: 3708 adds r7, #8 + 8006ba4: 46bd mov sp, r7 + 8006ba6: bd80 pop {r7, pc} + 8006ba8: 20000300 .word 0x20000300 -08006444 : +08006bac : //往像素坐标写入一个颜色 void Inteface_SetColor(uint16_t color) { - 8006444: b480 push {r7} - 8006446: b083 sub sp, #12 - 8006448: af00 add r7, sp, #0 - 800644a: 4603 mov r3, r0 - 800644c: 80fb strh r3, [r7, #6] + 8006bac: b480 push {r7} + 8006bae: b083 sub sp, #12 + 8006bb0: af00 add r7, sp, #0 + 8006bb2: 4603 mov r3, r0 + 8006bb4: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=color; - 800644e: 4a04 ldr r2, [pc, #16] ; (8006460 ) - 8006450: 88fb ldrh r3, [r7, #6] - 8006452: 8013 strh r3, [r2, #0] + 8006bb6: 4a04 ldr r2, [pc, #16] ; (8006bc8 ) + 8006bb8: 88fb ldrh r3, [r7, #6] + 8006bba: 8013 strh r3, [r2, #0] } - 8006454: bf00 nop - 8006456: 370c adds r7, #12 - 8006458: 46bd mov sp, r7 - 800645a: bc80 pop {r7} - 800645c: 4770 bx lr - 800645e: bf00 nop - 8006460: 6c000800 .word 0x6c000800 + 8006bbc: bf00 nop + 8006bbe: 370c adds r7, #12 + 8006bc0: 46bd mov sp, r7 + 8006bc2: bc80 pop {r7} + 8006bc4: 4770 bx lr + 8006bc6: bf00 nop + 8006bc8: 6c000800 .word 0x6c000800 -08006464 : +08006bcc : //新建一个UI对象 //当时都想法是类似windows的多桌面,每个桌面都能有n个窗口 UI *UI_Init(COLOR_16 background) { - 8006464: b580 push {r7, lr} - 8006466: b084 sub sp, #16 - 8006468: af00 add r7, sp, #0 - 800646a: 6078 str r0, [r7, #4] + 8006bcc: b580 push {r7, lr} + 8006bce: b084 sub sp, #16 + 8006bd0: af00 add r7, sp, #0 + 8006bd2: 6078 str r0, [r7, #4] UI *ui; ui = (UI*)malloc(sizeof(UI)); - 800646c: 2024 movs r0, #36 ; 0x24 - 800646e: f000 faf7 bl 8006a60 - 8006472: 4603 mov r3, r0 - 8006474: 60fb str r3, [r7, #12] + 8006bd4: 2024 movs r0, #36 ; 0x24 + 8006bd6: f000 faf7 bl 80071c8 + 8006bda: 4603 mov r3, r0 + 8006bdc: 60fb str r3, [r7, #12] if(ui!=NULL) - 8006476: 68fb ldr r3, [r7, #12] - 8006478: 2b00 cmp r3, #0 - 800647a: d021 beq.n 80064c0 + 8006bde: 68fb ldr r3, [r7, #12] + 8006be0: 2b00 cmp r3, #0 + 8006be2: d021 beq.n 8006c28 { ui->x=0; - 800647c: 68fb ldr r3, [r7, #12] - 800647e: 2200 movs r2, #0 - 8006480: 809a strh r2, [r3, #4] + 8006be4: 68fb ldr r3, [r7, #12] + 8006be6: 2200 movs r2, #0 + 8006be8: 809a strh r2, [r3, #4] ui->y=0; - 8006482: 68fb ldr r3, [r7, #12] - 8006484: 2200 movs r2, #0 - 8006486: 80da strh r2, [r3, #6] + 8006bea: 68fb ldr r3, [r7, #12] + 8006bec: 2200 movs r2, #0 + 8006bee: 80da strh r2, [r3, #6] ui->high=240; - 8006488: 68fb ldr r3, [r7, #12] - 800648a: 22f0 movs r2, #240 ; 0xf0 - 800648c: 815a strh r2, [r3, #10] + 8006bf0: 68fb ldr r3, [r7, #12] + 8006bf2: 22f0 movs r2, #240 ; 0xf0 + 8006bf4: 815a strh r2, [r3, #10] ui->width=320; - 800648e: 68fb ldr r3, [r7, #12] - 8006490: f44f 72a0 mov.w r2, #320 ; 0x140 - 8006494: 811a strh r2, [r3, #8] + 8006bf6: 68fb ldr r3, [r7, #12] + 8006bf8: f44f 72a0 mov.w r2, #320 ; 0x140 + 8006bfc: 811a strh r2, [r3, #8] ui->background=background; - 8006496: 68fb ldr r3, [r7, #12] - 8006498: 687a ldr r2, [r7, #4] - 800649a: 601a str r2, [r3, #0] + 8006bfe: 68fb ldr r3, [r7, #12] + 8006c00: 687a ldr r2, [r7, #4] + 8006c02: 601a str r2, [r3, #0] ui->windows=NULL; - 800649c: 68fb ldr r3, [r7, #12] - 800649e: 2200 movs r2, #0 - 80064a0: 60da str r2, [r3, #12] + 8006c04: 68fb ldr r3, [r7, #12] + 8006c06: 2200 movs r2, #0 + 8006c08: 60da str r2, [r3, #12] ui->last_windows=NULL; - 80064a2: 68fb ldr r3, [r7, #12] - 80064a4: 2200 movs r2, #0 - 80064a6: 611a str r2, [r3, #16] + 8006c0a: 68fb ldr r3, [r7, #12] + 8006c0c: 2200 movs r2, #0 + 8006c0e: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; - 80064a8: 68fa ldr r2, [r7, #12] - 80064aa: f892 3020 ldrb.w r3, [r2, #32] - 80064ae: f043 0304 orr.w r3, r3, #4 - 80064b2: f882 3020 strb.w r3, [r2, #32] + 8006c10: 68fa ldr r2, [r7, #12] + 8006c12: f892 3020 ldrb.w r3, [r2, #32] + 8006c16: f043 0304 orr.w r3, r3, #4 + 8006c1a: f882 3020 strb.w r3, [r2, #32] ui->moveed_windwos=NULL; - 80064b6: 68fb ldr r3, [r7, #12] - 80064b8: 2200 movs r2, #0 - 80064ba: 615a str r2, [r3, #20] + 8006c1e: 68fb ldr r3, [r7, #12] + 8006c20: 2200 movs r2, #0 + 8006c22: 615a str r2, [r3, #20] ui->touch->acc_y=0; } */ return ui; - 80064bc: 68fb ldr r3, [r7, #12] - 80064be: e000 b.n 80064c2 + 8006c24: 68fb ldr r3, [r7, #12] + 8006c26: e000 b.n 8006c2a } return NULL; - 80064c0: 2300 movs r3, #0 + 8006c28: 2300 movs r3, #0 } - 80064c2: 4618 mov r0, r3 - 80064c4: 3710 adds r7, #16 - 80064c6: 46bd mov sp, r7 - 80064c8: bd80 pop {r7, pc} + 8006c2a: 4618 mov r0, r3 + 8006c2c: 3710 adds r7, #16 + 8006c2e: 46bd mov sp, r7 + 8006c30: bd80 pop {r7, pc} -080064ca : +08006c32 : //新建一个窗口 //返回窗口的指针 //将窗口挂载到某个ui window *New_Window(UI *ui,uint16_t x,uint16_t y,uint16_t width,uint16_t high,COLOR_16 background,const char *title) { - 80064ca: b580 push {r7, lr} - 80064cc: b088 sub sp, #32 - 80064ce: af00 add r7, sp, #0 - 80064d0: 60f8 str r0, [r7, #12] - 80064d2: 4608 mov r0, r1 - 80064d4: 4611 mov r1, r2 - 80064d6: 461a mov r2, r3 - 80064d8: 4603 mov r3, r0 - 80064da: 817b strh r3, [r7, #10] - 80064dc: 460b mov r3, r1 - 80064de: 813b strh r3, [r7, #8] - 80064e0: 4613 mov r3, r2 - 80064e2: 80fb strh r3, [r7, #6] + 8006c32: b580 push {r7, lr} + 8006c34: b088 sub sp, #32 + 8006c36: af00 add r7, sp, #0 + 8006c38: 60f8 str r0, [r7, #12] + 8006c3a: 4608 mov r0, r1 + 8006c3c: 4611 mov r1, r2 + 8006c3e: 461a mov r2, r3 + 8006c40: 4603 mov r3, r0 + 8006c42: 817b strh r3, [r7, #10] + 8006c44: 460b mov r3, r1 + 8006c46: 813b strh r3, [r7, #8] + 8006c48: 4613 mov r3, r2 + 8006c4a: 80fb strh r3, [r7, #6] window *temp_window; temp_window = (window*)malloc(sizeof(window)); - 80064e4: 201c movs r0, #28 - 80064e6: f000 fabb bl 8006a60 - 80064ea: 4603 mov r3, r0 - 80064ec: 617b str r3, [r7, #20] + 8006c4c: 201c movs r0, #28 + 8006c4e: f000 fabb bl 80071c8 + 8006c52: 4603 mov r3, r0 + 8006c54: 617b str r3, [r7, #20] if(temp_window!=NULL) - 80064ee: 697b ldr r3, [r7, #20] - 80064f0: 2b00 cmp r3, #0 - 80064f2: d022 beq.n 800653a + 8006c56: 697b ldr r3, [r7, #20] + 8006c58: 2b00 cmp r3, #0 + 8006c5a: d022 beq.n 8006ca2 { temp_window->background=background; - 80064f4: 697b ldr r3, [r7, #20] - 80064f6: 6afa ldr r2, [r7, #44] ; 0x2c - 80064f8: 609a str r2, [r3, #8] + 8006c5c: 697b ldr r3, [r7, #20] + 8006c5e: 6afa ldr r2, [r7, #44] ; 0x2c + 8006c60: 609a str r2, [r3, #8] temp_window->high=high; - 80064fa: 697b ldr r3, [r7, #20] - 80064fc: 8d3a ldrh r2, [r7, #40] ; 0x28 - 80064fe: 80da strh r2, [r3, #6] + 8006c62: 697b ldr r3, [r7, #20] + 8006c64: 8d3a ldrh r2, [r7, #40] ; 0x28 + 8006c66: 80da strh r2, [r3, #6] temp_window->width=width; - 8006500: 697b ldr r3, [r7, #20] - 8006502: 88fa ldrh r2, [r7, #6] - 8006504: 809a strh r2, [r3, #4] + 8006c68: 697b ldr r3, [r7, #20] + 8006c6a: 88fa ldrh r2, [r7, #6] + 8006c6c: 809a strh r2, [r3, #4] temp_window->x=x; - 8006506: 697b ldr r3, [r7, #20] - 8006508: 897a ldrh r2, [r7, #10] - 800650a: 801a strh r2, [r3, #0] + 8006c6e: 697b ldr r3, [r7, #20] + 8006c70: 897a ldrh r2, [r7, #10] + 8006c72: 801a strh r2, [r3, #0] temp_window->y=y; - 800650c: 697b ldr r3, [r7, #20] - 800650e: 893a ldrh r2, [r7, #8] - 8006510: 805a strh r2, [r3, #2] + 8006c74: 697b ldr r3, [r7, #20] + 8006c76: 893a ldrh r2, [r7, #8] + 8006c78: 805a strh r2, [r3, #2] for(int a=0;a<16;a++) - 8006512: 2300 movs r3, #0 - 8006514: 61fb str r3, [r7, #28] - 8006516: e00c b.n 8006532 + 8006c7a: 2300 movs r3, #0 + 8006c7c: 61fb str r3, [r7, #28] + 8006c7e: e00c b.n 8006c9a { temp_window->title[a]=title[a]; - 8006518: 69fb ldr r3, [r7, #28] - 800651a: 6b3a ldr r2, [r7, #48] ; 0x30 - 800651c: 4413 add r3, r2 - 800651e: 7819 ldrb r1, [r3, #0] - 8006520: 697a ldr r2, [r7, #20] - 8006522: 69fb ldr r3, [r7, #28] - 8006524: 4413 add r3, r2 - 8006526: 330c adds r3, #12 - 8006528: 460a mov r2, r1 - 800652a: 701a strb r2, [r3, #0] + 8006c80: 69fb ldr r3, [r7, #28] + 8006c82: 6b3a ldr r2, [r7, #48] ; 0x30 + 8006c84: 4413 add r3, r2 + 8006c86: 7819 ldrb r1, [r3, #0] + 8006c88: 697a ldr r2, [r7, #20] + 8006c8a: 69fb ldr r3, [r7, #28] + 8006c8c: 4413 add r3, r2 + 8006c8e: 330c adds r3, #12 + 8006c90: 460a mov r2, r1 + 8006c92: 701a strb r2, [r3, #0] for(int a=0;a<16;a++) - 800652c: 69fb ldr r3, [r7, #28] - 800652e: 3301 adds r3, #1 - 8006530: 61fb str r3, [r7, #28] - 8006532: 69fb ldr r3, [r7, #28] - 8006534: 2b0f cmp r3, #15 - 8006536: ddef ble.n 8006518 - 8006538: e001 b.n 800653e + 8006c94: 69fb ldr r3, [r7, #28] + 8006c96: 3301 adds r3, #1 + 8006c98: 61fb str r3, [r7, #28] + 8006c9a: 69fb ldr r3, [r7, #28] + 8006c9c: 2b0f cmp r3, #15 + 8006c9e: ddef ble.n 8006c80 + 8006ca0: e001 b.n 8006ca6 } }else{return NULL;} - 800653a: 2300 movs r3, #0 - 800653c: e02a b.n 8006594 + 8006ca2: 2300 movs r3, #0 + 8006ca4: e02a b.n 8006cfc windows_stack *temp_windows_stack; temp_windows_stack=ui->last_windows; - 800653e: 68fb ldr r3, [r7, #12] - 8006540: 691b ldr r3, [r3, #16] - 8006542: 61bb str r3, [r7, #24] + 8006ca6: 68fb ldr r3, [r7, #12] + 8006ca8: 691b ldr r3, [r3, #16] + 8006caa: 61bb str r3, [r7, #24] if(temp_windows_stack==NULL) - 8006544: 69bb ldr r3, [r7, #24] - 8006546: 2b00 cmp r3, #0 - 8006548: d10b bne.n 8006562 + 8006cac: 69bb ldr r3, [r7, #24] + 8006cae: 2b00 cmp r3, #0 + 8006cb0: d10b bne.n 8006cca { temp_windows_stack=(windows_stack*)malloc(sizeof(windows_stack)); - 800654a: 200c movs r0, #12 - 800654c: f000 fa88 bl 8006a60 - 8006550: 4603 mov r3, r0 - 8006552: 61bb str r3, [r7, #24] + 8006cb2: 200c movs r0, #12 + 8006cb4: f000 fa88 bl 80071c8 + 8006cb8: 4603 mov r3, r0 + 8006cba: 61bb str r3, [r7, #24] temp_windows_stack->up=NULL; - 8006554: 69bb ldr r3, [r7, #24] - 8006556: 2200 movs r2, #0 - 8006558: 601a str r2, [r3, #0] + 8006cbc: 69bb ldr r3, [r7, #24] + 8006cbe: 2200 movs r2, #0 + 8006cc0: 601a str r2, [r3, #0] ui->windows=temp_windows_stack; - 800655a: 68fb ldr r3, [r7, #12] - 800655c: 69ba ldr r2, [r7, #24] - 800655e: 60da str r2, [r3, #12] - 8006560: e00e b.n 8006580 + 8006cc2: 68fb ldr r3, [r7, #12] + 8006cc4: 69ba ldr r2, [r7, #24] + 8006cc6: 60da str r2, [r3, #12] + 8006cc8: e00e b.n 8006ce8 while(temp_windows_stack->next!=NULL) { temp_windows_stack=temp_windows_stack->next; } */ windows_stack *up=temp_windows_stack;//备份当前对象指针 - 8006562: 69bb ldr r3, [r7, #24] - 8006564: 613b str r3, [r7, #16] + 8006cca: 69bb ldr r3, [r7, #24] + 8006ccc: 613b str r3, [r7, #16] temp_windows_stack->next=(windows_stack*)malloc(sizeof(windows_stack)); - 8006566: 200c movs r0, #12 - 8006568: f000 fa7a bl 8006a60 - 800656c: 4603 mov r3, r0 - 800656e: 461a mov r2, r3 - 8006570: 69bb ldr r3, [r7, #24] - 8006572: 609a str r2, [r3, #8] + 8006cce: 200c movs r0, #12 + 8006cd0: f000 fa7a bl 80071c8 + 8006cd4: 4603 mov r3, r0 + 8006cd6: 461a mov r2, r3 + 8006cd8: 69bb ldr r3, [r7, #24] + 8006cda: 609a str r2, [r3, #8] temp_windows_stack=temp_windows_stack->next; - 8006574: 69bb ldr r3, [r7, #24] - 8006576: 689b ldr r3, [r3, #8] - 8006578: 61bb str r3, [r7, #24] + 8006cdc: 69bb ldr r3, [r7, #24] + 8006cde: 689b ldr r3, [r3, #8] + 8006ce0: 61bb str r3, [r7, #24] temp_windows_stack->up=up; - 800657a: 69bb ldr r3, [r7, #24] - 800657c: 693a ldr r2, [r7, #16] - 800657e: 601a str r2, [r3, #0] + 8006ce2: 69bb ldr r3, [r7, #24] + 8006ce4: 693a ldr r2, [r7, #16] + 8006ce6: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; - 8006580: 69bb ldr r3, [r7, #24] - 8006582: 2200 movs r2, #0 - 8006584: 609a str r2, [r3, #8] + 8006ce8: 69bb ldr r3, [r7, #24] + 8006cea: 2200 movs r2, #0 + 8006cec: 609a str r2, [r3, #8] temp_windows_stack->window=temp_window; - 8006586: 69bb ldr r3, [r7, #24] - 8006588: 697a ldr r2, [r7, #20] - 800658a: 605a str r2, [r3, #4] + 8006cee: 69bb ldr r3, [r7, #24] + 8006cf0: 697a ldr r2, [r7, #20] + 8006cf2: 605a str r2, [r3, #4] ui->last_windows=temp_windows_stack; - 800658c: 68fb ldr r3, [r7, #12] - 800658e: 69ba ldr r2, [r7, #24] - 8006590: 611a str r2, [r3, #16] + 8006cf4: 68fb ldr r3, [r7, #12] + 8006cf6: 69ba ldr r2, [r7, #24] + 8006cf8: 611a str r2, [r3, #16] return temp_window; - 8006592: 697b ldr r3, [r7, #20] + 8006cfa: 697b ldr r3, [r7, #20] } - 8006594: 4618 mov r0, r3 - 8006596: 3720 adds r7, #32 - 8006598: 46bd mov sp, r7 - 800659a: bd80 pop {r7, pc} + 8006cfc: 4618 mov r0, r3 + 8006cfe: 3720 adds r7, #32 + 8006d00: 46bd mov sp, r7 + 8006d02: bd80 pop {r7, pc} -0800659c : +08006d04 : temp_window->y=temp_window->y+acc_y; } //显示一个窗口 void Refresh_Window(UI *ui,window *temp_window) { - 800659c: b580 push {r7, lr} - 800659e: b088 sub sp, #32 - 80065a0: af02 add r7, sp, #8 - 80065a2: 6078 str r0, [r7, #4] - 80065a4: 6039 str r1, [r7, #0] + 8006d04: b580 push {r7, lr} + 8006d06: b088 sub sp, #32 + 8006d08: af02 add r7, sp, #8 + 8006d0a: 6078 str r0, [r7, #4] + 8006d0c: 6039 str r1, [r7, #0] //开始绘制窗口//填充窗口背景 int x,y; char z; for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 80065a6: 2300 movs r3, #0 - 80065a8: 82bb strh r3, [r7, #20] - 80065aa: e063 b.n 8006674 + 8006d0e: 2300 movs r3, #0 + 8006d10: 82bb strh r3, [r7, #20] + 8006d12: e063 b.n 8006ddc { z=1; - 80065ac: 2301 movs r3, #1 - 80065ae: 75fb strb r3, [r7, #23] + 8006d14: 2301 movs r3, #1 + 8006d16: 75fb strb r3, [r7, #23] for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 80065b0: 2300 movs r3, #0 - 80065b2: 827b strh r3, [r7, #18] - 80065b4: e056 b.n 8006664 + 8006d18: 2300 movs r3, #0 + 8006d1a: 827b strh r3, [r7, #18] + 8006d1c: e056 b.n 8006dcc { x=temp_window->x+temp_i; - 80065b6: 683b ldr r3, [r7, #0] - 80065b8: 881b ldrh r3, [r3, #0] - 80065ba: 461a mov r2, r3 - 80065bc: 8a7b ldrh r3, [r7, #18] - 80065be: 4413 add r3, r2 - 80065c0: 60fb str r3, [r7, #12] + 8006d1e: 683b ldr r3, [r7, #0] + 8006d20: 881b ldrh r3, [r3, #0] + 8006d22: 461a mov r2, r3 + 8006d24: 8a7b ldrh r3, [r7, #18] + 8006d26: 4413 add r3, r2 + 8006d28: 60fb str r3, [r7, #12] y=temp_window->y+temp_y; - 80065c2: 683b ldr r3, [r7, #0] - 80065c4: 885b ldrh r3, [r3, #2] - 80065c6: 461a mov r2, r3 - 80065c8: 8abb ldrh r3, [r7, #20] - 80065ca: 4413 add r3, r2 - 80065cc: 60bb str r3, [r7, #8] + 8006d2a: 683b ldr r3, [r7, #0] + 8006d2c: 885b ldrh r3, [r3, #2] + 8006d2e: 461a mov r2, r3 + 8006d30: 8abb ldrh r3, [r7, #20] + 8006d32: 4413 add r3, r2 + 8006d34: 60bb str r3, [r7, #8] if(y>=ui->y&&z==1) - 80065ce: 687b ldr r3, [r7, #4] - 80065d0: 88db ldrh r3, [r3, #6] - 80065d2: 461a mov r2, r3 - 80065d4: 68bb ldr r3, [r7, #8] - 80065d6: 4293 cmp r3, r2 - 80065d8: db0c blt.n 80065f4 - 80065da: 7dfb ldrb r3, [r7, #23] - 80065dc: 2b01 cmp r3, #1 - 80065de: d109 bne.n 80065f4 + 8006d36: 687b ldr r3, [r7, #4] + 8006d38: 88db ldrh r3, [r3, #6] + 8006d3a: 461a mov r2, r3 + 8006d3c: 68bb ldr r3, [r7, #8] + 8006d3e: 4293 cmp r3, r2 + 8006d40: db0c blt.n 8006d5c + 8006d42: 7dfb ldrb r3, [r7, #23] + 8006d44: 2b01 cmp r3, #1 + 8006d46: d109 bne.n 8006d5c { Inteface_SetCursor(x,y); - 80065e0: 68fb ldr r3, [r7, #12] - 80065e2: b29b uxth r3, r3 - 80065e4: 68ba ldr r2, [r7, #8] - 80065e6: b292 uxth r2, r2 - 80065e8: 4611 mov r1, r2 - 80065ea: 4618 mov r0, r3 - 80065ec: f7ff ff10 bl 8006410 + 8006d48: 68fb ldr r3, [r7, #12] + 8006d4a: b29b uxth r3, r3 + 8006d4c: 68ba ldr r2, [r7, #8] + 8006d4e: b292 uxth r2, r2 + 8006d50: 4611 mov r1, r2 + 8006d52: 4618 mov r0, r3 + 8006d54: f7ff ff10 bl 8006b78 z=0; - 80065f0: 2300 movs r3, #0 - 80065f2: 75fb strb r3, [r7, #23] + 8006d58: 2300 movs r3, #0 + 8006d5a: 75fb strb r3, [r7, #23] } if(x>=ui->x) - 80065f4: 687b ldr r3, [r7, #4] - 80065f6: 889b ldrh r3, [r3, #4] - 80065f8: 461a mov r2, r3 - 80065fa: 68fb ldr r3, [r7, #12] - 80065fc: 4293 cmp r3, r2 - 80065fe: db2e blt.n 800665e + 8006d5c: 687b ldr r3, [r7, #4] + 8006d5e: 889b ldrh r3, [r3, #4] + 8006d60: 461a mov r2, r3 + 8006d62: 68fb ldr r3, [r7, #12] + 8006d64: 4293 cmp r3, r2 + 8006d66: db2e blt.n 8006dc6 { if(temp_y<16) - 8006600: 8abb ldrh r3, [r7, #20] - 8006602: 2b0f cmp r3, #15 - 8006604: d80f bhi.n 8006626 + 8006d68: 8abb ldrh r3, [r7, #20] + 8006d6a: 2b0f cmp r3, #15 + 8006d6c: d80f bhi.n 8006d8e { if(temp_i>temp_window->width-16) - 8006606: 683b ldr r3, [r7, #0] - 8006608: 889b ldrh r3, [r3, #4] - 800660a: f1a3 020f sub.w r2, r3, #15 - 800660e: 8a7b ldrh r3, [r7, #18] - 8006610: 429a cmp r2, r3 - 8006612: dc04 bgt.n 800661e + 8006d6e: 683b ldr r3, [r7, #0] + 8006d70: 889b ldrh r3, [r3, #4] + 8006d72: f1a3 020f sub.w r2, r3, #15 + 8006d76: 8a7b ldrh r3, [r7, #18] + 8006d78: 429a cmp r2, r3 + 8006d7a: dc04 bgt.n 8006d86 { Inteface_SetColor(RED); - 8006614: f44f 4078 mov.w r0, #63488 ; 0xf800 - 8006618: f7ff ff14 bl 8006444 - 800661c: e01f b.n 800665e + 8006d7c: f44f 4078 mov.w r0, #63488 ; 0xf800 + 8006d80: f7ff ff14 bl 8006bac + 8006d84: e01f b.n 8006dc6 }else { Inteface_SetColor(BLUE); - 800661e: 201f movs r0, #31 - 8006620: f7ff ff10 bl 8006444 - 8006624: e01b b.n 800665e + 8006d86: 201f movs r0, #31 + 8006d88: f7ff ff10 bl 8006bac + 8006d8c: e01b b.n 8006dc6 } }else { if(temp_i==0||temp_y==0||temp_i==temp_window->width-1||temp_y==temp_window->high-1) - 8006626: 8a7b ldrh r3, [r7, #18] - 8006628: 2b00 cmp r3, #0 - 800662a: d00e beq.n 800664a - 800662c: 8abb ldrh r3, [r7, #20] - 800662e: 2b00 cmp r3, #0 - 8006630: d00b beq.n 800664a - 8006632: 8a7a ldrh r2, [r7, #18] - 8006634: 683b ldr r3, [r7, #0] - 8006636: 889b ldrh r3, [r3, #4] - 8006638: 3b01 subs r3, #1 - 800663a: 429a cmp r2, r3 - 800663c: d005 beq.n 800664a - 800663e: 8aba ldrh r2, [r7, #20] - 8006640: 683b ldr r3, [r7, #0] - 8006642: 88db ldrh r3, [r3, #6] - 8006644: 3b01 subs r3, #1 - 8006646: 429a cmp r2, r3 - 8006648: d103 bne.n 8006652 + 8006d8e: 8a7b ldrh r3, [r7, #18] + 8006d90: 2b00 cmp r3, #0 + 8006d92: d00e beq.n 8006db2 + 8006d94: 8abb ldrh r3, [r7, #20] + 8006d96: 2b00 cmp r3, #0 + 8006d98: d00b beq.n 8006db2 + 8006d9a: 8a7a ldrh r2, [r7, #18] + 8006d9c: 683b ldr r3, [r7, #0] + 8006d9e: 889b ldrh r3, [r3, #4] + 8006da0: 3b01 subs r3, #1 + 8006da2: 429a cmp r2, r3 + 8006da4: d005 beq.n 8006db2 + 8006da6: 8aba ldrh r2, [r7, #20] + 8006da8: 683b ldr r3, [r7, #0] + 8006daa: 88db ldrh r3, [r3, #6] + 8006dac: 3b01 subs r3, #1 + 8006dae: 429a cmp r2, r3 + 8006db0: d103 bne.n 8006dba { Inteface_SetColor(BLUE); - 800664a: 201f movs r0, #31 - 800664c: f7ff fefa bl 8006444 - 8006650: e005 b.n 800665e + 8006db2: 201f movs r0, #31 + 8006db4: f7ff fefa bl 8006bac + 8006db8: e005 b.n 8006dc6 }else { Inteface_SetColor(temp_window->background); - 8006652: 683b ldr r3, [r7, #0] - 8006654: 689b ldr r3, [r3, #8] - 8006656: b29b uxth r3, r3 - 8006658: 4618 mov r0, r3 - 800665a: f7ff fef3 bl 8006444 + 8006dba: 683b ldr r3, [r7, #0] + 8006dbc: 689b ldr r3, [r3, #8] + 8006dbe: b29b uxth r3, r3 + 8006dc0: 4618 mov r0, r3 + 8006dc2: f7ff fef3 bl 8006bac for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 800665e: 8a7b ldrh r3, [r7, #18] - 8006660: 3301 adds r3, #1 - 8006662: 827b strh r3, [r7, #18] - 8006664: 683b ldr r3, [r7, #0] - 8006666: 889b ldrh r3, [r3, #4] - 8006668: 8a7a ldrh r2, [r7, #18] - 800666a: 429a cmp r2, r3 - 800666c: d3a3 bcc.n 80065b6 + 8006dc6: 8a7b ldrh r3, [r7, #18] + 8006dc8: 3301 adds r3, #1 + 8006dca: 827b strh r3, [r7, #18] + 8006dcc: 683b ldr r3, [r7, #0] + 8006dce: 889b ldrh r3, [r3, #4] + 8006dd0: 8a7a ldrh r2, [r7, #18] + 8006dd2: 429a cmp r2, r3 + 8006dd4: d3a3 bcc.n 8006d1e for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 800666e: 8abb ldrh r3, [r7, #20] - 8006670: 3301 adds r3, #1 - 8006672: 82bb strh r3, [r7, #20] - 8006674: 683b ldr r3, [r7, #0] - 8006676: 88db ldrh r3, [r3, #6] - 8006678: 8aba ldrh r2, [r7, #20] - 800667a: 429a cmp r2, r3 - 800667c: d396 bcc.n 80065ac + 8006dd6: 8abb ldrh r3, [r7, #20] + 8006dd8: 3301 adds r3, #1 + 8006dda: 82bb strh r3, [r7, #20] + 8006ddc: 683b ldr r3, [r7, #0] + 8006dde: 88db ldrh r3, [r3, #6] + 8006de0: 8aba ldrh r2, [r7, #20] + 8006de2: 429a cmp r2, r3 + 8006de4: d396 bcc.n 8006d14 } } */ //显示title LCD_ShowString(temp_window->x,temp_window->y,&temp_window->title,16,WHITE,WHITE); - 800667e: 683b ldr r3, [r7, #0] - 8006680: 8818 ldrh r0, [r3, #0] - 8006682: 683b ldr r3, [r7, #0] - 8006684: 8859 ldrh r1, [r3, #2] - 8006686: 683b ldr r3, [r7, #0] - 8006688: f103 020c add.w r2, r3, #12 - 800668c: f64f 73ff movw r3, #65535 ; 0xffff - 8006690: 9301 str r3, [sp, #4] - 8006692: f64f 73ff movw r3, #65535 ; 0xffff - 8006696: 9300 str r3, [sp, #0] - 8006698: 2310 movs r3, #16 - 800669a: f7fd ffcb bl 8004634 + 8006de6: 683b ldr r3, [r7, #0] + 8006de8: 8818 ldrh r0, [r3, #0] + 8006dea: 683b ldr r3, [r7, #0] + 8006dec: 8859 ldrh r1, [r3, #2] + 8006dee: 683b ldr r3, [r7, #0] + 8006df0: f103 020c add.w r2, r3, #12 + 8006df4: f64f 73ff movw r3, #65535 ; 0xffff + 8006df8: 9301 str r3, [sp, #4] + 8006dfa: f64f 73ff movw r3, #65535 ; 0xffff + 8006dfe: 9300 str r3, [sp, #0] + 8006e00: 2310 movs r3, #16 + 8006e02: f7fd ffa9 bl 8004d58 } - 800669e: bf00 nop - 80066a0: 3718 adds r7, #24 - 80066a2: 46bd mov sp, r7 - 80066a4: bd80 pop {r7, pc} + 8006e06: bf00 nop + 8006e08: 3718 adds r7, #24 + 8006e0a: 46bd mov sp, r7 + 8006e0c: bd80 pop {r7, pc} -080066a6 : +08006e0e : * 很可惜 辛辛苦苦写的代码要被放弃 * 用算法实现遮挡关系计算真挺蠢 * * */ void Refresh_UI(UI *ui) { - 80066a6: b580 push {r7, lr} - 80066a8: b086 sub sp, #24 - 80066aa: af00 add r7, sp, #0 - 80066ac: 6078 str r0, [r7, #4] + 8006e0e: b580 push {r7, lr} + 8006e10: b086 sub sp, #24 + 8006e12: af00 add r7, sp, #0 + 8006e14: 6078 str r0, [r7, #4] int flag=0; - 80066ae: 2300 movs r3, #0 - 80066b0: 617b str r3, [r7, #20] + 8006e16: 2300 movs r3, #0 + 8006e18: 617b str r3, [r7, #20] uint16_t dot_y=0,dot_x=0; - 80066b2: 2300 movs r3, #0 - 80066b4: 827b strh r3, [r7, #18] - 80066b6: 2300 movs r3, #0 - 80066b8: 823b strh r3, [r7, #16] + 8006e1a: 2300 movs r3, #0 + 8006e1c: 827b strh r3, [r7, #18] + 8006e1e: 2300 movs r3, #0 + 8006e20: 823b strh r3, [r7, #16] //画背景 for(dot_y=ui->y;dot_yhigh;dot_y++) - 80066ba: 687b ldr r3, [r7, #4] - 80066bc: 88db ldrh r3, [r3, #6] - 80066be: 827b strh r3, [r7, #18] - 80066c0: e01a b.n 80066f8 + 8006e22: 687b ldr r3, [r7, #4] + 8006e24: 88db ldrh r3, [r3, #6] + 8006e26: 827b strh r3, [r7, #18] + 8006e28: e01a b.n 8006e60 { Inteface_SetCursor(dot_x,dot_y); - 80066c2: 8a7a ldrh r2, [r7, #18] - 80066c4: 8a3b ldrh r3, [r7, #16] - 80066c6: 4611 mov r1, r2 - 80066c8: 4618 mov r0, r3 - 80066ca: f7ff fea1 bl 8006410 + 8006e2a: 8a7a ldrh r2, [r7, #18] + 8006e2c: 8a3b ldrh r3, [r7, #16] + 8006e2e: 4611 mov r1, r2 + 8006e30: 4618 mov r0, r3 + 8006e32: f7ff fea1 bl 8006b78 for(dot_x=ui->x;dot_xwidth;dot_x++) - 80066ce: 687b ldr r3, [r7, #4] - 80066d0: 889b ldrh r3, [r3, #4] - 80066d2: 823b strh r3, [r7, #16] - 80066d4: e008 b.n 80066e8 + 8006e36: 687b ldr r3, [r7, #4] + 8006e38: 889b ldrh r3, [r3, #4] + 8006e3a: 823b strh r3, [r7, #16] + 8006e3c: e008 b.n 8006e50 { Inteface_SetColor(ui->background); - 80066d6: 687b ldr r3, [r7, #4] - 80066d8: 681b ldr r3, [r3, #0] - 80066da: b29b uxth r3, r3 - 80066dc: 4618 mov r0, r3 - 80066de: f7ff feb1 bl 8006444 + 8006e3e: 687b ldr r3, [r7, #4] + 8006e40: 681b ldr r3, [r3, #0] + 8006e42: b29b uxth r3, r3 + 8006e44: 4618 mov r0, r3 + 8006e46: f7ff feb1 bl 8006bac for(dot_x=ui->x;dot_xwidth;dot_x++) - 80066e2: 8a3b ldrh r3, [r7, #16] - 80066e4: 3301 adds r3, #1 - 80066e6: 823b strh r3, [r7, #16] - 80066e8: 687b ldr r3, [r7, #4] - 80066ea: 891b ldrh r3, [r3, #8] - 80066ec: 8a3a ldrh r2, [r7, #16] - 80066ee: 429a cmp r2, r3 - 80066f0: d3f1 bcc.n 80066d6 + 8006e4a: 8a3b ldrh r3, [r7, #16] + 8006e4c: 3301 adds r3, #1 + 8006e4e: 823b strh r3, [r7, #16] + 8006e50: 687b ldr r3, [r7, #4] + 8006e52: 891b ldrh r3, [r3, #8] + 8006e54: 8a3a ldrh r2, [r7, #16] + 8006e56: 429a cmp r2, r3 + 8006e58: d3f1 bcc.n 8006e3e for(dot_y=ui->y;dot_yhigh;dot_y++) - 80066f2: 8a7b ldrh r3, [r7, #18] - 80066f4: 3301 adds r3, #1 - 80066f6: 827b strh r3, [r7, #18] - 80066f8: 687b ldr r3, [r7, #4] - 80066fa: 895b ldrh r3, [r3, #10] - 80066fc: 8a7a ldrh r2, [r7, #18] - 80066fe: 429a cmp r2, r3 - 8006700: d3df bcc.n 80066c2 + 8006e5a: 8a7b ldrh r3, [r7, #18] + 8006e5c: 3301 adds r3, #1 + 8006e5e: 827b strh r3, [r7, #18] + 8006e60: 687b ldr r3, [r7, #4] + 8006e62: 895b ldrh r3, [r3, #10] + 8006e64: 8a7a ldrh r2, [r7, #18] + 8006e66: 429a cmp r2, r3 + 8006e68: d3df bcc.n 8006e2a } } windows_stack *temp_windows_stack,*temp_windows_stack2; temp_windows_stack=ui->windows; - 8006702: 687b ldr r3, [r7, #4] - 8006704: 68db ldr r3, [r3, #12] - 8006706: 60fb str r3, [r7, #12] + 8006e6a: 687b ldr r3, [r7, #4] + 8006e6c: 68db ldr r3, [r3, #12] + 8006e6e: 60fb str r3, [r7, #12] do { if(temp_windows_stack!=NULL) - 8006708: 68fb ldr r3, [r7, #12] - 800670a: 2b00 cmp r3, #0 - 800670c: d00b beq.n 8006726 + 8006e70: 68fb ldr r3, [r7, #12] + 8006e72: 2b00 cmp r3, #0 + 8006e74: d00b beq.n 8006e8e { flag=1; - 800670e: 2301 movs r3, #1 - 8006710: 617b str r3, [r7, #20] + 8006e76: 2301 movs r3, #1 + 8006e78: 617b str r3, [r7, #20] Refresh_Window(ui,temp_windows_stack->window); - 8006712: 68fb ldr r3, [r7, #12] - 8006714: 685b ldr r3, [r3, #4] - 8006716: 4619 mov r1, r3 - 8006718: 6878 ldr r0, [r7, #4] - 800671a: f7ff ff3f bl 800659c + 8006e7a: 68fb ldr r3, [r7, #12] + 8006e7c: 685b ldr r3, [r3, #4] + 8006e7e: 4619 mov r1, r3 + 8006e80: 6878 ldr r0, [r7, #4] + 8006e82: f7ff ff3f bl 8006d04 //绘制下一个窗口 temp_windows_stack=temp_windows_stack->next; - 800671e: 68fb ldr r3, [r7, #12] - 8006720: 689b ldr r3, [r3, #8] - 8006722: 60fb str r3, [r7, #12] - 8006724: e001 b.n 800672a + 8006e86: 68fb ldr r3, [r7, #12] + 8006e88: 689b ldr r3, [r3, #8] + 8006e8a: 60fb str r3, [r7, #12] + 8006e8c: e001 b.n 8006e92 }else { flag=0; - 8006726: 2300 movs r3, #0 - 8006728: 617b str r3, [r7, #20] + 8006e8e: 2300 movs r3, #0 + 8006e90: 617b str r3, [r7, #20] } }while(flag); - 800672a: 697b ldr r3, [r7, #20] - 800672c: 2b00 cmp r3, #0 - 800672e: d1eb bne.n 8006708 + 8006e92: 697b ldr r3, [r7, #20] + 8006e94: 2b00 cmp r3, #0 + 8006e96: d1eb bne.n 8006e70 } } */ } - 8006730: bf00 nop - 8006732: bf00 nop - 8006734: 3718 adds r7, #24 - 8006736: 46bd mov sp, r7 - 8006738: bd80 pop {r7, pc} + 8006e98: bf00 nop + 8006e9a: bf00 nop + 8006e9c: 3718 adds r7, #24 + 8006e9e: 46bd mov sp, r7 + 8006ea0: bd80 pop {r7, pc} -0800673a : +08006ea2 : #define BODY 1 #define BAR 2 #define CLOSE 3 uint8_t Chack(window *this_window,int x,int y) { - 800673a: b480 push {r7} - 800673c: b087 sub sp, #28 - 800673e: af00 add r7, sp, #0 - 8006740: 60f8 str r0, [r7, #12] - 8006742: 60b9 str r1, [r7, #8] - 8006744: 607a str r2, [r7, #4] + 8006ea2: b480 push {r7} + 8006ea4: b087 sub sp, #28 + 8006ea6: af00 add r7, sp, #0 + 8006ea8: 60f8 str r0, [r7, #12] + 8006eaa: 60b9 str r1, [r7, #8] + 8006eac: 607a str r2, [r7, #4] int a=0; - 8006746: 2300 movs r3, #0 - 8006748: 617b str r3, [r7, #20] + 8006eae: 2300 movs r3, #0 + 8006eb0: 617b str r3, [r7, #20] if(((x>=this_window->x)&&(x<(this_window->x+this_window->width)))&&((y>=this_window->y+16)&&(y<(this_window->y+this_window->high)))) - 800674a: 68fb ldr r3, [r7, #12] - 800674c: 881b ldrh r3, [r3, #0] - 800674e: 461a mov r2, r3 - 8006750: 68bb ldr r3, [r7, #8] - 8006752: 4293 cmp r3, r2 - 8006754: db19 blt.n 800678a - 8006756: 68fb ldr r3, [r7, #12] - 8006758: 881b ldrh r3, [r3, #0] - 800675a: 461a mov r2, r3 - 800675c: 68fb ldr r3, [r7, #12] - 800675e: 889b ldrh r3, [r3, #4] - 8006760: 4413 add r3, r2 - 8006762: 68ba ldr r2, [r7, #8] - 8006764: 429a cmp r2, r3 - 8006766: da10 bge.n 800678a - 8006768: 68fb ldr r3, [r7, #12] - 800676a: 885b ldrh r3, [r3, #2] - 800676c: 330f adds r3, #15 - 800676e: 687a ldr r2, [r7, #4] - 8006770: 429a cmp r2, r3 - 8006772: dd0a ble.n 800678a - 8006774: 68fb ldr r3, [r7, #12] - 8006776: 885b ldrh r3, [r3, #2] - 8006778: 461a mov r2, r3 - 800677a: 68fb ldr r3, [r7, #12] - 800677c: 88db ldrh r3, [r3, #6] - 800677e: 4413 add r3, r2 - 8006780: 687a ldr r2, [r7, #4] - 8006782: 429a cmp r2, r3 - 8006784: da01 bge.n 800678a + 8006eb2: 68fb ldr r3, [r7, #12] + 8006eb4: 881b ldrh r3, [r3, #0] + 8006eb6: 461a mov r2, r3 + 8006eb8: 68bb ldr r3, [r7, #8] + 8006eba: 4293 cmp r3, r2 + 8006ebc: db19 blt.n 8006ef2 + 8006ebe: 68fb ldr r3, [r7, #12] + 8006ec0: 881b ldrh r3, [r3, #0] + 8006ec2: 461a mov r2, r3 + 8006ec4: 68fb ldr r3, [r7, #12] + 8006ec6: 889b ldrh r3, [r3, #4] + 8006ec8: 4413 add r3, r2 + 8006eca: 68ba ldr r2, [r7, #8] + 8006ecc: 429a cmp r2, r3 + 8006ece: da10 bge.n 8006ef2 + 8006ed0: 68fb ldr r3, [r7, #12] + 8006ed2: 885b ldrh r3, [r3, #2] + 8006ed4: 330f adds r3, #15 + 8006ed6: 687a ldr r2, [r7, #4] + 8006ed8: 429a cmp r2, r3 + 8006eda: dd0a ble.n 8006ef2 + 8006edc: 68fb ldr r3, [r7, #12] + 8006ede: 885b ldrh r3, [r3, #2] + 8006ee0: 461a mov r2, r3 + 8006ee2: 68fb ldr r3, [r7, #12] + 8006ee4: 88db ldrh r3, [r3, #6] + 8006ee6: 4413 add r3, r2 + 8006ee8: 687a ldr r2, [r7, #4] + 8006eea: 429a cmp r2, r3 + 8006eec: da01 bge.n 8006ef2 { a=1; - 8006786: 2301 movs r3, #1 - 8006788: 617b str r3, [r7, #20] + 8006eee: 2301 movs r3, #1 + 8006ef0: 617b str r3, [r7, #20] } if(((x>=this_window->x)&&(x<(this_window->x+this_window->width-16)))&&((y>=this_window->y)&&(y<(this_window->y+16)))) - 800678a: 68fb ldr r3, [r7, #12] - 800678c: 881b ldrh r3, [r3, #0] - 800678e: 461a mov r2, r3 - 8006790: 68bb ldr r3, [r7, #8] - 8006792: 4293 cmp r3, r2 - 8006794: db17 blt.n 80067c6 - 8006796: 68fb ldr r3, [r7, #12] - 8006798: 881b ldrh r3, [r3, #0] - 800679a: 461a mov r2, r3 - 800679c: 68fb ldr r3, [r7, #12] - 800679e: 889b ldrh r3, [r3, #4] - 80067a0: 4413 add r3, r2 - 80067a2: 3b10 subs r3, #16 - 80067a4: 68ba ldr r2, [r7, #8] - 80067a6: 429a cmp r2, r3 - 80067a8: da0d bge.n 80067c6 - 80067aa: 68fb ldr r3, [r7, #12] - 80067ac: 885b ldrh r3, [r3, #2] - 80067ae: 461a mov r2, r3 - 80067b0: 687b ldr r3, [r7, #4] - 80067b2: 4293 cmp r3, r2 - 80067b4: db07 blt.n 80067c6 - 80067b6: 68fb ldr r3, [r7, #12] - 80067b8: 885b ldrh r3, [r3, #2] - 80067ba: 330f adds r3, #15 - 80067bc: 687a ldr r2, [r7, #4] - 80067be: 429a cmp r2, r3 - 80067c0: dc01 bgt.n 80067c6 + 8006ef2: 68fb ldr r3, [r7, #12] + 8006ef4: 881b ldrh r3, [r3, #0] + 8006ef6: 461a mov r2, r3 + 8006ef8: 68bb ldr r3, [r7, #8] + 8006efa: 4293 cmp r3, r2 + 8006efc: db17 blt.n 8006f2e + 8006efe: 68fb ldr r3, [r7, #12] + 8006f00: 881b ldrh r3, [r3, #0] + 8006f02: 461a mov r2, r3 + 8006f04: 68fb ldr r3, [r7, #12] + 8006f06: 889b ldrh r3, [r3, #4] + 8006f08: 4413 add r3, r2 + 8006f0a: 3b10 subs r3, #16 + 8006f0c: 68ba ldr r2, [r7, #8] + 8006f0e: 429a cmp r2, r3 + 8006f10: da0d bge.n 8006f2e + 8006f12: 68fb ldr r3, [r7, #12] + 8006f14: 885b ldrh r3, [r3, #2] + 8006f16: 461a mov r2, r3 + 8006f18: 687b ldr r3, [r7, #4] + 8006f1a: 4293 cmp r3, r2 + 8006f1c: db07 blt.n 8006f2e + 8006f1e: 68fb ldr r3, [r7, #12] + 8006f20: 885b ldrh r3, [r3, #2] + 8006f22: 330f adds r3, #15 + 8006f24: 687a ldr r2, [r7, #4] + 8006f26: 429a cmp r2, r3 + 8006f28: dc01 bgt.n 8006f2e { a=2; - 80067c2: 2302 movs r3, #2 - 80067c4: 617b str r3, [r7, #20] + 8006f2a: 2302 movs r3, #2 + 8006f2c: 617b str r3, [r7, #20] } if((x>=(this_window->x+this_window->width-16))&&(x<(this_window->x+this_window->width))&&((y>=this_window->y)&&(y<(this_window->y+16)))) - 80067c6: 68fb ldr r3, [r7, #12] - 80067c8: 881b ldrh r3, [r3, #0] - 80067ca: 461a mov r2, r3 - 80067cc: 68fb ldr r3, [r7, #12] - 80067ce: 889b ldrh r3, [r3, #4] - 80067d0: 4413 add r3, r2 - 80067d2: 3b10 subs r3, #16 - 80067d4: 68ba ldr r2, [r7, #8] - 80067d6: 429a cmp r2, r3 - 80067d8: db16 blt.n 8006808 - 80067da: 68fb ldr r3, [r7, #12] - 80067dc: 881b ldrh r3, [r3, #0] - 80067de: 461a mov r2, r3 - 80067e0: 68fb ldr r3, [r7, #12] - 80067e2: 889b ldrh r3, [r3, #4] - 80067e4: 4413 add r3, r2 - 80067e6: 68ba ldr r2, [r7, #8] - 80067e8: 429a cmp r2, r3 - 80067ea: da0d bge.n 8006808 - 80067ec: 68fb ldr r3, [r7, #12] - 80067ee: 885b ldrh r3, [r3, #2] - 80067f0: 461a mov r2, r3 - 80067f2: 687b ldr r3, [r7, #4] - 80067f4: 4293 cmp r3, r2 - 80067f6: db07 blt.n 8006808 - 80067f8: 68fb ldr r3, [r7, #12] - 80067fa: 885b ldrh r3, [r3, #2] - 80067fc: 330f adds r3, #15 - 80067fe: 687a ldr r2, [r7, #4] - 8006800: 429a cmp r2, r3 - 8006802: dc01 bgt.n 8006808 + 8006f2e: 68fb ldr r3, [r7, #12] + 8006f30: 881b ldrh r3, [r3, #0] + 8006f32: 461a mov r2, r3 + 8006f34: 68fb ldr r3, [r7, #12] + 8006f36: 889b ldrh r3, [r3, #4] + 8006f38: 4413 add r3, r2 + 8006f3a: 3b10 subs r3, #16 + 8006f3c: 68ba ldr r2, [r7, #8] + 8006f3e: 429a cmp r2, r3 + 8006f40: db16 blt.n 8006f70 + 8006f42: 68fb ldr r3, [r7, #12] + 8006f44: 881b ldrh r3, [r3, #0] + 8006f46: 461a mov r2, r3 + 8006f48: 68fb ldr r3, [r7, #12] + 8006f4a: 889b ldrh r3, [r3, #4] + 8006f4c: 4413 add r3, r2 + 8006f4e: 68ba ldr r2, [r7, #8] + 8006f50: 429a cmp r2, r3 + 8006f52: da0d bge.n 8006f70 + 8006f54: 68fb ldr r3, [r7, #12] + 8006f56: 885b ldrh r3, [r3, #2] + 8006f58: 461a mov r2, r3 + 8006f5a: 687b ldr r3, [r7, #4] + 8006f5c: 4293 cmp r3, r2 + 8006f5e: db07 blt.n 8006f70 + 8006f60: 68fb ldr r3, [r7, #12] + 8006f62: 885b ldrh r3, [r3, #2] + 8006f64: 330f adds r3, #15 + 8006f66: 687a ldr r2, [r7, #4] + 8006f68: 429a cmp r2, r3 + 8006f6a: dc01 bgt.n 8006f70 { a=3; - 8006804: 2303 movs r3, #3 - 8006806: 617b str r3, [r7, #20] + 8006f6c: 2303 movs r3, #3 + 8006f6e: 617b str r3, [r7, #20] } return a; - 8006808: 697b ldr r3, [r7, #20] - 800680a: b2db uxtb r3, r3 + 8006f70: 697b ldr r3, [r7, #20] + 8006f72: b2db uxtb r3, r3 } - 800680c: 4618 mov r0, r3 - 800680e: 371c adds r7, #28 - 8006810: 46bd mov sp, r7 - 8006812: bc80 pop {r7} - 8006814: 4770 bx lr + 8006f74: 4618 mov r0, r3 + 8006f76: 371c adds r7, #28 + 8006f78: 46bd mov sp, r7 + 8006f7a: bc80 pop {r7} + 8006f7c: 4770 bx lr ... -08006818 : +08006f80 : void UI_Server(UI *ui) { - 8006818: b580 push {r7, lr} - 800681a: b088 sub sp, #32 - 800681c: af00 add r7, sp, #0 - 800681e: 6078 str r0, [r7, #4] + 8006f80: b580 push {r7, lr} + 8006f82: b088 sub sp, #32 + 8006f84: af00 add r7, sp, #0 + 8006f86: 6078 str r0, [r7, #4] windows_stack *temp_windows_stack=NULL; - 8006820: 2300 movs r3, #0 - 8006822: 61fb str r3, [r7, #28] + 8006f88: 2300 movs r3, #0 + 8006f8a: 61fb str r3, [r7, #28] window *temp_window; //touch_device *temp_touch=NULL; int flag=0; - 8006824: 2300 movs r3, #0 - 8006826: 61bb str r3, [r7, #24] + 8006f8c: 2300 movs r3, #0 + 8006f8e: 61bb str r3, [r7, #24] uint8_t hit_flag=0; - 8006828: 2300 movs r3, #0 - 800682a: 75fb strb r3, [r7, #23] + 8006f90: 2300 movs r3, #0 + 8006f92: 75fb strb r3, [r7, #23] int t_x,t_y; //touch //temp_touch=ui->touch; if(t0.c)//TP_XY(&t_x, &t_y)) - 800682c: 4b76 ldr r3, [pc, #472] ; (8006a08 ) - 800682e: 7b1b ldrb r3, [r3, #12] - 8006830: f003 0302 and.w r3, r3, #2 - 8006834: b2db uxtb r3, r3 - 8006836: 2b00 cmp r3, #0 - 8006838: f000 80ba beq.w 80069b0 + 8006f94: 4b76 ldr r3, [pc, #472] ; (8007170 ) + 8006f96: 7b1b ldrb r3, [r3, #12] + 8006f98: f003 0302 and.w r3, r3, #2 + 8006f9c: b2db uxtb r3, r3 + 8006f9e: 2b00 cmp r3, #0 + 8006fa0: f000 80ba beq.w 8007118 { if(t0.d) - 800683c: 4b72 ldr r3, [pc, #456] ; (8006a08 ) - 800683e: 7b1b ldrb r3, [r3, #12] - 8006840: f003 0304 and.w r3, r3, #4 - 8006844: b2db uxtb r3, r3 - 8006846: 2b00 cmp r3, #0 - 8006848: f000 80c8 beq.w 80069dc + 8006fa4: 4b72 ldr r3, [pc, #456] ; (8007170 ) + 8006fa6: 7b1b ldrb r3, [r3, #12] + 8006fa8: f003 0304 and.w r3, r3, #4 + 8006fac: b2db uxtb r3, r3 + 8006fae: 2b00 cmp r3, #0 + 8006fb0: f000 80c8 beq.w 8007144 { t_x=t0.pix_x; - 800684c: 4b6e ldr r3, [pc, #440] ; (8006a08 ) - 800684e: 685b ldr r3, [r3, #4] - 8006850: 613b str r3, [r7, #16] + 8006fb4: 4b6e ldr r3, [pc, #440] ; (8007170 ) + 8006fb6: 685b ldr r3, [r3, #4] + 8006fb8: 613b str r3, [r7, #16] t_y=t0.pix_y; - 8006852: 4b6d ldr r3, [pc, #436] ; (8006a08 ) - 8006854: 689b ldr r3, [r3, #8] - 8006856: 60fb str r3, [r7, #12] + 8006fba: 4b6d ldr r3, [pc, #436] ; (8007170 ) + 8006fbc: 689b ldr r3, [r3, #8] + 8006fbe: 60fb str r3, [r7, #12] temp_window=NULL; - 8006858: 2300 movs r3, #0 - 800685a: 60bb str r3, [r7, #8] + 8006fc0: 2300 movs r3, #0 + 8006fc2: 60bb str r3, [r7, #8] if(ui->moveed_windwos==NULL) - 800685c: 687b ldr r3, [r7, #4] - 800685e: 695b ldr r3, [r3, #20] - 8006860: 2b00 cmp r3, #0 - 8006862: f040 8088 bne.w 8006976 + 8006fc4: 687b ldr r3, [r7, #4] + 8006fc6: 695b ldr r3, [r3, #20] + 8006fc8: 2b00 cmp r3, #0 + 8006fca: f040 8088 bne.w 80070de { if(ui->First_click_flag==0) - 8006866: 687b ldr r3, [r7, #4] - 8006868: f893 3020 ldrb.w r3, [r3, #32] - 800686c: f003 0302 and.w r3, r3, #2 - 8006870: b2db uxtb r3, r3 - 8006872: 2b00 cmp r3, #0 - 8006874: f040 80b2 bne.w 80069dc + 8006fce: 687b ldr r3, [r7, #4] + 8006fd0: f893 3020 ldrb.w r3, [r3, #32] + 8006fd4: f003 0302 and.w r3, r3, #2 + 8006fd8: b2db uxtb r3, r3 + 8006fda: 2b00 cmp r3, #0 + 8006fdc: f040 80b2 bne.w 8007144 { ui->First_click_flag=1; - 8006878: 687a ldr r2, [r7, #4] - 800687a: f892 3020 ldrb.w r3, [r2, #32] - 800687e: f043 0302 orr.w r3, r3, #2 - 8006882: f882 3020 strb.w r3, [r2, #32] + 8006fe0: 687a ldr r2, [r7, #4] + 8006fe2: f892 3020 ldrb.w r3, [r2, #32] + 8006fe6: f043 0302 orr.w r3, r3, #2 + 8006fea: f882 3020 strb.w r3, [r2, #32] temp_windows_stack=ui->last_windows; //获取ui中最前端的窗口 从前往后扫描 - 8006886: 687b ldr r3, [r7, #4] - 8006888: 691b ldr r3, [r3, #16] - 800688a: 61fb str r3, [r7, #28] + 8006fee: 687b ldr r3, [r7, #4] + 8006ff0: 691b ldr r3, [r3, #16] + 8006ff2: 61fb str r3, [r7, #28] do { if(temp_windows_stack!=NULL) //如果有窗口就开始扫描 - 800688c: 69fb ldr r3, [r7, #28] - 800688e: 2b00 cmp r3, #0 - 8006890: d06b beq.n 800696a + 8006ff4: 69fb ldr r3, [r7, #28] + 8006ff6: 2b00 cmp r3, #0 + 8006ff8: d06b beq.n 80070d2 { flag=1; //检查到有窗口 需要循环一次以检查是否有下一个窗口 - 8006892: 2301 movs r3, #1 - 8006894: 61bb str r3, [r7, #24] + 8006ffa: 2301 movs r3, #1 + 8006ffc: 61bb str r3, [r7, #24] // temp_window=temp_windows_stack->window; //取出这个窗口 - 8006896: 69fb ldr r3, [r7, #28] - 8006898: 685b ldr r3, [r3, #4] - 800689a: 60bb str r3, [r7, #8] + 8006ffe: 69fb ldr r3, [r7, #28] + 8007000: 685b ldr r3, [r3, #4] + 8007002: 60bb str r3, [r7, #8] hit_flag=Chack(temp_window,t_x,t_y); //检查触摸是否命中 直接返回命中窗口的位置 - 800689c: 68fa ldr r2, [r7, #12] - 800689e: 6939 ldr r1, [r7, #16] - 80068a0: 68b8 ldr r0, [r7, #8] - 80068a2: f7ff ff4a bl 800673a - 80068a6: 4603 mov r3, r0 - 80068a8: 75fb strb r3, [r7, #23] + 8007004: 68fa ldr r2, [r7, #12] + 8007006: 6939 ldr r1, [r7, #16] + 8007008: 68b8 ldr r0, [r7, #8] + 800700a: f7ff ff4a bl 8006ea2 + 800700e: 4603 mov r3, r0 + 8007010: 75fb strb r3, [r7, #23] if(hit_flag) // 命中继续 - 80068aa: 7dfb ldrb r3, [r7, #23] - 80068ac: 2b00 cmp r3, #0 - 80068ae: d058 beq.n 8006962 + 8007012: 7dfb ldrb r3, [r7, #23] + 8007014: 2b00 cmp r3, #0 + 8007016: d058 beq.n 80070ca { if(temp_windows_stack!=ui->last_windows) //检查是否最前端的窗口 如果不是就放最前面 - 80068b0: 687b ldr r3, [r7, #4] - 80068b2: 691b ldr r3, [r3, #16] - 80068b4: 69fa ldr r2, [r7, #28] - 80068b6: 429a cmp r2, r3 - 80068b8: d02c beq.n 8006914 + 8007018: 687b ldr r3, [r7, #4] + 800701a: 691b ldr r3, [r3, #16] + 800701c: 69fa ldr r2, [r7, #28] + 800701e: 429a cmp r2, r3 + 8007020: d02c beq.n 800707c { if(temp_windows_stack!=ui->windows) //检查是否最后端的窗口 因为显示是从最后端往前显示的 所以ui有最后端窗口的入口 - 80068ba: 687b ldr r3, [r7, #4] - 80068bc: 68db ldr r3, [r3, #12] - 80068be: 69fa ldr r2, [r7, #28] - 80068c0: 429a cmp r2, r3 - 80068c2: d00a beq.n 80068da + 8007022: 687b ldr r3, [r7, #4] + 8007024: 68db ldr r3, [r3, #12] + 8007026: 69fa ldr r2, [r7, #28] + 8007028: 429a cmp r2, r3 + 800702a: d00a beq.n 8007042 { temp_windows_stack->up->next=temp_windows_stack->next; //取出这个节点 把节点的上下补上链接 - 80068c4: 69fb ldr r3, [r7, #28] - 80068c6: 681b ldr r3, [r3, #0] - 80068c8: 69fa ldr r2, [r7, #28] - 80068ca: 6892 ldr r2, [r2, #8] - 80068cc: 609a str r2, [r3, #8] + 800702c: 69fb ldr r3, [r7, #28] + 800702e: 681b ldr r3, [r3, #0] + 8007030: 69fa ldr r2, [r7, #28] + 8007032: 6892 ldr r2, [r2, #8] + 8007034: 609a str r2, [r3, #8] temp_windows_stack->next->up=temp_windows_stack->up; - 80068ce: 69fb ldr r3, [r7, #28] - 80068d0: 689b ldr r3, [r3, #8] - 80068d2: 69fa ldr r2, [r7, #28] - 80068d4: 6812 ldr r2, [r2, #0] - 80068d6: 601a str r2, [r3, #0] - 80068d8: e007 b.n 80068ea + 8007036: 69fb ldr r3, [r7, #28] + 8007038: 689b ldr r3, [r3, #8] + 800703a: 69fa ldr r2, [r7, #28] + 800703c: 6812 ldr r2, [r2, #0] + 800703e: 601a str r2, [r3, #0] + 8007040: e007 b.n 8007052 }else { ui->windows=temp_windows_stack->next; //如果是最后端的窗口 则取出这个节点后入口就变下一个节点了 - 80068da: 69fb ldr r3, [r7, #28] - 80068dc: 689a ldr r2, [r3, #8] - 80068de: 687b ldr r3, [r7, #4] - 80068e0: 60da str r2, [r3, #12] + 8007042: 69fb ldr r3, [r7, #28] + 8007044: 689a ldr r2, [r3, #8] + 8007046: 687b ldr r3, [r7, #4] + 8007048: 60da str r2, [r3, #12] ui->windows->up=NULL; //倒数第二变最后端 在走就没了 所以要清空指针 - 80068e2: 687b ldr r3, [r7, #4] - 80068e4: 68db ldr r3, [r3, #12] - 80068e6: 2200 movs r2, #0 - 80068e8: 601a str r2, [r3, #0] + 800704a: 687b ldr r3, [r7, #4] + 800704c: 68db ldr r3, [r3, #12] + 800704e: 2200 movs r2, #0 + 8007050: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; //取出的节点要放在最前端 所以 无法再往前 清空往前的指针 - 80068ea: 69fb ldr r3, [r7, #28] - 80068ec: 2200 movs r2, #0 - 80068ee: 609a str r2, [r3, #8] + 8007052: 69fb ldr r3, [r7, #28] + 8007054: 2200 movs r2, #0 + 8007056: 609a str r2, [r3, #8] temp_windows_stack->up=ui->last_windows; //上一个指针就是原来的最后一个 - 80068f0: 687b ldr r3, [r7, #4] - 80068f2: 691a ldr r2, [r3, #16] - 80068f4: 69fb ldr r3, [r7, #28] - 80068f6: 601a str r2, [r3, #0] + 8007058: 687b ldr r3, [r7, #4] + 800705a: 691a ldr r2, [r3, #16] + 800705c: 69fb ldr r3, [r7, #28] + 800705e: 601a str r2, [r3, #0] ui->last_windows->next=temp_windows_stack; //原来的最后一个指向现在的最后一个 - 80068f8: 687b ldr r3, [r7, #4] - 80068fa: 691b ldr r3, [r3, #16] - 80068fc: 69fa ldr r2, [r7, #28] - 80068fe: 609a str r2, [r3, #8] + 8007060: 687b ldr r3, [r7, #4] + 8007062: 691b ldr r3, [r3, #16] + 8007064: 69fa ldr r2, [r7, #28] + 8007066: 609a str r2, [r3, #8] ui->last_windows=temp_windows_stack; //更新ui中的最后一个的入口 - 8006900: 687b ldr r3, [r7, #4] - 8006902: 69fa ldr r2, [r7, #28] - 8006904: 611a str r2, [r3, #16] + 8007068: 687b ldr r3, [r7, #4] + 800706a: 69fa ldr r2, [r7, #28] + 800706c: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 8006906: 687a ldr r2, [r7, #4] - 8006908: f892 3020 ldrb.w r3, [r2, #32] - 800690c: f043 0304 orr.w r3, r3, #4 - 8006910: f882 3020 strb.w r3, [r2, #32] + 800706e: 687a ldr r2, [r7, #4] + 8007070: f892 3020 ldrb.w r3, [r2, #32] + 8007074: f043 0304 orr.w r3, r3, #4 + 8007078: f882 3020 strb.w r3, [r2, #32] } //检查标中窗口的什么位置 switch(hit_flag) - 8006914: 7dfb ldrb r3, [r7, #23] - 8006916: 2b03 cmp r3, #3 - 8006918: d006 beq.n 8006928 - 800691a: 2b03 cmp r3, #3 - 800691c: dc1f bgt.n 800695e - 800691e: 2b01 cmp r3, #1 - 8006920: d01c beq.n 800695c - 8006922: 2b02 cmp r3, #2 - 8006924: d008 beq.n 8006938 - 8006926: e01a b.n 800695e + 800707c: 7dfb ldrb r3, [r7, #23] + 800707e: 2b03 cmp r3, #3 + 8007080: d006 beq.n 8007090 + 8007082: 2b03 cmp r3, #3 + 8007084: dc1f bgt.n 80070c6 + 8007086: 2b01 cmp r3, #1 + 8007088: d01c beq.n 80070c4 + 800708a: 2b02 cmp r3, #2 + 800708c: d008 beq.n 80070a0 + 800708e: e01a b.n 80070c6 { case CLOSE: //Close_Windows_Stack(ui,temp_windows_stack); ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 8006928: 687a ldr r2, [r7, #4] - 800692a: f892 3020 ldrb.w r3, [r2, #32] - 800692e: f043 0304 orr.w r3, r3, #4 - 8006932: f882 3020 strb.w r3, [r2, #32] + 8007090: 687a ldr r2, [r7, #4] + 8007092: f892 3020 ldrb.w r3, [r2, #32] + 8007096: f043 0304 orr.w r3, r3, #4 + 800709a: f882 3020 strb.w r3, [r2, #32] break; - 8006936: e012 b.n 800695e + 800709e: e012 b.n 80070c6 case BAR: ui->moveed_windwos=temp_window; - 8006938: 687b ldr r3, [r7, #4] - 800693a: 68ba ldr r2, [r7, #8] - 800693c: 615a str r2, [r3, #20] + 80070a0: 687b ldr r3, [r7, #4] + 80070a2: 68ba ldr r2, [r7, #8] + 80070a4: 615a str r2, [r3, #20] ui->move_x=t_x-temp_window->x; - 800693e: 68bb ldr r3, [r7, #8] - 8006940: 881b ldrh r3, [r3, #0] - 8006942: 461a mov r2, r3 - 8006944: 693b ldr r3, [r7, #16] - 8006946: 1a9a subs r2, r3, r2 - 8006948: 687b ldr r3, [r7, #4] - 800694a: 619a str r2, [r3, #24] + 80070a6: 68bb ldr r3, [r7, #8] + 80070a8: 881b ldrh r3, [r3, #0] + 80070aa: 461a mov r2, r3 + 80070ac: 693b ldr r3, [r7, #16] + 80070ae: 1a9a subs r2, r3, r2 + 80070b0: 687b ldr r3, [r7, #4] + 80070b2: 619a str r2, [r3, #24] ui->move_y=t_y-temp_window->y; - 800694c: 68bb ldr r3, [r7, #8] - 800694e: 885b ldrh r3, [r3, #2] - 8006950: 461a mov r2, r3 - 8006952: 68fb ldr r3, [r7, #12] - 8006954: 1a9a subs r2, r3, r2 - 8006956: 687b ldr r3, [r7, #4] - 8006958: 61da str r2, [r3, #28] + 80070b4: 68bb ldr r3, [r7, #8] + 80070b6: 885b ldrh r3, [r3, #2] + 80070b8: 461a mov r2, r3 + 80070ba: 68fb ldr r3, [r7, #12] + 80070bc: 1a9a subs r2, r3, r2 + 80070be: 687b ldr r3, [r7, #4] + 80070c0: 61da str r2, [r3, #28] break; - 800695a: e000 b.n 800695e + 80070c2: e000 b.n 80070c6 case BODY: //ui->background=temp_windows_stack->window->background; //ui->refresh_ui_flag=1; break; - 800695c: bf00 nop + 80070c4: bf00 nop } flag=0; //结束扫描 防止穿透当前窗口 - 800695e: 2300 movs r3, #0 - 8006960: 61bb str r3, [r7, #24] + 80070c6: 2300 movs r3, #0 + 80070c8: 61bb str r3, [r7, #24] } temp_windows_stack=temp_windows_stack->up; //往前扫描 - 8006962: 69fb ldr r3, [r7, #28] - 8006964: 681b ldr r3, [r3, #0] - 8006966: 61fb str r3, [r7, #28] - 8006968: e001 b.n 800696e + 80070ca: 69fb ldr r3, [r7, #28] + 80070cc: 681b ldr r3, [r3, #0] + 80070ce: 61fb str r3, [r7, #28] + 80070d0: e001 b.n 80070d6 }else { flag=0; //一个窗口都没有 直接结束循环 - 800696a: 2300 movs r3, #0 - 800696c: 61bb str r3, [r7, #24] + 80070d2: 2300 movs r3, #0 + 80070d4: 61bb str r3, [r7, #24] } }while(flag); - 800696e: 69bb ldr r3, [r7, #24] - 8006970: 2b00 cmp r3, #0 - 8006972: d18b bne.n 800688c - 8006974: e032 b.n 80069dc + 80070d6: 69bb ldr r3, [r7, #24] + 80070d8: 2b00 cmp r3, #0 + 80070da: d18b bne.n 8006ff4 + 80070dc: e032 b.n 8007144 } }else { temp_window=ui->moveed_windwos; - 8006976: 687b ldr r3, [r7, #4] - 8006978: 695b ldr r3, [r3, #20] - 800697a: 60bb str r3, [r7, #8] + 80070de: 687b ldr r3, [r7, #4] + 80070e0: 695b ldr r3, [r3, #20] + 80070e2: 60bb str r3, [r7, #8] temp_window->x=t_x-ui->move_x; - 800697c: 693b ldr r3, [r7, #16] - 800697e: b29a uxth r2, r3 - 8006980: 687b ldr r3, [r7, #4] - 8006982: 699b ldr r3, [r3, #24] - 8006984: b29b uxth r3, r3 - 8006986: 1ad3 subs r3, r2, r3 - 8006988: b29a uxth r2, r3 - 800698a: 68bb ldr r3, [r7, #8] - 800698c: 801a strh r2, [r3, #0] + 80070e4: 693b ldr r3, [r7, #16] + 80070e6: b29a uxth r2, r3 + 80070e8: 687b ldr r3, [r7, #4] + 80070ea: 699b ldr r3, [r3, #24] + 80070ec: b29b uxth r3, r3 + 80070ee: 1ad3 subs r3, r2, r3 + 80070f0: b29a uxth r2, r3 + 80070f2: 68bb ldr r3, [r7, #8] + 80070f4: 801a strh r2, [r3, #0] temp_window->y=t_y-ui->move_y; - 800698e: 68fb ldr r3, [r7, #12] - 8006990: b29a uxth r2, r3 - 8006992: 687b ldr r3, [r7, #4] - 8006994: 69db ldr r3, [r3, #28] - 8006996: b29b uxth r3, r3 - 8006998: 1ad3 subs r3, r2, r3 - 800699a: b29a uxth r2, r3 - 800699c: 68bb ldr r3, [r7, #8] - 800699e: 805a strh r2, [r3, #2] + 80070f6: 68fb ldr r3, [r7, #12] + 80070f8: b29a uxth r2, r3 + 80070fa: 687b ldr r3, [r7, #4] + 80070fc: 69db ldr r3, [r3, #28] + 80070fe: b29b uxth r3, r3 + 8007100: 1ad3 subs r3, r2, r3 + 8007102: b29a uxth r2, r3 + 8007104: 68bb ldr r3, [r7, #8] + 8007106: 805a strh r2, [r3, #2] ui->refresh_ui_flag=1; - 80069a0: 687a ldr r2, [r7, #4] - 80069a2: f892 3020 ldrb.w r3, [r2, #32] - 80069a6: f043 0304 orr.w r3, r3, #4 - 80069aa: f882 3020 strb.w r3, [r2, #32] - 80069ae: e015 b.n 80069dc + 8007108: 687a ldr r2, [r7, #4] + 800710a: f892 3020 ldrb.w r3, [r2, #32] + 800710e: f043 0304 orr.w r3, r3, #4 + 8007112: f882 3020 strb.w r3, [r2, #32] + 8007116: e015 b.n 8007144 }else { if(ui->First_click_flag==1) - 80069b0: 687b ldr r3, [r7, #4] - 80069b2: f893 3020 ldrb.w r3, [r3, #32] - 80069b6: f003 0302 and.w r3, r3, #2 - 80069ba: b2db uxtb r3, r3 - 80069bc: 2b00 cmp r3, #0 - 80069be: d006 beq.n 80069ce + 8007118: 687b ldr r3, [r7, #4] + 800711a: f893 3020 ldrb.w r3, [r3, #32] + 800711e: f003 0302 and.w r3, r3, #2 + 8007122: b2db uxtb r3, r3 + 8007124: 2b00 cmp r3, #0 + 8007126: d006 beq.n 8007136 { ui->First_click_flag=0; - 80069c0: 687a ldr r2, [r7, #4] - 80069c2: f892 3020 ldrb.w r3, [r2, #32] - 80069c6: f36f 0341 bfc r3, #1, #1 - 80069ca: f882 3020 strb.w r3, [r2, #32] + 8007128: 687a ldr r2, [r7, #4] + 800712a: f892 3020 ldrb.w r3, [r2, #32] + 800712e: f36f 0341 bfc r3, #1, #1 + 8007132: f882 3020 strb.w r3, [r2, #32] } if(ui->moveed_windwos!=NULL) - 80069ce: 687b ldr r3, [r7, #4] - 80069d0: 695b ldr r3, [r3, #20] - 80069d2: 2b00 cmp r3, #0 - 80069d4: d002 beq.n 80069dc + 8007136: 687b ldr r3, [r7, #4] + 8007138: 695b ldr r3, [r3, #20] + 800713a: 2b00 cmp r3, #0 + 800713c: d002 beq.n 8007144 { ui->moveed_windwos=NULL; - 80069d6: 687b ldr r3, [r7, #4] - 80069d8: 2200 movs r2, #0 - 80069da: 615a str r2, [r3, #20] + 800713e: 687b ldr r3, [r7, #4] + 8007140: 2200 movs r2, #0 + 8007142: 615a str r2, [r3, #20] } } //display if(ui->refresh_ui_flag==1) - 80069dc: 687b ldr r3, [r7, #4] - 80069de: f893 3020 ldrb.w r3, [r3, #32] - 80069e2: f003 0304 and.w r3, r3, #4 - 80069e6: b2db uxtb r3, r3 - 80069e8: 2b00 cmp r3, #0 - 80069ea: d009 beq.n 8006a00 + 8007144: 687b ldr r3, [r7, #4] + 8007146: f893 3020 ldrb.w r3, [r3, #32] + 800714a: f003 0304 and.w r3, r3, #4 + 800714e: b2db uxtb r3, r3 + 8007150: 2b00 cmp r3, #0 + 8007152: d009 beq.n 8007168 { ui->refresh_ui_flag=0; - 80069ec: 687a ldr r2, [r7, #4] - 80069ee: f892 3020 ldrb.w r3, [r2, #32] - 80069f2: f36f 0382 bfc r3, #2, #1 - 80069f6: f882 3020 strb.w r3, [r2, #32] + 8007154: 687a ldr r2, [r7, #4] + 8007156: f892 3020 ldrb.w r3, [r2, #32] + 800715a: f36f 0382 bfc r3, #2, #1 + 800715e: f882 3020 strb.w r3, [r2, #32] Refresh_UI(ui); - 80069fa: 6878 ldr r0, [r7, #4] - 80069fc: f7ff fe53 bl 80066a6 + 8007162: 6878 ldr r0, [r7, #4] + 8007164: f7ff fe53 bl 8006e0e } } - 8006a00: bf00 nop - 8006a02: 3720 adds r7, #32 - 8006a04: 46bd mov sp, r7 - 8006a06: bd80 pop {r7, pc} - 8006a08: 200002f0 .word 0x200002f0 + 8007168: bf00 nop + 800716a: 3720 adds r7, #32 + 800716c: 46bd mov sp, r7 + 800716e: bd80 pop {r7, pc} + 8007170: 20000338 .word 0x20000338 -08006a0c <__errno>: - 8006a0c: 4b01 ldr r3, [pc, #4] ; (8006a14 <__errno+0x8>) - 8006a0e: 6818 ldr r0, [r3, #0] - 8006a10: 4770 bx lr - 8006a12: bf00 nop - 8006a14: 2000000c .word 0x2000000c +08007174 <__errno>: + 8007174: 4b01 ldr r3, [pc, #4] ; (800717c <__errno+0x8>) + 8007176: 6818 ldr r0, [r3, #0] + 8007178: 4770 bx lr + 800717a: bf00 nop + 800717c: 2000000c .word 0x2000000c -08006a18 <__libc_init_array>: - 8006a18: b570 push {r4, r5, r6, lr} - 8006a1a: 2600 movs r6, #0 - 8006a1c: 4d0c ldr r5, [pc, #48] ; (8006a50 <__libc_init_array+0x38>) - 8006a1e: 4c0d ldr r4, [pc, #52] ; (8006a54 <__libc_init_array+0x3c>) - 8006a20: 1b64 subs r4, r4, r5 - 8006a22: 10a4 asrs r4, r4, #2 - 8006a24: 42a6 cmp r6, r4 - 8006a26: d109 bne.n 8006a3c <__libc_init_array+0x24> - 8006a28: f002 ff36 bl 8009898 <_init> - 8006a2c: 2600 movs r6, #0 - 8006a2e: 4d0a ldr r5, [pc, #40] ; (8006a58 <__libc_init_array+0x40>) - 8006a30: 4c0a ldr r4, [pc, #40] ; (8006a5c <__libc_init_array+0x44>) - 8006a32: 1b64 subs r4, r4, r5 - 8006a34: 10a4 asrs r4, r4, #2 - 8006a36: 42a6 cmp r6, r4 - 8006a38: d105 bne.n 8006a46 <__libc_init_array+0x2e> - 8006a3a: bd70 pop {r4, r5, r6, pc} - 8006a3c: f855 3b04 ldr.w r3, [r5], #4 - 8006a40: 4798 blx r3 - 8006a42: 3601 adds r6, #1 - 8006a44: e7ee b.n 8006a24 <__libc_init_array+0xc> - 8006a46: f855 3b04 ldr.w r3, [r5], #4 - 8006a4a: 4798 blx r3 - 8006a4c: 3601 adds r6, #1 - 8006a4e: e7f2 b.n 8006a36 <__libc_init_array+0x1e> - 8006a50: 0800ab4c .word 0x0800ab4c - 8006a54: 0800ab4c .word 0x0800ab4c - 8006a58: 0800ab4c .word 0x0800ab4c - 8006a5c: 0800ab50 .word 0x0800ab50 +08007180 <__libc_init_array>: + 8007180: b570 push {r4, r5, r6, lr} + 8007182: 2600 movs r6, #0 + 8007184: 4d0c ldr r5, [pc, #48] ; (80071b8 <__libc_init_array+0x38>) + 8007186: 4c0d ldr r4, [pc, #52] ; (80071bc <__libc_init_array+0x3c>) + 8007188: 1b64 subs r4, r4, r5 + 800718a: 10a4 asrs r4, r4, #2 + 800718c: 42a6 cmp r6, r4 + 800718e: d109 bne.n 80071a4 <__libc_init_array+0x24> + 8007190: f002 ff36 bl 800a000 <_init> + 8007194: 2600 movs r6, #0 + 8007196: 4d0a ldr r5, [pc, #40] ; (80071c0 <__libc_init_array+0x40>) + 8007198: 4c0a ldr r4, [pc, #40] ; (80071c4 <__libc_init_array+0x44>) + 800719a: 1b64 subs r4, r4, r5 + 800719c: 10a4 asrs r4, r4, #2 + 800719e: 42a6 cmp r6, r4 + 80071a0: d105 bne.n 80071ae <__libc_init_array+0x2e> + 80071a2: bd70 pop {r4, r5, r6, pc} + 80071a4: f855 3b04 ldr.w r3, [r5], #4 + 80071a8: 4798 blx r3 + 80071aa: 3601 adds r6, #1 + 80071ac: e7ee b.n 800718c <__libc_init_array+0xc> + 80071ae: f855 3b04 ldr.w r3, [r5], #4 + 80071b2: 4798 blx r3 + 80071b4: 3601 adds r6, #1 + 80071b6: e7f2 b.n 800719e <__libc_init_array+0x1e> + 80071b8: 0800b2b4 .word 0x0800b2b4 + 80071bc: 0800b2b4 .word 0x0800b2b4 + 80071c0: 0800b2b4 .word 0x0800b2b4 + 80071c4: 0800b2b8 .word 0x0800b2b8 -08006a60 : - 8006a60: 4b02 ldr r3, [pc, #8] ; (8006a6c ) - 8006a62: 4601 mov r1, r0 - 8006a64: 6818 ldr r0, [r3, #0] - 8006a66: f000 b85f b.w 8006b28 <_malloc_r> - 8006a6a: bf00 nop - 8006a6c: 2000000c .word 0x2000000c +080071c8 : + 80071c8: 4b02 ldr r3, [pc, #8] ; (80071d4 ) + 80071ca: 4601 mov r1, r0 + 80071cc: 6818 ldr r0, [r3, #0] + 80071ce: f000 b85f b.w 8007290 <_malloc_r> + 80071d2: bf00 nop + 80071d4: 2000000c .word 0x2000000c -08006a70 : - 8006a70: 4b02 ldr r3, [pc, #8] ; (8006a7c ) - 8006a72: 4601 mov r1, r0 - 8006a74: 6818 ldr r0, [r3, #0] - 8006a76: f000 b80b b.w 8006a90 <_free_r> - 8006a7a: bf00 nop - 8006a7c: 2000000c .word 0x2000000c +080071d8 : + 80071d8: 4b02 ldr r3, [pc, #8] ; (80071e4 ) + 80071da: 4601 mov r1, r0 + 80071dc: 6818 ldr r0, [r3, #0] + 80071de: f000 b80b b.w 80071f8 <_free_r> + 80071e2: bf00 nop + 80071e4: 2000000c .word 0x2000000c -08006a80 : - 8006a80: 4603 mov r3, r0 - 8006a82: 4402 add r2, r0 - 8006a84: 4293 cmp r3, r2 - 8006a86: d100 bne.n 8006a8a - 8006a88: 4770 bx lr - 8006a8a: f803 1b01 strb.w r1, [r3], #1 - 8006a8e: e7f9 b.n 8006a84 +080071e8 : + 80071e8: 4603 mov r3, r0 + 80071ea: 4402 add r2, r0 + 80071ec: 4293 cmp r3, r2 + 80071ee: d100 bne.n 80071f2 + 80071f0: 4770 bx lr + 80071f2: f803 1b01 strb.w r1, [r3], #1 + 80071f6: e7f9 b.n 80071ec -08006a90 <_free_r>: - 8006a90: b538 push {r3, r4, r5, lr} - 8006a92: 4605 mov r5, r0 - 8006a94: 2900 cmp r1, #0 - 8006a96: d043 beq.n 8006b20 <_free_r+0x90> - 8006a98: f851 3c04 ldr.w r3, [r1, #-4] - 8006a9c: 1f0c subs r4, r1, #4 - 8006a9e: 2b00 cmp r3, #0 - 8006aa0: bfb8 it lt - 8006aa2: 18e4 addlt r4, r4, r3 - 8006aa4: f001 fbc6 bl 8008234 <__malloc_lock> - 8006aa8: 4a1e ldr r2, [pc, #120] ; (8006b24 <_free_r+0x94>) - 8006aaa: 6813 ldr r3, [r2, #0] - 8006aac: 4610 mov r0, r2 - 8006aae: b933 cbnz r3, 8006abe <_free_r+0x2e> - 8006ab0: 6063 str r3, [r4, #4] - 8006ab2: 6014 str r4, [r2, #0] - 8006ab4: 4628 mov r0, r5 - 8006ab6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 8006aba: f001 bbc1 b.w 8008240 <__malloc_unlock> - 8006abe: 42a3 cmp r3, r4 - 8006ac0: d90a bls.n 8006ad8 <_free_r+0x48> - 8006ac2: 6821 ldr r1, [r4, #0] - 8006ac4: 1862 adds r2, r4, r1 - 8006ac6: 4293 cmp r3, r2 - 8006ac8: bf01 itttt eq - 8006aca: 681a ldreq r2, [r3, #0] - 8006acc: 685b ldreq r3, [r3, #4] - 8006ace: 1852 addeq r2, r2, r1 - 8006ad0: 6022 streq r2, [r4, #0] - 8006ad2: 6063 str r3, [r4, #4] - 8006ad4: 6004 str r4, [r0, #0] - 8006ad6: e7ed b.n 8006ab4 <_free_r+0x24> - 8006ad8: 461a mov r2, r3 - 8006ada: 685b ldr r3, [r3, #4] - 8006adc: b10b cbz r3, 8006ae2 <_free_r+0x52> - 8006ade: 42a3 cmp r3, r4 - 8006ae0: d9fa bls.n 8006ad8 <_free_r+0x48> - 8006ae2: 6811 ldr r1, [r2, #0] - 8006ae4: 1850 adds r0, r2, r1 - 8006ae6: 42a0 cmp r0, r4 - 8006ae8: d10b bne.n 8006b02 <_free_r+0x72> - 8006aea: 6820 ldr r0, [r4, #0] - 8006aec: 4401 add r1, r0 - 8006aee: 1850 adds r0, r2, r1 - 8006af0: 4283 cmp r3, r0 - 8006af2: 6011 str r1, [r2, #0] - 8006af4: d1de bne.n 8006ab4 <_free_r+0x24> - 8006af6: 6818 ldr r0, [r3, #0] - 8006af8: 685b ldr r3, [r3, #4] - 8006afa: 4401 add r1, r0 - 8006afc: 6011 str r1, [r2, #0] - 8006afe: 6053 str r3, [r2, #4] - 8006b00: e7d8 b.n 8006ab4 <_free_r+0x24> - 8006b02: d902 bls.n 8006b0a <_free_r+0x7a> - 8006b04: 230c movs r3, #12 - 8006b06: 602b str r3, [r5, #0] - 8006b08: e7d4 b.n 8006ab4 <_free_r+0x24> - 8006b0a: 6820 ldr r0, [r4, #0] - 8006b0c: 1821 adds r1, r4, r0 - 8006b0e: 428b cmp r3, r1 - 8006b10: bf01 itttt eq - 8006b12: 6819 ldreq r1, [r3, #0] - 8006b14: 685b ldreq r3, [r3, #4] - 8006b16: 1809 addeq r1, r1, r0 - 8006b18: 6021 streq r1, [r4, #0] - 8006b1a: 6063 str r3, [r4, #4] - 8006b1c: 6054 str r4, [r2, #4] - 8006b1e: e7c9 b.n 8006ab4 <_free_r+0x24> - 8006b20: bd38 pop {r3, r4, r5, pc} - 8006b22: bf00 nop - 8006b24: 20000210 .word 0x20000210 +080071f8 <_free_r>: + 80071f8: b538 push {r3, r4, r5, lr} + 80071fa: 4605 mov r5, r0 + 80071fc: 2900 cmp r1, #0 + 80071fe: d043 beq.n 8007288 <_free_r+0x90> + 8007200: f851 3c04 ldr.w r3, [r1, #-4] + 8007204: 1f0c subs r4, r1, #4 + 8007206: 2b00 cmp r3, #0 + 8007208: bfb8 it lt + 800720a: 18e4 addlt r4, r4, r3 + 800720c: f001 fbc6 bl 800899c <__malloc_lock> + 8007210: 4a1e ldr r2, [pc, #120] ; (800728c <_free_r+0x94>) + 8007212: 6813 ldr r3, [r2, #0] + 8007214: 4610 mov r0, r2 + 8007216: b933 cbnz r3, 8007226 <_free_r+0x2e> + 8007218: 6063 str r3, [r4, #4] + 800721a: 6014 str r4, [r2, #0] + 800721c: 4628 mov r0, r5 + 800721e: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 8007222: f001 bbc1 b.w 80089a8 <__malloc_unlock> + 8007226: 42a3 cmp r3, r4 + 8007228: d90a bls.n 8007240 <_free_r+0x48> + 800722a: 6821 ldr r1, [r4, #0] + 800722c: 1862 adds r2, r4, r1 + 800722e: 4293 cmp r3, r2 + 8007230: bf01 itttt eq + 8007232: 681a ldreq r2, [r3, #0] + 8007234: 685b ldreq r3, [r3, #4] + 8007236: 1852 addeq r2, r2, r1 + 8007238: 6022 streq r2, [r4, #0] + 800723a: 6063 str r3, [r4, #4] + 800723c: 6004 str r4, [r0, #0] + 800723e: e7ed b.n 800721c <_free_r+0x24> + 8007240: 461a mov r2, r3 + 8007242: 685b ldr r3, [r3, #4] + 8007244: b10b cbz r3, 800724a <_free_r+0x52> + 8007246: 42a3 cmp r3, r4 + 8007248: d9fa bls.n 8007240 <_free_r+0x48> + 800724a: 6811 ldr r1, [r2, #0] + 800724c: 1850 adds r0, r2, r1 + 800724e: 42a0 cmp r0, r4 + 8007250: d10b bne.n 800726a <_free_r+0x72> + 8007252: 6820 ldr r0, [r4, #0] + 8007254: 4401 add r1, r0 + 8007256: 1850 adds r0, r2, r1 + 8007258: 4283 cmp r3, r0 + 800725a: 6011 str r1, [r2, #0] + 800725c: d1de bne.n 800721c <_free_r+0x24> + 800725e: 6818 ldr r0, [r3, #0] + 8007260: 685b ldr r3, [r3, #4] + 8007262: 4401 add r1, r0 + 8007264: 6011 str r1, [r2, #0] + 8007266: 6053 str r3, [r2, #4] + 8007268: e7d8 b.n 800721c <_free_r+0x24> + 800726a: d902 bls.n 8007272 <_free_r+0x7a> + 800726c: 230c movs r3, #12 + 800726e: 602b str r3, [r5, #0] + 8007270: e7d4 b.n 800721c <_free_r+0x24> + 8007272: 6820 ldr r0, [r4, #0] + 8007274: 1821 adds r1, r4, r0 + 8007276: 428b cmp r3, r1 + 8007278: bf01 itttt eq + 800727a: 6819 ldreq r1, [r3, #0] + 800727c: 685b ldreq r3, [r3, #4] + 800727e: 1809 addeq r1, r1, r0 + 8007280: 6021 streq r1, [r4, #0] + 8007282: 6063 str r3, [r4, #4] + 8007284: 6054 str r4, [r2, #4] + 8007286: e7c9 b.n 800721c <_free_r+0x24> + 8007288: bd38 pop {r3, r4, r5, pc} + 800728a: bf00 nop + 800728c: 20000210 .word 0x20000210 -08006b28 <_malloc_r>: - 8006b28: b5f8 push {r3, r4, r5, r6, r7, lr} - 8006b2a: 1ccd adds r5, r1, #3 - 8006b2c: f025 0503 bic.w r5, r5, #3 - 8006b30: 3508 adds r5, #8 - 8006b32: 2d0c cmp r5, #12 - 8006b34: bf38 it cc - 8006b36: 250c movcc r5, #12 - 8006b38: 2d00 cmp r5, #0 - 8006b3a: 4606 mov r6, r0 - 8006b3c: db01 blt.n 8006b42 <_malloc_r+0x1a> - 8006b3e: 42a9 cmp r1, r5 - 8006b40: d903 bls.n 8006b4a <_malloc_r+0x22> - 8006b42: 230c movs r3, #12 - 8006b44: 6033 str r3, [r6, #0] - 8006b46: 2000 movs r0, #0 - 8006b48: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8006b4a: f001 fb73 bl 8008234 <__malloc_lock> - 8006b4e: 4921 ldr r1, [pc, #132] ; (8006bd4 <_malloc_r+0xac>) - 8006b50: 680a ldr r2, [r1, #0] - 8006b52: 4614 mov r4, r2 - 8006b54: b99c cbnz r4, 8006b7e <_malloc_r+0x56> - 8006b56: 4f20 ldr r7, [pc, #128] ; (8006bd8 <_malloc_r+0xb0>) - 8006b58: 683b ldr r3, [r7, #0] - 8006b5a: b923 cbnz r3, 8006b66 <_malloc_r+0x3e> - 8006b5c: 4621 mov r1, r4 - 8006b5e: 4630 mov r0, r6 - 8006b60: f000 fc9c bl 800749c <_sbrk_r> - 8006b64: 6038 str r0, [r7, #0] - 8006b66: 4629 mov r1, r5 - 8006b68: 4630 mov r0, r6 - 8006b6a: f000 fc97 bl 800749c <_sbrk_r> - 8006b6e: 1c43 adds r3, r0, #1 - 8006b70: d123 bne.n 8006bba <_malloc_r+0x92> - 8006b72: 230c movs r3, #12 - 8006b74: 4630 mov r0, r6 - 8006b76: 6033 str r3, [r6, #0] - 8006b78: f001 fb62 bl 8008240 <__malloc_unlock> - 8006b7c: e7e3 b.n 8006b46 <_malloc_r+0x1e> - 8006b7e: 6823 ldr r3, [r4, #0] - 8006b80: 1b5b subs r3, r3, r5 - 8006b82: d417 bmi.n 8006bb4 <_malloc_r+0x8c> - 8006b84: 2b0b cmp r3, #11 - 8006b86: d903 bls.n 8006b90 <_malloc_r+0x68> - 8006b88: 6023 str r3, [r4, #0] - 8006b8a: 441c add r4, r3 - 8006b8c: 6025 str r5, [r4, #0] - 8006b8e: e004 b.n 8006b9a <_malloc_r+0x72> - 8006b90: 6863 ldr r3, [r4, #4] - 8006b92: 42a2 cmp r2, r4 - 8006b94: bf0c ite eq - 8006b96: 600b streq r3, [r1, #0] - 8006b98: 6053 strne r3, [r2, #4] - 8006b9a: 4630 mov r0, r6 - 8006b9c: f001 fb50 bl 8008240 <__malloc_unlock> - 8006ba0: f104 000b add.w r0, r4, #11 - 8006ba4: 1d23 adds r3, r4, #4 - 8006ba6: f020 0007 bic.w r0, r0, #7 - 8006baa: 1ac2 subs r2, r0, r3 - 8006bac: d0cc beq.n 8006b48 <_malloc_r+0x20> - 8006bae: 1a1b subs r3, r3, r0 - 8006bb0: 50a3 str r3, [r4, r2] - 8006bb2: e7c9 b.n 8006b48 <_malloc_r+0x20> - 8006bb4: 4622 mov r2, r4 - 8006bb6: 6864 ldr r4, [r4, #4] - 8006bb8: e7cc b.n 8006b54 <_malloc_r+0x2c> - 8006bba: 1cc4 adds r4, r0, #3 - 8006bbc: f024 0403 bic.w r4, r4, #3 - 8006bc0: 42a0 cmp r0, r4 - 8006bc2: d0e3 beq.n 8006b8c <_malloc_r+0x64> - 8006bc4: 1a21 subs r1, r4, r0 - 8006bc6: 4630 mov r0, r6 - 8006bc8: f000 fc68 bl 800749c <_sbrk_r> - 8006bcc: 3001 adds r0, #1 - 8006bce: d1dd bne.n 8006b8c <_malloc_r+0x64> - 8006bd0: e7cf b.n 8006b72 <_malloc_r+0x4a> - 8006bd2: bf00 nop - 8006bd4: 20000210 .word 0x20000210 - 8006bd8: 20000214 .word 0x20000214 +08007290 <_malloc_r>: + 8007290: b5f8 push {r3, r4, r5, r6, r7, lr} + 8007292: 1ccd adds r5, r1, #3 + 8007294: f025 0503 bic.w r5, r5, #3 + 8007298: 3508 adds r5, #8 + 800729a: 2d0c cmp r5, #12 + 800729c: bf38 it cc + 800729e: 250c movcc r5, #12 + 80072a0: 2d00 cmp r5, #0 + 80072a2: 4606 mov r6, r0 + 80072a4: db01 blt.n 80072aa <_malloc_r+0x1a> + 80072a6: 42a9 cmp r1, r5 + 80072a8: d903 bls.n 80072b2 <_malloc_r+0x22> + 80072aa: 230c movs r3, #12 + 80072ac: 6033 str r3, [r6, #0] + 80072ae: 2000 movs r0, #0 + 80072b0: bdf8 pop {r3, r4, r5, r6, r7, pc} + 80072b2: f001 fb73 bl 800899c <__malloc_lock> + 80072b6: 4921 ldr r1, [pc, #132] ; (800733c <_malloc_r+0xac>) + 80072b8: 680a ldr r2, [r1, #0] + 80072ba: 4614 mov r4, r2 + 80072bc: b99c cbnz r4, 80072e6 <_malloc_r+0x56> + 80072be: 4f20 ldr r7, [pc, #128] ; (8007340 <_malloc_r+0xb0>) + 80072c0: 683b ldr r3, [r7, #0] + 80072c2: b923 cbnz r3, 80072ce <_malloc_r+0x3e> + 80072c4: 4621 mov r1, r4 + 80072c6: 4630 mov r0, r6 + 80072c8: f000 fc9c bl 8007c04 <_sbrk_r> + 80072cc: 6038 str r0, [r7, #0] + 80072ce: 4629 mov r1, r5 + 80072d0: 4630 mov r0, r6 + 80072d2: f000 fc97 bl 8007c04 <_sbrk_r> + 80072d6: 1c43 adds r3, r0, #1 + 80072d8: d123 bne.n 8007322 <_malloc_r+0x92> + 80072da: 230c movs r3, #12 + 80072dc: 4630 mov r0, r6 + 80072de: 6033 str r3, [r6, #0] + 80072e0: f001 fb62 bl 80089a8 <__malloc_unlock> + 80072e4: e7e3 b.n 80072ae <_malloc_r+0x1e> + 80072e6: 6823 ldr r3, [r4, #0] + 80072e8: 1b5b subs r3, r3, r5 + 80072ea: d417 bmi.n 800731c <_malloc_r+0x8c> + 80072ec: 2b0b cmp r3, #11 + 80072ee: d903 bls.n 80072f8 <_malloc_r+0x68> + 80072f0: 6023 str r3, [r4, #0] + 80072f2: 441c add r4, r3 + 80072f4: 6025 str r5, [r4, #0] + 80072f6: e004 b.n 8007302 <_malloc_r+0x72> + 80072f8: 6863 ldr r3, [r4, #4] + 80072fa: 42a2 cmp r2, r4 + 80072fc: bf0c ite eq + 80072fe: 600b streq r3, [r1, #0] + 8007300: 6053 strne r3, [r2, #4] + 8007302: 4630 mov r0, r6 + 8007304: f001 fb50 bl 80089a8 <__malloc_unlock> + 8007308: f104 000b add.w r0, r4, #11 + 800730c: 1d23 adds r3, r4, #4 + 800730e: f020 0007 bic.w r0, r0, #7 + 8007312: 1ac2 subs r2, r0, r3 + 8007314: d0cc beq.n 80072b0 <_malloc_r+0x20> + 8007316: 1a1b subs r3, r3, r0 + 8007318: 50a3 str r3, [r4, r2] + 800731a: e7c9 b.n 80072b0 <_malloc_r+0x20> + 800731c: 4622 mov r2, r4 + 800731e: 6864 ldr r4, [r4, #4] + 8007320: e7cc b.n 80072bc <_malloc_r+0x2c> + 8007322: 1cc4 adds r4, r0, #3 + 8007324: f024 0403 bic.w r4, r4, #3 + 8007328: 42a0 cmp r0, r4 + 800732a: d0e3 beq.n 80072f4 <_malloc_r+0x64> + 800732c: 1a21 subs r1, r4, r0 + 800732e: 4630 mov r0, r6 + 8007330: f000 fc68 bl 8007c04 <_sbrk_r> + 8007334: 3001 adds r0, #1 + 8007336: d1dd bne.n 80072f4 <_malloc_r+0x64> + 8007338: e7cf b.n 80072da <_malloc_r+0x4a> + 800733a: bf00 nop + 800733c: 20000210 .word 0x20000210 + 8007340: 20000214 .word 0x20000214 -08006bdc <__cvt>: - 8006bdc: 2b00 cmp r3, #0 - 8006bde: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8006be2: 461f mov r7, r3 - 8006be4: bfbb ittet lt - 8006be6: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 - 8006bea: 461f movlt r7, r3 - 8006bec: 2300 movge r3, #0 - 8006bee: 232d movlt r3, #45 ; 0x2d - 8006bf0: b088 sub sp, #32 - 8006bf2: 4614 mov r4, r2 - 8006bf4: 9a12 ldr r2, [sp, #72] ; 0x48 - 8006bf6: 9d10 ldr r5, [sp, #64] ; 0x40 - 8006bf8: 7013 strb r3, [r2, #0] - 8006bfa: 9b14 ldr r3, [sp, #80] ; 0x50 - 8006bfc: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c - 8006c00: f023 0820 bic.w r8, r3, #32 - 8006c04: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8006c08: d005 beq.n 8006c16 <__cvt+0x3a> - 8006c0a: f1b8 0f45 cmp.w r8, #69 ; 0x45 - 8006c0e: d100 bne.n 8006c12 <__cvt+0x36> - 8006c10: 3501 adds r5, #1 - 8006c12: 2302 movs r3, #2 - 8006c14: e000 b.n 8006c18 <__cvt+0x3c> - 8006c16: 2303 movs r3, #3 - 8006c18: aa07 add r2, sp, #28 - 8006c1a: 9204 str r2, [sp, #16] - 8006c1c: aa06 add r2, sp, #24 - 8006c1e: e9cd a202 strd sl, r2, [sp, #8] - 8006c22: e9cd 3500 strd r3, r5, [sp] - 8006c26: 4622 mov r2, r4 - 8006c28: 463b mov r3, r7 - 8006c2a: f000 fcf5 bl 8007618 <_dtoa_r> - 8006c2e: f1b8 0f47 cmp.w r8, #71 ; 0x47 - 8006c32: 4606 mov r6, r0 - 8006c34: d102 bne.n 8006c3c <__cvt+0x60> - 8006c36: 9b11 ldr r3, [sp, #68] ; 0x44 - 8006c38: 07db lsls r3, r3, #31 - 8006c3a: d522 bpl.n 8006c82 <__cvt+0xa6> - 8006c3c: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8006c40: eb06 0905 add.w r9, r6, r5 - 8006c44: d110 bne.n 8006c68 <__cvt+0x8c> - 8006c46: 7833 ldrb r3, [r6, #0] - 8006c48: 2b30 cmp r3, #48 ; 0x30 - 8006c4a: d10a bne.n 8006c62 <__cvt+0x86> - 8006c4c: 2200 movs r2, #0 - 8006c4e: 2300 movs r3, #0 - 8006c50: 4620 mov r0, r4 - 8006c52: 4639 mov r1, r7 - 8006c54: f7f9 ff14 bl 8000a80 <__aeabi_dcmpeq> - 8006c58: b918 cbnz r0, 8006c62 <__cvt+0x86> - 8006c5a: f1c5 0501 rsb r5, r5, #1 - 8006c5e: f8ca 5000 str.w r5, [sl] - 8006c62: f8da 3000 ldr.w r3, [sl] - 8006c66: 4499 add r9, r3 - 8006c68: 2200 movs r2, #0 - 8006c6a: 2300 movs r3, #0 - 8006c6c: 4620 mov r0, r4 - 8006c6e: 4639 mov r1, r7 - 8006c70: f7f9 ff06 bl 8000a80 <__aeabi_dcmpeq> - 8006c74: b108 cbz r0, 8006c7a <__cvt+0x9e> - 8006c76: f8cd 901c str.w r9, [sp, #28] - 8006c7a: 2230 movs r2, #48 ; 0x30 - 8006c7c: 9b07 ldr r3, [sp, #28] - 8006c7e: 454b cmp r3, r9 - 8006c80: d307 bcc.n 8006c92 <__cvt+0xb6> - 8006c82: 4630 mov r0, r6 - 8006c84: 9b07 ldr r3, [sp, #28] - 8006c86: 9a15 ldr r2, [sp, #84] ; 0x54 - 8006c88: 1b9b subs r3, r3, r6 - 8006c8a: 6013 str r3, [r2, #0] - 8006c8c: b008 add sp, #32 - 8006c8e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8006c92: 1c59 adds r1, r3, #1 - 8006c94: 9107 str r1, [sp, #28] - 8006c96: 701a strb r2, [r3, #0] - 8006c98: e7f0 b.n 8006c7c <__cvt+0xa0> +08007344 <__cvt>: + 8007344: 2b00 cmp r3, #0 + 8007346: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 800734a: 461f mov r7, r3 + 800734c: bfbb ittet lt + 800734e: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 + 8007352: 461f movlt r7, r3 + 8007354: 2300 movge r3, #0 + 8007356: 232d movlt r3, #45 ; 0x2d + 8007358: b088 sub sp, #32 + 800735a: 4614 mov r4, r2 + 800735c: 9a12 ldr r2, [sp, #72] ; 0x48 + 800735e: 9d10 ldr r5, [sp, #64] ; 0x40 + 8007360: 7013 strb r3, [r2, #0] + 8007362: 9b14 ldr r3, [sp, #80] ; 0x50 + 8007364: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c + 8007368: f023 0820 bic.w r8, r3, #32 + 800736c: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 8007370: d005 beq.n 800737e <__cvt+0x3a> + 8007372: f1b8 0f45 cmp.w r8, #69 ; 0x45 + 8007376: d100 bne.n 800737a <__cvt+0x36> + 8007378: 3501 adds r5, #1 + 800737a: 2302 movs r3, #2 + 800737c: e000 b.n 8007380 <__cvt+0x3c> + 800737e: 2303 movs r3, #3 + 8007380: aa07 add r2, sp, #28 + 8007382: 9204 str r2, [sp, #16] + 8007384: aa06 add r2, sp, #24 + 8007386: e9cd a202 strd sl, r2, [sp, #8] + 800738a: e9cd 3500 strd r3, r5, [sp] + 800738e: 4622 mov r2, r4 + 8007390: 463b mov r3, r7 + 8007392: f000 fcf5 bl 8007d80 <_dtoa_r> + 8007396: f1b8 0f47 cmp.w r8, #71 ; 0x47 + 800739a: 4606 mov r6, r0 + 800739c: d102 bne.n 80073a4 <__cvt+0x60> + 800739e: 9b11 ldr r3, [sp, #68] ; 0x44 + 80073a0: 07db lsls r3, r3, #31 + 80073a2: d522 bpl.n 80073ea <__cvt+0xa6> + 80073a4: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 80073a8: eb06 0905 add.w r9, r6, r5 + 80073ac: d110 bne.n 80073d0 <__cvt+0x8c> + 80073ae: 7833 ldrb r3, [r6, #0] + 80073b0: 2b30 cmp r3, #48 ; 0x30 + 80073b2: d10a bne.n 80073ca <__cvt+0x86> + 80073b4: 2200 movs r2, #0 + 80073b6: 2300 movs r3, #0 + 80073b8: 4620 mov r0, r4 + 80073ba: 4639 mov r1, r7 + 80073bc: f7f9 fb60 bl 8000a80 <__aeabi_dcmpeq> + 80073c0: b918 cbnz r0, 80073ca <__cvt+0x86> + 80073c2: f1c5 0501 rsb r5, r5, #1 + 80073c6: f8ca 5000 str.w r5, [sl] + 80073ca: f8da 3000 ldr.w r3, [sl] + 80073ce: 4499 add r9, r3 + 80073d0: 2200 movs r2, #0 + 80073d2: 2300 movs r3, #0 + 80073d4: 4620 mov r0, r4 + 80073d6: 4639 mov r1, r7 + 80073d8: f7f9 fb52 bl 8000a80 <__aeabi_dcmpeq> + 80073dc: b108 cbz r0, 80073e2 <__cvt+0x9e> + 80073de: f8cd 901c str.w r9, [sp, #28] + 80073e2: 2230 movs r2, #48 ; 0x30 + 80073e4: 9b07 ldr r3, [sp, #28] + 80073e6: 454b cmp r3, r9 + 80073e8: d307 bcc.n 80073fa <__cvt+0xb6> + 80073ea: 4630 mov r0, r6 + 80073ec: 9b07 ldr r3, [sp, #28] + 80073ee: 9a15 ldr r2, [sp, #84] ; 0x54 + 80073f0: 1b9b subs r3, r3, r6 + 80073f2: 6013 str r3, [r2, #0] + 80073f4: b008 add sp, #32 + 80073f6: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 80073fa: 1c59 adds r1, r3, #1 + 80073fc: 9107 str r1, [sp, #28] + 80073fe: 701a strb r2, [r3, #0] + 8007400: e7f0 b.n 80073e4 <__cvt+0xa0> -08006c9a <__exponent>: - 8006c9a: 4603 mov r3, r0 - 8006c9c: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 8006c9e: 2900 cmp r1, #0 - 8006ca0: f803 2b02 strb.w r2, [r3], #2 - 8006ca4: bfb6 itet lt - 8006ca6: 222d movlt r2, #45 ; 0x2d - 8006ca8: 222b movge r2, #43 ; 0x2b - 8006caa: 4249 neglt r1, r1 - 8006cac: 2909 cmp r1, #9 - 8006cae: 7042 strb r2, [r0, #1] - 8006cb0: dd2b ble.n 8006d0a <__exponent+0x70> - 8006cb2: f10d 0407 add.w r4, sp, #7 - 8006cb6: 46a4 mov ip, r4 - 8006cb8: 270a movs r7, #10 - 8006cba: fb91 f6f7 sdiv r6, r1, r7 - 8006cbe: 460a mov r2, r1 - 8006cc0: 46a6 mov lr, r4 - 8006cc2: fb07 1516 mls r5, r7, r6, r1 - 8006cc6: 2a63 cmp r2, #99 ; 0x63 - 8006cc8: f105 0530 add.w r5, r5, #48 ; 0x30 - 8006ccc: 4631 mov r1, r6 - 8006cce: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff - 8006cd2: f80e 5c01 strb.w r5, [lr, #-1] - 8006cd6: dcf0 bgt.n 8006cba <__exponent+0x20> - 8006cd8: 3130 adds r1, #48 ; 0x30 - 8006cda: f1ae 0502 sub.w r5, lr, #2 - 8006cde: f804 1c01 strb.w r1, [r4, #-1] - 8006ce2: 4629 mov r1, r5 - 8006ce4: 1c44 adds r4, r0, #1 - 8006ce6: 4561 cmp r1, ip - 8006ce8: d30a bcc.n 8006d00 <__exponent+0x66> - 8006cea: f10d 0209 add.w r2, sp, #9 - 8006cee: eba2 020e sub.w r2, r2, lr - 8006cf2: 4565 cmp r5, ip - 8006cf4: bf88 it hi - 8006cf6: 2200 movhi r2, #0 - 8006cf8: 4413 add r3, r2 - 8006cfa: 1a18 subs r0, r3, r0 - 8006cfc: b003 add sp, #12 - 8006cfe: bdf0 pop {r4, r5, r6, r7, pc} - 8006d00: f811 2b01 ldrb.w r2, [r1], #1 - 8006d04: f804 2f01 strb.w r2, [r4, #1]! - 8006d08: e7ed b.n 8006ce6 <__exponent+0x4c> - 8006d0a: 2330 movs r3, #48 ; 0x30 - 8006d0c: 3130 adds r1, #48 ; 0x30 - 8006d0e: 7083 strb r3, [r0, #2] - 8006d10: 70c1 strb r1, [r0, #3] - 8006d12: 1d03 adds r3, r0, #4 - 8006d14: e7f1 b.n 8006cfa <__exponent+0x60> +08007402 <__exponent>: + 8007402: 4603 mov r3, r0 + 8007404: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} + 8007406: 2900 cmp r1, #0 + 8007408: f803 2b02 strb.w r2, [r3], #2 + 800740c: bfb6 itet lt + 800740e: 222d movlt r2, #45 ; 0x2d + 8007410: 222b movge r2, #43 ; 0x2b + 8007412: 4249 neglt r1, r1 + 8007414: 2909 cmp r1, #9 + 8007416: 7042 strb r2, [r0, #1] + 8007418: dd2b ble.n 8007472 <__exponent+0x70> + 800741a: f10d 0407 add.w r4, sp, #7 + 800741e: 46a4 mov ip, r4 + 8007420: 270a movs r7, #10 + 8007422: fb91 f6f7 sdiv r6, r1, r7 + 8007426: 460a mov r2, r1 + 8007428: 46a6 mov lr, r4 + 800742a: fb07 1516 mls r5, r7, r6, r1 + 800742e: 2a63 cmp r2, #99 ; 0x63 + 8007430: f105 0530 add.w r5, r5, #48 ; 0x30 + 8007434: 4631 mov r1, r6 + 8007436: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff + 800743a: f80e 5c01 strb.w r5, [lr, #-1] + 800743e: dcf0 bgt.n 8007422 <__exponent+0x20> + 8007440: 3130 adds r1, #48 ; 0x30 + 8007442: f1ae 0502 sub.w r5, lr, #2 + 8007446: f804 1c01 strb.w r1, [r4, #-1] + 800744a: 4629 mov r1, r5 + 800744c: 1c44 adds r4, r0, #1 + 800744e: 4561 cmp r1, ip + 8007450: d30a bcc.n 8007468 <__exponent+0x66> + 8007452: f10d 0209 add.w r2, sp, #9 + 8007456: eba2 020e sub.w r2, r2, lr + 800745a: 4565 cmp r5, ip + 800745c: bf88 it hi + 800745e: 2200 movhi r2, #0 + 8007460: 4413 add r3, r2 + 8007462: 1a18 subs r0, r3, r0 + 8007464: b003 add sp, #12 + 8007466: bdf0 pop {r4, r5, r6, r7, pc} + 8007468: f811 2b01 ldrb.w r2, [r1], #1 + 800746c: f804 2f01 strb.w r2, [r4, #1]! + 8007470: e7ed b.n 800744e <__exponent+0x4c> + 8007472: 2330 movs r3, #48 ; 0x30 + 8007474: 3130 adds r1, #48 ; 0x30 + 8007476: 7083 strb r3, [r0, #2] + 8007478: 70c1 strb r1, [r0, #3] + 800747a: 1d03 adds r3, r0, #4 + 800747c: e7f1 b.n 8007462 <__exponent+0x60> ... -08006d18 <_printf_float>: - 8006d18: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8006d1c: b091 sub sp, #68 ; 0x44 - 8006d1e: 460c mov r4, r1 - 8006d20: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 - 8006d24: 4616 mov r6, r2 - 8006d26: 461f mov r7, r3 - 8006d28: 4605 mov r5, r0 - 8006d2a: f001 fa63 bl 80081f4 <_localeconv_r> - 8006d2e: 6803 ldr r3, [r0, #0] - 8006d30: 4618 mov r0, r3 - 8006d32: 9309 str r3, [sp, #36] ; 0x24 - 8006d34: f7f9 fa78 bl 8000228 - 8006d38: 2300 movs r3, #0 - 8006d3a: 930e str r3, [sp, #56] ; 0x38 - 8006d3c: f8d8 3000 ldr.w r3, [r8] - 8006d40: 900a str r0, [sp, #40] ; 0x28 - 8006d42: 3307 adds r3, #7 - 8006d44: f023 0307 bic.w r3, r3, #7 - 8006d48: f103 0208 add.w r2, r3, #8 - 8006d4c: f894 9018 ldrb.w r9, [r4, #24] - 8006d50: f8d4 b000 ldr.w fp, [r4] - 8006d54: f8c8 2000 str.w r2, [r8] - 8006d58: e9d3 2300 ldrd r2, r3, [r3] - 8006d5c: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 - 8006d60: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 - 8006d64: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 - 8006d68: 930b str r3, [sp, #44] ; 0x2c - 8006d6a: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8006d6e: 4640 mov r0, r8 - 8006d70: 4b9c ldr r3, [pc, #624] ; (8006fe4 <_printf_float+0x2cc>) - 8006d72: 990b ldr r1, [sp, #44] ; 0x2c - 8006d74: f7f9 feb6 bl 8000ae4 <__aeabi_dcmpun> - 8006d78: bb70 cbnz r0, 8006dd8 <_printf_float+0xc0> - 8006d7a: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8006d7e: 4640 mov r0, r8 - 8006d80: 4b98 ldr r3, [pc, #608] ; (8006fe4 <_printf_float+0x2cc>) - 8006d82: 990b ldr r1, [sp, #44] ; 0x2c - 8006d84: f7f9 fe90 bl 8000aa8 <__aeabi_dcmple> - 8006d88: bb30 cbnz r0, 8006dd8 <_printf_float+0xc0> - 8006d8a: 2200 movs r2, #0 - 8006d8c: 2300 movs r3, #0 - 8006d8e: 4640 mov r0, r8 - 8006d90: 4651 mov r1, sl - 8006d92: f7f9 fe7f bl 8000a94 <__aeabi_dcmplt> - 8006d96: b110 cbz r0, 8006d9e <_printf_float+0x86> - 8006d98: 232d movs r3, #45 ; 0x2d - 8006d9a: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8006d9e: 4b92 ldr r3, [pc, #584] ; (8006fe8 <_printf_float+0x2d0>) - 8006da0: 4892 ldr r0, [pc, #584] ; (8006fec <_printf_float+0x2d4>) - 8006da2: f1b9 0f47 cmp.w r9, #71 ; 0x47 - 8006da6: bf94 ite ls - 8006da8: 4698 movls r8, r3 - 8006daa: 4680 movhi r8, r0 - 8006dac: 2303 movs r3, #3 - 8006dae: f04f 0a00 mov.w sl, #0 - 8006db2: 6123 str r3, [r4, #16] - 8006db4: f02b 0304 bic.w r3, fp, #4 - 8006db8: 6023 str r3, [r4, #0] - 8006dba: 4633 mov r3, r6 - 8006dbc: 4621 mov r1, r4 - 8006dbe: 4628 mov r0, r5 - 8006dc0: 9700 str r7, [sp, #0] - 8006dc2: aa0f add r2, sp, #60 ; 0x3c - 8006dc4: f000 f9d4 bl 8007170 <_printf_common> - 8006dc8: 3001 adds r0, #1 - 8006dca: f040 8090 bne.w 8006eee <_printf_float+0x1d6> - 8006dce: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8006dd2: b011 add sp, #68 ; 0x44 - 8006dd4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8006dd8: 4642 mov r2, r8 - 8006dda: 4653 mov r3, sl - 8006ddc: 4640 mov r0, r8 - 8006dde: 4651 mov r1, sl - 8006de0: f7f9 fe80 bl 8000ae4 <__aeabi_dcmpun> - 8006de4: b148 cbz r0, 8006dfa <_printf_float+0xe2> - 8006de6: f1ba 0f00 cmp.w sl, #0 - 8006dea: bfb8 it lt - 8006dec: 232d movlt r3, #45 ; 0x2d - 8006dee: 4880 ldr r0, [pc, #512] ; (8006ff0 <_printf_float+0x2d8>) - 8006df0: bfb8 it lt - 8006df2: f884 3043 strblt.w r3, [r4, #67] ; 0x43 - 8006df6: 4b7f ldr r3, [pc, #508] ; (8006ff4 <_printf_float+0x2dc>) - 8006df8: e7d3 b.n 8006da2 <_printf_float+0x8a> - 8006dfa: 6863 ldr r3, [r4, #4] - 8006dfc: f009 01df and.w r1, r9, #223 ; 0xdf - 8006e00: 1c5a adds r2, r3, #1 - 8006e02: d142 bne.n 8006e8a <_printf_float+0x172> - 8006e04: 2306 movs r3, #6 - 8006e06: 6063 str r3, [r4, #4] - 8006e08: 2200 movs r2, #0 - 8006e0a: 9206 str r2, [sp, #24] - 8006e0c: aa0e add r2, sp, #56 ; 0x38 - 8006e0e: e9cd 9204 strd r9, r2, [sp, #16] - 8006e12: aa0d add r2, sp, #52 ; 0x34 - 8006e14: f44b 6380 orr.w r3, fp, #1024 ; 0x400 - 8006e18: 9203 str r2, [sp, #12] - 8006e1a: f10d 0233 add.w r2, sp, #51 ; 0x33 - 8006e1e: e9cd 3201 strd r3, r2, [sp, #4] - 8006e22: 6023 str r3, [r4, #0] - 8006e24: 6863 ldr r3, [r4, #4] - 8006e26: 4642 mov r2, r8 - 8006e28: 9300 str r3, [sp, #0] - 8006e2a: 4628 mov r0, r5 - 8006e2c: 4653 mov r3, sl - 8006e2e: 910b str r1, [sp, #44] ; 0x2c - 8006e30: f7ff fed4 bl 8006bdc <__cvt> - 8006e34: 990b ldr r1, [sp, #44] ; 0x2c - 8006e36: 4680 mov r8, r0 - 8006e38: 2947 cmp r1, #71 ; 0x47 - 8006e3a: 990d ldr r1, [sp, #52] ; 0x34 - 8006e3c: d108 bne.n 8006e50 <_printf_float+0x138> - 8006e3e: 1cc8 adds r0, r1, #3 - 8006e40: db02 blt.n 8006e48 <_printf_float+0x130> - 8006e42: 6863 ldr r3, [r4, #4] - 8006e44: 4299 cmp r1, r3 - 8006e46: dd40 ble.n 8006eca <_printf_float+0x1b2> - 8006e48: f1a9 0902 sub.w r9, r9, #2 - 8006e4c: fa5f f989 uxtb.w r9, r9 - 8006e50: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8006e54: d81f bhi.n 8006e96 <_printf_float+0x17e> - 8006e56: 464a mov r2, r9 - 8006e58: 3901 subs r1, #1 - 8006e5a: f104 0050 add.w r0, r4, #80 ; 0x50 - 8006e5e: 910d str r1, [sp, #52] ; 0x34 - 8006e60: f7ff ff1b bl 8006c9a <__exponent> - 8006e64: 9a0e ldr r2, [sp, #56] ; 0x38 - 8006e66: 4682 mov sl, r0 - 8006e68: 1813 adds r3, r2, r0 - 8006e6a: 2a01 cmp r2, #1 - 8006e6c: 6123 str r3, [r4, #16] - 8006e6e: dc02 bgt.n 8006e76 <_printf_float+0x15e> - 8006e70: 6822 ldr r2, [r4, #0] - 8006e72: 07d2 lsls r2, r2, #31 - 8006e74: d501 bpl.n 8006e7a <_printf_float+0x162> - 8006e76: 3301 adds r3, #1 - 8006e78: 6123 str r3, [r4, #16] - 8006e7a: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 - 8006e7e: 2b00 cmp r3, #0 - 8006e80: d09b beq.n 8006dba <_printf_float+0xa2> - 8006e82: 232d movs r3, #45 ; 0x2d - 8006e84: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8006e88: e797 b.n 8006dba <_printf_float+0xa2> - 8006e8a: 2947 cmp r1, #71 ; 0x47 - 8006e8c: d1bc bne.n 8006e08 <_printf_float+0xf0> - 8006e8e: 2b00 cmp r3, #0 - 8006e90: d1ba bne.n 8006e08 <_printf_float+0xf0> - 8006e92: 2301 movs r3, #1 - 8006e94: e7b7 b.n 8006e06 <_printf_float+0xee> - 8006e96: f1b9 0f66 cmp.w r9, #102 ; 0x66 - 8006e9a: d118 bne.n 8006ece <_printf_float+0x1b6> - 8006e9c: 2900 cmp r1, #0 - 8006e9e: 6863 ldr r3, [r4, #4] - 8006ea0: dd0b ble.n 8006eba <_printf_float+0x1a2> - 8006ea2: 6121 str r1, [r4, #16] - 8006ea4: b913 cbnz r3, 8006eac <_printf_float+0x194> - 8006ea6: 6822 ldr r2, [r4, #0] - 8006ea8: 07d0 lsls r0, r2, #31 - 8006eaa: d502 bpl.n 8006eb2 <_printf_float+0x19a> - 8006eac: 3301 adds r3, #1 - 8006eae: 440b add r3, r1 - 8006eb0: 6123 str r3, [r4, #16] - 8006eb2: f04f 0a00 mov.w sl, #0 - 8006eb6: 65a1 str r1, [r4, #88] ; 0x58 - 8006eb8: e7df b.n 8006e7a <_printf_float+0x162> - 8006eba: b913 cbnz r3, 8006ec2 <_printf_float+0x1aa> - 8006ebc: 6822 ldr r2, [r4, #0] - 8006ebe: 07d2 lsls r2, r2, #31 - 8006ec0: d501 bpl.n 8006ec6 <_printf_float+0x1ae> - 8006ec2: 3302 adds r3, #2 - 8006ec4: e7f4 b.n 8006eb0 <_printf_float+0x198> - 8006ec6: 2301 movs r3, #1 - 8006ec8: e7f2 b.n 8006eb0 <_printf_float+0x198> - 8006eca: f04f 0967 mov.w r9, #103 ; 0x67 - 8006ece: 9b0e ldr r3, [sp, #56] ; 0x38 - 8006ed0: 4299 cmp r1, r3 - 8006ed2: db05 blt.n 8006ee0 <_printf_float+0x1c8> - 8006ed4: 6823 ldr r3, [r4, #0] - 8006ed6: 6121 str r1, [r4, #16] - 8006ed8: 07d8 lsls r0, r3, #31 - 8006eda: d5ea bpl.n 8006eb2 <_printf_float+0x19a> - 8006edc: 1c4b adds r3, r1, #1 - 8006ede: e7e7 b.n 8006eb0 <_printf_float+0x198> - 8006ee0: 2900 cmp r1, #0 - 8006ee2: bfcc ite gt - 8006ee4: 2201 movgt r2, #1 - 8006ee6: f1c1 0202 rsble r2, r1, #2 - 8006eea: 4413 add r3, r2 - 8006eec: e7e0 b.n 8006eb0 <_printf_float+0x198> - 8006eee: 6823 ldr r3, [r4, #0] - 8006ef0: 055a lsls r2, r3, #21 - 8006ef2: d407 bmi.n 8006f04 <_printf_float+0x1ec> - 8006ef4: 6923 ldr r3, [r4, #16] - 8006ef6: 4642 mov r2, r8 - 8006ef8: 4631 mov r1, r6 - 8006efa: 4628 mov r0, r5 - 8006efc: 47b8 blx r7 - 8006efe: 3001 adds r0, #1 - 8006f00: d12b bne.n 8006f5a <_printf_float+0x242> - 8006f02: e764 b.n 8006dce <_printf_float+0xb6> - 8006f04: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8006f08: f240 80dd bls.w 80070c6 <_printf_float+0x3ae> - 8006f0c: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 8006f10: 2200 movs r2, #0 - 8006f12: 2300 movs r3, #0 - 8006f14: f7f9 fdb4 bl 8000a80 <__aeabi_dcmpeq> - 8006f18: 2800 cmp r0, #0 - 8006f1a: d033 beq.n 8006f84 <_printf_float+0x26c> - 8006f1c: 2301 movs r3, #1 - 8006f1e: 4631 mov r1, r6 - 8006f20: 4628 mov r0, r5 - 8006f22: 4a35 ldr r2, [pc, #212] ; (8006ff8 <_printf_float+0x2e0>) - 8006f24: 47b8 blx r7 - 8006f26: 3001 adds r0, #1 - 8006f28: f43f af51 beq.w 8006dce <_printf_float+0xb6> - 8006f2c: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8006f30: 429a cmp r2, r3 - 8006f32: db02 blt.n 8006f3a <_printf_float+0x222> - 8006f34: 6823 ldr r3, [r4, #0] - 8006f36: 07d8 lsls r0, r3, #31 - 8006f38: d50f bpl.n 8006f5a <_printf_float+0x242> - 8006f3a: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8006f3e: 4631 mov r1, r6 - 8006f40: 4628 mov r0, r5 - 8006f42: 47b8 blx r7 - 8006f44: 3001 adds r0, #1 - 8006f46: f43f af42 beq.w 8006dce <_printf_float+0xb6> - 8006f4a: f04f 0800 mov.w r8, #0 - 8006f4e: f104 091a add.w r9, r4, #26 - 8006f52: 9b0e ldr r3, [sp, #56] ; 0x38 - 8006f54: 3b01 subs r3, #1 - 8006f56: 4543 cmp r3, r8 - 8006f58: dc09 bgt.n 8006f6e <_printf_float+0x256> - 8006f5a: 6823 ldr r3, [r4, #0] - 8006f5c: 079b lsls r3, r3, #30 - 8006f5e: f100 8102 bmi.w 8007166 <_printf_float+0x44e> - 8006f62: 68e0 ldr r0, [r4, #12] - 8006f64: 9b0f ldr r3, [sp, #60] ; 0x3c - 8006f66: 4298 cmp r0, r3 - 8006f68: bfb8 it lt - 8006f6a: 4618 movlt r0, r3 - 8006f6c: e731 b.n 8006dd2 <_printf_float+0xba> - 8006f6e: 2301 movs r3, #1 - 8006f70: 464a mov r2, r9 - 8006f72: 4631 mov r1, r6 - 8006f74: 4628 mov r0, r5 - 8006f76: 47b8 blx r7 - 8006f78: 3001 adds r0, #1 - 8006f7a: f43f af28 beq.w 8006dce <_printf_float+0xb6> - 8006f7e: f108 0801 add.w r8, r8, #1 - 8006f82: e7e6 b.n 8006f52 <_printf_float+0x23a> - 8006f84: 9b0d ldr r3, [sp, #52] ; 0x34 - 8006f86: 2b00 cmp r3, #0 - 8006f88: dc38 bgt.n 8006ffc <_printf_float+0x2e4> - 8006f8a: 2301 movs r3, #1 - 8006f8c: 4631 mov r1, r6 - 8006f8e: 4628 mov r0, r5 - 8006f90: 4a19 ldr r2, [pc, #100] ; (8006ff8 <_printf_float+0x2e0>) - 8006f92: 47b8 blx r7 - 8006f94: 3001 adds r0, #1 - 8006f96: f43f af1a beq.w 8006dce <_printf_float+0xb6> - 8006f9a: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8006f9e: 4313 orrs r3, r2 - 8006fa0: d102 bne.n 8006fa8 <_printf_float+0x290> - 8006fa2: 6823 ldr r3, [r4, #0] - 8006fa4: 07d9 lsls r1, r3, #31 - 8006fa6: d5d8 bpl.n 8006f5a <_printf_float+0x242> - 8006fa8: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8006fac: 4631 mov r1, r6 - 8006fae: 4628 mov r0, r5 - 8006fb0: 47b8 blx r7 - 8006fb2: 3001 adds r0, #1 - 8006fb4: f43f af0b beq.w 8006dce <_printf_float+0xb6> - 8006fb8: f04f 0900 mov.w r9, #0 - 8006fbc: f104 0a1a add.w sl, r4, #26 - 8006fc0: 9b0d ldr r3, [sp, #52] ; 0x34 - 8006fc2: 425b negs r3, r3 - 8006fc4: 454b cmp r3, r9 - 8006fc6: dc01 bgt.n 8006fcc <_printf_float+0x2b4> - 8006fc8: 9b0e ldr r3, [sp, #56] ; 0x38 - 8006fca: e794 b.n 8006ef6 <_printf_float+0x1de> - 8006fcc: 2301 movs r3, #1 - 8006fce: 4652 mov r2, sl - 8006fd0: 4631 mov r1, r6 - 8006fd2: 4628 mov r0, r5 - 8006fd4: 47b8 blx r7 - 8006fd6: 3001 adds r0, #1 - 8006fd8: f43f aef9 beq.w 8006dce <_printf_float+0xb6> - 8006fdc: f109 0901 add.w r9, r9, #1 - 8006fe0: e7ee b.n 8006fc0 <_printf_float+0x2a8> - 8006fe2: bf00 nop - 8006fe4: 7fefffff .word 0x7fefffff - 8006fe8: 0800a76c .word 0x0800a76c - 8006fec: 0800a770 .word 0x0800a770 - 8006ff0: 0800a778 .word 0x0800a778 - 8006ff4: 0800a774 .word 0x0800a774 - 8006ff8: 0800a77c .word 0x0800a77c - 8006ffc: 9a0e ldr r2, [sp, #56] ; 0x38 - 8006ffe: 6da3 ldr r3, [r4, #88] ; 0x58 - 8007000: 429a cmp r2, r3 - 8007002: bfa8 it ge - 8007004: 461a movge r2, r3 - 8007006: 2a00 cmp r2, #0 - 8007008: 4691 mov r9, r2 - 800700a: dc37 bgt.n 800707c <_printf_float+0x364> - 800700c: f04f 0b00 mov.w fp, #0 - 8007010: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8007014: f104 021a add.w r2, r4, #26 - 8007018: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 - 800701c: ebaa 0309 sub.w r3, sl, r9 - 8007020: 455b cmp r3, fp - 8007022: dc33 bgt.n 800708c <_printf_float+0x374> - 8007024: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8007028: 429a cmp r2, r3 - 800702a: db3b blt.n 80070a4 <_printf_float+0x38c> - 800702c: 6823 ldr r3, [r4, #0] - 800702e: 07da lsls r2, r3, #31 - 8007030: d438 bmi.n 80070a4 <_printf_float+0x38c> - 8007032: 9a0e ldr r2, [sp, #56] ; 0x38 - 8007034: 990d ldr r1, [sp, #52] ; 0x34 - 8007036: eba2 030a sub.w r3, r2, sl - 800703a: eba2 0901 sub.w r9, r2, r1 - 800703e: 4599 cmp r9, r3 - 8007040: bfa8 it ge - 8007042: 4699 movge r9, r3 - 8007044: f1b9 0f00 cmp.w r9, #0 - 8007048: dc34 bgt.n 80070b4 <_printf_float+0x39c> - 800704a: f04f 0800 mov.w r8, #0 - 800704e: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8007052: f104 0a1a add.w sl, r4, #26 - 8007056: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 800705a: 1a9b subs r3, r3, r2 - 800705c: eba3 0309 sub.w r3, r3, r9 - 8007060: 4543 cmp r3, r8 - 8007062: f77f af7a ble.w 8006f5a <_printf_float+0x242> - 8007066: 2301 movs r3, #1 - 8007068: 4652 mov r2, sl - 800706a: 4631 mov r1, r6 - 800706c: 4628 mov r0, r5 - 800706e: 47b8 blx r7 - 8007070: 3001 adds r0, #1 - 8007072: f43f aeac beq.w 8006dce <_printf_float+0xb6> - 8007076: f108 0801 add.w r8, r8, #1 - 800707a: e7ec b.n 8007056 <_printf_float+0x33e> - 800707c: 4613 mov r3, r2 - 800707e: 4631 mov r1, r6 - 8007080: 4642 mov r2, r8 - 8007082: 4628 mov r0, r5 - 8007084: 47b8 blx r7 - 8007086: 3001 adds r0, #1 - 8007088: d1c0 bne.n 800700c <_printf_float+0x2f4> - 800708a: e6a0 b.n 8006dce <_printf_float+0xb6> - 800708c: 2301 movs r3, #1 - 800708e: 4631 mov r1, r6 - 8007090: 4628 mov r0, r5 - 8007092: 920b str r2, [sp, #44] ; 0x2c - 8007094: 47b8 blx r7 - 8007096: 3001 adds r0, #1 - 8007098: f43f ae99 beq.w 8006dce <_printf_float+0xb6> - 800709c: 9a0b ldr r2, [sp, #44] ; 0x2c - 800709e: f10b 0b01 add.w fp, fp, #1 - 80070a2: e7b9 b.n 8007018 <_printf_float+0x300> - 80070a4: 4631 mov r1, r6 - 80070a6: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 80070aa: 4628 mov r0, r5 - 80070ac: 47b8 blx r7 - 80070ae: 3001 adds r0, #1 - 80070b0: d1bf bne.n 8007032 <_printf_float+0x31a> - 80070b2: e68c b.n 8006dce <_printf_float+0xb6> - 80070b4: 464b mov r3, r9 - 80070b6: 4631 mov r1, r6 - 80070b8: 4628 mov r0, r5 - 80070ba: eb08 020a add.w r2, r8, sl - 80070be: 47b8 blx r7 - 80070c0: 3001 adds r0, #1 - 80070c2: d1c2 bne.n 800704a <_printf_float+0x332> - 80070c4: e683 b.n 8006dce <_printf_float+0xb6> - 80070c6: 9a0e ldr r2, [sp, #56] ; 0x38 - 80070c8: 2a01 cmp r2, #1 - 80070ca: dc01 bgt.n 80070d0 <_printf_float+0x3b8> - 80070cc: 07db lsls r3, r3, #31 - 80070ce: d537 bpl.n 8007140 <_printf_float+0x428> - 80070d0: 2301 movs r3, #1 - 80070d2: 4642 mov r2, r8 - 80070d4: 4631 mov r1, r6 - 80070d6: 4628 mov r0, r5 - 80070d8: 47b8 blx r7 - 80070da: 3001 adds r0, #1 - 80070dc: f43f ae77 beq.w 8006dce <_printf_float+0xb6> - 80070e0: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 80070e4: 4631 mov r1, r6 - 80070e6: 4628 mov r0, r5 - 80070e8: 47b8 blx r7 - 80070ea: 3001 adds r0, #1 - 80070ec: f43f ae6f beq.w 8006dce <_printf_float+0xb6> - 80070f0: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 80070f4: 2200 movs r2, #0 - 80070f6: 2300 movs r3, #0 - 80070f8: f7f9 fcc2 bl 8000a80 <__aeabi_dcmpeq> - 80070fc: b9d8 cbnz r0, 8007136 <_printf_float+0x41e> - 80070fe: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007100: f108 0201 add.w r2, r8, #1 - 8007104: 3b01 subs r3, #1 - 8007106: 4631 mov r1, r6 - 8007108: 4628 mov r0, r5 - 800710a: 47b8 blx r7 - 800710c: 3001 adds r0, #1 - 800710e: d10e bne.n 800712e <_printf_float+0x416> - 8007110: e65d b.n 8006dce <_printf_float+0xb6> - 8007112: 2301 movs r3, #1 - 8007114: 464a mov r2, r9 - 8007116: 4631 mov r1, r6 - 8007118: 4628 mov r0, r5 - 800711a: 47b8 blx r7 - 800711c: 3001 adds r0, #1 - 800711e: f43f ae56 beq.w 8006dce <_printf_float+0xb6> - 8007122: f108 0801 add.w r8, r8, #1 - 8007126: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007128: 3b01 subs r3, #1 - 800712a: 4543 cmp r3, r8 - 800712c: dcf1 bgt.n 8007112 <_printf_float+0x3fa> - 800712e: 4653 mov r3, sl - 8007130: f104 0250 add.w r2, r4, #80 ; 0x50 - 8007134: e6e0 b.n 8006ef8 <_printf_float+0x1e0> - 8007136: f04f 0800 mov.w r8, #0 - 800713a: f104 091a add.w r9, r4, #26 - 800713e: e7f2 b.n 8007126 <_printf_float+0x40e> - 8007140: 2301 movs r3, #1 - 8007142: 4642 mov r2, r8 - 8007144: e7df b.n 8007106 <_printf_float+0x3ee> - 8007146: 2301 movs r3, #1 - 8007148: 464a mov r2, r9 - 800714a: 4631 mov r1, r6 - 800714c: 4628 mov r0, r5 - 800714e: 47b8 blx r7 - 8007150: 3001 adds r0, #1 - 8007152: f43f ae3c beq.w 8006dce <_printf_float+0xb6> - 8007156: f108 0801 add.w r8, r8, #1 - 800715a: 68e3 ldr r3, [r4, #12] - 800715c: 990f ldr r1, [sp, #60] ; 0x3c - 800715e: 1a5b subs r3, r3, r1 - 8007160: 4543 cmp r3, r8 - 8007162: dcf0 bgt.n 8007146 <_printf_float+0x42e> - 8007164: e6fd b.n 8006f62 <_printf_float+0x24a> - 8007166: f04f 0800 mov.w r8, #0 - 800716a: f104 0919 add.w r9, r4, #25 - 800716e: e7f4 b.n 800715a <_printf_float+0x442> - -08007170 <_printf_common>: - 8007170: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8007174: 4616 mov r6, r2 - 8007176: 4699 mov r9, r3 - 8007178: 688a ldr r2, [r1, #8] - 800717a: 690b ldr r3, [r1, #16] - 800717c: 4607 mov r7, r0 - 800717e: 4293 cmp r3, r2 - 8007180: bfb8 it lt - 8007182: 4613 movlt r3, r2 - 8007184: 6033 str r3, [r6, #0] - 8007186: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 - 800718a: 460c mov r4, r1 - 800718c: f8dd 8020 ldr.w r8, [sp, #32] - 8007190: b10a cbz r2, 8007196 <_printf_common+0x26> - 8007192: 3301 adds r3, #1 - 8007194: 6033 str r3, [r6, #0] - 8007196: 6823 ldr r3, [r4, #0] - 8007198: 0699 lsls r1, r3, #26 - 800719a: bf42 ittt mi - 800719c: 6833 ldrmi r3, [r6, #0] - 800719e: 3302 addmi r3, #2 - 80071a0: 6033 strmi r3, [r6, #0] - 80071a2: 6825 ldr r5, [r4, #0] - 80071a4: f015 0506 ands.w r5, r5, #6 - 80071a8: d106 bne.n 80071b8 <_printf_common+0x48> - 80071aa: f104 0a19 add.w sl, r4, #25 - 80071ae: 68e3 ldr r3, [r4, #12] - 80071b0: 6832 ldr r2, [r6, #0] - 80071b2: 1a9b subs r3, r3, r2 - 80071b4: 42ab cmp r3, r5 - 80071b6: dc28 bgt.n 800720a <_printf_common+0x9a> - 80071b8: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 - 80071bc: 1e13 subs r3, r2, #0 - 80071be: 6822 ldr r2, [r4, #0] - 80071c0: bf18 it ne - 80071c2: 2301 movne r3, #1 - 80071c4: 0692 lsls r2, r2, #26 - 80071c6: d42d bmi.n 8007224 <_printf_common+0xb4> - 80071c8: 4649 mov r1, r9 - 80071ca: 4638 mov r0, r7 - 80071cc: f104 0243 add.w r2, r4, #67 ; 0x43 - 80071d0: 47c0 blx r8 - 80071d2: 3001 adds r0, #1 - 80071d4: d020 beq.n 8007218 <_printf_common+0xa8> - 80071d6: 6823 ldr r3, [r4, #0] - 80071d8: 68e5 ldr r5, [r4, #12] - 80071da: f003 0306 and.w r3, r3, #6 - 80071de: 2b04 cmp r3, #4 - 80071e0: bf18 it ne - 80071e2: 2500 movne r5, #0 - 80071e4: 6832 ldr r2, [r6, #0] - 80071e6: f04f 0600 mov.w r6, #0 - 80071ea: 68a3 ldr r3, [r4, #8] - 80071ec: bf08 it eq - 80071ee: 1aad subeq r5, r5, r2 - 80071f0: 6922 ldr r2, [r4, #16] - 80071f2: bf08 it eq - 80071f4: ea25 75e5 biceq.w r5, r5, r5, asr #31 - 80071f8: 4293 cmp r3, r2 - 80071fa: bfc4 itt gt - 80071fc: 1a9b subgt r3, r3, r2 - 80071fe: 18ed addgt r5, r5, r3 - 8007200: 341a adds r4, #26 - 8007202: 42b5 cmp r5, r6 - 8007204: d11a bne.n 800723c <_printf_common+0xcc> - 8007206: 2000 movs r0, #0 - 8007208: e008 b.n 800721c <_printf_common+0xac> - 800720a: 2301 movs r3, #1 - 800720c: 4652 mov r2, sl - 800720e: 4649 mov r1, r9 - 8007210: 4638 mov r0, r7 - 8007212: 47c0 blx r8 - 8007214: 3001 adds r0, #1 - 8007216: d103 bne.n 8007220 <_printf_common+0xb0> - 8007218: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 800721c: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8007220: 3501 adds r5, #1 - 8007222: e7c4 b.n 80071ae <_printf_common+0x3e> - 8007224: 2030 movs r0, #48 ; 0x30 - 8007226: 18e1 adds r1, r4, r3 - 8007228: f881 0043 strb.w r0, [r1, #67] ; 0x43 - 800722c: 1c5a adds r2, r3, #1 - 800722e: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 - 8007232: 4422 add r2, r4 - 8007234: 3302 adds r3, #2 - 8007236: f882 1043 strb.w r1, [r2, #67] ; 0x43 - 800723a: e7c5 b.n 80071c8 <_printf_common+0x58> - 800723c: 2301 movs r3, #1 - 800723e: 4622 mov r2, r4 - 8007240: 4649 mov r1, r9 - 8007242: 4638 mov r0, r7 - 8007244: 47c0 blx r8 - 8007246: 3001 adds r0, #1 - 8007248: d0e6 beq.n 8007218 <_printf_common+0xa8> - 800724a: 3601 adds r6, #1 - 800724c: e7d9 b.n 8007202 <_printf_common+0x92> - ... - -08007250 <_printf_i>: - 8007250: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} - 8007254: 460c mov r4, r1 - 8007256: 7e27 ldrb r7, [r4, #24] - 8007258: 4691 mov r9, r2 - 800725a: 2f78 cmp r7, #120 ; 0x78 - 800725c: 4680 mov r8, r0 - 800725e: 469a mov sl, r3 - 8007260: 990c ldr r1, [sp, #48] ; 0x30 - 8007262: f104 0243 add.w r2, r4, #67 ; 0x43 - 8007266: d807 bhi.n 8007278 <_printf_i+0x28> - 8007268: 2f62 cmp r7, #98 ; 0x62 - 800726a: d80a bhi.n 8007282 <_printf_i+0x32> - 800726c: 2f00 cmp r7, #0 - 800726e: f000 80d9 beq.w 8007424 <_printf_i+0x1d4> - 8007272: 2f58 cmp r7, #88 ; 0x58 - 8007274: f000 80a4 beq.w 80073c0 <_printf_i+0x170> - 8007278: f104 0642 add.w r6, r4, #66 ; 0x42 - 800727c: f884 7042 strb.w r7, [r4, #66] ; 0x42 - 8007280: e03a b.n 80072f8 <_printf_i+0xa8> - 8007282: f1a7 0363 sub.w r3, r7, #99 ; 0x63 - 8007286: 2b15 cmp r3, #21 - 8007288: d8f6 bhi.n 8007278 <_printf_i+0x28> - 800728a: a001 add r0, pc, #4 ; (adr r0, 8007290 <_printf_i+0x40>) - 800728c: f850 f023 ldr.w pc, [r0, r3, lsl #2] - 8007290: 080072e9 .word 0x080072e9 - 8007294: 080072fd .word 0x080072fd - 8007298: 08007279 .word 0x08007279 - 800729c: 08007279 .word 0x08007279 - 80072a0: 08007279 .word 0x08007279 - 80072a4: 08007279 .word 0x08007279 - 80072a8: 080072fd .word 0x080072fd - 80072ac: 08007279 .word 0x08007279 - 80072b0: 08007279 .word 0x08007279 - 80072b4: 08007279 .word 0x08007279 - 80072b8: 08007279 .word 0x08007279 - 80072bc: 0800740b .word 0x0800740b - 80072c0: 0800732d .word 0x0800732d - 80072c4: 080073ed .word 0x080073ed - 80072c8: 08007279 .word 0x08007279 - 80072cc: 08007279 .word 0x08007279 - 80072d0: 0800742d .word 0x0800742d - 80072d4: 08007279 .word 0x08007279 - 80072d8: 0800732d .word 0x0800732d - 80072dc: 08007279 .word 0x08007279 - 80072e0: 08007279 .word 0x08007279 - 80072e4: 080073f5 .word 0x080073f5 - 80072e8: 680b ldr r3, [r1, #0] - 80072ea: f104 0642 add.w r6, r4, #66 ; 0x42 - 80072ee: 1d1a adds r2, r3, #4 - 80072f0: 681b ldr r3, [r3, #0] - 80072f2: 600a str r2, [r1, #0] - 80072f4: f884 3042 strb.w r3, [r4, #66] ; 0x42 - 80072f8: 2301 movs r3, #1 - 80072fa: e0a4 b.n 8007446 <_printf_i+0x1f6> - 80072fc: 6825 ldr r5, [r4, #0] - 80072fe: 6808 ldr r0, [r1, #0] - 8007300: 062e lsls r6, r5, #24 - 8007302: f100 0304 add.w r3, r0, #4 - 8007306: d50a bpl.n 800731e <_printf_i+0xce> - 8007308: 6805 ldr r5, [r0, #0] - 800730a: 600b str r3, [r1, #0] - 800730c: 2d00 cmp r5, #0 - 800730e: da03 bge.n 8007318 <_printf_i+0xc8> - 8007310: 232d movs r3, #45 ; 0x2d - 8007312: 426d negs r5, r5 - 8007314: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8007318: 230a movs r3, #10 - 800731a: 485e ldr r0, [pc, #376] ; (8007494 <_printf_i+0x244>) - 800731c: e019 b.n 8007352 <_printf_i+0x102> - 800731e: f015 0f40 tst.w r5, #64 ; 0x40 - 8007322: 6805 ldr r5, [r0, #0] - 8007324: 600b str r3, [r1, #0] - 8007326: bf18 it ne - 8007328: b22d sxthne r5, r5 - 800732a: e7ef b.n 800730c <_printf_i+0xbc> - 800732c: 680b ldr r3, [r1, #0] - 800732e: 6825 ldr r5, [r4, #0] - 8007330: 1d18 adds r0, r3, #4 - 8007332: 6008 str r0, [r1, #0] - 8007334: 0628 lsls r0, r5, #24 - 8007336: d501 bpl.n 800733c <_printf_i+0xec> - 8007338: 681d ldr r5, [r3, #0] - 800733a: e002 b.n 8007342 <_printf_i+0xf2> - 800733c: 0669 lsls r1, r5, #25 - 800733e: d5fb bpl.n 8007338 <_printf_i+0xe8> - 8007340: 881d ldrh r5, [r3, #0] - 8007342: 2f6f cmp r7, #111 ; 0x6f - 8007344: bf0c ite eq - 8007346: 2308 moveq r3, #8 - 8007348: 230a movne r3, #10 - 800734a: 4852 ldr r0, [pc, #328] ; (8007494 <_printf_i+0x244>) - 800734c: 2100 movs r1, #0 - 800734e: f884 1043 strb.w r1, [r4, #67] ; 0x43 - 8007352: 6866 ldr r6, [r4, #4] - 8007354: 2e00 cmp r6, #0 - 8007356: bfa8 it ge - 8007358: 6821 ldrge r1, [r4, #0] - 800735a: 60a6 str r6, [r4, #8] - 800735c: bfa4 itt ge - 800735e: f021 0104 bicge.w r1, r1, #4 - 8007362: 6021 strge r1, [r4, #0] - 8007364: b90d cbnz r5, 800736a <_printf_i+0x11a> - 8007366: 2e00 cmp r6, #0 - 8007368: d04d beq.n 8007406 <_printf_i+0x1b6> - 800736a: 4616 mov r6, r2 - 800736c: fbb5 f1f3 udiv r1, r5, r3 - 8007370: fb03 5711 mls r7, r3, r1, r5 - 8007374: 5dc7 ldrb r7, [r0, r7] - 8007376: f806 7d01 strb.w r7, [r6, #-1]! - 800737a: 462f mov r7, r5 - 800737c: 42bb cmp r3, r7 - 800737e: 460d mov r5, r1 - 8007380: d9f4 bls.n 800736c <_printf_i+0x11c> - 8007382: 2b08 cmp r3, #8 - 8007384: d10b bne.n 800739e <_printf_i+0x14e> - 8007386: 6823 ldr r3, [r4, #0] - 8007388: 07df lsls r7, r3, #31 - 800738a: d508 bpl.n 800739e <_printf_i+0x14e> - 800738c: 6923 ldr r3, [r4, #16] - 800738e: 6861 ldr r1, [r4, #4] - 8007390: 4299 cmp r1, r3 - 8007392: bfde ittt le - 8007394: 2330 movle r3, #48 ; 0x30 - 8007396: f806 3c01 strble.w r3, [r6, #-1] - 800739a: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff - 800739e: 1b92 subs r2, r2, r6 - 80073a0: 6122 str r2, [r4, #16] - 80073a2: 464b mov r3, r9 - 80073a4: 4621 mov r1, r4 - 80073a6: 4640 mov r0, r8 - 80073a8: f8cd a000 str.w sl, [sp] - 80073ac: aa03 add r2, sp, #12 - 80073ae: f7ff fedf bl 8007170 <_printf_common> - 80073b2: 3001 adds r0, #1 - 80073b4: d14c bne.n 8007450 <_printf_i+0x200> - 80073b6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80073ba: b004 add sp, #16 - 80073bc: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 80073c0: 4834 ldr r0, [pc, #208] ; (8007494 <_printf_i+0x244>) - 80073c2: f884 7045 strb.w r7, [r4, #69] ; 0x45 - 80073c6: 680e ldr r6, [r1, #0] - 80073c8: 6823 ldr r3, [r4, #0] - 80073ca: f856 5b04 ldr.w r5, [r6], #4 - 80073ce: 061f lsls r7, r3, #24 - 80073d0: 600e str r6, [r1, #0] - 80073d2: d514 bpl.n 80073fe <_printf_i+0x1ae> - 80073d4: 07d9 lsls r1, r3, #31 - 80073d6: bf44 itt mi - 80073d8: f043 0320 orrmi.w r3, r3, #32 - 80073dc: 6023 strmi r3, [r4, #0] - 80073de: b91d cbnz r5, 80073e8 <_printf_i+0x198> - 80073e0: 6823 ldr r3, [r4, #0] - 80073e2: f023 0320 bic.w r3, r3, #32 - 80073e6: 6023 str r3, [r4, #0] - 80073e8: 2310 movs r3, #16 - 80073ea: e7af b.n 800734c <_printf_i+0xfc> - 80073ec: 6823 ldr r3, [r4, #0] - 80073ee: f043 0320 orr.w r3, r3, #32 - 80073f2: 6023 str r3, [r4, #0] - 80073f4: 2378 movs r3, #120 ; 0x78 - 80073f6: 4828 ldr r0, [pc, #160] ; (8007498 <_printf_i+0x248>) - 80073f8: f884 3045 strb.w r3, [r4, #69] ; 0x45 - 80073fc: e7e3 b.n 80073c6 <_printf_i+0x176> - 80073fe: 065e lsls r6, r3, #25 - 8007400: bf48 it mi - 8007402: b2ad uxthmi r5, r5 - 8007404: e7e6 b.n 80073d4 <_printf_i+0x184> - 8007406: 4616 mov r6, r2 - 8007408: e7bb b.n 8007382 <_printf_i+0x132> - 800740a: 680b ldr r3, [r1, #0] - 800740c: 6826 ldr r6, [r4, #0] - 800740e: 1d1d adds r5, r3, #4 - 8007410: 6960 ldr r0, [r4, #20] - 8007412: 600d str r5, [r1, #0] - 8007414: 0635 lsls r5, r6, #24 - 8007416: 681b ldr r3, [r3, #0] - 8007418: d501 bpl.n 800741e <_printf_i+0x1ce> - 800741a: 6018 str r0, [r3, #0] - 800741c: e002 b.n 8007424 <_printf_i+0x1d4> - 800741e: 0671 lsls r1, r6, #25 - 8007420: d5fb bpl.n 800741a <_printf_i+0x1ca> - 8007422: 8018 strh r0, [r3, #0] - 8007424: 2300 movs r3, #0 - 8007426: 4616 mov r6, r2 - 8007428: 6123 str r3, [r4, #16] - 800742a: e7ba b.n 80073a2 <_printf_i+0x152> - 800742c: 680b ldr r3, [r1, #0] - 800742e: 1d1a adds r2, r3, #4 - 8007430: 600a str r2, [r1, #0] - 8007432: 681e ldr r6, [r3, #0] - 8007434: 2100 movs r1, #0 - 8007436: 4630 mov r0, r6 - 8007438: 6862 ldr r2, [r4, #4] - 800743a: f000 fedf bl 80081fc - 800743e: b108 cbz r0, 8007444 <_printf_i+0x1f4> - 8007440: 1b80 subs r0, r0, r6 - 8007442: 6060 str r0, [r4, #4] - 8007444: 6863 ldr r3, [r4, #4] - 8007446: 6123 str r3, [r4, #16] - 8007448: 2300 movs r3, #0 - 800744a: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 800744e: e7a8 b.n 80073a2 <_printf_i+0x152> - 8007450: 4632 mov r2, r6 - 8007452: 4649 mov r1, r9 - 8007454: 4640 mov r0, r8 - 8007456: 6923 ldr r3, [r4, #16] - 8007458: 47d0 blx sl - 800745a: 3001 adds r0, #1 - 800745c: d0ab beq.n 80073b6 <_printf_i+0x166> - 800745e: 6823 ldr r3, [r4, #0] - 8007460: 079b lsls r3, r3, #30 - 8007462: d413 bmi.n 800748c <_printf_i+0x23c> - 8007464: 68e0 ldr r0, [r4, #12] - 8007466: 9b03 ldr r3, [sp, #12] - 8007468: 4298 cmp r0, r3 - 800746a: bfb8 it lt - 800746c: 4618 movlt r0, r3 - 800746e: e7a4 b.n 80073ba <_printf_i+0x16a> - 8007470: 2301 movs r3, #1 - 8007472: 4632 mov r2, r6 - 8007474: 4649 mov r1, r9 - 8007476: 4640 mov r0, r8 - 8007478: 47d0 blx sl - 800747a: 3001 adds r0, #1 - 800747c: d09b beq.n 80073b6 <_printf_i+0x166> - 800747e: 3501 adds r5, #1 - 8007480: 68e3 ldr r3, [r4, #12] - 8007482: 9903 ldr r1, [sp, #12] - 8007484: 1a5b subs r3, r3, r1 - 8007486: 42ab cmp r3, r5 - 8007488: dcf2 bgt.n 8007470 <_printf_i+0x220> - 800748a: e7eb b.n 8007464 <_printf_i+0x214> - 800748c: 2500 movs r5, #0 - 800748e: f104 0619 add.w r6, r4, #25 - 8007492: e7f5 b.n 8007480 <_printf_i+0x230> - 8007494: 0800a77e .word 0x0800a77e - 8007498: 0800a78f .word 0x0800a78f - -0800749c <_sbrk_r>: - 800749c: b538 push {r3, r4, r5, lr} - 800749e: 2300 movs r3, #0 - 80074a0: 4d05 ldr r5, [pc, #20] ; (80074b8 <_sbrk_r+0x1c>) - 80074a2: 4604 mov r4, r0 - 80074a4: 4608 mov r0, r1 - 80074a6: 602b str r3, [r5, #0] - 80074a8: f7fa f9ea bl 8001880 <_sbrk> - 80074ac: 1c43 adds r3, r0, #1 - 80074ae: d102 bne.n 80074b6 <_sbrk_r+0x1a> - 80074b0: 682b ldr r3, [r5, #0] - 80074b2: b103 cbz r3, 80074b6 <_sbrk_r+0x1a> - 80074b4: 6023 str r3, [r4, #0] - 80074b6: bd38 pop {r3, r4, r5, pc} - 80074b8: 20002454 .word 0x20002454 - -080074bc : - 80074bc: b40e push {r1, r2, r3} - 80074be: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 - 80074c2: b500 push {lr} - 80074c4: b09c sub sp, #112 ; 0x70 - 80074c6: ab1d add r3, sp, #116 ; 0x74 - 80074c8: 9002 str r0, [sp, #8] - 80074ca: 9006 str r0, [sp, #24] - 80074cc: 9107 str r1, [sp, #28] - 80074ce: 9104 str r1, [sp, #16] - 80074d0: 4808 ldr r0, [pc, #32] ; (80074f4 ) - 80074d2: 4909 ldr r1, [pc, #36] ; (80074f8 ) - 80074d4: f853 2b04 ldr.w r2, [r3], #4 - 80074d8: 9105 str r1, [sp, #20] - 80074da: 6800 ldr r0, [r0, #0] - 80074dc: a902 add r1, sp, #8 - 80074de: 9301 str r3, [sp, #4] - 80074e0: f001 faa0 bl 8008a24 <_svfiprintf_r> - 80074e4: 2200 movs r2, #0 - 80074e6: 9b02 ldr r3, [sp, #8] - 80074e8: 701a strb r2, [r3, #0] - 80074ea: b01c add sp, #112 ; 0x70 - 80074ec: f85d eb04 ldr.w lr, [sp], #4 - 80074f0: b003 add sp, #12 - 80074f2: 4770 bx lr - 80074f4: 2000000c .word 0x2000000c - 80074f8: ffff0208 .word 0xffff0208 - -080074fc : - 80074fc: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8007500: 6903 ldr r3, [r0, #16] - 8007502: 690c ldr r4, [r1, #16] - 8007504: 4607 mov r7, r0 - 8007506: 42a3 cmp r3, r4 - 8007508: f2c0 8083 blt.w 8007612 - 800750c: 3c01 subs r4, #1 - 800750e: f100 0514 add.w r5, r0, #20 - 8007512: f101 0814 add.w r8, r1, #20 - 8007516: eb05 0384 add.w r3, r5, r4, lsl #2 - 800751a: 9301 str r3, [sp, #4] - 800751c: f858 3024 ldr.w r3, [r8, r4, lsl #2] - 8007520: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 8007524: 3301 adds r3, #1 - 8007526: 429a cmp r2, r3 - 8007528: fbb2 f6f3 udiv r6, r2, r3 - 800752c: ea4f 0b84 mov.w fp, r4, lsl #2 - 8007530: eb08 0984 add.w r9, r8, r4, lsl #2 - 8007534: d332 bcc.n 800759c - 8007536: f04f 0e00 mov.w lr, #0 - 800753a: 4640 mov r0, r8 - 800753c: 46ac mov ip, r5 - 800753e: 46f2 mov sl, lr - 8007540: f850 2b04 ldr.w r2, [r0], #4 - 8007544: b293 uxth r3, r2 - 8007546: fb06 e303 mla r3, r6, r3, lr - 800754a: 0c12 lsrs r2, r2, #16 - 800754c: ea4f 4e13 mov.w lr, r3, lsr #16 - 8007550: fb06 e202 mla r2, r6, r2, lr - 8007554: b29b uxth r3, r3 - 8007556: ebaa 0303 sub.w r3, sl, r3 - 800755a: f8dc a000 ldr.w sl, [ip] - 800755e: ea4f 4e12 mov.w lr, r2, lsr #16 - 8007562: fa1f fa8a uxth.w sl, sl - 8007566: 4453 add r3, sl - 8007568: fa1f fa82 uxth.w sl, r2 - 800756c: f8dc 2000 ldr.w r2, [ip] - 8007570: 4581 cmp r9, r0 - 8007572: ebca 4212 rsb r2, sl, r2, lsr #16 - 8007576: eb02 4223 add.w r2, r2, r3, asr #16 - 800757a: b29b uxth r3, r3 - 800757c: ea43 4302 orr.w r3, r3, r2, lsl #16 - 8007580: ea4f 4a22 mov.w sl, r2, asr #16 - 8007584: f84c 3b04 str.w r3, [ip], #4 - 8007588: d2da bcs.n 8007540 - 800758a: f855 300b ldr.w r3, [r5, fp] - 800758e: b92b cbnz r3, 800759c - 8007590: 9b01 ldr r3, [sp, #4] - 8007592: 3b04 subs r3, #4 - 8007594: 429d cmp r5, r3 - 8007596: 461a mov r2, r3 - 8007598: d32f bcc.n 80075fa - 800759a: 613c str r4, [r7, #16] - 800759c: 4638 mov r0, r7 - 800759e: f001 f8cf bl 8008740 <__mcmp> - 80075a2: 2800 cmp r0, #0 - 80075a4: db25 blt.n 80075f2 - 80075a6: 4628 mov r0, r5 - 80075a8: f04f 0c00 mov.w ip, #0 - 80075ac: 3601 adds r6, #1 - 80075ae: f858 1b04 ldr.w r1, [r8], #4 - 80075b2: f8d0 e000 ldr.w lr, [r0] - 80075b6: b28b uxth r3, r1 - 80075b8: ebac 0303 sub.w r3, ip, r3 - 80075bc: fa1f f28e uxth.w r2, lr - 80075c0: 4413 add r3, r2 - 80075c2: 0c0a lsrs r2, r1, #16 - 80075c4: ebc2 421e rsb r2, r2, lr, lsr #16 - 80075c8: eb02 4223 add.w r2, r2, r3, asr #16 - 80075cc: b29b uxth r3, r3 - 80075ce: ea43 4302 orr.w r3, r3, r2, lsl #16 - 80075d2: 45c1 cmp r9, r8 - 80075d4: ea4f 4c22 mov.w ip, r2, asr #16 - 80075d8: f840 3b04 str.w r3, [r0], #4 - 80075dc: d2e7 bcs.n 80075ae - 80075de: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 80075e2: eb05 0384 add.w r3, r5, r4, lsl #2 - 80075e6: b922 cbnz r2, 80075f2 - 80075e8: 3b04 subs r3, #4 - 80075ea: 429d cmp r5, r3 - 80075ec: 461a mov r2, r3 - 80075ee: d30a bcc.n 8007606 - 80075f0: 613c str r4, [r7, #16] - 80075f2: 4630 mov r0, r6 - 80075f4: b003 add sp, #12 - 80075f6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80075fa: 6812 ldr r2, [r2, #0] - 80075fc: 3b04 subs r3, #4 - 80075fe: 2a00 cmp r2, #0 - 8007600: d1cb bne.n 800759a - 8007602: 3c01 subs r4, #1 - 8007604: e7c6 b.n 8007594 - 8007606: 6812 ldr r2, [r2, #0] - 8007608: 3b04 subs r3, #4 - 800760a: 2a00 cmp r2, #0 - 800760c: d1f0 bne.n 80075f0 - 800760e: 3c01 subs r4, #1 - 8007610: e7eb b.n 80075ea - 8007612: 2000 movs r0, #0 - 8007614: e7ee b.n 80075f4 - ... - -08007618 <_dtoa_r>: - 8007618: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 800761c: 4616 mov r6, r2 - 800761e: 461f mov r7, r3 - 8007620: 6a44 ldr r4, [r0, #36] ; 0x24 - 8007622: b099 sub sp, #100 ; 0x64 - 8007624: 4605 mov r5, r0 - 8007626: e9cd 6704 strd r6, r7, [sp, #16] - 800762a: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 - 800762e: b974 cbnz r4, 800764e <_dtoa_r+0x36> - 8007630: 2010 movs r0, #16 - 8007632: f7ff fa15 bl 8006a60 - 8007636: 4602 mov r2, r0 - 8007638: 6268 str r0, [r5, #36] ; 0x24 - 800763a: b920 cbnz r0, 8007646 <_dtoa_r+0x2e> - 800763c: 21ea movs r1, #234 ; 0xea - 800763e: 4bae ldr r3, [pc, #696] ; (80078f8 <_dtoa_r+0x2e0>) - 8007640: 48ae ldr r0, [pc, #696] ; (80078fc <_dtoa_r+0x2e4>) - 8007642: f001 faef bl 8008c24 <__assert_func> - 8007646: e9c0 4401 strd r4, r4, [r0, #4] - 800764a: 6004 str r4, [r0, #0] - 800764c: 60c4 str r4, [r0, #12] - 800764e: 6a6b ldr r3, [r5, #36] ; 0x24 - 8007650: 6819 ldr r1, [r3, #0] - 8007652: b151 cbz r1, 800766a <_dtoa_r+0x52> - 8007654: 685a ldr r2, [r3, #4] - 8007656: 2301 movs r3, #1 - 8007658: 4093 lsls r3, r2 - 800765a: 604a str r2, [r1, #4] - 800765c: 608b str r3, [r1, #8] - 800765e: 4628 mov r0, r5 - 8007660: f000 fe34 bl 80082cc <_Bfree> - 8007664: 2200 movs r2, #0 - 8007666: 6a6b ldr r3, [r5, #36] ; 0x24 - 8007668: 601a str r2, [r3, #0] - 800766a: 1e3b subs r3, r7, #0 - 800766c: bfaf iteee ge - 800766e: 2300 movge r3, #0 - 8007670: 2201 movlt r2, #1 - 8007672: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 - 8007676: 9305 strlt r3, [sp, #20] - 8007678: bfa8 it ge - 800767a: f8c8 3000 strge.w r3, [r8] - 800767e: f8dd 9014 ldr.w r9, [sp, #20] - 8007682: 4b9f ldr r3, [pc, #636] ; (8007900 <_dtoa_r+0x2e8>) - 8007684: bfb8 it lt - 8007686: f8c8 2000 strlt.w r2, [r8] - 800768a: ea33 0309 bics.w r3, r3, r9 - 800768e: d119 bne.n 80076c4 <_dtoa_r+0xac> - 8007690: f242 730f movw r3, #9999 ; 0x270f - 8007694: 9a24 ldr r2, [sp, #144] ; 0x90 - 8007696: 6013 str r3, [r2, #0] - 8007698: f3c9 0313 ubfx r3, r9, #0, #20 - 800769c: 4333 orrs r3, r6 - 800769e: f000 8580 beq.w 80081a2 <_dtoa_r+0xb8a> - 80076a2: 9b26 ldr r3, [sp, #152] ; 0x98 - 80076a4: b953 cbnz r3, 80076bc <_dtoa_r+0xa4> - 80076a6: 4b97 ldr r3, [pc, #604] ; (8007904 <_dtoa_r+0x2ec>) - 80076a8: e022 b.n 80076f0 <_dtoa_r+0xd8> - 80076aa: 4b97 ldr r3, [pc, #604] ; (8007908 <_dtoa_r+0x2f0>) - 80076ac: 9308 str r3, [sp, #32] - 80076ae: 3308 adds r3, #8 - 80076b0: 9a26 ldr r2, [sp, #152] ; 0x98 - 80076b2: 6013 str r3, [r2, #0] - 80076b4: 9808 ldr r0, [sp, #32] - 80076b6: b019 add sp, #100 ; 0x64 - 80076b8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80076bc: 4b91 ldr r3, [pc, #580] ; (8007904 <_dtoa_r+0x2ec>) - 80076be: 9308 str r3, [sp, #32] - 80076c0: 3303 adds r3, #3 - 80076c2: e7f5 b.n 80076b0 <_dtoa_r+0x98> - 80076c4: e9dd 3404 ldrd r3, r4, [sp, #16] - 80076c8: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 - 80076cc: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80076d0: 2200 movs r2, #0 - 80076d2: 2300 movs r3, #0 - 80076d4: f7f9 f9d4 bl 8000a80 <__aeabi_dcmpeq> - 80076d8: 4680 mov r8, r0 - 80076da: b158 cbz r0, 80076f4 <_dtoa_r+0xdc> - 80076dc: 2301 movs r3, #1 - 80076de: 9a24 ldr r2, [sp, #144] ; 0x90 - 80076e0: 6013 str r3, [r2, #0] - 80076e2: 9b26 ldr r3, [sp, #152] ; 0x98 - 80076e4: 2b00 cmp r3, #0 - 80076e6: f000 8559 beq.w 800819c <_dtoa_r+0xb84> - 80076ea: 4888 ldr r0, [pc, #544] ; (800790c <_dtoa_r+0x2f4>) - 80076ec: 6018 str r0, [r3, #0] - 80076ee: 1e43 subs r3, r0, #1 - 80076f0: 9308 str r3, [sp, #32] - 80076f2: e7df b.n 80076b4 <_dtoa_r+0x9c> - 80076f4: ab16 add r3, sp, #88 ; 0x58 - 80076f6: 9301 str r3, [sp, #4] - 80076f8: ab17 add r3, sp, #92 ; 0x5c - 80076fa: 9300 str r3, [sp, #0] - 80076fc: 4628 mov r0, r5 - 80076fe: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 - 8007702: f001 f8c9 bl 8008898 <__d2b> - 8007706: f3c9 540a ubfx r4, r9, #20, #11 - 800770a: 4682 mov sl, r0 - 800770c: 2c00 cmp r4, #0 - 800770e: d07e beq.n 800780e <_dtoa_r+0x1f6> - 8007710: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8007714: 9b0d ldr r3, [sp, #52] ; 0x34 - 8007716: f2a4 34ff subw r4, r4, #1023 ; 0x3ff - 800771a: f3c3 0313 ubfx r3, r3, #0, #20 - 800771e: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 - 8007722: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 - 8007726: f8cd 804c str.w r8, [sp, #76] ; 0x4c - 800772a: 2200 movs r2, #0 - 800772c: 4b78 ldr r3, [pc, #480] ; (8007910 <_dtoa_r+0x2f8>) - 800772e: f7f8 fd87 bl 8000240 <__aeabi_dsub> - 8007732: a36b add r3, pc, #428 ; (adr r3, 80078e0 <_dtoa_r+0x2c8>) - 8007734: e9d3 2300 ldrd r2, r3, [r3] - 8007738: f7f8 ff3a bl 80005b0 <__aeabi_dmul> - 800773c: a36a add r3, pc, #424 ; (adr r3, 80078e8 <_dtoa_r+0x2d0>) - 800773e: e9d3 2300 ldrd r2, r3, [r3] - 8007742: f7f8 fd7f bl 8000244 <__adddf3> - 8007746: 4606 mov r6, r0 - 8007748: 4620 mov r0, r4 - 800774a: 460f mov r7, r1 - 800774c: f7f8 fec6 bl 80004dc <__aeabi_i2d> - 8007750: a367 add r3, pc, #412 ; (adr r3, 80078f0 <_dtoa_r+0x2d8>) - 8007752: e9d3 2300 ldrd r2, r3, [r3] - 8007756: f7f8 ff2b bl 80005b0 <__aeabi_dmul> - 800775a: 4602 mov r2, r0 - 800775c: 460b mov r3, r1 - 800775e: 4630 mov r0, r6 - 8007760: 4639 mov r1, r7 - 8007762: f7f8 fd6f bl 8000244 <__adddf3> - 8007766: 4606 mov r6, r0 - 8007768: 460f mov r7, r1 - 800776a: f7f9 f9d1 bl 8000b10 <__aeabi_d2iz> - 800776e: 2200 movs r2, #0 - 8007770: 4681 mov r9, r0 - 8007772: 2300 movs r3, #0 - 8007774: 4630 mov r0, r6 - 8007776: 4639 mov r1, r7 - 8007778: f7f9 f98c bl 8000a94 <__aeabi_dcmplt> - 800777c: b148 cbz r0, 8007792 <_dtoa_r+0x17a> - 800777e: 4648 mov r0, r9 - 8007780: f7f8 feac bl 80004dc <__aeabi_i2d> - 8007784: 4632 mov r2, r6 - 8007786: 463b mov r3, r7 - 8007788: f7f9 f97a bl 8000a80 <__aeabi_dcmpeq> - 800778c: b908 cbnz r0, 8007792 <_dtoa_r+0x17a> - 800778e: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 8007792: f1b9 0f16 cmp.w r9, #22 - 8007796: d857 bhi.n 8007848 <_dtoa_r+0x230> - 8007798: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 800779c: 4b5d ldr r3, [pc, #372] ; (8007914 <_dtoa_r+0x2fc>) - 800779e: eb03 03c9 add.w r3, r3, r9, lsl #3 - 80077a2: e9d3 2300 ldrd r2, r3, [r3] - 80077a6: f7f9 f975 bl 8000a94 <__aeabi_dcmplt> - 80077aa: 2800 cmp r0, #0 - 80077ac: d04e beq.n 800784c <_dtoa_r+0x234> - 80077ae: 2300 movs r3, #0 - 80077b0: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 80077b4: 930f str r3, [sp, #60] ; 0x3c - 80077b6: 9b16 ldr r3, [sp, #88] ; 0x58 - 80077b8: 1b1c subs r4, r3, r4 - 80077ba: 1e63 subs r3, r4, #1 - 80077bc: 9309 str r3, [sp, #36] ; 0x24 - 80077be: bf49 itett mi - 80077c0: f1c4 0301 rsbmi r3, r4, #1 - 80077c4: 2300 movpl r3, #0 - 80077c6: 9306 strmi r3, [sp, #24] - 80077c8: 2300 movmi r3, #0 - 80077ca: bf54 ite pl - 80077cc: 9306 strpl r3, [sp, #24] - 80077ce: 9309 strmi r3, [sp, #36] ; 0x24 - 80077d0: f1b9 0f00 cmp.w r9, #0 - 80077d4: db3c blt.n 8007850 <_dtoa_r+0x238> - 80077d6: 9b09 ldr r3, [sp, #36] ; 0x24 - 80077d8: f8cd 9038 str.w r9, [sp, #56] ; 0x38 - 80077dc: 444b add r3, r9 - 80077de: 9309 str r3, [sp, #36] ; 0x24 - 80077e0: 2300 movs r3, #0 - 80077e2: 930a str r3, [sp, #40] ; 0x28 - 80077e4: 9b22 ldr r3, [sp, #136] ; 0x88 - 80077e6: 2b09 cmp r3, #9 - 80077e8: d86c bhi.n 80078c4 <_dtoa_r+0x2ac> - 80077ea: 2b05 cmp r3, #5 - 80077ec: bfc4 itt gt - 80077ee: 3b04 subgt r3, #4 - 80077f0: 9322 strgt r3, [sp, #136] ; 0x88 - 80077f2: 9b22 ldr r3, [sp, #136] ; 0x88 - 80077f4: bfc8 it gt - 80077f6: 2400 movgt r4, #0 - 80077f8: f1a3 0302 sub.w r3, r3, #2 - 80077fc: bfd8 it le - 80077fe: 2401 movle r4, #1 - 8007800: 2b03 cmp r3, #3 - 8007802: f200 808b bhi.w 800791c <_dtoa_r+0x304> - 8007806: e8df f003 tbb [pc, r3] - 800780a: 4f2d .short 0x4f2d - 800780c: 5b4d .short 0x5b4d - 800780e: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 - 8007812: 441c add r4, r3 - 8007814: f204 4332 addw r3, r4, #1074 ; 0x432 - 8007818: 2b20 cmp r3, #32 - 800781a: bfc3 ittte gt - 800781c: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 - 8007820: f204 4012 addwgt r0, r4, #1042 ; 0x412 - 8007824: fa09 f303 lslgt.w r3, r9, r3 - 8007828: f1c3 0320 rsble r3, r3, #32 - 800782c: bfc6 itte gt - 800782e: fa26 f000 lsrgt.w r0, r6, r0 - 8007832: 4318 orrgt r0, r3 - 8007834: fa06 f003 lslle.w r0, r6, r3 - 8007838: f7f8 fe40 bl 80004bc <__aeabi_ui2d> - 800783c: 2301 movs r3, #1 - 800783e: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 - 8007842: 3c01 subs r4, #1 - 8007844: 9313 str r3, [sp, #76] ; 0x4c - 8007846: e770 b.n 800772a <_dtoa_r+0x112> - 8007848: 2301 movs r3, #1 - 800784a: e7b3 b.n 80077b4 <_dtoa_r+0x19c> - 800784c: 900f str r0, [sp, #60] ; 0x3c - 800784e: e7b2 b.n 80077b6 <_dtoa_r+0x19e> - 8007850: 9b06 ldr r3, [sp, #24] - 8007852: eba3 0309 sub.w r3, r3, r9 - 8007856: 9306 str r3, [sp, #24] - 8007858: f1c9 0300 rsb r3, r9, #0 - 800785c: 930a str r3, [sp, #40] ; 0x28 +08007480 <_printf_float>: + 8007480: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007484: b091 sub sp, #68 ; 0x44 + 8007486: 460c mov r4, r1 + 8007488: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 + 800748c: 4616 mov r6, r2 + 800748e: 461f mov r7, r3 + 8007490: 4605 mov r5, r0 + 8007492: f001 fa63 bl 800895c <_localeconv_r> + 8007496: 6803 ldr r3, [r0, #0] + 8007498: 4618 mov r0, r3 + 800749a: 9309 str r3, [sp, #36] ; 0x24 + 800749c: f7f8 fec4 bl 8000228 + 80074a0: 2300 movs r3, #0 + 80074a2: 930e str r3, [sp, #56] ; 0x38 + 80074a4: f8d8 3000 ldr.w r3, [r8] + 80074a8: 900a str r0, [sp, #40] ; 0x28 + 80074aa: 3307 adds r3, #7 + 80074ac: f023 0307 bic.w r3, r3, #7 + 80074b0: f103 0208 add.w r2, r3, #8 + 80074b4: f894 9018 ldrb.w r9, [r4, #24] + 80074b8: f8d4 b000 ldr.w fp, [r4] + 80074bc: f8c8 2000 str.w r2, [r8] + 80074c0: e9d3 2300 ldrd r2, r3, [r3] + 80074c4: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 + 80074c8: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 + 80074cc: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 + 80074d0: 930b str r3, [sp, #44] ; 0x2c + 80074d2: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 80074d6: 4640 mov r0, r8 + 80074d8: 4b9c ldr r3, [pc, #624] ; (800774c <_printf_float+0x2cc>) + 80074da: 990b ldr r1, [sp, #44] ; 0x2c + 80074dc: f7f9 fb02 bl 8000ae4 <__aeabi_dcmpun> + 80074e0: bb70 cbnz r0, 8007540 <_printf_float+0xc0> + 80074e2: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 80074e6: 4640 mov r0, r8 + 80074e8: 4b98 ldr r3, [pc, #608] ; (800774c <_printf_float+0x2cc>) + 80074ea: 990b ldr r1, [sp, #44] ; 0x2c + 80074ec: f7f9 fadc bl 8000aa8 <__aeabi_dcmple> + 80074f0: bb30 cbnz r0, 8007540 <_printf_float+0xc0> + 80074f2: 2200 movs r2, #0 + 80074f4: 2300 movs r3, #0 + 80074f6: 4640 mov r0, r8 + 80074f8: 4651 mov r1, sl + 80074fa: f7f9 facb bl 8000a94 <__aeabi_dcmplt> + 80074fe: b110 cbz r0, 8007506 <_printf_float+0x86> + 8007500: 232d movs r3, #45 ; 0x2d + 8007502: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8007506: 4b92 ldr r3, [pc, #584] ; (8007750 <_printf_float+0x2d0>) + 8007508: 4892 ldr r0, [pc, #584] ; (8007754 <_printf_float+0x2d4>) + 800750a: f1b9 0f47 cmp.w r9, #71 ; 0x47 + 800750e: bf94 ite ls + 8007510: 4698 movls r8, r3 + 8007512: 4680 movhi r8, r0 + 8007514: 2303 movs r3, #3 + 8007516: f04f 0a00 mov.w sl, #0 + 800751a: 6123 str r3, [r4, #16] + 800751c: f02b 0304 bic.w r3, fp, #4 + 8007520: 6023 str r3, [r4, #0] + 8007522: 4633 mov r3, r6 + 8007524: 4621 mov r1, r4 + 8007526: 4628 mov r0, r5 + 8007528: 9700 str r7, [sp, #0] + 800752a: aa0f add r2, sp, #60 ; 0x3c + 800752c: f000 f9d4 bl 80078d8 <_printf_common> + 8007530: 3001 adds r0, #1 + 8007532: f040 8090 bne.w 8007656 <_printf_float+0x1d6> + 8007536: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800753a: b011 add sp, #68 ; 0x44 + 800753c: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007540: 4642 mov r2, r8 + 8007542: 4653 mov r3, sl + 8007544: 4640 mov r0, r8 + 8007546: 4651 mov r1, sl + 8007548: f7f9 facc bl 8000ae4 <__aeabi_dcmpun> + 800754c: b148 cbz r0, 8007562 <_printf_float+0xe2> + 800754e: f1ba 0f00 cmp.w sl, #0 + 8007552: bfb8 it lt + 8007554: 232d movlt r3, #45 ; 0x2d + 8007556: 4880 ldr r0, [pc, #512] ; (8007758 <_printf_float+0x2d8>) + 8007558: bfb8 it lt + 800755a: f884 3043 strblt.w r3, [r4, #67] ; 0x43 + 800755e: 4b7f ldr r3, [pc, #508] ; (800775c <_printf_float+0x2dc>) + 8007560: e7d3 b.n 800750a <_printf_float+0x8a> + 8007562: 6863 ldr r3, [r4, #4] + 8007564: f009 01df and.w r1, r9, #223 ; 0xdf + 8007568: 1c5a adds r2, r3, #1 + 800756a: d142 bne.n 80075f2 <_printf_float+0x172> + 800756c: 2306 movs r3, #6 + 800756e: 6063 str r3, [r4, #4] + 8007570: 2200 movs r2, #0 + 8007572: 9206 str r2, [sp, #24] + 8007574: aa0e add r2, sp, #56 ; 0x38 + 8007576: e9cd 9204 strd r9, r2, [sp, #16] + 800757a: aa0d add r2, sp, #52 ; 0x34 + 800757c: f44b 6380 orr.w r3, fp, #1024 ; 0x400 + 8007580: 9203 str r2, [sp, #12] + 8007582: f10d 0233 add.w r2, sp, #51 ; 0x33 + 8007586: e9cd 3201 strd r3, r2, [sp, #4] + 800758a: 6023 str r3, [r4, #0] + 800758c: 6863 ldr r3, [r4, #4] + 800758e: 4642 mov r2, r8 + 8007590: 9300 str r3, [sp, #0] + 8007592: 4628 mov r0, r5 + 8007594: 4653 mov r3, sl + 8007596: 910b str r1, [sp, #44] ; 0x2c + 8007598: f7ff fed4 bl 8007344 <__cvt> + 800759c: 990b ldr r1, [sp, #44] ; 0x2c + 800759e: 4680 mov r8, r0 + 80075a0: 2947 cmp r1, #71 ; 0x47 + 80075a2: 990d ldr r1, [sp, #52] ; 0x34 + 80075a4: d108 bne.n 80075b8 <_printf_float+0x138> + 80075a6: 1cc8 adds r0, r1, #3 + 80075a8: db02 blt.n 80075b0 <_printf_float+0x130> + 80075aa: 6863 ldr r3, [r4, #4] + 80075ac: 4299 cmp r1, r3 + 80075ae: dd40 ble.n 8007632 <_printf_float+0x1b2> + 80075b0: f1a9 0902 sub.w r9, r9, #2 + 80075b4: fa5f f989 uxtb.w r9, r9 + 80075b8: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 80075bc: d81f bhi.n 80075fe <_printf_float+0x17e> + 80075be: 464a mov r2, r9 + 80075c0: 3901 subs r1, #1 + 80075c2: f104 0050 add.w r0, r4, #80 ; 0x50 + 80075c6: 910d str r1, [sp, #52] ; 0x34 + 80075c8: f7ff ff1b bl 8007402 <__exponent> + 80075cc: 9a0e ldr r2, [sp, #56] ; 0x38 + 80075ce: 4682 mov sl, r0 + 80075d0: 1813 adds r3, r2, r0 + 80075d2: 2a01 cmp r2, #1 + 80075d4: 6123 str r3, [r4, #16] + 80075d6: dc02 bgt.n 80075de <_printf_float+0x15e> + 80075d8: 6822 ldr r2, [r4, #0] + 80075da: 07d2 lsls r2, r2, #31 + 80075dc: d501 bpl.n 80075e2 <_printf_float+0x162> + 80075de: 3301 adds r3, #1 + 80075e0: 6123 str r3, [r4, #16] + 80075e2: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 + 80075e6: 2b00 cmp r3, #0 + 80075e8: d09b beq.n 8007522 <_printf_float+0xa2> + 80075ea: 232d movs r3, #45 ; 0x2d + 80075ec: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 80075f0: e797 b.n 8007522 <_printf_float+0xa2> + 80075f2: 2947 cmp r1, #71 ; 0x47 + 80075f4: d1bc bne.n 8007570 <_printf_float+0xf0> + 80075f6: 2b00 cmp r3, #0 + 80075f8: d1ba bne.n 8007570 <_printf_float+0xf0> + 80075fa: 2301 movs r3, #1 + 80075fc: e7b7 b.n 800756e <_printf_float+0xee> + 80075fe: f1b9 0f66 cmp.w r9, #102 ; 0x66 + 8007602: d118 bne.n 8007636 <_printf_float+0x1b6> + 8007604: 2900 cmp r1, #0 + 8007606: 6863 ldr r3, [r4, #4] + 8007608: dd0b ble.n 8007622 <_printf_float+0x1a2> + 800760a: 6121 str r1, [r4, #16] + 800760c: b913 cbnz r3, 8007614 <_printf_float+0x194> + 800760e: 6822 ldr r2, [r4, #0] + 8007610: 07d0 lsls r0, r2, #31 + 8007612: d502 bpl.n 800761a <_printf_float+0x19a> + 8007614: 3301 adds r3, #1 + 8007616: 440b add r3, r1 + 8007618: 6123 str r3, [r4, #16] + 800761a: f04f 0a00 mov.w sl, #0 + 800761e: 65a1 str r1, [r4, #88] ; 0x58 + 8007620: e7df b.n 80075e2 <_printf_float+0x162> + 8007622: b913 cbnz r3, 800762a <_printf_float+0x1aa> + 8007624: 6822 ldr r2, [r4, #0] + 8007626: 07d2 lsls r2, r2, #31 + 8007628: d501 bpl.n 800762e <_printf_float+0x1ae> + 800762a: 3302 adds r3, #2 + 800762c: e7f4 b.n 8007618 <_printf_float+0x198> + 800762e: 2301 movs r3, #1 + 8007630: e7f2 b.n 8007618 <_printf_float+0x198> + 8007632: f04f 0967 mov.w r9, #103 ; 0x67 + 8007636: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007638: 4299 cmp r1, r3 + 800763a: db05 blt.n 8007648 <_printf_float+0x1c8> + 800763c: 6823 ldr r3, [r4, #0] + 800763e: 6121 str r1, [r4, #16] + 8007640: 07d8 lsls r0, r3, #31 + 8007642: d5ea bpl.n 800761a <_printf_float+0x19a> + 8007644: 1c4b adds r3, r1, #1 + 8007646: e7e7 b.n 8007618 <_printf_float+0x198> + 8007648: 2900 cmp r1, #0 + 800764a: bfcc ite gt + 800764c: 2201 movgt r2, #1 + 800764e: f1c1 0202 rsble r2, r1, #2 + 8007652: 4413 add r3, r2 + 8007654: e7e0 b.n 8007618 <_printf_float+0x198> + 8007656: 6823 ldr r3, [r4, #0] + 8007658: 055a lsls r2, r3, #21 + 800765a: d407 bmi.n 800766c <_printf_float+0x1ec> + 800765c: 6923 ldr r3, [r4, #16] + 800765e: 4642 mov r2, r8 + 8007660: 4631 mov r1, r6 + 8007662: 4628 mov r0, r5 + 8007664: 47b8 blx r7 + 8007666: 3001 adds r0, #1 + 8007668: d12b bne.n 80076c2 <_printf_float+0x242> + 800766a: e764 b.n 8007536 <_printf_float+0xb6> + 800766c: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 8007670: f240 80dd bls.w 800782e <_printf_float+0x3ae> + 8007674: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 8007678: 2200 movs r2, #0 + 800767a: 2300 movs r3, #0 + 800767c: f7f9 fa00 bl 8000a80 <__aeabi_dcmpeq> + 8007680: 2800 cmp r0, #0 + 8007682: d033 beq.n 80076ec <_printf_float+0x26c> + 8007684: 2301 movs r3, #1 + 8007686: 4631 mov r1, r6 + 8007688: 4628 mov r0, r5 + 800768a: 4a35 ldr r2, [pc, #212] ; (8007760 <_printf_float+0x2e0>) + 800768c: 47b8 blx r7 + 800768e: 3001 adds r0, #1 + 8007690: f43f af51 beq.w 8007536 <_printf_float+0xb6> + 8007694: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007698: 429a cmp r2, r3 + 800769a: db02 blt.n 80076a2 <_printf_float+0x222> + 800769c: 6823 ldr r3, [r4, #0] + 800769e: 07d8 lsls r0, r3, #31 + 80076a0: d50f bpl.n 80076c2 <_printf_float+0x242> + 80076a2: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 80076a6: 4631 mov r1, r6 + 80076a8: 4628 mov r0, r5 + 80076aa: 47b8 blx r7 + 80076ac: 3001 adds r0, #1 + 80076ae: f43f af42 beq.w 8007536 <_printf_float+0xb6> + 80076b2: f04f 0800 mov.w r8, #0 + 80076b6: f104 091a add.w r9, r4, #26 + 80076ba: 9b0e ldr r3, [sp, #56] ; 0x38 + 80076bc: 3b01 subs r3, #1 + 80076be: 4543 cmp r3, r8 + 80076c0: dc09 bgt.n 80076d6 <_printf_float+0x256> + 80076c2: 6823 ldr r3, [r4, #0] + 80076c4: 079b lsls r3, r3, #30 + 80076c6: f100 8102 bmi.w 80078ce <_printf_float+0x44e> + 80076ca: 68e0 ldr r0, [r4, #12] + 80076cc: 9b0f ldr r3, [sp, #60] ; 0x3c + 80076ce: 4298 cmp r0, r3 + 80076d0: bfb8 it lt + 80076d2: 4618 movlt r0, r3 + 80076d4: e731 b.n 800753a <_printf_float+0xba> + 80076d6: 2301 movs r3, #1 + 80076d8: 464a mov r2, r9 + 80076da: 4631 mov r1, r6 + 80076dc: 4628 mov r0, r5 + 80076de: 47b8 blx r7 + 80076e0: 3001 adds r0, #1 + 80076e2: f43f af28 beq.w 8007536 <_printf_float+0xb6> + 80076e6: f108 0801 add.w r8, r8, #1 + 80076ea: e7e6 b.n 80076ba <_printf_float+0x23a> + 80076ec: 9b0d ldr r3, [sp, #52] ; 0x34 + 80076ee: 2b00 cmp r3, #0 + 80076f0: dc38 bgt.n 8007764 <_printf_float+0x2e4> + 80076f2: 2301 movs r3, #1 + 80076f4: 4631 mov r1, r6 + 80076f6: 4628 mov r0, r5 + 80076f8: 4a19 ldr r2, [pc, #100] ; (8007760 <_printf_float+0x2e0>) + 80076fa: 47b8 blx r7 + 80076fc: 3001 adds r0, #1 + 80076fe: f43f af1a beq.w 8007536 <_printf_float+0xb6> + 8007702: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007706: 4313 orrs r3, r2 + 8007708: d102 bne.n 8007710 <_printf_float+0x290> + 800770a: 6823 ldr r3, [r4, #0] + 800770c: 07d9 lsls r1, r3, #31 + 800770e: d5d8 bpl.n 80076c2 <_printf_float+0x242> + 8007710: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007714: 4631 mov r1, r6 + 8007716: 4628 mov r0, r5 + 8007718: 47b8 blx r7 + 800771a: 3001 adds r0, #1 + 800771c: f43f af0b beq.w 8007536 <_printf_float+0xb6> + 8007720: f04f 0900 mov.w r9, #0 + 8007724: f104 0a1a add.w sl, r4, #26 + 8007728: 9b0d ldr r3, [sp, #52] ; 0x34 + 800772a: 425b negs r3, r3 + 800772c: 454b cmp r3, r9 + 800772e: dc01 bgt.n 8007734 <_printf_float+0x2b4> + 8007730: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007732: e794 b.n 800765e <_printf_float+0x1de> + 8007734: 2301 movs r3, #1 + 8007736: 4652 mov r2, sl + 8007738: 4631 mov r1, r6 + 800773a: 4628 mov r0, r5 + 800773c: 47b8 blx r7 + 800773e: 3001 adds r0, #1 + 8007740: f43f aef9 beq.w 8007536 <_printf_float+0xb6> + 8007744: f109 0901 add.w r9, r9, #1 + 8007748: e7ee b.n 8007728 <_printf_float+0x2a8> + 800774a: bf00 nop + 800774c: 7fefffff .word 0x7fefffff + 8007750: 0800aed4 .word 0x0800aed4 + 8007754: 0800aed8 .word 0x0800aed8 + 8007758: 0800aee0 .word 0x0800aee0 + 800775c: 0800aedc .word 0x0800aedc + 8007760: 0800aee4 .word 0x0800aee4 + 8007764: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007766: 6da3 ldr r3, [r4, #88] ; 0x58 + 8007768: 429a cmp r2, r3 + 800776a: bfa8 it ge + 800776c: 461a movge r2, r3 + 800776e: 2a00 cmp r2, #0 + 8007770: 4691 mov r9, r2 + 8007772: dc37 bgt.n 80077e4 <_printf_float+0x364> + 8007774: f04f 0b00 mov.w fp, #0 + 8007778: ea29 79e9 bic.w r9, r9, r9, asr #31 + 800777c: f104 021a add.w r2, r4, #26 + 8007780: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 + 8007784: ebaa 0309 sub.w r3, sl, r9 + 8007788: 455b cmp r3, fp + 800778a: dc33 bgt.n 80077f4 <_printf_float+0x374> + 800778c: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007790: 429a cmp r2, r3 + 8007792: db3b blt.n 800780c <_printf_float+0x38c> + 8007794: 6823 ldr r3, [r4, #0] + 8007796: 07da lsls r2, r3, #31 + 8007798: d438 bmi.n 800780c <_printf_float+0x38c> + 800779a: 9a0e ldr r2, [sp, #56] ; 0x38 + 800779c: 990d ldr r1, [sp, #52] ; 0x34 + 800779e: eba2 030a sub.w r3, r2, sl + 80077a2: eba2 0901 sub.w r9, r2, r1 + 80077a6: 4599 cmp r9, r3 + 80077a8: bfa8 it ge + 80077aa: 4699 movge r9, r3 + 80077ac: f1b9 0f00 cmp.w r9, #0 + 80077b0: dc34 bgt.n 800781c <_printf_float+0x39c> + 80077b2: f04f 0800 mov.w r8, #0 + 80077b6: ea29 79e9 bic.w r9, r9, r9, asr #31 + 80077ba: f104 0a1a add.w sl, r4, #26 + 80077be: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 80077c2: 1a9b subs r3, r3, r2 + 80077c4: eba3 0309 sub.w r3, r3, r9 + 80077c8: 4543 cmp r3, r8 + 80077ca: f77f af7a ble.w 80076c2 <_printf_float+0x242> + 80077ce: 2301 movs r3, #1 + 80077d0: 4652 mov r2, sl + 80077d2: 4631 mov r1, r6 + 80077d4: 4628 mov r0, r5 + 80077d6: 47b8 blx r7 + 80077d8: 3001 adds r0, #1 + 80077da: f43f aeac beq.w 8007536 <_printf_float+0xb6> + 80077de: f108 0801 add.w r8, r8, #1 + 80077e2: e7ec b.n 80077be <_printf_float+0x33e> + 80077e4: 4613 mov r3, r2 + 80077e6: 4631 mov r1, r6 + 80077e8: 4642 mov r2, r8 + 80077ea: 4628 mov r0, r5 + 80077ec: 47b8 blx r7 + 80077ee: 3001 adds r0, #1 + 80077f0: d1c0 bne.n 8007774 <_printf_float+0x2f4> + 80077f2: e6a0 b.n 8007536 <_printf_float+0xb6> + 80077f4: 2301 movs r3, #1 + 80077f6: 4631 mov r1, r6 + 80077f8: 4628 mov r0, r5 + 80077fa: 920b str r2, [sp, #44] ; 0x2c + 80077fc: 47b8 blx r7 + 80077fe: 3001 adds r0, #1 + 8007800: f43f ae99 beq.w 8007536 <_printf_float+0xb6> + 8007804: 9a0b ldr r2, [sp, #44] ; 0x2c + 8007806: f10b 0b01 add.w fp, fp, #1 + 800780a: e7b9 b.n 8007780 <_printf_float+0x300> + 800780c: 4631 mov r1, r6 + 800780e: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007812: 4628 mov r0, r5 + 8007814: 47b8 blx r7 + 8007816: 3001 adds r0, #1 + 8007818: d1bf bne.n 800779a <_printf_float+0x31a> + 800781a: e68c b.n 8007536 <_printf_float+0xb6> + 800781c: 464b mov r3, r9 + 800781e: 4631 mov r1, r6 + 8007820: 4628 mov r0, r5 + 8007822: eb08 020a add.w r2, r8, sl + 8007826: 47b8 blx r7 + 8007828: 3001 adds r0, #1 + 800782a: d1c2 bne.n 80077b2 <_printf_float+0x332> + 800782c: e683 b.n 8007536 <_printf_float+0xb6> + 800782e: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007830: 2a01 cmp r2, #1 + 8007832: dc01 bgt.n 8007838 <_printf_float+0x3b8> + 8007834: 07db lsls r3, r3, #31 + 8007836: d537 bpl.n 80078a8 <_printf_float+0x428> + 8007838: 2301 movs r3, #1 + 800783a: 4642 mov r2, r8 + 800783c: 4631 mov r1, r6 + 800783e: 4628 mov r0, r5 + 8007840: 47b8 blx r7 + 8007842: 3001 adds r0, #1 + 8007844: f43f ae77 beq.w 8007536 <_printf_float+0xb6> + 8007848: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 800784c: 4631 mov r1, r6 + 800784e: 4628 mov r0, r5 + 8007850: 47b8 blx r7 + 8007852: 3001 adds r0, #1 + 8007854: f43f ae6f beq.w 8007536 <_printf_float+0xb6> + 8007858: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 800785c: 2200 movs r2, #0 800785e: 2300 movs r3, #0 - 8007860: 930e str r3, [sp, #56] ; 0x38 - 8007862: e7bf b.n 80077e4 <_dtoa_r+0x1cc> - 8007864: 2300 movs r3, #0 - 8007866: 930b str r3, [sp, #44] ; 0x2c - 8007868: 9b23 ldr r3, [sp, #140] ; 0x8c - 800786a: 2b00 cmp r3, #0 - 800786c: dc59 bgt.n 8007922 <_dtoa_r+0x30a> - 800786e: f04f 0b01 mov.w fp, #1 - 8007872: 465b mov r3, fp - 8007874: f8cd b008 str.w fp, [sp, #8] - 8007878: f8cd b08c str.w fp, [sp, #140] ; 0x8c - 800787c: 2200 movs r2, #0 - 800787e: 6a68 ldr r0, [r5, #36] ; 0x24 - 8007880: 6042 str r2, [r0, #4] - 8007882: 2204 movs r2, #4 - 8007884: f102 0614 add.w r6, r2, #20 - 8007888: 429e cmp r6, r3 - 800788a: 6841 ldr r1, [r0, #4] - 800788c: d94f bls.n 800792e <_dtoa_r+0x316> - 800788e: 4628 mov r0, r5 - 8007890: f000 fcdc bl 800824c <_Balloc> - 8007894: 9008 str r0, [sp, #32] - 8007896: 2800 cmp r0, #0 - 8007898: d14d bne.n 8007936 <_dtoa_r+0x31e> - 800789a: 4602 mov r2, r0 - 800789c: f44f 71d5 mov.w r1, #426 ; 0x1aa - 80078a0: 4b1d ldr r3, [pc, #116] ; (8007918 <_dtoa_r+0x300>) - 80078a2: e6cd b.n 8007640 <_dtoa_r+0x28> - 80078a4: 2301 movs r3, #1 - 80078a6: e7de b.n 8007866 <_dtoa_r+0x24e> - 80078a8: 2300 movs r3, #0 - 80078aa: 930b str r3, [sp, #44] ; 0x2c - 80078ac: 9b23 ldr r3, [sp, #140] ; 0x8c - 80078ae: eb09 0b03 add.w fp, r9, r3 - 80078b2: f10b 0301 add.w r3, fp, #1 - 80078b6: 2b01 cmp r3, #1 - 80078b8: 9302 str r3, [sp, #8] - 80078ba: bfb8 it lt - 80078bc: 2301 movlt r3, #1 - 80078be: e7dd b.n 800787c <_dtoa_r+0x264> - 80078c0: 2301 movs r3, #1 - 80078c2: e7f2 b.n 80078aa <_dtoa_r+0x292> - 80078c4: 2401 movs r4, #1 - 80078c6: 2300 movs r3, #0 - 80078c8: 940b str r4, [sp, #44] ; 0x2c - 80078ca: 9322 str r3, [sp, #136] ; 0x88 - 80078cc: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff - 80078d0: 2200 movs r2, #0 - 80078d2: 2312 movs r3, #18 - 80078d4: f8cd b008 str.w fp, [sp, #8] - 80078d8: 9223 str r2, [sp, #140] ; 0x8c - 80078da: e7cf b.n 800787c <_dtoa_r+0x264> - 80078dc: f3af 8000 nop.w - 80078e0: 636f4361 .word 0x636f4361 - 80078e4: 3fd287a7 .word 0x3fd287a7 - 80078e8: 8b60c8b3 .word 0x8b60c8b3 - 80078ec: 3fc68a28 .word 0x3fc68a28 - 80078f0: 509f79fb .word 0x509f79fb - 80078f4: 3fd34413 .word 0x3fd34413 - 80078f8: 0800a7ad .word 0x0800a7ad - 80078fc: 0800a7c4 .word 0x0800a7c4 - 8007900: 7ff00000 .word 0x7ff00000 - 8007904: 0800a7a9 .word 0x0800a7a9 - 8007908: 0800a7a0 .word 0x0800a7a0 - 800790c: 0800a77d .word 0x0800a77d - 8007910: 3ff80000 .word 0x3ff80000 - 8007914: 0800a8c0 .word 0x0800a8c0 - 8007918: 0800a823 .word 0x0800a823 - 800791c: 2301 movs r3, #1 - 800791e: 930b str r3, [sp, #44] ; 0x2c - 8007920: e7d4 b.n 80078cc <_dtoa_r+0x2b4> - 8007922: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c - 8007926: 465b mov r3, fp - 8007928: f8cd b008 str.w fp, [sp, #8] - 800792c: e7a6 b.n 800787c <_dtoa_r+0x264> - 800792e: 3101 adds r1, #1 - 8007930: 6041 str r1, [r0, #4] - 8007932: 0052 lsls r2, r2, #1 - 8007934: e7a6 b.n 8007884 <_dtoa_r+0x26c> - 8007936: 6a6b ldr r3, [r5, #36] ; 0x24 - 8007938: 9a08 ldr r2, [sp, #32] - 800793a: 601a str r2, [r3, #0] - 800793c: 9b02 ldr r3, [sp, #8] - 800793e: 2b0e cmp r3, #14 - 8007940: f200 80a8 bhi.w 8007a94 <_dtoa_r+0x47c> - 8007944: 2c00 cmp r4, #0 - 8007946: f000 80a5 beq.w 8007a94 <_dtoa_r+0x47c> - 800794a: f1b9 0f00 cmp.w r9, #0 - 800794e: dd34 ble.n 80079ba <_dtoa_r+0x3a2> - 8007950: 4a9a ldr r2, [pc, #616] ; (8007bbc <_dtoa_r+0x5a4>) - 8007952: f009 030f and.w r3, r9, #15 - 8007956: eb02 03c3 add.w r3, r2, r3, lsl #3 - 800795a: f419 7f80 tst.w r9, #256 ; 0x100 - 800795e: e9d3 3400 ldrd r3, r4, [r3] - 8007962: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 8007966: ea4f 1429 mov.w r4, r9, asr #4 - 800796a: d016 beq.n 800799a <_dtoa_r+0x382> - 800796c: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8007970: 4b93 ldr r3, [pc, #588] ; (8007bc0 <_dtoa_r+0x5a8>) - 8007972: 2703 movs r7, #3 - 8007974: e9d3 2308 ldrd r2, r3, [r3, #32] - 8007978: f7f8 ff44 bl 8000804 <__aeabi_ddiv> - 800797c: e9cd 0104 strd r0, r1, [sp, #16] - 8007980: f004 040f and.w r4, r4, #15 - 8007984: 4e8e ldr r6, [pc, #568] ; (8007bc0 <_dtoa_r+0x5a8>) - 8007986: b954 cbnz r4, 800799e <_dtoa_r+0x386> - 8007988: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 800798c: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007990: f7f8 ff38 bl 8000804 <__aeabi_ddiv> - 8007994: e9cd 0104 strd r0, r1, [sp, #16] - 8007998: e029 b.n 80079ee <_dtoa_r+0x3d6> - 800799a: 2702 movs r7, #2 - 800799c: e7f2 b.n 8007984 <_dtoa_r+0x36c> - 800799e: 07e1 lsls r1, r4, #31 - 80079a0: d508 bpl.n 80079b4 <_dtoa_r+0x39c> - 80079a2: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 80079a6: e9d6 2300 ldrd r2, r3, [r6] - 80079aa: f7f8 fe01 bl 80005b0 <__aeabi_dmul> - 80079ae: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80079b2: 3701 adds r7, #1 - 80079b4: 1064 asrs r4, r4, #1 - 80079b6: 3608 adds r6, #8 - 80079b8: e7e5 b.n 8007986 <_dtoa_r+0x36e> - 80079ba: f000 80a5 beq.w 8007b08 <_dtoa_r+0x4f0> - 80079be: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80079c2: f1c9 0400 rsb r4, r9, #0 - 80079c6: 4b7d ldr r3, [pc, #500] ; (8007bbc <_dtoa_r+0x5a4>) - 80079c8: f004 020f and.w r2, r4, #15 - 80079cc: eb03 03c2 add.w r3, r3, r2, lsl #3 - 80079d0: e9d3 2300 ldrd r2, r3, [r3] - 80079d4: f7f8 fdec bl 80005b0 <__aeabi_dmul> - 80079d8: 2702 movs r7, #2 - 80079da: 2300 movs r3, #0 - 80079dc: e9cd 0104 strd r0, r1, [sp, #16] - 80079e0: 4e77 ldr r6, [pc, #476] ; (8007bc0 <_dtoa_r+0x5a8>) - 80079e2: 1124 asrs r4, r4, #4 - 80079e4: 2c00 cmp r4, #0 - 80079e6: f040 8084 bne.w 8007af2 <_dtoa_r+0x4da> - 80079ea: 2b00 cmp r3, #0 - 80079ec: d1d2 bne.n 8007994 <_dtoa_r+0x37c> - 80079ee: 9b0f ldr r3, [sp, #60] ; 0x3c - 80079f0: 2b00 cmp r3, #0 - 80079f2: f000 808b beq.w 8007b0c <_dtoa_r+0x4f4> - 80079f6: e9dd 3404 ldrd r3, r4, [sp, #16] - 80079fa: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 80079fe: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8007a02: 2200 movs r2, #0 - 8007a04: 4b6f ldr r3, [pc, #444] ; (8007bc4 <_dtoa_r+0x5ac>) - 8007a06: f7f9 f845 bl 8000a94 <__aeabi_dcmplt> - 8007a0a: 2800 cmp r0, #0 - 8007a0c: d07e beq.n 8007b0c <_dtoa_r+0x4f4> - 8007a0e: 9b02 ldr r3, [sp, #8] - 8007a10: 2b00 cmp r3, #0 - 8007a12: d07b beq.n 8007b0c <_dtoa_r+0x4f4> - 8007a14: f1bb 0f00 cmp.w fp, #0 - 8007a18: dd38 ble.n 8007a8c <_dtoa_r+0x474> - 8007a1a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8007a1e: 2200 movs r2, #0 - 8007a20: 4b69 ldr r3, [pc, #420] ; (8007bc8 <_dtoa_r+0x5b0>) - 8007a22: f7f8 fdc5 bl 80005b0 <__aeabi_dmul> - 8007a26: 465c mov r4, fp - 8007a28: e9cd 0104 strd r0, r1, [sp, #16] - 8007a2c: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff - 8007a30: 3701 adds r7, #1 - 8007a32: 4638 mov r0, r7 - 8007a34: f7f8 fd52 bl 80004dc <__aeabi_i2d> - 8007a38: e9dd 2304 ldrd r2, r3, [sp, #16] - 8007a3c: f7f8 fdb8 bl 80005b0 <__aeabi_dmul> - 8007a40: 2200 movs r2, #0 - 8007a42: 4b62 ldr r3, [pc, #392] ; (8007bcc <_dtoa_r+0x5b4>) - 8007a44: f7f8 fbfe bl 8000244 <__adddf3> - 8007a48: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 - 8007a4c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8007a50: 9611 str r6, [sp, #68] ; 0x44 - 8007a52: 2c00 cmp r4, #0 - 8007a54: d15d bne.n 8007b12 <_dtoa_r+0x4fa> - 8007a56: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007a5a: 2200 movs r2, #0 - 8007a5c: 4b5c ldr r3, [pc, #368] ; (8007bd0 <_dtoa_r+0x5b8>) - 8007a5e: f7f8 fbef bl 8000240 <__aeabi_dsub> - 8007a62: 4602 mov r2, r0 - 8007a64: 460b mov r3, r1 - 8007a66: e9cd 2304 strd r2, r3, [sp, #16] - 8007a6a: 4633 mov r3, r6 - 8007a6c: 9a10 ldr r2, [sp, #64] ; 0x40 - 8007a6e: f7f9 f82f bl 8000ad0 <__aeabi_dcmpgt> - 8007a72: 2800 cmp r0, #0 - 8007a74: f040 829e bne.w 8007fb4 <_dtoa_r+0x99c> - 8007a78: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007a7c: 9a10 ldr r2, [sp, #64] ; 0x40 - 8007a7e: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 - 8007a82: f7f9 f807 bl 8000a94 <__aeabi_dcmplt> - 8007a86: 2800 cmp r0, #0 - 8007a88: f040 8292 bne.w 8007fb0 <_dtoa_r+0x998> - 8007a8c: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 - 8007a90: e9cd 3404 strd r3, r4, [sp, #16] - 8007a94: 9b17 ldr r3, [sp, #92] ; 0x5c - 8007a96: 2b00 cmp r3, #0 - 8007a98: f2c0 8153 blt.w 8007d42 <_dtoa_r+0x72a> - 8007a9c: f1b9 0f0e cmp.w r9, #14 - 8007aa0: f300 814f bgt.w 8007d42 <_dtoa_r+0x72a> - 8007aa4: 4b45 ldr r3, [pc, #276] ; (8007bbc <_dtoa_r+0x5a4>) - 8007aa6: eb03 03c9 add.w r3, r3, r9, lsl #3 - 8007aaa: e9d3 3400 ldrd r3, r4, [r3] - 8007aae: e9cd 3406 strd r3, r4, [sp, #24] - 8007ab2: 9b23 ldr r3, [sp, #140] ; 0x8c - 8007ab4: 2b00 cmp r3, #0 - 8007ab6: f280 80db bge.w 8007c70 <_dtoa_r+0x658> - 8007aba: 9b02 ldr r3, [sp, #8] - 8007abc: 2b00 cmp r3, #0 - 8007abe: f300 80d7 bgt.w 8007c70 <_dtoa_r+0x658> - 8007ac2: f040 8274 bne.w 8007fae <_dtoa_r+0x996> - 8007ac6: e9dd 0106 ldrd r0, r1, [sp, #24] - 8007aca: 2200 movs r2, #0 - 8007acc: 4b40 ldr r3, [pc, #256] ; (8007bd0 <_dtoa_r+0x5b8>) - 8007ace: f7f8 fd6f bl 80005b0 <__aeabi_dmul> - 8007ad2: e9dd 2304 ldrd r2, r3, [sp, #16] - 8007ad6: f7f8 fff1 bl 8000abc <__aeabi_dcmpge> - 8007ada: 9c02 ldr r4, [sp, #8] - 8007adc: 4626 mov r6, r4 - 8007ade: 2800 cmp r0, #0 - 8007ae0: f040 824a bne.w 8007f78 <_dtoa_r+0x960> - 8007ae4: 2331 movs r3, #49 ; 0x31 - 8007ae6: 9f08 ldr r7, [sp, #32] - 8007ae8: f109 0901 add.w r9, r9, #1 - 8007aec: f807 3b01 strb.w r3, [r7], #1 - 8007af0: e246 b.n 8007f80 <_dtoa_r+0x968> - 8007af2: 07e2 lsls r2, r4, #31 - 8007af4: d505 bpl.n 8007b02 <_dtoa_r+0x4ea> - 8007af6: e9d6 2300 ldrd r2, r3, [r6] - 8007afa: f7f8 fd59 bl 80005b0 <__aeabi_dmul> - 8007afe: 2301 movs r3, #1 - 8007b00: 3701 adds r7, #1 - 8007b02: 1064 asrs r4, r4, #1 - 8007b04: 3608 adds r6, #8 - 8007b06: e76d b.n 80079e4 <_dtoa_r+0x3cc> - 8007b08: 2702 movs r7, #2 - 8007b0a: e770 b.n 80079ee <_dtoa_r+0x3d6> - 8007b0c: 46c8 mov r8, r9 - 8007b0e: 9c02 ldr r4, [sp, #8] - 8007b10: e78f b.n 8007a32 <_dtoa_r+0x41a> - 8007b12: 9908 ldr r1, [sp, #32] - 8007b14: 4b29 ldr r3, [pc, #164] ; (8007bbc <_dtoa_r+0x5a4>) - 8007b16: 4421 add r1, r4 - 8007b18: 9112 str r1, [sp, #72] ; 0x48 - 8007b1a: 990b ldr r1, [sp, #44] ; 0x2c - 8007b1c: eb03 03c4 add.w r3, r3, r4, lsl #3 - 8007b20: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 - 8007b24: e953 2302 ldrd r2, r3, [r3, #-8] - 8007b28: 2900 cmp r1, #0 - 8007b2a: d055 beq.n 8007bd8 <_dtoa_r+0x5c0> - 8007b2c: 2000 movs r0, #0 - 8007b2e: 4929 ldr r1, [pc, #164] ; (8007bd4 <_dtoa_r+0x5bc>) - 8007b30: f7f8 fe68 bl 8000804 <__aeabi_ddiv> - 8007b34: 463b mov r3, r7 - 8007b36: 4632 mov r2, r6 - 8007b38: f7f8 fb82 bl 8000240 <__aeabi_dsub> - 8007b3c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8007b40: 9f08 ldr r7, [sp, #32] - 8007b42: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007b46: f7f8 ffe3 bl 8000b10 <__aeabi_d2iz> - 8007b4a: 4604 mov r4, r0 - 8007b4c: f7f8 fcc6 bl 80004dc <__aeabi_i2d> - 8007b50: 4602 mov r2, r0 - 8007b52: 460b mov r3, r1 - 8007b54: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007b58: f7f8 fb72 bl 8000240 <__aeabi_dsub> - 8007b5c: 4602 mov r2, r0 - 8007b5e: 460b mov r3, r1 - 8007b60: 3430 adds r4, #48 ; 0x30 - 8007b62: e9cd 2304 strd r2, r3, [sp, #16] - 8007b66: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8007b6a: f807 4b01 strb.w r4, [r7], #1 - 8007b6e: f7f8 ff91 bl 8000a94 <__aeabi_dcmplt> - 8007b72: 2800 cmp r0, #0 - 8007b74: d174 bne.n 8007c60 <_dtoa_r+0x648> - 8007b76: e9dd 2304 ldrd r2, r3, [sp, #16] - 8007b7a: 2000 movs r0, #0 - 8007b7c: 4911 ldr r1, [pc, #68] ; (8007bc4 <_dtoa_r+0x5ac>) - 8007b7e: f7f8 fb5f bl 8000240 <__aeabi_dsub> - 8007b82: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8007b86: f7f8 ff85 bl 8000a94 <__aeabi_dcmplt> - 8007b8a: 2800 cmp r0, #0 - 8007b8c: f040 80b6 bne.w 8007cfc <_dtoa_r+0x6e4> - 8007b90: 9b12 ldr r3, [sp, #72] ; 0x48 - 8007b92: 429f cmp r7, r3 - 8007b94: f43f af7a beq.w 8007a8c <_dtoa_r+0x474> - 8007b98: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8007b9c: 2200 movs r2, #0 - 8007b9e: 4b0a ldr r3, [pc, #40] ; (8007bc8 <_dtoa_r+0x5b0>) - 8007ba0: f7f8 fd06 bl 80005b0 <__aeabi_dmul> - 8007ba4: 2200 movs r2, #0 - 8007ba6: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8007baa: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007bae: 4b06 ldr r3, [pc, #24] ; (8007bc8 <_dtoa_r+0x5b0>) - 8007bb0: f7f8 fcfe bl 80005b0 <__aeabi_dmul> - 8007bb4: e9cd 0104 strd r0, r1, [sp, #16] - 8007bb8: e7c3 b.n 8007b42 <_dtoa_r+0x52a> - 8007bba: bf00 nop - 8007bbc: 0800a8c0 .word 0x0800a8c0 - 8007bc0: 0800a898 .word 0x0800a898 - 8007bc4: 3ff00000 .word 0x3ff00000 - 8007bc8: 40240000 .word 0x40240000 - 8007bcc: 401c0000 .word 0x401c0000 - 8007bd0: 40140000 .word 0x40140000 - 8007bd4: 3fe00000 .word 0x3fe00000 - 8007bd8: 4630 mov r0, r6 - 8007bda: 4639 mov r1, r7 - 8007bdc: f7f8 fce8 bl 80005b0 <__aeabi_dmul> - 8007be0: 9b12 ldr r3, [sp, #72] ; 0x48 - 8007be2: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8007be6: 9c08 ldr r4, [sp, #32] - 8007be8: 9314 str r3, [sp, #80] ; 0x50 - 8007bea: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007bee: f7f8 ff8f bl 8000b10 <__aeabi_d2iz> - 8007bf2: 9015 str r0, [sp, #84] ; 0x54 - 8007bf4: f7f8 fc72 bl 80004dc <__aeabi_i2d> - 8007bf8: 4602 mov r2, r0 - 8007bfa: 460b mov r3, r1 - 8007bfc: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007c00: f7f8 fb1e bl 8000240 <__aeabi_dsub> - 8007c04: 9b15 ldr r3, [sp, #84] ; 0x54 - 8007c06: 4606 mov r6, r0 - 8007c08: 3330 adds r3, #48 ; 0x30 - 8007c0a: f804 3b01 strb.w r3, [r4], #1 - 8007c0e: 9b12 ldr r3, [sp, #72] ; 0x48 - 8007c10: 460f mov r7, r1 - 8007c12: 429c cmp r4, r3 - 8007c14: f04f 0200 mov.w r2, #0 - 8007c18: d124 bne.n 8007c64 <_dtoa_r+0x64c> - 8007c1a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8007c1e: 4bb3 ldr r3, [pc, #716] ; (8007eec <_dtoa_r+0x8d4>) - 8007c20: f7f8 fb10 bl 8000244 <__adddf3> - 8007c24: 4602 mov r2, r0 - 8007c26: 460b mov r3, r1 - 8007c28: 4630 mov r0, r6 - 8007c2a: 4639 mov r1, r7 - 8007c2c: f7f8 ff50 bl 8000ad0 <__aeabi_dcmpgt> - 8007c30: 2800 cmp r0, #0 - 8007c32: d162 bne.n 8007cfa <_dtoa_r+0x6e2> - 8007c34: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8007c38: 2000 movs r0, #0 - 8007c3a: 49ac ldr r1, [pc, #688] ; (8007eec <_dtoa_r+0x8d4>) - 8007c3c: f7f8 fb00 bl 8000240 <__aeabi_dsub> - 8007c40: 4602 mov r2, r0 - 8007c42: 460b mov r3, r1 - 8007c44: 4630 mov r0, r6 - 8007c46: 4639 mov r1, r7 - 8007c48: f7f8 ff24 bl 8000a94 <__aeabi_dcmplt> - 8007c4c: 2800 cmp r0, #0 - 8007c4e: f43f af1d beq.w 8007a8c <_dtoa_r+0x474> - 8007c52: 9f14 ldr r7, [sp, #80] ; 0x50 - 8007c54: 1e7b subs r3, r7, #1 - 8007c56: 9314 str r3, [sp, #80] ; 0x50 - 8007c58: f817 3c01 ldrb.w r3, [r7, #-1] - 8007c5c: 2b30 cmp r3, #48 ; 0x30 - 8007c5e: d0f8 beq.n 8007c52 <_dtoa_r+0x63a> - 8007c60: 46c1 mov r9, r8 - 8007c62: e03a b.n 8007cda <_dtoa_r+0x6c2> - 8007c64: 4ba2 ldr r3, [pc, #648] ; (8007ef0 <_dtoa_r+0x8d8>) - 8007c66: f7f8 fca3 bl 80005b0 <__aeabi_dmul> - 8007c6a: e9cd 0104 strd r0, r1, [sp, #16] - 8007c6e: e7bc b.n 8007bea <_dtoa_r+0x5d2> - 8007c70: 9f08 ldr r7, [sp, #32] - 8007c72: e9dd 2306 ldrd r2, r3, [sp, #24] - 8007c76: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007c7a: f7f8 fdc3 bl 8000804 <__aeabi_ddiv> - 8007c7e: f7f8 ff47 bl 8000b10 <__aeabi_d2iz> - 8007c82: 4604 mov r4, r0 - 8007c84: f7f8 fc2a bl 80004dc <__aeabi_i2d> - 8007c88: e9dd 2306 ldrd r2, r3, [sp, #24] - 8007c8c: f7f8 fc90 bl 80005b0 <__aeabi_dmul> - 8007c90: f104 0630 add.w r6, r4, #48 ; 0x30 - 8007c94: 460b mov r3, r1 - 8007c96: 4602 mov r2, r0 - 8007c98: e9dd 0104 ldrd r0, r1, [sp, #16] - 8007c9c: f7f8 fad0 bl 8000240 <__aeabi_dsub> - 8007ca0: f807 6b01 strb.w r6, [r7], #1 - 8007ca4: 9e08 ldr r6, [sp, #32] - 8007ca6: 9b02 ldr r3, [sp, #8] - 8007ca8: 1bbe subs r6, r7, r6 - 8007caa: 42b3 cmp r3, r6 - 8007cac: d13a bne.n 8007d24 <_dtoa_r+0x70c> - 8007cae: 4602 mov r2, r0 - 8007cb0: 460b mov r3, r1 - 8007cb2: f7f8 fac7 bl 8000244 <__adddf3> - 8007cb6: 4602 mov r2, r0 - 8007cb8: 460b mov r3, r1 - 8007cba: e9cd 2302 strd r2, r3, [sp, #8] - 8007cbe: e9dd 2306 ldrd r2, r3, [sp, #24] - 8007cc2: f7f8 ff05 bl 8000ad0 <__aeabi_dcmpgt> - 8007cc6: bb58 cbnz r0, 8007d20 <_dtoa_r+0x708> - 8007cc8: e9dd 2306 ldrd r2, r3, [sp, #24] - 8007ccc: e9dd 0102 ldrd r0, r1, [sp, #8] - 8007cd0: f7f8 fed6 bl 8000a80 <__aeabi_dcmpeq> - 8007cd4: b108 cbz r0, 8007cda <_dtoa_r+0x6c2> - 8007cd6: 07e1 lsls r1, r4, #31 - 8007cd8: d422 bmi.n 8007d20 <_dtoa_r+0x708> - 8007cda: 4628 mov r0, r5 - 8007cdc: 4651 mov r1, sl - 8007cde: f000 faf5 bl 80082cc <_Bfree> - 8007ce2: 2300 movs r3, #0 - 8007ce4: 703b strb r3, [r7, #0] - 8007ce6: 9b24 ldr r3, [sp, #144] ; 0x90 - 8007ce8: f109 0001 add.w r0, r9, #1 - 8007cec: 6018 str r0, [r3, #0] - 8007cee: 9b26 ldr r3, [sp, #152] ; 0x98 - 8007cf0: 2b00 cmp r3, #0 - 8007cf2: f43f acdf beq.w 80076b4 <_dtoa_r+0x9c> - 8007cf6: 601f str r7, [r3, #0] - 8007cf8: e4dc b.n 80076b4 <_dtoa_r+0x9c> - 8007cfa: 4627 mov r7, r4 - 8007cfc: 463b mov r3, r7 - 8007cfe: 461f mov r7, r3 - 8007d00: f813 2d01 ldrb.w r2, [r3, #-1]! - 8007d04: 2a39 cmp r2, #57 ; 0x39 - 8007d06: d107 bne.n 8007d18 <_dtoa_r+0x700> - 8007d08: 9a08 ldr r2, [sp, #32] - 8007d0a: 429a cmp r2, r3 - 8007d0c: d1f7 bne.n 8007cfe <_dtoa_r+0x6e6> - 8007d0e: 2230 movs r2, #48 ; 0x30 - 8007d10: 9908 ldr r1, [sp, #32] - 8007d12: f108 0801 add.w r8, r8, #1 - 8007d16: 700a strb r2, [r1, #0] - 8007d18: 781a ldrb r2, [r3, #0] - 8007d1a: 3201 adds r2, #1 - 8007d1c: 701a strb r2, [r3, #0] - 8007d1e: e79f b.n 8007c60 <_dtoa_r+0x648> - 8007d20: 46c8 mov r8, r9 - 8007d22: e7eb b.n 8007cfc <_dtoa_r+0x6e4> - 8007d24: 2200 movs r2, #0 - 8007d26: 4b72 ldr r3, [pc, #456] ; (8007ef0 <_dtoa_r+0x8d8>) - 8007d28: f7f8 fc42 bl 80005b0 <__aeabi_dmul> - 8007d2c: 4602 mov r2, r0 - 8007d2e: 460b mov r3, r1 - 8007d30: e9cd 2304 strd r2, r3, [sp, #16] - 8007d34: 2200 movs r2, #0 - 8007d36: 2300 movs r3, #0 - 8007d38: f7f8 fea2 bl 8000a80 <__aeabi_dcmpeq> - 8007d3c: 2800 cmp r0, #0 - 8007d3e: d098 beq.n 8007c72 <_dtoa_r+0x65a> - 8007d40: e7cb b.n 8007cda <_dtoa_r+0x6c2> - 8007d42: 9a0b ldr r2, [sp, #44] ; 0x2c - 8007d44: 2a00 cmp r2, #0 - 8007d46: f000 80cd beq.w 8007ee4 <_dtoa_r+0x8cc> - 8007d4a: 9a22 ldr r2, [sp, #136] ; 0x88 - 8007d4c: 2a01 cmp r2, #1 - 8007d4e: f300 80af bgt.w 8007eb0 <_dtoa_r+0x898> - 8007d52: 9a13 ldr r2, [sp, #76] ; 0x4c - 8007d54: 2a00 cmp r2, #0 - 8007d56: f000 80a7 beq.w 8007ea8 <_dtoa_r+0x890> - 8007d5a: f203 4333 addw r3, r3, #1075 ; 0x433 - 8007d5e: 9c0a ldr r4, [sp, #40] ; 0x28 - 8007d60: 9f06 ldr r7, [sp, #24] - 8007d62: 9a06 ldr r2, [sp, #24] - 8007d64: 2101 movs r1, #1 - 8007d66: 441a add r2, r3 - 8007d68: 9206 str r2, [sp, #24] - 8007d6a: 9a09 ldr r2, [sp, #36] ; 0x24 - 8007d6c: 4628 mov r0, r5 - 8007d6e: 441a add r2, r3 - 8007d70: 9209 str r2, [sp, #36] ; 0x24 - 8007d72: f000 fb65 bl 8008440 <__i2b> - 8007d76: 4606 mov r6, r0 - 8007d78: 2f00 cmp r7, #0 - 8007d7a: dd0c ble.n 8007d96 <_dtoa_r+0x77e> - 8007d7c: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007d7e: 2b00 cmp r3, #0 - 8007d80: dd09 ble.n 8007d96 <_dtoa_r+0x77e> - 8007d82: 42bb cmp r3, r7 - 8007d84: bfa8 it ge - 8007d86: 463b movge r3, r7 - 8007d88: 9a06 ldr r2, [sp, #24] - 8007d8a: 1aff subs r7, r7, r3 - 8007d8c: 1ad2 subs r2, r2, r3 - 8007d8e: 9206 str r2, [sp, #24] - 8007d90: 9a09 ldr r2, [sp, #36] ; 0x24 - 8007d92: 1ad3 subs r3, r2, r3 - 8007d94: 9309 str r3, [sp, #36] ; 0x24 - 8007d96: 9b0a ldr r3, [sp, #40] ; 0x28 - 8007d98: b1f3 cbz r3, 8007dd8 <_dtoa_r+0x7c0> - 8007d9a: 9b0b ldr r3, [sp, #44] ; 0x2c - 8007d9c: 2b00 cmp r3, #0 - 8007d9e: f000 80a9 beq.w 8007ef4 <_dtoa_r+0x8dc> - 8007da2: 2c00 cmp r4, #0 - 8007da4: dd10 ble.n 8007dc8 <_dtoa_r+0x7b0> - 8007da6: 4631 mov r1, r6 - 8007da8: 4622 mov r2, r4 - 8007daa: 4628 mov r0, r5 - 8007dac: f000 fc02 bl 80085b4 <__pow5mult> - 8007db0: 4652 mov r2, sl - 8007db2: 4601 mov r1, r0 - 8007db4: 4606 mov r6, r0 - 8007db6: 4628 mov r0, r5 - 8007db8: f000 fb58 bl 800846c <__multiply> - 8007dbc: 4680 mov r8, r0 - 8007dbe: 4651 mov r1, sl - 8007dc0: 4628 mov r0, r5 - 8007dc2: f000 fa83 bl 80082cc <_Bfree> - 8007dc6: 46c2 mov sl, r8 - 8007dc8: 9b0a ldr r3, [sp, #40] ; 0x28 - 8007dca: 1b1a subs r2, r3, r4 - 8007dcc: d004 beq.n 8007dd8 <_dtoa_r+0x7c0> - 8007dce: 4651 mov r1, sl - 8007dd0: 4628 mov r0, r5 - 8007dd2: f000 fbef bl 80085b4 <__pow5mult> - 8007dd6: 4682 mov sl, r0 - 8007dd8: 2101 movs r1, #1 - 8007dda: 4628 mov r0, r5 - 8007ddc: f000 fb30 bl 8008440 <__i2b> - 8007de0: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007de2: 4604 mov r4, r0 - 8007de4: 2b00 cmp r3, #0 - 8007de6: f340 8087 ble.w 8007ef8 <_dtoa_r+0x8e0> - 8007dea: 461a mov r2, r3 - 8007dec: 4601 mov r1, r0 - 8007dee: 4628 mov r0, r5 - 8007df0: f000 fbe0 bl 80085b4 <__pow5mult> - 8007df4: 9b22 ldr r3, [sp, #136] ; 0x88 - 8007df6: 4604 mov r4, r0 - 8007df8: 2b01 cmp r3, #1 - 8007dfa: f340 8080 ble.w 8007efe <_dtoa_r+0x8e6> - 8007dfe: f04f 0800 mov.w r8, #0 - 8007e02: 6923 ldr r3, [r4, #16] - 8007e04: eb04 0383 add.w r3, r4, r3, lsl #2 - 8007e08: 6918 ldr r0, [r3, #16] - 8007e0a: f000 facb bl 80083a4 <__hi0bits> - 8007e0e: f1c0 0020 rsb r0, r0, #32 - 8007e12: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007e14: 4418 add r0, r3 - 8007e16: f010 001f ands.w r0, r0, #31 - 8007e1a: f000 8092 beq.w 8007f42 <_dtoa_r+0x92a> - 8007e1e: f1c0 0320 rsb r3, r0, #32 - 8007e22: 2b04 cmp r3, #4 - 8007e24: f340 808a ble.w 8007f3c <_dtoa_r+0x924> - 8007e28: f1c0 001c rsb r0, r0, #28 - 8007e2c: 9b06 ldr r3, [sp, #24] - 8007e2e: 4407 add r7, r0 - 8007e30: 4403 add r3, r0 - 8007e32: 9306 str r3, [sp, #24] - 8007e34: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007e36: 4403 add r3, r0 - 8007e38: 9309 str r3, [sp, #36] ; 0x24 - 8007e3a: 9b06 ldr r3, [sp, #24] - 8007e3c: 2b00 cmp r3, #0 - 8007e3e: dd05 ble.n 8007e4c <_dtoa_r+0x834> - 8007e40: 4651 mov r1, sl - 8007e42: 461a mov r2, r3 - 8007e44: 4628 mov r0, r5 - 8007e46: f000 fc0f bl 8008668 <__lshift> - 8007e4a: 4682 mov sl, r0 - 8007e4c: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007e4e: 2b00 cmp r3, #0 - 8007e50: dd05 ble.n 8007e5e <_dtoa_r+0x846> - 8007e52: 4621 mov r1, r4 - 8007e54: 461a mov r2, r3 - 8007e56: 4628 mov r0, r5 - 8007e58: f000 fc06 bl 8008668 <__lshift> - 8007e5c: 4604 mov r4, r0 - 8007e5e: 9b0f ldr r3, [sp, #60] ; 0x3c - 8007e60: 2b00 cmp r3, #0 - 8007e62: d070 beq.n 8007f46 <_dtoa_r+0x92e> - 8007e64: 4621 mov r1, r4 - 8007e66: 4650 mov r0, sl - 8007e68: f000 fc6a bl 8008740 <__mcmp> - 8007e6c: 2800 cmp r0, #0 - 8007e6e: da6a bge.n 8007f46 <_dtoa_r+0x92e> - 8007e70: 2300 movs r3, #0 - 8007e72: 4651 mov r1, sl - 8007e74: 220a movs r2, #10 - 8007e76: 4628 mov r0, r5 - 8007e78: f000 fa4a bl 8008310 <__multadd> - 8007e7c: 9b0b ldr r3, [sp, #44] ; 0x2c - 8007e7e: 4682 mov sl, r0 - 8007e80: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 8007e84: 2b00 cmp r3, #0 - 8007e86: f000 8193 beq.w 80081b0 <_dtoa_r+0xb98> - 8007e8a: 4631 mov r1, r6 - 8007e8c: 2300 movs r3, #0 - 8007e8e: 220a movs r2, #10 - 8007e90: 4628 mov r0, r5 - 8007e92: f000 fa3d bl 8008310 <__multadd> - 8007e96: f1bb 0f00 cmp.w fp, #0 - 8007e9a: 4606 mov r6, r0 - 8007e9c: f300 8093 bgt.w 8007fc6 <_dtoa_r+0x9ae> - 8007ea0: 9b22 ldr r3, [sp, #136] ; 0x88 - 8007ea2: 2b02 cmp r3, #2 - 8007ea4: dc57 bgt.n 8007f56 <_dtoa_r+0x93e> - 8007ea6: e08e b.n 8007fc6 <_dtoa_r+0x9ae> - 8007ea8: 9b16 ldr r3, [sp, #88] ; 0x58 - 8007eaa: f1c3 0336 rsb r3, r3, #54 ; 0x36 - 8007eae: e756 b.n 8007d5e <_dtoa_r+0x746> - 8007eb0: 9b02 ldr r3, [sp, #8] - 8007eb2: 1e5c subs r4, r3, #1 - 8007eb4: 9b0a ldr r3, [sp, #40] ; 0x28 - 8007eb6: 42a3 cmp r3, r4 - 8007eb8: bfb7 itett lt - 8007eba: 9b0a ldrlt r3, [sp, #40] ; 0x28 - 8007ebc: 1b1c subge r4, r3, r4 - 8007ebe: 1ae2 sublt r2, r4, r3 - 8007ec0: 9b0e ldrlt r3, [sp, #56] ; 0x38 - 8007ec2: bfbe ittt lt - 8007ec4: 940a strlt r4, [sp, #40] ; 0x28 - 8007ec6: 189b addlt r3, r3, r2 - 8007ec8: 930e strlt r3, [sp, #56] ; 0x38 - 8007eca: 9b02 ldr r3, [sp, #8] - 8007ecc: bfb8 it lt - 8007ece: 2400 movlt r4, #0 - 8007ed0: 2b00 cmp r3, #0 - 8007ed2: bfbb ittet lt - 8007ed4: 9b06 ldrlt r3, [sp, #24] - 8007ed6: 9a02 ldrlt r2, [sp, #8] - 8007ed8: 9f06 ldrge r7, [sp, #24] - 8007eda: 1a9f sublt r7, r3, r2 - 8007edc: bfac ite ge - 8007ede: 9b02 ldrge r3, [sp, #8] - 8007ee0: 2300 movlt r3, #0 - 8007ee2: e73e b.n 8007d62 <_dtoa_r+0x74a> - 8007ee4: 9c0a ldr r4, [sp, #40] ; 0x28 - 8007ee6: 9f06 ldr r7, [sp, #24] - 8007ee8: 9e0b ldr r6, [sp, #44] ; 0x2c - 8007eea: e745 b.n 8007d78 <_dtoa_r+0x760> - 8007eec: 3fe00000 .word 0x3fe00000 - 8007ef0: 40240000 .word 0x40240000 - 8007ef4: 9a0a ldr r2, [sp, #40] ; 0x28 - 8007ef6: e76a b.n 8007dce <_dtoa_r+0x7b6> - 8007ef8: 9b22 ldr r3, [sp, #136] ; 0x88 - 8007efa: 2b01 cmp r3, #1 - 8007efc: dc19 bgt.n 8007f32 <_dtoa_r+0x91a> - 8007efe: 9b04 ldr r3, [sp, #16] - 8007f00: b9bb cbnz r3, 8007f32 <_dtoa_r+0x91a> - 8007f02: 9b05 ldr r3, [sp, #20] - 8007f04: f3c3 0313 ubfx r3, r3, #0, #20 - 8007f08: b99b cbnz r3, 8007f32 <_dtoa_r+0x91a> - 8007f0a: 9b05 ldr r3, [sp, #20] - 8007f0c: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 - 8007f10: 0d1b lsrs r3, r3, #20 - 8007f12: 051b lsls r3, r3, #20 - 8007f14: b183 cbz r3, 8007f38 <_dtoa_r+0x920> - 8007f16: f04f 0801 mov.w r8, #1 - 8007f1a: 9b06 ldr r3, [sp, #24] - 8007f1c: 3301 adds r3, #1 - 8007f1e: 9306 str r3, [sp, #24] - 8007f20: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007f22: 3301 adds r3, #1 + 8007860: f7f9 f90e bl 8000a80 <__aeabi_dcmpeq> + 8007864: b9d8 cbnz r0, 800789e <_printf_float+0x41e> + 8007866: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007868: f108 0201 add.w r2, r8, #1 + 800786c: 3b01 subs r3, #1 + 800786e: 4631 mov r1, r6 + 8007870: 4628 mov r0, r5 + 8007872: 47b8 blx r7 + 8007874: 3001 adds r0, #1 + 8007876: d10e bne.n 8007896 <_printf_float+0x416> + 8007878: e65d b.n 8007536 <_printf_float+0xb6> + 800787a: 2301 movs r3, #1 + 800787c: 464a mov r2, r9 + 800787e: 4631 mov r1, r6 + 8007880: 4628 mov r0, r5 + 8007882: 47b8 blx r7 + 8007884: 3001 adds r0, #1 + 8007886: f43f ae56 beq.w 8007536 <_printf_float+0xb6> + 800788a: f108 0801 add.w r8, r8, #1 + 800788e: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007890: 3b01 subs r3, #1 + 8007892: 4543 cmp r3, r8 + 8007894: dcf1 bgt.n 800787a <_printf_float+0x3fa> + 8007896: 4653 mov r3, sl + 8007898: f104 0250 add.w r2, r4, #80 ; 0x50 + 800789c: e6e0 b.n 8007660 <_printf_float+0x1e0> + 800789e: f04f 0800 mov.w r8, #0 + 80078a2: f104 091a add.w r9, r4, #26 + 80078a6: e7f2 b.n 800788e <_printf_float+0x40e> + 80078a8: 2301 movs r3, #1 + 80078aa: 4642 mov r2, r8 + 80078ac: e7df b.n 800786e <_printf_float+0x3ee> + 80078ae: 2301 movs r3, #1 + 80078b0: 464a mov r2, r9 + 80078b2: 4631 mov r1, r6 + 80078b4: 4628 mov r0, r5 + 80078b6: 47b8 blx r7 + 80078b8: 3001 adds r0, #1 + 80078ba: f43f ae3c beq.w 8007536 <_printf_float+0xb6> + 80078be: f108 0801 add.w r8, r8, #1 + 80078c2: 68e3 ldr r3, [r4, #12] + 80078c4: 990f ldr r1, [sp, #60] ; 0x3c + 80078c6: 1a5b subs r3, r3, r1 + 80078c8: 4543 cmp r3, r8 + 80078ca: dcf0 bgt.n 80078ae <_printf_float+0x42e> + 80078cc: e6fd b.n 80076ca <_printf_float+0x24a> + 80078ce: f04f 0800 mov.w r8, #0 + 80078d2: f104 0919 add.w r9, r4, #25 + 80078d6: e7f4 b.n 80078c2 <_printf_float+0x442> + +080078d8 <_printf_common>: + 80078d8: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 80078dc: 4616 mov r6, r2 + 80078de: 4699 mov r9, r3 + 80078e0: 688a ldr r2, [r1, #8] + 80078e2: 690b ldr r3, [r1, #16] + 80078e4: 4607 mov r7, r0 + 80078e6: 4293 cmp r3, r2 + 80078e8: bfb8 it lt + 80078ea: 4613 movlt r3, r2 + 80078ec: 6033 str r3, [r6, #0] + 80078ee: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 + 80078f2: 460c mov r4, r1 + 80078f4: f8dd 8020 ldr.w r8, [sp, #32] + 80078f8: b10a cbz r2, 80078fe <_printf_common+0x26> + 80078fa: 3301 adds r3, #1 + 80078fc: 6033 str r3, [r6, #0] + 80078fe: 6823 ldr r3, [r4, #0] + 8007900: 0699 lsls r1, r3, #26 + 8007902: bf42 ittt mi + 8007904: 6833 ldrmi r3, [r6, #0] + 8007906: 3302 addmi r3, #2 + 8007908: 6033 strmi r3, [r6, #0] + 800790a: 6825 ldr r5, [r4, #0] + 800790c: f015 0506 ands.w r5, r5, #6 + 8007910: d106 bne.n 8007920 <_printf_common+0x48> + 8007912: f104 0a19 add.w sl, r4, #25 + 8007916: 68e3 ldr r3, [r4, #12] + 8007918: 6832 ldr r2, [r6, #0] + 800791a: 1a9b subs r3, r3, r2 + 800791c: 42ab cmp r3, r5 + 800791e: dc28 bgt.n 8007972 <_printf_common+0x9a> + 8007920: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 + 8007924: 1e13 subs r3, r2, #0 + 8007926: 6822 ldr r2, [r4, #0] + 8007928: bf18 it ne + 800792a: 2301 movne r3, #1 + 800792c: 0692 lsls r2, r2, #26 + 800792e: d42d bmi.n 800798c <_printf_common+0xb4> + 8007930: 4649 mov r1, r9 + 8007932: 4638 mov r0, r7 + 8007934: f104 0243 add.w r2, r4, #67 ; 0x43 + 8007938: 47c0 blx r8 + 800793a: 3001 adds r0, #1 + 800793c: d020 beq.n 8007980 <_printf_common+0xa8> + 800793e: 6823 ldr r3, [r4, #0] + 8007940: 68e5 ldr r5, [r4, #12] + 8007942: f003 0306 and.w r3, r3, #6 + 8007946: 2b04 cmp r3, #4 + 8007948: bf18 it ne + 800794a: 2500 movne r5, #0 + 800794c: 6832 ldr r2, [r6, #0] + 800794e: f04f 0600 mov.w r6, #0 + 8007952: 68a3 ldr r3, [r4, #8] + 8007954: bf08 it eq + 8007956: 1aad subeq r5, r5, r2 + 8007958: 6922 ldr r2, [r4, #16] + 800795a: bf08 it eq + 800795c: ea25 75e5 biceq.w r5, r5, r5, asr #31 + 8007960: 4293 cmp r3, r2 + 8007962: bfc4 itt gt + 8007964: 1a9b subgt r3, r3, r2 + 8007966: 18ed addgt r5, r5, r3 + 8007968: 341a adds r4, #26 + 800796a: 42b5 cmp r5, r6 + 800796c: d11a bne.n 80079a4 <_printf_common+0xcc> + 800796e: 2000 movs r0, #0 + 8007970: e008 b.n 8007984 <_printf_common+0xac> + 8007972: 2301 movs r3, #1 + 8007974: 4652 mov r2, sl + 8007976: 4649 mov r1, r9 + 8007978: 4638 mov r0, r7 + 800797a: 47c0 blx r8 + 800797c: 3001 adds r0, #1 + 800797e: d103 bne.n 8007988 <_printf_common+0xb0> + 8007980: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007984: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8007988: 3501 adds r5, #1 + 800798a: e7c4 b.n 8007916 <_printf_common+0x3e> + 800798c: 2030 movs r0, #48 ; 0x30 + 800798e: 18e1 adds r1, r4, r3 + 8007990: f881 0043 strb.w r0, [r1, #67] ; 0x43 + 8007994: 1c5a adds r2, r3, #1 + 8007996: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 + 800799a: 4422 add r2, r4 + 800799c: 3302 adds r3, #2 + 800799e: f882 1043 strb.w r1, [r2, #67] ; 0x43 + 80079a2: e7c5 b.n 8007930 <_printf_common+0x58> + 80079a4: 2301 movs r3, #1 + 80079a6: 4622 mov r2, r4 + 80079a8: 4649 mov r1, r9 + 80079aa: 4638 mov r0, r7 + 80079ac: 47c0 blx r8 + 80079ae: 3001 adds r0, #1 + 80079b0: d0e6 beq.n 8007980 <_printf_common+0xa8> + 80079b2: 3601 adds r6, #1 + 80079b4: e7d9 b.n 800796a <_printf_common+0x92> + ... + +080079b8 <_printf_i>: + 80079b8: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} + 80079bc: 460c mov r4, r1 + 80079be: 7e27 ldrb r7, [r4, #24] + 80079c0: 4691 mov r9, r2 + 80079c2: 2f78 cmp r7, #120 ; 0x78 + 80079c4: 4680 mov r8, r0 + 80079c6: 469a mov sl, r3 + 80079c8: 990c ldr r1, [sp, #48] ; 0x30 + 80079ca: f104 0243 add.w r2, r4, #67 ; 0x43 + 80079ce: d807 bhi.n 80079e0 <_printf_i+0x28> + 80079d0: 2f62 cmp r7, #98 ; 0x62 + 80079d2: d80a bhi.n 80079ea <_printf_i+0x32> + 80079d4: 2f00 cmp r7, #0 + 80079d6: f000 80d9 beq.w 8007b8c <_printf_i+0x1d4> + 80079da: 2f58 cmp r7, #88 ; 0x58 + 80079dc: f000 80a4 beq.w 8007b28 <_printf_i+0x170> + 80079e0: f104 0642 add.w r6, r4, #66 ; 0x42 + 80079e4: f884 7042 strb.w r7, [r4, #66] ; 0x42 + 80079e8: e03a b.n 8007a60 <_printf_i+0xa8> + 80079ea: f1a7 0363 sub.w r3, r7, #99 ; 0x63 + 80079ee: 2b15 cmp r3, #21 + 80079f0: d8f6 bhi.n 80079e0 <_printf_i+0x28> + 80079f2: a001 add r0, pc, #4 ; (adr r0, 80079f8 <_printf_i+0x40>) + 80079f4: f850 f023 ldr.w pc, [r0, r3, lsl #2] + 80079f8: 08007a51 .word 0x08007a51 + 80079fc: 08007a65 .word 0x08007a65 + 8007a00: 080079e1 .word 0x080079e1 + 8007a04: 080079e1 .word 0x080079e1 + 8007a08: 080079e1 .word 0x080079e1 + 8007a0c: 080079e1 .word 0x080079e1 + 8007a10: 08007a65 .word 0x08007a65 + 8007a14: 080079e1 .word 0x080079e1 + 8007a18: 080079e1 .word 0x080079e1 + 8007a1c: 080079e1 .word 0x080079e1 + 8007a20: 080079e1 .word 0x080079e1 + 8007a24: 08007b73 .word 0x08007b73 + 8007a28: 08007a95 .word 0x08007a95 + 8007a2c: 08007b55 .word 0x08007b55 + 8007a30: 080079e1 .word 0x080079e1 + 8007a34: 080079e1 .word 0x080079e1 + 8007a38: 08007b95 .word 0x08007b95 + 8007a3c: 080079e1 .word 0x080079e1 + 8007a40: 08007a95 .word 0x08007a95 + 8007a44: 080079e1 .word 0x080079e1 + 8007a48: 080079e1 .word 0x080079e1 + 8007a4c: 08007b5d .word 0x08007b5d + 8007a50: 680b ldr r3, [r1, #0] + 8007a52: f104 0642 add.w r6, r4, #66 ; 0x42 + 8007a56: 1d1a adds r2, r3, #4 + 8007a58: 681b ldr r3, [r3, #0] + 8007a5a: 600a str r2, [r1, #0] + 8007a5c: f884 3042 strb.w r3, [r4, #66] ; 0x42 + 8007a60: 2301 movs r3, #1 + 8007a62: e0a4 b.n 8007bae <_printf_i+0x1f6> + 8007a64: 6825 ldr r5, [r4, #0] + 8007a66: 6808 ldr r0, [r1, #0] + 8007a68: 062e lsls r6, r5, #24 + 8007a6a: f100 0304 add.w r3, r0, #4 + 8007a6e: d50a bpl.n 8007a86 <_printf_i+0xce> + 8007a70: 6805 ldr r5, [r0, #0] + 8007a72: 600b str r3, [r1, #0] + 8007a74: 2d00 cmp r5, #0 + 8007a76: da03 bge.n 8007a80 <_printf_i+0xc8> + 8007a78: 232d movs r3, #45 ; 0x2d + 8007a7a: 426d negs r5, r5 + 8007a7c: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8007a80: 230a movs r3, #10 + 8007a82: 485e ldr r0, [pc, #376] ; (8007bfc <_printf_i+0x244>) + 8007a84: e019 b.n 8007aba <_printf_i+0x102> + 8007a86: f015 0f40 tst.w r5, #64 ; 0x40 + 8007a8a: 6805 ldr r5, [r0, #0] + 8007a8c: 600b str r3, [r1, #0] + 8007a8e: bf18 it ne + 8007a90: b22d sxthne r5, r5 + 8007a92: e7ef b.n 8007a74 <_printf_i+0xbc> + 8007a94: 680b ldr r3, [r1, #0] + 8007a96: 6825 ldr r5, [r4, #0] + 8007a98: 1d18 adds r0, r3, #4 + 8007a9a: 6008 str r0, [r1, #0] + 8007a9c: 0628 lsls r0, r5, #24 + 8007a9e: d501 bpl.n 8007aa4 <_printf_i+0xec> + 8007aa0: 681d ldr r5, [r3, #0] + 8007aa2: e002 b.n 8007aaa <_printf_i+0xf2> + 8007aa4: 0669 lsls r1, r5, #25 + 8007aa6: d5fb bpl.n 8007aa0 <_printf_i+0xe8> + 8007aa8: 881d ldrh r5, [r3, #0] + 8007aaa: 2f6f cmp r7, #111 ; 0x6f + 8007aac: bf0c ite eq + 8007aae: 2308 moveq r3, #8 + 8007ab0: 230a movne r3, #10 + 8007ab2: 4852 ldr r0, [pc, #328] ; (8007bfc <_printf_i+0x244>) + 8007ab4: 2100 movs r1, #0 + 8007ab6: f884 1043 strb.w r1, [r4, #67] ; 0x43 + 8007aba: 6866 ldr r6, [r4, #4] + 8007abc: 2e00 cmp r6, #0 + 8007abe: bfa8 it ge + 8007ac0: 6821 ldrge r1, [r4, #0] + 8007ac2: 60a6 str r6, [r4, #8] + 8007ac4: bfa4 itt ge + 8007ac6: f021 0104 bicge.w r1, r1, #4 + 8007aca: 6021 strge r1, [r4, #0] + 8007acc: b90d cbnz r5, 8007ad2 <_printf_i+0x11a> + 8007ace: 2e00 cmp r6, #0 + 8007ad0: d04d beq.n 8007b6e <_printf_i+0x1b6> + 8007ad2: 4616 mov r6, r2 + 8007ad4: fbb5 f1f3 udiv r1, r5, r3 + 8007ad8: fb03 5711 mls r7, r3, r1, r5 + 8007adc: 5dc7 ldrb r7, [r0, r7] + 8007ade: f806 7d01 strb.w r7, [r6, #-1]! + 8007ae2: 462f mov r7, r5 + 8007ae4: 42bb cmp r3, r7 + 8007ae6: 460d mov r5, r1 + 8007ae8: d9f4 bls.n 8007ad4 <_printf_i+0x11c> + 8007aea: 2b08 cmp r3, #8 + 8007aec: d10b bne.n 8007b06 <_printf_i+0x14e> + 8007aee: 6823 ldr r3, [r4, #0] + 8007af0: 07df lsls r7, r3, #31 + 8007af2: d508 bpl.n 8007b06 <_printf_i+0x14e> + 8007af4: 6923 ldr r3, [r4, #16] + 8007af6: 6861 ldr r1, [r4, #4] + 8007af8: 4299 cmp r1, r3 + 8007afa: bfde ittt le + 8007afc: 2330 movle r3, #48 ; 0x30 + 8007afe: f806 3c01 strble.w r3, [r6, #-1] + 8007b02: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff + 8007b06: 1b92 subs r2, r2, r6 + 8007b08: 6122 str r2, [r4, #16] + 8007b0a: 464b mov r3, r9 + 8007b0c: 4621 mov r1, r4 + 8007b0e: 4640 mov r0, r8 + 8007b10: f8cd a000 str.w sl, [sp] + 8007b14: aa03 add r2, sp, #12 + 8007b16: f7ff fedf bl 80078d8 <_printf_common> + 8007b1a: 3001 adds r0, #1 + 8007b1c: d14c bne.n 8007bb8 <_printf_i+0x200> + 8007b1e: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007b22: b004 add sp, #16 + 8007b24: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8007b28: 4834 ldr r0, [pc, #208] ; (8007bfc <_printf_i+0x244>) + 8007b2a: f884 7045 strb.w r7, [r4, #69] ; 0x45 + 8007b2e: 680e ldr r6, [r1, #0] + 8007b30: 6823 ldr r3, [r4, #0] + 8007b32: f856 5b04 ldr.w r5, [r6], #4 + 8007b36: 061f lsls r7, r3, #24 + 8007b38: 600e str r6, [r1, #0] + 8007b3a: d514 bpl.n 8007b66 <_printf_i+0x1ae> + 8007b3c: 07d9 lsls r1, r3, #31 + 8007b3e: bf44 itt mi + 8007b40: f043 0320 orrmi.w r3, r3, #32 + 8007b44: 6023 strmi r3, [r4, #0] + 8007b46: b91d cbnz r5, 8007b50 <_printf_i+0x198> + 8007b48: 6823 ldr r3, [r4, #0] + 8007b4a: f023 0320 bic.w r3, r3, #32 + 8007b4e: 6023 str r3, [r4, #0] + 8007b50: 2310 movs r3, #16 + 8007b52: e7af b.n 8007ab4 <_printf_i+0xfc> + 8007b54: 6823 ldr r3, [r4, #0] + 8007b56: f043 0320 orr.w r3, r3, #32 + 8007b5a: 6023 str r3, [r4, #0] + 8007b5c: 2378 movs r3, #120 ; 0x78 + 8007b5e: 4828 ldr r0, [pc, #160] ; (8007c00 <_printf_i+0x248>) + 8007b60: f884 3045 strb.w r3, [r4, #69] ; 0x45 + 8007b64: e7e3 b.n 8007b2e <_printf_i+0x176> + 8007b66: 065e lsls r6, r3, #25 + 8007b68: bf48 it mi + 8007b6a: b2ad uxthmi r5, r5 + 8007b6c: e7e6 b.n 8007b3c <_printf_i+0x184> + 8007b6e: 4616 mov r6, r2 + 8007b70: e7bb b.n 8007aea <_printf_i+0x132> + 8007b72: 680b ldr r3, [r1, #0] + 8007b74: 6826 ldr r6, [r4, #0] + 8007b76: 1d1d adds r5, r3, #4 + 8007b78: 6960 ldr r0, [r4, #20] + 8007b7a: 600d str r5, [r1, #0] + 8007b7c: 0635 lsls r5, r6, #24 + 8007b7e: 681b ldr r3, [r3, #0] + 8007b80: d501 bpl.n 8007b86 <_printf_i+0x1ce> + 8007b82: 6018 str r0, [r3, #0] + 8007b84: e002 b.n 8007b8c <_printf_i+0x1d4> + 8007b86: 0671 lsls r1, r6, #25 + 8007b88: d5fb bpl.n 8007b82 <_printf_i+0x1ca> + 8007b8a: 8018 strh r0, [r3, #0] + 8007b8c: 2300 movs r3, #0 + 8007b8e: 4616 mov r6, r2 + 8007b90: 6123 str r3, [r4, #16] + 8007b92: e7ba b.n 8007b0a <_printf_i+0x152> + 8007b94: 680b ldr r3, [r1, #0] + 8007b96: 1d1a adds r2, r3, #4 + 8007b98: 600a str r2, [r1, #0] + 8007b9a: 681e ldr r6, [r3, #0] + 8007b9c: 2100 movs r1, #0 + 8007b9e: 4630 mov r0, r6 + 8007ba0: 6862 ldr r2, [r4, #4] + 8007ba2: f000 fedf bl 8008964 + 8007ba6: b108 cbz r0, 8007bac <_printf_i+0x1f4> + 8007ba8: 1b80 subs r0, r0, r6 + 8007baa: 6060 str r0, [r4, #4] + 8007bac: 6863 ldr r3, [r4, #4] + 8007bae: 6123 str r3, [r4, #16] + 8007bb0: 2300 movs r3, #0 + 8007bb2: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8007bb6: e7a8 b.n 8007b0a <_printf_i+0x152> + 8007bb8: 4632 mov r2, r6 + 8007bba: 4649 mov r1, r9 + 8007bbc: 4640 mov r0, r8 + 8007bbe: 6923 ldr r3, [r4, #16] + 8007bc0: 47d0 blx sl + 8007bc2: 3001 adds r0, #1 + 8007bc4: d0ab beq.n 8007b1e <_printf_i+0x166> + 8007bc6: 6823 ldr r3, [r4, #0] + 8007bc8: 079b lsls r3, r3, #30 + 8007bca: d413 bmi.n 8007bf4 <_printf_i+0x23c> + 8007bcc: 68e0 ldr r0, [r4, #12] + 8007bce: 9b03 ldr r3, [sp, #12] + 8007bd0: 4298 cmp r0, r3 + 8007bd2: bfb8 it lt + 8007bd4: 4618 movlt r0, r3 + 8007bd6: e7a4 b.n 8007b22 <_printf_i+0x16a> + 8007bd8: 2301 movs r3, #1 + 8007bda: 4632 mov r2, r6 + 8007bdc: 4649 mov r1, r9 + 8007bde: 4640 mov r0, r8 + 8007be0: 47d0 blx sl + 8007be2: 3001 adds r0, #1 + 8007be4: d09b beq.n 8007b1e <_printf_i+0x166> + 8007be6: 3501 adds r5, #1 + 8007be8: 68e3 ldr r3, [r4, #12] + 8007bea: 9903 ldr r1, [sp, #12] + 8007bec: 1a5b subs r3, r3, r1 + 8007bee: 42ab cmp r3, r5 + 8007bf0: dcf2 bgt.n 8007bd8 <_printf_i+0x220> + 8007bf2: e7eb b.n 8007bcc <_printf_i+0x214> + 8007bf4: 2500 movs r5, #0 + 8007bf6: f104 0619 add.w r6, r4, #25 + 8007bfa: e7f5 b.n 8007be8 <_printf_i+0x230> + 8007bfc: 0800aee6 .word 0x0800aee6 + 8007c00: 0800aef7 .word 0x0800aef7 + +08007c04 <_sbrk_r>: + 8007c04: b538 push {r3, r4, r5, lr} + 8007c06: 2300 movs r3, #0 + 8007c08: 4d05 ldr r5, [pc, #20] ; (8007c20 <_sbrk_r+0x1c>) + 8007c0a: 4604 mov r4, r0 + 8007c0c: 4608 mov r0, r1 + 8007c0e: 602b str r3, [r5, #0] + 8007c10: f7f9 fe9e bl 8001950 <_sbrk> + 8007c14: 1c43 adds r3, r0, #1 + 8007c16: d102 bne.n 8007c1e <_sbrk_r+0x1a> + 8007c18: 682b ldr r3, [r5, #0] + 8007c1a: b103 cbz r3, 8007c1e <_sbrk_r+0x1a> + 8007c1c: 6023 str r3, [r4, #0] + 8007c1e: bd38 pop {r3, r4, r5, pc} + 8007c20: 2000249c .word 0x2000249c + +08007c24 : + 8007c24: b40e push {r1, r2, r3} + 8007c26: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 + 8007c2a: b500 push {lr} + 8007c2c: b09c sub sp, #112 ; 0x70 + 8007c2e: ab1d add r3, sp, #116 ; 0x74 + 8007c30: 9002 str r0, [sp, #8] + 8007c32: 9006 str r0, [sp, #24] + 8007c34: 9107 str r1, [sp, #28] + 8007c36: 9104 str r1, [sp, #16] + 8007c38: 4808 ldr r0, [pc, #32] ; (8007c5c ) + 8007c3a: 4909 ldr r1, [pc, #36] ; (8007c60 ) + 8007c3c: f853 2b04 ldr.w r2, [r3], #4 + 8007c40: 9105 str r1, [sp, #20] + 8007c42: 6800 ldr r0, [r0, #0] + 8007c44: a902 add r1, sp, #8 + 8007c46: 9301 str r3, [sp, #4] + 8007c48: f001 faa0 bl 800918c <_svfiprintf_r> + 8007c4c: 2200 movs r2, #0 + 8007c4e: 9b02 ldr r3, [sp, #8] + 8007c50: 701a strb r2, [r3, #0] + 8007c52: b01c add sp, #112 ; 0x70 + 8007c54: f85d eb04 ldr.w lr, [sp], #4 + 8007c58: b003 add sp, #12 + 8007c5a: 4770 bx lr + 8007c5c: 2000000c .word 0x2000000c + 8007c60: ffff0208 .word 0xffff0208 + +08007c64 : + 8007c64: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007c68: 6903 ldr r3, [r0, #16] + 8007c6a: 690c ldr r4, [r1, #16] + 8007c6c: 4607 mov r7, r0 + 8007c6e: 42a3 cmp r3, r4 + 8007c70: f2c0 8083 blt.w 8007d7a + 8007c74: 3c01 subs r4, #1 + 8007c76: f100 0514 add.w r5, r0, #20 + 8007c7a: f101 0814 add.w r8, r1, #20 + 8007c7e: eb05 0384 add.w r3, r5, r4, lsl #2 + 8007c82: 9301 str r3, [sp, #4] + 8007c84: f858 3024 ldr.w r3, [r8, r4, lsl #2] + 8007c88: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 8007c8c: 3301 adds r3, #1 + 8007c8e: 429a cmp r2, r3 + 8007c90: fbb2 f6f3 udiv r6, r2, r3 + 8007c94: ea4f 0b84 mov.w fp, r4, lsl #2 + 8007c98: eb08 0984 add.w r9, r8, r4, lsl #2 + 8007c9c: d332 bcc.n 8007d04 + 8007c9e: f04f 0e00 mov.w lr, #0 + 8007ca2: 4640 mov r0, r8 + 8007ca4: 46ac mov ip, r5 + 8007ca6: 46f2 mov sl, lr + 8007ca8: f850 2b04 ldr.w r2, [r0], #4 + 8007cac: b293 uxth r3, r2 + 8007cae: fb06 e303 mla r3, r6, r3, lr + 8007cb2: 0c12 lsrs r2, r2, #16 + 8007cb4: ea4f 4e13 mov.w lr, r3, lsr #16 + 8007cb8: fb06 e202 mla r2, r6, r2, lr + 8007cbc: b29b uxth r3, r3 + 8007cbe: ebaa 0303 sub.w r3, sl, r3 + 8007cc2: f8dc a000 ldr.w sl, [ip] + 8007cc6: ea4f 4e12 mov.w lr, r2, lsr #16 + 8007cca: fa1f fa8a uxth.w sl, sl + 8007cce: 4453 add r3, sl + 8007cd0: fa1f fa82 uxth.w sl, r2 + 8007cd4: f8dc 2000 ldr.w r2, [ip] + 8007cd8: 4581 cmp r9, r0 + 8007cda: ebca 4212 rsb r2, sl, r2, lsr #16 + 8007cde: eb02 4223 add.w r2, r2, r3, asr #16 + 8007ce2: b29b uxth r3, r3 + 8007ce4: ea43 4302 orr.w r3, r3, r2, lsl #16 + 8007ce8: ea4f 4a22 mov.w sl, r2, asr #16 + 8007cec: f84c 3b04 str.w r3, [ip], #4 + 8007cf0: d2da bcs.n 8007ca8 + 8007cf2: f855 300b ldr.w r3, [r5, fp] + 8007cf6: b92b cbnz r3, 8007d04 + 8007cf8: 9b01 ldr r3, [sp, #4] + 8007cfa: 3b04 subs r3, #4 + 8007cfc: 429d cmp r5, r3 + 8007cfe: 461a mov r2, r3 + 8007d00: d32f bcc.n 8007d62 + 8007d02: 613c str r4, [r7, #16] + 8007d04: 4638 mov r0, r7 + 8007d06: f001 f8cf bl 8008ea8 <__mcmp> + 8007d0a: 2800 cmp r0, #0 + 8007d0c: db25 blt.n 8007d5a + 8007d0e: 4628 mov r0, r5 + 8007d10: f04f 0c00 mov.w ip, #0 + 8007d14: 3601 adds r6, #1 + 8007d16: f858 1b04 ldr.w r1, [r8], #4 + 8007d1a: f8d0 e000 ldr.w lr, [r0] + 8007d1e: b28b uxth r3, r1 + 8007d20: ebac 0303 sub.w r3, ip, r3 + 8007d24: fa1f f28e uxth.w r2, lr + 8007d28: 4413 add r3, r2 + 8007d2a: 0c0a lsrs r2, r1, #16 + 8007d2c: ebc2 421e rsb r2, r2, lr, lsr #16 + 8007d30: eb02 4223 add.w r2, r2, r3, asr #16 + 8007d34: b29b uxth r3, r3 + 8007d36: ea43 4302 orr.w r3, r3, r2, lsl #16 + 8007d3a: 45c1 cmp r9, r8 + 8007d3c: ea4f 4c22 mov.w ip, r2, asr #16 + 8007d40: f840 3b04 str.w r3, [r0], #4 + 8007d44: d2e7 bcs.n 8007d16 + 8007d46: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 8007d4a: eb05 0384 add.w r3, r5, r4, lsl #2 + 8007d4e: b922 cbnz r2, 8007d5a + 8007d50: 3b04 subs r3, #4 + 8007d52: 429d cmp r5, r3 + 8007d54: 461a mov r2, r3 + 8007d56: d30a bcc.n 8007d6e + 8007d58: 613c str r4, [r7, #16] + 8007d5a: 4630 mov r0, r6 + 8007d5c: b003 add sp, #12 + 8007d5e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007d62: 6812 ldr r2, [r2, #0] + 8007d64: 3b04 subs r3, #4 + 8007d66: 2a00 cmp r2, #0 + 8007d68: d1cb bne.n 8007d02 + 8007d6a: 3c01 subs r4, #1 + 8007d6c: e7c6 b.n 8007cfc + 8007d6e: 6812 ldr r2, [r2, #0] + 8007d70: 3b04 subs r3, #4 + 8007d72: 2a00 cmp r2, #0 + 8007d74: d1f0 bne.n 8007d58 + 8007d76: 3c01 subs r4, #1 + 8007d78: e7eb b.n 8007d52 + 8007d7a: 2000 movs r0, #0 + 8007d7c: e7ee b.n 8007d5c + ... + +08007d80 <_dtoa_r>: + 8007d80: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007d84: 4616 mov r6, r2 + 8007d86: 461f mov r7, r3 + 8007d88: 6a44 ldr r4, [r0, #36] ; 0x24 + 8007d8a: b099 sub sp, #100 ; 0x64 + 8007d8c: 4605 mov r5, r0 + 8007d8e: e9cd 6704 strd r6, r7, [sp, #16] + 8007d92: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 + 8007d96: b974 cbnz r4, 8007db6 <_dtoa_r+0x36> + 8007d98: 2010 movs r0, #16 + 8007d9a: f7ff fa15 bl 80071c8 + 8007d9e: 4602 mov r2, r0 + 8007da0: 6268 str r0, [r5, #36] ; 0x24 + 8007da2: b920 cbnz r0, 8007dae <_dtoa_r+0x2e> + 8007da4: 21ea movs r1, #234 ; 0xea + 8007da6: 4bae ldr r3, [pc, #696] ; (8008060 <_dtoa_r+0x2e0>) + 8007da8: 48ae ldr r0, [pc, #696] ; (8008064 <_dtoa_r+0x2e4>) + 8007daa: f001 faef bl 800938c <__assert_func> + 8007dae: e9c0 4401 strd r4, r4, [r0, #4] + 8007db2: 6004 str r4, [r0, #0] + 8007db4: 60c4 str r4, [r0, #12] + 8007db6: 6a6b ldr r3, [r5, #36] ; 0x24 + 8007db8: 6819 ldr r1, [r3, #0] + 8007dba: b151 cbz r1, 8007dd2 <_dtoa_r+0x52> + 8007dbc: 685a ldr r2, [r3, #4] + 8007dbe: 2301 movs r3, #1 + 8007dc0: 4093 lsls r3, r2 + 8007dc2: 604a str r2, [r1, #4] + 8007dc4: 608b str r3, [r1, #8] + 8007dc6: 4628 mov r0, r5 + 8007dc8: f000 fe34 bl 8008a34 <_Bfree> + 8007dcc: 2200 movs r2, #0 + 8007dce: 6a6b ldr r3, [r5, #36] ; 0x24 + 8007dd0: 601a str r2, [r3, #0] + 8007dd2: 1e3b subs r3, r7, #0 + 8007dd4: bfaf iteee ge + 8007dd6: 2300 movge r3, #0 + 8007dd8: 2201 movlt r2, #1 + 8007dda: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 + 8007dde: 9305 strlt r3, [sp, #20] + 8007de0: bfa8 it ge + 8007de2: f8c8 3000 strge.w r3, [r8] + 8007de6: f8dd 9014 ldr.w r9, [sp, #20] + 8007dea: 4b9f ldr r3, [pc, #636] ; (8008068 <_dtoa_r+0x2e8>) + 8007dec: bfb8 it lt + 8007dee: f8c8 2000 strlt.w r2, [r8] + 8007df2: ea33 0309 bics.w r3, r3, r9 + 8007df6: d119 bne.n 8007e2c <_dtoa_r+0xac> + 8007df8: f242 730f movw r3, #9999 ; 0x270f + 8007dfc: 9a24 ldr r2, [sp, #144] ; 0x90 + 8007dfe: 6013 str r3, [r2, #0] + 8007e00: f3c9 0313 ubfx r3, r9, #0, #20 + 8007e04: 4333 orrs r3, r6 + 8007e06: f000 8580 beq.w 800890a <_dtoa_r+0xb8a> + 8007e0a: 9b26 ldr r3, [sp, #152] ; 0x98 + 8007e0c: b953 cbnz r3, 8007e24 <_dtoa_r+0xa4> + 8007e0e: 4b97 ldr r3, [pc, #604] ; (800806c <_dtoa_r+0x2ec>) + 8007e10: e022 b.n 8007e58 <_dtoa_r+0xd8> + 8007e12: 4b97 ldr r3, [pc, #604] ; (8008070 <_dtoa_r+0x2f0>) + 8007e14: 9308 str r3, [sp, #32] + 8007e16: 3308 adds r3, #8 + 8007e18: 9a26 ldr r2, [sp, #152] ; 0x98 + 8007e1a: 6013 str r3, [r2, #0] + 8007e1c: 9808 ldr r0, [sp, #32] + 8007e1e: b019 add sp, #100 ; 0x64 + 8007e20: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007e24: 4b91 ldr r3, [pc, #580] ; (800806c <_dtoa_r+0x2ec>) + 8007e26: 9308 str r3, [sp, #32] + 8007e28: 3303 adds r3, #3 + 8007e2a: e7f5 b.n 8007e18 <_dtoa_r+0x98> + 8007e2c: e9dd 3404 ldrd r3, r4, [sp, #16] + 8007e30: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 + 8007e34: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8007e38: 2200 movs r2, #0 + 8007e3a: 2300 movs r3, #0 + 8007e3c: f7f8 fe20 bl 8000a80 <__aeabi_dcmpeq> + 8007e40: 4680 mov r8, r0 + 8007e42: b158 cbz r0, 8007e5c <_dtoa_r+0xdc> + 8007e44: 2301 movs r3, #1 + 8007e46: 9a24 ldr r2, [sp, #144] ; 0x90 + 8007e48: 6013 str r3, [r2, #0] + 8007e4a: 9b26 ldr r3, [sp, #152] ; 0x98 + 8007e4c: 2b00 cmp r3, #0 + 8007e4e: f000 8559 beq.w 8008904 <_dtoa_r+0xb84> + 8007e52: 4888 ldr r0, [pc, #544] ; (8008074 <_dtoa_r+0x2f4>) + 8007e54: 6018 str r0, [r3, #0] + 8007e56: 1e43 subs r3, r0, #1 + 8007e58: 9308 str r3, [sp, #32] + 8007e5a: e7df b.n 8007e1c <_dtoa_r+0x9c> + 8007e5c: ab16 add r3, sp, #88 ; 0x58 + 8007e5e: 9301 str r3, [sp, #4] + 8007e60: ab17 add r3, sp, #92 ; 0x5c + 8007e62: 9300 str r3, [sp, #0] + 8007e64: 4628 mov r0, r5 + 8007e66: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 + 8007e6a: f001 f8c9 bl 8009000 <__d2b> + 8007e6e: f3c9 540a ubfx r4, r9, #20, #11 + 8007e72: 4682 mov sl, r0 + 8007e74: 2c00 cmp r4, #0 + 8007e76: d07e beq.n 8007f76 <_dtoa_r+0x1f6> + 8007e78: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8007e7c: 9b0d ldr r3, [sp, #52] ; 0x34 + 8007e7e: f2a4 34ff subw r4, r4, #1023 ; 0x3ff + 8007e82: f3c3 0313 ubfx r3, r3, #0, #20 + 8007e86: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 + 8007e8a: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 + 8007e8e: f8cd 804c str.w r8, [sp, #76] ; 0x4c + 8007e92: 2200 movs r2, #0 + 8007e94: 4b78 ldr r3, [pc, #480] ; (8008078 <_dtoa_r+0x2f8>) + 8007e96: f7f8 f9d3 bl 8000240 <__aeabi_dsub> + 8007e9a: a36b add r3, pc, #428 ; (adr r3, 8008048 <_dtoa_r+0x2c8>) + 8007e9c: e9d3 2300 ldrd r2, r3, [r3] + 8007ea0: f7f8 fb86 bl 80005b0 <__aeabi_dmul> + 8007ea4: a36a add r3, pc, #424 ; (adr r3, 8008050 <_dtoa_r+0x2d0>) + 8007ea6: e9d3 2300 ldrd r2, r3, [r3] + 8007eaa: f7f8 f9cb bl 8000244 <__adddf3> + 8007eae: 4606 mov r6, r0 + 8007eb0: 4620 mov r0, r4 + 8007eb2: 460f mov r7, r1 + 8007eb4: f7f8 fb12 bl 80004dc <__aeabi_i2d> + 8007eb8: a367 add r3, pc, #412 ; (adr r3, 8008058 <_dtoa_r+0x2d8>) + 8007eba: e9d3 2300 ldrd r2, r3, [r3] + 8007ebe: f7f8 fb77 bl 80005b0 <__aeabi_dmul> + 8007ec2: 4602 mov r2, r0 + 8007ec4: 460b mov r3, r1 + 8007ec6: 4630 mov r0, r6 + 8007ec8: 4639 mov r1, r7 + 8007eca: f7f8 f9bb bl 8000244 <__adddf3> + 8007ece: 4606 mov r6, r0 + 8007ed0: 460f mov r7, r1 + 8007ed2: f7f8 fe1d bl 8000b10 <__aeabi_d2iz> + 8007ed6: 2200 movs r2, #0 + 8007ed8: 4681 mov r9, r0 + 8007eda: 2300 movs r3, #0 + 8007edc: 4630 mov r0, r6 + 8007ede: 4639 mov r1, r7 + 8007ee0: f7f8 fdd8 bl 8000a94 <__aeabi_dcmplt> + 8007ee4: b148 cbz r0, 8007efa <_dtoa_r+0x17a> + 8007ee6: 4648 mov r0, r9 + 8007ee8: f7f8 faf8 bl 80004dc <__aeabi_i2d> + 8007eec: 4632 mov r2, r6 + 8007eee: 463b mov r3, r7 + 8007ef0: f7f8 fdc6 bl 8000a80 <__aeabi_dcmpeq> + 8007ef4: b908 cbnz r0, 8007efa <_dtoa_r+0x17a> + 8007ef6: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8007efa: f1b9 0f16 cmp.w r9, #22 + 8007efe: d857 bhi.n 8007fb0 <_dtoa_r+0x230> + 8007f00: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8007f04: 4b5d ldr r3, [pc, #372] ; (800807c <_dtoa_r+0x2fc>) + 8007f06: eb03 03c9 add.w r3, r3, r9, lsl #3 + 8007f0a: e9d3 2300 ldrd r2, r3, [r3] + 8007f0e: f7f8 fdc1 bl 8000a94 <__aeabi_dcmplt> + 8007f12: 2800 cmp r0, #0 + 8007f14: d04e beq.n 8007fb4 <_dtoa_r+0x234> + 8007f16: 2300 movs r3, #0 + 8007f18: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8007f1c: 930f str r3, [sp, #60] ; 0x3c + 8007f1e: 9b16 ldr r3, [sp, #88] ; 0x58 + 8007f20: 1b1c subs r4, r3, r4 + 8007f22: 1e63 subs r3, r4, #1 8007f24: 9309 str r3, [sp, #36] ; 0x24 - 8007f26: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007f28: 2b00 cmp r3, #0 - 8007f2a: f47f af6a bne.w 8007e02 <_dtoa_r+0x7ea> - 8007f2e: 2001 movs r0, #1 - 8007f30: e76f b.n 8007e12 <_dtoa_r+0x7fa> - 8007f32: f04f 0800 mov.w r8, #0 - 8007f36: e7f6 b.n 8007f26 <_dtoa_r+0x90e> - 8007f38: 4698 mov r8, r3 - 8007f3a: e7f4 b.n 8007f26 <_dtoa_r+0x90e> - 8007f3c: f43f af7d beq.w 8007e3a <_dtoa_r+0x822> - 8007f40: 4618 mov r0, r3 - 8007f42: 301c adds r0, #28 - 8007f44: e772 b.n 8007e2c <_dtoa_r+0x814> - 8007f46: 9b02 ldr r3, [sp, #8] - 8007f48: 2b00 cmp r3, #0 - 8007f4a: dc36 bgt.n 8007fba <_dtoa_r+0x9a2> + 8007f26: bf49 itett mi + 8007f28: f1c4 0301 rsbmi r3, r4, #1 + 8007f2c: 2300 movpl r3, #0 + 8007f2e: 9306 strmi r3, [sp, #24] + 8007f30: 2300 movmi r3, #0 + 8007f32: bf54 ite pl + 8007f34: 9306 strpl r3, [sp, #24] + 8007f36: 9309 strmi r3, [sp, #36] ; 0x24 + 8007f38: f1b9 0f00 cmp.w r9, #0 + 8007f3c: db3c blt.n 8007fb8 <_dtoa_r+0x238> + 8007f3e: 9b09 ldr r3, [sp, #36] ; 0x24 + 8007f40: f8cd 9038 str.w r9, [sp, #56] ; 0x38 + 8007f44: 444b add r3, r9 + 8007f46: 9309 str r3, [sp, #36] ; 0x24 + 8007f48: 2300 movs r3, #0 + 8007f4a: 930a str r3, [sp, #40] ; 0x28 8007f4c: 9b22 ldr r3, [sp, #136] ; 0x88 - 8007f4e: 2b02 cmp r3, #2 - 8007f50: dd33 ble.n 8007fba <_dtoa_r+0x9a2> - 8007f52: f8dd b008 ldr.w fp, [sp, #8] - 8007f56: f1bb 0f00 cmp.w fp, #0 - 8007f5a: d10d bne.n 8007f78 <_dtoa_r+0x960> - 8007f5c: 4621 mov r1, r4 - 8007f5e: 465b mov r3, fp - 8007f60: 2205 movs r2, #5 - 8007f62: 4628 mov r0, r5 - 8007f64: f000 f9d4 bl 8008310 <__multadd> - 8007f68: 4601 mov r1, r0 - 8007f6a: 4604 mov r4, r0 - 8007f6c: 4650 mov r0, sl - 8007f6e: f000 fbe7 bl 8008740 <__mcmp> - 8007f72: 2800 cmp r0, #0 - 8007f74: f73f adb6 bgt.w 8007ae4 <_dtoa_r+0x4cc> - 8007f78: 9b23 ldr r3, [sp, #140] ; 0x8c - 8007f7a: 9f08 ldr r7, [sp, #32] - 8007f7c: ea6f 0903 mvn.w r9, r3 - 8007f80: f04f 0800 mov.w r8, #0 - 8007f84: 4621 mov r1, r4 - 8007f86: 4628 mov r0, r5 - 8007f88: f000 f9a0 bl 80082cc <_Bfree> - 8007f8c: 2e00 cmp r6, #0 - 8007f8e: f43f aea4 beq.w 8007cda <_dtoa_r+0x6c2> - 8007f92: f1b8 0f00 cmp.w r8, #0 - 8007f96: d005 beq.n 8007fa4 <_dtoa_r+0x98c> - 8007f98: 45b0 cmp r8, r6 - 8007f9a: d003 beq.n 8007fa4 <_dtoa_r+0x98c> - 8007f9c: 4641 mov r1, r8 - 8007f9e: 4628 mov r0, r5 - 8007fa0: f000 f994 bl 80082cc <_Bfree> - 8007fa4: 4631 mov r1, r6 - 8007fa6: 4628 mov r0, r5 - 8007fa8: f000 f990 bl 80082cc <_Bfree> - 8007fac: e695 b.n 8007cda <_dtoa_r+0x6c2> - 8007fae: 2400 movs r4, #0 - 8007fb0: 4626 mov r6, r4 - 8007fb2: e7e1 b.n 8007f78 <_dtoa_r+0x960> - 8007fb4: 46c1 mov r9, r8 - 8007fb6: 4626 mov r6, r4 - 8007fb8: e594 b.n 8007ae4 <_dtoa_r+0x4cc> - 8007fba: 9b0b ldr r3, [sp, #44] ; 0x2c - 8007fbc: f8dd b008 ldr.w fp, [sp, #8] - 8007fc0: 2b00 cmp r3, #0 - 8007fc2: f000 80fc beq.w 80081be <_dtoa_r+0xba6> - 8007fc6: 2f00 cmp r7, #0 - 8007fc8: dd05 ble.n 8007fd6 <_dtoa_r+0x9be> - 8007fca: 4631 mov r1, r6 - 8007fcc: 463a mov r2, r7 - 8007fce: 4628 mov r0, r5 - 8007fd0: f000 fb4a bl 8008668 <__lshift> - 8007fd4: 4606 mov r6, r0 - 8007fd6: f1b8 0f00 cmp.w r8, #0 - 8007fda: d05c beq.n 8008096 <_dtoa_r+0xa7e> - 8007fdc: 4628 mov r0, r5 - 8007fde: 6871 ldr r1, [r6, #4] - 8007fe0: f000 f934 bl 800824c <_Balloc> - 8007fe4: 4607 mov r7, r0 - 8007fe6: b928 cbnz r0, 8007ff4 <_dtoa_r+0x9dc> - 8007fe8: 4602 mov r2, r0 - 8007fea: f240 21ea movw r1, #746 ; 0x2ea - 8007fee: 4b7e ldr r3, [pc, #504] ; (80081e8 <_dtoa_r+0xbd0>) - 8007ff0: f7ff bb26 b.w 8007640 <_dtoa_r+0x28> - 8007ff4: 6932 ldr r2, [r6, #16] - 8007ff6: f106 010c add.w r1, r6, #12 - 8007ffa: 3202 adds r2, #2 - 8007ffc: 0092 lsls r2, r2, #2 - 8007ffe: 300c adds r0, #12 - 8008000: f000 f90a bl 8008218 - 8008004: 2201 movs r2, #1 - 8008006: 4639 mov r1, r7 - 8008008: 4628 mov r0, r5 - 800800a: f000 fb2d bl 8008668 <__lshift> - 800800e: 46b0 mov r8, r6 - 8008010: 4606 mov r6, r0 - 8008012: 9b08 ldr r3, [sp, #32] - 8008014: 3301 adds r3, #1 - 8008016: 9302 str r3, [sp, #8] - 8008018: 9b08 ldr r3, [sp, #32] - 800801a: 445b add r3, fp - 800801c: 930a str r3, [sp, #40] ; 0x28 - 800801e: 9b04 ldr r3, [sp, #16] - 8008020: f003 0301 and.w r3, r3, #1 - 8008024: 9309 str r3, [sp, #36] ; 0x24 - 8008026: 9b02 ldr r3, [sp, #8] - 8008028: 4621 mov r1, r4 - 800802a: 4650 mov r0, sl - 800802c: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff - 8008030: f7ff fa64 bl 80074fc - 8008034: 4603 mov r3, r0 - 8008036: 4641 mov r1, r8 - 8008038: 3330 adds r3, #48 ; 0x30 - 800803a: 9004 str r0, [sp, #16] - 800803c: 4650 mov r0, sl - 800803e: 930b str r3, [sp, #44] ; 0x2c - 8008040: f000 fb7e bl 8008740 <__mcmp> - 8008044: 4632 mov r2, r6 - 8008046: 9006 str r0, [sp, #24] - 8008048: 4621 mov r1, r4 - 800804a: 4628 mov r0, r5 - 800804c: f000 fb94 bl 8008778 <__mdiff> - 8008050: 68c2 ldr r2, [r0, #12] - 8008052: 4607 mov r7, r0 - 8008054: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008056: bb02 cbnz r2, 800809a <_dtoa_r+0xa82> - 8008058: 4601 mov r1, r0 - 800805a: 4650 mov r0, sl - 800805c: f000 fb70 bl 8008740 <__mcmp> - 8008060: 4602 mov r2, r0 - 8008062: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008064: 4639 mov r1, r7 - 8008066: 4628 mov r0, r5 - 8008068: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c - 800806c: f000 f92e bl 80082cc <_Bfree> - 8008070: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008072: 9a0c ldr r2, [sp, #48] ; 0x30 - 8008074: 9f02 ldr r7, [sp, #8] - 8008076: ea43 0102 orr.w r1, r3, r2 - 800807a: 9b09 ldr r3, [sp, #36] ; 0x24 - 800807c: 430b orrs r3, r1 - 800807e: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008080: d10d bne.n 800809e <_dtoa_r+0xa86> - 8008082: 2b39 cmp r3, #57 ; 0x39 - 8008084: d027 beq.n 80080d6 <_dtoa_r+0xabe> - 8008086: 9a06 ldr r2, [sp, #24] - 8008088: 2a00 cmp r2, #0 - 800808a: dd01 ble.n 8008090 <_dtoa_r+0xa78> - 800808c: 9b04 ldr r3, [sp, #16] - 800808e: 3331 adds r3, #49 ; 0x31 - 8008090: f88b 3000 strb.w r3, [fp] - 8008094: e776 b.n 8007f84 <_dtoa_r+0x96c> - 8008096: 4630 mov r0, r6 - 8008098: e7b9 b.n 800800e <_dtoa_r+0x9f6> - 800809a: 2201 movs r2, #1 - 800809c: e7e2 b.n 8008064 <_dtoa_r+0xa4c> - 800809e: 9906 ldr r1, [sp, #24] - 80080a0: 2900 cmp r1, #0 - 80080a2: db04 blt.n 80080ae <_dtoa_r+0xa96> - 80080a4: 9822 ldr r0, [sp, #136] ; 0x88 - 80080a6: 4301 orrs r1, r0 - 80080a8: 9809 ldr r0, [sp, #36] ; 0x24 - 80080aa: 4301 orrs r1, r0 - 80080ac: d120 bne.n 80080f0 <_dtoa_r+0xad8> - 80080ae: 2a00 cmp r2, #0 - 80080b0: ddee ble.n 8008090 <_dtoa_r+0xa78> - 80080b2: 4651 mov r1, sl - 80080b4: 2201 movs r2, #1 - 80080b6: 4628 mov r0, r5 - 80080b8: 9302 str r3, [sp, #8] - 80080ba: f000 fad5 bl 8008668 <__lshift> - 80080be: 4621 mov r1, r4 - 80080c0: 4682 mov sl, r0 - 80080c2: f000 fb3d bl 8008740 <__mcmp> - 80080c6: 2800 cmp r0, #0 - 80080c8: 9b02 ldr r3, [sp, #8] - 80080ca: dc02 bgt.n 80080d2 <_dtoa_r+0xaba> - 80080cc: d1e0 bne.n 8008090 <_dtoa_r+0xa78> - 80080ce: 07da lsls r2, r3, #31 - 80080d0: d5de bpl.n 8008090 <_dtoa_r+0xa78> - 80080d2: 2b39 cmp r3, #57 ; 0x39 - 80080d4: d1da bne.n 800808c <_dtoa_r+0xa74> - 80080d6: 2339 movs r3, #57 ; 0x39 - 80080d8: f88b 3000 strb.w r3, [fp] - 80080dc: 463b mov r3, r7 - 80080de: 461f mov r7, r3 - 80080e0: f817 2c01 ldrb.w r2, [r7, #-1] - 80080e4: 3b01 subs r3, #1 - 80080e6: 2a39 cmp r2, #57 ; 0x39 - 80080e8: d050 beq.n 800818c <_dtoa_r+0xb74> - 80080ea: 3201 adds r2, #1 - 80080ec: 701a strb r2, [r3, #0] - 80080ee: e749 b.n 8007f84 <_dtoa_r+0x96c> - 80080f0: 2a00 cmp r2, #0 - 80080f2: dd03 ble.n 80080fc <_dtoa_r+0xae4> - 80080f4: 2b39 cmp r3, #57 ; 0x39 - 80080f6: d0ee beq.n 80080d6 <_dtoa_r+0xabe> - 80080f8: 3301 adds r3, #1 - 80080fa: e7c9 b.n 8008090 <_dtoa_r+0xa78> - 80080fc: 9a02 ldr r2, [sp, #8] - 80080fe: 990a ldr r1, [sp, #40] ; 0x28 - 8008100: f802 3c01 strb.w r3, [r2, #-1] - 8008104: 428a cmp r2, r1 - 8008106: d02a beq.n 800815e <_dtoa_r+0xb46> - 8008108: 4651 mov r1, sl - 800810a: 2300 movs r3, #0 - 800810c: 220a movs r2, #10 - 800810e: 4628 mov r0, r5 - 8008110: f000 f8fe bl 8008310 <__multadd> - 8008114: 45b0 cmp r8, r6 - 8008116: 4682 mov sl, r0 - 8008118: f04f 0300 mov.w r3, #0 - 800811c: f04f 020a mov.w r2, #10 - 8008120: 4641 mov r1, r8 - 8008122: 4628 mov r0, r5 - 8008124: d107 bne.n 8008136 <_dtoa_r+0xb1e> - 8008126: f000 f8f3 bl 8008310 <__multadd> - 800812a: 4680 mov r8, r0 - 800812c: 4606 mov r6, r0 - 800812e: 9b02 ldr r3, [sp, #8] - 8008130: 3301 adds r3, #1 - 8008132: 9302 str r3, [sp, #8] - 8008134: e777 b.n 8008026 <_dtoa_r+0xa0e> - 8008136: f000 f8eb bl 8008310 <__multadd> - 800813a: 4631 mov r1, r6 - 800813c: 4680 mov r8, r0 - 800813e: 2300 movs r3, #0 - 8008140: 220a movs r2, #10 - 8008142: 4628 mov r0, r5 - 8008144: f000 f8e4 bl 8008310 <__multadd> - 8008148: 4606 mov r6, r0 - 800814a: e7f0 b.n 800812e <_dtoa_r+0xb16> - 800814c: f1bb 0f00 cmp.w fp, #0 - 8008150: bfcc ite gt - 8008152: 465f movgt r7, fp - 8008154: 2701 movle r7, #1 - 8008156: f04f 0800 mov.w r8, #0 - 800815a: 9a08 ldr r2, [sp, #32] - 800815c: 4417 add r7, r2 - 800815e: 4651 mov r1, sl - 8008160: 2201 movs r2, #1 - 8008162: 4628 mov r0, r5 - 8008164: 9302 str r3, [sp, #8] - 8008166: f000 fa7f bl 8008668 <__lshift> - 800816a: 4621 mov r1, r4 - 800816c: 4682 mov sl, r0 - 800816e: f000 fae7 bl 8008740 <__mcmp> + 8007f4e: 2b09 cmp r3, #9 + 8007f50: d86c bhi.n 800802c <_dtoa_r+0x2ac> + 8007f52: 2b05 cmp r3, #5 + 8007f54: bfc4 itt gt + 8007f56: 3b04 subgt r3, #4 + 8007f58: 9322 strgt r3, [sp, #136] ; 0x88 + 8007f5a: 9b22 ldr r3, [sp, #136] ; 0x88 + 8007f5c: bfc8 it gt + 8007f5e: 2400 movgt r4, #0 + 8007f60: f1a3 0302 sub.w r3, r3, #2 + 8007f64: bfd8 it le + 8007f66: 2401 movle r4, #1 + 8007f68: 2b03 cmp r3, #3 + 8007f6a: f200 808b bhi.w 8008084 <_dtoa_r+0x304> + 8007f6e: e8df f003 tbb [pc, r3] + 8007f72: 4f2d .short 0x4f2d + 8007f74: 5b4d .short 0x5b4d + 8007f76: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 + 8007f7a: 441c add r4, r3 + 8007f7c: f204 4332 addw r3, r4, #1074 ; 0x432 + 8007f80: 2b20 cmp r3, #32 + 8007f82: bfc3 ittte gt + 8007f84: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 + 8007f88: f204 4012 addwgt r0, r4, #1042 ; 0x412 + 8007f8c: fa09 f303 lslgt.w r3, r9, r3 + 8007f90: f1c3 0320 rsble r3, r3, #32 + 8007f94: bfc6 itte gt + 8007f96: fa26 f000 lsrgt.w r0, r6, r0 + 8007f9a: 4318 orrgt r0, r3 + 8007f9c: fa06 f003 lslle.w r0, r6, r3 + 8007fa0: f7f8 fa8c bl 80004bc <__aeabi_ui2d> + 8007fa4: 2301 movs r3, #1 + 8007fa6: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 + 8007faa: 3c01 subs r4, #1 + 8007fac: 9313 str r3, [sp, #76] ; 0x4c + 8007fae: e770 b.n 8007e92 <_dtoa_r+0x112> + 8007fb0: 2301 movs r3, #1 + 8007fb2: e7b3 b.n 8007f1c <_dtoa_r+0x19c> + 8007fb4: 900f str r0, [sp, #60] ; 0x3c + 8007fb6: e7b2 b.n 8007f1e <_dtoa_r+0x19e> + 8007fb8: 9b06 ldr r3, [sp, #24] + 8007fba: eba3 0309 sub.w r3, r3, r9 + 8007fbe: 9306 str r3, [sp, #24] + 8007fc0: f1c9 0300 rsb r3, r9, #0 + 8007fc4: 930a str r3, [sp, #40] ; 0x28 + 8007fc6: 2300 movs r3, #0 + 8007fc8: 930e str r3, [sp, #56] ; 0x38 + 8007fca: e7bf b.n 8007f4c <_dtoa_r+0x1cc> + 8007fcc: 2300 movs r3, #0 + 8007fce: 930b str r3, [sp, #44] ; 0x2c + 8007fd0: 9b23 ldr r3, [sp, #140] ; 0x8c + 8007fd2: 2b00 cmp r3, #0 + 8007fd4: dc59 bgt.n 800808a <_dtoa_r+0x30a> + 8007fd6: f04f 0b01 mov.w fp, #1 + 8007fda: 465b mov r3, fp + 8007fdc: f8cd b008 str.w fp, [sp, #8] + 8007fe0: f8cd b08c str.w fp, [sp, #140] ; 0x8c + 8007fe4: 2200 movs r2, #0 + 8007fe6: 6a68 ldr r0, [r5, #36] ; 0x24 + 8007fe8: 6042 str r2, [r0, #4] + 8007fea: 2204 movs r2, #4 + 8007fec: f102 0614 add.w r6, r2, #20 + 8007ff0: 429e cmp r6, r3 + 8007ff2: 6841 ldr r1, [r0, #4] + 8007ff4: d94f bls.n 8008096 <_dtoa_r+0x316> + 8007ff6: 4628 mov r0, r5 + 8007ff8: f000 fcdc bl 80089b4 <_Balloc> + 8007ffc: 9008 str r0, [sp, #32] + 8007ffe: 2800 cmp r0, #0 + 8008000: d14d bne.n 800809e <_dtoa_r+0x31e> + 8008002: 4602 mov r2, r0 + 8008004: f44f 71d5 mov.w r1, #426 ; 0x1aa + 8008008: 4b1d ldr r3, [pc, #116] ; (8008080 <_dtoa_r+0x300>) + 800800a: e6cd b.n 8007da8 <_dtoa_r+0x28> + 800800c: 2301 movs r3, #1 + 800800e: e7de b.n 8007fce <_dtoa_r+0x24e> + 8008010: 2300 movs r3, #0 + 8008012: 930b str r3, [sp, #44] ; 0x2c + 8008014: 9b23 ldr r3, [sp, #140] ; 0x8c + 8008016: eb09 0b03 add.w fp, r9, r3 + 800801a: f10b 0301 add.w r3, fp, #1 + 800801e: 2b01 cmp r3, #1 + 8008020: 9302 str r3, [sp, #8] + 8008022: bfb8 it lt + 8008024: 2301 movlt r3, #1 + 8008026: e7dd b.n 8007fe4 <_dtoa_r+0x264> + 8008028: 2301 movs r3, #1 + 800802a: e7f2 b.n 8008012 <_dtoa_r+0x292> + 800802c: 2401 movs r4, #1 + 800802e: 2300 movs r3, #0 + 8008030: 940b str r4, [sp, #44] ; 0x2c + 8008032: 9322 str r3, [sp, #136] ; 0x88 + 8008034: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff + 8008038: 2200 movs r2, #0 + 800803a: 2312 movs r3, #18 + 800803c: f8cd b008 str.w fp, [sp, #8] + 8008040: 9223 str r2, [sp, #140] ; 0x8c + 8008042: e7cf b.n 8007fe4 <_dtoa_r+0x264> + 8008044: f3af 8000 nop.w + 8008048: 636f4361 .word 0x636f4361 + 800804c: 3fd287a7 .word 0x3fd287a7 + 8008050: 8b60c8b3 .word 0x8b60c8b3 + 8008054: 3fc68a28 .word 0x3fc68a28 + 8008058: 509f79fb .word 0x509f79fb + 800805c: 3fd34413 .word 0x3fd34413 + 8008060: 0800af15 .word 0x0800af15 + 8008064: 0800af2c .word 0x0800af2c + 8008068: 7ff00000 .word 0x7ff00000 + 800806c: 0800af11 .word 0x0800af11 + 8008070: 0800af08 .word 0x0800af08 + 8008074: 0800aee5 .word 0x0800aee5 + 8008078: 3ff80000 .word 0x3ff80000 + 800807c: 0800b028 .word 0x0800b028 + 8008080: 0800af8b .word 0x0800af8b + 8008084: 2301 movs r3, #1 + 8008086: 930b str r3, [sp, #44] ; 0x2c + 8008088: e7d4 b.n 8008034 <_dtoa_r+0x2b4> + 800808a: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c + 800808e: 465b mov r3, fp + 8008090: f8cd b008 str.w fp, [sp, #8] + 8008094: e7a6 b.n 8007fe4 <_dtoa_r+0x264> + 8008096: 3101 adds r1, #1 + 8008098: 6041 str r1, [r0, #4] + 800809a: 0052 lsls r2, r2, #1 + 800809c: e7a6 b.n 8007fec <_dtoa_r+0x26c> + 800809e: 6a6b ldr r3, [r5, #36] ; 0x24 + 80080a0: 9a08 ldr r2, [sp, #32] + 80080a2: 601a str r2, [r3, #0] + 80080a4: 9b02 ldr r3, [sp, #8] + 80080a6: 2b0e cmp r3, #14 + 80080a8: f200 80a8 bhi.w 80081fc <_dtoa_r+0x47c> + 80080ac: 2c00 cmp r4, #0 + 80080ae: f000 80a5 beq.w 80081fc <_dtoa_r+0x47c> + 80080b2: f1b9 0f00 cmp.w r9, #0 + 80080b6: dd34 ble.n 8008122 <_dtoa_r+0x3a2> + 80080b8: 4a9a ldr r2, [pc, #616] ; (8008324 <_dtoa_r+0x5a4>) + 80080ba: f009 030f and.w r3, r9, #15 + 80080be: eb02 03c3 add.w r3, r2, r3, lsl #3 + 80080c2: f419 7f80 tst.w r9, #256 ; 0x100 + 80080c6: e9d3 3400 ldrd r3, r4, [r3] + 80080ca: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 80080ce: ea4f 1429 mov.w r4, r9, asr #4 + 80080d2: d016 beq.n 8008102 <_dtoa_r+0x382> + 80080d4: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80080d8: 4b93 ldr r3, [pc, #588] ; (8008328 <_dtoa_r+0x5a8>) + 80080da: 2703 movs r7, #3 + 80080dc: e9d3 2308 ldrd r2, r3, [r3, #32] + 80080e0: f7f8 fb90 bl 8000804 <__aeabi_ddiv> + 80080e4: e9cd 0104 strd r0, r1, [sp, #16] + 80080e8: f004 040f and.w r4, r4, #15 + 80080ec: 4e8e ldr r6, [pc, #568] ; (8008328 <_dtoa_r+0x5a8>) + 80080ee: b954 cbnz r4, 8008106 <_dtoa_r+0x386> + 80080f0: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 80080f4: e9dd 0104 ldrd r0, r1, [sp, #16] + 80080f8: f7f8 fb84 bl 8000804 <__aeabi_ddiv> + 80080fc: e9cd 0104 strd r0, r1, [sp, #16] + 8008100: e029 b.n 8008156 <_dtoa_r+0x3d6> + 8008102: 2702 movs r7, #2 + 8008104: e7f2 b.n 80080ec <_dtoa_r+0x36c> + 8008106: 07e1 lsls r1, r4, #31 + 8008108: d508 bpl.n 800811c <_dtoa_r+0x39c> + 800810a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 800810e: e9d6 2300 ldrd r2, r3, [r6] + 8008112: f7f8 fa4d bl 80005b0 <__aeabi_dmul> + 8008116: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 800811a: 3701 adds r7, #1 + 800811c: 1064 asrs r4, r4, #1 + 800811e: 3608 adds r6, #8 + 8008120: e7e5 b.n 80080ee <_dtoa_r+0x36e> + 8008122: f000 80a5 beq.w 8008270 <_dtoa_r+0x4f0> + 8008126: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 800812a: f1c9 0400 rsb r4, r9, #0 + 800812e: 4b7d ldr r3, [pc, #500] ; (8008324 <_dtoa_r+0x5a4>) + 8008130: f004 020f and.w r2, r4, #15 + 8008134: eb03 03c2 add.w r3, r3, r2, lsl #3 + 8008138: e9d3 2300 ldrd r2, r3, [r3] + 800813c: f7f8 fa38 bl 80005b0 <__aeabi_dmul> + 8008140: 2702 movs r7, #2 + 8008142: 2300 movs r3, #0 + 8008144: e9cd 0104 strd r0, r1, [sp, #16] + 8008148: 4e77 ldr r6, [pc, #476] ; (8008328 <_dtoa_r+0x5a8>) + 800814a: 1124 asrs r4, r4, #4 + 800814c: 2c00 cmp r4, #0 + 800814e: f040 8084 bne.w 800825a <_dtoa_r+0x4da> + 8008152: 2b00 cmp r3, #0 + 8008154: d1d2 bne.n 80080fc <_dtoa_r+0x37c> + 8008156: 9b0f ldr r3, [sp, #60] ; 0x3c + 8008158: 2b00 cmp r3, #0 + 800815a: f000 808b beq.w 8008274 <_dtoa_r+0x4f4> + 800815e: e9dd 3404 ldrd r3, r4, [sp, #16] + 8008162: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 8008166: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 800816a: 2200 movs r2, #0 + 800816c: 4b6f ldr r3, [pc, #444] ; (800832c <_dtoa_r+0x5ac>) + 800816e: f7f8 fc91 bl 8000a94 <__aeabi_dcmplt> 8008172: 2800 cmp r0, #0 - 8008174: dcb2 bgt.n 80080dc <_dtoa_r+0xac4> - 8008176: d102 bne.n 800817e <_dtoa_r+0xb66> - 8008178: 9b02 ldr r3, [sp, #8] - 800817a: 07db lsls r3, r3, #31 - 800817c: d4ae bmi.n 80080dc <_dtoa_r+0xac4> - 800817e: 463b mov r3, r7 - 8008180: 461f mov r7, r3 - 8008182: f813 2d01 ldrb.w r2, [r3, #-1]! - 8008186: 2a30 cmp r2, #48 ; 0x30 - 8008188: d0fa beq.n 8008180 <_dtoa_r+0xb68> - 800818a: e6fb b.n 8007f84 <_dtoa_r+0x96c> - 800818c: 9a08 ldr r2, [sp, #32] - 800818e: 429a cmp r2, r3 - 8008190: d1a5 bne.n 80080de <_dtoa_r+0xac6> - 8008192: 2331 movs r3, #49 ; 0x31 - 8008194: f109 0901 add.w r9, r9, #1 - 8008198: 7013 strb r3, [r2, #0] - 800819a: e6f3 b.n 8007f84 <_dtoa_r+0x96c> - 800819c: 4b13 ldr r3, [pc, #76] ; (80081ec <_dtoa_r+0xbd4>) - 800819e: f7ff baa7 b.w 80076f0 <_dtoa_r+0xd8> - 80081a2: 9b26 ldr r3, [sp, #152] ; 0x98 - 80081a4: 2b00 cmp r3, #0 - 80081a6: f47f aa80 bne.w 80076aa <_dtoa_r+0x92> - 80081aa: 4b11 ldr r3, [pc, #68] ; (80081f0 <_dtoa_r+0xbd8>) - 80081ac: f7ff baa0 b.w 80076f0 <_dtoa_r+0xd8> - 80081b0: f1bb 0f00 cmp.w fp, #0 - 80081b4: dc03 bgt.n 80081be <_dtoa_r+0xba6> - 80081b6: 9b22 ldr r3, [sp, #136] ; 0x88 - 80081b8: 2b02 cmp r3, #2 - 80081ba: f73f aecc bgt.w 8007f56 <_dtoa_r+0x93e> - 80081be: 9f08 ldr r7, [sp, #32] - 80081c0: 4621 mov r1, r4 - 80081c2: 4650 mov r0, sl - 80081c4: f7ff f99a bl 80074fc - 80081c8: 9a08 ldr r2, [sp, #32] - 80081ca: f100 0330 add.w r3, r0, #48 ; 0x30 - 80081ce: f807 3b01 strb.w r3, [r7], #1 - 80081d2: 1aba subs r2, r7, r2 - 80081d4: 4593 cmp fp, r2 - 80081d6: ddb9 ble.n 800814c <_dtoa_r+0xb34> - 80081d8: 4651 mov r1, sl - 80081da: 2300 movs r3, #0 - 80081dc: 220a movs r2, #10 - 80081de: 4628 mov r0, r5 - 80081e0: f000 f896 bl 8008310 <__multadd> - 80081e4: 4682 mov sl, r0 - 80081e6: e7eb b.n 80081c0 <_dtoa_r+0xba8> - 80081e8: 0800a823 .word 0x0800a823 - 80081ec: 0800a77c .word 0x0800a77c - 80081f0: 0800a7a0 .word 0x0800a7a0 - -080081f4 <_localeconv_r>: - 80081f4: 4800 ldr r0, [pc, #0] ; (80081f8 <_localeconv_r+0x4>) - 80081f6: 4770 bx lr - 80081f8: 20000160 .word 0x20000160 - -080081fc : - 80081fc: 4603 mov r3, r0 - 80081fe: b510 push {r4, lr} - 8008200: b2c9 uxtb r1, r1 - 8008202: 4402 add r2, r0 - 8008204: 4293 cmp r3, r2 - 8008206: 4618 mov r0, r3 - 8008208: d101 bne.n 800820e - 800820a: 2000 movs r0, #0 - 800820c: e003 b.n 8008216 - 800820e: 7804 ldrb r4, [r0, #0] - 8008210: 3301 adds r3, #1 - 8008212: 428c cmp r4, r1 - 8008214: d1f6 bne.n 8008204 - 8008216: bd10 pop {r4, pc} - -08008218 : - 8008218: 440a add r2, r1 - 800821a: 4291 cmp r1, r2 - 800821c: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff - 8008220: d100 bne.n 8008224 - 8008222: 4770 bx lr - 8008224: b510 push {r4, lr} - 8008226: f811 4b01 ldrb.w r4, [r1], #1 - 800822a: 4291 cmp r1, r2 - 800822c: f803 4f01 strb.w r4, [r3, #1]! - 8008230: d1f9 bne.n 8008226 - 8008232: bd10 pop {r4, pc} - -08008234 <__malloc_lock>: - 8008234: 4801 ldr r0, [pc, #4] ; (800823c <__malloc_lock+0x8>) - 8008236: f000 bd26 b.w 8008c86 <__retarget_lock_acquire_recursive> - 800823a: bf00 nop - 800823c: 2000245c .word 0x2000245c - -08008240 <__malloc_unlock>: - 8008240: 4801 ldr r0, [pc, #4] ; (8008248 <__malloc_unlock+0x8>) - 8008242: f000 bd21 b.w 8008c88 <__retarget_lock_release_recursive> - 8008246: bf00 nop - 8008248: 2000245c .word 0x2000245c - -0800824c <_Balloc>: - 800824c: b570 push {r4, r5, r6, lr} - 800824e: 6a46 ldr r6, [r0, #36] ; 0x24 - 8008250: 4604 mov r4, r0 - 8008252: 460d mov r5, r1 - 8008254: b976 cbnz r6, 8008274 <_Balloc+0x28> - 8008256: 2010 movs r0, #16 - 8008258: f7fe fc02 bl 8006a60 - 800825c: 4602 mov r2, r0 - 800825e: 6260 str r0, [r4, #36] ; 0x24 - 8008260: b920 cbnz r0, 800826c <_Balloc+0x20> - 8008262: 2166 movs r1, #102 ; 0x66 - 8008264: 4b17 ldr r3, [pc, #92] ; (80082c4 <_Balloc+0x78>) - 8008266: 4818 ldr r0, [pc, #96] ; (80082c8 <_Balloc+0x7c>) - 8008268: f000 fcdc bl 8008c24 <__assert_func> - 800826c: e9c0 6601 strd r6, r6, [r0, #4] - 8008270: 6006 str r6, [r0, #0] - 8008272: 60c6 str r6, [r0, #12] - 8008274: 6a66 ldr r6, [r4, #36] ; 0x24 - 8008276: 68f3 ldr r3, [r6, #12] - 8008278: b183 cbz r3, 800829c <_Balloc+0x50> - 800827a: 6a63 ldr r3, [r4, #36] ; 0x24 - 800827c: 68db ldr r3, [r3, #12] - 800827e: f853 0025 ldr.w r0, [r3, r5, lsl #2] - 8008282: b9b8 cbnz r0, 80082b4 <_Balloc+0x68> - 8008284: 2101 movs r1, #1 - 8008286: fa01 f605 lsl.w r6, r1, r5 - 800828a: 1d72 adds r2, r6, #5 - 800828c: 4620 mov r0, r4 - 800828e: 0092 lsls r2, r2, #2 - 8008290: f000 fb5e bl 8008950 <_calloc_r> - 8008294: b160 cbz r0, 80082b0 <_Balloc+0x64> - 8008296: e9c0 5601 strd r5, r6, [r0, #4] - 800829a: e00e b.n 80082ba <_Balloc+0x6e> - 800829c: 2221 movs r2, #33 ; 0x21 - 800829e: 2104 movs r1, #4 - 80082a0: 4620 mov r0, r4 - 80082a2: f000 fb55 bl 8008950 <_calloc_r> - 80082a6: 6a63 ldr r3, [r4, #36] ; 0x24 - 80082a8: 60f0 str r0, [r6, #12] - 80082aa: 68db ldr r3, [r3, #12] - 80082ac: 2b00 cmp r3, #0 - 80082ae: d1e4 bne.n 800827a <_Balloc+0x2e> - 80082b0: 2000 movs r0, #0 - 80082b2: bd70 pop {r4, r5, r6, pc} - 80082b4: 6802 ldr r2, [r0, #0] - 80082b6: f843 2025 str.w r2, [r3, r5, lsl #2] - 80082ba: 2300 movs r3, #0 - 80082bc: e9c0 3303 strd r3, r3, [r0, #12] - 80082c0: e7f7 b.n 80082b2 <_Balloc+0x66> - 80082c2: bf00 nop - 80082c4: 0800a7ad .word 0x0800a7ad - 80082c8: 0800a834 .word 0x0800a834 - -080082cc <_Bfree>: - 80082cc: b570 push {r4, r5, r6, lr} - 80082ce: 6a46 ldr r6, [r0, #36] ; 0x24 - 80082d0: 4605 mov r5, r0 - 80082d2: 460c mov r4, r1 - 80082d4: b976 cbnz r6, 80082f4 <_Bfree+0x28> - 80082d6: 2010 movs r0, #16 - 80082d8: f7fe fbc2 bl 8006a60 - 80082dc: 4602 mov r2, r0 - 80082de: 6268 str r0, [r5, #36] ; 0x24 - 80082e0: b920 cbnz r0, 80082ec <_Bfree+0x20> - 80082e2: 218a movs r1, #138 ; 0x8a - 80082e4: 4b08 ldr r3, [pc, #32] ; (8008308 <_Bfree+0x3c>) - 80082e6: 4809 ldr r0, [pc, #36] ; (800830c <_Bfree+0x40>) - 80082e8: f000 fc9c bl 8008c24 <__assert_func> - 80082ec: e9c0 6601 strd r6, r6, [r0, #4] - 80082f0: 6006 str r6, [r0, #0] - 80082f2: 60c6 str r6, [r0, #12] - 80082f4: b13c cbz r4, 8008306 <_Bfree+0x3a> - 80082f6: 6a6b ldr r3, [r5, #36] ; 0x24 - 80082f8: 6862 ldr r2, [r4, #4] - 80082fa: 68db ldr r3, [r3, #12] - 80082fc: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 8008300: 6021 str r1, [r4, #0] - 8008302: f843 4022 str.w r4, [r3, r2, lsl #2] - 8008306: bd70 pop {r4, r5, r6, pc} - 8008308: 0800a7ad .word 0x0800a7ad - 800830c: 0800a834 .word 0x0800a834 - -08008310 <__multadd>: - 8008310: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8008314: 4698 mov r8, r3 - 8008316: 460c mov r4, r1 - 8008318: 2300 movs r3, #0 - 800831a: 690e ldr r6, [r1, #16] - 800831c: 4607 mov r7, r0 - 800831e: f101 0014 add.w r0, r1, #20 - 8008322: 6805 ldr r5, [r0, #0] - 8008324: 3301 adds r3, #1 - 8008326: b2a9 uxth r1, r5 - 8008328: fb02 8101 mla r1, r2, r1, r8 - 800832c: 0c2d lsrs r5, r5, #16 - 800832e: ea4f 4c11 mov.w ip, r1, lsr #16 - 8008332: fb02 c505 mla r5, r2, r5, ip - 8008336: b289 uxth r1, r1 - 8008338: eb01 4105 add.w r1, r1, r5, lsl #16 - 800833c: 429e cmp r6, r3 - 800833e: ea4f 4815 mov.w r8, r5, lsr #16 - 8008342: f840 1b04 str.w r1, [r0], #4 - 8008346: dcec bgt.n 8008322 <__multadd+0x12> - 8008348: f1b8 0f00 cmp.w r8, #0 - 800834c: d022 beq.n 8008394 <__multadd+0x84> - 800834e: 68a3 ldr r3, [r4, #8] - 8008350: 42b3 cmp r3, r6 - 8008352: dc19 bgt.n 8008388 <__multadd+0x78> - 8008354: 6861 ldr r1, [r4, #4] - 8008356: 4638 mov r0, r7 - 8008358: 3101 adds r1, #1 - 800835a: f7ff ff77 bl 800824c <_Balloc> - 800835e: 4605 mov r5, r0 - 8008360: b928 cbnz r0, 800836e <__multadd+0x5e> - 8008362: 4602 mov r2, r0 - 8008364: 21b5 movs r1, #181 ; 0xb5 - 8008366: 4b0d ldr r3, [pc, #52] ; (800839c <__multadd+0x8c>) - 8008368: 480d ldr r0, [pc, #52] ; (80083a0 <__multadd+0x90>) - 800836a: f000 fc5b bl 8008c24 <__assert_func> - 800836e: 6922 ldr r2, [r4, #16] - 8008370: f104 010c add.w r1, r4, #12 - 8008374: 3202 adds r2, #2 - 8008376: 0092 lsls r2, r2, #2 - 8008378: 300c adds r0, #12 - 800837a: f7ff ff4d bl 8008218 - 800837e: 4621 mov r1, r4 - 8008380: 4638 mov r0, r7 - 8008382: f7ff ffa3 bl 80082cc <_Bfree> - 8008386: 462c mov r4, r5 - 8008388: eb04 0386 add.w r3, r4, r6, lsl #2 - 800838c: 3601 adds r6, #1 - 800838e: f8c3 8014 str.w r8, [r3, #20] - 8008392: 6126 str r6, [r4, #16] - 8008394: 4620 mov r0, r4 - 8008396: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 800839a: bf00 nop - 800839c: 0800a823 .word 0x0800a823 - 80083a0: 0800a834 .word 0x0800a834 - -080083a4 <__hi0bits>: - 80083a4: 0c02 lsrs r2, r0, #16 - 80083a6: 0412 lsls r2, r2, #16 - 80083a8: 4603 mov r3, r0 - 80083aa: b9ca cbnz r2, 80083e0 <__hi0bits+0x3c> - 80083ac: 0403 lsls r3, r0, #16 - 80083ae: 2010 movs r0, #16 - 80083b0: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 - 80083b4: bf04 itt eq - 80083b6: 021b lsleq r3, r3, #8 - 80083b8: 3008 addeq r0, #8 - 80083ba: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 - 80083be: bf04 itt eq - 80083c0: 011b lsleq r3, r3, #4 - 80083c2: 3004 addeq r0, #4 - 80083c4: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 - 80083c8: bf04 itt eq - 80083ca: 009b lsleq r3, r3, #2 - 80083cc: 3002 addeq r0, #2 - 80083ce: 2b00 cmp r3, #0 - 80083d0: db05 blt.n 80083de <__hi0bits+0x3a> - 80083d2: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 - 80083d6: f100 0001 add.w r0, r0, #1 - 80083da: bf08 it eq - 80083dc: 2020 moveq r0, #32 - 80083de: 4770 bx lr - 80083e0: 2000 movs r0, #0 - 80083e2: e7e5 b.n 80083b0 <__hi0bits+0xc> - -080083e4 <__lo0bits>: - 80083e4: 6803 ldr r3, [r0, #0] - 80083e6: 4602 mov r2, r0 - 80083e8: f013 0007 ands.w r0, r3, #7 - 80083ec: d00b beq.n 8008406 <__lo0bits+0x22> - 80083ee: 07d9 lsls r1, r3, #31 - 80083f0: d422 bmi.n 8008438 <__lo0bits+0x54> - 80083f2: 0798 lsls r0, r3, #30 - 80083f4: bf49 itett mi - 80083f6: 085b lsrmi r3, r3, #1 - 80083f8: 089b lsrpl r3, r3, #2 - 80083fa: 2001 movmi r0, #1 - 80083fc: 6013 strmi r3, [r2, #0] - 80083fe: bf5c itt pl - 8008400: 2002 movpl r0, #2 - 8008402: 6013 strpl r3, [r2, #0] - 8008404: 4770 bx lr - 8008406: b299 uxth r1, r3 - 8008408: b909 cbnz r1, 800840e <__lo0bits+0x2a> - 800840a: 2010 movs r0, #16 - 800840c: 0c1b lsrs r3, r3, #16 - 800840e: f013 0fff tst.w r3, #255 ; 0xff - 8008412: bf04 itt eq - 8008414: 0a1b lsreq r3, r3, #8 - 8008416: 3008 addeq r0, #8 - 8008418: 0719 lsls r1, r3, #28 - 800841a: bf04 itt eq - 800841c: 091b lsreq r3, r3, #4 - 800841e: 3004 addeq r0, #4 - 8008420: 0799 lsls r1, r3, #30 - 8008422: bf04 itt eq - 8008424: 089b lsreq r3, r3, #2 - 8008426: 3002 addeq r0, #2 - 8008428: 07d9 lsls r1, r3, #31 - 800842a: d403 bmi.n 8008434 <__lo0bits+0x50> - 800842c: 085b lsrs r3, r3, #1 - 800842e: f100 0001 add.w r0, r0, #1 - 8008432: d003 beq.n 800843c <__lo0bits+0x58> - 8008434: 6013 str r3, [r2, #0] - 8008436: 4770 bx lr - 8008438: 2000 movs r0, #0 - 800843a: 4770 bx lr - 800843c: 2020 movs r0, #32 - 800843e: 4770 bx lr - -08008440 <__i2b>: - 8008440: b510 push {r4, lr} - 8008442: 460c mov r4, r1 - 8008444: 2101 movs r1, #1 - 8008446: f7ff ff01 bl 800824c <_Balloc> - 800844a: 4602 mov r2, r0 - 800844c: b928 cbnz r0, 800845a <__i2b+0x1a> - 800844e: f44f 71a0 mov.w r1, #320 ; 0x140 - 8008452: 4b04 ldr r3, [pc, #16] ; (8008464 <__i2b+0x24>) - 8008454: 4804 ldr r0, [pc, #16] ; (8008468 <__i2b+0x28>) - 8008456: f000 fbe5 bl 8008c24 <__assert_func> - 800845a: 2301 movs r3, #1 - 800845c: 6144 str r4, [r0, #20] - 800845e: 6103 str r3, [r0, #16] - 8008460: bd10 pop {r4, pc} - 8008462: bf00 nop - 8008464: 0800a823 .word 0x0800a823 - 8008468: 0800a834 .word 0x0800a834 - -0800846c <__multiply>: - 800846c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8008470: 4614 mov r4, r2 - 8008472: 690a ldr r2, [r1, #16] - 8008474: 6923 ldr r3, [r4, #16] - 8008476: 460d mov r5, r1 - 8008478: 429a cmp r2, r3 - 800847a: bfbe ittt lt - 800847c: 460b movlt r3, r1 - 800847e: 4625 movlt r5, r4 - 8008480: 461c movlt r4, r3 - 8008482: f8d5 a010 ldr.w sl, [r5, #16] - 8008486: f8d4 9010 ldr.w r9, [r4, #16] - 800848a: 68ab ldr r3, [r5, #8] - 800848c: 6869 ldr r1, [r5, #4] - 800848e: eb0a 0709 add.w r7, sl, r9 - 8008492: 42bb cmp r3, r7 - 8008494: b085 sub sp, #20 - 8008496: bfb8 it lt - 8008498: 3101 addlt r1, #1 - 800849a: f7ff fed7 bl 800824c <_Balloc> - 800849e: b930 cbnz r0, 80084ae <__multiply+0x42> - 80084a0: 4602 mov r2, r0 - 80084a2: f240 115d movw r1, #349 ; 0x15d - 80084a6: 4b41 ldr r3, [pc, #260] ; (80085ac <__multiply+0x140>) - 80084a8: 4841 ldr r0, [pc, #260] ; (80085b0 <__multiply+0x144>) - 80084aa: f000 fbbb bl 8008c24 <__assert_func> - 80084ae: f100 0614 add.w r6, r0, #20 - 80084b2: 4633 mov r3, r6 - 80084b4: 2200 movs r2, #0 - 80084b6: eb06 0887 add.w r8, r6, r7, lsl #2 - 80084ba: 4543 cmp r3, r8 - 80084bc: d31e bcc.n 80084fc <__multiply+0x90> - 80084be: f105 0c14 add.w ip, r5, #20 - 80084c2: f104 0314 add.w r3, r4, #20 - 80084c6: eb0c 0c8a add.w ip, ip, sl, lsl #2 - 80084ca: eb03 0289 add.w r2, r3, r9, lsl #2 - 80084ce: 9202 str r2, [sp, #8] - 80084d0: ebac 0205 sub.w r2, ip, r5 - 80084d4: 3a15 subs r2, #21 - 80084d6: f022 0203 bic.w r2, r2, #3 - 80084da: 3204 adds r2, #4 - 80084dc: f105 0115 add.w r1, r5, #21 - 80084e0: 458c cmp ip, r1 - 80084e2: bf38 it cc - 80084e4: 2204 movcc r2, #4 - 80084e6: 9201 str r2, [sp, #4] - 80084e8: 9a02 ldr r2, [sp, #8] - 80084ea: 9303 str r3, [sp, #12] - 80084ec: 429a cmp r2, r3 - 80084ee: d808 bhi.n 8008502 <__multiply+0x96> - 80084f0: 2f00 cmp r7, #0 - 80084f2: dc55 bgt.n 80085a0 <__multiply+0x134> - 80084f4: 6107 str r7, [r0, #16] - 80084f6: b005 add sp, #20 - 80084f8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80084fc: f843 2b04 str.w r2, [r3], #4 - 8008500: e7db b.n 80084ba <__multiply+0x4e> - 8008502: f8b3 a000 ldrh.w sl, [r3] - 8008506: f1ba 0f00 cmp.w sl, #0 - 800850a: d020 beq.n 800854e <__multiply+0xe2> - 800850c: 46b1 mov r9, r6 - 800850e: 2200 movs r2, #0 - 8008510: f105 0e14 add.w lr, r5, #20 - 8008514: f85e 4b04 ldr.w r4, [lr], #4 - 8008518: f8d9 b000 ldr.w fp, [r9] - 800851c: b2a1 uxth r1, r4 - 800851e: fa1f fb8b uxth.w fp, fp - 8008522: fb0a b101 mla r1, sl, r1, fp - 8008526: 4411 add r1, r2 - 8008528: f8d9 2000 ldr.w r2, [r9] - 800852c: 0c24 lsrs r4, r4, #16 - 800852e: 0c12 lsrs r2, r2, #16 - 8008530: fb0a 2404 mla r4, sl, r4, r2 - 8008534: eb04 4411 add.w r4, r4, r1, lsr #16 - 8008538: b289 uxth r1, r1 - 800853a: ea41 4104 orr.w r1, r1, r4, lsl #16 - 800853e: 45f4 cmp ip, lr - 8008540: ea4f 4214 mov.w r2, r4, lsr #16 - 8008544: f849 1b04 str.w r1, [r9], #4 - 8008548: d8e4 bhi.n 8008514 <__multiply+0xa8> - 800854a: 9901 ldr r1, [sp, #4] - 800854c: 5072 str r2, [r6, r1] - 800854e: 9a03 ldr r2, [sp, #12] - 8008550: 3304 adds r3, #4 - 8008552: f8b2 9002 ldrh.w r9, [r2, #2] - 8008556: f1b9 0f00 cmp.w r9, #0 - 800855a: d01f beq.n 800859c <__multiply+0x130> - 800855c: 46b6 mov lr, r6 - 800855e: f04f 0a00 mov.w sl, #0 - 8008562: 6834 ldr r4, [r6, #0] - 8008564: f105 0114 add.w r1, r5, #20 - 8008568: 880a ldrh r2, [r1, #0] - 800856a: f8be b002 ldrh.w fp, [lr, #2] - 800856e: b2a4 uxth r4, r4 - 8008570: fb09 b202 mla r2, r9, r2, fp - 8008574: 4492 add sl, r2 - 8008576: ea44 440a orr.w r4, r4, sl, lsl #16 - 800857a: f84e 4b04 str.w r4, [lr], #4 - 800857e: f851 4b04 ldr.w r4, [r1], #4 - 8008582: f8be 2000 ldrh.w r2, [lr] - 8008586: 0c24 lsrs r4, r4, #16 - 8008588: fb09 2404 mla r4, r9, r4, r2 - 800858c: 458c cmp ip, r1 - 800858e: eb04 441a add.w r4, r4, sl, lsr #16 - 8008592: ea4f 4a14 mov.w sl, r4, lsr #16 - 8008596: d8e7 bhi.n 8008568 <__multiply+0xfc> - 8008598: 9a01 ldr r2, [sp, #4] - 800859a: 50b4 str r4, [r6, r2] - 800859c: 3604 adds r6, #4 - 800859e: e7a3 b.n 80084e8 <__multiply+0x7c> - 80085a0: f858 3d04 ldr.w r3, [r8, #-4]! + 8008174: d07e beq.n 8008274 <_dtoa_r+0x4f4> + 8008176: 9b02 ldr r3, [sp, #8] + 8008178: 2b00 cmp r3, #0 + 800817a: d07b beq.n 8008274 <_dtoa_r+0x4f4> + 800817c: f1bb 0f00 cmp.w fp, #0 + 8008180: dd38 ble.n 80081f4 <_dtoa_r+0x474> + 8008182: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008186: 2200 movs r2, #0 + 8008188: 4b69 ldr r3, [pc, #420] ; (8008330 <_dtoa_r+0x5b0>) + 800818a: f7f8 fa11 bl 80005b0 <__aeabi_dmul> + 800818e: 465c mov r4, fp + 8008190: e9cd 0104 strd r0, r1, [sp, #16] + 8008194: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff + 8008198: 3701 adds r7, #1 + 800819a: 4638 mov r0, r7 + 800819c: f7f8 f99e bl 80004dc <__aeabi_i2d> + 80081a0: e9dd 2304 ldrd r2, r3, [sp, #16] + 80081a4: f7f8 fa04 bl 80005b0 <__aeabi_dmul> + 80081a8: 2200 movs r2, #0 + 80081aa: 4b62 ldr r3, [pc, #392] ; (8008334 <_dtoa_r+0x5b4>) + 80081ac: f7f8 f84a bl 8000244 <__adddf3> + 80081b0: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 + 80081b4: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 80081b8: 9611 str r6, [sp, #68] ; 0x44 + 80081ba: 2c00 cmp r4, #0 + 80081bc: d15d bne.n 800827a <_dtoa_r+0x4fa> + 80081be: e9dd 0104 ldrd r0, r1, [sp, #16] + 80081c2: 2200 movs r2, #0 + 80081c4: 4b5c ldr r3, [pc, #368] ; (8008338 <_dtoa_r+0x5b8>) + 80081c6: f7f8 f83b bl 8000240 <__aeabi_dsub> + 80081ca: 4602 mov r2, r0 + 80081cc: 460b mov r3, r1 + 80081ce: e9cd 2304 strd r2, r3, [sp, #16] + 80081d2: 4633 mov r3, r6 + 80081d4: 9a10 ldr r2, [sp, #64] ; 0x40 + 80081d6: f7f8 fc7b bl 8000ad0 <__aeabi_dcmpgt> + 80081da: 2800 cmp r0, #0 + 80081dc: f040 829e bne.w 800871c <_dtoa_r+0x99c> + 80081e0: e9dd 0104 ldrd r0, r1, [sp, #16] + 80081e4: 9a10 ldr r2, [sp, #64] ; 0x40 + 80081e6: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 + 80081ea: f7f8 fc53 bl 8000a94 <__aeabi_dcmplt> + 80081ee: 2800 cmp r0, #0 + 80081f0: f040 8292 bne.w 8008718 <_dtoa_r+0x998> + 80081f4: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 + 80081f8: e9cd 3404 strd r3, r4, [sp, #16] + 80081fc: 9b17 ldr r3, [sp, #92] ; 0x5c + 80081fe: 2b00 cmp r3, #0 + 8008200: f2c0 8153 blt.w 80084aa <_dtoa_r+0x72a> + 8008204: f1b9 0f0e cmp.w r9, #14 + 8008208: f300 814f bgt.w 80084aa <_dtoa_r+0x72a> + 800820c: 4b45 ldr r3, [pc, #276] ; (8008324 <_dtoa_r+0x5a4>) + 800820e: eb03 03c9 add.w r3, r3, r9, lsl #3 + 8008212: e9d3 3400 ldrd r3, r4, [r3] + 8008216: e9cd 3406 strd r3, r4, [sp, #24] + 800821a: 9b23 ldr r3, [sp, #140] ; 0x8c + 800821c: 2b00 cmp r3, #0 + 800821e: f280 80db bge.w 80083d8 <_dtoa_r+0x658> + 8008222: 9b02 ldr r3, [sp, #8] + 8008224: 2b00 cmp r3, #0 + 8008226: f300 80d7 bgt.w 80083d8 <_dtoa_r+0x658> + 800822a: f040 8274 bne.w 8008716 <_dtoa_r+0x996> + 800822e: e9dd 0106 ldrd r0, r1, [sp, #24] + 8008232: 2200 movs r2, #0 + 8008234: 4b40 ldr r3, [pc, #256] ; (8008338 <_dtoa_r+0x5b8>) + 8008236: f7f8 f9bb bl 80005b0 <__aeabi_dmul> + 800823a: e9dd 2304 ldrd r2, r3, [sp, #16] + 800823e: f7f8 fc3d bl 8000abc <__aeabi_dcmpge> + 8008242: 9c02 ldr r4, [sp, #8] + 8008244: 4626 mov r6, r4 + 8008246: 2800 cmp r0, #0 + 8008248: f040 824a bne.w 80086e0 <_dtoa_r+0x960> + 800824c: 2331 movs r3, #49 ; 0x31 + 800824e: 9f08 ldr r7, [sp, #32] + 8008250: f109 0901 add.w r9, r9, #1 + 8008254: f807 3b01 strb.w r3, [r7], #1 + 8008258: e246 b.n 80086e8 <_dtoa_r+0x968> + 800825a: 07e2 lsls r2, r4, #31 + 800825c: d505 bpl.n 800826a <_dtoa_r+0x4ea> + 800825e: e9d6 2300 ldrd r2, r3, [r6] + 8008262: f7f8 f9a5 bl 80005b0 <__aeabi_dmul> + 8008266: 2301 movs r3, #1 + 8008268: 3701 adds r7, #1 + 800826a: 1064 asrs r4, r4, #1 + 800826c: 3608 adds r6, #8 + 800826e: e76d b.n 800814c <_dtoa_r+0x3cc> + 8008270: 2702 movs r7, #2 + 8008272: e770 b.n 8008156 <_dtoa_r+0x3d6> + 8008274: 46c8 mov r8, r9 + 8008276: 9c02 ldr r4, [sp, #8] + 8008278: e78f b.n 800819a <_dtoa_r+0x41a> + 800827a: 9908 ldr r1, [sp, #32] + 800827c: 4b29 ldr r3, [pc, #164] ; (8008324 <_dtoa_r+0x5a4>) + 800827e: 4421 add r1, r4 + 8008280: 9112 str r1, [sp, #72] ; 0x48 + 8008282: 990b ldr r1, [sp, #44] ; 0x2c + 8008284: eb03 03c4 add.w r3, r3, r4, lsl #3 + 8008288: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 + 800828c: e953 2302 ldrd r2, r3, [r3, #-8] + 8008290: 2900 cmp r1, #0 + 8008292: d055 beq.n 8008340 <_dtoa_r+0x5c0> + 8008294: 2000 movs r0, #0 + 8008296: 4929 ldr r1, [pc, #164] ; (800833c <_dtoa_r+0x5bc>) + 8008298: f7f8 fab4 bl 8000804 <__aeabi_ddiv> + 800829c: 463b mov r3, r7 + 800829e: 4632 mov r2, r6 + 80082a0: f7f7 ffce bl 8000240 <__aeabi_dsub> + 80082a4: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 80082a8: 9f08 ldr r7, [sp, #32] + 80082aa: e9dd 0104 ldrd r0, r1, [sp, #16] + 80082ae: f7f8 fc2f bl 8000b10 <__aeabi_d2iz> + 80082b2: 4604 mov r4, r0 + 80082b4: f7f8 f912 bl 80004dc <__aeabi_i2d> + 80082b8: 4602 mov r2, r0 + 80082ba: 460b mov r3, r1 + 80082bc: e9dd 0104 ldrd r0, r1, [sp, #16] + 80082c0: f7f7 ffbe bl 8000240 <__aeabi_dsub> + 80082c4: 4602 mov r2, r0 + 80082c6: 460b mov r3, r1 + 80082c8: 3430 adds r4, #48 ; 0x30 + 80082ca: e9cd 2304 strd r2, r3, [sp, #16] + 80082ce: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 80082d2: f807 4b01 strb.w r4, [r7], #1 + 80082d6: f7f8 fbdd bl 8000a94 <__aeabi_dcmplt> + 80082da: 2800 cmp r0, #0 + 80082dc: d174 bne.n 80083c8 <_dtoa_r+0x648> + 80082de: e9dd 2304 ldrd r2, r3, [sp, #16] + 80082e2: 2000 movs r0, #0 + 80082e4: 4911 ldr r1, [pc, #68] ; (800832c <_dtoa_r+0x5ac>) + 80082e6: f7f7 ffab bl 8000240 <__aeabi_dsub> + 80082ea: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 80082ee: f7f8 fbd1 bl 8000a94 <__aeabi_dcmplt> + 80082f2: 2800 cmp r0, #0 + 80082f4: f040 80b6 bne.w 8008464 <_dtoa_r+0x6e4> + 80082f8: 9b12 ldr r3, [sp, #72] ; 0x48 + 80082fa: 429f cmp r7, r3 + 80082fc: f43f af7a beq.w 80081f4 <_dtoa_r+0x474> + 8008300: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008304: 2200 movs r2, #0 + 8008306: 4b0a ldr r3, [pc, #40] ; (8008330 <_dtoa_r+0x5b0>) + 8008308: f7f8 f952 bl 80005b0 <__aeabi_dmul> + 800830c: 2200 movs r2, #0 + 800830e: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008312: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008316: 4b06 ldr r3, [pc, #24] ; (8008330 <_dtoa_r+0x5b0>) + 8008318: f7f8 f94a bl 80005b0 <__aeabi_dmul> + 800831c: e9cd 0104 strd r0, r1, [sp, #16] + 8008320: e7c3 b.n 80082aa <_dtoa_r+0x52a> + 8008322: bf00 nop + 8008324: 0800b028 .word 0x0800b028 + 8008328: 0800b000 .word 0x0800b000 + 800832c: 3ff00000 .word 0x3ff00000 + 8008330: 40240000 .word 0x40240000 + 8008334: 401c0000 .word 0x401c0000 + 8008338: 40140000 .word 0x40140000 + 800833c: 3fe00000 .word 0x3fe00000 + 8008340: 4630 mov r0, r6 + 8008342: 4639 mov r1, r7 + 8008344: f7f8 f934 bl 80005b0 <__aeabi_dmul> + 8008348: 9b12 ldr r3, [sp, #72] ; 0x48 + 800834a: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 800834e: 9c08 ldr r4, [sp, #32] + 8008350: 9314 str r3, [sp, #80] ; 0x50 + 8008352: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008356: f7f8 fbdb bl 8000b10 <__aeabi_d2iz> + 800835a: 9015 str r0, [sp, #84] ; 0x54 + 800835c: f7f8 f8be bl 80004dc <__aeabi_i2d> + 8008360: 4602 mov r2, r0 + 8008362: 460b mov r3, r1 + 8008364: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008368: f7f7 ff6a bl 8000240 <__aeabi_dsub> + 800836c: 9b15 ldr r3, [sp, #84] ; 0x54 + 800836e: 4606 mov r6, r0 + 8008370: 3330 adds r3, #48 ; 0x30 + 8008372: f804 3b01 strb.w r3, [r4], #1 + 8008376: 9b12 ldr r3, [sp, #72] ; 0x48 + 8008378: 460f mov r7, r1 + 800837a: 429c cmp r4, r3 + 800837c: f04f 0200 mov.w r2, #0 + 8008380: d124 bne.n 80083cc <_dtoa_r+0x64c> + 8008382: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008386: 4bb3 ldr r3, [pc, #716] ; (8008654 <_dtoa_r+0x8d4>) + 8008388: f7f7 ff5c bl 8000244 <__adddf3> + 800838c: 4602 mov r2, r0 + 800838e: 460b mov r3, r1 + 8008390: 4630 mov r0, r6 + 8008392: 4639 mov r1, r7 + 8008394: f7f8 fb9c bl 8000ad0 <__aeabi_dcmpgt> + 8008398: 2800 cmp r0, #0 + 800839a: d162 bne.n 8008462 <_dtoa_r+0x6e2> + 800839c: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 80083a0: 2000 movs r0, #0 + 80083a2: 49ac ldr r1, [pc, #688] ; (8008654 <_dtoa_r+0x8d4>) + 80083a4: f7f7 ff4c bl 8000240 <__aeabi_dsub> + 80083a8: 4602 mov r2, r0 + 80083aa: 460b mov r3, r1 + 80083ac: 4630 mov r0, r6 + 80083ae: 4639 mov r1, r7 + 80083b0: f7f8 fb70 bl 8000a94 <__aeabi_dcmplt> + 80083b4: 2800 cmp r0, #0 + 80083b6: f43f af1d beq.w 80081f4 <_dtoa_r+0x474> + 80083ba: 9f14 ldr r7, [sp, #80] ; 0x50 + 80083bc: 1e7b subs r3, r7, #1 + 80083be: 9314 str r3, [sp, #80] ; 0x50 + 80083c0: f817 3c01 ldrb.w r3, [r7, #-1] + 80083c4: 2b30 cmp r3, #48 ; 0x30 + 80083c6: d0f8 beq.n 80083ba <_dtoa_r+0x63a> + 80083c8: 46c1 mov r9, r8 + 80083ca: e03a b.n 8008442 <_dtoa_r+0x6c2> + 80083cc: 4ba2 ldr r3, [pc, #648] ; (8008658 <_dtoa_r+0x8d8>) + 80083ce: f7f8 f8ef bl 80005b0 <__aeabi_dmul> + 80083d2: e9cd 0104 strd r0, r1, [sp, #16] + 80083d6: e7bc b.n 8008352 <_dtoa_r+0x5d2> + 80083d8: 9f08 ldr r7, [sp, #32] + 80083da: e9dd 2306 ldrd r2, r3, [sp, #24] + 80083de: e9dd 0104 ldrd r0, r1, [sp, #16] + 80083e2: f7f8 fa0f bl 8000804 <__aeabi_ddiv> + 80083e6: f7f8 fb93 bl 8000b10 <__aeabi_d2iz> + 80083ea: 4604 mov r4, r0 + 80083ec: f7f8 f876 bl 80004dc <__aeabi_i2d> + 80083f0: e9dd 2306 ldrd r2, r3, [sp, #24] + 80083f4: f7f8 f8dc bl 80005b0 <__aeabi_dmul> + 80083f8: f104 0630 add.w r6, r4, #48 ; 0x30 + 80083fc: 460b mov r3, r1 + 80083fe: 4602 mov r2, r0 + 8008400: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008404: f7f7 ff1c bl 8000240 <__aeabi_dsub> + 8008408: f807 6b01 strb.w r6, [r7], #1 + 800840c: 9e08 ldr r6, [sp, #32] + 800840e: 9b02 ldr r3, [sp, #8] + 8008410: 1bbe subs r6, r7, r6 + 8008412: 42b3 cmp r3, r6 + 8008414: d13a bne.n 800848c <_dtoa_r+0x70c> + 8008416: 4602 mov r2, r0 + 8008418: 460b mov r3, r1 + 800841a: f7f7 ff13 bl 8000244 <__adddf3> + 800841e: 4602 mov r2, r0 + 8008420: 460b mov r3, r1 + 8008422: e9cd 2302 strd r2, r3, [sp, #8] + 8008426: e9dd 2306 ldrd r2, r3, [sp, #24] + 800842a: f7f8 fb51 bl 8000ad0 <__aeabi_dcmpgt> + 800842e: bb58 cbnz r0, 8008488 <_dtoa_r+0x708> + 8008430: e9dd 2306 ldrd r2, r3, [sp, #24] + 8008434: e9dd 0102 ldrd r0, r1, [sp, #8] + 8008438: f7f8 fb22 bl 8000a80 <__aeabi_dcmpeq> + 800843c: b108 cbz r0, 8008442 <_dtoa_r+0x6c2> + 800843e: 07e1 lsls r1, r4, #31 + 8008440: d422 bmi.n 8008488 <_dtoa_r+0x708> + 8008442: 4628 mov r0, r5 + 8008444: 4651 mov r1, sl + 8008446: f000 faf5 bl 8008a34 <_Bfree> + 800844a: 2300 movs r3, #0 + 800844c: 703b strb r3, [r7, #0] + 800844e: 9b24 ldr r3, [sp, #144] ; 0x90 + 8008450: f109 0001 add.w r0, r9, #1 + 8008454: 6018 str r0, [r3, #0] + 8008456: 9b26 ldr r3, [sp, #152] ; 0x98 + 8008458: 2b00 cmp r3, #0 + 800845a: f43f acdf beq.w 8007e1c <_dtoa_r+0x9c> + 800845e: 601f str r7, [r3, #0] + 8008460: e4dc b.n 8007e1c <_dtoa_r+0x9c> + 8008462: 4627 mov r7, r4 + 8008464: 463b mov r3, r7 + 8008466: 461f mov r7, r3 + 8008468: f813 2d01 ldrb.w r2, [r3, #-1]! + 800846c: 2a39 cmp r2, #57 ; 0x39 + 800846e: d107 bne.n 8008480 <_dtoa_r+0x700> + 8008470: 9a08 ldr r2, [sp, #32] + 8008472: 429a cmp r2, r3 + 8008474: d1f7 bne.n 8008466 <_dtoa_r+0x6e6> + 8008476: 2230 movs r2, #48 ; 0x30 + 8008478: 9908 ldr r1, [sp, #32] + 800847a: f108 0801 add.w r8, r8, #1 + 800847e: 700a strb r2, [r1, #0] + 8008480: 781a ldrb r2, [r3, #0] + 8008482: 3201 adds r2, #1 + 8008484: 701a strb r2, [r3, #0] + 8008486: e79f b.n 80083c8 <_dtoa_r+0x648> + 8008488: 46c8 mov r8, r9 + 800848a: e7eb b.n 8008464 <_dtoa_r+0x6e4> + 800848c: 2200 movs r2, #0 + 800848e: 4b72 ldr r3, [pc, #456] ; (8008658 <_dtoa_r+0x8d8>) + 8008490: f7f8 f88e bl 80005b0 <__aeabi_dmul> + 8008494: 4602 mov r2, r0 + 8008496: 460b mov r3, r1 + 8008498: e9cd 2304 strd r2, r3, [sp, #16] + 800849c: 2200 movs r2, #0 + 800849e: 2300 movs r3, #0 + 80084a0: f7f8 faee bl 8000a80 <__aeabi_dcmpeq> + 80084a4: 2800 cmp r0, #0 + 80084a6: d098 beq.n 80083da <_dtoa_r+0x65a> + 80084a8: e7cb b.n 8008442 <_dtoa_r+0x6c2> + 80084aa: 9a0b ldr r2, [sp, #44] ; 0x2c + 80084ac: 2a00 cmp r2, #0 + 80084ae: f000 80cd beq.w 800864c <_dtoa_r+0x8cc> + 80084b2: 9a22 ldr r2, [sp, #136] ; 0x88 + 80084b4: 2a01 cmp r2, #1 + 80084b6: f300 80af bgt.w 8008618 <_dtoa_r+0x898> + 80084ba: 9a13 ldr r2, [sp, #76] ; 0x4c + 80084bc: 2a00 cmp r2, #0 + 80084be: f000 80a7 beq.w 8008610 <_dtoa_r+0x890> + 80084c2: f203 4333 addw r3, r3, #1075 ; 0x433 + 80084c6: 9c0a ldr r4, [sp, #40] ; 0x28 + 80084c8: 9f06 ldr r7, [sp, #24] + 80084ca: 9a06 ldr r2, [sp, #24] + 80084cc: 2101 movs r1, #1 + 80084ce: 441a add r2, r3 + 80084d0: 9206 str r2, [sp, #24] + 80084d2: 9a09 ldr r2, [sp, #36] ; 0x24 + 80084d4: 4628 mov r0, r5 + 80084d6: 441a add r2, r3 + 80084d8: 9209 str r2, [sp, #36] ; 0x24 + 80084da: f000 fb65 bl 8008ba8 <__i2b> + 80084de: 4606 mov r6, r0 + 80084e0: 2f00 cmp r7, #0 + 80084e2: dd0c ble.n 80084fe <_dtoa_r+0x77e> + 80084e4: 9b09 ldr r3, [sp, #36] ; 0x24 + 80084e6: 2b00 cmp r3, #0 + 80084e8: dd09 ble.n 80084fe <_dtoa_r+0x77e> + 80084ea: 42bb cmp r3, r7 + 80084ec: bfa8 it ge + 80084ee: 463b movge r3, r7 + 80084f0: 9a06 ldr r2, [sp, #24] + 80084f2: 1aff subs r7, r7, r3 + 80084f4: 1ad2 subs r2, r2, r3 + 80084f6: 9206 str r2, [sp, #24] + 80084f8: 9a09 ldr r2, [sp, #36] ; 0x24 + 80084fa: 1ad3 subs r3, r2, r3 + 80084fc: 9309 str r3, [sp, #36] ; 0x24 + 80084fe: 9b0a ldr r3, [sp, #40] ; 0x28 + 8008500: b1f3 cbz r3, 8008540 <_dtoa_r+0x7c0> + 8008502: 9b0b ldr r3, [sp, #44] ; 0x2c + 8008504: 2b00 cmp r3, #0 + 8008506: f000 80a9 beq.w 800865c <_dtoa_r+0x8dc> + 800850a: 2c00 cmp r4, #0 + 800850c: dd10 ble.n 8008530 <_dtoa_r+0x7b0> + 800850e: 4631 mov r1, r6 + 8008510: 4622 mov r2, r4 + 8008512: 4628 mov r0, r5 + 8008514: f000 fc02 bl 8008d1c <__pow5mult> + 8008518: 4652 mov r2, sl + 800851a: 4601 mov r1, r0 + 800851c: 4606 mov r6, r0 + 800851e: 4628 mov r0, r5 + 8008520: f000 fb58 bl 8008bd4 <__multiply> + 8008524: 4680 mov r8, r0 + 8008526: 4651 mov r1, sl + 8008528: 4628 mov r0, r5 + 800852a: f000 fa83 bl 8008a34 <_Bfree> + 800852e: 46c2 mov sl, r8 + 8008530: 9b0a ldr r3, [sp, #40] ; 0x28 + 8008532: 1b1a subs r2, r3, r4 + 8008534: d004 beq.n 8008540 <_dtoa_r+0x7c0> + 8008536: 4651 mov r1, sl + 8008538: 4628 mov r0, r5 + 800853a: f000 fbef bl 8008d1c <__pow5mult> + 800853e: 4682 mov sl, r0 + 8008540: 2101 movs r1, #1 + 8008542: 4628 mov r0, r5 + 8008544: f000 fb30 bl 8008ba8 <__i2b> + 8008548: 9b0e ldr r3, [sp, #56] ; 0x38 + 800854a: 4604 mov r4, r0 + 800854c: 2b00 cmp r3, #0 + 800854e: f340 8087 ble.w 8008660 <_dtoa_r+0x8e0> + 8008552: 461a mov r2, r3 + 8008554: 4601 mov r1, r0 + 8008556: 4628 mov r0, r5 + 8008558: f000 fbe0 bl 8008d1c <__pow5mult> + 800855c: 9b22 ldr r3, [sp, #136] ; 0x88 + 800855e: 4604 mov r4, r0 + 8008560: 2b01 cmp r3, #1 + 8008562: f340 8080 ble.w 8008666 <_dtoa_r+0x8e6> + 8008566: f04f 0800 mov.w r8, #0 + 800856a: 6923 ldr r3, [r4, #16] + 800856c: eb04 0383 add.w r3, r4, r3, lsl #2 + 8008570: 6918 ldr r0, [r3, #16] + 8008572: f000 facb bl 8008b0c <__hi0bits> + 8008576: f1c0 0020 rsb r0, r0, #32 + 800857a: 9b09 ldr r3, [sp, #36] ; 0x24 + 800857c: 4418 add r0, r3 + 800857e: f010 001f ands.w r0, r0, #31 + 8008582: f000 8092 beq.w 80086aa <_dtoa_r+0x92a> + 8008586: f1c0 0320 rsb r3, r0, #32 + 800858a: 2b04 cmp r3, #4 + 800858c: f340 808a ble.w 80086a4 <_dtoa_r+0x924> + 8008590: f1c0 001c rsb r0, r0, #28 + 8008594: 9b06 ldr r3, [sp, #24] + 8008596: 4407 add r7, r0 + 8008598: 4403 add r3, r0 + 800859a: 9306 str r3, [sp, #24] + 800859c: 9b09 ldr r3, [sp, #36] ; 0x24 + 800859e: 4403 add r3, r0 + 80085a0: 9309 str r3, [sp, #36] ; 0x24 + 80085a2: 9b06 ldr r3, [sp, #24] 80085a4: 2b00 cmp r3, #0 - 80085a6: d1a5 bne.n 80084f4 <__multiply+0x88> - 80085a8: 3f01 subs r7, #1 - 80085aa: e7a1 b.n 80084f0 <__multiply+0x84> - 80085ac: 0800a823 .word 0x0800a823 - 80085b0: 0800a834 .word 0x0800a834 + 80085a6: dd05 ble.n 80085b4 <_dtoa_r+0x834> + 80085a8: 4651 mov r1, sl + 80085aa: 461a mov r2, r3 + 80085ac: 4628 mov r0, r5 + 80085ae: f000 fc0f bl 8008dd0 <__lshift> + 80085b2: 4682 mov sl, r0 + 80085b4: 9b09 ldr r3, [sp, #36] ; 0x24 + 80085b6: 2b00 cmp r3, #0 + 80085b8: dd05 ble.n 80085c6 <_dtoa_r+0x846> + 80085ba: 4621 mov r1, r4 + 80085bc: 461a mov r2, r3 + 80085be: 4628 mov r0, r5 + 80085c0: f000 fc06 bl 8008dd0 <__lshift> + 80085c4: 4604 mov r4, r0 + 80085c6: 9b0f ldr r3, [sp, #60] ; 0x3c + 80085c8: 2b00 cmp r3, #0 + 80085ca: d070 beq.n 80086ae <_dtoa_r+0x92e> + 80085cc: 4621 mov r1, r4 + 80085ce: 4650 mov r0, sl + 80085d0: f000 fc6a bl 8008ea8 <__mcmp> + 80085d4: 2800 cmp r0, #0 + 80085d6: da6a bge.n 80086ae <_dtoa_r+0x92e> + 80085d8: 2300 movs r3, #0 + 80085da: 4651 mov r1, sl + 80085dc: 220a movs r2, #10 + 80085de: 4628 mov r0, r5 + 80085e0: f000 fa4a bl 8008a78 <__multadd> + 80085e4: 9b0b ldr r3, [sp, #44] ; 0x2c + 80085e6: 4682 mov sl, r0 + 80085e8: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 80085ec: 2b00 cmp r3, #0 + 80085ee: f000 8193 beq.w 8008918 <_dtoa_r+0xb98> + 80085f2: 4631 mov r1, r6 + 80085f4: 2300 movs r3, #0 + 80085f6: 220a movs r2, #10 + 80085f8: 4628 mov r0, r5 + 80085fa: f000 fa3d bl 8008a78 <__multadd> + 80085fe: f1bb 0f00 cmp.w fp, #0 + 8008602: 4606 mov r6, r0 + 8008604: f300 8093 bgt.w 800872e <_dtoa_r+0x9ae> + 8008608: 9b22 ldr r3, [sp, #136] ; 0x88 + 800860a: 2b02 cmp r3, #2 + 800860c: dc57 bgt.n 80086be <_dtoa_r+0x93e> + 800860e: e08e b.n 800872e <_dtoa_r+0x9ae> + 8008610: 9b16 ldr r3, [sp, #88] ; 0x58 + 8008612: f1c3 0336 rsb r3, r3, #54 ; 0x36 + 8008616: e756 b.n 80084c6 <_dtoa_r+0x746> + 8008618: 9b02 ldr r3, [sp, #8] + 800861a: 1e5c subs r4, r3, #1 + 800861c: 9b0a ldr r3, [sp, #40] ; 0x28 + 800861e: 42a3 cmp r3, r4 + 8008620: bfb7 itett lt + 8008622: 9b0a ldrlt r3, [sp, #40] ; 0x28 + 8008624: 1b1c subge r4, r3, r4 + 8008626: 1ae2 sublt r2, r4, r3 + 8008628: 9b0e ldrlt r3, [sp, #56] ; 0x38 + 800862a: bfbe ittt lt + 800862c: 940a strlt r4, [sp, #40] ; 0x28 + 800862e: 189b addlt r3, r3, r2 + 8008630: 930e strlt r3, [sp, #56] ; 0x38 + 8008632: 9b02 ldr r3, [sp, #8] + 8008634: bfb8 it lt + 8008636: 2400 movlt r4, #0 + 8008638: 2b00 cmp r3, #0 + 800863a: bfbb ittet lt + 800863c: 9b06 ldrlt r3, [sp, #24] + 800863e: 9a02 ldrlt r2, [sp, #8] + 8008640: 9f06 ldrge r7, [sp, #24] + 8008642: 1a9f sublt r7, r3, r2 + 8008644: bfac ite ge + 8008646: 9b02 ldrge r3, [sp, #8] + 8008648: 2300 movlt r3, #0 + 800864a: e73e b.n 80084ca <_dtoa_r+0x74a> + 800864c: 9c0a ldr r4, [sp, #40] ; 0x28 + 800864e: 9f06 ldr r7, [sp, #24] + 8008650: 9e0b ldr r6, [sp, #44] ; 0x2c + 8008652: e745 b.n 80084e0 <_dtoa_r+0x760> + 8008654: 3fe00000 .word 0x3fe00000 + 8008658: 40240000 .word 0x40240000 + 800865c: 9a0a ldr r2, [sp, #40] ; 0x28 + 800865e: e76a b.n 8008536 <_dtoa_r+0x7b6> + 8008660: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008662: 2b01 cmp r3, #1 + 8008664: dc19 bgt.n 800869a <_dtoa_r+0x91a> + 8008666: 9b04 ldr r3, [sp, #16] + 8008668: b9bb cbnz r3, 800869a <_dtoa_r+0x91a> + 800866a: 9b05 ldr r3, [sp, #20] + 800866c: f3c3 0313 ubfx r3, r3, #0, #20 + 8008670: b99b cbnz r3, 800869a <_dtoa_r+0x91a> + 8008672: 9b05 ldr r3, [sp, #20] + 8008674: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 + 8008678: 0d1b lsrs r3, r3, #20 + 800867a: 051b lsls r3, r3, #20 + 800867c: b183 cbz r3, 80086a0 <_dtoa_r+0x920> + 800867e: f04f 0801 mov.w r8, #1 + 8008682: 9b06 ldr r3, [sp, #24] + 8008684: 3301 adds r3, #1 + 8008686: 9306 str r3, [sp, #24] + 8008688: 9b09 ldr r3, [sp, #36] ; 0x24 + 800868a: 3301 adds r3, #1 + 800868c: 9309 str r3, [sp, #36] ; 0x24 + 800868e: 9b0e ldr r3, [sp, #56] ; 0x38 + 8008690: 2b00 cmp r3, #0 + 8008692: f47f af6a bne.w 800856a <_dtoa_r+0x7ea> + 8008696: 2001 movs r0, #1 + 8008698: e76f b.n 800857a <_dtoa_r+0x7fa> + 800869a: f04f 0800 mov.w r8, #0 + 800869e: e7f6 b.n 800868e <_dtoa_r+0x90e> + 80086a0: 4698 mov r8, r3 + 80086a2: e7f4 b.n 800868e <_dtoa_r+0x90e> + 80086a4: f43f af7d beq.w 80085a2 <_dtoa_r+0x822> + 80086a8: 4618 mov r0, r3 + 80086aa: 301c adds r0, #28 + 80086ac: e772 b.n 8008594 <_dtoa_r+0x814> + 80086ae: 9b02 ldr r3, [sp, #8] + 80086b0: 2b00 cmp r3, #0 + 80086b2: dc36 bgt.n 8008722 <_dtoa_r+0x9a2> + 80086b4: 9b22 ldr r3, [sp, #136] ; 0x88 + 80086b6: 2b02 cmp r3, #2 + 80086b8: dd33 ble.n 8008722 <_dtoa_r+0x9a2> + 80086ba: f8dd b008 ldr.w fp, [sp, #8] + 80086be: f1bb 0f00 cmp.w fp, #0 + 80086c2: d10d bne.n 80086e0 <_dtoa_r+0x960> + 80086c4: 4621 mov r1, r4 + 80086c6: 465b mov r3, fp + 80086c8: 2205 movs r2, #5 + 80086ca: 4628 mov r0, r5 + 80086cc: f000 f9d4 bl 8008a78 <__multadd> + 80086d0: 4601 mov r1, r0 + 80086d2: 4604 mov r4, r0 + 80086d4: 4650 mov r0, sl + 80086d6: f000 fbe7 bl 8008ea8 <__mcmp> + 80086da: 2800 cmp r0, #0 + 80086dc: f73f adb6 bgt.w 800824c <_dtoa_r+0x4cc> + 80086e0: 9b23 ldr r3, [sp, #140] ; 0x8c + 80086e2: 9f08 ldr r7, [sp, #32] + 80086e4: ea6f 0903 mvn.w r9, r3 + 80086e8: f04f 0800 mov.w r8, #0 + 80086ec: 4621 mov r1, r4 + 80086ee: 4628 mov r0, r5 + 80086f0: f000 f9a0 bl 8008a34 <_Bfree> + 80086f4: 2e00 cmp r6, #0 + 80086f6: f43f aea4 beq.w 8008442 <_dtoa_r+0x6c2> + 80086fa: f1b8 0f00 cmp.w r8, #0 + 80086fe: d005 beq.n 800870c <_dtoa_r+0x98c> + 8008700: 45b0 cmp r8, r6 + 8008702: d003 beq.n 800870c <_dtoa_r+0x98c> + 8008704: 4641 mov r1, r8 + 8008706: 4628 mov r0, r5 + 8008708: f000 f994 bl 8008a34 <_Bfree> + 800870c: 4631 mov r1, r6 + 800870e: 4628 mov r0, r5 + 8008710: f000 f990 bl 8008a34 <_Bfree> + 8008714: e695 b.n 8008442 <_dtoa_r+0x6c2> + 8008716: 2400 movs r4, #0 + 8008718: 4626 mov r6, r4 + 800871a: e7e1 b.n 80086e0 <_dtoa_r+0x960> + 800871c: 46c1 mov r9, r8 + 800871e: 4626 mov r6, r4 + 8008720: e594 b.n 800824c <_dtoa_r+0x4cc> + 8008722: 9b0b ldr r3, [sp, #44] ; 0x2c + 8008724: f8dd b008 ldr.w fp, [sp, #8] + 8008728: 2b00 cmp r3, #0 + 800872a: f000 80fc beq.w 8008926 <_dtoa_r+0xba6> + 800872e: 2f00 cmp r7, #0 + 8008730: dd05 ble.n 800873e <_dtoa_r+0x9be> + 8008732: 4631 mov r1, r6 + 8008734: 463a mov r2, r7 + 8008736: 4628 mov r0, r5 + 8008738: f000 fb4a bl 8008dd0 <__lshift> + 800873c: 4606 mov r6, r0 + 800873e: f1b8 0f00 cmp.w r8, #0 + 8008742: d05c beq.n 80087fe <_dtoa_r+0xa7e> + 8008744: 4628 mov r0, r5 + 8008746: 6871 ldr r1, [r6, #4] + 8008748: f000 f934 bl 80089b4 <_Balloc> + 800874c: 4607 mov r7, r0 + 800874e: b928 cbnz r0, 800875c <_dtoa_r+0x9dc> + 8008750: 4602 mov r2, r0 + 8008752: f240 21ea movw r1, #746 ; 0x2ea + 8008756: 4b7e ldr r3, [pc, #504] ; (8008950 <_dtoa_r+0xbd0>) + 8008758: f7ff bb26 b.w 8007da8 <_dtoa_r+0x28> + 800875c: 6932 ldr r2, [r6, #16] + 800875e: f106 010c add.w r1, r6, #12 + 8008762: 3202 adds r2, #2 + 8008764: 0092 lsls r2, r2, #2 + 8008766: 300c adds r0, #12 + 8008768: f000 f90a bl 8008980 + 800876c: 2201 movs r2, #1 + 800876e: 4639 mov r1, r7 + 8008770: 4628 mov r0, r5 + 8008772: f000 fb2d bl 8008dd0 <__lshift> + 8008776: 46b0 mov r8, r6 + 8008778: 4606 mov r6, r0 + 800877a: 9b08 ldr r3, [sp, #32] + 800877c: 3301 adds r3, #1 + 800877e: 9302 str r3, [sp, #8] + 8008780: 9b08 ldr r3, [sp, #32] + 8008782: 445b add r3, fp + 8008784: 930a str r3, [sp, #40] ; 0x28 + 8008786: 9b04 ldr r3, [sp, #16] + 8008788: f003 0301 and.w r3, r3, #1 + 800878c: 9309 str r3, [sp, #36] ; 0x24 + 800878e: 9b02 ldr r3, [sp, #8] + 8008790: 4621 mov r1, r4 + 8008792: 4650 mov r0, sl + 8008794: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff + 8008798: f7ff fa64 bl 8007c64 + 800879c: 4603 mov r3, r0 + 800879e: 4641 mov r1, r8 + 80087a0: 3330 adds r3, #48 ; 0x30 + 80087a2: 9004 str r0, [sp, #16] + 80087a4: 4650 mov r0, sl + 80087a6: 930b str r3, [sp, #44] ; 0x2c + 80087a8: f000 fb7e bl 8008ea8 <__mcmp> + 80087ac: 4632 mov r2, r6 + 80087ae: 9006 str r0, [sp, #24] + 80087b0: 4621 mov r1, r4 + 80087b2: 4628 mov r0, r5 + 80087b4: f000 fb94 bl 8008ee0 <__mdiff> + 80087b8: 68c2 ldr r2, [r0, #12] + 80087ba: 4607 mov r7, r0 + 80087bc: 9b0b ldr r3, [sp, #44] ; 0x2c + 80087be: bb02 cbnz r2, 8008802 <_dtoa_r+0xa82> + 80087c0: 4601 mov r1, r0 + 80087c2: 4650 mov r0, sl + 80087c4: f000 fb70 bl 8008ea8 <__mcmp> + 80087c8: 4602 mov r2, r0 + 80087ca: 9b0b ldr r3, [sp, #44] ; 0x2c + 80087cc: 4639 mov r1, r7 + 80087ce: 4628 mov r0, r5 + 80087d0: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c + 80087d4: f000 f92e bl 8008a34 <_Bfree> + 80087d8: 9b22 ldr r3, [sp, #136] ; 0x88 + 80087da: 9a0c ldr r2, [sp, #48] ; 0x30 + 80087dc: 9f02 ldr r7, [sp, #8] + 80087de: ea43 0102 orr.w r1, r3, r2 + 80087e2: 9b09 ldr r3, [sp, #36] ; 0x24 + 80087e4: 430b orrs r3, r1 + 80087e6: 9b0b ldr r3, [sp, #44] ; 0x2c + 80087e8: d10d bne.n 8008806 <_dtoa_r+0xa86> + 80087ea: 2b39 cmp r3, #57 ; 0x39 + 80087ec: d027 beq.n 800883e <_dtoa_r+0xabe> + 80087ee: 9a06 ldr r2, [sp, #24] + 80087f0: 2a00 cmp r2, #0 + 80087f2: dd01 ble.n 80087f8 <_dtoa_r+0xa78> + 80087f4: 9b04 ldr r3, [sp, #16] + 80087f6: 3331 adds r3, #49 ; 0x31 + 80087f8: f88b 3000 strb.w r3, [fp] + 80087fc: e776 b.n 80086ec <_dtoa_r+0x96c> + 80087fe: 4630 mov r0, r6 + 8008800: e7b9 b.n 8008776 <_dtoa_r+0x9f6> + 8008802: 2201 movs r2, #1 + 8008804: e7e2 b.n 80087cc <_dtoa_r+0xa4c> + 8008806: 9906 ldr r1, [sp, #24] + 8008808: 2900 cmp r1, #0 + 800880a: db04 blt.n 8008816 <_dtoa_r+0xa96> + 800880c: 9822 ldr r0, [sp, #136] ; 0x88 + 800880e: 4301 orrs r1, r0 + 8008810: 9809 ldr r0, [sp, #36] ; 0x24 + 8008812: 4301 orrs r1, r0 + 8008814: d120 bne.n 8008858 <_dtoa_r+0xad8> + 8008816: 2a00 cmp r2, #0 + 8008818: ddee ble.n 80087f8 <_dtoa_r+0xa78> + 800881a: 4651 mov r1, sl + 800881c: 2201 movs r2, #1 + 800881e: 4628 mov r0, r5 + 8008820: 9302 str r3, [sp, #8] + 8008822: f000 fad5 bl 8008dd0 <__lshift> + 8008826: 4621 mov r1, r4 + 8008828: 4682 mov sl, r0 + 800882a: f000 fb3d bl 8008ea8 <__mcmp> + 800882e: 2800 cmp r0, #0 + 8008830: 9b02 ldr r3, [sp, #8] + 8008832: dc02 bgt.n 800883a <_dtoa_r+0xaba> + 8008834: d1e0 bne.n 80087f8 <_dtoa_r+0xa78> + 8008836: 07da lsls r2, r3, #31 + 8008838: d5de bpl.n 80087f8 <_dtoa_r+0xa78> + 800883a: 2b39 cmp r3, #57 ; 0x39 + 800883c: d1da bne.n 80087f4 <_dtoa_r+0xa74> + 800883e: 2339 movs r3, #57 ; 0x39 + 8008840: f88b 3000 strb.w r3, [fp] + 8008844: 463b mov r3, r7 + 8008846: 461f mov r7, r3 + 8008848: f817 2c01 ldrb.w r2, [r7, #-1] + 800884c: 3b01 subs r3, #1 + 800884e: 2a39 cmp r2, #57 ; 0x39 + 8008850: d050 beq.n 80088f4 <_dtoa_r+0xb74> + 8008852: 3201 adds r2, #1 + 8008854: 701a strb r2, [r3, #0] + 8008856: e749 b.n 80086ec <_dtoa_r+0x96c> + 8008858: 2a00 cmp r2, #0 + 800885a: dd03 ble.n 8008864 <_dtoa_r+0xae4> + 800885c: 2b39 cmp r3, #57 ; 0x39 + 800885e: d0ee beq.n 800883e <_dtoa_r+0xabe> + 8008860: 3301 adds r3, #1 + 8008862: e7c9 b.n 80087f8 <_dtoa_r+0xa78> + 8008864: 9a02 ldr r2, [sp, #8] + 8008866: 990a ldr r1, [sp, #40] ; 0x28 + 8008868: f802 3c01 strb.w r3, [r2, #-1] + 800886c: 428a cmp r2, r1 + 800886e: d02a beq.n 80088c6 <_dtoa_r+0xb46> + 8008870: 4651 mov r1, sl + 8008872: 2300 movs r3, #0 + 8008874: 220a movs r2, #10 + 8008876: 4628 mov r0, r5 + 8008878: f000 f8fe bl 8008a78 <__multadd> + 800887c: 45b0 cmp r8, r6 + 800887e: 4682 mov sl, r0 + 8008880: f04f 0300 mov.w r3, #0 + 8008884: f04f 020a mov.w r2, #10 + 8008888: 4641 mov r1, r8 + 800888a: 4628 mov r0, r5 + 800888c: d107 bne.n 800889e <_dtoa_r+0xb1e> + 800888e: f000 f8f3 bl 8008a78 <__multadd> + 8008892: 4680 mov r8, r0 + 8008894: 4606 mov r6, r0 + 8008896: 9b02 ldr r3, [sp, #8] + 8008898: 3301 adds r3, #1 + 800889a: 9302 str r3, [sp, #8] + 800889c: e777 b.n 800878e <_dtoa_r+0xa0e> + 800889e: f000 f8eb bl 8008a78 <__multadd> + 80088a2: 4631 mov r1, r6 + 80088a4: 4680 mov r8, r0 + 80088a6: 2300 movs r3, #0 + 80088a8: 220a movs r2, #10 + 80088aa: 4628 mov r0, r5 + 80088ac: f000 f8e4 bl 8008a78 <__multadd> + 80088b0: 4606 mov r6, r0 + 80088b2: e7f0 b.n 8008896 <_dtoa_r+0xb16> + 80088b4: f1bb 0f00 cmp.w fp, #0 + 80088b8: bfcc ite gt + 80088ba: 465f movgt r7, fp + 80088bc: 2701 movle r7, #1 + 80088be: f04f 0800 mov.w r8, #0 + 80088c2: 9a08 ldr r2, [sp, #32] + 80088c4: 4417 add r7, r2 + 80088c6: 4651 mov r1, sl + 80088c8: 2201 movs r2, #1 + 80088ca: 4628 mov r0, r5 + 80088cc: 9302 str r3, [sp, #8] + 80088ce: f000 fa7f bl 8008dd0 <__lshift> + 80088d2: 4621 mov r1, r4 + 80088d4: 4682 mov sl, r0 + 80088d6: f000 fae7 bl 8008ea8 <__mcmp> + 80088da: 2800 cmp r0, #0 + 80088dc: dcb2 bgt.n 8008844 <_dtoa_r+0xac4> + 80088de: d102 bne.n 80088e6 <_dtoa_r+0xb66> + 80088e0: 9b02 ldr r3, [sp, #8] + 80088e2: 07db lsls r3, r3, #31 + 80088e4: d4ae bmi.n 8008844 <_dtoa_r+0xac4> + 80088e6: 463b mov r3, r7 + 80088e8: 461f mov r7, r3 + 80088ea: f813 2d01 ldrb.w r2, [r3, #-1]! + 80088ee: 2a30 cmp r2, #48 ; 0x30 + 80088f0: d0fa beq.n 80088e8 <_dtoa_r+0xb68> + 80088f2: e6fb b.n 80086ec <_dtoa_r+0x96c> + 80088f4: 9a08 ldr r2, [sp, #32] + 80088f6: 429a cmp r2, r3 + 80088f8: d1a5 bne.n 8008846 <_dtoa_r+0xac6> + 80088fa: 2331 movs r3, #49 ; 0x31 + 80088fc: f109 0901 add.w r9, r9, #1 + 8008900: 7013 strb r3, [r2, #0] + 8008902: e6f3 b.n 80086ec <_dtoa_r+0x96c> + 8008904: 4b13 ldr r3, [pc, #76] ; (8008954 <_dtoa_r+0xbd4>) + 8008906: f7ff baa7 b.w 8007e58 <_dtoa_r+0xd8> + 800890a: 9b26 ldr r3, [sp, #152] ; 0x98 + 800890c: 2b00 cmp r3, #0 + 800890e: f47f aa80 bne.w 8007e12 <_dtoa_r+0x92> + 8008912: 4b11 ldr r3, [pc, #68] ; (8008958 <_dtoa_r+0xbd8>) + 8008914: f7ff baa0 b.w 8007e58 <_dtoa_r+0xd8> + 8008918: f1bb 0f00 cmp.w fp, #0 + 800891c: dc03 bgt.n 8008926 <_dtoa_r+0xba6> + 800891e: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008920: 2b02 cmp r3, #2 + 8008922: f73f aecc bgt.w 80086be <_dtoa_r+0x93e> + 8008926: 9f08 ldr r7, [sp, #32] + 8008928: 4621 mov r1, r4 + 800892a: 4650 mov r0, sl + 800892c: f7ff f99a bl 8007c64 + 8008930: 9a08 ldr r2, [sp, #32] + 8008932: f100 0330 add.w r3, r0, #48 ; 0x30 + 8008936: f807 3b01 strb.w r3, [r7], #1 + 800893a: 1aba subs r2, r7, r2 + 800893c: 4593 cmp fp, r2 + 800893e: ddb9 ble.n 80088b4 <_dtoa_r+0xb34> + 8008940: 4651 mov r1, sl + 8008942: 2300 movs r3, #0 + 8008944: 220a movs r2, #10 + 8008946: 4628 mov r0, r5 + 8008948: f000 f896 bl 8008a78 <__multadd> + 800894c: 4682 mov sl, r0 + 800894e: e7eb b.n 8008928 <_dtoa_r+0xba8> + 8008950: 0800af8b .word 0x0800af8b + 8008954: 0800aee4 .word 0x0800aee4 + 8008958: 0800af08 .word 0x0800af08 -080085b4 <__pow5mult>: - 80085b4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 80085b8: 4615 mov r5, r2 - 80085ba: f012 0203 ands.w r2, r2, #3 - 80085be: 4606 mov r6, r0 - 80085c0: 460f mov r7, r1 - 80085c2: d007 beq.n 80085d4 <__pow5mult+0x20> - 80085c4: 4c25 ldr r4, [pc, #148] ; (800865c <__pow5mult+0xa8>) - 80085c6: 3a01 subs r2, #1 - 80085c8: 2300 movs r3, #0 - 80085ca: f854 2022 ldr.w r2, [r4, r2, lsl #2] - 80085ce: f7ff fe9f bl 8008310 <__multadd> - 80085d2: 4607 mov r7, r0 - 80085d4: 10ad asrs r5, r5, #2 - 80085d6: d03d beq.n 8008654 <__pow5mult+0xa0> - 80085d8: 6a74 ldr r4, [r6, #36] ; 0x24 - 80085da: b97c cbnz r4, 80085fc <__pow5mult+0x48> - 80085dc: 2010 movs r0, #16 - 80085de: f7fe fa3f bl 8006a60 - 80085e2: 4602 mov r2, r0 - 80085e4: 6270 str r0, [r6, #36] ; 0x24 - 80085e6: b928 cbnz r0, 80085f4 <__pow5mult+0x40> - 80085e8: f44f 71d7 mov.w r1, #430 ; 0x1ae - 80085ec: 4b1c ldr r3, [pc, #112] ; (8008660 <__pow5mult+0xac>) - 80085ee: 481d ldr r0, [pc, #116] ; (8008664 <__pow5mult+0xb0>) - 80085f0: f000 fb18 bl 8008c24 <__assert_func> - 80085f4: e9c0 4401 strd r4, r4, [r0, #4] - 80085f8: 6004 str r4, [r0, #0] - 80085fa: 60c4 str r4, [r0, #12] - 80085fc: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 - 8008600: f8d8 4008 ldr.w r4, [r8, #8] - 8008604: b94c cbnz r4, 800861a <__pow5mult+0x66> - 8008606: f240 2171 movw r1, #625 ; 0x271 - 800860a: 4630 mov r0, r6 - 800860c: f7ff ff18 bl 8008440 <__i2b> - 8008610: 2300 movs r3, #0 - 8008612: 4604 mov r4, r0 - 8008614: f8c8 0008 str.w r0, [r8, #8] - 8008618: 6003 str r3, [r0, #0] - 800861a: f04f 0900 mov.w r9, #0 - 800861e: 07eb lsls r3, r5, #31 - 8008620: d50a bpl.n 8008638 <__pow5mult+0x84> - 8008622: 4639 mov r1, r7 - 8008624: 4622 mov r2, r4 - 8008626: 4630 mov r0, r6 - 8008628: f7ff ff20 bl 800846c <__multiply> - 800862c: 4680 mov r8, r0 - 800862e: 4639 mov r1, r7 - 8008630: 4630 mov r0, r6 - 8008632: f7ff fe4b bl 80082cc <_Bfree> - 8008636: 4647 mov r7, r8 - 8008638: 106d asrs r5, r5, #1 - 800863a: d00b beq.n 8008654 <__pow5mult+0xa0> - 800863c: 6820 ldr r0, [r4, #0] - 800863e: b938 cbnz r0, 8008650 <__pow5mult+0x9c> - 8008640: 4622 mov r2, r4 - 8008642: 4621 mov r1, r4 - 8008644: 4630 mov r0, r6 - 8008646: f7ff ff11 bl 800846c <__multiply> - 800864a: 6020 str r0, [r4, #0] - 800864c: f8c0 9000 str.w r9, [r0] - 8008650: 4604 mov r4, r0 - 8008652: e7e4 b.n 800861e <__pow5mult+0x6a> - 8008654: 4638 mov r0, r7 - 8008656: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 800865a: bf00 nop - 800865c: 0800a988 .word 0x0800a988 - 8008660: 0800a7ad .word 0x0800a7ad - 8008664: 0800a834 .word 0x0800a834 +0800895c <_localeconv_r>: + 800895c: 4800 ldr r0, [pc, #0] ; (8008960 <_localeconv_r+0x4>) + 800895e: 4770 bx lr + 8008960: 20000160 .word 0x20000160 -08008668 <__lshift>: - 8008668: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 800866c: 460c mov r4, r1 - 800866e: 4607 mov r7, r0 - 8008670: 4691 mov r9, r2 - 8008672: 6923 ldr r3, [r4, #16] - 8008674: 6849 ldr r1, [r1, #4] - 8008676: eb03 1862 add.w r8, r3, r2, asr #5 - 800867a: 68a3 ldr r3, [r4, #8] - 800867c: ea4f 1a62 mov.w sl, r2, asr #5 - 8008680: f108 0601 add.w r6, r8, #1 - 8008684: 42b3 cmp r3, r6 - 8008686: db0b blt.n 80086a0 <__lshift+0x38> - 8008688: 4638 mov r0, r7 - 800868a: f7ff fddf bl 800824c <_Balloc> - 800868e: 4605 mov r5, r0 - 8008690: b948 cbnz r0, 80086a6 <__lshift+0x3e> - 8008692: 4602 mov r2, r0 - 8008694: f240 11d9 movw r1, #473 ; 0x1d9 - 8008698: 4b27 ldr r3, [pc, #156] ; (8008738 <__lshift+0xd0>) - 800869a: 4828 ldr r0, [pc, #160] ; (800873c <__lshift+0xd4>) - 800869c: f000 fac2 bl 8008c24 <__assert_func> - 80086a0: 3101 adds r1, #1 - 80086a2: 005b lsls r3, r3, #1 - 80086a4: e7ee b.n 8008684 <__lshift+0x1c> - 80086a6: 2300 movs r3, #0 - 80086a8: f100 0114 add.w r1, r0, #20 - 80086ac: f100 0210 add.w r2, r0, #16 - 80086b0: 4618 mov r0, r3 - 80086b2: 4553 cmp r3, sl - 80086b4: db33 blt.n 800871e <__lshift+0xb6> - 80086b6: 6920 ldr r0, [r4, #16] - 80086b8: ea2a 7aea bic.w sl, sl, sl, asr #31 - 80086bc: f104 0314 add.w r3, r4, #20 - 80086c0: f019 091f ands.w r9, r9, #31 - 80086c4: eb01 018a add.w r1, r1, sl, lsl #2 - 80086c8: eb03 0c80 add.w ip, r3, r0, lsl #2 - 80086cc: d02b beq.n 8008726 <__lshift+0xbe> - 80086ce: 468a mov sl, r1 - 80086d0: 2200 movs r2, #0 - 80086d2: f1c9 0e20 rsb lr, r9, #32 - 80086d6: 6818 ldr r0, [r3, #0] - 80086d8: fa00 f009 lsl.w r0, r0, r9 - 80086dc: 4302 orrs r2, r0 - 80086de: f84a 2b04 str.w r2, [sl], #4 - 80086e2: f853 2b04 ldr.w r2, [r3], #4 - 80086e6: 459c cmp ip, r3 - 80086e8: fa22 f20e lsr.w r2, r2, lr - 80086ec: d8f3 bhi.n 80086d6 <__lshift+0x6e> - 80086ee: ebac 0304 sub.w r3, ip, r4 - 80086f2: 3b15 subs r3, #21 - 80086f4: f023 0303 bic.w r3, r3, #3 - 80086f8: 3304 adds r3, #4 - 80086fa: f104 0015 add.w r0, r4, #21 - 80086fe: 4584 cmp ip, r0 - 8008700: bf38 it cc - 8008702: 2304 movcc r3, #4 - 8008704: 50ca str r2, [r1, r3] - 8008706: b10a cbz r2, 800870c <__lshift+0xa4> - 8008708: f108 0602 add.w r6, r8, #2 - 800870c: 3e01 subs r6, #1 - 800870e: 4638 mov r0, r7 - 8008710: 4621 mov r1, r4 - 8008712: 612e str r6, [r5, #16] - 8008714: f7ff fdda bl 80082cc <_Bfree> - 8008718: 4628 mov r0, r5 - 800871a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 800871e: f842 0f04 str.w r0, [r2, #4]! - 8008722: 3301 adds r3, #1 - 8008724: e7c5 b.n 80086b2 <__lshift+0x4a> - 8008726: 3904 subs r1, #4 - 8008728: f853 2b04 ldr.w r2, [r3], #4 - 800872c: 459c cmp ip, r3 - 800872e: f841 2f04 str.w r2, [r1, #4]! - 8008732: d8f9 bhi.n 8008728 <__lshift+0xc0> - 8008734: e7ea b.n 800870c <__lshift+0xa4> - 8008736: bf00 nop - 8008738: 0800a823 .word 0x0800a823 - 800873c: 0800a834 .word 0x0800a834 +08008964 : + 8008964: 4603 mov r3, r0 + 8008966: b510 push {r4, lr} + 8008968: b2c9 uxtb r1, r1 + 800896a: 4402 add r2, r0 + 800896c: 4293 cmp r3, r2 + 800896e: 4618 mov r0, r3 + 8008970: d101 bne.n 8008976 + 8008972: 2000 movs r0, #0 + 8008974: e003 b.n 800897e + 8008976: 7804 ldrb r4, [r0, #0] + 8008978: 3301 adds r3, #1 + 800897a: 428c cmp r4, r1 + 800897c: d1f6 bne.n 800896c + 800897e: bd10 pop {r4, pc} -08008740 <__mcmp>: - 8008740: 4603 mov r3, r0 - 8008742: 690a ldr r2, [r1, #16] - 8008744: 6900 ldr r0, [r0, #16] - 8008746: b530 push {r4, r5, lr} - 8008748: 1a80 subs r0, r0, r2 - 800874a: d10d bne.n 8008768 <__mcmp+0x28> - 800874c: 3314 adds r3, #20 - 800874e: 3114 adds r1, #20 - 8008750: eb03 0482 add.w r4, r3, r2, lsl #2 - 8008754: eb01 0182 add.w r1, r1, r2, lsl #2 - 8008758: f854 5d04 ldr.w r5, [r4, #-4]! - 800875c: f851 2d04 ldr.w r2, [r1, #-4]! - 8008760: 4295 cmp r5, r2 - 8008762: d002 beq.n 800876a <__mcmp+0x2a> - 8008764: d304 bcc.n 8008770 <__mcmp+0x30> - 8008766: 2001 movs r0, #1 - 8008768: bd30 pop {r4, r5, pc} - 800876a: 42a3 cmp r3, r4 - 800876c: d3f4 bcc.n 8008758 <__mcmp+0x18> - 800876e: e7fb b.n 8008768 <__mcmp+0x28> - 8008770: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8008774: e7f8 b.n 8008768 <__mcmp+0x28> +08008980 : + 8008980: 440a add r2, r1 + 8008982: 4291 cmp r1, r2 + 8008984: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff + 8008988: d100 bne.n 800898c + 800898a: 4770 bx lr + 800898c: b510 push {r4, lr} + 800898e: f811 4b01 ldrb.w r4, [r1], #1 + 8008992: 4291 cmp r1, r2 + 8008994: f803 4f01 strb.w r4, [r3, #1]! + 8008998: d1f9 bne.n 800898e + 800899a: bd10 pop {r4, pc} + +0800899c <__malloc_lock>: + 800899c: 4801 ldr r0, [pc, #4] ; (80089a4 <__malloc_lock+0x8>) + 800899e: f000 bd26 b.w 80093ee <__retarget_lock_acquire_recursive> + 80089a2: bf00 nop + 80089a4: 200024a4 .word 0x200024a4 + +080089a8 <__malloc_unlock>: + 80089a8: 4801 ldr r0, [pc, #4] ; (80089b0 <__malloc_unlock+0x8>) + 80089aa: f000 bd21 b.w 80093f0 <__retarget_lock_release_recursive> + 80089ae: bf00 nop + 80089b0: 200024a4 .word 0x200024a4 + +080089b4 <_Balloc>: + 80089b4: b570 push {r4, r5, r6, lr} + 80089b6: 6a46 ldr r6, [r0, #36] ; 0x24 + 80089b8: 4604 mov r4, r0 + 80089ba: 460d mov r5, r1 + 80089bc: b976 cbnz r6, 80089dc <_Balloc+0x28> + 80089be: 2010 movs r0, #16 + 80089c0: f7fe fc02 bl 80071c8 + 80089c4: 4602 mov r2, r0 + 80089c6: 6260 str r0, [r4, #36] ; 0x24 + 80089c8: b920 cbnz r0, 80089d4 <_Balloc+0x20> + 80089ca: 2166 movs r1, #102 ; 0x66 + 80089cc: 4b17 ldr r3, [pc, #92] ; (8008a2c <_Balloc+0x78>) + 80089ce: 4818 ldr r0, [pc, #96] ; (8008a30 <_Balloc+0x7c>) + 80089d0: f000 fcdc bl 800938c <__assert_func> + 80089d4: e9c0 6601 strd r6, r6, [r0, #4] + 80089d8: 6006 str r6, [r0, #0] + 80089da: 60c6 str r6, [r0, #12] + 80089dc: 6a66 ldr r6, [r4, #36] ; 0x24 + 80089de: 68f3 ldr r3, [r6, #12] + 80089e0: b183 cbz r3, 8008a04 <_Balloc+0x50> + 80089e2: 6a63 ldr r3, [r4, #36] ; 0x24 + 80089e4: 68db ldr r3, [r3, #12] + 80089e6: f853 0025 ldr.w r0, [r3, r5, lsl #2] + 80089ea: b9b8 cbnz r0, 8008a1c <_Balloc+0x68> + 80089ec: 2101 movs r1, #1 + 80089ee: fa01 f605 lsl.w r6, r1, r5 + 80089f2: 1d72 adds r2, r6, #5 + 80089f4: 4620 mov r0, r4 + 80089f6: 0092 lsls r2, r2, #2 + 80089f8: f000 fb5e bl 80090b8 <_calloc_r> + 80089fc: b160 cbz r0, 8008a18 <_Balloc+0x64> + 80089fe: e9c0 5601 strd r5, r6, [r0, #4] + 8008a02: e00e b.n 8008a22 <_Balloc+0x6e> + 8008a04: 2221 movs r2, #33 ; 0x21 + 8008a06: 2104 movs r1, #4 + 8008a08: 4620 mov r0, r4 + 8008a0a: f000 fb55 bl 80090b8 <_calloc_r> + 8008a0e: 6a63 ldr r3, [r4, #36] ; 0x24 + 8008a10: 60f0 str r0, [r6, #12] + 8008a12: 68db ldr r3, [r3, #12] + 8008a14: 2b00 cmp r3, #0 + 8008a16: d1e4 bne.n 80089e2 <_Balloc+0x2e> + 8008a18: 2000 movs r0, #0 + 8008a1a: bd70 pop {r4, r5, r6, pc} + 8008a1c: 6802 ldr r2, [r0, #0] + 8008a1e: f843 2025 str.w r2, [r3, r5, lsl #2] + 8008a22: 2300 movs r3, #0 + 8008a24: e9c0 3303 strd r3, r3, [r0, #12] + 8008a28: e7f7 b.n 8008a1a <_Balloc+0x66> + 8008a2a: bf00 nop + 8008a2c: 0800af15 .word 0x0800af15 + 8008a30: 0800af9c .word 0x0800af9c + +08008a34 <_Bfree>: + 8008a34: b570 push {r4, r5, r6, lr} + 8008a36: 6a46 ldr r6, [r0, #36] ; 0x24 + 8008a38: 4605 mov r5, r0 + 8008a3a: 460c mov r4, r1 + 8008a3c: b976 cbnz r6, 8008a5c <_Bfree+0x28> + 8008a3e: 2010 movs r0, #16 + 8008a40: f7fe fbc2 bl 80071c8 + 8008a44: 4602 mov r2, r0 + 8008a46: 6268 str r0, [r5, #36] ; 0x24 + 8008a48: b920 cbnz r0, 8008a54 <_Bfree+0x20> + 8008a4a: 218a movs r1, #138 ; 0x8a + 8008a4c: 4b08 ldr r3, [pc, #32] ; (8008a70 <_Bfree+0x3c>) + 8008a4e: 4809 ldr r0, [pc, #36] ; (8008a74 <_Bfree+0x40>) + 8008a50: f000 fc9c bl 800938c <__assert_func> + 8008a54: e9c0 6601 strd r6, r6, [r0, #4] + 8008a58: 6006 str r6, [r0, #0] + 8008a5a: 60c6 str r6, [r0, #12] + 8008a5c: b13c cbz r4, 8008a6e <_Bfree+0x3a> + 8008a5e: 6a6b ldr r3, [r5, #36] ; 0x24 + 8008a60: 6862 ldr r2, [r4, #4] + 8008a62: 68db ldr r3, [r3, #12] + 8008a64: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 8008a68: 6021 str r1, [r4, #0] + 8008a6a: f843 4022 str.w r4, [r3, r2, lsl #2] + 8008a6e: bd70 pop {r4, r5, r6, pc} + 8008a70: 0800af15 .word 0x0800af15 + 8008a74: 0800af9c .word 0x0800af9c + +08008a78 <__multadd>: + 8008a78: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8008a7c: 4698 mov r8, r3 + 8008a7e: 460c mov r4, r1 + 8008a80: 2300 movs r3, #0 + 8008a82: 690e ldr r6, [r1, #16] + 8008a84: 4607 mov r7, r0 + 8008a86: f101 0014 add.w r0, r1, #20 + 8008a8a: 6805 ldr r5, [r0, #0] + 8008a8c: 3301 adds r3, #1 + 8008a8e: b2a9 uxth r1, r5 + 8008a90: fb02 8101 mla r1, r2, r1, r8 + 8008a94: 0c2d lsrs r5, r5, #16 + 8008a96: ea4f 4c11 mov.w ip, r1, lsr #16 + 8008a9a: fb02 c505 mla r5, r2, r5, ip + 8008a9e: b289 uxth r1, r1 + 8008aa0: eb01 4105 add.w r1, r1, r5, lsl #16 + 8008aa4: 429e cmp r6, r3 + 8008aa6: ea4f 4815 mov.w r8, r5, lsr #16 + 8008aaa: f840 1b04 str.w r1, [r0], #4 + 8008aae: dcec bgt.n 8008a8a <__multadd+0x12> + 8008ab0: f1b8 0f00 cmp.w r8, #0 + 8008ab4: d022 beq.n 8008afc <__multadd+0x84> + 8008ab6: 68a3 ldr r3, [r4, #8] + 8008ab8: 42b3 cmp r3, r6 + 8008aba: dc19 bgt.n 8008af0 <__multadd+0x78> + 8008abc: 6861 ldr r1, [r4, #4] + 8008abe: 4638 mov r0, r7 + 8008ac0: 3101 adds r1, #1 + 8008ac2: f7ff ff77 bl 80089b4 <_Balloc> + 8008ac6: 4605 mov r5, r0 + 8008ac8: b928 cbnz r0, 8008ad6 <__multadd+0x5e> + 8008aca: 4602 mov r2, r0 + 8008acc: 21b5 movs r1, #181 ; 0xb5 + 8008ace: 4b0d ldr r3, [pc, #52] ; (8008b04 <__multadd+0x8c>) + 8008ad0: 480d ldr r0, [pc, #52] ; (8008b08 <__multadd+0x90>) + 8008ad2: f000 fc5b bl 800938c <__assert_func> + 8008ad6: 6922 ldr r2, [r4, #16] + 8008ad8: f104 010c add.w r1, r4, #12 + 8008adc: 3202 adds r2, #2 + 8008ade: 0092 lsls r2, r2, #2 + 8008ae0: 300c adds r0, #12 + 8008ae2: f7ff ff4d bl 8008980 + 8008ae6: 4621 mov r1, r4 + 8008ae8: 4638 mov r0, r7 + 8008aea: f7ff ffa3 bl 8008a34 <_Bfree> + 8008aee: 462c mov r4, r5 + 8008af0: eb04 0386 add.w r3, r4, r6, lsl #2 + 8008af4: 3601 adds r6, #1 + 8008af6: f8c3 8014 str.w r8, [r3, #20] + 8008afa: 6126 str r6, [r4, #16] + 8008afc: 4620 mov r0, r4 + 8008afe: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 8008b02: bf00 nop + 8008b04: 0800af8b .word 0x0800af8b + 8008b08: 0800af9c .word 0x0800af9c + +08008b0c <__hi0bits>: + 8008b0c: 0c02 lsrs r2, r0, #16 + 8008b0e: 0412 lsls r2, r2, #16 + 8008b10: 4603 mov r3, r0 + 8008b12: b9ca cbnz r2, 8008b48 <__hi0bits+0x3c> + 8008b14: 0403 lsls r3, r0, #16 + 8008b16: 2010 movs r0, #16 + 8008b18: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 + 8008b1c: bf04 itt eq + 8008b1e: 021b lsleq r3, r3, #8 + 8008b20: 3008 addeq r0, #8 + 8008b22: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 + 8008b26: bf04 itt eq + 8008b28: 011b lsleq r3, r3, #4 + 8008b2a: 3004 addeq r0, #4 + 8008b2c: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 + 8008b30: bf04 itt eq + 8008b32: 009b lsleq r3, r3, #2 + 8008b34: 3002 addeq r0, #2 + 8008b36: 2b00 cmp r3, #0 + 8008b38: db05 blt.n 8008b46 <__hi0bits+0x3a> + 8008b3a: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 + 8008b3e: f100 0001 add.w r0, r0, #1 + 8008b42: bf08 it eq + 8008b44: 2020 moveq r0, #32 + 8008b46: 4770 bx lr + 8008b48: 2000 movs r0, #0 + 8008b4a: e7e5 b.n 8008b18 <__hi0bits+0xc> + +08008b4c <__lo0bits>: + 8008b4c: 6803 ldr r3, [r0, #0] + 8008b4e: 4602 mov r2, r0 + 8008b50: f013 0007 ands.w r0, r3, #7 + 8008b54: d00b beq.n 8008b6e <__lo0bits+0x22> + 8008b56: 07d9 lsls r1, r3, #31 + 8008b58: d422 bmi.n 8008ba0 <__lo0bits+0x54> + 8008b5a: 0798 lsls r0, r3, #30 + 8008b5c: bf49 itett mi + 8008b5e: 085b lsrmi r3, r3, #1 + 8008b60: 089b lsrpl r3, r3, #2 + 8008b62: 2001 movmi r0, #1 + 8008b64: 6013 strmi r3, [r2, #0] + 8008b66: bf5c itt pl + 8008b68: 2002 movpl r0, #2 + 8008b6a: 6013 strpl r3, [r2, #0] + 8008b6c: 4770 bx lr + 8008b6e: b299 uxth r1, r3 + 8008b70: b909 cbnz r1, 8008b76 <__lo0bits+0x2a> + 8008b72: 2010 movs r0, #16 + 8008b74: 0c1b lsrs r3, r3, #16 + 8008b76: f013 0fff tst.w r3, #255 ; 0xff + 8008b7a: bf04 itt eq + 8008b7c: 0a1b lsreq r3, r3, #8 + 8008b7e: 3008 addeq r0, #8 + 8008b80: 0719 lsls r1, r3, #28 + 8008b82: bf04 itt eq + 8008b84: 091b lsreq r3, r3, #4 + 8008b86: 3004 addeq r0, #4 + 8008b88: 0799 lsls r1, r3, #30 + 8008b8a: bf04 itt eq + 8008b8c: 089b lsreq r3, r3, #2 + 8008b8e: 3002 addeq r0, #2 + 8008b90: 07d9 lsls r1, r3, #31 + 8008b92: d403 bmi.n 8008b9c <__lo0bits+0x50> + 8008b94: 085b lsrs r3, r3, #1 + 8008b96: f100 0001 add.w r0, r0, #1 + 8008b9a: d003 beq.n 8008ba4 <__lo0bits+0x58> + 8008b9c: 6013 str r3, [r2, #0] + 8008b9e: 4770 bx lr + 8008ba0: 2000 movs r0, #0 + 8008ba2: 4770 bx lr + 8008ba4: 2020 movs r0, #32 + 8008ba6: 4770 bx lr + +08008ba8 <__i2b>: + 8008ba8: b510 push {r4, lr} + 8008baa: 460c mov r4, r1 + 8008bac: 2101 movs r1, #1 + 8008bae: f7ff ff01 bl 80089b4 <_Balloc> + 8008bb2: 4602 mov r2, r0 + 8008bb4: b928 cbnz r0, 8008bc2 <__i2b+0x1a> + 8008bb6: f44f 71a0 mov.w r1, #320 ; 0x140 + 8008bba: 4b04 ldr r3, [pc, #16] ; (8008bcc <__i2b+0x24>) + 8008bbc: 4804 ldr r0, [pc, #16] ; (8008bd0 <__i2b+0x28>) + 8008bbe: f000 fbe5 bl 800938c <__assert_func> + 8008bc2: 2301 movs r3, #1 + 8008bc4: 6144 str r4, [r0, #20] + 8008bc6: 6103 str r3, [r0, #16] + 8008bc8: bd10 pop {r4, pc} + 8008bca: bf00 nop + 8008bcc: 0800af8b .word 0x0800af8b + 8008bd0: 0800af9c .word 0x0800af9c + +08008bd4 <__multiply>: + 8008bd4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8008bd8: 4614 mov r4, r2 + 8008bda: 690a ldr r2, [r1, #16] + 8008bdc: 6923 ldr r3, [r4, #16] + 8008bde: 460d mov r5, r1 + 8008be0: 429a cmp r2, r3 + 8008be2: bfbe ittt lt + 8008be4: 460b movlt r3, r1 + 8008be6: 4625 movlt r5, r4 + 8008be8: 461c movlt r4, r3 + 8008bea: f8d5 a010 ldr.w sl, [r5, #16] + 8008bee: f8d4 9010 ldr.w r9, [r4, #16] + 8008bf2: 68ab ldr r3, [r5, #8] + 8008bf4: 6869 ldr r1, [r5, #4] + 8008bf6: eb0a 0709 add.w r7, sl, r9 + 8008bfa: 42bb cmp r3, r7 + 8008bfc: b085 sub sp, #20 + 8008bfe: bfb8 it lt + 8008c00: 3101 addlt r1, #1 + 8008c02: f7ff fed7 bl 80089b4 <_Balloc> + 8008c06: b930 cbnz r0, 8008c16 <__multiply+0x42> + 8008c08: 4602 mov r2, r0 + 8008c0a: f240 115d movw r1, #349 ; 0x15d + 8008c0e: 4b41 ldr r3, [pc, #260] ; (8008d14 <__multiply+0x140>) + 8008c10: 4841 ldr r0, [pc, #260] ; (8008d18 <__multiply+0x144>) + 8008c12: f000 fbbb bl 800938c <__assert_func> + 8008c16: f100 0614 add.w r6, r0, #20 + 8008c1a: 4633 mov r3, r6 + 8008c1c: 2200 movs r2, #0 + 8008c1e: eb06 0887 add.w r8, r6, r7, lsl #2 + 8008c22: 4543 cmp r3, r8 + 8008c24: d31e bcc.n 8008c64 <__multiply+0x90> + 8008c26: f105 0c14 add.w ip, r5, #20 + 8008c2a: f104 0314 add.w r3, r4, #20 + 8008c2e: eb0c 0c8a add.w ip, ip, sl, lsl #2 + 8008c32: eb03 0289 add.w r2, r3, r9, lsl #2 + 8008c36: 9202 str r2, [sp, #8] + 8008c38: ebac 0205 sub.w r2, ip, r5 + 8008c3c: 3a15 subs r2, #21 + 8008c3e: f022 0203 bic.w r2, r2, #3 + 8008c42: 3204 adds r2, #4 + 8008c44: f105 0115 add.w r1, r5, #21 + 8008c48: 458c cmp ip, r1 + 8008c4a: bf38 it cc + 8008c4c: 2204 movcc r2, #4 + 8008c4e: 9201 str r2, [sp, #4] + 8008c50: 9a02 ldr r2, [sp, #8] + 8008c52: 9303 str r3, [sp, #12] + 8008c54: 429a cmp r2, r3 + 8008c56: d808 bhi.n 8008c6a <__multiply+0x96> + 8008c58: 2f00 cmp r7, #0 + 8008c5a: dc55 bgt.n 8008d08 <__multiply+0x134> + 8008c5c: 6107 str r7, [r0, #16] + 8008c5e: b005 add sp, #20 + 8008c60: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8008c64: f843 2b04 str.w r2, [r3], #4 + 8008c68: e7db b.n 8008c22 <__multiply+0x4e> + 8008c6a: f8b3 a000 ldrh.w sl, [r3] + 8008c6e: f1ba 0f00 cmp.w sl, #0 + 8008c72: d020 beq.n 8008cb6 <__multiply+0xe2> + 8008c74: 46b1 mov r9, r6 + 8008c76: 2200 movs r2, #0 + 8008c78: f105 0e14 add.w lr, r5, #20 + 8008c7c: f85e 4b04 ldr.w r4, [lr], #4 + 8008c80: f8d9 b000 ldr.w fp, [r9] + 8008c84: b2a1 uxth r1, r4 + 8008c86: fa1f fb8b uxth.w fp, fp + 8008c8a: fb0a b101 mla r1, sl, r1, fp + 8008c8e: 4411 add r1, r2 + 8008c90: f8d9 2000 ldr.w r2, [r9] + 8008c94: 0c24 lsrs r4, r4, #16 + 8008c96: 0c12 lsrs r2, r2, #16 + 8008c98: fb0a 2404 mla r4, sl, r4, r2 + 8008c9c: eb04 4411 add.w r4, r4, r1, lsr #16 + 8008ca0: b289 uxth r1, r1 + 8008ca2: ea41 4104 orr.w r1, r1, r4, lsl #16 + 8008ca6: 45f4 cmp ip, lr + 8008ca8: ea4f 4214 mov.w r2, r4, lsr #16 + 8008cac: f849 1b04 str.w r1, [r9], #4 + 8008cb0: d8e4 bhi.n 8008c7c <__multiply+0xa8> + 8008cb2: 9901 ldr r1, [sp, #4] + 8008cb4: 5072 str r2, [r6, r1] + 8008cb6: 9a03 ldr r2, [sp, #12] + 8008cb8: 3304 adds r3, #4 + 8008cba: f8b2 9002 ldrh.w r9, [r2, #2] + 8008cbe: f1b9 0f00 cmp.w r9, #0 + 8008cc2: d01f beq.n 8008d04 <__multiply+0x130> + 8008cc4: 46b6 mov lr, r6 + 8008cc6: f04f 0a00 mov.w sl, #0 + 8008cca: 6834 ldr r4, [r6, #0] + 8008ccc: f105 0114 add.w r1, r5, #20 + 8008cd0: 880a ldrh r2, [r1, #0] + 8008cd2: f8be b002 ldrh.w fp, [lr, #2] + 8008cd6: b2a4 uxth r4, r4 + 8008cd8: fb09 b202 mla r2, r9, r2, fp + 8008cdc: 4492 add sl, r2 + 8008cde: ea44 440a orr.w r4, r4, sl, lsl #16 + 8008ce2: f84e 4b04 str.w r4, [lr], #4 + 8008ce6: f851 4b04 ldr.w r4, [r1], #4 + 8008cea: f8be 2000 ldrh.w r2, [lr] + 8008cee: 0c24 lsrs r4, r4, #16 + 8008cf0: fb09 2404 mla r4, r9, r4, r2 + 8008cf4: 458c cmp ip, r1 + 8008cf6: eb04 441a add.w r4, r4, sl, lsr #16 + 8008cfa: ea4f 4a14 mov.w sl, r4, lsr #16 + 8008cfe: d8e7 bhi.n 8008cd0 <__multiply+0xfc> + 8008d00: 9a01 ldr r2, [sp, #4] + 8008d02: 50b4 str r4, [r6, r2] + 8008d04: 3604 adds r6, #4 + 8008d06: e7a3 b.n 8008c50 <__multiply+0x7c> + 8008d08: f858 3d04 ldr.w r3, [r8, #-4]! + 8008d0c: 2b00 cmp r3, #0 + 8008d0e: d1a5 bne.n 8008c5c <__multiply+0x88> + 8008d10: 3f01 subs r7, #1 + 8008d12: e7a1 b.n 8008c58 <__multiply+0x84> + 8008d14: 0800af8b .word 0x0800af8b + 8008d18: 0800af9c .word 0x0800af9c + +08008d1c <__pow5mult>: + 8008d1c: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 8008d20: 4615 mov r5, r2 + 8008d22: f012 0203 ands.w r2, r2, #3 + 8008d26: 4606 mov r6, r0 + 8008d28: 460f mov r7, r1 + 8008d2a: d007 beq.n 8008d3c <__pow5mult+0x20> + 8008d2c: 4c25 ldr r4, [pc, #148] ; (8008dc4 <__pow5mult+0xa8>) + 8008d2e: 3a01 subs r2, #1 + 8008d30: 2300 movs r3, #0 + 8008d32: f854 2022 ldr.w r2, [r4, r2, lsl #2] + 8008d36: f7ff fe9f bl 8008a78 <__multadd> + 8008d3a: 4607 mov r7, r0 + 8008d3c: 10ad asrs r5, r5, #2 + 8008d3e: d03d beq.n 8008dbc <__pow5mult+0xa0> + 8008d40: 6a74 ldr r4, [r6, #36] ; 0x24 + 8008d42: b97c cbnz r4, 8008d64 <__pow5mult+0x48> + 8008d44: 2010 movs r0, #16 + 8008d46: f7fe fa3f bl 80071c8 + 8008d4a: 4602 mov r2, r0 + 8008d4c: 6270 str r0, [r6, #36] ; 0x24 + 8008d4e: b928 cbnz r0, 8008d5c <__pow5mult+0x40> + 8008d50: f44f 71d7 mov.w r1, #430 ; 0x1ae + 8008d54: 4b1c ldr r3, [pc, #112] ; (8008dc8 <__pow5mult+0xac>) + 8008d56: 481d ldr r0, [pc, #116] ; (8008dcc <__pow5mult+0xb0>) + 8008d58: f000 fb18 bl 800938c <__assert_func> + 8008d5c: e9c0 4401 strd r4, r4, [r0, #4] + 8008d60: 6004 str r4, [r0, #0] + 8008d62: 60c4 str r4, [r0, #12] + 8008d64: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 + 8008d68: f8d8 4008 ldr.w r4, [r8, #8] + 8008d6c: b94c cbnz r4, 8008d82 <__pow5mult+0x66> + 8008d6e: f240 2171 movw r1, #625 ; 0x271 + 8008d72: 4630 mov r0, r6 + 8008d74: f7ff ff18 bl 8008ba8 <__i2b> + 8008d78: 2300 movs r3, #0 + 8008d7a: 4604 mov r4, r0 + 8008d7c: f8c8 0008 str.w r0, [r8, #8] + 8008d80: 6003 str r3, [r0, #0] + 8008d82: f04f 0900 mov.w r9, #0 + 8008d86: 07eb lsls r3, r5, #31 + 8008d88: d50a bpl.n 8008da0 <__pow5mult+0x84> + 8008d8a: 4639 mov r1, r7 + 8008d8c: 4622 mov r2, r4 + 8008d8e: 4630 mov r0, r6 + 8008d90: f7ff ff20 bl 8008bd4 <__multiply> + 8008d94: 4680 mov r8, r0 + 8008d96: 4639 mov r1, r7 + 8008d98: 4630 mov r0, r6 + 8008d9a: f7ff fe4b bl 8008a34 <_Bfree> + 8008d9e: 4647 mov r7, r8 + 8008da0: 106d asrs r5, r5, #1 + 8008da2: d00b beq.n 8008dbc <__pow5mult+0xa0> + 8008da4: 6820 ldr r0, [r4, #0] + 8008da6: b938 cbnz r0, 8008db8 <__pow5mult+0x9c> + 8008da8: 4622 mov r2, r4 + 8008daa: 4621 mov r1, r4 + 8008dac: 4630 mov r0, r6 + 8008dae: f7ff ff11 bl 8008bd4 <__multiply> + 8008db2: 6020 str r0, [r4, #0] + 8008db4: f8c0 9000 str.w r9, [r0] + 8008db8: 4604 mov r4, r0 + 8008dba: e7e4 b.n 8008d86 <__pow5mult+0x6a> + 8008dbc: 4638 mov r0, r7 + 8008dbe: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 8008dc2: bf00 nop + 8008dc4: 0800b0f0 .word 0x0800b0f0 + 8008dc8: 0800af15 .word 0x0800af15 + 8008dcc: 0800af9c .word 0x0800af9c + +08008dd0 <__lshift>: + 8008dd0: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8008dd4: 460c mov r4, r1 + 8008dd6: 4607 mov r7, r0 + 8008dd8: 4691 mov r9, r2 + 8008dda: 6923 ldr r3, [r4, #16] + 8008ddc: 6849 ldr r1, [r1, #4] + 8008dde: eb03 1862 add.w r8, r3, r2, asr #5 + 8008de2: 68a3 ldr r3, [r4, #8] + 8008de4: ea4f 1a62 mov.w sl, r2, asr #5 + 8008de8: f108 0601 add.w r6, r8, #1 + 8008dec: 42b3 cmp r3, r6 + 8008dee: db0b blt.n 8008e08 <__lshift+0x38> + 8008df0: 4638 mov r0, r7 + 8008df2: f7ff fddf bl 80089b4 <_Balloc> + 8008df6: 4605 mov r5, r0 + 8008df8: b948 cbnz r0, 8008e0e <__lshift+0x3e> + 8008dfa: 4602 mov r2, r0 + 8008dfc: f240 11d9 movw r1, #473 ; 0x1d9 + 8008e00: 4b27 ldr r3, [pc, #156] ; (8008ea0 <__lshift+0xd0>) + 8008e02: 4828 ldr r0, [pc, #160] ; (8008ea4 <__lshift+0xd4>) + 8008e04: f000 fac2 bl 800938c <__assert_func> + 8008e08: 3101 adds r1, #1 + 8008e0a: 005b lsls r3, r3, #1 + 8008e0c: e7ee b.n 8008dec <__lshift+0x1c> + 8008e0e: 2300 movs r3, #0 + 8008e10: f100 0114 add.w r1, r0, #20 + 8008e14: f100 0210 add.w r2, r0, #16 + 8008e18: 4618 mov r0, r3 + 8008e1a: 4553 cmp r3, sl + 8008e1c: db33 blt.n 8008e86 <__lshift+0xb6> + 8008e1e: 6920 ldr r0, [r4, #16] + 8008e20: ea2a 7aea bic.w sl, sl, sl, asr #31 + 8008e24: f104 0314 add.w r3, r4, #20 + 8008e28: f019 091f ands.w r9, r9, #31 + 8008e2c: eb01 018a add.w r1, r1, sl, lsl #2 + 8008e30: eb03 0c80 add.w ip, r3, r0, lsl #2 + 8008e34: d02b beq.n 8008e8e <__lshift+0xbe> + 8008e36: 468a mov sl, r1 + 8008e38: 2200 movs r2, #0 + 8008e3a: f1c9 0e20 rsb lr, r9, #32 + 8008e3e: 6818 ldr r0, [r3, #0] + 8008e40: fa00 f009 lsl.w r0, r0, r9 + 8008e44: 4302 orrs r2, r0 + 8008e46: f84a 2b04 str.w r2, [sl], #4 + 8008e4a: f853 2b04 ldr.w r2, [r3], #4 + 8008e4e: 459c cmp ip, r3 + 8008e50: fa22 f20e lsr.w r2, r2, lr + 8008e54: d8f3 bhi.n 8008e3e <__lshift+0x6e> + 8008e56: ebac 0304 sub.w r3, ip, r4 + 8008e5a: 3b15 subs r3, #21 + 8008e5c: f023 0303 bic.w r3, r3, #3 + 8008e60: 3304 adds r3, #4 + 8008e62: f104 0015 add.w r0, r4, #21 + 8008e66: 4584 cmp ip, r0 + 8008e68: bf38 it cc + 8008e6a: 2304 movcc r3, #4 + 8008e6c: 50ca str r2, [r1, r3] + 8008e6e: b10a cbz r2, 8008e74 <__lshift+0xa4> + 8008e70: f108 0602 add.w r6, r8, #2 + 8008e74: 3e01 subs r6, #1 + 8008e76: 4638 mov r0, r7 + 8008e78: 4621 mov r1, r4 + 8008e7a: 612e str r6, [r5, #16] + 8008e7c: f7ff fdda bl 8008a34 <_Bfree> + 8008e80: 4628 mov r0, r5 + 8008e82: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8008e86: f842 0f04 str.w r0, [r2, #4]! + 8008e8a: 3301 adds r3, #1 + 8008e8c: e7c5 b.n 8008e1a <__lshift+0x4a> + 8008e8e: 3904 subs r1, #4 + 8008e90: f853 2b04 ldr.w r2, [r3], #4 + 8008e94: 459c cmp ip, r3 + 8008e96: f841 2f04 str.w r2, [r1, #4]! + 8008e9a: d8f9 bhi.n 8008e90 <__lshift+0xc0> + 8008e9c: e7ea b.n 8008e74 <__lshift+0xa4> + 8008e9e: bf00 nop + 8008ea0: 0800af8b .word 0x0800af8b + 8008ea4: 0800af9c .word 0x0800af9c + +08008ea8 <__mcmp>: + 8008ea8: 4603 mov r3, r0 + 8008eaa: 690a ldr r2, [r1, #16] + 8008eac: 6900 ldr r0, [r0, #16] + 8008eae: b530 push {r4, r5, lr} + 8008eb0: 1a80 subs r0, r0, r2 + 8008eb2: d10d bne.n 8008ed0 <__mcmp+0x28> + 8008eb4: 3314 adds r3, #20 + 8008eb6: 3114 adds r1, #20 + 8008eb8: eb03 0482 add.w r4, r3, r2, lsl #2 + 8008ebc: eb01 0182 add.w r1, r1, r2, lsl #2 + 8008ec0: f854 5d04 ldr.w r5, [r4, #-4]! + 8008ec4: f851 2d04 ldr.w r2, [r1, #-4]! + 8008ec8: 4295 cmp r5, r2 + 8008eca: d002 beq.n 8008ed2 <__mcmp+0x2a> + 8008ecc: d304 bcc.n 8008ed8 <__mcmp+0x30> + 8008ece: 2001 movs r0, #1 + 8008ed0: bd30 pop {r4, r5, pc} + 8008ed2: 42a3 cmp r3, r4 + 8008ed4: d3f4 bcc.n 8008ec0 <__mcmp+0x18> + 8008ed6: e7fb b.n 8008ed0 <__mcmp+0x28> + 8008ed8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8008edc: e7f8 b.n 8008ed0 <__mcmp+0x28> ... -08008778 <__mdiff>: - 8008778: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 800877c: 460c mov r4, r1 - 800877e: 4606 mov r6, r0 - 8008780: 4611 mov r1, r2 - 8008782: 4620 mov r0, r4 - 8008784: 4692 mov sl, r2 - 8008786: f7ff ffdb bl 8008740 <__mcmp> - 800878a: 1e05 subs r5, r0, #0 - 800878c: d111 bne.n 80087b2 <__mdiff+0x3a> - 800878e: 4629 mov r1, r5 - 8008790: 4630 mov r0, r6 - 8008792: f7ff fd5b bl 800824c <_Balloc> - 8008796: 4602 mov r2, r0 - 8008798: b928 cbnz r0, 80087a6 <__mdiff+0x2e> - 800879a: f240 2132 movw r1, #562 ; 0x232 - 800879e: 4b3c ldr r3, [pc, #240] ; (8008890 <__mdiff+0x118>) - 80087a0: 483c ldr r0, [pc, #240] ; (8008894 <__mdiff+0x11c>) - 80087a2: f000 fa3f bl 8008c24 <__assert_func> - 80087a6: 2301 movs r3, #1 - 80087a8: e9c0 3504 strd r3, r5, [r0, #16] - 80087ac: 4610 mov r0, r2 - 80087ae: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80087b2: bfa4 itt ge - 80087b4: 4653 movge r3, sl - 80087b6: 46a2 movge sl, r4 - 80087b8: 4630 mov r0, r6 - 80087ba: f8da 1004 ldr.w r1, [sl, #4] - 80087be: bfa6 itte ge - 80087c0: 461c movge r4, r3 - 80087c2: 2500 movge r5, #0 - 80087c4: 2501 movlt r5, #1 - 80087c6: f7ff fd41 bl 800824c <_Balloc> - 80087ca: 4602 mov r2, r0 - 80087cc: b918 cbnz r0, 80087d6 <__mdiff+0x5e> - 80087ce: f44f 7110 mov.w r1, #576 ; 0x240 - 80087d2: 4b2f ldr r3, [pc, #188] ; (8008890 <__mdiff+0x118>) - 80087d4: e7e4 b.n 80087a0 <__mdiff+0x28> - 80087d6: f100 0814 add.w r8, r0, #20 - 80087da: f8da 7010 ldr.w r7, [sl, #16] - 80087de: 60c5 str r5, [r0, #12] - 80087e0: f04f 0c00 mov.w ip, #0 - 80087e4: f10a 0514 add.w r5, sl, #20 - 80087e8: f10a 0010 add.w r0, sl, #16 - 80087ec: 46c2 mov sl, r8 - 80087ee: 6926 ldr r6, [r4, #16] - 80087f0: f104 0914 add.w r9, r4, #20 - 80087f4: eb05 0e87 add.w lr, r5, r7, lsl #2 - 80087f8: eb09 0686 add.w r6, r9, r6, lsl #2 - 80087fc: f850 bf04 ldr.w fp, [r0, #4]! - 8008800: f859 3b04 ldr.w r3, [r9], #4 - 8008804: fa1f f18b uxth.w r1, fp - 8008808: 4461 add r1, ip - 800880a: fa1f fc83 uxth.w ip, r3 - 800880e: 0c1b lsrs r3, r3, #16 - 8008810: eba1 010c sub.w r1, r1, ip - 8008814: ebc3 431b rsb r3, r3, fp, lsr #16 - 8008818: eb03 4321 add.w r3, r3, r1, asr #16 - 800881c: b289 uxth r1, r1 - 800881e: ea4f 4c23 mov.w ip, r3, asr #16 - 8008822: 454e cmp r6, r9 - 8008824: ea41 4303 orr.w r3, r1, r3, lsl #16 - 8008828: f84a 3b04 str.w r3, [sl], #4 - 800882c: d8e6 bhi.n 80087fc <__mdiff+0x84> - 800882e: 1b33 subs r3, r6, r4 - 8008830: 3b15 subs r3, #21 - 8008832: f023 0303 bic.w r3, r3, #3 - 8008836: 3415 adds r4, #21 - 8008838: 3304 adds r3, #4 - 800883a: 42a6 cmp r6, r4 - 800883c: bf38 it cc - 800883e: 2304 movcc r3, #4 - 8008840: 441d add r5, r3 - 8008842: 4443 add r3, r8 - 8008844: 461e mov r6, r3 - 8008846: 462c mov r4, r5 - 8008848: 4574 cmp r4, lr - 800884a: d30e bcc.n 800886a <__mdiff+0xf2> - 800884c: f10e 0103 add.w r1, lr, #3 - 8008850: 1b49 subs r1, r1, r5 - 8008852: f021 0103 bic.w r1, r1, #3 - 8008856: 3d03 subs r5, #3 - 8008858: 45ae cmp lr, r5 - 800885a: bf38 it cc - 800885c: 2100 movcc r1, #0 - 800885e: 4419 add r1, r3 - 8008860: f851 3d04 ldr.w r3, [r1, #-4]! - 8008864: b18b cbz r3, 800888a <__mdiff+0x112> - 8008866: 6117 str r7, [r2, #16] - 8008868: e7a0 b.n 80087ac <__mdiff+0x34> - 800886a: f854 8b04 ldr.w r8, [r4], #4 - 800886e: fa1f f188 uxth.w r1, r8 - 8008872: 4461 add r1, ip - 8008874: 1408 asrs r0, r1, #16 - 8008876: eb00 4018 add.w r0, r0, r8, lsr #16 - 800887a: b289 uxth r1, r1 - 800887c: ea41 4100 orr.w r1, r1, r0, lsl #16 - 8008880: ea4f 4c20 mov.w ip, r0, asr #16 - 8008884: f846 1b04 str.w r1, [r6], #4 - 8008888: e7de b.n 8008848 <__mdiff+0xd0> - 800888a: 3f01 subs r7, #1 - 800888c: e7e8 b.n 8008860 <__mdiff+0xe8> - 800888e: bf00 nop - 8008890: 0800a823 .word 0x0800a823 - 8008894: 0800a834 .word 0x0800a834 +08008ee0 <__mdiff>: + 8008ee0: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8008ee4: 460c mov r4, r1 + 8008ee6: 4606 mov r6, r0 + 8008ee8: 4611 mov r1, r2 + 8008eea: 4620 mov r0, r4 + 8008eec: 4692 mov sl, r2 + 8008eee: f7ff ffdb bl 8008ea8 <__mcmp> + 8008ef2: 1e05 subs r5, r0, #0 + 8008ef4: d111 bne.n 8008f1a <__mdiff+0x3a> + 8008ef6: 4629 mov r1, r5 + 8008ef8: 4630 mov r0, r6 + 8008efa: f7ff fd5b bl 80089b4 <_Balloc> + 8008efe: 4602 mov r2, r0 + 8008f00: b928 cbnz r0, 8008f0e <__mdiff+0x2e> + 8008f02: f240 2132 movw r1, #562 ; 0x232 + 8008f06: 4b3c ldr r3, [pc, #240] ; (8008ff8 <__mdiff+0x118>) + 8008f08: 483c ldr r0, [pc, #240] ; (8008ffc <__mdiff+0x11c>) + 8008f0a: f000 fa3f bl 800938c <__assert_func> + 8008f0e: 2301 movs r3, #1 + 8008f10: e9c0 3504 strd r3, r5, [r0, #16] + 8008f14: 4610 mov r0, r2 + 8008f16: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8008f1a: bfa4 itt ge + 8008f1c: 4653 movge r3, sl + 8008f1e: 46a2 movge sl, r4 + 8008f20: 4630 mov r0, r6 + 8008f22: f8da 1004 ldr.w r1, [sl, #4] + 8008f26: bfa6 itte ge + 8008f28: 461c movge r4, r3 + 8008f2a: 2500 movge r5, #0 + 8008f2c: 2501 movlt r5, #1 + 8008f2e: f7ff fd41 bl 80089b4 <_Balloc> + 8008f32: 4602 mov r2, r0 + 8008f34: b918 cbnz r0, 8008f3e <__mdiff+0x5e> + 8008f36: f44f 7110 mov.w r1, #576 ; 0x240 + 8008f3a: 4b2f ldr r3, [pc, #188] ; (8008ff8 <__mdiff+0x118>) + 8008f3c: e7e4 b.n 8008f08 <__mdiff+0x28> + 8008f3e: f100 0814 add.w r8, r0, #20 + 8008f42: f8da 7010 ldr.w r7, [sl, #16] + 8008f46: 60c5 str r5, [r0, #12] + 8008f48: f04f 0c00 mov.w ip, #0 + 8008f4c: f10a 0514 add.w r5, sl, #20 + 8008f50: f10a 0010 add.w r0, sl, #16 + 8008f54: 46c2 mov sl, r8 + 8008f56: 6926 ldr r6, [r4, #16] + 8008f58: f104 0914 add.w r9, r4, #20 + 8008f5c: eb05 0e87 add.w lr, r5, r7, lsl #2 + 8008f60: eb09 0686 add.w r6, r9, r6, lsl #2 + 8008f64: f850 bf04 ldr.w fp, [r0, #4]! + 8008f68: f859 3b04 ldr.w r3, [r9], #4 + 8008f6c: fa1f f18b uxth.w r1, fp + 8008f70: 4461 add r1, ip + 8008f72: fa1f fc83 uxth.w ip, r3 + 8008f76: 0c1b lsrs r3, r3, #16 + 8008f78: eba1 010c sub.w r1, r1, ip + 8008f7c: ebc3 431b rsb r3, r3, fp, lsr #16 + 8008f80: eb03 4321 add.w r3, r3, r1, asr #16 + 8008f84: b289 uxth r1, r1 + 8008f86: ea4f 4c23 mov.w ip, r3, asr #16 + 8008f8a: 454e cmp r6, r9 + 8008f8c: ea41 4303 orr.w r3, r1, r3, lsl #16 + 8008f90: f84a 3b04 str.w r3, [sl], #4 + 8008f94: d8e6 bhi.n 8008f64 <__mdiff+0x84> + 8008f96: 1b33 subs r3, r6, r4 + 8008f98: 3b15 subs r3, #21 + 8008f9a: f023 0303 bic.w r3, r3, #3 + 8008f9e: 3415 adds r4, #21 + 8008fa0: 3304 adds r3, #4 + 8008fa2: 42a6 cmp r6, r4 + 8008fa4: bf38 it cc + 8008fa6: 2304 movcc r3, #4 + 8008fa8: 441d add r5, r3 + 8008faa: 4443 add r3, r8 + 8008fac: 461e mov r6, r3 + 8008fae: 462c mov r4, r5 + 8008fb0: 4574 cmp r4, lr + 8008fb2: d30e bcc.n 8008fd2 <__mdiff+0xf2> + 8008fb4: f10e 0103 add.w r1, lr, #3 + 8008fb8: 1b49 subs r1, r1, r5 + 8008fba: f021 0103 bic.w r1, r1, #3 + 8008fbe: 3d03 subs r5, #3 + 8008fc0: 45ae cmp lr, r5 + 8008fc2: bf38 it cc + 8008fc4: 2100 movcc r1, #0 + 8008fc6: 4419 add r1, r3 + 8008fc8: f851 3d04 ldr.w r3, [r1, #-4]! + 8008fcc: b18b cbz r3, 8008ff2 <__mdiff+0x112> + 8008fce: 6117 str r7, [r2, #16] + 8008fd0: e7a0 b.n 8008f14 <__mdiff+0x34> + 8008fd2: f854 8b04 ldr.w r8, [r4], #4 + 8008fd6: fa1f f188 uxth.w r1, r8 + 8008fda: 4461 add r1, ip + 8008fdc: 1408 asrs r0, r1, #16 + 8008fde: eb00 4018 add.w r0, r0, r8, lsr #16 + 8008fe2: b289 uxth r1, r1 + 8008fe4: ea41 4100 orr.w r1, r1, r0, lsl #16 + 8008fe8: ea4f 4c20 mov.w ip, r0, asr #16 + 8008fec: f846 1b04 str.w r1, [r6], #4 + 8008ff0: e7de b.n 8008fb0 <__mdiff+0xd0> + 8008ff2: 3f01 subs r7, #1 + 8008ff4: e7e8 b.n 8008fc8 <__mdiff+0xe8> + 8008ff6: bf00 nop + 8008ff8: 0800af8b .word 0x0800af8b + 8008ffc: 0800af9c .word 0x0800af9c -08008898 <__d2b>: - 8008898: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} - 800889c: 2101 movs r1, #1 - 800889e: e9dd 7608 ldrd r7, r6, [sp, #32] - 80088a2: 4690 mov r8, r2 - 80088a4: 461d mov r5, r3 - 80088a6: f7ff fcd1 bl 800824c <_Balloc> - 80088aa: 4604 mov r4, r0 - 80088ac: b930 cbnz r0, 80088bc <__d2b+0x24> - 80088ae: 4602 mov r2, r0 - 80088b0: f240 310a movw r1, #778 ; 0x30a - 80088b4: 4b24 ldr r3, [pc, #144] ; (8008948 <__d2b+0xb0>) - 80088b6: 4825 ldr r0, [pc, #148] ; (800894c <__d2b+0xb4>) - 80088b8: f000 f9b4 bl 8008c24 <__assert_func> - 80088bc: f3c5 0313 ubfx r3, r5, #0, #20 - 80088c0: f3c5 550a ubfx r5, r5, #20, #11 - 80088c4: bb2d cbnz r5, 8008912 <__d2b+0x7a> - 80088c6: 9301 str r3, [sp, #4] - 80088c8: f1b8 0300 subs.w r3, r8, #0 - 80088cc: d026 beq.n 800891c <__d2b+0x84> - 80088ce: 4668 mov r0, sp - 80088d0: 9300 str r3, [sp, #0] - 80088d2: f7ff fd87 bl 80083e4 <__lo0bits> - 80088d6: 9900 ldr r1, [sp, #0] - 80088d8: b1f0 cbz r0, 8008918 <__d2b+0x80> - 80088da: 9a01 ldr r2, [sp, #4] - 80088dc: f1c0 0320 rsb r3, r0, #32 - 80088e0: fa02 f303 lsl.w r3, r2, r3 - 80088e4: 430b orrs r3, r1 - 80088e6: 40c2 lsrs r2, r0 - 80088e8: 6163 str r3, [r4, #20] - 80088ea: 9201 str r2, [sp, #4] - 80088ec: 9b01 ldr r3, [sp, #4] - 80088ee: 2b00 cmp r3, #0 - 80088f0: bf14 ite ne - 80088f2: 2102 movne r1, #2 - 80088f4: 2101 moveq r1, #1 - 80088f6: 61a3 str r3, [r4, #24] - 80088f8: 6121 str r1, [r4, #16] - 80088fa: b1c5 cbz r5, 800892e <__d2b+0x96> - 80088fc: f2a5 4533 subw r5, r5, #1075 ; 0x433 - 8008900: 4405 add r5, r0 - 8008902: f1c0 0035 rsb r0, r0, #53 ; 0x35 - 8008906: 603d str r5, [r7, #0] - 8008908: 6030 str r0, [r6, #0] - 800890a: 4620 mov r0, r4 - 800890c: b002 add sp, #8 - 800890e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8008912: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 - 8008916: e7d6 b.n 80088c6 <__d2b+0x2e> - 8008918: 6161 str r1, [r4, #20] - 800891a: e7e7 b.n 80088ec <__d2b+0x54> - 800891c: a801 add r0, sp, #4 - 800891e: f7ff fd61 bl 80083e4 <__lo0bits> - 8008922: 2101 movs r1, #1 - 8008924: 9b01 ldr r3, [sp, #4] - 8008926: 6121 str r1, [r4, #16] - 8008928: 6163 str r3, [r4, #20] - 800892a: 3020 adds r0, #32 - 800892c: e7e5 b.n 80088fa <__d2b+0x62> - 800892e: eb04 0381 add.w r3, r4, r1, lsl #2 - 8008932: f2a0 4032 subw r0, r0, #1074 ; 0x432 - 8008936: 6038 str r0, [r7, #0] - 8008938: 6918 ldr r0, [r3, #16] - 800893a: f7ff fd33 bl 80083a4 <__hi0bits> - 800893e: ebc0 1141 rsb r1, r0, r1, lsl #5 - 8008942: 6031 str r1, [r6, #0] - 8008944: e7e1 b.n 800890a <__d2b+0x72> - 8008946: bf00 nop - 8008948: 0800a823 .word 0x0800a823 - 800894c: 0800a834 .word 0x0800a834 +08009000 <__d2b>: + 8009000: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} + 8009004: 2101 movs r1, #1 + 8009006: e9dd 7608 ldrd r7, r6, [sp, #32] + 800900a: 4690 mov r8, r2 + 800900c: 461d mov r5, r3 + 800900e: f7ff fcd1 bl 80089b4 <_Balloc> + 8009012: 4604 mov r4, r0 + 8009014: b930 cbnz r0, 8009024 <__d2b+0x24> + 8009016: 4602 mov r2, r0 + 8009018: f240 310a movw r1, #778 ; 0x30a + 800901c: 4b24 ldr r3, [pc, #144] ; (80090b0 <__d2b+0xb0>) + 800901e: 4825 ldr r0, [pc, #148] ; (80090b4 <__d2b+0xb4>) + 8009020: f000 f9b4 bl 800938c <__assert_func> + 8009024: f3c5 0313 ubfx r3, r5, #0, #20 + 8009028: f3c5 550a ubfx r5, r5, #20, #11 + 800902c: bb2d cbnz r5, 800907a <__d2b+0x7a> + 800902e: 9301 str r3, [sp, #4] + 8009030: f1b8 0300 subs.w r3, r8, #0 + 8009034: d026 beq.n 8009084 <__d2b+0x84> + 8009036: 4668 mov r0, sp + 8009038: 9300 str r3, [sp, #0] + 800903a: f7ff fd87 bl 8008b4c <__lo0bits> + 800903e: 9900 ldr r1, [sp, #0] + 8009040: b1f0 cbz r0, 8009080 <__d2b+0x80> + 8009042: 9a01 ldr r2, [sp, #4] + 8009044: f1c0 0320 rsb r3, r0, #32 + 8009048: fa02 f303 lsl.w r3, r2, r3 + 800904c: 430b orrs r3, r1 + 800904e: 40c2 lsrs r2, r0 + 8009050: 6163 str r3, [r4, #20] + 8009052: 9201 str r2, [sp, #4] + 8009054: 9b01 ldr r3, [sp, #4] + 8009056: 2b00 cmp r3, #0 + 8009058: bf14 ite ne + 800905a: 2102 movne r1, #2 + 800905c: 2101 moveq r1, #1 + 800905e: 61a3 str r3, [r4, #24] + 8009060: 6121 str r1, [r4, #16] + 8009062: b1c5 cbz r5, 8009096 <__d2b+0x96> + 8009064: f2a5 4533 subw r5, r5, #1075 ; 0x433 + 8009068: 4405 add r5, r0 + 800906a: f1c0 0035 rsb r0, r0, #53 ; 0x35 + 800906e: 603d str r5, [r7, #0] + 8009070: 6030 str r0, [r6, #0] + 8009072: 4620 mov r0, r4 + 8009074: b002 add sp, #8 + 8009076: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 800907a: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 + 800907e: e7d6 b.n 800902e <__d2b+0x2e> + 8009080: 6161 str r1, [r4, #20] + 8009082: e7e7 b.n 8009054 <__d2b+0x54> + 8009084: a801 add r0, sp, #4 + 8009086: f7ff fd61 bl 8008b4c <__lo0bits> + 800908a: 2101 movs r1, #1 + 800908c: 9b01 ldr r3, [sp, #4] + 800908e: 6121 str r1, [r4, #16] + 8009090: 6163 str r3, [r4, #20] + 8009092: 3020 adds r0, #32 + 8009094: e7e5 b.n 8009062 <__d2b+0x62> + 8009096: eb04 0381 add.w r3, r4, r1, lsl #2 + 800909a: f2a0 4032 subw r0, r0, #1074 ; 0x432 + 800909e: 6038 str r0, [r7, #0] + 80090a0: 6918 ldr r0, [r3, #16] + 80090a2: f7ff fd33 bl 8008b0c <__hi0bits> + 80090a6: ebc0 1141 rsb r1, r0, r1, lsl #5 + 80090aa: 6031 str r1, [r6, #0] + 80090ac: e7e1 b.n 8009072 <__d2b+0x72> + 80090ae: bf00 nop + 80090b0: 0800af8b .word 0x0800af8b + 80090b4: 0800af9c .word 0x0800af9c -08008950 <_calloc_r>: - 8008950: b538 push {r3, r4, r5, lr} - 8008952: fb02 f501 mul.w r5, r2, r1 - 8008956: 4629 mov r1, r5 - 8008958: f7fe f8e6 bl 8006b28 <_malloc_r> - 800895c: 4604 mov r4, r0 - 800895e: b118 cbz r0, 8008968 <_calloc_r+0x18> - 8008960: 462a mov r2, r5 - 8008962: 2100 movs r1, #0 - 8008964: f7fe f88c bl 8006a80 - 8008968: 4620 mov r0, r4 - 800896a: bd38 pop {r3, r4, r5, pc} +080090b8 <_calloc_r>: + 80090b8: b538 push {r3, r4, r5, lr} + 80090ba: fb02 f501 mul.w r5, r2, r1 + 80090be: 4629 mov r1, r5 + 80090c0: f7fe f8e6 bl 8007290 <_malloc_r> + 80090c4: 4604 mov r4, r0 + 80090c6: b118 cbz r0, 80090d0 <_calloc_r+0x18> + 80090c8: 462a mov r2, r5 + 80090ca: 2100 movs r1, #0 + 80090cc: f7fe f88c bl 80071e8 + 80090d0: 4620 mov r0, r4 + 80090d2: bd38 pop {r3, r4, r5, pc} -0800896c <__ssputs_r>: - 800896c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8008970: 688e ldr r6, [r1, #8] - 8008972: 4682 mov sl, r0 - 8008974: 429e cmp r6, r3 - 8008976: 460c mov r4, r1 - 8008978: 4690 mov r8, r2 - 800897a: 461f mov r7, r3 - 800897c: d838 bhi.n 80089f0 <__ssputs_r+0x84> - 800897e: 898a ldrh r2, [r1, #12] - 8008980: f412 6f90 tst.w r2, #1152 ; 0x480 - 8008984: d032 beq.n 80089ec <__ssputs_r+0x80> - 8008986: 6825 ldr r5, [r4, #0] - 8008988: 6909 ldr r1, [r1, #16] - 800898a: 3301 adds r3, #1 - 800898c: eba5 0901 sub.w r9, r5, r1 - 8008990: 6965 ldr r5, [r4, #20] - 8008992: 444b add r3, r9 - 8008994: eb05 0545 add.w r5, r5, r5, lsl #1 - 8008998: eb05 75d5 add.w r5, r5, r5, lsr #31 - 800899c: 106d asrs r5, r5, #1 - 800899e: 429d cmp r5, r3 - 80089a0: bf38 it cc - 80089a2: 461d movcc r5, r3 - 80089a4: 0553 lsls r3, r2, #21 - 80089a6: d531 bpl.n 8008a0c <__ssputs_r+0xa0> - 80089a8: 4629 mov r1, r5 - 80089aa: f7fe f8bd bl 8006b28 <_malloc_r> - 80089ae: 4606 mov r6, r0 - 80089b0: b950 cbnz r0, 80089c8 <__ssputs_r+0x5c> - 80089b2: 230c movs r3, #12 - 80089b4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80089b8: f8ca 3000 str.w r3, [sl] - 80089bc: 89a3 ldrh r3, [r4, #12] - 80089be: f043 0340 orr.w r3, r3, #64 ; 0x40 - 80089c2: 81a3 strh r3, [r4, #12] - 80089c4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 80089c8: 464a mov r2, r9 - 80089ca: 6921 ldr r1, [r4, #16] - 80089cc: f7ff fc24 bl 8008218 - 80089d0: 89a3 ldrh r3, [r4, #12] - 80089d2: f423 6390 bic.w r3, r3, #1152 ; 0x480 - 80089d6: f043 0380 orr.w r3, r3, #128 ; 0x80 - 80089da: 81a3 strh r3, [r4, #12] - 80089dc: 6126 str r6, [r4, #16] - 80089de: 444e add r6, r9 - 80089e0: 6026 str r6, [r4, #0] - 80089e2: 463e mov r6, r7 - 80089e4: 6165 str r5, [r4, #20] - 80089e6: eba5 0509 sub.w r5, r5, r9 - 80089ea: 60a5 str r5, [r4, #8] - 80089ec: 42be cmp r6, r7 - 80089ee: d900 bls.n 80089f2 <__ssputs_r+0x86> - 80089f0: 463e mov r6, r7 - 80089f2: 4632 mov r2, r6 - 80089f4: 4641 mov r1, r8 - 80089f6: 6820 ldr r0, [r4, #0] - 80089f8: f000 f959 bl 8008cae - 80089fc: 68a3 ldr r3, [r4, #8] - 80089fe: 6822 ldr r2, [r4, #0] - 8008a00: 1b9b subs r3, r3, r6 - 8008a02: 4432 add r2, r6 - 8008a04: 2000 movs r0, #0 - 8008a06: 60a3 str r3, [r4, #8] - 8008a08: 6022 str r2, [r4, #0] - 8008a0a: e7db b.n 80089c4 <__ssputs_r+0x58> - 8008a0c: 462a mov r2, r5 - 8008a0e: f000 f968 bl 8008ce2 <_realloc_r> - 8008a12: 4606 mov r6, r0 - 8008a14: 2800 cmp r0, #0 - 8008a16: d1e1 bne.n 80089dc <__ssputs_r+0x70> - 8008a18: 4650 mov r0, sl - 8008a1a: 6921 ldr r1, [r4, #16] - 8008a1c: f7fe f838 bl 8006a90 <_free_r> - 8008a20: e7c7 b.n 80089b2 <__ssputs_r+0x46> +080090d4 <__ssputs_r>: + 80090d4: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 80090d8: 688e ldr r6, [r1, #8] + 80090da: 4682 mov sl, r0 + 80090dc: 429e cmp r6, r3 + 80090de: 460c mov r4, r1 + 80090e0: 4690 mov r8, r2 + 80090e2: 461f mov r7, r3 + 80090e4: d838 bhi.n 8009158 <__ssputs_r+0x84> + 80090e6: 898a ldrh r2, [r1, #12] + 80090e8: f412 6f90 tst.w r2, #1152 ; 0x480 + 80090ec: d032 beq.n 8009154 <__ssputs_r+0x80> + 80090ee: 6825 ldr r5, [r4, #0] + 80090f0: 6909 ldr r1, [r1, #16] + 80090f2: 3301 adds r3, #1 + 80090f4: eba5 0901 sub.w r9, r5, r1 + 80090f8: 6965 ldr r5, [r4, #20] + 80090fa: 444b add r3, r9 + 80090fc: eb05 0545 add.w r5, r5, r5, lsl #1 + 8009100: eb05 75d5 add.w r5, r5, r5, lsr #31 + 8009104: 106d asrs r5, r5, #1 + 8009106: 429d cmp r5, r3 + 8009108: bf38 it cc + 800910a: 461d movcc r5, r3 + 800910c: 0553 lsls r3, r2, #21 + 800910e: d531 bpl.n 8009174 <__ssputs_r+0xa0> + 8009110: 4629 mov r1, r5 + 8009112: f7fe f8bd bl 8007290 <_malloc_r> + 8009116: 4606 mov r6, r0 + 8009118: b950 cbnz r0, 8009130 <__ssputs_r+0x5c> + 800911a: 230c movs r3, #12 + 800911c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009120: f8ca 3000 str.w r3, [sl] + 8009124: 89a3 ldrh r3, [r4, #12] + 8009126: f043 0340 orr.w r3, r3, #64 ; 0x40 + 800912a: 81a3 strh r3, [r4, #12] + 800912c: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8009130: 464a mov r2, r9 + 8009132: 6921 ldr r1, [r4, #16] + 8009134: f7ff fc24 bl 8008980 + 8009138: 89a3 ldrh r3, [r4, #12] + 800913a: f423 6390 bic.w r3, r3, #1152 ; 0x480 + 800913e: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8009142: 81a3 strh r3, [r4, #12] + 8009144: 6126 str r6, [r4, #16] + 8009146: 444e add r6, r9 + 8009148: 6026 str r6, [r4, #0] + 800914a: 463e mov r6, r7 + 800914c: 6165 str r5, [r4, #20] + 800914e: eba5 0509 sub.w r5, r5, r9 + 8009152: 60a5 str r5, [r4, #8] + 8009154: 42be cmp r6, r7 + 8009156: d900 bls.n 800915a <__ssputs_r+0x86> + 8009158: 463e mov r6, r7 + 800915a: 4632 mov r2, r6 + 800915c: 4641 mov r1, r8 + 800915e: 6820 ldr r0, [r4, #0] + 8009160: f000 f959 bl 8009416 + 8009164: 68a3 ldr r3, [r4, #8] + 8009166: 6822 ldr r2, [r4, #0] + 8009168: 1b9b subs r3, r3, r6 + 800916a: 4432 add r2, r6 + 800916c: 2000 movs r0, #0 + 800916e: 60a3 str r3, [r4, #8] + 8009170: 6022 str r2, [r4, #0] + 8009172: e7db b.n 800912c <__ssputs_r+0x58> + 8009174: 462a mov r2, r5 + 8009176: f000 f968 bl 800944a <_realloc_r> + 800917a: 4606 mov r6, r0 + 800917c: 2800 cmp r0, #0 + 800917e: d1e1 bne.n 8009144 <__ssputs_r+0x70> + 8009180: 4650 mov r0, sl + 8009182: 6921 ldr r1, [r4, #16] + 8009184: f7fe f838 bl 80071f8 <_free_r> + 8009188: e7c7 b.n 800911a <__ssputs_r+0x46> ... -08008a24 <_svfiprintf_r>: - 8008a24: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8008a28: 4698 mov r8, r3 - 8008a2a: 898b ldrh r3, [r1, #12] - 8008a2c: 4607 mov r7, r0 - 8008a2e: 061b lsls r3, r3, #24 - 8008a30: 460d mov r5, r1 - 8008a32: 4614 mov r4, r2 - 8008a34: b09d sub sp, #116 ; 0x74 - 8008a36: d50e bpl.n 8008a56 <_svfiprintf_r+0x32> - 8008a38: 690b ldr r3, [r1, #16] - 8008a3a: b963 cbnz r3, 8008a56 <_svfiprintf_r+0x32> - 8008a3c: 2140 movs r1, #64 ; 0x40 - 8008a3e: f7fe f873 bl 8006b28 <_malloc_r> - 8008a42: 6028 str r0, [r5, #0] - 8008a44: 6128 str r0, [r5, #16] - 8008a46: b920 cbnz r0, 8008a52 <_svfiprintf_r+0x2e> - 8008a48: 230c movs r3, #12 - 8008a4a: 603b str r3, [r7, #0] - 8008a4c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8008a50: e0d1 b.n 8008bf6 <_svfiprintf_r+0x1d2> - 8008a52: 2340 movs r3, #64 ; 0x40 - 8008a54: 616b str r3, [r5, #20] - 8008a56: 2300 movs r3, #0 - 8008a58: 9309 str r3, [sp, #36] ; 0x24 - 8008a5a: 2320 movs r3, #32 - 8008a5c: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 8008a60: 2330 movs r3, #48 ; 0x30 - 8008a62: f04f 0901 mov.w r9, #1 - 8008a66: f8cd 800c str.w r8, [sp, #12] - 8008a6a: f8df 81a4 ldr.w r8, [pc, #420] ; 8008c10 <_svfiprintf_r+0x1ec> - 8008a6e: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 8008a72: 4623 mov r3, r4 - 8008a74: 469a mov sl, r3 - 8008a76: f813 2b01 ldrb.w r2, [r3], #1 - 8008a7a: b10a cbz r2, 8008a80 <_svfiprintf_r+0x5c> - 8008a7c: 2a25 cmp r2, #37 ; 0x25 - 8008a7e: d1f9 bne.n 8008a74 <_svfiprintf_r+0x50> - 8008a80: ebba 0b04 subs.w fp, sl, r4 - 8008a84: d00b beq.n 8008a9e <_svfiprintf_r+0x7a> - 8008a86: 465b mov r3, fp - 8008a88: 4622 mov r2, r4 - 8008a8a: 4629 mov r1, r5 - 8008a8c: 4638 mov r0, r7 - 8008a8e: f7ff ff6d bl 800896c <__ssputs_r> - 8008a92: 3001 adds r0, #1 - 8008a94: f000 80aa beq.w 8008bec <_svfiprintf_r+0x1c8> - 8008a98: 9a09 ldr r2, [sp, #36] ; 0x24 - 8008a9a: 445a add r2, fp - 8008a9c: 9209 str r2, [sp, #36] ; 0x24 - 8008a9e: f89a 3000 ldrb.w r3, [sl] - 8008aa2: 2b00 cmp r3, #0 - 8008aa4: f000 80a2 beq.w 8008bec <_svfiprintf_r+0x1c8> - 8008aa8: 2300 movs r3, #0 - 8008aaa: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8008aae: e9cd 2305 strd r2, r3, [sp, #20] - 8008ab2: f10a 0a01 add.w sl, sl, #1 - 8008ab6: 9304 str r3, [sp, #16] - 8008ab8: 9307 str r3, [sp, #28] - 8008aba: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 8008abe: 931a str r3, [sp, #104] ; 0x68 - 8008ac0: 4654 mov r4, sl - 8008ac2: 2205 movs r2, #5 - 8008ac4: f814 1b01 ldrb.w r1, [r4], #1 - 8008ac8: 4851 ldr r0, [pc, #324] ; (8008c10 <_svfiprintf_r+0x1ec>) - 8008aca: f7ff fb97 bl 80081fc - 8008ace: 9a04 ldr r2, [sp, #16] - 8008ad0: b9d8 cbnz r0, 8008b0a <_svfiprintf_r+0xe6> - 8008ad2: 06d0 lsls r0, r2, #27 - 8008ad4: bf44 itt mi - 8008ad6: 2320 movmi r3, #32 - 8008ad8: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8008adc: 0711 lsls r1, r2, #28 - 8008ade: bf44 itt mi - 8008ae0: 232b movmi r3, #43 ; 0x2b - 8008ae2: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8008ae6: f89a 3000 ldrb.w r3, [sl] - 8008aea: 2b2a cmp r3, #42 ; 0x2a - 8008aec: d015 beq.n 8008b1a <_svfiprintf_r+0xf6> - 8008aee: 4654 mov r4, sl - 8008af0: 2000 movs r0, #0 - 8008af2: f04f 0c0a mov.w ip, #10 - 8008af6: 9a07 ldr r2, [sp, #28] - 8008af8: 4621 mov r1, r4 - 8008afa: f811 3b01 ldrb.w r3, [r1], #1 - 8008afe: 3b30 subs r3, #48 ; 0x30 - 8008b00: 2b09 cmp r3, #9 - 8008b02: d94e bls.n 8008ba2 <_svfiprintf_r+0x17e> - 8008b04: b1b0 cbz r0, 8008b34 <_svfiprintf_r+0x110> - 8008b06: 9207 str r2, [sp, #28] - 8008b08: e014 b.n 8008b34 <_svfiprintf_r+0x110> - 8008b0a: eba0 0308 sub.w r3, r0, r8 - 8008b0e: fa09 f303 lsl.w r3, r9, r3 - 8008b12: 4313 orrs r3, r2 - 8008b14: 46a2 mov sl, r4 - 8008b16: 9304 str r3, [sp, #16] - 8008b18: e7d2 b.n 8008ac0 <_svfiprintf_r+0x9c> - 8008b1a: 9b03 ldr r3, [sp, #12] - 8008b1c: 1d19 adds r1, r3, #4 - 8008b1e: 681b ldr r3, [r3, #0] - 8008b20: 9103 str r1, [sp, #12] - 8008b22: 2b00 cmp r3, #0 - 8008b24: bfbb ittet lt - 8008b26: 425b neglt r3, r3 - 8008b28: f042 0202 orrlt.w r2, r2, #2 - 8008b2c: 9307 strge r3, [sp, #28] - 8008b2e: 9307 strlt r3, [sp, #28] - 8008b30: bfb8 it lt - 8008b32: 9204 strlt r2, [sp, #16] - 8008b34: 7823 ldrb r3, [r4, #0] - 8008b36: 2b2e cmp r3, #46 ; 0x2e - 8008b38: d10c bne.n 8008b54 <_svfiprintf_r+0x130> - 8008b3a: 7863 ldrb r3, [r4, #1] - 8008b3c: 2b2a cmp r3, #42 ; 0x2a - 8008b3e: d135 bne.n 8008bac <_svfiprintf_r+0x188> - 8008b40: 9b03 ldr r3, [sp, #12] - 8008b42: 3402 adds r4, #2 - 8008b44: 1d1a adds r2, r3, #4 - 8008b46: 681b ldr r3, [r3, #0] - 8008b48: 9203 str r2, [sp, #12] - 8008b4a: 2b00 cmp r3, #0 - 8008b4c: bfb8 it lt - 8008b4e: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 8008b52: 9305 str r3, [sp, #20] - 8008b54: f8df a0c8 ldr.w sl, [pc, #200] ; 8008c20 <_svfiprintf_r+0x1fc> - 8008b58: 2203 movs r2, #3 - 8008b5a: 4650 mov r0, sl - 8008b5c: 7821 ldrb r1, [r4, #0] - 8008b5e: f7ff fb4d bl 80081fc - 8008b62: b140 cbz r0, 8008b76 <_svfiprintf_r+0x152> - 8008b64: 2340 movs r3, #64 ; 0x40 - 8008b66: eba0 000a sub.w r0, r0, sl - 8008b6a: fa03 f000 lsl.w r0, r3, r0 - 8008b6e: 9b04 ldr r3, [sp, #16] - 8008b70: 3401 adds r4, #1 - 8008b72: 4303 orrs r3, r0 - 8008b74: 9304 str r3, [sp, #16] - 8008b76: f814 1b01 ldrb.w r1, [r4], #1 - 8008b7a: 2206 movs r2, #6 - 8008b7c: 4825 ldr r0, [pc, #148] ; (8008c14 <_svfiprintf_r+0x1f0>) - 8008b7e: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 8008b82: f7ff fb3b bl 80081fc - 8008b86: 2800 cmp r0, #0 - 8008b88: d038 beq.n 8008bfc <_svfiprintf_r+0x1d8> - 8008b8a: 4b23 ldr r3, [pc, #140] ; (8008c18 <_svfiprintf_r+0x1f4>) - 8008b8c: bb1b cbnz r3, 8008bd6 <_svfiprintf_r+0x1b2> - 8008b8e: 9b03 ldr r3, [sp, #12] - 8008b90: 3307 adds r3, #7 - 8008b92: f023 0307 bic.w r3, r3, #7 - 8008b96: 3308 adds r3, #8 - 8008b98: 9303 str r3, [sp, #12] - 8008b9a: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008b9c: 4433 add r3, r6 - 8008b9e: 9309 str r3, [sp, #36] ; 0x24 - 8008ba0: e767 b.n 8008a72 <_svfiprintf_r+0x4e> - 8008ba2: 460c mov r4, r1 - 8008ba4: 2001 movs r0, #1 - 8008ba6: fb0c 3202 mla r2, ip, r2, r3 - 8008baa: e7a5 b.n 8008af8 <_svfiprintf_r+0xd4> - 8008bac: 2300 movs r3, #0 - 8008bae: f04f 0c0a mov.w ip, #10 - 8008bb2: 4619 mov r1, r3 - 8008bb4: 3401 adds r4, #1 - 8008bb6: 9305 str r3, [sp, #20] - 8008bb8: 4620 mov r0, r4 - 8008bba: f810 2b01 ldrb.w r2, [r0], #1 - 8008bbe: 3a30 subs r2, #48 ; 0x30 - 8008bc0: 2a09 cmp r2, #9 - 8008bc2: d903 bls.n 8008bcc <_svfiprintf_r+0x1a8> - 8008bc4: 2b00 cmp r3, #0 - 8008bc6: d0c5 beq.n 8008b54 <_svfiprintf_r+0x130> - 8008bc8: 9105 str r1, [sp, #20] - 8008bca: e7c3 b.n 8008b54 <_svfiprintf_r+0x130> - 8008bcc: 4604 mov r4, r0 - 8008bce: 2301 movs r3, #1 - 8008bd0: fb0c 2101 mla r1, ip, r1, r2 - 8008bd4: e7f0 b.n 8008bb8 <_svfiprintf_r+0x194> - 8008bd6: ab03 add r3, sp, #12 - 8008bd8: 9300 str r3, [sp, #0] - 8008bda: 462a mov r2, r5 - 8008bdc: 4638 mov r0, r7 - 8008bde: 4b0f ldr r3, [pc, #60] ; (8008c1c <_svfiprintf_r+0x1f8>) - 8008be0: a904 add r1, sp, #16 - 8008be2: f7fe f899 bl 8006d18 <_printf_float> - 8008be6: 1c42 adds r2, r0, #1 - 8008be8: 4606 mov r6, r0 - 8008bea: d1d6 bne.n 8008b9a <_svfiprintf_r+0x176> - 8008bec: 89ab ldrh r3, [r5, #12] - 8008bee: 065b lsls r3, r3, #25 - 8008bf0: f53f af2c bmi.w 8008a4c <_svfiprintf_r+0x28> - 8008bf4: 9809 ldr r0, [sp, #36] ; 0x24 - 8008bf6: b01d add sp, #116 ; 0x74 - 8008bf8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8008bfc: ab03 add r3, sp, #12 - 8008bfe: 9300 str r3, [sp, #0] - 8008c00: 462a mov r2, r5 - 8008c02: 4638 mov r0, r7 - 8008c04: 4b05 ldr r3, [pc, #20] ; (8008c1c <_svfiprintf_r+0x1f8>) - 8008c06: a904 add r1, sp, #16 - 8008c08: f7fe fb22 bl 8007250 <_printf_i> - 8008c0c: e7eb b.n 8008be6 <_svfiprintf_r+0x1c2> - 8008c0e: bf00 nop - 8008c10: 0800a994 .word 0x0800a994 - 8008c14: 0800a99e .word 0x0800a99e - 8008c18: 08006d19 .word 0x08006d19 - 8008c1c: 0800896d .word 0x0800896d - 8008c20: 0800a99a .word 0x0800a99a +0800918c <_svfiprintf_r>: + 800918c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8009190: 4698 mov r8, r3 + 8009192: 898b ldrh r3, [r1, #12] + 8009194: 4607 mov r7, r0 + 8009196: 061b lsls r3, r3, #24 + 8009198: 460d mov r5, r1 + 800919a: 4614 mov r4, r2 + 800919c: b09d sub sp, #116 ; 0x74 + 800919e: d50e bpl.n 80091be <_svfiprintf_r+0x32> + 80091a0: 690b ldr r3, [r1, #16] + 80091a2: b963 cbnz r3, 80091be <_svfiprintf_r+0x32> + 80091a4: 2140 movs r1, #64 ; 0x40 + 80091a6: f7fe f873 bl 8007290 <_malloc_r> + 80091aa: 6028 str r0, [r5, #0] + 80091ac: 6128 str r0, [r5, #16] + 80091ae: b920 cbnz r0, 80091ba <_svfiprintf_r+0x2e> + 80091b0: 230c movs r3, #12 + 80091b2: 603b str r3, [r7, #0] + 80091b4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80091b8: e0d1 b.n 800935e <_svfiprintf_r+0x1d2> + 80091ba: 2340 movs r3, #64 ; 0x40 + 80091bc: 616b str r3, [r5, #20] + 80091be: 2300 movs r3, #0 + 80091c0: 9309 str r3, [sp, #36] ; 0x24 + 80091c2: 2320 movs r3, #32 + 80091c4: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 80091c8: 2330 movs r3, #48 ; 0x30 + 80091ca: f04f 0901 mov.w r9, #1 + 80091ce: f8cd 800c str.w r8, [sp, #12] + 80091d2: f8df 81a4 ldr.w r8, [pc, #420] ; 8009378 <_svfiprintf_r+0x1ec> + 80091d6: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 80091da: 4623 mov r3, r4 + 80091dc: 469a mov sl, r3 + 80091de: f813 2b01 ldrb.w r2, [r3], #1 + 80091e2: b10a cbz r2, 80091e8 <_svfiprintf_r+0x5c> + 80091e4: 2a25 cmp r2, #37 ; 0x25 + 80091e6: d1f9 bne.n 80091dc <_svfiprintf_r+0x50> + 80091e8: ebba 0b04 subs.w fp, sl, r4 + 80091ec: d00b beq.n 8009206 <_svfiprintf_r+0x7a> + 80091ee: 465b mov r3, fp + 80091f0: 4622 mov r2, r4 + 80091f2: 4629 mov r1, r5 + 80091f4: 4638 mov r0, r7 + 80091f6: f7ff ff6d bl 80090d4 <__ssputs_r> + 80091fa: 3001 adds r0, #1 + 80091fc: f000 80aa beq.w 8009354 <_svfiprintf_r+0x1c8> + 8009200: 9a09 ldr r2, [sp, #36] ; 0x24 + 8009202: 445a add r2, fp + 8009204: 9209 str r2, [sp, #36] ; 0x24 + 8009206: f89a 3000 ldrb.w r3, [sl] + 800920a: 2b00 cmp r3, #0 + 800920c: f000 80a2 beq.w 8009354 <_svfiprintf_r+0x1c8> + 8009210: 2300 movs r3, #0 + 8009212: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8009216: e9cd 2305 strd r2, r3, [sp, #20] + 800921a: f10a 0a01 add.w sl, sl, #1 + 800921e: 9304 str r3, [sp, #16] + 8009220: 9307 str r3, [sp, #28] + 8009222: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 8009226: 931a str r3, [sp, #104] ; 0x68 + 8009228: 4654 mov r4, sl + 800922a: 2205 movs r2, #5 + 800922c: f814 1b01 ldrb.w r1, [r4], #1 + 8009230: 4851 ldr r0, [pc, #324] ; (8009378 <_svfiprintf_r+0x1ec>) + 8009232: f7ff fb97 bl 8008964 + 8009236: 9a04 ldr r2, [sp, #16] + 8009238: b9d8 cbnz r0, 8009272 <_svfiprintf_r+0xe6> + 800923a: 06d0 lsls r0, r2, #27 + 800923c: bf44 itt mi + 800923e: 2320 movmi r3, #32 + 8009240: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8009244: 0711 lsls r1, r2, #28 + 8009246: bf44 itt mi + 8009248: 232b movmi r3, #43 ; 0x2b + 800924a: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 800924e: f89a 3000 ldrb.w r3, [sl] + 8009252: 2b2a cmp r3, #42 ; 0x2a + 8009254: d015 beq.n 8009282 <_svfiprintf_r+0xf6> + 8009256: 4654 mov r4, sl + 8009258: 2000 movs r0, #0 + 800925a: f04f 0c0a mov.w ip, #10 + 800925e: 9a07 ldr r2, [sp, #28] + 8009260: 4621 mov r1, r4 + 8009262: f811 3b01 ldrb.w r3, [r1], #1 + 8009266: 3b30 subs r3, #48 ; 0x30 + 8009268: 2b09 cmp r3, #9 + 800926a: d94e bls.n 800930a <_svfiprintf_r+0x17e> + 800926c: b1b0 cbz r0, 800929c <_svfiprintf_r+0x110> + 800926e: 9207 str r2, [sp, #28] + 8009270: e014 b.n 800929c <_svfiprintf_r+0x110> + 8009272: eba0 0308 sub.w r3, r0, r8 + 8009276: fa09 f303 lsl.w r3, r9, r3 + 800927a: 4313 orrs r3, r2 + 800927c: 46a2 mov sl, r4 + 800927e: 9304 str r3, [sp, #16] + 8009280: e7d2 b.n 8009228 <_svfiprintf_r+0x9c> + 8009282: 9b03 ldr r3, [sp, #12] + 8009284: 1d19 adds r1, r3, #4 + 8009286: 681b ldr r3, [r3, #0] + 8009288: 9103 str r1, [sp, #12] + 800928a: 2b00 cmp r3, #0 + 800928c: bfbb ittet lt + 800928e: 425b neglt r3, r3 + 8009290: f042 0202 orrlt.w r2, r2, #2 + 8009294: 9307 strge r3, [sp, #28] + 8009296: 9307 strlt r3, [sp, #28] + 8009298: bfb8 it lt + 800929a: 9204 strlt r2, [sp, #16] + 800929c: 7823 ldrb r3, [r4, #0] + 800929e: 2b2e cmp r3, #46 ; 0x2e + 80092a0: d10c bne.n 80092bc <_svfiprintf_r+0x130> + 80092a2: 7863 ldrb r3, [r4, #1] + 80092a4: 2b2a cmp r3, #42 ; 0x2a + 80092a6: d135 bne.n 8009314 <_svfiprintf_r+0x188> + 80092a8: 9b03 ldr r3, [sp, #12] + 80092aa: 3402 adds r4, #2 + 80092ac: 1d1a adds r2, r3, #4 + 80092ae: 681b ldr r3, [r3, #0] + 80092b0: 9203 str r2, [sp, #12] + 80092b2: 2b00 cmp r3, #0 + 80092b4: bfb8 it lt + 80092b6: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 80092ba: 9305 str r3, [sp, #20] + 80092bc: f8df a0c8 ldr.w sl, [pc, #200] ; 8009388 <_svfiprintf_r+0x1fc> + 80092c0: 2203 movs r2, #3 + 80092c2: 4650 mov r0, sl + 80092c4: 7821 ldrb r1, [r4, #0] + 80092c6: f7ff fb4d bl 8008964 + 80092ca: b140 cbz r0, 80092de <_svfiprintf_r+0x152> + 80092cc: 2340 movs r3, #64 ; 0x40 + 80092ce: eba0 000a sub.w r0, r0, sl + 80092d2: fa03 f000 lsl.w r0, r3, r0 + 80092d6: 9b04 ldr r3, [sp, #16] + 80092d8: 3401 adds r4, #1 + 80092da: 4303 orrs r3, r0 + 80092dc: 9304 str r3, [sp, #16] + 80092de: f814 1b01 ldrb.w r1, [r4], #1 + 80092e2: 2206 movs r2, #6 + 80092e4: 4825 ldr r0, [pc, #148] ; (800937c <_svfiprintf_r+0x1f0>) + 80092e6: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 80092ea: f7ff fb3b bl 8008964 + 80092ee: 2800 cmp r0, #0 + 80092f0: d038 beq.n 8009364 <_svfiprintf_r+0x1d8> + 80092f2: 4b23 ldr r3, [pc, #140] ; (8009380 <_svfiprintf_r+0x1f4>) + 80092f4: bb1b cbnz r3, 800933e <_svfiprintf_r+0x1b2> + 80092f6: 9b03 ldr r3, [sp, #12] + 80092f8: 3307 adds r3, #7 + 80092fa: f023 0307 bic.w r3, r3, #7 + 80092fe: 3308 adds r3, #8 + 8009300: 9303 str r3, [sp, #12] + 8009302: 9b09 ldr r3, [sp, #36] ; 0x24 + 8009304: 4433 add r3, r6 + 8009306: 9309 str r3, [sp, #36] ; 0x24 + 8009308: e767 b.n 80091da <_svfiprintf_r+0x4e> + 800930a: 460c mov r4, r1 + 800930c: 2001 movs r0, #1 + 800930e: fb0c 3202 mla r2, ip, r2, r3 + 8009312: e7a5 b.n 8009260 <_svfiprintf_r+0xd4> + 8009314: 2300 movs r3, #0 + 8009316: f04f 0c0a mov.w ip, #10 + 800931a: 4619 mov r1, r3 + 800931c: 3401 adds r4, #1 + 800931e: 9305 str r3, [sp, #20] + 8009320: 4620 mov r0, r4 + 8009322: f810 2b01 ldrb.w r2, [r0], #1 + 8009326: 3a30 subs r2, #48 ; 0x30 + 8009328: 2a09 cmp r2, #9 + 800932a: d903 bls.n 8009334 <_svfiprintf_r+0x1a8> + 800932c: 2b00 cmp r3, #0 + 800932e: d0c5 beq.n 80092bc <_svfiprintf_r+0x130> + 8009330: 9105 str r1, [sp, #20] + 8009332: e7c3 b.n 80092bc <_svfiprintf_r+0x130> + 8009334: 4604 mov r4, r0 + 8009336: 2301 movs r3, #1 + 8009338: fb0c 2101 mla r1, ip, r1, r2 + 800933c: e7f0 b.n 8009320 <_svfiprintf_r+0x194> + 800933e: ab03 add r3, sp, #12 + 8009340: 9300 str r3, [sp, #0] + 8009342: 462a mov r2, r5 + 8009344: 4638 mov r0, r7 + 8009346: 4b0f ldr r3, [pc, #60] ; (8009384 <_svfiprintf_r+0x1f8>) + 8009348: a904 add r1, sp, #16 + 800934a: f7fe f899 bl 8007480 <_printf_float> + 800934e: 1c42 adds r2, r0, #1 + 8009350: 4606 mov r6, r0 + 8009352: d1d6 bne.n 8009302 <_svfiprintf_r+0x176> + 8009354: 89ab ldrh r3, [r5, #12] + 8009356: 065b lsls r3, r3, #25 + 8009358: f53f af2c bmi.w 80091b4 <_svfiprintf_r+0x28> + 800935c: 9809 ldr r0, [sp, #36] ; 0x24 + 800935e: b01d add sp, #116 ; 0x74 + 8009360: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8009364: ab03 add r3, sp, #12 + 8009366: 9300 str r3, [sp, #0] + 8009368: 462a mov r2, r5 + 800936a: 4638 mov r0, r7 + 800936c: 4b05 ldr r3, [pc, #20] ; (8009384 <_svfiprintf_r+0x1f8>) + 800936e: a904 add r1, sp, #16 + 8009370: f7fe fb22 bl 80079b8 <_printf_i> + 8009374: e7eb b.n 800934e <_svfiprintf_r+0x1c2> + 8009376: bf00 nop + 8009378: 0800b0fc .word 0x0800b0fc + 800937c: 0800b106 .word 0x0800b106 + 8009380: 08007481 .word 0x08007481 + 8009384: 080090d5 .word 0x080090d5 + 8009388: 0800b102 .word 0x0800b102 -08008c24 <__assert_func>: - 8008c24: b51f push {r0, r1, r2, r3, r4, lr} - 8008c26: 4614 mov r4, r2 - 8008c28: 461a mov r2, r3 - 8008c2a: 4b09 ldr r3, [pc, #36] ; (8008c50 <__assert_func+0x2c>) - 8008c2c: 4605 mov r5, r0 - 8008c2e: 681b ldr r3, [r3, #0] - 8008c30: 68d8 ldr r0, [r3, #12] - 8008c32: b14c cbz r4, 8008c48 <__assert_func+0x24> - 8008c34: 4b07 ldr r3, [pc, #28] ; (8008c54 <__assert_func+0x30>) - 8008c36: e9cd 3401 strd r3, r4, [sp, #4] - 8008c3a: 9100 str r1, [sp, #0] - 8008c3c: 462b mov r3, r5 - 8008c3e: 4906 ldr r1, [pc, #24] ; (8008c58 <__assert_func+0x34>) - 8008c40: f000 f80e bl 8008c60 - 8008c44: f000 fa98 bl 8009178 - 8008c48: 4b04 ldr r3, [pc, #16] ; (8008c5c <__assert_func+0x38>) - 8008c4a: 461c mov r4, r3 - 8008c4c: e7f3 b.n 8008c36 <__assert_func+0x12> - 8008c4e: bf00 nop - 8008c50: 2000000c .word 0x2000000c - 8008c54: 0800a9a5 .word 0x0800a9a5 - 8008c58: 0800a9b2 .word 0x0800a9b2 - 8008c5c: 0800a9e0 .word 0x0800a9e0 - -08008c60 : - 8008c60: b40e push {r1, r2, r3} - 8008c62: b503 push {r0, r1, lr} - 8008c64: 4601 mov r1, r0 - 8008c66: ab03 add r3, sp, #12 - 8008c68: 4805 ldr r0, [pc, #20] ; (8008c80 ) - 8008c6a: f853 2b04 ldr.w r2, [r3], #4 - 8008c6e: 6800 ldr r0, [r0, #0] - 8008c70: 9301 str r3, [sp, #4] - 8008c72: f000 f883 bl 8008d7c <_vfiprintf_r> - 8008c76: b002 add sp, #8 - 8008c78: f85d eb04 ldr.w lr, [sp], #4 - 8008c7c: b003 add sp, #12 - 8008c7e: 4770 bx lr - 8008c80: 2000000c .word 0x2000000c - -08008c84 <__retarget_lock_init_recursive>: - 8008c84: 4770 bx lr - -08008c86 <__retarget_lock_acquire_recursive>: - 8008c86: 4770 bx lr - -08008c88 <__retarget_lock_release_recursive>: - 8008c88: 4770 bx lr - -08008c8a <__ascii_mbtowc>: - 8008c8a: b082 sub sp, #8 - 8008c8c: b901 cbnz r1, 8008c90 <__ascii_mbtowc+0x6> - 8008c8e: a901 add r1, sp, #4 - 8008c90: b142 cbz r2, 8008ca4 <__ascii_mbtowc+0x1a> - 8008c92: b14b cbz r3, 8008ca8 <__ascii_mbtowc+0x1e> - 8008c94: 7813 ldrb r3, [r2, #0] - 8008c96: 600b str r3, [r1, #0] - 8008c98: 7812 ldrb r2, [r2, #0] - 8008c9a: 1e10 subs r0, r2, #0 - 8008c9c: bf18 it ne - 8008c9e: 2001 movne r0, #1 - 8008ca0: b002 add sp, #8 - 8008ca2: 4770 bx lr - 8008ca4: 4610 mov r0, r2 - 8008ca6: e7fb b.n 8008ca0 <__ascii_mbtowc+0x16> - 8008ca8: f06f 0001 mvn.w r0, #1 - 8008cac: e7f8 b.n 8008ca0 <__ascii_mbtowc+0x16> - -08008cae : - 8008cae: 4288 cmp r0, r1 - 8008cb0: b510 push {r4, lr} - 8008cb2: eb01 0402 add.w r4, r1, r2 - 8008cb6: d902 bls.n 8008cbe - 8008cb8: 4284 cmp r4, r0 - 8008cba: 4623 mov r3, r4 - 8008cbc: d807 bhi.n 8008cce - 8008cbe: 1e43 subs r3, r0, #1 - 8008cc0: 42a1 cmp r1, r4 - 8008cc2: d008 beq.n 8008cd6 - 8008cc4: f811 2b01 ldrb.w r2, [r1], #1 - 8008cc8: f803 2f01 strb.w r2, [r3, #1]! - 8008ccc: e7f8 b.n 8008cc0 - 8008cce: 4601 mov r1, r0 - 8008cd0: 4402 add r2, r0 - 8008cd2: 428a cmp r2, r1 - 8008cd4: d100 bne.n 8008cd8 - 8008cd6: bd10 pop {r4, pc} - 8008cd8: f813 4d01 ldrb.w r4, [r3, #-1]! - 8008cdc: f802 4d01 strb.w r4, [r2, #-1]! - 8008ce0: e7f7 b.n 8008cd2 - -08008ce2 <_realloc_r>: - 8008ce2: b5f8 push {r3, r4, r5, r6, r7, lr} - 8008ce4: 4607 mov r7, r0 - 8008ce6: 4614 mov r4, r2 - 8008ce8: 460e mov r6, r1 - 8008cea: b921 cbnz r1, 8008cf6 <_realloc_r+0x14> - 8008cec: 4611 mov r1, r2 - 8008cee: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} - 8008cf2: f7fd bf19 b.w 8006b28 <_malloc_r> - 8008cf6: b922 cbnz r2, 8008d02 <_realloc_r+0x20> - 8008cf8: f7fd feca bl 8006a90 <_free_r> - 8008cfc: 4625 mov r5, r4 - 8008cfe: 4628 mov r0, r5 - 8008d00: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8008d02: f000 fc5d bl 80095c0 <_malloc_usable_size_r> - 8008d06: 42a0 cmp r0, r4 - 8008d08: d20f bcs.n 8008d2a <_realloc_r+0x48> - 8008d0a: 4621 mov r1, r4 - 8008d0c: 4638 mov r0, r7 - 8008d0e: f7fd ff0b bl 8006b28 <_malloc_r> - 8008d12: 4605 mov r5, r0 - 8008d14: 2800 cmp r0, #0 - 8008d16: d0f2 beq.n 8008cfe <_realloc_r+0x1c> - 8008d18: 4631 mov r1, r6 - 8008d1a: 4622 mov r2, r4 - 8008d1c: f7ff fa7c bl 8008218 - 8008d20: 4631 mov r1, r6 - 8008d22: 4638 mov r0, r7 - 8008d24: f7fd feb4 bl 8006a90 <_free_r> - 8008d28: e7e9 b.n 8008cfe <_realloc_r+0x1c> - 8008d2a: 4635 mov r5, r6 - 8008d2c: e7e7 b.n 8008cfe <_realloc_r+0x1c> - -08008d2e <__sfputc_r>: - 8008d2e: 6893 ldr r3, [r2, #8] - 8008d30: b410 push {r4} - 8008d32: 3b01 subs r3, #1 - 8008d34: 2b00 cmp r3, #0 - 8008d36: 6093 str r3, [r2, #8] - 8008d38: da07 bge.n 8008d4a <__sfputc_r+0x1c> - 8008d3a: 6994 ldr r4, [r2, #24] - 8008d3c: 42a3 cmp r3, r4 - 8008d3e: db01 blt.n 8008d44 <__sfputc_r+0x16> - 8008d40: 290a cmp r1, #10 - 8008d42: d102 bne.n 8008d4a <__sfputc_r+0x1c> - 8008d44: bc10 pop {r4} - 8008d46: f000 b949 b.w 8008fdc <__swbuf_r> - 8008d4a: 6813 ldr r3, [r2, #0] - 8008d4c: 1c58 adds r0, r3, #1 - 8008d4e: 6010 str r0, [r2, #0] - 8008d50: 7019 strb r1, [r3, #0] - 8008d52: 4608 mov r0, r1 - 8008d54: bc10 pop {r4} - 8008d56: 4770 bx lr - -08008d58 <__sfputs_r>: - 8008d58: b5f8 push {r3, r4, r5, r6, r7, lr} - 8008d5a: 4606 mov r6, r0 - 8008d5c: 460f mov r7, r1 - 8008d5e: 4614 mov r4, r2 - 8008d60: 18d5 adds r5, r2, r3 - 8008d62: 42ac cmp r4, r5 - 8008d64: d101 bne.n 8008d6a <__sfputs_r+0x12> - 8008d66: 2000 movs r0, #0 - 8008d68: e007 b.n 8008d7a <__sfputs_r+0x22> - 8008d6a: 463a mov r2, r7 - 8008d6c: 4630 mov r0, r6 - 8008d6e: f814 1b01 ldrb.w r1, [r4], #1 - 8008d72: f7ff ffdc bl 8008d2e <__sfputc_r> - 8008d76: 1c43 adds r3, r0, #1 - 8008d78: d1f3 bne.n 8008d62 <__sfputs_r+0xa> - 8008d7a: bdf8 pop {r3, r4, r5, r6, r7, pc} - -08008d7c <_vfiprintf_r>: - 8008d7c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8008d80: 460d mov r5, r1 - 8008d82: 4614 mov r4, r2 - 8008d84: 4698 mov r8, r3 - 8008d86: 4606 mov r6, r0 - 8008d88: b09d sub sp, #116 ; 0x74 - 8008d8a: b118 cbz r0, 8008d94 <_vfiprintf_r+0x18> - 8008d8c: 6983 ldr r3, [r0, #24] - 8008d8e: b90b cbnz r3, 8008d94 <_vfiprintf_r+0x18> - 8008d90: f000 fb14 bl 80093bc <__sinit> - 8008d94: 4b89 ldr r3, [pc, #548] ; (8008fbc <_vfiprintf_r+0x240>) - 8008d96: 429d cmp r5, r3 - 8008d98: d11b bne.n 8008dd2 <_vfiprintf_r+0x56> - 8008d9a: 6875 ldr r5, [r6, #4] - 8008d9c: 6e6b ldr r3, [r5, #100] ; 0x64 - 8008d9e: 07d9 lsls r1, r3, #31 - 8008da0: d405 bmi.n 8008dae <_vfiprintf_r+0x32> - 8008da2: 89ab ldrh r3, [r5, #12] - 8008da4: 059a lsls r2, r3, #22 - 8008da6: d402 bmi.n 8008dae <_vfiprintf_r+0x32> - 8008da8: 6da8 ldr r0, [r5, #88] ; 0x58 - 8008daa: f7ff ff6c bl 8008c86 <__retarget_lock_acquire_recursive> - 8008dae: 89ab ldrh r3, [r5, #12] - 8008db0: 071b lsls r3, r3, #28 - 8008db2: d501 bpl.n 8008db8 <_vfiprintf_r+0x3c> - 8008db4: 692b ldr r3, [r5, #16] - 8008db6: b9eb cbnz r3, 8008df4 <_vfiprintf_r+0x78> - 8008db8: 4629 mov r1, r5 - 8008dba: 4630 mov r0, r6 - 8008dbc: f000 f96e bl 800909c <__swsetup_r> - 8008dc0: b1c0 cbz r0, 8008df4 <_vfiprintf_r+0x78> - 8008dc2: 6e6b ldr r3, [r5, #100] ; 0x64 - 8008dc4: 07dc lsls r4, r3, #31 - 8008dc6: d50e bpl.n 8008de6 <_vfiprintf_r+0x6a> - 8008dc8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8008dcc: b01d add sp, #116 ; 0x74 - 8008dce: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8008dd2: 4b7b ldr r3, [pc, #492] ; (8008fc0 <_vfiprintf_r+0x244>) - 8008dd4: 429d cmp r5, r3 - 8008dd6: d101 bne.n 8008ddc <_vfiprintf_r+0x60> - 8008dd8: 68b5 ldr r5, [r6, #8] - 8008dda: e7df b.n 8008d9c <_vfiprintf_r+0x20> - 8008ddc: 4b79 ldr r3, [pc, #484] ; (8008fc4 <_vfiprintf_r+0x248>) - 8008dde: 429d cmp r5, r3 - 8008de0: bf08 it eq - 8008de2: 68f5 ldreq r5, [r6, #12] - 8008de4: e7da b.n 8008d9c <_vfiprintf_r+0x20> - 8008de6: 89ab ldrh r3, [r5, #12] - 8008de8: 0598 lsls r0, r3, #22 - 8008dea: d4ed bmi.n 8008dc8 <_vfiprintf_r+0x4c> - 8008dec: 6da8 ldr r0, [r5, #88] ; 0x58 - 8008dee: f7ff ff4b bl 8008c88 <__retarget_lock_release_recursive> - 8008df2: e7e9 b.n 8008dc8 <_vfiprintf_r+0x4c> - 8008df4: 2300 movs r3, #0 - 8008df6: 9309 str r3, [sp, #36] ; 0x24 - 8008df8: 2320 movs r3, #32 - 8008dfa: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 8008dfe: 2330 movs r3, #48 ; 0x30 - 8008e00: f04f 0901 mov.w r9, #1 - 8008e04: f8cd 800c str.w r8, [sp, #12] - 8008e08: f8df 81bc ldr.w r8, [pc, #444] ; 8008fc8 <_vfiprintf_r+0x24c> - 8008e0c: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 8008e10: 4623 mov r3, r4 - 8008e12: 469a mov sl, r3 - 8008e14: f813 2b01 ldrb.w r2, [r3], #1 - 8008e18: b10a cbz r2, 8008e1e <_vfiprintf_r+0xa2> - 8008e1a: 2a25 cmp r2, #37 ; 0x25 - 8008e1c: d1f9 bne.n 8008e12 <_vfiprintf_r+0x96> - 8008e1e: ebba 0b04 subs.w fp, sl, r4 - 8008e22: d00b beq.n 8008e3c <_vfiprintf_r+0xc0> - 8008e24: 465b mov r3, fp - 8008e26: 4622 mov r2, r4 - 8008e28: 4629 mov r1, r5 - 8008e2a: 4630 mov r0, r6 - 8008e2c: f7ff ff94 bl 8008d58 <__sfputs_r> - 8008e30: 3001 adds r0, #1 - 8008e32: f000 80aa beq.w 8008f8a <_vfiprintf_r+0x20e> - 8008e36: 9a09 ldr r2, [sp, #36] ; 0x24 - 8008e38: 445a add r2, fp - 8008e3a: 9209 str r2, [sp, #36] ; 0x24 - 8008e3c: f89a 3000 ldrb.w r3, [sl] - 8008e40: 2b00 cmp r3, #0 - 8008e42: f000 80a2 beq.w 8008f8a <_vfiprintf_r+0x20e> - 8008e46: 2300 movs r3, #0 - 8008e48: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8008e4c: e9cd 2305 strd r2, r3, [sp, #20] - 8008e50: f10a 0a01 add.w sl, sl, #1 - 8008e54: 9304 str r3, [sp, #16] - 8008e56: 9307 str r3, [sp, #28] - 8008e58: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 8008e5c: 931a str r3, [sp, #104] ; 0x68 - 8008e5e: 4654 mov r4, sl - 8008e60: 2205 movs r2, #5 - 8008e62: f814 1b01 ldrb.w r1, [r4], #1 - 8008e66: 4858 ldr r0, [pc, #352] ; (8008fc8 <_vfiprintf_r+0x24c>) - 8008e68: f7ff f9c8 bl 80081fc - 8008e6c: 9a04 ldr r2, [sp, #16] - 8008e6e: b9d8 cbnz r0, 8008ea8 <_vfiprintf_r+0x12c> - 8008e70: 06d1 lsls r1, r2, #27 - 8008e72: bf44 itt mi - 8008e74: 2320 movmi r3, #32 - 8008e76: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8008e7a: 0713 lsls r3, r2, #28 - 8008e7c: bf44 itt mi - 8008e7e: 232b movmi r3, #43 ; 0x2b - 8008e80: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8008e84: f89a 3000 ldrb.w r3, [sl] - 8008e88: 2b2a cmp r3, #42 ; 0x2a - 8008e8a: d015 beq.n 8008eb8 <_vfiprintf_r+0x13c> - 8008e8c: 4654 mov r4, sl - 8008e8e: 2000 movs r0, #0 - 8008e90: f04f 0c0a mov.w ip, #10 - 8008e94: 9a07 ldr r2, [sp, #28] - 8008e96: 4621 mov r1, r4 - 8008e98: f811 3b01 ldrb.w r3, [r1], #1 - 8008e9c: 3b30 subs r3, #48 ; 0x30 - 8008e9e: 2b09 cmp r3, #9 - 8008ea0: d94e bls.n 8008f40 <_vfiprintf_r+0x1c4> - 8008ea2: b1b0 cbz r0, 8008ed2 <_vfiprintf_r+0x156> - 8008ea4: 9207 str r2, [sp, #28] - 8008ea6: e014 b.n 8008ed2 <_vfiprintf_r+0x156> - 8008ea8: eba0 0308 sub.w r3, r0, r8 - 8008eac: fa09 f303 lsl.w r3, r9, r3 - 8008eb0: 4313 orrs r3, r2 - 8008eb2: 46a2 mov sl, r4 - 8008eb4: 9304 str r3, [sp, #16] - 8008eb6: e7d2 b.n 8008e5e <_vfiprintf_r+0xe2> - 8008eb8: 9b03 ldr r3, [sp, #12] - 8008eba: 1d19 adds r1, r3, #4 - 8008ebc: 681b ldr r3, [r3, #0] - 8008ebe: 9103 str r1, [sp, #12] - 8008ec0: 2b00 cmp r3, #0 - 8008ec2: bfbb ittet lt - 8008ec4: 425b neglt r3, r3 - 8008ec6: f042 0202 orrlt.w r2, r2, #2 - 8008eca: 9307 strge r3, [sp, #28] - 8008ecc: 9307 strlt r3, [sp, #28] - 8008ece: bfb8 it lt - 8008ed0: 9204 strlt r2, [sp, #16] - 8008ed2: 7823 ldrb r3, [r4, #0] - 8008ed4: 2b2e cmp r3, #46 ; 0x2e - 8008ed6: d10c bne.n 8008ef2 <_vfiprintf_r+0x176> - 8008ed8: 7863 ldrb r3, [r4, #1] - 8008eda: 2b2a cmp r3, #42 ; 0x2a - 8008edc: d135 bne.n 8008f4a <_vfiprintf_r+0x1ce> - 8008ede: 9b03 ldr r3, [sp, #12] - 8008ee0: 3402 adds r4, #2 - 8008ee2: 1d1a adds r2, r3, #4 - 8008ee4: 681b ldr r3, [r3, #0] - 8008ee6: 9203 str r2, [sp, #12] - 8008ee8: 2b00 cmp r3, #0 - 8008eea: bfb8 it lt - 8008eec: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 8008ef0: 9305 str r3, [sp, #20] - 8008ef2: f8df a0e4 ldr.w sl, [pc, #228] ; 8008fd8 <_vfiprintf_r+0x25c> - 8008ef6: 2203 movs r2, #3 - 8008ef8: 4650 mov r0, sl - 8008efa: 7821 ldrb r1, [r4, #0] - 8008efc: f7ff f97e bl 80081fc - 8008f00: b140 cbz r0, 8008f14 <_vfiprintf_r+0x198> - 8008f02: 2340 movs r3, #64 ; 0x40 - 8008f04: eba0 000a sub.w r0, r0, sl - 8008f08: fa03 f000 lsl.w r0, r3, r0 - 8008f0c: 9b04 ldr r3, [sp, #16] - 8008f0e: 3401 adds r4, #1 - 8008f10: 4303 orrs r3, r0 - 8008f12: 9304 str r3, [sp, #16] - 8008f14: f814 1b01 ldrb.w r1, [r4], #1 - 8008f18: 2206 movs r2, #6 - 8008f1a: 482c ldr r0, [pc, #176] ; (8008fcc <_vfiprintf_r+0x250>) - 8008f1c: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 8008f20: f7ff f96c bl 80081fc - 8008f24: 2800 cmp r0, #0 - 8008f26: d03f beq.n 8008fa8 <_vfiprintf_r+0x22c> - 8008f28: 4b29 ldr r3, [pc, #164] ; (8008fd0 <_vfiprintf_r+0x254>) - 8008f2a: bb1b cbnz r3, 8008f74 <_vfiprintf_r+0x1f8> - 8008f2c: 9b03 ldr r3, [sp, #12] - 8008f2e: 3307 adds r3, #7 - 8008f30: f023 0307 bic.w r3, r3, #7 - 8008f34: 3308 adds r3, #8 - 8008f36: 9303 str r3, [sp, #12] - 8008f38: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008f3a: 443b add r3, r7 - 8008f3c: 9309 str r3, [sp, #36] ; 0x24 - 8008f3e: e767 b.n 8008e10 <_vfiprintf_r+0x94> - 8008f40: 460c mov r4, r1 - 8008f42: 2001 movs r0, #1 - 8008f44: fb0c 3202 mla r2, ip, r2, r3 - 8008f48: e7a5 b.n 8008e96 <_vfiprintf_r+0x11a> - 8008f4a: 2300 movs r3, #0 - 8008f4c: f04f 0c0a mov.w ip, #10 - 8008f50: 4619 mov r1, r3 - 8008f52: 3401 adds r4, #1 - 8008f54: 9305 str r3, [sp, #20] - 8008f56: 4620 mov r0, r4 - 8008f58: f810 2b01 ldrb.w r2, [r0], #1 - 8008f5c: 3a30 subs r2, #48 ; 0x30 - 8008f5e: 2a09 cmp r2, #9 - 8008f60: d903 bls.n 8008f6a <_vfiprintf_r+0x1ee> - 8008f62: 2b00 cmp r3, #0 - 8008f64: d0c5 beq.n 8008ef2 <_vfiprintf_r+0x176> - 8008f66: 9105 str r1, [sp, #20] - 8008f68: e7c3 b.n 8008ef2 <_vfiprintf_r+0x176> - 8008f6a: 4604 mov r4, r0 - 8008f6c: 2301 movs r3, #1 - 8008f6e: fb0c 2101 mla r1, ip, r1, r2 - 8008f72: e7f0 b.n 8008f56 <_vfiprintf_r+0x1da> - 8008f74: ab03 add r3, sp, #12 - 8008f76: 9300 str r3, [sp, #0] - 8008f78: 462a mov r2, r5 - 8008f7a: 4630 mov r0, r6 - 8008f7c: 4b15 ldr r3, [pc, #84] ; (8008fd4 <_vfiprintf_r+0x258>) - 8008f7e: a904 add r1, sp, #16 - 8008f80: f7fd feca bl 8006d18 <_printf_float> - 8008f84: 4607 mov r7, r0 - 8008f86: 1c78 adds r0, r7, #1 - 8008f88: d1d6 bne.n 8008f38 <_vfiprintf_r+0x1bc> - 8008f8a: 6e6b ldr r3, [r5, #100] ; 0x64 - 8008f8c: 07d9 lsls r1, r3, #31 - 8008f8e: d405 bmi.n 8008f9c <_vfiprintf_r+0x220> - 8008f90: 89ab ldrh r3, [r5, #12] - 8008f92: 059a lsls r2, r3, #22 - 8008f94: d402 bmi.n 8008f9c <_vfiprintf_r+0x220> - 8008f96: 6da8 ldr r0, [r5, #88] ; 0x58 - 8008f98: f7ff fe76 bl 8008c88 <__retarget_lock_release_recursive> - 8008f9c: 89ab ldrh r3, [r5, #12] - 8008f9e: 065b lsls r3, r3, #25 - 8008fa0: f53f af12 bmi.w 8008dc8 <_vfiprintf_r+0x4c> - 8008fa4: 9809 ldr r0, [sp, #36] ; 0x24 - 8008fa6: e711 b.n 8008dcc <_vfiprintf_r+0x50> - 8008fa8: ab03 add r3, sp, #12 - 8008faa: 9300 str r3, [sp, #0] - 8008fac: 462a mov r2, r5 - 8008fae: 4630 mov r0, r6 - 8008fb0: 4b08 ldr r3, [pc, #32] ; (8008fd4 <_vfiprintf_r+0x258>) - 8008fb2: a904 add r1, sp, #16 - 8008fb4: f7fe f94c bl 8007250 <_printf_i> - 8008fb8: e7e4 b.n 8008f84 <_vfiprintf_r+0x208> - 8008fba: bf00 nop - 8008fbc: 0800ab0c .word 0x0800ab0c - 8008fc0: 0800ab2c .word 0x0800ab2c - 8008fc4: 0800aaec .word 0x0800aaec - 8008fc8: 0800a994 .word 0x0800a994 - 8008fcc: 0800a99e .word 0x0800a99e - 8008fd0: 08006d19 .word 0x08006d19 - 8008fd4: 08008d59 .word 0x08008d59 - 8008fd8: 0800a99a .word 0x0800a99a - -08008fdc <__swbuf_r>: - 8008fdc: b5f8 push {r3, r4, r5, r6, r7, lr} - 8008fde: 460e mov r6, r1 - 8008fe0: 4614 mov r4, r2 - 8008fe2: 4605 mov r5, r0 - 8008fe4: b118 cbz r0, 8008fee <__swbuf_r+0x12> - 8008fe6: 6983 ldr r3, [r0, #24] - 8008fe8: b90b cbnz r3, 8008fee <__swbuf_r+0x12> - 8008fea: f000 f9e7 bl 80093bc <__sinit> - 8008fee: 4b21 ldr r3, [pc, #132] ; (8009074 <__swbuf_r+0x98>) - 8008ff0: 429c cmp r4, r3 - 8008ff2: d12b bne.n 800904c <__swbuf_r+0x70> - 8008ff4: 686c ldr r4, [r5, #4] - 8008ff6: 69a3 ldr r3, [r4, #24] - 8008ff8: 60a3 str r3, [r4, #8] - 8008ffa: 89a3 ldrh r3, [r4, #12] - 8008ffc: 071a lsls r2, r3, #28 - 8008ffe: d52f bpl.n 8009060 <__swbuf_r+0x84> - 8009000: 6923 ldr r3, [r4, #16] - 8009002: b36b cbz r3, 8009060 <__swbuf_r+0x84> - 8009004: 6923 ldr r3, [r4, #16] - 8009006: 6820 ldr r0, [r4, #0] - 8009008: b2f6 uxtb r6, r6 - 800900a: 1ac0 subs r0, r0, r3 - 800900c: 6963 ldr r3, [r4, #20] - 800900e: 4637 mov r7, r6 - 8009010: 4283 cmp r3, r0 - 8009012: dc04 bgt.n 800901e <__swbuf_r+0x42> - 8009014: 4621 mov r1, r4 - 8009016: 4628 mov r0, r5 - 8009018: f000 f93c bl 8009294 <_fflush_r> - 800901c: bb30 cbnz r0, 800906c <__swbuf_r+0x90> - 800901e: 68a3 ldr r3, [r4, #8] - 8009020: 3001 adds r0, #1 - 8009022: 3b01 subs r3, #1 - 8009024: 60a3 str r3, [r4, #8] - 8009026: 6823 ldr r3, [r4, #0] - 8009028: 1c5a adds r2, r3, #1 - 800902a: 6022 str r2, [r4, #0] - 800902c: 701e strb r6, [r3, #0] - 800902e: 6963 ldr r3, [r4, #20] - 8009030: 4283 cmp r3, r0 - 8009032: d004 beq.n 800903e <__swbuf_r+0x62> - 8009034: 89a3 ldrh r3, [r4, #12] - 8009036: 07db lsls r3, r3, #31 - 8009038: d506 bpl.n 8009048 <__swbuf_r+0x6c> - 800903a: 2e0a cmp r6, #10 - 800903c: d104 bne.n 8009048 <__swbuf_r+0x6c> - 800903e: 4621 mov r1, r4 - 8009040: 4628 mov r0, r5 - 8009042: f000 f927 bl 8009294 <_fflush_r> - 8009046: b988 cbnz r0, 800906c <__swbuf_r+0x90> - 8009048: 4638 mov r0, r7 - 800904a: bdf8 pop {r3, r4, r5, r6, r7, pc} - 800904c: 4b0a ldr r3, [pc, #40] ; (8009078 <__swbuf_r+0x9c>) - 800904e: 429c cmp r4, r3 - 8009050: d101 bne.n 8009056 <__swbuf_r+0x7a> - 8009052: 68ac ldr r4, [r5, #8] - 8009054: e7cf b.n 8008ff6 <__swbuf_r+0x1a> - 8009056: 4b09 ldr r3, [pc, #36] ; (800907c <__swbuf_r+0xa0>) - 8009058: 429c cmp r4, r3 - 800905a: bf08 it eq - 800905c: 68ec ldreq r4, [r5, #12] - 800905e: e7ca b.n 8008ff6 <__swbuf_r+0x1a> - 8009060: 4621 mov r1, r4 - 8009062: 4628 mov r0, r5 - 8009064: f000 f81a bl 800909c <__swsetup_r> - 8009068: 2800 cmp r0, #0 - 800906a: d0cb beq.n 8009004 <__swbuf_r+0x28> - 800906c: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff - 8009070: e7ea b.n 8009048 <__swbuf_r+0x6c> - 8009072: bf00 nop - 8009074: 0800ab0c .word 0x0800ab0c - 8009078: 0800ab2c .word 0x0800ab2c - 800907c: 0800aaec .word 0x0800aaec - -08009080 <__ascii_wctomb>: - 8009080: 4603 mov r3, r0 - 8009082: 4608 mov r0, r1 - 8009084: b141 cbz r1, 8009098 <__ascii_wctomb+0x18> - 8009086: 2aff cmp r2, #255 ; 0xff - 8009088: d904 bls.n 8009094 <__ascii_wctomb+0x14> - 800908a: 228a movs r2, #138 ; 0x8a - 800908c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8009090: 601a str r2, [r3, #0] - 8009092: 4770 bx lr - 8009094: 2001 movs r0, #1 - 8009096: 700a strb r2, [r1, #0] - 8009098: 4770 bx lr - ... - -0800909c <__swsetup_r>: - 800909c: 4b32 ldr r3, [pc, #200] ; (8009168 <__swsetup_r+0xcc>) - 800909e: b570 push {r4, r5, r6, lr} - 80090a0: 681d ldr r5, [r3, #0] - 80090a2: 4606 mov r6, r0 - 80090a4: 460c mov r4, r1 - 80090a6: b125 cbz r5, 80090b2 <__swsetup_r+0x16> - 80090a8: 69ab ldr r3, [r5, #24] - 80090aa: b913 cbnz r3, 80090b2 <__swsetup_r+0x16> - 80090ac: 4628 mov r0, r5 - 80090ae: f000 f985 bl 80093bc <__sinit> - 80090b2: 4b2e ldr r3, [pc, #184] ; (800916c <__swsetup_r+0xd0>) - 80090b4: 429c cmp r4, r3 - 80090b6: d10f bne.n 80090d8 <__swsetup_r+0x3c> - 80090b8: 686c ldr r4, [r5, #4] - 80090ba: 89a3 ldrh r3, [r4, #12] - 80090bc: f9b4 200c ldrsh.w r2, [r4, #12] - 80090c0: 0719 lsls r1, r3, #28 - 80090c2: d42c bmi.n 800911e <__swsetup_r+0x82> - 80090c4: 06dd lsls r5, r3, #27 - 80090c6: d411 bmi.n 80090ec <__swsetup_r+0x50> - 80090c8: 2309 movs r3, #9 - 80090ca: 6033 str r3, [r6, #0] - 80090cc: f042 0340 orr.w r3, r2, #64 ; 0x40 - 80090d0: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80090d4: 81a3 strh r3, [r4, #12] - 80090d6: e03e b.n 8009156 <__swsetup_r+0xba> - 80090d8: 4b25 ldr r3, [pc, #148] ; (8009170 <__swsetup_r+0xd4>) - 80090da: 429c cmp r4, r3 - 80090dc: d101 bne.n 80090e2 <__swsetup_r+0x46> - 80090de: 68ac ldr r4, [r5, #8] - 80090e0: e7eb b.n 80090ba <__swsetup_r+0x1e> - 80090e2: 4b24 ldr r3, [pc, #144] ; (8009174 <__swsetup_r+0xd8>) - 80090e4: 429c cmp r4, r3 - 80090e6: bf08 it eq - 80090e8: 68ec ldreq r4, [r5, #12] - 80090ea: e7e6 b.n 80090ba <__swsetup_r+0x1e> - 80090ec: 0758 lsls r0, r3, #29 - 80090ee: d512 bpl.n 8009116 <__swsetup_r+0x7a> - 80090f0: 6b61 ldr r1, [r4, #52] ; 0x34 - 80090f2: b141 cbz r1, 8009106 <__swsetup_r+0x6a> - 80090f4: f104 0344 add.w r3, r4, #68 ; 0x44 - 80090f8: 4299 cmp r1, r3 - 80090fa: d002 beq.n 8009102 <__swsetup_r+0x66> - 80090fc: 4630 mov r0, r6 - 80090fe: f7fd fcc7 bl 8006a90 <_free_r> - 8009102: 2300 movs r3, #0 - 8009104: 6363 str r3, [r4, #52] ; 0x34 - 8009106: 89a3 ldrh r3, [r4, #12] - 8009108: f023 0324 bic.w r3, r3, #36 ; 0x24 - 800910c: 81a3 strh r3, [r4, #12] - 800910e: 2300 movs r3, #0 - 8009110: 6063 str r3, [r4, #4] - 8009112: 6923 ldr r3, [r4, #16] - 8009114: 6023 str r3, [r4, #0] - 8009116: 89a3 ldrh r3, [r4, #12] - 8009118: f043 0308 orr.w r3, r3, #8 - 800911c: 81a3 strh r3, [r4, #12] - 800911e: 6923 ldr r3, [r4, #16] - 8009120: b94b cbnz r3, 8009136 <__swsetup_r+0x9a> - 8009122: 89a3 ldrh r3, [r4, #12] - 8009124: f403 7320 and.w r3, r3, #640 ; 0x280 - 8009128: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 800912c: d003 beq.n 8009136 <__swsetup_r+0x9a> - 800912e: 4621 mov r1, r4 - 8009130: 4630 mov r0, r6 - 8009132: f000 fa05 bl 8009540 <__smakebuf_r> - 8009136: 89a0 ldrh r0, [r4, #12] - 8009138: f9b4 200c ldrsh.w r2, [r4, #12] - 800913c: f010 0301 ands.w r3, r0, #1 - 8009140: d00a beq.n 8009158 <__swsetup_r+0xbc> - 8009142: 2300 movs r3, #0 - 8009144: 60a3 str r3, [r4, #8] - 8009146: 6963 ldr r3, [r4, #20] - 8009148: 425b negs r3, r3 - 800914a: 61a3 str r3, [r4, #24] - 800914c: 6923 ldr r3, [r4, #16] - 800914e: b943 cbnz r3, 8009162 <__swsetup_r+0xc6> - 8009150: f010 0080 ands.w r0, r0, #128 ; 0x80 - 8009154: d1ba bne.n 80090cc <__swsetup_r+0x30> - 8009156: bd70 pop {r4, r5, r6, pc} - 8009158: 0781 lsls r1, r0, #30 - 800915a: bf58 it pl - 800915c: 6963 ldrpl r3, [r4, #20] - 800915e: 60a3 str r3, [r4, #8] - 8009160: e7f4 b.n 800914c <__swsetup_r+0xb0> - 8009162: 2000 movs r0, #0 - 8009164: e7f7 b.n 8009156 <__swsetup_r+0xba> - 8009166: bf00 nop - 8009168: 2000000c .word 0x2000000c - 800916c: 0800ab0c .word 0x0800ab0c - 8009170: 0800ab2c .word 0x0800ab2c - 8009174: 0800aaec .word 0x0800aaec - -08009178 : - 8009178: 2006 movs r0, #6 - 800917a: b508 push {r3, lr} - 800917c: f000 fa50 bl 8009620 - 8009180: 2001 movs r0, #1 - 8009182: f7f8 fb09 bl 8001798 <_exit> - ... - -08009188 <__sflush_r>: - 8009188: 898a ldrh r2, [r1, #12] - 800918a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 800918e: 4605 mov r5, r0 - 8009190: 0710 lsls r0, r2, #28 - 8009192: 460c mov r4, r1 - 8009194: d458 bmi.n 8009248 <__sflush_r+0xc0> - 8009196: 684b ldr r3, [r1, #4] - 8009198: 2b00 cmp r3, #0 - 800919a: dc05 bgt.n 80091a8 <__sflush_r+0x20> - 800919c: 6c0b ldr r3, [r1, #64] ; 0x40 - 800919e: 2b00 cmp r3, #0 - 80091a0: dc02 bgt.n 80091a8 <__sflush_r+0x20> - 80091a2: 2000 movs r0, #0 - 80091a4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 80091a8: 6ae6 ldr r6, [r4, #44] ; 0x2c - 80091aa: 2e00 cmp r6, #0 - 80091ac: d0f9 beq.n 80091a2 <__sflush_r+0x1a> - 80091ae: 2300 movs r3, #0 - 80091b0: f412 5280 ands.w r2, r2, #4096 ; 0x1000 - 80091b4: 682f ldr r7, [r5, #0] - 80091b6: 602b str r3, [r5, #0] - 80091b8: d032 beq.n 8009220 <__sflush_r+0x98> - 80091ba: 6d60 ldr r0, [r4, #84] ; 0x54 - 80091bc: 89a3 ldrh r3, [r4, #12] - 80091be: 075a lsls r2, r3, #29 - 80091c0: d505 bpl.n 80091ce <__sflush_r+0x46> - 80091c2: 6863 ldr r3, [r4, #4] - 80091c4: 1ac0 subs r0, r0, r3 - 80091c6: 6b63 ldr r3, [r4, #52] ; 0x34 - 80091c8: b10b cbz r3, 80091ce <__sflush_r+0x46> - 80091ca: 6c23 ldr r3, [r4, #64] ; 0x40 - 80091cc: 1ac0 subs r0, r0, r3 - 80091ce: 2300 movs r3, #0 - 80091d0: 4602 mov r2, r0 - 80091d2: 6ae6 ldr r6, [r4, #44] ; 0x2c - 80091d4: 4628 mov r0, r5 - 80091d6: 6a21 ldr r1, [r4, #32] - 80091d8: 47b0 blx r6 - 80091da: 1c43 adds r3, r0, #1 - 80091dc: 89a3 ldrh r3, [r4, #12] - 80091de: d106 bne.n 80091ee <__sflush_r+0x66> - 80091e0: 6829 ldr r1, [r5, #0] - 80091e2: 291d cmp r1, #29 - 80091e4: d82c bhi.n 8009240 <__sflush_r+0xb8> - 80091e6: 4a2a ldr r2, [pc, #168] ; (8009290 <__sflush_r+0x108>) - 80091e8: 40ca lsrs r2, r1 - 80091ea: 07d6 lsls r6, r2, #31 - 80091ec: d528 bpl.n 8009240 <__sflush_r+0xb8> - 80091ee: 2200 movs r2, #0 - 80091f0: 6062 str r2, [r4, #4] - 80091f2: 6922 ldr r2, [r4, #16] - 80091f4: 04d9 lsls r1, r3, #19 - 80091f6: 6022 str r2, [r4, #0] - 80091f8: d504 bpl.n 8009204 <__sflush_r+0x7c> - 80091fa: 1c42 adds r2, r0, #1 - 80091fc: d101 bne.n 8009202 <__sflush_r+0x7a> - 80091fe: 682b ldr r3, [r5, #0] - 8009200: b903 cbnz r3, 8009204 <__sflush_r+0x7c> - 8009202: 6560 str r0, [r4, #84] ; 0x54 - 8009204: 6b61 ldr r1, [r4, #52] ; 0x34 - 8009206: 602f str r7, [r5, #0] - 8009208: 2900 cmp r1, #0 - 800920a: d0ca beq.n 80091a2 <__sflush_r+0x1a> - 800920c: f104 0344 add.w r3, r4, #68 ; 0x44 - 8009210: 4299 cmp r1, r3 - 8009212: d002 beq.n 800921a <__sflush_r+0x92> - 8009214: 4628 mov r0, r5 - 8009216: f7fd fc3b bl 8006a90 <_free_r> - 800921a: 2000 movs r0, #0 - 800921c: 6360 str r0, [r4, #52] ; 0x34 - 800921e: e7c1 b.n 80091a4 <__sflush_r+0x1c> - 8009220: 6a21 ldr r1, [r4, #32] - 8009222: 2301 movs r3, #1 - 8009224: 4628 mov r0, r5 - 8009226: 47b0 blx r6 - 8009228: 1c41 adds r1, r0, #1 - 800922a: d1c7 bne.n 80091bc <__sflush_r+0x34> - 800922c: 682b ldr r3, [r5, #0] - 800922e: 2b00 cmp r3, #0 - 8009230: d0c4 beq.n 80091bc <__sflush_r+0x34> - 8009232: 2b1d cmp r3, #29 - 8009234: d001 beq.n 800923a <__sflush_r+0xb2> - 8009236: 2b16 cmp r3, #22 - 8009238: d101 bne.n 800923e <__sflush_r+0xb6> - 800923a: 602f str r7, [r5, #0] - 800923c: e7b1 b.n 80091a2 <__sflush_r+0x1a> - 800923e: 89a3 ldrh r3, [r4, #12] - 8009240: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8009244: 81a3 strh r3, [r4, #12] - 8009246: e7ad b.n 80091a4 <__sflush_r+0x1c> - 8009248: 690f ldr r7, [r1, #16] - 800924a: 2f00 cmp r7, #0 - 800924c: d0a9 beq.n 80091a2 <__sflush_r+0x1a> - 800924e: 0793 lsls r3, r2, #30 - 8009250: bf18 it ne - 8009252: 2300 movne r3, #0 - 8009254: 680e ldr r6, [r1, #0] - 8009256: bf08 it eq - 8009258: 694b ldreq r3, [r1, #20] - 800925a: eba6 0807 sub.w r8, r6, r7 - 800925e: 600f str r7, [r1, #0] - 8009260: 608b str r3, [r1, #8] - 8009262: f1b8 0f00 cmp.w r8, #0 - 8009266: dd9c ble.n 80091a2 <__sflush_r+0x1a> - 8009268: 4643 mov r3, r8 - 800926a: 463a mov r2, r7 - 800926c: 4628 mov r0, r5 - 800926e: 6a21 ldr r1, [r4, #32] - 8009270: 6aa6 ldr r6, [r4, #40] ; 0x28 - 8009272: 47b0 blx r6 - 8009274: 2800 cmp r0, #0 - 8009276: dc06 bgt.n 8009286 <__sflush_r+0xfe> - 8009278: 89a3 ldrh r3, [r4, #12] - 800927a: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 800927e: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8009282: 81a3 strh r3, [r4, #12] - 8009284: e78e b.n 80091a4 <__sflush_r+0x1c> - 8009286: 4407 add r7, r0 - 8009288: eba8 0800 sub.w r8, r8, r0 - 800928c: e7e9 b.n 8009262 <__sflush_r+0xda> - 800928e: bf00 nop - 8009290: 20400001 .word 0x20400001 - -08009294 <_fflush_r>: - 8009294: b538 push {r3, r4, r5, lr} - 8009296: 690b ldr r3, [r1, #16] - 8009298: 4605 mov r5, r0 - 800929a: 460c mov r4, r1 - 800929c: b913 cbnz r3, 80092a4 <_fflush_r+0x10> - 800929e: 2500 movs r5, #0 - 80092a0: 4628 mov r0, r5 - 80092a2: bd38 pop {r3, r4, r5, pc} - 80092a4: b118 cbz r0, 80092ae <_fflush_r+0x1a> - 80092a6: 6983 ldr r3, [r0, #24] - 80092a8: b90b cbnz r3, 80092ae <_fflush_r+0x1a> - 80092aa: f000 f887 bl 80093bc <__sinit> - 80092ae: 4b14 ldr r3, [pc, #80] ; (8009300 <_fflush_r+0x6c>) - 80092b0: 429c cmp r4, r3 - 80092b2: d11b bne.n 80092ec <_fflush_r+0x58> - 80092b4: 686c ldr r4, [r5, #4] - 80092b6: f9b4 300c ldrsh.w r3, [r4, #12] - 80092ba: 2b00 cmp r3, #0 - 80092bc: d0ef beq.n 800929e <_fflush_r+0xa> - 80092be: 6e62 ldr r2, [r4, #100] ; 0x64 - 80092c0: 07d0 lsls r0, r2, #31 - 80092c2: d404 bmi.n 80092ce <_fflush_r+0x3a> - 80092c4: 0599 lsls r1, r3, #22 - 80092c6: d402 bmi.n 80092ce <_fflush_r+0x3a> - 80092c8: 6da0 ldr r0, [r4, #88] ; 0x58 - 80092ca: f7ff fcdc bl 8008c86 <__retarget_lock_acquire_recursive> - 80092ce: 4628 mov r0, r5 - 80092d0: 4621 mov r1, r4 - 80092d2: f7ff ff59 bl 8009188 <__sflush_r> - 80092d6: 6e63 ldr r3, [r4, #100] ; 0x64 - 80092d8: 4605 mov r5, r0 - 80092da: 07da lsls r2, r3, #31 - 80092dc: d4e0 bmi.n 80092a0 <_fflush_r+0xc> - 80092de: 89a3 ldrh r3, [r4, #12] - 80092e0: 059b lsls r3, r3, #22 - 80092e2: d4dd bmi.n 80092a0 <_fflush_r+0xc> - 80092e4: 6da0 ldr r0, [r4, #88] ; 0x58 - 80092e6: f7ff fccf bl 8008c88 <__retarget_lock_release_recursive> - 80092ea: e7d9 b.n 80092a0 <_fflush_r+0xc> - 80092ec: 4b05 ldr r3, [pc, #20] ; (8009304 <_fflush_r+0x70>) - 80092ee: 429c cmp r4, r3 - 80092f0: d101 bne.n 80092f6 <_fflush_r+0x62> - 80092f2: 68ac ldr r4, [r5, #8] - 80092f4: e7df b.n 80092b6 <_fflush_r+0x22> - 80092f6: 4b04 ldr r3, [pc, #16] ; (8009308 <_fflush_r+0x74>) - 80092f8: 429c cmp r4, r3 - 80092fa: bf08 it eq - 80092fc: 68ec ldreq r4, [r5, #12] - 80092fe: e7da b.n 80092b6 <_fflush_r+0x22> - 8009300: 0800ab0c .word 0x0800ab0c - 8009304: 0800ab2c .word 0x0800ab2c - 8009308: 0800aaec .word 0x0800aaec - -0800930c : - 800930c: 2300 movs r3, #0 - 800930e: b510 push {r4, lr} - 8009310: 4604 mov r4, r0 - 8009312: e9c0 3300 strd r3, r3, [r0] - 8009316: e9c0 3304 strd r3, r3, [r0, #16] - 800931a: 6083 str r3, [r0, #8] - 800931c: 8181 strh r1, [r0, #12] - 800931e: 6643 str r3, [r0, #100] ; 0x64 - 8009320: 81c2 strh r2, [r0, #14] - 8009322: 6183 str r3, [r0, #24] - 8009324: 4619 mov r1, r3 - 8009326: 2208 movs r2, #8 - 8009328: 305c adds r0, #92 ; 0x5c - 800932a: f7fd fba9 bl 8006a80 - 800932e: 4b05 ldr r3, [pc, #20] ; (8009344 ) - 8009330: 6224 str r4, [r4, #32] - 8009332: 6263 str r3, [r4, #36] ; 0x24 - 8009334: 4b04 ldr r3, [pc, #16] ; (8009348 ) - 8009336: 62a3 str r3, [r4, #40] ; 0x28 - 8009338: 4b04 ldr r3, [pc, #16] ; (800934c ) - 800933a: 62e3 str r3, [r4, #44] ; 0x2c - 800933c: 4b04 ldr r3, [pc, #16] ; (8009350 ) - 800933e: 6323 str r3, [r4, #48] ; 0x30 - 8009340: bd10 pop {r4, pc} - 8009342: bf00 nop - 8009344: 08009659 .word 0x08009659 - 8009348: 0800967b .word 0x0800967b - 800934c: 080096b3 .word 0x080096b3 - 8009350: 080096d7 .word 0x080096d7 - -08009354 <_cleanup_r>: - 8009354: 4901 ldr r1, [pc, #4] ; (800935c <_cleanup_r+0x8>) - 8009356: f000 b8af b.w 80094b8 <_fwalk_reent> - 800935a: bf00 nop - 800935c: 08009295 .word 0x08009295 - -08009360 <__sfmoreglue>: - 8009360: b570 push {r4, r5, r6, lr} - 8009362: 2568 movs r5, #104 ; 0x68 - 8009364: 1e4a subs r2, r1, #1 - 8009366: 4355 muls r5, r2 - 8009368: 460e mov r6, r1 - 800936a: f105 0174 add.w r1, r5, #116 ; 0x74 - 800936e: f7fd fbdb bl 8006b28 <_malloc_r> - 8009372: 4604 mov r4, r0 - 8009374: b140 cbz r0, 8009388 <__sfmoreglue+0x28> - 8009376: 2100 movs r1, #0 - 8009378: e9c0 1600 strd r1, r6, [r0] - 800937c: 300c adds r0, #12 - 800937e: 60a0 str r0, [r4, #8] - 8009380: f105 0268 add.w r2, r5, #104 ; 0x68 - 8009384: f7fd fb7c bl 8006a80 - 8009388: 4620 mov r0, r4 - 800938a: bd70 pop {r4, r5, r6, pc} - -0800938c <__sfp_lock_acquire>: - 800938c: 4801 ldr r0, [pc, #4] ; (8009394 <__sfp_lock_acquire+0x8>) - 800938e: f7ff bc7a b.w 8008c86 <__retarget_lock_acquire_recursive> - 8009392: bf00 nop - 8009394: 20002460 .word 0x20002460 - -08009398 <__sfp_lock_release>: - 8009398: 4801 ldr r0, [pc, #4] ; (80093a0 <__sfp_lock_release+0x8>) - 800939a: f7ff bc75 b.w 8008c88 <__retarget_lock_release_recursive> - 800939e: bf00 nop - 80093a0: 20002460 .word 0x20002460 - -080093a4 <__sinit_lock_acquire>: - 80093a4: 4801 ldr r0, [pc, #4] ; (80093ac <__sinit_lock_acquire+0x8>) - 80093a6: f7ff bc6e b.w 8008c86 <__retarget_lock_acquire_recursive> - 80093aa: bf00 nop - 80093ac: 2000245b .word 0x2000245b - -080093b0 <__sinit_lock_release>: - 80093b0: 4801 ldr r0, [pc, #4] ; (80093b8 <__sinit_lock_release+0x8>) - 80093b2: f7ff bc69 b.w 8008c88 <__retarget_lock_release_recursive> +0800938c <__assert_func>: + 800938c: b51f push {r0, r1, r2, r3, r4, lr} + 800938e: 4614 mov r4, r2 + 8009390: 461a mov r2, r3 + 8009392: 4b09 ldr r3, [pc, #36] ; (80093b8 <__assert_func+0x2c>) + 8009394: 4605 mov r5, r0 + 8009396: 681b ldr r3, [r3, #0] + 8009398: 68d8 ldr r0, [r3, #12] + 800939a: b14c cbz r4, 80093b0 <__assert_func+0x24> + 800939c: 4b07 ldr r3, [pc, #28] ; (80093bc <__assert_func+0x30>) + 800939e: e9cd 3401 strd r3, r4, [sp, #4] + 80093a2: 9100 str r1, [sp, #0] + 80093a4: 462b mov r3, r5 + 80093a6: 4906 ldr r1, [pc, #24] ; (80093c0 <__assert_func+0x34>) + 80093a8: f000 f80e bl 80093c8 + 80093ac: f000 fa98 bl 80098e0 + 80093b0: 4b04 ldr r3, [pc, #16] ; (80093c4 <__assert_func+0x38>) + 80093b2: 461c mov r4, r3 + 80093b4: e7f3 b.n 800939e <__assert_func+0x12> 80093b6: bf00 nop - 80093b8: 2000245b .word 0x2000245b + 80093b8: 2000000c .word 0x2000000c + 80093bc: 0800b10d .word 0x0800b10d + 80093c0: 0800b11a .word 0x0800b11a + 80093c4: 0800b148 .word 0x0800b148 -080093bc <__sinit>: - 80093bc: b510 push {r4, lr} - 80093be: 4604 mov r4, r0 - 80093c0: f7ff fff0 bl 80093a4 <__sinit_lock_acquire> - 80093c4: 69a3 ldr r3, [r4, #24] - 80093c6: b11b cbz r3, 80093d0 <__sinit+0x14> - 80093c8: e8bd 4010 ldmia.w sp!, {r4, lr} - 80093cc: f7ff bff0 b.w 80093b0 <__sinit_lock_release> - 80093d0: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 - 80093d4: 6523 str r3, [r4, #80] ; 0x50 - 80093d6: 4b13 ldr r3, [pc, #76] ; (8009424 <__sinit+0x68>) - 80093d8: 4a13 ldr r2, [pc, #76] ; (8009428 <__sinit+0x6c>) - 80093da: 681b ldr r3, [r3, #0] - 80093dc: 62a2 str r2, [r4, #40] ; 0x28 - 80093de: 42a3 cmp r3, r4 - 80093e0: bf08 it eq - 80093e2: 2301 moveq r3, #1 - 80093e4: 4620 mov r0, r4 - 80093e6: bf08 it eq - 80093e8: 61a3 streq r3, [r4, #24] - 80093ea: f000 f81f bl 800942c <__sfp> - 80093ee: 6060 str r0, [r4, #4] - 80093f0: 4620 mov r0, r4 - 80093f2: f000 f81b bl 800942c <__sfp> - 80093f6: 60a0 str r0, [r4, #8] - 80093f8: 4620 mov r0, r4 - 80093fa: f000 f817 bl 800942c <__sfp> - 80093fe: 2200 movs r2, #0 - 8009400: 2104 movs r1, #4 - 8009402: 60e0 str r0, [r4, #12] - 8009404: 6860 ldr r0, [r4, #4] - 8009406: f7ff ff81 bl 800930c - 800940a: 2201 movs r2, #1 - 800940c: 2109 movs r1, #9 - 800940e: 68a0 ldr r0, [r4, #8] - 8009410: f7ff ff7c bl 800930c - 8009414: 2202 movs r2, #2 - 8009416: 2112 movs r1, #18 - 8009418: 68e0 ldr r0, [r4, #12] - 800941a: f7ff ff77 bl 800930c - 800941e: 2301 movs r3, #1 - 8009420: 61a3 str r3, [r4, #24] - 8009422: e7d1 b.n 80093c8 <__sinit+0xc> - 8009424: 0800a768 .word 0x0800a768 - 8009428: 08009355 .word 0x08009355 +080093c8 : + 80093c8: b40e push {r1, r2, r3} + 80093ca: b503 push {r0, r1, lr} + 80093cc: 4601 mov r1, r0 + 80093ce: ab03 add r3, sp, #12 + 80093d0: 4805 ldr r0, [pc, #20] ; (80093e8 ) + 80093d2: f853 2b04 ldr.w r2, [r3], #4 + 80093d6: 6800 ldr r0, [r0, #0] + 80093d8: 9301 str r3, [sp, #4] + 80093da: f000 f883 bl 80094e4 <_vfiprintf_r> + 80093de: b002 add sp, #8 + 80093e0: f85d eb04 ldr.w lr, [sp], #4 + 80093e4: b003 add sp, #12 + 80093e6: 4770 bx lr + 80093e8: 2000000c .word 0x2000000c -0800942c <__sfp>: - 800942c: b5f8 push {r3, r4, r5, r6, r7, lr} - 800942e: 4607 mov r7, r0 - 8009430: f7ff ffac bl 800938c <__sfp_lock_acquire> - 8009434: 4b1e ldr r3, [pc, #120] ; (80094b0 <__sfp+0x84>) - 8009436: 681e ldr r6, [r3, #0] - 8009438: 69b3 ldr r3, [r6, #24] - 800943a: b913 cbnz r3, 8009442 <__sfp+0x16> - 800943c: 4630 mov r0, r6 - 800943e: f7ff ffbd bl 80093bc <__sinit> - 8009442: 3648 adds r6, #72 ; 0x48 - 8009444: e9d6 3401 ldrd r3, r4, [r6, #4] - 8009448: 3b01 subs r3, #1 - 800944a: d503 bpl.n 8009454 <__sfp+0x28> - 800944c: 6833 ldr r3, [r6, #0] - 800944e: b30b cbz r3, 8009494 <__sfp+0x68> - 8009450: 6836 ldr r6, [r6, #0] - 8009452: e7f7 b.n 8009444 <__sfp+0x18> - 8009454: f9b4 500c ldrsh.w r5, [r4, #12] - 8009458: b9d5 cbnz r5, 8009490 <__sfp+0x64> - 800945a: 4b16 ldr r3, [pc, #88] ; (80094b4 <__sfp+0x88>) - 800945c: f104 0058 add.w r0, r4, #88 ; 0x58 - 8009460: 60e3 str r3, [r4, #12] - 8009462: 6665 str r5, [r4, #100] ; 0x64 - 8009464: f7ff fc0e bl 8008c84 <__retarget_lock_init_recursive> - 8009468: f7ff ff96 bl 8009398 <__sfp_lock_release> - 800946c: 2208 movs r2, #8 - 800946e: 4629 mov r1, r5 - 8009470: e9c4 5501 strd r5, r5, [r4, #4] - 8009474: e9c4 5504 strd r5, r5, [r4, #16] - 8009478: 6025 str r5, [r4, #0] - 800947a: 61a5 str r5, [r4, #24] - 800947c: f104 005c add.w r0, r4, #92 ; 0x5c - 8009480: f7fd fafe bl 8006a80 - 8009484: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 - 8009488: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 - 800948c: 4620 mov r0, r4 - 800948e: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8009490: 3468 adds r4, #104 ; 0x68 - 8009492: e7d9 b.n 8009448 <__sfp+0x1c> - 8009494: 2104 movs r1, #4 - 8009496: 4638 mov r0, r7 - 8009498: f7ff ff62 bl 8009360 <__sfmoreglue> - 800949c: 4604 mov r4, r0 - 800949e: 6030 str r0, [r6, #0] - 80094a0: 2800 cmp r0, #0 - 80094a2: d1d5 bne.n 8009450 <__sfp+0x24> - 80094a4: f7ff ff78 bl 8009398 <__sfp_lock_release> - 80094a8: 230c movs r3, #12 - 80094aa: 603b str r3, [r7, #0] - 80094ac: e7ee b.n 800948c <__sfp+0x60> - 80094ae: bf00 nop - 80094b0: 0800a768 .word 0x0800a768 - 80094b4: ffff0001 .word 0xffff0001 +080093ec <__retarget_lock_init_recursive>: + 80093ec: 4770 bx lr -080094b8 <_fwalk_reent>: - 80094b8: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 80094bc: 4606 mov r6, r0 - 80094be: 4688 mov r8, r1 - 80094c0: 2700 movs r7, #0 - 80094c2: f100 0448 add.w r4, r0, #72 ; 0x48 - 80094c6: e9d4 9501 ldrd r9, r5, [r4, #4] - 80094ca: f1b9 0901 subs.w r9, r9, #1 - 80094ce: d505 bpl.n 80094dc <_fwalk_reent+0x24> - 80094d0: 6824 ldr r4, [r4, #0] - 80094d2: 2c00 cmp r4, #0 - 80094d4: d1f7 bne.n 80094c6 <_fwalk_reent+0xe> - 80094d6: 4638 mov r0, r7 - 80094d8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 80094dc: 89ab ldrh r3, [r5, #12] - 80094de: 2b01 cmp r3, #1 - 80094e0: d907 bls.n 80094f2 <_fwalk_reent+0x3a> - 80094e2: f9b5 300e ldrsh.w r3, [r5, #14] - 80094e6: 3301 adds r3, #1 - 80094e8: d003 beq.n 80094f2 <_fwalk_reent+0x3a> - 80094ea: 4629 mov r1, r5 - 80094ec: 4630 mov r0, r6 - 80094ee: 47c0 blx r8 - 80094f0: 4307 orrs r7, r0 - 80094f2: 3568 adds r5, #104 ; 0x68 - 80094f4: e7e9 b.n 80094ca <_fwalk_reent+0x12> +080093ee <__retarget_lock_acquire_recursive>: + 80093ee: 4770 bx lr -080094f6 <__swhatbuf_r>: - 80094f6: b570 push {r4, r5, r6, lr} - 80094f8: 460e mov r6, r1 - 80094fa: f9b1 100e ldrsh.w r1, [r1, #14] - 80094fe: 4614 mov r4, r2 - 8009500: 2900 cmp r1, #0 - 8009502: 461d mov r5, r3 - 8009504: b096 sub sp, #88 ; 0x58 - 8009506: da07 bge.n 8009518 <__swhatbuf_r+0x22> - 8009508: 2300 movs r3, #0 - 800950a: 602b str r3, [r5, #0] - 800950c: 89b3 ldrh r3, [r6, #12] - 800950e: 061a lsls r2, r3, #24 - 8009510: d410 bmi.n 8009534 <__swhatbuf_r+0x3e> - 8009512: f44f 6380 mov.w r3, #1024 ; 0x400 - 8009516: e00e b.n 8009536 <__swhatbuf_r+0x40> - 8009518: 466a mov r2, sp - 800951a: f000 f903 bl 8009724 <_fstat_r> - 800951e: 2800 cmp r0, #0 - 8009520: dbf2 blt.n 8009508 <__swhatbuf_r+0x12> - 8009522: 9a01 ldr r2, [sp, #4] - 8009524: f402 4270 and.w r2, r2, #61440 ; 0xf000 - 8009528: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 - 800952c: 425a negs r2, r3 - 800952e: 415a adcs r2, r3 - 8009530: 602a str r2, [r5, #0] - 8009532: e7ee b.n 8009512 <__swhatbuf_r+0x1c> - 8009534: 2340 movs r3, #64 ; 0x40 - 8009536: 2000 movs r0, #0 - 8009538: 6023 str r3, [r4, #0] - 800953a: b016 add sp, #88 ; 0x58 - 800953c: bd70 pop {r4, r5, r6, pc} +080093f0 <__retarget_lock_release_recursive>: + 80093f0: 4770 bx lr + +080093f2 <__ascii_mbtowc>: + 80093f2: b082 sub sp, #8 + 80093f4: b901 cbnz r1, 80093f8 <__ascii_mbtowc+0x6> + 80093f6: a901 add r1, sp, #4 + 80093f8: b142 cbz r2, 800940c <__ascii_mbtowc+0x1a> + 80093fa: b14b cbz r3, 8009410 <__ascii_mbtowc+0x1e> + 80093fc: 7813 ldrb r3, [r2, #0] + 80093fe: 600b str r3, [r1, #0] + 8009400: 7812 ldrb r2, [r2, #0] + 8009402: 1e10 subs r0, r2, #0 + 8009404: bf18 it ne + 8009406: 2001 movne r0, #1 + 8009408: b002 add sp, #8 + 800940a: 4770 bx lr + 800940c: 4610 mov r0, r2 + 800940e: e7fb b.n 8009408 <__ascii_mbtowc+0x16> + 8009410: f06f 0001 mvn.w r0, #1 + 8009414: e7f8 b.n 8009408 <__ascii_mbtowc+0x16> + +08009416 : + 8009416: 4288 cmp r0, r1 + 8009418: b510 push {r4, lr} + 800941a: eb01 0402 add.w r4, r1, r2 + 800941e: d902 bls.n 8009426 + 8009420: 4284 cmp r4, r0 + 8009422: 4623 mov r3, r4 + 8009424: d807 bhi.n 8009436 + 8009426: 1e43 subs r3, r0, #1 + 8009428: 42a1 cmp r1, r4 + 800942a: d008 beq.n 800943e + 800942c: f811 2b01 ldrb.w r2, [r1], #1 + 8009430: f803 2f01 strb.w r2, [r3, #1]! + 8009434: e7f8 b.n 8009428 + 8009436: 4601 mov r1, r0 + 8009438: 4402 add r2, r0 + 800943a: 428a cmp r2, r1 + 800943c: d100 bne.n 8009440 + 800943e: bd10 pop {r4, pc} + 8009440: f813 4d01 ldrb.w r4, [r3, #-1]! + 8009444: f802 4d01 strb.w r4, [r2, #-1]! + 8009448: e7f7 b.n 800943a + +0800944a <_realloc_r>: + 800944a: b5f8 push {r3, r4, r5, r6, r7, lr} + 800944c: 4607 mov r7, r0 + 800944e: 4614 mov r4, r2 + 8009450: 460e mov r6, r1 + 8009452: b921 cbnz r1, 800945e <_realloc_r+0x14> + 8009454: 4611 mov r1, r2 + 8009456: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} + 800945a: f7fd bf19 b.w 8007290 <_malloc_r> + 800945e: b922 cbnz r2, 800946a <_realloc_r+0x20> + 8009460: f7fd feca bl 80071f8 <_free_r> + 8009464: 4625 mov r5, r4 + 8009466: 4628 mov r0, r5 + 8009468: bdf8 pop {r3, r4, r5, r6, r7, pc} + 800946a: f000 fc5d bl 8009d28 <_malloc_usable_size_r> + 800946e: 42a0 cmp r0, r4 + 8009470: d20f bcs.n 8009492 <_realloc_r+0x48> + 8009472: 4621 mov r1, r4 + 8009474: 4638 mov r0, r7 + 8009476: f7fd ff0b bl 8007290 <_malloc_r> + 800947a: 4605 mov r5, r0 + 800947c: 2800 cmp r0, #0 + 800947e: d0f2 beq.n 8009466 <_realloc_r+0x1c> + 8009480: 4631 mov r1, r6 + 8009482: 4622 mov r2, r4 + 8009484: f7ff fa7c bl 8008980 + 8009488: 4631 mov r1, r6 + 800948a: 4638 mov r0, r7 + 800948c: f7fd feb4 bl 80071f8 <_free_r> + 8009490: e7e9 b.n 8009466 <_realloc_r+0x1c> + 8009492: 4635 mov r5, r6 + 8009494: e7e7 b.n 8009466 <_realloc_r+0x1c> + +08009496 <__sfputc_r>: + 8009496: 6893 ldr r3, [r2, #8] + 8009498: b410 push {r4} + 800949a: 3b01 subs r3, #1 + 800949c: 2b00 cmp r3, #0 + 800949e: 6093 str r3, [r2, #8] + 80094a0: da07 bge.n 80094b2 <__sfputc_r+0x1c> + 80094a2: 6994 ldr r4, [r2, #24] + 80094a4: 42a3 cmp r3, r4 + 80094a6: db01 blt.n 80094ac <__sfputc_r+0x16> + 80094a8: 290a cmp r1, #10 + 80094aa: d102 bne.n 80094b2 <__sfputc_r+0x1c> + 80094ac: bc10 pop {r4} + 80094ae: f000 b949 b.w 8009744 <__swbuf_r> + 80094b2: 6813 ldr r3, [r2, #0] + 80094b4: 1c58 adds r0, r3, #1 + 80094b6: 6010 str r0, [r2, #0] + 80094b8: 7019 strb r1, [r3, #0] + 80094ba: 4608 mov r0, r1 + 80094bc: bc10 pop {r4} + 80094be: 4770 bx lr + +080094c0 <__sfputs_r>: + 80094c0: b5f8 push {r3, r4, r5, r6, r7, lr} + 80094c2: 4606 mov r6, r0 + 80094c4: 460f mov r7, r1 + 80094c6: 4614 mov r4, r2 + 80094c8: 18d5 adds r5, r2, r3 + 80094ca: 42ac cmp r4, r5 + 80094cc: d101 bne.n 80094d2 <__sfputs_r+0x12> + 80094ce: 2000 movs r0, #0 + 80094d0: e007 b.n 80094e2 <__sfputs_r+0x22> + 80094d2: 463a mov r2, r7 + 80094d4: 4630 mov r0, r6 + 80094d6: f814 1b01 ldrb.w r1, [r4], #1 + 80094da: f7ff ffdc bl 8009496 <__sfputc_r> + 80094de: 1c43 adds r3, r0, #1 + 80094e0: d1f3 bne.n 80094ca <__sfputs_r+0xa> + 80094e2: bdf8 pop {r3, r4, r5, r6, r7, pc} + +080094e4 <_vfiprintf_r>: + 80094e4: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 80094e8: 460d mov r5, r1 + 80094ea: 4614 mov r4, r2 + 80094ec: 4698 mov r8, r3 + 80094ee: 4606 mov r6, r0 + 80094f0: b09d sub sp, #116 ; 0x74 + 80094f2: b118 cbz r0, 80094fc <_vfiprintf_r+0x18> + 80094f4: 6983 ldr r3, [r0, #24] + 80094f6: b90b cbnz r3, 80094fc <_vfiprintf_r+0x18> + 80094f8: f000 fb14 bl 8009b24 <__sinit> + 80094fc: 4b89 ldr r3, [pc, #548] ; (8009724 <_vfiprintf_r+0x240>) + 80094fe: 429d cmp r5, r3 + 8009500: d11b bne.n 800953a <_vfiprintf_r+0x56> + 8009502: 6875 ldr r5, [r6, #4] + 8009504: 6e6b ldr r3, [r5, #100] ; 0x64 + 8009506: 07d9 lsls r1, r3, #31 + 8009508: d405 bmi.n 8009516 <_vfiprintf_r+0x32> + 800950a: 89ab ldrh r3, [r5, #12] + 800950c: 059a lsls r2, r3, #22 + 800950e: d402 bmi.n 8009516 <_vfiprintf_r+0x32> + 8009510: 6da8 ldr r0, [r5, #88] ; 0x58 + 8009512: f7ff ff6c bl 80093ee <__retarget_lock_acquire_recursive> + 8009516: 89ab ldrh r3, [r5, #12] + 8009518: 071b lsls r3, r3, #28 + 800951a: d501 bpl.n 8009520 <_vfiprintf_r+0x3c> + 800951c: 692b ldr r3, [r5, #16] + 800951e: b9eb cbnz r3, 800955c <_vfiprintf_r+0x78> + 8009520: 4629 mov r1, r5 + 8009522: 4630 mov r0, r6 + 8009524: f000 f96e bl 8009804 <__swsetup_r> + 8009528: b1c0 cbz r0, 800955c <_vfiprintf_r+0x78> + 800952a: 6e6b ldr r3, [r5, #100] ; 0x64 + 800952c: 07dc lsls r4, r3, #31 + 800952e: d50e bpl.n 800954e <_vfiprintf_r+0x6a> + 8009530: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009534: b01d add sp, #116 ; 0x74 + 8009536: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800953a: 4b7b ldr r3, [pc, #492] ; (8009728 <_vfiprintf_r+0x244>) + 800953c: 429d cmp r5, r3 + 800953e: d101 bne.n 8009544 <_vfiprintf_r+0x60> + 8009540: 68b5 ldr r5, [r6, #8] + 8009542: e7df b.n 8009504 <_vfiprintf_r+0x20> + 8009544: 4b79 ldr r3, [pc, #484] ; (800972c <_vfiprintf_r+0x248>) + 8009546: 429d cmp r5, r3 + 8009548: bf08 it eq + 800954a: 68f5 ldreq r5, [r6, #12] + 800954c: e7da b.n 8009504 <_vfiprintf_r+0x20> + 800954e: 89ab ldrh r3, [r5, #12] + 8009550: 0598 lsls r0, r3, #22 + 8009552: d4ed bmi.n 8009530 <_vfiprintf_r+0x4c> + 8009554: 6da8 ldr r0, [r5, #88] ; 0x58 + 8009556: f7ff ff4b bl 80093f0 <__retarget_lock_release_recursive> + 800955a: e7e9 b.n 8009530 <_vfiprintf_r+0x4c> + 800955c: 2300 movs r3, #0 + 800955e: 9309 str r3, [sp, #36] ; 0x24 + 8009560: 2320 movs r3, #32 + 8009562: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 8009566: 2330 movs r3, #48 ; 0x30 + 8009568: f04f 0901 mov.w r9, #1 + 800956c: f8cd 800c str.w r8, [sp, #12] + 8009570: f8df 81bc ldr.w r8, [pc, #444] ; 8009730 <_vfiprintf_r+0x24c> + 8009574: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 8009578: 4623 mov r3, r4 + 800957a: 469a mov sl, r3 + 800957c: f813 2b01 ldrb.w r2, [r3], #1 + 8009580: b10a cbz r2, 8009586 <_vfiprintf_r+0xa2> + 8009582: 2a25 cmp r2, #37 ; 0x25 + 8009584: d1f9 bne.n 800957a <_vfiprintf_r+0x96> + 8009586: ebba 0b04 subs.w fp, sl, r4 + 800958a: d00b beq.n 80095a4 <_vfiprintf_r+0xc0> + 800958c: 465b mov r3, fp + 800958e: 4622 mov r2, r4 + 8009590: 4629 mov r1, r5 + 8009592: 4630 mov r0, r6 + 8009594: f7ff ff94 bl 80094c0 <__sfputs_r> + 8009598: 3001 adds r0, #1 + 800959a: f000 80aa beq.w 80096f2 <_vfiprintf_r+0x20e> + 800959e: 9a09 ldr r2, [sp, #36] ; 0x24 + 80095a0: 445a add r2, fp + 80095a2: 9209 str r2, [sp, #36] ; 0x24 + 80095a4: f89a 3000 ldrb.w r3, [sl] + 80095a8: 2b00 cmp r3, #0 + 80095aa: f000 80a2 beq.w 80096f2 <_vfiprintf_r+0x20e> + 80095ae: 2300 movs r3, #0 + 80095b0: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 80095b4: e9cd 2305 strd r2, r3, [sp, #20] + 80095b8: f10a 0a01 add.w sl, sl, #1 + 80095bc: 9304 str r3, [sp, #16] + 80095be: 9307 str r3, [sp, #28] + 80095c0: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 80095c4: 931a str r3, [sp, #104] ; 0x68 + 80095c6: 4654 mov r4, sl + 80095c8: 2205 movs r2, #5 + 80095ca: f814 1b01 ldrb.w r1, [r4], #1 + 80095ce: 4858 ldr r0, [pc, #352] ; (8009730 <_vfiprintf_r+0x24c>) + 80095d0: f7ff f9c8 bl 8008964 + 80095d4: 9a04 ldr r2, [sp, #16] + 80095d6: b9d8 cbnz r0, 8009610 <_vfiprintf_r+0x12c> + 80095d8: 06d1 lsls r1, r2, #27 + 80095da: bf44 itt mi + 80095dc: 2320 movmi r3, #32 + 80095de: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 80095e2: 0713 lsls r3, r2, #28 + 80095e4: bf44 itt mi + 80095e6: 232b movmi r3, #43 ; 0x2b + 80095e8: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 80095ec: f89a 3000 ldrb.w r3, [sl] + 80095f0: 2b2a cmp r3, #42 ; 0x2a + 80095f2: d015 beq.n 8009620 <_vfiprintf_r+0x13c> + 80095f4: 4654 mov r4, sl + 80095f6: 2000 movs r0, #0 + 80095f8: f04f 0c0a mov.w ip, #10 + 80095fc: 9a07 ldr r2, [sp, #28] + 80095fe: 4621 mov r1, r4 + 8009600: f811 3b01 ldrb.w r3, [r1], #1 + 8009604: 3b30 subs r3, #48 ; 0x30 + 8009606: 2b09 cmp r3, #9 + 8009608: d94e bls.n 80096a8 <_vfiprintf_r+0x1c4> + 800960a: b1b0 cbz r0, 800963a <_vfiprintf_r+0x156> + 800960c: 9207 str r2, [sp, #28] + 800960e: e014 b.n 800963a <_vfiprintf_r+0x156> + 8009610: eba0 0308 sub.w r3, r0, r8 + 8009614: fa09 f303 lsl.w r3, r9, r3 + 8009618: 4313 orrs r3, r2 + 800961a: 46a2 mov sl, r4 + 800961c: 9304 str r3, [sp, #16] + 800961e: e7d2 b.n 80095c6 <_vfiprintf_r+0xe2> + 8009620: 9b03 ldr r3, [sp, #12] + 8009622: 1d19 adds r1, r3, #4 + 8009624: 681b ldr r3, [r3, #0] + 8009626: 9103 str r1, [sp, #12] + 8009628: 2b00 cmp r3, #0 + 800962a: bfbb ittet lt + 800962c: 425b neglt r3, r3 + 800962e: f042 0202 orrlt.w r2, r2, #2 + 8009632: 9307 strge r3, [sp, #28] + 8009634: 9307 strlt r3, [sp, #28] + 8009636: bfb8 it lt + 8009638: 9204 strlt r2, [sp, #16] + 800963a: 7823 ldrb r3, [r4, #0] + 800963c: 2b2e cmp r3, #46 ; 0x2e + 800963e: d10c bne.n 800965a <_vfiprintf_r+0x176> + 8009640: 7863 ldrb r3, [r4, #1] + 8009642: 2b2a cmp r3, #42 ; 0x2a + 8009644: d135 bne.n 80096b2 <_vfiprintf_r+0x1ce> + 8009646: 9b03 ldr r3, [sp, #12] + 8009648: 3402 adds r4, #2 + 800964a: 1d1a adds r2, r3, #4 + 800964c: 681b ldr r3, [r3, #0] + 800964e: 9203 str r2, [sp, #12] + 8009650: 2b00 cmp r3, #0 + 8009652: bfb8 it lt + 8009654: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 8009658: 9305 str r3, [sp, #20] + 800965a: f8df a0e4 ldr.w sl, [pc, #228] ; 8009740 <_vfiprintf_r+0x25c> + 800965e: 2203 movs r2, #3 + 8009660: 4650 mov r0, sl + 8009662: 7821 ldrb r1, [r4, #0] + 8009664: f7ff f97e bl 8008964 + 8009668: b140 cbz r0, 800967c <_vfiprintf_r+0x198> + 800966a: 2340 movs r3, #64 ; 0x40 + 800966c: eba0 000a sub.w r0, r0, sl + 8009670: fa03 f000 lsl.w r0, r3, r0 + 8009674: 9b04 ldr r3, [sp, #16] + 8009676: 3401 adds r4, #1 + 8009678: 4303 orrs r3, r0 + 800967a: 9304 str r3, [sp, #16] + 800967c: f814 1b01 ldrb.w r1, [r4], #1 + 8009680: 2206 movs r2, #6 + 8009682: 482c ldr r0, [pc, #176] ; (8009734 <_vfiprintf_r+0x250>) + 8009684: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 8009688: f7ff f96c bl 8008964 + 800968c: 2800 cmp r0, #0 + 800968e: d03f beq.n 8009710 <_vfiprintf_r+0x22c> + 8009690: 4b29 ldr r3, [pc, #164] ; (8009738 <_vfiprintf_r+0x254>) + 8009692: bb1b cbnz r3, 80096dc <_vfiprintf_r+0x1f8> + 8009694: 9b03 ldr r3, [sp, #12] + 8009696: 3307 adds r3, #7 + 8009698: f023 0307 bic.w r3, r3, #7 + 800969c: 3308 adds r3, #8 + 800969e: 9303 str r3, [sp, #12] + 80096a0: 9b09 ldr r3, [sp, #36] ; 0x24 + 80096a2: 443b add r3, r7 + 80096a4: 9309 str r3, [sp, #36] ; 0x24 + 80096a6: e767 b.n 8009578 <_vfiprintf_r+0x94> + 80096a8: 460c mov r4, r1 + 80096aa: 2001 movs r0, #1 + 80096ac: fb0c 3202 mla r2, ip, r2, r3 + 80096b0: e7a5 b.n 80095fe <_vfiprintf_r+0x11a> + 80096b2: 2300 movs r3, #0 + 80096b4: f04f 0c0a mov.w ip, #10 + 80096b8: 4619 mov r1, r3 + 80096ba: 3401 adds r4, #1 + 80096bc: 9305 str r3, [sp, #20] + 80096be: 4620 mov r0, r4 + 80096c0: f810 2b01 ldrb.w r2, [r0], #1 + 80096c4: 3a30 subs r2, #48 ; 0x30 + 80096c6: 2a09 cmp r2, #9 + 80096c8: d903 bls.n 80096d2 <_vfiprintf_r+0x1ee> + 80096ca: 2b00 cmp r3, #0 + 80096cc: d0c5 beq.n 800965a <_vfiprintf_r+0x176> + 80096ce: 9105 str r1, [sp, #20] + 80096d0: e7c3 b.n 800965a <_vfiprintf_r+0x176> + 80096d2: 4604 mov r4, r0 + 80096d4: 2301 movs r3, #1 + 80096d6: fb0c 2101 mla r1, ip, r1, r2 + 80096da: e7f0 b.n 80096be <_vfiprintf_r+0x1da> + 80096dc: ab03 add r3, sp, #12 + 80096de: 9300 str r3, [sp, #0] + 80096e0: 462a mov r2, r5 + 80096e2: 4630 mov r0, r6 + 80096e4: 4b15 ldr r3, [pc, #84] ; (800973c <_vfiprintf_r+0x258>) + 80096e6: a904 add r1, sp, #16 + 80096e8: f7fd feca bl 8007480 <_printf_float> + 80096ec: 4607 mov r7, r0 + 80096ee: 1c78 adds r0, r7, #1 + 80096f0: d1d6 bne.n 80096a0 <_vfiprintf_r+0x1bc> + 80096f2: 6e6b ldr r3, [r5, #100] ; 0x64 + 80096f4: 07d9 lsls r1, r3, #31 + 80096f6: d405 bmi.n 8009704 <_vfiprintf_r+0x220> + 80096f8: 89ab ldrh r3, [r5, #12] + 80096fa: 059a lsls r2, r3, #22 + 80096fc: d402 bmi.n 8009704 <_vfiprintf_r+0x220> + 80096fe: 6da8 ldr r0, [r5, #88] ; 0x58 + 8009700: f7ff fe76 bl 80093f0 <__retarget_lock_release_recursive> + 8009704: 89ab ldrh r3, [r5, #12] + 8009706: 065b lsls r3, r3, #25 + 8009708: f53f af12 bmi.w 8009530 <_vfiprintf_r+0x4c> + 800970c: 9809 ldr r0, [sp, #36] ; 0x24 + 800970e: e711 b.n 8009534 <_vfiprintf_r+0x50> + 8009710: ab03 add r3, sp, #12 + 8009712: 9300 str r3, [sp, #0] + 8009714: 462a mov r2, r5 + 8009716: 4630 mov r0, r6 + 8009718: 4b08 ldr r3, [pc, #32] ; (800973c <_vfiprintf_r+0x258>) + 800971a: a904 add r1, sp, #16 + 800971c: f7fe f94c bl 80079b8 <_printf_i> + 8009720: e7e4 b.n 80096ec <_vfiprintf_r+0x208> + 8009722: bf00 nop + 8009724: 0800b274 .word 0x0800b274 + 8009728: 0800b294 .word 0x0800b294 + 800972c: 0800b254 .word 0x0800b254 + 8009730: 0800b0fc .word 0x0800b0fc + 8009734: 0800b106 .word 0x0800b106 + 8009738: 08007481 .word 0x08007481 + 800973c: 080094c1 .word 0x080094c1 + 8009740: 0800b102 .word 0x0800b102 + +08009744 <__swbuf_r>: + 8009744: b5f8 push {r3, r4, r5, r6, r7, lr} + 8009746: 460e mov r6, r1 + 8009748: 4614 mov r4, r2 + 800974a: 4605 mov r5, r0 + 800974c: b118 cbz r0, 8009756 <__swbuf_r+0x12> + 800974e: 6983 ldr r3, [r0, #24] + 8009750: b90b cbnz r3, 8009756 <__swbuf_r+0x12> + 8009752: f000 f9e7 bl 8009b24 <__sinit> + 8009756: 4b21 ldr r3, [pc, #132] ; (80097dc <__swbuf_r+0x98>) + 8009758: 429c cmp r4, r3 + 800975a: d12b bne.n 80097b4 <__swbuf_r+0x70> + 800975c: 686c ldr r4, [r5, #4] + 800975e: 69a3 ldr r3, [r4, #24] + 8009760: 60a3 str r3, [r4, #8] + 8009762: 89a3 ldrh r3, [r4, #12] + 8009764: 071a lsls r2, r3, #28 + 8009766: d52f bpl.n 80097c8 <__swbuf_r+0x84> + 8009768: 6923 ldr r3, [r4, #16] + 800976a: b36b cbz r3, 80097c8 <__swbuf_r+0x84> + 800976c: 6923 ldr r3, [r4, #16] + 800976e: 6820 ldr r0, [r4, #0] + 8009770: b2f6 uxtb r6, r6 + 8009772: 1ac0 subs r0, r0, r3 + 8009774: 6963 ldr r3, [r4, #20] + 8009776: 4637 mov r7, r6 + 8009778: 4283 cmp r3, r0 + 800977a: dc04 bgt.n 8009786 <__swbuf_r+0x42> + 800977c: 4621 mov r1, r4 + 800977e: 4628 mov r0, r5 + 8009780: f000 f93c bl 80099fc <_fflush_r> + 8009784: bb30 cbnz r0, 80097d4 <__swbuf_r+0x90> + 8009786: 68a3 ldr r3, [r4, #8] + 8009788: 3001 adds r0, #1 + 800978a: 3b01 subs r3, #1 + 800978c: 60a3 str r3, [r4, #8] + 800978e: 6823 ldr r3, [r4, #0] + 8009790: 1c5a adds r2, r3, #1 + 8009792: 6022 str r2, [r4, #0] + 8009794: 701e strb r6, [r3, #0] + 8009796: 6963 ldr r3, [r4, #20] + 8009798: 4283 cmp r3, r0 + 800979a: d004 beq.n 80097a6 <__swbuf_r+0x62> + 800979c: 89a3 ldrh r3, [r4, #12] + 800979e: 07db lsls r3, r3, #31 + 80097a0: d506 bpl.n 80097b0 <__swbuf_r+0x6c> + 80097a2: 2e0a cmp r6, #10 + 80097a4: d104 bne.n 80097b0 <__swbuf_r+0x6c> + 80097a6: 4621 mov r1, r4 + 80097a8: 4628 mov r0, r5 + 80097aa: f000 f927 bl 80099fc <_fflush_r> + 80097ae: b988 cbnz r0, 80097d4 <__swbuf_r+0x90> + 80097b0: 4638 mov r0, r7 + 80097b2: bdf8 pop {r3, r4, r5, r6, r7, pc} + 80097b4: 4b0a ldr r3, [pc, #40] ; (80097e0 <__swbuf_r+0x9c>) + 80097b6: 429c cmp r4, r3 + 80097b8: d101 bne.n 80097be <__swbuf_r+0x7a> + 80097ba: 68ac ldr r4, [r5, #8] + 80097bc: e7cf b.n 800975e <__swbuf_r+0x1a> + 80097be: 4b09 ldr r3, [pc, #36] ; (80097e4 <__swbuf_r+0xa0>) + 80097c0: 429c cmp r4, r3 + 80097c2: bf08 it eq + 80097c4: 68ec ldreq r4, [r5, #12] + 80097c6: e7ca b.n 800975e <__swbuf_r+0x1a> + 80097c8: 4621 mov r1, r4 + 80097ca: 4628 mov r0, r5 + 80097cc: f000 f81a bl 8009804 <__swsetup_r> + 80097d0: 2800 cmp r0, #0 + 80097d2: d0cb beq.n 800976c <__swbuf_r+0x28> + 80097d4: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff + 80097d8: e7ea b.n 80097b0 <__swbuf_r+0x6c> + 80097da: bf00 nop + 80097dc: 0800b274 .word 0x0800b274 + 80097e0: 0800b294 .word 0x0800b294 + 80097e4: 0800b254 .word 0x0800b254 + +080097e8 <__ascii_wctomb>: + 80097e8: 4603 mov r3, r0 + 80097ea: 4608 mov r0, r1 + 80097ec: b141 cbz r1, 8009800 <__ascii_wctomb+0x18> + 80097ee: 2aff cmp r2, #255 ; 0xff + 80097f0: d904 bls.n 80097fc <__ascii_wctomb+0x14> + 80097f2: 228a movs r2, #138 ; 0x8a + 80097f4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80097f8: 601a str r2, [r3, #0] + 80097fa: 4770 bx lr + 80097fc: 2001 movs r0, #1 + 80097fe: 700a strb r2, [r1, #0] + 8009800: 4770 bx lr ... -08009540 <__smakebuf_r>: - 8009540: 898b ldrh r3, [r1, #12] - 8009542: b573 push {r0, r1, r4, r5, r6, lr} - 8009544: 079d lsls r5, r3, #30 - 8009546: 4606 mov r6, r0 - 8009548: 460c mov r4, r1 - 800954a: d507 bpl.n 800955c <__smakebuf_r+0x1c> - 800954c: f104 0347 add.w r3, r4, #71 ; 0x47 - 8009550: 6023 str r3, [r4, #0] - 8009552: 6123 str r3, [r4, #16] - 8009554: 2301 movs r3, #1 - 8009556: 6163 str r3, [r4, #20] - 8009558: b002 add sp, #8 - 800955a: bd70 pop {r4, r5, r6, pc} - 800955c: 466a mov r2, sp - 800955e: ab01 add r3, sp, #4 - 8009560: f7ff ffc9 bl 80094f6 <__swhatbuf_r> - 8009564: 9900 ldr r1, [sp, #0] - 8009566: 4605 mov r5, r0 - 8009568: 4630 mov r0, r6 - 800956a: f7fd fadd bl 8006b28 <_malloc_r> - 800956e: b948 cbnz r0, 8009584 <__smakebuf_r+0x44> - 8009570: f9b4 300c ldrsh.w r3, [r4, #12] - 8009574: 059a lsls r2, r3, #22 - 8009576: d4ef bmi.n 8009558 <__smakebuf_r+0x18> - 8009578: f023 0303 bic.w r3, r3, #3 - 800957c: f043 0302 orr.w r3, r3, #2 - 8009580: 81a3 strh r3, [r4, #12] - 8009582: e7e3 b.n 800954c <__smakebuf_r+0xc> - 8009584: 4b0d ldr r3, [pc, #52] ; (80095bc <__smakebuf_r+0x7c>) - 8009586: 62b3 str r3, [r6, #40] ; 0x28 - 8009588: 89a3 ldrh r3, [r4, #12] - 800958a: 6020 str r0, [r4, #0] - 800958c: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8009590: 81a3 strh r3, [r4, #12] - 8009592: 9b00 ldr r3, [sp, #0] - 8009594: 6120 str r0, [r4, #16] - 8009596: 6163 str r3, [r4, #20] - 8009598: 9b01 ldr r3, [sp, #4] - 800959a: b15b cbz r3, 80095b4 <__smakebuf_r+0x74> - 800959c: 4630 mov r0, r6 - 800959e: f9b4 100e ldrsh.w r1, [r4, #14] - 80095a2: f000 f8d1 bl 8009748 <_isatty_r> - 80095a6: b128 cbz r0, 80095b4 <__smakebuf_r+0x74> - 80095a8: 89a3 ldrh r3, [r4, #12] - 80095aa: f023 0303 bic.w r3, r3, #3 - 80095ae: f043 0301 orr.w r3, r3, #1 - 80095b2: 81a3 strh r3, [r4, #12] - 80095b4: 89a0 ldrh r0, [r4, #12] - 80095b6: 4305 orrs r5, r0 - 80095b8: 81a5 strh r5, [r4, #12] - 80095ba: e7cd b.n 8009558 <__smakebuf_r+0x18> - 80095bc: 08009355 .word 0x08009355 +08009804 <__swsetup_r>: + 8009804: 4b32 ldr r3, [pc, #200] ; (80098d0 <__swsetup_r+0xcc>) + 8009806: b570 push {r4, r5, r6, lr} + 8009808: 681d ldr r5, [r3, #0] + 800980a: 4606 mov r6, r0 + 800980c: 460c mov r4, r1 + 800980e: b125 cbz r5, 800981a <__swsetup_r+0x16> + 8009810: 69ab ldr r3, [r5, #24] + 8009812: b913 cbnz r3, 800981a <__swsetup_r+0x16> + 8009814: 4628 mov r0, r5 + 8009816: f000 f985 bl 8009b24 <__sinit> + 800981a: 4b2e ldr r3, [pc, #184] ; (80098d4 <__swsetup_r+0xd0>) + 800981c: 429c cmp r4, r3 + 800981e: d10f bne.n 8009840 <__swsetup_r+0x3c> + 8009820: 686c ldr r4, [r5, #4] + 8009822: 89a3 ldrh r3, [r4, #12] + 8009824: f9b4 200c ldrsh.w r2, [r4, #12] + 8009828: 0719 lsls r1, r3, #28 + 800982a: d42c bmi.n 8009886 <__swsetup_r+0x82> + 800982c: 06dd lsls r5, r3, #27 + 800982e: d411 bmi.n 8009854 <__swsetup_r+0x50> + 8009830: 2309 movs r3, #9 + 8009832: 6033 str r3, [r6, #0] + 8009834: f042 0340 orr.w r3, r2, #64 ; 0x40 + 8009838: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800983c: 81a3 strh r3, [r4, #12] + 800983e: e03e b.n 80098be <__swsetup_r+0xba> + 8009840: 4b25 ldr r3, [pc, #148] ; (80098d8 <__swsetup_r+0xd4>) + 8009842: 429c cmp r4, r3 + 8009844: d101 bne.n 800984a <__swsetup_r+0x46> + 8009846: 68ac ldr r4, [r5, #8] + 8009848: e7eb b.n 8009822 <__swsetup_r+0x1e> + 800984a: 4b24 ldr r3, [pc, #144] ; (80098dc <__swsetup_r+0xd8>) + 800984c: 429c cmp r4, r3 + 800984e: bf08 it eq + 8009850: 68ec ldreq r4, [r5, #12] + 8009852: e7e6 b.n 8009822 <__swsetup_r+0x1e> + 8009854: 0758 lsls r0, r3, #29 + 8009856: d512 bpl.n 800987e <__swsetup_r+0x7a> + 8009858: 6b61 ldr r1, [r4, #52] ; 0x34 + 800985a: b141 cbz r1, 800986e <__swsetup_r+0x6a> + 800985c: f104 0344 add.w r3, r4, #68 ; 0x44 + 8009860: 4299 cmp r1, r3 + 8009862: d002 beq.n 800986a <__swsetup_r+0x66> + 8009864: 4630 mov r0, r6 + 8009866: f7fd fcc7 bl 80071f8 <_free_r> + 800986a: 2300 movs r3, #0 + 800986c: 6363 str r3, [r4, #52] ; 0x34 + 800986e: 89a3 ldrh r3, [r4, #12] + 8009870: f023 0324 bic.w r3, r3, #36 ; 0x24 + 8009874: 81a3 strh r3, [r4, #12] + 8009876: 2300 movs r3, #0 + 8009878: 6063 str r3, [r4, #4] + 800987a: 6923 ldr r3, [r4, #16] + 800987c: 6023 str r3, [r4, #0] + 800987e: 89a3 ldrh r3, [r4, #12] + 8009880: f043 0308 orr.w r3, r3, #8 + 8009884: 81a3 strh r3, [r4, #12] + 8009886: 6923 ldr r3, [r4, #16] + 8009888: b94b cbnz r3, 800989e <__swsetup_r+0x9a> + 800988a: 89a3 ldrh r3, [r4, #12] + 800988c: f403 7320 and.w r3, r3, #640 ; 0x280 + 8009890: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8009894: d003 beq.n 800989e <__swsetup_r+0x9a> + 8009896: 4621 mov r1, r4 + 8009898: 4630 mov r0, r6 + 800989a: f000 fa05 bl 8009ca8 <__smakebuf_r> + 800989e: 89a0 ldrh r0, [r4, #12] + 80098a0: f9b4 200c ldrsh.w r2, [r4, #12] + 80098a4: f010 0301 ands.w r3, r0, #1 + 80098a8: d00a beq.n 80098c0 <__swsetup_r+0xbc> + 80098aa: 2300 movs r3, #0 + 80098ac: 60a3 str r3, [r4, #8] + 80098ae: 6963 ldr r3, [r4, #20] + 80098b0: 425b negs r3, r3 + 80098b2: 61a3 str r3, [r4, #24] + 80098b4: 6923 ldr r3, [r4, #16] + 80098b6: b943 cbnz r3, 80098ca <__swsetup_r+0xc6> + 80098b8: f010 0080 ands.w r0, r0, #128 ; 0x80 + 80098bc: d1ba bne.n 8009834 <__swsetup_r+0x30> + 80098be: bd70 pop {r4, r5, r6, pc} + 80098c0: 0781 lsls r1, r0, #30 + 80098c2: bf58 it pl + 80098c4: 6963 ldrpl r3, [r4, #20] + 80098c6: 60a3 str r3, [r4, #8] + 80098c8: e7f4 b.n 80098b4 <__swsetup_r+0xb0> + 80098ca: 2000 movs r0, #0 + 80098cc: e7f7 b.n 80098be <__swsetup_r+0xba> + 80098ce: bf00 nop + 80098d0: 2000000c .word 0x2000000c + 80098d4: 0800b274 .word 0x0800b274 + 80098d8: 0800b294 .word 0x0800b294 + 80098dc: 0800b254 .word 0x0800b254 -080095c0 <_malloc_usable_size_r>: - 80095c0: f851 3c04 ldr.w r3, [r1, #-4] - 80095c4: 1f18 subs r0, r3, #4 - 80095c6: 2b00 cmp r3, #0 - 80095c8: bfbc itt lt - 80095ca: 580b ldrlt r3, [r1, r0] - 80095cc: 18c0 addlt r0, r0, r3 - 80095ce: 4770 bx lr - -080095d0 <_raise_r>: - 80095d0: 291f cmp r1, #31 - 80095d2: b538 push {r3, r4, r5, lr} - 80095d4: 4604 mov r4, r0 - 80095d6: 460d mov r5, r1 - 80095d8: d904 bls.n 80095e4 <_raise_r+0x14> - 80095da: 2316 movs r3, #22 - 80095dc: 6003 str r3, [r0, #0] - 80095de: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80095e2: bd38 pop {r3, r4, r5, pc} - 80095e4: 6c42 ldr r2, [r0, #68] ; 0x44 - 80095e6: b112 cbz r2, 80095ee <_raise_r+0x1e> - 80095e8: f852 3021 ldr.w r3, [r2, r1, lsl #2] - 80095ec: b94b cbnz r3, 8009602 <_raise_r+0x32> - 80095ee: 4620 mov r0, r4 - 80095f0: f000 f830 bl 8009654 <_getpid_r> - 80095f4: 462a mov r2, r5 - 80095f6: 4601 mov r1, r0 - 80095f8: 4620 mov r0, r4 - 80095fa: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 80095fe: f000 b817 b.w 8009630 <_kill_r> - 8009602: 2b01 cmp r3, #1 - 8009604: d00a beq.n 800961c <_raise_r+0x4c> - 8009606: 1c59 adds r1, r3, #1 - 8009608: d103 bne.n 8009612 <_raise_r+0x42> - 800960a: 2316 movs r3, #22 - 800960c: 6003 str r3, [r0, #0] - 800960e: 2001 movs r0, #1 - 8009610: e7e7 b.n 80095e2 <_raise_r+0x12> - 8009612: 2400 movs r4, #0 - 8009614: 4628 mov r0, r5 - 8009616: f842 4025 str.w r4, [r2, r5, lsl #2] - 800961a: 4798 blx r3 - 800961c: 2000 movs r0, #0 - 800961e: e7e0 b.n 80095e2 <_raise_r+0x12> - -08009620 : - 8009620: 4b02 ldr r3, [pc, #8] ; (800962c ) - 8009622: 4601 mov r1, r0 - 8009624: 6818 ldr r0, [r3, #0] - 8009626: f7ff bfd3 b.w 80095d0 <_raise_r> - 800962a: bf00 nop - 800962c: 2000000c .word 0x2000000c - -08009630 <_kill_r>: - 8009630: b538 push {r3, r4, r5, lr} - 8009632: 2300 movs r3, #0 - 8009634: 4d06 ldr r5, [pc, #24] ; (8009650 <_kill_r+0x20>) - 8009636: 4604 mov r4, r0 - 8009638: 4608 mov r0, r1 - 800963a: 4611 mov r1, r2 - 800963c: 602b str r3, [r5, #0] - 800963e: f7f8 f89b bl 8001778 <_kill> - 8009642: 1c43 adds r3, r0, #1 - 8009644: d102 bne.n 800964c <_kill_r+0x1c> - 8009646: 682b ldr r3, [r5, #0] - 8009648: b103 cbz r3, 800964c <_kill_r+0x1c> - 800964a: 6023 str r3, [r4, #0] - 800964c: bd38 pop {r3, r4, r5, pc} - 800964e: bf00 nop - 8009650: 20002454 .word 0x20002454 - -08009654 <_getpid_r>: - 8009654: f7f8 b889 b.w 800176a <_getpid> - -08009658 <__sread>: - 8009658: b510 push {r4, lr} - 800965a: 460c mov r4, r1 - 800965c: f9b1 100e ldrsh.w r1, [r1, #14] - 8009660: f000 f894 bl 800978c <_read_r> - 8009664: 2800 cmp r0, #0 - 8009666: bfab itete ge - 8009668: 6d63 ldrge r3, [r4, #84] ; 0x54 - 800966a: 89a3 ldrhlt r3, [r4, #12] - 800966c: 181b addge r3, r3, r0 - 800966e: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 - 8009672: bfac ite ge - 8009674: 6563 strge r3, [r4, #84] ; 0x54 - 8009676: 81a3 strhlt r3, [r4, #12] - 8009678: bd10 pop {r4, pc} - -0800967a <__swrite>: - 800967a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 800967e: 461f mov r7, r3 - 8009680: 898b ldrh r3, [r1, #12] - 8009682: 4605 mov r5, r0 - 8009684: 05db lsls r3, r3, #23 - 8009686: 460c mov r4, r1 - 8009688: 4616 mov r6, r2 - 800968a: d505 bpl.n 8009698 <__swrite+0x1e> - 800968c: 2302 movs r3, #2 - 800968e: 2200 movs r2, #0 - 8009690: f9b1 100e ldrsh.w r1, [r1, #14] - 8009694: f000 f868 bl 8009768 <_lseek_r> - 8009698: 89a3 ldrh r3, [r4, #12] - 800969a: 4632 mov r2, r6 - 800969c: f423 5380 bic.w r3, r3, #4096 ; 0x1000 - 80096a0: 81a3 strh r3, [r4, #12] - 80096a2: 4628 mov r0, r5 - 80096a4: 463b mov r3, r7 - 80096a6: f9b4 100e ldrsh.w r1, [r4, #14] - 80096aa: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} - 80096ae: f000 b817 b.w 80096e0 <_write_r> - -080096b2 <__sseek>: - 80096b2: b510 push {r4, lr} - 80096b4: 460c mov r4, r1 - 80096b6: f9b1 100e ldrsh.w r1, [r1, #14] - 80096ba: f000 f855 bl 8009768 <_lseek_r> - 80096be: 1c43 adds r3, r0, #1 - 80096c0: 89a3 ldrh r3, [r4, #12] - 80096c2: bf15 itete ne - 80096c4: 6560 strne r0, [r4, #84] ; 0x54 - 80096c6: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 - 80096ca: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 - 80096ce: 81a3 strheq r3, [r4, #12] - 80096d0: bf18 it ne - 80096d2: 81a3 strhne r3, [r4, #12] - 80096d4: bd10 pop {r4, pc} - -080096d6 <__sclose>: - 80096d6: f9b1 100e ldrsh.w r1, [r1, #14] - 80096da: f000 b813 b.w 8009704 <_close_r> +080098e0 : + 80098e0: 2006 movs r0, #6 + 80098e2: b508 push {r3, lr} + 80098e4: f000 fa50 bl 8009d88 + 80098e8: 2001 movs r0, #1 + 80098ea: f7f7 ffbe bl 800186a <_exit> ... -080096e0 <_write_r>: - 80096e0: b538 push {r3, r4, r5, lr} - 80096e2: 4604 mov r4, r0 - 80096e4: 4608 mov r0, r1 - 80096e6: 4611 mov r1, r2 - 80096e8: 2200 movs r2, #0 - 80096ea: 4d05 ldr r5, [pc, #20] ; (8009700 <_write_r+0x20>) - 80096ec: 602a str r2, [r5, #0] - 80096ee: 461a mov r2, r3 - 80096f0: f7f8 f879 bl 80017e6 <_write> - 80096f4: 1c43 adds r3, r0, #1 - 80096f6: d102 bne.n 80096fe <_write_r+0x1e> - 80096f8: 682b ldr r3, [r5, #0] - 80096fa: b103 cbz r3, 80096fe <_write_r+0x1e> - 80096fc: 6023 str r3, [r4, #0] - 80096fe: bd38 pop {r3, r4, r5, pc} - 8009700: 20002454 .word 0x20002454 +080098f0 <__sflush_r>: + 80098f0: 898a ldrh r2, [r1, #12] + 80098f2: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 80098f6: 4605 mov r5, r0 + 80098f8: 0710 lsls r0, r2, #28 + 80098fa: 460c mov r4, r1 + 80098fc: d458 bmi.n 80099b0 <__sflush_r+0xc0> + 80098fe: 684b ldr r3, [r1, #4] + 8009900: 2b00 cmp r3, #0 + 8009902: dc05 bgt.n 8009910 <__sflush_r+0x20> + 8009904: 6c0b ldr r3, [r1, #64] ; 0x40 + 8009906: 2b00 cmp r3, #0 + 8009908: dc02 bgt.n 8009910 <__sflush_r+0x20> + 800990a: 2000 movs r0, #0 + 800990c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 8009910: 6ae6 ldr r6, [r4, #44] ; 0x2c + 8009912: 2e00 cmp r6, #0 + 8009914: d0f9 beq.n 800990a <__sflush_r+0x1a> + 8009916: 2300 movs r3, #0 + 8009918: f412 5280 ands.w r2, r2, #4096 ; 0x1000 + 800991c: 682f ldr r7, [r5, #0] + 800991e: 602b str r3, [r5, #0] + 8009920: d032 beq.n 8009988 <__sflush_r+0x98> + 8009922: 6d60 ldr r0, [r4, #84] ; 0x54 + 8009924: 89a3 ldrh r3, [r4, #12] + 8009926: 075a lsls r2, r3, #29 + 8009928: d505 bpl.n 8009936 <__sflush_r+0x46> + 800992a: 6863 ldr r3, [r4, #4] + 800992c: 1ac0 subs r0, r0, r3 + 800992e: 6b63 ldr r3, [r4, #52] ; 0x34 + 8009930: b10b cbz r3, 8009936 <__sflush_r+0x46> + 8009932: 6c23 ldr r3, [r4, #64] ; 0x40 + 8009934: 1ac0 subs r0, r0, r3 + 8009936: 2300 movs r3, #0 + 8009938: 4602 mov r2, r0 + 800993a: 6ae6 ldr r6, [r4, #44] ; 0x2c + 800993c: 4628 mov r0, r5 + 800993e: 6a21 ldr r1, [r4, #32] + 8009940: 47b0 blx r6 + 8009942: 1c43 adds r3, r0, #1 + 8009944: 89a3 ldrh r3, [r4, #12] + 8009946: d106 bne.n 8009956 <__sflush_r+0x66> + 8009948: 6829 ldr r1, [r5, #0] + 800994a: 291d cmp r1, #29 + 800994c: d82c bhi.n 80099a8 <__sflush_r+0xb8> + 800994e: 4a2a ldr r2, [pc, #168] ; (80099f8 <__sflush_r+0x108>) + 8009950: 40ca lsrs r2, r1 + 8009952: 07d6 lsls r6, r2, #31 + 8009954: d528 bpl.n 80099a8 <__sflush_r+0xb8> + 8009956: 2200 movs r2, #0 + 8009958: 6062 str r2, [r4, #4] + 800995a: 6922 ldr r2, [r4, #16] + 800995c: 04d9 lsls r1, r3, #19 + 800995e: 6022 str r2, [r4, #0] + 8009960: d504 bpl.n 800996c <__sflush_r+0x7c> + 8009962: 1c42 adds r2, r0, #1 + 8009964: d101 bne.n 800996a <__sflush_r+0x7a> + 8009966: 682b ldr r3, [r5, #0] + 8009968: b903 cbnz r3, 800996c <__sflush_r+0x7c> + 800996a: 6560 str r0, [r4, #84] ; 0x54 + 800996c: 6b61 ldr r1, [r4, #52] ; 0x34 + 800996e: 602f str r7, [r5, #0] + 8009970: 2900 cmp r1, #0 + 8009972: d0ca beq.n 800990a <__sflush_r+0x1a> + 8009974: f104 0344 add.w r3, r4, #68 ; 0x44 + 8009978: 4299 cmp r1, r3 + 800997a: d002 beq.n 8009982 <__sflush_r+0x92> + 800997c: 4628 mov r0, r5 + 800997e: f7fd fc3b bl 80071f8 <_free_r> + 8009982: 2000 movs r0, #0 + 8009984: 6360 str r0, [r4, #52] ; 0x34 + 8009986: e7c1 b.n 800990c <__sflush_r+0x1c> + 8009988: 6a21 ldr r1, [r4, #32] + 800998a: 2301 movs r3, #1 + 800998c: 4628 mov r0, r5 + 800998e: 47b0 blx r6 + 8009990: 1c41 adds r1, r0, #1 + 8009992: d1c7 bne.n 8009924 <__sflush_r+0x34> + 8009994: 682b ldr r3, [r5, #0] + 8009996: 2b00 cmp r3, #0 + 8009998: d0c4 beq.n 8009924 <__sflush_r+0x34> + 800999a: 2b1d cmp r3, #29 + 800999c: d001 beq.n 80099a2 <__sflush_r+0xb2> + 800999e: 2b16 cmp r3, #22 + 80099a0: d101 bne.n 80099a6 <__sflush_r+0xb6> + 80099a2: 602f str r7, [r5, #0] + 80099a4: e7b1 b.n 800990a <__sflush_r+0x1a> + 80099a6: 89a3 ldrh r3, [r4, #12] + 80099a8: f043 0340 orr.w r3, r3, #64 ; 0x40 + 80099ac: 81a3 strh r3, [r4, #12] + 80099ae: e7ad b.n 800990c <__sflush_r+0x1c> + 80099b0: 690f ldr r7, [r1, #16] + 80099b2: 2f00 cmp r7, #0 + 80099b4: d0a9 beq.n 800990a <__sflush_r+0x1a> + 80099b6: 0793 lsls r3, r2, #30 + 80099b8: bf18 it ne + 80099ba: 2300 movne r3, #0 + 80099bc: 680e ldr r6, [r1, #0] + 80099be: bf08 it eq + 80099c0: 694b ldreq r3, [r1, #20] + 80099c2: eba6 0807 sub.w r8, r6, r7 + 80099c6: 600f str r7, [r1, #0] + 80099c8: 608b str r3, [r1, #8] + 80099ca: f1b8 0f00 cmp.w r8, #0 + 80099ce: dd9c ble.n 800990a <__sflush_r+0x1a> + 80099d0: 4643 mov r3, r8 + 80099d2: 463a mov r2, r7 + 80099d4: 4628 mov r0, r5 + 80099d6: 6a21 ldr r1, [r4, #32] + 80099d8: 6aa6 ldr r6, [r4, #40] ; 0x28 + 80099da: 47b0 blx r6 + 80099dc: 2800 cmp r0, #0 + 80099de: dc06 bgt.n 80099ee <__sflush_r+0xfe> + 80099e0: 89a3 ldrh r3, [r4, #12] + 80099e2: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80099e6: f043 0340 orr.w r3, r3, #64 ; 0x40 + 80099ea: 81a3 strh r3, [r4, #12] + 80099ec: e78e b.n 800990c <__sflush_r+0x1c> + 80099ee: 4407 add r7, r0 + 80099f0: eba8 0800 sub.w r8, r8, r0 + 80099f4: e7e9 b.n 80099ca <__sflush_r+0xda> + 80099f6: bf00 nop + 80099f8: 20400001 .word 0x20400001 -08009704 <_close_r>: - 8009704: b538 push {r3, r4, r5, lr} - 8009706: 2300 movs r3, #0 - 8009708: 4d05 ldr r5, [pc, #20] ; (8009720 <_close_r+0x1c>) - 800970a: 4604 mov r4, r0 - 800970c: 4608 mov r0, r1 - 800970e: 602b str r3, [r5, #0] - 8009710: f7f8 f885 bl 800181e <_close> - 8009714: 1c43 adds r3, r0, #1 - 8009716: d102 bne.n 800971e <_close_r+0x1a> - 8009718: 682b ldr r3, [r5, #0] - 800971a: b103 cbz r3, 800971e <_close_r+0x1a> - 800971c: 6023 str r3, [r4, #0] - 800971e: bd38 pop {r3, r4, r5, pc} - 8009720: 20002454 .word 0x20002454 +080099fc <_fflush_r>: + 80099fc: b538 push {r3, r4, r5, lr} + 80099fe: 690b ldr r3, [r1, #16] + 8009a00: 4605 mov r5, r0 + 8009a02: 460c mov r4, r1 + 8009a04: b913 cbnz r3, 8009a0c <_fflush_r+0x10> + 8009a06: 2500 movs r5, #0 + 8009a08: 4628 mov r0, r5 + 8009a0a: bd38 pop {r3, r4, r5, pc} + 8009a0c: b118 cbz r0, 8009a16 <_fflush_r+0x1a> + 8009a0e: 6983 ldr r3, [r0, #24] + 8009a10: b90b cbnz r3, 8009a16 <_fflush_r+0x1a> + 8009a12: f000 f887 bl 8009b24 <__sinit> + 8009a16: 4b14 ldr r3, [pc, #80] ; (8009a68 <_fflush_r+0x6c>) + 8009a18: 429c cmp r4, r3 + 8009a1a: d11b bne.n 8009a54 <_fflush_r+0x58> + 8009a1c: 686c ldr r4, [r5, #4] + 8009a1e: f9b4 300c ldrsh.w r3, [r4, #12] + 8009a22: 2b00 cmp r3, #0 + 8009a24: d0ef beq.n 8009a06 <_fflush_r+0xa> + 8009a26: 6e62 ldr r2, [r4, #100] ; 0x64 + 8009a28: 07d0 lsls r0, r2, #31 + 8009a2a: d404 bmi.n 8009a36 <_fflush_r+0x3a> + 8009a2c: 0599 lsls r1, r3, #22 + 8009a2e: d402 bmi.n 8009a36 <_fflush_r+0x3a> + 8009a30: 6da0 ldr r0, [r4, #88] ; 0x58 + 8009a32: f7ff fcdc bl 80093ee <__retarget_lock_acquire_recursive> + 8009a36: 4628 mov r0, r5 + 8009a38: 4621 mov r1, r4 + 8009a3a: f7ff ff59 bl 80098f0 <__sflush_r> + 8009a3e: 6e63 ldr r3, [r4, #100] ; 0x64 + 8009a40: 4605 mov r5, r0 + 8009a42: 07da lsls r2, r3, #31 + 8009a44: d4e0 bmi.n 8009a08 <_fflush_r+0xc> + 8009a46: 89a3 ldrh r3, [r4, #12] + 8009a48: 059b lsls r3, r3, #22 + 8009a4a: d4dd bmi.n 8009a08 <_fflush_r+0xc> + 8009a4c: 6da0 ldr r0, [r4, #88] ; 0x58 + 8009a4e: f7ff fccf bl 80093f0 <__retarget_lock_release_recursive> + 8009a52: e7d9 b.n 8009a08 <_fflush_r+0xc> + 8009a54: 4b05 ldr r3, [pc, #20] ; (8009a6c <_fflush_r+0x70>) + 8009a56: 429c cmp r4, r3 + 8009a58: d101 bne.n 8009a5e <_fflush_r+0x62> + 8009a5a: 68ac ldr r4, [r5, #8] + 8009a5c: e7df b.n 8009a1e <_fflush_r+0x22> + 8009a5e: 4b04 ldr r3, [pc, #16] ; (8009a70 <_fflush_r+0x74>) + 8009a60: 429c cmp r4, r3 + 8009a62: bf08 it eq + 8009a64: 68ec ldreq r4, [r5, #12] + 8009a66: e7da b.n 8009a1e <_fflush_r+0x22> + 8009a68: 0800b274 .word 0x0800b274 + 8009a6c: 0800b294 .word 0x0800b294 + 8009a70: 0800b254 .word 0x0800b254 -08009724 <_fstat_r>: - 8009724: b538 push {r3, r4, r5, lr} - 8009726: 2300 movs r3, #0 - 8009728: 4d06 ldr r5, [pc, #24] ; (8009744 <_fstat_r+0x20>) - 800972a: 4604 mov r4, r0 - 800972c: 4608 mov r0, r1 - 800972e: 4611 mov r1, r2 - 8009730: 602b str r3, [r5, #0] - 8009732: f7f8 f87f bl 8001834 <_fstat> - 8009736: 1c43 adds r3, r0, #1 - 8009738: d102 bne.n 8009740 <_fstat_r+0x1c> - 800973a: 682b ldr r3, [r5, #0] - 800973c: b103 cbz r3, 8009740 <_fstat_r+0x1c> - 800973e: 6023 str r3, [r4, #0] - 8009740: bd38 pop {r3, r4, r5, pc} - 8009742: bf00 nop - 8009744: 20002454 .word 0x20002454 +08009a74 : + 8009a74: 2300 movs r3, #0 + 8009a76: b510 push {r4, lr} + 8009a78: 4604 mov r4, r0 + 8009a7a: e9c0 3300 strd r3, r3, [r0] + 8009a7e: e9c0 3304 strd r3, r3, [r0, #16] + 8009a82: 6083 str r3, [r0, #8] + 8009a84: 8181 strh r1, [r0, #12] + 8009a86: 6643 str r3, [r0, #100] ; 0x64 + 8009a88: 81c2 strh r2, [r0, #14] + 8009a8a: 6183 str r3, [r0, #24] + 8009a8c: 4619 mov r1, r3 + 8009a8e: 2208 movs r2, #8 + 8009a90: 305c adds r0, #92 ; 0x5c + 8009a92: f7fd fba9 bl 80071e8 + 8009a96: 4b05 ldr r3, [pc, #20] ; (8009aac ) + 8009a98: 6224 str r4, [r4, #32] + 8009a9a: 6263 str r3, [r4, #36] ; 0x24 + 8009a9c: 4b04 ldr r3, [pc, #16] ; (8009ab0 ) + 8009a9e: 62a3 str r3, [r4, #40] ; 0x28 + 8009aa0: 4b04 ldr r3, [pc, #16] ; (8009ab4 ) + 8009aa2: 62e3 str r3, [r4, #44] ; 0x2c + 8009aa4: 4b04 ldr r3, [pc, #16] ; (8009ab8 ) + 8009aa6: 6323 str r3, [r4, #48] ; 0x30 + 8009aa8: bd10 pop {r4, pc} + 8009aaa: bf00 nop + 8009aac: 08009dc1 .word 0x08009dc1 + 8009ab0: 08009de3 .word 0x08009de3 + 8009ab4: 08009e1b .word 0x08009e1b + 8009ab8: 08009e3f .word 0x08009e3f -08009748 <_isatty_r>: - 8009748: b538 push {r3, r4, r5, lr} - 800974a: 2300 movs r3, #0 - 800974c: 4d05 ldr r5, [pc, #20] ; (8009764 <_isatty_r+0x1c>) - 800974e: 4604 mov r4, r0 - 8009750: 4608 mov r0, r1 - 8009752: 602b str r3, [r5, #0] - 8009754: f7f8 f87d bl 8001852 <_isatty> - 8009758: 1c43 adds r3, r0, #1 - 800975a: d102 bne.n 8009762 <_isatty_r+0x1a> - 800975c: 682b ldr r3, [r5, #0] - 800975e: b103 cbz r3, 8009762 <_isatty_r+0x1a> - 8009760: 6023 str r3, [r4, #0] - 8009762: bd38 pop {r3, r4, r5, pc} - 8009764: 20002454 .word 0x20002454 +08009abc <_cleanup_r>: + 8009abc: 4901 ldr r1, [pc, #4] ; (8009ac4 <_cleanup_r+0x8>) + 8009abe: f000 b8af b.w 8009c20 <_fwalk_reent> + 8009ac2: bf00 nop + 8009ac4: 080099fd .word 0x080099fd -08009768 <_lseek_r>: - 8009768: b538 push {r3, r4, r5, lr} - 800976a: 4604 mov r4, r0 - 800976c: 4608 mov r0, r1 - 800976e: 4611 mov r1, r2 - 8009770: 2200 movs r2, #0 - 8009772: 4d05 ldr r5, [pc, #20] ; (8009788 <_lseek_r+0x20>) - 8009774: 602a str r2, [r5, #0] - 8009776: 461a mov r2, r3 - 8009778: f7f8 f875 bl 8001866 <_lseek> - 800977c: 1c43 adds r3, r0, #1 - 800977e: d102 bne.n 8009786 <_lseek_r+0x1e> - 8009780: 682b ldr r3, [r5, #0] - 8009782: b103 cbz r3, 8009786 <_lseek_r+0x1e> - 8009784: 6023 str r3, [r4, #0] - 8009786: bd38 pop {r3, r4, r5, pc} - 8009788: 20002454 .word 0x20002454 +08009ac8 <__sfmoreglue>: + 8009ac8: b570 push {r4, r5, r6, lr} + 8009aca: 2568 movs r5, #104 ; 0x68 + 8009acc: 1e4a subs r2, r1, #1 + 8009ace: 4355 muls r5, r2 + 8009ad0: 460e mov r6, r1 + 8009ad2: f105 0174 add.w r1, r5, #116 ; 0x74 + 8009ad6: f7fd fbdb bl 8007290 <_malloc_r> + 8009ada: 4604 mov r4, r0 + 8009adc: b140 cbz r0, 8009af0 <__sfmoreglue+0x28> + 8009ade: 2100 movs r1, #0 + 8009ae0: e9c0 1600 strd r1, r6, [r0] + 8009ae4: 300c adds r0, #12 + 8009ae6: 60a0 str r0, [r4, #8] + 8009ae8: f105 0268 add.w r2, r5, #104 ; 0x68 + 8009aec: f7fd fb7c bl 80071e8 + 8009af0: 4620 mov r0, r4 + 8009af2: bd70 pop {r4, r5, r6, pc} -0800978c <_read_r>: - 800978c: b538 push {r3, r4, r5, lr} - 800978e: 4604 mov r4, r0 - 8009790: 4608 mov r0, r1 - 8009792: 4611 mov r1, r2 - 8009794: 2200 movs r2, #0 - 8009796: 4d05 ldr r5, [pc, #20] ; (80097ac <_read_r+0x20>) - 8009798: 602a str r2, [r5, #0] - 800979a: 461a mov r2, r3 - 800979c: f7f8 f806 bl 80017ac <_read> - 80097a0: 1c43 adds r3, r0, #1 - 80097a2: d102 bne.n 80097aa <_read_r+0x1e> - 80097a4: 682b ldr r3, [r5, #0] - 80097a6: b103 cbz r3, 80097aa <_read_r+0x1e> - 80097a8: 6023 str r3, [r4, #0] - 80097aa: bd38 pop {r3, r4, r5, pc} - 80097ac: 20002454 .word 0x20002454 +08009af4 <__sfp_lock_acquire>: + 8009af4: 4801 ldr r0, [pc, #4] ; (8009afc <__sfp_lock_acquire+0x8>) + 8009af6: f7ff bc7a b.w 80093ee <__retarget_lock_acquire_recursive> + 8009afa: bf00 nop + 8009afc: 200024a8 .word 0x200024a8 -080097b0 : - 80097b0: b538 push {r3, r4, r5, lr} - 80097b2: 4605 mov r5, r0 - 80097b4: f000 f81e bl 80097f4 <__ieee754_sqrtf> - 80097b8: 4b0d ldr r3, [pc, #52] ; (80097f0 ) - 80097ba: 4604 mov r4, r0 - 80097bc: f993 3000 ldrsb.w r3, [r3] - 80097c0: 3301 adds r3, #1 - 80097c2: d012 beq.n 80097ea - 80097c4: 4629 mov r1, r5 - 80097c6: 4628 mov r0, r5 - 80097c8: f7f7 fcee bl 80011a8 <__aeabi_fcmpun> - 80097cc: b968 cbnz r0, 80097ea - 80097ce: 2100 movs r1, #0 - 80097d0: 4628 mov r0, r5 - 80097d2: f7f7 fcc1 bl 8001158 <__aeabi_fcmplt> - 80097d6: b140 cbz r0, 80097ea - 80097d8: f7fd f918 bl 8006a0c <__errno> - 80097dc: 2321 movs r3, #33 ; 0x21 - 80097de: 2100 movs r1, #0 - 80097e0: 6003 str r3, [r0, #0] - 80097e2: 4608 mov r0, r1 - 80097e4: f7f7 fbce bl 8000f84 <__aeabi_fdiv> - 80097e8: 4604 mov r4, r0 - 80097ea: 4620 mov r0, r4 - 80097ec: bd38 pop {r3, r4, r5, pc} - 80097ee: bf00 nop - 80097f0: 200001dc .word 0x200001dc +08009b00 <__sfp_lock_release>: + 8009b00: 4801 ldr r0, [pc, #4] ; (8009b08 <__sfp_lock_release+0x8>) + 8009b02: f7ff bc75 b.w 80093f0 <__retarget_lock_release_recursive> + 8009b06: bf00 nop + 8009b08: 200024a8 .word 0x200024a8 -080097f4 <__ieee754_sqrtf>: - 80097f4: f020 4200 bic.w r2, r0, #2147483648 ; 0x80000000 - 80097f8: f1b2 4fff cmp.w r2, #2139095040 ; 0x7f800000 - 80097fc: b570 push {r4, r5, r6, lr} - 80097fe: 4603 mov r3, r0 - 8009800: 4604 mov r4, r0 - 8009802: d309 bcc.n 8009818 <__ieee754_sqrtf+0x24> - 8009804: 4601 mov r1, r0 - 8009806: f7f7 fb09 bl 8000e1c <__aeabi_fmul> - 800980a: 4601 mov r1, r0 - 800980c: 4620 mov r0, r4 - 800980e: f7f7 f9fd bl 8000c0c <__addsf3> - 8009812: 4604 mov r4, r0 - 8009814: 4620 mov r0, r4 - 8009816: bd70 pop {r4, r5, r6, pc} - 8009818: 2a00 cmp r2, #0 - 800981a: d0fb beq.n 8009814 <__ieee754_sqrtf+0x20> - 800981c: 2800 cmp r0, #0 - 800981e: da06 bge.n 800982e <__ieee754_sqrtf+0x3a> - 8009820: 4601 mov r1, r0 - 8009822: f7f7 f9f1 bl 8000c08 <__aeabi_fsub> - 8009826: 4601 mov r1, r0 - 8009828: f7f7 fbac bl 8000f84 <__aeabi_fdiv> - 800982c: e7f1 b.n 8009812 <__ieee754_sqrtf+0x1e> - 800982e: f010 42ff ands.w r2, r0, #2139095040 ; 0x7f800000 - 8009832: ea4f 51e0 mov.w r1, r0, asr #23 - 8009836: d029 beq.n 800988c <__ieee754_sqrtf+0x98> - 8009838: f3c3 0216 ubfx r2, r3, #0, #23 - 800983c: 07cb lsls r3, r1, #31 - 800983e: f04f 0300 mov.w r3, #0 - 8009842: f1a1 007f sub.w r0, r1, #127 ; 0x7f - 8009846: f04f 0419 mov.w r4, #25 - 800984a: 461e mov r6, r3 - 800984c: f04f 7180 mov.w r1, #16777216 ; 0x1000000 - 8009850: f442 0200 orr.w r2, r2, #8388608 ; 0x800000 - 8009854: bf58 it pl - 8009856: 0052 lslpl r2, r2, #1 - 8009858: 1040 asrs r0, r0, #1 - 800985a: 0052 lsls r2, r2, #1 - 800985c: 1875 adds r5, r6, r1 - 800985e: 4295 cmp r5, r2 - 8009860: bfde ittt le - 8009862: 186e addle r6, r5, r1 - 8009864: 1b52 suble r2, r2, r5 - 8009866: 185b addle r3, r3, r1 - 8009868: 3c01 subs r4, #1 - 800986a: ea4f 0242 mov.w r2, r2, lsl #1 - 800986e: ea4f 0151 mov.w r1, r1, lsr #1 - 8009872: d1f3 bne.n 800985c <__ieee754_sqrtf+0x68> - 8009874: b112 cbz r2, 800987c <__ieee754_sqrtf+0x88> - 8009876: 3301 adds r3, #1 - 8009878: f023 0301 bic.w r3, r3, #1 - 800987c: 105c asrs r4, r3, #1 - 800987e: f104 547c add.w r4, r4, #1056964608 ; 0x3f000000 - 8009882: eb04 54c0 add.w r4, r4, r0, lsl #23 - 8009886: e7c5 b.n 8009814 <__ieee754_sqrtf+0x20> - 8009888: 005b lsls r3, r3, #1 - 800988a: 3201 adds r2, #1 - 800988c: 0218 lsls r0, r3, #8 - 800988e: d5fb bpl.n 8009888 <__ieee754_sqrtf+0x94> - 8009890: 3a01 subs r2, #1 - 8009892: 1a89 subs r1, r1, r2 - 8009894: e7d0 b.n 8009838 <__ieee754_sqrtf+0x44> +08009b0c <__sinit_lock_acquire>: + 8009b0c: 4801 ldr r0, [pc, #4] ; (8009b14 <__sinit_lock_acquire+0x8>) + 8009b0e: f7ff bc6e b.w 80093ee <__retarget_lock_acquire_recursive> + 8009b12: bf00 nop + 8009b14: 200024a3 .word 0x200024a3 + +08009b18 <__sinit_lock_release>: + 8009b18: 4801 ldr r0, [pc, #4] ; (8009b20 <__sinit_lock_release+0x8>) + 8009b1a: f7ff bc69 b.w 80093f0 <__retarget_lock_release_recursive> + 8009b1e: bf00 nop + 8009b20: 200024a3 .word 0x200024a3 + +08009b24 <__sinit>: + 8009b24: b510 push {r4, lr} + 8009b26: 4604 mov r4, r0 + 8009b28: f7ff fff0 bl 8009b0c <__sinit_lock_acquire> + 8009b2c: 69a3 ldr r3, [r4, #24] + 8009b2e: b11b cbz r3, 8009b38 <__sinit+0x14> + 8009b30: e8bd 4010 ldmia.w sp!, {r4, lr} + 8009b34: f7ff bff0 b.w 8009b18 <__sinit_lock_release> + 8009b38: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 + 8009b3c: 6523 str r3, [r4, #80] ; 0x50 + 8009b3e: 4b13 ldr r3, [pc, #76] ; (8009b8c <__sinit+0x68>) + 8009b40: 4a13 ldr r2, [pc, #76] ; (8009b90 <__sinit+0x6c>) + 8009b42: 681b ldr r3, [r3, #0] + 8009b44: 62a2 str r2, [r4, #40] ; 0x28 + 8009b46: 42a3 cmp r3, r4 + 8009b48: bf08 it eq + 8009b4a: 2301 moveq r3, #1 + 8009b4c: 4620 mov r0, r4 + 8009b4e: bf08 it eq + 8009b50: 61a3 streq r3, [r4, #24] + 8009b52: f000 f81f bl 8009b94 <__sfp> + 8009b56: 6060 str r0, [r4, #4] + 8009b58: 4620 mov r0, r4 + 8009b5a: f000 f81b bl 8009b94 <__sfp> + 8009b5e: 60a0 str r0, [r4, #8] + 8009b60: 4620 mov r0, r4 + 8009b62: f000 f817 bl 8009b94 <__sfp> + 8009b66: 2200 movs r2, #0 + 8009b68: 2104 movs r1, #4 + 8009b6a: 60e0 str r0, [r4, #12] + 8009b6c: 6860 ldr r0, [r4, #4] + 8009b6e: f7ff ff81 bl 8009a74 + 8009b72: 2201 movs r2, #1 + 8009b74: 2109 movs r1, #9 + 8009b76: 68a0 ldr r0, [r4, #8] + 8009b78: f7ff ff7c bl 8009a74 + 8009b7c: 2202 movs r2, #2 + 8009b7e: 2112 movs r1, #18 + 8009b80: 68e0 ldr r0, [r4, #12] + 8009b82: f7ff ff77 bl 8009a74 + 8009b86: 2301 movs r3, #1 + 8009b88: 61a3 str r3, [r4, #24] + 8009b8a: e7d1 b.n 8009b30 <__sinit+0xc> + 8009b8c: 0800aed0 .word 0x0800aed0 + 8009b90: 08009abd .word 0x08009abd + +08009b94 <__sfp>: + 8009b94: b5f8 push {r3, r4, r5, r6, r7, lr} + 8009b96: 4607 mov r7, r0 + 8009b98: f7ff ffac bl 8009af4 <__sfp_lock_acquire> + 8009b9c: 4b1e ldr r3, [pc, #120] ; (8009c18 <__sfp+0x84>) + 8009b9e: 681e ldr r6, [r3, #0] + 8009ba0: 69b3 ldr r3, [r6, #24] + 8009ba2: b913 cbnz r3, 8009baa <__sfp+0x16> + 8009ba4: 4630 mov r0, r6 + 8009ba6: f7ff ffbd bl 8009b24 <__sinit> + 8009baa: 3648 adds r6, #72 ; 0x48 + 8009bac: e9d6 3401 ldrd r3, r4, [r6, #4] + 8009bb0: 3b01 subs r3, #1 + 8009bb2: d503 bpl.n 8009bbc <__sfp+0x28> + 8009bb4: 6833 ldr r3, [r6, #0] + 8009bb6: b30b cbz r3, 8009bfc <__sfp+0x68> + 8009bb8: 6836 ldr r6, [r6, #0] + 8009bba: e7f7 b.n 8009bac <__sfp+0x18> + 8009bbc: f9b4 500c ldrsh.w r5, [r4, #12] + 8009bc0: b9d5 cbnz r5, 8009bf8 <__sfp+0x64> + 8009bc2: 4b16 ldr r3, [pc, #88] ; (8009c1c <__sfp+0x88>) + 8009bc4: f104 0058 add.w r0, r4, #88 ; 0x58 + 8009bc8: 60e3 str r3, [r4, #12] + 8009bca: 6665 str r5, [r4, #100] ; 0x64 + 8009bcc: f7ff fc0e bl 80093ec <__retarget_lock_init_recursive> + 8009bd0: f7ff ff96 bl 8009b00 <__sfp_lock_release> + 8009bd4: 2208 movs r2, #8 + 8009bd6: 4629 mov r1, r5 + 8009bd8: e9c4 5501 strd r5, r5, [r4, #4] + 8009bdc: e9c4 5504 strd r5, r5, [r4, #16] + 8009be0: 6025 str r5, [r4, #0] + 8009be2: 61a5 str r5, [r4, #24] + 8009be4: f104 005c add.w r0, r4, #92 ; 0x5c + 8009be8: f7fd fafe bl 80071e8 + 8009bec: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 + 8009bf0: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 + 8009bf4: 4620 mov r0, r4 + 8009bf6: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8009bf8: 3468 adds r4, #104 ; 0x68 + 8009bfa: e7d9 b.n 8009bb0 <__sfp+0x1c> + 8009bfc: 2104 movs r1, #4 + 8009bfe: 4638 mov r0, r7 + 8009c00: f7ff ff62 bl 8009ac8 <__sfmoreglue> + 8009c04: 4604 mov r4, r0 + 8009c06: 6030 str r0, [r6, #0] + 8009c08: 2800 cmp r0, #0 + 8009c0a: d1d5 bne.n 8009bb8 <__sfp+0x24> + 8009c0c: f7ff ff78 bl 8009b00 <__sfp_lock_release> + 8009c10: 230c movs r3, #12 + 8009c12: 603b str r3, [r7, #0] + 8009c14: e7ee b.n 8009bf4 <__sfp+0x60> + 8009c16: bf00 nop + 8009c18: 0800aed0 .word 0x0800aed0 + 8009c1c: ffff0001 .word 0xffff0001 + +08009c20 <_fwalk_reent>: + 8009c20: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 8009c24: 4606 mov r6, r0 + 8009c26: 4688 mov r8, r1 + 8009c28: 2700 movs r7, #0 + 8009c2a: f100 0448 add.w r4, r0, #72 ; 0x48 + 8009c2e: e9d4 9501 ldrd r9, r5, [r4, #4] + 8009c32: f1b9 0901 subs.w r9, r9, #1 + 8009c36: d505 bpl.n 8009c44 <_fwalk_reent+0x24> + 8009c38: 6824 ldr r4, [r4, #0] + 8009c3a: 2c00 cmp r4, #0 + 8009c3c: d1f7 bne.n 8009c2e <_fwalk_reent+0xe> + 8009c3e: 4638 mov r0, r7 + 8009c40: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 8009c44: 89ab ldrh r3, [r5, #12] + 8009c46: 2b01 cmp r3, #1 + 8009c48: d907 bls.n 8009c5a <_fwalk_reent+0x3a> + 8009c4a: f9b5 300e ldrsh.w r3, [r5, #14] + 8009c4e: 3301 adds r3, #1 + 8009c50: d003 beq.n 8009c5a <_fwalk_reent+0x3a> + 8009c52: 4629 mov r1, r5 + 8009c54: 4630 mov r0, r6 + 8009c56: 47c0 blx r8 + 8009c58: 4307 orrs r7, r0 + 8009c5a: 3568 adds r5, #104 ; 0x68 + 8009c5c: e7e9 b.n 8009c32 <_fwalk_reent+0x12> + +08009c5e <__swhatbuf_r>: + 8009c5e: b570 push {r4, r5, r6, lr} + 8009c60: 460e mov r6, r1 + 8009c62: f9b1 100e ldrsh.w r1, [r1, #14] + 8009c66: 4614 mov r4, r2 + 8009c68: 2900 cmp r1, #0 + 8009c6a: 461d mov r5, r3 + 8009c6c: b096 sub sp, #88 ; 0x58 + 8009c6e: da07 bge.n 8009c80 <__swhatbuf_r+0x22> + 8009c70: 2300 movs r3, #0 + 8009c72: 602b str r3, [r5, #0] + 8009c74: 89b3 ldrh r3, [r6, #12] + 8009c76: 061a lsls r2, r3, #24 + 8009c78: d410 bmi.n 8009c9c <__swhatbuf_r+0x3e> + 8009c7a: f44f 6380 mov.w r3, #1024 ; 0x400 + 8009c7e: e00e b.n 8009c9e <__swhatbuf_r+0x40> + 8009c80: 466a mov r2, sp + 8009c82: f000 f903 bl 8009e8c <_fstat_r> + 8009c86: 2800 cmp r0, #0 + 8009c88: dbf2 blt.n 8009c70 <__swhatbuf_r+0x12> + 8009c8a: 9a01 ldr r2, [sp, #4] + 8009c8c: f402 4270 and.w r2, r2, #61440 ; 0xf000 + 8009c90: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 + 8009c94: 425a negs r2, r3 + 8009c96: 415a adcs r2, r3 + 8009c98: 602a str r2, [r5, #0] + 8009c9a: e7ee b.n 8009c7a <__swhatbuf_r+0x1c> + 8009c9c: 2340 movs r3, #64 ; 0x40 + 8009c9e: 2000 movs r0, #0 + 8009ca0: 6023 str r3, [r4, #0] + 8009ca2: b016 add sp, #88 ; 0x58 + 8009ca4: bd70 pop {r4, r5, r6, pc} ... -08009898 <_init>: - 8009898: b5f8 push {r3, r4, r5, r6, r7, lr} - 800989a: bf00 nop - 800989c: bcf8 pop {r3, r4, r5, r6, r7} - 800989e: bc08 pop {r3} - 80098a0: 469e mov lr, r3 - 80098a2: 4770 bx lr +08009ca8 <__smakebuf_r>: + 8009ca8: 898b ldrh r3, [r1, #12] + 8009caa: b573 push {r0, r1, r4, r5, r6, lr} + 8009cac: 079d lsls r5, r3, #30 + 8009cae: 4606 mov r6, r0 + 8009cb0: 460c mov r4, r1 + 8009cb2: d507 bpl.n 8009cc4 <__smakebuf_r+0x1c> + 8009cb4: f104 0347 add.w r3, r4, #71 ; 0x47 + 8009cb8: 6023 str r3, [r4, #0] + 8009cba: 6123 str r3, [r4, #16] + 8009cbc: 2301 movs r3, #1 + 8009cbe: 6163 str r3, [r4, #20] + 8009cc0: b002 add sp, #8 + 8009cc2: bd70 pop {r4, r5, r6, pc} + 8009cc4: 466a mov r2, sp + 8009cc6: ab01 add r3, sp, #4 + 8009cc8: f7ff ffc9 bl 8009c5e <__swhatbuf_r> + 8009ccc: 9900 ldr r1, [sp, #0] + 8009cce: 4605 mov r5, r0 + 8009cd0: 4630 mov r0, r6 + 8009cd2: f7fd fadd bl 8007290 <_malloc_r> + 8009cd6: b948 cbnz r0, 8009cec <__smakebuf_r+0x44> + 8009cd8: f9b4 300c ldrsh.w r3, [r4, #12] + 8009cdc: 059a lsls r2, r3, #22 + 8009cde: d4ef bmi.n 8009cc0 <__smakebuf_r+0x18> + 8009ce0: f023 0303 bic.w r3, r3, #3 + 8009ce4: f043 0302 orr.w r3, r3, #2 + 8009ce8: 81a3 strh r3, [r4, #12] + 8009cea: e7e3 b.n 8009cb4 <__smakebuf_r+0xc> + 8009cec: 4b0d ldr r3, [pc, #52] ; (8009d24 <__smakebuf_r+0x7c>) + 8009cee: 62b3 str r3, [r6, #40] ; 0x28 + 8009cf0: 89a3 ldrh r3, [r4, #12] + 8009cf2: 6020 str r0, [r4, #0] + 8009cf4: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8009cf8: 81a3 strh r3, [r4, #12] + 8009cfa: 9b00 ldr r3, [sp, #0] + 8009cfc: 6120 str r0, [r4, #16] + 8009cfe: 6163 str r3, [r4, #20] + 8009d00: 9b01 ldr r3, [sp, #4] + 8009d02: b15b cbz r3, 8009d1c <__smakebuf_r+0x74> + 8009d04: 4630 mov r0, r6 + 8009d06: f9b4 100e ldrsh.w r1, [r4, #14] + 8009d0a: f000 f8d1 bl 8009eb0 <_isatty_r> + 8009d0e: b128 cbz r0, 8009d1c <__smakebuf_r+0x74> + 8009d10: 89a3 ldrh r3, [r4, #12] + 8009d12: f023 0303 bic.w r3, r3, #3 + 8009d16: f043 0301 orr.w r3, r3, #1 + 8009d1a: 81a3 strh r3, [r4, #12] + 8009d1c: 89a0 ldrh r0, [r4, #12] + 8009d1e: 4305 orrs r5, r0 + 8009d20: 81a5 strh r5, [r4, #12] + 8009d22: e7cd b.n 8009cc0 <__smakebuf_r+0x18> + 8009d24: 08009abd .word 0x08009abd -080098a4 <_fini>: - 80098a4: b5f8 push {r3, r4, r5, r6, r7, lr} - 80098a6: bf00 nop - 80098a8: bcf8 pop {r3, r4, r5, r6, r7} - 80098aa: bc08 pop {r3} - 80098ac: 469e mov lr, r3 - 80098ae: 4770 bx lr +08009d28 <_malloc_usable_size_r>: + 8009d28: f851 3c04 ldr.w r3, [r1, #-4] + 8009d2c: 1f18 subs r0, r3, #4 + 8009d2e: 2b00 cmp r3, #0 + 8009d30: bfbc itt lt + 8009d32: 580b ldrlt r3, [r1, r0] + 8009d34: 18c0 addlt r0, r0, r3 + 8009d36: 4770 bx lr + +08009d38 <_raise_r>: + 8009d38: 291f cmp r1, #31 + 8009d3a: b538 push {r3, r4, r5, lr} + 8009d3c: 4604 mov r4, r0 + 8009d3e: 460d mov r5, r1 + 8009d40: d904 bls.n 8009d4c <_raise_r+0x14> + 8009d42: 2316 movs r3, #22 + 8009d44: 6003 str r3, [r0, #0] + 8009d46: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009d4a: bd38 pop {r3, r4, r5, pc} + 8009d4c: 6c42 ldr r2, [r0, #68] ; 0x44 + 8009d4e: b112 cbz r2, 8009d56 <_raise_r+0x1e> + 8009d50: f852 3021 ldr.w r3, [r2, r1, lsl #2] + 8009d54: b94b cbnz r3, 8009d6a <_raise_r+0x32> + 8009d56: 4620 mov r0, r4 + 8009d58: f000 f830 bl 8009dbc <_getpid_r> + 8009d5c: 462a mov r2, r5 + 8009d5e: 4601 mov r1, r0 + 8009d60: 4620 mov r0, r4 + 8009d62: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 8009d66: f000 b817 b.w 8009d98 <_kill_r> + 8009d6a: 2b01 cmp r3, #1 + 8009d6c: d00a beq.n 8009d84 <_raise_r+0x4c> + 8009d6e: 1c59 adds r1, r3, #1 + 8009d70: d103 bne.n 8009d7a <_raise_r+0x42> + 8009d72: 2316 movs r3, #22 + 8009d74: 6003 str r3, [r0, #0] + 8009d76: 2001 movs r0, #1 + 8009d78: e7e7 b.n 8009d4a <_raise_r+0x12> + 8009d7a: 2400 movs r4, #0 + 8009d7c: 4628 mov r0, r5 + 8009d7e: f842 4025 str.w r4, [r2, r5, lsl #2] + 8009d82: 4798 blx r3 + 8009d84: 2000 movs r0, #0 + 8009d86: e7e0 b.n 8009d4a <_raise_r+0x12> + +08009d88 : + 8009d88: 4b02 ldr r3, [pc, #8] ; (8009d94 ) + 8009d8a: 4601 mov r1, r0 + 8009d8c: 6818 ldr r0, [r3, #0] + 8009d8e: f7ff bfd3 b.w 8009d38 <_raise_r> + 8009d92: bf00 nop + 8009d94: 2000000c .word 0x2000000c + +08009d98 <_kill_r>: + 8009d98: b538 push {r3, r4, r5, lr} + 8009d9a: 2300 movs r3, #0 + 8009d9c: 4d06 ldr r5, [pc, #24] ; (8009db8 <_kill_r+0x20>) + 8009d9e: 4604 mov r4, r0 + 8009da0: 4608 mov r0, r1 + 8009da2: 4611 mov r1, r2 + 8009da4: 602b str r3, [r5, #0] + 8009da6: f7f7 fd50 bl 800184a <_kill> + 8009daa: 1c43 adds r3, r0, #1 + 8009dac: d102 bne.n 8009db4 <_kill_r+0x1c> + 8009dae: 682b ldr r3, [r5, #0] + 8009db0: b103 cbz r3, 8009db4 <_kill_r+0x1c> + 8009db2: 6023 str r3, [r4, #0] + 8009db4: bd38 pop {r3, r4, r5, pc} + 8009db6: bf00 nop + 8009db8: 2000249c .word 0x2000249c + +08009dbc <_getpid_r>: + 8009dbc: f7f7 bd3e b.w 800183c <_getpid> + +08009dc0 <__sread>: + 8009dc0: b510 push {r4, lr} + 8009dc2: 460c mov r4, r1 + 8009dc4: f9b1 100e ldrsh.w r1, [r1, #14] + 8009dc8: f000 f894 bl 8009ef4 <_read_r> + 8009dcc: 2800 cmp r0, #0 + 8009dce: bfab itete ge + 8009dd0: 6d63 ldrge r3, [r4, #84] ; 0x54 + 8009dd2: 89a3 ldrhlt r3, [r4, #12] + 8009dd4: 181b addge r3, r3, r0 + 8009dd6: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 + 8009dda: bfac ite ge + 8009ddc: 6563 strge r3, [r4, #84] ; 0x54 + 8009dde: 81a3 strhlt r3, [r4, #12] + 8009de0: bd10 pop {r4, pc} + +08009de2 <__swrite>: + 8009de2: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8009de6: 461f mov r7, r3 + 8009de8: 898b ldrh r3, [r1, #12] + 8009dea: 4605 mov r5, r0 + 8009dec: 05db lsls r3, r3, #23 + 8009dee: 460c mov r4, r1 + 8009df0: 4616 mov r6, r2 + 8009df2: d505 bpl.n 8009e00 <__swrite+0x1e> + 8009df4: 2302 movs r3, #2 + 8009df6: 2200 movs r2, #0 + 8009df8: f9b1 100e ldrsh.w r1, [r1, #14] + 8009dfc: f000 f868 bl 8009ed0 <_lseek_r> + 8009e00: 89a3 ldrh r3, [r4, #12] + 8009e02: 4632 mov r2, r6 + 8009e04: f423 5380 bic.w r3, r3, #4096 ; 0x1000 + 8009e08: 81a3 strh r3, [r4, #12] + 8009e0a: 4628 mov r0, r5 + 8009e0c: 463b mov r3, r7 + 8009e0e: f9b4 100e ldrsh.w r1, [r4, #14] + 8009e12: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} + 8009e16: f000 b817 b.w 8009e48 <_write_r> + +08009e1a <__sseek>: + 8009e1a: b510 push {r4, lr} + 8009e1c: 460c mov r4, r1 + 8009e1e: f9b1 100e ldrsh.w r1, [r1, #14] + 8009e22: f000 f855 bl 8009ed0 <_lseek_r> + 8009e26: 1c43 adds r3, r0, #1 + 8009e28: 89a3 ldrh r3, [r4, #12] + 8009e2a: bf15 itete ne + 8009e2c: 6560 strne r0, [r4, #84] ; 0x54 + 8009e2e: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 + 8009e32: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 + 8009e36: 81a3 strheq r3, [r4, #12] + 8009e38: bf18 it ne + 8009e3a: 81a3 strhne r3, [r4, #12] + 8009e3c: bd10 pop {r4, pc} + +08009e3e <__sclose>: + 8009e3e: f9b1 100e ldrsh.w r1, [r1, #14] + 8009e42: f000 b813 b.w 8009e6c <_close_r> + ... + +08009e48 <_write_r>: + 8009e48: b538 push {r3, r4, r5, lr} + 8009e4a: 4604 mov r4, r0 + 8009e4c: 4608 mov r0, r1 + 8009e4e: 4611 mov r1, r2 + 8009e50: 2200 movs r2, #0 + 8009e52: 4d05 ldr r5, [pc, #20] ; (8009e68 <_write_r+0x20>) + 8009e54: 602a str r2, [r5, #0] + 8009e56: 461a mov r2, r3 + 8009e58: f7f7 fd2e bl 80018b8 <_write> + 8009e5c: 1c43 adds r3, r0, #1 + 8009e5e: d102 bne.n 8009e66 <_write_r+0x1e> + 8009e60: 682b ldr r3, [r5, #0] + 8009e62: b103 cbz r3, 8009e66 <_write_r+0x1e> + 8009e64: 6023 str r3, [r4, #0] + 8009e66: bd38 pop {r3, r4, r5, pc} + 8009e68: 2000249c .word 0x2000249c + +08009e6c <_close_r>: + 8009e6c: b538 push {r3, r4, r5, lr} + 8009e6e: 2300 movs r3, #0 + 8009e70: 4d05 ldr r5, [pc, #20] ; (8009e88 <_close_r+0x1c>) + 8009e72: 4604 mov r4, r0 + 8009e74: 4608 mov r0, r1 + 8009e76: 602b str r3, [r5, #0] + 8009e78: f7f7 fd3a bl 80018f0 <_close> + 8009e7c: 1c43 adds r3, r0, #1 + 8009e7e: d102 bne.n 8009e86 <_close_r+0x1a> + 8009e80: 682b ldr r3, [r5, #0] + 8009e82: b103 cbz r3, 8009e86 <_close_r+0x1a> + 8009e84: 6023 str r3, [r4, #0] + 8009e86: bd38 pop {r3, r4, r5, pc} + 8009e88: 2000249c .word 0x2000249c + +08009e8c <_fstat_r>: + 8009e8c: b538 push {r3, r4, r5, lr} + 8009e8e: 2300 movs r3, #0 + 8009e90: 4d06 ldr r5, [pc, #24] ; (8009eac <_fstat_r+0x20>) + 8009e92: 4604 mov r4, r0 + 8009e94: 4608 mov r0, r1 + 8009e96: 4611 mov r1, r2 + 8009e98: 602b str r3, [r5, #0] + 8009e9a: f7f7 fd34 bl 8001906 <_fstat> + 8009e9e: 1c43 adds r3, r0, #1 + 8009ea0: d102 bne.n 8009ea8 <_fstat_r+0x1c> + 8009ea2: 682b ldr r3, [r5, #0] + 8009ea4: b103 cbz r3, 8009ea8 <_fstat_r+0x1c> + 8009ea6: 6023 str r3, [r4, #0] + 8009ea8: bd38 pop {r3, r4, r5, pc} + 8009eaa: bf00 nop + 8009eac: 2000249c .word 0x2000249c + +08009eb0 <_isatty_r>: + 8009eb0: b538 push {r3, r4, r5, lr} + 8009eb2: 2300 movs r3, #0 + 8009eb4: 4d05 ldr r5, [pc, #20] ; (8009ecc <_isatty_r+0x1c>) + 8009eb6: 4604 mov r4, r0 + 8009eb8: 4608 mov r0, r1 + 8009eba: 602b str r3, [r5, #0] + 8009ebc: f7f7 fd32 bl 8001924 <_isatty> + 8009ec0: 1c43 adds r3, r0, #1 + 8009ec2: d102 bne.n 8009eca <_isatty_r+0x1a> + 8009ec4: 682b ldr r3, [r5, #0] + 8009ec6: b103 cbz r3, 8009eca <_isatty_r+0x1a> + 8009ec8: 6023 str r3, [r4, #0] + 8009eca: bd38 pop {r3, r4, r5, pc} + 8009ecc: 2000249c .word 0x2000249c + +08009ed0 <_lseek_r>: + 8009ed0: b538 push {r3, r4, r5, lr} + 8009ed2: 4604 mov r4, r0 + 8009ed4: 4608 mov r0, r1 + 8009ed6: 4611 mov r1, r2 + 8009ed8: 2200 movs r2, #0 + 8009eda: 4d05 ldr r5, [pc, #20] ; (8009ef0 <_lseek_r+0x20>) + 8009edc: 602a str r2, [r5, #0] + 8009ede: 461a mov r2, r3 + 8009ee0: f7f7 fd2a bl 8001938 <_lseek> + 8009ee4: 1c43 adds r3, r0, #1 + 8009ee6: d102 bne.n 8009eee <_lseek_r+0x1e> + 8009ee8: 682b ldr r3, [r5, #0] + 8009eea: b103 cbz r3, 8009eee <_lseek_r+0x1e> + 8009eec: 6023 str r3, [r4, #0] + 8009eee: bd38 pop {r3, r4, r5, pc} + 8009ef0: 2000249c .word 0x2000249c + +08009ef4 <_read_r>: + 8009ef4: b538 push {r3, r4, r5, lr} + 8009ef6: 4604 mov r4, r0 + 8009ef8: 4608 mov r0, r1 + 8009efa: 4611 mov r1, r2 + 8009efc: 2200 movs r2, #0 + 8009efe: 4d05 ldr r5, [pc, #20] ; (8009f14 <_read_r+0x20>) + 8009f00: 602a str r2, [r5, #0] + 8009f02: 461a mov r2, r3 + 8009f04: f7f7 fcbb bl 800187e <_read> + 8009f08: 1c43 adds r3, r0, #1 + 8009f0a: d102 bne.n 8009f12 <_read_r+0x1e> + 8009f0c: 682b ldr r3, [r5, #0] + 8009f0e: b103 cbz r3, 8009f12 <_read_r+0x1e> + 8009f10: 6023 str r3, [r4, #0] + 8009f12: bd38 pop {r3, r4, r5, pc} + 8009f14: 2000249c .word 0x2000249c + +08009f18 : + 8009f18: b538 push {r3, r4, r5, lr} + 8009f1a: 4605 mov r5, r0 + 8009f1c: f000 f81e bl 8009f5c <__ieee754_sqrtf> + 8009f20: 4b0d ldr r3, [pc, #52] ; (8009f58 ) + 8009f22: 4604 mov r4, r0 + 8009f24: f993 3000 ldrsb.w r3, [r3] + 8009f28: 3301 adds r3, #1 + 8009f2a: d012 beq.n 8009f52 + 8009f2c: 4629 mov r1, r5 + 8009f2e: 4628 mov r0, r5 + 8009f30: f7f7 f93a bl 80011a8 <__aeabi_fcmpun> + 8009f34: b968 cbnz r0, 8009f52 + 8009f36: 2100 movs r1, #0 + 8009f38: 4628 mov r0, r5 + 8009f3a: f7f7 f90d bl 8001158 <__aeabi_fcmplt> + 8009f3e: b140 cbz r0, 8009f52 + 8009f40: f7fd f918 bl 8007174 <__errno> + 8009f44: 2321 movs r3, #33 ; 0x21 + 8009f46: 2100 movs r1, #0 + 8009f48: 6003 str r3, [r0, #0] + 8009f4a: 4608 mov r0, r1 + 8009f4c: f7f7 f81a bl 8000f84 <__aeabi_fdiv> + 8009f50: 4604 mov r4, r0 + 8009f52: 4620 mov r0, r4 + 8009f54: bd38 pop {r3, r4, r5, pc} + 8009f56: bf00 nop + 8009f58: 200001dc .word 0x200001dc + +08009f5c <__ieee754_sqrtf>: + 8009f5c: f020 4200 bic.w r2, r0, #2147483648 ; 0x80000000 + 8009f60: f1b2 4fff cmp.w r2, #2139095040 ; 0x7f800000 + 8009f64: b570 push {r4, r5, r6, lr} + 8009f66: 4603 mov r3, r0 + 8009f68: 4604 mov r4, r0 + 8009f6a: d309 bcc.n 8009f80 <__ieee754_sqrtf+0x24> + 8009f6c: 4601 mov r1, r0 + 8009f6e: f7f6 ff55 bl 8000e1c <__aeabi_fmul> + 8009f72: 4601 mov r1, r0 + 8009f74: 4620 mov r0, r4 + 8009f76: f7f6 fe49 bl 8000c0c <__addsf3> + 8009f7a: 4604 mov r4, r0 + 8009f7c: 4620 mov r0, r4 + 8009f7e: bd70 pop {r4, r5, r6, pc} + 8009f80: 2a00 cmp r2, #0 + 8009f82: d0fb beq.n 8009f7c <__ieee754_sqrtf+0x20> + 8009f84: 2800 cmp r0, #0 + 8009f86: da06 bge.n 8009f96 <__ieee754_sqrtf+0x3a> + 8009f88: 4601 mov r1, r0 + 8009f8a: f7f6 fe3d bl 8000c08 <__aeabi_fsub> + 8009f8e: 4601 mov r1, r0 + 8009f90: f7f6 fff8 bl 8000f84 <__aeabi_fdiv> + 8009f94: e7f1 b.n 8009f7a <__ieee754_sqrtf+0x1e> + 8009f96: f010 42ff ands.w r2, r0, #2139095040 ; 0x7f800000 + 8009f9a: ea4f 51e0 mov.w r1, r0, asr #23 + 8009f9e: d029 beq.n 8009ff4 <__ieee754_sqrtf+0x98> + 8009fa0: f3c3 0216 ubfx r2, r3, #0, #23 + 8009fa4: 07cb lsls r3, r1, #31 + 8009fa6: f04f 0300 mov.w r3, #0 + 8009faa: f1a1 007f sub.w r0, r1, #127 ; 0x7f + 8009fae: f04f 0419 mov.w r4, #25 + 8009fb2: 461e mov r6, r3 + 8009fb4: f04f 7180 mov.w r1, #16777216 ; 0x1000000 + 8009fb8: f442 0200 orr.w r2, r2, #8388608 ; 0x800000 + 8009fbc: bf58 it pl + 8009fbe: 0052 lslpl r2, r2, #1 + 8009fc0: 1040 asrs r0, r0, #1 + 8009fc2: 0052 lsls r2, r2, #1 + 8009fc4: 1875 adds r5, r6, r1 + 8009fc6: 4295 cmp r5, r2 + 8009fc8: bfde ittt le + 8009fca: 186e addle r6, r5, r1 + 8009fcc: 1b52 suble r2, r2, r5 + 8009fce: 185b addle r3, r3, r1 + 8009fd0: 3c01 subs r4, #1 + 8009fd2: ea4f 0242 mov.w r2, r2, lsl #1 + 8009fd6: ea4f 0151 mov.w r1, r1, lsr #1 + 8009fda: d1f3 bne.n 8009fc4 <__ieee754_sqrtf+0x68> + 8009fdc: b112 cbz r2, 8009fe4 <__ieee754_sqrtf+0x88> + 8009fde: 3301 adds r3, #1 + 8009fe0: f023 0301 bic.w r3, r3, #1 + 8009fe4: 105c asrs r4, r3, #1 + 8009fe6: f104 547c add.w r4, r4, #1056964608 ; 0x3f000000 + 8009fea: eb04 54c0 add.w r4, r4, r0, lsl #23 + 8009fee: e7c5 b.n 8009f7c <__ieee754_sqrtf+0x20> + 8009ff0: 005b lsls r3, r3, #1 + 8009ff2: 3201 adds r2, #1 + 8009ff4: 0218 lsls r0, r3, #8 + 8009ff6: d5fb bpl.n 8009ff0 <__ieee754_sqrtf+0x94> + 8009ff8: 3a01 subs r2, #1 + 8009ffa: 1a89 subs r1, r1, r2 + 8009ffc: e7d0 b.n 8009fa0 <__ieee754_sqrtf+0x44> + ... + +0800a000 <_init>: + 800a000: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a002: bf00 nop + 800a004: bcf8 pop {r3, r4, r5, r6, r7} + 800a006: bc08 pop {r3} + 800a008: 469e mov lr, r3 + 800a00a: 4770 bx lr + +0800a00c <_fini>: + 800a00c: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a00e: bf00 nop + 800a010: bcf8 pop {r3, r4, r5, r6, r7} + 800a012: bc08 pop {r3} + 800a014: 469e mov lr, r3 + 800a016: 4770 bx lr diff --git a/Debug/m3s.map b/Debug/m3s.map index 252e037..453d5b9 100644 --- a/Debug/m3s.map +++ b/Debug/m3s.map @@ -161,6 +161,7 @@ __lock___malloc_recursive_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) eeprom_write_buffer 0x14 ./HW_Devices/eeprom.o +htim6 0x48 ./Core/Src/main.o lcddev 0xa ./HW_Devices/LCD.o s2 0x1080 ./SW_APPs/APP_blood.o t0 0x10 ./HW_Devices/touch.o @@ -224,6 +225,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Core/Src/main.o .group 0x0000000000000000 0xc ./Core/Src/main.o .group 0x0000000000000000 0xc ./Core/Src/main.o + .group 0x0000000000000000 0xc ./Core/Src/main.o .text 0x0000000000000000 0x0 ./Core/Src/main.o .data 0x0000000000000000 0x0 ./Core/Src/main.o .bss 0x0000000000000000 0x0 ./Core/Src/main.o @@ -264,11 +266,14 @@ Discarded input sections .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_hal_msp.o + .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_hal_msp.o .text 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_hal_msp.o .data 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_hal_msp.o .bss 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_hal_msp.o .text.HAL_I2C_MspDeInit 0x0000000000000000 0x48 ./Core/Src/stm32f1xx_hal_msp.o + .text.HAL_TIM_Base_MspDeInit + 0x0000000000000000 0x34 ./Core/Src/stm32f1xx_hal_msp.o .bss.FSMC_DeInitialized 0x0000000000000000 0x4 ./Core/Src/stm32f1xx_hal_msp.o .text.HAL_FSMC_MspDeInit @@ -276,7 +281,7 @@ Discarded input sections .text.HAL_SRAM_MspDeInit 0x0000000000000000 0x14 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0xa9c ./Core/Src/stm32f1xx_hal_msp.o - .debug_macro 0x0000000000000000 0x21b ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x221 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x2e ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_hal_msp.o @@ -310,6 +315,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x287 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x141 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x8d1 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0xb5 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f1xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o @@ -349,11 +355,12 @@ Discarded input sections .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o + .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .text 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_it.o .data 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_it.o .bss 0x0000000000000000 0x0 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0xa9c ./Core/Src/stm32f1xx_it.o - .debug_macro 0x0000000000000000 0x21b ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x221 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x2e ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_it.o @@ -387,6 +394,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x287 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x141 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x8d1 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0xb5 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o @@ -537,6 +545,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Core/Src/system_stm32f1xx.o .group 0x0000000000000000 0xc ./Core/Src/system_stm32f1xx.o .group 0x0000000000000000 0xc ./Core/Src/system_stm32f1xx.o + .group 0x0000000000000000 0xc ./Core/Src/system_stm32f1xx.o .text 0x0000000000000000 0x0 ./Core/Src/system_stm32f1xx.o .data 0x0000000000000000 0x0 ./Core/Src/system_stm32f1xx.o .bss 0x0000000000000000 0x0 ./Core/Src/system_stm32f1xx.o @@ -557,7 +566,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0xd23 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0xfd8c ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x6d ./Core/Src/system_stm32f1xx.o - .debug_macro 0x0000000000000000 0x21b ./Core/Src/system_stm32f1xx.o + .debug_macro 0x0000000000000000 0x221 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x3468 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x174 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x5c ./Core/Src/system_stm32f1xx.o @@ -577,6 +586,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x287 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0x141 ./Core/Src/system_stm32f1xx.o + .debug_macro 0x0000000000000000 0x8d1 ./Core/Src/system_stm32f1xx.o .debug_macro 0x0000000000000000 0xb5 ./Core/Src/system_stm32f1xx.o .text 0x0000000000000000 0x14 ./Core/Startup/startup_stm32f103zetx.o .data 0x0000000000000000 0x0 ./Core/Startup/startup_stm32f103zetx.o @@ -617,6 +627,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o @@ -661,7 +672,7 @@ Discarded input sections .text.HAL_DBGMCU_DisableDBGStandbyMode 0x0000000000000000 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o @@ -695,6 +706,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o @@ -732,11 +744,10 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .text.__NVIC_EnableIRQ - 0x0000000000000000 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_DisableIRQ 0x0000000000000000 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_GetPendingIRQ @@ -753,8 +764,6 @@ Discarded input sections 0x0000000000000000 0x6c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_SystemReset 0x0000000000000000 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .text.HAL_NVIC_EnableIRQ - 0x0000000000000000 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.HAL_NVIC_DisableIRQ 0x0000000000000000 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.HAL_NVIC_SystemReset @@ -778,7 +787,7 @@ Discarded input sections .text.HAL_SYSTICK_Callback 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o @@ -812,6 +821,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o @@ -849,6 +859,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o @@ -883,9 +894,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_ranges 0x0000000000000000 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .debug_macro 0x0000000000000000 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o @@ -919,9 +930,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o - .debug_line 0x0000000000000000 0x127f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o - .debug_str 0x0000000000000000 0x8cfa3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .debug_line 0x0000000000000000 0x12b0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o + .debug_str 0x0000000000000000 0x93be3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .debug_frame 0x0000000000000000 0x20c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.o .ARM.attributes @@ -962,6 +974,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o @@ -988,9 +1001,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_ranges 0x0000000000000000 0x50 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .debug_macro 0x0000000000000000 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o @@ -1024,9 +1037,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o - .debug_line 0x0000000000000000 0x97d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o - .debug_str 0x0000000000000000 0x8cd88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .debug_line 0x0000000000000000 0x9ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o + .debug_str 0x0000000000000000 0x939c8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .debug_frame 0x0000000000000000 0x174 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.o .ARM.attributes @@ -1067,6 +1081,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o @@ -1103,9 +1118,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_ranges 0x0000000000000000 0x78 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .debug_macro 0x0000000000000000 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o @@ -1139,9 +1154,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o - .debug_line 0x0000000000000000 0xa32 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o - .debug_str 0x0000000000000000 0x8ce9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .debug_line 0x0000000000000000 0xa63 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o + .debug_str 0x0000000000000000 0x93ade ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .debug_frame 0x0000000000000000 0x20c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.o .ARM.attributes @@ -1183,6 +1199,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o @@ -1223,9 +1240,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_ranges 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x1ba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .debug_macro 0x0000000000000000 0x1cf ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o @@ -1259,9 +1276,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o - .debug_line 0x0000000000000000 0xb23 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o - .debug_str 0x0000000000000000 0x8d062 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .debug_line 0x0000000000000000 0xb54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o + .debug_str 0x0000000000000000 0x93ca2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .debug_frame 0x0000000000000000 0x258 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.o .ARM.attributes @@ -1302,6 +1320,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o @@ -1316,7 +1335,7 @@ Discarded input sections .text.HAL_GPIO_EXTI_Callback 0x0000000000000000 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o @@ -1350,6 +1369,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o @@ -1387,6 +1407,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o @@ -1401,9 +1422,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_ranges 0x0000000000000000 0x20 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .debug_macro 0x0000000000000000 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o @@ -1437,9 +1458,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o - .debug_line 0x0000000000000000 0x6eb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o - .debug_str 0x0000000000000000 0x8cc09 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .debug_line 0x0000000000000000 0x71c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o + .debug_str 0x0000000000000000 0x93849 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .debug_frame 0x0000000000000000 0x78 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.o .ARM.attributes @@ -1480,6 +1502,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o @@ -1624,7 +1647,7 @@ Discarded input sections .text.I2C_ConvertOtherXferOptions 0x0000000000000000 0x34 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o @@ -1658,6 +1681,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o @@ -1695,6 +1719,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o @@ -1739,9 +1764,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_ranges 0x0000000000000000 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x208 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .debug_macro 0x0000000000000000 0x21d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o @@ -1775,9 +1800,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o - .debug_line 0x0000000000000000 0x8d7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o - .debug_str 0x0000000000000000 0x8d12b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .debug_line 0x0000000000000000 0x908 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o + .debug_str 0x0000000000000000 0x93d6b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .debug_frame 0x0000000000000000 0x270 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.o .ARM.attributes @@ -1818,6 +1844,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o @@ -1840,7 +1867,7 @@ Discarded input sections .text.HAL_RCC_CSSCallback 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o @@ -1874,6 +1901,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o @@ -1911,6 +1939,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o @@ -1926,9 +1955,9 @@ Discarded input sections .debug_aranges 0x0000000000000000 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_ranges 0x0000000000000000 0x20 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .debug_macro 0x0000000000000000 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o @@ -1962,9 +1991,10 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o - .debug_line 0x0000000000000000 0x8b3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o - .debug_str 0x0000000000000000 0x8cd78 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .debug_line 0x0000000000000000 0x8e4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o + .debug_str 0x0000000000000000 0x939b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .debug_frame 0x0000000000000000 0x84 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.o .ARM.attributes @@ -2005,6 +2035,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o @@ -2047,7 +2078,7 @@ Discarded input sections .text.SRAM_DMAError 0x0000000000000000 0x34 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o @@ -2081,6 +2112,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o @@ -2118,16 +2150,232 @@ Discarded input sections .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_info 0x0000000000000000 0x178 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_abbrev 0x0000000000000000 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_aranges - 0x0000000000000000 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_macro 0x0000000000000000 0x1a9 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_DeInit + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_Start + 0x0000000000000000 0xb0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_Stop + 0x0000000000000000 0x4c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_Start_DMA + 0x0000000000000000 0x128 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_Stop_DMA + 0x0000000000000000 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Init + 0x0000000000000000 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_DeInit + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Start + 0x0000000000000000 0x174 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Stop + 0x0000000000000000 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Start_IT + 0x0000000000000000 0x200 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Stop_IT + 0x0000000000000000 0x16c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Start_DMA + 0x0000000000000000 0x364 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_Stop_DMA + 0x0000000000000000 0x194 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Init + 0x0000000000000000 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_DeInit + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Start + 0x0000000000000000 0x174 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Stop + 0x0000000000000000 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Start_IT + 0x0000000000000000 0x200 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Stop_IT + 0x0000000000000000 0x16c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Start_DMA + 0x0000000000000000 0x364 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_Stop_DMA + 0x0000000000000000 0x194 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Init + 0x0000000000000000 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_DeInit + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Start + 0x0000000000000000 0x19c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Stop + 0x0000000000000000 0xc2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Start_IT + 0x0000000000000000 0x228 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Stop_IT + 0x0000000000000000 0x150 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Start_DMA + 0x0000000000000000 0x330 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_Stop_DMA + 0x0000000000000000 0x174 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_Init + 0x0000000000000000 0xa0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_DeInit + 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_Start + 0x0000000000000000 0xc4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_Stop + 0x0000000000000000 0xd8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_Start_IT + 0x0000000000000000 0xe4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_Stop_IT + 0x0000000000000000 0xf8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Init + 0x0000000000000000 0x144 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_DeInit + 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Start + 0x0000000000000000 0x11c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Stop + 0x0000000000000000 0x12e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Start_IT + 0x0000000000000000 0x15c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Stop_IT + 0x0000000000000000 0x16a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Start_DMA + 0x0000000000000000 0x2e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_Stop_DMA + 0x0000000000000000 0x192 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_ConfigChannel + 0x0000000000000000 0xb0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_ConfigChannel + 0x0000000000000000 0x128 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_ConfigChannel + 0x0000000000000000 0x17c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_ConfigChannel + 0x0000000000000000 0x184 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_WriteStart + 0x0000000000000000 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_MultiWriteStart + 0x0000000000000000 0x29c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_WriteStop + 0x0000000000000000 0xe6 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_ReadStart + 0x0000000000000000 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_MultiReadStart + 0x0000000000000000 0x29c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurst_ReadStop + 0x0000000000000000 0xe6 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_GenerateEvent + 0x0000000000000000 0x4c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_ConfigOCrefClear + 0x0000000000000000 0x188 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_ConfigClockSource + 0x0000000000000000 0x188 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_ConfigTI1Input + 0x0000000000000000 0x36 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_SlaveConfigSynchro + 0x0000000000000000 0x84 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_SlaveConfigSynchro_IT + 0x0000000000000000 0x84 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_ReadCapturedValue + 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PeriodElapsedCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PeriodElapsedHalfCpltCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_CaptureHalfCpltCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_TriggerHalfCpltCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_ErrorCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Base_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OC_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_PWM_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_IC_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_OnePulse_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_Encoder_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_GetActiveChannel + 0x0000000000000000 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_GetChannelState + 0x0000000000000000 0x50 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.HAL_TIM_DMABurstState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMAError + 0x0000000000000000 0x92 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMADelayPulseCplt + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMADelayPulseHalfCplt + 0x0000000000000000 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMACaptureCplt + 0x0000000000000000 0xc8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMACaptureHalfCplt + 0x0000000000000000 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMAPeriodElapsedCplt + 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMAPeriodElapsedHalfCplt + 0x0000000000000000 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMATriggerCplt + 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_DMATriggerHalfCplt + 0x0000000000000000 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_OC1_SetConfig + 0x0000000000000000 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_OC2_SetConfig + 0x0000000000000000 0xe8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_OC3_SetConfig + 0x0000000000000000 0xe8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_OC4_SetConfig + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_SlaveTimer_SetConfig + 0x0000000000000000 0x11c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI1_SetConfig + 0x0000000000000000 0xcc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI1_ConfigInputStage + 0x0000000000000000 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI2_SetConfig + 0x0000000000000000 0x78 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI2_ConfigInputStage + 0x0000000000000000 0x5e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI3_SetConfig + 0x0000000000000000 0x76 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_TI4_SetConfig + 0x0000000000000000 0x78 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_ITRx_SetConfig + 0x0000000000000000 0x34 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_ETR_SetConfig + 0x0000000000000000 0x3e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .text.TIM_CCxChannelCmd + 0x0000000000000000 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o @@ -2161,12 +2409,9 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_line 0x0000000000000000 0x69f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_str 0x0000000000000000 0x8cb69 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .ARM.attributes - 0x0000000000000000 0x33 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o @@ -2206,13 +2451,86 @@ Discarded input sections .text 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .data 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .bss 0x0000000000000000 0x0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_info 0x0000000000000000 0x178 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_abbrev 0x0000000000000000 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_aranges - 0x0000000000000000 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Init + 0x0000000000000000 0x152 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_DeInit + 0x0000000000000000 0x88 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_MspInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_MspDeInit + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Start + 0x0000000000000000 0x100 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Stop + 0x0000000000000000 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Start_IT + 0x0000000000000000 0x110 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Stop_IT + 0x0000000000000000 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Start_DMA + 0x0000000000000000 0x150 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_Stop_DMA + 0x0000000000000000 0x7a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Start + 0x0000000000000000 0x158 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Stop + 0x0000000000000000 0xba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Start_IT + 0x0000000000000000 0x1b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Stop_IT + 0x0000000000000000 0x130 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Start_DMA + 0x0000000000000000 0x2d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OCN_Stop_DMA + 0x0000000000000000 0x12a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Start + 0x0000000000000000 0x158 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Stop + 0x0000000000000000 0xba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Start_IT + 0x0000000000000000 0x1b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Stop_IT + 0x0000000000000000 0x130 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Start_DMA + 0x0000000000000000 0x2d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_PWMN_Stop_DMA + 0x0000000000000000 0x12a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OnePulseN_Start + 0x0000000000000000 0xaa ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OnePulseN_Stop + 0x0000000000000000 0xbe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OnePulseN_Start_IT + 0x0000000000000000 0xca ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_OnePulseN_Stop_IT + 0x0000000000000000 0xde ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_ConfigCommutEvent + 0x0000000000000000 0xbe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_ConfigCommutEvent_IT + 0x0000000000000000 0xbe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_ConfigCommutEvent_DMA + 0x0000000000000000 0xe4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_ConfigBreakDeadTime + 0x0000000000000000 0xa2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_RemapConfig + 0x0000000000000000 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_CommutHalfCpltCallback + 0x0000000000000000 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_HallSensor_GetState + 0x0000000000000000 0x1a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.HAL_TIMEx_GetChannelNState + 0x0000000000000000 0x50 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.TIMEx_DMACommutationCplt + 0x0000000000000000 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.TIMEx_DMACommutationHalfCplt + 0x0000000000000000 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.TIM_DMADelayPulseNCplt + 0x0000000000000000 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.TIM_DMAErrorCCxN + 0x0000000000000000 0x6e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .text.TIM_CCxNChannelCmd + 0x0000000000000000 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o @@ -2246,12 +2564,9 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_line 0x0000000000000000 0x6a2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_str 0x0000000000000000 0x8cb6c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .comment 0x0000000000000000 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .ARM.attributes - 0x0000000000000000 0x33 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .group 0x0000000000000000 0xc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o @@ -2322,7 +2637,7 @@ Discarded input sections .text.FSMC_PCCARD_DeInit 0x0000000000000000 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0xa9c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_macro 0x0000000000000000 0x21b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_macro 0x0000000000000000 0x221 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0x22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o @@ -2356,6 +2671,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0x287 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0x141 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_macro 0x0000000000000000 0x8d1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_macro 0x0000000000000000 0xb5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .group 0x0000000000000000 0xc ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/LCD.o @@ -2395,6 +2711,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/LCD.o + .group 0x0000000000000000 0xc ./HW_Devices/LCD.o .text 0x0000000000000000 0x0 ./HW_Devices/LCD.o .data 0x0000000000000000 0x0 ./HW_Devices/LCD.o .bss 0x0000000000000000 0x0 ./HW_Devices/LCD.o @@ -2415,7 +2732,7 @@ Discarded input sections .text.LCD_ReadPoint 0x0000000000000000 0x160 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/LCD.o - .debug_macro 0x0000000000000000 0x21b ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x221 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x2e ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/LCD.o @@ -2449,6 +2766,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x287 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x70 ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o @@ -2488,11 +2806,12 @@ Discarded input sections .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o + .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .text 0x0000000000000000 0x0 ./HW_Devices/eeprom.o .data 0x0000000000000000 0x0 ./HW_Devices/eeprom.o .bss 0x0000000000000000 0x0 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/eeprom.o - .debug_macro 0x0000000000000000 0x21b ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x221 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x2e ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/eeprom.o @@ -2526,6 +2845,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x287 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x70 ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/iic.o @@ -2565,11 +2885,12 @@ Discarded input sections .group 0x0000000000000000 0xc ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o .text 0x0000000000000000 0x0 ./HW_Devices/iic.o .data 0x0000000000000000 0x0 ./HW_Devices/iic.o .bss 0x0000000000000000 0x0 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/iic.o - .debug_macro 0x0000000000000000 0x21b ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x221 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x2e ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o @@ -2603,6 +2924,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x287 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x70 ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o @@ -2645,12 +2967,13 @@ Discarded input sections .group 0x0000000000000000 0xc ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o + .group 0x0000000000000000 0xc ./HW_Devices/touch.o .text 0x0000000000000000 0x0 ./HW_Devices/touch.o .data 0x0000000000000000 0x0 ./HW_Devices/touch.o .bss 0x0000000000000000 0x0 ./HW_Devices/touch.o .text.TP_XY 0x0000000000000000 0xbc ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/touch.o - .debug_macro 0x0000000000000000 0x21b ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x221 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x2e ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x22 ./HW_Devices/touch.o @@ -2684,6 +3007,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x287 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x70 ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o @@ -2739,6 +3063,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .text 0x0000000000000000 0x0 ./SW_APPs/APP_blood.o .data 0x0000000000000000 0x0 ./SW_APPs/APP_blood.o .bss 0x0000000000000000 0x0 ./SW_APPs/APP_blood.o @@ -2761,7 +3086,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x12a ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x339 ./SW_APPs/APP_blood.o - .debug_macro 0x0000000000000000 0x21b ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x221 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x2e ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x22 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x103 ./SW_APPs/APP_blood.o @@ -2789,6 +3114,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x287 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x8d1 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x70 ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o @@ -2832,11 +3158,12 @@ Discarded input sections .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o + .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .text 0x0000000000000000 0x0 ./SW_APPs/Main_APP.o .data 0x0000000000000000 0x0 ./SW_APPs/Main_APP.o .bss 0x0000000000000000 0x0 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0xa9c ./SW_APPs/Main_APP.o - .debug_macro 0x0000000000000000 0x21b ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x221 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x2e ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x22 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x22 ./SW_APPs/Main_APP.o @@ -2870,6 +3197,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x287 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x8d1 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x70 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x38b ./SW_APPs/Main_APP.o @@ -2914,6 +3242,7 @@ Discarded input sections .group 0x0000000000000000 0xc ./SW_APPs/windows.o .group 0x0000000000000000 0xc ./SW_APPs/windows.o .group 0x0000000000000000 0xc ./SW_APPs/windows.o + .group 0x0000000000000000 0xc ./SW_APPs/windows.o .text 0x0000000000000000 0x0 ./SW_APPs/windows.o .data 0x0000000000000000 0x0 ./SW_APPs/windows.o .bss 0x0000000000000000 0x0 ./SW_APPs/windows.o @@ -2924,7 +3253,7 @@ Discarded input sections .text.Set_Windows_XY_BY_ACC 0x0000000000000000 0x36 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0xa9c ./SW_APPs/windows.o - .debug_macro 0x0000000000000000 0x21b ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x221 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x2e ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x22 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x22 ./SW_APPs/windows.o @@ -2958,6 +3287,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x356 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x287 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x8d1 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x70 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x391 ./SW_APPs/windows.o @@ -3336,7 +3666,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x0000000008000000 g_pfnVectors 0x00000000080001e4 . = ALIGN (0x4) -.text 0x00000000080001e8 0x96c8 +.text 0x00000000080001e8 0x9e30 0x00000000080001e8 . = ALIGN (0x4) *(.text) .text 0x00000000080001e8 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o @@ -3430,770 +3760,820 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x00000000080011d4 __fixsfsi 0x00000000080011d4 __aeabi_f2iz *(.text*) - .text.main 0x0000000008001220 0x1e ./Core/Src/main.o + .text.main 0x0000000008001220 0x22 ./Core/Src/main.o 0x0000000008001220 main .text.SystemClock_Config - 0x000000000800123e 0x8a ./Core/Src/main.o - 0x000000000800123e SystemClock_Config + 0x0000000008001242 0x8a ./Core/Src/main.o + 0x0000000008001242 SystemClock_Config .text.MX_I2C2_Init - 0x00000000080012c8 0x5c ./Core/Src/main.o + 0x00000000080012cc 0x5c ./Core/Src/main.o + .text.MX_TIM6_Init + 0x0000000008001328 0x6c ./Core/Src/main.o .text.MX_GPIO_Init - 0x0000000008001324 0x184 ./Core/Src/main.o + 0x0000000008001394 0x184 ./Core/Src/main.o .text.MX_FSMC_Init - 0x00000000080014a8 0xc8 ./Core/Src/main.o + 0x0000000008001518 0xc8 ./Core/Src/main.o .text.Error_Handler - 0x0000000008001570 0xa ./Core/Src/main.o - 0x0000000008001570 Error_Handler - *fill* 0x000000000800157a 0x2 + 0x00000000080015e0 0xa ./Core/Src/main.o + 0x00000000080015e0 Error_Handler + *fill* 0x00000000080015ea 0x2 .text.HAL_MspInit - 0x000000000800157c 0x64 ./Core/Src/stm32f1xx_hal_msp.o - 0x000000000800157c HAL_MspInit + 0x00000000080015ec 0x64 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080015ec HAL_MspInit .text.HAL_I2C_MspInit - 0x00000000080015e0 0x80 ./Core/Src/stm32f1xx_hal_msp.o - 0x00000000080015e0 HAL_I2C_MspInit + 0x0000000008001650 0x80 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001650 HAL_I2C_MspInit + .text.HAL_TIM_Base_MspInit + 0x00000000080016d0 0x4c ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080016d0 HAL_TIM_Base_MspInit .text.HAL_FSMC_MspInit - 0x0000000008001660 0xa8 ./Core/Src/stm32f1xx_hal_msp.o + 0x000000000800171c 0xa8 ./Core/Src/stm32f1xx_hal_msp.o .text.HAL_SRAM_MspInit - 0x0000000008001708 0x14 ./Core/Src/stm32f1xx_hal_msp.o - 0x0000000008001708 HAL_SRAM_MspInit + 0x00000000080017c4 0x14 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080017c4 HAL_SRAM_MspInit .text.NMI_Handler - 0x000000000800171c 0x6 ./Core/Src/stm32f1xx_it.o - 0x000000000800171c NMI_Handler + 0x00000000080017d8 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080017d8 NMI_Handler .text.HardFault_Handler - 0x0000000008001722 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001722 HardFault_Handler + 0x00000000080017de 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080017de HardFault_Handler .text.MemManage_Handler - 0x0000000008001728 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001728 MemManage_Handler + 0x00000000080017e4 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080017e4 MemManage_Handler .text.BusFault_Handler - 0x000000000800172e 0x6 ./Core/Src/stm32f1xx_it.o - 0x000000000800172e BusFault_Handler + 0x00000000080017ea 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080017ea BusFault_Handler .text.UsageFault_Handler - 0x0000000008001734 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001734 UsageFault_Handler + 0x00000000080017f0 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080017f0 UsageFault_Handler .text.SVC_Handler - 0x000000000800173a 0xc ./Core/Src/stm32f1xx_it.o - 0x000000000800173a SVC_Handler + 0x00000000080017f6 0xc ./Core/Src/stm32f1xx_it.o + 0x00000000080017f6 SVC_Handler .text.DebugMon_Handler - 0x0000000008001746 0xc ./Core/Src/stm32f1xx_it.o - 0x0000000008001746 DebugMon_Handler + 0x0000000008001802 0xc ./Core/Src/stm32f1xx_it.o + 0x0000000008001802 DebugMon_Handler .text.PendSV_Handler - 0x0000000008001752 0xc ./Core/Src/stm32f1xx_it.o - 0x0000000008001752 PendSV_Handler + 0x000000000800180e 0xc ./Core/Src/stm32f1xx_it.o + 0x000000000800180e PendSV_Handler .text.SysTick_Handler - 0x000000000800175e 0xc ./Core/Src/stm32f1xx_it.o - 0x000000000800175e SysTick_Handler - .text._getpid 0x000000000800176a 0xe ./Core/Src/syscalls.o - 0x000000000800176a _getpid - .text._kill 0x0000000008001778 0x20 ./Core/Src/syscalls.o - 0x0000000008001778 _kill - .text._exit 0x0000000008001798 0x14 ./Core/Src/syscalls.o - 0x0000000008001798 _exit - .text._read 0x00000000080017ac 0x3a ./Core/Src/syscalls.o - 0x00000000080017ac _read - .text._write 0x00000000080017e6 0x38 ./Core/Src/syscalls.o - 0x00000000080017e6 _write - .text._close 0x000000000800181e 0x16 ./Core/Src/syscalls.o - 0x000000000800181e _close - .text._fstat 0x0000000008001834 0x1e ./Core/Src/syscalls.o - 0x0000000008001834 _fstat - .text._isatty 0x0000000008001852 0x14 ./Core/Src/syscalls.o - 0x0000000008001852 _isatty - .text._lseek 0x0000000008001866 0x18 ./Core/Src/syscalls.o - 0x0000000008001866 _lseek - *fill* 0x000000000800187e 0x2 - .text._sbrk 0x0000000008001880 0x6c ./Core/Src/sysmem.o - 0x0000000008001880 _sbrk + 0x000000000800181a 0xc ./Core/Src/stm32f1xx_it.o + 0x000000000800181a SysTick_Handler + *fill* 0x0000000008001826 0x2 + .text.TIM6_IRQHandler + 0x0000000008001828 0x14 ./Core/Src/stm32f1xx_it.o + 0x0000000008001828 TIM6_IRQHandler + .text._getpid 0x000000000800183c 0xe ./Core/Src/syscalls.o + 0x000000000800183c _getpid + .text._kill 0x000000000800184a 0x20 ./Core/Src/syscalls.o + 0x000000000800184a _kill + .text._exit 0x000000000800186a 0x14 ./Core/Src/syscalls.o + 0x000000000800186a _exit + .text._read 0x000000000800187e 0x3a ./Core/Src/syscalls.o + 0x000000000800187e _read + .text._write 0x00000000080018b8 0x38 ./Core/Src/syscalls.o + 0x00000000080018b8 _write + .text._close 0x00000000080018f0 0x16 ./Core/Src/syscalls.o + 0x00000000080018f0 _close + .text._fstat 0x0000000008001906 0x1e ./Core/Src/syscalls.o + 0x0000000008001906 _fstat + .text._isatty 0x0000000008001924 0x14 ./Core/Src/syscalls.o + 0x0000000008001924 _isatty + .text._lseek 0x0000000008001938 0x18 ./Core/Src/syscalls.o + 0x0000000008001938 _lseek + .text._sbrk 0x0000000008001950 0x6c ./Core/Src/sysmem.o + 0x0000000008001950 _sbrk .text.SystemInit - 0x00000000080018ec 0xc ./Core/Src/system_stm32f1xx.o - 0x00000000080018ec SystemInit + 0x00000000080019bc 0xc ./Core/Src/system_stm32f1xx.o + 0x00000000080019bc SystemInit .text.Reset_Handler - 0x00000000080018f8 0x48 ./Core/Startup/startup_stm32f103zetx.o - 0x00000000080018f8 Reset_Handler + 0x00000000080019c8 0x48 ./Core/Startup/startup_stm32f103zetx.o + 0x00000000080019c8 Reset_Handler .text.Default_Handler - 0x0000000008001940 0x2 ./Core/Startup/startup_stm32f103zetx.o - 0x0000000008001940 DMA2_Channel3_IRQHandler - 0x0000000008001940 EXTI2_IRQHandler - 0x0000000008001940 TIM8_TRG_COM_IRQHandler - 0x0000000008001940 TIM8_CC_IRQHandler - 0x0000000008001940 TIM1_CC_IRQHandler - 0x0000000008001940 TIM6_IRQHandler - 0x0000000008001940 PVD_IRQHandler - 0x0000000008001940 SDIO_IRQHandler - 0x0000000008001940 EXTI3_IRQHandler - 0x0000000008001940 EXTI0_IRQHandler - 0x0000000008001940 I2C2_EV_IRQHandler - 0x0000000008001940 ADC1_2_IRQHandler - 0x0000000008001940 SPI1_IRQHandler - 0x0000000008001940 TAMPER_IRQHandler - 0x0000000008001940 TIM8_UP_IRQHandler - 0x0000000008001940 DMA2_Channel2_IRQHandler - 0x0000000008001940 DMA1_Channel4_IRQHandler - 0x0000000008001940 USART3_IRQHandler - 0x0000000008001940 RTC_IRQHandler - 0x0000000008001940 DMA1_Channel7_IRQHandler - 0x0000000008001940 CAN1_RX1_IRQHandler - 0x0000000008001940 UART5_IRQHandler - 0x0000000008001940 ADC3_IRQHandler - 0x0000000008001940 TIM4_IRQHandler - 0x0000000008001940 DMA2_Channel1_IRQHandler - 0x0000000008001940 I2C1_EV_IRQHandler - 0x0000000008001940 DMA1_Channel6_IRQHandler - 0x0000000008001940 UART4_IRQHandler - 0x0000000008001940 TIM3_IRQHandler - 0x0000000008001940 RCC_IRQHandler - 0x0000000008001940 TIM1_TRG_COM_IRQHandler - 0x0000000008001940 DMA1_Channel1_IRQHandler - 0x0000000008001940 Default_Handler - 0x0000000008001940 EXTI15_10_IRQHandler - 0x0000000008001940 TIM7_IRQHandler - 0x0000000008001940 TIM5_IRQHandler - 0x0000000008001940 EXTI9_5_IRQHandler - 0x0000000008001940 SPI2_IRQHandler - 0x0000000008001940 DMA1_Channel5_IRQHandler - 0x0000000008001940 EXTI4_IRQHandler - 0x0000000008001940 USB_LP_CAN1_RX0_IRQHandler - 0x0000000008001940 USB_HP_CAN1_TX_IRQHandler - 0x0000000008001940 DMA1_Channel3_IRQHandler - 0x0000000008001940 FSMC_IRQHandler - 0x0000000008001940 TIM1_UP_IRQHandler - 0x0000000008001940 WWDG_IRQHandler - 0x0000000008001940 TIM2_IRQHandler - 0x0000000008001940 TIM1_BRK_IRQHandler - 0x0000000008001940 EXTI1_IRQHandler - 0x0000000008001940 DMA2_Channel4_5_IRQHandler - 0x0000000008001940 USART2_IRQHandler - 0x0000000008001940 I2C2_ER_IRQHandler - 0x0000000008001940 DMA1_Channel2_IRQHandler - 0x0000000008001940 TIM8_BRK_IRQHandler - 0x0000000008001940 CAN1_SCE_IRQHandler - 0x0000000008001940 FLASH_IRQHandler - 0x0000000008001940 USART1_IRQHandler - 0x0000000008001940 SPI3_IRQHandler - 0x0000000008001940 I2C1_ER_IRQHandler - 0x0000000008001940 USBWakeUp_IRQHandler - 0x0000000008001940 RTC_Alarm_IRQHandler - *fill* 0x0000000008001942 0x2 + 0x0000000008001a10 0x2 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000008001a10 DMA2_Channel3_IRQHandler + 0x0000000008001a10 EXTI2_IRQHandler + 0x0000000008001a10 TIM8_TRG_COM_IRQHandler + 0x0000000008001a10 TIM8_CC_IRQHandler + 0x0000000008001a10 TIM1_CC_IRQHandler + 0x0000000008001a10 PVD_IRQHandler + 0x0000000008001a10 SDIO_IRQHandler + 0x0000000008001a10 EXTI3_IRQHandler + 0x0000000008001a10 EXTI0_IRQHandler + 0x0000000008001a10 I2C2_EV_IRQHandler + 0x0000000008001a10 ADC1_2_IRQHandler + 0x0000000008001a10 SPI1_IRQHandler + 0x0000000008001a10 TAMPER_IRQHandler + 0x0000000008001a10 TIM8_UP_IRQHandler + 0x0000000008001a10 DMA2_Channel2_IRQHandler + 0x0000000008001a10 DMA1_Channel4_IRQHandler + 0x0000000008001a10 USART3_IRQHandler + 0x0000000008001a10 RTC_IRQHandler + 0x0000000008001a10 DMA1_Channel7_IRQHandler + 0x0000000008001a10 CAN1_RX1_IRQHandler + 0x0000000008001a10 UART5_IRQHandler + 0x0000000008001a10 ADC3_IRQHandler + 0x0000000008001a10 TIM4_IRQHandler + 0x0000000008001a10 DMA2_Channel1_IRQHandler + 0x0000000008001a10 I2C1_EV_IRQHandler + 0x0000000008001a10 DMA1_Channel6_IRQHandler + 0x0000000008001a10 UART4_IRQHandler + 0x0000000008001a10 TIM3_IRQHandler + 0x0000000008001a10 RCC_IRQHandler + 0x0000000008001a10 TIM1_TRG_COM_IRQHandler + 0x0000000008001a10 DMA1_Channel1_IRQHandler + 0x0000000008001a10 Default_Handler + 0x0000000008001a10 EXTI15_10_IRQHandler + 0x0000000008001a10 TIM7_IRQHandler + 0x0000000008001a10 TIM5_IRQHandler + 0x0000000008001a10 EXTI9_5_IRQHandler + 0x0000000008001a10 SPI2_IRQHandler + 0x0000000008001a10 DMA1_Channel5_IRQHandler + 0x0000000008001a10 EXTI4_IRQHandler + 0x0000000008001a10 USB_LP_CAN1_RX0_IRQHandler + 0x0000000008001a10 USB_HP_CAN1_TX_IRQHandler + 0x0000000008001a10 DMA1_Channel3_IRQHandler + 0x0000000008001a10 FSMC_IRQHandler + 0x0000000008001a10 TIM1_UP_IRQHandler + 0x0000000008001a10 WWDG_IRQHandler + 0x0000000008001a10 TIM2_IRQHandler + 0x0000000008001a10 TIM1_BRK_IRQHandler + 0x0000000008001a10 EXTI1_IRQHandler + 0x0000000008001a10 DMA2_Channel4_5_IRQHandler + 0x0000000008001a10 USART2_IRQHandler + 0x0000000008001a10 I2C2_ER_IRQHandler + 0x0000000008001a10 DMA1_Channel2_IRQHandler + 0x0000000008001a10 TIM8_BRK_IRQHandler + 0x0000000008001a10 CAN1_SCE_IRQHandler + 0x0000000008001a10 FLASH_IRQHandler + 0x0000000008001a10 USART1_IRQHandler + 0x0000000008001a10 SPI3_IRQHandler + 0x0000000008001a10 I2C1_ER_IRQHandler + 0x0000000008001a10 USBWakeUp_IRQHandler + 0x0000000008001a10 RTC_Alarm_IRQHandler + *fill* 0x0000000008001a12 0x2 .text.HAL_Init - 0x0000000008001944 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001944 HAL_Init + 0x0000000008001a14 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001a14 HAL_Init .text.HAL_InitTick - 0x0000000008001970 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001970 HAL_InitTick + 0x0000000008001a40 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001a40 HAL_InitTick .text.HAL_IncTick - 0x00000000080019d0 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000080019d0 HAL_IncTick + 0x0000000008001aa0 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001aa0 HAL_IncTick .text.HAL_GetTick - 0x00000000080019f4 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000080019f4 HAL_GetTick + 0x0000000008001ac4 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001ac4 HAL_GetTick .text.HAL_Delay - 0x0000000008001a08 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001a08 HAL_Delay + 0x0000000008001ad8 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001ad8 HAL_Delay .text.__NVIC_SetPriorityGrouping - 0x0000000008001a50 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001b20 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x0000000008001a98 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001b68 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .text.__NVIC_EnableIRQ + 0x0000000008001b84 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_SetPriority - 0x0000000008001ab4 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001bbc 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.NVIC_EncodePriority - 0x0000000008001b08 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001c10 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.SysTick_Config - 0x0000000008001b6c 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001c74 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x0000000008001bb0 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001bb0 HAL_NVIC_SetPriorityGrouping + 0x0000000008001cb8 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001cb8 HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x0000000008001bc6 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001bc6 HAL_NVIC_SetPriority + 0x0000000008001cce 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001cce HAL_NVIC_SetPriority + .text.HAL_NVIC_EnableIRQ + 0x0000000008001d06 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001d06 HAL_NVIC_EnableIRQ .text.HAL_SYSTICK_Config - 0x0000000008001bfe 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001bfe HAL_SYSTICK_Config - *fill* 0x0000000008001c16 0x2 + 0x0000000008001d22 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001d22 HAL_SYSTICK_Config + *fill* 0x0000000008001d3a 0x2 .text.HAL_GPIO_Init - 0x0000000008001c18 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001c18 HAL_GPIO_Init + 0x0000000008001d3c 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008001d3c HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x0000000008001f40 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001f40 HAL_GPIO_ReadPin + 0x0000000008002064 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008002064 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x0000000008001f6e 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001f6e HAL_GPIO_WritePin - *fill* 0x0000000008001f9e 0x2 + 0x0000000008002092 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008002092 HAL_GPIO_WritePin + *fill* 0x00000000080020c2 0x2 .text.HAL_I2C_Init - 0x0000000008001fa0 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x0000000008001fa0 HAL_I2C_Init + 0x00000000080020c4 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x00000000080020c4 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x0000000008002228 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x0000000008002228 HAL_I2C_Mem_Write + 0x000000000800234c 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x000000000800234c HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x000000000800241c 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x000000000800241c HAL_I2C_Mem_Read + 0x0000000008002540 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002540 HAL_I2C_Mem_Read .text.I2C_RequestMemoryWrite - 0x00000000080028ec 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002a10 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x0000000008002a18 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002b3c 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x0000000008002be8 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002d0c 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnMasterAddressFlagUntilTimeout - 0x0000000008002c96 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002dba 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnTXEFlagUntilTimeout - 0x0000000008002d94 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002eb8 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnBTFFlagUntilTimeout - 0x0000000008002e16 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002f3a 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnRXNEFlagUntilTimeout - 0x0000000008002e98 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002fbc 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x0000000008002f44 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008003068 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.HAL_RCC_OscConfig - 0x0000000008002fa0 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008002fa0 HAL_RCC_OscConfig + 0x00000000080030c4 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x00000000080030c4 HAL_RCC_OscConfig .text.HAL_RCC_ClockConfig - 0x00000000080034a0 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080034a0 HAL_RCC_ClockConfig + 0x00000000080035c4 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x00000000080035c4 HAL_RCC_ClockConfig .text.HAL_RCC_GetSysClockFreq - 0x0000000008003674 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003674 HAL_RCC_GetSysClockFreq + 0x0000000008003798 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003798 HAL_RCC_GetSysClockFreq .text.HAL_RCC_GetHCLKFreq - 0x0000000008003734 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003734 HAL_RCC_GetHCLKFreq + 0x0000000008003858 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003858 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x0000000008003748 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003748 HAL_RCC_GetPCLK1Freq + 0x000000000800386c 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x000000000800386c HAL_RCC_GetPCLK1Freq .text.RCC_Delay - 0x0000000008003770 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003894 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .text.HAL_SRAM_Init - 0x00000000080037ac 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - 0x00000000080037ac HAL_SRAM_Init - *fill* 0x0000000008003846 0x2 + 0x00000000080038d0 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x00000000080038d0 HAL_SRAM_Init + .text.HAL_TIM_Base_Init + 0x000000000800396a 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x000000000800396a HAL_TIM_Base_Init + .text.HAL_TIM_Base_Start_IT + 0x0000000008003a08 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003a08 HAL_TIM_Base_Start_IT + .text.HAL_TIM_Base_Stop_IT + 0x0000000008003ac8 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003ac8 HAL_TIM_Base_Stop_IT + .text.HAL_TIM_IRQHandler + 0x0000000008003b24 0x210 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003b24 HAL_TIM_IRQHandler + .text.HAL_TIM_OC_DelayElapsedCallback + 0x0000000008003d34 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003d34 HAL_TIM_OC_DelayElapsedCallback + .text.HAL_TIM_IC_CaptureCallback + 0x0000000008003d46 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003d46 HAL_TIM_IC_CaptureCallback + .text.HAL_TIM_PWM_PulseFinishedCallback + 0x0000000008003d58 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003d58 HAL_TIM_PWM_PulseFinishedCallback + .text.HAL_TIM_TriggerCallback + 0x0000000008003d6a 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003d6a HAL_TIM_TriggerCallback + .text.TIM_Base_SetConfig + 0x0000000008003d7c 0xf4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008003d7c TIM_Base_SetConfig + .text.HAL_TIMEx_MasterConfigSynchronization + 0x0000000008003e70 0xd8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000008003e70 HAL_TIMEx_MasterConfigSynchronization + .text.HAL_TIMEx_CommutCallback + 0x0000000008003f48 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000008003f48 HAL_TIMEx_CommutCallback + .text.HAL_TIMEx_BreakCallback + 0x0000000008003f5a 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000008003f5a HAL_TIMEx_BreakCallback .text.FSMC_NORSRAM_Init - 0x0000000008003848 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x0000000008003848 FSMC_NORSRAM_Init + 0x0000000008003f6c 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008003f6c FSMC_NORSRAM_Init .text.FSMC_NORSRAM_Timing_Init - 0x000000000800391c 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x000000000800391c FSMC_NORSRAM_Timing_Init + 0x0000000008004040 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008004040 FSMC_NORSRAM_Timing_Init .text.FSMC_NORSRAM_Extended_Timing_Init - 0x0000000008003984 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x0000000008003984 FSMC_NORSRAM_Extended_Timing_Init + 0x00000000080040a8 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x00000000080040a8 FSMC_NORSRAM_Extended_Timing_Init .text.LCD_WR_REG - 0x00000000080039f4 0x1c ./HW_Devices/LCD.o - 0x00000000080039f4 LCD_WR_REG + 0x0000000008004118 0x1c ./HW_Devices/LCD.o + 0x0000000008004118 LCD_WR_REG .text.LCD_WR_DATA - 0x0000000008003a10 0x20 ./HW_Devices/LCD.o - 0x0000000008003a10 LCD_WR_DATA + 0x0000000008004134 0x20 ./HW_Devices/LCD.o + 0x0000000008004134 LCD_WR_DATA .text.LCD_WriteReg - 0x0000000008003a30 0x2c ./HW_Devices/LCD.o - 0x0000000008003a30 LCD_WriteReg + 0x0000000008004154 0x2c ./HW_Devices/LCD.o + 0x0000000008004154 LCD_WriteReg .text.LCD_ReadReg - 0x0000000008003a5c 0x28 ./HW_Devices/LCD.o - 0x0000000008003a5c LCD_ReadReg + 0x0000000008004180 0x28 ./HW_Devices/LCD.o + 0x0000000008004180 LCD_ReadReg .text.LCD_Scan_Dir - 0x0000000008003a84 0x2dc ./HW_Devices/LCD.o - 0x0000000008003a84 LCD_Scan_Dir + 0x00000000080041a8 0x2dc ./HW_Devices/LCD.o + 0x00000000080041a8 LCD_Scan_Dir .text.LCD_Display_Dir - 0x0000000008003d60 0x18c ./HW_Devices/LCD.o - 0x0000000008003d60 LCD_Display_Dir + 0x0000000008004484 0x18c ./HW_Devices/LCD.o + 0x0000000008004484 LCD_Display_Dir .text.LCDx_Init - 0x0000000008003eec 0x1ec ./HW_Devices/LCD.o - 0x0000000008003eec LCDx_Init + 0x0000000008004610 0x1ec ./HW_Devices/LCD.o + 0x0000000008004610 LCDx_Init .text.LCD_SetCursor - 0x00000000080040d8 0x120 ./HW_Devices/LCD.o - 0x00000000080040d8 LCD_SetCursor + 0x00000000080047fc 0x120 ./HW_Devices/LCD.o + 0x00000000080047fc LCD_SetCursor .text.LCD_set_dot - 0x00000000080041f8 0x40 ./HW_Devices/LCD.o - 0x00000000080041f8 LCD_set_dot + 0x000000000800491c 0x40 ./HW_Devices/LCD.o + 0x000000000800491c LCD_set_dot .text.LCD_Clear - 0x0000000008004238 0xa4 ./HW_Devices/LCD.o - 0x0000000008004238 LCD_Clear + 0x000000000800495c 0xa4 ./HW_Devices/LCD.o + 0x000000000800495c LCD_Clear .text.LCD_DrawLine - 0x00000000080042dc 0x10a ./HW_Devices/LCD.o - 0x00000000080042dc LCD_DrawLine + 0x0000000008004a00 0x10a ./HW_Devices/LCD.o + 0x0000000008004a00 LCD_DrawLine .text.Draw_Circle - 0x00000000080043e6 0x156 ./HW_Devices/LCD.o - 0x00000000080043e6 Draw_Circle + 0x0000000008004b0a 0x156 ./HW_Devices/LCD.o + 0x0000000008004b0a Draw_Circle .text.LCD_ShowChar - 0x000000000800453c 0xf8 ./HW_Devices/LCD.o - 0x000000000800453c LCD_ShowChar + 0x0000000008004c60 0xf8 ./HW_Devices/LCD.o + 0x0000000008004c60 LCD_ShowChar .text.LCD_ShowString - 0x0000000008004634 0x7c ./HW_Devices/LCD.o - 0x0000000008004634 LCD_ShowString + 0x0000000008004d58 0x7c ./HW_Devices/LCD.o + 0x0000000008004d58 LCD_ShowString .text.EPPROM_SLOWWRITE_INIT - 0x00000000080046b0 0x34 ./HW_Devices/eeprom.o - 0x00000000080046b0 EPPROM_SLOWWRITE_INIT + 0x0000000008004dd4 0x34 ./HW_Devices/eeprom.o + 0x0000000008004dd4 EPPROM_SLOWWRITE_INIT .text.EEPROM_SLOWWRITE_SERVER - 0x00000000080046e4 0x8c ./HW_Devices/eeprom.o - 0x00000000080046e4 EEPROM_SLOWWRITE_SERVER + 0x0000000008004e08 0x8c ./HW_Devices/eeprom.o + 0x0000000008004e08 EEPROM_SLOWWRITE_SERVER .text.EEPROM_READ_BATY - 0x0000000008004770 0x24 ./HW_Devices/eeprom.o - 0x0000000008004770 EEPROM_READ_BATY + 0x0000000008004e94 0x24 ./HW_Devices/eeprom.o + 0x0000000008004e94 EEPROM_READ_BATY .text.EEPROM_WRITE_BATY - 0x0000000008004794 0x8c ./HW_Devices/eeprom.o - 0x0000000008004794 EEPROM_WRITE_BATY + 0x0000000008004eb8 0x8c ./HW_Devices/eeprom.o + 0x0000000008004eb8 EEPROM_WRITE_BATY .text.IIC_SAND_DATE - 0x0000000008004820 0x3c ./HW_Devices/iic.o - 0x0000000008004820 IIC_SAND_DATE + 0x0000000008004f44 0x3c ./HW_Devices/iic.o + 0x0000000008004f44 IIC_SAND_DATE .text.IIC_READ_DATE - 0x000000000800485c 0x3c ./HW_Devices/iic.o - 0x000000000800485c IIC_READ_DATE + 0x0000000008004f80 0x3c ./HW_Devices/iic.o + 0x0000000008004f80 IIC_READ_DATE .text.TP_Write_Byte - 0x0000000008004898 0x6c ./HW_Devices/touch.o - 0x0000000008004898 TP_Write_Byte + 0x0000000008004fbc 0x6c ./HW_Devices/touch.o + 0x0000000008004fbc TP_Write_Byte .text.TP_Read_AD - 0x0000000008004904 0xc8 ./HW_Devices/touch.o - 0x0000000008004904 TP_Read_AD + 0x0000000008005028 0xc8 ./HW_Devices/touch.o + 0x0000000008005028 TP_Read_AD .text.TP_Read_XOY - 0x00000000080049cc 0x104 ./HW_Devices/touch.o - 0x00000000080049cc TP_Read_XOY + 0x00000000080050f0 0x104 ./HW_Devices/touch.o + 0x00000000080050f0 TP_Read_XOY .text.TP_Read_XY_ADC - 0x0000000008004ad0 0x32 ./HW_Devices/touch.o - 0x0000000008004ad0 TP_Read_XY_ADC + 0x00000000080051f4 0x32 ./HW_Devices/touch.o + 0x00000000080051f4 TP_Read_XY_ADC .text.TP_Read_XY2 - 0x0000000008004b02 0xd0 ./HW_Devices/touch.o - 0x0000000008004b02 TP_Read_XY2 - *fill* 0x0000000008004bd2 0x2 + 0x0000000008005226 0xd0 ./HW_Devices/touch.o + 0x0000000008005226 TP_Read_XY2 + *fill* 0x00000000080052f6 0x2 .text.TP_Server - 0x0000000008004bd4 0xf0 ./HW_Devices/touch.o - 0x0000000008004bd4 TP_Server + 0x00000000080052f8 0xf0 ./HW_Devices/touch.o + 0x00000000080052f8 TP_Server .text.TP_DrwaTrage - 0x0000000008004cc4 0xb8 ./HW_Devices/touch.o - 0x0000000008004cc4 TP_DrwaTrage + 0x00000000080053e8 0xb8 ./HW_Devices/touch.o + 0x00000000080053e8 TP_DrwaTrage .text.TP_adjustment - 0x0000000008004d7c 0x594 ./HW_Devices/touch.o - 0x0000000008004d7c TP_adjustment + 0x00000000080054a0 0x594 ./HW_Devices/touch.o + 0x00000000080054a0 TP_adjustment .text.Max30102_reset - 0x0000000008005310 0x20 ./SW_APPs/APP_blood.o - 0x0000000008005310 Max30102_reset + 0x0000000008005a34 0x20 ./SW_APPs/APP_blood.o + 0x0000000008005a34 Max30102_reset .text.MAX30102_Config - 0x0000000008005330 0xae ./SW_APPs/APP_blood.o - 0x0000000008005330 MAX30102_Config - *fill* 0x00000000080053de 0x2 + 0x0000000008005a54 0xae ./SW_APPs/APP_blood.o + 0x0000000008005a54 MAX30102_Config + *fill* 0x0000000008005b02 0x2 .text.max30102_read_fifo - 0x00000000080053e0 0x100 ./SW_APPs/APP_blood.o - 0x00000000080053e0 max30102_read_fifo + 0x0000000008005b04 0x100 ./SW_APPs/APP_blood.o + 0x0000000008005b04 max30102_read_fifo .text.APP_blood_init - 0x00000000080054e0 0x40 ./SW_APPs/APP_blood.o - 0x00000000080054e0 APP_blood_init + 0x0000000008005c04 0x40 ./SW_APPs/APP_blood.o + 0x0000000008005c04 APP_blood_init .text.my_floor - 0x0000000008005520 0x6e ./SW_APPs/APP_blood.o - 0x0000000008005520 my_floor - .text.my_fmod 0x000000000800558e 0xd4 ./SW_APPs/APP_blood.o - 0x000000000800558e my_fmod - *fill* 0x0000000008005662 0x6 - .text.XSin 0x0000000008005668 0x2b4 ./SW_APPs/APP_blood.o - 0x0000000008005668 XSin - *fill* 0x000000000800591c 0x4 - .text.XCos 0x0000000008005920 0x40 ./SW_APPs/APP_blood.o - 0x0000000008005920 XCos - .text.EE 0x0000000008005960 0x84 ./SW_APPs/APP_blood.o - 0x0000000008005960 EE - *fill* 0x00000000080059e4 0x4 - .text.FFT 0x00000000080059e8 0x240 ./SW_APPs/APP_blood.o - 0x00000000080059e8 FFT + 0x0000000008005c44 0x6e ./SW_APPs/APP_blood.o + 0x0000000008005c44 my_floor + .text.my_fmod 0x0000000008005cb2 0xd4 ./SW_APPs/APP_blood.o + 0x0000000008005cb2 my_fmod + *fill* 0x0000000008005d86 0x2 + .text.XSin 0x0000000008005d88 0x2b4 ./SW_APPs/APP_blood.o + 0x0000000008005d88 XSin + *fill* 0x000000000800603c 0x4 + .text.XCos 0x0000000008006040 0x40 ./SW_APPs/APP_blood.o + 0x0000000008006040 XCos + .text.EE 0x0000000008006080 0x84 ./SW_APPs/APP_blood.o + 0x0000000008006080 EE + *fill* 0x0000000008006104 0x4 + .text.FFT 0x0000000008006108 0x240 ./SW_APPs/APP_blood.o + 0x0000000008006108 FFT .text.find_max_num_index - 0x0000000008005c28 0x64 ./SW_APPs/APP_blood.o - 0x0000000008005c28 find_max_num_index - *fill* 0x0000000008005c8c 0x4 + 0x0000000008006348 0x64 ./SW_APPs/APP_blood.o + 0x0000000008006348 find_max_num_index + *fill* 0x00000000080063ac 0x4 .text.blood_data_translate - 0x0000000008005c90 0x53c ./SW_APPs/APP_blood.o - 0x0000000008005c90 blood_data_translate + 0x00000000080063b0 0x534 ./SW_APPs/APP_blood.o + 0x00000000080063b0 blood_data_translate .text.APP_blood_loop - 0x00000000080061cc 0x1e0 ./SW_APPs/APP_blood.o - 0x00000000080061cc APP_blood_loop + 0x00000000080068e4 0x184 ./SW_APPs/APP_blood.o + 0x00000000080068e4 APP_blood_loop + .text.HAL_TIM_PeriodElapsedCallback + 0x0000000008006a68 0xac ./SW_APPs/APP_blood.o + 0x0000000008006a68 HAL_TIM_PeriodElapsedCallback .text.main_app - 0x00000000080063ac 0x64 ./SW_APPs/Main_APP.o - 0x00000000080063ac main_app + 0x0000000008006b14 0x64 ./SW_APPs/Main_APP.o + 0x0000000008006b14 main_app .text.Inteface_SetCursor - 0x0000000008006410 0x34 ./SW_APPs/windows.o - 0x0000000008006410 Inteface_SetCursor + 0x0000000008006b78 0x34 ./SW_APPs/windows.o + 0x0000000008006b78 Inteface_SetCursor .text.Inteface_SetColor - 0x0000000008006444 0x20 ./SW_APPs/windows.o - 0x0000000008006444 Inteface_SetColor - .text.UI_Init 0x0000000008006464 0x66 ./SW_APPs/windows.o - 0x0000000008006464 UI_Init + 0x0000000008006bac 0x20 ./SW_APPs/windows.o + 0x0000000008006bac Inteface_SetColor + .text.UI_Init 0x0000000008006bcc 0x66 ./SW_APPs/windows.o + 0x0000000008006bcc UI_Init .text.New_Window - 0x00000000080064ca 0xd2 ./SW_APPs/windows.o - 0x00000000080064ca New_Window + 0x0000000008006c32 0xd2 ./SW_APPs/windows.o + 0x0000000008006c32 New_Window .text.Refresh_Window - 0x000000000800659c 0x10a ./SW_APPs/windows.o - 0x000000000800659c Refresh_Window + 0x0000000008006d04 0x10a ./SW_APPs/windows.o + 0x0000000008006d04 Refresh_Window .text.Refresh_UI - 0x00000000080066a6 0x94 ./SW_APPs/windows.o - 0x00000000080066a6 Refresh_UI - .text.Chack 0x000000000800673a 0xdc ./SW_APPs/windows.o - 0x000000000800673a Chack - *fill* 0x0000000008006816 0x2 + 0x0000000008006e0e 0x94 ./SW_APPs/windows.o + 0x0000000008006e0e Refresh_UI + .text.Chack 0x0000000008006ea2 0xdc ./SW_APPs/windows.o + 0x0000000008006ea2 Chack + *fill* 0x0000000008006f7e 0x2 .text.UI_Server - 0x0000000008006818 0x1f4 ./SW_APPs/windows.o - 0x0000000008006818 UI_Server - .text.__errno 0x0000000008006a0c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) - 0x0000000008006a0c __errno + 0x0000000008006f80 0x1f4 ./SW_APPs/windows.o + 0x0000000008006f80 UI_Server + .text.__errno 0x0000000008007174 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + 0x0000000008007174 __errno .text.__libc_init_array - 0x0000000008006a18 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) - 0x0000000008006a18 __libc_init_array - .text.malloc 0x0000000008006a60 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - 0x0000000008006a60 malloc - .text.free 0x0000000008006a70 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - 0x0000000008006a70 free - .text.memset 0x0000000008006a80 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) - 0x0000000008006a80 memset - .text._free_r 0x0000000008006a90 0x98 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) - 0x0000000008006a90 _free_r + 0x0000000008007180 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + 0x0000000008007180 __libc_init_array + .text.malloc 0x00000000080071c8 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x00000000080071c8 malloc + .text.free 0x00000000080071d8 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x00000000080071d8 free + .text.memset 0x00000000080071e8 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + 0x00000000080071e8 memset + .text._free_r 0x00000000080071f8 0x98 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + 0x00000000080071f8 _free_r .text._malloc_r - 0x0000000008006b28 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) - 0x0000000008006b28 _malloc_r - .text.__cvt 0x0000000008006bdc 0xbe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008006bdc __cvt + 0x0000000008007290 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + 0x0000000008007290 _malloc_r + .text.__cvt 0x0000000008007344 0xbe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008007344 __cvt .text.__exponent - 0x0000000008006c9a 0x7c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008006c9a __exponent - *fill* 0x0000000008006d16 0x2 + 0x0000000008007402 0x7c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008007402 __exponent + *fill* 0x000000000800747e 0x2 .text._printf_float - 0x0000000008006d18 0x458 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008006d18 _printf_float + 0x0000000008007480 0x458 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008007480 _printf_float .text._printf_common - 0x0000000008007170 0xde /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - 0x0000000008007170 _printf_common - *fill* 0x000000000800724e 0x2 + 0x00000000080078d8 0xde /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x00000000080078d8 _printf_common + *fill* 0x00000000080079b6 0x2 .text._printf_i - 0x0000000008007250 0x24c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - 0x0000000008007250 _printf_i - .text._sbrk_r 0x000000000800749c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) - 0x000000000800749c _sbrk_r - .text.sprintf 0x00000000080074bc 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) - 0x00000000080074bc sprintf - 0x00000000080074bc siprintf - .text.quorem 0x00000000080074fc 0x11a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - *fill* 0x0000000008007616 0x2 - .text._dtoa_r 0x0000000008007618 0xbdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - 0x0000000008007618 _dtoa_r + 0x00000000080079b8 0x24c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x00000000080079b8 _printf_i + .text._sbrk_r 0x0000000008007c04 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + 0x0000000008007c04 _sbrk_r + .text.sprintf 0x0000000008007c24 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + 0x0000000008007c24 sprintf + 0x0000000008007c24 siprintf + .text.quorem 0x0000000008007c64 0x11a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + *fill* 0x0000000008007d7e 0x2 + .text._dtoa_r 0x0000000008007d80 0xbdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x0000000008007d80 _dtoa_r .text._localeconv_r - 0x00000000080081f4 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) - 0x00000000080081f4 _localeconv_r - .text.memchr 0x00000000080081fc 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) - 0x00000000080081fc memchr - .text.memcpy 0x0000000008008218 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) - 0x0000000008008218 memcpy + 0x000000000800895c 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + 0x000000000800895c _localeconv_r + .text.memchr 0x0000000008008964 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + 0x0000000008008964 memchr + .text.memcpy 0x0000000008008980 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + 0x0000000008008980 memcpy .text.__malloc_lock - 0x0000000008008234 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - 0x0000000008008234 __malloc_lock + 0x000000000800899c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x000000000800899c __malloc_lock .text.__malloc_unlock - 0x0000000008008240 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - 0x0000000008008240 __malloc_unlock - .text._Balloc 0x000000000800824c 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800824c _Balloc - .text._Bfree 0x00000000080082cc 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080082cc _Bfree + 0x00000000080089a8 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x00000000080089a8 __malloc_unlock + .text._Balloc 0x00000000080089b4 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080089b4 _Balloc + .text._Bfree 0x0000000008008a34 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008a34 _Bfree .text.__multadd - 0x0000000008008310 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008310 __multadd + 0x0000000008008a78 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008a78 __multadd .text.__hi0bits - 0x00000000080083a4 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080083a4 __hi0bits + 0x0000000008008b0c 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008b0c __hi0bits .text.__lo0bits - 0x00000000080083e4 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080083e4 __lo0bits - .text.__i2b 0x0000000008008440 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008440 __i2b + 0x0000000008008b4c 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008b4c __lo0bits + .text.__i2b 0x0000000008008ba8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008ba8 __i2b .text.__multiply - 0x000000000800846c 0x148 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800846c __multiply + 0x0000000008008bd4 0x148 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008bd4 __multiply .text.__pow5mult - 0x00000000080085b4 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080085b4 __pow5mult + 0x0000000008008d1c 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008d1c __pow5mult .text.__lshift - 0x0000000008008668 0xd8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008668 __lshift - .text.__mcmp 0x0000000008008740 0x36 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008740 __mcmp - *fill* 0x0000000008008776 0x2 - .text.__mdiff 0x0000000008008778 0x120 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008778 __mdiff - .text.__d2b 0x0000000008008898 0xb8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008008898 __d2b + 0x0000000008008dd0 0xd8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008dd0 __lshift + .text.__mcmp 0x0000000008008ea8 0x36 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008ea8 __mcmp + *fill* 0x0000000008008ede 0x2 + .text.__mdiff 0x0000000008008ee0 0x120 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008008ee0 __mdiff + .text.__d2b 0x0000000008009000 0xb8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008009000 __d2b .text._calloc_r - 0x0000000008008950 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) - 0x0000000008008950 _calloc_r + 0x00000000080090b8 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + 0x00000000080090b8 _calloc_r .text.__ssputs_r - 0x000000000800896c 0xb6 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - 0x000000000800896c __ssputs_r - *fill* 0x0000000008008a22 0x2 + 0x00000000080090d4 0xb6 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x00000000080090d4 __ssputs_r + *fill* 0x000000000800918a 0x2 .text._svfprintf_r - 0x0000000008008a24 0x200 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - 0x0000000008008a24 _svfprintf_r - 0x0000000008008a24 _svfiprintf_r + 0x000000000800918c 0x200 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x000000000800918c _svfprintf_r + 0x000000000800918c _svfiprintf_r .text.__assert_func - 0x0000000008008c24 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) - 0x0000000008008c24 __assert_func - .text.fprintf 0x0000000008008c60 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) - 0x0000000008008c60 fprintf - 0x0000000008008c60 fiprintf + 0x000000000800938c 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x000000000800938c __assert_func + .text.fprintf 0x00000000080093c8 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + 0x00000000080093c8 fprintf + 0x00000000080093c8 fiprintf .text.__retarget_lock_init_recursive - 0x0000000008008c84 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008008c84 __retarget_lock_init_recursive + 0x00000000080093ec 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x00000000080093ec __retarget_lock_init_recursive .text.__retarget_lock_acquire_recursive - 0x0000000008008c86 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008008c86 __retarget_lock_acquire_recursive + 0x00000000080093ee 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x00000000080093ee __retarget_lock_acquire_recursive .text.__retarget_lock_release_recursive - 0x0000000008008c88 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008008c88 __retarget_lock_release_recursive + 0x00000000080093f0 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x00000000080093f0 __retarget_lock_release_recursive .text.__ascii_mbtowc - 0x0000000008008c8a 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) - 0x0000000008008c8a __ascii_mbtowc - .text.memmove 0x0000000008008cae 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) - 0x0000000008008cae memmove + 0x00000000080093f2 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + 0x00000000080093f2 __ascii_mbtowc + .text.memmove 0x0000000008009416 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + 0x0000000008009416 memmove .text._realloc_r - 0x0000000008008ce2 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) - 0x0000000008008ce2 _realloc_r + 0x000000000800944a 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + 0x000000000800944a _realloc_r .text.__sfputc_r - 0x0000000008008d2e 0x2a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x0000000008009496 0x2a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .text.__sfputs_r - 0x0000000008008d58 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - 0x0000000008008d58 __sfputs_r + 0x00000000080094c0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x00000000080094c0 __sfputs_r .text._vfprintf_r - 0x0000000008008d7c 0x260 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - 0x0000000008008d7c _vfiprintf_r - 0x0000000008008d7c _vfprintf_r + 0x00000000080094e4 0x260 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x00000000080094e4 _vfiprintf_r + 0x00000000080094e4 _vfprintf_r .text.__swbuf_r - 0x0000000008008fdc 0xa4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - 0x0000000008008fdc __swbuf_r + 0x0000000008009744 0xa4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + 0x0000000008009744 __swbuf_r .text.__ascii_wctomb - 0x0000000008009080 0x1a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) - 0x0000000008009080 __ascii_wctomb - *fill* 0x000000000800909a 0x2 + 0x00000000080097e8 0x1a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + 0x00000000080097e8 __ascii_wctomb + *fill* 0x0000000008009802 0x2 .text.__swsetup_r - 0x000000000800909c 0xdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - 0x000000000800909c __swsetup_r - .text.abort 0x0000000008009178 0xe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) - 0x0000000008009178 abort - *fill* 0x0000000008009186 0x2 + 0x0000000008009804 0xdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + 0x0000000008009804 __swsetup_r + .text.abort 0x00000000080098e0 0xe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + 0x00000000080098e0 abort + *fill* 0x00000000080098ee 0x2 .text.__sflush_r - 0x0000000008009188 0x10c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - 0x0000000008009188 __sflush_r + 0x00000000080098f0 0x10c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x00000000080098f0 __sflush_r .text._fflush_r - 0x0000000008009294 0x78 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - 0x0000000008009294 _fflush_r - .text.std 0x000000000800930c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080099fc 0x78 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x00000000080099fc _fflush_r + .text.std 0x0000000008009a74 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) .text._cleanup_r - 0x0000000008009354 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x0000000008009354 _cleanup_r + 0x0000000008009abc 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009abc _cleanup_r .text.__sfmoreglue - 0x0000000008009360 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x0000000008009360 __sfmoreglue + 0x0000000008009ac8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009ac8 __sfmoreglue .text.__sfp_lock_acquire - 0x000000000800938c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800938c __sfp_lock_acquire + 0x0000000008009af4 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009af4 __sfp_lock_acquire .text.__sfp_lock_release - 0x0000000008009398 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x0000000008009398 __sfp_lock_release + 0x0000000008009b00 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009b00 __sfp_lock_release .text.__sinit_lock_acquire - 0x00000000080093a4 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080093a4 __sinit_lock_acquire + 0x0000000008009b0c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009b0c __sinit_lock_acquire .text.__sinit_lock_release - 0x00000000080093b0 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080093b0 __sinit_lock_release - .text.__sinit 0x00000000080093bc 0x70 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080093bc __sinit - .text.__sfp 0x000000000800942c 0x8c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800942c __sfp + 0x0000000008009b18 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009b18 __sinit_lock_release + .text.__sinit 0x0000000008009b24 0x70 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009b24 __sinit + .text.__sfp 0x0000000008009b94 0x8c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008009b94 __sfp .text._fwalk_reent - 0x00000000080094b8 0x3e /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - 0x00000000080094b8 _fwalk_reent + 0x0000000008009c20 0x3e /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + 0x0000000008009c20 _fwalk_reent .text.__swhatbuf_r - 0x00000000080094f6 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - 0x00000000080094f6 __swhatbuf_r - *fill* 0x000000000800953e 0x2 + 0x0000000008009c5e 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000008009c5e __swhatbuf_r + *fill* 0x0000000008009ca6 0x2 .text.__smakebuf_r - 0x0000000008009540 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - 0x0000000008009540 __smakebuf_r + 0x0000000008009ca8 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000008009ca8 __smakebuf_r .text._malloc_usable_size_r - 0x00000000080095c0 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) - 0x00000000080095c0 _malloc_usable_size_r + 0x0000000008009d28 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + 0x0000000008009d28 _malloc_usable_size_r .text._raise_r - 0x00000000080095d0 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - 0x00000000080095d0 _raise_r - .text.raise 0x0000000008009620 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - 0x0000000008009620 raise - .text._kill_r 0x0000000008009630 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - 0x0000000008009630 _kill_r + 0x0000000008009d38 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x0000000008009d38 _raise_r + .text.raise 0x0000000008009d88 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x0000000008009d88 raise + .text._kill_r 0x0000000008009d98 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000008009d98 _kill_r .text._getpid_r - 0x0000000008009654 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - 0x0000000008009654 _getpid_r - .text.__sread 0x0000000008009658 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x0000000008009658 __sread + 0x0000000008009dbc 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000008009dbc _getpid_r + .text.__sread 0x0000000008009dc0 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000008009dc0 __sread .text.__swrite - 0x000000000800967a 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x000000000800967a __swrite - .text.__sseek 0x00000000080096b2 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x00000000080096b2 __sseek + 0x0000000008009de2 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000008009de2 __swrite + .text.__sseek 0x0000000008009e1a 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000008009e1a __sseek .text.__sclose - 0x00000000080096d6 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x00000000080096d6 __sclose - *fill* 0x00000000080096de 0x2 + 0x0000000008009e3e 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000008009e3e __sclose + *fill* 0x0000000008009e46 0x2 .text._write_r - 0x00000000080096e0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - 0x00000000080096e0 _write_r + 0x0000000008009e48 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + 0x0000000008009e48 _write_r .text._close_r - 0x0000000008009704 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - 0x0000000008009704 _close_r + 0x0000000008009e6c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + 0x0000000008009e6c _close_r .text._fstat_r - 0x0000000008009724 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - 0x0000000008009724 _fstat_r + 0x0000000008009e8c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + 0x0000000008009e8c _fstat_r .text._isatty_r - 0x0000000008009748 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - 0x0000000008009748 _isatty_r + 0x0000000008009eb0 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + 0x0000000008009eb0 _isatty_r .text._lseek_r - 0x0000000008009768 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - 0x0000000008009768 _lseek_r - .text._read_r 0x000000000800978c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - 0x000000000800978c _read_r - .text.sqrtf 0x00000000080097b0 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) - 0x00000000080097b0 sqrtf + 0x0000000008009ed0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + 0x0000000008009ed0 _lseek_r + .text._read_r 0x0000000008009ef4 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + 0x0000000008009ef4 _read_r + .text.sqrtf 0x0000000008009f18 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) + 0x0000000008009f18 sqrtf .text.__ieee754_sqrtf - 0x00000000080097f4 0xa2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) - 0x00000000080097f4 __ieee754_sqrtf + 0x0000000008009f5c 0xa2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) + 0x0000000008009f5c __ieee754_sqrtf *(.glue_7) - .glue_7 0x0000000008009896 0x0 linker stubs + .glue_7 0x0000000008009ffe 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0000000008009896 0x0 linker stubs + .glue_7t 0x0000000008009ffe 0x0 linker stubs *(.eh_frame) - *fill* 0x0000000008009896 0x2 - .eh_frame 0x0000000008009898 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + *fill* 0x0000000008009ffe 0x2 + .eh_frame 0x000000000800a000 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o *(.init) - .init 0x0000000008009898 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o - 0x0000000008009898 _init - .init 0x000000000800989c 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + .init 0x000000000800a000 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o + 0x000000000800a000 _init + .init 0x000000000800a004 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o *(.fini) - .fini 0x00000000080098a4 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o - 0x00000000080098a4 _fini - .fini 0x00000000080098a8 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o - 0x00000000080098b0 . = ALIGN (0x4) - 0x00000000080098b0 _etext = . + .fini 0x000000000800a00c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o + 0x000000000800a00c _fini + .fini 0x000000000800a010 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + 0x000000000800a018 . = ALIGN (0x4) + 0x000000000800a018 _etext = . -.vfp11_veneer 0x00000000080098b0 0x0 - .vfp11_veneer 0x00000000080098b0 0x0 linker stubs +.vfp11_veneer 0x000000000800a018 0x0 + .vfp11_veneer 0x000000000800a018 0x0 linker stubs -.v4_bx 0x00000000080098b0 0x0 - .v4_bx 0x00000000080098b0 0x0 linker stubs +.v4_bx 0x000000000800a018 0x0 + .v4_bx 0x000000000800a018 0x0 linker stubs -.iplt 0x00000000080098b0 0x0 - .iplt 0x00000000080098b0 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o +.iplt 0x000000000800a018 0x0 + .iplt 0x000000000800a018 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o -.rodata 0x00000000080098b0 0x129c - 0x00000000080098b0 . = ALIGN (0x4) +.rodata 0x000000000800a018 0x129c + 0x000000000800a018 . = ALIGN (0x4) *(.rodata) - .rodata 0x00000000080098b0 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .rodata 0x00000000080098c0 0xb8 ./HW_Devices/touch.o - .rodata 0x0000000008009978 0x3b ./SW_APPs/APP_blood.o - *fill* 0x00000000080099b3 0x1 - .rodata 0x00000000080099b4 0x9 ./SW_APPs/Main_APP.o + .rodata 0x000000000800a018 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .rodata 0x000000000800a028 0xb8 ./HW_Devices/touch.o + .rodata 0x000000000800a0e0 0x3b ./SW_APPs/APP_blood.o + *fill* 0x000000000800a11b 0x1 + .rodata 0x000000000800a11c 0x9 ./SW_APPs/Main_APP.o *(.rodata*) - *fill* 0x00000000080099bd 0x3 + *fill* 0x000000000800a125 0x3 .rodata.AHBPrescTable - 0x00000000080099c0 0x10 ./Core/Src/system_stm32f1xx.o - 0x00000000080099c0 AHBPrescTable + 0x000000000800a128 0x10 ./Core/Src/system_stm32f1xx.o + 0x000000000800a128 AHBPrescTable .rodata.APBPrescTable - 0x00000000080099d0 0x8 ./Core/Src/system_stm32f1xx.o - 0x00000000080099d0 APBPrescTable + 0x000000000800a138 0x8 ./Core/Src/system_stm32f1xx.o + 0x000000000800a138 APBPrescTable .rodata.asc2_1206 - 0x00000000080099d8 0x474 ./HW_Devices/LCD.o - 0x00000000080099d8 asc2_1206 + 0x000000000800a140 0x474 ./HW_Devices/LCD.o + 0x000000000800a140 asc2_1206 .rodata.asc2_1608 - 0x0000000008009e4c 0x5f0 ./HW_Devices/LCD.o - 0x0000000008009e4c asc2_1608 - *fill* 0x000000000800a43c 0x4 + 0x000000000800a5b4 0x5f0 ./HW_Devices/LCD.o + 0x000000000800a5b4 asc2_1608 + *fill* 0x000000000800aba4 0x4 .rodata.XSinTbl - 0x000000000800a440 0x328 ./SW_APPs/APP_blood.o + 0x000000000800aba8 0x328 ./SW_APPs/APP_blood.o .rodata._global_impure_ptr - 0x000000000800a768 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) - 0x000000000800a768 _global_impure_ptr + 0x000000000800aed0 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) + 0x000000000800aed0 _global_impure_ptr .rodata._printf_float.str1.1 - 0x000000000800a76c 0x12 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x000000000800aed4 0x12 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) .rodata._printf_i.str1.1 - 0x000000000800a77e 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x000000000800aee6 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .rodata._dtoa_r.str1.1 - 0x000000000800a7a0 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x000000000800af08 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) 0x96 (size before relaxing) .rodata._Balloc.str1.1 - 0x000000000800a834 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800af9c 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) 0x77 (size before relaxing) .rodata.__multadd.str1.1 - 0x000000000800a894 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - *fill* 0x000000000800a894 0x4 + 0x000000000800affc 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + *fill* 0x000000000800affc 0x4 .rodata.__mprec_bigtens - 0x000000000800a898 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800a898 __mprec_bigtens + 0x000000000800b000 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800b000 __mprec_bigtens .rodata.__mprec_tens - 0x000000000800a8c0 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800a8c0 __mprec_tens + 0x000000000800b028 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800b028 __mprec_tens .rodata.p05.6150 - 0x000000000800a988 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800b0f0 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) .rodata._svfprintf_r.str1.1 - 0x000000000800a994 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x000000000800b0fc 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) .rodata.__assert_func.str1.1 - 0x000000000800a9a5 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x000000000800b10d 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) 0x3d (size before relaxing) .rodata._setlocale_r.str1.1 - 0x000000000800a9e1 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x000000000800b149 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) 0x9 (size before relaxing) .rodata.str1.1 - 0x000000000800a9e9 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x000000000800b151 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .rodata._vfprintf_r.str1.1 - 0x000000000800a9eb 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x000000000800b153 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .rodata._ctype_ - 0x000000000800a9eb 0x101 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) - 0x000000000800a9eb _ctype_ + 0x000000000800b153 0x101 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) + 0x000000000800b153 _ctype_ .rodata.__sf_fake_stderr - 0x000000000800aaec 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800aaec __sf_fake_stderr + 0x000000000800b254 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800b254 __sf_fake_stderr .rodata.__sf_fake_stdin - 0x000000000800ab0c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800ab0c __sf_fake_stdin + 0x000000000800b274 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800b274 __sf_fake_stdin .rodata.__sf_fake_stdout - 0x000000000800ab2c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800ab2c __sf_fake_stdout - 0x000000000800ab4c . = ALIGN (0x4) + 0x000000000800b294 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800b294 __sf_fake_stdout + 0x000000000800b2b4 . = ALIGN (0x4) -.rel.dyn 0x000000000800ab4c 0x0 - .rel.iplt 0x000000000800ab4c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o +.rel.dyn 0x000000000800b2b4 0x0 + .rel.iplt 0x000000000800b2b4 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o -.ARM.extab 0x000000000800ab4c 0x0 - 0x000000000800ab4c . = ALIGN (0x4) +.ARM.extab 0x000000000800b2b4 0x0 + 0x000000000800b2b4 . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x000000000800ab4c . = ALIGN (0x4) + 0x000000000800b2b4 . = ALIGN (0x4) -.ARM 0x000000000800ab4c 0x0 - 0x000000000800ab4c . = ALIGN (0x4) - 0x000000000800ab4c __exidx_start = . +.ARM 0x000000000800b2b4 0x0 + 0x000000000800b2b4 . = ALIGN (0x4) + 0x000000000800b2b4 __exidx_start = . *(.ARM.exidx*) - 0x000000000800ab4c __exidx_end = . - 0x000000000800ab4c . = ALIGN (0x4) + 0x000000000800b2b4 __exidx_end = . + 0x000000000800b2b4 . = ALIGN (0x4) -.preinit_array 0x000000000800ab4c 0x0 - 0x000000000800ab4c . = ALIGN (0x4) - 0x000000000800ab4c PROVIDE (__preinit_array_start = .) +.preinit_array 0x000000000800b2b4 0x0 + 0x000000000800b2b4 . = ALIGN (0x4) + 0x000000000800b2b4 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x000000000800ab4c PROVIDE (__preinit_array_end = .) - 0x000000000800ab4c . = ALIGN (0x4) + 0x000000000800b2b4 PROVIDE (__preinit_array_end = .) + 0x000000000800b2b4 . = ALIGN (0x4) -.init_array 0x000000000800ab4c 0x4 - 0x000000000800ab4c . = ALIGN (0x4) - 0x000000000800ab4c PROVIDE (__init_array_start = .) +.init_array 0x000000000800b2b4 0x4 + 0x000000000800b2b4 . = ALIGN (0x4) + 0x000000000800b2b4 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x000000000800ab4c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o - 0x000000000800ab50 PROVIDE (__init_array_end = .) - 0x000000000800ab50 . = ALIGN (0x4) + .init_array 0x000000000800b2b4 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + 0x000000000800b2b8 PROVIDE (__init_array_end = .) + 0x000000000800b2b8 . = ALIGN (0x4) -.fini_array 0x000000000800ab50 0x4 - 0x000000000800ab50 . = ALIGN (0x4) +.fini_array 0x000000000800b2b8 0x4 + 0x000000000800b2b8 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x000000000800ab50 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + .fini_array 0x000000000800b2b8 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x000000000800ab54 . = ALIGN (0x4) - 0x000000000800ab54 _sidata = LOADADDR (.data) + 0x000000000800b2bc . = ALIGN (0x4) + 0x000000000800b2bc _sidata = LOADADDR (.data) -.data 0x0000000020000000 0x1e0 load address 0x000000000800ab54 +.data 0x0000000020000000 0x1e0 load address 0x000000000800b2bc 0x0000000020000000 . = ALIGN (0x4) 0x0000000020000000 _sdata = . *(.data) @@ -4225,11 +4605,11 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id *fill* 0x00000000200001dd 0x3 0x00000000200001e0 _edata = . -.igot.plt 0x00000000200001e0 0x0 load address 0x000000000800ad34 +.igot.plt 0x00000000200001e0 0x0 load address 0x000000000800b49c .igot.plt 0x00000000200001e0 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o 0x00000000200001e0 . = ALIGN (0x4) -.bss 0x00000000200001e0 0x2284 load address 0x000000000800ad34 +.bss 0x00000000200001e0 0x22cc load address 0x000000000800b49c 0x00000000200001e0 _sbss = . 0x00000000200001e0 __bss_start__ = _sbss *(.bss) @@ -4239,13 +4619,18 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x00000000200001fc 0x4 ./Core/Src/stm32f1xx_hal_msp.o .bss.__sbrk_heap_end 0x0000000020000200 0x4 ./Core/Src/sysmem.o - .bss.g_fft_index - 0x0000000020000204 0x2 ./SW_APPs/APP_blood.o - 0x0000000020000204 g_fft_index - *fill* 0x0000000020000206 0x2 .bss.g_blooddata - 0x0000000020000208 0x8 ./SW_APPs/APP_blood.o - 0x0000000020000208 g_blooddata + 0x0000000020000204 0x8 ./SW_APPs/APP_blood.o + 0x0000000020000204 g_blooddata + .bss.get_data_lock + 0x000000002000020c 0x1 ./SW_APPs/APP_blood.o + 0x000000002000020c get_data_lock + .bss.get_data_flag + 0x000000002000020d 0x1 ./SW_APPs/APP_blood.o + 0x000000002000020d get_data_flag + .bss.g_fft_index + 0x000000002000020e 0x2 ./SW_APPs/APP_blood.o + 0x000000002000020e g_fft_index .bss.__malloc_free_list 0x0000000020000210 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) 0x0000000020000210 __malloc_free_list @@ -4253,56 +4638,57 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x0000000020000214 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) 0x0000000020000214 __malloc_sbrk_start *(COMMON) - COMMON 0x0000000020000218 0x9c ./Core/Src/main.o + COMMON 0x0000000020000218 0xe4 ./Core/Src/main.o 0x0000000020000218 hi2c2 0x000000002000026c hsram1 - COMMON 0x00000000200002b4 0x4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000200002b4 uwTick - COMMON 0x00000000200002b8 0xa ./HW_Devices/LCD.o - 0x00000000200002b8 lcddev - *fill* 0x00000000200002c2 0x2 - COMMON 0x00000000200002c4 0x14 ./HW_Devices/eeprom.o - 0x00000000200002c4 eeprom_write_buffer - COMMON 0x00000000200002d8 0x28 ./HW_Devices/touch.o - 0x00000000200002d8 tconfig - 0x00000000200002f0 t0 - COMMON 0x0000000020000300 0x2152 ./SW_APPs/APP_blood.o - 0x0000000020000300 blood_str - 0x0000000020000340 fifo_ir - 0x0000000020000344 blood_win - 0x0000000020000348 s1 - 0x00000000200013c8 s2 - 0x0000000020002448 g_BloodWave - 0x0000000020002450 fifo_red - *fill* 0x0000000020002452 0x2 - COMMON 0x0000000020002454 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) - 0x0000000020002454 errno - COMMON 0x0000000020002458 0x9 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000020002458 __lock___atexit_recursive_mutex - 0x0000000020002459 __lock___arc4random_mutex - 0x000000002000245a __lock___env_recursive_mutex - 0x000000002000245b __lock___sinit_recursive_mutex - 0x000000002000245c __lock___malloc_recursive_mutex - 0x000000002000245d __lock___at_quick_exit_mutex - 0x000000002000245e __lock___dd_hash_mutex - 0x000000002000245f __lock___tz_mutex - 0x0000000020002460 __lock___sfp_recursive_mutex - 0x0000000020002464 . = ALIGN (0x4) - *fill* 0x0000000020002461 0x3 - 0x0000000020002464 _ebss = . - 0x0000000020002464 __bss_end__ = _ebss + 0x00000000200002b4 htim6 + COMMON 0x00000000200002fc 0x4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x00000000200002fc uwTick + COMMON 0x0000000020000300 0xa ./HW_Devices/LCD.o + 0x0000000020000300 lcddev + *fill* 0x000000002000030a 0x2 + COMMON 0x000000002000030c 0x14 ./HW_Devices/eeprom.o + 0x000000002000030c eeprom_write_buffer + COMMON 0x0000000020000320 0x28 ./HW_Devices/touch.o + 0x0000000020000320 tconfig + 0x0000000020000338 t0 + COMMON 0x0000000020000348 0x2152 ./SW_APPs/APP_blood.o + 0x0000000020000348 blood_str + 0x0000000020000388 fifo_ir + 0x000000002000038c blood_win + 0x0000000020000390 s1 + 0x0000000020001410 s2 + 0x0000000020002490 g_BloodWave + 0x0000000020002498 fifo_red + *fill* 0x000000002000249a 0x2 + COMMON 0x000000002000249c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + 0x000000002000249c errno + COMMON 0x00000000200024a0 0x9 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x00000000200024a0 __lock___atexit_recursive_mutex + 0x00000000200024a1 __lock___arc4random_mutex + 0x00000000200024a2 __lock___env_recursive_mutex + 0x00000000200024a3 __lock___sinit_recursive_mutex + 0x00000000200024a4 __lock___malloc_recursive_mutex + 0x00000000200024a5 __lock___at_quick_exit_mutex + 0x00000000200024a6 __lock___dd_hash_mutex + 0x00000000200024a7 __lock___tz_mutex + 0x00000000200024a8 __lock___sfp_recursive_mutex + 0x00000000200024ac . = ALIGN (0x4) + *fill* 0x00000000200024a9 0x3 + 0x00000000200024ac _ebss = . + 0x00000000200024ac __bss_end__ = _ebss ._user_heap_stack - 0x0000000020002464 0xc04 load address 0x000000000800ad34 - 0x0000000020002468 . = ALIGN (0x8) - *fill* 0x0000000020002464 0x4 + 0x00000000200024ac 0xc04 load address 0x000000000800b49c + 0x00000000200024b0 . = ALIGN (0x8) + *fill* 0x00000000200024ac 0x4 [!provide] PROVIDE (end = .) - 0x0000000020002468 PROVIDE (_end = .) - 0x0000000020002868 . = (. + _Min_Heap_Size) - *fill* 0x0000000020002468 0x400 - 0x0000000020003068 . = (. + _Min_Stack_Size) - *fill* 0x0000000020002868 0x800 - 0x0000000020003068 . = ALIGN (0x8) + 0x00000000200024b0 PROVIDE (_end = .) + 0x00000000200028b0 . = (. + _Min_Heap_Size) + *fill* 0x00000000200024b0 0x400 + 0x00000000200030b0 . = (. + _Min_Stack_Size) + *fill* 0x00000000200028b0 0x800 + 0x00000000200030b0 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -4343,446 +4729,469 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .ARM.attributes 0x000000000000025a 0x2d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .ARM.attributes - 0x0000000000000287 0x2d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000000000287 0x2d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .ARM.attributes - 0x00000000000002b4 0x2d ./HW_Devices/LCD.o + 0x00000000000002b4 0x2d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .ARM.attributes - 0x00000000000002e1 0x2d ./HW_Devices/eeprom.o + 0x00000000000002e1 0x2d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .ARM.attributes - 0x000000000000030e 0x2d ./HW_Devices/iic.o + 0x000000000000030e 0x2d ./HW_Devices/LCD.o .ARM.attributes - 0x000000000000033b 0x2d ./HW_Devices/touch.o + 0x000000000000033b 0x2d ./HW_Devices/eeprom.o .ARM.attributes - 0x0000000000000368 0x2d ./SW_APPs/APP_blood.o + 0x0000000000000368 0x2d ./HW_Devices/iic.o .ARM.attributes - 0x0000000000000395 0x2d ./SW_APPs/Main_APP.o + 0x0000000000000395 0x2d ./HW_Devices/touch.o .ARM.attributes - 0x00000000000003c2 0x2d ./SW_APPs/windows.o + 0x00000000000003c2 0x2d ./SW_APPs/APP_blood.o .ARM.attributes - 0x00000000000003ef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + 0x00000000000003ef 0x2d ./SW_APPs/Main_APP.o .ARM.attributes - 0x000000000000041c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) + 0x000000000000041c 0x2d ./SW_APPs/windows.o .ARM.attributes - 0x0000000000000449 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + 0x0000000000000449 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) .ARM.attributes - 0x0000000000000476 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x0000000000000476 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) .ARM.attributes - 0x00000000000004a3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + 0x00000000000004a3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) .ARM.attributes - 0x00000000000004d0 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + 0x00000000000004d0 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) .ARM.attributes - 0x00000000000004fd 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + 0x00000000000004fd 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) .ARM.attributes - 0x000000000000052a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x000000000000052a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) .ARM.attributes - 0x0000000000000557 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x0000000000000557 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) .ARM.attributes - 0x0000000000000584 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + 0x0000000000000584 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) .ARM.attributes - 0x00000000000005b1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + 0x00000000000005b1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .ARM.attributes - 0x00000000000005de 0x17 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) + 0x00000000000005de 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) .ARM.attributes - 0x00000000000005f5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x000000000000060b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) .ARM.attributes - 0x0000000000000622 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + 0x0000000000000638 0x17 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) .ARM.attributes - 0x000000000000064f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + 0x000000000000064f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) .ARM.attributes - 0x000000000000067c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + 0x000000000000067c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) .ARM.attributes - 0x00000000000006a9 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x00000000000006a9 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) .ARM.attributes - 0x00000000000006d6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000000006d6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) .ARM.attributes - 0x0000000000000703 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + 0x0000000000000703 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) .ARM.attributes - 0x0000000000000730 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x0000000000000730 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) .ARM.attributes - 0x000000000000075d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + 0x000000000000075d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) .ARM.attributes - 0x000000000000078a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x000000000000078a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) .ARM.attributes - 0x00000000000007b7 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + 0x00000000000007b7 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) .ARM.attributes - 0x00000000000007e4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x00000000000007e4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) .ARM.attributes - 0x0000000000000811 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x0000000000000811 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) .ARM.attributes - 0x000000000000083e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + 0x000000000000083e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .ARM.attributes - 0x000000000000086b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + 0x000000000000086b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) .ARM.attributes - 0x0000000000000898 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + 0x0000000000000898 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) .ARM.attributes - 0x00000000000008c5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x00000000000008c5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) .ARM.attributes - 0x00000000000008f2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + 0x00000000000008f2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) .ARM.attributes - 0x000000000000091f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + 0x000000000000091f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .ARM.attributes - 0x000000000000094c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + 0x000000000000094c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) .ARM.attributes - 0x0000000000000979 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + 0x0000000000000979 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) .ARM.attributes - 0x00000000000009a6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) + 0x00000000000009a6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) .ARM.attributes - 0x00000000000009d3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x00000000000009d3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) .ARM.attributes - 0x0000000000000a00 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000000000a00 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) .ARM.attributes - 0x0000000000000a2d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + 0x0000000000000a2d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) .ARM.attributes - 0x0000000000000a5a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000000000a5a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) .ARM.attributes - 0x0000000000000a87 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + 0x0000000000000a87 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) .ARM.attributes - 0x0000000000000ab4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x0000000000000ab4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) .ARM.attributes - 0x0000000000000ae1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000000000ae1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) .ARM.attributes - 0x0000000000000b0e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000000000b0e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) .ARM.attributes - 0x0000000000000b3b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + 0x0000000000000b3b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) .ARM.attributes - 0x0000000000000b68 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + 0x0000000000000b68 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) .ARM.attributes - 0x0000000000000b95 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + 0x0000000000000b95 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) .ARM.attributes - 0x0000000000000bc2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + 0x0000000000000bc2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) .ARM.attributes - 0x0000000000000bef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + 0x0000000000000bef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) .ARM.attributes - 0x0000000000000c1c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + 0x0000000000000c1c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) .ARM.attributes - 0x0000000000000c49 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) + 0x0000000000000c49 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) .ARM.attributes - 0x0000000000000c76 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) + 0x0000000000000c76 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) .ARM.attributes - 0x0000000000000ca3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-s_lib_ver.o) + 0x0000000000000ca3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) .ARM.attributes - 0x0000000000000cd0 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) + 0x0000000000000cd0 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) .ARM.attributes - 0x0000000000000ced 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) + 0x0000000000000cfd 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-s_lib_ver.o) .ARM.attributes - 0x0000000000000d0a 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) + 0x0000000000000d2a 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) .ARM.attributes - 0x0000000000000d27 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) + 0x0000000000000d47 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) .ARM.attributes - 0x0000000000000d44 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) + 0x0000000000000d64 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) .ARM.attributes - 0x0000000000000d61 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) + 0x0000000000000d81 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) .ARM.attributes - 0x0000000000000d7e 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) + 0x0000000000000d9e 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) .ARM.attributes - 0x0000000000000d9b 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) + 0x0000000000000dbb 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) .ARM.attributes - 0x0000000000000db8 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpsf2.o) + 0x0000000000000dd8 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) .ARM.attributes - 0x0000000000000dd5 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unordsf2.o) + 0x0000000000000df5 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) .ARM.attributes - 0x0000000000000df2 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) + 0x0000000000000e12 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpsf2.o) .ARM.attributes - 0x0000000000000e0f 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + 0x0000000000000e2f 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unordsf2.o) + .ARM.attributes + 0x0000000000000e4c 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x0000000000000e69 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o OUTPUT(m3s.elf elf32-littlearm) LOAD linker stubs LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc.a LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a -.debug_info 0x0000000000000000 0xd8e3 - .debug_info 0x0000000000000000 0xda2 ./Core/Src/main.o - .debug_info 0x0000000000000da2 0xc09 ./Core/Src/stm32f1xx_hal_msp.o - .debug_info 0x00000000000019ab 0x222 ./Core/Src/stm32f1xx_it.o - .debug_info 0x0000000000001bcd 0xfa8 ./Core/Src/syscalls.o - .debug_info 0x0000000000002b75 0xa25 ./Core/Src/sysmem.o - .debug_info 0x000000000000359a 0x2be ./Core/Src/system_stm32f1xx.o - .debug_info 0x0000000000003858 0x22 ./Core/Startup/startup_stm32f103zetx.o - .debug_info 0x000000000000387a 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_info 0x000000000000404a 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_info 0x0000000000004c8c 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_info 0x000000000000538d 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_info 0x0000000000007b1b 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_info 0x00000000000083a9 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_info 0x00000000000090f4 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_info 0x0000000000009bdb 0xa30 ./HW_Devices/LCD.o - .debug_info 0x000000000000a60b 0x39b ./HW_Devices/eeprom.o - .debug_info 0x000000000000a9a6 0x734 ./HW_Devices/iic.o - .debug_info 0x000000000000b0da 0x8b1 ./HW_Devices/touch.o - .debug_info 0x000000000000b98b 0x1224 ./SW_APPs/APP_blood.o - .debug_info 0x000000000000cbaf 0x4cc ./SW_APPs/Main_APP.o - .debug_info 0x000000000000d07b 0x868 ./SW_APPs/windows.o +.debug_info 0x0000000000000000 0x12c6e + .debug_info 0x0000000000000000 0x114e ./Core/Src/main.o + .debug_info 0x000000000000114e 0x1169 ./Core/Src/stm32f1xx_hal_msp.o + .debug_info 0x00000000000022b7 0x7b4 ./Core/Src/stm32f1xx_it.o + .debug_info 0x0000000000002a6b 0xfa8 ./Core/Src/syscalls.o + .debug_info 0x0000000000003a13 0xa25 ./Core/Src/sysmem.o + .debug_info 0x0000000000004438 0x2be ./Core/Src/system_stm32f1xx.o + .debug_info 0x00000000000046f6 0x22 ./Core/Startup/startup_stm32f103zetx.o + .debug_info 0x0000000000004718 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_info 0x0000000000004ee8 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_info 0x0000000000005b2a 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_info 0x000000000000622b 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_info 0x00000000000089b9 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_info 0x0000000000009247 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_info 0x0000000000009f92 0x2a45 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_info 0x000000000000c9d7 0x14d5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_info 0x000000000000deac 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_info 0x000000000000e993 0xa30 ./HW_Devices/LCD.o + .debug_info 0x000000000000f3c3 0x39b ./HW_Devices/eeprom.o + .debug_info 0x000000000000f75e 0x734 ./HW_Devices/iic.o + .debug_info 0x000000000000fe92 0x8b1 ./HW_Devices/touch.o + .debug_info 0x0000000000010743 0x17f7 ./SW_APPs/APP_blood.o + .debug_info 0x0000000000011f3a 0x4cc ./SW_APPs/Main_APP.o + .debug_info 0x0000000000012406 0x868 ./SW_APPs/windows.o -.debug_abbrev 0x0000000000000000 0x2a70 - .debug_abbrev 0x0000000000000000 0x24b ./Core/Src/main.o - .debug_abbrev 0x000000000000024b 0x20b ./Core/Src/stm32f1xx_hal_msp.o - .debug_abbrev 0x0000000000000456 0xd2 ./Core/Src/stm32f1xx_it.o - .debug_abbrev 0x0000000000000528 0x286 ./Core/Src/syscalls.o - .debug_abbrev 0x00000000000007ae 0x1bf ./Core/Src/sysmem.o - .debug_abbrev 0x000000000000096d 0x14e ./Core/Src/system_stm32f1xx.o - .debug_abbrev 0x0000000000000abb 0x12 ./Core/Startup/startup_stm32f103zetx.o - .debug_abbrev 0x0000000000000acd 0x1ed ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_abbrev 0x0000000000000cba 0x313 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_abbrev 0x0000000000000fcd 0x1e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_abbrev 0x00000000000011b5 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_abbrev 0x000000000000143d 0x273 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_abbrev 0x00000000000016b0 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_abbrev 0x00000000000018a2 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_abbrev 0x0000000000001a50 0x28b ./HW_Devices/LCD.o - .debug_abbrev 0x0000000000001cdb 0x1b6 ./HW_Devices/eeprom.o - .debug_abbrev 0x0000000000001e91 0x176 ./HW_Devices/iic.o - .debug_abbrev 0x0000000000002007 0x258 ./HW_Devices/touch.o - .debug_abbrev 0x000000000000225f 0x3a4 ./SW_APPs/APP_blood.o - .debug_abbrev 0x0000000000002603 0x198 ./SW_APPs/Main_APP.o - .debug_abbrev 0x000000000000279b 0x2d5 ./SW_APPs/windows.o +.debug_abbrev 0x0000000000000000 0x303e + .debug_abbrev 0x0000000000000000 0x25e ./Core/Src/main.o + .debug_abbrev 0x000000000000025e 0x238 ./Core/Src/stm32f1xx_hal_msp.o + .debug_abbrev 0x0000000000000496 0x176 ./Core/Src/stm32f1xx_it.o + .debug_abbrev 0x000000000000060c 0x286 ./Core/Src/syscalls.o + .debug_abbrev 0x0000000000000892 0x1bf ./Core/Src/sysmem.o + .debug_abbrev 0x0000000000000a51 0x14e ./Core/Src/system_stm32f1xx.o + .debug_abbrev 0x0000000000000b9f 0x12 ./Core/Startup/startup_stm32f103zetx.o + .debug_abbrev 0x0000000000000bb1 0x1ed ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_abbrev 0x0000000000000d9e 0x313 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_abbrev 0x00000000000010b1 0x1e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_abbrev 0x0000000000001299 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_abbrev 0x0000000000001521 0x273 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_abbrev 0x0000000000001794 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_abbrev 0x0000000000001986 0x25e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_abbrev 0x0000000000001be4 0x266 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_abbrev 0x0000000000001e4a 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_abbrev 0x0000000000001ff8 0x28b ./HW_Devices/LCD.o + .debug_abbrev 0x0000000000002283 0x1b6 ./HW_Devices/eeprom.o + .debug_abbrev 0x0000000000002439 0x176 ./HW_Devices/iic.o + .debug_abbrev 0x00000000000025af 0x258 ./HW_Devices/touch.o + .debug_abbrev 0x0000000000002807 0x3ca ./SW_APPs/APP_blood.o + .debug_abbrev 0x0000000000002bd1 0x198 ./SW_APPs/Main_APP.o + .debug_abbrev 0x0000000000002d69 0x2d5 ./SW_APPs/windows.o -.debug_aranges 0x0000000000000000 0xb78 +.debug_aranges 0x0000000000000000 0x10d8 .debug_aranges - 0x0000000000000000 0x48 ./Core/Src/main.o + 0x0000000000000000 0x50 ./Core/Src/main.o .debug_aranges - 0x0000000000000048 0x50 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000000000050 0x60 ./Core/Src/stm32f1xx_hal_msp.o .debug_aranges - 0x0000000000000098 0x60 ./Core/Src/stm32f1xx_it.o + 0x00000000000000b0 0x68 ./Core/Src/stm32f1xx_it.o .debug_aranges - 0x00000000000000f8 0xa8 ./Core/Src/syscalls.o + 0x0000000000000118 0xa8 ./Core/Src/syscalls.o .debug_aranges - 0x00000000000001a0 0x20 ./Core/Src/sysmem.o + 0x00000000000001c0 0x20 ./Core/Src/sysmem.o .debug_aranges - 0x00000000000001c0 0x28 ./Core/Src/system_stm32f1xx.o + 0x00000000000001e0 0x28 ./Core/Src/system_stm32f1xx.o .debug_aranges - 0x00000000000001e8 0x28 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000000000208 0x28 ./Core/Startup/startup_stm32f103zetx.o .debug_aranges - 0x0000000000000210 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000000000230 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_aranges - 0x00000000000002f0 0x100 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000000000310 0x100 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_aranges - 0x00000000000003f0 0x58 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000000000410 0x58 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_aranges - 0x0000000000000448 0x2a0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000000000468 0x2a0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_aranges - 0x00000000000006e8 0x90 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000000000708 0x90 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_aranges - 0x0000000000000778 0xb8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x0000000000000798 0xb8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_aranges - 0x0000000000000830 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000000000850 0x3d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_aranges - 0x00000000000008d8 0xc8 ./HW_Devices/LCD.o + 0x0000000000000c20 0x168 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_aranges - 0x00000000000009a0 0x38 ./HW_Devices/eeprom.o + 0x0000000000000d88 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_aranges - 0x00000000000009d8 0x28 ./HW_Devices/iic.o + 0x0000000000000e30 0xc8 ./HW_Devices/LCD.o .debug_aranges - 0x0000000000000a00 0x60 ./HW_Devices/touch.o + 0x0000000000000ef8 0x38 ./HW_Devices/eeprom.o .debug_aranges - 0x0000000000000a60 0x88 ./SW_APPs/APP_blood.o + 0x0000000000000f30 0x28 ./HW_Devices/iic.o .debug_aranges - 0x0000000000000ae8 0x20 ./SW_APPs/Main_APP.o + 0x0000000000000f58 0x60 ./HW_Devices/touch.o .debug_aranges - 0x0000000000000b08 0x70 ./SW_APPs/windows.o + 0x0000000000000fb8 0x90 ./SW_APPs/APP_blood.o + .debug_aranges + 0x0000000000001048 0x20 ./SW_APPs/Main_APP.o + .debug_aranges + 0x0000000000001068 0x70 ./SW_APPs/windows.o -.debug_ranges 0x0000000000000000 0xa70 - .debug_ranges 0x0000000000000000 0x38 ./Core/Src/main.o - .debug_ranges 0x0000000000000038 0x40 ./Core/Src/stm32f1xx_hal_msp.o - .debug_ranges 0x0000000000000078 0x50 ./Core/Src/stm32f1xx_it.o - .debug_ranges 0x00000000000000c8 0x98 ./Core/Src/syscalls.o - .debug_ranges 0x0000000000000160 0x10 ./Core/Src/sysmem.o - .debug_ranges 0x0000000000000170 0x18 ./Core/Src/system_stm32f1xx.o - .debug_ranges 0x0000000000000188 0x20 ./Core/Startup/startup_stm32f103zetx.o - .debug_ranges 0x00000000000001a8 0xd0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_ranges 0x0000000000000278 0xf0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_ranges 0x0000000000000368 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_ranges 0x00000000000003b0 0x2b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_ranges 0x0000000000000668 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_ranges 0x00000000000006e8 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_ranges 0x0000000000000790 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_ranges 0x0000000000000828 0xb8 ./HW_Devices/LCD.o - .debug_ranges 0x00000000000008e0 0x40 ./HW_Devices/eeprom.o - .debug_ranges 0x0000000000000920 0x18 ./HW_Devices/iic.o - .debug_ranges 0x0000000000000938 0x50 ./HW_Devices/touch.o - .debug_ranges 0x0000000000000988 0x78 ./SW_APPs/APP_blood.o - .debug_ranges 0x0000000000000a00 0x10 ./SW_APPs/Main_APP.o - .debug_ranges 0x0000000000000a10 0x60 ./SW_APPs/windows.o +.debug_ranges 0x0000000000000000 0xfb0 + .debug_ranges 0x0000000000000000 0x40 ./Core/Src/main.o + .debug_ranges 0x0000000000000040 0x50 ./Core/Src/stm32f1xx_hal_msp.o + .debug_ranges 0x0000000000000090 0x58 ./Core/Src/stm32f1xx_it.o + .debug_ranges 0x00000000000000e8 0x98 ./Core/Src/syscalls.o + .debug_ranges 0x0000000000000180 0x10 ./Core/Src/sysmem.o + .debug_ranges 0x0000000000000190 0x18 ./Core/Src/system_stm32f1xx.o + .debug_ranges 0x00000000000001a8 0x20 ./Core/Startup/startup_stm32f103zetx.o + .debug_ranges 0x00000000000001c8 0xd0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_ranges 0x0000000000000298 0xf0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_ranges 0x0000000000000388 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_ranges 0x00000000000003d0 0x2b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_ranges 0x0000000000000688 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_ranges 0x0000000000000708 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_ranges 0x00000000000007b0 0x3c0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_ranges 0x0000000000000b70 0x158 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_ranges 0x0000000000000cc8 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_ranges 0x0000000000000d60 0xb8 ./HW_Devices/LCD.o + .debug_ranges 0x0000000000000e18 0x40 ./HW_Devices/eeprom.o + .debug_ranges 0x0000000000000e58 0x18 ./HW_Devices/iic.o + .debug_ranges 0x0000000000000e70 0x50 ./HW_Devices/touch.o + .debug_ranges 0x0000000000000ec0 0x80 ./SW_APPs/APP_blood.o + .debug_ranges 0x0000000000000f40 0x10 ./SW_APPs/Main_APP.o + .debug_ranges 0x0000000000000f50 0x60 ./SW_APPs/windows.o -.debug_macro 0x0000000000000000 0x1ba4e - .debug_macro 0x0000000000000000 0x1c1 ./Core/Src/main.o - .debug_macro 0x00000000000001c1 0xa9c ./Core/Src/main.o - .debug_macro 0x0000000000000c5d 0x21b ./Core/Src/main.o - .debug_macro 0x0000000000000e78 0x2e ./Core/Src/main.o - .debug_macro 0x0000000000000ea6 0x22 ./Core/Src/main.o - .debug_macro 0x0000000000000ec8 0x22 ./Core/Src/main.o - .debug_macro 0x0000000000000eea 0x8e ./Core/Src/main.o - .debug_macro 0x0000000000000f78 0x51 ./Core/Src/main.o - .debug_macro 0x0000000000000fc9 0x103 ./Core/Src/main.o - .debug_macro 0x00000000000010cc 0x6a ./Core/Src/main.o - .debug_macro 0x0000000000001136 0x1df ./Core/Src/main.o - .debug_macro 0x0000000000001315 0x1c ./Core/Src/main.o - .debug_macro 0x0000000000001331 0x22 ./Core/Src/main.o - .debug_macro 0x0000000000001353 0xc3 ./Core/Src/main.o - .debug_macro 0x0000000000001416 0xd23 ./Core/Src/main.o - .debug_macro 0x0000000000002139 0xfd8c ./Core/Src/main.o - .debug_macro 0x0000000000011ec5 0x6d ./Core/Src/main.o - .debug_macro 0x0000000000011f32 0x3468 ./Core/Src/main.o - .debug_macro 0x000000000001539a 0x174 ./Core/Src/main.o - .debug_macro 0x000000000001550e 0x5c ./Core/Src/main.o - .debug_macro 0x000000000001556a 0x5be ./Core/Src/main.o - .debug_macro 0x0000000000015b28 0x4d5 ./Core/Src/main.o - .debug_macro 0x0000000000015ffd 0x1cb ./Core/Src/main.o - .debug_macro 0x00000000000161c8 0x114 ./Core/Src/main.o - .debug_macro 0x00000000000162dc 0x1ea ./Core/Src/main.o - .debug_macro 0x00000000000164c6 0x27 ./Core/Src/main.o - .debug_macro 0x00000000000164ed 0x144 ./Core/Src/main.o - .debug_macro 0x0000000000016631 0x1bc ./Core/Src/main.o - .debug_macro 0x00000000000167ed 0x30 ./Core/Src/main.o - .debug_macro 0x000000000001681d 0x3c ./Core/Src/main.o - .debug_macro 0x0000000000016859 0x57 ./Core/Src/main.o - .debug_macro 0x00000000000168b0 0x88 ./Core/Src/main.o - .debug_macro 0x0000000000016938 0x24f ./Core/Src/main.o - .debug_macro 0x0000000000016b87 0x356 ./Core/Src/main.o - .debug_macro 0x0000000000016edd 0x287 ./Core/Src/main.o - .debug_macro 0x0000000000017164 0x141 ./Core/Src/main.o - .debug_macro 0x00000000000172a5 0xb5 ./Core/Src/main.o - .debug_macro 0x000000000001735a 0x70 ./Core/Src/main.o - .debug_macro 0x00000000000173ca 0x1b7 ./Core/Src/stm32f1xx_hal_msp.o - .debug_macro 0x0000000000017581 0x1c1 ./Core/Src/stm32f1xx_it.o - .debug_macro 0x0000000000017742 0x24c ./Core/Src/syscalls.o - .debug_macro 0x000000000001798e 0x4c ./Core/Src/syscalls.o - .debug_macro 0x00000000000179da 0x18 ./Core/Src/syscalls.o - .debug_macro 0x00000000000179f2 0x94 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017a86 0x3c ./Core/Src/syscalls.o - .debug_macro 0x0000000000017ac2 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017af6 0x57 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017b4d 0x339 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017e86 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017e9c 0x43 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017edf 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017f13 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017f23 0x58 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017f7b 0x71 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017fec 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018008 0x12a ./Core/Src/syscalls.o - .debug_macro 0x0000000000018132 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018142 0x35 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018177 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018187 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018197 0x10 ./Core/Src/syscalls.o - .debug_macro 0x00000000000181a7 0x1c ./Core/Src/syscalls.o - .debug_macro 0x00000000000181c3 0x52 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018215 0x22 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018237 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018247 0x40 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018287 0xd5 ./Core/Src/syscalls.o - .debug_macro 0x000000000001835c 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018378 0x3d ./Core/Src/syscalls.o - .debug_macro 0x00000000000183b5 0x35 ./Core/Src/syscalls.o - .debug_macro 0x00000000000183ea 0x12c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018516 0x16 ./Core/Src/syscalls.o - .debug_macro 0x000000000001852c 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018542 0x29 ./Core/Src/syscalls.o - .debug_macro 0x000000000001856b 0x10 ./Core/Src/syscalls.o - .debug_macro 0x000000000001857b 0x241 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187bc 0x1c ./Core/Src/syscalls.o - .debug_macro 0x00000000000187d8 0x10 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187e8 0x10 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187f8 0x16 ./Core/Src/syscalls.o - .debug_macro 0x000000000001880e 0x145 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018953 0x189 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018adc 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018af2 0xce ./Core/Src/syscalls.o - .debug_macro 0x0000000000018bc0 0xff ./Core/Src/sysmem.o - .debug_macro 0x0000000000018cbf 0x23b ./Core/Src/sysmem.o - .debug_macro 0x0000000000018efa 0x1a8 ./Core/Src/system_stm32f1xx.o - .debug_macro 0x00000000000190a2 0x1cc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_macro 0x000000000001926e 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_macro 0x0000000000019416 0x213 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_macro 0x0000000000019629 0x1ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_macro 0x0000000000019818 0x1ba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_macro 0x00000000000199d2 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_macro 0x0000000000019b7a 0x1e1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_macro 0x0000000000019d5b 0x1c6 ./HW_Devices/LCD.o - .debug_macro 0x0000000000019f21 0x38b ./HW_Devices/LCD.o - .debug_macro 0x000000000001a2ac 0x1d1 ./HW_Devices/eeprom.o - .debug_macro 0x000000000001a47d 0x1c1 ./HW_Devices/iic.o - .debug_macro 0x000000000001a63e 0x1f6 ./HW_Devices/touch.o - .debug_macro 0x000000000001a834 0x22 ./HW_Devices/touch.o - .debug_macro 0x000000000001a856 0x391 ./HW_Devices/touch.o - .debug_macro 0x000000000001abe7 0x10 ./HW_Devices/touch.o - .debug_macro 0x000000000001abf7 0x2c7 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001aebe 0x1a9 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001b067 0xbd ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001b124 0x56 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001b17a 0x391 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001b50b 0x9a ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001b5a5 0x1f9 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001b79e 0x28 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001b7c6 0xa0 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001b866 0x1e8 ./SW_APPs/windows.o +.debug_macro 0x0000000000000000 0x1c81a + .debug_macro 0x0000000000000000 0x1d6 ./Core/Src/main.o + .debug_macro 0x00000000000001d6 0xa9c ./Core/Src/main.o + .debug_macro 0x0000000000000c72 0x221 ./Core/Src/main.o + .debug_macro 0x0000000000000e93 0x2e ./Core/Src/main.o + .debug_macro 0x0000000000000ec1 0x22 ./Core/Src/main.o + .debug_macro 0x0000000000000ee3 0x22 ./Core/Src/main.o + .debug_macro 0x0000000000000f05 0x8e ./Core/Src/main.o + .debug_macro 0x0000000000000f93 0x51 ./Core/Src/main.o + .debug_macro 0x0000000000000fe4 0x103 ./Core/Src/main.o + .debug_macro 0x00000000000010e7 0x6a ./Core/Src/main.o + .debug_macro 0x0000000000001151 0x1df ./Core/Src/main.o + .debug_macro 0x0000000000001330 0x1c ./Core/Src/main.o + .debug_macro 0x000000000000134c 0x22 ./Core/Src/main.o + .debug_macro 0x000000000000136e 0xc3 ./Core/Src/main.o + .debug_macro 0x0000000000001431 0xd23 ./Core/Src/main.o + .debug_macro 0x0000000000002154 0xfd8c ./Core/Src/main.o + .debug_macro 0x0000000000011ee0 0x6d ./Core/Src/main.o + .debug_macro 0x0000000000011f4d 0x3468 ./Core/Src/main.o + .debug_macro 0x00000000000153b5 0x174 ./Core/Src/main.o + .debug_macro 0x0000000000015529 0x5c ./Core/Src/main.o + .debug_macro 0x0000000000015585 0x5be ./Core/Src/main.o + .debug_macro 0x0000000000015b43 0x4d5 ./Core/Src/main.o + .debug_macro 0x0000000000016018 0x1cb ./Core/Src/main.o + .debug_macro 0x00000000000161e3 0x114 ./Core/Src/main.o + .debug_macro 0x00000000000162f7 0x1ea ./Core/Src/main.o + .debug_macro 0x00000000000164e1 0x27 ./Core/Src/main.o + .debug_macro 0x0000000000016508 0x144 ./Core/Src/main.o + .debug_macro 0x000000000001664c 0x1bc ./Core/Src/main.o + .debug_macro 0x0000000000016808 0x30 ./Core/Src/main.o + .debug_macro 0x0000000000016838 0x3c ./Core/Src/main.o + .debug_macro 0x0000000000016874 0x57 ./Core/Src/main.o + .debug_macro 0x00000000000168cb 0x88 ./Core/Src/main.o + .debug_macro 0x0000000000016953 0x24f ./Core/Src/main.o + .debug_macro 0x0000000000016ba2 0x356 ./Core/Src/main.o + .debug_macro 0x0000000000016ef8 0x287 ./Core/Src/main.o + .debug_macro 0x000000000001717f 0x141 ./Core/Src/main.o + .debug_macro 0x00000000000172c0 0x8d1 ./Core/Src/main.o + .debug_macro 0x0000000000017b91 0xb5 ./Core/Src/main.o + .debug_macro 0x0000000000017c46 0x70 ./Core/Src/main.o + .debug_macro 0x0000000000017cb6 0x1cc ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000017e82 0x1d6 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000018058 0x24c ./Core/Src/syscalls.o + .debug_macro 0x00000000000182a4 0x4c ./Core/Src/syscalls.o + .debug_macro 0x00000000000182f0 0x18 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018308 0x94 ./Core/Src/syscalls.o + .debug_macro 0x000000000001839c 0x3c ./Core/Src/syscalls.o + .debug_macro 0x00000000000183d8 0x34 ./Core/Src/syscalls.o + .debug_macro 0x000000000001840c 0x57 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018463 0x339 ./Core/Src/syscalls.o + .debug_macro 0x000000000001879c 0x16 ./Core/Src/syscalls.o + .debug_macro 0x00000000000187b2 0x43 ./Core/Src/syscalls.o + .debug_macro 0x00000000000187f5 0x34 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018829 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018839 0x58 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018891 0x71 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018902 0x1c ./Core/Src/syscalls.o + .debug_macro 0x000000000001891e 0x12a ./Core/Src/syscalls.o + .debug_macro 0x0000000000018a48 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018a58 0x35 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018a8d 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018a9d 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018aad 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018abd 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018ad9 0x52 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018b2b 0x22 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018b4d 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018b5d 0x40 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018b9d 0xd5 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018c72 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018c8e 0x3d ./Core/Src/syscalls.o + .debug_macro 0x0000000000018ccb 0x35 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018d00 0x12c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018e2c 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018e42 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018e58 0x29 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018e81 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018e91 0x241 ./Core/Src/syscalls.o + .debug_macro 0x00000000000190d2 0x1c ./Core/Src/syscalls.o + .debug_macro 0x00000000000190ee 0x10 ./Core/Src/syscalls.o + .debug_macro 0x00000000000190fe 0x10 ./Core/Src/syscalls.o + .debug_macro 0x000000000001910e 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019124 0x145 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019269 0x189 ./Core/Src/syscalls.o + .debug_macro 0x00000000000193f2 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019408 0xce ./Core/Src/syscalls.o + .debug_macro 0x00000000000194d6 0xff ./Core/Src/sysmem.o + .debug_macro 0x00000000000195d5 0x23b ./Core/Src/sysmem.o + .debug_macro 0x0000000000019810 0x1bd ./Core/Src/system_stm32f1xx.o + .debug_macro 0x00000000000199cd 0x1e1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_macro 0x0000000000019bae 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_macro 0x0000000000019d6b 0x228 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_macro 0x0000000000019f93 0x204 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_macro 0x000000000001a197 0x1cf ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_macro 0x000000000001a366 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_macro 0x000000000001a523 0x1be ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_macro 0x000000000001a6e1 0x1bd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_macro 0x000000000001a89e 0x1f6 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_macro 0x000000000001aa94 0x1db ./HW_Devices/LCD.o + .debug_macro 0x000000000001ac6f 0x38b ./HW_Devices/LCD.o + .debug_macro 0x000000000001affa 0x1e6 ./HW_Devices/eeprom.o + .debug_macro 0x000000000001b1e0 0x1d6 ./HW_Devices/iic.o + .debug_macro 0x000000000001b3b6 0x20b ./HW_Devices/touch.o + .debug_macro 0x000000000001b5c1 0x22 ./HW_Devices/touch.o + .debug_macro 0x000000000001b5e3 0x391 ./HW_Devices/touch.o + .debug_macro 0x000000000001b974 0x10 ./HW_Devices/touch.o + .debug_macro 0x000000000001b984 0x2dc ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001bc60 0x1a9 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001be09 0xbd ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001bec6 0x56 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001bf1c 0x391 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001c2ad 0x9a ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001c347 0x20e ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001c555 0x28 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001c57d 0xa0 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001c61d 0x1fd ./SW_APPs/windows.o -.debug_line 0x0000000000000000 0xf831 - .debug_line 0x0000000000000000 0x872 ./Core/Src/main.o - .debug_line 0x0000000000000872 0x7a3 ./Core/Src/stm32f1xx_hal_msp.o - .debug_line 0x0000000000001015 0x76c ./Core/Src/stm32f1xx_it.o - .debug_line 0x0000000000001781 0x83e ./Core/Src/syscalls.o - .debug_line 0x0000000000001fbf 0x534 ./Core/Src/sysmem.o - .debug_line 0x00000000000024f3 0x728 ./Core/Src/system_stm32f1xx.o - .debug_line 0x0000000000002c1b 0x87 ./Core/Startup/startup_stm32f103zetx.o - .debug_line 0x0000000000002ca2 0x955 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_line 0x00000000000035f7 0xb3d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_line 0x0000000000004134 0xa14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_line 0x0000000000004b48 0x3a3f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_line 0x0000000000008587 0xd63 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_line 0x00000000000092ea 0xcc8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_line 0x0000000000009fb2 0x9b3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_line 0x000000000000a965 0x10c1 ./HW_Devices/LCD.o - .debug_line 0x000000000000ba26 0x795 ./HW_Devices/eeprom.o - .debug_line 0x000000000000c1bb 0x6bc ./HW_Devices/iic.o - .debug_line 0x000000000000c877 0xb13 ./HW_Devices/touch.o - .debug_line 0x000000000000d38a 0x1138 ./SW_APPs/APP_blood.o - .debug_line 0x000000000000e4c2 0x758 ./SW_APPs/Main_APP.o - .debug_line 0x000000000000ec1a 0xc17 ./SW_APPs/windows.o +.debug_line 0x0000000000000000 0x14ab5 + .debug_line 0x0000000000000000 0x8e3 ./Core/Src/main.o + .debug_line 0x00000000000008e3 0x80f ./Core/Src/stm32f1xx_hal_msp.o + .debug_line 0x00000000000010f2 0x7b5 ./Core/Src/stm32f1xx_it.o + .debug_line 0x00000000000018a7 0x83e ./Core/Src/syscalls.o + .debug_line 0x00000000000020e5 0x534 ./Core/Src/sysmem.o + .debug_line 0x0000000000002619 0x759 ./Core/Src/system_stm32f1xx.o + .debug_line 0x0000000000002d72 0x87 ./Core/Startup/startup_stm32f103zetx.o + .debug_line 0x0000000000002df9 0x986 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_line 0x000000000000377f 0xb6e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_line 0x00000000000042ed 0xa45 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_line 0x0000000000004d32 0x3a70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_line 0x00000000000087a2 0xd94 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_line 0x0000000000009536 0xcf9 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_line 0x000000000000a22f 0x354d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_line 0x000000000000d77c 0x1912 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_line 0x000000000000f08e 0x9e4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_line 0x000000000000fa72 0x10f2 ./HW_Devices/LCD.o + .debug_line 0x0000000000010b64 0x7c6 ./HW_Devices/eeprom.o + .debug_line 0x000000000001132a 0x6ed ./HW_Devices/iic.o + .debug_line 0x0000000000011a17 0xb44 ./HW_Devices/touch.o + .debug_line 0x000000000001255b 0x1189 ./SW_APPs/APP_blood.o + .debug_line 0x00000000000136e4 0x789 ./SW_APPs/Main_APP.o + .debug_line 0x0000000000013e6d 0xc48 ./SW_APPs/windows.o -.debug_str 0x0000000000000000 0x96907 - .debug_str 0x0000000000000000 0x8d10b ./Core/Src/main.o - 0x8d5f0 (size before relaxing) - .debug_str 0x000000000008d10b 0xc5 ./Core/Src/stm32f1xx_hal_msp.o - 0x8d451 (size before relaxing) - .debug_str 0x000000000008d1d0 0xbd ./Core/Src/stm32f1xx_it.o - 0x8cd81 (size before relaxing) - .debug_str 0x000000000008d28d 0x5788 ./Core/Src/syscalls.o +.debug_str 0x0000000000000000 0x9eb80 + .debug_str 0x0000000000000000 0x9400c ./Core/Src/main.o + 0x94565 (size before relaxing) + .debug_str 0x000000000009400c 0x3f7 ./Core/Src/stm32f1xx_hal_msp.o + 0x94758 (size before relaxing) + .debug_str 0x0000000000094403 0xbd ./Core/Src/stm32f1xx_it.o + 0x93e8b (size before relaxing) + .debug_str 0x00000000000944c0 0x5782 ./Core/Src/syscalls.o 0x8e87 (size before relaxing) - .debug_str 0x0000000000092a15 0x6b ./Core/Src/sysmem.o + .debug_str 0x0000000000099c42 0x6b ./Core/Src/sysmem.o 0x625a (size before relaxing) - .debug_str 0x0000000000092a80 0x52 ./Core/Src/system_stm32f1xx.o - 0x8cbc8 (size before relaxing) - .debug_str 0x0000000000092ad2 0x36 ./Core/Startup/startup_stm32f103zetx.o + .debug_str 0x0000000000099cad 0x52 ./Core/Src/system_stm32f1xx.o + 0x93808 (size before relaxing) + .debug_str 0x0000000000099cff 0x36 ./Core/Startup/startup_stm32f103zetx.o 0x6e (size before relaxing) - .debug_str 0x0000000000092b08 0x5fb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x8d33d (size before relaxing) - .debug_str 0x0000000000093103 0x300 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x8d345 (size before relaxing) - .debug_str 0x0000000000093403 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x8cf8c (size before relaxing) - .debug_str 0x0000000000093722 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x8dc04 (size before relaxing) - .debug_str 0x0000000000094269 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x8cfc5 (size before relaxing) - .debug_str 0x00000000000944ad 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - 0x8d1be (size before relaxing) - .debug_str 0x00000000000946a4 0x7ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x8d55f (size before relaxing) - .debug_str 0x0000000000094e93 0x814 ./HW_Devices/LCD.o - 0x8d518 (size before relaxing) - .debug_str 0x00000000000956a7 0x127 ./HW_Devices/eeprom.o - 0x8ce13 (size before relaxing) - .debug_str 0x00000000000957ce 0x30 ./HW_Devices/iic.o - 0x8d190 (size before relaxing) - .debug_str 0x00000000000957fe 0x288 ./HW_Devices/touch.o - 0x8d602 (size before relaxing) - .debug_str 0x0000000000095a86 0xcc9 ./SW_APPs/APP_blood.o - 0x9120d (size before relaxing) - .debug_str 0x000000000009674f 0x98 ./SW_APPs/Main_APP.o - 0x8d7c2 (size before relaxing) - .debug_str 0x00000000000967e7 0x120 ./SW_APPs/windows.o - 0x8d658 (size before relaxing) + .debug_str 0x0000000000099d35 0x2ff ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x93f7d (size before relaxing) + .debug_str 0x000000000009a034 0x300 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x93f85 (size before relaxing) + .debug_str 0x000000000009a334 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x93bcc (size before relaxing) + .debug_str 0x000000000009a653 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x94844 (size before relaxing) + .debug_str 0x000000000009b19a 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x93c05 (size before relaxing) + .debug_str 0x000000000009b3de 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x93dfe (size before relaxing) + .debug_str 0x000000000009b5d5 0xe3e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x94bd7 (size before relaxing) + .debug_str 0x000000000009c413 0x4ee ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x94388 (size before relaxing) + .debug_str 0x000000000009c901 0x7ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x9419f (size before relaxing) + .debug_str 0x000000000009d0f0 0x814 ./HW_Devices/LCD.o + 0x94158 (size before relaxing) + .debug_str 0x000000000009d904 0x127 ./HW_Devices/eeprom.o + 0x93a53 (size before relaxing) + .debug_str 0x000000000009da2b 0x30 ./HW_Devices/iic.o + 0x93dd0 (size before relaxing) + .debug_str 0x000000000009da5b 0x288 ./HW_Devices/touch.o + 0x94242 (size before relaxing) + .debug_str 0x000000000009dce3 0xce5 ./SW_APPs/APP_blood.o + 0x98346 (size before relaxing) + .debug_str 0x000000000009e9c8 0x98 ./SW_APPs/Main_APP.o + 0x94402 (size before relaxing) + .debug_str 0x000000000009ea60 0x120 ./SW_APPs/windows.o + 0x94298 (size before relaxing) .comment 0x0000000000000000 0x53 .comment 0x0000000000000000 0x53 ./Core/Src/main.o @@ -4798,6 +5207,8 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .comment 0x0000000000000053 0x54 ./HW_Devices/LCD.o .comment 0x0000000000000053 0x54 ./HW_Devices/eeprom.o @@ -4807,82 +5218,84 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .comment 0x0000000000000053 0x54 ./SW_APPs/Main_APP.o .comment 0x0000000000000053 0x54 ./SW_APPs/windows.o -.debug_frame 0x0000000000000000 0x40d4 - .debug_frame 0x0000000000000000 0xcc ./Core/Src/main.o - .debug_frame 0x00000000000000cc 0x108 ./Core/Src/stm32f1xx_hal_msp.o - .debug_frame 0x00000000000001d4 0x104 ./Core/Src/stm32f1xx_it.o - .debug_frame 0x00000000000002d8 0x2ac ./Core/Src/syscalls.o - .debug_frame 0x0000000000000584 0x34 ./Core/Src/sysmem.o - .debug_frame 0x00000000000005b8 0x58 ./Core/Src/system_stm32f1xx.o - .debug_frame 0x0000000000000610 0x334 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_frame 0x0000000000000944 0x428 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_frame 0x0000000000000d6c 0x14c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_frame 0x0000000000000eb8 0xc5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_frame 0x0000000000001b14 0x21c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_frame 0x0000000000001d30 0x30c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_frame 0x000000000000203c 0x2dc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_frame 0x0000000000002318 0x33c ./HW_Devices/LCD.o - .debug_frame 0x0000000000002654 0x9c ./HW_Devices/eeprom.o - .debug_frame 0x00000000000026f0 0x58 ./HW_Devices/iic.o - .debug_frame 0x0000000000002748 0x164 ./HW_Devices/touch.o - .debug_frame 0x00000000000028ac 0x23c ./SW_APPs/APP_blood.o - .debug_frame 0x0000000000002ae8 0x30 ./SW_APPs/Main_APP.o - .debug_frame 0x0000000000002b18 0x1b0 ./SW_APPs/windows.o - .debug_frame 0x0000000000002cc8 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) - .debug_frame 0x0000000000002ce8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) - .debug_frame 0x0000000000002d14 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - .debug_frame 0x0000000000002d44 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) - .debug_frame 0x0000000000002d64 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) - .debug_frame 0x0000000000002d9c 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) - .debug_frame 0x0000000000002dcc 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - .debug_frame 0x0000000000002e60 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - .debug_frame 0x0000000000002ec0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) - .debug_frame 0x0000000000002eec 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) - .debug_frame 0x0000000000002f58 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - .debug_frame 0x0000000000002fc4 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) - .debug_frame 0x0000000000003004 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) - .debug_frame 0x000000000000302c 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x0000000000003054 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - .debug_frame 0x0000000000003084 0x254 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - .debug_frame 0x00000000000032d8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) - .debug_frame 0x0000000000003304 0x90 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - .debug_frame 0x0000000000003394 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) - .debug_frame 0x00000000000033f0 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) - .debug_frame 0x0000000000003430 0x64 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) - .debug_frame 0x0000000000003494 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) - .debug_frame 0x00000000000034dc 0xb0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - .debug_frame 0x000000000000358c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) - .debug_frame 0x00000000000035d4 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) - .debug_frame 0x00000000000035fc 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) - .debug_frame 0x0000000000003638 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - .debug_frame 0x00000000000036e4 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - .debug_frame 0x0000000000003724 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) - .debug_frame 0x0000000000003760 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - .debug_frame 0x000000000000378c 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) - .debug_frame 0x00000000000037b4 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - .debug_frame 0x0000000000003810 0x14c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - .debug_frame 0x000000000000395c 0x54 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - .debug_frame 0x00000000000039b0 0x58 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - .debug_frame 0x0000000000003a08 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) - .debug_frame 0x0000000000003a28 0xcc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - .debug_frame 0x0000000000003af4 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - .debug_frame 0x0000000000003b30 0x88 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - .debug_frame 0x0000000000003bb8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - .debug_frame 0x0000000000003be4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - .debug_frame 0x0000000000003c10 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - .debug_frame 0x0000000000003c3c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - .debug_frame 0x0000000000003c68 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - .debug_frame 0x0000000000003c94 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - .debug_frame 0x0000000000003cc0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) - .debug_frame 0x0000000000003cec 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) - .debug_frame 0x0000000000003d18 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) - .debug_frame 0x0000000000003dc4 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) - .debug_frame 0x0000000000003e14 0xc4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) - .debug_frame 0x0000000000003ed8 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) - .debug_frame 0x0000000000003ef8 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) - .debug_frame 0x0000000000003f1c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) - .debug_frame 0x0000000000003f40 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) - .debug_frame 0x0000000000003f8c 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) - .debug_frame 0x0000000000003fc4 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpsf2.o) - .debug_frame 0x000000000000408c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unordsf2.o) - .debug_frame 0x00000000000040b0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) +.debug_frame 0x0000000000000000 0x5974 + .debug_frame 0x0000000000000000 0xf0 ./Core/Src/main.o + .debug_frame 0x00000000000000f0 0x150 ./Core/Src/stm32f1xx_hal_msp.o + .debug_frame 0x0000000000000240 0x120 ./Core/Src/stm32f1xx_it.o + .debug_frame 0x0000000000000360 0x2ac ./Core/Src/syscalls.o + .debug_frame 0x000000000000060c 0x34 ./Core/Src/sysmem.o + .debug_frame 0x0000000000000640 0x58 ./Core/Src/system_stm32f1xx.o + .debug_frame 0x0000000000000698 0x334 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_frame 0x00000000000009cc 0x428 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_frame 0x0000000000000df4 0x14c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_frame 0x0000000000000f40 0xc5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_frame 0x0000000000001b9c 0x21c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_frame 0x0000000000001db8 0x30c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_frame 0x00000000000020c4 0x11bc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_frame 0x0000000000003280 0x638 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_frame 0x00000000000038b8 0x2dc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_frame 0x0000000000003b94 0x33c ./HW_Devices/LCD.o + .debug_frame 0x0000000000003ed0 0x9c ./HW_Devices/eeprom.o + .debug_frame 0x0000000000003f6c 0x58 ./HW_Devices/iic.o + .debug_frame 0x0000000000003fc4 0x164 ./HW_Devices/touch.o + .debug_frame 0x0000000000004128 0x260 ./SW_APPs/APP_blood.o + .debug_frame 0x0000000000004388 0x30 ./SW_APPs/Main_APP.o + .debug_frame 0x00000000000043b8 0x1b0 ./SW_APPs/windows.o + .debug_frame 0x0000000000004568 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + .debug_frame 0x0000000000004588 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + .debug_frame 0x00000000000045b4 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + .debug_frame 0x00000000000045e4 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + .debug_frame 0x0000000000004604 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + .debug_frame 0x000000000000463c 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + .debug_frame 0x000000000000466c 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + .debug_frame 0x0000000000004700 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + .debug_frame 0x0000000000004760 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + .debug_frame 0x000000000000478c 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + .debug_frame 0x00000000000047f8 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + .debug_frame 0x0000000000004864 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + .debug_frame 0x00000000000048a4 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + .debug_frame 0x00000000000048cc 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x00000000000048f4 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + .debug_frame 0x0000000000004924 0x254 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + .debug_frame 0x0000000000004b78 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + .debug_frame 0x0000000000004ba4 0x90 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + .debug_frame 0x0000000000004c34 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + .debug_frame 0x0000000000004c90 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + .debug_frame 0x0000000000004cd0 0x64 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + .debug_frame 0x0000000000004d34 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + .debug_frame 0x0000000000004d7c 0xb0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + .debug_frame 0x0000000000004e2c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + .debug_frame 0x0000000000004e74 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + .debug_frame 0x0000000000004e9c 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + .debug_frame 0x0000000000004ed8 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + .debug_frame 0x0000000000004f84 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + .debug_frame 0x0000000000004fc4 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + .debug_frame 0x0000000000005000 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + .debug_frame 0x000000000000502c 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + .debug_frame 0x0000000000005054 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + .debug_frame 0x00000000000050b0 0x14c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + .debug_frame 0x00000000000051fc 0x54 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + .debug_frame 0x0000000000005250 0x58 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + .debug_frame 0x00000000000052a8 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + .debug_frame 0x00000000000052c8 0xcc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + .debug_frame 0x0000000000005394 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + .debug_frame 0x00000000000053d0 0x88 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + .debug_frame 0x0000000000005458 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + .debug_frame 0x0000000000005484 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + .debug_frame 0x00000000000054b0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + .debug_frame 0x00000000000054dc 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + .debug_frame 0x0000000000005508 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + .debug_frame 0x0000000000005534 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + .debug_frame 0x0000000000005560 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) + .debug_frame 0x000000000000558c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-ef_sqrt.o) + .debug_frame 0x00000000000055b8 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x0000000000005664 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x00000000000056b4 0xc4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x0000000000005778 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) + .debug_frame 0x0000000000005798 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) + .debug_frame 0x00000000000057bc 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x00000000000057e0 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) + .debug_frame 0x000000000000582c 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) + .debug_frame 0x0000000000005864 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpsf2.o) + .debug_frame 0x000000000000592c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unordsf2.o) + .debug_frame 0x0000000000005950 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) diff --git a/SW_APPs/APP_blood.c b/SW_APPs/APP_blood.c index 75dd39f..8031528 100644 --- a/SW_APPs/APP_blood.c +++ b/SW_APPs/APP_blood.c @@ -8,12 +8,12 @@ #include "APP_blood.h" #include "iic.h" #include "FFT.h" - +extern TIM_HandleTypeDef htim6; window *blood_win; uint16_t fifo_red; uint16_t fifo_ir; char blood_str[64]; -uint16_t g_fft_index = 0; //fft输入输出下标 + uint8_t Max30102_reset(void) { @@ -95,7 +95,7 @@ void APP_blood_init(window *a_window) blood_win=a_window; HAL_GPIO_WritePin(MAX_RD_GPIO_Port, MAX_RD_Pin, 0); HAL_GPIO_WritePin(MAX_IRD_GPIO_Port, MAX_IRD_Pin, 0); - + //HAL_TIM_Base_Start_IT(&htim6); Max30102_reset(); MAX30102_Config(); @@ -397,7 +397,7 @@ void blood_data_translate(void) s2[i].real= n_denom/8.00; } //开始变换显示 - g_fft_index = 0; + //快速傅里叶变换 FFT(s1); FFT(s2); @@ -429,12 +429,28 @@ void blood_data_translate(void) } + +char get_data_lock=0;; +char get_data_flag=0; +uint16_t g_fft_index = 0; //fft输入输出下标 void APP_blood_loop() { + if(get_data_lock==0) + { + get_data_lock=1; + get_data_flag=0; + g_fft_index = 0; + HAL_TIM_Base_Start_IT(&htim6); + } + if(get_data_flag==1) + { + blood_data_translate(); + get_data_lock=0; + } //标志位被使能时 读取FIFO - g_fft_index=0; +/* while(g_fft_index < FFT_N) { while(MAX30102_INTPin_Read()==0) @@ -453,7 +469,7 @@ void APP_blood_loop() } } } - +*/ /* for(int a=0;ax, blood_win->y+16, &blood_str, 16, WHITE, RED); @@ -481,3 +497,23 @@ void APP_blood_loop() } + +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)//10us +{ + if (htim == (&htim6)) + { + max30102_read_fifo(); //read from MAX30102 FIFO2 + //将数据写入fft输入并清除输出 + s1[g_fft_index].real = fifo_red; + s1[g_fft_index].imag= 0; + s2[g_fft_index].real = fifo_ir; + s2[g_fft_index].imag= 0; + g_fft_index++; + if(g_fft_index>FFT_N) + { + get_data_flag=1; + HAL_TIM_Base_Stop_IT(&htim6); + } + + } +} diff --git a/m3s.ioc b/m3s.ioc index 9f5e4e0..1d8f6d6 100644 --- a/m3s.ioc +++ b/m3s.ioc @@ -11,7 +11,8 @@ Mcu.IP1=I2C2 Mcu.IP2=NVIC Mcu.IP3=RCC Mcu.IP4=SYS -Mcu.IPNb=5 +Mcu.IP5=TIM6 +Mcu.IPNb=6 Mcu.Name=STM32F103Z(C-D-E)Tx Mcu.Package=LQFP144 Mcu.Pin0=PF8 @@ -43,13 +44,14 @@ Mcu.Pin31=PD5 Mcu.Pin32=PG12 Mcu.Pin33=VP_SYS_VS_ND Mcu.Pin34=VP_SYS_VS_Systick +Mcu.Pin35=VP_TIM6_VS_ClockSourceINT Mcu.Pin4=OSC_OUT Mcu.Pin5=PB0 Mcu.Pin6=PB1 Mcu.Pin7=PB2 Mcu.Pin8=PG0 Mcu.Pin9=PE7 -Mcu.PinsNb=35 +Mcu.PinsNb=36 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F103ZETx @@ -65,6 +67,7 @@ NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:true\:false\:false NVIC.PriorityGroup=NVIC_PRIORITYGROUP_4 NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:true\:false\:false NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:true\:false\:true +NVIC.TIM6_IRQn=true\:0\:0\:false\:false\:true\:true\:true NVIC.UsageFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false OSC_IN.Mode=HSE-External-Oscillator OSC_IN.Signal=RCC_OSC_IN @@ -238,9 +241,14 @@ SH.FSMC_NOE.0=FSMC_NOE,Lcd1 SH.FSMC_NOE.ConfNb=1 SH.FSMC_NWE.0=FSMC_NWE,Lcd1 SH.FSMC_NWE.ConfNb=1 +TIM6.IPParameters=Prescaler,Period +TIM6.Period=10000-1 +TIM6.Prescaler=72-1 VP_SYS_VS_ND.Mode=No_Debug VP_SYS_VS_ND.Signal=SYS_VS_ND VP_SYS_VS_Systick.Mode=SysTick VP_SYS_VS_Systick.Signal=SYS_VS_Systick +VP_TIM6_VS_ClockSourceINT.Mode=Enable_Timer +VP_TIM6_VS_ClockSourceINT.Signal=TIM6_VS_ClockSourceINT board=custom isbadioc=false