diff --git a/Core/Inc/main.h b/Core/Inc/main.h index 87b458d..4463375 100644 --- a/Core/Inc/main.h +++ b/Core/Inc/main.h @@ -32,7 +32,7 @@ extern "C" { /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ - +#include "stdio.h" /* USER CODE END Includes */ /* Exported types ------------------------------------------------------------*/ diff --git a/Core/Src/main.c b/Core/Src/main.c index bbee837..3f9dcca 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -65,7 +65,13 @@ static void MX_SPI1_Init(void); /* Private user code ---------------------------------------------------------*/ /* USER CODE BEGIN 0 */ - +int _write(int file , char *ptr,int len) +{ + int i = 0; + for(i = 0;i: 800020c: b508 push {r3, lr} @@ -74,7 +74,7 @@ Disassembly of section .text: 800021a: bd08 pop {r3, pc} 800021c: 00000000 .word 0x00000000 8000220: 200001e8 .word 0x200001e8 - 8000224: 0800a3a8 .word 0x0800a3a8 + 8000224: 0800a6a0 .word 0x0800a6a0 08000228 : 8000228: 4603 mov r3, r0 @@ -1365,21936 +1365,22290 @@ Disassembly of section .text: 8001102: f04f 0000 mov.w r0, #0 8001106: 4770 bx lr -08001108
: +08001108 : + \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted. + \param [in] ch Character to transmit. + \returns Character to transmit. + */ +__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch) +{ + 8001108: b480 push {r7} + 800110a: b083 sub sp, #12 + 800110c: af00 add r7, sp, #0 + 800110e: 6078 str r0, [r7, #4] + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + 8001110: f04f 4360 mov.w r3, #3758096384 ; 0xe0000000 + 8001114: f8d3 3e80 ldr.w r3, [r3, #3712] ; 0xe80 + 8001118: f003 0301 and.w r3, r3, #1 + 800111c: 2b00 cmp r3, #0 + 800111e: d013 beq.n 8001148 + ((ITM->TER & 1UL ) != 0UL) ) /* ITM Port #0 enabled */ + 8001120: f04f 4360 mov.w r3, #3758096384 ; 0xe0000000 + 8001124: f8d3 3e00 ldr.w r3, [r3, #3584] ; 0xe00 + 8001128: f003 0301 and.w r3, r3, #1 + if (((ITM->TCR & ITM_TCR_ITMENA_Msk) != 0UL) && /* ITM enabled */ + 800112c: 2b00 cmp r3, #0 + 800112e: d00b beq.n 8001148 + { + while (ITM->PORT[0U].u32 == 0UL) + 8001130: e000 b.n 8001134 + { + __NOP(); + 8001132: bf00 nop + while (ITM->PORT[0U].u32 == 0UL) + 8001134: f04f 4360 mov.w r3, #3758096384 ; 0xe0000000 + 8001138: 681b ldr r3, [r3, #0] + 800113a: 2b00 cmp r3, #0 + 800113c: d0f9 beq.n 8001132 + } + ITM->PORT[0U].u8 = (uint8_t)ch; + 800113e: f04f 4360 mov.w r3, #3758096384 ; 0xe0000000 + 8001142: 687a ldr r2, [r7, #4] + 8001144: b2d2 uxtb r2, r2 + 8001146: 701a strb r2, [r3, #0] + } + return (ch); + 8001148: 687b ldr r3, [r7, #4] +} + 800114a: 4618 mov r0, r3 + 800114c: 370c adds r7, #12 + 800114e: 46bd mov sp, r7 + 8001150: bc80 pop {r7} + 8001152: 4770 bx lr + +08001154 <_write>: +/* USER CODE END PFP */ + +/* Private user code ---------------------------------------------------------*/ +/* USER CODE BEGIN 0 */ +int _write(int file , char *ptr,int len) +{ + 8001154: b580 push {r7, lr} + 8001156: b086 sub sp, #24 + 8001158: af00 add r7, sp, #0 + 800115a: 60f8 str r0, [r7, #12] + 800115c: 60b9 str r1, [r7, #8] + 800115e: 607a str r2, [r7, #4] + int i = 0; + 8001160: 2300 movs r3, #0 + 8001162: 617b str r3, [r7, #20] + for(i = 0;i + ITM_SendChar((*ptr++)); + 800116a: 68bb ldr r3, [r7, #8] + 800116c: 1c5a adds r2, r3, #1 + 800116e: 60ba str r2, [r7, #8] + 8001170: 781b ldrb r3, [r3, #0] + 8001172: 4618 mov r0, r3 + 8001174: f7ff ffc8 bl 8001108 + for(i = 0;i + return len; + 8001186: 687b ldr r3, [r7, #4] +} + 8001188: 4618 mov r0, r3 + 800118a: 3718 adds r7, #24 + 800118c: 46bd mov sp, r7 + 800118e: bd80 pop {r7, pc} + +08001190
: /** * @brief The application entry point. * @retval int */ int main(void) { - 8001108: b580 push {r7, lr} - 800110a: af00 add r7, sp, #0 + 8001190: b580 push {r7, lr} + 8001192: af00 add r7, sp, #0 /* USER CODE END 1 */ /* MCU Configuration--------------------------------------------------------*/ /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 800110c: f000 fcb4 bl 8001a78 + 8001194: f000 fc98 bl 8001ac8 /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); - 8001110: f000 f80d bl 800112e + 8001198: f000 f80d bl 80011b6 /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ /* Initialize all configured peripherals */ MX_GPIO_Init(); - 8001114: f000 f8ea bl 80012ec + 800119c: f000 f8ea bl 8001374 MX_FSMC_Init(); - 8001118: f000 f9e6 bl 80014e8 + 80011a0: f000 f9e6 bl 8001570 MX_I2C2_Init(); - 800111c: f000 f84c bl 80011b8 + 80011a4: f000 f84c bl 8001240 MX_TIM6_Init(); - 8001120: f000 f8ae bl 8001280 + 80011a8: f000 f8ae bl 8001308 MX_SPI1_Init(); - 8001124: f000 f876 bl 8001214 + 80011ac: f000 f876 bl 800129c /* USER CODE BEGIN 2 */ main_app(); - 8001128: f005 ff2e bl 8006f88 + 80011b0: f005 ff7a bl 80070a8 /* USER CODE END 2 */ /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) - 800112c: e7fe b.n 800112c + 80011b4: e7fe b.n 80011b4 -0800112e : +080011b6 : /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { - 800112e: b580 push {r7, lr} - 8001130: b090 sub sp, #64 ; 0x40 - 8001132: af00 add r7, sp, #0 + 80011b6: b580 push {r7, lr} + 80011b8: b090 sub sp, #64 ; 0x40 + 80011ba: af00 add r7, sp, #0 RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - 8001134: f107 0318 add.w r3, r7, #24 - 8001138: 2228 movs r2, #40 ; 0x28 - 800113a: 2100 movs r1, #0 - 800113c: 4618 mov r0, r3 - 800113e: f006 fa9b bl 8007678 + 80011bc: f107 0318 add.w r3, r7, #24 + 80011c0: 2228 movs r2, #40 ; 0x28 + 80011c2: 2100 movs r1, #0 + 80011c4: 4618 mov r0, r3 + 80011c6: f006 fae7 bl 8007798 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; - 8001142: 1d3b adds r3, r7, #4 - 8001144: 2200 movs r2, #0 - 8001146: 601a str r2, [r3, #0] - 8001148: 605a str r2, [r3, #4] - 800114a: 609a str r2, [r3, #8] - 800114c: 60da str r2, [r3, #12] - 800114e: 611a str r2, [r3, #16] + 80011ca: 1d3b adds r3, r7, #4 + 80011cc: 2200 movs r2, #0 + 80011ce: 601a str r2, [r3, #0] + 80011d0: 605a str r2, [r3, #4] + 80011d2: 609a str r2, [r3, #8] + 80011d4: 60da str r2, [r3, #12] + 80011d6: 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; - 8001150: 2301 movs r3, #1 - 8001152: 61bb str r3, [r7, #24] + 80011d8: 2301 movs r3, #1 + 80011da: 61bb str r3, [r7, #24] RCC_OscInitStruct.HSEState = RCC_HSE_ON; - 8001154: f44f 3380 mov.w r3, #65536 ; 0x10000 - 8001158: 61fb str r3, [r7, #28] + 80011dc: f44f 3380 mov.w r3, #65536 ; 0x10000 + 80011e0: 61fb str r3, [r7, #28] RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1; - 800115a: 2300 movs r3, #0 - 800115c: 623b str r3, [r7, #32] + 80011e2: 2300 movs r3, #0 + 80011e4: 623b str r3, [r7, #32] RCC_OscInitStruct.HSIState = RCC_HSI_ON; - 800115e: 2301 movs r3, #1 - 8001160: 62bb str r3, [r7, #40] ; 0x28 + 80011e6: 2301 movs r3, #1 + 80011e8: 62bb str r3, [r7, #40] ; 0x28 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; - 8001162: 2302 movs r3, #2 - 8001164: 637b str r3, [r7, #52] ; 0x34 + 80011ea: 2302 movs r3, #2 + 80011ec: 637b str r3, [r7, #52] ; 0x34 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; - 8001166: f44f 3380 mov.w r3, #65536 ; 0x10000 - 800116a: 63bb str r3, [r7, #56] ; 0x38 + 80011ee: f44f 3380 mov.w r3, #65536 ; 0x10000 + 80011f2: 63bb str r3, [r7, #56] ; 0x38 RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9; - 800116c: f44f 13e0 mov.w r3, #1835008 ; 0x1c0000 - 8001170: 63fb str r3, [r7, #60] ; 0x3c + 80011f4: f44f 13e0 mov.w r3, #1835008 ; 0x1c0000 + 80011f8: 63fb str r3, [r7, #60] ; 0x3c if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 8001172: f107 0318 add.w r3, r7, #24 - 8001176: 4618 mov r0, r3 - 8001178: f001 ffd6 bl 8003128 - 800117c: 4603 mov r3, r0 - 800117e: 2b00 cmp r3, #0 - 8001180: d001 beq.n 8001186 + 80011fa: f107 0318 add.w r3, r7, #24 + 80011fe: 4618 mov r0, r3 + 8001200: f001 ffba bl 8003178 + 8001204: 4603 mov r3, r0 + 8001206: 2b00 cmp r3, #0 + 8001208: d001 beq.n 800120e { Error_Handler(); - 8001182: f000 fa15 bl 80015b0 + 800120a: f000 fa15 bl 8001638 } /** Initializes the CPU, AHB and APB buses clocks */ RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 8001186: 230f movs r3, #15 - 8001188: 607b str r3, [r7, #4] + 800120e: 230f movs r3, #15 + 8001210: 607b str r3, [r7, #4] |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; - 800118a: 2302 movs r3, #2 - 800118c: 60bb str r3, [r7, #8] + 8001212: 2302 movs r3, #2 + 8001214: 60bb str r3, [r7, #8] RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; - 800118e: 2300 movs r3, #0 - 8001190: 60fb str r3, [r7, #12] + 8001216: 2300 movs r3, #0 + 8001218: 60fb str r3, [r7, #12] RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; - 8001192: f44f 6380 mov.w r3, #1024 ; 0x400 - 8001196: 613b str r3, [r7, #16] + 800121a: f44f 6380 mov.w r3, #1024 ; 0x400 + 800121e: 613b str r3, [r7, #16] RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - 8001198: 2300 movs r3, #0 - 800119a: 617b str r3, [r7, #20] + 8001220: 2300 movs r3, #0 + 8001222: 617b str r3, [r7, #20] if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) - 800119c: 1d3b adds r3, r7, #4 - 800119e: 2102 movs r1, #2 - 80011a0: 4618 mov r0, r3 - 80011a2: f002 fa41 bl 8003628 - 80011a6: 4603 mov r3, r0 - 80011a8: 2b00 cmp r3, #0 - 80011aa: d001 beq.n 80011b0 + 8001224: 1d3b adds r3, r7, #4 + 8001226: 2102 movs r1, #2 + 8001228: 4618 mov r0, r3 + 800122a: f002 fa25 bl 8003678 + 800122e: 4603 mov r3, r0 + 8001230: 2b00 cmp r3, #0 + 8001232: d001 beq.n 8001238 { Error_Handler(); - 80011ac: f000 fa00 bl 80015b0 + 8001234: f000 fa00 bl 8001638 } } - 80011b0: bf00 nop - 80011b2: 3740 adds r7, #64 ; 0x40 - 80011b4: 46bd mov sp, r7 - 80011b6: bd80 pop {r7, pc} + 8001238: bf00 nop + 800123a: 3740 adds r7, #64 ; 0x40 + 800123c: 46bd mov sp, r7 + 800123e: bd80 pop {r7, pc} -080011b8 : +08001240 : * @brief I2C2 Initialization Function * @param None * @retval None */ static void MX_I2C2_Init(void) { - 80011b8: b580 push {r7, lr} - 80011ba: af00 add r7, sp, #0 + 8001240: b580 push {r7, lr} + 8001242: 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; - 80011bc: 4b12 ldr r3, [pc, #72] ; (8001208 ) - 80011be: 4a13 ldr r2, [pc, #76] ; (800120c ) - 80011c0: 601a str r2, [r3, #0] + 8001244: 4b12 ldr r3, [pc, #72] ; (8001290 ) + 8001246: 4a13 ldr r2, [pc, #76] ; (8001294 ) + 8001248: 601a str r2, [r3, #0] hi2c2.Init.ClockSpeed = 100000; - 80011c2: 4b11 ldr r3, [pc, #68] ; (8001208 ) - 80011c4: 4a12 ldr r2, [pc, #72] ; (8001210 ) - 80011c6: 605a str r2, [r3, #4] + 800124a: 4b11 ldr r3, [pc, #68] ; (8001290 ) + 800124c: 4a12 ldr r2, [pc, #72] ; (8001298 ) + 800124e: 605a str r2, [r3, #4] hi2c2.Init.DutyCycle = I2C_DUTYCYCLE_2; - 80011c8: 4b0f ldr r3, [pc, #60] ; (8001208 ) - 80011ca: 2200 movs r2, #0 - 80011cc: 609a str r2, [r3, #8] + 8001250: 4b0f ldr r3, [pc, #60] ; (8001290 ) + 8001252: 2200 movs r2, #0 + 8001254: 609a str r2, [r3, #8] hi2c2.Init.OwnAddress1 = 0; - 80011ce: 4b0e ldr r3, [pc, #56] ; (8001208 ) - 80011d0: 2200 movs r2, #0 - 80011d2: 60da str r2, [r3, #12] + 8001256: 4b0e ldr r3, [pc, #56] ; (8001290 ) + 8001258: 2200 movs r2, #0 + 800125a: 60da str r2, [r3, #12] hi2c2.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; - 80011d4: 4b0c ldr r3, [pc, #48] ; (8001208 ) - 80011d6: f44f 4280 mov.w r2, #16384 ; 0x4000 - 80011da: 611a str r2, [r3, #16] + 800125c: 4b0c ldr r3, [pc, #48] ; (8001290 ) + 800125e: f44f 4280 mov.w r2, #16384 ; 0x4000 + 8001262: 611a str r2, [r3, #16] hi2c2.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; - 80011dc: 4b0a ldr r3, [pc, #40] ; (8001208 ) - 80011de: 2200 movs r2, #0 - 80011e0: 615a str r2, [r3, #20] + 8001264: 4b0a ldr r3, [pc, #40] ; (8001290 ) + 8001266: 2200 movs r2, #0 + 8001268: 615a str r2, [r3, #20] hi2c2.Init.OwnAddress2 = 0; - 80011e2: 4b09 ldr r3, [pc, #36] ; (8001208 ) - 80011e4: 2200 movs r2, #0 - 80011e6: 619a str r2, [r3, #24] + 800126a: 4b09 ldr r3, [pc, #36] ; (8001290 ) + 800126c: 2200 movs r2, #0 + 800126e: 619a str r2, [r3, #24] hi2c2.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; - 80011e8: 4b07 ldr r3, [pc, #28] ; (8001208 ) - 80011ea: 2200 movs r2, #0 - 80011ec: 61da str r2, [r3, #28] + 8001270: 4b07 ldr r3, [pc, #28] ; (8001290 ) + 8001272: 2200 movs r2, #0 + 8001274: 61da str r2, [r3, #28] hi2c2.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; - 80011ee: 4b06 ldr r3, [pc, #24] ; (8001208 ) - 80011f0: 2200 movs r2, #0 - 80011f2: 621a str r2, [r3, #32] + 8001276: 4b06 ldr r3, [pc, #24] ; (8001290 ) + 8001278: 2200 movs r2, #0 + 800127a: 621a str r2, [r3, #32] if (HAL_I2C_Init(&hi2c2) != HAL_OK) - 80011f4: 4804 ldr r0, [pc, #16] ; (8001208 ) - 80011f6: f000 ff97 bl 8002128 - 80011fa: 4603 mov r3, r0 - 80011fc: 2b00 cmp r3, #0 - 80011fe: d001 beq.n 8001204 + 800127c: 4804 ldr r0, [pc, #16] ; (8001290 ) + 800127e: f000 ff7b bl 8002178 + 8001282: 4603 mov r3, r0 + 8001284: 2b00 cmp r3, #0 + 8001286: d001 beq.n 800128c { Error_Handler(); - 8001200: f000 f9d6 bl 80015b0 + 8001288: f000 f9d6 bl 8001638 } /* USER CODE BEGIN I2C2_Init 2 */ /* USER CODE END I2C2_Init 2 */ } - 8001204: bf00 nop - 8001206: bd80 pop {r7, pc} - 8001208: 20000214 .word 0x20000214 - 800120c: 40005800 .word 0x40005800 - 8001210: 000186a0 .word 0x000186a0 + 800128c: bf00 nop + 800128e: bd80 pop {r7, pc} + 8001290: 20000214 .word 0x20000214 + 8001294: 40005800 .word 0x40005800 + 8001298: 000186a0 .word 0x000186a0 -08001214 : +0800129c : * @brief SPI1 Initialization Function * @param None * @retval None */ static void MX_SPI1_Init(void) { - 8001214: b580 push {r7, lr} - 8001216: af00 add r7, sp, #0 + 800129c: b580 push {r7, lr} + 800129e: af00 add r7, sp, #0 /* USER CODE BEGIN SPI1_Init 1 */ /* USER CODE END SPI1_Init 1 */ /* SPI1 parameter configuration*/ hspi1.Instance = SPI1; - 8001218: 4b17 ldr r3, [pc, #92] ; (8001278 ) - 800121a: 4a18 ldr r2, [pc, #96] ; (800127c ) - 800121c: 601a str r2, [r3, #0] + 80012a0: 4b17 ldr r3, [pc, #92] ; (8001300 ) + 80012a2: 4a18 ldr r2, [pc, #96] ; (8001304 ) + 80012a4: 601a str r2, [r3, #0] hspi1.Init.Mode = SPI_MODE_MASTER; - 800121e: 4b16 ldr r3, [pc, #88] ; (8001278 ) - 8001220: f44f 7282 mov.w r2, #260 ; 0x104 - 8001224: 605a str r2, [r3, #4] + 80012a6: 4b16 ldr r3, [pc, #88] ; (8001300 ) + 80012a8: f44f 7282 mov.w r2, #260 ; 0x104 + 80012ac: 605a str r2, [r3, #4] hspi1.Init.Direction = SPI_DIRECTION_2LINES; - 8001226: 4b14 ldr r3, [pc, #80] ; (8001278 ) - 8001228: 2200 movs r2, #0 - 800122a: 609a str r2, [r3, #8] + 80012ae: 4b14 ldr r3, [pc, #80] ; (8001300 ) + 80012b0: 2200 movs r2, #0 + 80012b2: 609a str r2, [r3, #8] hspi1.Init.DataSize = SPI_DATASIZE_8BIT; - 800122c: 4b12 ldr r3, [pc, #72] ; (8001278 ) - 800122e: 2200 movs r2, #0 - 8001230: 60da str r2, [r3, #12] + 80012b4: 4b12 ldr r3, [pc, #72] ; (8001300 ) + 80012b6: 2200 movs r2, #0 + 80012b8: 60da str r2, [r3, #12] hspi1.Init.CLKPolarity = SPI_POLARITY_LOW; - 8001232: 4b11 ldr r3, [pc, #68] ; (8001278 ) - 8001234: 2200 movs r2, #0 - 8001236: 611a str r2, [r3, #16] + 80012ba: 4b11 ldr r3, [pc, #68] ; (8001300 ) + 80012bc: 2200 movs r2, #0 + 80012be: 611a str r2, [r3, #16] hspi1.Init.CLKPhase = SPI_PHASE_1EDGE; - 8001238: 4b0f ldr r3, [pc, #60] ; (8001278 ) - 800123a: 2200 movs r2, #0 - 800123c: 615a str r2, [r3, #20] + 80012c0: 4b0f ldr r3, [pc, #60] ; (8001300 ) + 80012c2: 2200 movs r2, #0 + 80012c4: 615a str r2, [r3, #20] hspi1.Init.NSS = SPI_NSS_SOFT; - 800123e: 4b0e ldr r3, [pc, #56] ; (8001278 ) - 8001240: f44f 7200 mov.w r2, #512 ; 0x200 - 8001244: 619a str r2, [r3, #24] + 80012c6: 4b0e ldr r3, [pc, #56] ; (8001300 ) + 80012c8: f44f 7200 mov.w r2, #512 ; 0x200 + 80012cc: 619a str r2, [r3, #24] hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_4; - 8001246: 4b0c ldr r3, [pc, #48] ; (8001278 ) - 8001248: 2208 movs r2, #8 - 800124a: 61da str r2, [r3, #28] + 80012ce: 4b0c ldr r3, [pc, #48] ; (8001300 ) + 80012d0: 2208 movs r2, #8 + 80012d2: 61da str r2, [r3, #28] hspi1.Init.FirstBit = SPI_FIRSTBIT_MSB; - 800124c: 4b0a ldr r3, [pc, #40] ; (8001278 ) - 800124e: 2200 movs r2, #0 - 8001250: 621a str r2, [r3, #32] + 80012d4: 4b0a ldr r3, [pc, #40] ; (8001300 ) + 80012d6: 2200 movs r2, #0 + 80012d8: 621a str r2, [r3, #32] hspi1.Init.TIMode = SPI_TIMODE_DISABLE; - 8001252: 4b09 ldr r3, [pc, #36] ; (8001278 ) - 8001254: 2200 movs r2, #0 - 8001256: 625a str r2, [r3, #36] ; 0x24 + 80012da: 4b09 ldr r3, [pc, #36] ; (8001300 ) + 80012dc: 2200 movs r2, #0 + 80012de: 625a str r2, [r3, #36] ; 0x24 hspi1.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; - 8001258: 4b07 ldr r3, [pc, #28] ; (8001278 ) - 800125a: 2200 movs r2, #0 - 800125c: 629a str r2, [r3, #40] ; 0x28 + 80012e0: 4b07 ldr r3, [pc, #28] ; (8001300 ) + 80012e2: 2200 movs r2, #0 + 80012e4: 629a str r2, [r3, #40] ; 0x28 hspi1.Init.CRCPolynomial = 10; - 800125e: 4b06 ldr r3, [pc, #24] ; (8001278 ) - 8001260: 220a movs r2, #10 - 8001262: 62da str r2, [r3, #44] ; 0x2c + 80012e6: 4b06 ldr r3, [pc, #24] ; (8001300 ) + 80012e8: 220a movs r2, #10 + 80012ea: 62da str r2, [r3, #44] ; 0x2c if (HAL_SPI_Init(&hspi1) != HAL_OK) - 8001264: 4804 ldr r0, [pc, #16] ; (8001278 ) - 8001266: f002 fb65 bl 8003934 - 800126a: 4603 mov r3, r0 - 800126c: 2b00 cmp r3, #0 - 800126e: d001 beq.n 8001274 + 80012ec: 4804 ldr r0, [pc, #16] ; (8001300 ) + 80012ee: f002 fb49 bl 8003984 + 80012f2: 4603 mov r3, r0 + 80012f4: 2b00 cmp r3, #0 + 80012f6: d001 beq.n 80012fc { Error_Handler(); - 8001270: f000 f99e bl 80015b0 + 80012f8: f000 f99e bl 8001638 } /* USER CODE BEGIN SPI1_Init 2 */ /* USER CODE END SPI1_Init 2 */ } - 8001274: bf00 nop - 8001276: bd80 pop {r7, pc} - 8001278: 200002f8 .word 0x200002f8 - 800127c: 40013000 .word 0x40013000 + 80012fc: bf00 nop + 80012fe: bd80 pop {r7, pc} + 8001300: 200002f8 .word 0x200002f8 + 8001304: 40013000 .word 0x40013000 -08001280 : +08001308 : * @brief TIM6 Initialization Function * @param None * @retval None */ static void MX_TIM6_Init(void) { - 8001280: b580 push {r7, lr} - 8001282: b082 sub sp, #8 - 8001284: af00 add r7, sp, #0 + 8001308: b580 push {r7, lr} + 800130a: b082 sub sp, #8 + 800130c: af00 add r7, sp, #0 /* USER CODE BEGIN TIM6_Init 0 */ /* USER CODE END TIM6_Init 0 */ TIM_MasterConfigTypeDef sMasterConfig = {0}; - 8001286: 463b mov r3, r7 - 8001288: 2200 movs r2, #0 - 800128a: 601a str r2, [r3, #0] - 800128c: 605a str r2, [r3, #4] + 800130e: 463b mov r3, r7 + 8001310: 2200 movs r2, #0 + 8001312: 601a str r2, [r3, #0] + 8001314: 605a str r2, [r3, #4] /* USER CODE BEGIN TIM6_Init 1 */ /* USER CODE END TIM6_Init 1 */ htim6.Instance = TIM6; - 800128e: 4b15 ldr r3, [pc, #84] ; (80012e4 ) - 8001290: 4a15 ldr r2, [pc, #84] ; (80012e8 ) - 8001292: 601a str r2, [r3, #0] + 8001316: 4b15 ldr r3, [pc, #84] ; (800136c ) + 8001318: 4a15 ldr r2, [pc, #84] ; (8001370 ) + 800131a: 601a str r2, [r3, #0] htim6.Init.Prescaler = 72-1; - 8001294: 4b13 ldr r3, [pc, #76] ; (80012e4 ) - 8001296: 2247 movs r2, #71 ; 0x47 - 8001298: 605a str r2, [r3, #4] + 800131c: 4b13 ldr r3, [pc, #76] ; (800136c ) + 800131e: 2247 movs r2, #71 ; 0x47 + 8001320: 605a str r2, [r3, #4] htim6.Init.CounterMode = TIM_COUNTERMODE_UP; - 800129a: 4b12 ldr r3, [pc, #72] ; (80012e4 ) - 800129c: 2200 movs r2, #0 - 800129e: 609a str r2, [r3, #8] + 8001322: 4b12 ldr r3, [pc, #72] ; (800136c ) + 8001324: 2200 movs r2, #0 + 8001326: 609a str r2, [r3, #8] htim6.Init.Period = 10000-1; - 80012a0: 4b10 ldr r3, [pc, #64] ; (80012e4 ) - 80012a2: f242 720f movw r2, #9999 ; 0x270f - 80012a6: 60da str r2, [r3, #12] + 8001328: 4b10 ldr r3, [pc, #64] ; (800136c ) + 800132a: f242 720f movw r2, #9999 ; 0x270f + 800132e: 60da str r2, [r3, #12] htim6.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 80012a8: 4b0e ldr r3, [pc, #56] ; (80012e4 ) - 80012aa: 2200 movs r2, #0 - 80012ac: 619a str r2, [r3, #24] + 8001330: 4b0e ldr r3, [pc, #56] ; (800136c ) + 8001332: 2200 movs r2, #0 + 8001334: 619a str r2, [r3, #24] if (HAL_TIM_Base_Init(&htim6) != HAL_OK) - 80012ae: 480d ldr r0, [pc, #52] ; (80012e4 ) - 80012b0: f003 f8f9 bl 80044a6 - 80012b4: 4603 mov r3, r0 - 80012b6: 2b00 cmp r3, #0 - 80012b8: d001 beq.n 80012be + 8001336: 480d ldr r0, [pc, #52] ; (800136c ) + 8001338: f003 f8dd bl 80044f6 + 800133c: 4603 mov r3, r0 + 800133e: 2b00 cmp r3, #0 + 8001340: d001 beq.n 8001346 { Error_Handler(); - 80012ba: f000 f979 bl 80015b0 + 8001342: f000 f979 bl 8001638 } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 80012be: 2300 movs r3, #0 - 80012c0: 603b str r3, [r7, #0] + 8001346: 2300 movs r3, #0 + 8001348: 603b str r3, [r7, #0] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 80012c2: 2300 movs r3, #0 - 80012c4: 607b str r3, [r7, #4] + 800134a: 2300 movs r3, #0 + 800134c: 607b str r3, [r7, #4] if (HAL_TIMEx_MasterConfigSynchronization(&htim6, &sMasterConfig) != HAL_OK) - 80012c6: 463b mov r3, r7 - 80012c8: 4619 mov r1, r3 - 80012ca: 4806 ldr r0, [pc, #24] ; (80012e4 ) - 80012cc: f003 fb0e bl 80048ec - 80012d0: 4603 mov r3, r0 - 80012d2: 2b00 cmp r3, #0 - 80012d4: d001 beq.n 80012da + 800134e: 463b mov r3, r7 + 8001350: 4619 mov r1, r3 + 8001352: 4806 ldr r0, [pc, #24] ; (800136c ) + 8001354: f003 faf2 bl 800493c + 8001358: 4603 mov r3, r0 + 800135a: 2b00 cmp r3, #0 + 800135c: d001 beq.n 8001362 { Error_Handler(); - 80012d6: f000 f96b bl 80015b0 + 800135e: f000 f96b bl 8001638 } /* USER CODE BEGIN TIM6_Init 2 */ /* USER CODE END TIM6_Init 2 */ } - 80012da: bf00 nop - 80012dc: 3708 adds r7, #8 - 80012de: 46bd mov sp, r7 - 80012e0: bd80 pop {r7, pc} - 80012e2: bf00 nop - 80012e4: 200002b0 .word 0x200002b0 - 80012e8: 40001000 .word 0x40001000 + 8001362: bf00 nop + 8001364: 3708 adds r7, #8 + 8001366: 46bd mov sp, r7 + 8001368: bd80 pop {r7, pc} + 800136a: bf00 nop + 800136c: 200002b0 .word 0x200002b0 + 8001370: 40001000 .word 0x40001000 -080012ec : +08001374 : * @brief GPIO Initialization Function * @param None * @retval None */ static void MX_GPIO_Init(void) { - 80012ec: b580 push {r7, lr} - 80012ee: b08a sub sp, #40 ; 0x28 - 80012f0: af00 add r7, sp, #0 + 8001374: b580 push {r7, lr} + 8001376: b08a sub sp, #40 ; 0x28 + 8001378: af00 add r7, sp, #0 GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80012f2: f107 0318 add.w r3, r7, #24 - 80012f6: 2200 movs r2, #0 - 80012f8: 601a str r2, [r3, #0] - 80012fa: 605a str r2, [r3, #4] - 80012fc: 609a str r2, [r3, #8] - 80012fe: 60da str r2, [r3, #12] + 800137a: f107 0318 add.w r3, r7, #24 + 800137e: 2200 movs r2, #0 + 8001380: 601a str r2, [r3, #0] + 8001382: 605a str r2, [r3, #4] + 8001384: 609a str r2, [r3, #8] + 8001386: 60da str r2, [r3, #12] /* GPIO Ports Clock Enable */ __HAL_RCC_GPIOE_CLK_ENABLE(); - 8001300: 4b74 ldr r3, [pc, #464] ; (80014d4 ) - 8001302: 699b ldr r3, [r3, #24] - 8001304: 4a73 ldr r2, [pc, #460] ; (80014d4 ) - 8001306: f043 0340 orr.w r3, r3, #64 ; 0x40 - 800130a: 6193 str r3, [r2, #24] - 800130c: 4b71 ldr r3, [pc, #452] ; (80014d4 ) - 800130e: 699b ldr r3, [r3, #24] - 8001310: f003 0340 and.w r3, r3, #64 ; 0x40 - 8001314: 617b str r3, [r7, #20] - 8001316: 697b ldr r3, [r7, #20] + 8001388: 4b74 ldr r3, [pc, #464] ; (800155c ) + 800138a: 699b ldr r3, [r3, #24] + 800138c: 4a73 ldr r2, [pc, #460] ; (800155c ) + 800138e: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8001392: 6193 str r3, [r2, #24] + 8001394: 4b71 ldr r3, [pc, #452] ; (800155c ) + 8001396: 699b ldr r3, [r3, #24] + 8001398: f003 0340 and.w r3, r3, #64 ; 0x40 + 800139c: 617b str r3, [r7, #20] + 800139e: 697b ldr r3, [r7, #20] __HAL_RCC_GPIOF_CLK_ENABLE(); - 8001318: 4b6e ldr r3, [pc, #440] ; (80014d4 ) - 800131a: 699b ldr r3, [r3, #24] - 800131c: 4a6d ldr r2, [pc, #436] ; (80014d4 ) - 800131e: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8001322: 6193 str r3, [r2, #24] - 8001324: 4b6b ldr r3, [pc, #428] ; (80014d4 ) - 8001326: 699b ldr r3, [r3, #24] - 8001328: f003 0380 and.w r3, r3, #128 ; 0x80 - 800132c: 613b str r3, [r7, #16] - 800132e: 693b ldr r3, [r7, #16] + 80013a0: 4b6e ldr r3, [pc, #440] ; (800155c ) + 80013a2: 699b ldr r3, [r3, #24] + 80013a4: 4a6d ldr r2, [pc, #436] ; (800155c ) + 80013a6: f043 0380 orr.w r3, r3, #128 ; 0x80 + 80013aa: 6193 str r3, [r2, #24] + 80013ac: 4b6b ldr r3, [pc, #428] ; (800155c ) + 80013ae: 699b ldr r3, [r3, #24] + 80013b0: f003 0380 and.w r3, r3, #128 ; 0x80 + 80013b4: 613b str r3, [r7, #16] + 80013b6: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001330: 4b68 ldr r3, [pc, #416] ; (80014d4 ) - 8001332: 699b ldr r3, [r3, #24] - 8001334: 4a67 ldr r2, [pc, #412] ; (80014d4 ) - 8001336: f043 0304 orr.w r3, r3, #4 - 800133a: 6193 str r3, [r2, #24] - 800133c: 4b65 ldr r3, [pc, #404] ; (80014d4 ) - 800133e: 699b ldr r3, [r3, #24] - 8001340: f003 0304 and.w r3, r3, #4 - 8001344: 60fb str r3, [r7, #12] - 8001346: 68fb ldr r3, [r7, #12] + 80013b8: 4b68 ldr r3, [pc, #416] ; (800155c ) + 80013ba: 699b ldr r3, [r3, #24] + 80013bc: 4a67 ldr r2, [pc, #412] ; (800155c ) + 80013be: f043 0304 orr.w r3, r3, #4 + 80013c2: 6193 str r3, [r2, #24] + 80013c4: 4b65 ldr r3, [pc, #404] ; (800155c ) + 80013c6: 699b ldr r3, [r3, #24] + 80013c8: f003 0304 and.w r3, r3, #4 + 80013cc: 60fb str r3, [r7, #12] + 80013ce: 68fb ldr r3, [r7, #12] __HAL_RCC_GPIOB_CLK_ENABLE(); - 8001348: 4b62 ldr r3, [pc, #392] ; (80014d4 ) - 800134a: 699b ldr r3, [r3, #24] - 800134c: 4a61 ldr r2, [pc, #388] ; (80014d4 ) - 800134e: f043 0308 orr.w r3, r3, #8 - 8001352: 6193 str r3, [r2, #24] - 8001354: 4b5f ldr r3, [pc, #380] ; (80014d4 ) - 8001356: 699b ldr r3, [r3, #24] - 8001358: f003 0308 and.w r3, r3, #8 - 800135c: 60bb str r3, [r7, #8] - 800135e: 68bb ldr r3, [r7, #8] + 80013d0: 4b62 ldr r3, [pc, #392] ; (800155c ) + 80013d2: 699b ldr r3, [r3, #24] + 80013d4: 4a61 ldr r2, [pc, #388] ; (800155c ) + 80013d6: f043 0308 orr.w r3, r3, #8 + 80013da: 6193 str r3, [r2, #24] + 80013dc: 4b5f ldr r3, [pc, #380] ; (800155c ) + 80013de: 699b ldr r3, [r3, #24] + 80013e0: f003 0308 and.w r3, r3, #8 + 80013e4: 60bb str r3, [r7, #8] + 80013e6: 68bb ldr r3, [r7, #8] __HAL_RCC_GPIOG_CLK_ENABLE(); - 8001360: 4b5c ldr r3, [pc, #368] ; (80014d4 ) - 8001362: 699b ldr r3, [r3, #24] - 8001364: 4a5b ldr r2, [pc, #364] ; (80014d4 ) - 8001366: f443 7380 orr.w r3, r3, #256 ; 0x100 - 800136a: 6193 str r3, [r2, #24] - 800136c: 4b59 ldr r3, [pc, #356] ; (80014d4 ) - 800136e: 699b ldr r3, [r3, #24] - 8001370: f403 7380 and.w r3, r3, #256 ; 0x100 - 8001374: 607b str r3, [r7, #4] - 8001376: 687b ldr r3, [r7, #4] + 80013e8: 4b5c ldr r3, [pc, #368] ; (800155c ) + 80013ea: 699b ldr r3, [r3, #24] + 80013ec: 4a5b ldr r2, [pc, #364] ; (800155c ) + 80013ee: f443 7380 orr.w r3, r3, #256 ; 0x100 + 80013f2: 6193 str r3, [r2, #24] + 80013f4: 4b59 ldr r3, [pc, #356] ; (800155c ) + 80013f6: 699b ldr r3, [r3, #24] + 80013f8: f403 7380 and.w r3, r3, #256 ; 0x100 + 80013fc: 607b str r3, [r7, #4] + 80013fe: 687b ldr r3, [r7, #4] __HAL_RCC_GPIOD_CLK_ENABLE(); - 8001378: 4b56 ldr r3, [pc, #344] ; (80014d4 ) - 800137a: 699b ldr r3, [r3, #24] - 800137c: 4a55 ldr r2, [pc, #340] ; (80014d4 ) - 800137e: f043 0320 orr.w r3, r3, #32 - 8001382: 6193 str r3, [r2, #24] - 8001384: 4b53 ldr r3, [pc, #332] ; (80014d4 ) - 8001386: 699b ldr r3, [r3, #24] - 8001388: f003 0320 and.w r3, r3, #32 - 800138c: 603b str r3, [r7, #0] - 800138e: 683b ldr r3, [r7, #0] + 8001400: 4b56 ldr r3, [pc, #344] ; (800155c ) + 8001402: 699b ldr r3, [r3, #24] + 8001404: 4a55 ldr r2, [pc, #340] ; (800155c ) + 8001406: f043 0320 orr.w r3, r3, #32 + 800140a: 6193 str r3, [r2, #24] + 800140c: 4b53 ldr r3, [pc, #332] ; (800155c ) + 800140e: 699b ldr r3, [r3, #24] + 8001410: f003 0320 and.w r3, r3, #32 + 8001414: 603b str r3, [r7, #0] + 8001416: 683b ldr r3, [r7, #0] /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(TDIN_GPIO_Port, TDIN_Pin, GPIO_PIN_SET); - 8001390: 2201 movs r2, #1 - 8001392: f44f 7100 mov.w r1, #512 ; 0x200 - 8001396: 4850 ldr r0, [pc, #320] ; (80014d8 ) - 8001398: f000 fead bl 80020f6 + 8001418: 2201 movs r2, #1 + 800141a: f44f 7100 mov.w r1, #512 ; 0x200 + 800141e: 4850 ldr r0, [pc, #320] ; (8001560 ) + 8001420: f000 fe91 bl 8002146 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(RC522_CS_GPIO_Port, RC522_CS_Pin, GPIO_PIN_RESET); - 800139c: 2200 movs r2, #0 - 800139e: 2110 movs r1, #16 - 80013a0: 484e ldr r0, [pc, #312] ; (80014dc ) - 80013a2: f000 fea8 bl 80020f6 + 8001424: 2200 movs r2, #0 + 8001426: 2110 movs r1, #16 + 8001428: 484e ldr r0, [pc, #312] ; (8001564 ) + 800142a: f000 fe8c bl 8002146 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(LCD_BL_GPIO_Port, LCD_BL_Pin, GPIO_PIN_RESET); - 80013a6: 2200 movs r2, #0 - 80013a8: 2101 movs r1, #1 - 80013aa: 484d ldr r0, [pc, #308] ; (80014e0 ) - 80013ac: f000 fea3 bl 80020f6 + 800142e: 2200 movs r2, #0 + 8001430: 2101 movs r1, #1 + 8001432: 484d ldr r0, [pc, #308] ; (8001568 ) + 8001434: f000 fe87 bl 8002146 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin|MAX_IRD_Pin|MAX_RD_Pin, GPIO_PIN_SET); - 80013b0: 2201 movs r2, #1 - 80013b2: f245 0106 movw r1, #20486 ; 0x5006 - 80013b6: 484a ldr r0, [pc, #296] ; (80014e0 ) - 80013b8: f000 fe9d bl 80020f6 + 8001438: 2201 movs r2, #1 + 800143a: f245 0106 movw r1, #20486 ; 0x5006 + 800143e: 484a ldr r0, [pc, #296] ; (8001568 ) + 8001440: f000 fe81 bl 8002146 /*Configure GPIO pins : KEY3_Pin KEY2_Pin KEY1_Pin */ GPIO_InitStruct.Pin = KEY3_Pin|KEY2_Pin|KEY1_Pin; - 80013bc: 231c movs r3, #28 - 80013be: 61bb str r3, [r7, #24] + 8001444: 231c movs r3, #28 + 8001446: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80013c0: 2300 movs r3, #0 - 80013c2: 61fb str r3, [r7, #28] + 8001448: 2300 movs r3, #0 + 800144a: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_PULLUP; - 80013c4: 2301 movs r3, #1 - 80013c6: 623b str r3, [r7, #32] + 800144c: 2301 movs r3, #1 + 800144e: 623b str r3, [r7, #32] HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); - 80013c8: f107 0318 add.w r3, r7, #24 - 80013cc: 4619 mov r1, r3 - 80013ce: 4845 ldr r0, [pc, #276] ; (80014e4 ) - 80013d0: f000 fce6 bl 8001da0 + 8001450: f107 0318 add.w r3, r7, #24 + 8001454: 4619 mov r1, r3 + 8001456: 4845 ldr r0, [pc, #276] ; (800156c ) + 8001458: f000 fcca bl 8001df0 /*Configure GPIO pin : TDOUT_Pin */ GPIO_InitStruct.Pin = TDOUT_Pin; - 80013d4: f44f 7380 mov.w r3, #256 ; 0x100 - 80013d8: 61bb str r3, [r7, #24] + 800145c: f44f 7380 mov.w r3, #256 ; 0x100 + 8001460: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80013da: 2300 movs r3, #0 - 80013dc: 61fb str r3, [r7, #28] + 8001462: 2300 movs r3, #0 + 8001464: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80013de: 2300 movs r3, #0 - 80013e0: 623b str r3, [r7, #32] + 8001466: 2300 movs r3, #0 + 8001468: 623b str r3, [r7, #32] HAL_GPIO_Init(TDOUT_GPIO_Port, &GPIO_InitStruct); - 80013e2: f107 0318 add.w r3, r7, #24 - 80013e6: 4619 mov r1, r3 - 80013e8: 483b ldr r0, [pc, #236] ; (80014d8 ) - 80013ea: f000 fcd9 bl 8001da0 + 800146a: f107 0318 add.w r3, r7, #24 + 800146e: 4619 mov r1, r3 + 8001470: 483b ldr r0, [pc, #236] ; (8001560 ) + 8001472: f000 fcbd bl 8001df0 /*Configure GPIO pin : TDIN_Pin */ GPIO_InitStruct.Pin = TDIN_Pin; - 80013ee: f44f 7300 mov.w r3, #512 ; 0x200 - 80013f2: 61bb str r3, [r7, #24] + 8001476: f44f 7300 mov.w r3, #512 ; 0x200 + 800147a: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 80013f4: 2301 movs r3, #1 - 80013f6: 61fb str r3, [r7, #28] + 800147c: 2301 movs r3, #1 + 800147e: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80013f8: 2300 movs r3, #0 - 80013fa: 623b str r3, [r7, #32] + 8001480: 2300 movs r3, #0 + 8001482: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80013fc: 2303 movs r3, #3 - 80013fe: 627b str r3, [r7, #36] ; 0x24 + 8001484: 2303 movs r3, #3 + 8001486: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(TDIN_GPIO_Port, &GPIO_InitStruct); - 8001400: f107 0318 add.w r3, r7, #24 - 8001404: 4619 mov r1, r3 - 8001406: 4834 ldr r0, [pc, #208] ; (80014d8 ) - 8001408: f000 fcca bl 8001da0 + 8001488: f107 0318 add.w r3, r7, #24 + 800148c: 4619 mov r1, r3 + 800148e: 4834 ldr r0, [pc, #208] ; (8001560 ) + 8001490: f000 fcae bl 8001df0 /*Configure GPIO pin : TPEN_Pin */ GPIO_InitStruct.Pin = TPEN_Pin; - 800140c: f44f 6380 mov.w r3, #1024 ; 0x400 - 8001410: 61bb str r3, [r7, #24] + 8001494: f44f 6380 mov.w r3, #1024 ; 0x400 + 8001498: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 8001412: 2300 movs r3, #0 - 8001414: 61fb str r3, [r7, #28] + 800149a: 2300 movs r3, #0 + 800149c: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_PULLUP; - 8001416: 2301 movs r3, #1 - 8001418: 623b str r3, [r7, #32] + 800149e: 2301 movs r3, #1 + 80014a0: 623b str r3, [r7, #32] HAL_GPIO_Init(TPEN_GPIO_Port, &GPIO_InitStruct); - 800141a: f107 0318 add.w r3, r7, #24 - 800141e: 4619 mov r1, r3 - 8001420: 482d ldr r0, [pc, #180] ; (80014d8 ) - 8001422: f000 fcbd bl 8001da0 + 80014a2: f107 0318 add.w r3, r7, #24 + 80014a6: 4619 mov r1, r3 + 80014a8: 482d ldr r0, [pc, #180] ; (8001560 ) + 80014aa: f000 fca1 bl 8001df0 /*Configure GPIO pin : KEY0_Pin */ GPIO_InitStruct.Pin = KEY0_Pin; - 8001426: 2301 movs r3, #1 - 8001428: 61bb str r3, [r7, #24] + 80014ae: 2301 movs r3, #1 + 80014b0: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800142a: 2300 movs r3, #0 - 800142c: 61fb str r3, [r7, #28] + 80014b2: 2300 movs r3, #0 + 80014b4: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 800142e: 2300 movs r3, #0 - 8001430: 623b str r3, [r7, #32] + 80014b6: 2300 movs r3, #0 + 80014b8: 623b str r3, [r7, #32] HAL_GPIO_Init(KEY0_GPIO_Port, &GPIO_InitStruct); - 8001432: f107 0318 add.w r3, r7, #24 - 8001436: 4619 mov r1, r3 - 8001438: 4828 ldr r0, [pc, #160] ; (80014dc ) - 800143a: f000 fcb1 bl 8001da0 + 80014ba: f107 0318 add.w r3, r7, #24 + 80014be: 4619 mov r1, r3 + 80014c0: 4828 ldr r0, [pc, #160] ; (8001564 ) + 80014c2: f000 fc95 bl 8001df0 /*Configure GPIO pin : RC522_CS_Pin */ GPIO_InitStruct.Pin = RC522_CS_Pin; - 800143e: 2310 movs r3, #16 - 8001440: 61bb str r3, [r7, #24] + 80014c6: 2310 movs r3, #16 + 80014c8: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 8001442: 2301 movs r3, #1 - 8001444: 61fb str r3, [r7, #28] + 80014ca: 2301 movs r3, #1 + 80014cc: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001446: 2300 movs r3, #0 - 8001448: 623b str r3, [r7, #32] + 80014ce: 2300 movs r3, #0 + 80014d0: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 800144a: 2302 movs r3, #2 - 800144c: 627b str r3, [r7, #36] ; 0x24 + 80014d2: 2302 movs r3, #2 + 80014d4: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(RC522_CS_GPIO_Port, &GPIO_InitStruct); - 800144e: f107 0318 add.w r3, r7, #24 - 8001452: 4619 mov r1, r3 - 8001454: 4821 ldr r0, [pc, #132] ; (80014dc ) - 8001456: f000 fca3 bl 8001da0 + 80014d6: f107 0318 add.w r3, r7, #24 + 80014da: 4619 mov r1, r3 + 80014dc: 4821 ldr r0, [pc, #132] ; (8001564 ) + 80014de: f000 fc87 bl 8001df0 /*Configure GPIO pin : LCD_BL_Pin */ GPIO_InitStruct.Pin = LCD_BL_Pin; - 800145a: 2301 movs r3, #1 - 800145c: 61bb str r3, [r7, #24] + 80014e2: 2301 movs r3, #1 + 80014e4: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 800145e: 2301 movs r3, #1 - 8001460: 61fb str r3, [r7, #28] + 80014e6: 2301 movs r3, #1 + 80014e8: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001462: 2300 movs r3, #0 - 8001464: 623b str r3, [r7, #32] + 80014ea: 2300 movs r3, #0 + 80014ec: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 8001466: 2302 movs r3, #2 - 8001468: 627b str r3, [r7, #36] ; 0x24 + 80014ee: 2302 movs r3, #2 + 80014f0: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(LCD_BL_GPIO_Port, &GPIO_InitStruct); - 800146a: f107 0318 add.w r3, r7, #24 - 800146e: 4619 mov r1, r3 - 8001470: 481b ldr r0, [pc, #108] ; (80014e0 ) - 8001472: f000 fc95 bl 8001da0 + 80014f2: f107 0318 add.w r3, r7, #24 + 80014f6: 4619 mov r1, r3 + 80014f8: 481b ldr r0, [pc, #108] ; (8001568 ) + 80014fa: f000 fc79 bl 8001df0 /*Configure GPIO pins : TCLK_Pin TCS_Pin */ GPIO_InitStruct.Pin = TCLK_Pin|TCS_Pin; - 8001476: 2306 movs r3, #6 - 8001478: 61bb str r3, [r7, #24] + 80014fe: 2306 movs r3, #6 + 8001500: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 800147a: 2301 movs r3, #1 - 800147c: 61fb str r3, [r7, #28] + 8001502: 2301 movs r3, #1 + 8001504: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 800147e: 2300 movs r3, #0 - 8001480: 623b str r3, [r7, #32] + 8001506: 2300 movs r3, #0 + 8001508: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001482: 2303 movs r3, #3 - 8001484: 627b str r3, [r7, #36] ; 0x24 + 800150a: 2303 movs r3, #3 + 800150c: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8001486: f107 0318 add.w r3, r7, #24 - 800148a: 4619 mov r1, r3 - 800148c: 4814 ldr r0, [pc, #80] ; (80014e0 ) - 800148e: f000 fc87 bl 8001da0 + 800150e: f107 0318 add.w r3, r7, #24 + 8001512: 4619 mov r1, r3 + 8001514: 4814 ldr r0, [pc, #80] ; (8001568 ) + 8001516: f000 fc6b bl 8001df0 /*Configure GPIO pins : MAX_IRD_Pin MAX_RD_Pin */ GPIO_InitStruct.Pin = MAX_IRD_Pin|MAX_RD_Pin; - 8001492: f44f 43a0 mov.w r3, #20480 ; 0x5000 - 8001496: 61bb str r3, [r7, #24] + 800151a: f44f 43a0 mov.w r3, #20480 ; 0x5000 + 800151e: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 8001498: 2301 movs r3, #1 - 800149a: 61fb str r3, [r7, #28] + 8001520: 2301 movs r3, #1 + 8001522: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_PULLUP; - 800149c: 2301 movs r3, #1 - 800149e: 623b str r3, [r7, #32] + 8001524: 2301 movs r3, #1 + 8001526: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80014a0: 2303 movs r3, #3 - 80014a2: 627b str r3, [r7, #36] ; 0x24 + 8001528: 2303 movs r3, #3 + 800152a: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 80014a4: f107 0318 add.w r3, r7, #24 - 80014a8: 4619 mov r1, r3 - 80014aa: 480d ldr r0, [pc, #52] ; (80014e0 ) - 80014ac: f000 fc78 bl 8001da0 + 800152c: f107 0318 add.w r3, r7, #24 + 8001530: 4619 mov r1, r3 + 8001532: 480d ldr r0, [pc, #52] ; (8001568 ) + 8001534: f000 fc5c bl 8001df0 /*Configure GPIO pin : MAX_INT_Pin */ GPIO_InitStruct.Pin = MAX_INT_Pin; - 80014b0: f44f 5300 mov.w r3, #8192 ; 0x2000 - 80014b4: 61bb str r3, [r7, #24] + 8001538: f44f 5300 mov.w r3, #8192 ; 0x2000 + 800153c: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80014b6: 2300 movs r3, #0 - 80014b8: 61fb str r3, [r7, #28] + 800153e: 2300 movs r3, #0 + 8001540: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_PULLUP; - 80014ba: 2301 movs r3, #1 - 80014bc: 623b str r3, [r7, #32] + 8001542: 2301 movs r3, #1 + 8001544: 623b str r3, [r7, #32] HAL_GPIO_Init(MAX_INT_GPIO_Port, &GPIO_InitStruct); - 80014be: f107 0318 add.w r3, r7, #24 - 80014c2: 4619 mov r1, r3 - 80014c4: 4806 ldr r0, [pc, #24] ; (80014e0 ) - 80014c6: f000 fc6b bl 8001da0 + 8001546: f107 0318 add.w r3, r7, #24 + 800154a: 4619 mov r1, r3 + 800154c: 4806 ldr r0, [pc, #24] ; (8001568 ) + 800154e: f000 fc4f bl 8001df0 } - 80014ca: bf00 nop - 80014cc: 3728 adds r7, #40 ; 0x28 - 80014ce: 46bd mov sp, r7 - 80014d0: bd80 pop {r7, pc} - 80014d2: bf00 nop - 80014d4: 40021000 .word 0x40021000 - 80014d8: 40011c00 .word 0x40011c00 - 80014dc: 40010800 .word 0x40010800 - 80014e0: 40010c00 .word 0x40010c00 - 80014e4: 40011800 .word 0x40011800 + 8001552: bf00 nop + 8001554: 3728 adds r7, #40 ; 0x28 + 8001556: 46bd mov sp, r7 + 8001558: bd80 pop {r7, pc} + 800155a: bf00 nop + 800155c: 40021000 .word 0x40021000 + 8001560: 40011c00 .word 0x40011c00 + 8001564: 40010800 .word 0x40010800 + 8001568: 40010c00 .word 0x40010c00 + 800156c: 40011800 .word 0x40011800 -080014e8 : +08001570 : /* FSMC initialization function */ static void MX_FSMC_Init(void) { - 80014e8: b580 push {r7, lr} - 80014ea: b088 sub sp, #32 - 80014ec: af00 add r7, sp, #0 + 8001570: b580 push {r7, lr} + 8001572: b088 sub sp, #32 + 8001574: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_Init 0 */ /* USER CODE END FSMC_Init 0 */ FSMC_NORSRAM_TimingTypeDef Timing = {0}; - 80014ee: 1d3b adds r3, r7, #4 - 80014f0: 2200 movs r2, #0 - 80014f2: 601a str r2, [r3, #0] - 80014f4: 605a str r2, [r3, #4] - 80014f6: 609a str r2, [r3, #8] - 80014f8: 60da str r2, [r3, #12] - 80014fa: 611a str r2, [r3, #16] - 80014fc: 615a str r2, [r3, #20] - 80014fe: 619a str r2, [r3, #24] + 8001576: 1d3b adds r3, r7, #4 + 8001578: 2200 movs r2, #0 + 800157a: 601a str r2, [r3, #0] + 800157c: 605a str r2, [r3, #4] + 800157e: 609a str r2, [r3, #8] + 8001580: 60da str r2, [r3, #12] + 8001582: 611a str r2, [r3, #16] + 8001584: 615a str r2, [r3, #20] + 8001586: 619a str r2, [r3, #24] /* USER CODE END FSMC_Init 1 */ /** Perform the SRAM1 memory initialization sequence */ hsram1.Instance = FSMC_NORSRAM_DEVICE; - 8001500: 4b28 ldr r3, [pc, #160] ; (80015a4 ) - 8001502: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 - 8001506: 601a str r2, [r3, #0] + 8001588: 4b28 ldr r3, [pc, #160] ; (800162c ) + 800158a: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 + 800158e: 601a str r2, [r3, #0] hsram1.Extended = FSMC_NORSRAM_EXTENDED_DEVICE; - 8001508: 4b26 ldr r3, [pc, #152] ; (80015a4 ) - 800150a: 4a27 ldr r2, [pc, #156] ; (80015a8 ) - 800150c: 605a str r2, [r3, #4] + 8001590: 4b26 ldr r3, [pc, #152] ; (800162c ) + 8001592: 4a27 ldr r2, [pc, #156] ; (8001630 ) + 8001594: 605a str r2, [r3, #4] /* hsram1.Init */ hsram1.Init.NSBank = FSMC_NORSRAM_BANK4; - 800150e: 4b25 ldr r3, [pc, #148] ; (80015a4 ) - 8001510: 2206 movs r2, #6 - 8001512: 609a str r2, [r3, #8] + 8001596: 4b25 ldr r3, [pc, #148] ; (800162c ) + 8001598: 2206 movs r2, #6 + 800159a: 609a str r2, [r3, #8] hsram1.Init.DataAddressMux = FSMC_DATA_ADDRESS_MUX_DISABLE; - 8001514: 4b23 ldr r3, [pc, #140] ; (80015a4 ) - 8001516: 2200 movs r2, #0 - 8001518: 60da str r2, [r3, #12] + 800159c: 4b23 ldr r3, [pc, #140] ; (800162c ) + 800159e: 2200 movs r2, #0 + 80015a0: 60da str r2, [r3, #12] hsram1.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM; - 800151a: 4b22 ldr r3, [pc, #136] ; (80015a4 ) - 800151c: 2200 movs r2, #0 - 800151e: 611a str r2, [r3, #16] + 80015a2: 4b22 ldr r3, [pc, #136] ; (800162c ) + 80015a4: 2200 movs r2, #0 + 80015a6: 611a str r2, [r3, #16] hsram1.Init.MemoryDataWidth = FSMC_NORSRAM_MEM_BUS_WIDTH_16; - 8001520: 4b20 ldr r3, [pc, #128] ; (80015a4 ) - 8001522: 2210 movs r2, #16 - 8001524: 615a str r2, [r3, #20] + 80015a8: 4b20 ldr r3, [pc, #128] ; (800162c ) + 80015aa: 2210 movs r2, #16 + 80015ac: 615a str r2, [r3, #20] hsram1.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE; - 8001526: 4b1f ldr r3, [pc, #124] ; (80015a4 ) - 8001528: 2200 movs r2, #0 - 800152a: 619a str r2, [r3, #24] + 80015ae: 4b1f ldr r3, [pc, #124] ; (800162c ) + 80015b0: 2200 movs r2, #0 + 80015b2: 619a str r2, [r3, #24] hsram1.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW; - 800152c: 4b1d ldr r3, [pc, #116] ; (80015a4 ) - 800152e: 2200 movs r2, #0 - 8001530: 61da str r2, [r3, #28] + 80015b4: 4b1d ldr r3, [pc, #116] ; (800162c ) + 80015b6: 2200 movs r2, #0 + 80015b8: 61da str r2, [r3, #28] hsram1.Init.WrapMode = FSMC_WRAP_MODE_DISABLE; - 8001532: 4b1c ldr r3, [pc, #112] ; (80015a4 ) - 8001534: 2200 movs r2, #0 - 8001536: 621a str r2, [r3, #32] + 80015ba: 4b1c ldr r3, [pc, #112] ; (800162c ) + 80015bc: 2200 movs r2, #0 + 80015be: 621a str r2, [r3, #32] hsram1.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS; - 8001538: 4b1a ldr r3, [pc, #104] ; (80015a4 ) - 800153a: 2200 movs r2, #0 - 800153c: 625a str r2, [r3, #36] ; 0x24 + 80015c0: 4b1a ldr r3, [pc, #104] ; (800162c ) + 80015c2: 2200 movs r2, #0 + 80015c4: 625a str r2, [r3, #36] ; 0x24 hsram1.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE; - 800153e: 4b19 ldr r3, [pc, #100] ; (80015a4 ) - 8001540: f44f 5280 mov.w r2, #4096 ; 0x1000 - 8001544: 629a str r2, [r3, #40] ; 0x28 + 80015c6: 4b19 ldr r3, [pc, #100] ; (800162c ) + 80015c8: f44f 5280 mov.w r2, #4096 ; 0x1000 + 80015cc: 629a str r2, [r3, #40] ; 0x28 hsram1.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE; - 8001546: 4b17 ldr r3, [pc, #92] ; (80015a4 ) - 8001548: 2200 movs r2, #0 - 800154a: 62da str r2, [r3, #44] ; 0x2c + 80015ce: 4b17 ldr r3, [pc, #92] ; (800162c ) + 80015d0: 2200 movs r2, #0 + 80015d2: 62da str r2, [r3, #44] ; 0x2c hsram1.Init.ExtendedMode = FSMC_EXTENDED_MODE_DISABLE; - 800154c: 4b15 ldr r3, [pc, #84] ; (80015a4 ) - 800154e: 2200 movs r2, #0 - 8001550: 631a str r2, [r3, #48] ; 0x30 + 80015d4: 4b15 ldr r3, [pc, #84] ; (800162c ) + 80015d6: 2200 movs r2, #0 + 80015d8: 631a str r2, [r3, #48] ; 0x30 hsram1.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE; - 8001552: 4b14 ldr r3, [pc, #80] ; (80015a4 ) - 8001554: 2200 movs r2, #0 - 8001556: 635a str r2, [r3, #52] ; 0x34 + 80015da: 4b14 ldr r3, [pc, #80] ; (800162c ) + 80015dc: 2200 movs r2, #0 + 80015de: 635a str r2, [r3, #52] ; 0x34 hsram1.Init.WriteBurst = FSMC_WRITE_BURST_DISABLE; - 8001558: 4b12 ldr r3, [pc, #72] ; (80015a4 ) - 800155a: 2200 movs r2, #0 - 800155c: 639a str r2, [r3, #56] ; 0x38 + 80015e0: 4b12 ldr r3, [pc, #72] ; (800162c ) + 80015e2: 2200 movs r2, #0 + 80015e4: 639a str r2, [r3, #56] ; 0x38 /* Timing */ Timing.AddressSetupTime = 0; - 800155e: 2300 movs r3, #0 - 8001560: 607b str r3, [r7, #4] + 80015e6: 2300 movs r3, #0 + 80015e8: 607b str r3, [r7, #4] Timing.AddressHoldTime = 15; - 8001562: 230f movs r3, #15 - 8001564: 60bb str r3, [r7, #8] + 80015ea: 230f movs r3, #15 + 80015ec: 60bb str r3, [r7, #8] Timing.DataSetupTime = 1; - 8001566: 2301 movs r3, #1 - 8001568: 60fb str r3, [r7, #12] + 80015ee: 2301 movs r3, #1 + 80015f0: 60fb str r3, [r7, #12] Timing.BusTurnAroundDuration = 0; - 800156a: 2300 movs r3, #0 - 800156c: 613b str r3, [r7, #16] + 80015f2: 2300 movs r3, #0 + 80015f4: 613b str r3, [r7, #16] Timing.CLKDivision = 16; - 800156e: 2310 movs r3, #16 - 8001570: 617b str r3, [r7, #20] + 80015f6: 2310 movs r3, #16 + 80015f8: 617b str r3, [r7, #20] Timing.DataLatency = 17; - 8001572: 2311 movs r3, #17 - 8001574: 61bb str r3, [r7, #24] + 80015fa: 2311 movs r3, #17 + 80015fc: 61bb str r3, [r7, #24] Timing.AccessMode = FSMC_ACCESS_MODE_A; - 8001576: 2300 movs r3, #0 - 8001578: 61fb str r3, [r7, #28] + 80015fe: 2300 movs r3, #0 + 8001600: 61fb str r3, [r7, #28] /* ExtTiming */ if (HAL_SRAM_Init(&hsram1, &Timing, NULL) != HAL_OK) - 800157a: 1d3b adds r3, r7, #4 - 800157c: 2200 movs r2, #0 - 800157e: 4619 mov r1, r3 - 8001580: 4808 ldr r0, [pc, #32] ; (80015a4 ) - 8001582: f002 ff43 bl 800440c - 8001586: 4603 mov r3, r0 - 8001588: 2b00 cmp r3, #0 - 800158a: d001 beq.n 8001590 + 8001602: 1d3b adds r3, r7, #4 + 8001604: 2200 movs r2, #0 + 8001606: 4619 mov r1, r3 + 8001608: 4808 ldr r0, [pc, #32] ; (800162c ) + 800160a: f002 ff27 bl 800445c + 800160e: 4603 mov r3, r0 + 8001610: 2b00 cmp r3, #0 + 8001612: d001 beq.n 8001618 { Error_Handler( ); - 800158c: f000 f810 bl 80015b0 + 8001614: f000 f810 bl 8001638 } /** Disconnect NADV */ __HAL_AFIO_FSMCNADV_DISCONNECTED(); - 8001590: 4b06 ldr r3, [pc, #24] ; (80015ac ) - 8001592: 69db ldr r3, [r3, #28] - 8001594: 4a05 ldr r2, [pc, #20] ; (80015ac ) - 8001596: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 800159a: 61d3 str r3, [r2, #28] + 8001618: 4b06 ldr r3, [pc, #24] ; (8001634 ) + 800161a: 69db ldr r3, [r3, #28] + 800161c: 4a05 ldr r2, [pc, #20] ; (8001634 ) + 800161e: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8001622: 61d3 str r3, [r2, #28] /* USER CODE BEGIN FSMC_Init 2 */ /* USER CODE END FSMC_Init 2 */ } - 800159c: bf00 nop - 800159e: 3720 adds r7, #32 - 80015a0: 46bd mov sp, r7 - 80015a2: bd80 pop {r7, pc} - 80015a4: 20000268 .word 0x20000268 - 80015a8: a0000104 .word 0xa0000104 - 80015ac: 40010000 .word 0x40010000 + 8001624: bf00 nop + 8001626: 3720 adds r7, #32 + 8001628: 46bd mov sp, r7 + 800162a: bd80 pop {r7, pc} + 800162c: 20000268 .word 0x20000268 + 8001630: a0000104 .word 0xa0000104 + 8001634: 40010000 .word 0x40010000 -080015b0 : +08001638 : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 80015b0: b480 push {r7} - 80015b2: af00 add r7, sp, #0 + 8001638: b480 push {r7} + 800163a: 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"); - 80015b4: b672 cpsid i + 800163c: b672 cpsid i } - 80015b6: bf00 nop + 800163e: 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) - 80015b8: e7fe b.n 80015b8 + 8001640: e7fe b.n 8001640 ... -080015bc : +08001644 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 80015bc: b480 push {r7} - 80015be: b085 sub sp, #20 - 80015c0: af00 add r7, sp, #0 + 8001644: b480 push {r7} + 8001646: b085 sub sp, #20 + 8001648: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_AFIO_CLK_ENABLE(); - 80015c2: 4b15 ldr r3, [pc, #84] ; (8001618 ) - 80015c4: 699b ldr r3, [r3, #24] - 80015c6: 4a14 ldr r2, [pc, #80] ; (8001618 ) - 80015c8: f043 0301 orr.w r3, r3, #1 - 80015cc: 6193 str r3, [r2, #24] - 80015ce: 4b12 ldr r3, [pc, #72] ; (8001618 ) - 80015d0: 699b ldr r3, [r3, #24] - 80015d2: f003 0301 and.w r3, r3, #1 - 80015d6: 60bb str r3, [r7, #8] - 80015d8: 68bb ldr r3, [r7, #8] + 800164a: 4b15 ldr r3, [pc, #84] ; (80016a0 ) + 800164c: 699b ldr r3, [r3, #24] + 800164e: 4a14 ldr r2, [pc, #80] ; (80016a0 ) + 8001650: f043 0301 orr.w r3, r3, #1 + 8001654: 6193 str r3, [r2, #24] + 8001656: 4b12 ldr r3, [pc, #72] ; (80016a0 ) + 8001658: 699b ldr r3, [r3, #24] + 800165a: f003 0301 and.w r3, r3, #1 + 800165e: 60bb str r3, [r7, #8] + 8001660: 68bb ldr r3, [r7, #8] __HAL_RCC_PWR_CLK_ENABLE(); - 80015da: 4b0f ldr r3, [pc, #60] ; (8001618 ) - 80015dc: 69db ldr r3, [r3, #28] - 80015de: 4a0e ldr r2, [pc, #56] ; (8001618 ) - 80015e0: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 80015e4: 61d3 str r3, [r2, #28] - 80015e6: 4b0c ldr r3, [pc, #48] ; (8001618 ) - 80015e8: 69db ldr r3, [r3, #28] - 80015ea: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80015ee: 607b str r3, [r7, #4] - 80015f0: 687b ldr r3, [r7, #4] + 8001662: 4b0f ldr r3, [pc, #60] ; (80016a0 ) + 8001664: 69db ldr r3, [r3, #28] + 8001666: 4a0e ldr r2, [pc, #56] ; (80016a0 ) + 8001668: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 800166c: 61d3 str r3, [r2, #28] + 800166e: 4b0c ldr r3, [pc, #48] ; (80016a0 ) + 8001670: 69db ldr r3, [r3, #28] + 8001672: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8001676: 607b str r3, [r7, #4] + 8001678: 687b ldr r3, [r7, #4] /* System interrupt init*/ - /** DISABLE: JTAG-DP Disabled and SW-DP Disabled + /** NOJTAG: JTAG-DP Disabled and SW-DP Enabled */ - __HAL_AFIO_REMAP_SWJ_DISABLE(); - 80015f2: 4b0a ldr r3, [pc, #40] ; (800161c ) - 80015f4: 685b ldr r3, [r3, #4] - 80015f6: 60fb str r3, [r7, #12] - 80015f8: 68fb ldr r3, [r7, #12] - 80015fa: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 - 80015fe: 60fb str r3, [r7, #12] - 8001600: 68fb ldr r3, [r7, #12] - 8001602: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 - 8001606: 60fb str r3, [r7, #12] - 8001608: 4a04 ldr r2, [pc, #16] ; (800161c ) - 800160a: 68fb ldr r3, [r7, #12] - 800160c: 6053 str r3, [r2, #4] + __HAL_AFIO_REMAP_SWJ_NOJTAG(); + 800167a: 4b0a ldr r3, [pc, #40] ; (80016a4 ) + 800167c: 685b ldr r3, [r3, #4] + 800167e: 60fb str r3, [r7, #12] + 8001680: 68fb ldr r3, [r7, #12] + 8001682: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 + 8001686: 60fb str r3, [r7, #12] + 8001688: 68fb ldr r3, [r7, #12] + 800168a: f043 7300 orr.w r3, r3, #33554432 ; 0x2000000 + 800168e: 60fb str r3, [r7, #12] + 8001690: 4a04 ldr r2, [pc, #16] ; (80016a4 ) + 8001692: 68fb ldr r3, [r7, #12] + 8001694: 6053 str r3, [r2, #4] /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 800160e: bf00 nop - 8001610: 3714 adds r7, #20 - 8001612: 46bd mov sp, r7 - 8001614: bc80 pop {r7} - 8001616: 4770 bx lr - 8001618: 40021000 .word 0x40021000 - 800161c: 40010000 .word 0x40010000 + 8001696: bf00 nop + 8001698: 3714 adds r7, #20 + 800169a: 46bd mov sp, r7 + 800169c: bc80 pop {r7} + 800169e: 4770 bx lr + 80016a0: 40021000 .word 0x40021000 + 80016a4: 40010000 .word 0x40010000 -08001620 : +080016a8 : * This function configures the hardware resources used in this example * @param hi2c: I2C handle pointer * @retval None */ void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c) { - 8001620: b580 push {r7, lr} - 8001622: b088 sub sp, #32 - 8001624: af00 add r7, sp, #0 - 8001626: 6078 str r0, [r7, #4] + 80016a8: b580 push {r7, lr} + 80016aa: b088 sub sp, #32 + 80016ac: af00 add r7, sp, #0 + 80016ae: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8001628: f107 0310 add.w r3, r7, #16 - 800162c: 2200 movs r2, #0 - 800162e: 601a str r2, [r3, #0] - 8001630: 605a str r2, [r3, #4] - 8001632: 609a str r2, [r3, #8] - 8001634: 60da str r2, [r3, #12] + 80016b0: f107 0310 add.w r3, r7, #16 + 80016b4: 2200 movs r2, #0 + 80016b6: 601a str r2, [r3, #0] + 80016b8: 605a str r2, [r3, #4] + 80016ba: 609a str r2, [r3, #8] + 80016bc: 60da str r2, [r3, #12] if(hi2c->Instance==I2C2) - 8001636: 687b ldr r3, [r7, #4] - 8001638: 681b ldr r3, [r3, #0] - 800163a: 4a16 ldr r2, [pc, #88] ; (8001694 ) - 800163c: 4293 cmp r3, r2 - 800163e: d124 bne.n 800168a + 80016be: 687b ldr r3, [r7, #4] + 80016c0: 681b ldr r3, [r3, #0] + 80016c2: 4a16 ldr r2, [pc, #88] ; (800171c ) + 80016c4: 4293 cmp r3, r2 + 80016c6: d124 bne.n 8001712 { /* USER CODE BEGIN I2C2_MspInit 0 */ /* USER CODE END I2C2_MspInit 0 */ __HAL_RCC_GPIOB_CLK_ENABLE(); - 8001640: 4b15 ldr r3, [pc, #84] ; (8001698 ) - 8001642: 699b ldr r3, [r3, #24] - 8001644: 4a14 ldr r2, [pc, #80] ; (8001698 ) - 8001646: f043 0308 orr.w r3, r3, #8 - 800164a: 6193 str r3, [r2, #24] - 800164c: 4b12 ldr r3, [pc, #72] ; (8001698 ) - 800164e: 699b ldr r3, [r3, #24] - 8001650: f003 0308 and.w r3, r3, #8 - 8001654: 60fb str r3, [r7, #12] - 8001656: 68fb ldr r3, [r7, #12] + 80016c8: 4b15 ldr r3, [pc, #84] ; (8001720 ) + 80016ca: 699b ldr r3, [r3, #24] + 80016cc: 4a14 ldr r2, [pc, #80] ; (8001720 ) + 80016ce: f043 0308 orr.w r3, r3, #8 + 80016d2: 6193 str r3, [r2, #24] + 80016d4: 4b12 ldr r3, [pc, #72] ; (8001720 ) + 80016d6: 699b ldr r3, [r3, #24] + 80016d8: f003 0308 and.w r3, r3, #8 + 80016dc: 60fb str r3, [r7, #12] + 80016de: 68fb ldr r3, [r7, #12] /**I2C2 GPIO Configuration PB10 ------> I2C2_SCL PB11 ------> I2C2_SDA */ GPIO_InitStruct.Pin = GPIO_PIN_10|GPIO_PIN_11; - 8001658: f44f 6340 mov.w r3, #3072 ; 0xc00 - 800165c: 613b str r3, [r7, #16] + 80016e0: f44f 6340 mov.w r3, #3072 ; 0xc00 + 80016e4: 613b str r3, [r7, #16] GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; - 800165e: 2312 movs r3, #18 - 8001660: 617b str r3, [r7, #20] + 80016e6: 2312 movs r3, #18 + 80016e8: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001662: 2303 movs r3, #3 - 8001664: 61fb str r3, [r7, #28] + 80016ea: 2303 movs r3, #3 + 80016ec: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8001666: f107 0310 add.w r3, r7, #16 - 800166a: 4619 mov r1, r3 - 800166c: 480b ldr r0, [pc, #44] ; (800169c ) - 800166e: f000 fb97 bl 8001da0 + 80016ee: f107 0310 add.w r3, r7, #16 + 80016f2: 4619 mov r1, r3 + 80016f4: 480b ldr r0, [pc, #44] ; (8001724 ) + 80016f6: f000 fb7b bl 8001df0 /* Peripheral clock enable */ __HAL_RCC_I2C2_CLK_ENABLE(); - 8001672: 4b09 ldr r3, [pc, #36] ; (8001698 ) - 8001674: 69db ldr r3, [r3, #28] - 8001676: 4a08 ldr r2, [pc, #32] ; (8001698 ) - 8001678: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 - 800167c: 61d3 str r3, [r2, #28] - 800167e: 4b06 ldr r3, [pc, #24] ; (8001698 ) - 8001680: 69db ldr r3, [r3, #28] - 8001682: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 8001686: 60bb str r3, [r7, #8] - 8001688: 68bb ldr r3, [r7, #8] + 80016fa: 4b09 ldr r3, [pc, #36] ; (8001720 ) + 80016fc: 69db ldr r3, [r3, #28] + 80016fe: 4a08 ldr r2, [pc, #32] ; (8001720 ) + 8001700: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 + 8001704: 61d3 str r3, [r2, #28] + 8001706: 4b06 ldr r3, [pc, #24] ; (8001720 ) + 8001708: 69db ldr r3, [r3, #28] + 800170a: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 800170e: 60bb str r3, [r7, #8] + 8001710: 68bb ldr r3, [r7, #8] /* USER CODE BEGIN I2C2_MspInit 1 */ /* USER CODE END I2C2_MspInit 1 */ } } - 800168a: bf00 nop - 800168c: 3720 adds r7, #32 - 800168e: 46bd mov sp, r7 - 8001690: bd80 pop {r7, pc} - 8001692: bf00 nop - 8001694: 40005800 .word 0x40005800 - 8001698: 40021000 .word 0x40021000 - 800169c: 40010c00 .word 0x40010c00 + 8001712: bf00 nop + 8001714: 3720 adds r7, #32 + 8001716: 46bd mov sp, r7 + 8001718: bd80 pop {r7, pc} + 800171a: bf00 nop + 800171c: 40005800 .word 0x40005800 + 8001720: 40021000 .word 0x40021000 + 8001724: 40010c00 .word 0x40010c00 -080016a0 : +08001728 : * This function configures the hardware resources used in this example * @param hspi: SPI handle pointer * @retval None */ void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi) { - 80016a0: b580 push {r7, lr} - 80016a2: b088 sub sp, #32 - 80016a4: af00 add r7, sp, #0 - 80016a6: 6078 str r0, [r7, #4] + 8001728: b580 push {r7, lr} + 800172a: b088 sub sp, #32 + 800172c: af00 add r7, sp, #0 + 800172e: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80016a8: f107 0310 add.w r3, r7, #16 - 80016ac: 2200 movs r2, #0 - 80016ae: 601a str r2, [r3, #0] - 80016b0: 605a str r2, [r3, #4] - 80016b2: 609a str r2, [r3, #8] - 80016b4: 60da str r2, [r3, #12] + 8001730: f107 0310 add.w r3, r7, #16 + 8001734: 2200 movs r2, #0 + 8001736: 601a str r2, [r3, #0] + 8001738: 605a str r2, [r3, #4] + 800173a: 609a str r2, [r3, #8] + 800173c: 60da str r2, [r3, #12] if(hspi->Instance==SPI1) - 80016b6: 687b ldr r3, [r7, #4] - 80016b8: 681b ldr r3, [r3, #0] - 80016ba: 4a1b ldr r2, [pc, #108] ; (8001728 ) - 80016bc: 4293 cmp r3, r2 - 80016be: d12f bne.n 8001720 + 800173e: 687b ldr r3, [r7, #4] + 8001740: 681b ldr r3, [r3, #0] + 8001742: 4a1b ldr r2, [pc, #108] ; (80017b0 ) + 8001744: 4293 cmp r3, r2 + 8001746: d12f bne.n 80017a8 { /* USER CODE BEGIN SPI1_MspInit 0 */ /* USER CODE END SPI1_MspInit 0 */ /* Peripheral clock enable */ __HAL_RCC_SPI1_CLK_ENABLE(); - 80016c0: 4b1a ldr r3, [pc, #104] ; (800172c ) - 80016c2: 699b ldr r3, [r3, #24] - 80016c4: 4a19 ldr r2, [pc, #100] ; (800172c ) - 80016c6: f443 5380 orr.w r3, r3, #4096 ; 0x1000 - 80016ca: 6193 str r3, [r2, #24] - 80016cc: 4b17 ldr r3, [pc, #92] ; (800172c ) - 80016ce: 699b ldr r3, [r3, #24] - 80016d0: f403 5380 and.w r3, r3, #4096 ; 0x1000 - 80016d4: 60fb str r3, [r7, #12] - 80016d6: 68fb ldr r3, [r7, #12] + 8001748: 4b1a ldr r3, [pc, #104] ; (80017b4 ) + 800174a: 699b ldr r3, [r3, #24] + 800174c: 4a19 ldr r2, [pc, #100] ; (80017b4 ) + 800174e: f443 5380 orr.w r3, r3, #4096 ; 0x1000 + 8001752: 6193 str r3, [r2, #24] + 8001754: 4b17 ldr r3, [pc, #92] ; (80017b4 ) + 8001756: 699b ldr r3, [r3, #24] + 8001758: f403 5380 and.w r3, r3, #4096 ; 0x1000 + 800175c: 60fb str r3, [r7, #12] + 800175e: 68fb ldr r3, [r7, #12] __HAL_RCC_GPIOA_CLK_ENABLE(); - 80016d8: 4b14 ldr r3, [pc, #80] ; (800172c ) - 80016da: 699b ldr r3, [r3, #24] - 80016dc: 4a13 ldr r2, [pc, #76] ; (800172c ) - 80016de: f043 0304 orr.w r3, r3, #4 - 80016e2: 6193 str r3, [r2, #24] - 80016e4: 4b11 ldr r3, [pc, #68] ; (800172c ) - 80016e6: 699b ldr r3, [r3, #24] - 80016e8: f003 0304 and.w r3, r3, #4 - 80016ec: 60bb str r3, [r7, #8] - 80016ee: 68bb ldr r3, [r7, #8] + 8001760: 4b14 ldr r3, [pc, #80] ; (80017b4 ) + 8001762: 699b ldr r3, [r3, #24] + 8001764: 4a13 ldr r2, [pc, #76] ; (80017b4 ) + 8001766: f043 0304 orr.w r3, r3, #4 + 800176a: 6193 str r3, [r2, #24] + 800176c: 4b11 ldr r3, [pc, #68] ; (80017b4 ) + 800176e: 699b ldr r3, [r3, #24] + 8001770: f003 0304 and.w r3, r3, #4 + 8001774: 60bb str r3, [r7, #8] + 8001776: 68bb ldr r3, [r7, #8] /**SPI1 GPIO Configuration PA5 ------> SPI1_SCK PA6 ------> SPI1_MISO PA7 ------> SPI1_MOSI */ GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_7; - 80016f0: 23a0 movs r3, #160 ; 0xa0 - 80016f2: 613b str r3, [r7, #16] + 8001778: 23a0 movs r3, #160 ; 0xa0 + 800177a: 613b str r3, [r7, #16] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80016f4: 2302 movs r3, #2 - 80016f6: 617b str r3, [r7, #20] + 800177c: 2302 movs r3, #2 + 800177e: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80016f8: 2303 movs r3, #3 - 80016fa: 61fb str r3, [r7, #28] + 8001780: 2303 movs r3, #3 + 8001782: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80016fc: f107 0310 add.w r3, r7, #16 - 8001700: 4619 mov r1, r3 - 8001702: 480b ldr r0, [pc, #44] ; (8001730 ) - 8001704: f000 fb4c bl 8001da0 + 8001784: f107 0310 add.w r3, r7, #16 + 8001788: 4619 mov r1, r3 + 800178a: 480b ldr r0, [pc, #44] ; (80017b8 ) + 800178c: f000 fb30 bl 8001df0 GPIO_InitStruct.Pin = GPIO_PIN_6; - 8001708: 2340 movs r3, #64 ; 0x40 - 800170a: 613b str r3, [r7, #16] + 8001790: 2340 movs r3, #64 ; 0x40 + 8001792: 613b str r3, [r7, #16] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800170c: 2300 movs r3, #0 - 800170e: 617b str r3, [r7, #20] + 8001794: 2300 movs r3, #0 + 8001796: 617b str r3, [r7, #20] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001710: 2300 movs r3, #0 - 8001712: 61bb str r3, [r7, #24] + 8001798: 2300 movs r3, #0 + 800179a: 61bb str r3, [r7, #24] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001714: f107 0310 add.w r3, r7, #16 - 8001718: 4619 mov r1, r3 - 800171a: 4805 ldr r0, [pc, #20] ; (8001730 ) - 800171c: f000 fb40 bl 8001da0 + 800179c: f107 0310 add.w r3, r7, #16 + 80017a0: 4619 mov r1, r3 + 80017a2: 4805 ldr r0, [pc, #20] ; (80017b8 ) + 80017a4: f000 fb24 bl 8001df0 /* USER CODE BEGIN SPI1_MspInit 1 */ /* USER CODE END SPI1_MspInit 1 */ } } - 8001720: bf00 nop - 8001722: 3720 adds r7, #32 - 8001724: 46bd mov sp, r7 - 8001726: bd80 pop {r7, pc} - 8001728: 40013000 .word 0x40013000 - 800172c: 40021000 .word 0x40021000 - 8001730: 40010800 .word 0x40010800 + 80017a8: bf00 nop + 80017aa: 3720 adds r7, #32 + 80017ac: 46bd mov sp, r7 + 80017ae: bd80 pop {r7, pc} + 80017b0: 40013000 .word 0x40013000 + 80017b4: 40021000 .word 0x40021000 + 80017b8: 40010800 .word 0x40010800 -08001734 : +080017bc : * 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) { - 8001734: b580 push {r7, lr} - 8001736: b084 sub sp, #16 - 8001738: af00 add r7, sp, #0 - 800173a: 6078 str r0, [r7, #4] + 80017bc: b580 push {r7, lr} + 80017be: b084 sub sp, #16 + 80017c0: af00 add r7, sp, #0 + 80017c2: 6078 str r0, [r7, #4] if(htim_base->Instance==TIM6) - 800173c: 687b ldr r3, [r7, #4] - 800173e: 681b ldr r3, [r3, #0] - 8001740: 4a0d ldr r2, [pc, #52] ; (8001778 ) - 8001742: 4293 cmp r3, r2 - 8001744: d113 bne.n 800176e + 80017c4: 687b ldr r3, [r7, #4] + 80017c6: 681b ldr r3, [r3, #0] + 80017c8: 4a0d ldr r2, [pc, #52] ; (8001800 ) + 80017ca: 4293 cmp r3, r2 + 80017cc: d113 bne.n 80017f6 { /* USER CODE BEGIN TIM6_MspInit 0 */ /* USER CODE END TIM6_MspInit 0 */ /* Peripheral clock enable */ __HAL_RCC_TIM6_CLK_ENABLE(); - 8001746: 4b0d ldr r3, [pc, #52] ; (800177c ) - 8001748: 69db ldr r3, [r3, #28] - 800174a: 4a0c ldr r2, [pc, #48] ; (800177c ) - 800174c: f043 0310 orr.w r3, r3, #16 - 8001750: 61d3 str r3, [r2, #28] - 8001752: 4b0a ldr r3, [pc, #40] ; (800177c ) - 8001754: 69db ldr r3, [r3, #28] - 8001756: f003 0310 and.w r3, r3, #16 - 800175a: 60fb str r3, [r7, #12] - 800175c: 68fb ldr r3, [r7, #12] + 80017ce: 4b0d ldr r3, [pc, #52] ; (8001804 ) + 80017d0: 69db ldr r3, [r3, #28] + 80017d2: 4a0c ldr r2, [pc, #48] ; (8001804 ) + 80017d4: f043 0310 orr.w r3, r3, #16 + 80017d8: 61d3 str r3, [r2, #28] + 80017da: 4b0a ldr r3, [pc, #40] ; (8001804 ) + 80017dc: 69db ldr r3, [r3, #28] + 80017de: f003 0310 and.w r3, r3, #16 + 80017e2: 60fb str r3, [r7, #12] + 80017e4: 68fb ldr r3, [r7, #12] /* TIM6 interrupt Init */ HAL_NVIC_SetPriority(TIM6_IRQn, 0, 0); - 800175e: 2200 movs r2, #0 - 8001760: 2100 movs r1, #0 - 8001762: 2036 movs r0, #54 ; 0x36 - 8001764: f000 fae5 bl 8001d32 + 80017e6: 2200 movs r2, #0 + 80017e8: 2100 movs r1, #0 + 80017ea: 2036 movs r0, #54 ; 0x36 + 80017ec: f000 fac9 bl 8001d82 HAL_NVIC_EnableIRQ(TIM6_IRQn); - 8001768: 2036 movs r0, #54 ; 0x36 - 800176a: f000 fafe bl 8001d6a + 80017f0: 2036 movs r0, #54 ; 0x36 + 80017f2: f000 fae2 bl 8001dba /* USER CODE BEGIN TIM6_MspInit 1 */ /* USER CODE END TIM6_MspInit 1 */ } } - 800176e: bf00 nop - 8001770: 3710 adds r7, #16 - 8001772: 46bd mov sp, r7 - 8001774: bd80 pop {r7, pc} - 8001776: bf00 nop - 8001778: 40001000 .word 0x40001000 - 800177c: 40021000 .word 0x40021000 + 80017f6: bf00 nop + 80017f8: 3710 adds r7, #16 + 80017fa: 46bd mov sp, r7 + 80017fc: bd80 pop {r7, pc} + 80017fe: bf00 nop + 8001800: 40001000 .word 0x40001000 + 8001804: 40021000 .word 0x40021000 -08001780 : +08001808 : } static uint32_t FSMC_Initialized = 0; static void HAL_FSMC_MspInit(void){ - 8001780: b580 push {r7, lr} - 8001782: b086 sub sp, #24 - 8001784: af00 add r7, sp, #0 + 8001808: b580 push {r7, lr} + 800180a: b086 sub sp, #24 + 800180c: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_MspInit 0 */ /* USER CODE END FSMC_MspInit 0 */ GPIO_InitTypeDef GPIO_InitStruct ={0}; - 8001786: f107 0308 add.w r3, r7, #8 - 800178a: 2200 movs r2, #0 - 800178c: 601a str r2, [r3, #0] - 800178e: 605a str r2, [r3, #4] - 8001790: 609a str r2, [r3, #8] - 8001792: 60da str r2, [r3, #12] + 800180e: f107 0308 add.w r3, r7, #8 + 8001812: 2200 movs r2, #0 + 8001814: 601a str r2, [r3, #0] + 8001816: 605a str r2, [r3, #4] + 8001818: 609a str r2, [r3, #8] + 800181a: 60da str r2, [r3, #12] if (FSMC_Initialized) { - 8001794: 4b1f ldr r3, [pc, #124] ; (8001814 ) - 8001796: 681b ldr r3, [r3, #0] - 8001798: 2b00 cmp r3, #0 - 800179a: d136 bne.n 800180a + 800181c: 4b1f ldr r3, [pc, #124] ; (800189c ) + 800181e: 681b ldr r3, [r3, #0] + 8001820: 2b00 cmp r3, #0 + 8001822: d136 bne.n 8001892 return; } FSMC_Initialized = 1; - 800179c: 4b1d ldr r3, [pc, #116] ; (8001814 ) - 800179e: 2201 movs r2, #1 - 80017a0: 601a str r2, [r3, #0] + 8001824: 4b1d ldr r3, [pc, #116] ; (800189c ) + 8001826: 2201 movs r2, #1 + 8001828: 601a str r2, [r3, #0] /* Peripheral clock enable */ __HAL_RCC_FSMC_CLK_ENABLE(); - 80017a2: 4b1d ldr r3, [pc, #116] ; (8001818 ) - 80017a4: 695b ldr r3, [r3, #20] - 80017a6: 4a1c ldr r2, [pc, #112] ; (8001818 ) - 80017a8: f443 7380 orr.w r3, r3, #256 ; 0x100 - 80017ac: 6153 str r3, [r2, #20] - 80017ae: 4b1a ldr r3, [pc, #104] ; (8001818 ) - 80017b0: 695b ldr r3, [r3, #20] - 80017b2: f403 7380 and.w r3, r3, #256 ; 0x100 - 80017b6: 607b str r3, [r7, #4] - 80017b8: 687b ldr r3, [r7, #4] + 800182a: 4b1d ldr r3, [pc, #116] ; (80018a0 ) + 800182c: 695b ldr r3, [r3, #20] + 800182e: 4a1c ldr r2, [pc, #112] ; (80018a0 ) + 8001830: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8001834: 6153 str r3, [r2, #20] + 8001836: 4b1a ldr r3, [pc, #104] ; (80018a0 ) + 8001838: 695b ldr r3, [r3, #20] + 800183a: f403 7380 and.w r3, r3, #256 ; 0x100 + 800183e: 607b str r3, [r7, #4] + 8001840: 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; - 80017ba: f241 0301 movw r3, #4097 ; 0x1001 - 80017be: 60bb str r3, [r7, #8] + 8001842: f241 0301 movw r3, #4097 ; 0x1001 + 8001846: 60bb str r3, [r7, #8] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80017c0: 2302 movs r3, #2 - 80017c2: 60fb str r3, [r7, #12] + 8001848: 2302 movs r3, #2 + 800184a: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80017c4: 2303 movs r3, #3 - 80017c6: 617b str r3, [r7, #20] + 800184c: 2303 movs r3, #3 + 800184e: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOG, &GPIO_InitStruct); - 80017c8: f107 0308 add.w r3, r7, #8 - 80017cc: 4619 mov r1, r3 - 80017ce: 4813 ldr r0, [pc, #76] ; (800181c ) - 80017d0: f000 fae6 bl 8001da0 + 8001850: f107 0308 add.w r3, r7, #8 + 8001854: 4619 mov r1, r3 + 8001856: 4813 ldr r0, [pc, #76] ; (80018a4 ) + 8001858: f000 faca bl 8001df0 GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10 - 80017d4: f64f 7380 movw r3, #65408 ; 0xff80 - 80017d8: 60bb str r3, [r7, #8] + 800185c: f64f 7380 movw r3, #65408 ; 0xff80 + 8001860: 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; - 80017da: 2302 movs r3, #2 - 80017dc: 60fb str r3, [r7, #12] + 8001862: 2302 movs r3, #2 + 8001864: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80017de: 2303 movs r3, #3 - 80017e0: 617b str r3, [r7, #20] + 8001866: 2303 movs r3, #3 + 8001868: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); - 80017e2: f107 0308 add.w r3, r7, #8 - 80017e6: 4619 mov r1, r3 - 80017e8: 480d ldr r0, [pc, #52] ; (8001820 ) - 80017ea: f000 fad9 bl 8001da0 + 800186a: f107 0308 add.w r3, r7, #8 + 800186e: 4619 mov r1, r3 + 8001870: 480d ldr r0, [pc, #52] ; (80018a8 ) + 8001872: f000 fabd bl 8001df0 GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_14 - 80017ee: f24c 7333 movw r3, #50995 ; 0xc733 - 80017f2: 60bb str r3, [r7, #8] + 8001876: f24c 7333 movw r3, #50995 ; 0xc733 + 800187a: 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; - 80017f4: 2302 movs r3, #2 - 80017f6: 60fb str r3, [r7, #12] + 800187c: 2302 movs r3, #2 + 800187e: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80017f8: 2303 movs r3, #3 - 80017fa: 617b str r3, [r7, #20] + 8001880: 2303 movs r3, #3 + 8001882: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 80017fc: f107 0308 add.w r3, r7, #8 - 8001800: 4619 mov r1, r3 - 8001802: 4808 ldr r0, [pc, #32] ; (8001824 ) - 8001804: f000 facc bl 8001da0 - 8001808: e000 b.n 800180c + 8001884: f107 0308 add.w r3, r7, #8 + 8001888: 4619 mov r1, r3 + 800188a: 4808 ldr r0, [pc, #32] ; (80018ac ) + 800188c: f000 fab0 bl 8001df0 + 8001890: e000 b.n 8001894 return; - 800180a: bf00 nop + 8001892: bf00 nop /* USER CODE BEGIN FSMC_MspInit 1 */ /* USER CODE END FSMC_MspInit 1 */ } - 800180c: 3718 adds r7, #24 - 800180e: 46bd mov sp, r7 - 8001810: bd80 pop {r7, pc} - 8001812: bf00 nop - 8001814: 20000200 .word 0x20000200 - 8001818: 40021000 .word 0x40021000 - 800181c: 40012000 .word 0x40012000 - 8001820: 40011800 .word 0x40011800 - 8001824: 40011400 .word 0x40011400 + 8001894: 3718 adds r7, #24 + 8001896: 46bd mov sp, r7 + 8001898: bd80 pop {r7, pc} + 800189a: bf00 nop + 800189c: 20000200 .word 0x20000200 + 80018a0: 40021000 .word 0x40021000 + 80018a4: 40012000 .word 0x40012000 + 80018a8: 40011800 .word 0x40011800 + 80018ac: 40011400 .word 0x40011400 -08001828 : +080018b0 : void HAL_SRAM_MspInit(SRAM_HandleTypeDef* hsram){ - 8001828: b580 push {r7, lr} - 800182a: b082 sub sp, #8 - 800182c: af00 add r7, sp, #0 - 800182e: 6078 str r0, [r7, #4] + 80018b0: b580 push {r7, lr} + 80018b2: b082 sub sp, #8 + 80018b4: af00 add r7, sp, #0 + 80018b6: 6078 str r0, [r7, #4] /* USER CODE BEGIN SRAM_MspInit 0 */ /* USER CODE END SRAM_MspInit 0 */ HAL_FSMC_MspInit(); - 8001830: f7ff ffa6 bl 8001780 + 80018b8: f7ff ffa6 bl 8001808 /* USER CODE BEGIN SRAM_MspInit 1 */ /* USER CODE END SRAM_MspInit 1 */ } - 8001834: bf00 nop - 8001836: 3708 adds r7, #8 - 8001838: 46bd mov sp, r7 - 800183a: bd80 pop {r7, pc} + 80018bc: bf00 nop + 80018be: 3708 adds r7, #8 + 80018c0: 46bd mov sp, r7 + 80018c2: bd80 pop {r7, pc} -0800183c : +080018c4 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 800183c: b480 push {r7} - 800183e: af00 add r7, sp, #0 + 80018c4: b480 push {r7} + 80018c6: 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) - 8001840: e7fe b.n 8001840 + 80018c8: e7fe b.n 80018c8 -08001842 : +080018ca : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8001842: b480 push {r7} - 8001844: af00 add r7, sp, #0 + 80018ca: b480 push {r7} + 80018cc: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8001846: e7fe b.n 8001846 + 80018ce: e7fe b.n 80018ce -08001848 : +080018d0 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8001848: b480 push {r7} - 800184a: af00 add r7, sp, #0 + 80018d0: b480 push {r7} + 80018d2: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 800184c: e7fe b.n 800184c + 80018d4: e7fe b.n 80018d4 -0800184e : +080018d6 : /** * @brief This function handles Prefetch fault, memory access fault. */ void BusFault_Handler(void) { - 800184e: b480 push {r7} - 8001850: af00 add r7, sp, #0 + 80018d6: b480 push {r7} + 80018d8: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8001852: e7fe b.n 8001852 + 80018da: e7fe b.n 80018da -08001854 : +080018dc : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8001854: b480 push {r7} - 8001856: af00 add r7, sp, #0 + 80018dc: b480 push {r7} + 80018de: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8001858: e7fe b.n 8001858 + 80018e0: e7fe b.n 80018e0 -0800185a : +080018e2 : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 800185a: b480 push {r7} - 800185c: af00 add r7, sp, #0 + 80018e2: b480 push {r7} + 80018e4: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 800185e: bf00 nop - 8001860: 46bd mov sp, r7 - 8001862: bc80 pop {r7} - 8001864: 4770 bx lr + 80018e6: bf00 nop + 80018e8: 46bd mov sp, r7 + 80018ea: bc80 pop {r7} + 80018ec: 4770 bx lr -08001866 : +080018ee : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8001866: b480 push {r7} - 8001868: af00 add r7, sp, #0 + 80018ee: b480 push {r7} + 80018f0: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 800186a: bf00 nop - 800186c: 46bd mov sp, r7 - 800186e: bc80 pop {r7} - 8001870: 4770 bx lr + 80018f2: bf00 nop + 80018f4: 46bd mov sp, r7 + 80018f6: bc80 pop {r7} + 80018f8: 4770 bx lr -08001872 : +080018fa : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 8001872: b480 push {r7} - 8001874: af00 add r7, sp, #0 + 80018fa: b480 push {r7} + 80018fc: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 8001876: bf00 nop - 8001878: 46bd mov sp, r7 - 800187a: bc80 pop {r7} - 800187c: 4770 bx lr + 80018fe: bf00 nop + 8001900: 46bd mov sp, r7 + 8001902: bc80 pop {r7} + 8001904: 4770 bx lr -0800187e : +08001906 : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 800187e: b580 push {r7, lr} - 8001880: af00 add r7, sp, #0 + 8001906: b580 push {r7, lr} + 8001908: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 8001882: f000 f93f bl 8001b04 + 800190a: f000 f923 bl 8001b54 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 8001886: bf00 nop - 8001888: bd80 pop {r7, pc} + 800190e: bf00 nop + 8001910: bd80 pop {r7, pc} ... -0800188c : +08001914 : /** * @brief This function handles TIM6 global interrupt. */ void TIM6_IRQHandler(void) { - 800188c: b580 push {r7, lr} - 800188e: af00 add r7, sp, #0 + 8001914: b580 push {r7, lr} + 8001916: af00 add r7, sp, #0 /* USER CODE BEGIN TIM6_IRQn 0 */ /* USER CODE END TIM6_IRQn 0 */ HAL_TIM_IRQHandler(&htim6); - 8001890: 4802 ldr r0, [pc, #8] ; (800189c ) - 8001892: f002 fe85 bl 80045a0 + 8001918: 4802 ldr r0, [pc, #8] ; (8001924 ) + 800191a: f002 fe69 bl 80045f0 /* USER CODE BEGIN TIM6_IRQn 1 */ /* USER CODE END TIM6_IRQn 1 */ } - 8001896: bf00 nop - 8001898: bd80 pop {r7, pc} - 800189a: bf00 nop - 800189c: 200002b0 .word 0x200002b0 + 800191e: bf00 nop + 8001920: bd80 pop {r7, pc} + 8001922: bf00 nop + 8001924: 200002b0 .word 0x200002b0 -080018a0 <_getpid>: +08001928 <_getpid>: void initialise_monitor_handles() { } int _getpid(void) { - 80018a0: b480 push {r7} - 80018a2: af00 add r7, sp, #0 + 8001928: b480 push {r7} + 800192a: af00 add r7, sp, #0 return 1; - 80018a4: 2301 movs r3, #1 + 800192c: 2301 movs r3, #1 } - 80018a6: 4618 mov r0, r3 - 80018a8: 46bd mov sp, r7 - 80018aa: bc80 pop {r7} - 80018ac: 4770 bx lr + 800192e: 4618 mov r0, r3 + 8001930: 46bd mov sp, r7 + 8001932: bc80 pop {r7} + 8001934: 4770 bx lr -080018ae <_kill>: +08001936 <_kill>: int _kill(int pid, int sig) { - 80018ae: b580 push {r7, lr} - 80018b0: b082 sub sp, #8 - 80018b2: af00 add r7, sp, #0 - 80018b4: 6078 str r0, [r7, #4] - 80018b6: 6039 str r1, [r7, #0] + 8001936: b580 push {r7, lr} + 8001938: b082 sub sp, #8 + 800193a: af00 add r7, sp, #0 + 800193c: 6078 str r0, [r7, #4] + 800193e: 6039 str r1, [r7, #0] errno = EINVAL; - 80018b8: f005 fea4 bl 8007604 <__errno> - 80018bc: 4603 mov r3, r0 - 80018be: 2216 movs r2, #22 - 80018c0: 601a str r2, [r3, #0] + 8001940: f005 fef0 bl 8007724 <__errno> + 8001944: 4603 mov r3, r0 + 8001946: 2216 movs r2, #22 + 8001948: 601a str r2, [r3, #0] return -1; - 80018c2: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800194a: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 80018c6: 4618 mov r0, r3 - 80018c8: 3708 adds r7, #8 - 80018ca: 46bd mov sp, r7 - 80018cc: bd80 pop {r7, pc} + 800194e: 4618 mov r0, r3 + 8001950: 3708 adds r7, #8 + 8001952: 46bd mov sp, r7 + 8001954: bd80 pop {r7, pc} -080018ce <_exit>: +08001956 <_exit>: void _exit (int status) { - 80018ce: b580 push {r7, lr} - 80018d0: b082 sub sp, #8 - 80018d2: af00 add r7, sp, #0 - 80018d4: 6078 str r0, [r7, #4] + 8001956: b580 push {r7, lr} + 8001958: b082 sub sp, #8 + 800195a: af00 add r7, sp, #0 + 800195c: 6078 str r0, [r7, #4] _kill(status, -1); - 80018d6: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 80018da: 6878 ldr r0, [r7, #4] - 80018dc: f7ff ffe7 bl 80018ae <_kill> + 800195e: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 8001962: 6878 ldr r0, [r7, #4] + 8001964: f7ff ffe7 bl 8001936 <_kill> while (1) {} /* Make sure we hang here */ - 80018e0: e7fe b.n 80018e0 <_exit+0x12> + 8001968: e7fe b.n 8001968 <_exit+0x12> -080018e2 <_read>: +0800196a <_read>: } __attribute__((weak)) int _read(int file, char *ptr, int len) { - 80018e2: b580 push {r7, lr} - 80018e4: b086 sub sp, #24 - 80018e6: af00 add r7, sp, #0 - 80018e8: 60f8 str r0, [r7, #12] - 80018ea: 60b9 str r1, [r7, #8] - 80018ec: 607a str r2, [r7, #4] + 800196a: b580 push {r7, lr} + 800196c: b086 sub sp, #24 + 800196e: af00 add r7, sp, #0 + 8001970: 60f8 str r0, [r7, #12] + 8001972: 60b9 str r1, [r7, #8] + 8001974: 607a str r2, [r7, #4] int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) - 80018ee: 2300 movs r3, #0 - 80018f0: 617b str r3, [r7, #20] - 80018f2: e00a b.n 800190a <_read+0x28> + 8001976: 2300 movs r3, #0 + 8001978: 617b str r3, [r7, #20] + 800197a: e00a b.n 8001992 <_read+0x28> { *ptr++ = __io_getchar(); - 80018f4: f3af 8000 nop.w - 80018f8: 4601 mov r1, r0 - 80018fa: 68bb ldr r3, [r7, #8] - 80018fc: 1c5a adds r2, r3, #1 - 80018fe: 60ba str r2, [r7, #8] - 8001900: b2ca uxtb r2, r1 - 8001902: 701a strb r2, [r3, #0] + 800197c: f3af 8000 nop.w + 8001980: 4601 mov r1, r0 + 8001982: 68bb ldr r3, [r7, #8] + 8001984: 1c5a adds r2, r3, #1 + 8001986: 60ba str r2, [r7, #8] + 8001988: b2ca uxtb r2, r1 + 800198a: 701a strb r2, [r3, #0] for (DataIdx = 0; DataIdx < len; DataIdx++) - 8001904: 697b ldr r3, [r7, #20] - 8001906: 3301 adds r3, #1 - 8001908: 617b str r3, [r7, #20] - 800190a: 697a ldr r2, [r7, #20] - 800190c: 687b ldr r3, [r7, #4] - 800190e: 429a cmp r2, r3 - 8001910: dbf0 blt.n 80018f4 <_read+0x12> + 800198c: 697b ldr r3, [r7, #20] + 800198e: 3301 adds r3, #1 + 8001990: 617b str r3, [r7, #20] + 8001992: 697a ldr r2, [r7, #20] + 8001994: 687b ldr r3, [r7, #4] + 8001996: 429a cmp r2, r3 + 8001998: dbf0 blt.n 800197c <_read+0x12> } return len; - 8001912: 687b ldr r3, [r7, #4] + 800199a: 687b ldr r3, [r7, #4] } - 8001914: 4618 mov r0, r3 - 8001916: 3718 adds r7, #24 - 8001918: 46bd mov sp, r7 - 800191a: bd80 pop {r7, pc} + 800199c: 4618 mov r0, r3 + 800199e: 3718 adds r7, #24 + 80019a0: 46bd mov sp, r7 + 80019a2: bd80 pop {r7, pc} -0800191c <_write>: - -__attribute__((weak)) int _write(int file, char *ptr, int len) -{ - 800191c: b580 push {r7, lr} - 800191e: b086 sub sp, #24 - 8001920: af00 add r7, sp, #0 - 8001922: 60f8 str r0, [r7, #12] - 8001924: 60b9 str r1, [r7, #8] - 8001926: 607a str r2, [r7, #4] - int DataIdx; - - for (DataIdx = 0; DataIdx < len; DataIdx++) - 8001928: 2300 movs r3, #0 - 800192a: 617b str r3, [r7, #20] - 800192c: e009 b.n 8001942 <_write+0x26> - { - __io_putchar(*ptr++); - 800192e: 68bb ldr r3, [r7, #8] - 8001930: 1c5a adds r2, r3, #1 - 8001932: 60ba str r2, [r7, #8] - 8001934: 781b ldrb r3, [r3, #0] - 8001936: 4618 mov r0, r3 - 8001938: f3af 8000 nop.w - for (DataIdx = 0; DataIdx < len; DataIdx++) - 800193c: 697b ldr r3, [r7, #20] - 800193e: 3301 adds r3, #1 - 8001940: 617b str r3, [r7, #20] - 8001942: 697a ldr r2, [r7, #20] - 8001944: 687b ldr r3, [r7, #4] - 8001946: 429a cmp r2, r3 - 8001948: dbf1 blt.n 800192e <_write+0x12> +080019a4 <_close>: } return len; - 800194a: 687b ldr r3, [r7, #4] } - 800194c: 4618 mov r0, r3 - 800194e: 3718 adds r7, #24 - 8001950: 46bd mov sp, r7 - 8001952: bd80 pop {r7, pc} - -08001954 <_close>: int _close(int file) { - 8001954: b480 push {r7} - 8001956: b083 sub sp, #12 - 8001958: af00 add r7, sp, #0 - 800195a: 6078 str r0, [r7, #4] + 80019a4: b480 push {r7} + 80019a6: b083 sub sp, #12 + 80019a8: af00 add r7, sp, #0 + 80019aa: 6078 str r0, [r7, #4] return -1; - 800195c: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 80019ac: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 8001960: 4618 mov r0, r3 - 8001962: 370c adds r7, #12 - 8001964: 46bd mov sp, r7 - 8001966: bc80 pop {r7} - 8001968: 4770 bx lr + 80019b0: 4618 mov r0, r3 + 80019b2: 370c adds r7, #12 + 80019b4: 46bd mov sp, r7 + 80019b6: bc80 pop {r7} + 80019b8: 4770 bx lr -0800196a <_fstat>: +080019ba <_fstat>: int _fstat(int file, struct stat *st) { - 800196a: b480 push {r7} - 800196c: b083 sub sp, #12 - 800196e: af00 add r7, sp, #0 - 8001970: 6078 str r0, [r7, #4] - 8001972: 6039 str r1, [r7, #0] + 80019ba: b480 push {r7} + 80019bc: b083 sub sp, #12 + 80019be: af00 add r7, sp, #0 + 80019c0: 6078 str r0, [r7, #4] + 80019c2: 6039 str r1, [r7, #0] st->st_mode = S_IFCHR; - 8001974: 683b ldr r3, [r7, #0] - 8001976: f44f 5200 mov.w r2, #8192 ; 0x2000 - 800197a: 605a str r2, [r3, #4] + 80019c4: 683b ldr r3, [r7, #0] + 80019c6: f44f 5200 mov.w r2, #8192 ; 0x2000 + 80019ca: 605a str r2, [r3, #4] return 0; - 800197c: 2300 movs r3, #0 + 80019cc: 2300 movs r3, #0 } - 800197e: 4618 mov r0, r3 - 8001980: 370c adds r7, #12 - 8001982: 46bd mov sp, r7 - 8001984: bc80 pop {r7} - 8001986: 4770 bx lr + 80019ce: 4618 mov r0, r3 + 80019d0: 370c adds r7, #12 + 80019d2: 46bd mov sp, r7 + 80019d4: bc80 pop {r7} + 80019d6: 4770 bx lr -08001988 <_isatty>: +080019d8 <_isatty>: int _isatty(int file) { - 8001988: b480 push {r7} - 800198a: b083 sub sp, #12 - 800198c: af00 add r7, sp, #0 - 800198e: 6078 str r0, [r7, #4] + 80019d8: b480 push {r7} + 80019da: b083 sub sp, #12 + 80019dc: af00 add r7, sp, #0 + 80019de: 6078 str r0, [r7, #4] return 1; - 8001990: 2301 movs r3, #1 + 80019e0: 2301 movs r3, #1 } - 8001992: 4618 mov r0, r3 - 8001994: 370c adds r7, #12 - 8001996: 46bd mov sp, r7 - 8001998: bc80 pop {r7} - 800199a: 4770 bx lr + 80019e2: 4618 mov r0, r3 + 80019e4: 370c adds r7, #12 + 80019e6: 46bd mov sp, r7 + 80019e8: bc80 pop {r7} + 80019ea: 4770 bx lr -0800199c <_lseek>: +080019ec <_lseek>: int _lseek(int file, int ptr, int dir) { - 800199c: b480 push {r7} - 800199e: b085 sub sp, #20 - 80019a0: af00 add r7, sp, #0 - 80019a2: 60f8 str r0, [r7, #12] - 80019a4: 60b9 str r1, [r7, #8] - 80019a6: 607a str r2, [r7, #4] + 80019ec: b480 push {r7} + 80019ee: b085 sub sp, #20 + 80019f0: af00 add r7, sp, #0 + 80019f2: 60f8 str r0, [r7, #12] + 80019f4: 60b9 str r1, [r7, #8] + 80019f6: 607a str r2, [r7, #4] return 0; - 80019a8: 2300 movs r3, #0 + 80019f8: 2300 movs r3, #0 } - 80019aa: 4618 mov r0, r3 - 80019ac: 3714 adds r7, #20 - 80019ae: 46bd mov sp, r7 - 80019b0: bc80 pop {r7} - 80019b2: 4770 bx lr + 80019fa: 4618 mov r0, r3 + 80019fc: 3714 adds r7, #20 + 80019fe: 46bd mov sp, r7 + 8001a00: bc80 pop {r7} + 8001a02: 4770 bx lr -080019b4 <_sbrk>: +08001a04 <_sbrk>: * * @param incr Memory size * @return Pointer to allocated memory */ void *_sbrk(ptrdiff_t incr) { - 80019b4: b580 push {r7, lr} - 80019b6: b086 sub sp, #24 - 80019b8: af00 add r7, sp, #0 - 80019ba: 6078 str r0, [r7, #4] + 8001a04: b580 push {r7, lr} + 8001a06: b086 sub sp, #24 + 8001a08: af00 add r7, sp, #0 + 8001a0a: 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; - 80019bc: 4a14 ldr r2, [pc, #80] ; (8001a10 <_sbrk+0x5c>) - 80019be: 4b15 ldr r3, [pc, #84] ; (8001a14 <_sbrk+0x60>) - 80019c0: 1ad3 subs r3, r2, r3 - 80019c2: 617b str r3, [r7, #20] + 8001a0c: 4a14 ldr r2, [pc, #80] ; (8001a60 <_sbrk+0x5c>) + 8001a0e: 4b15 ldr r3, [pc, #84] ; (8001a64 <_sbrk+0x60>) + 8001a10: 1ad3 subs r3, r2, r3 + 8001a12: 617b str r3, [r7, #20] const uint8_t *max_heap = (uint8_t *)stack_limit; - 80019c4: 697b ldr r3, [r7, #20] - 80019c6: 613b str r3, [r7, #16] + 8001a14: 697b ldr r3, [r7, #20] + 8001a16: 613b str r3, [r7, #16] uint8_t *prev_heap_end; /* Initialize heap end at first call */ if (NULL == __sbrk_heap_end) - 80019c8: 4b13 ldr r3, [pc, #76] ; (8001a18 <_sbrk+0x64>) - 80019ca: 681b ldr r3, [r3, #0] - 80019cc: 2b00 cmp r3, #0 - 80019ce: d102 bne.n 80019d6 <_sbrk+0x22> + 8001a18: 4b13 ldr r3, [pc, #76] ; (8001a68 <_sbrk+0x64>) + 8001a1a: 681b ldr r3, [r3, #0] + 8001a1c: 2b00 cmp r3, #0 + 8001a1e: d102 bne.n 8001a26 <_sbrk+0x22> { __sbrk_heap_end = &_end; - 80019d0: 4b11 ldr r3, [pc, #68] ; (8001a18 <_sbrk+0x64>) - 80019d2: 4a12 ldr r2, [pc, #72] ; (8001a1c <_sbrk+0x68>) - 80019d4: 601a str r2, [r3, #0] + 8001a20: 4b11 ldr r3, [pc, #68] ; (8001a68 <_sbrk+0x64>) + 8001a22: 4a12 ldr r2, [pc, #72] ; (8001a6c <_sbrk+0x68>) + 8001a24: 601a str r2, [r3, #0] } /* Protect heap from growing into the reserved MSP stack */ if (__sbrk_heap_end + incr > max_heap) - 80019d6: 4b10 ldr r3, [pc, #64] ; (8001a18 <_sbrk+0x64>) - 80019d8: 681a ldr r2, [r3, #0] - 80019da: 687b ldr r3, [r7, #4] - 80019dc: 4413 add r3, r2 - 80019de: 693a ldr r2, [r7, #16] - 80019e0: 429a cmp r2, r3 - 80019e2: d207 bcs.n 80019f4 <_sbrk+0x40> + 8001a26: 4b10 ldr r3, [pc, #64] ; (8001a68 <_sbrk+0x64>) + 8001a28: 681a ldr r2, [r3, #0] + 8001a2a: 687b ldr r3, [r7, #4] + 8001a2c: 4413 add r3, r2 + 8001a2e: 693a ldr r2, [r7, #16] + 8001a30: 429a cmp r2, r3 + 8001a32: d207 bcs.n 8001a44 <_sbrk+0x40> { errno = ENOMEM; - 80019e4: f005 fe0e bl 8007604 <__errno> - 80019e8: 4603 mov r3, r0 - 80019ea: 220c movs r2, #12 - 80019ec: 601a str r2, [r3, #0] + 8001a34: f005 fe76 bl 8007724 <__errno> + 8001a38: 4603 mov r3, r0 + 8001a3a: 220c movs r2, #12 + 8001a3c: 601a str r2, [r3, #0] return (void *)-1; - 80019ee: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 80019f2: e009 b.n 8001a08 <_sbrk+0x54> + 8001a3e: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8001a42: e009 b.n 8001a58 <_sbrk+0x54> } prev_heap_end = __sbrk_heap_end; - 80019f4: 4b08 ldr r3, [pc, #32] ; (8001a18 <_sbrk+0x64>) - 80019f6: 681b ldr r3, [r3, #0] - 80019f8: 60fb str r3, [r7, #12] + 8001a44: 4b08 ldr r3, [pc, #32] ; (8001a68 <_sbrk+0x64>) + 8001a46: 681b ldr r3, [r3, #0] + 8001a48: 60fb str r3, [r7, #12] __sbrk_heap_end += incr; - 80019fa: 4b07 ldr r3, [pc, #28] ; (8001a18 <_sbrk+0x64>) - 80019fc: 681a ldr r2, [r3, #0] - 80019fe: 687b ldr r3, [r7, #4] - 8001a00: 4413 add r3, r2 - 8001a02: 4a05 ldr r2, [pc, #20] ; (8001a18 <_sbrk+0x64>) - 8001a04: 6013 str r3, [r2, #0] + 8001a4a: 4b07 ldr r3, [pc, #28] ; (8001a68 <_sbrk+0x64>) + 8001a4c: 681a ldr r2, [r3, #0] + 8001a4e: 687b ldr r3, [r7, #4] + 8001a50: 4413 add r3, r2 + 8001a52: 4a05 ldr r2, [pc, #20] ; (8001a68 <_sbrk+0x64>) + 8001a54: 6013 str r3, [r2, #0] return (void *)prev_heap_end; - 8001a06: 68fb ldr r3, [r7, #12] + 8001a56: 68fb ldr r3, [r7, #12] } - 8001a08: 4618 mov r0, r3 - 8001a0a: 3718 adds r7, #24 - 8001a0c: 46bd mov sp, r7 - 8001a0e: bd80 pop {r7, pc} - 8001a10: 20010000 .word 0x20010000 - 8001a14: 00000800 .word 0x00000800 - 8001a18: 20000204 .word 0x20000204 - 8001a1c: 20002548 .word 0x20002548 + 8001a58: 4618 mov r0, r3 + 8001a5a: 3718 adds r7, #24 + 8001a5c: 46bd mov sp, r7 + 8001a5e: bd80 pop {r7, pc} + 8001a60: 20010000 .word 0x20010000 + 8001a64: 00000800 .word 0x00000800 + 8001a68: 20000204 .word 0x20000204 + 8001a6c: 20002548 .word 0x20002548 -08001a20 : +08001a70 : * @note This function should be used only after reset. * @param None * @retval None */ void SystemInit (void) { - 8001a20: b480 push {r7} - 8001a22: af00 add r7, sp, #0 + 8001a70: b480 push {r7} + 8001a72: 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 */ } - 8001a24: bf00 nop - 8001a26: 46bd mov sp, r7 - 8001a28: bc80 pop {r7} - 8001a2a: 4770 bx lr + 8001a74: bf00 nop + 8001a76: 46bd mov sp, r7 + 8001a78: bc80 pop {r7} + 8001a7a: 4770 bx lr -08001a2c : +08001a7c : .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 8001a2c: 480c ldr r0, [pc, #48] ; (8001a60 ) + 8001a7c: 480c ldr r0, [pc, #48] ; (8001ab0 ) ldr r1, =_edata - 8001a2e: 490d ldr r1, [pc, #52] ; (8001a64 ) + 8001a7e: 490d ldr r1, [pc, #52] ; (8001ab4 ) ldr r2, =_sidata - 8001a30: 4a0d ldr r2, [pc, #52] ; (8001a68 ) + 8001a80: 4a0d ldr r2, [pc, #52] ; (8001ab8 ) movs r3, #0 - 8001a32: 2300 movs r3, #0 + 8001a82: 2300 movs r3, #0 b LoopCopyDataInit - 8001a34: e002 b.n 8001a3c + 8001a84: e002 b.n 8001a8c -08001a36 : +08001a86 : CopyDataInit: ldr r4, [r2, r3] - 8001a36: 58d4 ldr r4, [r2, r3] + 8001a86: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 8001a38: 50c4 str r4, [r0, r3] + 8001a88: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 8001a3a: 3304 adds r3, #4 + 8001a8a: 3304 adds r3, #4 -08001a3c : +08001a8c : LoopCopyDataInit: adds r4, r0, r3 - 8001a3c: 18c4 adds r4, r0, r3 + 8001a8c: 18c4 adds r4, r0, r3 cmp r4, r1 - 8001a3e: 428c cmp r4, r1 + 8001a8e: 428c cmp r4, r1 bcc CopyDataInit - 8001a40: d3f9 bcc.n 8001a36 + 8001a90: d3f9 bcc.n 8001a86 /* Zero fill the bss segment. */ ldr r2, =_sbss - 8001a42: 4a0a ldr r2, [pc, #40] ; (8001a6c ) + 8001a92: 4a0a ldr r2, [pc, #40] ; (8001abc ) ldr r4, =_ebss - 8001a44: 4c0a ldr r4, [pc, #40] ; (8001a70 ) + 8001a94: 4c0a ldr r4, [pc, #40] ; (8001ac0 ) movs r3, #0 - 8001a46: 2300 movs r3, #0 + 8001a96: 2300 movs r3, #0 b LoopFillZerobss - 8001a48: e001 b.n 8001a4e + 8001a98: e001 b.n 8001a9e -08001a4a : +08001a9a : FillZerobss: str r3, [r2] - 8001a4a: 6013 str r3, [r2, #0] + 8001a9a: 6013 str r3, [r2, #0] adds r2, r2, #4 - 8001a4c: 3204 adds r2, #4 + 8001a9c: 3204 adds r2, #4 -08001a4e : +08001a9e : LoopFillZerobss: cmp r2, r4 - 8001a4e: 42a2 cmp r2, r4 + 8001a9e: 42a2 cmp r2, r4 bcc FillZerobss - 8001a50: d3fb bcc.n 8001a4a + 8001aa0: d3fb bcc.n 8001a9a /* Call the clock system intitialization function.*/ bl SystemInit - 8001a52: f7ff ffe5 bl 8001a20 + 8001aa2: f7ff ffe5 bl 8001a70 /* Call static constructors */ bl __libc_init_array - 8001a56: f005 fddb bl 8007610 <__libc_init_array> + 8001aa6: f005 fe43 bl 8007730 <__libc_init_array> /* Call the application's entry point.*/ bl main - 8001a5a: f7ff fb55 bl 8001108
+ 8001aaa: f7ff fb71 bl 8001190
bx lr - 8001a5e: 4770 bx lr + 8001aae: 4770 bx lr ldr r0, =_sdata - 8001a60: 20000000 .word 0x20000000 + 8001ab0: 20000000 .word 0x20000000 ldr r1, =_edata - 8001a64: 200001e4 .word 0x200001e4 + 8001ab4: 200001e4 .word 0x200001e4 ldr r2, =_sidata - 8001a68: 0800b324 .word 0x0800b324 + 8001ab8: 0800b674 .word 0x0800b674 ldr r2, =_sbss - 8001a6c: 200001e4 .word 0x200001e4 + 8001abc: 200001e4 .word 0x200001e4 ldr r4, =_ebss - 8001a70: 20002548 .word 0x20002548 + 8001ac0: 20002548 .word 0x20002548 -08001a74 : +08001ac4 : * @retval : None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 8001a74: e7fe b.n 8001a74 + 8001ac4: e7fe b.n 8001ac4 ... -08001a78 : +08001ac8 : * 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) { - 8001a78: b580 push {r7, lr} - 8001a7a: af00 add r7, sp, #0 + 8001ac8: b580 push {r7, lr} + 8001aca: 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(); - 8001a7c: 4b08 ldr r3, [pc, #32] ; (8001aa0 ) - 8001a7e: 681b ldr r3, [r3, #0] - 8001a80: 4a07 ldr r2, [pc, #28] ; (8001aa0 ) - 8001a82: f043 0310 orr.w r3, r3, #16 - 8001a86: 6013 str r3, [r2, #0] + 8001acc: 4b08 ldr r3, [pc, #32] ; (8001af0 ) + 8001ace: 681b ldr r3, [r3, #0] + 8001ad0: 4a07 ldr r2, [pc, #28] ; (8001af0 ) + 8001ad2: f043 0310 orr.w r3, r3, #16 + 8001ad6: 6013 str r3, [r2, #0] #endif #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8001a88: 2003 movs r0, #3 - 8001a8a: f000 f947 bl 8001d1c + 8001ad8: 2003 movs r0, #3 + 8001ada: f000 f947 bl 8001d6c /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 8001a8e: 200f movs r0, #15 - 8001a90: f000 f808 bl 8001aa4 + 8001ade: 200f movs r0, #15 + 8001ae0: f000 f808 bl 8001af4 /* Init the low level hardware */ HAL_MspInit(); - 8001a94: f7ff fd92 bl 80015bc + 8001ae4: f7ff fdae bl 8001644 /* Return function status */ return HAL_OK; - 8001a98: 2300 movs r3, #0 + 8001ae8: 2300 movs r3, #0 } - 8001a9a: 4618 mov r0, r3 - 8001a9c: bd80 pop {r7, pc} - 8001a9e: bf00 nop - 8001aa0: 40022000 .word 0x40022000 + 8001aea: 4618 mov r0, r3 + 8001aec: bd80 pop {r7, pc} + 8001aee: bf00 nop + 8001af0: 40022000 .word 0x40022000 -08001aa4 : +08001af4 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8001aa4: b580 push {r7, lr} - 8001aa6: b082 sub sp, #8 - 8001aa8: af00 add r7, sp, #0 - 8001aaa: 6078 str r0, [r7, #4] + 8001af4: b580 push {r7, lr} + 8001af6: b082 sub sp, #8 + 8001af8: af00 add r7, sp, #0 + 8001afa: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8001aac: 4b12 ldr r3, [pc, #72] ; (8001af8 ) - 8001aae: 681a ldr r2, [r3, #0] - 8001ab0: 4b12 ldr r3, [pc, #72] ; (8001afc ) - 8001ab2: 781b ldrb r3, [r3, #0] - 8001ab4: 4619 mov r1, r3 - 8001ab6: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8001aba: fbb3 f3f1 udiv r3, r3, r1 - 8001abe: fbb2 f3f3 udiv r3, r2, r3 - 8001ac2: 4618 mov r0, r3 - 8001ac4: f000 f95f bl 8001d86 - 8001ac8: 4603 mov r3, r0 - 8001aca: 2b00 cmp r3, #0 - 8001acc: d001 beq.n 8001ad2 + 8001afc: 4b12 ldr r3, [pc, #72] ; (8001b48 ) + 8001afe: 681a ldr r2, [r3, #0] + 8001b00: 4b12 ldr r3, [pc, #72] ; (8001b4c ) + 8001b02: 781b ldrb r3, [r3, #0] + 8001b04: 4619 mov r1, r3 + 8001b06: f44f 737a mov.w r3, #1000 ; 0x3e8 + 8001b0a: fbb3 f3f1 udiv r3, r3, r1 + 8001b0e: fbb2 f3f3 udiv r3, r2, r3 + 8001b12: 4618 mov r0, r3 + 8001b14: f000 f95f bl 8001dd6 + 8001b18: 4603 mov r3, r0 + 8001b1a: 2b00 cmp r3, #0 + 8001b1c: d001 beq.n 8001b22 { return HAL_ERROR; - 8001ace: 2301 movs r3, #1 - 8001ad0: e00e b.n 8001af0 + 8001b1e: 2301 movs r3, #1 + 8001b20: e00e b.n 8001b40 } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 8001ad2: 687b ldr r3, [r7, #4] - 8001ad4: 2b0f cmp r3, #15 - 8001ad6: d80a bhi.n 8001aee + 8001b22: 687b ldr r3, [r7, #4] + 8001b24: 2b0f cmp r3, #15 + 8001b26: d80a bhi.n 8001b3e { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 8001ad8: 2200 movs r2, #0 - 8001ada: 6879 ldr r1, [r7, #4] - 8001adc: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8001ae0: f000 f927 bl 8001d32 + 8001b28: 2200 movs r2, #0 + 8001b2a: 6879 ldr r1, [r7, #4] + 8001b2c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001b30: f000 f927 bl 8001d82 uwTickPrio = TickPriority; - 8001ae4: 4a06 ldr r2, [pc, #24] ; (8001b00 ) - 8001ae6: 687b ldr r3, [r7, #4] - 8001ae8: 6013 str r3, [r2, #0] + 8001b34: 4a06 ldr r2, [pc, #24] ; (8001b50 ) + 8001b36: 687b ldr r3, [r7, #4] + 8001b38: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 8001aea: 2300 movs r3, #0 - 8001aec: e000 b.n 8001af0 + 8001b3a: 2300 movs r3, #0 + 8001b3c: e000 b.n 8001b40 return HAL_ERROR; - 8001aee: 2301 movs r3, #1 + 8001b3e: 2301 movs r3, #1 } - 8001af0: 4618 mov r0, r3 - 8001af2: 3708 adds r7, #8 - 8001af4: 46bd mov sp, r7 - 8001af6: bd80 pop {r7, pc} - 8001af8: 20000000 .word 0x20000000 - 8001afc: 20000008 .word 0x20000008 - 8001b00: 20000004 .word 0x20000004 + 8001b40: 4618 mov r0, r3 + 8001b42: 3708 adds r7, #8 + 8001b44: 46bd mov sp, r7 + 8001b46: bd80 pop {r7, pc} + 8001b48: 20000000 .word 0x20000000 + 8001b4c: 20000008 .word 0x20000008 + 8001b50: 20000004 .word 0x20000004 -08001b04 : +08001b54 : * @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) { - 8001b04: b480 push {r7} - 8001b06: af00 add r7, sp, #0 + 8001b54: b480 push {r7} + 8001b56: af00 add r7, sp, #0 uwTick += uwTickFreq; - 8001b08: 4b05 ldr r3, [pc, #20] ; (8001b20 ) - 8001b0a: 781b ldrb r3, [r3, #0] - 8001b0c: 461a mov r2, r3 - 8001b0e: 4b05 ldr r3, [pc, #20] ; (8001b24 ) - 8001b10: 681b ldr r3, [r3, #0] - 8001b12: 4413 add r3, r2 - 8001b14: 4a03 ldr r2, [pc, #12] ; (8001b24 ) - 8001b16: 6013 str r3, [r2, #0] + 8001b58: 4b05 ldr r3, [pc, #20] ; (8001b70 ) + 8001b5a: 781b ldrb r3, [r3, #0] + 8001b5c: 461a mov r2, r3 + 8001b5e: 4b05 ldr r3, [pc, #20] ; (8001b74 ) + 8001b60: 681b ldr r3, [r3, #0] + 8001b62: 4413 add r3, r2 + 8001b64: 4a03 ldr r2, [pc, #12] ; (8001b74 ) + 8001b66: 6013 str r3, [r2, #0] } - 8001b18: bf00 nop - 8001b1a: 46bd mov sp, r7 - 8001b1c: bc80 pop {r7} - 8001b1e: 4770 bx lr - 8001b20: 20000008 .word 0x20000008 - 8001b24: 20000350 .word 0x20000350 + 8001b68: bf00 nop + 8001b6a: 46bd mov sp, r7 + 8001b6c: bc80 pop {r7} + 8001b6e: 4770 bx lr + 8001b70: 20000008 .word 0x20000008 + 8001b74: 20000350 .word 0x20000350 -08001b28 : +08001b78 : * @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) { - 8001b28: b480 push {r7} - 8001b2a: af00 add r7, sp, #0 + 8001b78: b480 push {r7} + 8001b7a: af00 add r7, sp, #0 return uwTick; - 8001b2c: 4b02 ldr r3, [pc, #8] ; (8001b38 ) - 8001b2e: 681b ldr r3, [r3, #0] + 8001b7c: 4b02 ldr r3, [pc, #8] ; (8001b88 ) + 8001b7e: 681b ldr r3, [r3, #0] } - 8001b30: 4618 mov r0, r3 - 8001b32: 46bd mov sp, r7 - 8001b34: bc80 pop {r7} - 8001b36: 4770 bx lr - 8001b38: 20000350 .word 0x20000350 + 8001b80: 4618 mov r0, r3 + 8001b82: 46bd mov sp, r7 + 8001b84: bc80 pop {r7} + 8001b86: 4770 bx lr + 8001b88: 20000350 .word 0x20000350 -08001b3c : +08001b8c : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 8001b3c: b580 push {r7, lr} - 8001b3e: b084 sub sp, #16 - 8001b40: af00 add r7, sp, #0 - 8001b42: 6078 str r0, [r7, #4] + 8001b8c: b580 push {r7, lr} + 8001b8e: b084 sub sp, #16 + 8001b90: af00 add r7, sp, #0 + 8001b92: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 8001b44: f7ff fff0 bl 8001b28 - 8001b48: 60b8 str r0, [r7, #8] + 8001b94: f7ff fff0 bl 8001b78 + 8001b98: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 8001b4a: 687b ldr r3, [r7, #4] - 8001b4c: 60fb str r3, [r7, #12] + 8001b9a: 687b ldr r3, [r7, #4] + 8001b9c: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 8001b4e: 68fb ldr r3, [r7, #12] - 8001b50: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8001b54: d005 beq.n 8001b62 + 8001b9e: 68fb ldr r3, [r7, #12] + 8001ba0: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8001ba4: d005 beq.n 8001bb2 { wait += (uint32_t)(uwTickFreq); - 8001b56: 4b0a ldr r3, [pc, #40] ; (8001b80 ) - 8001b58: 781b ldrb r3, [r3, #0] - 8001b5a: 461a mov r2, r3 - 8001b5c: 68fb ldr r3, [r7, #12] - 8001b5e: 4413 add r3, r2 - 8001b60: 60fb str r3, [r7, #12] + 8001ba6: 4b0a ldr r3, [pc, #40] ; (8001bd0 ) + 8001ba8: 781b ldrb r3, [r3, #0] + 8001baa: 461a mov r2, r3 + 8001bac: 68fb ldr r3, [r7, #12] + 8001bae: 4413 add r3, r2 + 8001bb0: 60fb str r3, [r7, #12] } while ((HAL_GetTick() - tickstart) < wait) - 8001b62: bf00 nop - 8001b64: f7ff ffe0 bl 8001b28 - 8001b68: 4602 mov r2, r0 - 8001b6a: 68bb ldr r3, [r7, #8] - 8001b6c: 1ad3 subs r3, r2, r3 - 8001b6e: 68fa ldr r2, [r7, #12] - 8001b70: 429a cmp r2, r3 - 8001b72: d8f7 bhi.n 8001b64 + 8001bb2: bf00 nop + 8001bb4: f7ff ffe0 bl 8001b78 + 8001bb8: 4602 mov r2, r0 + 8001bba: 68bb ldr r3, [r7, #8] + 8001bbc: 1ad3 subs r3, r2, r3 + 8001bbe: 68fa ldr r2, [r7, #12] + 8001bc0: 429a cmp r2, r3 + 8001bc2: d8f7 bhi.n 8001bb4 { } } - 8001b74: bf00 nop - 8001b76: bf00 nop - 8001b78: 3710 adds r7, #16 - 8001b7a: 46bd mov sp, r7 - 8001b7c: bd80 pop {r7, pc} - 8001b7e: bf00 nop - 8001b80: 20000008 .word 0x20000008 - -08001b84 <__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) -{ - 8001b84: b480 push {r7} - 8001b86: b085 sub sp, #20 - 8001b88: af00 add r7, sp, #0 - 8001b8a: 6078 str r0, [r7, #4] - uint32_t reg_value; - uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001b8c: 687b ldr r3, [r7, #4] - 8001b8e: f003 0307 and.w r3, r3, #7 - 8001b92: 60fb str r3, [r7, #12] - - reg_value = SCB->AIRCR; /* read old register configuration */ - 8001b94: 4b0c ldr r3, [pc, #48] ; (8001bc8 <__NVIC_SetPriorityGrouping+0x44>) - 8001b96: 68db ldr r3, [r3, #12] - 8001b98: 60bb str r3, [r7, #8] - reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001b9a: 68ba ldr r2, [r7, #8] - 8001b9c: f64f 03ff movw r3, #63743 ; 0xf8ff - 8001ba0: 4013 ands r3, r2 - 8001ba2: 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 */ - 8001ba4: 68fb ldr r3, [r7, #12] - 8001ba6: 021a lsls r2, r3, #8 - ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001ba8: 68bb ldr r3, [r7, #8] - 8001baa: 4313 orrs r3, r2 - reg_value = (reg_value | - 8001bac: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 - 8001bb0: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8001bb4: 60bb str r3, [r7, #8] - SCB->AIRCR = reg_value; - 8001bb6: 4a04 ldr r2, [pc, #16] ; (8001bc8 <__NVIC_SetPriorityGrouping+0x44>) - 8001bb8: 68bb ldr r3, [r7, #8] - 8001bba: 60d3 str r3, [r2, #12] -} - 8001bbc: bf00 nop - 8001bbe: 3714 adds r7, #20 - 8001bc0: 46bd mov sp, r7 - 8001bc2: bc80 pop {r7} - 8001bc4: 4770 bx lr + 8001bc4: bf00 nop 8001bc6: bf00 nop - 8001bc8: e000ed00 .word 0xe000ed00 + 8001bc8: 3710 adds r7, #16 + 8001bca: 46bd mov sp, r7 + 8001bcc: bd80 pop {r7, pc} + 8001bce: bf00 nop + 8001bd0: 20000008 .word 0x20000008 -08001bcc <__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) +08001bd4 <__NVIC_SetPriorityGrouping>: { - 8001bcc: b480 push {r7} - 8001bce: af00 add r7, sp, #0 + 8001bd4: b480 push {r7} + 8001bd6: b085 sub sp, #20 + 8001bd8: af00 add r7, sp, #0 + 8001bda: 6078 str r0, [r7, #4] + uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ + 8001bdc: 687b ldr r3, [r7, #4] + 8001bde: f003 0307 and.w r3, r3, #7 + 8001be2: 60fb str r3, [r7, #12] + reg_value = SCB->AIRCR; /* read old register configuration */ + 8001be4: 4b0c ldr r3, [pc, #48] ; (8001c18 <__NVIC_SetPriorityGrouping+0x44>) + 8001be6: 68db ldr r3, [r3, #12] + 8001be8: 60bb str r3, [r7, #8] + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + 8001bea: 68ba ldr r2, [r7, #8] + 8001bec: f64f 03ff movw r3, #63743 ; 0xf8ff + 8001bf0: 4013 ands r3, r2 + 8001bf2: 60bb str r3, [r7, #8] + (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ + 8001bf4: 68fb ldr r3, [r7, #12] + 8001bf6: 021a lsls r2, r3, #8 + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + 8001bf8: 68bb ldr r3, [r7, #8] + 8001bfa: 4313 orrs r3, r2 + reg_value = (reg_value | + 8001bfc: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 + 8001c00: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8001c04: 60bb str r3, [r7, #8] + SCB->AIRCR = reg_value; + 8001c06: 4a04 ldr r2, [pc, #16] ; (8001c18 <__NVIC_SetPriorityGrouping+0x44>) + 8001c08: 68bb ldr r3, [r7, #8] + 8001c0a: 60d3 str r3, [r2, #12] +} + 8001c0c: bf00 nop + 8001c0e: 3714 adds r7, #20 + 8001c10: 46bd mov sp, r7 + 8001c12: bc80 pop {r7} + 8001c14: 4770 bx lr + 8001c16: bf00 nop + 8001c18: e000ed00 .word 0xe000ed00 + +08001c1c <__NVIC_GetPriorityGrouping>: +{ + 8001c1c: b480 push {r7} + 8001c1e: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8001bd0: 4b04 ldr r3, [pc, #16] ; (8001be4 <__NVIC_GetPriorityGrouping+0x18>) - 8001bd2: 68db ldr r3, [r3, #12] - 8001bd4: 0a1b lsrs r3, r3, #8 - 8001bd6: f003 0307 and.w r3, r3, #7 + 8001c20: 4b04 ldr r3, [pc, #16] ; (8001c34 <__NVIC_GetPriorityGrouping+0x18>) + 8001c22: 68db ldr r3, [r3, #12] + 8001c24: 0a1b lsrs r3, r3, #8 + 8001c26: f003 0307 and.w r3, r3, #7 } - 8001bda: 4618 mov r0, r3 - 8001bdc: 46bd mov sp, r7 - 8001bde: bc80 pop {r7} - 8001be0: 4770 bx lr - 8001be2: bf00 nop - 8001be4: e000ed00 .word 0xe000ed00 + 8001c2a: 4618 mov r0, r3 + 8001c2c: 46bd mov sp, r7 + 8001c2e: bc80 pop {r7} + 8001c30: 4770 bx lr + 8001c32: bf00 nop + 8001c34: e000ed00 .word 0xe000ed00 -08001be8 <__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) +08001c38 <__NVIC_EnableIRQ>: { - 8001be8: b480 push {r7} - 8001bea: b083 sub sp, #12 - 8001bec: af00 add r7, sp, #0 - 8001bee: 4603 mov r3, r0 - 8001bf0: 71fb strb r3, [r7, #7] + 8001c38: b480 push {r7} + 8001c3a: b083 sub sp, #12 + 8001c3c: af00 add r7, sp, #0 + 8001c3e: 4603 mov r3, r0 + 8001c40: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001bf2: f997 3007 ldrsb.w r3, [r7, #7] - 8001bf6: 2b00 cmp r3, #0 - 8001bf8: db0b blt.n 8001c12 <__NVIC_EnableIRQ+0x2a> - { + 8001c42: f997 3007 ldrsb.w r3, [r7, #7] + 8001c46: 2b00 cmp r3, #0 + 8001c48: db0b blt.n 8001c62 <__NVIC_EnableIRQ+0x2a> NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 8001bfa: 79fb ldrb r3, [r7, #7] - 8001bfc: f003 021f and.w r2, r3, #31 - 8001c00: 4906 ldr r1, [pc, #24] ; (8001c1c <__NVIC_EnableIRQ+0x34>) - 8001c02: f997 3007 ldrsb.w r3, [r7, #7] - 8001c06: 095b lsrs r3, r3, #5 - 8001c08: 2001 movs r0, #1 - 8001c0a: fa00 f202 lsl.w r2, r0, r2 - 8001c0e: f841 2023 str.w r2, [r1, r3, lsl #2] - } + 8001c4a: 79fb ldrb r3, [r7, #7] + 8001c4c: f003 021f and.w r2, r3, #31 + 8001c50: 4906 ldr r1, [pc, #24] ; (8001c6c <__NVIC_EnableIRQ+0x34>) + 8001c52: f997 3007 ldrsb.w r3, [r7, #7] + 8001c56: 095b lsrs r3, r3, #5 + 8001c58: 2001 movs r0, #1 + 8001c5a: fa00 f202 lsl.w r2, r0, r2 + 8001c5e: f841 2023 str.w r2, [r1, r3, lsl #2] } - 8001c12: bf00 nop - 8001c14: 370c adds r7, #12 - 8001c16: 46bd mov sp, r7 - 8001c18: bc80 pop {r7} - 8001c1a: 4770 bx lr - 8001c1c: e000e100 .word 0xe000e100 - -08001c20 <__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) -{ - 8001c20: b480 push {r7} - 8001c22: b083 sub sp, #12 - 8001c24: af00 add r7, sp, #0 - 8001c26: 4603 mov r3, r0 - 8001c28: 6039 str r1, [r7, #0] - 8001c2a: 71fb strb r3, [r7, #7] - if ((int32_t)(IRQn) >= 0) - 8001c2c: f997 3007 ldrsb.w r3, [r7, #7] - 8001c30: 2b00 cmp r3, #0 - 8001c32: db0a blt.n 8001c4a <__NVIC_SetPriority+0x2a> - { - NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001c34: 683b ldr r3, [r7, #0] - 8001c36: b2da uxtb r2, r3 - 8001c38: 490c ldr r1, [pc, #48] ; (8001c6c <__NVIC_SetPriority+0x4c>) - 8001c3a: f997 3007 ldrsb.w r3, [r7, #7] - 8001c3e: 0112 lsls r2, r2, #4 - 8001c40: b2d2 uxtb r2, r2 - 8001c42: 440b add r3, r1 - 8001c44: 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); - } -} - 8001c48: e00a b.n 8001c60 <__NVIC_SetPriority+0x40> - SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001c4a: 683b ldr r3, [r7, #0] - 8001c4c: b2da uxtb r2, r3 - 8001c4e: 4908 ldr r1, [pc, #32] ; (8001c70 <__NVIC_SetPriority+0x50>) - 8001c50: 79fb ldrb r3, [r7, #7] - 8001c52: f003 030f and.w r3, r3, #15 - 8001c56: 3b04 subs r3, #4 - 8001c58: 0112 lsls r2, r2, #4 - 8001c5a: b2d2 uxtb r2, r2 - 8001c5c: 440b add r3, r1 - 8001c5e: 761a strb r2, [r3, #24] -} - 8001c60: bf00 nop - 8001c62: 370c adds r7, #12 - 8001c64: 46bd mov sp, r7 - 8001c66: bc80 pop {r7} - 8001c68: 4770 bx lr - 8001c6a: bf00 nop + 8001c62: bf00 nop + 8001c64: 370c adds r7, #12 + 8001c66: 46bd mov sp, r7 + 8001c68: bc80 pop {r7} + 8001c6a: 4770 bx lr 8001c6c: e000e100 .word 0xe000e100 - 8001c70: e000ed00 .word 0xe000ed00 -08001c74 : - \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) +08001c70 <__NVIC_SetPriority>: { - 8001c74: b480 push {r7} - 8001c76: b089 sub sp, #36 ; 0x24 - 8001c78: af00 add r7, sp, #0 - 8001c7a: 60f8 str r0, [r7, #12] - 8001c7c: 60b9 str r1, [r7, #8] - 8001c7e: 607a str r2, [r7, #4] + 8001c70: b480 push {r7} + 8001c72: b083 sub sp, #12 + 8001c74: af00 add r7, sp, #0 + 8001c76: 4603 mov r3, r0 + 8001c78: 6039 str r1, [r7, #0] + 8001c7a: 71fb strb r3, [r7, #7] + if ((int32_t)(IRQn) >= 0) + 8001c7c: f997 3007 ldrsb.w r3, [r7, #7] + 8001c80: 2b00 cmp r3, #0 + 8001c82: db0a blt.n 8001c9a <__NVIC_SetPriority+0x2a> + NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + 8001c84: 683b ldr r3, [r7, #0] + 8001c86: b2da uxtb r2, r3 + 8001c88: 490c ldr r1, [pc, #48] ; (8001cbc <__NVIC_SetPriority+0x4c>) + 8001c8a: f997 3007 ldrsb.w r3, [r7, #7] + 8001c8e: 0112 lsls r2, r2, #4 + 8001c90: b2d2 uxtb r2, r2 + 8001c92: 440b add r3, r1 + 8001c94: f883 2300 strb.w r2, [r3, #768] ; 0x300 +} + 8001c98: e00a b.n 8001cb0 <__NVIC_SetPriority+0x40> + SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); + 8001c9a: 683b ldr r3, [r7, #0] + 8001c9c: b2da uxtb r2, r3 + 8001c9e: 4908 ldr r1, [pc, #32] ; (8001cc0 <__NVIC_SetPriority+0x50>) + 8001ca0: 79fb ldrb r3, [r7, #7] + 8001ca2: f003 030f and.w r3, r3, #15 + 8001ca6: 3b04 subs r3, #4 + 8001ca8: 0112 lsls r2, r2, #4 + 8001caa: b2d2 uxtb r2, r2 + 8001cac: 440b add r3, r1 + 8001cae: 761a strb r2, [r3, #24] +} + 8001cb0: bf00 nop + 8001cb2: 370c adds r7, #12 + 8001cb4: 46bd mov sp, r7 + 8001cb6: bc80 pop {r7} + 8001cb8: 4770 bx lr + 8001cba: bf00 nop + 8001cbc: e000e100 .word 0xe000e100 + 8001cc0: e000ed00 .word 0xe000ed00 + +08001cc4 : +{ + 8001cc4: b480 push {r7} + 8001cc6: b089 sub sp, #36 ; 0x24 + 8001cc8: af00 add r7, sp, #0 + 8001cca: 60f8 str r0, [r7, #12] + 8001ccc: 60b9 str r1, [r7, #8] + 8001cce: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001c80: 68fb ldr r3, [r7, #12] - 8001c82: f003 0307 and.w r3, r3, #7 - 8001c86: 61fb str r3, [r7, #28] - uint32_t PreemptPriorityBits; - uint32_t SubPriorityBits; - + 8001cd0: 68fb ldr r3, [r7, #12] + 8001cd2: f003 0307 and.w r3, r3, #7 + 8001cd6: 61fb str r3, [r7, #28] PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 8001c88: 69fb ldr r3, [r7, #28] - 8001c8a: f1c3 0307 rsb r3, r3, #7 - 8001c8e: 2b04 cmp r3, #4 - 8001c90: bf28 it cs - 8001c92: 2304 movcs r3, #4 - 8001c94: 61bb str r3, [r7, #24] + 8001cd8: 69fb ldr r3, [r7, #28] + 8001cda: f1c3 0307 rsb r3, r3, #7 + 8001cde: 2b04 cmp r3, #4 + 8001ce0: bf28 it cs + 8001ce2: 2304 movcs r3, #4 + 8001ce4: 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)); - 8001c96: 69fb ldr r3, [r7, #28] - 8001c98: 3304 adds r3, #4 - 8001c9a: 2b06 cmp r3, #6 - 8001c9c: d902 bls.n 8001ca4 - 8001c9e: 69fb ldr r3, [r7, #28] - 8001ca0: 3b03 subs r3, #3 - 8001ca2: e000 b.n 8001ca6 - 8001ca4: 2300 movs r3, #0 - 8001ca6: 617b str r3, [r7, #20] - - return ( + 8001ce6: 69fb ldr r3, [r7, #28] + 8001ce8: 3304 adds r3, #4 + 8001cea: 2b06 cmp r3, #6 + 8001cec: d902 bls.n 8001cf4 + 8001cee: 69fb ldr r3, [r7, #28] + 8001cf0: 3b03 subs r3, #3 + 8001cf2: e000 b.n 8001cf6 + 8001cf4: 2300 movs r3, #0 + 8001cf6: 617b str r3, [r7, #20] ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001ca8: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8001cac: 69bb ldr r3, [r7, #24] - 8001cae: fa02 f303 lsl.w r3, r2, r3 - 8001cb2: 43da mvns r2, r3 - 8001cb4: 68bb ldr r3, [r7, #8] - 8001cb6: 401a ands r2, r3 - 8001cb8: 697b ldr r3, [r7, #20] - 8001cba: 409a lsls r2, r3 + 8001cf8: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8001cfc: 69bb ldr r3, [r7, #24] + 8001cfe: fa02 f303 lsl.w r3, r2, r3 + 8001d02: 43da mvns r2, r3 + 8001d04: 68bb ldr r3, [r7, #8] + 8001d06: 401a ands r2, r3 + 8001d08: 697b ldr r3, [r7, #20] + 8001d0a: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001cbc: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 8001cc0: 697b ldr r3, [r7, #20] - 8001cc2: fa01 f303 lsl.w r3, r1, r3 - 8001cc6: 43d9 mvns r1, r3 - 8001cc8: 687b ldr r3, [r7, #4] - 8001cca: 400b ands r3, r1 + 8001d0c: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 8001d10: 697b ldr r3, [r7, #20] + 8001d12: fa01 f303 lsl.w r3, r1, r3 + 8001d16: 43d9 mvns r1, r3 + 8001d18: 687b ldr r3, [r7, #4] + 8001d1a: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001ccc: 4313 orrs r3, r2 - ); + 8001d1c: 4313 orrs r3, r2 } - 8001cce: 4618 mov r0, r3 - 8001cd0: 3724 adds r7, #36 ; 0x24 - 8001cd2: 46bd mov sp, r7 - 8001cd4: bc80 pop {r7} - 8001cd6: 4770 bx lr + 8001d1e: 4618 mov r0, r3 + 8001d20: 3724 adds r7, #36 ; 0x24 + 8001d22: 46bd mov sp, r7 + 8001d24: bc80 pop {r7} + 8001d26: 4770 bx lr -08001cd8 : - \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) +08001d28 : { - 8001cd8: b580 push {r7, lr} - 8001cda: b082 sub sp, #8 - 8001cdc: af00 add r7, sp, #0 - 8001cde: 6078 str r0, [r7, #4] + 8001d28: b580 push {r7, lr} + 8001d2a: b082 sub sp, #8 + 8001d2c: af00 add r7, sp, #0 + 8001d2e: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8001ce0: 687b ldr r3, [r7, #4] - 8001ce2: 3b01 subs r3, #1 - 8001ce4: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 - 8001ce8: d301 bcc.n 8001cee - { + 8001d30: 687b ldr r3, [r7, #4] + 8001d32: 3b01 subs r3, #1 + 8001d34: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 + 8001d38: d301 bcc.n 8001d3e return (1UL); /* Reload value impossible */ - 8001cea: 2301 movs r3, #1 - 8001cec: e00f b.n 8001d0e - } - + 8001d3a: 2301 movs r3, #1 + 8001d3c: e00f b.n 8001d5e SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8001cee: 4a0a ldr r2, [pc, #40] ; (8001d18 ) - 8001cf0: 687b ldr r3, [r7, #4] - 8001cf2: 3b01 subs r3, #1 - 8001cf4: 6053 str r3, [r2, #4] + 8001d3e: 4a0a ldr r2, [pc, #40] ; (8001d68 ) + 8001d40: 687b ldr r3, [r7, #4] + 8001d42: 3b01 subs r3, #1 + 8001d44: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 8001cf6: 210f movs r1, #15 - 8001cf8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8001cfc: f7ff ff90 bl 8001c20 <__NVIC_SetPriority> + 8001d46: 210f movs r1, #15 + 8001d48: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001d4c: f7ff ff90 bl 8001c70 <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8001d00: 4b05 ldr r3, [pc, #20] ; (8001d18 ) - 8001d02: 2200 movs r2, #0 - 8001d04: 609a str r2, [r3, #8] + 8001d50: 4b05 ldr r3, [pc, #20] ; (8001d68 ) + 8001d52: 2200 movs r2, #0 + 8001d54: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8001d06: 4b04 ldr r3, [pc, #16] ; (8001d18 ) - 8001d08: 2207 movs r2, #7 - 8001d0a: 601a str r2, [r3, #0] - SysTick_CTRL_TICKINT_Msk | - SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ + 8001d56: 4b04 ldr r3, [pc, #16] ; (8001d68 ) + 8001d58: 2207 movs r2, #7 + 8001d5a: 601a str r2, [r3, #0] return (0UL); /* Function successful */ - 8001d0c: 2300 movs r3, #0 + 8001d5c: 2300 movs r3, #0 } - 8001d0e: 4618 mov r0, r3 - 8001d10: 3708 adds r7, #8 - 8001d12: 46bd mov sp, r7 - 8001d14: bd80 pop {r7, pc} - 8001d16: bf00 nop - 8001d18: e000e010 .word 0xe000e010 + 8001d5e: 4618 mov r0, r3 + 8001d60: 3708 adds r7, #8 + 8001d62: 46bd mov sp, r7 + 8001d64: bd80 pop {r7, pc} + 8001d66: bf00 nop + 8001d68: e000e010 .word 0xe000e010 -08001d1c : +08001d6c : * @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) { - 8001d1c: b580 push {r7, lr} - 8001d1e: b082 sub sp, #8 - 8001d20: af00 add r7, sp, #0 - 8001d22: 6078 str r0, [r7, #4] + 8001d6c: b580 push {r7, lr} + 8001d6e: b082 sub sp, #8 + 8001d70: af00 add r7, sp, #0 + 8001d72: 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); - 8001d24: 6878 ldr r0, [r7, #4] - 8001d26: f7ff ff2d bl 8001b84 <__NVIC_SetPriorityGrouping> + 8001d74: 6878 ldr r0, [r7, #4] + 8001d76: f7ff ff2d bl 8001bd4 <__NVIC_SetPriorityGrouping> } - 8001d2a: bf00 nop - 8001d2c: 3708 adds r7, #8 - 8001d2e: 46bd mov sp, r7 - 8001d30: bd80 pop {r7, pc} + 8001d7a: bf00 nop + 8001d7c: 3708 adds r7, #8 + 8001d7e: 46bd mov sp, r7 + 8001d80: bd80 pop {r7, pc} -08001d32 : +08001d82 : * 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) { - 8001d32: b580 push {r7, lr} - 8001d34: b086 sub sp, #24 - 8001d36: af00 add r7, sp, #0 - 8001d38: 4603 mov r3, r0 - 8001d3a: 60b9 str r1, [r7, #8] - 8001d3c: 607a str r2, [r7, #4] - 8001d3e: 73fb strb r3, [r7, #15] + 8001d82: b580 push {r7, lr} + 8001d84: b086 sub sp, #24 + 8001d86: af00 add r7, sp, #0 + 8001d88: 4603 mov r3, r0 + 8001d8a: 60b9 str r1, [r7, #8] + 8001d8c: 607a str r2, [r7, #4] + 8001d8e: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8001d40: 2300 movs r3, #0 - 8001d42: 617b str r3, [r7, #20] + 8001d90: 2300 movs r3, #0 + 8001d92: 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(); - 8001d44: f7ff ff42 bl 8001bcc <__NVIC_GetPriorityGrouping> - 8001d48: 6178 str r0, [r7, #20] + 8001d94: f7ff ff42 bl 8001c1c <__NVIC_GetPriorityGrouping> + 8001d98: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8001d4a: 687a ldr r2, [r7, #4] - 8001d4c: 68b9 ldr r1, [r7, #8] - 8001d4e: 6978 ldr r0, [r7, #20] - 8001d50: f7ff ff90 bl 8001c74 - 8001d54: 4602 mov r2, r0 - 8001d56: f997 300f ldrsb.w r3, [r7, #15] - 8001d5a: 4611 mov r1, r2 - 8001d5c: 4618 mov r0, r3 - 8001d5e: f7ff ff5f bl 8001c20 <__NVIC_SetPriority> + 8001d9a: 687a ldr r2, [r7, #4] + 8001d9c: 68b9 ldr r1, [r7, #8] + 8001d9e: 6978 ldr r0, [r7, #20] + 8001da0: f7ff ff90 bl 8001cc4 + 8001da4: 4602 mov r2, r0 + 8001da6: f997 300f ldrsb.w r3, [r7, #15] + 8001daa: 4611 mov r1, r2 + 8001dac: 4618 mov r0, r3 + 8001dae: f7ff ff5f bl 8001c70 <__NVIC_SetPriority> } - 8001d62: bf00 nop - 8001d64: 3718 adds r7, #24 - 8001d66: 46bd mov sp, r7 - 8001d68: bd80 pop {r7, pc} + 8001db2: bf00 nop + 8001db4: 3718 adds r7, #24 + 8001db6: 46bd mov sp, r7 + 8001db8: bd80 pop {r7, pc} -08001d6a : +08001dba : * 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) { - 8001d6a: b580 push {r7, lr} - 8001d6c: b082 sub sp, #8 - 8001d6e: af00 add r7, sp, #0 - 8001d70: 4603 mov r3, r0 - 8001d72: 71fb strb r3, [r7, #7] + 8001dba: b580 push {r7, lr} + 8001dbc: b082 sub sp, #8 + 8001dbe: af00 add r7, sp, #0 + 8001dc0: 4603 mov r3, r0 + 8001dc2: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 8001d74: f997 3007 ldrsb.w r3, [r7, #7] - 8001d78: 4618 mov r0, r3 - 8001d7a: f7ff ff35 bl 8001be8 <__NVIC_EnableIRQ> + 8001dc4: f997 3007 ldrsb.w r3, [r7, #7] + 8001dc8: 4618 mov r0, r3 + 8001dca: f7ff ff35 bl 8001c38 <__NVIC_EnableIRQ> } - 8001d7e: bf00 nop - 8001d80: 3708 adds r7, #8 - 8001d82: 46bd mov sp, r7 - 8001d84: bd80 pop {r7, pc} + 8001dce: bf00 nop + 8001dd0: 3708 adds r7, #8 + 8001dd2: 46bd mov sp, r7 + 8001dd4: bd80 pop {r7, pc} -08001d86 : +08001dd6 : * @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) { - 8001d86: b580 push {r7, lr} - 8001d88: b082 sub sp, #8 - 8001d8a: af00 add r7, sp, #0 - 8001d8c: 6078 str r0, [r7, #4] + 8001dd6: b580 push {r7, lr} + 8001dd8: b082 sub sp, #8 + 8001dda: af00 add r7, sp, #0 + 8001ddc: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 8001d8e: 6878 ldr r0, [r7, #4] - 8001d90: f7ff ffa2 bl 8001cd8 - 8001d94: 4603 mov r3, r0 + 8001dde: 6878 ldr r0, [r7, #4] + 8001de0: f7ff ffa2 bl 8001d28 + 8001de4: 4603 mov r3, r0 } - 8001d96: 4618 mov r0, r3 - 8001d98: 3708 adds r7, #8 - 8001d9a: 46bd mov sp, r7 - 8001d9c: bd80 pop {r7, pc} + 8001de6: 4618 mov r0, r3 + 8001de8: 3708 adds r7, #8 + 8001dea: 46bd mov sp, r7 + 8001dec: bd80 pop {r7, pc} ... -08001da0 : +08001df0 : * @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) { - 8001da0: b480 push {r7} - 8001da2: b08b sub sp, #44 ; 0x2c - 8001da4: af00 add r7, sp, #0 - 8001da6: 6078 str r0, [r7, #4] - 8001da8: 6039 str r1, [r7, #0] + 8001df0: b480 push {r7} + 8001df2: b08b sub sp, #44 ; 0x2c + 8001df4: af00 add r7, sp, #0 + 8001df6: 6078 str r0, [r7, #4] + 8001df8: 6039 str r1, [r7, #0] uint32_t position = 0x00u; - 8001daa: 2300 movs r3, #0 - 8001dac: 627b str r3, [r7, #36] ; 0x24 + 8001dfa: 2300 movs r3, #0 + 8001dfc: 627b str r3, [r7, #36] ; 0x24 uint32_t ioposition; uint32_t iocurrent; uint32_t temp; uint32_t config = 0x00u; - 8001dae: 2300 movs r3, #0 - 8001db0: 623b str r3, [r7, #32] + 8001dfe: 2300 movs r3, #0 + 8001e00: 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) - 8001db2: e179 b.n 80020a8 + 8001e02: e179 b.n 80020f8 { /* Get the IO position */ ioposition = (0x01uL << position); - 8001db4: 2201 movs r2, #1 - 8001db6: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001db8: fa02 f303 lsl.w r3, r2, r3 - 8001dbc: 61fb str r3, [r7, #28] + 8001e04: 2201 movs r2, #1 + 8001e06: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001e08: fa02 f303 lsl.w r3, r2, r3 + 8001e0c: 61fb str r3, [r7, #28] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8001dbe: 683b ldr r3, [r7, #0] - 8001dc0: 681b ldr r3, [r3, #0] - 8001dc2: 69fa ldr r2, [r7, #28] - 8001dc4: 4013 ands r3, r2 - 8001dc6: 61bb str r3, [r7, #24] + 8001e0e: 683b ldr r3, [r7, #0] + 8001e10: 681b ldr r3, [r3, #0] + 8001e12: 69fa ldr r2, [r7, #28] + 8001e14: 4013 ands r3, r2 + 8001e16: 61bb str r3, [r7, #24] if (iocurrent == ioposition) - 8001dc8: 69ba ldr r2, [r7, #24] - 8001dca: 69fb ldr r3, [r7, #28] - 8001dcc: 429a cmp r2, r3 - 8001dce: f040 8168 bne.w 80020a2 + 8001e18: 69ba ldr r2, [r7, #24] + 8001e1a: 69fb ldr r3, [r7, #28] + 8001e1c: 429a cmp r2, r3 + 8001e1e: f040 8168 bne.w 80020f2 { /* 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) - 8001dd2: 683b ldr r3, [r7, #0] - 8001dd4: 685b ldr r3, [r3, #4] - 8001dd6: 4aa0 ldr r2, [pc, #640] ; (8002058 ) - 8001dd8: 4293 cmp r3, r2 - 8001dda: d05e beq.n 8001e9a - 8001ddc: 4a9e ldr r2, [pc, #632] ; (8002058 ) - 8001dde: 4293 cmp r3, r2 - 8001de0: d875 bhi.n 8001ece - 8001de2: 4a9e ldr r2, [pc, #632] ; (800205c ) - 8001de4: 4293 cmp r3, r2 - 8001de6: d058 beq.n 8001e9a - 8001de8: 4a9c ldr r2, [pc, #624] ; (800205c ) - 8001dea: 4293 cmp r3, r2 - 8001dec: d86f bhi.n 8001ece - 8001dee: 4a9c ldr r2, [pc, #624] ; (8002060 ) - 8001df0: 4293 cmp r3, r2 - 8001df2: d052 beq.n 8001e9a - 8001df4: 4a9a ldr r2, [pc, #616] ; (8002060 ) - 8001df6: 4293 cmp r3, r2 - 8001df8: d869 bhi.n 8001ece - 8001dfa: 4a9a ldr r2, [pc, #616] ; (8002064 ) - 8001dfc: 4293 cmp r3, r2 - 8001dfe: d04c beq.n 8001e9a - 8001e00: 4a98 ldr r2, [pc, #608] ; (8002064 ) - 8001e02: 4293 cmp r3, r2 - 8001e04: d863 bhi.n 8001ece - 8001e06: 4a98 ldr r2, [pc, #608] ; (8002068 ) - 8001e08: 4293 cmp r3, r2 - 8001e0a: d046 beq.n 8001e9a - 8001e0c: 4a96 ldr r2, [pc, #600] ; (8002068 ) - 8001e0e: 4293 cmp r3, r2 - 8001e10: d85d bhi.n 8001ece - 8001e12: 2b12 cmp r3, #18 - 8001e14: d82a bhi.n 8001e6c - 8001e16: 2b12 cmp r3, #18 - 8001e18: d859 bhi.n 8001ece - 8001e1a: a201 add r2, pc, #4 ; (adr r2, 8001e20 ) - 8001e1c: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8001e20: 08001e9b .word 0x08001e9b - 8001e24: 08001e75 .word 0x08001e75 - 8001e28: 08001e87 .word 0x08001e87 - 8001e2c: 08001ec9 .word 0x08001ec9 - 8001e30: 08001ecf .word 0x08001ecf - 8001e34: 08001ecf .word 0x08001ecf - 8001e38: 08001ecf .word 0x08001ecf - 8001e3c: 08001ecf .word 0x08001ecf - 8001e40: 08001ecf .word 0x08001ecf - 8001e44: 08001ecf .word 0x08001ecf - 8001e48: 08001ecf .word 0x08001ecf - 8001e4c: 08001ecf .word 0x08001ecf - 8001e50: 08001ecf .word 0x08001ecf - 8001e54: 08001ecf .word 0x08001ecf - 8001e58: 08001ecf .word 0x08001ecf - 8001e5c: 08001ecf .word 0x08001ecf - 8001e60: 08001ecf .word 0x08001ecf - 8001e64: 08001e7d .word 0x08001e7d - 8001e68: 08001e91 .word 0x08001e91 - 8001e6c: 4a7f ldr r2, [pc, #508] ; (800206c ) - 8001e6e: 4293 cmp r3, r2 - 8001e70: d013 beq.n 8001e9a + 8001e22: 683b ldr r3, [r7, #0] + 8001e24: 685b ldr r3, [r3, #4] + 8001e26: 4aa0 ldr r2, [pc, #640] ; (80020a8 ) + 8001e28: 4293 cmp r3, r2 + 8001e2a: d05e beq.n 8001eea + 8001e2c: 4a9e ldr r2, [pc, #632] ; (80020a8 ) + 8001e2e: 4293 cmp r3, r2 + 8001e30: d875 bhi.n 8001f1e + 8001e32: 4a9e ldr r2, [pc, #632] ; (80020ac ) + 8001e34: 4293 cmp r3, r2 + 8001e36: d058 beq.n 8001eea + 8001e38: 4a9c ldr r2, [pc, #624] ; (80020ac ) + 8001e3a: 4293 cmp r3, r2 + 8001e3c: d86f bhi.n 8001f1e + 8001e3e: 4a9c ldr r2, [pc, #624] ; (80020b0 ) + 8001e40: 4293 cmp r3, r2 + 8001e42: d052 beq.n 8001eea + 8001e44: 4a9a ldr r2, [pc, #616] ; (80020b0 ) + 8001e46: 4293 cmp r3, r2 + 8001e48: d869 bhi.n 8001f1e + 8001e4a: 4a9a ldr r2, [pc, #616] ; (80020b4 ) + 8001e4c: 4293 cmp r3, r2 + 8001e4e: d04c beq.n 8001eea + 8001e50: 4a98 ldr r2, [pc, #608] ; (80020b4 ) + 8001e52: 4293 cmp r3, r2 + 8001e54: d863 bhi.n 8001f1e + 8001e56: 4a98 ldr r2, [pc, #608] ; (80020b8 ) + 8001e58: 4293 cmp r3, r2 + 8001e5a: d046 beq.n 8001eea + 8001e5c: 4a96 ldr r2, [pc, #600] ; (80020b8 ) + 8001e5e: 4293 cmp r3, r2 + 8001e60: d85d bhi.n 8001f1e + 8001e62: 2b12 cmp r3, #18 + 8001e64: d82a bhi.n 8001ebc + 8001e66: 2b12 cmp r3, #18 + 8001e68: d859 bhi.n 8001f1e + 8001e6a: a201 add r2, pc, #4 ; (adr r2, 8001e70 ) + 8001e6c: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8001e70: 08001eeb .word 0x08001eeb + 8001e74: 08001ec5 .word 0x08001ec5 + 8001e78: 08001ed7 .word 0x08001ed7 + 8001e7c: 08001f19 .word 0x08001f19 + 8001e80: 08001f1f .word 0x08001f1f + 8001e84: 08001f1f .word 0x08001f1f + 8001e88: 08001f1f .word 0x08001f1f + 8001e8c: 08001f1f .word 0x08001f1f + 8001e90: 08001f1f .word 0x08001f1f + 8001e94: 08001f1f .word 0x08001f1f + 8001e98: 08001f1f .word 0x08001f1f + 8001e9c: 08001f1f .word 0x08001f1f + 8001ea0: 08001f1f .word 0x08001f1f + 8001ea4: 08001f1f .word 0x08001f1f + 8001ea8: 08001f1f .word 0x08001f1f + 8001eac: 08001f1f .word 0x08001f1f + 8001eb0: 08001f1f .word 0x08001f1f + 8001eb4: 08001ecd .word 0x08001ecd + 8001eb8: 08001ee1 .word 0x08001ee1 + 8001ebc: 4a7f ldr r2, [pc, #508] ; (80020bc ) + 8001ebe: 4293 cmp r3, r2 + 8001ec0: d013 beq.n 8001eea config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; break; /* Parameters are checked with assert_param */ default: break; - 8001e72: e02c b.n 8001ece + 8001ec2: e02c b.n 8001f1e config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_PP; - 8001e74: 683b ldr r3, [r7, #0] - 8001e76: 68db ldr r3, [r3, #12] - 8001e78: 623b str r3, [r7, #32] + 8001ec4: 683b ldr r3, [r7, #0] + 8001ec6: 68db ldr r3, [r3, #12] + 8001ec8: 623b str r3, [r7, #32] break; - 8001e7a: e029 b.n 8001ed0 + 8001eca: e029 b.n 8001f20 config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_OD; - 8001e7c: 683b ldr r3, [r7, #0] - 8001e7e: 68db ldr r3, [r3, #12] - 8001e80: 3304 adds r3, #4 - 8001e82: 623b str r3, [r7, #32] + 8001ecc: 683b ldr r3, [r7, #0] + 8001ece: 68db ldr r3, [r3, #12] + 8001ed0: 3304 adds r3, #4 + 8001ed2: 623b str r3, [r7, #32] break; - 8001e84: e024 b.n 8001ed0 + 8001ed4: e024 b.n 8001f20 config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_PP; - 8001e86: 683b ldr r3, [r7, #0] - 8001e88: 68db ldr r3, [r3, #12] - 8001e8a: 3308 adds r3, #8 - 8001e8c: 623b str r3, [r7, #32] + 8001ed6: 683b ldr r3, [r7, #0] + 8001ed8: 68db ldr r3, [r3, #12] + 8001eda: 3308 adds r3, #8 + 8001edc: 623b str r3, [r7, #32] break; - 8001e8e: e01f b.n 8001ed0 + 8001ede: e01f b.n 8001f20 config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_OD; - 8001e90: 683b ldr r3, [r7, #0] - 8001e92: 68db ldr r3, [r3, #12] - 8001e94: 330c adds r3, #12 - 8001e96: 623b str r3, [r7, #32] + 8001ee0: 683b ldr r3, [r7, #0] + 8001ee2: 68db ldr r3, [r3, #12] + 8001ee4: 330c adds r3, #12 + 8001ee6: 623b str r3, [r7, #32] break; - 8001e98: e01a b.n 8001ed0 + 8001ee8: e01a b.n 8001f20 if (GPIO_Init->Pull == GPIO_NOPULL) - 8001e9a: 683b ldr r3, [r7, #0] - 8001e9c: 689b ldr r3, [r3, #8] - 8001e9e: 2b00 cmp r3, #0 - 8001ea0: d102 bne.n 8001ea8 + 8001eea: 683b ldr r3, [r7, #0] + 8001eec: 689b ldr r3, [r3, #8] + 8001eee: 2b00 cmp r3, #0 + 8001ef0: d102 bne.n 8001ef8 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_FLOATING; - 8001ea2: 2304 movs r3, #4 - 8001ea4: 623b str r3, [r7, #32] + 8001ef2: 2304 movs r3, #4 + 8001ef4: 623b str r3, [r7, #32] break; - 8001ea6: e013 b.n 8001ed0 + 8001ef6: e013 b.n 8001f20 else if (GPIO_Init->Pull == GPIO_PULLUP) - 8001ea8: 683b ldr r3, [r7, #0] - 8001eaa: 689b ldr r3, [r3, #8] - 8001eac: 2b01 cmp r3, #1 - 8001eae: d105 bne.n 8001ebc + 8001ef8: 683b ldr r3, [r7, #0] + 8001efa: 689b ldr r3, [r3, #8] + 8001efc: 2b01 cmp r3, #1 + 8001efe: d105 bne.n 8001f0c config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001eb0: 2308 movs r3, #8 - 8001eb2: 623b str r3, [r7, #32] + 8001f00: 2308 movs r3, #8 + 8001f02: 623b str r3, [r7, #32] GPIOx->BSRR = ioposition; - 8001eb4: 687b ldr r3, [r7, #4] - 8001eb6: 69fa ldr r2, [r7, #28] - 8001eb8: 611a str r2, [r3, #16] + 8001f04: 687b ldr r3, [r7, #4] + 8001f06: 69fa ldr r2, [r7, #28] + 8001f08: 611a str r2, [r3, #16] break; - 8001eba: e009 b.n 8001ed0 + 8001f0a: e009 b.n 8001f20 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001ebc: 2308 movs r3, #8 - 8001ebe: 623b str r3, [r7, #32] + 8001f0c: 2308 movs r3, #8 + 8001f0e: 623b str r3, [r7, #32] GPIOx->BRR = ioposition; - 8001ec0: 687b ldr r3, [r7, #4] - 8001ec2: 69fa ldr r2, [r7, #28] - 8001ec4: 615a str r2, [r3, #20] + 8001f10: 687b ldr r3, [r7, #4] + 8001f12: 69fa ldr r2, [r7, #28] + 8001f14: 615a str r2, [r3, #20] break; - 8001ec6: e003 b.n 8001ed0 + 8001f16: e003 b.n 8001f20 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; - 8001ec8: 2300 movs r3, #0 - 8001eca: 623b str r3, [r7, #32] + 8001f18: 2300 movs r3, #0 + 8001f1a: 623b str r3, [r7, #32] break; - 8001ecc: e000 b.n 8001ed0 + 8001f1c: e000 b.n 8001f20 break; - 8001ece: bf00 nop + 8001f1e: 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; - 8001ed0: 69bb ldr r3, [r7, #24] - 8001ed2: 2bff cmp r3, #255 ; 0xff - 8001ed4: d801 bhi.n 8001eda - 8001ed6: 687b ldr r3, [r7, #4] - 8001ed8: e001 b.n 8001ede - 8001eda: 687b ldr r3, [r7, #4] - 8001edc: 3304 adds r3, #4 - 8001ede: 617b str r3, [r7, #20] + 8001f20: 69bb ldr r3, [r7, #24] + 8001f22: 2bff cmp r3, #255 ; 0xff + 8001f24: d801 bhi.n 8001f2a + 8001f26: 687b ldr r3, [r7, #4] + 8001f28: e001 b.n 8001f2e + 8001f2a: 687b ldr r3, [r7, #4] + 8001f2c: 3304 adds r3, #4 + 8001f2e: 617b str r3, [r7, #20] registeroffset = (iocurrent < GPIO_PIN_8) ? (position << 2u) : ((position - 8u) << 2u); - 8001ee0: 69bb ldr r3, [r7, #24] - 8001ee2: 2bff cmp r3, #255 ; 0xff - 8001ee4: d802 bhi.n 8001eec - 8001ee6: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001ee8: 009b lsls r3, r3, #2 - 8001eea: e002 b.n 8001ef2 - 8001eec: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001eee: 3b08 subs r3, #8 - 8001ef0: 009b lsls r3, r3, #2 - 8001ef2: 613b str r3, [r7, #16] + 8001f30: 69bb ldr r3, [r7, #24] + 8001f32: 2bff cmp r3, #255 ; 0xff + 8001f34: d802 bhi.n 8001f3c + 8001f36: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001f38: 009b lsls r3, r3, #2 + 8001f3a: e002 b.n 8001f42 + 8001f3c: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001f3e: 3b08 subs r3, #8 + 8001f40: 009b lsls r3, r3, #2 + 8001f42: 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)); - 8001ef4: 697b ldr r3, [r7, #20] - 8001ef6: 681a ldr r2, [r3, #0] - 8001ef8: 210f movs r1, #15 - 8001efa: 693b ldr r3, [r7, #16] - 8001efc: fa01 f303 lsl.w r3, r1, r3 - 8001f00: 43db mvns r3, r3 - 8001f02: 401a ands r2, r3 - 8001f04: 6a39 ldr r1, [r7, #32] - 8001f06: 693b ldr r3, [r7, #16] - 8001f08: fa01 f303 lsl.w r3, r1, r3 - 8001f0c: 431a orrs r2, r3 - 8001f0e: 697b ldr r3, [r7, #20] - 8001f10: 601a str r2, [r3, #0] + 8001f44: 697b ldr r3, [r7, #20] + 8001f46: 681a ldr r2, [r3, #0] + 8001f48: 210f movs r1, #15 + 8001f4a: 693b ldr r3, [r7, #16] + 8001f4c: fa01 f303 lsl.w r3, r1, r3 + 8001f50: 43db mvns r3, r3 + 8001f52: 401a ands r2, r3 + 8001f54: 6a39 ldr r1, [r7, #32] + 8001f56: 693b ldr r3, [r7, #16] + 8001f58: fa01 f303 lsl.w r3, r1, r3 + 8001f5c: 431a orrs r2, r3 + 8001f5e: 697b ldr r3, [r7, #20] + 8001f60: 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) - 8001f12: 683b ldr r3, [r7, #0] - 8001f14: 685b ldr r3, [r3, #4] - 8001f16: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8001f1a: 2b00 cmp r3, #0 - 8001f1c: f000 80c1 beq.w 80020a2 + 8001f62: 683b ldr r3, [r7, #0] + 8001f64: 685b ldr r3, [r3, #4] + 8001f66: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8001f6a: 2b00 cmp r3, #0 + 8001f6c: f000 80c1 beq.w 80020f2 { /* Enable AFIO Clock */ __HAL_RCC_AFIO_CLK_ENABLE(); - 8001f20: 4b53 ldr r3, [pc, #332] ; (8002070 ) - 8001f22: 699b ldr r3, [r3, #24] - 8001f24: 4a52 ldr r2, [pc, #328] ; (8002070 ) - 8001f26: f043 0301 orr.w r3, r3, #1 - 8001f2a: 6193 str r3, [r2, #24] - 8001f2c: 4b50 ldr r3, [pc, #320] ; (8002070 ) - 8001f2e: 699b ldr r3, [r3, #24] - 8001f30: f003 0301 and.w r3, r3, #1 - 8001f34: 60bb str r3, [r7, #8] - 8001f36: 68bb ldr r3, [r7, #8] + 8001f70: 4b53 ldr r3, [pc, #332] ; (80020c0 ) + 8001f72: 699b ldr r3, [r3, #24] + 8001f74: 4a52 ldr r2, [pc, #328] ; (80020c0 ) + 8001f76: f043 0301 orr.w r3, r3, #1 + 8001f7a: 6193 str r3, [r2, #24] + 8001f7c: 4b50 ldr r3, [pc, #320] ; (80020c0 ) + 8001f7e: 699b ldr r3, [r3, #24] + 8001f80: f003 0301 and.w r3, r3, #1 + 8001f84: 60bb str r3, [r7, #8] + 8001f86: 68bb ldr r3, [r7, #8] temp = AFIO->EXTICR[position >> 2u]; - 8001f38: 4a4e ldr r2, [pc, #312] ; (8002074 ) - 8001f3a: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001f3c: 089b lsrs r3, r3, #2 - 8001f3e: 3302 adds r3, #2 - 8001f40: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8001f44: 60fb str r3, [r7, #12] + 8001f88: 4a4e ldr r2, [pc, #312] ; (80020c4 ) + 8001f8a: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001f8c: 089b lsrs r3, r3, #2 + 8001f8e: 3302 adds r3, #2 + 8001f90: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8001f94: 60fb str r3, [r7, #12] CLEAR_BIT(temp, (0x0Fu) << (4u * (position & 0x03u))); - 8001f46: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001f48: f003 0303 and.w r3, r3, #3 - 8001f4c: 009b lsls r3, r3, #2 - 8001f4e: 220f movs r2, #15 - 8001f50: fa02 f303 lsl.w r3, r2, r3 - 8001f54: 43db mvns r3, r3 - 8001f56: 68fa ldr r2, [r7, #12] - 8001f58: 4013 ands r3, r2 - 8001f5a: 60fb str r3, [r7, #12] + 8001f96: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001f98: f003 0303 and.w r3, r3, #3 + 8001f9c: 009b lsls r3, r3, #2 + 8001f9e: 220f movs r2, #15 + 8001fa0: fa02 f303 lsl.w r3, r2, r3 + 8001fa4: 43db mvns r3, r3 + 8001fa6: 68fa ldr r2, [r7, #12] + 8001fa8: 4013 ands r3, r2 + 8001faa: 60fb str r3, [r7, #12] SET_BIT(temp, (GPIO_GET_INDEX(GPIOx)) << (4u * (position & 0x03u))); - 8001f5c: 687b ldr r3, [r7, #4] - 8001f5e: 4a46 ldr r2, [pc, #280] ; (8002078 ) - 8001f60: 4293 cmp r3, r2 - 8001f62: d01f beq.n 8001fa4 - 8001f64: 687b ldr r3, [r7, #4] - 8001f66: 4a45 ldr r2, [pc, #276] ; (800207c ) - 8001f68: 4293 cmp r3, r2 - 8001f6a: d019 beq.n 8001fa0 - 8001f6c: 687b ldr r3, [r7, #4] - 8001f6e: 4a44 ldr r2, [pc, #272] ; (8002080 ) - 8001f70: 4293 cmp r3, r2 - 8001f72: d013 beq.n 8001f9c - 8001f74: 687b ldr r3, [r7, #4] - 8001f76: 4a43 ldr r2, [pc, #268] ; (8002084 ) - 8001f78: 4293 cmp r3, r2 - 8001f7a: d00d beq.n 8001f98 - 8001f7c: 687b ldr r3, [r7, #4] - 8001f7e: 4a42 ldr r2, [pc, #264] ; (8002088 ) - 8001f80: 4293 cmp r3, r2 - 8001f82: d007 beq.n 8001f94 - 8001f84: 687b ldr r3, [r7, #4] - 8001f86: 4a41 ldr r2, [pc, #260] ; (800208c ) - 8001f88: 4293 cmp r3, r2 - 8001f8a: d101 bne.n 8001f90 - 8001f8c: 2305 movs r3, #5 - 8001f8e: e00a b.n 8001fa6 - 8001f90: 2306 movs r3, #6 - 8001f92: e008 b.n 8001fa6 - 8001f94: 2304 movs r3, #4 - 8001f96: e006 b.n 8001fa6 - 8001f98: 2303 movs r3, #3 - 8001f9a: e004 b.n 8001fa6 - 8001f9c: 2302 movs r3, #2 - 8001f9e: e002 b.n 8001fa6 - 8001fa0: 2301 movs r3, #1 - 8001fa2: e000 b.n 8001fa6 - 8001fa4: 2300 movs r3, #0 - 8001fa6: 6a7a ldr r2, [r7, #36] ; 0x24 - 8001fa8: f002 0203 and.w r2, r2, #3 - 8001fac: 0092 lsls r2, r2, #2 - 8001fae: 4093 lsls r3, r2 - 8001fb0: 68fa ldr r2, [r7, #12] - 8001fb2: 4313 orrs r3, r2 - 8001fb4: 60fb str r3, [r7, #12] + 8001fac: 687b ldr r3, [r7, #4] + 8001fae: 4a46 ldr r2, [pc, #280] ; (80020c8 ) + 8001fb0: 4293 cmp r3, r2 + 8001fb2: d01f beq.n 8001ff4 + 8001fb4: 687b ldr r3, [r7, #4] + 8001fb6: 4a45 ldr r2, [pc, #276] ; (80020cc ) + 8001fb8: 4293 cmp r3, r2 + 8001fba: d019 beq.n 8001ff0 + 8001fbc: 687b ldr r3, [r7, #4] + 8001fbe: 4a44 ldr r2, [pc, #272] ; (80020d0 ) + 8001fc0: 4293 cmp r3, r2 + 8001fc2: d013 beq.n 8001fec + 8001fc4: 687b ldr r3, [r7, #4] + 8001fc6: 4a43 ldr r2, [pc, #268] ; (80020d4 ) + 8001fc8: 4293 cmp r3, r2 + 8001fca: d00d beq.n 8001fe8 + 8001fcc: 687b ldr r3, [r7, #4] + 8001fce: 4a42 ldr r2, [pc, #264] ; (80020d8 ) + 8001fd0: 4293 cmp r3, r2 + 8001fd2: d007 beq.n 8001fe4 + 8001fd4: 687b ldr r3, [r7, #4] + 8001fd6: 4a41 ldr r2, [pc, #260] ; (80020dc ) + 8001fd8: 4293 cmp r3, r2 + 8001fda: d101 bne.n 8001fe0 + 8001fdc: 2305 movs r3, #5 + 8001fde: e00a b.n 8001ff6 + 8001fe0: 2306 movs r3, #6 + 8001fe2: e008 b.n 8001ff6 + 8001fe4: 2304 movs r3, #4 + 8001fe6: e006 b.n 8001ff6 + 8001fe8: 2303 movs r3, #3 + 8001fea: e004 b.n 8001ff6 + 8001fec: 2302 movs r3, #2 + 8001fee: e002 b.n 8001ff6 + 8001ff0: 2301 movs r3, #1 + 8001ff2: e000 b.n 8001ff6 + 8001ff4: 2300 movs r3, #0 + 8001ff6: 6a7a ldr r2, [r7, #36] ; 0x24 + 8001ff8: f002 0203 and.w r2, r2, #3 + 8001ffc: 0092 lsls r2, r2, #2 + 8001ffe: 4093 lsls r3, r2 + 8002000: 68fa ldr r2, [r7, #12] + 8002002: 4313 orrs r3, r2 + 8002004: 60fb str r3, [r7, #12] AFIO->EXTICR[position >> 2u] = temp; - 8001fb6: 492f ldr r1, [pc, #188] ; (8002074 ) - 8001fb8: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001fba: 089b lsrs r3, r3, #2 - 8001fbc: 3302 adds r3, #2 - 8001fbe: 68fa ldr r2, [r7, #12] - 8001fc0: f841 2023 str.w r2, [r1, r3, lsl #2] + 8002006: 492f ldr r1, [pc, #188] ; (80020c4 ) + 8002008: 6a7b ldr r3, [r7, #36] ; 0x24 + 800200a: 089b lsrs r3, r3, #2 + 800200c: 3302 adds r3, #2 + 800200e: 68fa ldr r2, [r7, #12] + 8002010: f841 2023 str.w r2, [r1, r3, lsl #2] /* Configure the interrupt mask */ if ((GPIO_Init->Mode & GPIO_MODE_IT) == GPIO_MODE_IT) - 8001fc4: 683b ldr r3, [r7, #0] - 8001fc6: 685b ldr r3, [r3, #4] - 8001fc8: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8001fcc: 2b00 cmp r3, #0 - 8001fce: d006 beq.n 8001fde + 8002014: 683b ldr r3, [r7, #0] + 8002016: 685b ldr r3, [r3, #4] + 8002018: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 800201c: 2b00 cmp r3, #0 + 800201e: d006 beq.n 800202e { SET_BIT(EXTI->IMR, iocurrent); - 8001fd0: 4b2f ldr r3, [pc, #188] ; (8002090 ) - 8001fd2: 681a ldr r2, [r3, #0] - 8001fd4: 492e ldr r1, [pc, #184] ; (8002090 ) - 8001fd6: 69bb ldr r3, [r7, #24] - 8001fd8: 4313 orrs r3, r2 - 8001fda: 600b str r3, [r1, #0] - 8001fdc: e006 b.n 8001fec + 8002020: 4b2f ldr r3, [pc, #188] ; (80020e0 ) + 8002022: 681a ldr r2, [r3, #0] + 8002024: 492e ldr r1, [pc, #184] ; (80020e0 ) + 8002026: 69bb ldr r3, [r7, #24] + 8002028: 4313 orrs r3, r2 + 800202a: 600b str r3, [r1, #0] + 800202c: e006 b.n 800203c } else { CLEAR_BIT(EXTI->IMR, iocurrent); - 8001fde: 4b2c ldr r3, [pc, #176] ; (8002090 ) - 8001fe0: 681a ldr r2, [r3, #0] - 8001fe2: 69bb ldr r3, [r7, #24] - 8001fe4: 43db mvns r3, r3 - 8001fe6: 492a ldr r1, [pc, #168] ; (8002090 ) - 8001fe8: 4013 ands r3, r2 - 8001fea: 600b str r3, [r1, #0] + 800202e: 4b2c ldr r3, [pc, #176] ; (80020e0 ) + 8002030: 681a ldr r2, [r3, #0] + 8002032: 69bb ldr r3, [r7, #24] + 8002034: 43db mvns r3, r3 + 8002036: 492a ldr r1, [pc, #168] ; (80020e0 ) + 8002038: 4013 ands r3, r2 + 800203a: 600b str r3, [r1, #0] } /* Configure the event mask */ if ((GPIO_Init->Mode & GPIO_MODE_EVT) == GPIO_MODE_EVT) - 8001fec: 683b ldr r3, [r7, #0] - 8001fee: 685b ldr r3, [r3, #4] - 8001ff0: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001ff4: 2b00 cmp r3, #0 - 8001ff6: d006 beq.n 8002006 + 800203c: 683b ldr r3, [r7, #0] + 800203e: 685b ldr r3, [r3, #4] + 8002040: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8002044: 2b00 cmp r3, #0 + 8002046: d006 beq.n 8002056 { SET_BIT(EXTI->EMR, iocurrent); - 8001ff8: 4b25 ldr r3, [pc, #148] ; (8002090 ) - 8001ffa: 685a ldr r2, [r3, #4] - 8001ffc: 4924 ldr r1, [pc, #144] ; (8002090 ) - 8001ffe: 69bb ldr r3, [r7, #24] - 8002000: 4313 orrs r3, r2 - 8002002: 604b str r3, [r1, #4] - 8002004: e006 b.n 8002014 + 8002048: 4b25 ldr r3, [pc, #148] ; (80020e0 ) + 800204a: 685a ldr r2, [r3, #4] + 800204c: 4924 ldr r1, [pc, #144] ; (80020e0 ) + 800204e: 69bb ldr r3, [r7, #24] + 8002050: 4313 orrs r3, r2 + 8002052: 604b str r3, [r1, #4] + 8002054: e006 b.n 8002064 } else { CLEAR_BIT(EXTI->EMR, iocurrent); - 8002006: 4b22 ldr r3, [pc, #136] ; (8002090 ) - 8002008: 685a ldr r2, [r3, #4] - 800200a: 69bb ldr r3, [r7, #24] - 800200c: 43db mvns r3, r3 - 800200e: 4920 ldr r1, [pc, #128] ; (8002090 ) - 8002010: 4013 ands r3, r2 - 8002012: 604b str r3, [r1, #4] + 8002056: 4b22 ldr r3, [pc, #136] ; (80020e0 ) + 8002058: 685a ldr r2, [r3, #4] + 800205a: 69bb ldr r3, [r7, #24] + 800205c: 43db mvns r3, r3 + 800205e: 4920 ldr r1, [pc, #128] ; (80020e0 ) + 8002060: 4013 ands r3, r2 + 8002062: 604b str r3, [r1, #4] } /* Enable or disable the rising trigger */ if ((GPIO_Init->Mode & RISING_EDGE) == RISING_EDGE) - 8002014: 683b ldr r3, [r7, #0] - 8002016: 685b ldr r3, [r3, #4] - 8002018: f403 1380 and.w r3, r3, #1048576 ; 0x100000 - 800201c: 2b00 cmp r3, #0 - 800201e: d006 beq.n 800202e + 8002064: 683b ldr r3, [r7, #0] + 8002066: 685b ldr r3, [r3, #4] + 8002068: f403 1380 and.w r3, r3, #1048576 ; 0x100000 + 800206c: 2b00 cmp r3, #0 + 800206e: d006 beq.n 800207e { SET_BIT(EXTI->RTSR, iocurrent); - 8002020: 4b1b ldr r3, [pc, #108] ; (8002090 ) - 8002022: 689a ldr r2, [r3, #8] - 8002024: 491a ldr r1, [pc, #104] ; (8002090 ) - 8002026: 69bb ldr r3, [r7, #24] - 8002028: 4313 orrs r3, r2 - 800202a: 608b str r3, [r1, #8] - 800202c: e006 b.n 800203c + 8002070: 4b1b ldr r3, [pc, #108] ; (80020e0 ) + 8002072: 689a ldr r2, [r3, #8] + 8002074: 491a ldr r1, [pc, #104] ; (80020e0 ) + 8002076: 69bb ldr r3, [r7, #24] + 8002078: 4313 orrs r3, r2 + 800207a: 608b str r3, [r1, #8] + 800207c: e006 b.n 800208c } else { CLEAR_BIT(EXTI->RTSR, iocurrent); - 800202e: 4b18 ldr r3, [pc, #96] ; (8002090 ) - 8002030: 689a ldr r2, [r3, #8] - 8002032: 69bb ldr r3, [r7, #24] - 8002034: 43db mvns r3, r3 - 8002036: 4916 ldr r1, [pc, #88] ; (8002090 ) - 8002038: 4013 ands r3, r2 - 800203a: 608b str r3, [r1, #8] + 800207e: 4b18 ldr r3, [pc, #96] ; (80020e0 ) + 8002080: 689a ldr r2, [r3, #8] + 8002082: 69bb ldr r3, [r7, #24] + 8002084: 43db mvns r3, r3 + 8002086: 4916 ldr r1, [pc, #88] ; (80020e0 ) + 8002088: 4013 ands r3, r2 + 800208a: 608b str r3, [r1, #8] } /* Enable or disable the falling trigger */ if ((GPIO_Init->Mode & FALLING_EDGE) == FALLING_EDGE) - 800203c: 683b ldr r3, [r7, #0] - 800203e: 685b ldr r3, [r3, #4] - 8002040: f403 1300 and.w r3, r3, #2097152 ; 0x200000 - 8002044: 2b00 cmp r3, #0 - 8002046: d025 beq.n 8002094 + 800208c: 683b ldr r3, [r7, #0] + 800208e: 685b ldr r3, [r3, #4] + 8002090: f403 1300 and.w r3, r3, #2097152 ; 0x200000 + 8002094: 2b00 cmp r3, #0 + 8002096: d025 beq.n 80020e4 { SET_BIT(EXTI->FTSR, iocurrent); - 8002048: 4b11 ldr r3, [pc, #68] ; (8002090 ) - 800204a: 68da ldr r2, [r3, #12] - 800204c: 4910 ldr r1, [pc, #64] ; (8002090 ) - 800204e: 69bb ldr r3, [r7, #24] - 8002050: 4313 orrs r3, r2 - 8002052: 60cb str r3, [r1, #12] - 8002054: e025 b.n 80020a2 - 8002056: bf00 nop - 8002058: 10320000 .word 0x10320000 - 800205c: 10310000 .word 0x10310000 - 8002060: 10220000 .word 0x10220000 - 8002064: 10210000 .word 0x10210000 - 8002068: 10120000 .word 0x10120000 - 800206c: 10110000 .word 0x10110000 - 8002070: 40021000 .word 0x40021000 - 8002074: 40010000 .word 0x40010000 - 8002078: 40010800 .word 0x40010800 - 800207c: 40010c00 .word 0x40010c00 - 8002080: 40011000 .word 0x40011000 - 8002084: 40011400 .word 0x40011400 - 8002088: 40011800 .word 0x40011800 - 800208c: 40011c00 .word 0x40011c00 - 8002090: 40010400 .word 0x40010400 + 8002098: 4b11 ldr r3, [pc, #68] ; (80020e0 ) + 800209a: 68da ldr r2, [r3, #12] + 800209c: 4910 ldr r1, [pc, #64] ; (80020e0 ) + 800209e: 69bb ldr r3, [r7, #24] + 80020a0: 4313 orrs r3, r2 + 80020a2: 60cb str r3, [r1, #12] + 80020a4: e025 b.n 80020f2 + 80020a6: bf00 nop + 80020a8: 10320000 .word 0x10320000 + 80020ac: 10310000 .word 0x10310000 + 80020b0: 10220000 .word 0x10220000 + 80020b4: 10210000 .word 0x10210000 + 80020b8: 10120000 .word 0x10120000 + 80020bc: 10110000 .word 0x10110000 + 80020c0: 40021000 .word 0x40021000 + 80020c4: 40010000 .word 0x40010000 + 80020c8: 40010800 .word 0x40010800 + 80020cc: 40010c00 .word 0x40010c00 + 80020d0: 40011000 .word 0x40011000 + 80020d4: 40011400 .word 0x40011400 + 80020d8: 40011800 .word 0x40011800 + 80020dc: 40011c00 .word 0x40011c00 + 80020e0: 40010400 .word 0x40010400 } else { CLEAR_BIT(EXTI->FTSR, iocurrent); - 8002094: 4b0b ldr r3, [pc, #44] ; (80020c4 ) - 8002096: 68da ldr r2, [r3, #12] - 8002098: 69bb ldr r3, [r7, #24] - 800209a: 43db mvns r3, r3 - 800209c: 4909 ldr r1, [pc, #36] ; (80020c4 ) - 800209e: 4013 ands r3, r2 - 80020a0: 60cb str r3, [r1, #12] + 80020e4: 4b0b ldr r3, [pc, #44] ; (8002114 ) + 80020e6: 68da ldr r2, [r3, #12] + 80020e8: 69bb ldr r3, [r7, #24] + 80020ea: 43db mvns r3, r3 + 80020ec: 4909 ldr r1, [pc, #36] ; (8002114 ) + 80020ee: 4013 ands r3, r2 + 80020f0: 60cb str r3, [r1, #12] } } } position++; - 80020a2: 6a7b ldr r3, [r7, #36] ; 0x24 - 80020a4: 3301 adds r3, #1 - 80020a6: 627b str r3, [r7, #36] ; 0x24 + 80020f2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80020f4: 3301 adds r3, #1 + 80020f6: 627b str r3, [r7, #36] ; 0x24 while (((GPIO_Init->Pin) >> position) != 0x00u) - 80020a8: 683b ldr r3, [r7, #0] - 80020aa: 681a ldr r2, [r3, #0] - 80020ac: 6a7b ldr r3, [r7, #36] ; 0x24 - 80020ae: fa22 f303 lsr.w r3, r2, r3 - 80020b2: 2b00 cmp r3, #0 - 80020b4: f47f ae7e bne.w 8001db4 + 80020f8: 683b ldr r3, [r7, #0] + 80020fa: 681a ldr r2, [r3, #0] + 80020fc: 6a7b ldr r3, [r7, #36] ; 0x24 + 80020fe: fa22 f303 lsr.w r3, r2, r3 + 8002102: 2b00 cmp r3, #0 + 8002104: f47f ae7e bne.w 8001e04 } } - 80020b8: bf00 nop - 80020ba: bf00 nop - 80020bc: 372c adds r7, #44 ; 0x2c - 80020be: 46bd mov sp, r7 - 80020c0: bc80 pop {r7} - 80020c2: 4770 bx lr - 80020c4: 40010400 .word 0x40010400 + 8002108: bf00 nop + 800210a: bf00 nop + 800210c: 372c adds r7, #44 ; 0x2c + 800210e: 46bd mov sp, r7 + 8002110: bc80 pop {r7} + 8002112: 4770 bx lr + 8002114: 40010400 .word 0x40010400 -080020c8 : +08002118 : * @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) { - 80020c8: b480 push {r7} - 80020ca: b085 sub sp, #20 - 80020cc: af00 add r7, sp, #0 - 80020ce: 6078 str r0, [r7, #4] - 80020d0: 460b mov r3, r1 - 80020d2: 807b strh r3, [r7, #2] + 8002118: b480 push {r7} + 800211a: b085 sub sp, #20 + 800211c: af00 add r7, sp, #0 + 800211e: 6078 str r0, [r7, #4] + 8002120: 460b mov r3, r1 + 8002122: 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) - 80020d4: 687b ldr r3, [r7, #4] - 80020d6: 689a ldr r2, [r3, #8] - 80020d8: 887b ldrh r3, [r7, #2] - 80020da: 4013 ands r3, r2 - 80020dc: 2b00 cmp r3, #0 - 80020de: d002 beq.n 80020e6 + 8002124: 687b ldr r3, [r7, #4] + 8002126: 689a ldr r2, [r3, #8] + 8002128: 887b ldrh r3, [r7, #2] + 800212a: 4013 ands r3, r2 + 800212c: 2b00 cmp r3, #0 + 800212e: d002 beq.n 8002136 { bitstatus = GPIO_PIN_SET; - 80020e0: 2301 movs r3, #1 - 80020e2: 73fb strb r3, [r7, #15] - 80020e4: e001 b.n 80020ea + 8002130: 2301 movs r3, #1 + 8002132: 73fb strb r3, [r7, #15] + 8002134: e001 b.n 800213a } else { bitstatus = GPIO_PIN_RESET; - 80020e6: 2300 movs r3, #0 - 80020e8: 73fb strb r3, [r7, #15] + 8002136: 2300 movs r3, #0 + 8002138: 73fb strb r3, [r7, #15] } return bitstatus; - 80020ea: 7bfb ldrb r3, [r7, #15] + 800213a: 7bfb ldrb r3, [r7, #15] } - 80020ec: 4618 mov r0, r3 - 80020ee: 3714 adds r7, #20 - 80020f0: 46bd mov sp, r7 - 80020f2: bc80 pop {r7} - 80020f4: 4770 bx lr + 800213c: 4618 mov r0, r3 + 800213e: 3714 adds r7, #20 + 8002140: 46bd mov sp, r7 + 8002142: bc80 pop {r7} + 8002144: 4770 bx lr -080020f6 : +08002146 : * @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) { - 80020f6: b480 push {r7} - 80020f8: b083 sub sp, #12 - 80020fa: af00 add r7, sp, #0 - 80020fc: 6078 str r0, [r7, #4] - 80020fe: 460b mov r3, r1 - 8002100: 807b strh r3, [r7, #2] - 8002102: 4613 mov r3, r2 - 8002104: 707b strb r3, [r7, #1] + 8002146: b480 push {r7} + 8002148: b083 sub sp, #12 + 800214a: af00 add r7, sp, #0 + 800214c: 6078 str r0, [r7, #4] + 800214e: 460b mov r3, r1 + 8002150: 807b strh r3, [r7, #2] + 8002152: 4613 mov r3, r2 + 8002154: 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) - 8002106: 787b ldrb r3, [r7, #1] - 8002108: 2b00 cmp r3, #0 - 800210a: d003 beq.n 8002114 + 8002156: 787b ldrb r3, [r7, #1] + 8002158: 2b00 cmp r3, #0 + 800215a: d003 beq.n 8002164 { GPIOx->BSRR = GPIO_Pin; - 800210c: 887a ldrh r2, [r7, #2] - 800210e: 687b ldr r3, [r7, #4] - 8002110: 611a str r2, [r3, #16] + 800215c: 887a ldrh r2, [r7, #2] + 800215e: 687b ldr r3, [r7, #4] + 8002160: 611a str r2, [r3, #16] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; } } - 8002112: e003 b.n 800211c + 8002162: e003 b.n 800216c GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; - 8002114: 887b ldrh r3, [r7, #2] - 8002116: 041a lsls r2, r3, #16 - 8002118: 687b ldr r3, [r7, #4] - 800211a: 611a str r2, [r3, #16] + 8002164: 887b ldrh r3, [r7, #2] + 8002166: 041a lsls r2, r3, #16 + 8002168: 687b ldr r3, [r7, #4] + 800216a: 611a str r2, [r3, #16] } - 800211c: bf00 nop - 800211e: 370c adds r7, #12 - 8002120: 46bd mov sp, r7 - 8002122: bc80 pop {r7} - 8002124: 4770 bx lr + 800216c: bf00 nop + 800216e: 370c adds r7, #12 + 8002170: 46bd mov sp, r7 + 8002172: bc80 pop {r7} + 8002174: 4770 bx lr ... -08002128 : +08002178 : * @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) { - 8002128: b580 push {r7, lr} - 800212a: b084 sub sp, #16 - 800212c: af00 add r7, sp, #0 - 800212e: 6078 str r0, [r7, #4] + 8002178: b580 push {r7, lr} + 800217a: b084 sub sp, #16 + 800217c: af00 add r7, sp, #0 + 800217e: 6078 str r0, [r7, #4] uint32_t freqrange; uint32_t pclk1; /* Check the I2C handle allocation */ if (hi2c == NULL) - 8002130: 687b ldr r3, [r7, #4] - 8002132: 2b00 cmp r3, #0 - 8002134: d101 bne.n 800213a + 8002180: 687b ldr r3, [r7, #4] + 8002182: 2b00 cmp r3, #0 + 8002184: d101 bne.n 800218a { return HAL_ERROR; - 8002136: 2301 movs r3, #1 - 8002138: e12b b.n 8002392 + 8002186: 2301 movs r3, #1 + 8002188: e12b b.n 80023e2 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) - 800213a: 687b ldr r3, [r7, #4] - 800213c: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002140: b2db uxtb r3, r3 - 8002142: 2b00 cmp r3, #0 - 8002144: d106 bne.n 8002154 + 800218a: 687b ldr r3, [r7, #4] + 800218c: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002190: b2db uxtb r3, r3 + 8002192: 2b00 cmp r3, #0 + 8002194: d106 bne.n 80021a4 { /* Allocate lock resource and initialize it */ hi2c->Lock = HAL_UNLOCKED; - 8002146: 687b ldr r3, [r7, #4] - 8002148: 2200 movs r2, #0 - 800214a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002196: 687b ldr r3, [r7, #4] + 8002198: 2200 movs r2, #0 + 800219a: 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); - 800214e: 6878 ldr r0, [r7, #4] - 8002150: f7ff fa66 bl 8001620 + 800219e: 6878 ldr r0, [r7, #4] + 80021a0: f7ff fa82 bl 80016a8 #endif /* USE_HAL_I2C_REGISTER_CALLBACKS */ } hi2c->State = HAL_I2C_STATE_BUSY; - 8002154: 687b ldr r3, [r7, #4] - 8002156: 2224 movs r2, #36 ; 0x24 - 8002158: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80021a4: 687b ldr r3, [r7, #4] + 80021a6: 2224 movs r2, #36 ; 0x24 + 80021a8: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Disable the selected I2C peripheral */ __HAL_I2C_DISABLE(hi2c); - 800215c: 687b ldr r3, [r7, #4] - 800215e: 681b ldr r3, [r3, #0] - 8002160: 681a ldr r2, [r3, #0] - 8002162: 687b ldr r3, [r7, #4] - 8002164: 681b ldr r3, [r3, #0] - 8002166: f022 0201 bic.w r2, r2, #1 - 800216a: 601a str r2, [r3, #0] + 80021ac: 687b ldr r3, [r7, #4] + 80021ae: 681b ldr r3, [r3, #0] + 80021b0: 681a ldr r2, [r3, #0] + 80021b2: 687b ldr r3, [r7, #4] + 80021b4: 681b ldr r3, [r3, #0] + 80021b6: f022 0201 bic.w r2, r2, #1 + 80021ba: 601a str r2, [r3, #0] /*Reset I2C*/ hi2c->Instance->CR1 |= I2C_CR1_SWRST; - 800216c: 687b ldr r3, [r7, #4] - 800216e: 681b ldr r3, [r3, #0] - 8002170: 681a ldr r2, [r3, #0] - 8002172: 687b ldr r3, [r7, #4] - 8002174: 681b ldr r3, [r3, #0] - 8002176: f442 4200 orr.w r2, r2, #32768 ; 0x8000 - 800217a: 601a str r2, [r3, #0] + 80021bc: 687b ldr r3, [r7, #4] + 80021be: 681b ldr r3, [r3, #0] + 80021c0: 681a ldr r2, [r3, #0] + 80021c2: 687b ldr r3, [r7, #4] + 80021c4: 681b ldr r3, [r3, #0] + 80021c6: f442 4200 orr.w r2, r2, #32768 ; 0x8000 + 80021ca: 601a str r2, [r3, #0] hi2c->Instance->CR1 &= ~I2C_CR1_SWRST; - 800217c: 687b ldr r3, [r7, #4] - 800217e: 681b ldr r3, [r3, #0] - 8002180: 681a ldr r2, [r3, #0] - 8002182: 687b ldr r3, [r7, #4] - 8002184: 681b ldr r3, [r3, #0] - 8002186: f422 4200 bic.w r2, r2, #32768 ; 0x8000 - 800218a: 601a str r2, [r3, #0] + 80021cc: 687b ldr r3, [r7, #4] + 80021ce: 681b ldr r3, [r3, #0] + 80021d0: 681a ldr r2, [r3, #0] + 80021d2: 687b ldr r3, [r7, #4] + 80021d4: 681b ldr r3, [r3, #0] + 80021d6: f422 4200 bic.w r2, r2, #32768 ; 0x8000 + 80021da: 601a str r2, [r3, #0] /* Get PCLK1 frequency */ pclk1 = HAL_RCC_GetPCLK1Freq(); - 800218c: f001 fba0 bl 80038d0 - 8002190: 60f8 str r0, [r7, #12] + 80021dc: f001 fba0 bl 8003920 + 80021e0: 60f8 str r0, [r7, #12] /* Check the minimum allowed PCLK1 frequency */ if (I2C_MIN_PCLK_FREQ(pclk1, hi2c->Init.ClockSpeed) == 1U) - 8002192: 687b ldr r3, [r7, #4] - 8002194: 685b ldr r3, [r3, #4] - 8002196: 4a81 ldr r2, [pc, #516] ; (800239c ) - 8002198: 4293 cmp r3, r2 - 800219a: d807 bhi.n 80021ac - 800219c: 68fb ldr r3, [r7, #12] - 800219e: 4a80 ldr r2, [pc, #512] ; (80023a0 ) - 80021a0: 4293 cmp r3, r2 - 80021a2: bf94 ite ls - 80021a4: 2301 movls r3, #1 - 80021a6: 2300 movhi r3, #0 - 80021a8: b2db uxtb r3, r3 - 80021aa: e006 b.n 80021ba - 80021ac: 68fb ldr r3, [r7, #12] - 80021ae: 4a7d ldr r2, [pc, #500] ; (80023a4 ) - 80021b0: 4293 cmp r3, r2 - 80021b2: bf94 ite ls - 80021b4: 2301 movls r3, #1 - 80021b6: 2300 movhi r3, #0 - 80021b8: b2db uxtb r3, r3 - 80021ba: 2b00 cmp r3, #0 - 80021bc: d001 beq.n 80021c2 + 80021e2: 687b ldr r3, [r7, #4] + 80021e4: 685b ldr r3, [r3, #4] + 80021e6: 4a81 ldr r2, [pc, #516] ; (80023ec ) + 80021e8: 4293 cmp r3, r2 + 80021ea: d807 bhi.n 80021fc + 80021ec: 68fb ldr r3, [r7, #12] + 80021ee: 4a80 ldr r2, [pc, #512] ; (80023f0 ) + 80021f0: 4293 cmp r3, r2 + 80021f2: bf94 ite ls + 80021f4: 2301 movls r3, #1 + 80021f6: 2300 movhi r3, #0 + 80021f8: b2db uxtb r3, r3 + 80021fa: e006 b.n 800220a + 80021fc: 68fb ldr r3, [r7, #12] + 80021fe: 4a7d ldr r2, [pc, #500] ; (80023f4 ) + 8002200: 4293 cmp r3, r2 + 8002202: bf94 ite ls + 8002204: 2301 movls r3, #1 + 8002206: 2300 movhi r3, #0 + 8002208: b2db uxtb r3, r3 + 800220a: 2b00 cmp r3, #0 + 800220c: d001 beq.n 8002212 { return HAL_ERROR; - 80021be: 2301 movs r3, #1 - 80021c0: e0e7 b.n 8002392 + 800220e: 2301 movs r3, #1 + 8002210: e0e7 b.n 80023e2 } /* Calculate frequency range */ freqrange = I2C_FREQRANGE(pclk1); - 80021c2: 68fb ldr r3, [r7, #12] - 80021c4: 4a78 ldr r2, [pc, #480] ; (80023a8 ) - 80021c6: fba2 2303 umull r2, r3, r2, r3 - 80021ca: 0c9b lsrs r3, r3, #18 - 80021cc: 60bb str r3, [r7, #8] + 8002212: 68fb ldr r3, [r7, #12] + 8002214: 4a78 ldr r2, [pc, #480] ; (80023f8 ) + 8002216: fba2 2303 umull r2, r3, r2, r3 + 800221a: 0c9b lsrs r3, r3, #18 + 800221c: 60bb str r3, [r7, #8] /*---------------------------- I2Cx CR2 Configuration ----------------------*/ /* Configure I2Cx: Frequency range */ MODIFY_REG(hi2c->Instance->CR2, I2C_CR2_FREQ, freqrange); - 80021ce: 687b ldr r3, [r7, #4] - 80021d0: 681b ldr r3, [r3, #0] - 80021d2: 685b ldr r3, [r3, #4] - 80021d4: f023 013f bic.w r1, r3, #63 ; 0x3f - 80021d8: 687b ldr r3, [r7, #4] - 80021da: 681b ldr r3, [r3, #0] - 80021dc: 68ba ldr r2, [r7, #8] - 80021de: 430a orrs r2, r1 - 80021e0: 605a str r2, [r3, #4] + 800221e: 687b ldr r3, [r7, #4] + 8002220: 681b ldr r3, [r3, #0] + 8002222: 685b ldr r3, [r3, #4] + 8002224: f023 013f bic.w r1, r3, #63 ; 0x3f + 8002228: 687b ldr r3, [r7, #4] + 800222a: 681b ldr r3, [r3, #0] + 800222c: 68ba ldr r2, [r7, #8] + 800222e: 430a orrs r2, r1 + 8002230: 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)); - 80021e2: 687b ldr r3, [r7, #4] - 80021e4: 681b ldr r3, [r3, #0] - 80021e6: 6a1b ldr r3, [r3, #32] - 80021e8: f023 013f bic.w r1, r3, #63 ; 0x3f - 80021ec: 687b ldr r3, [r7, #4] - 80021ee: 685b ldr r3, [r3, #4] - 80021f0: 4a6a ldr r2, [pc, #424] ; (800239c ) - 80021f2: 4293 cmp r3, r2 - 80021f4: d802 bhi.n 80021fc - 80021f6: 68bb ldr r3, [r7, #8] - 80021f8: 3301 adds r3, #1 - 80021fa: e009 b.n 8002210 - 80021fc: 68bb ldr r3, [r7, #8] - 80021fe: f44f 7296 mov.w r2, #300 ; 0x12c - 8002202: fb02 f303 mul.w r3, r2, r3 - 8002206: 4a69 ldr r2, [pc, #420] ; (80023ac ) - 8002208: fba2 2303 umull r2, r3, r2, r3 - 800220c: 099b lsrs r3, r3, #6 - 800220e: 3301 adds r3, #1 - 8002210: 687a ldr r2, [r7, #4] - 8002212: 6812 ldr r2, [r2, #0] - 8002214: 430b orrs r3, r1 - 8002216: 6213 str r3, [r2, #32] + 8002232: 687b ldr r3, [r7, #4] + 8002234: 681b ldr r3, [r3, #0] + 8002236: 6a1b ldr r3, [r3, #32] + 8002238: f023 013f bic.w r1, r3, #63 ; 0x3f + 800223c: 687b ldr r3, [r7, #4] + 800223e: 685b ldr r3, [r3, #4] + 8002240: 4a6a ldr r2, [pc, #424] ; (80023ec ) + 8002242: 4293 cmp r3, r2 + 8002244: d802 bhi.n 800224c + 8002246: 68bb ldr r3, [r7, #8] + 8002248: 3301 adds r3, #1 + 800224a: e009 b.n 8002260 + 800224c: 68bb ldr r3, [r7, #8] + 800224e: f44f 7296 mov.w r2, #300 ; 0x12c + 8002252: fb02 f303 mul.w r3, r2, r3 + 8002256: 4a69 ldr r2, [pc, #420] ; (80023fc ) + 8002258: fba2 2303 umull r2, r3, r2, r3 + 800225c: 099b lsrs r3, r3, #6 + 800225e: 3301 adds r3, #1 + 8002260: 687a ldr r2, [r7, #4] + 8002262: 6812 ldr r2, [r2, #0] + 8002264: 430b orrs r3, r1 + 8002266: 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)); - 8002218: 687b ldr r3, [r7, #4] - 800221a: 681b ldr r3, [r3, #0] - 800221c: 69db ldr r3, [r3, #28] - 800221e: f423 424f bic.w r2, r3, #52992 ; 0xcf00 - 8002222: f022 02ff bic.w r2, r2, #255 ; 0xff - 8002226: 687b ldr r3, [r7, #4] - 8002228: 685b ldr r3, [r3, #4] - 800222a: 495c ldr r1, [pc, #368] ; (800239c ) - 800222c: 428b cmp r3, r1 - 800222e: d819 bhi.n 8002264 - 8002230: 68fb ldr r3, [r7, #12] - 8002232: 1e59 subs r1, r3, #1 - 8002234: 687b ldr r3, [r7, #4] - 8002236: 685b ldr r3, [r3, #4] - 8002238: 005b lsls r3, r3, #1 - 800223a: fbb1 f3f3 udiv r3, r1, r3 - 800223e: 1c59 adds r1, r3, #1 - 8002240: f640 73fc movw r3, #4092 ; 0xffc - 8002244: 400b ands r3, r1 - 8002246: 2b00 cmp r3, #0 - 8002248: d00a beq.n 8002260 - 800224a: 68fb ldr r3, [r7, #12] - 800224c: 1e59 subs r1, r3, #1 - 800224e: 687b ldr r3, [r7, #4] - 8002250: 685b ldr r3, [r3, #4] - 8002252: 005b lsls r3, r3, #1 - 8002254: fbb1 f3f3 udiv r3, r1, r3 - 8002258: 3301 adds r3, #1 - 800225a: f3c3 030b ubfx r3, r3, #0, #12 - 800225e: e051 b.n 8002304 - 8002260: 2304 movs r3, #4 - 8002262: e04f b.n 8002304 - 8002264: 687b ldr r3, [r7, #4] - 8002266: 689b ldr r3, [r3, #8] - 8002268: 2b00 cmp r3, #0 - 800226a: d111 bne.n 8002290 - 800226c: 68fb ldr r3, [r7, #12] - 800226e: 1e58 subs r0, r3, #1 - 8002270: 687b ldr r3, [r7, #4] - 8002272: 6859 ldr r1, [r3, #4] - 8002274: 460b mov r3, r1 - 8002276: 005b lsls r3, r3, #1 - 8002278: 440b add r3, r1 - 800227a: fbb0 f3f3 udiv r3, r0, r3 - 800227e: 3301 adds r3, #1 - 8002280: f3c3 030b ubfx r3, r3, #0, #12 - 8002284: 2b00 cmp r3, #0 - 8002286: bf0c ite eq - 8002288: 2301 moveq r3, #1 - 800228a: 2300 movne r3, #0 - 800228c: b2db uxtb r3, r3 - 800228e: e012 b.n 80022b6 - 8002290: 68fb ldr r3, [r7, #12] - 8002292: 1e58 subs r0, r3, #1 - 8002294: 687b ldr r3, [r7, #4] - 8002296: 6859 ldr r1, [r3, #4] - 8002298: 460b mov r3, r1 - 800229a: 009b lsls r3, r3, #2 - 800229c: 440b add r3, r1 - 800229e: 0099 lsls r1, r3, #2 - 80022a0: 440b add r3, r1 - 80022a2: fbb0 f3f3 udiv r3, r0, r3 - 80022a6: 3301 adds r3, #1 - 80022a8: f3c3 030b ubfx r3, r3, #0, #12 - 80022ac: 2b00 cmp r3, #0 - 80022ae: bf0c ite eq - 80022b0: 2301 moveq r3, #1 - 80022b2: 2300 movne r3, #0 - 80022b4: b2db uxtb r3, r3 - 80022b6: 2b00 cmp r3, #0 - 80022b8: d001 beq.n 80022be - 80022ba: 2301 movs r3, #1 - 80022bc: e022 b.n 8002304 - 80022be: 687b ldr r3, [r7, #4] - 80022c0: 689b ldr r3, [r3, #8] - 80022c2: 2b00 cmp r3, #0 - 80022c4: d10e bne.n 80022e4 - 80022c6: 68fb ldr r3, [r7, #12] - 80022c8: 1e58 subs r0, r3, #1 - 80022ca: 687b ldr r3, [r7, #4] - 80022cc: 6859 ldr r1, [r3, #4] - 80022ce: 460b mov r3, r1 - 80022d0: 005b lsls r3, r3, #1 - 80022d2: 440b add r3, r1 - 80022d4: fbb0 f3f3 udiv r3, r0, r3 - 80022d8: 3301 adds r3, #1 - 80022da: f3c3 030b ubfx r3, r3, #0, #12 - 80022de: f443 4300 orr.w r3, r3, #32768 ; 0x8000 - 80022e2: e00f b.n 8002304 - 80022e4: 68fb ldr r3, [r7, #12] - 80022e6: 1e58 subs r0, r3, #1 - 80022e8: 687b ldr r3, [r7, #4] - 80022ea: 6859 ldr r1, [r3, #4] - 80022ec: 460b mov r3, r1 - 80022ee: 009b lsls r3, r3, #2 + 8002268: 687b ldr r3, [r7, #4] + 800226a: 681b ldr r3, [r3, #0] + 800226c: 69db ldr r3, [r3, #28] + 800226e: f423 424f bic.w r2, r3, #52992 ; 0xcf00 + 8002272: f022 02ff bic.w r2, r2, #255 ; 0xff + 8002276: 687b ldr r3, [r7, #4] + 8002278: 685b ldr r3, [r3, #4] + 800227a: 495c ldr r1, [pc, #368] ; (80023ec ) + 800227c: 428b cmp r3, r1 + 800227e: d819 bhi.n 80022b4 + 8002280: 68fb ldr r3, [r7, #12] + 8002282: 1e59 subs r1, r3, #1 + 8002284: 687b ldr r3, [r7, #4] + 8002286: 685b ldr r3, [r3, #4] + 8002288: 005b lsls r3, r3, #1 + 800228a: fbb1 f3f3 udiv r3, r1, r3 + 800228e: 1c59 adds r1, r3, #1 + 8002290: f640 73fc movw r3, #4092 ; 0xffc + 8002294: 400b ands r3, r1 + 8002296: 2b00 cmp r3, #0 + 8002298: d00a beq.n 80022b0 + 800229a: 68fb ldr r3, [r7, #12] + 800229c: 1e59 subs r1, r3, #1 + 800229e: 687b ldr r3, [r7, #4] + 80022a0: 685b ldr r3, [r3, #4] + 80022a2: 005b lsls r3, r3, #1 + 80022a4: fbb1 f3f3 udiv r3, r1, r3 + 80022a8: 3301 adds r3, #1 + 80022aa: f3c3 030b ubfx r3, r3, #0, #12 + 80022ae: e051 b.n 8002354 + 80022b0: 2304 movs r3, #4 + 80022b2: e04f b.n 8002354 + 80022b4: 687b ldr r3, [r7, #4] + 80022b6: 689b ldr r3, [r3, #8] + 80022b8: 2b00 cmp r3, #0 + 80022ba: d111 bne.n 80022e0 + 80022bc: 68fb ldr r3, [r7, #12] + 80022be: 1e58 subs r0, r3, #1 + 80022c0: 687b ldr r3, [r7, #4] + 80022c2: 6859 ldr r1, [r3, #4] + 80022c4: 460b mov r3, r1 + 80022c6: 005b lsls r3, r3, #1 + 80022c8: 440b add r3, r1 + 80022ca: fbb0 f3f3 udiv r3, r0, r3 + 80022ce: 3301 adds r3, #1 + 80022d0: f3c3 030b ubfx r3, r3, #0, #12 + 80022d4: 2b00 cmp r3, #0 + 80022d6: bf0c ite eq + 80022d8: 2301 moveq r3, #1 + 80022da: 2300 movne r3, #0 + 80022dc: b2db uxtb r3, r3 + 80022de: e012 b.n 8002306 + 80022e0: 68fb ldr r3, [r7, #12] + 80022e2: 1e58 subs r0, r3, #1 + 80022e4: 687b ldr r3, [r7, #4] + 80022e6: 6859 ldr r1, [r3, #4] + 80022e8: 460b mov r3, r1 + 80022ea: 009b lsls r3, r3, #2 + 80022ec: 440b add r3, r1 + 80022ee: 0099 lsls r1, r3, #2 80022f0: 440b add r3, r1 - 80022f2: 0099 lsls r1, r3, #2 - 80022f4: 440b add r3, r1 - 80022f6: fbb0 f3f3 udiv r3, r0, r3 - 80022fa: 3301 adds r3, #1 - 80022fc: f3c3 030b ubfx r3, r3, #0, #12 - 8002300: f443 4340 orr.w r3, r3, #49152 ; 0xc000 - 8002304: 6879 ldr r1, [r7, #4] - 8002306: 6809 ldr r1, [r1, #0] - 8002308: 4313 orrs r3, r2 - 800230a: 61cb str r3, [r1, #28] + 80022f2: fbb0 f3f3 udiv r3, r0, r3 + 80022f6: 3301 adds r3, #1 + 80022f8: f3c3 030b ubfx r3, r3, #0, #12 + 80022fc: 2b00 cmp r3, #0 + 80022fe: bf0c ite eq + 8002300: 2301 moveq r3, #1 + 8002302: 2300 movne r3, #0 + 8002304: b2db uxtb r3, r3 + 8002306: 2b00 cmp r3, #0 + 8002308: d001 beq.n 800230e + 800230a: 2301 movs r3, #1 + 800230c: e022 b.n 8002354 + 800230e: 687b ldr r3, [r7, #4] + 8002310: 689b ldr r3, [r3, #8] + 8002312: 2b00 cmp r3, #0 + 8002314: d10e bne.n 8002334 + 8002316: 68fb ldr r3, [r7, #12] + 8002318: 1e58 subs r0, r3, #1 + 800231a: 687b ldr r3, [r7, #4] + 800231c: 6859 ldr r1, [r3, #4] + 800231e: 460b mov r3, r1 + 8002320: 005b lsls r3, r3, #1 + 8002322: 440b add r3, r1 + 8002324: fbb0 f3f3 udiv r3, r0, r3 + 8002328: 3301 adds r3, #1 + 800232a: f3c3 030b ubfx r3, r3, #0, #12 + 800232e: f443 4300 orr.w r3, r3, #32768 ; 0x8000 + 8002332: e00f b.n 8002354 + 8002334: 68fb ldr r3, [r7, #12] + 8002336: 1e58 subs r0, r3, #1 + 8002338: 687b ldr r3, [r7, #4] + 800233a: 6859 ldr r1, [r3, #4] + 800233c: 460b mov r3, r1 + 800233e: 009b lsls r3, r3, #2 + 8002340: 440b add r3, r1 + 8002342: 0099 lsls r1, r3, #2 + 8002344: 440b add r3, r1 + 8002346: fbb0 f3f3 udiv r3, r0, r3 + 800234a: 3301 adds r3, #1 + 800234c: f3c3 030b ubfx r3, r3, #0, #12 + 8002350: f443 4340 orr.w r3, r3, #49152 ; 0xc000 + 8002354: 6879 ldr r1, [r7, #4] + 8002356: 6809 ldr r1, [r1, #0] + 8002358: 4313 orrs r3, r2 + 800235a: 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)); - 800230c: 687b ldr r3, [r7, #4] - 800230e: 681b ldr r3, [r3, #0] - 8002310: 681b ldr r3, [r3, #0] - 8002312: f023 01c0 bic.w r1, r3, #192 ; 0xc0 - 8002316: 687b ldr r3, [r7, #4] - 8002318: 69da ldr r2, [r3, #28] - 800231a: 687b ldr r3, [r7, #4] - 800231c: 6a1b ldr r3, [r3, #32] - 800231e: 431a orrs r2, r3 - 8002320: 687b ldr r3, [r7, #4] - 8002322: 681b ldr r3, [r3, #0] - 8002324: 430a orrs r2, r1 - 8002326: 601a str r2, [r3, #0] + 800235c: 687b ldr r3, [r7, #4] + 800235e: 681b ldr r3, [r3, #0] + 8002360: 681b ldr r3, [r3, #0] + 8002362: f023 01c0 bic.w r1, r3, #192 ; 0xc0 + 8002366: 687b ldr r3, [r7, #4] + 8002368: 69da ldr r2, [r3, #28] + 800236a: 687b ldr r3, [r7, #4] + 800236c: 6a1b ldr r3, [r3, #32] + 800236e: 431a orrs r2, r3 + 8002370: 687b ldr r3, [r7, #4] + 8002372: 681b ldr r3, [r3, #0] + 8002374: 430a orrs r2, r1 + 8002376: 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)); - 8002328: 687b ldr r3, [r7, #4] - 800232a: 681b ldr r3, [r3, #0] - 800232c: 689b ldr r3, [r3, #8] - 800232e: f423 4303 bic.w r3, r3, #33536 ; 0x8300 - 8002332: f023 03ff bic.w r3, r3, #255 ; 0xff - 8002336: 687a ldr r2, [r7, #4] - 8002338: 6911 ldr r1, [r2, #16] - 800233a: 687a ldr r2, [r7, #4] - 800233c: 68d2 ldr r2, [r2, #12] - 800233e: 4311 orrs r1, r2 - 8002340: 687a ldr r2, [r7, #4] - 8002342: 6812 ldr r2, [r2, #0] - 8002344: 430b orrs r3, r1 - 8002346: 6093 str r3, [r2, #8] + 8002378: 687b ldr r3, [r7, #4] + 800237a: 681b ldr r3, [r3, #0] + 800237c: 689b ldr r3, [r3, #8] + 800237e: f423 4303 bic.w r3, r3, #33536 ; 0x8300 + 8002382: f023 03ff bic.w r3, r3, #255 ; 0xff + 8002386: 687a ldr r2, [r7, #4] + 8002388: 6911 ldr r1, [r2, #16] + 800238a: 687a ldr r2, [r7, #4] + 800238c: 68d2 ldr r2, [r2, #12] + 800238e: 4311 orrs r1, r2 + 8002390: 687a ldr r2, [r7, #4] + 8002392: 6812 ldr r2, [r2, #0] + 8002394: 430b orrs r3, r1 + 8002396: 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)); - 8002348: 687b ldr r3, [r7, #4] - 800234a: 681b ldr r3, [r3, #0] - 800234c: 68db ldr r3, [r3, #12] - 800234e: f023 01ff bic.w r1, r3, #255 ; 0xff - 8002352: 687b ldr r3, [r7, #4] - 8002354: 695a ldr r2, [r3, #20] - 8002356: 687b ldr r3, [r7, #4] - 8002358: 699b ldr r3, [r3, #24] - 800235a: 431a orrs r2, r3 - 800235c: 687b ldr r3, [r7, #4] - 800235e: 681b ldr r3, [r3, #0] - 8002360: 430a orrs r2, r1 - 8002362: 60da str r2, [r3, #12] + 8002398: 687b ldr r3, [r7, #4] + 800239a: 681b ldr r3, [r3, #0] + 800239c: 68db ldr r3, [r3, #12] + 800239e: f023 01ff bic.w r1, r3, #255 ; 0xff + 80023a2: 687b ldr r3, [r7, #4] + 80023a4: 695a ldr r2, [r3, #20] + 80023a6: 687b ldr r3, [r7, #4] + 80023a8: 699b ldr r3, [r3, #24] + 80023aa: 431a orrs r2, r3 + 80023ac: 687b ldr r3, [r7, #4] + 80023ae: 681b ldr r3, [r3, #0] + 80023b0: 430a orrs r2, r1 + 80023b2: 60da str r2, [r3, #12] /* Enable the selected I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002364: 687b ldr r3, [r7, #4] - 8002366: 681b ldr r3, [r3, #0] - 8002368: 681a ldr r2, [r3, #0] - 800236a: 687b ldr r3, [r7, #4] - 800236c: 681b ldr r3, [r3, #0] - 800236e: f042 0201 orr.w r2, r2, #1 - 8002372: 601a str r2, [r3, #0] + 80023b4: 687b ldr r3, [r7, #4] + 80023b6: 681b ldr r3, [r3, #0] + 80023b8: 681a ldr r2, [r3, #0] + 80023ba: 687b ldr r3, [r7, #4] + 80023bc: 681b ldr r3, [r3, #0] + 80023be: f042 0201 orr.w r2, r2, #1 + 80023c2: 601a str r2, [r3, #0] hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 8002374: 687b ldr r3, [r7, #4] - 8002376: 2200 movs r2, #0 - 8002378: 641a str r2, [r3, #64] ; 0x40 + 80023c4: 687b ldr r3, [r7, #4] + 80023c6: 2200 movs r2, #0 + 80023c8: 641a str r2, [r3, #64] ; 0x40 hi2c->State = HAL_I2C_STATE_READY; - 800237a: 687b ldr r3, [r7, #4] - 800237c: 2220 movs r2, #32 - 800237e: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80023ca: 687b ldr r3, [r7, #4] + 80023cc: 2220 movs r2, #32 + 80023ce: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->PreviousState = I2C_STATE_NONE; - 8002382: 687b ldr r3, [r7, #4] - 8002384: 2200 movs r2, #0 - 8002386: 631a str r2, [r3, #48] ; 0x30 + 80023d2: 687b ldr r3, [r7, #4] + 80023d4: 2200 movs r2, #0 + 80023d6: 631a str r2, [r3, #48] ; 0x30 hi2c->Mode = HAL_I2C_MODE_NONE; - 8002388: 687b ldr r3, [r7, #4] - 800238a: 2200 movs r2, #0 - 800238c: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80023d8: 687b ldr r3, [r7, #4] + 80023da: 2200 movs r2, #0 + 80023dc: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 8002390: 2300 movs r3, #0 + 80023e0: 2300 movs r3, #0 } - 8002392: 4618 mov r0, r3 - 8002394: 3710 adds r7, #16 - 8002396: 46bd mov sp, r7 - 8002398: bd80 pop {r7, pc} - 800239a: bf00 nop - 800239c: 000186a0 .word 0x000186a0 - 80023a0: 001e847f .word 0x001e847f - 80023a4: 003d08ff .word 0x003d08ff - 80023a8: 431bde83 .word 0x431bde83 - 80023ac: 10624dd3 .word 0x10624dd3 + 80023e2: 4618 mov r0, r3 + 80023e4: 3710 adds r7, #16 + 80023e6: 46bd mov sp, r7 + 80023e8: bd80 pop {r7, pc} + 80023ea: bf00 nop + 80023ec: 000186a0 .word 0x000186a0 + 80023f0: 001e847f .word 0x001e847f + 80023f4: 003d08ff .word 0x003d08ff + 80023f8: 431bde83 .word 0x431bde83 + 80023fc: 10624dd3 .word 0x10624dd3 -080023b0 : +08002400 : * @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) { - 80023b0: b580 push {r7, lr} - 80023b2: b088 sub sp, #32 - 80023b4: af02 add r7, sp, #8 - 80023b6: 60f8 str r0, [r7, #12] - 80023b8: 4608 mov r0, r1 - 80023ba: 4611 mov r1, r2 - 80023bc: 461a mov r2, r3 - 80023be: 4603 mov r3, r0 - 80023c0: 817b strh r3, [r7, #10] - 80023c2: 460b mov r3, r1 - 80023c4: 813b strh r3, [r7, #8] - 80023c6: 4613 mov r3, r2 - 80023c8: 80fb strh r3, [r7, #6] + 8002400: b580 push {r7, lr} + 8002402: b088 sub sp, #32 + 8002404: af02 add r7, sp, #8 + 8002406: 60f8 str r0, [r7, #12] + 8002408: 4608 mov r0, r1 + 800240a: 4611 mov r1, r2 + 800240c: 461a mov r2, r3 + 800240e: 4603 mov r3, r0 + 8002410: 817b strh r3, [r7, #10] + 8002412: 460b mov r3, r1 + 8002414: 813b strh r3, [r7, #8] + 8002416: 4613 mov r3, r2 + 8002418: 80fb strh r3, [r7, #6] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 80023ca: f7ff fbad bl 8001b28 - 80023ce: 6178 str r0, [r7, #20] + 800241a: f7ff fbad bl 8001b78 + 800241e: 6178 str r0, [r7, #20] /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 80023d0: 68fb ldr r3, [r7, #12] - 80023d2: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80023d6: b2db uxtb r3, r3 - 80023d8: 2b20 cmp r3, #32 - 80023da: f040 80d9 bne.w 8002590 + 8002420: 68fb ldr r3, [r7, #12] + 8002422: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002426: b2db uxtb r3, r3 + 8002428: 2b20 cmp r3, #32 + 800242a: f040 80d9 bne.w 80025e0 { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 80023de: 697b ldr r3, [r7, #20] - 80023e0: 9300 str r3, [sp, #0] - 80023e2: 2319 movs r3, #25 - 80023e4: 2201 movs r2, #1 - 80023e6: 496d ldr r1, [pc, #436] ; (800259c ) - 80023e8: 68f8 ldr r0, [r7, #12] - 80023ea: f000 fcc1 bl 8002d70 - 80023ee: 4603 mov r3, r0 - 80023f0: 2b00 cmp r3, #0 - 80023f2: d001 beq.n 80023f8 + 800242e: 697b ldr r3, [r7, #20] + 8002430: 9300 str r3, [sp, #0] + 8002432: 2319 movs r3, #25 + 8002434: 2201 movs r2, #1 + 8002436: 496d ldr r1, [pc, #436] ; (80025ec ) + 8002438: 68f8 ldr r0, [r7, #12] + 800243a: f000 fcc1 bl 8002dc0 + 800243e: 4603 mov r3, r0 + 8002440: 2b00 cmp r3, #0 + 8002442: d001 beq.n 8002448 { return HAL_BUSY; - 80023f4: 2302 movs r3, #2 - 80023f6: e0cc b.n 8002592 + 8002444: 2302 movs r3, #2 + 8002446: e0cc b.n 80025e2 } /* Process Locked */ __HAL_LOCK(hi2c); - 80023f8: 68fb ldr r3, [r7, #12] - 80023fa: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 80023fe: 2b01 cmp r3, #1 - 8002400: d101 bne.n 8002406 - 8002402: 2302 movs r3, #2 - 8002404: e0c5 b.n 8002592 - 8002406: 68fb ldr r3, [r7, #12] - 8002408: 2201 movs r2, #1 - 800240a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002448: 68fb ldr r3, [r7, #12] + 800244a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800244e: 2b01 cmp r3, #1 + 8002450: d101 bne.n 8002456 + 8002452: 2302 movs r3, #2 + 8002454: e0c5 b.n 80025e2 + 8002456: 68fb ldr r3, [r7, #12] + 8002458: 2201 movs r2, #1 + 800245a: 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) - 800240e: 68fb ldr r3, [r7, #12] - 8002410: 681b ldr r3, [r3, #0] - 8002412: 681b ldr r3, [r3, #0] - 8002414: f003 0301 and.w r3, r3, #1 - 8002418: 2b01 cmp r3, #1 - 800241a: d007 beq.n 800242c + 800245e: 68fb ldr r3, [r7, #12] + 8002460: 681b ldr r3, [r3, #0] + 8002462: 681b ldr r3, [r3, #0] + 8002464: f003 0301 and.w r3, r3, #1 + 8002468: 2b01 cmp r3, #1 + 800246a: d007 beq.n 800247c { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 800241c: 68fb ldr r3, [r7, #12] - 800241e: 681b ldr r3, [r3, #0] - 8002420: 681a ldr r2, [r3, #0] - 8002422: 68fb ldr r3, [r7, #12] - 8002424: 681b ldr r3, [r3, #0] - 8002426: f042 0201 orr.w r2, r2, #1 - 800242a: 601a str r2, [r3, #0] + 800246c: 68fb ldr r3, [r7, #12] + 800246e: 681b ldr r3, [r3, #0] + 8002470: 681a ldr r2, [r3, #0] + 8002472: 68fb ldr r3, [r7, #12] + 8002474: 681b ldr r3, [r3, #0] + 8002476: f042 0201 orr.w r2, r2, #1 + 800247a: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 800242c: 68fb ldr r3, [r7, #12] - 800242e: 681b ldr r3, [r3, #0] - 8002430: 681a ldr r2, [r3, #0] - 8002432: 68fb ldr r3, [r7, #12] - 8002434: 681b ldr r3, [r3, #0] - 8002436: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 800243a: 601a str r2, [r3, #0] + 800247c: 68fb ldr r3, [r7, #12] + 800247e: 681b ldr r3, [r3, #0] + 8002480: 681a ldr r2, [r3, #0] + 8002482: 68fb ldr r3, [r7, #12] + 8002484: 681b ldr r3, [r3, #0] + 8002486: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 800248a: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_TX; - 800243c: 68fb ldr r3, [r7, #12] - 800243e: 2221 movs r2, #33 ; 0x21 - 8002440: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800248c: 68fb ldr r3, [r7, #12] + 800248e: 2221 movs r2, #33 ; 0x21 + 8002490: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 8002444: 68fb ldr r3, [r7, #12] - 8002446: 2240 movs r2, #64 ; 0x40 - 8002448: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002494: 68fb ldr r3, [r7, #12] + 8002496: 2240 movs r2, #64 ; 0x40 + 8002498: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 800244c: 68fb ldr r3, [r7, #12] - 800244e: 2200 movs r2, #0 - 8002450: 641a str r2, [r3, #64] ; 0x40 + 800249c: 68fb ldr r3, [r7, #12] + 800249e: 2200 movs r2, #0 + 80024a0: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 8002452: 68fb ldr r3, [r7, #12] - 8002454: 6a3a ldr r2, [r7, #32] - 8002456: 625a str r2, [r3, #36] ; 0x24 + 80024a2: 68fb ldr r3, [r7, #12] + 80024a4: 6a3a ldr r2, [r7, #32] + 80024a6: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 8002458: 68fb ldr r3, [r7, #12] - 800245a: 8cba ldrh r2, [r7, #36] ; 0x24 - 800245c: 855a strh r2, [r3, #42] ; 0x2a + 80024a8: 68fb ldr r3, [r7, #12] + 80024aa: 8cba ldrh r2, [r7, #36] ; 0x24 + 80024ac: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 800245e: 68fb ldr r3, [r7, #12] - 8002460: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002462: b29a uxth r2, r3 - 8002464: 68fb ldr r3, [r7, #12] - 8002466: 851a strh r2, [r3, #40] ; 0x28 + 80024ae: 68fb ldr r3, [r7, #12] + 80024b0: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80024b2: b29a uxth r2, r3 + 80024b4: 68fb ldr r3, [r7, #12] + 80024b6: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 8002468: 68fb ldr r3, [r7, #12] - 800246a: 4a4d ldr r2, [pc, #308] ; (80025a0 ) - 800246c: 62da str r2, [r3, #44] ; 0x2c + 80024b8: 68fb ldr r3, [r7, #12] + 80024ba: 4a4d ldr r2, [pc, #308] ; (80025f0 ) + 80024bc: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 800246e: 88f8 ldrh r0, [r7, #6] - 8002470: 893a ldrh r2, [r7, #8] - 8002472: 8979 ldrh r1, [r7, #10] - 8002474: 697b ldr r3, [r7, #20] - 8002476: 9301 str r3, [sp, #4] - 8002478: 6abb ldr r3, [r7, #40] ; 0x28 - 800247a: 9300 str r3, [sp, #0] - 800247c: 4603 mov r3, r0 - 800247e: 68f8 ldr r0, [r7, #12] - 8002480: f000 faf8 bl 8002a74 - 8002484: 4603 mov r3, r0 - 8002486: 2b00 cmp r3, #0 - 8002488: d052 beq.n 8002530 + 80024be: 88f8 ldrh r0, [r7, #6] + 80024c0: 893a ldrh r2, [r7, #8] + 80024c2: 8979 ldrh r1, [r7, #10] + 80024c4: 697b ldr r3, [r7, #20] + 80024c6: 9301 str r3, [sp, #4] + 80024c8: 6abb ldr r3, [r7, #40] ; 0x28 + 80024ca: 9300 str r3, [sp, #0] + 80024cc: 4603 mov r3, r0 + 80024ce: 68f8 ldr r0, [r7, #12] + 80024d0: f000 faf8 bl 8002ac4 + 80024d4: 4603 mov r3, r0 + 80024d6: 2b00 cmp r3, #0 + 80024d8: d052 beq.n 8002580 { return HAL_ERROR; - 800248a: 2301 movs r3, #1 - 800248c: e081 b.n 8002592 + 80024da: 2301 movs r3, #1 + 80024dc: e081 b.n 80025e2 } while (hi2c->XferSize > 0U) { /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 800248e: 697a ldr r2, [r7, #20] - 8002490: 6ab9 ldr r1, [r7, #40] ; 0x28 - 8002492: 68f8 ldr r0, [r7, #12] - 8002494: f000 fd42 bl 8002f1c - 8002498: 4603 mov r3, r0 - 800249a: 2b00 cmp r3, #0 - 800249c: d00d beq.n 80024ba + 80024de: 697a ldr r2, [r7, #20] + 80024e0: 6ab9 ldr r1, [r7, #40] ; 0x28 + 80024e2: 68f8 ldr r0, [r7, #12] + 80024e4: f000 fd42 bl 8002f6c + 80024e8: 4603 mov r3, r0 + 80024ea: 2b00 cmp r3, #0 + 80024ec: d00d beq.n 800250a { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 800249e: 68fb ldr r3, [r7, #12] - 80024a0: 6c1b ldr r3, [r3, #64] ; 0x40 - 80024a2: 2b04 cmp r3, #4 - 80024a4: d107 bne.n 80024b6 + 80024ee: 68fb ldr r3, [r7, #12] + 80024f0: 6c1b ldr r3, [r3, #64] ; 0x40 + 80024f2: 2b04 cmp r3, #4 + 80024f4: d107 bne.n 8002506 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80024a6: 68fb ldr r3, [r7, #12] - 80024a8: 681b ldr r3, [r3, #0] - 80024aa: 681a ldr r2, [r3, #0] - 80024ac: 68fb ldr r3, [r7, #12] - 80024ae: 681b ldr r3, [r3, #0] - 80024b0: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80024b4: 601a str r2, [r3, #0] + 80024f6: 68fb ldr r3, [r7, #12] + 80024f8: 681b ldr r3, [r3, #0] + 80024fa: 681a ldr r2, [r3, #0] + 80024fc: 68fb ldr r3, [r7, #12] + 80024fe: 681b ldr r3, [r3, #0] + 8002500: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002504: 601a str r2, [r3, #0] } return HAL_ERROR; - 80024b6: 2301 movs r3, #1 - 80024b8: e06b b.n 8002592 + 8002506: 2301 movs r3, #1 + 8002508: e06b b.n 80025e2 } /* Write data to DR */ hi2c->Instance->DR = *hi2c->pBuffPtr; - 80024ba: 68fb ldr r3, [r7, #12] - 80024bc: 6a5b ldr r3, [r3, #36] ; 0x24 - 80024be: 781a ldrb r2, [r3, #0] - 80024c0: 68fb ldr r3, [r7, #12] - 80024c2: 681b ldr r3, [r3, #0] - 80024c4: 611a str r2, [r3, #16] + 800250a: 68fb ldr r3, [r7, #12] + 800250c: 6a5b ldr r3, [r3, #36] ; 0x24 + 800250e: 781a ldrb r2, [r3, #0] + 8002510: 68fb ldr r3, [r7, #12] + 8002512: 681b ldr r3, [r3, #0] + 8002514: 611a str r2, [r3, #16] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80024c6: 68fb ldr r3, [r7, #12] - 80024c8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80024ca: 1c5a adds r2, r3, #1 - 80024cc: 68fb ldr r3, [r7, #12] - 80024ce: 625a str r2, [r3, #36] ; 0x24 + 8002516: 68fb ldr r3, [r7, #12] + 8002518: 6a5b ldr r3, [r3, #36] ; 0x24 + 800251a: 1c5a adds r2, r3, #1 + 800251c: 68fb ldr r3, [r7, #12] + 800251e: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80024d0: 68fb ldr r3, [r7, #12] - 80024d2: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80024d4: 3b01 subs r3, #1 - 80024d6: b29a uxth r2, r3 - 80024d8: 68fb ldr r3, [r7, #12] - 80024da: 851a strh r2, [r3, #40] ; 0x28 + 8002520: 68fb ldr r3, [r7, #12] + 8002522: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002524: 3b01 subs r3, #1 + 8002526: b29a uxth r2, r3 + 8002528: 68fb ldr r3, [r7, #12] + 800252a: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80024dc: 68fb ldr r3, [r7, #12] - 80024de: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80024e0: b29b uxth r3, r3 - 80024e2: 3b01 subs r3, #1 - 80024e4: b29a uxth r2, r3 - 80024e6: 68fb ldr r3, [r7, #12] - 80024e8: 855a strh r2, [r3, #42] ; 0x2a + 800252c: 68fb ldr r3, [r7, #12] + 800252e: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002530: b29b uxth r3, r3 + 8002532: 3b01 subs r3, #1 + 8002534: b29a uxth r2, r3 + 8002536: 68fb ldr r3, [r7, #12] + 8002538: 855a strh r2, [r3, #42] ; 0x2a if ((__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) && (hi2c->XferSize != 0U)) - 80024ea: 68fb ldr r3, [r7, #12] - 80024ec: 681b ldr r3, [r3, #0] - 80024ee: 695b ldr r3, [r3, #20] - 80024f0: f003 0304 and.w r3, r3, #4 - 80024f4: 2b04 cmp r3, #4 - 80024f6: d11b bne.n 8002530 - 80024f8: 68fb ldr r3, [r7, #12] - 80024fa: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80024fc: 2b00 cmp r3, #0 - 80024fe: d017 beq.n 8002530 + 800253a: 68fb ldr r3, [r7, #12] + 800253c: 681b ldr r3, [r3, #0] + 800253e: 695b ldr r3, [r3, #20] + 8002540: f003 0304 and.w r3, r3, #4 + 8002544: 2b04 cmp r3, #4 + 8002546: d11b bne.n 8002580 + 8002548: 68fb ldr r3, [r7, #12] + 800254a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800254c: 2b00 cmp r3, #0 + 800254e: d017 beq.n 8002580 { /* Write data to DR */ hi2c->Instance->DR = *hi2c->pBuffPtr; - 8002500: 68fb ldr r3, [r7, #12] - 8002502: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002504: 781a ldrb r2, [r3, #0] - 8002506: 68fb ldr r3, [r7, #12] - 8002508: 681b ldr r3, [r3, #0] - 800250a: 611a str r2, [r3, #16] + 8002550: 68fb ldr r3, [r7, #12] + 8002552: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002554: 781a ldrb r2, [r3, #0] + 8002556: 68fb ldr r3, [r7, #12] + 8002558: 681b ldr r3, [r3, #0] + 800255a: 611a str r2, [r3, #16] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800250c: 68fb ldr r3, [r7, #12] - 800250e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002510: 1c5a adds r2, r3, #1 - 8002512: 68fb ldr r3, [r7, #12] - 8002514: 625a str r2, [r3, #36] ; 0x24 + 800255c: 68fb ldr r3, [r7, #12] + 800255e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002560: 1c5a adds r2, r3, #1 + 8002562: 68fb ldr r3, [r7, #12] + 8002564: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002516: 68fb ldr r3, [r7, #12] - 8002518: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800251a: 3b01 subs r3, #1 - 800251c: b29a uxth r2, r3 - 800251e: 68fb ldr r3, [r7, #12] - 8002520: 851a strh r2, [r3, #40] ; 0x28 + 8002566: 68fb ldr r3, [r7, #12] + 8002568: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800256a: 3b01 subs r3, #1 + 800256c: b29a uxth r2, r3 + 800256e: 68fb ldr r3, [r7, #12] + 8002570: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002522: 68fb ldr r3, [r7, #12] - 8002524: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002526: b29b uxth r3, r3 - 8002528: 3b01 subs r3, #1 - 800252a: b29a uxth r2, r3 - 800252c: 68fb ldr r3, [r7, #12] - 800252e: 855a strh r2, [r3, #42] ; 0x2a + 8002572: 68fb ldr r3, [r7, #12] + 8002574: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002576: b29b uxth r3, r3 + 8002578: 3b01 subs r3, #1 + 800257a: b29a uxth r2, r3 + 800257c: 68fb ldr r3, [r7, #12] + 800257e: 855a strh r2, [r3, #42] ; 0x2a while (hi2c->XferSize > 0U) - 8002530: 68fb ldr r3, [r7, #12] - 8002532: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002534: 2b00 cmp r3, #0 - 8002536: d1aa bne.n 800248e + 8002580: 68fb ldr r3, [r7, #12] + 8002582: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002584: 2b00 cmp r3, #0 + 8002586: d1aa bne.n 80024de } } /* Wait until BTF flag is set */ if (I2C_WaitOnBTFFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 8002538: 697a ldr r2, [r7, #20] - 800253a: 6ab9 ldr r1, [r7, #40] ; 0x28 - 800253c: 68f8 ldr r0, [r7, #12] - 800253e: f000 fd2e bl 8002f9e - 8002542: 4603 mov r3, r0 - 8002544: 2b00 cmp r3, #0 - 8002546: d00d beq.n 8002564 + 8002588: 697a ldr r2, [r7, #20] + 800258a: 6ab9 ldr r1, [r7, #40] ; 0x28 + 800258c: 68f8 ldr r0, [r7, #12] + 800258e: f000 fd2e bl 8002fee + 8002592: 4603 mov r3, r0 + 8002594: 2b00 cmp r3, #0 + 8002596: d00d beq.n 80025b4 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002548: 68fb ldr r3, [r7, #12] - 800254a: 6c1b ldr r3, [r3, #64] ; 0x40 - 800254c: 2b04 cmp r3, #4 - 800254e: d107 bne.n 8002560 + 8002598: 68fb ldr r3, [r7, #12] + 800259a: 6c1b ldr r3, [r3, #64] ; 0x40 + 800259c: 2b04 cmp r3, #4 + 800259e: d107 bne.n 80025b0 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002550: 68fb ldr r3, [r7, #12] - 8002552: 681b ldr r3, [r3, #0] - 8002554: 681a ldr r2, [r3, #0] - 8002556: 68fb ldr r3, [r7, #12] - 8002558: 681b ldr r3, [r3, #0] - 800255a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800255e: 601a str r2, [r3, #0] + 80025a0: 68fb ldr r3, [r7, #12] + 80025a2: 681b ldr r3, [r3, #0] + 80025a4: 681a ldr r2, [r3, #0] + 80025a6: 68fb ldr r3, [r7, #12] + 80025a8: 681b ldr r3, [r3, #0] + 80025aa: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80025ae: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002560: 2301 movs r3, #1 - 8002562: e016 b.n 8002592 + 80025b0: 2301 movs r3, #1 + 80025b2: e016 b.n 80025e2 } /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002564: 68fb ldr r3, [r7, #12] - 8002566: 681b ldr r3, [r3, #0] - 8002568: 681a ldr r2, [r3, #0] - 800256a: 68fb ldr r3, [r7, #12] - 800256c: 681b ldr r3, [r3, #0] - 800256e: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002572: 601a str r2, [r3, #0] + 80025b4: 68fb ldr r3, [r7, #12] + 80025b6: 681b ldr r3, [r3, #0] + 80025b8: 681a ldr r2, [r3, #0] + 80025ba: 68fb ldr r3, [r7, #12] + 80025bc: 681b ldr r3, [r3, #0] + 80025be: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80025c2: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_READY; - 8002574: 68fb ldr r3, [r7, #12] - 8002576: 2220 movs r2, #32 - 8002578: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80025c4: 68fb ldr r3, [r7, #12] + 80025c6: 2220 movs r2, #32 + 80025c8: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 800257c: 68fb ldr r3, [r7, #12] - 800257e: 2200 movs r2, #0 - 8002580: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80025cc: 68fb ldr r3, [r7, #12] + 80025ce: 2200 movs r2, #0 + 80025d0: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002584: 68fb ldr r3, [r7, #12] - 8002586: 2200 movs r2, #0 - 8002588: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80025d4: 68fb ldr r3, [r7, #12] + 80025d6: 2200 movs r2, #0 + 80025d8: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 800258c: 2300 movs r3, #0 - 800258e: e000 b.n 8002592 + 80025dc: 2300 movs r3, #0 + 80025de: e000 b.n 80025e2 } else { return HAL_BUSY; - 8002590: 2302 movs r3, #2 + 80025e0: 2302 movs r3, #2 } } - 8002592: 4618 mov r0, r3 - 8002594: 3718 adds r7, #24 - 8002596: 46bd mov sp, r7 - 8002598: bd80 pop {r7, pc} - 800259a: bf00 nop - 800259c: 00100002 .word 0x00100002 - 80025a0: ffff0000 .word 0xffff0000 + 80025e2: 4618 mov r0, r3 + 80025e4: 3718 adds r7, #24 + 80025e6: 46bd mov sp, r7 + 80025e8: bd80 pop {r7, pc} + 80025ea: bf00 nop + 80025ec: 00100002 .word 0x00100002 + 80025f0: ffff0000 .word 0xffff0000 -080025a4 : +080025f4 : * @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) { - 80025a4: b580 push {r7, lr} - 80025a6: b08c sub sp, #48 ; 0x30 - 80025a8: af02 add r7, sp, #8 - 80025aa: 60f8 str r0, [r7, #12] - 80025ac: 4608 mov r0, r1 - 80025ae: 4611 mov r1, r2 - 80025b0: 461a mov r2, r3 - 80025b2: 4603 mov r3, r0 - 80025b4: 817b strh r3, [r7, #10] - 80025b6: 460b mov r3, r1 - 80025b8: 813b strh r3, [r7, #8] - 80025ba: 4613 mov r3, r2 - 80025bc: 80fb strh r3, [r7, #6] + 80025f4: b580 push {r7, lr} + 80025f6: b08c sub sp, #48 ; 0x30 + 80025f8: af02 add r7, sp, #8 + 80025fa: 60f8 str r0, [r7, #12] + 80025fc: 4608 mov r0, r1 + 80025fe: 4611 mov r1, r2 + 8002600: 461a mov r2, r3 + 8002602: 4603 mov r3, r0 + 8002604: 817b strh r3, [r7, #10] + 8002606: 460b mov r3, r1 + 8002608: 813b strh r3, [r7, #8] + 800260a: 4613 mov r3, r2 + 800260c: 80fb strh r3, [r7, #6] __IO uint32_t count = 0U; - 80025be: 2300 movs r3, #0 - 80025c0: 623b str r3, [r7, #32] + 800260e: 2300 movs r3, #0 + 8002610: 623b str r3, [r7, #32] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 80025c2: f7ff fab1 bl 8001b28 - 80025c6: 6278 str r0, [r7, #36] ; 0x24 + 8002612: f7ff fab1 bl 8001b78 + 8002616: 6278 str r0, [r7, #36] ; 0x24 /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 80025c8: 68fb ldr r3, [r7, #12] - 80025ca: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80025ce: b2db uxtb r3, r3 - 80025d0: 2b20 cmp r3, #32 - 80025d2: f040 8244 bne.w 8002a5e + 8002618: 68fb ldr r3, [r7, #12] + 800261a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 800261e: b2db uxtb r3, r3 + 8002620: 2b20 cmp r3, #32 + 8002622: f040 8244 bne.w 8002aae { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 80025d6: 6a7b ldr r3, [r7, #36] ; 0x24 - 80025d8: 9300 str r3, [sp, #0] - 80025da: 2319 movs r3, #25 - 80025dc: 2201 movs r2, #1 - 80025de: 4982 ldr r1, [pc, #520] ; (80027e8 ) - 80025e0: 68f8 ldr r0, [r7, #12] - 80025e2: f000 fbc5 bl 8002d70 - 80025e6: 4603 mov r3, r0 - 80025e8: 2b00 cmp r3, #0 - 80025ea: d001 beq.n 80025f0 + 8002626: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002628: 9300 str r3, [sp, #0] + 800262a: 2319 movs r3, #25 + 800262c: 2201 movs r2, #1 + 800262e: 4982 ldr r1, [pc, #520] ; (8002838 ) + 8002630: 68f8 ldr r0, [r7, #12] + 8002632: f000 fbc5 bl 8002dc0 + 8002636: 4603 mov r3, r0 + 8002638: 2b00 cmp r3, #0 + 800263a: d001 beq.n 8002640 { return HAL_BUSY; - 80025ec: 2302 movs r3, #2 - 80025ee: e237 b.n 8002a60 + 800263c: 2302 movs r3, #2 + 800263e: e237 b.n 8002ab0 } /* Process Locked */ __HAL_LOCK(hi2c); - 80025f0: 68fb ldr r3, [r7, #12] - 80025f2: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 80025f6: 2b01 cmp r3, #1 - 80025f8: d101 bne.n 80025fe - 80025fa: 2302 movs r3, #2 - 80025fc: e230 b.n 8002a60 - 80025fe: 68fb ldr r3, [r7, #12] - 8002600: 2201 movs r2, #1 - 8002602: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002640: 68fb ldr r3, [r7, #12] + 8002642: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8002646: 2b01 cmp r3, #1 + 8002648: d101 bne.n 800264e + 800264a: 2302 movs r3, #2 + 800264c: e230 b.n 8002ab0 + 800264e: 68fb ldr r3, [r7, #12] + 8002650: 2201 movs r2, #1 + 8002652: 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) - 8002606: 68fb ldr r3, [r7, #12] - 8002608: 681b ldr r3, [r3, #0] - 800260a: 681b ldr r3, [r3, #0] - 800260c: f003 0301 and.w r3, r3, #1 - 8002610: 2b01 cmp r3, #1 - 8002612: d007 beq.n 8002624 + 8002656: 68fb ldr r3, [r7, #12] + 8002658: 681b ldr r3, [r3, #0] + 800265a: 681b ldr r3, [r3, #0] + 800265c: f003 0301 and.w r3, r3, #1 + 8002660: 2b01 cmp r3, #1 + 8002662: d007 beq.n 8002674 { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002614: 68fb ldr r3, [r7, #12] - 8002616: 681b ldr r3, [r3, #0] - 8002618: 681a ldr r2, [r3, #0] - 800261a: 68fb ldr r3, [r7, #12] - 800261c: 681b ldr r3, [r3, #0] - 800261e: f042 0201 orr.w r2, r2, #1 - 8002622: 601a str r2, [r3, #0] + 8002664: 68fb ldr r3, [r7, #12] + 8002666: 681b ldr r3, [r3, #0] + 8002668: 681a ldr r2, [r3, #0] + 800266a: 68fb ldr r3, [r7, #12] + 800266c: 681b ldr r3, [r3, #0] + 800266e: f042 0201 orr.w r2, r2, #1 + 8002672: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 8002624: 68fb ldr r3, [r7, #12] - 8002626: 681b ldr r3, [r3, #0] - 8002628: 681a ldr r2, [r3, #0] - 800262a: 68fb ldr r3, [r7, #12] - 800262c: 681b ldr r3, [r3, #0] - 800262e: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 8002632: 601a str r2, [r3, #0] + 8002674: 68fb ldr r3, [r7, #12] + 8002676: 681b ldr r3, [r3, #0] + 8002678: 681a ldr r2, [r3, #0] + 800267a: 68fb ldr r3, [r7, #12] + 800267c: 681b ldr r3, [r3, #0] + 800267e: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 8002682: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_RX; - 8002634: 68fb ldr r3, [r7, #12] - 8002636: 2222 movs r2, #34 ; 0x22 - 8002638: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002684: 68fb ldr r3, [r7, #12] + 8002686: 2222 movs r2, #34 ; 0x22 + 8002688: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 800263c: 68fb ldr r3, [r7, #12] - 800263e: 2240 movs r2, #64 ; 0x40 - 8002640: f883 203e strb.w r2, [r3, #62] ; 0x3e + 800268c: 68fb ldr r3, [r7, #12] + 800268e: 2240 movs r2, #64 ; 0x40 + 8002690: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 8002644: 68fb ldr r3, [r7, #12] - 8002646: 2200 movs r2, #0 - 8002648: 641a str r2, [r3, #64] ; 0x40 + 8002694: 68fb ldr r3, [r7, #12] + 8002696: 2200 movs r2, #0 + 8002698: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 800264a: 68fb ldr r3, [r7, #12] - 800264c: 6b3a ldr r2, [r7, #48] ; 0x30 - 800264e: 625a str r2, [r3, #36] ; 0x24 + 800269a: 68fb ldr r3, [r7, #12] + 800269c: 6b3a ldr r2, [r7, #48] ; 0x30 + 800269e: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 8002650: 68fb ldr r3, [r7, #12] - 8002652: 8eba ldrh r2, [r7, #52] ; 0x34 - 8002654: 855a strh r2, [r3, #42] ; 0x2a + 80026a0: 68fb ldr r3, [r7, #12] + 80026a2: 8eba ldrh r2, [r7, #52] ; 0x34 + 80026a4: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 8002656: 68fb ldr r3, [r7, #12] - 8002658: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800265a: b29a uxth r2, r3 - 800265c: 68fb ldr r3, [r7, #12] - 800265e: 851a strh r2, [r3, #40] ; 0x28 + 80026a6: 68fb ldr r3, [r7, #12] + 80026a8: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80026aa: b29a uxth r2, r3 + 80026ac: 68fb ldr r3, [r7, #12] + 80026ae: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 8002660: 68fb ldr r3, [r7, #12] - 8002662: 4a62 ldr r2, [pc, #392] ; (80027ec ) - 8002664: 62da str r2, [r3, #44] ; 0x2c + 80026b0: 68fb ldr r3, [r7, #12] + 80026b2: 4a62 ldr r2, [pc, #392] ; (800283c ) + 80026b4: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 8002666: 88f8 ldrh r0, [r7, #6] - 8002668: 893a ldrh r2, [r7, #8] - 800266a: 8979 ldrh r1, [r7, #10] - 800266c: 6a7b ldr r3, [r7, #36] ; 0x24 - 800266e: 9301 str r3, [sp, #4] - 8002670: 6bbb ldr r3, [r7, #56] ; 0x38 - 8002672: 9300 str r3, [sp, #0] - 8002674: 4603 mov r3, r0 - 8002676: 68f8 ldr r0, [r7, #12] - 8002678: f000 fa92 bl 8002ba0 - 800267c: 4603 mov r3, r0 - 800267e: 2b00 cmp r3, #0 - 8002680: d001 beq.n 8002686 + 80026b6: 88f8 ldrh r0, [r7, #6] + 80026b8: 893a ldrh r2, [r7, #8] + 80026ba: 8979 ldrh r1, [r7, #10] + 80026bc: 6a7b ldr r3, [r7, #36] ; 0x24 + 80026be: 9301 str r3, [sp, #4] + 80026c0: 6bbb ldr r3, [r7, #56] ; 0x38 + 80026c2: 9300 str r3, [sp, #0] + 80026c4: 4603 mov r3, r0 + 80026c6: 68f8 ldr r0, [r7, #12] + 80026c8: f000 fa92 bl 8002bf0 + 80026cc: 4603 mov r3, r0 + 80026ce: 2b00 cmp r3, #0 + 80026d0: d001 beq.n 80026d6 { return HAL_ERROR; - 8002682: 2301 movs r3, #1 - 8002684: e1ec b.n 8002a60 + 80026d2: 2301 movs r3, #1 + 80026d4: e1ec b.n 8002ab0 } if (hi2c->XferSize == 0U) - 8002686: 68fb ldr r3, [r7, #12] - 8002688: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800268a: 2b00 cmp r3, #0 - 800268c: d113 bne.n 80026b6 + 80026d6: 68fb ldr r3, [r7, #12] + 80026d8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80026da: 2b00 cmp r3, #0 + 80026dc: d113 bne.n 8002706 { /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 800268e: 2300 movs r3, #0 - 8002690: 61fb str r3, [r7, #28] - 8002692: 68fb ldr r3, [r7, #12] - 8002694: 681b ldr r3, [r3, #0] - 8002696: 695b ldr r3, [r3, #20] - 8002698: 61fb str r3, [r7, #28] - 800269a: 68fb ldr r3, [r7, #12] - 800269c: 681b ldr r3, [r3, #0] - 800269e: 699b ldr r3, [r3, #24] - 80026a0: 61fb str r3, [r7, #28] - 80026a2: 69fb ldr r3, [r7, #28] + 80026de: 2300 movs r3, #0 + 80026e0: 61fb str r3, [r7, #28] + 80026e2: 68fb ldr r3, [r7, #12] + 80026e4: 681b ldr r3, [r3, #0] + 80026e6: 695b ldr r3, [r3, #20] + 80026e8: 61fb str r3, [r7, #28] + 80026ea: 68fb ldr r3, [r7, #12] + 80026ec: 681b ldr r3, [r3, #0] + 80026ee: 699b ldr r3, [r3, #24] + 80026f0: 61fb str r3, [r7, #28] + 80026f2: 69fb ldr r3, [r7, #28] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80026a4: 68fb ldr r3, [r7, #12] - 80026a6: 681b ldr r3, [r3, #0] - 80026a8: 681a ldr r2, [r3, #0] - 80026aa: 68fb ldr r3, [r7, #12] - 80026ac: 681b ldr r3, [r3, #0] - 80026ae: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80026b2: 601a str r2, [r3, #0] - 80026b4: e1c0 b.n 8002a38 + 80026f4: 68fb ldr r3, [r7, #12] + 80026f6: 681b ldr r3, [r3, #0] + 80026f8: 681a ldr r2, [r3, #0] + 80026fa: 68fb ldr r3, [r7, #12] + 80026fc: 681b ldr r3, [r3, #0] + 80026fe: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002702: 601a str r2, [r3, #0] + 8002704: e1c0 b.n 8002a88 } else if (hi2c->XferSize == 1U) - 80026b6: 68fb ldr r3, [r7, #12] - 80026b8: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80026ba: 2b01 cmp r3, #1 - 80026bc: d11e bne.n 80026fc + 8002706: 68fb ldr r3, [r7, #12] + 8002708: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800270a: 2b01 cmp r3, #1 + 800270c: d11e bne.n 800274c { /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80026be: 68fb ldr r3, [r7, #12] - 80026c0: 681b ldr r3, [r3, #0] - 80026c2: 681a ldr r2, [r3, #0] - 80026c4: 68fb ldr r3, [r7, #12] - 80026c6: 681b ldr r3, [r3, #0] - 80026c8: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 80026cc: 601a str r2, [r3, #0] + 800270e: 68fb ldr r3, [r7, #12] + 8002710: 681b ldr r3, [r3, #0] + 8002712: 681a ldr r2, [r3, #0] + 8002714: 68fb ldr r3, [r7, #12] + 8002716: 681b ldr r3, [r3, #0] + 8002718: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 800271c: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 80026ce: b672 cpsid i + 800271e: b672 cpsid i } - 80026d0: bf00 nop + 8002720: 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); - 80026d2: 2300 movs r3, #0 - 80026d4: 61bb str r3, [r7, #24] - 80026d6: 68fb ldr r3, [r7, #12] - 80026d8: 681b ldr r3, [r3, #0] - 80026da: 695b ldr r3, [r3, #20] - 80026dc: 61bb str r3, [r7, #24] - 80026de: 68fb ldr r3, [r7, #12] - 80026e0: 681b ldr r3, [r3, #0] - 80026e2: 699b ldr r3, [r3, #24] - 80026e4: 61bb str r3, [r7, #24] - 80026e6: 69bb ldr r3, [r7, #24] + 8002722: 2300 movs r3, #0 + 8002724: 61bb str r3, [r7, #24] + 8002726: 68fb ldr r3, [r7, #12] + 8002728: 681b ldr r3, [r3, #0] + 800272a: 695b ldr r3, [r3, #20] + 800272c: 61bb str r3, [r7, #24] + 800272e: 68fb ldr r3, [r7, #12] + 8002730: 681b ldr r3, [r3, #0] + 8002732: 699b ldr r3, [r3, #24] + 8002734: 61bb str r3, [r7, #24] + 8002736: 69bb ldr r3, [r7, #24] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80026e8: 68fb ldr r3, [r7, #12] - 80026ea: 681b ldr r3, [r3, #0] - 80026ec: 681a ldr r2, [r3, #0] - 80026ee: 68fb ldr r3, [r7, #12] - 80026f0: 681b ldr r3, [r3, #0] - 80026f2: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80026f6: 601a str r2, [r3, #0] + 8002738: 68fb ldr r3, [r7, #12] + 800273a: 681b ldr r3, [r3, #0] + 800273c: 681a ldr r2, [r3, #0] + 800273e: 68fb ldr r3, [r7, #12] + 8002740: 681b ldr r3, [r3, #0] + 8002742: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002746: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 80026f8: b662 cpsie i + 8002748: b662 cpsie i } - 80026fa: e035 b.n 8002768 + 800274a: e035 b.n 80027b8 /* Re-enable IRQs */ __enable_irq(); } else if (hi2c->XferSize == 2U) - 80026fc: 68fb ldr r3, [r7, #12] - 80026fe: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002700: 2b02 cmp r3, #2 - 8002702: d11e bne.n 8002742 + 800274c: 68fb ldr r3, [r7, #12] + 800274e: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002750: 2b02 cmp r3, #2 + 8002752: d11e bne.n 8002792 { /* Enable Pos */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 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: f442 6200 orr.w r2, r2, #2048 ; 0x800 - 8002712: 601a str r2, [r3, #0] + 8002754: 68fb ldr r3, [r7, #12] + 8002756: 681b ldr r3, [r3, #0] + 8002758: 681a ldr r2, [r3, #0] + 800275a: 68fb ldr r3, [r7, #12] + 800275c: 681b ldr r3, [r3, #0] + 800275e: f442 6200 orr.w r2, r2, #2048 ; 0x800 + 8002762: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 8002714: b672 cpsid i + 8002764: b672 cpsid i } - 8002716: bf00 nop + 8002766: 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); - 8002718: 2300 movs r3, #0 - 800271a: 617b str r3, [r7, #20] - 800271c: 68fb ldr r3, [r7, #12] - 800271e: 681b ldr r3, [r3, #0] - 8002720: 695b ldr r3, [r3, #20] - 8002722: 617b str r3, [r7, #20] - 8002724: 68fb ldr r3, [r7, #12] - 8002726: 681b ldr r3, [r3, #0] - 8002728: 699b ldr r3, [r3, #24] - 800272a: 617b str r3, [r7, #20] - 800272c: 697b ldr r3, [r7, #20] + 8002768: 2300 movs r3, #0 + 800276a: 617b str r3, [r7, #20] + 800276c: 68fb ldr r3, [r7, #12] + 800276e: 681b ldr r3, [r3, #0] + 8002770: 695b ldr r3, [r3, #20] + 8002772: 617b str r3, [r7, #20] + 8002774: 68fb ldr r3, [r7, #12] + 8002776: 681b ldr r3, [r3, #0] + 8002778: 699b ldr r3, [r3, #24] + 800277a: 617b str r3, [r7, #20] + 800277c: 697b ldr r3, [r7, #20] /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 800272e: 68fb ldr r3, [r7, #12] - 8002730: 681b ldr r3, [r3, #0] - 8002732: 681a ldr r2, [r3, #0] - 8002734: 68fb ldr r3, [r7, #12] - 8002736: 681b ldr r3, [r3, #0] - 8002738: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 800273c: 601a str r2, [r3, #0] + 800277e: 68fb ldr r3, [r7, #12] + 8002780: 681b ldr r3, [r3, #0] + 8002782: 681a ldr r2, [r3, #0] + 8002784: 68fb ldr r3, [r7, #12] + 8002786: 681b ldr r3, [r3, #0] + 8002788: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 800278c: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 800273e: b662 cpsie i + 800278e: b662 cpsie i } - 8002740: e012 b.n 8002768 + 8002790: e012 b.n 80027b8 __enable_irq(); } else { /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002742: 68fb ldr r3, [r7, #12] - 8002744: 681b ldr r3, [r3, #0] - 8002746: 681a ldr r2, [r3, #0] - 8002748: 68fb ldr r3, [r7, #12] - 800274a: 681b ldr r3, [r3, #0] - 800274c: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 8002750: 601a str r2, [r3, #0] + 8002792: 68fb ldr r3, [r7, #12] + 8002794: 681b ldr r3, [r3, #0] + 8002796: 681a ldr r2, [r3, #0] + 8002798: 68fb ldr r3, [r7, #12] + 800279a: 681b ldr r3, [r3, #0] + 800279c: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 80027a0: 601a str r2, [r3, #0] /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002752: 2300 movs r3, #0 - 8002754: 613b str r3, [r7, #16] - 8002756: 68fb ldr r3, [r7, #12] - 8002758: 681b ldr r3, [r3, #0] - 800275a: 695b ldr r3, [r3, #20] - 800275c: 613b str r3, [r7, #16] - 800275e: 68fb ldr r3, [r7, #12] - 8002760: 681b ldr r3, [r3, #0] - 8002762: 699b ldr r3, [r3, #24] - 8002764: 613b str r3, [r7, #16] - 8002766: 693b ldr r3, [r7, #16] + 80027a2: 2300 movs r3, #0 + 80027a4: 613b str r3, [r7, #16] + 80027a6: 68fb ldr r3, [r7, #12] + 80027a8: 681b ldr r3, [r3, #0] + 80027aa: 695b ldr r3, [r3, #20] + 80027ac: 613b str r3, [r7, #16] + 80027ae: 68fb ldr r3, [r7, #12] + 80027b0: 681b ldr r3, [r3, #0] + 80027b2: 699b ldr r3, [r3, #24] + 80027b4: 613b str r3, [r7, #16] + 80027b6: 693b ldr r3, [r7, #16] } while (hi2c->XferSize > 0U) - 8002768: e166 b.n 8002a38 + 80027b8: e166 b.n 8002a88 { if (hi2c->XferSize <= 3U) - 800276a: 68fb ldr r3, [r7, #12] - 800276c: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800276e: 2b03 cmp r3, #3 - 8002770: f200 811f bhi.w 80029b2 + 80027ba: 68fb ldr r3, [r7, #12] + 80027bc: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80027be: 2b03 cmp r3, #3 + 80027c0: f200 811f bhi.w 8002a02 { /* One byte */ if (hi2c->XferSize == 1U) - 8002774: 68fb ldr r3, [r7, #12] - 8002776: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002778: 2b01 cmp r3, #1 - 800277a: d123 bne.n 80027c4 + 80027c4: 68fb ldr r3, [r7, #12] + 80027c6: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80027c8: 2b01 cmp r3, #1 + 80027ca: d123 bne.n 8002814 { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 800277c: 6a7a ldr r2, [r7, #36] ; 0x24 - 800277e: 6bb9 ldr r1, [r7, #56] ; 0x38 - 8002780: 68f8 ldr r0, [r7, #12] - 8002782: f000 fc4d bl 8003020 - 8002786: 4603 mov r3, r0 - 8002788: 2b00 cmp r3, #0 - 800278a: d001 beq.n 8002790 + 80027cc: 6a7a ldr r2, [r7, #36] ; 0x24 + 80027ce: 6bb9 ldr r1, [r7, #56] ; 0x38 + 80027d0: 68f8 ldr r0, [r7, #12] + 80027d2: f000 fc4d bl 8003070 + 80027d6: 4603 mov r3, r0 + 80027d8: 2b00 cmp r3, #0 + 80027da: d001 beq.n 80027e0 { return HAL_ERROR; - 800278c: 2301 movs r3, #1 - 800278e: e167 b.n 8002a60 + 80027dc: 2301 movs r3, #1 + 80027de: e167 b.n 8002ab0 } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002790: 68fb ldr r3, [r7, #12] - 8002792: 681b ldr r3, [r3, #0] - 8002794: 691a ldr r2, [r3, #16] - 8002796: 68fb ldr r3, [r7, #12] - 8002798: 6a5b ldr r3, [r3, #36] ; 0x24 - 800279a: b2d2 uxtb r2, r2 - 800279c: 701a strb r2, [r3, #0] + 80027e0: 68fb ldr r3, [r7, #12] + 80027e2: 681b ldr r3, [r3, #0] + 80027e4: 691a ldr r2, [r3, #16] + 80027e6: 68fb ldr r3, [r7, #12] + 80027e8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027ea: b2d2 uxtb r2, r2 + 80027ec: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800279e: 68fb ldr r3, [r7, #12] - 80027a0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80027a2: 1c5a adds r2, r3, #1 - 80027a4: 68fb ldr r3, [r7, #12] - 80027a6: 625a str r2, [r3, #36] ; 0x24 + 80027ee: 68fb ldr r3, [r7, #12] + 80027f0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80027f2: 1c5a adds r2, r3, #1 + 80027f4: 68fb ldr r3, [r7, #12] + 80027f6: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80027a8: 68fb ldr r3, [r7, #12] - 80027aa: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80027ac: 3b01 subs r3, #1 - 80027ae: b29a uxth r2, r3 - 80027b0: 68fb ldr r3, [r7, #12] - 80027b2: 851a strh r2, [r3, #40] ; 0x28 + 80027f8: 68fb ldr r3, [r7, #12] + 80027fa: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80027fc: 3b01 subs r3, #1 + 80027fe: b29a uxth r2, r3 + 8002800: 68fb ldr r3, [r7, #12] + 8002802: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80027b4: 68fb ldr r3, [r7, #12] - 80027b6: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80027b8: b29b uxth r3, r3 - 80027ba: 3b01 subs r3, #1 - 80027bc: b29a uxth r2, r3 - 80027be: 68fb ldr r3, [r7, #12] - 80027c0: 855a strh r2, [r3, #42] ; 0x2a - 80027c2: e139 b.n 8002a38 + 8002804: 68fb ldr r3, [r7, #12] + 8002806: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002808: b29b uxth r3, r3 + 800280a: 3b01 subs r3, #1 + 800280c: b29a uxth r2, r3 + 800280e: 68fb ldr r3, [r7, #12] + 8002810: 855a strh r2, [r3, #42] ; 0x2a + 8002812: e139 b.n 8002a88 } /* Two bytes */ else if (hi2c->XferSize == 2U) - 80027c4: 68fb ldr r3, [r7, #12] - 80027c6: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80027c8: 2b02 cmp r3, #2 - 80027ca: d152 bne.n 8002872 + 8002814: 68fb ldr r3, [r7, #12] + 8002816: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002818: 2b02 cmp r3, #2 + 800281a: d152 bne.n 80028c2 { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 80027cc: 6a7b ldr r3, [r7, #36] ; 0x24 - 80027ce: 9300 str r3, [sp, #0] - 80027d0: 6bbb ldr r3, [r7, #56] ; 0x38 - 80027d2: 2200 movs r2, #0 - 80027d4: 4906 ldr r1, [pc, #24] ; (80027f0 ) - 80027d6: 68f8 ldr r0, [r7, #12] - 80027d8: f000 faca bl 8002d70 - 80027dc: 4603 mov r3, r0 - 80027de: 2b00 cmp r3, #0 - 80027e0: d008 beq.n 80027f4 + 800281c: 6a7b ldr r3, [r7, #36] ; 0x24 + 800281e: 9300 str r3, [sp, #0] + 8002820: 6bbb ldr r3, [r7, #56] ; 0x38 + 8002822: 2200 movs r2, #0 + 8002824: 4906 ldr r1, [pc, #24] ; (8002840 ) + 8002826: 68f8 ldr r0, [r7, #12] + 8002828: f000 faca bl 8002dc0 + 800282c: 4603 mov r3, r0 + 800282e: 2b00 cmp r3, #0 + 8002830: d008 beq.n 8002844 { return HAL_ERROR; - 80027e2: 2301 movs r3, #1 - 80027e4: e13c b.n 8002a60 - 80027e6: bf00 nop - 80027e8: 00100002 .word 0x00100002 - 80027ec: ffff0000 .word 0xffff0000 - 80027f0: 00010004 .word 0x00010004 + 8002832: 2301 movs r3, #1 + 8002834: e13c b.n 8002ab0 + 8002836: bf00 nop + 8002838: 00100002 .word 0x00100002 + 800283c: ffff0000 .word 0xffff0000 + 8002840: 00010004 .word 0x00010004 __ASM volatile ("cpsid i" : : : "memory"); - 80027f4: b672 cpsid i + 8002844: b672 cpsid i } - 80027f6: bf00 nop + 8002846: 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); - 80027f8: 68fb ldr r3, [r7, #12] - 80027fa: 681b ldr r3, [r3, #0] - 80027fc: 681a ldr r2, [r3, #0] - 80027fe: 68fb ldr r3, [r7, #12] - 8002800: 681b ldr r3, [r3, #0] - 8002802: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002806: 601a str r2, [r3, #0] + 8002848: 68fb ldr r3, [r7, #12] + 800284a: 681b ldr r3, [r3, #0] + 800284c: 681a ldr r2, [r3, #0] + 800284e: 68fb ldr r3, [r7, #12] + 8002850: 681b ldr r3, [r3, #0] + 8002852: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002856: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002808: 68fb ldr r3, [r7, #12] - 800280a: 681b ldr r3, [r3, #0] - 800280c: 691a ldr r2, [r3, #16] - 800280e: 68fb ldr r3, [r7, #12] - 8002810: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002812: b2d2 uxtb r2, r2 - 8002814: 701a strb r2, [r3, #0] + 8002858: 68fb ldr r3, [r7, #12] + 800285a: 681b ldr r3, [r3, #0] + 800285c: 691a ldr r2, [r3, #16] + 800285e: 68fb ldr r3, [r7, #12] + 8002860: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002862: b2d2 uxtb r2, r2 + 8002864: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002816: 68fb ldr r3, [r7, #12] - 8002818: 6a5b ldr r3, [r3, #36] ; 0x24 - 800281a: 1c5a adds r2, r3, #1 - 800281c: 68fb ldr r3, [r7, #12] - 800281e: 625a str r2, [r3, #36] ; 0x24 + 8002866: 68fb ldr r3, [r7, #12] + 8002868: 6a5b ldr r3, [r3, #36] ; 0x24 + 800286a: 1c5a adds r2, r3, #1 + 800286c: 68fb ldr r3, [r7, #12] + 800286e: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002820: 68fb ldr r3, [r7, #12] - 8002822: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002824: 3b01 subs r3, #1 - 8002826: b29a uxth r2, r3 - 8002828: 68fb ldr r3, [r7, #12] - 800282a: 851a strh r2, [r3, #40] ; 0x28 + 8002870: 68fb ldr r3, [r7, #12] + 8002872: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002874: 3b01 subs r3, #1 + 8002876: b29a uxth r2, r3 + 8002878: 68fb ldr r3, [r7, #12] + 800287a: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800282c: 68fb ldr r3, [r7, #12] - 800282e: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002830: b29b uxth r3, r3 - 8002832: 3b01 subs r3, #1 - 8002834: b29a uxth r2, r3 - 8002836: 68fb ldr r3, [r7, #12] - 8002838: 855a strh r2, [r3, #42] ; 0x2a + 800287c: 68fb ldr r3, [r7, #12] + 800287e: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002880: b29b uxth r3, r3 + 8002882: 3b01 subs r3, #1 + 8002884: b29a uxth r2, r3 + 8002886: 68fb ldr r3, [r7, #12] + 8002888: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 800283a: b662 cpsie i + 800288a: b662 cpsie i } - 800283c: bf00 nop + 800288c: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* 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] + 800288e: 68fb ldr r3, [r7, #12] + 8002890: 681b ldr r3, [r3, #0] + 8002892: 691a ldr r2, [r3, #16] + 8002894: 68fb ldr r3, [r7, #12] + 8002896: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002898: b2d2 uxtb r2, r2 + 800289a: 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 + 800289c: 68fb ldr r3, [r7, #12] + 800289e: 6a5b ldr r3, [r3, #36] ; 0x24 + 80028a0: 1c5a adds r2, r3, #1 + 80028a2: 68fb ldr r3, [r7, #12] + 80028a4: 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 + 80028a6: 68fb ldr r3, [r7, #12] + 80028a8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80028aa: 3b01 subs r3, #1 + 80028ac: b29a uxth r2, r3 + 80028ae: 68fb ldr r3, [r7, #12] + 80028b0: 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 - 8002870: e0e2 b.n 8002a38 + 80028b2: 68fb ldr r3, [r7, #12] + 80028b4: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80028b6: b29b uxth r3, r3 + 80028b8: 3b01 subs r3, #1 + 80028ba: b29a uxth r2, r3 + 80028bc: 68fb ldr r3, [r7, #12] + 80028be: 855a strh r2, [r3, #42] ; 0x2a + 80028c0: e0e2 b.n 8002a88 } /* 3 Last bytes */ else { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 8002872: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002874: 9300 str r3, [sp, #0] - 8002876: 6bbb ldr r3, [r7, #56] ; 0x38 - 8002878: 2200 movs r2, #0 - 800287a: 497b ldr r1, [pc, #492] ; (8002a68 ) - 800287c: 68f8 ldr r0, [r7, #12] - 800287e: f000 fa77 bl 8002d70 - 8002882: 4603 mov r3, r0 - 8002884: 2b00 cmp r3, #0 - 8002886: d001 beq.n 800288c + 80028c2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80028c4: 9300 str r3, [sp, #0] + 80028c6: 6bbb ldr r3, [r7, #56] ; 0x38 + 80028c8: 2200 movs r2, #0 + 80028ca: 497b ldr r1, [pc, #492] ; (8002ab8 ) + 80028cc: 68f8 ldr r0, [r7, #12] + 80028ce: f000 fa77 bl 8002dc0 + 80028d2: 4603 mov r3, r0 + 80028d4: 2b00 cmp r3, #0 + 80028d6: d001 beq.n 80028dc { return HAL_ERROR; - 8002888: 2301 movs r3, #1 - 800288a: e0e9 b.n 8002a60 + 80028d8: 2301 movs r3, #1 + 80028da: e0e9 b.n 8002ab0 } /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 800288c: 68fb ldr r3, [r7, #12] - 800288e: 681b ldr r3, [r3, #0] - 8002890: 681a ldr r2, [r3, #0] - 8002892: 68fb ldr r3, [r7, #12] - 8002894: 681b ldr r3, [r3, #0] - 8002896: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 800289a: 601a str r2, [r3, #0] + 80028dc: 68fb ldr r3, [r7, #12] + 80028de: 681b ldr r3, [r3, #0] + 80028e0: 681a ldr r2, [r3, #0] + 80028e2: 68fb ldr r3, [r7, #12] + 80028e4: 681b ldr r3, [r3, #0] + 80028e6: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 80028ea: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 800289c: b672 cpsid i + 80028ec: b672 cpsid i } - 800289e: bf00 nop + 80028ee: 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; - 80028a0: 68fb ldr r3, [r7, #12] - 80028a2: 681b ldr r3, [r3, #0] - 80028a4: 691a ldr r2, [r3, #16] - 80028a6: 68fb ldr r3, [r7, #12] - 80028a8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80028aa: b2d2 uxtb r2, r2 - 80028ac: 701a strb r2, [r3, #0] + 80028f0: 68fb ldr r3, [r7, #12] + 80028f2: 681b ldr r3, [r3, #0] + 80028f4: 691a ldr r2, [r3, #16] + 80028f6: 68fb ldr r3, [r7, #12] + 80028f8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80028fa: b2d2 uxtb r2, r2 + 80028fc: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80028ae: 68fb ldr r3, [r7, #12] - 80028b0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80028b2: 1c5a adds r2, r3, #1 - 80028b4: 68fb ldr r3, [r7, #12] - 80028b6: 625a str r2, [r3, #36] ; 0x24 + 80028fe: 68fb ldr r3, [r7, #12] + 8002900: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002902: 1c5a adds r2, r3, #1 + 8002904: 68fb ldr r3, [r7, #12] + 8002906: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80028b8: 68fb ldr r3, [r7, #12] - 80028ba: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80028bc: 3b01 subs r3, #1 - 80028be: b29a uxth r2, r3 - 80028c0: 68fb ldr r3, [r7, #12] - 80028c2: 851a strh r2, [r3, #40] ; 0x28 + 8002908: 68fb ldr r3, [r7, #12] + 800290a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800290c: 3b01 subs r3, #1 + 800290e: b29a uxth r2, r3 + 8002910: 68fb ldr r3, [r7, #12] + 8002912: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80028c4: 68fb ldr r3, [r7, #12] - 80028c6: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80028c8: b29b uxth r3, r3 - 80028ca: 3b01 subs r3, #1 - 80028cc: b29a uxth r2, r3 - 80028ce: 68fb ldr r3, [r7, #12] - 80028d0: 855a strh r2, [r3, #42] ; 0x2a + 8002914: 68fb ldr r3, [r7, #12] + 8002916: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002918: b29b uxth r3, r3 + 800291a: 3b01 subs r3, #1 + 800291c: b29a uxth r2, r3 + 800291e: 68fb ldr r3, [r7, #12] + 8002920: 855a strh r2, [r3, #42] ; 0x2a /* Wait until BTF flag is set */ count = I2C_TIMEOUT_FLAG * (SystemCoreClock / 25U / 1000U); - 80028d2: 4b66 ldr r3, [pc, #408] ; (8002a6c ) - 80028d4: 681b ldr r3, [r3, #0] - 80028d6: 08db lsrs r3, r3, #3 - 80028d8: 4a65 ldr r2, [pc, #404] ; (8002a70 ) - 80028da: fba2 2303 umull r2, r3, r2, r3 - 80028de: 0a1a lsrs r2, r3, #8 - 80028e0: 4613 mov r3, r2 - 80028e2: 009b lsls r3, r3, #2 - 80028e4: 4413 add r3, r2 - 80028e6: 00da lsls r2, r3, #3 - 80028e8: 1ad3 subs r3, r2, r3 - 80028ea: 623b str r3, [r7, #32] + 8002922: 4b66 ldr r3, [pc, #408] ; (8002abc ) + 8002924: 681b ldr r3, [r3, #0] + 8002926: 08db lsrs r3, r3, #3 + 8002928: 4a65 ldr r2, [pc, #404] ; (8002ac0 ) + 800292a: fba2 2303 umull r2, r3, r2, r3 + 800292e: 0a1a lsrs r2, r3, #8 + 8002930: 4613 mov r3, r2 + 8002932: 009b lsls r3, r3, #2 + 8002934: 4413 add r3, r2 + 8002936: 00da lsls r2, r3, #3 + 8002938: 1ad3 subs r3, r2, r3 + 800293a: 623b str r3, [r7, #32] do { count--; - 80028ec: 6a3b ldr r3, [r7, #32] - 80028ee: 3b01 subs r3, #1 - 80028f0: 623b str r3, [r7, #32] + 800293c: 6a3b ldr r3, [r7, #32] + 800293e: 3b01 subs r3, #1 + 8002940: 623b str r3, [r7, #32] if (count == 0U) - 80028f2: 6a3b ldr r3, [r7, #32] - 80028f4: 2b00 cmp r3, #0 - 80028f6: d118 bne.n 800292a + 8002942: 6a3b ldr r3, [r7, #32] + 8002944: 2b00 cmp r3, #0 + 8002946: d118 bne.n 800297a { hi2c->PreviousState = I2C_STATE_NONE; - 80028f8: 68fb ldr r3, [r7, #12] - 80028fa: 2200 movs r2, #0 - 80028fc: 631a str r2, [r3, #48] ; 0x30 + 8002948: 68fb ldr r3, [r7, #12] + 800294a: 2200 movs r2, #0 + 800294c: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 80028fe: 68fb ldr r3, [r7, #12] - 8002900: 2220 movs r2, #32 - 8002902: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800294e: 68fb ldr r3, [r7, #12] + 8002950: 2220 movs r2, #32 + 8002952: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002906: 68fb ldr r3, [r7, #12] - 8002908: 2200 movs r2, #0 - 800290a: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002956: 68fb ldr r3, [r7, #12] + 8002958: 2200 movs r2, #0 + 800295a: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 800290e: 68fb ldr r3, [r7, #12] - 8002910: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002912: f043 0220 orr.w r2, r3, #32 - 8002916: 68fb ldr r3, [r7, #12] - 8002918: 641a str r2, [r3, #64] ; 0x40 + 800295e: 68fb ldr r3, [r7, #12] + 8002960: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002962: f043 0220 orr.w r2, r3, #32 + 8002966: 68fb ldr r3, [r7, #12] + 8002968: 641a str r2, [r3, #64] ; 0x40 __ASM volatile ("cpsie i" : : : "memory"); - 800291a: b662 cpsie i + 800296a: b662 cpsie i } - 800291c: bf00 nop + 800296c: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 800291e: 68fb ldr r3, [r7, #12] - 8002920: 2200 movs r2, #0 - 8002922: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800296e: 68fb ldr r3, [r7, #12] + 8002970: 2200 movs r2, #0 + 8002972: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002926: 2301 movs r3, #1 - 8002928: e09a b.n 8002a60 + 8002976: 2301 movs r3, #1 + 8002978: e09a b.n 8002ab0 } } while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET); - 800292a: 68fb ldr r3, [r7, #12] - 800292c: 681b ldr r3, [r3, #0] - 800292e: 695b ldr r3, [r3, #20] - 8002930: f003 0304 and.w r3, r3, #4 - 8002934: 2b04 cmp r3, #4 - 8002936: d1d9 bne.n 80028ec + 800297a: 68fb ldr r3, [r7, #12] + 800297c: 681b ldr r3, [r3, #0] + 800297e: 695b ldr r3, [r3, #20] + 8002980: f003 0304 and.w r3, r3, #4 + 8002984: 2b04 cmp r3, #4 + 8002986: d1d9 bne.n 800293c /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002938: 68fb ldr r3, [r7, #12] - 800293a: 681b ldr r3, [r3, #0] - 800293c: 681a ldr r2, [r3, #0] - 800293e: 68fb ldr r3, [r7, #12] - 8002940: 681b ldr r3, [r3, #0] - 8002942: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002946: 601a str r2, [r3, #0] + 8002988: 68fb ldr r3, [r7, #12] + 800298a: 681b ldr r3, [r3, #0] + 800298c: 681a ldr r2, [r3, #0] + 800298e: 68fb ldr r3, [r7, #12] + 8002990: 681b ldr r3, [r3, #0] + 8002992: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002996: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002948: 68fb ldr r3, [r7, #12] - 800294a: 681b ldr r3, [r3, #0] - 800294c: 691a ldr r2, [r3, #16] - 800294e: 68fb ldr r3, [r7, #12] - 8002950: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002952: b2d2 uxtb r2, r2 - 8002954: 701a strb r2, [r3, #0] + 8002998: 68fb ldr r3, [r7, #12] + 800299a: 681b ldr r3, [r3, #0] + 800299c: 691a ldr r2, [r3, #16] + 800299e: 68fb ldr r3, [r7, #12] + 80029a0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029a2: b2d2 uxtb r2, r2 + 80029a4: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002956: 68fb ldr r3, [r7, #12] - 8002958: 6a5b ldr r3, [r3, #36] ; 0x24 - 800295a: 1c5a adds r2, r3, #1 - 800295c: 68fb ldr r3, [r7, #12] - 800295e: 625a str r2, [r3, #36] ; 0x24 + 80029a6: 68fb ldr r3, [r7, #12] + 80029a8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029aa: 1c5a adds r2, r3, #1 + 80029ac: 68fb ldr r3, [r7, #12] + 80029ae: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002960: 68fb ldr r3, [r7, #12] - 8002962: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002964: 3b01 subs r3, #1 - 8002966: b29a uxth r2, r3 - 8002968: 68fb ldr r3, [r7, #12] - 800296a: 851a strh r2, [r3, #40] ; 0x28 + 80029b0: 68fb ldr r3, [r7, #12] + 80029b2: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80029b4: 3b01 subs r3, #1 + 80029b6: b29a uxth r2, r3 + 80029b8: 68fb ldr r3, [r7, #12] + 80029ba: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800296c: 68fb ldr r3, [r7, #12] - 800296e: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002970: b29b uxth r3, r3 - 8002972: 3b01 subs r3, #1 - 8002974: b29a uxth r2, r3 - 8002976: 68fb ldr r3, [r7, #12] - 8002978: 855a strh r2, [r3, #42] ; 0x2a + 80029bc: 68fb ldr r3, [r7, #12] + 80029be: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80029c0: b29b uxth r3, r3 + 80029c2: 3b01 subs r3, #1 + 80029c4: b29a uxth r2, r3 + 80029c6: 68fb ldr r3, [r7, #12] + 80029c8: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 800297a: b662 cpsie i + 80029ca: b662 cpsie i } - 800297c: bf00 nop + 80029cc: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 800297e: 68fb ldr r3, [r7, #12] - 8002980: 681b ldr r3, [r3, #0] - 8002982: 691a ldr r2, [r3, #16] - 8002984: 68fb ldr r3, [r7, #12] - 8002986: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002988: b2d2 uxtb r2, r2 - 800298a: 701a strb r2, [r3, #0] + 80029ce: 68fb ldr r3, [r7, #12] + 80029d0: 681b ldr r3, [r3, #0] + 80029d2: 691a ldr r2, [r3, #16] + 80029d4: 68fb ldr r3, [r7, #12] + 80029d6: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029d8: b2d2 uxtb r2, r2 + 80029da: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800298c: 68fb ldr r3, [r7, #12] - 800298e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002990: 1c5a adds r2, r3, #1 - 8002992: 68fb ldr r3, [r7, #12] - 8002994: 625a str r2, [r3, #36] ; 0x24 + 80029dc: 68fb ldr r3, [r7, #12] + 80029de: 6a5b ldr r3, [r3, #36] ; 0x24 + 80029e0: 1c5a adds r2, r3, #1 + 80029e2: 68fb ldr r3, [r7, #12] + 80029e4: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002996: 68fb ldr r3, [r7, #12] - 8002998: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800299a: 3b01 subs r3, #1 - 800299c: b29a uxth r2, r3 - 800299e: 68fb ldr r3, [r7, #12] - 80029a0: 851a strh r2, [r3, #40] ; 0x28 + 80029e6: 68fb ldr r3, [r7, #12] + 80029e8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80029ea: 3b01 subs r3, #1 + 80029ec: b29a uxth r2, r3 + 80029ee: 68fb ldr r3, [r7, #12] + 80029f0: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80029a2: 68fb ldr r3, [r7, #12] - 80029a4: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80029a6: b29b uxth r3, r3 - 80029a8: 3b01 subs r3, #1 - 80029aa: b29a uxth r2, r3 - 80029ac: 68fb ldr r3, [r7, #12] - 80029ae: 855a strh r2, [r3, #42] ; 0x2a - 80029b0: e042 b.n 8002a38 + 80029f2: 68fb ldr r3, [r7, #12] + 80029f4: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80029f6: b29b uxth r3, r3 + 80029f8: 3b01 subs r3, #1 + 80029fa: b29a uxth r2, r3 + 80029fc: 68fb ldr r3, [r7, #12] + 80029fe: 855a strh r2, [r3, #42] ; 0x2a + 8002a00: e042 b.n 8002a88 } } else { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80029b2: 6a7a ldr r2, [r7, #36] ; 0x24 - 80029b4: 6bb9 ldr r1, [r7, #56] ; 0x38 - 80029b6: 68f8 ldr r0, [r7, #12] - 80029b8: f000 fb32 bl 8003020 - 80029bc: 4603 mov r3, r0 - 80029be: 2b00 cmp r3, #0 - 80029c0: d001 beq.n 80029c6 + 8002a02: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002a04: 6bb9 ldr r1, [r7, #56] ; 0x38 + 8002a06: 68f8 ldr r0, [r7, #12] + 8002a08: f000 fb32 bl 8003070 + 8002a0c: 4603 mov r3, r0 + 8002a0e: 2b00 cmp r3, #0 + 8002a10: d001 beq.n 8002a16 { return HAL_ERROR; - 80029c2: 2301 movs r3, #1 - 80029c4: e04c b.n 8002a60 + 8002a12: 2301 movs r3, #1 + 8002a14: e04c b.n 8002ab0 } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80029c6: 68fb ldr r3, [r7, #12] - 80029c8: 681b ldr r3, [r3, #0] - 80029ca: 691a ldr r2, [r3, #16] - 80029cc: 68fb ldr r3, [r7, #12] - 80029ce: 6a5b ldr r3, [r3, #36] ; 0x24 - 80029d0: b2d2 uxtb r2, r2 - 80029d2: 701a strb r2, [r3, #0] + 8002a16: 68fb ldr r3, [r7, #12] + 8002a18: 681b ldr r3, [r3, #0] + 8002a1a: 691a ldr r2, [r3, #16] + 8002a1c: 68fb ldr r3, [r7, #12] + 8002a1e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002a20: b2d2 uxtb r2, r2 + 8002a22: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80029d4: 68fb ldr r3, [r7, #12] - 80029d6: 6a5b ldr r3, [r3, #36] ; 0x24 - 80029d8: 1c5a adds r2, r3, #1 - 80029da: 68fb ldr r3, [r7, #12] - 80029dc: 625a str r2, [r3, #36] ; 0x24 + 8002a24: 68fb ldr r3, [r7, #12] + 8002a26: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002a28: 1c5a adds r2, r3, #1 + 8002a2a: 68fb ldr r3, [r7, #12] + 8002a2c: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80029de: 68fb ldr r3, [r7, #12] - 80029e0: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80029e2: 3b01 subs r3, #1 - 80029e4: b29a uxth r2, r3 - 80029e6: 68fb ldr r3, [r7, #12] - 80029e8: 851a strh r2, [r3, #40] ; 0x28 + 8002a2e: 68fb ldr r3, [r7, #12] + 8002a30: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002a32: 3b01 subs r3, #1 + 8002a34: b29a uxth r2, r3 + 8002a36: 68fb ldr r3, [r7, #12] + 8002a38: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80029ea: 68fb ldr r3, [r7, #12] - 80029ec: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80029ee: b29b uxth r3, r3 - 80029f0: 3b01 subs r3, #1 - 80029f2: b29a uxth r2, r3 - 80029f4: 68fb ldr r3, [r7, #12] - 80029f6: 855a strh r2, [r3, #42] ; 0x2a + 8002a3a: 68fb ldr r3, [r7, #12] + 8002a3c: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002a3e: b29b uxth r3, r3 + 8002a40: 3b01 subs r3, #1 + 8002a42: b29a uxth r2, r3 + 8002a44: 68fb ldr r3, [r7, #12] + 8002a46: 855a strh r2, [r3, #42] ; 0x2a if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) - 80029f8: 68fb ldr r3, [r7, #12] - 80029fa: 681b ldr r3, [r3, #0] - 80029fc: 695b ldr r3, [r3, #20] - 80029fe: f003 0304 and.w r3, r3, #4 - 8002a02: 2b04 cmp r3, #4 - 8002a04: d118 bne.n 8002a38 + 8002a48: 68fb ldr r3, [r7, #12] + 8002a4a: 681b ldr r3, [r3, #0] + 8002a4c: 695b ldr r3, [r3, #20] + 8002a4e: f003 0304 and.w r3, r3, #4 + 8002a52: 2b04 cmp r3, #4 + 8002a54: d118 bne.n 8002a88 { /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002a06: 68fb ldr r3, [r7, #12] - 8002a08: 681b ldr r3, [r3, #0] - 8002a0a: 691a ldr r2, [r3, #16] - 8002a0c: 68fb ldr r3, [r7, #12] - 8002a0e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002a10: b2d2 uxtb r2, r2 - 8002a12: 701a strb r2, [r3, #0] + 8002a56: 68fb ldr r3, [r7, #12] + 8002a58: 681b ldr r3, [r3, #0] + 8002a5a: 691a ldr r2, [r3, #16] + 8002a5c: 68fb ldr r3, [r7, #12] + 8002a5e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002a60: b2d2 uxtb r2, r2 + 8002a62: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002a14: 68fb ldr r3, [r7, #12] - 8002a16: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002a18: 1c5a adds r2, r3, #1 - 8002a1a: 68fb ldr r3, [r7, #12] - 8002a1c: 625a str r2, [r3, #36] ; 0x24 + 8002a64: 68fb ldr r3, [r7, #12] + 8002a66: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002a68: 1c5a adds r2, r3, #1 + 8002a6a: 68fb ldr r3, [r7, #12] + 8002a6c: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002a1e: 68fb ldr r3, [r7, #12] - 8002a20: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002a22: 3b01 subs r3, #1 - 8002a24: b29a uxth r2, r3 - 8002a26: 68fb ldr r3, [r7, #12] - 8002a28: 851a strh r2, [r3, #40] ; 0x28 + 8002a6e: 68fb ldr r3, [r7, #12] + 8002a70: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002a72: 3b01 subs r3, #1 + 8002a74: b29a uxth r2, r3 + 8002a76: 68fb ldr r3, [r7, #12] + 8002a78: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002a2a: 68fb ldr r3, [r7, #12] - 8002a2c: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002a2e: b29b uxth r3, r3 - 8002a30: 3b01 subs r3, #1 - 8002a32: b29a uxth r2, r3 - 8002a34: 68fb ldr r3, [r7, #12] - 8002a36: 855a strh r2, [r3, #42] ; 0x2a + 8002a7a: 68fb ldr r3, [r7, #12] + 8002a7c: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002a7e: b29b uxth r3, r3 + 8002a80: 3b01 subs r3, #1 + 8002a82: b29a uxth r2, r3 + 8002a84: 68fb ldr r3, [r7, #12] + 8002a86: 855a strh r2, [r3, #42] ; 0x2a while (hi2c->XferSize > 0U) - 8002a38: 68fb ldr r3, [r7, #12] - 8002a3a: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002a3c: 2b00 cmp r3, #0 - 8002a3e: f47f ae94 bne.w 800276a + 8002a88: 68fb ldr r3, [r7, #12] + 8002a8a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002a8c: 2b00 cmp r3, #0 + 8002a8e: f47f ae94 bne.w 80027ba } } } hi2c->State = HAL_I2C_STATE_READY; - 8002a42: 68fb ldr r3, [r7, #12] - 8002a44: 2220 movs r2, #32 - 8002a46: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002a92: 68fb ldr r3, [r7, #12] + 8002a94: 2220 movs r2, #32 + 8002a96: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002a4a: 68fb ldr r3, [r7, #12] - 8002a4c: 2200 movs r2, #0 - 8002a4e: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002a9a: 68fb ldr r3, [r7, #12] + 8002a9c: 2200 movs r2, #0 + 8002a9e: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002a52: 68fb ldr r3, [r7, #12] - 8002a54: 2200 movs r2, #0 - 8002a56: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002aa2: 68fb ldr r3, [r7, #12] + 8002aa4: 2200 movs r2, #0 + 8002aa6: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 8002a5a: 2300 movs r3, #0 - 8002a5c: e000 b.n 8002a60 + 8002aaa: 2300 movs r3, #0 + 8002aac: e000 b.n 8002ab0 } else { return HAL_BUSY; - 8002a5e: 2302 movs r3, #2 + 8002aae: 2302 movs r3, #2 } } - 8002a60: 4618 mov r0, r3 - 8002a62: 3728 adds r7, #40 ; 0x28 - 8002a64: 46bd mov sp, r7 - 8002a66: bd80 pop {r7, pc} - 8002a68: 00010004 .word 0x00010004 - 8002a6c: 20000000 .word 0x20000000 - 8002a70: 14f8b589 .word 0x14f8b589 + 8002ab0: 4618 mov r0, r3 + 8002ab2: 3728 adds r7, #40 ; 0x28 + 8002ab4: 46bd mov sp, r7 + 8002ab6: bd80 pop {r7, pc} + 8002ab8: 00010004 .word 0x00010004 + 8002abc: 20000000 .word 0x20000000 + 8002ac0: 14f8b589 .word 0x14f8b589 -08002a74 : +08002ac4 : * @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) { - 8002a74: b580 push {r7, lr} - 8002a76: b088 sub sp, #32 - 8002a78: af02 add r7, sp, #8 - 8002a7a: 60f8 str r0, [r7, #12] - 8002a7c: 4608 mov r0, r1 - 8002a7e: 4611 mov r1, r2 - 8002a80: 461a mov r2, r3 - 8002a82: 4603 mov r3, r0 - 8002a84: 817b strh r3, [r7, #10] - 8002a86: 460b mov r3, r1 - 8002a88: 813b strh r3, [r7, #8] - 8002a8a: 4613 mov r3, r2 - 8002a8c: 80fb strh r3, [r7, #6] + 8002ac4: b580 push {r7, lr} + 8002ac6: b088 sub sp, #32 + 8002ac8: af02 add r7, sp, #8 + 8002aca: 60f8 str r0, [r7, #12] + 8002acc: 4608 mov r0, r1 + 8002ace: 4611 mov r1, r2 + 8002ad0: 461a mov r2, r3 + 8002ad2: 4603 mov r3, r0 + 8002ad4: 817b strh r3, [r7, #10] + 8002ad6: 460b mov r3, r1 + 8002ad8: 813b strh r3, [r7, #8] + 8002ada: 4613 mov r3, r2 + 8002adc: 80fb strh r3, [r7, #6] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002a8e: 68fb ldr r3, [r7, #12] - 8002a90: 681b ldr r3, [r3, #0] - 8002a92: 681a ldr r2, [r3, #0] - 8002a94: 68fb ldr r3, [r7, #12] - 8002a96: 681b ldr r3, [r3, #0] - 8002a98: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002a9c: 601a str r2, [r3, #0] + 8002ade: 68fb ldr r3, [r7, #12] + 8002ae0: 681b ldr r3, [r3, #0] + 8002ae2: 681a ldr r2, [r3, #0] + 8002ae4: 68fb ldr r3, [r7, #12] + 8002ae6: 681b ldr r3, [r3, #0] + 8002ae8: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002aec: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002a9e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002aa0: 9300 str r3, [sp, #0] - 8002aa2: 6a3b ldr r3, [r7, #32] - 8002aa4: 2200 movs r2, #0 - 8002aa6: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002aaa: 68f8 ldr r0, [r7, #12] - 8002aac: f000 f960 bl 8002d70 - 8002ab0: 4603 mov r3, r0 - 8002ab2: 2b00 cmp r3, #0 - 8002ab4: d00d beq.n 8002ad2 + 8002aee: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002af0: 9300 str r3, [sp, #0] + 8002af2: 6a3b ldr r3, [r7, #32] + 8002af4: 2200 movs r2, #0 + 8002af6: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002afa: 68f8 ldr r0, [r7, #12] + 8002afc: f000 f960 bl 8002dc0 + 8002b00: 4603 mov r3, r0 + 8002b02: 2b00 cmp r3, #0 + 8002b04: d00d beq.n 8002b22 { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002ab6: 68fb ldr r3, [r7, #12] - 8002ab8: 681b ldr r3, [r3, #0] - 8002aba: 681b ldr r3, [r3, #0] - 8002abc: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002ac0: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002ac4: d103 bne.n 8002ace + 8002b06: 68fb ldr r3, [r7, #12] + 8002b08: 681b ldr r3, [r3, #0] + 8002b0a: 681b ldr r3, [r3, #0] + 8002b0c: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002b10: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002b14: d103 bne.n 8002b1e { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002ac6: 68fb ldr r3, [r7, #12] - 8002ac8: f44f 7200 mov.w r2, #512 ; 0x200 - 8002acc: 641a str r2, [r3, #64] ; 0x40 + 8002b16: 68fb ldr r3, [r7, #12] + 8002b18: f44f 7200 mov.w r2, #512 ; 0x200 + 8002b1c: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002ace: 2303 movs r3, #3 - 8002ad0: e05f b.n 8002b92 + 8002b1e: 2303 movs r3, #3 + 8002b20: e05f b.n 8002be2 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 8002ad2: 897b ldrh r3, [r7, #10] - 8002ad4: b2db uxtb r3, r3 - 8002ad6: 461a mov r2, r3 - 8002ad8: 68fb ldr r3, [r7, #12] - 8002ada: 681b ldr r3, [r3, #0] - 8002adc: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002ae0: 611a str r2, [r3, #16] + 8002b22: 897b ldrh r3, [r7, #10] + 8002b24: b2db uxtb r3, r3 + 8002b26: 461a mov r2, r3 + 8002b28: 68fb ldr r3, [r7, #12] + 8002b2a: 681b ldr r3, [r3, #0] + 8002b2c: f002 02fe and.w r2, r2, #254 ; 0xfe + 8002b30: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002ae2: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002ae4: 6a3a ldr r2, [r7, #32] - 8002ae6: 492d ldr r1, [pc, #180] ; (8002b9c ) - 8002ae8: 68f8 ldr r0, [r7, #12] - 8002aea: f000 f998 bl 8002e1e - 8002aee: 4603 mov r3, r0 - 8002af0: 2b00 cmp r3, #0 - 8002af2: d001 beq.n 8002af8 + 8002b32: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002b34: 6a3a ldr r2, [r7, #32] + 8002b36: 492d ldr r1, [pc, #180] ; (8002bec ) + 8002b38: 68f8 ldr r0, [r7, #12] + 8002b3a: f000 f998 bl 8002e6e + 8002b3e: 4603 mov r3, r0 + 8002b40: 2b00 cmp r3, #0 + 8002b42: d001 beq.n 8002b48 { return HAL_ERROR; - 8002af4: 2301 movs r3, #1 - 8002af6: e04c b.n 8002b92 + 8002b44: 2301 movs r3, #1 + 8002b46: e04c b.n 8002be2 } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002af8: 2300 movs r3, #0 - 8002afa: 617b str r3, [r7, #20] - 8002afc: 68fb ldr r3, [r7, #12] - 8002afe: 681b ldr r3, [r3, #0] - 8002b00: 695b ldr r3, [r3, #20] - 8002b02: 617b str r3, [r7, #20] - 8002b04: 68fb ldr r3, [r7, #12] - 8002b06: 681b ldr r3, [r3, #0] - 8002b08: 699b ldr r3, [r3, #24] - 8002b0a: 617b str r3, [r7, #20] - 8002b0c: 697b ldr r3, [r7, #20] + 8002b48: 2300 movs r3, #0 + 8002b4a: 617b str r3, [r7, #20] + 8002b4c: 68fb ldr r3, [r7, #12] + 8002b4e: 681b ldr r3, [r3, #0] + 8002b50: 695b ldr r3, [r3, #20] + 8002b52: 617b str r3, [r7, #20] + 8002b54: 68fb ldr r3, [r7, #12] + 8002b56: 681b ldr r3, [r3, #0] + 8002b58: 699b ldr r3, [r3, #24] + 8002b5a: 617b str r3, [r7, #20] + 8002b5c: 697b ldr r3, [r7, #20] /* 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 fa02 bl 8002f1c - 8002b18: 4603 mov r3, r0 - 8002b1a: 2b00 cmp r3, #0 - 8002b1c: d00d beq.n 8002b3a + 8002b5e: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002b60: 6a39 ldr r1, [r7, #32] + 8002b62: 68f8 ldr r0, [r7, #12] + 8002b64: f000 fa02 bl 8002f6c + 8002b68: 4603 mov r3, r0 + 8002b6a: 2b00 cmp r3, #0 + 8002b6c: d00d beq.n 8002b8a { 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 + 8002b6e: 68fb ldr r3, [r7, #12] + 8002b70: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002b72: 2b04 cmp r3, #4 + 8002b74: d107 bne.n 8002b86 { /* 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] + 8002b76: 68fb ldr r3, [r7, #12] + 8002b78: 681b ldr r3, [r3, #0] + 8002b7a: 681a ldr r2, [r3, #0] + 8002b7c: 68fb ldr r3, [r7, #12] + 8002b7e: 681b ldr r3, [r3, #0] + 8002b80: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002b84: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002b36: 2301 movs r3, #1 - 8002b38: e02b b.n 8002b92 + 8002b86: 2301 movs r3, #1 + 8002b88: e02b b.n 8002be2 } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 8002b3a: 88fb ldrh r3, [r7, #6] - 8002b3c: 2b01 cmp r3, #1 - 8002b3e: d105 bne.n 8002b4c + 8002b8a: 88fb ldrh r3, [r7, #6] + 8002b8c: 2b01 cmp r3, #1 + 8002b8e: d105 bne.n 8002b9c { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002b40: 893b ldrh r3, [r7, #8] - 8002b42: b2da uxtb r2, r3 - 8002b44: 68fb ldr r3, [r7, #12] - 8002b46: 681b ldr r3, [r3, #0] - 8002b48: 611a str r2, [r3, #16] - 8002b4a: e021 b.n 8002b90 + 8002b90: 893b ldrh r3, [r7, #8] + 8002b92: b2da uxtb r2, r3 + 8002b94: 68fb ldr r3, [r7, #12] + 8002b96: 681b ldr r3, [r3, #0] + 8002b98: 611a str r2, [r3, #16] + 8002b9a: e021 b.n 8002be0 } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 8002b4c: 893b ldrh r3, [r7, #8] - 8002b4e: 0a1b lsrs r3, r3, #8 - 8002b50: b29b uxth r3, r3 - 8002b52: b2da uxtb r2, r3 - 8002b54: 68fb ldr r3, [r7, #12] - 8002b56: 681b ldr r3, [r3, #0] - 8002b58: 611a str r2, [r3, #16] + 8002b9c: 893b ldrh r3, [r7, #8] + 8002b9e: 0a1b lsrs r3, r3, #8 + 8002ba0: b29b uxth r3, r3 + 8002ba2: b2da uxtb r2, r3 + 8002ba4: 68fb ldr r3, [r7, #12] + 8002ba6: 681b ldr r3, [r3, #0] + 8002ba8: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002b5a: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002b5c: 6a39 ldr r1, [r7, #32] - 8002b5e: 68f8 ldr r0, [r7, #12] - 8002b60: f000 f9dc bl 8002f1c - 8002b64: 4603 mov r3, r0 - 8002b66: 2b00 cmp r3, #0 - 8002b68: d00d beq.n 8002b86 + 8002baa: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002bac: 6a39 ldr r1, [r7, #32] + 8002bae: 68f8 ldr r0, [r7, #12] + 8002bb0: f000 f9dc bl 8002f6c + 8002bb4: 4603 mov r3, r0 + 8002bb6: 2b00 cmp r3, #0 + 8002bb8: d00d beq.n 8002bd6 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002b6a: 68fb ldr r3, [r7, #12] - 8002b6c: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002b6e: 2b04 cmp r3, #4 - 8002b70: d107 bne.n 8002b82 + 8002bba: 68fb ldr r3, [r7, #12] + 8002bbc: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002bbe: 2b04 cmp r3, #4 + 8002bc0: d107 bne.n 8002bd2 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002b72: 68fb ldr r3, [r7, #12] - 8002b74: 681b ldr r3, [r3, #0] - 8002b76: 681a ldr r2, [r3, #0] - 8002b78: 68fb ldr r3, [r7, #12] - 8002b7a: 681b ldr r3, [r3, #0] - 8002b7c: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002b80: 601a str r2, [r3, #0] + 8002bc2: 68fb ldr r3, [r7, #12] + 8002bc4: 681b ldr r3, [r3, #0] + 8002bc6: 681a ldr r2, [r3, #0] + 8002bc8: 68fb ldr r3, [r7, #12] + 8002bca: 681b ldr r3, [r3, #0] + 8002bcc: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002bd0: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002b82: 2301 movs r3, #1 - 8002b84: e005 b.n 8002b92 + 8002bd2: 2301 movs r3, #1 + 8002bd4: e005 b.n 8002be2 } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002b86: 893b ldrh r3, [r7, #8] - 8002b88: b2da uxtb r2, r3 - 8002b8a: 68fb ldr r3, [r7, #12] - 8002b8c: 681b ldr r3, [r3, #0] - 8002b8e: 611a str r2, [r3, #16] + 8002bd6: 893b ldrh r3, [r7, #8] + 8002bd8: b2da uxtb r2, r3 + 8002bda: 68fb ldr r3, [r7, #12] + 8002bdc: 681b ldr r3, [r3, #0] + 8002bde: 611a str r2, [r3, #16] } return HAL_OK; - 8002b90: 2300 movs r3, #0 + 8002be0: 2300 movs r3, #0 } - 8002b92: 4618 mov r0, r3 - 8002b94: 3718 adds r7, #24 - 8002b96: 46bd mov sp, r7 - 8002b98: bd80 pop {r7, pc} - 8002b9a: bf00 nop - 8002b9c: 00010002 .word 0x00010002 + 8002be2: 4618 mov r0, r3 + 8002be4: 3718 adds r7, #24 + 8002be6: 46bd mov sp, r7 + 8002be8: bd80 pop {r7, pc} + 8002bea: bf00 nop + 8002bec: 00010002 .word 0x00010002 -08002ba0 : +08002bf0 : * @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) { - 8002ba0: b580 push {r7, lr} - 8002ba2: b088 sub sp, #32 - 8002ba4: af02 add r7, sp, #8 - 8002ba6: 60f8 str r0, [r7, #12] - 8002ba8: 4608 mov r0, r1 - 8002baa: 4611 mov r1, r2 - 8002bac: 461a mov r2, r3 - 8002bae: 4603 mov r3, r0 - 8002bb0: 817b strh r3, [r7, #10] - 8002bb2: 460b mov r3, r1 - 8002bb4: 813b strh r3, [r7, #8] - 8002bb6: 4613 mov r3, r2 - 8002bb8: 80fb strh r3, [r7, #6] + 8002bf0: b580 push {r7, lr} + 8002bf2: b088 sub sp, #32 + 8002bf4: af02 add r7, sp, #8 + 8002bf6: 60f8 str r0, [r7, #12] + 8002bf8: 4608 mov r0, r1 + 8002bfa: 4611 mov r1, r2 + 8002bfc: 461a mov r2, r3 + 8002bfe: 4603 mov r3, r0 + 8002c00: 817b strh r3, [r7, #10] + 8002c02: 460b mov r3, r1 + 8002c04: 813b strh r3, [r7, #8] + 8002c06: 4613 mov r3, r2 + 8002c08: 80fb strh r3, [r7, #6] /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002bba: 68fb ldr r3, [r7, #12] - 8002bbc: 681b ldr r3, [r3, #0] - 8002bbe: 681a ldr r2, [r3, #0] - 8002bc0: 68fb ldr r3, [r7, #12] - 8002bc2: 681b ldr r3, [r3, #0] - 8002bc4: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 8002bc8: 601a str r2, [r3, #0] + 8002c0a: 68fb ldr r3, [r7, #12] + 8002c0c: 681b ldr r3, [r3, #0] + 8002c0e: 681a ldr r2, [r3, #0] + 8002c10: 68fb ldr r3, [r7, #12] + 8002c12: 681b ldr r3, [r3, #0] + 8002c14: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 8002c18: 601a str r2, [r3, #0] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002bca: 68fb ldr r3, [r7, #12] - 8002bcc: 681b ldr r3, [r3, #0] - 8002bce: 681a ldr r2, [r3, #0] - 8002bd0: 68fb ldr r3, [r7, #12] - 8002bd2: 681b ldr r3, [r3, #0] - 8002bd4: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002bd8: 601a str r2, [r3, #0] + 8002c1a: 68fb ldr r3, [r7, #12] + 8002c1c: 681b ldr r3, [r3, #0] + 8002c1e: 681a ldr r2, [r3, #0] + 8002c20: 68fb ldr r3, [r7, #12] + 8002c22: 681b ldr r3, [r3, #0] + 8002c24: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002c28: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002bda: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002bdc: 9300 str r3, [sp, #0] - 8002bde: 6a3b ldr r3, [r7, #32] - 8002be0: 2200 movs r2, #0 - 8002be2: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002be6: 68f8 ldr r0, [r7, #12] - 8002be8: f000 f8c2 bl 8002d70 - 8002bec: 4603 mov r3, r0 - 8002bee: 2b00 cmp r3, #0 - 8002bf0: d00d beq.n 8002c0e + 8002c2a: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002c2c: 9300 str r3, [sp, #0] + 8002c2e: 6a3b ldr r3, [r7, #32] + 8002c30: 2200 movs r2, #0 + 8002c32: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002c36: 68f8 ldr r0, [r7, #12] + 8002c38: f000 f8c2 bl 8002dc0 + 8002c3c: 4603 mov r3, r0 + 8002c3e: 2b00 cmp r3, #0 + 8002c40: d00d beq.n 8002c5e { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002bf2: 68fb ldr r3, [r7, #12] - 8002bf4: 681b ldr r3, [r3, #0] - 8002bf6: 681b ldr r3, [r3, #0] - 8002bf8: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002bfc: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002c00: d103 bne.n 8002c0a + 8002c42: 68fb ldr r3, [r7, #12] + 8002c44: 681b ldr r3, [r3, #0] + 8002c46: 681b ldr r3, [r3, #0] + 8002c48: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002c4c: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002c50: d103 bne.n 8002c5a { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002c02: 68fb ldr r3, [r7, #12] - 8002c04: f44f 7200 mov.w r2, #512 ; 0x200 - 8002c08: 641a str r2, [r3, #64] ; 0x40 + 8002c52: 68fb ldr r3, [r7, #12] + 8002c54: f44f 7200 mov.w r2, #512 ; 0x200 + 8002c58: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002c0a: 2303 movs r3, #3 - 8002c0c: e0aa b.n 8002d64 + 8002c5a: 2303 movs r3, #3 + 8002c5c: e0aa b.n 8002db4 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 8002c0e: 897b ldrh r3, [r7, #10] - 8002c10: b2db uxtb r3, r3 - 8002c12: 461a mov r2, r3 - 8002c14: 68fb ldr r3, [r7, #12] - 8002c16: 681b ldr r3, [r3, #0] - 8002c18: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002c1c: 611a str r2, [r3, #16] + 8002c5e: 897b ldrh r3, [r7, #10] + 8002c60: b2db uxtb r3, r3 + 8002c62: 461a mov r2, r3 + 8002c64: 68fb ldr r3, [r7, #12] + 8002c66: 681b ldr r3, [r3, #0] + 8002c68: f002 02fe and.w r2, r2, #254 ; 0xfe + 8002c6c: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002c1e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002c20: 6a3a ldr r2, [r7, #32] - 8002c22: 4952 ldr r1, [pc, #328] ; (8002d6c ) - 8002c24: 68f8 ldr r0, [r7, #12] - 8002c26: f000 f8fa bl 8002e1e - 8002c2a: 4603 mov r3, r0 - 8002c2c: 2b00 cmp r3, #0 - 8002c2e: d001 beq.n 8002c34 + 8002c6e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002c70: 6a3a ldr r2, [r7, #32] + 8002c72: 4952 ldr r1, [pc, #328] ; (8002dbc ) + 8002c74: 68f8 ldr r0, [r7, #12] + 8002c76: f000 f8fa bl 8002e6e + 8002c7a: 4603 mov r3, r0 + 8002c7c: 2b00 cmp r3, #0 + 8002c7e: d001 beq.n 8002c84 { return HAL_ERROR; - 8002c30: 2301 movs r3, #1 - 8002c32: e097 b.n 8002d64 + 8002c80: 2301 movs r3, #1 + 8002c82: e097 b.n 8002db4 } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002c34: 2300 movs r3, #0 - 8002c36: 617b str r3, [r7, #20] - 8002c38: 68fb ldr r3, [r7, #12] - 8002c3a: 681b ldr r3, [r3, #0] - 8002c3c: 695b ldr r3, [r3, #20] - 8002c3e: 617b str r3, [r7, #20] - 8002c40: 68fb ldr r3, [r7, #12] - 8002c42: 681b ldr r3, [r3, #0] - 8002c44: 699b ldr r3, [r3, #24] - 8002c46: 617b str r3, [r7, #20] - 8002c48: 697b ldr r3, [r7, #20] + 8002c84: 2300 movs r3, #0 + 8002c86: 617b str r3, [r7, #20] + 8002c88: 68fb ldr r3, [r7, #12] + 8002c8a: 681b ldr r3, [r3, #0] + 8002c8c: 695b ldr r3, [r3, #20] + 8002c8e: 617b str r3, [r7, #20] + 8002c90: 68fb ldr r3, [r7, #12] + 8002c92: 681b ldr r3, [r3, #0] + 8002c94: 699b ldr r3, [r3, #24] + 8002c96: 617b str r3, [r7, #20] + 8002c98: 697b ldr r3, [r7, #20] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002c4a: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002c4c: 6a39 ldr r1, [r7, #32] - 8002c4e: 68f8 ldr r0, [r7, #12] - 8002c50: f000 f964 bl 8002f1c - 8002c54: 4603 mov r3, r0 - 8002c56: 2b00 cmp r3, #0 - 8002c58: d00d beq.n 8002c76 + 8002c9a: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002c9c: 6a39 ldr r1, [r7, #32] + 8002c9e: 68f8 ldr r0, [r7, #12] + 8002ca0: f000 f964 bl 8002f6c + 8002ca4: 4603 mov r3, r0 + 8002ca6: 2b00 cmp r3, #0 + 8002ca8: d00d beq.n 8002cc6 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002c5a: 68fb ldr r3, [r7, #12] - 8002c5c: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002c5e: 2b04 cmp r3, #4 - 8002c60: d107 bne.n 8002c72 + 8002caa: 68fb ldr r3, [r7, #12] + 8002cac: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002cae: 2b04 cmp r3, #4 + 8002cb0: d107 bne.n 8002cc2 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002c62: 68fb ldr r3, [r7, #12] - 8002c64: 681b ldr r3, [r3, #0] - 8002c66: 681a ldr r2, [r3, #0] - 8002c68: 68fb ldr r3, [r7, #12] - 8002c6a: 681b ldr r3, [r3, #0] - 8002c6c: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002c70: 601a str r2, [r3, #0] + 8002cb2: 68fb ldr r3, [r7, #12] + 8002cb4: 681b ldr r3, [r3, #0] + 8002cb6: 681a ldr r2, [r3, #0] + 8002cb8: 68fb ldr r3, [r7, #12] + 8002cba: 681b ldr r3, [r3, #0] + 8002cbc: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002cc0: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002c72: 2301 movs r3, #1 - 8002c74: e076 b.n 8002d64 + 8002cc2: 2301 movs r3, #1 + 8002cc4: e076 b.n 8002db4 } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 8002c76: 88fb ldrh r3, [r7, #6] - 8002c78: 2b01 cmp r3, #1 - 8002c7a: d105 bne.n 8002c88 + 8002cc6: 88fb ldrh r3, [r7, #6] + 8002cc8: 2b01 cmp r3, #1 + 8002cca: d105 bne.n 8002cd8 { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002c7c: 893b ldrh r3, [r7, #8] - 8002c7e: b2da uxtb r2, r3 - 8002c80: 68fb ldr r3, [r7, #12] - 8002c82: 681b ldr r3, [r3, #0] - 8002c84: 611a str r2, [r3, #16] - 8002c86: e021 b.n 8002ccc + 8002ccc: 893b ldrh r3, [r7, #8] + 8002cce: b2da uxtb r2, r3 + 8002cd0: 68fb ldr r3, [r7, #12] + 8002cd2: 681b ldr r3, [r3, #0] + 8002cd4: 611a str r2, [r3, #16] + 8002cd6: e021 b.n 8002d1c } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 8002c88: 893b ldrh r3, [r7, #8] - 8002c8a: 0a1b lsrs r3, r3, #8 - 8002c8c: b29b uxth r3, r3 - 8002c8e: b2da uxtb r2, r3 - 8002c90: 68fb ldr r3, [r7, #12] - 8002c92: 681b ldr r3, [r3, #0] - 8002c94: 611a str r2, [r3, #16] + 8002cd8: 893b ldrh r3, [r7, #8] + 8002cda: 0a1b lsrs r3, r3, #8 + 8002cdc: b29b uxth r3, r3 + 8002cde: b2da uxtb r2, r3 + 8002ce0: 68fb ldr r3, [r7, #12] + 8002ce2: 681b ldr r3, [r3, #0] + 8002ce4: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002c96: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002c98: 6a39 ldr r1, [r7, #32] - 8002c9a: 68f8 ldr r0, [r7, #12] - 8002c9c: f000 f93e bl 8002f1c - 8002ca0: 4603 mov r3, r0 - 8002ca2: 2b00 cmp r3, #0 - 8002ca4: d00d beq.n 8002cc2 + 8002ce6: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002ce8: 6a39 ldr r1, [r7, #32] + 8002cea: 68f8 ldr r0, [r7, #12] + 8002cec: f000 f93e bl 8002f6c + 8002cf0: 4603 mov r3, r0 + 8002cf2: 2b00 cmp r3, #0 + 8002cf4: d00d beq.n 8002d12 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002ca6: 68fb ldr r3, [r7, #12] - 8002ca8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002caa: 2b04 cmp r3, #4 - 8002cac: d107 bne.n 8002cbe + 8002cf6: 68fb ldr r3, [r7, #12] + 8002cf8: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002cfa: 2b04 cmp r3, #4 + 8002cfc: d107 bne.n 8002d0e { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002cae: 68fb ldr r3, [r7, #12] - 8002cb0: 681b ldr r3, [r3, #0] - 8002cb2: 681a ldr r2, [r3, #0] - 8002cb4: 68fb ldr r3, [r7, #12] - 8002cb6: 681b ldr r3, [r3, #0] - 8002cb8: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002cbc: 601a str r2, [r3, #0] + 8002cfe: 68fb ldr r3, [r7, #12] + 8002d00: 681b ldr r3, [r3, #0] + 8002d02: 681a ldr r2, [r3, #0] + 8002d04: 68fb ldr r3, [r7, #12] + 8002d06: 681b ldr r3, [r3, #0] + 8002d08: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002d0c: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002cbe: 2301 movs r3, #1 - 8002cc0: e050 b.n 8002d64 + 8002d0e: 2301 movs r3, #1 + 8002d10: e050 b.n 8002db4 } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002cc2: 893b ldrh r3, [r7, #8] - 8002cc4: b2da uxtb r2, r3 - 8002cc6: 68fb ldr r3, [r7, #12] - 8002cc8: 681b ldr r3, [r3, #0] - 8002cca: 611a str r2, [r3, #16] + 8002d12: 893b ldrh r3, [r7, #8] + 8002d14: b2da uxtb r2, r3 + 8002d16: 68fb ldr r3, [r7, #12] + 8002d18: 681b ldr r3, [r3, #0] + 8002d1a: 611a str r2, [r3, #16] } /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002ccc: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002cce: 6a39 ldr r1, [r7, #32] - 8002cd0: 68f8 ldr r0, [r7, #12] - 8002cd2: f000 f923 bl 8002f1c - 8002cd6: 4603 mov r3, r0 - 8002cd8: 2b00 cmp r3, #0 - 8002cda: d00d beq.n 8002cf8 + 8002d1c: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002d1e: 6a39 ldr r1, [r7, #32] + 8002d20: 68f8 ldr r0, [r7, #12] + 8002d22: f000 f923 bl 8002f6c + 8002d26: 4603 mov r3, r0 + 8002d28: 2b00 cmp r3, #0 + 8002d2a: d00d beq.n 8002d48 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002cdc: 68fb ldr r3, [r7, #12] - 8002cde: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002ce0: 2b04 cmp r3, #4 - 8002ce2: d107 bne.n 8002cf4 + 8002d2c: 68fb ldr r3, [r7, #12] + 8002d2e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002d30: 2b04 cmp r3, #4 + 8002d32: d107 bne.n 8002d44 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002ce4: 68fb ldr r3, [r7, #12] - 8002ce6: 681b ldr r3, [r3, #0] - 8002ce8: 681a ldr r2, [r3, #0] - 8002cea: 68fb ldr r3, [r7, #12] - 8002cec: 681b ldr r3, [r3, #0] - 8002cee: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002cf2: 601a str r2, [r3, #0] + 8002d34: 68fb ldr r3, [r7, #12] + 8002d36: 681b ldr r3, [r3, #0] + 8002d38: 681a ldr r2, [r3, #0] + 8002d3a: 68fb ldr r3, [r7, #12] + 8002d3c: 681b ldr r3, [r3, #0] + 8002d3e: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002d42: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002cf4: 2301 movs r3, #1 - 8002cf6: e035 b.n 8002d64 + 8002d44: 2301 movs r3, #1 + 8002d46: e035 b.n 8002db4 } /* Generate Restart */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002cf8: 68fb ldr r3, [r7, #12] - 8002cfa: 681b ldr r3, [r3, #0] - 8002cfc: 681a ldr r2, [r3, #0] - 8002cfe: 68fb ldr r3, [r7, #12] - 8002d00: 681b ldr r3, [r3, #0] - 8002d02: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002d06: 601a str r2, [r3, #0] + 8002d48: 68fb ldr r3, [r7, #12] + 8002d4a: 681b ldr r3, [r3, #0] + 8002d4c: 681a ldr r2, [r3, #0] + 8002d4e: 68fb ldr r3, [r7, #12] + 8002d50: 681b ldr r3, [r3, #0] + 8002d52: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002d56: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002d08: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002d0a: 9300 str r3, [sp, #0] - 8002d0c: 6a3b ldr r3, [r7, #32] - 8002d0e: 2200 movs r2, #0 - 8002d10: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002d14: 68f8 ldr r0, [r7, #12] - 8002d16: f000 f82b bl 8002d70 - 8002d1a: 4603 mov r3, r0 - 8002d1c: 2b00 cmp r3, #0 - 8002d1e: d00d beq.n 8002d3c + 8002d58: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002d5a: 9300 str r3, [sp, #0] + 8002d5c: 6a3b ldr r3, [r7, #32] + 8002d5e: 2200 movs r2, #0 + 8002d60: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002d64: 68f8 ldr r0, [r7, #12] + 8002d66: f000 f82b bl 8002dc0 + 8002d6a: 4603 mov r3, r0 + 8002d6c: 2b00 cmp r3, #0 + 8002d6e: d00d beq.n 8002d8c { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002d20: 68fb ldr r3, [r7, #12] - 8002d22: 681b ldr r3, [r3, #0] - 8002d24: 681b ldr r3, [r3, #0] - 8002d26: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002d2a: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002d2e: d103 bne.n 8002d38 + 8002d70: 68fb ldr r3, [r7, #12] + 8002d72: 681b ldr r3, [r3, #0] + 8002d74: 681b ldr r3, [r3, #0] + 8002d76: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002d7a: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002d7e: d103 bne.n 8002d88 { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002d30: 68fb ldr r3, [r7, #12] - 8002d32: f44f 7200 mov.w r2, #512 ; 0x200 - 8002d36: 641a str r2, [r3, #64] ; 0x40 + 8002d80: 68fb ldr r3, [r7, #12] + 8002d82: f44f 7200 mov.w r2, #512 ; 0x200 + 8002d86: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002d38: 2303 movs r3, #3 - 8002d3a: e013 b.n 8002d64 + 8002d88: 2303 movs r3, #3 + 8002d8a: e013 b.n 8002db4 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_READ(DevAddress); - 8002d3c: 897b ldrh r3, [r7, #10] - 8002d3e: b2db uxtb r3, r3 - 8002d40: f043 0301 orr.w r3, r3, #1 - 8002d44: b2da uxtb r2, r3 - 8002d46: 68fb ldr r3, [r7, #12] - 8002d48: 681b ldr r3, [r3, #0] - 8002d4a: 611a str r2, [r3, #16] + 8002d8c: 897b ldrh r3, [r7, #10] + 8002d8e: b2db uxtb r3, r3 + 8002d90: f043 0301 orr.w r3, r3, #1 + 8002d94: b2da uxtb r2, r3 + 8002d96: 68fb ldr r3, [r7, #12] + 8002d98: 681b ldr r3, [r3, #0] + 8002d9a: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002d4c: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002d4e: 6a3a ldr r2, [r7, #32] - 8002d50: 4906 ldr r1, [pc, #24] ; (8002d6c ) - 8002d52: 68f8 ldr r0, [r7, #12] - 8002d54: f000 f863 bl 8002e1e - 8002d58: 4603 mov r3, r0 - 8002d5a: 2b00 cmp r3, #0 - 8002d5c: d001 beq.n 8002d62 + 8002d9c: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002d9e: 6a3a ldr r2, [r7, #32] + 8002da0: 4906 ldr r1, [pc, #24] ; (8002dbc ) + 8002da2: 68f8 ldr r0, [r7, #12] + 8002da4: f000 f863 bl 8002e6e + 8002da8: 4603 mov r3, r0 + 8002daa: 2b00 cmp r3, #0 + 8002dac: d001 beq.n 8002db2 { return HAL_ERROR; - 8002d5e: 2301 movs r3, #1 - 8002d60: e000 b.n 8002d64 + 8002dae: 2301 movs r3, #1 + 8002db0: e000 b.n 8002db4 } return HAL_OK; - 8002d62: 2300 movs r3, #0 + 8002db2: 2300 movs r3, #0 } - 8002d64: 4618 mov r0, r3 - 8002d66: 3718 adds r7, #24 - 8002d68: 46bd mov sp, r7 - 8002d6a: bd80 pop {r7, pc} - 8002d6c: 00010002 .word 0x00010002 + 8002db4: 4618 mov r0, r3 + 8002db6: 3718 adds r7, #24 + 8002db8: 46bd mov sp, r7 + 8002dba: bd80 pop {r7, pc} + 8002dbc: 00010002 .word 0x00010002 -08002d70 : +08002dc0 : * @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) { - 8002d70: b580 push {r7, lr} - 8002d72: b084 sub sp, #16 - 8002d74: af00 add r7, sp, #0 - 8002d76: 60f8 str r0, [r7, #12] - 8002d78: 60b9 str r1, [r7, #8] - 8002d7a: 603b str r3, [r7, #0] - 8002d7c: 4613 mov r3, r2 - 8002d7e: 71fb strb r3, [r7, #7] + 8002dc0: b580 push {r7, lr} + 8002dc2: b084 sub sp, #16 + 8002dc4: af00 add r7, sp, #0 + 8002dc6: 60f8 str r0, [r7, #12] + 8002dc8: 60b9 str r1, [r7, #8] + 8002dca: 603b str r3, [r7, #0] + 8002dcc: 4613 mov r3, r2 + 8002dce: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002d80: e025 b.n 8002dce + 8002dd0: e025 b.n 8002e1e { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002d82: 683b ldr r3, [r7, #0] - 8002d84: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002d88: d021 beq.n 8002dce + 8002dd2: 683b ldr r3, [r7, #0] + 8002dd4: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002dd8: d021 beq.n 8002e1e { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002d8a: f7fe fecd bl 8001b28 - 8002d8e: 4602 mov r2, r0 - 8002d90: 69bb ldr r3, [r7, #24] - 8002d92: 1ad3 subs r3, r2, r3 - 8002d94: 683a ldr r2, [r7, #0] - 8002d96: 429a cmp r2, r3 - 8002d98: d302 bcc.n 8002da0 - 8002d9a: 683b ldr r3, [r7, #0] - 8002d9c: 2b00 cmp r3, #0 - 8002d9e: d116 bne.n 8002dce + 8002dda: f7fe fecd bl 8001b78 + 8002dde: 4602 mov r2, r0 + 8002de0: 69bb ldr r3, [r7, #24] + 8002de2: 1ad3 subs r3, r2, r3 + 8002de4: 683a ldr r2, [r7, #0] + 8002de6: 429a cmp r2, r3 + 8002de8: d302 bcc.n 8002df0 + 8002dea: 683b ldr r3, [r7, #0] + 8002dec: 2b00 cmp r3, #0 + 8002dee: d116 bne.n 8002e1e { hi2c->PreviousState = I2C_STATE_NONE; - 8002da0: 68fb ldr r3, [r7, #12] - 8002da2: 2200 movs r2, #0 - 8002da4: 631a str r2, [r3, #48] ; 0x30 + 8002df0: 68fb ldr r3, [r7, #12] + 8002df2: 2200 movs r2, #0 + 8002df4: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002da6: 68fb ldr r3, [r7, #12] - 8002da8: 2220 movs r2, #32 - 8002daa: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002df6: 68fb ldr r3, [r7, #12] + 8002df8: 2220 movs r2, #32 + 8002dfa: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002dae: 68fb ldr r3, [r7, #12] - 8002db0: 2200 movs r2, #0 - 8002db2: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002dfe: 68fb ldr r3, [r7, #12] + 8002e00: 2200 movs r2, #0 + 8002e02: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002db6: 68fb ldr r3, [r7, #12] - 8002db8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002dba: f043 0220 orr.w r2, r3, #32 - 8002dbe: 68fb ldr r3, [r7, #12] - 8002dc0: 641a str r2, [r3, #64] ; 0x40 + 8002e06: 68fb ldr r3, [r7, #12] + 8002e08: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002e0a: f043 0220 orr.w r2, r3, #32 + 8002e0e: 68fb ldr r3, [r7, #12] + 8002e10: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002dc2: 68fb ldr r3, [r7, #12] - 8002dc4: 2200 movs r2, #0 - 8002dc6: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e12: 68fb ldr r3, [r7, #12] + 8002e14: 2200 movs r2, #0 + 8002e16: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002dca: 2301 movs r3, #1 - 8002dcc: e023 b.n 8002e16 + 8002e1a: 2301 movs r3, #1 + 8002e1c: e023 b.n 8002e66 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002dce: 68bb ldr r3, [r7, #8] - 8002dd0: 0c1b lsrs r3, r3, #16 - 8002dd2: b2db uxtb r3, r3 - 8002dd4: 2b01 cmp r3, #1 - 8002dd6: d10d bne.n 8002df4 - 8002dd8: 68fb ldr r3, [r7, #12] - 8002dda: 681b ldr r3, [r3, #0] - 8002ddc: 695b ldr r3, [r3, #20] - 8002dde: 43da mvns r2, r3 - 8002de0: 68bb ldr r3, [r7, #8] - 8002de2: 4013 ands r3, r2 - 8002de4: b29b uxth r3, r3 - 8002de6: 2b00 cmp r3, #0 - 8002de8: bf0c ite eq - 8002dea: 2301 moveq r3, #1 - 8002dec: 2300 movne r3, #0 - 8002dee: b2db uxtb r3, r3 - 8002df0: 461a mov r2, r3 - 8002df2: e00c b.n 8002e0e - 8002df4: 68fb ldr r3, [r7, #12] - 8002df6: 681b ldr r3, [r3, #0] - 8002df8: 699b ldr r3, [r3, #24] - 8002dfa: 43da mvns r2, r3 - 8002dfc: 68bb ldr r3, [r7, #8] - 8002dfe: 4013 ands r3, r2 - 8002e00: b29b uxth r3, r3 - 8002e02: 2b00 cmp r3, #0 - 8002e04: bf0c ite eq - 8002e06: 2301 moveq r3, #1 - 8002e08: 2300 movne r3, #0 - 8002e0a: b2db uxtb r3, r3 - 8002e0c: 461a mov r2, r3 - 8002e0e: 79fb ldrb r3, [r7, #7] - 8002e10: 429a cmp r2, r3 - 8002e12: d0b6 beq.n 8002d82 + 8002e1e: 68bb ldr r3, [r7, #8] + 8002e20: 0c1b lsrs r3, r3, #16 + 8002e22: b2db uxtb r3, r3 + 8002e24: 2b01 cmp r3, #1 + 8002e26: d10d bne.n 8002e44 + 8002e28: 68fb ldr r3, [r7, #12] + 8002e2a: 681b ldr r3, [r3, #0] + 8002e2c: 695b ldr r3, [r3, #20] + 8002e2e: 43da mvns r2, r3 + 8002e30: 68bb ldr r3, [r7, #8] + 8002e32: 4013 ands r3, r2 + 8002e34: b29b uxth r3, r3 + 8002e36: 2b00 cmp r3, #0 + 8002e38: bf0c ite eq + 8002e3a: 2301 moveq r3, #1 + 8002e3c: 2300 movne r3, #0 + 8002e3e: b2db uxtb r3, r3 + 8002e40: 461a mov r2, r3 + 8002e42: e00c b.n 8002e5e + 8002e44: 68fb ldr r3, [r7, #12] + 8002e46: 681b ldr r3, [r3, #0] + 8002e48: 699b ldr r3, [r3, #24] + 8002e4a: 43da mvns r2, r3 + 8002e4c: 68bb ldr r3, [r7, #8] + 8002e4e: 4013 ands r3, r2 + 8002e50: b29b uxth r3, r3 + 8002e52: 2b00 cmp r3, #0 + 8002e54: bf0c ite eq + 8002e56: 2301 moveq r3, #1 + 8002e58: 2300 movne r3, #0 + 8002e5a: b2db uxtb r3, r3 + 8002e5c: 461a mov r2, r3 + 8002e5e: 79fb ldrb r3, [r7, #7] + 8002e60: 429a cmp r2, r3 + 8002e62: d0b6 beq.n 8002dd2 } } } return HAL_OK; - 8002e14: 2300 movs r3, #0 + 8002e64: 2300 movs r3, #0 } - 8002e16: 4618 mov r0, r3 - 8002e18: 3710 adds r7, #16 - 8002e1a: 46bd mov sp, r7 - 8002e1c: bd80 pop {r7, pc} + 8002e66: 4618 mov r0, r3 + 8002e68: 3710 adds r7, #16 + 8002e6a: 46bd mov sp, r7 + 8002e6c: bd80 pop {r7, pc} -08002e1e : +08002e6e : * @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) { - 8002e1e: b580 push {r7, lr} - 8002e20: b084 sub sp, #16 - 8002e22: af00 add r7, sp, #0 - 8002e24: 60f8 str r0, [r7, #12] - 8002e26: 60b9 str r1, [r7, #8] - 8002e28: 607a str r2, [r7, #4] - 8002e2a: 603b str r3, [r7, #0] + 8002e6e: b580 push {r7, lr} + 8002e70: b084 sub sp, #16 + 8002e72: af00 add r7, sp, #0 + 8002e74: 60f8 str r0, [r7, #12] + 8002e76: 60b9 str r1, [r7, #8] + 8002e78: 607a str r2, [r7, #4] + 8002e7a: 603b str r3, [r7, #0] while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002e2c: e051 b.n 8002ed2 + 8002e7c: e051 b.n 8002f22 { if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 8002e2e: 68fb ldr r3, [r7, #12] - 8002e30: 681b ldr r3, [r3, #0] - 8002e32: 695b ldr r3, [r3, #20] - 8002e34: f403 6380 and.w r3, r3, #1024 ; 0x400 - 8002e38: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8002e3c: d123 bne.n 8002e86 + 8002e7e: 68fb ldr r3, [r7, #12] + 8002e80: 681b ldr r3, [r3, #0] + 8002e82: 695b ldr r3, [r3, #20] + 8002e84: f403 6380 and.w r3, r3, #1024 ; 0x400 + 8002e88: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 8002e8c: d123 bne.n 8002ed6 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002e3e: 68fb ldr r3, [r7, #12] - 8002e40: 681b ldr r3, [r3, #0] - 8002e42: 681a ldr r2, [r3, #0] - 8002e44: 68fb ldr r3, [r7, #12] - 8002e46: 681b ldr r3, [r3, #0] - 8002e48: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002e4c: 601a str r2, [r3, #0] + 8002e8e: 68fb ldr r3, [r7, #12] + 8002e90: 681b ldr r3, [r3, #0] + 8002e92: 681a ldr r2, [r3, #0] + 8002e94: 68fb ldr r3, [r7, #12] + 8002e96: 681b ldr r3, [r3, #0] + 8002e98: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002e9c: 601a str r2, [r3, #0] /* Clear AF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 8002e4e: 68fb ldr r3, [r7, #12] - 8002e50: 681b ldr r3, [r3, #0] - 8002e52: f46f 6280 mvn.w r2, #1024 ; 0x400 - 8002e56: 615a str r2, [r3, #20] + 8002e9e: 68fb ldr r3, [r7, #12] + 8002ea0: 681b ldr r3, [r3, #0] + 8002ea2: f46f 6280 mvn.w r2, #1024 ; 0x400 + 8002ea6: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002e58: 68fb ldr r3, [r7, #12] - 8002e5a: 2200 movs r2, #0 - 8002e5c: 631a str r2, [r3, #48] ; 0x30 + 8002ea8: 68fb ldr r3, [r7, #12] + 8002eaa: 2200 movs r2, #0 + 8002eac: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002e5e: 68fb ldr r3, [r7, #12] - 8002e60: 2220 movs r2, #32 - 8002e62: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002eae: 68fb ldr r3, [r7, #12] + 8002eb0: 2220 movs r2, #32 + 8002eb2: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002e66: 68fb ldr r3, [r7, #12] - 8002e68: 2200 movs r2, #0 - 8002e6a: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002eb6: 68fb ldr r3, [r7, #12] + 8002eb8: 2200 movs r2, #0 + 8002eba: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8002e6e: 68fb ldr r3, [r7, #12] - 8002e70: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002e72: f043 0204 orr.w r2, r3, #4 - 8002e76: 68fb ldr r3, [r7, #12] - 8002e78: 641a str r2, [r3, #64] ; 0x40 + 8002ebe: 68fb ldr r3, [r7, #12] + 8002ec0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002ec2: f043 0204 orr.w r2, r3, #4 + 8002ec6: 68fb ldr r3, [r7, #12] + 8002ec8: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002e7a: 68fb ldr r3, [r7, #12] - 8002e7c: 2200 movs r2, #0 - 8002e7e: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002eca: 68fb ldr r3, [r7, #12] + 8002ecc: 2200 movs r2, #0 + 8002ece: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002e82: 2301 movs r3, #1 - 8002e84: e046 b.n 8002f14 + 8002ed2: 2301 movs r3, #1 + 8002ed4: e046 b.n 8002f64 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002e86: 687b ldr r3, [r7, #4] - 8002e88: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002e8c: d021 beq.n 8002ed2 + 8002ed6: 687b ldr r3, [r7, #4] + 8002ed8: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002edc: d021 beq.n 8002f22 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002e8e: f7fe fe4b bl 8001b28 - 8002e92: 4602 mov r2, r0 - 8002e94: 683b ldr r3, [r7, #0] - 8002e96: 1ad3 subs r3, r2, r3 - 8002e98: 687a ldr r2, [r7, #4] - 8002e9a: 429a cmp r2, r3 - 8002e9c: d302 bcc.n 8002ea4 - 8002e9e: 687b ldr r3, [r7, #4] - 8002ea0: 2b00 cmp r3, #0 - 8002ea2: d116 bne.n 8002ed2 + 8002ede: f7fe fe4b bl 8001b78 + 8002ee2: 4602 mov r2, r0 + 8002ee4: 683b ldr r3, [r7, #0] + 8002ee6: 1ad3 subs r3, r2, r3 + 8002ee8: 687a ldr r2, [r7, #4] + 8002eea: 429a cmp r2, r3 + 8002eec: d302 bcc.n 8002ef4 + 8002eee: 687b ldr r3, [r7, #4] + 8002ef0: 2b00 cmp r3, #0 + 8002ef2: d116 bne.n 8002f22 { hi2c->PreviousState = I2C_STATE_NONE; - 8002ea4: 68fb ldr r3, [r7, #12] - 8002ea6: 2200 movs r2, #0 - 8002ea8: 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; - 8002eaa: 68fb ldr r3, [r7, #12] - 8002eac: 2220 movs r2, #32 - 8002eae: 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; - 8002eb2: 68fb ldr r3, [r7, #12] - 8002eb4: 2200 movs r2, #0 - 8002eb6: 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; - 8002eba: 68fb ldr r3, [r7, #12] - 8002ebc: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002ebe: f043 0220 orr.w r2, r3, #32 - 8002ec2: 68fb ldr r3, [r7, #12] - 8002ec4: 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); - 8002ec6: 68fb ldr r3, [r7, #12] - 8002ec8: 2200 movs r2, #0 - 8002eca: 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; - 8002ece: 2301 movs r3, #1 - 8002ed0: e020 b.n 8002f14 + 8002f1e: 2301 movs r3, #1 + 8002f20: e020 b.n 8002f64 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002ed2: 68bb ldr r3, [r7, #8] - 8002ed4: 0c1b lsrs r3, r3, #16 - 8002ed6: b2db uxtb r3, r3 - 8002ed8: 2b01 cmp r3, #1 - 8002eda: d10c bne.n 8002ef6 - 8002edc: 68fb ldr r3, [r7, #12] - 8002ede: 681b ldr r3, [r3, #0] - 8002ee0: 695b ldr r3, [r3, #20] - 8002ee2: 43da mvns r2, r3 - 8002ee4: 68bb ldr r3, [r7, #8] - 8002ee6: 4013 ands r3, r2 - 8002ee8: b29b uxth r3, r3 - 8002eea: 2b00 cmp r3, #0 - 8002eec: bf14 ite ne - 8002eee: 2301 movne r3, #1 - 8002ef0: 2300 moveq r3, #0 - 8002ef2: b2db uxtb r3, r3 - 8002ef4: e00b b.n 8002f0e - 8002ef6: 68fb ldr r3, [r7, #12] - 8002ef8: 681b ldr r3, [r3, #0] - 8002efa: 699b ldr r3, [r3, #24] - 8002efc: 43da mvns r2, r3 - 8002efe: 68bb ldr r3, [r7, #8] - 8002f00: 4013 ands r3, r2 - 8002f02: b29b uxth r3, r3 - 8002f04: 2b00 cmp r3, #0 - 8002f06: bf14 ite ne - 8002f08: 2301 movne r3, #1 - 8002f0a: 2300 moveq r3, #0 - 8002f0c: b2db uxtb r3, r3 - 8002f0e: 2b00 cmp r3, #0 - 8002f10: d18d bne.n 8002e2e + 8002f22: 68bb ldr r3, [r7, #8] + 8002f24: 0c1b lsrs r3, r3, #16 + 8002f26: b2db uxtb r3, r3 + 8002f28: 2b01 cmp r3, #1 + 8002f2a: d10c bne.n 8002f46 + 8002f2c: 68fb ldr r3, [r7, #12] + 8002f2e: 681b ldr r3, [r3, #0] + 8002f30: 695b ldr r3, [r3, #20] + 8002f32: 43da mvns r2, r3 + 8002f34: 68bb ldr r3, [r7, #8] + 8002f36: 4013 ands r3, r2 + 8002f38: b29b uxth r3, r3 + 8002f3a: 2b00 cmp r3, #0 + 8002f3c: bf14 ite ne + 8002f3e: 2301 movne r3, #1 + 8002f40: 2300 moveq r3, #0 + 8002f42: b2db uxtb r3, r3 + 8002f44: e00b b.n 8002f5e + 8002f46: 68fb ldr r3, [r7, #12] + 8002f48: 681b ldr r3, [r3, #0] + 8002f4a: 699b ldr r3, [r3, #24] + 8002f4c: 43da mvns r2, r3 + 8002f4e: 68bb ldr r3, [r7, #8] + 8002f50: 4013 ands r3, r2 + 8002f52: b29b uxth r3, r3 + 8002f54: 2b00 cmp r3, #0 + 8002f56: bf14 ite ne + 8002f58: 2301 movne r3, #1 + 8002f5a: 2300 moveq r3, #0 + 8002f5c: b2db uxtb r3, r3 + 8002f5e: 2b00 cmp r3, #0 + 8002f60: d18d bne.n 8002e7e } } } return HAL_OK; - 8002f12: 2300 movs r3, #0 + 8002f62: 2300 movs r3, #0 } - 8002f14: 4618 mov r0, r3 - 8002f16: 3710 adds r7, #16 - 8002f18: 46bd mov sp, r7 - 8002f1a: bd80 pop {r7, pc} + 8002f64: 4618 mov r0, r3 + 8002f66: 3710 adds r7, #16 + 8002f68: 46bd mov sp, r7 + 8002f6a: bd80 pop {r7, pc} -08002f1c : +08002f6c : * @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) { - 8002f1c: b580 push {r7, lr} - 8002f1e: b084 sub sp, #16 - 8002f20: af00 add r7, sp, #0 - 8002f22: 60f8 str r0, [r7, #12] - 8002f24: 60b9 str r1, [r7, #8] - 8002f26: 607a str r2, [r7, #4] + 8002f6c: b580 push {r7, lr} + 8002f6e: b084 sub sp, #16 + 8002f70: af00 add r7, sp, #0 + 8002f72: 60f8 str r0, [r7, #12] + 8002f74: 60b9 str r1, [r7, #8] + 8002f76: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002f28: e02d b.n 8002f86 + 8002f78: e02d b.n 8002fd6 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002f2a: 68f8 ldr r0, [r7, #12] - 8002f2c: f000 f8ce bl 80030cc - 8002f30: 4603 mov r3, r0 - 8002f32: 2b00 cmp r3, #0 - 8002f34: d001 beq.n 8002f3a + 8002f7a: 68f8 ldr r0, [r7, #12] + 8002f7c: f000 f8ce bl 800311c + 8002f80: 4603 mov r3, r0 + 8002f82: 2b00 cmp r3, #0 + 8002f84: d001 beq.n 8002f8a { return HAL_ERROR; - 8002f36: 2301 movs r3, #1 - 8002f38: e02d b.n 8002f96 + 8002f86: 2301 movs r3, #1 + 8002f88: e02d b.n 8002fe6 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002f3a: 68bb ldr r3, [r7, #8] - 8002f3c: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002f40: d021 beq.n 8002f86 + 8002f8a: 68bb ldr r3, [r7, #8] + 8002f8c: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002f90: d021 beq.n 8002fd6 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002f42: f7fe fdf1 bl 8001b28 - 8002f46: 4602 mov r2, r0 - 8002f48: 687b ldr r3, [r7, #4] - 8002f4a: 1ad3 subs r3, r2, r3 - 8002f4c: 68ba ldr r2, [r7, #8] - 8002f4e: 429a cmp r2, r3 - 8002f50: d302 bcc.n 8002f58 - 8002f52: 68bb ldr r3, [r7, #8] - 8002f54: 2b00 cmp r3, #0 - 8002f56: d116 bne.n 8002f86 + 8002f92: f7fe fdf1 bl 8001b78 + 8002f96: 4602 mov r2, r0 + 8002f98: 687b ldr r3, [r7, #4] + 8002f9a: 1ad3 subs r3, r2, r3 + 8002f9c: 68ba ldr r2, [r7, #8] + 8002f9e: 429a cmp r2, r3 + 8002fa0: d302 bcc.n 8002fa8 + 8002fa2: 68bb ldr r3, [r7, #8] + 8002fa4: 2b00 cmp r3, #0 + 8002fa6: d116 bne.n 8002fd6 { hi2c->PreviousState = I2C_STATE_NONE; - 8002f58: 68fb ldr r3, [r7, #12] - 8002f5a: 2200 movs r2, #0 - 8002f5c: 631a str r2, [r3, #48] ; 0x30 + 8002fa8: 68fb ldr r3, [r7, #12] + 8002faa: 2200 movs r2, #0 + 8002fac: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002f5e: 68fb ldr r3, [r7, #12] - 8002f60: 2220 movs r2, #32 - 8002f62: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002fae: 68fb ldr r3, [r7, #12] + 8002fb0: 2220 movs r2, #32 + 8002fb2: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002f66: 68fb ldr r3, [r7, #12] - 8002f68: 2200 movs r2, #0 - 8002f6a: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002fb6: 68fb ldr r3, [r7, #12] + 8002fb8: 2200 movs r2, #0 + 8002fba: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002f6e: 68fb ldr r3, [r7, #12] - 8002f70: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002f72: f043 0220 orr.w r2, r3, #32 - 8002f76: 68fb ldr r3, [r7, #12] - 8002f78: 641a str r2, [r3, #64] ; 0x40 + 8002fbe: 68fb ldr r3, [r7, #12] + 8002fc0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002fc2: f043 0220 orr.w r2, r3, #32 + 8002fc6: 68fb ldr r3, [r7, #12] + 8002fc8: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002f7a: 68fb ldr r3, [r7, #12] - 8002f7c: 2200 movs r2, #0 - 8002f7e: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002fca: 68fb ldr r3, [r7, #12] + 8002fcc: 2200 movs r2, #0 + 8002fce: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002f82: 2301 movs r3, #1 - 8002f84: e007 b.n 8002f96 + 8002fd2: 2301 movs r3, #1 + 8002fd4: e007 b.n 8002fe6 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002f86: 68fb ldr r3, [r7, #12] - 8002f88: 681b ldr r3, [r3, #0] - 8002f8a: 695b ldr r3, [r3, #20] - 8002f8c: f003 0380 and.w r3, r3, #128 ; 0x80 - 8002f90: 2b80 cmp r3, #128 ; 0x80 - 8002f92: d1ca bne.n 8002f2a + 8002fd6: 68fb ldr r3, [r7, #12] + 8002fd8: 681b ldr r3, [r3, #0] + 8002fda: 695b ldr r3, [r3, #20] + 8002fdc: f003 0380 and.w r3, r3, #128 ; 0x80 + 8002fe0: 2b80 cmp r3, #128 ; 0x80 + 8002fe2: d1ca bne.n 8002f7a } } } return HAL_OK; - 8002f94: 2300 movs r3, #0 + 8002fe4: 2300 movs r3, #0 } - 8002f96: 4618 mov r0, r3 - 8002f98: 3710 adds r7, #16 - 8002f9a: 46bd mov sp, r7 - 8002f9c: bd80 pop {r7, pc} + 8002fe6: 4618 mov r0, r3 + 8002fe8: 3710 adds r7, #16 + 8002fea: 46bd mov sp, r7 + 8002fec: bd80 pop {r7, pc} -08002f9e : +08002fee : * @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) { - 8002f9e: b580 push {r7, lr} - 8002fa0: b084 sub sp, #16 - 8002fa2: af00 add r7, sp, #0 - 8002fa4: 60f8 str r0, [r7, #12] - 8002fa6: 60b9 str r1, [r7, #8] - 8002fa8: 607a str r2, [r7, #4] + 8002fee: b580 push {r7, lr} + 8002ff0: b084 sub sp, #16 + 8002ff2: af00 add r7, sp, #0 + 8002ff4: 60f8 str r0, [r7, #12] + 8002ff6: 60b9 str r1, [r7, #8] + 8002ff8: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8002faa: e02d b.n 8003008 + 8002ffa: e02d b.n 8003058 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002fac: 68f8 ldr r0, [r7, #12] - 8002fae: f000 f88d bl 80030cc - 8002fb2: 4603 mov r3, r0 - 8002fb4: 2b00 cmp r3, #0 - 8002fb6: d001 beq.n 8002fbc + 8002ffc: 68f8 ldr r0, [r7, #12] + 8002ffe: f000 f88d bl 800311c + 8003002: 4603 mov r3, r0 + 8003004: 2b00 cmp r3, #0 + 8003006: d001 beq.n 800300c { return HAL_ERROR; - 8002fb8: 2301 movs r3, #1 - 8002fba: e02d b.n 8003018 + 8003008: 2301 movs r3, #1 + 800300a: e02d b.n 8003068 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002fbc: 68bb ldr r3, [r7, #8] - 8002fbe: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002fc2: d021 beq.n 8003008 + 800300c: 68bb ldr r3, [r7, #8] + 800300e: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8003012: d021 beq.n 8003058 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002fc4: f7fe fdb0 bl 8001b28 - 8002fc8: 4602 mov r2, r0 - 8002fca: 687b ldr r3, [r7, #4] - 8002fcc: 1ad3 subs r3, r2, r3 - 8002fce: 68ba ldr r2, [r7, #8] - 8002fd0: 429a cmp r2, r3 - 8002fd2: d302 bcc.n 8002fda - 8002fd4: 68bb ldr r3, [r7, #8] - 8002fd6: 2b00 cmp r3, #0 - 8002fd8: d116 bne.n 8003008 + 8003014: f7fe fdb0 bl 8001b78 + 8003018: 4602 mov r2, r0 + 800301a: 687b ldr r3, [r7, #4] + 800301c: 1ad3 subs r3, r2, r3 + 800301e: 68ba ldr r2, [r7, #8] + 8003020: 429a cmp r2, r3 + 8003022: d302 bcc.n 800302a + 8003024: 68bb ldr r3, [r7, #8] + 8003026: 2b00 cmp r3, #0 + 8003028: d116 bne.n 8003058 { hi2c->PreviousState = I2C_STATE_NONE; - 8002fda: 68fb ldr r3, [r7, #12] - 8002fdc: 2200 movs r2, #0 - 8002fde: 631a str r2, [r3, #48] ; 0x30 + 800302a: 68fb ldr r3, [r7, #12] + 800302c: 2200 movs r2, #0 + 800302e: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002fe0: 68fb ldr r3, [r7, #12] - 8002fe2: 2220 movs r2, #32 - 8002fe4: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8003030: 68fb ldr r3, [r7, #12] + 8003032: 2220 movs r2, #32 + 8003034: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002fe8: 68fb ldr r3, [r7, #12] - 8002fea: 2200 movs r2, #0 - 8002fec: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8003038: 68fb ldr r3, [r7, #12] + 800303a: 2200 movs r2, #0 + 800303c: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002ff0: 68fb ldr r3, [r7, #12] - 8002ff2: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002ff4: f043 0220 orr.w r2, r3, #32 - 8002ff8: 68fb ldr r3, [r7, #12] - 8002ffa: 641a str r2, [r3, #64] ; 0x40 + 8003040: 68fb ldr r3, [r7, #12] + 8003042: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003044: f043 0220 orr.w r2, r3, #32 + 8003048: 68fb ldr r3, [r7, #12] + 800304a: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002ffc: 68fb ldr r3, [r7, #12] - 8002ffe: 2200 movs r2, #0 - 8003000: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800304c: 68fb ldr r3, [r7, #12] + 800304e: 2200 movs r2, #0 + 8003050: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8003004: 2301 movs r3, #1 - 8003006: e007 b.n 8003018 + 8003054: 2301 movs r3, #1 + 8003056: e007 b.n 8003068 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8003008: 68fb ldr r3, [r7, #12] - 800300a: 681b ldr r3, [r3, #0] - 800300c: 695b ldr r3, [r3, #20] - 800300e: f003 0304 and.w r3, r3, #4 - 8003012: 2b04 cmp r3, #4 - 8003014: d1ca bne.n 8002fac + 8003058: 68fb ldr r3, [r7, #12] + 800305a: 681b ldr r3, [r3, #0] + 800305c: 695b ldr r3, [r3, #20] + 800305e: f003 0304 and.w r3, r3, #4 + 8003062: 2b04 cmp r3, #4 + 8003064: d1ca bne.n 8002ffc } } } return HAL_OK; - 8003016: 2300 movs r3, #0 + 8003066: 2300 movs r3, #0 } - 8003018: 4618 mov r0, r3 - 800301a: 3710 adds r7, #16 - 800301c: 46bd mov sp, r7 - 800301e: bd80 pop {r7, pc} + 8003068: 4618 mov r0, r3 + 800306a: 3710 adds r7, #16 + 800306c: 46bd mov sp, r7 + 800306e: bd80 pop {r7, pc} -08003020 : +08003070 : * @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) { - 8003020: b580 push {r7, lr} - 8003022: b084 sub sp, #16 - 8003024: af00 add r7, sp, #0 - 8003026: 60f8 str r0, [r7, #12] - 8003028: 60b9 str r1, [r7, #8] - 800302a: 607a str r2, [r7, #4] + 8003070: b580 push {r7, lr} + 8003072: b084 sub sp, #16 + 8003074: af00 add r7, sp, #0 + 8003076: 60f8 str r0, [r7, #12] + 8003078: 60b9 str r1, [r7, #8] + 800307a: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 800302c: e042 b.n 80030b4 + 800307c: e042 b.n 8003104 { /* Check if a STOPF is detected */ if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == SET) - 800302e: 68fb ldr r3, [r7, #12] - 8003030: 681b ldr r3, [r3, #0] - 8003032: 695b ldr r3, [r3, #20] - 8003034: f003 0310 and.w r3, r3, #16 - 8003038: 2b10 cmp r3, #16 - 800303a: d119 bne.n 8003070 + 800307e: 68fb ldr r3, [r7, #12] + 8003080: 681b ldr r3, [r3, #0] + 8003082: 695b ldr r3, [r3, #20] + 8003084: f003 0310 and.w r3, r3, #16 + 8003088: 2b10 cmp r3, #16 + 800308a: d119 bne.n 80030c0 { /* Clear STOP Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); - 800303c: 68fb ldr r3, [r7, #12] - 800303e: 681b ldr r3, [r3, #0] - 8003040: f06f 0210 mvn.w r2, #16 - 8003044: 615a str r2, [r3, #20] + 800308c: 68fb ldr r3, [r7, #12] + 800308e: 681b ldr r3, [r3, #0] + 8003090: f06f 0210 mvn.w r2, #16 + 8003094: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8003046: 68fb ldr r3, [r7, #12] - 8003048: 2200 movs r2, #0 - 800304a: 631a str r2, [r3, #48] ; 0x30 + 8003096: 68fb ldr r3, [r7, #12] + 8003098: 2200 movs r2, #0 + 800309a: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 800304c: 68fb ldr r3, [r7, #12] - 800304e: 2220 movs r2, #32 - 8003050: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800309c: 68fb ldr r3, [r7, #12] + 800309e: 2220 movs r2, #32 + 80030a0: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8003054: 68fb ldr r3, [r7, #12] - 8003056: 2200 movs r2, #0 - 8003058: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80030a4: 68fb ldr r3, [r7, #12] + 80030a6: 2200 movs r2, #0 + 80030a8: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_NONE; - 800305c: 68fb ldr r3, [r7, #12] - 800305e: 6c1a ldr r2, [r3, #64] ; 0x40 - 8003060: 68fb ldr r3, [r7, #12] - 8003062: 641a str r2, [r3, #64] ; 0x40 + 80030ac: 68fb ldr r3, [r7, #12] + 80030ae: 6c1a ldr r2, [r3, #64] ; 0x40 + 80030b0: 68fb ldr r3, [r7, #12] + 80030b2: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8003064: 68fb ldr r3, [r7, #12] - 8003066: 2200 movs r2, #0 - 8003068: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80030b4: 68fb ldr r3, [r7, #12] + 80030b6: 2200 movs r2, #0 + 80030b8: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 800306c: 2301 movs r3, #1 - 800306e: e029 b.n 80030c4 + 80030bc: 2301 movs r3, #1 + 80030be: e029 b.n 8003114 } /* Check for the Timeout */ if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8003070: f7fe fd5a bl 8001b28 - 8003074: 4602 mov r2, r0 - 8003076: 687b ldr r3, [r7, #4] - 8003078: 1ad3 subs r3, r2, r3 - 800307a: 68ba ldr r2, [r7, #8] - 800307c: 429a cmp r2, r3 - 800307e: d302 bcc.n 8003086 - 8003080: 68bb ldr r3, [r7, #8] - 8003082: 2b00 cmp r3, #0 - 8003084: d116 bne.n 80030b4 + 80030c0: f7fe fd5a bl 8001b78 + 80030c4: 4602 mov r2, r0 + 80030c6: 687b ldr r3, [r7, #4] + 80030c8: 1ad3 subs r3, r2, r3 + 80030ca: 68ba ldr r2, [r7, #8] + 80030cc: 429a cmp r2, r3 + 80030ce: d302 bcc.n 80030d6 + 80030d0: 68bb ldr r3, [r7, #8] + 80030d2: 2b00 cmp r3, #0 + 80030d4: d116 bne.n 8003104 { hi2c->PreviousState = I2C_STATE_NONE; - 8003086: 68fb ldr r3, [r7, #12] - 8003088: 2200 movs r2, #0 - 800308a: 631a str r2, [r3, #48] ; 0x30 + 80030d6: 68fb ldr r3, [r7, #12] + 80030d8: 2200 movs r2, #0 + 80030da: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 800308c: 68fb ldr r3, [r7, #12] - 800308e: 2220 movs r2, #32 - 8003090: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80030dc: 68fb ldr r3, [r7, #12] + 80030de: 2220 movs r2, #32 + 80030e0: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8003094: 68fb ldr r3, [r7, #12] - 8003096: 2200 movs r2, #0 - 8003098: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80030e4: 68fb ldr r3, [r7, #12] + 80030e6: 2200 movs r2, #0 + 80030e8: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 800309c: 68fb ldr r3, [r7, #12] - 800309e: 6c1b ldr r3, [r3, #64] ; 0x40 - 80030a0: f043 0220 orr.w r2, r3, #32 - 80030a4: 68fb ldr r3, [r7, #12] - 80030a6: 641a str r2, [r3, #64] ; 0x40 + 80030ec: 68fb ldr r3, [r7, #12] + 80030ee: 6c1b ldr r3, [r3, #64] ; 0x40 + 80030f0: f043 0220 orr.w r2, r3, #32 + 80030f4: 68fb ldr r3, [r7, #12] + 80030f6: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 80030a8: 68fb ldr r3, [r7, #12] - 80030aa: 2200 movs r2, #0 - 80030ac: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80030f8: 68fb ldr r3, [r7, #12] + 80030fa: 2200 movs r2, #0 + 80030fc: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 80030b0: 2301 movs r3, #1 - 80030b2: e007 b.n 80030c4 + 8003100: 2301 movs r3, #1 + 8003102: e007 b.n 8003114 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 80030b4: 68fb ldr r3, [r7, #12] - 80030b6: 681b ldr r3, [r3, #0] - 80030b8: 695b ldr r3, [r3, #20] - 80030ba: f003 0340 and.w r3, r3, #64 ; 0x40 - 80030be: 2b40 cmp r3, #64 ; 0x40 - 80030c0: d1b5 bne.n 800302e + 8003104: 68fb ldr r3, [r7, #12] + 8003106: 681b ldr r3, [r3, #0] + 8003108: 695b ldr r3, [r3, #20] + 800310a: f003 0340 and.w r3, r3, #64 ; 0x40 + 800310e: 2b40 cmp r3, #64 ; 0x40 + 8003110: d1b5 bne.n 800307e } } return HAL_OK; - 80030c2: 2300 movs r3, #0 + 8003112: 2300 movs r3, #0 } - 80030c4: 4618 mov r0, r3 - 80030c6: 3710 adds r7, #16 - 80030c8: 46bd mov sp, r7 - 80030ca: bd80 pop {r7, pc} + 8003114: 4618 mov r0, r3 + 8003116: 3710 adds r7, #16 + 8003118: 46bd mov sp, r7 + 800311a: bd80 pop {r7, pc} -080030cc : +0800311c : * @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) { - 80030cc: b480 push {r7} - 80030ce: b083 sub sp, #12 - 80030d0: af00 add r7, sp, #0 - 80030d2: 6078 str r0, [r7, #4] + 800311c: b480 push {r7} + 800311e: b083 sub sp, #12 + 8003120: af00 add r7, sp, #0 + 8003122: 6078 str r0, [r7, #4] if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 80030d4: 687b ldr r3, [r7, #4] - 80030d6: 681b ldr r3, [r3, #0] - 80030d8: 695b ldr r3, [r3, #20] - 80030da: f403 6380 and.w r3, r3, #1024 ; 0x400 - 80030de: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 80030e2: d11b bne.n 800311c + 8003124: 687b ldr r3, [r7, #4] + 8003126: 681b ldr r3, [r3, #0] + 8003128: 695b ldr r3, [r3, #20] + 800312a: f403 6380 and.w r3, r3, #1024 ; 0x400 + 800312e: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 8003132: d11b bne.n 800316c { /* Clear NACKF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 80030e4: 687b ldr r3, [r7, #4] - 80030e6: 681b ldr r3, [r3, #0] - 80030e8: f46f 6280 mvn.w r2, #1024 ; 0x400 - 80030ec: 615a str r2, [r3, #20] + 8003134: 687b ldr r3, [r7, #4] + 8003136: 681b ldr r3, [r3, #0] + 8003138: f46f 6280 mvn.w r2, #1024 ; 0x400 + 800313c: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 80030ee: 687b ldr r3, [r7, #4] - 80030f0: 2200 movs r2, #0 - 80030f2: 631a str r2, [r3, #48] ; 0x30 + 800313e: 687b ldr r3, [r7, #4] + 8003140: 2200 movs r2, #0 + 8003142: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 80030f4: 687b ldr r3, [r7, #4] - 80030f6: 2220 movs r2, #32 - 80030f8: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8003144: 687b ldr r3, [r7, #4] + 8003146: 2220 movs r2, #32 + 8003148: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 80030fc: 687b ldr r3, [r7, #4] - 80030fe: 2200 movs r2, #0 - 8003100: f883 203e strb.w r2, [r3, #62] ; 0x3e + 800314c: 687b ldr r3, [r7, #4] + 800314e: 2200 movs r2, #0 + 8003150: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8003104: 687b ldr r3, [r7, #4] - 8003106: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003108: f043 0204 orr.w r2, r3, #4 - 800310c: 687b ldr r3, [r7, #4] - 800310e: 641a str r2, [r3, #64] ; 0x40 + 8003154: 687b ldr r3, [r7, #4] + 8003156: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003158: f043 0204 orr.w r2, r3, #4 + 800315c: 687b ldr r3, [r7, #4] + 800315e: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8003110: 687b ldr r3, [r7, #4] - 8003112: 2200 movs r2, #0 - 8003114: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8003160: 687b ldr r3, [r7, #4] + 8003162: 2200 movs r2, #0 + 8003164: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8003118: 2301 movs r3, #1 - 800311a: e000 b.n 800311e + 8003168: 2301 movs r3, #1 + 800316a: e000 b.n 800316e } return HAL_OK; - 800311c: 2300 movs r3, #0 + 800316c: 2300 movs r3, #0 } - 800311e: 4618 mov r0, r3 - 8003120: 370c adds r7, #12 - 8003122: 46bd mov sp, r7 - 8003124: bc80 pop {r7} - 8003126: 4770 bx lr + 800316e: 4618 mov r0, r3 + 8003170: 370c adds r7, #12 + 8003172: 46bd mov sp, r7 + 8003174: bc80 pop {r7} + 8003176: 4770 bx lr -08003128 : +08003178 : * 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) { - 8003128: b580 push {r7, lr} - 800312a: b086 sub sp, #24 - 800312c: af00 add r7, sp, #0 - 800312e: 6078 str r0, [r7, #4] + 8003178: b580 push {r7, lr} + 800317a: b086 sub sp, #24 + 800317c: af00 add r7, sp, #0 + 800317e: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 8003130: 687b ldr r3, [r7, #4] - 8003132: 2b00 cmp r3, #0 - 8003134: d101 bne.n 800313a + 8003180: 687b ldr r3, [r7, #4] + 8003182: 2b00 cmp r3, #0 + 8003184: d101 bne.n 800318a { return HAL_ERROR; - 8003136: 2301 movs r3, #1 - 8003138: e26c b.n 8003614 + 8003186: 2301 movs r3, #1 + 8003188: e26c b.n 8003664 /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 800313a: 687b ldr r3, [r7, #4] - 800313c: 681b ldr r3, [r3, #0] - 800313e: f003 0301 and.w r3, r3, #1 - 8003142: 2b00 cmp r3, #0 - 8003144: f000 8087 beq.w 8003256 + 800318a: 687b ldr r3, [r7, #4] + 800318c: 681b ldr r3, [r3, #0] + 800318e: f003 0301 and.w r3, r3, #1 + 8003192: 2b00 cmp r3, #0 + 8003194: f000 8087 beq.w 80032a6 { /* 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) - 8003148: 4b92 ldr r3, [pc, #584] ; (8003394 ) - 800314a: 685b ldr r3, [r3, #4] - 800314c: f003 030c and.w r3, r3, #12 - 8003150: 2b04 cmp r3, #4 - 8003152: d00c beq.n 800316e + 8003198: 4b92 ldr r3, [pc, #584] ; (80033e4 ) + 800319a: 685b ldr r3, [r3, #4] + 800319c: f003 030c and.w r3, r3, #12 + 80031a0: 2b04 cmp r3, #4 + 80031a2: d00c beq.n 80031be || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE))) - 8003154: 4b8f ldr r3, [pc, #572] ; (8003394 ) - 8003156: 685b ldr r3, [r3, #4] - 8003158: f003 030c and.w r3, r3, #12 - 800315c: 2b08 cmp r3, #8 - 800315e: d112 bne.n 8003186 - 8003160: 4b8c ldr r3, [pc, #560] ; (8003394 ) - 8003162: 685b ldr r3, [r3, #4] - 8003164: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8003168: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 800316c: d10b bne.n 8003186 + 80031a4: 4b8f ldr r3, [pc, #572] ; (80033e4 ) + 80031a6: 685b ldr r3, [r3, #4] + 80031a8: f003 030c and.w r3, r3, #12 + 80031ac: 2b08 cmp r3, #8 + 80031ae: d112 bne.n 80031d6 + 80031b0: 4b8c ldr r3, [pc, #560] ; (80033e4 ) + 80031b2: 685b ldr r3, [r3, #4] + 80031b4: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 80031b8: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 80031bc: d10b bne.n 80031d6 { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 800316e: 4b89 ldr r3, [pc, #548] ; (8003394 ) - 8003170: 681b ldr r3, [r3, #0] - 8003172: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8003176: 2b00 cmp r3, #0 - 8003178: d06c beq.n 8003254 - 800317a: 687b ldr r3, [r7, #4] - 800317c: 685b ldr r3, [r3, #4] - 800317e: 2b00 cmp r3, #0 - 8003180: d168 bne.n 8003254 + 80031be: 4b89 ldr r3, [pc, #548] ; (80033e4 ) + 80031c0: 681b ldr r3, [r3, #0] + 80031c2: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 80031c6: 2b00 cmp r3, #0 + 80031c8: d06c beq.n 80032a4 + 80031ca: 687b ldr r3, [r7, #4] + 80031cc: 685b ldr r3, [r3, #4] + 80031ce: 2b00 cmp r3, #0 + 80031d0: d168 bne.n 80032a4 { return HAL_ERROR; - 8003182: 2301 movs r3, #1 - 8003184: e246 b.n 8003614 + 80031d2: 2301 movs r3, #1 + 80031d4: e246 b.n 8003664 } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8003186: 687b ldr r3, [r7, #4] - 8003188: 685b ldr r3, [r3, #4] - 800318a: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 800318e: d106 bne.n 800319e - 8003190: 4b80 ldr r3, [pc, #512] ; (8003394 ) - 8003192: 681b ldr r3, [r3, #0] - 8003194: 4a7f ldr r2, [pc, #508] ; (8003394 ) - 8003196: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 800319a: 6013 str r3, [r2, #0] - 800319c: e02e b.n 80031fc - 800319e: 687b ldr r3, [r7, #4] - 80031a0: 685b ldr r3, [r3, #4] - 80031a2: 2b00 cmp r3, #0 - 80031a4: d10c bne.n 80031c0 - 80031a6: 4b7b ldr r3, [pc, #492] ; (8003394 ) - 80031a8: 681b ldr r3, [r3, #0] - 80031aa: 4a7a ldr r2, [pc, #488] ; (8003394 ) - 80031ac: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 80031b0: 6013 str r3, [r2, #0] - 80031b2: 4b78 ldr r3, [pc, #480] ; (8003394 ) - 80031b4: 681b ldr r3, [r3, #0] - 80031b6: 4a77 ldr r2, [pc, #476] ; (8003394 ) - 80031b8: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 80031bc: 6013 str r3, [r2, #0] - 80031be: e01d b.n 80031fc - 80031c0: 687b ldr r3, [r7, #4] - 80031c2: 685b ldr r3, [r3, #4] - 80031c4: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 - 80031c8: d10c bne.n 80031e4 - 80031ca: 4b72 ldr r3, [pc, #456] ; (8003394 ) - 80031cc: 681b ldr r3, [r3, #0] - 80031ce: 4a71 ldr r2, [pc, #452] ; (8003394 ) - 80031d0: f443 2380 orr.w r3, r3, #262144 ; 0x40000 - 80031d4: 6013 str r3, [r2, #0] - 80031d6: 4b6f ldr r3, [pc, #444] ; (8003394 ) - 80031d8: 681b ldr r3, [r3, #0] - 80031da: 4a6e ldr r2, [pc, #440] ; (8003394 ) - 80031dc: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 80031e0: 6013 str r3, [r2, #0] - 80031e2: e00b b.n 80031fc - 80031e4: 4b6b ldr r3, [pc, #428] ; (8003394 ) - 80031e6: 681b ldr r3, [r3, #0] - 80031e8: 4a6a ldr r2, [pc, #424] ; (8003394 ) - 80031ea: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 80031ee: 6013 str r3, [r2, #0] - 80031f0: 4b68 ldr r3, [pc, #416] ; (8003394 ) - 80031f2: 681b ldr r3, [r3, #0] - 80031f4: 4a67 ldr r2, [pc, #412] ; (8003394 ) - 80031f6: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 80031fa: 6013 str r3, [r2, #0] + 80031d6: 687b ldr r3, [r7, #4] + 80031d8: 685b ldr r3, [r3, #4] + 80031da: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 80031de: d106 bne.n 80031ee + 80031e0: 4b80 ldr r3, [pc, #512] ; (80033e4 ) + 80031e2: 681b ldr r3, [r3, #0] + 80031e4: 4a7f ldr r2, [pc, #508] ; (80033e4 ) + 80031e6: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 80031ea: 6013 str r3, [r2, #0] + 80031ec: e02e b.n 800324c + 80031ee: 687b ldr r3, [r7, #4] + 80031f0: 685b ldr r3, [r3, #4] + 80031f2: 2b00 cmp r3, #0 + 80031f4: d10c bne.n 8003210 + 80031f6: 4b7b ldr r3, [pc, #492] ; (80033e4 ) + 80031f8: 681b ldr r3, [r3, #0] + 80031fa: 4a7a ldr r2, [pc, #488] ; (80033e4 ) + 80031fc: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 8003200: 6013 str r3, [r2, #0] + 8003202: 4b78 ldr r3, [pc, #480] ; (80033e4 ) + 8003204: 681b ldr r3, [r3, #0] + 8003206: 4a77 ldr r2, [pc, #476] ; (80033e4 ) + 8003208: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 800320c: 6013 str r3, [r2, #0] + 800320e: e01d b.n 800324c + 8003210: 687b ldr r3, [r7, #4] + 8003212: 685b ldr r3, [r3, #4] + 8003214: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 + 8003218: d10c bne.n 8003234 + 800321a: 4b72 ldr r3, [pc, #456] ; (80033e4 ) + 800321c: 681b ldr r3, [r3, #0] + 800321e: 4a71 ldr r2, [pc, #452] ; (80033e4 ) + 8003220: f443 2380 orr.w r3, r3, #262144 ; 0x40000 + 8003224: 6013 str r3, [r2, #0] + 8003226: 4b6f ldr r3, [pc, #444] ; (80033e4 ) + 8003228: 681b ldr r3, [r3, #0] + 800322a: 4a6e ldr r2, [pc, #440] ; (80033e4 ) + 800322c: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8003230: 6013 str r3, [r2, #0] + 8003232: e00b b.n 800324c + 8003234: 4b6b ldr r3, [pc, #428] ; (80033e4 ) + 8003236: 681b ldr r3, [r3, #0] + 8003238: 4a6a ldr r2, [pc, #424] ; (80033e4 ) + 800323a: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 800323e: 6013 str r3, [r2, #0] + 8003240: 4b68 ldr r3, [pc, #416] ; (80033e4 ) + 8003242: 681b ldr r3, [r3, #0] + 8003244: 4a67 ldr r2, [pc, #412] ; (80033e4 ) + 8003246: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 800324a: 6013 str r3, [r2, #0] /* Check the HSE State */ if (RCC_OscInitStruct->HSEState != RCC_HSE_OFF) - 80031fc: 687b ldr r3, [r7, #4] - 80031fe: 685b ldr r3, [r3, #4] - 8003200: 2b00 cmp r3, #0 - 8003202: d013 beq.n 800322c + 800324c: 687b ldr r3, [r7, #4] + 800324e: 685b ldr r3, [r3, #4] + 8003250: 2b00 cmp r3, #0 + 8003252: d013 beq.n 800327c { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003204: f7fe fc90 bl 8001b28 - 8003208: 6138 str r0, [r7, #16] + 8003254: f7fe fc90 bl 8001b78 + 8003258: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800320a: e008 b.n 800321e + 800325a: e008 b.n 800326e { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 800320c: f7fe fc8c bl 8001b28 - 8003210: 4602 mov r2, r0 - 8003212: 693b ldr r3, [r7, #16] - 8003214: 1ad3 subs r3, r2, r3 - 8003216: 2b64 cmp r3, #100 ; 0x64 - 8003218: d901 bls.n 800321e + 800325c: f7fe fc8c bl 8001b78 + 8003260: 4602 mov r2, r0 + 8003262: 693b ldr r3, [r7, #16] + 8003264: 1ad3 subs r3, r2, r3 + 8003266: 2b64 cmp r3, #100 ; 0x64 + 8003268: d901 bls.n 800326e { return HAL_TIMEOUT; - 800321a: 2303 movs r3, #3 - 800321c: e1fa b.n 8003614 + 800326a: 2303 movs r3, #3 + 800326c: e1fa b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800321e: 4b5d ldr r3, [pc, #372] ; (8003394 ) - 8003220: 681b ldr r3, [r3, #0] - 8003222: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8003226: 2b00 cmp r3, #0 - 8003228: d0f0 beq.n 800320c - 800322a: e014 b.n 8003256 + 800326e: 4b5d ldr r3, [pc, #372] ; (80033e4 ) + 8003270: 681b ldr r3, [r3, #0] + 8003272: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8003276: 2b00 cmp r3, #0 + 8003278: d0f0 beq.n 800325c + 800327a: e014 b.n 80032a6 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800322c: f7fe fc7c bl 8001b28 - 8003230: 6138 str r0, [r7, #16] + 800327c: f7fe fc7c bl 8001b78 + 8003280: 6138 str r0, [r7, #16] /* Wait till HSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8003232: e008 b.n 8003246 + 8003282: e008 b.n 8003296 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8003234: f7fe fc78 bl 8001b28 - 8003238: 4602 mov r2, r0 - 800323a: 693b ldr r3, [r7, #16] - 800323c: 1ad3 subs r3, r2, r3 - 800323e: 2b64 cmp r3, #100 ; 0x64 - 8003240: d901 bls.n 8003246 + 8003284: f7fe fc78 bl 8001b78 + 8003288: 4602 mov r2, r0 + 800328a: 693b ldr r3, [r7, #16] + 800328c: 1ad3 subs r3, r2, r3 + 800328e: 2b64 cmp r3, #100 ; 0x64 + 8003290: d901 bls.n 8003296 { return HAL_TIMEOUT; - 8003242: 2303 movs r3, #3 - 8003244: e1e6 b.n 8003614 + 8003292: 2303 movs r3, #3 + 8003294: e1e6 b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8003246: 4b53 ldr r3, [pc, #332] ; (8003394 ) - 8003248: 681b ldr r3, [r3, #0] - 800324a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 800324e: 2b00 cmp r3, #0 - 8003250: d1f0 bne.n 8003234 - 8003252: e000 b.n 8003256 + 8003296: 4b53 ldr r3, [pc, #332] ; (80033e4 ) + 8003298: 681b ldr r3, [r3, #0] + 800329a: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 800329e: 2b00 cmp r3, #0 + 80032a0: d1f0 bne.n 8003284 + 80032a2: e000 b.n 80032a6 if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8003254: bf00 nop + 80032a4: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8003256: 687b ldr r3, [r7, #4] - 8003258: 681b ldr r3, [r3, #0] - 800325a: f003 0302 and.w r3, r3, #2 - 800325e: 2b00 cmp r3, #0 - 8003260: d063 beq.n 800332a + 80032a6: 687b ldr r3, [r7, #4] + 80032a8: 681b ldr r3, [r3, #0] + 80032aa: f003 0302 and.w r3, r3, #2 + 80032ae: 2b00 cmp r3, #0 + 80032b0: d063 beq.n 800337a /* 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) - 8003262: 4b4c ldr r3, [pc, #304] ; (8003394 ) - 8003264: 685b ldr r3, [r3, #4] - 8003266: f003 030c and.w r3, r3, #12 - 800326a: 2b00 cmp r3, #0 - 800326c: d00b beq.n 8003286 + 80032b2: 4b4c ldr r3, [pc, #304] ; (80033e4 ) + 80032b4: 685b ldr r3, [r3, #4] + 80032b6: f003 030c and.w r3, r3, #12 + 80032ba: 2b00 cmp r3, #0 + 80032bc: d00b beq.n 80032d6 || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI_DIV2))) - 800326e: 4b49 ldr r3, [pc, #292] ; (8003394 ) - 8003270: 685b ldr r3, [r3, #4] - 8003272: f003 030c and.w r3, r3, #12 - 8003276: 2b08 cmp r3, #8 - 8003278: d11c bne.n 80032b4 - 800327a: 4b46 ldr r3, [pc, #280] ; (8003394 ) - 800327c: 685b ldr r3, [r3, #4] - 800327e: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8003282: 2b00 cmp r3, #0 - 8003284: d116 bne.n 80032b4 + 80032be: 4b49 ldr r3, [pc, #292] ; (80033e4 ) + 80032c0: 685b ldr r3, [r3, #4] + 80032c2: f003 030c and.w r3, r3, #12 + 80032c6: 2b08 cmp r3, #8 + 80032c8: d11c bne.n 8003304 + 80032ca: 4b46 ldr r3, [pc, #280] ; (80033e4 ) + 80032cc: 685b ldr r3, [r3, #4] + 80032ce: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 80032d2: 2b00 cmp r3, #0 + 80032d4: d116 bne.n 8003304 { /* 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)) - 8003286: 4b43 ldr r3, [pc, #268] ; (8003394 ) - 8003288: 681b ldr r3, [r3, #0] - 800328a: f003 0302 and.w r3, r3, #2 - 800328e: 2b00 cmp r3, #0 - 8003290: d005 beq.n 800329e - 8003292: 687b ldr r3, [r7, #4] - 8003294: 691b ldr r3, [r3, #16] - 8003296: 2b01 cmp r3, #1 - 8003298: d001 beq.n 800329e + 80032d6: 4b43 ldr r3, [pc, #268] ; (80033e4 ) + 80032d8: 681b ldr r3, [r3, #0] + 80032da: f003 0302 and.w r3, r3, #2 + 80032de: 2b00 cmp r3, #0 + 80032e0: d005 beq.n 80032ee + 80032e2: 687b ldr r3, [r7, #4] + 80032e4: 691b ldr r3, [r3, #16] + 80032e6: 2b01 cmp r3, #1 + 80032e8: d001 beq.n 80032ee { return HAL_ERROR; - 800329a: 2301 movs r3, #1 - 800329c: e1ba b.n 8003614 + 80032ea: 2301 movs r3, #1 + 80032ec: e1ba b.n 8003664 } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 800329e: 4b3d ldr r3, [pc, #244] ; (8003394 ) - 80032a0: 681b ldr r3, [r3, #0] - 80032a2: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 80032a6: 687b ldr r3, [r7, #4] - 80032a8: 695b ldr r3, [r3, #20] - 80032aa: 00db lsls r3, r3, #3 - 80032ac: 4939 ldr r1, [pc, #228] ; (8003394 ) - 80032ae: 4313 orrs r3, r2 - 80032b0: 600b str r3, [r1, #0] + 80032ee: 4b3d ldr r3, [pc, #244] ; (80033e4 ) + 80032f0: 681b ldr r3, [r3, #0] + 80032f2: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 80032f6: 687b ldr r3, [r7, #4] + 80032f8: 695b ldr r3, [r3, #20] + 80032fa: 00db lsls r3, r3, #3 + 80032fc: 4939 ldr r1, [pc, #228] ; (80033e4 ) + 80032fe: 4313 orrs r3, r2 + 8003300: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 80032b2: e03a b.n 800332a + 8003302: e03a b.n 800337a } } else { /* Check the HSI State */ if (RCC_OscInitStruct->HSIState != RCC_HSI_OFF) - 80032b4: 687b ldr r3, [r7, #4] - 80032b6: 691b ldr r3, [r3, #16] - 80032b8: 2b00 cmp r3, #0 - 80032ba: d020 beq.n 80032fe + 8003304: 687b ldr r3, [r7, #4] + 8003306: 691b ldr r3, [r3, #16] + 8003308: 2b00 cmp r3, #0 + 800330a: d020 beq.n 800334e { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 80032bc: 4b36 ldr r3, [pc, #216] ; (8003398 ) - 80032be: 2201 movs r2, #1 - 80032c0: 601a str r2, [r3, #0] + 800330c: 4b36 ldr r3, [pc, #216] ; (80033e8 ) + 800330e: 2201 movs r2, #1 + 8003310: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80032c2: f7fe fc31 bl 8001b28 - 80032c6: 6138 str r0, [r7, #16] + 8003312: f7fe fc31 bl 8001b78 + 8003316: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 80032c8: e008 b.n 80032dc + 8003318: e008 b.n 800332c { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 80032ca: f7fe fc2d bl 8001b28 - 80032ce: 4602 mov r2, r0 - 80032d0: 693b ldr r3, [r7, #16] - 80032d2: 1ad3 subs r3, r2, r3 - 80032d4: 2b02 cmp r3, #2 - 80032d6: d901 bls.n 80032dc + 800331a: f7fe fc2d bl 8001b78 + 800331e: 4602 mov r2, r0 + 8003320: 693b ldr r3, [r7, #16] + 8003322: 1ad3 subs r3, r2, r3 + 8003324: 2b02 cmp r3, #2 + 8003326: d901 bls.n 800332c { return HAL_TIMEOUT; - 80032d8: 2303 movs r3, #3 - 80032da: e19b b.n 8003614 + 8003328: 2303 movs r3, #3 + 800332a: e19b b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 80032dc: 4b2d ldr r3, [pc, #180] ; (8003394 ) - 80032de: 681b ldr r3, [r3, #0] - 80032e0: f003 0302 and.w r3, r3, #2 - 80032e4: 2b00 cmp r3, #0 - 80032e6: d0f0 beq.n 80032ca + 800332c: 4b2d ldr r3, [pc, #180] ; (80033e4 ) + 800332e: 681b ldr r3, [r3, #0] + 8003330: f003 0302 and.w r3, r3, #2 + 8003334: 2b00 cmp r3, #0 + 8003336: d0f0 beq.n 800331a } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 80032e8: 4b2a ldr r3, [pc, #168] ; (8003394 ) - 80032ea: 681b ldr r3, [r3, #0] - 80032ec: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 80032f0: 687b ldr r3, [r7, #4] - 80032f2: 695b ldr r3, [r3, #20] - 80032f4: 00db lsls r3, r3, #3 - 80032f6: 4927 ldr r1, [pc, #156] ; (8003394 ) - 80032f8: 4313 orrs r3, r2 - 80032fa: 600b str r3, [r1, #0] - 80032fc: e015 b.n 800332a + 8003338: 4b2a ldr r3, [pc, #168] ; (80033e4 ) + 800333a: 681b ldr r3, [r3, #0] + 800333c: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8003340: 687b ldr r3, [r7, #4] + 8003342: 695b ldr r3, [r3, #20] + 8003344: 00db lsls r3, r3, #3 + 8003346: 4927 ldr r1, [pc, #156] ; (80033e4 ) + 8003348: 4313 orrs r3, r2 + 800334a: 600b str r3, [r1, #0] + 800334c: e015 b.n 800337a } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 80032fe: 4b26 ldr r3, [pc, #152] ; (8003398 ) - 8003300: 2200 movs r2, #0 - 8003302: 601a str r2, [r3, #0] + 800334e: 4b26 ldr r3, [pc, #152] ; (80033e8 ) + 8003350: 2200 movs r2, #0 + 8003352: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003304: f7fe fc10 bl 8001b28 - 8003308: 6138 str r0, [r7, #16] + 8003354: f7fe fc10 bl 8001b78 + 8003358: 6138 str r0, [r7, #16] /* Wait till HSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800330a: e008 b.n 800331e + 800335a: e008 b.n 800336e { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 800330c: f7fe fc0c bl 8001b28 - 8003310: 4602 mov r2, r0 - 8003312: 693b ldr r3, [r7, #16] - 8003314: 1ad3 subs r3, r2, r3 - 8003316: 2b02 cmp r3, #2 - 8003318: d901 bls.n 800331e + 800335c: f7fe fc0c bl 8001b78 + 8003360: 4602 mov r2, r0 + 8003362: 693b ldr r3, [r7, #16] + 8003364: 1ad3 subs r3, r2, r3 + 8003366: 2b02 cmp r3, #2 + 8003368: d901 bls.n 800336e { return HAL_TIMEOUT; - 800331a: 2303 movs r3, #3 - 800331c: e17a b.n 8003614 + 800336a: 2303 movs r3, #3 + 800336c: e17a b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800331e: 4b1d ldr r3, [pc, #116] ; (8003394 ) - 8003320: 681b ldr r3, [r3, #0] - 8003322: f003 0302 and.w r3, r3, #2 - 8003326: 2b00 cmp r3, #0 - 8003328: d1f0 bne.n 800330c + 800336e: 4b1d ldr r3, [pc, #116] ; (80033e4 ) + 8003370: 681b ldr r3, [r3, #0] + 8003372: f003 0302 and.w r3, r3, #2 + 8003376: 2b00 cmp r3, #0 + 8003378: d1f0 bne.n 800335c } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 800332a: 687b ldr r3, [r7, #4] - 800332c: 681b ldr r3, [r3, #0] - 800332e: f003 0308 and.w r3, r3, #8 - 8003332: 2b00 cmp r3, #0 - 8003334: d03a beq.n 80033ac + 800337a: 687b ldr r3, [r7, #4] + 800337c: 681b ldr r3, [r3, #0] + 800337e: f003 0308 and.w r3, r3, #8 + 8003382: 2b00 cmp r3, #0 + 8003384: d03a beq.n 80033fc { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if (RCC_OscInitStruct->LSIState != RCC_LSI_OFF) - 8003336: 687b ldr r3, [r7, #4] - 8003338: 699b ldr r3, [r3, #24] - 800333a: 2b00 cmp r3, #0 - 800333c: d019 beq.n 8003372 + 8003386: 687b ldr r3, [r7, #4] + 8003388: 699b ldr r3, [r3, #24] + 800338a: 2b00 cmp r3, #0 + 800338c: d019 beq.n 80033c2 { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 800333e: 4b17 ldr r3, [pc, #92] ; (800339c ) - 8003340: 2201 movs r2, #1 - 8003342: 601a str r2, [r3, #0] + 800338e: 4b17 ldr r3, [pc, #92] ; (80033ec ) + 8003390: 2201 movs r2, #1 + 8003392: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003344: f7fe fbf0 bl 8001b28 - 8003348: 6138 str r0, [r7, #16] + 8003394: f7fe fbf0 bl 8001b78 + 8003398: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 800334a: e008 b.n 800335e + 800339a: e008 b.n 80033ae { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 800334c: f7fe fbec bl 8001b28 - 8003350: 4602 mov r2, r0 - 8003352: 693b ldr r3, [r7, #16] - 8003354: 1ad3 subs r3, r2, r3 - 8003356: 2b02 cmp r3, #2 - 8003358: d901 bls.n 800335e + 800339c: f7fe fbec bl 8001b78 + 80033a0: 4602 mov r2, r0 + 80033a2: 693b ldr r3, [r7, #16] + 80033a4: 1ad3 subs r3, r2, r3 + 80033a6: 2b02 cmp r3, #2 + 80033a8: d901 bls.n 80033ae { return HAL_TIMEOUT; - 800335a: 2303 movs r3, #3 - 800335c: e15a b.n 8003614 + 80033aa: 2303 movs r3, #3 + 80033ac: e15a b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 800335e: 4b0d ldr r3, [pc, #52] ; (8003394 ) - 8003360: 6a5b ldr r3, [r3, #36] ; 0x24 - 8003362: f003 0302 and.w r3, r3, #2 - 8003366: 2b00 cmp r3, #0 - 8003368: d0f0 beq.n 800334c + 80033ae: 4b0d ldr r3, [pc, #52] ; (80033e4 ) + 80033b0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80033b2: f003 0302 and.w r3, r3, #2 + 80033b6: 2b00 cmp r3, #0 + 80033b8: d0f0 beq.n 800339c } } /* To have a fully stabilized clock in the specified range, a software delay of 1ms should be added.*/ RCC_Delay(1); - 800336a: 2001 movs r0, #1 - 800336c: f000 fac4 bl 80038f8 - 8003370: e01c b.n 80033ac + 80033ba: 2001 movs r0, #1 + 80033bc: f000 fac4 bl 8003948 + 80033c0: e01c b.n 80033fc } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 8003372: 4b0a ldr r3, [pc, #40] ; (800339c ) - 8003374: 2200 movs r2, #0 - 8003376: 601a str r2, [r3, #0] + 80033c2: 4b0a ldr r3, [pc, #40] ; (80033ec ) + 80033c4: 2200 movs r2, #0 + 80033c6: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003378: f7fe fbd6 bl 8001b28 - 800337c: 6138 str r0, [r7, #16] + 80033c8: f7fe fbd6 bl 8001b78 + 80033cc: 6138 str r0, [r7, #16] /* Wait till LSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 800337e: e00f b.n 80033a0 + 80033ce: e00f b.n 80033f0 { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 8003380: f7fe fbd2 bl 8001b28 - 8003384: 4602 mov r2, r0 - 8003386: 693b ldr r3, [r7, #16] - 8003388: 1ad3 subs r3, r2, r3 - 800338a: 2b02 cmp r3, #2 - 800338c: d908 bls.n 80033a0 + 80033d0: f7fe fbd2 bl 8001b78 + 80033d4: 4602 mov r2, r0 + 80033d6: 693b ldr r3, [r7, #16] + 80033d8: 1ad3 subs r3, r2, r3 + 80033da: 2b02 cmp r3, #2 + 80033dc: d908 bls.n 80033f0 { return HAL_TIMEOUT; - 800338e: 2303 movs r3, #3 - 8003390: e140 b.n 8003614 - 8003392: bf00 nop - 8003394: 40021000 .word 0x40021000 - 8003398: 42420000 .word 0x42420000 - 800339c: 42420480 .word 0x42420480 + 80033de: 2303 movs r3, #3 + 80033e0: e140 b.n 8003664 + 80033e2: bf00 nop + 80033e4: 40021000 .word 0x40021000 + 80033e8: 42420000 .word 0x42420000 + 80033ec: 42420480 .word 0x42420480 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 80033a0: 4b9e ldr r3, [pc, #632] ; (800361c ) - 80033a2: 6a5b ldr r3, [r3, #36] ; 0x24 - 80033a4: f003 0302 and.w r3, r3, #2 - 80033a8: 2b00 cmp r3, #0 - 80033aa: d1e9 bne.n 8003380 + 80033f0: 4b9e ldr r3, [pc, #632] ; (800366c ) + 80033f2: 6a5b ldr r3, [r3, #36] ; 0x24 + 80033f4: f003 0302 and.w r3, r3, #2 + 80033f8: 2b00 cmp r3, #0 + 80033fa: d1e9 bne.n 80033d0 } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 80033ac: 687b ldr r3, [r7, #4] - 80033ae: 681b ldr r3, [r3, #0] - 80033b0: f003 0304 and.w r3, r3, #4 - 80033b4: 2b00 cmp r3, #0 - 80033b6: f000 80a6 beq.w 8003506 + 80033fc: 687b ldr r3, [r7, #4] + 80033fe: 681b ldr r3, [r3, #0] + 8003400: f003 0304 and.w r3, r3, #4 + 8003404: 2b00 cmp r3, #0 + 8003406: f000 80a6 beq.w 8003556 { FlagStatus pwrclkchanged = RESET; - 80033ba: 2300 movs r3, #0 - 80033bc: 75fb strb r3, [r7, #23] + 800340a: 2300 movs r3, #0 + 800340c: 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()) - 80033be: 4b97 ldr r3, [pc, #604] ; (800361c ) - 80033c0: 69db ldr r3, [r3, #28] - 80033c2: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80033c6: 2b00 cmp r3, #0 - 80033c8: d10d bne.n 80033e6 + 800340e: 4b97 ldr r3, [pc, #604] ; (800366c ) + 8003410: 69db ldr r3, [r3, #28] + 8003412: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8003416: 2b00 cmp r3, #0 + 8003418: d10d bne.n 8003436 { __HAL_RCC_PWR_CLK_ENABLE(); - 80033ca: 4b94 ldr r3, [pc, #592] ; (800361c ) - 80033cc: 69db ldr r3, [r3, #28] - 80033ce: 4a93 ldr r2, [pc, #588] ; (800361c ) - 80033d0: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 80033d4: 61d3 str r3, [r2, #28] - 80033d6: 4b91 ldr r3, [pc, #580] ; (800361c ) - 80033d8: 69db ldr r3, [r3, #28] - 80033da: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80033de: 60bb str r3, [r7, #8] - 80033e0: 68bb ldr r3, [r7, #8] + 800341a: 4b94 ldr r3, [pc, #592] ; (800366c ) + 800341c: 69db ldr r3, [r3, #28] + 800341e: 4a93 ldr r2, [pc, #588] ; (800366c ) + 8003420: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8003424: 61d3 str r3, [r2, #28] + 8003426: 4b91 ldr r3, [pc, #580] ; (800366c ) + 8003428: 69db ldr r3, [r3, #28] + 800342a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 800342e: 60bb str r3, [r7, #8] + 8003430: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 80033e2: 2301 movs r3, #1 - 80033e4: 75fb strb r3, [r7, #23] + 8003432: 2301 movs r3, #1 + 8003434: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80033e6: 4b8e ldr r3, [pc, #568] ; (8003620 ) - 80033e8: 681b ldr r3, [r3, #0] - 80033ea: f403 7380 and.w r3, r3, #256 ; 0x100 - 80033ee: 2b00 cmp r3, #0 - 80033f0: d118 bne.n 8003424 + 8003436: 4b8e ldr r3, [pc, #568] ; (8003670 ) + 8003438: 681b ldr r3, [r3, #0] + 800343a: f403 7380 and.w r3, r3, #256 ; 0x100 + 800343e: 2b00 cmp r3, #0 + 8003440: d118 bne.n 8003474 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 80033f2: 4b8b ldr r3, [pc, #556] ; (8003620 ) - 80033f4: 681b ldr r3, [r3, #0] - 80033f6: 4a8a ldr r2, [pc, #552] ; (8003620 ) - 80033f8: f443 7380 orr.w r3, r3, #256 ; 0x100 - 80033fc: 6013 str r3, [r2, #0] + 8003442: 4b8b ldr r3, [pc, #556] ; (8003670 ) + 8003444: 681b ldr r3, [r3, #0] + 8003446: 4a8a ldr r2, [pc, #552] ; (8003670 ) + 8003448: f443 7380 orr.w r3, r3, #256 ; 0x100 + 800344c: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 80033fe: f7fe fb93 bl 8001b28 - 8003402: 6138 str r0, [r7, #16] + 800344e: f7fe fb93 bl 8001b78 + 8003452: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8003404: e008 b.n 8003418 + 8003454: e008 b.n 8003468 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8003406: f7fe fb8f bl 8001b28 - 800340a: 4602 mov r2, r0 - 800340c: 693b ldr r3, [r7, #16] - 800340e: 1ad3 subs r3, r2, r3 - 8003410: 2b64 cmp r3, #100 ; 0x64 - 8003412: d901 bls.n 8003418 + 8003456: f7fe fb8f bl 8001b78 + 800345a: 4602 mov r2, r0 + 800345c: 693b ldr r3, [r7, #16] + 800345e: 1ad3 subs r3, r2, r3 + 8003460: 2b64 cmp r3, #100 ; 0x64 + 8003462: d901 bls.n 8003468 { return HAL_TIMEOUT; - 8003414: 2303 movs r3, #3 - 8003416: e0fd b.n 8003614 + 8003464: 2303 movs r3, #3 + 8003466: e0fd b.n 8003664 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8003418: 4b81 ldr r3, [pc, #516] ; (8003620 ) - 800341a: 681b ldr r3, [r3, #0] - 800341c: f403 7380 and.w r3, r3, #256 ; 0x100 - 8003420: 2b00 cmp r3, #0 - 8003422: d0f0 beq.n 8003406 + 8003468: 4b81 ldr r3, [pc, #516] ; (8003670 ) + 800346a: 681b ldr r3, [r3, #0] + 800346c: f403 7380 and.w r3, r3, #256 ; 0x100 + 8003470: 2b00 cmp r3, #0 + 8003472: d0f0 beq.n 8003456 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8003424: 687b ldr r3, [r7, #4] - 8003426: 68db ldr r3, [r3, #12] - 8003428: 2b01 cmp r3, #1 - 800342a: d106 bne.n 800343a - 800342c: 4b7b ldr r3, [pc, #492] ; (800361c ) - 800342e: 6a1b ldr r3, [r3, #32] - 8003430: 4a7a ldr r2, [pc, #488] ; (800361c ) - 8003432: f043 0301 orr.w r3, r3, #1 - 8003436: 6213 str r3, [r2, #32] - 8003438: e02d b.n 8003496 - 800343a: 687b ldr r3, [r7, #4] - 800343c: 68db ldr r3, [r3, #12] - 800343e: 2b00 cmp r3, #0 - 8003440: d10c bne.n 800345c - 8003442: 4b76 ldr r3, [pc, #472] ; (800361c ) - 8003444: 6a1b ldr r3, [r3, #32] - 8003446: 4a75 ldr r2, [pc, #468] ; (800361c ) - 8003448: f023 0301 bic.w r3, r3, #1 - 800344c: 6213 str r3, [r2, #32] - 800344e: 4b73 ldr r3, [pc, #460] ; (800361c ) - 8003450: 6a1b ldr r3, [r3, #32] - 8003452: 4a72 ldr r2, [pc, #456] ; (800361c ) - 8003454: f023 0304 bic.w r3, r3, #4 - 8003458: 6213 str r3, [r2, #32] - 800345a: e01c b.n 8003496 - 800345c: 687b ldr r3, [r7, #4] - 800345e: 68db ldr r3, [r3, #12] - 8003460: 2b05 cmp r3, #5 - 8003462: d10c bne.n 800347e - 8003464: 4b6d ldr r3, [pc, #436] ; (800361c ) - 8003466: 6a1b ldr r3, [r3, #32] - 8003468: 4a6c ldr r2, [pc, #432] ; (800361c ) - 800346a: f043 0304 orr.w r3, r3, #4 - 800346e: 6213 str r3, [r2, #32] - 8003470: 4b6a ldr r3, [pc, #424] ; (800361c ) - 8003472: 6a1b ldr r3, [r3, #32] - 8003474: 4a69 ldr r2, [pc, #420] ; (800361c ) - 8003476: f043 0301 orr.w r3, r3, #1 - 800347a: 6213 str r3, [r2, #32] - 800347c: e00b b.n 8003496 - 800347e: 4b67 ldr r3, [pc, #412] ; (800361c ) - 8003480: 6a1b ldr r3, [r3, #32] - 8003482: 4a66 ldr r2, [pc, #408] ; (800361c ) - 8003484: f023 0301 bic.w r3, r3, #1 - 8003488: 6213 str r3, [r2, #32] - 800348a: 4b64 ldr r3, [pc, #400] ; (800361c ) - 800348c: 6a1b ldr r3, [r3, #32] - 800348e: 4a63 ldr r2, [pc, #396] ; (800361c ) - 8003490: f023 0304 bic.w r3, r3, #4 - 8003494: 6213 str r3, [r2, #32] + 8003474: 687b ldr r3, [r7, #4] + 8003476: 68db ldr r3, [r3, #12] + 8003478: 2b01 cmp r3, #1 + 800347a: d106 bne.n 800348a + 800347c: 4b7b ldr r3, [pc, #492] ; (800366c ) + 800347e: 6a1b ldr r3, [r3, #32] + 8003480: 4a7a ldr r2, [pc, #488] ; (800366c ) + 8003482: f043 0301 orr.w r3, r3, #1 + 8003486: 6213 str r3, [r2, #32] + 8003488: e02d b.n 80034e6 + 800348a: 687b ldr r3, [r7, #4] + 800348c: 68db ldr r3, [r3, #12] + 800348e: 2b00 cmp r3, #0 + 8003490: d10c bne.n 80034ac + 8003492: 4b76 ldr r3, [pc, #472] ; (800366c ) + 8003494: 6a1b ldr r3, [r3, #32] + 8003496: 4a75 ldr r2, [pc, #468] ; (800366c ) + 8003498: f023 0301 bic.w r3, r3, #1 + 800349c: 6213 str r3, [r2, #32] + 800349e: 4b73 ldr r3, [pc, #460] ; (800366c ) + 80034a0: 6a1b ldr r3, [r3, #32] + 80034a2: 4a72 ldr r2, [pc, #456] ; (800366c ) + 80034a4: f023 0304 bic.w r3, r3, #4 + 80034a8: 6213 str r3, [r2, #32] + 80034aa: e01c b.n 80034e6 + 80034ac: 687b ldr r3, [r7, #4] + 80034ae: 68db ldr r3, [r3, #12] + 80034b0: 2b05 cmp r3, #5 + 80034b2: d10c bne.n 80034ce + 80034b4: 4b6d ldr r3, [pc, #436] ; (800366c ) + 80034b6: 6a1b ldr r3, [r3, #32] + 80034b8: 4a6c ldr r2, [pc, #432] ; (800366c ) + 80034ba: f043 0304 orr.w r3, r3, #4 + 80034be: 6213 str r3, [r2, #32] + 80034c0: 4b6a ldr r3, [pc, #424] ; (800366c ) + 80034c2: 6a1b ldr r3, [r3, #32] + 80034c4: 4a69 ldr r2, [pc, #420] ; (800366c ) + 80034c6: f043 0301 orr.w r3, r3, #1 + 80034ca: 6213 str r3, [r2, #32] + 80034cc: e00b b.n 80034e6 + 80034ce: 4b67 ldr r3, [pc, #412] ; (800366c ) + 80034d0: 6a1b ldr r3, [r3, #32] + 80034d2: 4a66 ldr r2, [pc, #408] ; (800366c ) + 80034d4: f023 0301 bic.w r3, r3, #1 + 80034d8: 6213 str r3, [r2, #32] + 80034da: 4b64 ldr r3, [pc, #400] ; (800366c ) + 80034dc: 6a1b ldr r3, [r3, #32] + 80034de: 4a63 ldr r2, [pc, #396] ; (800366c ) + 80034e0: f023 0304 bic.w r3, r3, #4 + 80034e4: 6213 str r3, [r2, #32] /* Check the LSE State */ if (RCC_OscInitStruct->LSEState != RCC_LSE_OFF) - 8003496: 687b ldr r3, [r7, #4] - 8003498: 68db ldr r3, [r3, #12] - 800349a: 2b00 cmp r3, #0 - 800349c: d015 beq.n 80034ca + 80034e6: 687b ldr r3, [r7, #4] + 80034e8: 68db ldr r3, [r3, #12] + 80034ea: 2b00 cmp r3, #0 + 80034ec: d015 beq.n 800351a { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800349e: f7fe fb43 bl 8001b28 - 80034a2: 6138 str r0, [r7, #16] + 80034ee: f7fe fb43 bl 8001b78 + 80034f2: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80034a4: e00a b.n 80034bc + 80034f4: e00a b.n 800350c { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 80034a6: f7fe fb3f bl 8001b28 - 80034aa: 4602 mov r2, r0 - 80034ac: 693b ldr r3, [r7, #16] - 80034ae: 1ad3 subs r3, r2, r3 - 80034b0: f241 3288 movw r2, #5000 ; 0x1388 - 80034b4: 4293 cmp r3, r2 - 80034b6: d901 bls.n 80034bc + 80034f6: f7fe fb3f bl 8001b78 + 80034fa: 4602 mov r2, r0 + 80034fc: 693b ldr r3, [r7, #16] + 80034fe: 1ad3 subs r3, r2, r3 + 8003500: f241 3288 movw r2, #5000 ; 0x1388 + 8003504: 4293 cmp r3, r2 + 8003506: d901 bls.n 800350c { return HAL_TIMEOUT; - 80034b8: 2303 movs r3, #3 - 80034ba: e0ab b.n 8003614 + 8003508: 2303 movs r3, #3 + 800350a: e0ab b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80034bc: 4b57 ldr r3, [pc, #348] ; (800361c ) - 80034be: 6a1b ldr r3, [r3, #32] - 80034c0: f003 0302 and.w r3, r3, #2 - 80034c4: 2b00 cmp r3, #0 - 80034c6: d0ee beq.n 80034a6 - 80034c8: e014 b.n 80034f4 + 800350c: 4b57 ldr r3, [pc, #348] ; (800366c ) + 800350e: 6a1b ldr r3, [r3, #32] + 8003510: f003 0302 and.w r3, r3, #2 + 8003514: 2b00 cmp r3, #0 + 8003516: d0ee beq.n 80034f6 + 8003518: e014 b.n 8003544 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 80034ca: f7fe fb2d bl 8001b28 - 80034ce: 6138 str r0, [r7, #16] + 800351a: f7fe fb2d bl 8001b78 + 800351e: 6138 str r0, [r7, #16] /* Wait till LSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80034d0: e00a b.n 80034e8 + 8003520: e00a b.n 8003538 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 80034d2: f7fe fb29 bl 8001b28 - 80034d6: 4602 mov r2, r0 - 80034d8: 693b ldr r3, [r7, #16] - 80034da: 1ad3 subs r3, r2, r3 - 80034dc: f241 3288 movw r2, #5000 ; 0x1388 - 80034e0: 4293 cmp r3, r2 - 80034e2: d901 bls.n 80034e8 + 8003522: f7fe fb29 bl 8001b78 + 8003526: 4602 mov r2, r0 + 8003528: 693b ldr r3, [r7, #16] + 800352a: 1ad3 subs r3, r2, r3 + 800352c: f241 3288 movw r2, #5000 ; 0x1388 + 8003530: 4293 cmp r3, r2 + 8003532: d901 bls.n 8003538 { return HAL_TIMEOUT; - 80034e4: 2303 movs r3, #3 - 80034e6: e095 b.n 8003614 + 8003534: 2303 movs r3, #3 + 8003536: e095 b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80034e8: 4b4c ldr r3, [pc, #304] ; (800361c ) - 80034ea: 6a1b ldr r3, [r3, #32] - 80034ec: f003 0302 and.w r3, r3, #2 - 80034f0: 2b00 cmp r3, #0 - 80034f2: d1ee bne.n 80034d2 + 8003538: 4b4c ldr r3, [pc, #304] ; (800366c ) + 800353a: 6a1b ldr r3, [r3, #32] + 800353c: f003 0302 and.w r3, r3, #2 + 8003540: 2b00 cmp r3, #0 + 8003542: d1ee bne.n 8003522 } } } /* Require to disable power clock if necessary */ if (pwrclkchanged == SET) - 80034f4: 7dfb ldrb r3, [r7, #23] - 80034f6: 2b01 cmp r3, #1 - 80034f8: d105 bne.n 8003506 + 8003544: 7dfb ldrb r3, [r7, #23] + 8003546: 2b01 cmp r3, #1 + 8003548: d105 bne.n 8003556 { __HAL_RCC_PWR_CLK_DISABLE(); - 80034fa: 4b48 ldr r3, [pc, #288] ; (800361c ) - 80034fc: 69db ldr r3, [r3, #28] - 80034fe: 4a47 ldr r2, [pc, #284] ; (800361c ) - 8003500: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 - 8003504: 61d3 str r3, [r2, #28] + 800354a: 4b48 ldr r3, [pc, #288] ; (800366c ) + 800354c: 69db ldr r3, [r3, #28] + 800354e: 4a47 ldr r2, [pc, #284] ; (800366c ) + 8003550: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 + 8003554: 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) - 8003506: 687b ldr r3, [r7, #4] - 8003508: 69db ldr r3, [r3, #28] - 800350a: 2b00 cmp r3, #0 - 800350c: f000 8081 beq.w 8003612 + 8003556: 687b ldr r3, [r7, #4] + 8003558: 69db ldr r3, [r3, #28] + 800355a: 2b00 cmp r3, #0 + 800355c: f000 8081 beq.w 8003662 { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 8003510: 4b42 ldr r3, [pc, #264] ; (800361c ) - 8003512: 685b ldr r3, [r3, #4] - 8003514: f003 030c and.w r3, r3, #12 - 8003518: 2b08 cmp r3, #8 - 800351a: d061 beq.n 80035e0 + 8003560: 4b42 ldr r3, [pc, #264] ; (800366c ) + 8003562: 685b ldr r3, [r3, #4] + 8003564: f003 030c and.w r3, r3, #12 + 8003568: 2b08 cmp r3, #8 + 800356a: d061 beq.n 8003630 { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 800351c: 687b ldr r3, [r7, #4] - 800351e: 69db ldr r3, [r3, #28] - 8003520: 2b02 cmp r3, #2 - 8003522: d146 bne.n 80035b2 + 800356c: 687b ldr r3, [r7, #4] + 800356e: 69db ldr r3, [r3, #28] + 8003570: 2b02 cmp r3, #2 + 8003572: d146 bne.n 8003602 /* 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(); - 8003524: 4b3f ldr r3, [pc, #252] ; (8003624 ) - 8003526: 2200 movs r2, #0 - 8003528: 601a str r2, [r3, #0] + 8003574: 4b3f ldr r3, [pc, #252] ; (8003674 ) + 8003576: 2200 movs r2, #0 + 8003578: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800352a: f7fe fafd bl 8001b28 - 800352e: 6138 str r0, [r7, #16] + 800357a: f7fe fafd bl 8001b78 + 800357e: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8003530: e008 b.n 8003544 + 8003580: e008 b.n 8003594 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8003532: f7fe faf9 bl 8001b28 - 8003536: 4602 mov r2, r0 - 8003538: 693b ldr r3, [r7, #16] - 800353a: 1ad3 subs r3, r2, r3 - 800353c: 2b02 cmp r3, #2 - 800353e: d901 bls.n 8003544 + 8003582: f7fe faf9 bl 8001b78 + 8003586: 4602 mov r2, r0 + 8003588: 693b ldr r3, [r7, #16] + 800358a: 1ad3 subs r3, r2, r3 + 800358c: 2b02 cmp r3, #2 + 800358e: d901 bls.n 8003594 { return HAL_TIMEOUT; - 8003540: 2303 movs r3, #3 - 8003542: e067 b.n 8003614 + 8003590: 2303 movs r3, #3 + 8003592: e067 b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8003544: 4b35 ldr r3, [pc, #212] ; (800361c ) - 8003546: 681b ldr r3, [r3, #0] - 8003548: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 800354c: 2b00 cmp r3, #0 - 800354e: d1f0 bne.n 8003532 + 8003594: 4b35 ldr r3, [pc, #212] ; (800366c ) + 8003596: 681b ldr r3, [r3, #0] + 8003598: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800359c: 2b00 cmp r3, #0 + 800359e: d1f0 bne.n 8003582 } } /* 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) - 8003550: 687b ldr r3, [r7, #4] - 8003552: 6a1b ldr r3, [r3, #32] - 8003554: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8003558: d108 bne.n 800356c + 80035a0: 687b ldr r3, [r7, #4] + 80035a2: 6a1b ldr r3, [r3, #32] + 80035a4: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 80035a8: d108 bne.n 80035bc /* 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); - 800355a: 4b30 ldr r3, [pc, #192] ; (800361c ) - 800355c: 685b ldr r3, [r3, #4] - 800355e: f423 3200 bic.w r2, r3, #131072 ; 0x20000 - 8003562: 687b ldr r3, [r7, #4] - 8003564: 689b ldr r3, [r3, #8] - 8003566: 492d ldr r1, [pc, #180] ; (800361c ) - 8003568: 4313 orrs r3, r2 - 800356a: 604b str r3, [r1, #4] + 80035aa: 4b30 ldr r3, [pc, #192] ; (800366c ) + 80035ac: 685b ldr r3, [r3, #4] + 80035ae: f423 3200 bic.w r2, r3, #131072 ; 0x20000 + 80035b2: 687b ldr r3, [r7, #4] + 80035b4: 689b ldr r3, [r3, #8] + 80035b6: 492d ldr r1, [pc, #180] ; (800366c ) + 80035b8: 4313 orrs r3, r2 + 80035ba: 604b str r3, [r1, #4] } /* Configure the main PLL clock source and multiplication factors. */ __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 800356c: 4b2b ldr r3, [pc, #172] ; (800361c ) - 800356e: 685b ldr r3, [r3, #4] - 8003570: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 - 8003574: 687b ldr r3, [r7, #4] - 8003576: 6a19 ldr r1, [r3, #32] - 8003578: 687b ldr r3, [r7, #4] - 800357a: 6a5b ldr r3, [r3, #36] ; 0x24 - 800357c: 430b orrs r3, r1 - 800357e: 4927 ldr r1, [pc, #156] ; (800361c ) - 8003580: 4313 orrs r3, r2 - 8003582: 604b str r3, [r1, #4] + 80035bc: 4b2b ldr r3, [pc, #172] ; (800366c ) + 80035be: 685b ldr r3, [r3, #4] + 80035c0: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 + 80035c4: 687b ldr r3, [r7, #4] + 80035c6: 6a19 ldr r1, [r3, #32] + 80035c8: 687b ldr r3, [r7, #4] + 80035ca: 6a5b ldr r3, [r3, #36] ; 0x24 + 80035cc: 430b orrs r3, r1 + 80035ce: 4927 ldr r1, [pc, #156] ; (800366c ) + 80035d0: 4313 orrs r3, r2 + 80035d2: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLMUL); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 8003584: 4b27 ldr r3, [pc, #156] ; (8003624 ) - 8003586: 2201 movs r2, #1 - 8003588: 601a str r2, [r3, #0] + 80035d4: 4b27 ldr r3, [pc, #156] ; (8003674 ) + 80035d6: 2201 movs r2, #1 + 80035d8: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800358a: f7fe facd bl 8001b28 - 800358e: 6138 str r0, [r7, #16] + 80035da: f7fe facd bl 8001b78 + 80035de: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8003590: e008 b.n 80035a4 + 80035e0: e008 b.n 80035f4 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8003592: f7fe fac9 bl 8001b28 - 8003596: 4602 mov r2, r0 - 8003598: 693b ldr r3, [r7, #16] - 800359a: 1ad3 subs r3, r2, r3 - 800359c: 2b02 cmp r3, #2 - 800359e: d901 bls.n 80035a4 + 80035e2: f7fe fac9 bl 8001b78 + 80035e6: 4602 mov r2, r0 + 80035e8: 693b ldr r3, [r7, #16] + 80035ea: 1ad3 subs r3, r2, r3 + 80035ec: 2b02 cmp r3, #2 + 80035ee: d901 bls.n 80035f4 { return HAL_TIMEOUT; - 80035a0: 2303 movs r3, #3 - 80035a2: e037 b.n 8003614 + 80035f0: 2303 movs r3, #3 + 80035f2: e037 b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80035a4: 4b1d ldr r3, [pc, #116] ; (800361c ) - 80035a6: 681b ldr r3, [r3, #0] - 80035a8: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80035ac: 2b00 cmp r3, #0 - 80035ae: d0f0 beq.n 8003592 - 80035b0: e02f b.n 8003612 + 80035f4: 4b1d ldr r3, [pc, #116] ; (800366c ) + 80035f6: 681b ldr r3, [r3, #0] + 80035f8: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 80035fc: 2b00 cmp r3, #0 + 80035fe: d0f0 beq.n 80035e2 + 8003600: e02f b.n 8003662 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80035b2: 4b1c ldr r3, [pc, #112] ; (8003624 ) - 80035b4: 2200 movs r2, #0 - 80035b6: 601a str r2, [r3, #0] + 8003602: 4b1c ldr r3, [pc, #112] ; (8003674 ) + 8003604: 2200 movs r2, #0 + 8003606: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80035b8: f7fe fab6 bl 8001b28 - 80035bc: 6138 str r0, [r7, #16] + 8003608: f7fe fab6 bl 8001b78 + 800360c: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80035be: e008 b.n 80035d2 + 800360e: e008 b.n 8003622 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80035c0: f7fe fab2 bl 8001b28 - 80035c4: 4602 mov r2, r0 - 80035c6: 693b ldr r3, [r7, #16] - 80035c8: 1ad3 subs r3, r2, r3 - 80035ca: 2b02 cmp r3, #2 - 80035cc: d901 bls.n 80035d2 + 8003610: f7fe fab2 bl 8001b78 + 8003614: 4602 mov r2, r0 + 8003616: 693b ldr r3, [r7, #16] + 8003618: 1ad3 subs r3, r2, r3 + 800361a: 2b02 cmp r3, #2 + 800361c: d901 bls.n 8003622 { return HAL_TIMEOUT; - 80035ce: 2303 movs r3, #3 - 80035d0: e020 b.n 8003614 + 800361e: 2303 movs r3, #3 + 8003620: e020 b.n 8003664 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80035d2: 4b12 ldr r3, [pc, #72] ; (800361c ) - 80035d4: 681b ldr r3, [r3, #0] - 80035d6: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80035da: 2b00 cmp r3, #0 - 80035dc: d1f0 bne.n 80035c0 - 80035de: e018 b.n 8003612 + 8003622: 4b12 ldr r3, [pc, #72] ; (800366c ) + 8003624: 681b ldr r3, [r3, #0] + 8003626: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800362a: 2b00 cmp r3, #0 + 800362c: d1f0 bne.n 8003610 + 800362e: e018 b.n 8003662 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 80035e0: 687b ldr r3, [r7, #4] - 80035e2: 69db ldr r3, [r3, #28] - 80035e4: 2b01 cmp r3, #1 - 80035e6: d101 bne.n 80035ec + 8003630: 687b ldr r3, [r7, #4] + 8003632: 69db ldr r3, [r3, #28] + 8003634: 2b01 cmp r3, #1 + 8003636: d101 bne.n 800363c { return HAL_ERROR; - 80035e8: 2301 movs r3, #1 - 80035ea: e013 b.n 8003614 + 8003638: 2301 movs r3, #1 + 800363a: e013 b.n 8003664 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->CFGR; - 80035ec: 4b0b ldr r3, [pc, #44] ; (800361c ) - 80035ee: 685b ldr r3, [r3, #4] - 80035f0: 60fb str r3, [r7, #12] + 800363c: 4b0b ldr r3, [pc, #44] ; (800366c ) + 800363e: 685b ldr r3, [r3, #4] + 8003640: 60fb str r3, [r7, #12] if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 80035f2: 68fb ldr r3, [r7, #12] - 80035f4: f403 3280 and.w r2, r3, #65536 ; 0x10000 - 80035f8: 687b ldr r3, [r7, #4] - 80035fa: 6a1b ldr r3, [r3, #32] - 80035fc: 429a cmp r2, r3 - 80035fe: d106 bne.n 800360e + 8003642: 68fb ldr r3, [r7, #12] + 8003644: f403 3280 and.w r2, r3, #65536 ; 0x10000 + 8003648: 687b ldr r3, [r7, #4] + 800364a: 6a1b ldr r3, [r3, #32] + 800364c: 429a cmp r2, r3 + 800364e: d106 bne.n 800365e (READ_BIT(pll_config, RCC_CFGR_PLLMULL) != RCC_OscInitStruct->PLL.PLLMUL)) - 8003600: 68fb ldr r3, [r7, #12] - 8003602: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 - 8003606: 687b ldr r3, [r7, #4] - 8003608: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003650: 68fb ldr r3, [r7, #12] + 8003652: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 + 8003656: 687b ldr r3, [r7, #4] + 8003658: 6a5b ldr r3, [r3, #36] ; 0x24 if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800360a: 429a cmp r2, r3 - 800360c: d001 beq.n 8003612 + 800365a: 429a cmp r2, r3 + 800365c: d001 beq.n 8003662 { return HAL_ERROR; - 800360e: 2301 movs r3, #1 - 8003610: e000 b.n 8003614 + 800365e: 2301 movs r3, #1 + 8003660: e000 b.n 8003664 } } } } return HAL_OK; - 8003612: 2300 movs r3, #0 + 8003662: 2300 movs r3, #0 } - 8003614: 4618 mov r0, r3 - 8003616: 3718 adds r7, #24 - 8003618: 46bd mov sp, r7 - 800361a: bd80 pop {r7, pc} - 800361c: 40021000 .word 0x40021000 - 8003620: 40007000 .word 0x40007000 - 8003624: 42420060 .word 0x42420060 + 8003664: 4618 mov r0, r3 + 8003666: 3718 adds r7, #24 + 8003668: 46bd mov sp, r7 + 800366a: bd80 pop {r7, pc} + 800366c: 40021000 .word 0x40021000 + 8003670: 40007000 .word 0x40007000 + 8003674: 42420060 .word 0x42420060 -08003628 : +08003678 : * 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) { - 8003628: b580 push {r7, lr} - 800362a: b084 sub sp, #16 - 800362c: af00 add r7, sp, #0 - 800362e: 6078 str r0, [r7, #4] - 8003630: 6039 str r1, [r7, #0] + 8003678: b580 push {r7, lr} + 800367a: b084 sub sp, #16 + 800367c: af00 add r7, sp, #0 + 800367e: 6078 str r0, [r7, #4] + 8003680: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 8003632: 687b ldr r3, [r7, #4] - 8003634: 2b00 cmp r3, #0 - 8003636: d101 bne.n 800363c + 8003682: 687b ldr r3, [r7, #4] + 8003684: 2b00 cmp r3, #0 + 8003686: d101 bne.n 800368c { return HAL_ERROR; - 8003638: 2301 movs r3, #1 - 800363a: e0d0 b.n 80037de + 8003688: 2301 movs r3, #1 + 800368a: e0d0 b.n 800382e 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()) - 800363c: 4b6a ldr r3, [pc, #424] ; (80037e8 ) - 800363e: 681b ldr r3, [r3, #0] - 8003640: f003 0307 and.w r3, r3, #7 - 8003644: 683a ldr r2, [r7, #0] - 8003646: 429a cmp r2, r3 - 8003648: d910 bls.n 800366c + 800368c: 4b6a ldr r3, [pc, #424] ; (8003838 ) + 800368e: 681b ldr r3, [r3, #0] + 8003690: f003 0307 and.w r3, r3, #7 + 8003694: 683a ldr r2, [r7, #0] + 8003696: 429a cmp r2, r3 + 8003698: d910 bls.n 80036bc { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 800364a: 4b67 ldr r3, [pc, #412] ; (80037e8 ) - 800364c: 681b ldr r3, [r3, #0] - 800364e: f023 0207 bic.w r2, r3, #7 - 8003652: 4965 ldr r1, [pc, #404] ; (80037e8 ) - 8003654: 683b ldr r3, [r7, #0] - 8003656: 4313 orrs r3, r2 - 8003658: 600b str r3, [r1, #0] + 800369a: 4b67 ldr r3, [pc, #412] ; (8003838 ) + 800369c: 681b ldr r3, [r3, #0] + 800369e: f023 0207 bic.w r2, r3, #7 + 80036a2: 4965 ldr r1, [pc, #404] ; (8003838 ) + 80036a4: 683b ldr r3, [r7, #0] + 80036a6: 4313 orrs r3, r2 + 80036a8: 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) - 800365a: 4b63 ldr r3, [pc, #396] ; (80037e8 ) - 800365c: 681b ldr r3, [r3, #0] - 800365e: f003 0307 and.w r3, r3, #7 - 8003662: 683a ldr r2, [r7, #0] - 8003664: 429a cmp r2, r3 - 8003666: d001 beq.n 800366c + 80036aa: 4b63 ldr r3, [pc, #396] ; (8003838 ) + 80036ac: 681b ldr r3, [r3, #0] + 80036ae: f003 0307 and.w r3, r3, #7 + 80036b2: 683a ldr r2, [r7, #0] + 80036b4: 429a cmp r2, r3 + 80036b6: d001 beq.n 80036bc { return HAL_ERROR; - 8003668: 2301 movs r3, #1 - 800366a: e0b8 b.n 80037de + 80036b8: 2301 movs r3, #1 + 80036ba: e0b8 b.n 800382e } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 800366c: 687b ldr r3, [r7, #4] - 800366e: 681b ldr r3, [r3, #0] - 8003670: f003 0302 and.w r3, r3, #2 - 8003674: 2b00 cmp r3, #0 - 8003676: d020 beq.n 80036ba + 80036bc: 687b ldr r3, [r7, #4] + 80036be: 681b ldr r3, [r3, #0] + 80036c0: f003 0302 and.w r3, r3, #2 + 80036c4: 2b00 cmp r3, #0 + 80036c6: d020 beq.n 800370a { /* 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) - 8003678: 687b ldr r3, [r7, #4] - 800367a: 681b ldr r3, [r3, #0] - 800367c: f003 0304 and.w r3, r3, #4 - 8003680: 2b00 cmp r3, #0 - 8003682: d005 beq.n 8003690 + 80036c8: 687b ldr r3, [r7, #4] + 80036ca: 681b ldr r3, [r3, #0] + 80036cc: f003 0304 and.w r3, r3, #4 + 80036d0: 2b00 cmp r3, #0 + 80036d2: d005 beq.n 80036e0 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 8003684: 4b59 ldr r3, [pc, #356] ; (80037ec ) - 8003686: 685b ldr r3, [r3, #4] - 8003688: 4a58 ldr r2, [pc, #352] ; (80037ec ) - 800368a: f443 63e0 orr.w r3, r3, #1792 ; 0x700 - 800368e: 6053 str r3, [r2, #4] + 80036d4: 4b59 ldr r3, [pc, #356] ; (800383c ) + 80036d6: 685b ldr r3, [r3, #4] + 80036d8: 4a58 ldr r2, [pc, #352] ; (800383c ) + 80036da: f443 63e0 orr.w r3, r3, #1792 ; 0x700 + 80036de: 6053 str r3, [r2, #4] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8003690: 687b ldr r3, [r7, #4] - 8003692: 681b ldr r3, [r3, #0] - 8003694: f003 0308 and.w r3, r3, #8 - 8003698: 2b00 cmp r3, #0 - 800369a: d005 beq.n 80036a8 + 80036e0: 687b ldr r3, [r7, #4] + 80036e2: 681b ldr r3, [r3, #0] + 80036e4: f003 0308 and.w r3, r3, #8 + 80036e8: 2b00 cmp r3, #0 + 80036ea: d005 beq.n 80036f8 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 800369c: 4b53 ldr r3, [pc, #332] ; (80037ec ) - 800369e: 685b ldr r3, [r3, #4] - 80036a0: 4a52 ldr r2, [pc, #328] ; (80037ec ) - 80036a2: f443 5360 orr.w r3, r3, #14336 ; 0x3800 - 80036a6: 6053 str r3, [r2, #4] + 80036ec: 4b53 ldr r3, [pc, #332] ; (800383c ) + 80036ee: 685b ldr r3, [r3, #4] + 80036f0: 4a52 ldr r2, [pc, #328] ; (800383c ) + 80036f2: f443 5360 orr.w r3, r3, #14336 ; 0x3800 + 80036f6: 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); - 80036a8: 4b50 ldr r3, [pc, #320] ; (80037ec ) - 80036aa: 685b ldr r3, [r3, #4] - 80036ac: f023 02f0 bic.w r2, r3, #240 ; 0xf0 - 80036b0: 687b ldr r3, [r7, #4] - 80036b2: 689b ldr r3, [r3, #8] - 80036b4: 494d ldr r1, [pc, #308] ; (80037ec ) - 80036b6: 4313 orrs r3, r2 - 80036b8: 604b str r3, [r1, #4] + 80036f8: 4b50 ldr r3, [pc, #320] ; (800383c ) + 80036fa: 685b ldr r3, [r3, #4] + 80036fc: f023 02f0 bic.w r2, r3, #240 ; 0xf0 + 8003700: 687b ldr r3, [r7, #4] + 8003702: 689b ldr r3, [r3, #8] + 8003704: 494d ldr r1, [pc, #308] ; (800383c ) + 8003706: 4313 orrs r3, r2 + 8003708: 604b str r3, [r1, #4] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 80036ba: 687b ldr r3, [r7, #4] - 80036bc: 681b ldr r3, [r3, #0] - 80036be: f003 0301 and.w r3, r3, #1 - 80036c2: 2b00 cmp r3, #0 - 80036c4: d040 beq.n 8003748 + 800370a: 687b ldr r3, [r7, #4] + 800370c: 681b ldr r3, [r3, #0] + 800370e: f003 0301 and.w r3, r3, #1 + 8003712: 2b00 cmp r3, #0 + 8003714: d040 beq.n 8003798 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 80036c6: 687b ldr r3, [r7, #4] - 80036c8: 685b ldr r3, [r3, #4] - 80036ca: 2b01 cmp r3, #1 - 80036cc: d107 bne.n 80036de + 8003716: 687b ldr r3, [r7, #4] + 8003718: 685b ldr r3, [r3, #4] + 800371a: 2b01 cmp r3, #1 + 800371c: d107 bne.n 800372e { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 80036ce: 4b47 ldr r3, [pc, #284] ; (80037ec ) - 80036d0: 681b ldr r3, [r3, #0] - 80036d2: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 80036d6: 2b00 cmp r3, #0 - 80036d8: d115 bne.n 8003706 + 800371e: 4b47 ldr r3, [pc, #284] ; (800383c ) + 8003720: 681b ldr r3, [r3, #0] + 8003722: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8003726: 2b00 cmp r3, #0 + 8003728: d115 bne.n 8003756 { return HAL_ERROR; - 80036da: 2301 movs r3, #1 - 80036dc: e07f b.n 80037de + 800372a: 2301 movs r3, #1 + 800372c: e07f b.n 800382e } } /* PLL is selected as System Clock Source */ else if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 80036de: 687b ldr r3, [r7, #4] - 80036e0: 685b ldr r3, [r3, #4] - 80036e2: 2b02 cmp r3, #2 - 80036e4: d107 bne.n 80036f6 + 800372e: 687b ldr r3, [r7, #4] + 8003730: 685b ldr r3, [r3, #4] + 8003732: 2b02 cmp r3, #2 + 8003734: d107 bne.n 8003746 { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80036e6: 4b41 ldr r3, [pc, #260] ; (80037ec ) - 80036e8: 681b ldr r3, [r3, #0] - 80036ea: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80036ee: 2b00 cmp r3, #0 - 80036f0: d109 bne.n 8003706 + 8003736: 4b41 ldr r3, [pc, #260] ; (800383c ) + 8003738: 681b ldr r3, [r3, #0] + 800373a: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800373e: 2b00 cmp r3, #0 + 8003740: d109 bne.n 8003756 { return HAL_ERROR; - 80036f2: 2301 movs r3, #1 - 80036f4: e073 b.n 80037de + 8003742: 2301 movs r3, #1 + 8003744: e073 b.n 800382e } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 80036f6: 4b3d ldr r3, [pc, #244] ; (80037ec ) - 80036f8: 681b ldr r3, [r3, #0] - 80036fa: f003 0302 and.w r3, r3, #2 - 80036fe: 2b00 cmp r3, #0 - 8003700: d101 bne.n 8003706 + 8003746: 4b3d ldr r3, [pc, #244] ; (800383c ) + 8003748: 681b ldr r3, [r3, #0] + 800374a: f003 0302 and.w r3, r3, #2 + 800374e: 2b00 cmp r3, #0 + 8003750: d101 bne.n 8003756 { return HAL_ERROR; - 8003702: 2301 movs r3, #1 - 8003704: e06b b.n 80037de + 8003752: 2301 movs r3, #1 + 8003754: e06b b.n 800382e } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 8003706: 4b39 ldr r3, [pc, #228] ; (80037ec ) - 8003708: 685b ldr r3, [r3, #4] - 800370a: f023 0203 bic.w r2, r3, #3 - 800370e: 687b ldr r3, [r7, #4] - 8003710: 685b ldr r3, [r3, #4] - 8003712: 4936 ldr r1, [pc, #216] ; (80037ec ) - 8003714: 4313 orrs r3, r2 - 8003716: 604b str r3, [r1, #4] + 8003756: 4b39 ldr r3, [pc, #228] ; (800383c ) + 8003758: 685b ldr r3, [r3, #4] + 800375a: f023 0203 bic.w r2, r3, #3 + 800375e: 687b ldr r3, [r7, #4] + 8003760: 685b ldr r3, [r3, #4] + 8003762: 4936 ldr r1, [pc, #216] ; (800383c ) + 8003764: 4313 orrs r3, r2 + 8003766: 604b str r3, [r1, #4] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003718: f7fe fa06 bl 8001b28 - 800371c: 60f8 str r0, [r7, #12] + 8003768: f7fe fa06 bl 8001b78 + 800376c: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 800371e: e00a b.n 8003736 + 800376e: e00a b.n 8003786 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8003720: f7fe fa02 bl 8001b28 - 8003724: 4602 mov r2, r0 - 8003726: 68fb ldr r3, [r7, #12] - 8003728: 1ad3 subs r3, r2, r3 - 800372a: f241 3288 movw r2, #5000 ; 0x1388 - 800372e: 4293 cmp r3, r2 - 8003730: d901 bls.n 8003736 + 8003770: f7fe fa02 bl 8001b78 + 8003774: 4602 mov r2, r0 + 8003776: 68fb ldr r3, [r7, #12] + 8003778: 1ad3 subs r3, r2, r3 + 800377a: f241 3288 movw r2, #5000 ; 0x1388 + 800377e: 4293 cmp r3, r2 + 8003780: d901 bls.n 8003786 { return HAL_TIMEOUT; - 8003732: 2303 movs r3, #3 - 8003734: e053 b.n 80037de + 8003782: 2303 movs r3, #3 + 8003784: e053 b.n 800382e while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8003736: 4b2d ldr r3, [pc, #180] ; (80037ec ) - 8003738: 685b ldr r3, [r3, #4] - 800373a: f003 020c and.w r2, r3, #12 - 800373e: 687b ldr r3, [r7, #4] - 8003740: 685b ldr r3, [r3, #4] - 8003742: 009b lsls r3, r3, #2 - 8003744: 429a cmp r2, r3 - 8003746: d1eb bne.n 8003720 + 8003786: 4b2d ldr r3, [pc, #180] ; (800383c ) + 8003788: 685b ldr r3, [r3, #4] + 800378a: f003 020c and.w r2, r3, #12 + 800378e: 687b ldr r3, [r7, #4] + 8003790: 685b ldr r3, [r3, #4] + 8003792: 009b lsls r3, r3, #2 + 8003794: 429a cmp r2, r3 + 8003796: d1eb bne.n 8003770 } } #if defined(FLASH_ACR_LATENCY) /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 8003748: 4b27 ldr r3, [pc, #156] ; (80037e8 ) - 800374a: 681b ldr r3, [r3, #0] - 800374c: f003 0307 and.w r3, r3, #7 - 8003750: 683a ldr r2, [r7, #0] - 8003752: 429a cmp r2, r3 - 8003754: d210 bcs.n 8003778 + 8003798: 4b27 ldr r3, [pc, #156] ; (8003838 ) + 800379a: 681b ldr r3, [r3, #0] + 800379c: f003 0307 and.w r3, r3, #7 + 80037a0: 683a ldr r2, [r7, #0] + 80037a2: 429a cmp r2, r3 + 80037a4: d210 bcs.n 80037c8 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 8003756: 4b24 ldr r3, [pc, #144] ; (80037e8 ) - 8003758: 681b ldr r3, [r3, #0] - 800375a: f023 0207 bic.w r2, r3, #7 - 800375e: 4922 ldr r1, [pc, #136] ; (80037e8 ) - 8003760: 683b ldr r3, [r7, #0] - 8003762: 4313 orrs r3, r2 - 8003764: 600b str r3, [r1, #0] + 80037a6: 4b24 ldr r3, [pc, #144] ; (8003838 ) + 80037a8: 681b ldr r3, [r3, #0] + 80037aa: f023 0207 bic.w r2, r3, #7 + 80037ae: 4922 ldr r1, [pc, #136] ; (8003838 ) + 80037b0: 683b ldr r3, [r7, #0] + 80037b2: 4313 orrs r3, r2 + 80037b4: 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) - 8003766: 4b20 ldr r3, [pc, #128] ; (80037e8 ) - 8003768: 681b ldr r3, [r3, #0] - 800376a: f003 0307 and.w r3, r3, #7 - 800376e: 683a ldr r2, [r7, #0] - 8003770: 429a cmp r2, r3 - 8003772: d001 beq.n 8003778 + 80037b6: 4b20 ldr r3, [pc, #128] ; (8003838 ) + 80037b8: 681b ldr r3, [r3, #0] + 80037ba: f003 0307 and.w r3, r3, #7 + 80037be: 683a ldr r2, [r7, #0] + 80037c0: 429a cmp r2, r3 + 80037c2: d001 beq.n 80037c8 { return HAL_ERROR; - 8003774: 2301 movs r3, #1 - 8003776: e032 b.n 80037de + 80037c4: 2301 movs r3, #1 + 80037c6: e032 b.n 800382e } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 8003778: 687b ldr r3, [r7, #4] - 800377a: 681b ldr r3, [r3, #0] - 800377c: f003 0304 and.w r3, r3, #4 - 8003780: 2b00 cmp r3, #0 - 8003782: d008 beq.n 8003796 + 80037c8: 687b ldr r3, [r7, #4] + 80037ca: 681b ldr r3, [r3, #0] + 80037cc: f003 0304 and.w r3, r3, #4 + 80037d0: 2b00 cmp r3, #0 + 80037d2: d008 beq.n 80037e6 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 8003784: 4b19 ldr r3, [pc, #100] ; (80037ec ) - 8003786: 685b ldr r3, [r3, #4] - 8003788: f423 62e0 bic.w r2, r3, #1792 ; 0x700 - 800378c: 687b ldr r3, [r7, #4] - 800378e: 68db ldr r3, [r3, #12] - 8003790: 4916 ldr r1, [pc, #88] ; (80037ec ) - 8003792: 4313 orrs r3, r2 - 8003794: 604b str r3, [r1, #4] + 80037d4: 4b19 ldr r3, [pc, #100] ; (800383c ) + 80037d6: 685b ldr r3, [r3, #4] + 80037d8: f423 62e0 bic.w r2, r3, #1792 ; 0x700 + 80037dc: 687b ldr r3, [r7, #4] + 80037de: 68db ldr r3, [r3, #12] + 80037e0: 4916 ldr r1, [pc, #88] ; (800383c ) + 80037e2: 4313 orrs r3, r2 + 80037e4: 604b str r3, [r1, #4] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8003796: 687b ldr r3, [r7, #4] - 8003798: 681b ldr r3, [r3, #0] - 800379a: f003 0308 and.w r3, r3, #8 - 800379e: 2b00 cmp r3, #0 - 80037a0: d009 beq.n 80037b6 + 80037e6: 687b ldr r3, [r7, #4] + 80037e8: 681b ldr r3, [r3, #0] + 80037ea: f003 0308 and.w r3, r3, #8 + 80037ee: 2b00 cmp r3, #0 + 80037f0: d009 beq.n 8003806 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); - 80037a2: 4b12 ldr r3, [pc, #72] ; (80037ec ) - 80037a4: 685b ldr r3, [r3, #4] - 80037a6: f423 5260 bic.w r2, r3, #14336 ; 0x3800 - 80037aa: 687b ldr r3, [r7, #4] - 80037ac: 691b ldr r3, [r3, #16] - 80037ae: 00db lsls r3, r3, #3 - 80037b0: 490e ldr r1, [pc, #56] ; (80037ec ) - 80037b2: 4313 orrs r3, r2 - 80037b4: 604b str r3, [r1, #4] + 80037f2: 4b12 ldr r3, [pc, #72] ; (800383c ) + 80037f4: 685b ldr r3, [r3, #4] + 80037f6: f423 5260 bic.w r2, r3, #14336 ; 0x3800 + 80037fa: 687b ldr r3, [r7, #4] + 80037fc: 691b ldr r3, [r3, #16] + 80037fe: 00db lsls r3, r3, #3 + 8003800: 490e ldr r1, [pc, #56] ; (800383c ) + 8003802: 4313 orrs r3, r2 + 8003804: 604b str r3, [r1, #4] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 80037b6: f000 f821 bl 80037fc - 80037ba: 4602 mov r2, r0 - 80037bc: 4b0b ldr r3, [pc, #44] ; (80037ec ) - 80037be: 685b ldr r3, [r3, #4] - 80037c0: 091b lsrs r3, r3, #4 - 80037c2: f003 030f and.w r3, r3, #15 - 80037c6: 490a ldr r1, [pc, #40] ; (80037f0 ) - 80037c8: 5ccb ldrb r3, [r1, r3] - 80037ca: fa22 f303 lsr.w r3, r2, r3 - 80037ce: 4a09 ldr r2, [pc, #36] ; (80037f4 ) - 80037d0: 6013 str r3, [r2, #0] + 8003806: f000 f821 bl 800384c + 800380a: 4602 mov r2, r0 + 800380c: 4b0b ldr r3, [pc, #44] ; (800383c ) + 800380e: 685b ldr r3, [r3, #4] + 8003810: 091b lsrs r3, r3, #4 + 8003812: f003 030f and.w r3, r3, #15 + 8003816: 490a ldr r1, [pc, #40] ; (8003840 ) + 8003818: 5ccb ldrb r3, [r1, r3] + 800381a: fa22 f303 lsr.w r3, r2, r3 + 800381e: 4a09 ldr r2, [pc, #36] ; (8003844 ) + 8003820: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings*/ HAL_InitTick(uwTickPrio); - 80037d2: 4b09 ldr r3, [pc, #36] ; (80037f8 ) - 80037d4: 681b ldr r3, [r3, #0] - 80037d6: 4618 mov r0, r3 - 80037d8: f7fe f964 bl 8001aa4 + 8003822: 4b09 ldr r3, [pc, #36] ; (8003848 ) + 8003824: 681b ldr r3, [r3, #0] + 8003826: 4618 mov r0, r3 + 8003828: f7fe f964 bl 8001af4 return HAL_OK; - 80037dc: 2300 movs r3, #0 + 800382c: 2300 movs r3, #0 } - 80037de: 4618 mov r0, r3 - 80037e0: 3710 adds r7, #16 - 80037e2: 46bd mov sp, r7 - 80037e4: bd80 pop {r7, pc} - 80037e6: bf00 nop - 80037e8: 40022000 .word 0x40022000 - 80037ec: 40021000 .word 0x40021000 - 80037f0: 0800a4bc .word 0x0800a4bc - 80037f4: 20000000 .word 0x20000000 - 80037f8: 20000004 .word 0x20000004 + 800382e: 4618 mov r0, r3 + 8003830: 3710 adds r7, #16 + 8003832: 46bd mov sp, r7 + 8003834: bd80 pop {r7, pc} + 8003836: bf00 nop + 8003838: 40022000 .word 0x40022000 + 800383c: 40021000 .word 0x40021000 + 8003840: 0800a80c .word 0x0800a80c + 8003844: 20000000 .word 0x20000000 + 8003848: 20000004 .word 0x20000004 -080037fc : +0800384c : * right SYSCLK value. Otherwise, any configuration based on this function will be incorrect. * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 80037fc: b490 push {r4, r7} - 80037fe: b08a sub sp, #40 ; 0x28 - 8003800: af00 add r7, sp, #0 + 800384c: b490 push {r4, r7} + 800384e: b08a sub sp, #40 ; 0x28 + 8003850: 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}; - 8003802: 4b2a ldr r3, [pc, #168] ; (80038ac ) - 8003804: 1d3c adds r4, r7, #4 - 8003806: cb0f ldmia r3, {r0, r1, r2, r3} - 8003808: e884 000f stmia.w r4, {r0, r1, r2, r3} + 8003852: 4b2a ldr r3, [pc, #168] ; (80038fc ) + 8003854: 1d3c adds r4, r7, #4 + 8003856: cb0f ldmia r3, {r0, r1, r2, r3} + 8003858: 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}; - 800380c: f240 2301 movw r3, #513 ; 0x201 - 8003810: 803b strh r3, [r7, #0] + 800385c: f240 2301 movw r3, #513 ; 0x201 + 8003860: 803b strh r3, [r7, #0] #endif /*RCC_CFGR2_PREDIV1*/ #endif uint32_t tmpreg = 0U, prediv = 0U, pllclk = 0U, pllmul = 0U; - 8003812: 2300 movs r3, #0 - 8003814: 61fb str r3, [r7, #28] - 8003816: 2300 movs r3, #0 - 8003818: 61bb str r3, [r7, #24] - 800381a: 2300 movs r3, #0 - 800381c: 627b str r3, [r7, #36] ; 0x24 - 800381e: 2300 movs r3, #0 - 8003820: 617b str r3, [r7, #20] + 8003862: 2300 movs r3, #0 + 8003864: 61fb str r3, [r7, #28] + 8003866: 2300 movs r3, #0 + 8003868: 61bb str r3, [r7, #24] + 800386a: 2300 movs r3, #0 + 800386c: 627b str r3, [r7, #36] ; 0x24 + 800386e: 2300 movs r3, #0 + 8003870: 617b str r3, [r7, #20] uint32_t sysclockfreq = 0U; - 8003822: 2300 movs r3, #0 - 8003824: 623b str r3, [r7, #32] + 8003872: 2300 movs r3, #0 + 8003874: 623b str r3, [r7, #32] #if defined(RCC_CFGR2_PREDIV1SRC) uint32_t prediv2 = 0U, pll2mul = 0U; #endif /*RCC_CFGR2_PREDIV1SRC*/ tmpreg = RCC->CFGR; - 8003826: 4b22 ldr r3, [pc, #136] ; (80038b0 ) - 8003828: 685b ldr r3, [r3, #4] - 800382a: 61fb str r3, [r7, #28] + 8003876: 4b22 ldr r3, [pc, #136] ; (8003900 ) + 8003878: 685b ldr r3, [r3, #4] + 800387a: 61fb str r3, [r7, #28] /* Get SYSCLK source -------------------------------------------------------*/ switch (tmpreg & RCC_CFGR_SWS) - 800382c: 69fb ldr r3, [r7, #28] - 800382e: f003 030c and.w r3, r3, #12 - 8003832: 2b04 cmp r3, #4 - 8003834: d002 beq.n 800383c - 8003836: 2b08 cmp r3, #8 - 8003838: d003 beq.n 8003842 - 800383a: e02d b.n 8003898 + 800387c: 69fb ldr r3, [r7, #28] + 800387e: f003 030c and.w r3, r3, #12 + 8003882: 2b04 cmp r3, #4 + 8003884: d002 beq.n 800388c + 8003886: 2b08 cmp r3, #8 + 8003888: d003 beq.n 8003892 + 800388a: e02d b.n 80038e8 { case RCC_SYSCLKSOURCE_STATUS_HSE: /* HSE used as system clock */ { sysclockfreq = HSE_VALUE; - 800383c: 4b1d ldr r3, [pc, #116] ; (80038b4 ) - 800383e: 623b str r3, [r7, #32] + 800388c: 4b1d ldr r3, [pc, #116] ; (8003904 ) + 800388e: 623b str r3, [r7, #32] break; - 8003840: e02d b.n 800389e + 8003890: e02d b.n 80038ee } case RCC_SYSCLKSOURCE_STATUS_PLLCLK: /* PLL used as system clock */ { pllmul = aPLLMULFactorTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMULL) >> RCC_CFGR_PLLMULL_Pos]; - 8003842: 69fb ldr r3, [r7, #28] - 8003844: 0c9b lsrs r3, r3, #18 - 8003846: f003 030f and.w r3, r3, #15 - 800384a: f107 0228 add.w r2, r7, #40 ; 0x28 - 800384e: 4413 add r3, r2 - 8003850: f813 3c24 ldrb.w r3, [r3, #-36] - 8003854: 617b str r3, [r7, #20] + 8003892: 69fb ldr r3, [r7, #28] + 8003894: 0c9b lsrs r3, r3, #18 + 8003896: f003 030f and.w r3, r3, #15 + 800389a: f107 0228 add.w r2, r7, #40 ; 0x28 + 800389e: 4413 add r3, r2 + 80038a0: f813 3c24 ldrb.w r3, [r3, #-36] + 80038a4: 617b str r3, [r7, #20] if ((tmpreg & RCC_CFGR_PLLSRC) != RCC_PLLSOURCE_HSI_DIV2) - 8003856: 69fb ldr r3, [r7, #28] - 8003858: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 800385c: 2b00 cmp r3, #0 - 800385e: d013 beq.n 8003888 + 80038a6: 69fb ldr r3, [r7, #28] + 80038a8: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 80038ac: 2b00 cmp r3, #0 + 80038ae: d013 beq.n 80038d8 { #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]; - 8003860: 4b13 ldr r3, [pc, #76] ; (80038b0 ) - 8003862: 685b ldr r3, [r3, #4] - 8003864: 0c5b lsrs r3, r3, #17 - 8003866: f003 0301 and.w r3, r3, #1 - 800386a: f107 0228 add.w r2, r7, #40 ; 0x28 - 800386e: 4413 add r3, r2 - 8003870: f813 3c28 ldrb.w r3, [r3, #-40] - 8003874: 61bb str r3, [r7, #24] + 80038b0: 4b13 ldr r3, [pc, #76] ; (8003900 ) + 80038b2: 685b ldr r3, [r3, #4] + 80038b4: 0c5b lsrs r3, r3, #17 + 80038b6: f003 0301 and.w r3, r3, #1 + 80038ba: f107 0228 add.w r2, r7, #40 ; 0x28 + 80038be: 4413 add r3, r2 + 80038c0: f813 3c28 ldrb.w r3, [r3, #-40] + 80038c4: 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); - 8003876: 697b ldr r3, [r7, #20] - 8003878: 4a0e ldr r2, [pc, #56] ; (80038b4 ) - 800387a: fb02 f203 mul.w r2, r2, r3 - 800387e: 69bb ldr r3, [r7, #24] - 8003880: fbb2 f3f3 udiv r3, r2, r3 - 8003884: 627b str r3, [r7, #36] ; 0x24 - 8003886: e004 b.n 8003892 + 80038c6: 697b ldr r3, [r7, #20] + 80038c8: 4a0e ldr r2, [pc, #56] ; (8003904 ) + 80038ca: fb02 f203 mul.w r2, r2, r3 + 80038ce: 69bb ldr r3, [r7, #24] + 80038d0: fbb2 f3f3 udiv r3, r2, r3 + 80038d4: 627b str r3, [r7, #36] ; 0x24 + 80038d6: e004 b.n 80038e2 #endif /*RCC_CFGR2_PREDIV1SRC*/ } else { /* HSI used as PLL clock source : PLLCLK = HSI/2 * PLLMUL */ pllclk = (uint32_t)((HSI_VALUE >> 1) * pllmul); - 8003888: 697b ldr r3, [r7, #20] - 800388a: 4a0b ldr r2, [pc, #44] ; (80038b8 ) - 800388c: fb02 f303 mul.w r3, r2, r3 - 8003890: 627b str r3, [r7, #36] ; 0x24 + 80038d8: 697b ldr r3, [r7, #20] + 80038da: 4a0b ldr r2, [pc, #44] ; (8003908 ) + 80038dc: fb02 f303 mul.w r3, r2, r3 + 80038e0: 627b str r3, [r7, #36] ; 0x24 } sysclockfreq = pllclk; - 8003892: 6a7b ldr r3, [r7, #36] ; 0x24 - 8003894: 623b str r3, [r7, #32] + 80038e2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80038e4: 623b str r3, [r7, #32] break; - 8003896: e002 b.n 800389e + 80038e6: e002 b.n 80038ee } case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ default: /* HSI used as system clock */ { sysclockfreq = HSI_VALUE; - 8003898: 4b06 ldr r3, [pc, #24] ; (80038b4 ) - 800389a: 623b str r3, [r7, #32] + 80038e8: 4b06 ldr r3, [pc, #24] ; (8003904 ) + 80038ea: 623b str r3, [r7, #32] break; - 800389c: bf00 nop + 80038ec: bf00 nop } } return sysclockfreq; - 800389e: 6a3b ldr r3, [r7, #32] + 80038ee: 6a3b ldr r3, [r7, #32] } - 80038a0: 4618 mov r0, r3 - 80038a2: 3728 adds r7, #40 ; 0x28 - 80038a4: 46bd mov sp, r7 - 80038a6: bc90 pop {r4, r7} - 80038a8: 4770 bx lr - 80038aa: bf00 nop - 80038ac: 0800a3c0 .word 0x0800a3c0 - 80038b0: 40021000 .word 0x40021000 - 80038b4: 007a1200 .word 0x007a1200 - 80038b8: 003d0900 .word 0x003d0900 + 80038f0: 4618 mov r0, r3 + 80038f2: 3728 adds r7, #40 ; 0x28 + 80038f4: 46bd mov sp, r7 + 80038f6: bc90 pop {r4, r7} + 80038f8: 4770 bx lr + 80038fa: bf00 nop + 80038fc: 0800a6b8 .word 0x0800a6b8 + 8003900: 40021000 .word 0x40021000 + 8003904: 007a1200 .word 0x007a1200 + 8003908: 003d0900 .word 0x003d0900 -080038bc : +0800390c : * @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) { - 80038bc: b480 push {r7} - 80038be: af00 add r7, sp, #0 + 800390c: b480 push {r7} + 800390e: af00 add r7, sp, #0 return SystemCoreClock; - 80038c0: 4b02 ldr r3, [pc, #8] ; (80038cc ) - 80038c2: 681b ldr r3, [r3, #0] + 8003910: 4b02 ldr r3, [pc, #8] ; (800391c ) + 8003912: 681b ldr r3, [r3, #0] } - 80038c4: 4618 mov r0, r3 - 80038c6: 46bd mov sp, r7 - 80038c8: bc80 pop {r7} - 80038ca: 4770 bx lr - 80038cc: 20000000 .word 0x20000000 + 8003914: 4618 mov r0, r3 + 8003916: 46bd mov sp, r7 + 8003918: bc80 pop {r7} + 800391a: 4770 bx lr + 800391c: 20000000 .word 0x20000000 -080038d0 : +08003920 : * @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) { - 80038d0: b580 push {r7, lr} - 80038d2: af00 add r7, sp, #0 + 8003920: b580 push {r7, lr} + 8003922: 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]); - 80038d4: f7ff fff2 bl 80038bc - 80038d8: 4602 mov r2, r0 - 80038da: 4b05 ldr r3, [pc, #20] ; (80038f0 ) - 80038dc: 685b ldr r3, [r3, #4] - 80038de: 0a1b lsrs r3, r3, #8 - 80038e0: f003 0307 and.w r3, r3, #7 - 80038e4: 4903 ldr r1, [pc, #12] ; (80038f4 ) - 80038e6: 5ccb ldrb r3, [r1, r3] - 80038e8: fa22 f303 lsr.w r3, r2, r3 + 8003924: f7ff fff2 bl 800390c + 8003928: 4602 mov r2, r0 + 800392a: 4b05 ldr r3, [pc, #20] ; (8003940 ) + 800392c: 685b ldr r3, [r3, #4] + 800392e: 0a1b lsrs r3, r3, #8 + 8003930: f003 0307 and.w r3, r3, #7 + 8003934: 4903 ldr r1, [pc, #12] ; (8003944 ) + 8003936: 5ccb ldrb r3, [r1, r3] + 8003938: fa22 f303 lsr.w r3, r2, r3 } - 80038ec: 4618 mov r0, r3 - 80038ee: bd80 pop {r7, pc} - 80038f0: 40021000 .word 0x40021000 - 80038f4: 0800a4cc .word 0x0800a4cc + 800393c: 4618 mov r0, r3 + 800393e: bd80 pop {r7, pc} + 8003940: 40021000 .word 0x40021000 + 8003944: 0800a81c .word 0x0800a81c -080038f8 : +08003948 : * @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) { - 80038f8: b480 push {r7} - 80038fa: b085 sub sp, #20 - 80038fc: af00 add r7, sp, #0 - 80038fe: 6078 str r0, [r7, #4] + 8003948: b480 push {r7} + 800394a: b085 sub sp, #20 + 800394c: af00 add r7, sp, #0 + 800394e: 6078 str r0, [r7, #4] __IO uint32_t Delay = mdelay * (SystemCoreClock / 8U / 1000U); - 8003900: 4b0a ldr r3, [pc, #40] ; (800392c ) - 8003902: 681b ldr r3, [r3, #0] - 8003904: 4a0a ldr r2, [pc, #40] ; (8003930 ) - 8003906: fba2 2303 umull r2, r3, r2, r3 - 800390a: 0a5b lsrs r3, r3, #9 - 800390c: 687a ldr r2, [r7, #4] - 800390e: fb02 f303 mul.w r3, r2, r3 - 8003912: 60fb str r3, [r7, #12] + 8003950: 4b0a ldr r3, [pc, #40] ; (800397c ) + 8003952: 681b ldr r3, [r3, #0] + 8003954: 4a0a ldr r2, [pc, #40] ; (8003980 ) + 8003956: fba2 2303 umull r2, r3, r2, r3 + 800395a: 0a5b lsrs r3, r3, #9 + 800395c: 687a ldr r2, [r7, #4] + 800395e: fb02 f303 mul.w r3, r2, r3 + 8003962: 60fb str r3, [r7, #12] do { __NOP(); - 8003914: bf00 nop + 8003964: bf00 nop } while (Delay --); - 8003916: 68fb ldr r3, [r7, #12] - 8003918: 1e5a subs r2, r3, #1 - 800391a: 60fa str r2, [r7, #12] - 800391c: 2b00 cmp r3, #0 - 800391e: d1f9 bne.n 8003914 + 8003966: 68fb ldr r3, [r7, #12] + 8003968: 1e5a subs r2, r3, #1 + 800396a: 60fa str r2, [r7, #12] + 800396c: 2b00 cmp r3, #0 + 800396e: d1f9 bne.n 8003964 } - 8003920: bf00 nop - 8003922: bf00 nop - 8003924: 3714 adds r7, #20 - 8003926: 46bd mov sp, r7 - 8003928: bc80 pop {r7} - 800392a: 4770 bx lr - 800392c: 20000000 .word 0x20000000 - 8003930: 10624dd3 .word 0x10624dd3 + 8003970: bf00 nop + 8003972: bf00 nop + 8003974: 3714 adds r7, #20 + 8003976: 46bd mov sp, r7 + 8003978: bc80 pop {r7} + 800397a: 4770 bx lr + 800397c: 20000000 .word 0x20000000 + 8003980: 10624dd3 .word 0x10624dd3 -08003934 : +08003984 : * @param hspi pointer to a SPI_HandleTypeDef structure that contains * the configuration information for SPI module. * @retval HAL status */ HAL_StatusTypeDef HAL_SPI_Init(SPI_HandleTypeDef *hspi) { - 8003934: b580 push {r7, lr} - 8003936: b082 sub sp, #8 - 8003938: af00 add r7, sp, #0 - 800393a: 6078 str r0, [r7, #4] + 8003984: b580 push {r7, lr} + 8003986: b082 sub sp, #8 + 8003988: af00 add r7, sp, #0 + 800398a: 6078 str r0, [r7, #4] /* Check the SPI handle allocation */ if (hspi == NULL) - 800393c: 687b ldr r3, [r7, #4] - 800393e: 2b00 cmp r3, #0 - 8003940: d101 bne.n 8003946 + 800398c: 687b ldr r3, [r7, #4] + 800398e: 2b00 cmp r3, #0 + 8003990: d101 bne.n 8003996 { return HAL_ERROR; - 8003942: 2301 movs r3, #1 - 8003944: e076 b.n 8003a34 + 8003992: 2301 movs r3, #1 + 8003994: e076 b.n 8003a84 assert_param(IS_SPI_BAUDRATE_PRESCALER(hspi->Init.BaudRatePrescaler)); assert_param(IS_SPI_FIRST_BIT(hspi->Init.FirstBit)); /* TI mode is not supported on this device. TIMode parameter is mandatory equal to SPI_TIMODE_DISABLE */ assert_param(IS_SPI_TIMODE(hspi->Init.TIMode)); if (hspi->Init.TIMode == SPI_TIMODE_DISABLE) - 8003946: 687b ldr r3, [r7, #4] - 8003948: 6a5b ldr r3, [r3, #36] ; 0x24 - 800394a: 2b00 cmp r3, #0 - 800394c: d108 bne.n 8003960 + 8003996: 687b ldr r3, [r7, #4] + 8003998: 6a5b ldr r3, [r3, #36] ; 0x24 + 800399a: 2b00 cmp r3, #0 + 800399c: d108 bne.n 80039b0 { assert_param(IS_SPI_CPOL(hspi->Init.CLKPolarity)); assert_param(IS_SPI_CPHA(hspi->Init.CLKPhase)); if (hspi->Init.Mode == SPI_MODE_MASTER) - 800394e: 687b ldr r3, [r7, #4] - 8003950: 685b ldr r3, [r3, #4] - 8003952: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 8003956: d009 beq.n 800396c + 800399e: 687b ldr r3, [r7, #4] + 80039a0: 685b ldr r3, [r3, #4] + 80039a2: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 80039a6: d009 beq.n 80039bc assert_param(IS_SPI_BAUDRATE_PRESCALER(hspi->Init.BaudRatePrescaler)); } else { /* Baudrate prescaler not use in Motoraola Slave mode. force to default value */ hspi->Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_2; - 8003958: 687b ldr r3, [r7, #4] - 800395a: 2200 movs r2, #0 - 800395c: 61da str r2, [r3, #28] - 800395e: e005 b.n 800396c + 80039a8: 687b ldr r3, [r7, #4] + 80039aa: 2200 movs r2, #0 + 80039ac: 61da str r2, [r3, #28] + 80039ae: e005 b.n 80039bc else { assert_param(IS_SPI_BAUDRATE_PRESCALER(hspi->Init.BaudRatePrescaler)); /* Force polarity and phase to TI protocaol requirements */ hspi->Init.CLKPolarity = SPI_POLARITY_LOW; - 8003960: 687b ldr r3, [r7, #4] - 8003962: 2200 movs r2, #0 - 8003964: 611a str r2, [r3, #16] + 80039b0: 687b ldr r3, [r7, #4] + 80039b2: 2200 movs r2, #0 + 80039b4: 611a str r2, [r3, #16] hspi->Init.CLKPhase = SPI_PHASE_1EDGE; - 8003966: 687b ldr r3, [r7, #4] - 8003968: 2200 movs r2, #0 - 800396a: 615a str r2, [r3, #20] + 80039b6: 687b ldr r3, [r7, #4] + 80039b8: 2200 movs r2, #0 + 80039ba: 615a str r2, [r3, #20] if (hspi->Init.CRCCalculation == SPI_CRCCALCULATION_ENABLE) { assert_param(IS_SPI_CRC_POLYNOMIAL(hspi->Init.CRCPolynomial)); } #else hspi->Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; - 800396c: 687b ldr r3, [r7, #4] - 800396e: 2200 movs r2, #0 - 8003970: 629a str r2, [r3, #40] ; 0x28 + 80039bc: 687b ldr r3, [r7, #4] + 80039be: 2200 movs r2, #0 + 80039c0: 629a str r2, [r3, #40] ; 0x28 #endif /* USE_SPI_CRC */ if (hspi->State == HAL_SPI_STATE_RESET) - 8003972: 687b ldr r3, [r7, #4] - 8003974: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 - 8003978: b2db uxtb r3, r3 - 800397a: 2b00 cmp r3, #0 - 800397c: d106 bne.n 800398c + 80039c2: 687b ldr r3, [r7, #4] + 80039c4: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 + 80039c8: b2db uxtb r3, r3 + 80039ca: 2b00 cmp r3, #0 + 80039cc: d106 bne.n 80039dc { /* Allocate lock resource and initialize it */ hspi->Lock = HAL_UNLOCKED; - 800397e: 687b ldr r3, [r7, #4] - 8003980: 2200 movs r2, #0 - 8003982: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 80039ce: 687b ldr r3, [r7, #4] + 80039d0: 2200 movs r2, #0 + 80039d2: f883 2050 strb.w r2, [r3, #80] ; 0x50 /* Init the low level hardware : GPIO, CLOCK, NVIC... */ hspi->MspInitCallback(hspi); #else /* Init the low level hardware : GPIO, CLOCK, NVIC... */ HAL_SPI_MspInit(hspi); - 8003986: 6878 ldr r0, [r7, #4] - 8003988: f7fd fe8a bl 80016a0 + 80039d6: 6878 ldr r0, [r7, #4] + 80039d8: f7fd fea6 bl 8001728 #endif /* USE_HAL_SPI_REGISTER_CALLBACKS */ } hspi->State = HAL_SPI_STATE_BUSY; - 800398c: 687b ldr r3, [r7, #4] - 800398e: 2202 movs r2, #2 - 8003990: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 80039dc: 687b ldr r3, [r7, #4] + 80039de: 2202 movs r2, #2 + 80039e0: f883 2051 strb.w r2, [r3, #81] ; 0x51 /* Disable the selected SPI peripheral */ __HAL_SPI_DISABLE(hspi); - 8003994: 687b ldr r3, [r7, #4] - 8003996: 681b ldr r3, [r3, #0] - 8003998: 681a ldr r2, [r3, #0] - 800399a: 687b ldr r3, [r7, #4] - 800399c: 681b ldr r3, [r3, #0] - 800399e: f022 0240 bic.w r2, r2, #64 ; 0x40 - 80039a2: 601a str r2, [r3, #0] + 80039e4: 687b ldr r3, [r7, #4] + 80039e6: 681b ldr r3, [r3, #0] + 80039e8: 681a ldr r2, [r3, #0] + 80039ea: 687b ldr r3, [r7, #4] + 80039ec: 681b ldr r3, [r3, #0] + 80039ee: f022 0240 bic.w r2, r2, #64 ; 0x40 + 80039f2: 601a str r2, [r3, #0] /*----------------------- SPIx CR1 & CR2 Configuration ---------------------*/ /* Configure : SPI Mode, Communication Mode, Data size, Clock polarity and phase, NSS management, Communication speed, First bit and CRC calculation state */ WRITE_REG(hspi->Instance->CR1, ((hspi->Init.Mode & (SPI_CR1_MSTR | SPI_CR1_SSI)) | - 80039a4: 687b ldr r3, [r7, #4] - 80039a6: 685b ldr r3, [r3, #4] - 80039a8: f403 7282 and.w r2, r3, #260 ; 0x104 - 80039ac: 687b ldr r3, [r7, #4] - 80039ae: 689b ldr r3, [r3, #8] - 80039b0: f403 4304 and.w r3, r3, #33792 ; 0x8400 - 80039b4: 431a orrs r2, r3 - 80039b6: 687b ldr r3, [r7, #4] - 80039b8: 68db ldr r3, [r3, #12] - 80039ba: f403 6300 and.w r3, r3, #2048 ; 0x800 - 80039be: 431a orrs r2, r3 - 80039c0: 687b ldr r3, [r7, #4] - 80039c2: 691b ldr r3, [r3, #16] - 80039c4: f003 0302 and.w r3, r3, #2 - 80039c8: 431a orrs r2, r3 - 80039ca: 687b ldr r3, [r7, #4] - 80039cc: 695b ldr r3, [r3, #20] - 80039ce: f003 0301 and.w r3, r3, #1 - 80039d2: 431a orrs r2, r3 - 80039d4: 687b ldr r3, [r7, #4] - 80039d6: 699b ldr r3, [r3, #24] - 80039d8: f403 7300 and.w r3, r3, #512 ; 0x200 - 80039dc: 431a orrs r2, r3 - 80039de: 687b ldr r3, [r7, #4] - 80039e0: 69db ldr r3, [r3, #28] - 80039e2: f003 0338 and.w r3, r3, #56 ; 0x38 - 80039e6: 431a orrs r2, r3 - 80039e8: 687b ldr r3, [r7, #4] - 80039ea: 6a1b ldr r3, [r3, #32] - 80039ec: f003 0380 and.w r3, r3, #128 ; 0x80 - 80039f0: ea42 0103 orr.w r1, r2, r3 80039f4: 687b ldr r3, [r7, #4] - 80039f6: 6a9b ldr r3, [r3, #40] ; 0x28 - 80039f8: f403 5200 and.w r2, r3, #8192 ; 0x2000 + 80039f6: 685b ldr r3, [r3, #4] + 80039f8: f403 7282 and.w r2, r3, #260 ; 0x104 80039fc: 687b ldr r3, [r7, #4] - 80039fe: 681b ldr r3, [r3, #0] - 8003a00: 430a orrs r2, r1 - 8003a02: 601a str r2, [r3, #0] + 80039fe: 689b ldr r3, [r3, #8] + 8003a00: f403 4304 and.w r3, r3, #33792 ; 0x8400 + 8003a04: 431a orrs r2, r3 + 8003a06: 687b ldr r3, [r7, #4] + 8003a08: 68db ldr r3, [r3, #12] + 8003a0a: f403 6300 and.w r3, r3, #2048 ; 0x800 + 8003a0e: 431a orrs r2, r3 + 8003a10: 687b ldr r3, [r7, #4] + 8003a12: 691b ldr r3, [r3, #16] + 8003a14: f003 0302 and.w r3, r3, #2 + 8003a18: 431a orrs r2, r3 + 8003a1a: 687b ldr r3, [r7, #4] + 8003a1c: 695b ldr r3, [r3, #20] + 8003a1e: f003 0301 and.w r3, r3, #1 + 8003a22: 431a orrs r2, r3 + 8003a24: 687b ldr r3, [r7, #4] + 8003a26: 699b ldr r3, [r3, #24] + 8003a28: f403 7300 and.w r3, r3, #512 ; 0x200 + 8003a2c: 431a orrs r2, r3 + 8003a2e: 687b ldr r3, [r7, #4] + 8003a30: 69db ldr r3, [r3, #28] + 8003a32: f003 0338 and.w r3, r3, #56 ; 0x38 + 8003a36: 431a orrs r2, r3 + 8003a38: 687b ldr r3, [r7, #4] + 8003a3a: 6a1b ldr r3, [r3, #32] + 8003a3c: f003 0380 and.w r3, r3, #128 ; 0x80 + 8003a40: ea42 0103 orr.w r1, r2, r3 + 8003a44: 687b ldr r3, [r7, #4] + 8003a46: 6a9b ldr r3, [r3, #40] ; 0x28 + 8003a48: f403 5200 and.w r2, r3, #8192 ; 0x2000 + 8003a4c: 687b ldr r3, [r7, #4] + 8003a4e: 681b ldr r3, [r3, #0] + 8003a50: 430a orrs r2, r1 + 8003a52: 601a str r2, [r3, #0] (hspi->Init.BaudRatePrescaler & SPI_CR1_BR_Msk) | (hspi->Init.FirstBit & SPI_CR1_LSBFIRST) | (hspi->Init.CRCCalculation & SPI_CR1_CRCEN))); /* Configure : NSS management */ WRITE_REG(hspi->Instance->CR2, ((hspi->Init.NSS >> 16U) & SPI_CR2_SSOE)); - 8003a04: 687b ldr r3, [r7, #4] - 8003a06: 699b ldr r3, [r3, #24] - 8003a08: 0c1a lsrs r2, r3, #16 - 8003a0a: 687b ldr r3, [r7, #4] - 8003a0c: 681b ldr r3, [r3, #0] - 8003a0e: f002 0204 and.w r2, r2, #4 - 8003a12: 605a str r2, [r3, #4] + 8003a54: 687b ldr r3, [r7, #4] + 8003a56: 699b ldr r3, [r3, #24] + 8003a58: 0c1a lsrs r2, r3, #16 + 8003a5a: 687b ldr r3, [r7, #4] + 8003a5c: 681b ldr r3, [r3, #0] + 8003a5e: f002 0204 and.w r2, r2, #4 + 8003a62: 605a str r2, [r3, #4] } #endif /* USE_SPI_CRC */ #if defined(SPI_I2SCFGR_I2SMOD) /* Activate the SPI mode (Make sure that I2SMOD bit in I2SCFGR register is reset) */ CLEAR_BIT(hspi->Instance->I2SCFGR, SPI_I2SCFGR_I2SMOD); - 8003a14: 687b ldr r3, [r7, #4] - 8003a16: 681b ldr r3, [r3, #0] - 8003a18: 69da ldr r2, [r3, #28] - 8003a1a: 687b ldr r3, [r7, #4] - 8003a1c: 681b ldr r3, [r3, #0] - 8003a1e: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 8003a22: 61da str r2, [r3, #28] + 8003a64: 687b ldr r3, [r7, #4] + 8003a66: 681b ldr r3, [r3, #0] + 8003a68: 69da ldr r2, [r3, #28] + 8003a6a: 687b ldr r3, [r7, #4] + 8003a6c: 681b ldr r3, [r3, #0] + 8003a6e: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 8003a72: 61da str r2, [r3, #28] #endif /* SPI_I2SCFGR_I2SMOD */ hspi->ErrorCode = HAL_SPI_ERROR_NONE; - 8003a24: 687b ldr r3, [r7, #4] - 8003a26: 2200 movs r2, #0 - 8003a28: 655a str r2, [r3, #84] ; 0x54 + 8003a74: 687b ldr r3, [r7, #4] + 8003a76: 2200 movs r2, #0 + 8003a78: 655a str r2, [r3, #84] ; 0x54 hspi->State = HAL_SPI_STATE_READY; - 8003a2a: 687b ldr r3, [r7, #4] - 8003a2c: 2201 movs r2, #1 - 8003a2e: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003a7a: 687b ldr r3, [r7, #4] + 8003a7c: 2201 movs r2, #1 + 8003a7e: f883 2051 strb.w r2, [r3, #81] ; 0x51 return HAL_OK; - 8003a32: 2300 movs r3, #0 + 8003a82: 2300 movs r3, #0 } - 8003a34: 4618 mov r0, r3 - 8003a36: 3708 adds r7, #8 - 8003a38: 46bd mov sp, r7 - 8003a3a: bd80 pop {r7, pc} + 8003a84: 4618 mov r0, r3 + 8003a86: 3708 adds r7, #8 + 8003a88: 46bd mov sp, r7 + 8003a8a: bd80 pop {r7, pc} -08003a3c : +08003a8c : * @param Size amount of data to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_SPI_Transmit(SPI_HandleTypeDef *hspi, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 8003a3c: b580 push {r7, lr} - 8003a3e: b088 sub sp, #32 - 8003a40: af00 add r7, sp, #0 - 8003a42: 60f8 str r0, [r7, #12] - 8003a44: 60b9 str r1, [r7, #8] - 8003a46: 603b str r3, [r7, #0] - 8003a48: 4613 mov r3, r2 - 8003a4a: 80fb strh r3, [r7, #6] + 8003a8c: b580 push {r7, lr} + 8003a8e: b088 sub sp, #32 + 8003a90: af00 add r7, sp, #0 + 8003a92: 60f8 str r0, [r7, #12] + 8003a94: 60b9 str r1, [r7, #8] + 8003a96: 603b str r3, [r7, #0] + 8003a98: 4613 mov r3, r2 + 8003a9a: 80fb strh r3, [r7, #6] uint32_t tickstart; HAL_StatusTypeDef errorcode = HAL_OK; - 8003a4c: 2300 movs r3, #0 - 8003a4e: 77fb strb r3, [r7, #31] + 8003a9c: 2300 movs r3, #0 + 8003a9e: 77fb strb r3, [r7, #31] /* Check Direction parameter */ assert_param(IS_SPI_DIRECTION_2LINES_OR_1LINE(hspi->Init.Direction)); /* Process Locked */ __HAL_LOCK(hspi); - 8003a50: 68fb ldr r3, [r7, #12] - 8003a52: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 - 8003a56: 2b01 cmp r3, #1 - 8003a58: d101 bne.n 8003a5e - 8003a5a: 2302 movs r3, #2 - 8003a5c: e126 b.n 8003cac - 8003a5e: 68fb ldr r3, [r7, #12] - 8003a60: 2201 movs r2, #1 - 8003a62: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8003aa0: 68fb ldr r3, [r7, #12] + 8003aa2: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 + 8003aa6: 2b01 cmp r3, #1 + 8003aa8: d101 bne.n 8003aae + 8003aaa: 2302 movs r3, #2 + 8003aac: e126 b.n 8003cfc + 8003aae: 68fb ldr r3, [r7, #12] + 8003ab0: 2201 movs r2, #1 + 8003ab2: f883 2050 strb.w r2, [r3, #80] ; 0x50 /* Init tickstart for timeout management*/ tickstart = HAL_GetTick(); - 8003a66: f7fe f85f bl 8001b28 - 8003a6a: 61b8 str r0, [r7, #24] + 8003ab6: f7fe f85f bl 8001b78 + 8003aba: 61b8 str r0, [r7, #24] initial_TxXferCount = Size; - 8003a6c: 88fb ldrh r3, [r7, #6] - 8003a6e: 82fb strh r3, [r7, #22] + 8003abc: 88fb ldrh r3, [r7, #6] + 8003abe: 82fb strh r3, [r7, #22] if (hspi->State != HAL_SPI_STATE_READY) - 8003a70: 68fb ldr r3, [r7, #12] - 8003a72: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 - 8003a76: b2db uxtb r3, r3 - 8003a78: 2b01 cmp r3, #1 - 8003a7a: d002 beq.n 8003a82 + 8003ac0: 68fb ldr r3, [r7, #12] + 8003ac2: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 + 8003ac6: b2db uxtb r3, r3 + 8003ac8: 2b01 cmp r3, #1 + 8003aca: d002 beq.n 8003ad2 { errorcode = HAL_BUSY; - 8003a7c: 2302 movs r3, #2 - 8003a7e: 77fb strb r3, [r7, #31] + 8003acc: 2302 movs r3, #2 + 8003ace: 77fb strb r3, [r7, #31] goto error; - 8003a80: e10b b.n 8003c9a + 8003ad0: e10b b.n 8003cea } if ((pData == NULL) || (Size == 0U)) - 8003a82: 68bb ldr r3, [r7, #8] - 8003a84: 2b00 cmp r3, #0 - 8003a86: d002 beq.n 8003a8e - 8003a88: 88fb ldrh r3, [r7, #6] - 8003a8a: 2b00 cmp r3, #0 - 8003a8c: d102 bne.n 8003a94 + 8003ad2: 68bb ldr r3, [r7, #8] + 8003ad4: 2b00 cmp r3, #0 + 8003ad6: d002 beq.n 8003ade + 8003ad8: 88fb ldrh r3, [r7, #6] + 8003ada: 2b00 cmp r3, #0 + 8003adc: d102 bne.n 8003ae4 { errorcode = HAL_ERROR; - 8003a8e: 2301 movs r3, #1 - 8003a90: 77fb strb r3, [r7, #31] + 8003ade: 2301 movs r3, #1 + 8003ae0: 77fb strb r3, [r7, #31] goto error; - 8003a92: e102 b.n 8003c9a + 8003ae2: e102 b.n 8003cea } /* Set the transaction information */ hspi->State = HAL_SPI_STATE_BUSY_TX; - 8003a94: 68fb ldr r3, [r7, #12] - 8003a96: 2203 movs r2, #3 - 8003a98: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003ae4: 68fb ldr r3, [r7, #12] + 8003ae6: 2203 movs r2, #3 + 8003ae8: f883 2051 strb.w r2, [r3, #81] ; 0x51 hspi->ErrorCode = HAL_SPI_ERROR_NONE; - 8003a9c: 68fb ldr r3, [r7, #12] - 8003a9e: 2200 movs r2, #0 - 8003aa0: 655a str r2, [r3, #84] ; 0x54 + 8003aec: 68fb ldr r3, [r7, #12] + 8003aee: 2200 movs r2, #0 + 8003af0: 655a str r2, [r3, #84] ; 0x54 hspi->pTxBuffPtr = (uint8_t *)pData; - 8003aa2: 68fb ldr r3, [r7, #12] - 8003aa4: 68ba ldr r2, [r7, #8] - 8003aa6: 631a str r2, [r3, #48] ; 0x30 + 8003af2: 68fb ldr r3, [r7, #12] + 8003af4: 68ba ldr r2, [r7, #8] + 8003af6: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferSize = Size; - 8003aa8: 68fb ldr r3, [r7, #12] - 8003aaa: 88fa ldrh r2, [r7, #6] - 8003aac: 869a strh r2, [r3, #52] ; 0x34 + 8003af8: 68fb ldr r3, [r7, #12] + 8003afa: 88fa ldrh r2, [r7, #6] + 8003afc: 869a strh r2, [r3, #52] ; 0x34 hspi->TxXferCount = Size; - 8003aae: 68fb ldr r3, [r7, #12] - 8003ab0: 88fa ldrh r2, [r7, #6] - 8003ab2: 86da strh r2, [r3, #54] ; 0x36 + 8003afe: 68fb ldr r3, [r7, #12] + 8003b00: 88fa ldrh r2, [r7, #6] + 8003b02: 86da strh r2, [r3, #54] ; 0x36 /*Init field not used in handle to zero */ hspi->pRxBuffPtr = (uint8_t *)NULL; - 8003ab4: 68fb ldr r3, [r7, #12] - 8003ab6: 2200 movs r2, #0 - 8003ab8: 639a str r2, [r3, #56] ; 0x38 + 8003b04: 68fb ldr r3, [r7, #12] + 8003b06: 2200 movs r2, #0 + 8003b08: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferSize = 0U; - 8003aba: 68fb ldr r3, [r7, #12] - 8003abc: 2200 movs r2, #0 - 8003abe: 879a strh r2, [r3, #60] ; 0x3c + 8003b0a: 68fb ldr r3, [r7, #12] + 8003b0c: 2200 movs r2, #0 + 8003b0e: 879a strh r2, [r3, #60] ; 0x3c hspi->RxXferCount = 0U; - 8003ac0: 68fb ldr r3, [r7, #12] - 8003ac2: 2200 movs r2, #0 - 8003ac4: 87da strh r2, [r3, #62] ; 0x3e + 8003b10: 68fb ldr r3, [r7, #12] + 8003b12: 2200 movs r2, #0 + 8003b14: 87da strh r2, [r3, #62] ; 0x3e hspi->TxISR = NULL; - 8003ac6: 68fb ldr r3, [r7, #12] - 8003ac8: 2200 movs r2, #0 - 8003aca: 645a str r2, [r3, #68] ; 0x44 + 8003b16: 68fb ldr r3, [r7, #12] + 8003b18: 2200 movs r2, #0 + 8003b1a: 645a str r2, [r3, #68] ; 0x44 hspi->RxISR = NULL; - 8003acc: 68fb ldr r3, [r7, #12] - 8003ace: 2200 movs r2, #0 - 8003ad0: 641a str r2, [r3, #64] ; 0x40 + 8003b1c: 68fb ldr r3, [r7, #12] + 8003b1e: 2200 movs r2, #0 + 8003b20: 641a str r2, [r3, #64] ; 0x40 /* Configure communication direction : 1Line */ if (hspi->Init.Direction == SPI_DIRECTION_1LINE) - 8003ad2: 68fb ldr r3, [r7, #12] - 8003ad4: 689b ldr r3, [r3, #8] - 8003ad6: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 8003ada: d10f bne.n 8003afc + 8003b22: 68fb ldr r3, [r7, #12] + 8003b24: 689b ldr r3, [r3, #8] + 8003b26: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 8003b2a: d10f bne.n 8003b4c { /* Disable SPI Peripheral before set 1Line direction (BIDIOE bit) */ __HAL_SPI_DISABLE(hspi); - 8003adc: 68fb ldr r3, [r7, #12] - 8003ade: 681b ldr r3, [r3, #0] - 8003ae0: 681a ldr r2, [r3, #0] - 8003ae2: 68fb ldr r3, [r7, #12] - 8003ae4: 681b ldr r3, [r3, #0] - 8003ae6: f022 0240 bic.w r2, r2, #64 ; 0x40 - 8003aea: 601a str r2, [r3, #0] + 8003b2c: 68fb ldr r3, [r7, #12] + 8003b2e: 681b ldr r3, [r3, #0] + 8003b30: 681a ldr r2, [r3, #0] + 8003b32: 68fb ldr r3, [r7, #12] + 8003b34: 681b ldr r3, [r3, #0] + 8003b36: f022 0240 bic.w r2, r2, #64 ; 0x40 + 8003b3a: 601a str r2, [r3, #0] SPI_1LINE_TX(hspi); - 8003aec: 68fb ldr r3, [r7, #12] - 8003aee: 681b ldr r3, [r3, #0] - 8003af0: 681a ldr r2, [r3, #0] - 8003af2: 68fb ldr r3, [r7, #12] - 8003af4: 681b ldr r3, [r3, #0] - 8003af6: f442 4280 orr.w r2, r2, #16384 ; 0x4000 - 8003afa: 601a str r2, [r3, #0] + 8003b3c: 68fb ldr r3, [r7, #12] + 8003b3e: 681b ldr r3, [r3, #0] + 8003b40: 681a ldr r2, [r3, #0] + 8003b42: 68fb ldr r3, [r7, #12] + 8003b44: 681b ldr r3, [r3, #0] + 8003b46: f442 4280 orr.w r2, r2, #16384 ; 0x4000 + 8003b4a: 601a str r2, [r3, #0] SPI_RESET_CRC(hspi); } #endif /* USE_SPI_CRC */ /* Check if the SPI is already enabled */ if ((hspi->Instance->CR1 & SPI_CR1_SPE) != SPI_CR1_SPE) - 8003afc: 68fb ldr r3, [r7, #12] - 8003afe: 681b ldr r3, [r3, #0] - 8003b00: 681b ldr r3, [r3, #0] - 8003b02: f003 0340 and.w r3, r3, #64 ; 0x40 - 8003b06: 2b40 cmp r3, #64 ; 0x40 - 8003b08: d007 beq.n 8003b1a + 8003b4c: 68fb ldr r3, [r7, #12] + 8003b4e: 681b ldr r3, [r3, #0] + 8003b50: 681b ldr r3, [r3, #0] + 8003b52: f003 0340 and.w r3, r3, #64 ; 0x40 + 8003b56: 2b40 cmp r3, #64 ; 0x40 + 8003b58: d007 beq.n 8003b6a { /* Enable SPI peripheral */ __HAL_SPI_ENABLE(hspi); - 8003b0a: 68fb ldr r3, [r7, #12] - 8003b0c: 681b ldr r3, [r3, #0] - 8003b0e: 681a ldr r2, [r3, #0] - 8003b10: 68fb ldr r3, [r7, #12] - 8003b12: 681b ldr r3, [r3, #0] - 8003b14: f042 0240 orr.w r2, r2, #64 ; 0x40 - 8003b18: 601a str r2, [r3, #0] + 8003b5a: 68fb ldr r3, [r7, #12] + 8003b5c: 681b ldr r3, [r3, #0] + 8003b5e: 681a ldr r2, [r3, #0] + 8003b60: 68fb ldr r3, [r7, #12] + 8003b62: 681b ldr r3, [r3, #0] + 8003b64: f042 0240 orr.w r2, r2, #64 ; 0x40 + 8003b68: 601a str r2, [r3, #0] } /* Transmit data in 16 Bit mode */ if (hspi->Init.DataSize == SPI_DATASIZE_16BIT) - 8003b1a: 68fb ldr r3, [r7, #12] - 8003b1c: 68db ldr r3, [r3, #12] - 8003b1e: f5b3 6f00 cmp.w r3, #2048 ; 0x800 - 8003b22: d14b bne.n 8003bbc + 8003b6a: 68fb ldr r3, [r7, #12] + 8003b6c: 68db ldr r3, [r3, #12] + 8003b6e: f5b3 6f00 cmp.w r3, #2048 ; 0x800 + 8003b72: d14b bne.n 8003c0c { if ((hspi->Init.Mode == SPI_MODE_SLAVE) || (initial_TxXferCount == 0x01U)) - 8003b24: 68fb ldr r3, [r7, #12] - 8003b26: 685b ldr r3, [r3, #4] - 8003b28: 2b00 cmp r3, #0 - 8003b2a: d002 beq.n 8003b32 - 8003b2c: 8afb ldrh r3, [r7, #22] - 8003b2e: 2b01 cmp r3, #1 - 8003b30: d13e bne.n 8003bb0 + 8003b74: 68fb ldr r3, [r7, #12] + 8003b76: 685b ldr r3, [r3, #4] + 8003b78: 2b00 cmp r3, #0 + 8003b7a: d002 beq.n 8003b82 + 8003b7c: 8afb ldrh r3, [r7, #22] + 8003b7e: 2b01 cmp r3, #1 + 8003b80: d13e bne.n 8003c00 { hspi->Instance->DR = *((uint16_t *)hspi->pTxBuffPtr); - 8003b32: 68fb ldr r3, [r7, #12] - 8003b34: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003b36: 881a ldrh r2, [r3, #0] - 8003b38: 68fb ldr r3, [r7, #12] - 8003b3a: 681b ldr r3, [r3, #0] - 8003b3c: 60da str r2, [r3, #12] + 8003b82: 68fb ldr r3, [r7, #12] + 8003b84: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003b86: 881a ldrh r2, [r3, #0] + 8003b88: 68fb ldr r3, [r7, #12] + 8003b8a: 681b ldr r3, [r3, #0] + 8003b8c: 60da str r2, [r3, #12] hspi->pTxBuffPtr += sizeof(uint16_t); - 8003b3e: 68fb ldr r3, [r7, #12] - 8003b40: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003b42: 1c9a adds r2, r3, #2 - 8003b44: 68fb ldr r3, [r7, #12] - 8003b46: 631a str r2, [r3, #48] ; 0x30 + 8003b8e: 68fb ldr r3, [r7, #12] + 8003b90: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003b92: 1c9a adds r2, r3, #2 + 8003b94: 68fb ldr r3, [r7, #12] + 8003b96: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8003b48: 68fb ldr r3, [r7, #12] - 8003b4a: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003b4c: b29b uxth r3, r3 - 8003b4e: 3b01 subs r3, #1 - 8003b50: b29a uxth r2, r3 - 8003b52: 68fb ldr r3, [r7, #12] - 8003b54: 86da strh r2, [r3, #54] ; 0x36 + 8003b98: 68fb ldr r3, [r7, #12] + 8003b9a: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003b9c: b29b uxth r3, r3 + 8003b9e: 3b01 subs r3, #1 + 8003ba0: b29a uxth r2, r3 + 8003ba2: 68fb ldr r3, [r7, #12] + 8003ba4: 86da strh r2, [r3, #54] ; 0x36 } /* Transmit data in 16 Bit mode */ while (hspi->TxXferCount > 0U) - 8003b56: e02b b.n 8003bb0 + 8003ba6: e02b b.n 8003c00 { /* Wait until TXE flag is set to send data */ if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) - 8003b58: 68fb ldr r3, [r7, #12] - 8003b5a: 681b ldr r3, [r3, #0] - 8003b5c: 689b ldr r3, [r3, #8] - 8003b5e: f003 0302 and.w r3, r3, #2 - 8003b62: 2b02 cmp r3, #2 - 8003b64: d112 bne.n 8003b8c + 8003ba8: 68fb ldr r3, [r7, #12] + 8003baa: 681b ldr r3, [r3, #0] + 8003bac: 689b ldr r3, [r3, #8] + 8003bae: f003 0302 and.w r3, r3, #2 + 8003bb2: 2b02 cmp r3, #2 + 8003bb4: d112 bne.n 8003bdc { hspi->Instance->DR = *((uint16_t *)hspi->pTxBuffPtr); - 8003b66: 68fb ldr r3, [r7, #12] - 8003b68: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003b6a: 881a ldrh r2, [r3, #0] - 8003b6c: 68fb ldr r3, [r7, #12] - 8003b6e: 681b ldr r3, [r3, #0] - 8003b70: 60da str r2, [r3, #12] + 8003bb6: 68fb ldr r3, [r7, #12] + 8003bb8: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003bba: 881a ldrh r2, [r3, #0] + 8003bbc: 68fb ldr r3, [r7, #12] + 8003bbe: 681b ldr r3, [r3, #0] + 8003bc0: 60da str r2, [r3, #12] hspi->pTxBuffPtr += sizeof(uint16_t); - 8003b72: 68fb ldr r3, [r7, #12] - 8003b74: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003b76: 1c9a adds r2, r3, #2 - 8003b78: 68fb ldr r3, [r7, #12] - 8003b7a: 631a str r2, [r3, #48] ; 0x30 + 8003bc2: 68fb ldr r3, [r7, #12] + 8003bc4: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003bc6: 1c9a adds r2, r3, #2 + 8003bc8: 68fb ldr r3, [r7, #12] + 8003bca: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8003b7c: 68fb ldr r3, [r7, #12] - 8003b7e: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003b80: b29b uxth r3, r3 - 8003b82: 3b01 subs r3, #1 - 8003b84: b29a uxth r2, r3 - 8003b86: 68fb ldr r3, [r7, #12] - 8003b88: 86da strh r2, [r3, #54] ; 0x36 - 8003b8a: e011 b.n 8003bb0 + 8003bcc: 68fb ldr r3, [r7, #12] + 8003bce: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003bd0: b29b uxth r3, r3 + 8003bd2: 3b01 subs r3, #1 + 8003bd4: b29a uxth r2, r3 + 8003bd6: 68fb ldr r3, [r7, #12] + 8003bd8: 86da strh r2, [r3, #54] ; 0x36 + 8003bda: e011 b.n 8003c00 } else { /* Timeout management */ if ((((HAL_GetTick() - tickstart) >= Timeout) && (Timeout != HAL_MAX_DELAY)) || (Timeout == 0U)) - 8003b8c: f7fd ffcc bl 8001b28 - 8003b90: 4602 mov r2, r0 - 8003b92: 69bb ldr r3, [r7, #24] - 8003b94: 1ad3 subs r3, r2, r3 - 8003b96: 683a ldr r2, [r7, #0] - 8003b98: 429a cmp r2, r3 - 8003b9a: d803 bhi.n 8003ba4 - 8003b9c: 683b ldr r3, [r7, #0] - 8003b9e: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8003ba2: d102 bne.n 8003baa - 8003ba4: 683b ldr r3, [r7, #0] - 8003ba6: 2b00 cmp r3, #0 - 8003ba8: d102 bne.n 8003bb0 + 8003bdc: f7fd ffcc bl 8001b78 + 8003be0: 4602 mov r2, r0 + 8003be2: 69bb ldr r3, [r7, #24] + 8003be4: 1ad3 subs r3, r2, r3 + 8003be6: 683a ldr r2, [r7, #0] + 8003be8: 429a cmp r2, r3 + 8003bea: d803 bhi.n 8003bf4 + 8003bec: 683b ldr r3, [r7, #0] + 8003bee: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8003bf2: d102 bne.n 8003bfa + 8003bf4: 683b ldr r3, [r7, #0] + 8003bf6: 2b00 cmp r3, #0 + 8003bf8: d102 bne.n 8003c00 { errorcode = HAL_TIMEOUT; - 8003baa: 2303 movs r3, #3 - 8003bac: 77fb strb r3, [r7, #31] + 8003bfa: 2303 movs r3, #3 + 8003bfc: 77fb strb r3, [r7, #31] goto error; - 8003bae: e074 b.n 8003c9a + 8003bfe: e074 b.n 8003cea while (hspi->TxXferCount > 0U) - 8003bb0: 68fb ldr r3, [r7, #12] - 8003bb2: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003bb4: b29b uxth r3, r3 - 8003bb6: 2b00 cmp r3, #0 - 8003bb8: d1ce bne.n 8003b58 - 8003bba: e04c b.n 8003c56 + 8003c00: 68fb ldr r3, [r7, #12] + 8003c02: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003c04: b29b uxth r3, r3 + 8003c06: 2b00 cmp r3, #0 + 8003c08: d1ce bne.n 8003ba8 + 8003c0a: e04c b.n 8003ca6 } } /* Transmit data in 8 Bit mode */ else { if ((hspi->Init.Mode == SPI_MODE_SLAVE) || (initial_TxXferCount == 0x01U)) - 8003bbc: 68fb ldr r3, [r7, #12] - 8003bbe: 685b ldr r3, [r3, #4] - 8003bc0: 2b00 cmp r3, #0 - 8003bc2: d002 beq.n 8003bca - 8003bc4: 8afb ldrh r3, [r7, #22] - 8003bc6: 2b01 cmp r3, #1 - 8003bc8: d140 bne.n 8003c4c + 8003c0c: 68fb ldr r3, [r7, #12] + 8003c0e: 685b ldr r3, [r3, #4] + 8003c10: 2b00 cmp r3, #0 + 8003c12: d002 beq.n 8003c1a + 8003c14: 8afb ldrh r3, [r7, #22] + 8003c16: 2b01 cmp r3, #1 + 8003c18: d140 bne.n 8003c9c { *((__IO uint8_t *)&hspi->Instance->DR) = (*hspi->pTxBuffPtr); - 8003bca: 68fb ldr r3, [r7, #12] - 8003bcc: 6b1a ldr r2, [r3, #48] ; 0x30 - 8003bce: 68fb ldr r3, [r7, #12] - 8003bd0: 681b ldr r3, [r3, #0] - 8003bd2: 330c adds r3, #12 - 8003bd4: 7812 ldrb r2, [r2, #0] - 8003bd6: 701a strb r2, [r3, #0] + 8003c1a: 68fb ldr r3, [r7, #12] + 8003c1c: 6b1a ldr r2, [r3, #48] ; 0x30 + 8003c1e: 68fb ldr r3, [r7, #12] + 8003c20: 681b ldr r3, [r3, #0] + 8003c22: 330c adds r3, #12 + 8003c24: 7812 ldrb r2, [r2, #0] + 8003c26: 701a strb r2, [r3, #0] hspi->pTxBuffPtr += sizeof(uint8_t); - 8003bd8: 68fb ldr r3, [r7, #12] - 8003bda: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003bdc: 1c5a adds r2, r3, #1 - 8003bde: 68fb ldr r3, [r7, #12] - 8003be0: 631a str r2, [r3, #48] ; 0x30 + 8003c28: 68fb ldr r3, [r7, #12] + 8003c2a: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003c2c: 1c5a adds r2, r3, #1 + 8003c2e: 68fb ldr r3, [r7, #12] + 8003c30: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8003be2: 68fb ldr r3, [r7, #12] - 8003be4: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003be6: b29b uxth r3, r3 - 8003be8: 3b01 subs r3, #1 - 8003bea: b29a uxth r2, r3 - 8003bec: 68fb ldr r3, [r7, #12] - 8003bee: 86da strh r2, [r3, #54] ; 0x36 + 8003c32: 68fb ldr r3, [r7, #12] + 8003c34: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003c36: b29b uxth r3, r3 + 8003c38: 3b01 subs r3, #1 + 8003c3a: b29a uxth r2, r3 + 8003c3c: 68fb ldr r3, [r7, #12] + 8003c3e: 86da strh r2, [r3, #54] ; 0x36 } while (hspi->TxXferCount > 0U) - 8003bf0: e02c b.n 8003c4c + 8003c40: e02c b.n 8003c9c { /* Wait until TXE flag is set to send data */ if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) - 8003bf2: 68fb ldr r3, [r7, #12] - 8003bf4: 681b ldr r3, [r3, #0] - 8003bf6: 689b ldr r3, [r3, #8] - 8003bf8: f003 0302 and.w r3, r3, #2 - 8003bfc: 2b02 cmp r3, #2 - 8003bfe: d113 bne.n 8003c28 + 8003c42: 68fb ldr r3, [r7, #12] + 8003c44: 681b ldr r3, [r3, #0] + 8003c46: 689b ldr r3, [r3, #8] + 8003c48: f003 0302 and.w r3, r3, #2 + 8003c4c: 2b02 cmp r3, #2 + 8003c4e: d113 bne.n 8003c78 { *((__IO uint8_t *)&hspi->Instance->DR) = (*hspi->pTxBuffPtr); - 8003c00: 68fb ldr r3, [r7, #12] - 8003c02: 6b1a ldr r2, [r3, #48] ; 0x30 - 8003c04: 68fb ldr r3, [r7, #12] - 8003c06: 681b ldr r3, [r3, #0] - 8003c08: 330c adds r3, #12 - 8003c0a: 7812 ldrb r2, [r2, #0] - 8003c0c: 701a strb r2, [r3, #0] + 8003c50: 68fb ldr r3, [r7, #12] + 8003c52: 6b1a ldr r2, [r3, #48] ; 0x30 + 8003c54: 68fb ldr r3, [r7, #12] + 8003c56: 681b ldr r3, [r3, #0] + 8003c58: 330c adds r3, #12 + 8003c5a: 7812 ldrb r2, [r2, #0] + 8003c5c: 701a strb r2, [r3, #0] hspi->pTxBuffPtr += sizeof(uint8_t); - 8003c0e: 68fb ldr r3, [r7, #12] - 8003c10: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003c12: 1c5a adds r2, r3, #1 - 8003c14: 68fb ldr r3, [r7, #12] - 8003c16: 631a str r2, [r3, #48] ; 0x30 + 8003c5e: 68fb ldr r3, [r7, #12] + 8003c60: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003c62: 1c5a adds r2, r3, #1 + 8003c64: 68fb ldr r3, [r7, #12] + 8003c66: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8003c18: 68fb ldr r3, [r7, #12] - 8003c1a: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003c1c: b29b uxth r3, r3 - 8003c1e: 3b01 subs r3, #1 - 8003c20: b29a uxth r2, r3 - 8003c22: 68fb ldr r3, [r7, #12] - 8003c24: 86da strh r2, [r3, #54] ; 0x36 - 8003c26: e011 b.n 8003c4c + 8003c68: 68fb ldr r3, [r7, #12] + 8003c6a: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003c6c: b29b uxth r3, r3 + 8003c6e: 3b01 subs r3, #1 + 8003c70: b29a uxth r2, r3 + 8003c72: 68fb ldr r3, [r7, #12] + 8003c74: 86da strh r2, [r3, #54] ; 0x36 + 8003c76: e011 b.n 8003c9c } else { /* Timeout management */ if ((((HAL_GetTick() - tickstart) >= Timeout) && (Timeout != HAL_MAX_DELAY)) || (Timeout == 0U)) - 8003c28: f7fd ff7e bl 8001b28 - 8003c2c: 4602 mov r2, r0 - 8003c2e: 69bb ldr r3, [r7, #24] - 8003c30: 1ad3 subs r3, r2, r3 - 8003c32: 683a ldr r2, [r7, #0] - 8003c34: 429a cmp r2, r3 - 8003c36: d803 bhi.n 8003c40 - 8003c38: 683b ldr r3, [r7, #0] - 8003c3a: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8003c3e: d102 bne.n 8003c46 - 8003c40: 683b ldr r3, [r7, #0] - 8003c42: 2b00 cmp r3, #0 - 8003c44: d102 bne.n 8003c4c + 8003c78: f7fd ff7e bl 8001b78 + 8003c7c: 4602 mov r2, r0 + 8003c7e: 69bb ldr r3, [r7, #24] + 8003c80: 1ad3 subs r3, r2, r3 + 8003c82: 683a ldr r2, [r7, #0] + 8003c84: 429a cmp r2, r3 + 8003c86: d803 bhi.n 8003c90 + 8003c88: 683b ldr r3, [r7, #0] + 8003c8a: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8003c8e: d102 bne.n 8003c96 + 8003c90: 683b ldr r3, [r7, #0] + 8003c92: 2b00 cmp r3, #0 + 8003c94: d102 bne.n 8003c9c { errorcode = HAL_TIMEOUT; - 8003c46: 2303 movs r3, #3 - 8003c48: 77fb strb r3, [r7, #31] + 8003c96: 2303 movs r3, #3 + 8003c98: 77fb strb r3, [r7, #31] goto error; - 8003c4a: e026 b.n 8003c9a + 8003c9a: e026 b.n 8003cea while (hspi->TxXferCount > 0U) - 8003c4c: 68fb ldr r3, [r7, #12] - 8003c4e: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003c50: b29b uxth r3, r3 - 8003c52: 2b00 cmp r3, #0 - 8003c54: d1cd bne.n 8003bf2 + 8003c9c: 68fb ldr r3, [r7, #12] + 8003c9e: 8edb ldrh r3, [r3, #54] ; 0x36 + 8003ca0: b29b uxth r3, r3 + 8003ca2: 2b00 cmp r3, #0 + 8003ca4: d1cd bne.n 8003c42 SET_BIT(hspi->Instance->CR1, SPI_CR1_CRCNEXT); } #endif /* USE_SPI_CRC */ /* Check the end of the transaction */ if (SPI_EndRxTxTransaction(hspi, Timeout, tickstart) != HAL_OK) - 8003c56: 69ba ldr r2, [r7, #24] - 8003c58: 6839 ldr r1, [r7, #0] - 8003c5a: 68f8 ldr r0, [r7, #12] - 8003c5c: f000 fbb8 bl 80043d0 - 8003c60: 4603 mov r3, r0 - 8003c62: 2b00 cmp r3, #0 - 8003c64: d002 beq.n 8003c6c + 8003ca6: 69ba ldr r2, [r7, #24] + 8003ca8: 6839 ldr r1, [r7, #0] + 8003caa: 68f8 ldr r0, [r7, #12] + 8003cac: f000 fbb8 bl 8004420 + 8003cb0: 4603 mov r3, r0 + 8003cb2: 2b00 cmp r3, #0 + 8003cb4: d002 beq.n 8003cbc { hspi->ErrorCode = HAL_SPI_ERROR_FLAG; - 8003c66: 68fb ldr r3, [r7, #12] - 8003c68: 2220 movs r2, #32 - 8003c6a: 655a str r2, [r3, #84] ; 0x54 + 8003cb6: 68fb ldr r3, [r7, #12] + 8003cb8: 2220 movs r2, #32 + 8003cba: 655a str r2, [r3, #84] ; 0x54 } /* Clear overrun flag in 2 Lines communication mode because received is not read */ if (hspi->Init.Direction == SPI_DIRECTION_2LINES) - 8003c6c: 68fb ldr r3, [r7, #12] - 8003c6e: 689b ldr r3, [r3, #8] - 8003c70: 2b00 cmp r3, #0 - 8003c72: d10a bne.n 8003c8a + 8003cbc: 68fb ldr r3, [r7, #12] + 8003cbe: 689b ldr r3, [r3, #8] + 8003cc0: 2b00 cmp r3, #0 + 8003cc2: d10a bne.n 8003cda { __HAL_SPI_CLEAR_OVRFLAG(hspi); - 8003c74: 2300 movs r3, #0 - 8003c76: 613b str r3, [r7, #16] - 8003c78: 68fb ldr r3, [r7, #12] - 8003c7a: 681b ldr r3, [r3, #0] - 8003c7c: 68db ldr r3, [r3, #12] - 8003c7e: 613b str r3, [r7, #16] - 8003c80: 68fb ldr r3, [r7, #12] - 8003c82: 681b ldr r3, [r3, #0] - 8003c84: 689b ldr r3, [r3, #8] - 8003c86: 613b str r3, [r7, #16] - 8003c88: 693b ldr r3, [r7, #16] + 8003cc4: 2300 movs r3, #0 + 8003cc6: 613b str r3, [r7, #16] + 8003cc8: 68fb ldr r3, [r7, #12] + 8003cca: 681b ldr r3, [r3, #0] + 8003ccc: 68db ldr r3, [r3, #12] + 8003cce: 613b str r3, [r7, #16] + 8003cd0: 68fb ldr r3, [r7, #12] + 8003cd2: 681b ldr r3, [r3, #0] + 8003cd4: 689b ldr r3, [r3, #8] + 8003cd6: 613b str r3, [r7, #16] + 8003cd8: 693b ldr r3, [r7, #16] } if (hspi->ErrorCode != HAL_SPI_ERROR_NONE) - 8003c8a: 68fb ldr r3, [r7, #12] - 8003c8c: 6d5b ldr r3, [r3, #84] ; 0x54 - 8003c8e: 2b00 cmp r3, #0 - 8003c90: d002 beq.n 8003c98 + 8003cda: 68fb ldr r3, [r7, #12] + 8003cdc: 6d5b ldr r3, [r3, #84] ; 0x54 + 8003cde: 2b00 cmp r3, #0 + 8003ce0: d002 beq.n 8003ce8 { errorcode = HAL_ERROR; - 8003c92: 2301 movs r3, #1 - 8003c94: 77fb strb r3, [r7, #31] - 8003c96: e000 b.n 8003c9a + 8003ce2: 2301 movs r3, #1 + 8003ce4: 77fb strb r3, [r7, #31] + 8003ce6: e000 b.n 8003cea } error: - 8003c98: bf00 nop + 8003ce8: bf00 nop hspi->State = HAL_SPI_STATE_READY; - 8003c9a: 68fb ldr r3, [r7, #12] - 8003c9c: 2201 movs r2, #1 - 8003c9e: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003cea: 68fb ldr r3, [r7, #12] + 8003cec: 2201 movs r2, #1 + 8003cee: f883 2051 strb.w r2, [r3, #81] ; 0x51 /* Process Unlocked */ __HAL_UNLOCK(hspi); - 8003ca2: 68fb ldr r3, [r7, #12] - 8003ca4: 2200 movs r2, #0 - 8003ca6: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8003cf2: 68fb ldr r3, [r7, #12] + 8003cf4: 2200 movs r2, #0 + 8003cf6: f883 2050 strb.w r2, [r3, #80] ; 0x50 return errorcode; - 8003caa: 7ffb ldrb r3, [r7, #31] + 8003cfa: 7ffb ldrb r3, [r7, #31] } - 8003cac: 4618 mov r0, r3 - 8003cae: 3720 adds r7, #32 - 8003cb0: 46bd mov sp, r7 - 8003cb2: bd80 pop {r7, pc} + 8003cfc: 4618 mov r0, r3 + 8003cfe: 3720 adds r7, #32 + 8003d00: 46bd mov sp, r7 + 8003d02: bd80 pop {r7, pc} -08003cb4 : +08003d04 : * @param Size amount of data to be received * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_SPI_Receive(SPI_HandleTypeDef *hspi, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 8003cb4: b580 push {r7, lr} - 8003cb6: b088 sub sp, #32 - 8003cb8: af02 add r7, sp, #8 - 8003cba: 60f8 str r0, [r7, #12] - 8003cbc: 60b9 str r1, [r7, #8] - 8003cbe: 603b str r3, [r7, #0] - 8003cc0: 4613 mov r3, r2 - 8003cc2: 80fb strh r3, [r7, #6] + 8003d04: b580 push {r7, lr} + 8003d06: b088 sub sp, #32 + 8003d08: af02 add r7, sp, #8 + 8003d0a: 60f8 str r0, [r7, #12] + 8003d0c: 60b9 str r1, [r7, #8] + 8003d0e: 603b str r3, [r7, #0] + 8003d10: 4613 mov r3, r2 + 8003d12: 80fb strh r3, [r7, #6] #if (USE_SPI_CRC != 0U) __IO uint32_t tmpreg = 0U; #endif /* USE_SPI_CRC */ uint32_t tickstart; HAL_StatusTypeDef errorcode = HAL_OK; - 8003cc4: 2300 movs r3, #0 - 8003cc6: 75fb strb r3, [r7, #23] + 8003d14: 2300 movs r3, #0 + 8003d16: 75fb strb r3, [r7, #23] if ((hspi->Init.Mode == SPI_MODE_MASTER) && (hspi->Init.Direction == SPI_DIRECTION_2LINES)) - 8003cc8: 68fb ldr r3, [r7, #12] - 8003cca: 685b ldr r3, [r3, #4] - 8003ccc: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 8003cd0: d112 bne.n 8003cf8 - 8003cd2: 68fb ldr r3, [r7, #12] - 8003cd4: 689b ldr r3, [r3, #8] - 8003cd6: 2b00 cmp r3, #0 - 8003cd8: d10e bne.n 8003cf8 + 8003d18: 68fb ldr r3, [r7, #12] + 8003d1a: 685b ldr r3, [r3, #4] + 8003d1c: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 8003d20: d112 bne.n 8003d48 + 8003d22: 68fb ldr r3, [r7, #12] + 8003d24: 689b ldr r3, [r3, #8] + 8003d26: 2b00 cmp r3, #0 + 8003d28: d10e bne.n 8003d48 { hspi->State = HAL_SPI_STATE_BUSY_RX; - 8003cda: 68fb ldr r3, [r7, #12] - 8003cdc: 2204 movs r2, #4 - 8003cde: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003d2a: 68fb ldr r3, [r7, #12] + 8003d2c: 2204 movs r2, #4 + 8003d2e: f883 2051 strb.w r2, [r3, #81] ; 0x51 /* Call transmit-receive function to send Dummy data on Tx line and generate clock on CLK line */ return HAL_SPI_TransmitReceive(hspi, pData, pData, Size, Timeout); - 8003ce2: 88fa ldrh r2, [r7, #6] - 8003ce4: 683b ldr r3, [r7, #0] - 8003ce6: 9300 str r3, [sp, #0] - 8003ce8: 4613 mov r3, r2 - 8003cea: 68ba ldr r2, [r7, #8] - 8003cec: 68b9 ldr r1, [r7, #8] - 8003cee: 68f8 ldr r0, [r7, #12] - 8003cf0: f000 f8f1 bl 8003ed6 - 8003cf4: 4603 mov r3, r0 - 8003cf6: e0ea b.n 8003ece + 8003d32: 88fa ldrh r2, [r7, #6] + 8003d34: 683b ldr r3, [r7, #0] + 8003d36: 9300 str r3, [sp, #0] + 8003d38: 4613 mov r3, r2 + 8003d3a: 68ba ldr r2, [r7, #8] + 8003d3c: 68b9 ldr r1, [r7, #8] + 8003d3e: 68f8 ldr r0, [r7, #12] + 8003d40: f000 f8f1 bl 8003f26 + 8003d44: 4603 mov r3, r0 + 8003d46: e0ea b.n 8003f1e } /* Process Locked */ __HAL_LOCK(hspi); - 8003cf8: 68fb ldr r3, [r7, #12] - 8003cfa: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 - 8003cfe: 2b01 cmp r3, #1 - 8003d00: d101 bne.n 8003d06 - 8003d02: 2302 movs r3, #2 - 8003d04: e0e3 b.n 8003ece - 8003d06: 68fb ldr r3, [r7, #12] - 8003d08: 2201 movs r2, #1 - 8003d0a: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8003d48: 68fb ldr r3, [r7, #12] + 8003d4a: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 + 8003d4e: 2b01 cmp r3, #1 + 8003d50: d101 bne.n 8003d56 + 8003d52: 2302 movs r3, #2 + 8003d54: e0e3 b.n 8003f1e + 8003d56: 68fb ldr r3, [r7, #12] + 8003d58: 2201 movs r2, #1 + 8003d5a: f883 2050 strb.w r2, [r3, #80] ; 0x50 /* Init tickstart for timeout management*/ tickstart = HAL_GetTick(); - 8003d0e: f7fd ff0b bl 8001b28 - 8003d12: 6138 str r0, [r7, #16] + 8003d5e: f7fd ff0b bl 8001b78 + 8003d62: 6138 str r0, [r7, #16] if (hspi->State != HAL_SPI_STATE_READY) - 8003d14: 68fb ldr r3, [r7, #12] - 8003d16: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 - 8003d1a: b2db uxtb r3, r3 - 8003d1c: 2b01 cmp r3, #1 - 8003d1e: d002 beq.n 8003d26 + 8003d64: 68fb ldr r3, [r7, #12] + 8003d66: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 + 8003d6a: b2db uxtb r3, r3 + 8003d6c: 2b01 cmp r3, #1 + 8003d6e: d002 beq.n 8003d76 { errorcode = HAL_BUSY; - 8003d20: 2302 movs r3, #2 - 8003d22: 75fb strb r3, [r7, #23] + 8003d70: 2302 movs r3, #2 + 8003d72: 75fb strb r3, [r7, #23] goto error; - 8003d24: e0ca b.n 8003ebc + 8003d74: e0ca b.n 8003f0c } if ((pData == NULL) || (Size == 0U)) - 8003d26: 68bb ldr r3, [r7, #8] - 8003d28: 2b00 cmp r3, #0 - 8003d2a: d002 beq.n 8003d32 - 8003d2c: 88fb ldrh r3, [r7, #6] - 8003d2e: 2b00 cmp r3, #0 - 8003d30: d102 bne.n 8003d38 + 8003d76: 68bb ldr r3, [r7, #8] + 8003d78: 2b00 cmp r3, #0 + 8003d7a: d002 beq.n 8003d82 + 8003d7c: 88fb ldrh r3, [r7, #6] + 8003d7e: 2b00 cmp r3, #0 + 8003d80: d102 bne.n 8003d88 { errorcode = HAL_ERROR; - 8003d32: 2301 movs r3, #1 - 8003d34: 75fb strb r3, [r7, #23] + 8003d82: 2301 movs r3, #1 + 8003d84: 75fb strb r3, [r7, #23] goto error; - 8003d36: e0c1 b.n 8003ebc + 8003d86: e0c1 b.n 8003f0c } /* Set the transaction information */ hspi->State = HAL_SPI_STATE_BUSY_RX; - 8003d38: 68fb ldr r3, [r7, #12] - 8003d3a: 2204 movs r2, #4 - 8003d3c: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003d88: 68fb ldr r3, [r7, #12] + 8003d8a: 2204 movs r2, #4 + 8003d8c: f883 2051 strb.w r2, [r3, #81] ; 0x51 hspi->ErrorCode = HAL_SPI_ERROR_NONE; - 8003d40: 68fb ldr r3, [r7, #12] - 8003d42: 2200 movs r2, #0 - 8003d44: 655a str r2, [r3, #84] ; 0x54 + 8003d90: 68fb ldr r3, [r7, #12] + 8003d92: 2200 movs r2, #0 + 8003d94: 655a str r2, [r3, #84] ; 0x54 hspi->pRxBuffPtr = (uint8_t *)pData; - 8003d46: 68fb ldr r3, [r7, #12] - 8003d48: 68ba ldr r2, [r7, #8] - 8003d4a: 639a str r2, [r3, #56] ; 0x38 + 8003d96: 68fb ldr r3, [r7, #12] + 8003d98: 68ba ldr r2, [r7, #8] + 8003d9a: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferSize = Size; - 8003d4c: 68fb ldr r3, [r7, #12] - 8003d4e: 88fa ldrh r2, [r7, #6] - 8003d50: 879a strh r2, [r3, #60] ; 0x3c + 8003d9c: 68fb ldr r3, [r7, #12] + 8003d9e: 88fa ldrh r2, [r7, #6] + 8003da0: 879a strh r2, [r3, #60] ; 0x3c hspi->RxXferCount = Size; - 8003d52: 68fb ldr r3, [r7, #12] - 8003d54: 88fa ldrh r2, [r7, #6] - 8003d56: 87da strh r2, [r3, #62] ; 0x3e + 8003da2: 68fb ldr r3, [r7, #12] + 8003da4: 88fa ldrh r2, [r7, #6] + 8003da6: 87da strh r2, [r3, #62] ; 0x3e /*Init field not used in handle to zero */ hspi->pTxBuffPtr = (uint8_t *)NULL; - 8003d58: 68fb ldr r3, [r7, #12] - 8003d5a: 2200 movs r2, #0 - 8003d5c: 631a str r2, [r3, #48] ; 0x30 + 8003da8: 68fb ldr r3, [r7, #12] + 8003daa: 2200 movs r2, #0 + 8003dac: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferSize = 0U; - 8003d5e: 68fb ldr r3, [r7, #12] - 8003d60: 2200 movs r2, #0 - 8003d62: 869a strh r2, [r3, #52] ; 0x34 + 8003dae: 68fb ldr r3, [r7, #12] + 8003db0: 2200 movs r2, #0 + 8003db2: 869a strh r2, [r3, #52] ; 0x34 hspi->TxXferCount = 0U; - 8003d64: 68fb ldr r3, [r7, #12] - 8003d66: 2200 movs r2, #0 - 8003d68: 86da strh r2, [r3, #54] ; 0x36 + 8003db4: 68fb ldr r3, [r7, #12] + 8003db6: 2200 movs r2, #0 + 8003db8: 86da strh r2, [r3, #54] ; 0x36 hspi->RxISR = NULL; - 8003d6a: 68fb ldr r3, [r7, #12] - 8003d6c: 2200 movs r2, #0 - 8003d6e: 641a str r2, [r3, #64] ; 0x40 + 8003dba: 68fb ldr r3, [r7, #12] + 8003dbc: 2200 movs r2, #0 + 8003dbe: 641a str r2, [r3, #64] ; 0x40 hspi->TxISR = NULL; - 8003d70: 68fb ldr r3, [r7, #12] - 8003d72: 2200 movs r2, #0 - 8003d74: 645a str r2, [r3, #68] ; 0x44 + 8003dc0: 68fb ldr r3, [r7, #12] + 8003dc2: 2200 movs r2, #0 + 8003dc4: 645a str r2, [r3, #68] ; 0x44 hspi->RxXferCount--; } #endif /* USE_SPI_CRC */ /* Configure communication direction: 1Line */ if (hspi->Init.Direction == SPI_DIRECTION_1LINE) - 8003d76: 68fb ldr r3, [r7, #12] - 8003d78: 689b ldr r3, [r3, #8] - 8003d7a: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 8003d7e: d10f bne.n 8003da0 + 8003dc6: 68fb ldr r3, [r7, #12] + 8003dc8: 689b ldr r3, [r3, #8] + 8003dca: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 8003dce: d10f bne.n 8003df0 { /* Disable SPI Peripheral before set 1Line direction (BIDIOE bit) */ __HAL_SPI_DISABLE(hspi); - 8003d80: 68fb ldr r3, [r7, #12] - 8003d82: 681b ldr r3, [r3, #0] - 8003d84: 681a ldr r2, [r3, #0] - 8003d86: 68fb ldr r3, [r7, #12] - 8003d88: 681b ldr r3, [r3, #0] - 8003d8a: f022 0240 bic.w r2, r2, #64 ; 0x40 - 8003d8e: 601a str r2, [r3, #0] + 8003dd0: 68fb ldr r3, [r7, #12] + 8003dd2: 681b ldr r3, [r3, #0] + 8003dd4: 681a ldr r2, [r3, #0] + 8003dd6: 68fb ldr r3, [r7, #12] + 8003dd8: 681b ldr r3, [r3, #0] + 8003dda: f022 0240 bic.w r2, r2, #64 ; 0x40 + 8003dde: 601a str r2, [r3, #0] SPI_1LINE_RX(hspi); - 8003d90: 68fb ldr r3, [r7, #12] - 8003d92: 681b ldr r3, [r3, #0] - 8003d94: 681a ldr r2, [r3, #0] - 8003d96: 68fb ldr r3, [r7, #12] - 8003d98: 681b ldr r3, [r3, #0] - 8003d9a: f422 4280 bic.w r2, r2, #16384 ; 0x4000 - 8003d9e: 601a str r2, [r3, #0] + 8003de0: 68fb ldr r3, [r7, #12] + 8003de2: 681b ldr r3, [r3, #0] + 8003de4: 681a ldr r2, [r3, #0] + 8003de6: 68fb ldr r3, [r7, #12] + 8003de8: 681b ldr r3, [r3, #0] + 8003dea: f422 4280 bic.w r2, r2, #16384 ; 0x4000 + 8003dee: 601a str r2, [r3, #0] } /* Check if the SPI is already enabled */ if ((hspi->Instance->CR1 & SPI_CR1_SPE) != SPI_CR1_SPE) - 8003da0: 68fb ldr r3, [r7, #12] - 8003da2: 681b ldr r3, [r3, #0] - 8003da4: 681b ldr r3, [r3, #0] - 8003da6: f003 0340 and.w r3, r3, #64 ; 0x40 - 8003daa: 2b40 cmp r3, #64 ; 0x40 - 8003dac: d007 beq.n 8003dbe + 8003df0: 68fb ldr r3, [r7, #12] + 8003df2: 681b ldr r3, [r3, #0] + 8003df4: 681b ldr r3, [r3, #0] + 8003df6: f003 0340 and.w r3, r3, #64 ; 0x40 + 8003dfa: 2b40 cmp r3, #64 ; 0x40 + 8003dfc: d007 beq.n 8003e0e { /* Enable SPI peripheral */ __HAL_SPI_ENABLE(hspi); - 8003dae: 68fb ldr r3, [r7, #12] - 8003db0: 681b ldr r3, [r3, #0] - 8003db2: 681a ldr r2, [r3, #0] - 8003db4: 68fb ldr r3, [r7, #12] - 8003db6: 681b ldr r3, [r3, #0] - 8003db8: f042 0240 orr.w r2, r2, #64 ; 0x40 - 8003dbc: 601a str r2, [r3, #0] + 8003dfe: 68fb ldr r3, [r7, #12] + 8003e00: 681b ldr r3, [r3, #0] + 8003e02: 681a ldr r2, [r3, #0] + 8003e04: 68fb ldr r3, [r7, #12] + 8003e06: 681b ldr r3, [r3, #0] + 8003e08: f042 0240 orr.w r2, r2, #64 ; 0x40 + 8003e0c: 601a str r2, [r3, #0] } /* Receive data in 8 Bit mode */ if (hspi->Init.DataSize == SPI_DATASIZE_8BIT) - 8003dbe: 68fb ldr r3, [r7, #12] - 8003dc0: 68db ldr r3, [r3, #12] - 8003dc2: 2b00 cmp r3, #0 - 8003dc4: d162 bne.n 8003e8c + 8003e0e: 68fb ldr r3, [r7, #12] + 8003e10: 68db ldr r3, [r3, #12] + 8003e12: 2b00 cmp r3, #0 + 8003e14: d162 bne.n 8003edc { /* Transfer loop */ while (hspi->RxXferCount > 0U) - 8003dc6: e02e b.n 8003e26 + 8003e16: e02e b.n 8003e76 { /* Check the RXNE flag */ if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_RXNE)) - 8003dc8: 68fb ldr r3, [r7, #12] - 8003dca: 681b ldr r3, [r3, #0] - 8003dcc: 689b ldr r3, [r3, #8] - 8003dce: f003 0301 and.w r3, r3, #1 - 8003dd2: 2b01 cmp r3, #1 - 8003dd4: d115 bne.n 8003e02 + 8003e18: 68fb ldr r3, [r7, #12] + 8003e1a: 681b ldr r3, [r3, #0] + 8003e1c: 689b ldr r3, [r3, #8] + 8003e1e: f003 0301 and.w r3, r3, #1 + 8003e22: 2b01 cmp r3, #1 + 8003e24: d115 bne.n 8003e52 { /* read the received data */ (* (uint8_t *)hspi->pRxBuffPtr) = *(__IO uint8_t *)&hspi->Instance->DR; - 8003dd6: 68fb ldr r3, [r7, #12] - 8003dd8: 681b ldr r3, [r3, #0] - 8003dda: f103 020c add.w r2, r3, #12 - 8003dde: 68fb ldr r3, [r7, #12] - 8003de0: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003de2: 7812 ldrb r2, [r2, #0] - 8003de4: b2d2 uxtb r2, r2 - 8003de6: 701a strb r2, [r3, #0] + 8003e26: 68fb ldr r3, [r7, #12] + 8003e28: 681b ldr r3, [r3, #0] + 8003e2a: f103 020c add.w r2, r3, #12 + 8003e2e: 68fb ldr r3, [r7, #12] + 8003e30: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003e32: 7812 ldrb r2, [r2, #0] + 8003e34: b2d2 uxtb r2, r2 + 8003e36: 701a strb r2, [r3, #0] hspi->pRxBuffPtr += sizeof(uint8_t); - 8003de8: 68fb ldr r3, [r7, #12] - 8003dea: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003dec: 1c5a adds r2, r3, #1 - 8003dee: 68fb ldr r3, [r7, #12] - 8003df0: 639a str r2, [r3, #56] ; 0x38 + 8003e38: 68fb ldr r3, [r7, #12] + 8003e3a: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003e3c: 1c5a adds r2, r3, #1 + 8003e3e: 68fb ldr r3, [r7, #12] + 8003e40: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferCount--; - 8003df2: 68fb ldr r3, [r7, #12] - 8003df4: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8003df6: b29b uxth r3, r3 - 8003df8: 3b01 subs r3, #1 - 8003dfa: b29a uxth r2, r3 - 8003dfc: 68fb ldr r3, [r7, #12] - 8003dfe: 87da strh r2, [r3, #62] ; 0x3e - 8003e00: e011 b.n 8003e26 + 8003e42: 68fb ldr r3, [r7, #12] + 8003e44: 8fdb ldrh r3, [r3, #62] ; 0x3e + 8003e46: b29b uxth r3, r3 + 8003e48: 3b01 subs r3, #1 + 8003e4a: b29a uxth r2, r3 + 8003e4c: 68fb ldr r3, [r7, #12] + 8003e4e: 87da strh r2, [r3, #62] ; 0x3e + 8003e50: e011 b.n 8003e76 } else { /* Timeout management */ if ((((HAL_GetTick() - tickstart) >= Timeout) && (Timeout != HAL_MAX_DELAY)) || (Timeout == 0U)) - 8003e02: f7fd fe91 bl 8001b28 - 8003e06: 4602 mov r2, r0 - 8003e08: 693b ldr r3, [r7, #16] - 8003e0a: 1ad3 subs r3, r2, r3 - 8003e0c: 683a ldr r2, [r7, #0] - 8003e0e: 429a cmp r2, r3 - 8003e10: d803 bhi.n 8003e1a - 8003e12: 683b ldr r3, [r7, #0] - 8003e14: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8003e18: d102 bne.n 8003e20 - 8003e1a: 683b ldr r3, [r7, #0] - 8003e1c: 2b00 cmp r3, #0 - 8003e1e: d102 bne.n 8003e26 + 8003e52: f7fd fe91 bl 8001b78 + 8003e56: 4602 mov r2, r0 + 8003e58: 693b ldr r3, [r7, #16] + 8003e5a: 1ad3 subs r3, r2, r3 + 8003e5c: 683a ldr r2, [r7, #0] + 8003e5e: 429a cmp r2, r3 + 8003e60: d803 bhi.n 8003e6a + 8003e62: 683b ldr r3, [r7, #0] + 8003e64: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8003e68: d102 bne.n 8003e70 + 8003e6a: 683b ldr r3, [r7, #0] + 8003e6c: 2b00 cmp r3, #0 + 8003e6e: d102 bne.n 8003e76 { errorcode = HAL_TIMEOUT; - 8003e20: 2303 movs r3, #3 - 8003e22: 75fb strb r3, [r7, #23] + 8003e70: 2303 movs r3, #3 + 8003e72: 75fb strb r3, [r7, #23] goto error; - 8003e24: e04a b.n 8003ebc + 8003e74: e04a b.n 8003f0c while (hspi->RxXferCount > 0U) - 8003e26: 68fb ldr r3, [r7, #12] - 8003e28: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8003e2a: b29b uxth r3, r3 - 8003e2c: 2b00 cmp r3, #0 - 8003e2e: d1cb bne.n 8003dc8 - 8003e30: e031 b.n 8003e96 + 8003e76: 68fb ldr r3, [r7, #12] + 8003e78: 8fdb ldrh r3, [r3, #62] ; 0x3e + 8003e7a: b29b uxth r3, r3 + 8003e7c: 2b00 cmp r3, #0 + 8003e7e: d1cb bne.n 8003e18 + 8003e80: e031 b.n 8003ee6 { /* Transfer loop */ while (hspi->RxXferCount > 0U) { /* Check the RXNE flag */ if (__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_RXNE)) - 8003e32: 68fb ldr r3, [r7, #12] - 8003e34: 681b ldr r3, [r3, #0] - 8003e36: 689b ldr r3, [r3, #8] - 8003e38: f003 0301 and.w r3, r3, #1 - 8003e3c: 2b01 cmp r3, #1 - 8003e3e: d113 bne.n 8003e68 + 8003e82: 68fb ldr r3, [r7, #12] + 8003e84: 681b ldr r3, [r3, #0] + 8003e86: 689b ldr r3, [r3, #8] + 8003e88: f003 0301 and.w r3, r3, #1 + 8003e8c: 2b01 cmp r3, #1 + 8003e8e: d113 bne.n 8003eb8 { *((uint16_t *)hspi->pRxBuffPtr) = (uint16_t)hspi->Instance->DR; - 8003e40: 68fb ldr r3, [r7, #12] - 8003e42: 681b ldr r3, [r3, #0] - 8003e44: 68da ldr r2, [r3, #12] - 8003e46: 68fb ldr r3, [r7, #12] - 8003e48: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003e4a: b292 uxth r2, r2 - 8003e4c: 801a strh r2, [r3, #0] + 8003e90: 68fb ldr r3, [r7, #12] + 8003e92: 681b ldr r3, [r3, #0] + 8003e94: 68da ldr r2, [r3, #12] + 8003e96: 68fb ldr r3, [r7, #12] + 8003e98: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003e9a: b292 uxth r2, r2 + 8003e9c: 801a strh r2, [r3, #0] hspi->pRxBuffPtr += sizeof(uint16_t); - 8003e4e: 68fb ldr r3, [r7, #12] - 8003e50: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003e52: 1c9a adds r2, r3, #2 - 8003e54: 68fb ldr r3, [r7, #12] - 8003e56: 639a str r2, [r3, #56] ; 0x38 + 8003e9e: 68fb ldr r3, [r7, #12] + 8003ea0: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003ea2: 1c9a adds r2, r3, #2 + 8003ea4: 68fb ldr r3, [r7, #12] + 8003ea6: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferCount--; - 8003e58: 68fb ldr r3, [r7, #12] - 8003e5a: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8003e5c: b29b uxth r3, r3 - 8003e5e: 3b01 subs r3, #1 - 8003e60: b29a uxth r2, r3 - 8003e62: 68fb ldr r3, [r7, #12] - 8003e64: 87da strh r2, [r3, #62] ; 0x3e - 8003e66: e011 b.n 8003e8c + 8003ea8: 68fb ldr r3, [r7, #12] + 8003eaa: 8fdb ldrh r3, [r3, #62] ; 0x3e + 8003eac: b29b uxth r3, r3 + 8003eae: 3b01 subs r3, #1 + 8003eb0: b29a uxth r2, r3 + 8003eb2: 68fb ldr r3, [r7, #12] + 8003eb4: 87da strh r2, [r3, #62] ; 0x3e + 8003eb6: e011 b.n 8003edc } else { /* Timeout management */ if ((((HAL_GetTick() - tickstart) >= Timeout) && (Timeout != HAL_MAX_DELAY)) || (Timeout == 0U)) - 8003e68: f7fd fe5e bl 8001b28 - 8003e6c: 4602 mov r2, r0 - 8003e6e: 693b ldr r3, [r7, #16] - 8003e70: 1ad3 subs r3, r2, r3 - 8003e72: 683a ldr r2, [r7, #0] - 8003e74: 429a cmp r2, r3 - 8003e76: d803 bhi.n 8003e80 - 8003e78: 683b ldr r3, [r7, #0] - 8003e7a: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8003e7e: d102 bne.n 8003e86 - 8003e80: 683b ldr r3, [r7, #0] - 8003e82: 2b00 cmp r3, #0 - 8003e84: d102 bne.n 8003e8c + 8003eb8: f7fd fe5e bl 8001b78 + 8003ebc: 4602 mov r2, r0 + 8003ebe: 693b ldr r3, [r7, #16] + 8003ec0: 1ad3 subs r3, r2, r3 + 8003ec2: 683a ldr r2, [r7, #0] + 8003ec4: 429a cmp r2, r3 + 8003ec6: d803 bhi.n 8003ed0 + 8003ec8: 683b ldr r3, [r7, #0] + 8003eca: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8003ece: d102 bne.n 8003ed6 + 8003ed0: 683b ldr r3, [r7, #0] + 8003ed2: 2b00 cmp r3, #0 + 8003ed4: d102 bne.n 8003edc { errorcode = HAL_TIMEOUT; - 8003e86: 2303 movs r3, #3 - 8003e88: 75fb strb r3, [r7, #23] + 8003ed6: 2303 movs r3, #3 + 8003ed8: 75fb strb r3, [r7, #23] goto error; - 8003e8a: e017 b.n 8003ebc + 8003eda: e017 b.n 8003f0c while (hspi->RxXferCount > 0U) - 8003e8c: 68fb ldr r3, [r7, #12] - 8003e8e: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8003e90: b29b uxth r3, r3 - 8003e92: 2b00 cmp r3, #0 - 8003e94: d1cd bne.n 8003e32 + 8003edc: 68fb ldr r3, [r7, #12] + 8003ede: 8fdb ldrh r3, [r3, #62] ; 0x3e + 8003ee0: b29b uxth r3, r3 + 8003ee2: 2b00 cmp r3, #0 + 8003ee4: d1cd bne.n 8003e82 UNUSED(tmpreg); } #endif /* USE_SPI_CRC */ /* Check the end of the transaction */ if (SPI_EndRxTransaction(hspi, Timeout, tickstart) != HAL_OK) - 8003e96: 693a ldr r2, [r7, #16] - 8003e98: 6839 ldr r1, [r7, #0] - 8003e9a: 68f8 ldr r0, [r7, #12] - 8003e9c: f000 fa46 bl 800432c - 8003ea0: 4603 mov r3, r0 - 8003ea2: 2b00 cmp r3, #0 - 8003ea4: d002 beq.n 8003eac + 8003ee6: 693a ldr r2, [r7, #16] + 8003ee8: 6839 ldr r1, [r7, #0] + 8003eea: 68f8 ldr r0, [r7, #12] + 8003eec: f000 fa46 bl 800437c + 8003ef0: 4603 mov r3, r0 + 8003ef2: 2b00 cmp r3, #0 + 8003ef4: d002 beq.n 8003efc { hspi->ErrorCode = HAL_SPI_ERROR_FLAG; - 8003ea6: 68fb ldr r3, [r7, #12] - 8003ea8: 2220 movs r2, #32 - 8003eaa: 655a str r2, [r3, #84] ; 0x54 + 8003ef6: 68fb ldr r3, [r7, #12] + 8003ef8: 2220 movs r2, #32 + 8003efa: 655a str r2, [r3, #84] ; 0x54 __HAL_SPI_CLEAR_CRCERRFLAG(hspi); } } #endif /* USE_SPI_CRC */ if (hspi->ErrorCode != HAL_SPI_ERROR_NONE) - 8003eac: 68fb ldr r3, [r7, #12] - 8003eae: 6d5b ldr r3, [r3, #84] ; 0x54 - 8003eb0: 2b00 cmp r3, #0 - 8003eb2: d002 beq.n 8003eba + 8003efc: 68fb ldr r3, [r7, #12] + 8003efe: 6d5b ldr r3, [r3, #84] ; 0x54 + 8003f00: 2b00 cmp r3, #0 + 8003f02: d002 beq.n 8003f0a { errorcode = HAL_ERROR; - 8003eb4: 2301 movs r3, #1 - 8003eb6: 75fb strb r3, [r7, #23] - 8003eb8: e000 b.n 8003ebc + 8003f04: 2301 movs r3, #1 + 8003f06: 75fb strb r3, [r7, #23] + 8003f08: e000 b.n 8003f0c } error : - 8003eba: bf00 nop + 8003f0a: bf00 nop hspi->State = HAL_SPI_STATE_READY; - 8003ebc: 68fb ldr r3, [r7, #12] - 8003ebe: 2201 movs r2, #1 - 8003ec0: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003f0c: 68fb ldr r3, [r7, #12] + 8003f0e: 2201 movs r2, #1 + 8003f10: f883 2051 strb.w r2, [r3, #81] ; 0x51 __HAL_UNLOCK(hspi); - 8003ec4: 68fb ldr r3, [r7, #12] - 8003ec6: 2200 movs r2, #0 - 8003ec8: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8003f14: 68fb ldr r3, [r7, #12] + 8003f16: 2200 movs r2, #0 + 8003f18: f883 2050 strb.w r2, [r3, #80] ; 0x50 return errorcode; - 8003ecc: 7dfb ldrb r3, [r7, #23] + 8003f1c: 7dfb ldrb r3, [r7, #23] } - 8003ece: 4618 mov r0, r3 - 8003ed0: 3718 adds r7, #24 - 8003ed2: 46bd mov sp, r7 - 8003ed4: bd80 pop {r7, pc} + 8003f1e: 4618 mov r0, r3 + 8003f20: 3718 adds r7, #24 + 8003f22: 46bd mov sp, r7 + 8003f24: bd80 pop {r7, pc} -08003ed6 : +08003f26 : * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_SPI_TransmitReceive(SPI_HandleTypeDef *hspi, uint8_t *pTxData, uint8_t *pRxData, uint16_t Size, uint32_t Timeout) { - 8003ed6: b580 push {r7, lr} - 8003ed8: b08c sub sp, #48 ; 0x30 - 8003eda: af00 add r7, sp, #0 - 8003edc: 60f8 str r0, [r7, #12] - 8003ede: 60b9 str r1, [r7, #8] - 8003ee0: 607a str r2, [r7, #4] - 8003ee2: 807b strh r3, [r7, #2] + 8003f26: b580 push {r7, lr} + 8003f28: b08c sub sp, #48 ; 0x30 + 8003f2a: af00 add r7, sp, #0 + 8003f2c: 60f8 str r0, [r7, #12] + 8003f2e: 60b9 str r1, [r7, #8] + 8003f30: 607a str r2, [r7, #4] + 8003f32: 807b strh r3, [r7, #2] #if (USE_SPI_CRC != 0U) __IO uint32_t tmpreg = 0U; #endif /* USE_SPI_CRC */ /* Variable used to alternate Rx and Tx during transfer */ uint32_t txallowed = 1U; - 8003ee4: 2301 movs r3, #1 - 8003ee6: 62fb str r3, [r7, #44] ; 0x2c + 8003f34: 2301 movs r3, #1 + 8003f36: 62fb str r3, [r7, #44] ; 0x2c HAL_StatusTypeDef errorcode = HAL_OK; - 8003ee8: 2300 movs r3, #0 - 8003eea: f887 302b strb.w r3, [r7, #43] ; 0x2b + 8003f38: 2300 movs r3, #0 + 8003f3a: f887 302b strb.w r3, [r7, #43] ; 0x2b /* Check Direction parameter */ assert_param(IS_SPI_DIRECTION_2LINES(hspi->Init.Direction)); /* Process Locked */ __HAL_LOCK(hspi); - 8003eee: 68fb ldr r3, [r7, #12] - 8003ef0: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 - 8003ef4: 2b01 cmp r3, #1 - 8003ef6: d101 bne.n 8003efc - 8003ef8: 2302 movs r3, #2 - 8003efa: e18a b.n 8004212 - 8003efc: 68fb ldr r3, [r7, #12] - 8003efe: 2201 movs r2, #1 - 8003f00: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8003f3e: 68fb ldr r3, [r7, #12] + 8003f40: f893 3050 ldrb.w r3, [r3, #80] ; 0x50 + 8003f44: 2b01 cmp r3, #1 + 8003f46: d101 bne.n 8003f4c + 8003f48: 2302 movs r3, #2 + 8003f4a: e18a b.n 8004262 + 8003f4c: 68fb ldr r3, [r7, #12] + 8003f4e: 2201 movs r2, #1 + 8003f50: f883 2050 strb.w r2, [r3, #80] ; 0x50 /* Init tickstart for timeout management*/ tickstart = HAL_GetTick(); - 8003f04: f7fd fe10 bl 8001b28 - 8003f08: 6278 str r0, [r7, #36] ; 0x24 + 8003f54: f7fd fe10 bl 8001b78 + 8003f58: 6278 str r0, [r7, #36] ; 0x24 /* Init temporary variables */ tmp_state = hspi->State; - 8003f0a: 68fb ldr r3, [r7, #12] - 8003f0c: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 - 8003f10: f887 3023 strb.w r3, [r7, #35] ; 0x23 + 8003f5a: 68fb ldr r3, [r7, #12] + 8003f5c: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 + 8003f60: f887 3023 strb.w r3, [r7, #35] ; 0x23 tmp_mode = hspi->Init.Mode; - 8003f14: 68fb ldr r3, [r7, #12] - 8003f16: 685b ldr r3, [r3, #4] - 8003f18: 61fb str r3, [r7, #28] + 8003f64: 68fb ldr r3, [r7, #12] + 8003f66: 685b ldr r3, [r3, #4] + 8003f68: 61fb str r3, [r7, #28] initial_TxXferCount = Size; - 8003f1a: 887b ldrh r3, [r7, #2] - 8003f1c: 837b strh r3, [r7, #26] + 8003f6a: 887b ldrh r3, [r7, #2] + 8003f6c: 837b strh r3, [r7, #26] if (!((tmp_state == HAL_SPI_STATE_READY) || \ - 8003f1e: f897 3023 ldrb.w r3, [r7, #35] ; 0x23 - 8003f22: 2b01 cmp r3, #1 - 8003f24: d00f beq.n 8003f46 - 8003f26: 69fb ldr r3, [r7, #28] - 8003f28: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 8003f2c: d107 bne.n 8003f3e + 8003f6e: f897 3023 ldrb.w r3, [r7, #35] ; 0x23 + 8003f72: 2b01 cmp r3, #1 + 8003f74: d00f beq.n 8003f96 + 8003f76: 69fb ldr r3, [r7, #28] + 8003f78: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 8003f7c: d107 bne.n 8003f8e ((tmp_mode == SPI_MODE_MASTER) && (hspi->Init.Direction == SPI_DIRECTION_2LINES) && (tmp_state == HAL_SPI_STATE_BUSY_RX)))) - 8003f2e: 68fb ldr r3, [r7, #12] - 8003f30: 689b ldr r3, [r3, #8] - 8003f32: 2b00 cmp r3, #0 - 8003f34: d103 bne.n 8003f3e - 8003f36: f897 3023 ldrb.w r3, [r7, #35] ; 0x23 - 8003f3a: 2b04 cmp r3, #4 - 8003f3c: d003 beq.n 8003f46 + 8003f7e: 68fb ldr r3, [r7, #12] + 8003f80: 689b ldr r3, [r3, #8] + 8003f82: 2b00 cmp r3, #0 + 8003f84: d103 bne.n 8003f8e + 8003f86: f897 3023 ldrb.w r3, [r7, #35] ; 0x23 + 8003f8a: 2b04 cmp r3, #4 + 8003f8c: d003 beq.n 8003f96 { errorcode = HAL_BUSY; - 8003f3e: 2302 movs r3, #2 - 8003f40: f887 302b strb.w r3, [r7, #43] ; 0x2b + 8003f8e: 2302 movs r3, #2 + 8003f90: f887 302b strb.w r3, [r7, #43] ; 0x2b goto error; - 8003f44: e15b b.n 80041fe + 8003f94: e15b b.n 800424e } if ((pTxData == NULL) || (pRxData == NULL) || (Size == 0U)) - 8003f46: 68bb ldr r3, [r7, #8] - 8003f48: 2b00 cmp r3, #0 - 8003f4a: d005 beq.n 8003f58 - 8003f4c: 687b ldr r3, [r7, #4] - 8003f4e: 2b00 cmp r3, #0 - 8003f50: d002 beq.n 8003f58 - 8003f52: 887b ldrh r3, [r7, #2] - 8003f54: 2b00 cmp r3, #0 - 8003f56: d103 bne.n 8003f60 + 8003f96: 68bb ldr r3, [r7, #8] + 8003f98: 2b00 cmp r3, #0 + 8003f9a: d005 beq.n 8003fa8 + 8003f9c: 687b ldr r3, [r7, #4] + 8003f9e: 2b00 cmp r3, #0 + 8003fa0: d002 beq.n 8003fa8 + 8003fa2: 887b ldrh r3, [r7, #2] + 8003fa4: 2b00 cmp r3, #0 + 8003fa6: d103 bne.n 8003fb0 { errorcode = HAL_ERROR; - 8003f58: 2301 movs r3, #1 - 8003f5a: f887 302b strb.w r3, [r7, #43] ; 0x2b + 8003fa8: 2301 movs r3, #1 + 8003faa: f887 302b strb.w r3, [r7, #43] ; 0x2b goto error; - 8003f5e: e14e b.n 80041fe + 8003fae: e14e b.n 800424e } /* Don't overwrite in case of HAL_SPI_STATE_BUSY_RX */ if (hspi->State != HAL_SPI_STATE_BUSY_RX) - 8003f60: 68fb ldr r3, [r7, #12] - 8003f62: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 - 8003f66: b2db uxtb r3, r3 - 8003f68: 2b04 cmp r3, #4 - 8003f6a: d003 beq.n 8003f74 + 8003fb0: 68fb ldr r3, [r7, #12] + 8003fb2: f893 3051 ldrb.w r3, [r3, #81] ; 0x51 + 8003fb6: b2db uxtb r3, r3 + 8003fb8: 2b04 cmp r3, #4 + 8003fba: d003 beq.n 8003fc4 { hspi->State = HAL_SPI_STATE_BUSY_TX_RX; - 8003f6c: 68fb ldr r3, [r7, #12] - 8003f6e: 2205 movs r2, #5 - 8003f70: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 8003fbc: 68fb ldr r3, [r7, #12] + 8003fbe: 2205 movs r2, #5 + 8003fc0: f883 2051 strb.w r2, [r3, #81] ; 0x51 } /* Set the transaction information */ hspi->ErrorCode = HAL_SPI_ERROR_NONE; - 8003f74: 68fb ldr r3, [r7, #12] - 8003f76: 2200 movs r2, #0 - 8003f78: 655a str r2, [r3, #84] ; 0x54 + 8003fc4: 68fb ldr r3, [r7, #12] + 8003fc6: 2200 movs r2, #0 + 8003fc8: 655a str r2, [r3, #84] ; 0x54 hspi->pRxBuffPtr = (uint8_t *)pRxData; - 8003f7a: 68fb ldr r3, [r7, #12] - 8003f7c: 687a ldr r2, [r7, #4] - 8003f7e: 639a str r2, [r3, #56] ; 0x38 + 8003fca: 68fb ldr r3, [r7, #12] + 8003fcc: 687a ldr r2, [r7, #4] + 8003fce: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferCount = Size; - 8003f80: 68fb ldr r3, [r7, #12] - 8003f82: 887a ldrh r2, [r7, #2] - 8003f84: 87da strh r2, [r3, #62] ; 0x3e + 8003fd0: 68fb ldr r3, [r7, #12] + 8003fd2: 887a ldrh r2, [r7, #2] + 8003fd4: 87da strh r2, [r3, #62] ; 0x3e hspi->RxXferSize = Size; - 8003f86: 68fb ldr r3, [r7, #12] - 8003f88: 887a ldrh r2, [r7, #2] - 8003f8a: 879a strh r2, [r3, #60] ; 0x3c + 8003fd6: 68fb ldr r3, [r7, #12] + 8003fd8: 887a ldrh r2, [r7, #2] + 8003fda: 879a strh r2, [r3, #60] ; 0x3c hspi->pTxBuffPtr = (uint8_t *)pTxData; - 8003f8c: 68fb ldr r3, [r7, #12] - 8003f8e: 68ba ldr r2, [r7, #8] - 8003f90: 631a str r2, [r3, #48] ; 0x30 + 8003fdc: 68fb ldr r3, [r7, #12] + 8003fde: 68ba ldr r2, [r7, #8] + 8003fe0: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount = Size; - 8003f92: 68fb ldr r3, [r7, #12] - 8003f94: 887a ldrh r2, [r7, #2] - 8003f96: 86da strh r2, [r3, #54] ; 0x36 + 8003fe2: 68fb ldr r3, [r7, #12] + 8003fe4: 887a ldrh r2, [r7, #2] + 8003fe6: 86da strh r2, [r3, #54] ; 0x36 hspi->TxXferSize = Size; - 8003f98: 68fb ldr r3, [r7, #12] - 8003f9a: 887a ldrh r2, [r7, #2] - 8003f9c: 869a strh r2, [r3, #52] ; 0x34 + 8003fe8: 68fb ldr r3, [r7, #12] + 8003fea: 887a ldrh r2, [r7, #2] + 8003fec: 869a strh r2, [r3, #52] ; 0x34 /*Init field not used in handle to zero */ hspi->RxISR = NULL; - 8003f9e: 68fb ldr r3, [r7, #12] - 8003fa0: 2200 movs r2, #0 - 8003fa2: 641a str r2, [r3, #64] ; 0x40 + 8003fee: 68fb ldr r3, [r7, #12] + 8003ff0: 2200 movs r2, #0 + 8003ff2: 641a str r2, [r3, #64] ; 0x40 hspi->TxISR = NULL; - 8003fa4: 68fb ldr r3, [r7, #12] - 8003fa6: 2200 movs r2, #0 - 8003fa8: 645a str r2, [r3, #68] ; 0x44 + 8003ff4: 68fb ldr r3, [r7, #12] + 8003ff6: 2200 movs r2, #0 + 8003ff8: 645a str r2, [r3, #68] ; 0x44 SPI_RESET_CRC(hspi); } #endif /* USE_SPI_CRC */ /* Check if the SPI is already enabled */ if ((hspi->Instance->CR1 & SPI_CR1_SPE) != SPI_CR1_SPE) - 8003faa: 68fb ldr r3, [r7, #12] - 8003fac: 681b ldr r3, [r3, #0] - 8003fae: 681b ldr r3, [r3, #0] - 8003fb0: f003 0340 and.w r3, r3, #64 ; 0x40 - 8003fb4: 2b40 cmp r3, #64 ; 0x40 - 8003fb6: d007 beq.n 8003fc8 + 8003ffa: 68fb ldr r3, [r7, #12] + 8003ffc: 681b ldr r3, [r3, #0] + 8003ffe: 681b ldr r3, [r3, #0] + 8004000: f003 0340 and.w r3, r3, #64 ; 0x40 + 8004004: 2b40 cmp r3, #64 ; 0x40 + 8004006: d007 beq.n 8004018 { /* Enable SPI peripheral */ __HAL_SPI_ENABLE(hspi); - 8003fb8: 68fb ldr r3, [r7, #12] - 8003fba: 681b ldr r3, [r3, #0] - 8003fbc: 681a ldr r2, [r3, #0] - 8003fbe: 68fb ldr r3, [r7, #12] - 8003fc0: 681b ldr r3, [r3, #0] - 8003fc2: f042 0240 orr.w r2, r2, #64 ; 0x40 - 8003fc6: 601a str r2, [r3, #0] + 8004008: 68fb ldr r3, [r7, #12] + 800400a: 681b ldr r3, [r3, #0] + 800400c: 681a ldr r2, [r3, #0] + 800400e: 68fb ldr r3, [r7, #12] + 8004010: 681b ldr r3, [r3, #0] + 8004012: f042 0240 orr.w r2, r2, #64 ; 0x40 + 8004016: 601a str r2, [r3, #0] } /* Transmit and Receive data in 16 Bit mode */ if (hspi->Init.DataSize == SPI_DATASIZE_16BIT) - 8003fc8: 68fb ldr r3, [r7, #12] - 8003fca: 68db ldr r3, [r3, #12] - 8003fcc: f5b3 6f00 cmp.w r3, #2048 ; 0x800 - 8003fd0: d178 bne.n 80040c4 + 8004018: 68fb ldr r3, [r7, #12] + 800401a: 68db ldr r3, [r3, #12] + 800401c: f5b3 6f00 cmp.w r3, #2048 ; 0x800 + 8004020: d178 bne.n 8004114 { if ((hspi->Init.Mode == SPI_MODE_SLAVE) || (initial_TxXferCount == 0x01U)) - 8003fd2: 68fb ldr r3, [r7, #12] - 8003fd4: 685b ldr r3, [r3, #4] - 8003fd6: 2b00 cmp r3, #0 - 8003fd8: d002 beq.n 8003fe0 - 8003fda: 8b7b ldrh r3, [r7, #26] - 8003fdc: 2b01 cmp r3, #1 - 8003fde: d166 bne.n 80040ae + 8004022: 68fb ldr r3, [r7, #12] + 8004024: 685b ldr r3, [r3, #4] + 8004026: 2b00 cmp r3, #0 + 8004028: d002 beq.n 8004030 + 800402a: 8b7b ldrh r3, [r7, #26] + 800402c: 2b01 cmp r3, #1 + 800402e: d166 bne.n 80040fe { hspi->Instance->DR = *((uint16_t *)hspi->pTxBuffPtr); - 8003fe0: 68fb ldr r3, [r7, #12] - 8003fe2: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003fe4: 881a ldrh r2, [r3, #0] - 8003fe6: 68fb ldr r3, [r7, #12] - 8003fe8: 681b ldr r3, [r3, #0] - 8003fea: 60da str r2, [r3, #12] + 8004030: 68fb ldr r3, [r7, #12] + 8004032: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004034: 881a ldrh r2, [r3, #0] + 8004036: 68fb ldr r3, [r7, #12] + 8004038: 681b ldr r3, [r3, #0] + 800403a: 60da str r2, [r3, #12] hspi->pTxBuffPtr += sizeof(uint16_t); - 8003fec: 68fb ldr r3, [r7, #12] - 8003fee: 6b1b ldr r3, [r3, #48] ; 0x30 - 8003ff0: 1c9a adds r2, r3, #2 - 8003ff2: 68fb ldr r3, [r7, #12] - 8003ff4: 631a str r2, [r3, #48] ; 0x30 + 800403c: 68fb ldr r3, [r7, #12] + 800403e: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004040: 1c9a adds r2, r3, #2 + 8004042: 68fb ldr r3, [r7, #12] + 8004044: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8003ff6: 68fb ldr r3, [r7, #12] - 8003ff8: 8edb ldrh r3, [r3, #54] ; 0x36 - 8003ffa: b29b uxth r3, r3 - 8003ffc: 3b01 subs r3, #1 - 8003ffe: b29a uxth r2, r3 - 8004000: 68fb ldr r3, [r7, #12] - 8004002: 86da strh r2, [r3, #54] ; 0x36 + 8004046: 68fb ldr r3, [r7, #12] + 8004048: 8edb ldrh r3, [r3, #54] ; 0x36 + 800404a: b29b uxth r3, r3 + 800404c: 3b01 subs r3, #1 + 800404e: b29a uxth r2, r3 + 8004050: 68fb ldr r3, [r7, #12] + 8004052: 86da strh r2, [r3, #54] ; 0x36 } while ((hspi->TxXferCount > 0U) || (hspi->RxXferCount > 0U)) - 8004004: e053 b.n 80040ae + 8004054: e053 b.n 80040fe { /* Check TXE flag */ if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) && (hspi->TxXferCount > 0U) && (txallowed == 1U)) - 8004006: 68fb ldr r3, [r7, #12] - 8004008: 681b ldr r3, [r3, #0] - 800400a: 689b ldr r3, [r3, #8] - 800400c: f003 0302 and.w r3, r3, #2 - 8004010: 2b02 cmp r3, #2 - 8004012: d11b bne.n 800404c - 8004014: 68fb ldr r3, [r7, #12] - 8004016: 8edb ldrh r3, [r3, #54] ; 0x36 - 8004018: b29b uxth r3, r3 - 800401a: 2b00 cmp r3, #0 - 800401c: d016 beq.n 800404c - 800401e: 6afb ldr r3, [r7, #44] ; 0x2c - 8004020: 2b01 cmp r3, #1 - 8004022: d113 bne.n 800404c + 8004056: 68fb ldr r3, [r7, #12] + 8004058: 681b ldr r3, [r3, #0] + 800405a: 689b ldr r3, [r3, #8] + 800405c: f003 0302 and.w r3, r3, #2 + 8004060: 2b02 cmp r3, #2 + 8004062: d11b bne.n 800409c + 8004064: 68fb ldr r3, [r7, #12] + 8004066: 8edb ldrh r3, [r3, #54] ; 0x36 + 8004068: b29b uxth r3, r3 + 800406a: 2b00 cmp r3, #0 + 800406c: d016 beq.n 800409c + 800406e: 6afb ldr r3, [r7, #44] ; 0x2c + 8004070: 2b01 cmp r3, #1 + 8004072: d113 bne.n 800409c { hspi->Instance->DR = *((uint16_t *)hspi->pTxBuffPtr); - 8004024: 68fb ldr r3, [r7, #12] - 8004026: 6b1b ldr r3, [r3, #48] ; 0x30 - 8004028: 881a ldrh r2, [r3, #0] - 800402a: 68fb ldr r3, [r7, #12] - 800402c: 681b ldr r3, [r3, #0] - 800402e: 60da str r2, [r3, #12] + 8004074: 68fb ldr r3, [r7, #12] + 8004076: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004078: 881a ldrh r2, [r3, #0] + 800407a: 68fb ldr r3, [r7, #12] + 800407c: 681b ldr r3, [r3, #0] + 800407e: 60da str r2, [r3, #12] hspi->pTxBuffPtr += sizeof(uint16_t); - 8004030: 68fb ldr r3, [r7, #12] - 8004032: 6b1b ldr r3, [r3, #48] ; 0x30 - 8004034: 1c9a adds r2, r3, #2 - 8004036: 68fb ldr r3, [r7, #12] - 8004038: 631a str r2, [r3, #48] ; 0x30 + 8004080: 68fb ldr r3, [r7, #12] + 8004082: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004084: 1c9a adds r2, r3, #2 + 8004086: 68fb ldr r3, [r7, #12] + 8004088: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 800403a: 68fb ldr r3, [r7, #12] - 800403c: 8edb ldrh r3, [r3, #54] ; 0x36 - 800403e: b29b uxth r3, r3 - 8004040: 3b01 subs r3, #1 - 8004042: b29a uxth r2, r3 - 8004044: 68fb ldr r3, [r7, #12] - 8004046: 86da strh r2, [r3, #54] ; 0x36 + 800408a: 68fb ldr r3, [r7, #12] + 800408c: 8edb ldrh r3, [r3, #54] ; 0x36 + 800408e: b29b uxth r3, r3 + 8004090: 3b01 subs r3, #1 + 8004092: b29a uxth r2, r3 + 8004094: 68fb ldr r3, [r7, #12] + 8004096: 86da strh r2, [r3, #54] ; 0x36 /* Next Data is a reception (Rx). Tx not allowed */ txallowed = 0U; - 8004048: 2300 movs r3, #0 - 800404a: 62fb str r3, [r7, #44] ; 0x2c + 8004098: 2300 movs r3, #0 + 800409a: 62fb str r3, [r7, #44] ; 0x2c } #endif /* USE_SPI_CRC */ } /* Check RXNE flag */ if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_RXNE)) && (hspi->RxXferCount > 0U)) - 800404c: 68fb ldr r3, [r7, #12] - 800404e: 681b ldr r3, [r3, #0] - 8004050: 689b ldr r3, [r3, #8] - 8004052: f003 0301 and.w r3, r3, #1 - 8004056: 2b01 cmp r3, #1 - 8004058: d119 bne.n 800408e - 800405a: 68fb ldr r3, [r7, #12] - 800405c: 8fdb ldrh r3, [r3, #62] ; 0x3e - 800405e: b29b uxth r3, r3 - 8004060: 2b00 cmp r3, #0 - 8004062: d014 beq.n 800408e + 800409c: 68fb ldr r3, [r7, #12] + 800409e: 681b ldr r3, [r3, #0] + 80040a0: 689b ldr r3, [r3, #8] + 80040a2: f003 0301 and.w r3, r3, #1 + 80040a6: 2b01 cmp r3, #1 + 80040a8: d119 bne.n 80040de + 80040aa: 68fb ldr r3, [r7, #12] + 80040ac: 8fdb ldrh r3, [r3, #62] ; 0x3e + 80040ae: b29b uxth r3, r3 + 80040b0: 2b00 cmp r3, #0 + 80040b2: d014 beq.n 80040de { *((uint16_t *)hspi->pRxBuffPtr) = (uint16_t)hspi->Instance->DR; - 8004064: 68fb ldr r3, [r7, #12] - 8004066: 681b ldr r3, [r3, #0] - 8004068: 68da ldr r2, [r3, #12] - 800406a: 68fb ldr r3, [r7, #12] - 800406c: 6b9b ldr r3, [r3, #56] ; 0x38 - 800406e: b292 uxth r2, r2 - 8004070: 801a strh r2, [r3, #0] + 80040b4: 68fb ldr r3, [r7, #12] + 80040b6: 681b ldr r3, [r3, #0] + 80040b8: 68da ldr r2, [r3, #12] + 80040ba: 68fb ldr r3, [r7, #12] + 80040bc: 6b9b ldr r3, [r3, #56] ; 0x38 + 80040be: b292 uxth r2, r2 + 80040c0: 801a strh r2, [r3, #0] hspi->pRxBuffPtr += sizeof(uint16_t); - 8004072: 68fb ldr r3, [r7, #12] - 8004074: 6b9b ldr r3, [r3, #56] ; 0x38 - 8004076: 1c9a adds r2, r3, #2 - 8004078: 68fb ldr r3, [r7, #12] - 800407a: 639a str r2, [r3, #56] ; 0x38 + 80040c2: 68fb ldr r3, [r7, #12] + 80040c4: 6b9b ldr r3, [r3, #56] ; 0x38 + 80040c6: 1c9a adds r2, r3, #2 + 80040c8: 68fb ldr r3, [r7, #12] + 80040ca: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferCount--; - 800407c: 68fb ldr r3, [r7, #12] - 800407e: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8004080: b29b uxth r3, r3 - 8004082: 3b01 subs r3, #1 - 8004084: b29a uxth r2, r3 - 8004086: 68fb ldr r3, [r7, #12] - 8004088: 87da strh r2, [r3, #62] ; 0x3e + 80040cc: 68fb ldr r3, [r7, #12] + 80040ce: 8fdb ldrh r3, [r3, #62] ; 0x3e + 80040d0: b29b uxth r3, r3 + 80040d2: 3b01 subs r3, #1 + 80040d4: b29a uxth r2, r3 + 80040d6: 68fb ldr r3, [r7, #12] + 80040d8: 87da strh r2, [r3, #62] ; 0x3e /* Next Data is a Transmission (Tx). Tx is allowed */ txallowed = 1U; - 800408a: 2301 movs r3, #1 - 800408c: 62fb str r3, [r7, #44] ; 0x2c + 80040da: 2301 movs r3, #1 + 80040dc: 62fb str r3, [r7, #44] ; 0x2c } if (((HAL_GetTick() - tickstart) >= Timeout) && (Timeout != HAL_MAX_DELAY)) - 800408e: f7fd fd4b bl 8001b28 - 8004092: 4602 mov r2, r0 - 8004094: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004096: 1ad3 subs r3, r2, r3 - 8004098: 6bba ldr r2, [r7, #56] ; 0x38 - 800409a: 429a cmp r2, r3 - 800409c: d807 bhi.n 80040ae - 800409e: 6bbb ldr r3, [r7, #56] ; 0x38 - 80040a0: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 80040a4: d003 beq.n 80040ae + 80040de: f7fd fd4b bl 8001b78 + 80040e2: 4602 mov r2, r0 + 80040e4: 6a7b ldr r3, [r7, #36] ; 0x24 + 80040e6: 1ad3 subs r3, r2, r3 + 80040e8: 6bba ldr r2, [r7, #56] ; 0x38 + 80040ea: 429a cmp r2, r3 + 80040ec: d807 bhi.n 80040fe + 80040ee: 6bbb ldr r3, [r7, #56] ; 0x38 + 80040f0: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 80040f4: d003 beq.n 80040fe { errorcode = HAL_TIMEOUT; - 80040a6: 2303 movs r3, #3 - 80040a8: f887 302b strb.w r3, [r7, #43] ; 0x2b + 80040f6: 2303 movs r3, #3 + 80040f8: f887 302b strb.w r3, [r7, #43] ; 0x2b goto error; - 80040ac: e0a7 b.n 80041fe + 80040fc: e0a7 b.n 800424e while ((hspi->TxXferCount > 0U) || (hspi->RxXferCount > 0U)) - 80040ae: 68fb ldr r3, [r7, #12] - 80040b0: 8edb ldrh r3, [r3, #54] ; 0x36 - 80040b2: b29b uxth r3, r3 - 80040b4: 2b00 cmp r3, #0 - 80040b6: d1a6 bne.n 8004006 - 80040b8: 68fb ldr r3, [r7, #12] - 80040ba: 8fdb ldrh r3, [r3, #62] ; 0x3e - 80040bc: b29b uxth r3, r3 - 80040be: 2b00 cmp r3, #0 - 80040c0: d1a1 bne.n 8004006 - 80040c2: e07c b.n 80041be + 80040fe: 68fb ldr r3, [r7, #12] + 8004100: 8edb ldrh r3, [r3, #54] ; 0x36 + 8004102: b29b uxth r3, r3 + 8004104: 2b00 cmp r3, #0 + 8004106: d1a6 bne.n 8004056 + 8004108: 68fb ldr r3, [r7, #12] + 800410a: 8fdb ldrh r3, [r3, #62] ; 0x3e + 800410c: b29b uxth r3, r3 + 800410e: 2b00 cmp r3, #0 + 8004110: d1a1 bne.n 8004056 + 8004112: e07c b.n 800420e } } /* Transmit and Receive data in 8 Bit mode */ else { if ((hspi->Init.Mode == SPI_MODE_SLAVE) || (initial_TxXferCount == 0x01U)) - 80040c4: 68fb ldr r3, [r7, #12] - 80040c6: 685b ldr r3, [r3, #4] - 80040c8: 2b00 cmp r3, #0 - 80040ca: d002 beq.n 80040d2 - 80040cc: 8b7b ldrh r3, [r7, #26] - 80040ce: 2b01 cmp r3, #1 - 80040d0: d16b bne.n 80041aa + 8004114: 68fb ldr r3, [r7, #12] + 8004116: 685b ldr r3, [r3, #4] + 8004118: 2b00 cmp r3, #0 + 800411a: d002 beq.n 8004122 + 800411c: 8b7b ldrh r3, [r7, #26] + 800411e: 2b01 cmp r3, #1 + 8004120: d16b bne.n 80041fa { *((__IO uint8_t *)&hspi->Instance->DR) = (*hspi->pTxBuffPtr); - 80040d2: 68fb ldr r3, [r7, #12] - 80040d4: 6b1a ldr r2, [r3, #48] ; 0x30 - 80040d6: 68fb ldr r3, [r7, #12] - 80040d8: 681b ldr r3, [r3, #0] - 80040da: 330c adds r3, #12 - 80040dc: 7812 ldrb r2, [r2, #0] - 80040de: 701a strb r2, [r3, #0] + 8004122: 68fb ldr r3, [r7, #12] + 8004124: 6b1a ldr r2, [r3, #48] ; 0x30 + 8004126: 68fb ldr r3, [r7, #12] + 8004128: 681b ldr r3, [r3, #0] + 800412a: 330c adds r3, #12 + 800412c: 7812 ldrb r2, [r2, #0] + 800412e: 701a strb r2, [r3, #0] hspi->pTxBuffPtr += sizeof(uint8_t); - 80040e0: 68fb ldr r3, [r7, #12] - 80040e2: 6b1b ldr r3, [r3, #48] ; 0x30 - 80040e4: 1c5a adds r2, r3, #1 - 80040e6: 68fb ldr r3, [r7, #12] - 80040e8: 631a str r2, [r3, #48] ; 0x30 + 8004130: 68fb ldr r3, [r7, #12] + 8004132: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004134: 1c5a adds r2, r3, #1 + 8004136: 68fb ldr r3, [r7, #12] + 8004138: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 80040ea: 68fb ldr r3, [r7, #12] - 80040ec: 8edb ldrh r3, [r3, #54] ; 0x36 - 80040ee: b29b uxth r3, r3 - 80040f0: 3b01 subs r3, #1 - 80040f2: b29a uxth r2, r3 - 80040f4: 68fb ldr r3, [r7, #12] - 80040f6: 86da strh r2, [r3, #54] ; 0x36 + 800413a: 68fb ldr r3, [r7, #12] + 800413c: 8edb ldrh r3, [r3, #54] ; 0x36 + 800413e: b29b uxth r3, r3 + 8004140: 3b01 subs r3, #1 + 8004142: b29a uxth r2, r3 + 8004144: 68fb ldr r3, [r7, #12] + 8004146: 86da strh r2, [r3, #54] ; 0x36 } while ((hspi->TxXferCount > 0U) || (hspi->RxXferCount > 0U)) - 80040f8: e057 b.n 80041aa + 8004148: e057 b.n 80041fa { /* Check TXE flag */ if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_TXE)) && (hspi->TxXferCount > 0U) && (txallowed == 1U)) - 80040fa: 68fb ldr r3, [r7, #12] - 80040fc: 681b ldr r3, [r3, #0] - 80040fe: 689b ldr r3, [r3, #8] - 8004100: f003 0302 and.w r3, r3, #2 - 8004104: 2b02 cmp r3, #2 - 8004106: d11c bne.n 8004142 - 8004108: 68fb ldr r3, [r7, #12] - 800410a: 8edb ldrh r3, [r3, #54] ; 0x36 - 800410c: b29b uxth r3, r3 - 800410e: 2b00 cmp r3, #0 - 8004110: d017 beq.n 8004142 - 8004112: 6afb ldr r3, [r7, #44] ; 0x2c - 8004114: 2b01 cmp r3, #1 - 8004116: d114 bne.n 8004142 + 800414a: 68fb ldr r3, [r7, #12] + 800414c: 681b ldr r3, [r3, #0] + 800414e: 689b ldr r3, [r3, #8] + 8004150: f003 0302 and.w r3, r3, #2 + 8004154: 2b02 cmp r3, #2 + 8004156: d11c bne.n 8004192 + 8004158: 68fb ldr r3, [r7, #12] + 800415a: 8edb ldrh r3, [r3, #54] ; 0x36 + 800415c: b29b uxth r3, r3 + 800415e: 2b00 cmp r3, #0 + 8004160: d017 beq.n 8004192 + 8004162: 6afb ldr r3, [r7, #44] ; 0x2c + 8004164: 2b01 cmp r3, #1 + 8004166: d114 bne.n 8004192 { *(__IO uint8_t *)&hspi->Instance->DR = (*hspi->pTxBuffPtr); - 8004118: 68fb ldr r3, [r7, #12] - 800411a: 6b1a ldr r2, [r3, #48] ; 0x30 - 800411c: 68fb ldr r3, [r7, #12] - 800411e: 681b ldr r3, [r3, #0] - 8004120: 330c adds r3, #12 - 8004122: 7812 ldrb r2, [r2, #0] - 8004124: 701a strb r2, [r3, #0] + 8004168: 68fb ldr r3, [r7, #12] + 800416a: 6b1a ldr r2, [r3, #48] ; 0x30 + 800416c: 68fb ldr r3, [r7, #12] + 800416e: 681b ldr r3, [r3, #0] + 8004170: 330c adds r3, #12 + 8004172: 7812 ldrb r2, [r2, #0] + 8004174: 701a strb r2, [r3, #0] hspi->pTxBuffPtr++; - 8004126: 68fb ldr r3, [r7, #12] - 8004128: 6b1b ldr r3, [r3, #48] ; 0x30 - 800412a: 1c5a adds r2, r3, #1 - 800412c: 68fb ldr r3, [r7, #12] - 800412e: 631a str r2, [r3, #48] ; 0x30 + 8004176: 68fb ldr r3, [r7, #12] + 8004178: 6b1b ldr r3, [r3, #48] ; 0x30 + 800417a: 1c5a adds r2, r3, #1 + 800417c: 68fb ldr r3, [r7, #12] + 800417e: 631a str r2, [r3, #48] ; 0x30 hspi->TxXferCount--; - 8004130: 68fb ldr r3, [r7, #12] - 8004132: 8edb ldrh r3, [r3, #54] ; 0x36 - 8004134: b29b uxth r3, r3 - 8004136: 3b01 subs r3, #1 - 8004138: b29a uxth r2, r3 - 800413a: 68fb ldr r3, [r7, #12] - 800413c: 86da strh r2, [r3, #54] ; 0x36 + 8004180: 68fb ldr r3, [r7, #12] + 8004182: 8edb ldrh r3, [r3, #54] ; 0x36 + 8004184: b29b uxth r3, r3 + 8004186: 3b01 subs r3, #1 + 8004188: b29a uxth r2, r3 + 800418a: 68fb ldr r3, [r7, #12] + 800418c: 86da strh r2, [r3, #54] ; 0x36 /* Next Data is a reception (Rx). Tx not allowed */ txallowed = 0U; - 800413e: 2300 movs r3, #0 - 8004140: 62fb str r3, [r7, #44] ; 0x2c + 800418e: 2300 movs r3, #0 + 8004190: 62fb str r3, [r7, #44] ; 0x2c } #endif /* USE_SPI_CRC */ } /* Wait until RXNE flag is reset */ if ((__HAL_SPI_GET_FLAG(hspi, SPI_FLAG_RXNE)) && (hspi->RxXferCount > 0U)) - 8004142: 68fb ldr r3, [r7, #12] - 8004144: 681b ldr r3, [r3, #0] - 8004146: 689b ldr r3, [r3, #8] - 8004148: f003 0301 and.w r3, r3, #1 - 800414c: 2b01 cmp r3, #1 - 800414e: d119 bne.n 8004184 - 8004150: 68fb ldr r3, [r7, #12] - 8004152: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8004154: b29b uxth r3, r3 - 8004156: 2b00 cmp r3, #0 - 8004158: d014 beq.n 8004184 + 8004192: 68fb ldr r3, [r7, #12] + 8004194: 681b ldr r3, [r3, #0] + 8004196: 689b ldr r3, [r3, #8] + 8004198: f003 0301 and.w r3, r3, #1 + 800419c: 2b01 cmp r3, #1 + 800419e: d119 bne.n 80041d4 + 80041a0: 68fb ldr r3, [r7, #12] + 80041a2: 8fdb ldrh r3, [r3, #62] ; 0x3e + 80041a4: b29b uxth r3, r3 + 80041a6: 2b00 cmp r3, #0 + 80041a8: d014 beq.n 80041d4 { (*(uint8_t *)hspi->pRxBuffPtr) = hspi->Instance->DR; - 800415a: 68fb ldr r3, [r7, #12] - 800415c: 681b ldr r3, [r3, #0] - 800415e: 68da ldr r2, [r3, #12] - 8004160: 68fb ldr r3, [r7, #12] - 8004162: 6b9b ldr r3, [r3, #56] ; 0x38 - 8004164: b2d2 uxtb r2, r2 - 8004166: 701a strb r2, [r3, #0] + 80041aa: 68fb ldr r3, [r7, #12] + 80041ac: 681b ldr r3, [r3, #0] + 80041ae: 68da ldr r2, [r3, #12] + 80041b0: 68fb ldr r3, [r7, #12] + 80041b2: 6b9b ldr r3, [r3, #56] ; 0x38 + 80041b4: b2d2 uxtb r2, r2 + 80041b6: 701a strb r2, [r3, #0] hspi->pRxBuffPtr++; - 8004168: 68fb ldr r3, [r7, #12] - 800416a: 6b9b ldr r3, [r3, #56] ; 0x38 - 800416c: 1c5a adds r2, r3, #1 - 800416e: 68fb ldr r3, [r7, #12] - 8004170: 639a str r2, [r3, #56] ; 0x38 + 80041b8: 68fb ldr r3, [r7, #12] + 80041ba: 6b9b ldr r3, [r3, #56] ; 0x38 + 80041bc: 1c5a adds r2, r3, #1 + 80041be: 68fb ldr r3, [r7, #12] + 80041c0: 639a str r2, [r3, #56] ; 0x38 hspi->RxXferCount--; - 8004172: 68fb ldr r3, [r7, #12] - 8004174: 8fdb ldrh r3, [r3, #62] ; 0x3e - 8004176: b29b uxth r3, r3 - 8004178: 3b01 subs r3, #1 - 800417a: b29a uxth r2, r3 - 800417c: 68fb ldr r3, [r7, #12] - 800417e: 87da strh r2, [r3, #62] ; 0x3e + 80041c2: 68fb ldr r3, [r7, #12] + 80041c4: 8fdb ldrh r3, [r3, #62] ; 0x3e + 80041c6: b29b uxth r3, r3 + 80041c8: 3b01 subs r3, #1 + 80041ca: b29a uxth r2, r3 + 80041cc: 68fb ldr r3, [r7, #12] + 80041ce: 87da strh r2, [r3, #62] ; 0x3e /* Next Data is a Transmission (Tx). Tx is allowed */ txallowed = 1U; - 8004180: 2301 movs r3, #1 - 8004182: 62fb str r3, [r7, #44] ; 0x2c + 80041d0: 2301 movs r3, #1 + 80041d2: 62fb str r3, [r7, #44] ; 0x2c } if ((((HAL_GetTick() - tickstart) >= Timeout) && ((Timeout != HAL_MAX_DELAY))) || (Timeout == 0U)) - 8004184: f7fd fcd0 bl 8001b28 - 8004188: 4602 mov r2, r0 - 800418a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800418c: 1ad3 subs r3, r2, r3 - 800418e: 6bba ldr r2, [r7, #56] ; 0x38 - 8004190: 429a cmp r2, r3 - 8004192: d803 bhi.n 800419c - 8004194: 6bbb ldr r3, [r7, #56] ; 0x38 - 8004196: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 800419a: d102 bne.n 80041a2 - 800419c: 6bbb ldr r3, [r7, #56] ; 0x38 - 800419e: 2b00 cmp r3, #0 - 80041a0: d103 bne.n 80041aa + 80041d4: f7fd fcd0 bl 8001b78 + 80041d8: 4602 mov r2, r0 + 80041da: 6a7b ldr r3, [r7, #36] ; 0x24 + 80041dc: 1ad3 subs r3, r2, r3 + 80041de: 6bba ldr r2, [r7, #56] ; 0x38 + 80041e0: 429a cmp r2, r3 + 80041e2: d803 bhi.n 80041ec + 80041e4: 6bbb ldr r3, [r7, #56] ; 0x38 + 80041e6: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 80041ea: d102 bne.n 80041f2 + 80041ec: 6bbb ldr r3, [r7, #56] ; 0x38 + 80041ee: 2b00 cmp r3, #0 + 80041f0: d103 bne.n 80041fa { errorcode = HAL_TIMEOUT; - 80041a2: 2303 movs r3, #3 - 80041a4: f887 302b strb.w r3, [r7, #43] ; 0x2b + 80041f2: 2303 movs r3, #3 + 80041f4: f887 302b strb.w r3, [r7, #43] ; 0x2b goto error; - 80041a8: e029 b.n 80041fe + 80041f8: e029 b.n 800424e while ((hspi->TxXferCount > 0U) || (hspi->RxXferCount > 0U)) - 80041aa: 68fb ldr r3, [r7, #12] - 80041ac: 8edb ldrh r3, [r3, #54] ; 0x36 - 80041ae: b29b uxth r3, r3 - 80041b0: 2b00 cmp r3, #0 - 80041b2: d1a2 bne.n 80040fa - 80041b4: 68fb ldr r3, [r7, #12] - 80041b6: 8fdb ldrh r3, [r3, #62] ; 0x3e - 80041b8: b29b uxth r3, r3 - 80041ba: 2b00 cmp r3, #0 - 80041bc: d19d bne.n 80040fa + 80041fa: 68fb ldr r3, [r7, #12] + 80041fc: 8edb ldrh r3, [r3, #54] ; 0x36 + 80041fe: b29b uxth r3, r3 + 8004200: 2b00 cmp r3, #0 + 8004202: d1a2 bne.n 800414a + 8004204: 68fb ldr r3, [r7, #12] + 8004206: 8fdb ldrh r3, [r3, #62] ; 0x3e + 8004208: b29b uxth r3, r3 + 800420a: 2b00 cmp r3, #0 + 800420c: d19d bne.n 800414a } } #endif /* USE_SPI_CRC */ /* Check the end of the transaction */ if (SPI_EndRxTxTransaction(hspi, Timeout, tickstart) != HAL_OK) - 80041be: 6a7a ldr r2, [r7, #36] ; 0x24 - 80041c0: 6bb9 ldr r1, [r7, #56] ; 0x38 - 80041c2: 68f8 ldr r0, [r7, #12] - 80041c4: f000 f904 bl 80043d0 - 80041c8: 4603 mov r3, r0 - 80041ca: 2b00 cmp r3, #0 - 80041cc: d006 beq.n 80041dc + 800420e: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004210: 6bb9 ldr r1, [r7, #56] ; 0x38 + 8004212: 68f8 ldr r0, [r7, #12] + 8004214: f000 f904 bl 8004420 + 8004218: 4603 mov r3, r0 + 800421a: 2b00 cmp r3, #0 + 800421c: d006 beq.n 800422c { errorcode = HAL_ERROR; - 80041ce: 2301 movs r3, #1 - 80041d0: f887 302b strb.w r3, [r7, #43] ; 0x2b + 800421e: 2301 movs r3, #1 + 8004220: f887 302b strb.w r3, [r7, #43] ; 0x2b hspi->ErrorCode = HAL_SPI_ERROR_FLAG; - 80041d4: 68fb ldr r3, [r7, #12] - 80041d6: 2220 movs r2, #32 - 80041d8: 655a str r2, [r3, #84] ; 0x54 + 8004224: 68fb ldr r3, [r7, #12] + 8004226: 2220 movs r2, #32 + 8004228: 655a str r2, [r3, #84] ; 0x54 goto error; - 80041da: e010 b.n 80041fe + 800422a: e010 b.n 800424e } /* Clear overrun flag in 2 Lines communication mode because received is not read */ if (hspi->Init.Direction == SPI_DIRECTION_2LINES) - 80041dc: 68fb ldr r3, [r7, #12] - 80041de: 689b ldr r3, [r3, #8] - 80041e0: 2b00 cmp r3, #0 - 80041e2: d10b bne.n 80041fc + 800422c: 68fb ldr r3, [r7, #12] + 800422e: 689b ldr r3, [r3, #8] + 8004230: 2b00 cmp r3, #0 + 8004232: d10b bne.n 800424c { __HAL_SPI_CLEAR_OVRFLAG(hspi); - 80041e4: 2300 movs r3, #0 - 80041e6: 617b str r3, [r7, #20] - 80041e8: 68fb ldr r3, [r7, #12] - 80041ea: 681b ldr r3, [r3, #0] - 80041ec: 68db ldr r3, [r3, #12] - 80041ee: 617b str r3, [r7, #20] - 80041f0: 68fb ldr r3, [r7, #12] - 80041f2: 681b ldr r3, [r3, #0] - 80041f4: 689b ldr r3, [r3, #8] - 80041f6: 617b str r3, [r7, #20] - 80041f8: 697b ldr r3, [r7, #20] - 80041fa: e000 b.n 80041fe + 8004234: 2300 movs r3, #0 + 8004236: 617b str r3, [r7, #20] + 8004238: 68fb ldr r3, [r7, #12] + 800423a: 681b ldr r3, [r3, #0] + 800423c: 68db ldr r3, [r3, #12] + 800423e: 617b str r3, [r7, #20] + 8004240: 68fb ldr r3, [r7, #12] + 8004242: 681b ldr r3, [r3, #0] + 8004244: 689b ldr r3, [r3, #8] + 8004246: 617b str r3, [r7, #20] + 8004248: 697b ldr r3, [r7, #20] + 800424a: e000 b.n 800424e } error : - 80041fc: bf00 nop + 800424c: bf00 nop hspi->State = HAL_SPI_STATE_READY; - 80041fe: 68fb ldr r3, [r7, #12] - 8004200: 2201 movs r2, #1 - 8004202: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 800424e: 68fb ldr r3, [r7, #12] + 8004250: 2201 movs r2, #1 + 8004252: f883 2051 strb.w r2, [r3, #81] ; 0x51 __HAL_UNLOCK(hspi); - 8004206: 68fb ldr r3, [r7, #12] - 8004208: 2200 movs r2, #0 - 800420a: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8004256: 68fb ldr r3, [r7, #12] + 8004258: 2200 movs r2, #0 + 800425a: f883 2050 strb.w r2, [r3, #80] ; 0x50 return errorcode; - 800420e: f897 302b ldrb.w r3, [r7, #43] ; 0x2b + 800425e: f897 302b ldrb.w r3, [r7, #43] ; 0x2b } - 8004212: 4618 mov r0, r3 - 8004214: 3730 adds r7, #48 ; 0x30 - 8004216: 46bd mov sp, r7 - 8004218: bd80 pop {r7, pc} + 8004262: 4618 mov r0, r3 + 8004264: 3730 adds r7, #48 ; 0x30 + 8004266: 46bd mov sp, r7 + 8004268: bd80 pop {r7, pc} ... -0800421c : +0800426c : * @param Tickstart tick start value * @retval HAL status */ static HAL_StatusTypeDef SPI_WaitFlagStateUntilTimeout(SPI_HandleTypeDef *hspi, uint32_t Flag, FlagStatus State, uint32_t Timeout, uint32_t Tickstart) { - 800421c: b580 push {r7, lr} - 800421e: b088 sub sp, #32 - 8004220: af00 add r7, sp, #0 - 8004222: 60f8 str r0, [r7, #12] - 8004224: 60b9 str r1, [r7, #8] - 8004226: 603b str r3, [r7, #0] - 8004228: 4613 mov r3, r2 - 800422a: 71fb strb r3, [r7, #7] + 800426c: b580 push {r7, lr} + 800426e: b088 sub sp, #32 + 8004270: af00 add r7, sp, #0 + 8004272: 60f8 str r0, [r7, #12] + 8004274: 60b9 str r1, [r7, #8] + 8004276: 603b str r3, [r7, #0] + 8004278: 4613 mov r3, r2 + 800427a: 71fb strb r3, [r7, #7] __IO uint32_t count; uint32_t tmp_timeout; uint32_t tmp_tickstart; /* Adjust Timeout value in case of end of transfer */ tmp_timeout = Timeout - (HAL_GetTick() - Tickstart); - 800422c: f7fd fc7c bl 8001b28 - 8004230: 4602 mov r2, r0 - 8004232: 6abb ldr r3, [r7, #40] ; 0x28 - 8004234: 1a9b subs r3, r3, r2 - 8004236: 683a ldr r2, [r7, #0] - 8004238: 4413 add r3, r2 - 800423a: 61fb str r3, [r7, #28] + 800427c: f7fd fc7c bl 8001b78 + 8004280: 4602 mov r2, r0 + 8004282: 6abb ldr r3, [r7, #40] ; 0x28 + 8004284: 1a9b subs r3, r3, r2 + 8004286: 683a ldr r2, [r7, #0] + 8004288: 4413 add r3, r2 + 800428a: 61fb str r3, [r7, #28] tmp_tickstart = HAL_GetTick(); - 800423c: f7fd fc74 bl 8001b28 - 8004240: 61b8 str r0, [r7, #24] + 800428c: f7fd fc74 bl 8001b78 + 8004290: 61b8 str r0, [r7, #24] /* Calculate Timeout based on a software loop to avoid blocking issue if Systick is disabled */ count = tmp_timeout * ((SystemCoreClock * 32U) >> 20U); - 8004242: 4b39 ldr r3, [pc, #228] ; (8004328 ) - 8004244: 681b ldr r3, [r3, #0] - 8004246: 015b lsls r3, r3, #5 - 8004248: 0d1b lsrs r3, r3, #20 - 800424a: 69fa ldr r2, [r7, #28] - 800424c: fb02 f303 mul.w r3, r2, r3 - 8004250: 617b str r3, [r7, #20] + 8004292: 4b39 ldr r3, [pc, #228] ; (8004378 ) + 8004294: 681b ldr r3, [r3, #0] + 8004296: 015b lsls r3, r3, #5 + 8004298: 0d1b lsrs r3, r3, #20 + 800429a: 69fa ldr r2, [r7, #28] + 800429c: fb02 f303 mul.w r3, r2, r3 + 80042a0: 617b str r3, [r7, #20] while ((__HAL_SPI_GET_FLAG(hspi, Flag) ? SET : RESET) != State) - 8004252: e054 b.n 80042fe + 80042a2: e054 b.n 800434e { if (Timeout != HAL_MAX_DELAY) - 8004254: 683b ldr r3, [r7, #0] - 8004256: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 800425a: d050 beq.n 80042fe + 80042a4: 683b ldr r3, [r7, #0] + 80042a6: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 80042aa: d050 beq.n 800434e { if (((HAL_GetTick() - tmp_tickstart) >= tmp_timeout) || (tmp_timeout == 0U)) - 800425c: f7fd fc64 bl 8001b28 - 8004260: 4602 mov r2, r0 - 8004262: 69bb ldr r3, [r7, #24] - 8004264: 1ad3 subs r3, r2, r3 - 8004266: 69fa ldr r2, [r7, #28] - 8004268: 429a cmp r2, r3 - 800426a: d902 bls.n 8004272 - 800426c: 69fb ldr r3, [r7, #28] - 800426e: 2b00 cmp r3, #0 - 8004270: d13d bne.n 80042ee + 80042ac: f7fd fc64 bl 8001b78 + 80042b0: 4602 mov r2, r0 + 80042b2: 69bb ldr r3, [r7, #24] + 80042b4: 1ad3 subs r3, r2, r3 + 80042b6: 69fa ldr r2, [r7, #28] + 80042b8: 429a cmp r2, r3 + 80042ba: d902 bls.n 80042c2 + 80042bc: 69fb ldr r3, [r7, #28] + 80042be: 2b00 cmp r3, #0 + 80042c0: d13d bne.n 800433e /* Disable the SPI and reset the CRC: the CRC value should be cleared on both master and slave sides in order to resynchronize the master and slave for their respective CRC calculation */ /* Disable TXE, RXNE and ERR interrupts for the interrupt process */ __HAL_SPI_DISABLE_IT(hspi, (SPI_IT_TXE | SPI_IT_RXNE | SPI_IT_ERR)); - 8004272: 68fb ldr r3, [r7, #12] - 8004274: 681b ldr r3, [r3, #0] - 8004276: 685a ldr r2, [r3, #4] - 8004278: 68fb ldr r3, [r7, #12] - 800427a: 681b ldr r3, [r3, #0] - 800427c: f022 02e0 bic.w r2, r2, #224 ; 0xe0 - 8004280: 605a str r2, [r3, #4] + 80042c2: 68fb ldr r3, [r7, #12] + 80042c4: 681b ldr r3, [r3, #0] + 80042c6: 685a ldr r2, [r3, #4] + 80042c8: 68fb ldr r3, [r7, #12] + 80042ca: 681b ldr r3, [r3, #0] + 80042cc: f022 02e0 bic.w r2, r2, #224 ; 0xe0 + 80042d0: 605a str r2, [r3, #4] if ((hspi->Init.Mode == SPI_MODE_MASTER) && ((hspi->Init.Direction == SPI_DIRECTION_1LINE) - 8004282: 68fb ldr r3, [r7, #12] - 8004284: 685b ldr r3, [r3, #4] - 8004286: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 800428a: d111 bne.n 80042b0 - 800428c: 68fb ldr r3, [r7, #12] - 800428e: 689b ldr r3, [r3, #8] - 8004290: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 8004294: d004 beq.n 80042a0 + 80042d2: 68fb ldr r3, [r7, #12] + 80042d4: 685b ldr r3, [r3, #4] + 80042d6: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 80042da: d111 bne.n 8004300 + 80042dc: 68fb ldr r3, [r7, #12] + 80042de: 689b ldr r3, [r3, #8] + 80042e0: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 80042e4: d004 beq.n 80042f0 || (hspi->Init.Direction == SPI_DIRECTION_2LINES_RXONLY))) - 8004296: 68fb ldr r3, [r7, #12] - 8004298: 689b ldr r3, [r3, #8] - 800429a: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 800429e: d107 bne.n 80042b0 + 80042e6: 68fb ldr r3, [r7, #12] + 80042e8: 689b ldr r3, [r3, #8] + 80042ea: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 80042ee: d107 bne.n 8004300 { /* Disable SPI peripheral */ __HAL_SPI_DISABLE(hspi); - 80042a0: 68fb ldr r3, [r7, #12] - 80042a2: 681b ldr r3, [r3, #0] - 80042a4: 681a ldr r2, [r3, #0] - 80042a6: 68fb ldr r3, [r7, #12] - 80042a8: 681b ldr r3, [r3, #0] - 80042aa: f022 0240 bic.w r2, r2, #64 ; 0x40 - 80042ae: 601a str r2, [r3, #0] + 80042f0: 68fb ldr r3, [r7, #12] + 80042f2: 681b ldr r3, [r3, #0] + 80042f4: 681a ldr r2, [r3, #0] + 80042f6: 68fb ldr r3, [r7, #12] + 80042f8: 681b ldr r3, [r3, #0] + 80042fa: f022 0240 bic.w r2, r2, #64 ; 0x40 + 80042fe: 601a str r2, [r3, #0] } /* Reset CRC Calculation */ if (hspi->Init.CRCCalculation == SPI_CRCCALCULATION_ENABLE) - 80042b0: 68fb ldr r3, [r7, #12] - 80042b2: 6a9b ldr r3, [r3, #40] ; 0x28 - 80042b4: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 - 80042b8: d10f bne.n 80042da + 8004300: 68fb ldr r3, [r7, #12] + 8004302: 6a9b ldr r3, [r3, #40] ; 0x28 + 8004304: f5b3 5f00 cmp.w r3, #8192 ; 0x2000 + 8004308: d10f bne.n 800432a { SPI_RESET_CRC(hspi); - 80042ba: 68fb ldr r3, [r7, #12] - 80042bc: 681b ldr r3, [r3, #0] - 80042be: 681a ldr r2, [r3, #0] - 80042c0: 68fb ldr r3, [r7, #12] - 80042c2: 681b ldr r3, [r3, #0] - 80042c4: f422 5200 bic.w r2, r2, #8192 ; 0x2000 - 80042c8: 601a str r2, [r3, #0] - 80042ca: 68fb ldr r3, [r7, #12] - 80042cc: 681b ldr r3, [r3, #0] - 80042ce: 681a ldr r2, [r3, #0] - 80042d0: 68fb ldr r3, [r7, #12] - 80042d2: 681b ldr r3, [r3, #0] - 80042d4: f442 5200 orr.w r2, r2, #8192 ; 0x2000 - 80042d8: 601a str r2, [r3, #0] + 800430a: 68fb ldr r3, [r7, #12] + 800430c: 681b ldr r3, [r3, #0] + 800430e: 681a ldr r2, [r3, #0] + 8004310: 68fb ldr r3, [r7, #12] + 8004312: 681b ldr r3, [r3, #0] + 8004314: f422 5200 bic.w r2, r2, #8192 ; 0x2000 + 8004318: 601a str r2, [r3, #0] + 800431a: 68fb ldr r3, [r7, #12] + 800431c: 681b ldr r3, [r3, #0] + 800431e: 681a ldr r2, [r3, #0] + 8004320: 68fb ldr r3, [r7, #12] + 8004322: 681b ldr r3, [r3, #0] + 8004324: f442 5200 orr.w r2, r2, #8192 ; 0x2000 + 8004328: 601a str r2, [r3, #0] } hspi->State = HAL_SPI_STATE_READY; - 80042da: 68fb ldr r3, [r7, #12] - 80042dc: 2201 movs r2, #1 - 80042de: f883 2051 strb.w r2, [r3, #81] ; 0x51 + 800432a: 68fb ldr r3, [r7, #12] + 800432c: 2201 movs r2, #1 + 800432e: f883 2051 strb.w r2, [r3, #81] ; 0x51 /* Process Unlocked */ __HAL_UNLOCK(hspi); - 80042e2: 68fb ldr r3, [r7, #12] - 80042e4: 2200 movs r2, #0 - 80042e6: f883 2050 strb.w r2, [r3, #80] ; 0x50 + 8004332: 68fb ldr r3, [r7, #12] + 8004334: 2200 movs r2, #0 + 8004336: f883 2050 strb.w r2, [r3, #80] ; 0x50 return HAL_TIMEOUT; - 80042ea: 2303 movs r3, #3 - 80042ec: e017 b.n 800431e + 800433a: 2303 movs r3, #3 + 800433c: e017 b.n 800436e } /* If Systick is disabled or not incremented, deactivate timeout to go in disable loop procedure */ if(count == 0U) - 80042ee: 697b ldr r3, [r7, #20] - 80042f0: 2b00 cmp r3, #0 - 80042f2: d101 bne.n 80042f8 + 800433e: 697b ldr r3, [r7, #20] + 8004340: 2b00 cmp r3, #0 + 8004342: d101 bne.n 8004348 { tmp_timeout = 0U; - 80042f4: 2300 movs r3, #0 - 80042f6: 61fb str r3, [r7, #28] + 8004344: 2300 movs r3, #0 + 8004346: 61fb str r3, [r7, #28] } count--; - 80042f8: 697b ldr r3, [r7, #20] - 80042fa: 3b01 subs r3, #1 - 80042fc: 617b str r3, [r7, #20] + 8004348: 697b ldr r3, [r7, #20] + 800434a: 3b01 subs r3, #1 + 800434c: 617b str r3, [r7, #20] while ((__HAL_SPI_GET_FLAG(hspi, Flag) ? SET : RESET) != State) - 80042fe: 68fb ldr r3, [r7, #12] - 8004300: 681b ldr r3, [r3, #0] - 8004302: 689a ldr r2, [r3, #8] - 8004304: 68bb ldr r3, [r7, #8] - 8004306: 4013 ands r3, r2 - 8004308: 68ba ldr r2, [r7, #8] - 800430a: 429a cmp r2, r3 - 800430c: bf0c ite eq - 800430e: 2301 moveq r3, #1 - 8004310: 2300 movne r3, #0 - 8004312: b2db uxtb r3, r3 - 8004314: 461a mov r2, r3 - 8004316: 79fb ldrb r3, [r7, #7] - 8004318: 429a cmp r2, r3 - 800431a: d19b bne.n 8004254 + 800434e: 68fb ldr r3, [r7, #12] + 8004350: 681b ldr r3, [r3, #0] + 8004352: 689a ldr r2, [r3, #8] + 8004354: 68bb ldr r3, [r7, #8] + 8004356: 4013 ands r3, r2 + 8004358: 68ba ldr r2, [r7, #8] + 800435a: 429a cmp r2, r3 + 800435c: bf0c ite eq + 800435e: 2301 moveq r3, #1 + 8004360: 2300 movne r3, #0 + 8004362: b2db uxtb r3, r3 + 8004364: 461a mov r2, r3 + 8004366: 79fb ldrb r3, [r7, #7] + 8004368: 429a cmp r2, r3 + 800436a: d19b bne.n 80042a4 } } return HAL_OK; - 800431c: 2300 movs r3, #0 + 800436c: 2300 movs r3, #0 } - 800431e: 4618 mov r0, r3 - 8004320: 3720 adds r7, #32 - 8004322: 46bd mov sp, r7 - 8004324: bd80 pop {r7, pc} - 8004326: bf00 nop - 8004328: 20000000 .word 0x20000000 + 800436e: 4618 mov r0, r3 + 8004370: 3720 adds r7, #32 + 8004372: 46bd mov sp, r7 + 8004374: bd80 pop {r7, pc} + 8004376: bf00 nop + 8004378: 20000000 .word 0x20000000 -0800432c : +0800437c : * @param Timeout Timeout duration * @param Tickstart tick start value * @retval HAL status */ static HAL_StatusTypeDef SPI_EndRxTransaction(SPI_HandleTypeDef *hspi, uint32_t Timeout, uint32_t Tickstart) { - 800432c: b580 push {r7, lr} - 800432e: b086 sub sp, #24 - 8004330: af02 add r7, sp, #8 - 8004332: 60f8 str r0, [r7, #12] - 8004334: 60b9 str r1, [r7, #8] - 8004336: 607a str r2, [r7, #4] + 800437c: b580 push {r7, lr} + 800437e: b086 sub sp, #24 + 8004380: af02 add r7, sp, #8 + 8004382: 60f8 str r0, [r7, #12] + 8004384: 60b9 str r1, [r7, #8] + 8004386: 607a str r2, [r7, #4] if ((hspi->Init.Mode == SPI_MODE_MASTER) && ((hspi->Init.Direction == SPI_DIRECTION_1LINE) - 8004338: 68fb ldr r3, [r7, #12] - 800433a: 685b ldr r3, [r3, #4] - 800433c: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 8004340: d111 bne.n 8004366 - 8004342: 68fb ldr r3, [r7, #12] - 8004344: 689b ldr r3, [r3, #8] - 8004346: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 800434a: d004 beq.n 8004356 + 8004388: 68fb ldr r3, [r7, #12] + 800438a: 685b ldr r3, [r3, #4] + 800438c: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 8004390: d111 bne.n 80043b6 + 8004392: 68fb ldr r3, [r7, #12] + 8004394: 689b ldr r3, [r3, #8] + 8004396: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 800439a: d004 beq.n 80043a6 || (hspi->Init.Direction == SPI_DIRECTION_2LINES_RXONLY))) - 800434c: 68fb ldr r3, [r7, #12] - 800434e: 689b ldr r3, [r3, #8] - 8004350: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8004354: d107 bne.n 8004366 + 800439c: 68fb ldr r3, [r7, #12] + 800439e: 689b ldr r3, [r3, #8] + 80043a0: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 80043a4: d107 bne.n 80043b6 { /* Disable SPI peripheral */ __HAL_SPI_DISABLE(hspi); - 8004356: 68fb ldr r3, [r7, #12] - 8004358: 681b ldr r3, [r3, #0] - 800435a: 681a ldr r2, [r3, #0] - 800435c: 68fb ldr r3, [r7, #12] - 800435e: 681b ldr r3, [r3, #0] - 8004360: f022 0240 bic.w r2, r2, #64 ; 0x40 - 8004364: 601a str r2, [r3, #0] + 80043a6: 68fb ldr r3, [r7, #12] + 80043a8: 681b ldr r3, [r3, #0] + 80043aa: 681a ldr r2, [r3, #0] + 80043ac: 68fb ldr r3, [r7, #12] + 80043ae: 681b ldr r3, [r3, #0] + 80043b0: f022 0240 bic.w r2, r2, #64 ; 0x40 + 80043b4: 601a str r2, [r3, #0] } if ((hspi->Init.Mode == SPI_MODE_MASTER) && (hspi->Init.Direction == SPI_DIRECTION_2LINES_RXONLY)) - 8004366: 68fb ldr r3, [r7, #12] - 8004368: 685b ldr r3, [r3, #4] - 800436a: f5b3 7f82 cmp.w r3, #260 ; 0x104 - 800436e: d117 bne.n 80043a0 - 8004370: 68fb ldr r3, [r7, #12] - 8004372: 689b ldr r3, [r3, #8] - 8004374: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8004378: d112 bne.n 80043a0 + 80043b6: 68fb ldr r3, [r7, #12] + 80043b8: 685b ldr r3, [r3, #4] + 80043ba: f5b3 7f82 cmp.w r3, #260 ; 0x104 + 80043be: d117 bne.n 80043f0 + 80043c0: 68fb ldr r3, [r7, #12] + 80043c2: 689b ldr r3, [r3, #8] + 80043c4: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 80043c8: d112 bne.n 80043f0 { /* Wait the RXNE reset */ if (SPI_WaitFlagStateUntilTimeout(hspi, SPI_FLAG_RXNE, RESET, Timeout, Tickstart) != HAL_OK) - 800437a: 687b ldr r3, [r7, #4] - 800437c: 9300 str r3, [sp, #0] - 800437e: 68bb ldr r3, [r7, #8] - 8004380: 2200 movs r2, #0 - 8004382: 2101 movs r1, #1 - 8004384: 68f8 ldr r0, [r7, #12] - 8004386: f7ff ff49 bl 800421c - 800438a: 4603 mov r3, r0 - 800438c: 2b00 cmp r3, #0 - 800438e: d01a beq.n 80043c6 + 80043ca: 687b ldr r3, [r7, #4] + 80043cc: 9300 str r3, [sp, #0] + 80043ce: 68bb ldr r3, [r7, #8] + 80043d0: 2200 movs r2, #0 + 80043d2: 2101 movs r1, #1 + 80043d4: 68f8 ldr r0, [r7, #12] + 80043d6: f7ff ff49 bl 800426c + 80043da: 4603 mov r3, r0 + 80043dc: 2b00 cmp r3, #0 + 80043de: d01a beq.n 8004416 { SET_BIT(hspi->ErrorCode, HAL_SPI_ERROR_FLAG); - 8004390: 68fb ldr r3, [r7, #12] - 8004392: 6d5b ldr r3, [r3, #84] ; 0x54 - 8004394: f043 0220 orr.w r2, r3, #32 - 8004398: 68fb ldr r3, [r7, #12] - 800439a: 655a str r2, [r3, #84] ; 0x54 + 80043e0: 68fb ldr r3, [r7, #12] + 80043e2: 6d5b ldr r3, [r3, #84] ; 0x54 + 80043e4: f043 0220 orr.w r2, r3, #32 + 80043e8: 68fb ldr r3, [r7, #12] + 80043ea: 655a str r2, [r3, #84] ; 0x54 return HAL_TIMEOUT; - 800439c: 2303 movs r3, #3 - 800439e: e013 b.n 80043c8 + 80043ec: 2303 movs r3, #3 + 80043ee: e013 b.n 8004418 } } else { /* Control the BSY flag */ if (SPI_WaitFlagStateUntilTimeout(hspi, SPI_FLAG_BSY, RESET, Timeout, Tickstart) != HAL_OK) - 80043a0: 687b ldr r3, [r7, #4] - 80043a2: 9300 str r3, [sp, #0] - 80043a4: 68bb ldr r3, [r7, #8] - 80043a6: 2200 movs r2, #0 - 80043a8: 2180 movs r1, #128 ; 0x80 - 80043aa: 68f8 ldr r0, [r7, #12] - 80043ac: f7ff ff36 bl 800421c - 80043b0: 4603 mov r3, r0 - 80043b2: 2b00 cmp r3, #0 - 80043b4: d007 beq.n 80043c6 + 80043f0: 687b ldr r3, [r7, #4] + 80043f2: 9300 str r3, [sp, #0] + 80043f4: 68bb ldr r3, [r7, #8] + 80043f6: 2200 movs r2, #0 + 80043f8: 2180 movs r1, #128 ; 0x80 + 80043fa: 68f8 ldr r0, [r7, #12] + 80043fc: f7ff ff36 bl 800426c + 8004400: 4603 mov r3, r0 + 8004402: 2b00 cmp r3, #0 + 8004404: d007 beq.n 8004416 { SET_BIT(hspi->ErrorCode, HAL_SPI_ERROR_FLAG); - 80043b6: 68fb ldr r3, [r7, #12] - 80043b8: 6d5b ldr r3, [r3, #84] ; 0x54 - 80043ba: f043 0220 orr.w r2, r3, #32 - 80043be: 68fb ldr r3, [r7, #12] - 80043c0: 655a str r2, [r3, #84] ; 0x54 + 8004406: 68fb ldr r3, [r7, #12] + 8004408: 6d5b ldr r3, [r3, #84] ; 0x54 + 800440a: f043 0220 orr.w r2, r3, #32 + 800440e: 68fb ldr r3, [r7, #12] + 8004410: 655a str r2, [r3, #84] ; 0x54 return HAL_TIMEOUT; - 80043c2: 2303 movs r3, #3 - 80043c4: e000 b.n 80043c8 + 8004412: 2303 movs r3, #3 + 8004414: e000 b.n 8004418 } } return HAL_OK; - 80043c6: 2300 movs r3, #0 + 8004416: 2300 movs r3, #0 } - 80043c8: 4618 mov r0, r3 - 80043ca: 3710 adds r7, #16 - 80043cc: 46bd mov sp, r7 - 80043ce: bd80 pop {r7, pc} + 8004418: 4618 mov r0, r3 + 800441a: 3710 adds r7, #16 + 800441c: 46bd mov sp, r7 + 800441e: bd80 pop {r7, pc} -080043d0 : +08004420 : * @param Timeout Timeout duration * @param Tickstart tick start value * @retval HAL status */ static HAL_StatusTypeDef SPI_EndRxTxTransaction(SPI_HandleTypeDef *hspi, uint32_t Timeout, uint32_t Tickstart) { - 80043d0: b580 push {r7, lr} - 80043d2: b086 sub sp, #24 - 80043d4: af02 add r7, sp, #8 - 80043d6: 60f8 str r0, [r7, #12] - 80043d8: 60b9 str r1, [r7, #8] - 80043da: 607a str r2, [r7, #4] + 8004420: b580 push {r7, lr} + 8004422: b086 sub sp, #24 + 8004424: af02 add r7, sp, #8 + 8004426: 60f8 str r0, [r7, #12] + 8004428: 60b9 str r1, [r7, #8] + 800442a: 607a str r2, [r7, #4] /* Control the BSY flag */ if (SPI_WaitFlagStateUntilTimeout(hspi, SPI_FLAG_BSY, RESET, Timeout, Tickstart) != HAL_OK) - 80043dc: 687b ldr r3, [r7, #4] - 80043de: 9300 str r3, [sp, #0] - 80043e0: 68bb ldr r3, [r7, #8] - 80043e2: 2200 movs r2, #0 - 80043e4: 2180 movs r1, #128 ; 0x80 - 80043e6: 68f8 ldr r0, [r7, #12] - 80043e8: f7ff ff18 bl 800421c - 80043ec: 4603 mov r3, r0 - 80043ee: 2b00 cmp r3, #0 - 80043f0: d007 beq.n 8004402 + 800442c: 687b ldr r3, [r7, #4] + 800442e: 9300 str r3, [sp, #0] + 8004430: 68bb ldr r3, [r7, #8] + 8004432: 2200 movs r2, #0 + 8004434: 2180 movs r1, #128 ; 0x80 + 8004436: 68f8 ldr r0, [r7, #12] + 8004438: f7ff ff18 bl 800426c + 800443c: 4603 mov r3, r0 + 800443e: 2b00 cmp r3, #0 + 8004440: d007 beq.n 8004452 { SET_BIT(hspi->ErrorCode, HAL_SPI_ERROR_FLAG); - 80043f2: 68fb ldr r3, [r7, #12] - 80043f4: 6d5b ldr r3, [r3, #84] ; 0x54 - 80043f6: f043 0220 orr.w r2, r3, #32 - 80043fa: 68fb ldr r3, [r7, #12] - 80043fc: 655a str r2, [r3, #84] ; 0x54 + 8004442: 68fb ldr r3, [r7, #12] + 8004444: 6d5b ldr r3, [r3, #84] ; 0x54 + 8004446: f043 0220 orr.w r2, r3, #32 + 800444a: 68fb ldr r3, [r7, #12] + 800444c: 655a str r2, [r3, #84] ; 0x54 return HAL_TIMEOUT; - 80043fe: 2303 movs r3, #3 - 8004400: e000 b.n 8004404 + 800444e: 2303 movs r3, #3 + 8004450: e000 b.n 8004454 } return HAL_OK; - 8004402: 2300 movs r3, #0 + 8004452: 2300 movs r3, #0 } - 8004404: 4618 mov r0, r3 - 8004406: 3710 adds r7, #16 - 8004408: 46bd mov sp, r7 - 800440a: bd80 pop {r7, pc} + 8004454: 4618 mov r0, r3 + 8004456: 3710 adds r7, #16 + 8004458: 46bd mov sp, r7 + 800445a: bd80 pop {r7, pc} -0800440c : +0800445c : * @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) { - 800440c: b580 push {r7, lr} - 800440e: b084 sub sp, #16 - 8004410: af00 add r7, sp, #0 - 8004412: 60f8 str r0, [r7, #12] - 8004414: 60b9 str r1, [r7, #8] - 8004416: 607a str r2, [r7, #4] + 800445c: b580 push {r7, lr} + 800445e: b084 sub sp, #16 + 8004460: af00 add r7, sp, #0 + 8004462: 60f8 str r0, [r7, #12] + 8004464: 60b9 str r1, [r7, #8] + 8004466: 607a str r2, [r7, #4] /* Check the SRAM handle parameter */ if ((hsram == NULL) || (hsram->Init.BurstAccessMode == FSMC_BURST_ACCESS_MODE_ENABLE)) - 8004418: 68fb ldr r3, [r7, #12] - 800441a: 2b00 cmp r3, #0 - 800441c: d004 beq.n 8004428 - 800441e: 68fb ldr r3, [r7, #12] - 8004420: 699b ldr r3, [r3, #24] - 8004422: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8004426: d101 bne.n 800442c + 8004468: 68fb ldr r3, [r7, #12] + 800446a: 2b00 cmp r3, #0 + 800446c: d004 beq.n 8004478 + 800446e: 68fb ldr r3, [r7, #12] + 8004470: 699b ldr r3, [r3, #24] + 8004472: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8004476: d101 bne.n 800447c { return HAL_ERROR; - 8004428: 2301 movs r3, #1 - 800442a: e038 b.n 800449e + 8004478: 2301 movs r3, #1 + 800447a: e038 b.n 80044ee } if (hsram->State == HAL_SRAM_STATE_RESET) - 800442c: 68fb ldr r3, [r7, #12] - 800442e: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 - 8004432: b2db uxtb r3, r3 - 8004434: 2b00 cmp r3, #0 - 8004436: d106 bne.n 8004446 + 800447c: 68fb ldr r3, [r7, #12] + 800447e: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 + 8004482: b2db uxtb r3, r3 + 8004484: 2b00 cmp r3, #0 + 8004486: d106 bne.n 8004496 { /* Allocate lock resource and initialize it */ hsram->Lock = HAL_UNLOCKED; - 8004438: 68fb ldr r3, [r7, #12] - 800443a: 2200 movs r2, #0 - 800443c: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 8004488: 68fb ldr r3, [r7, #12] + 800448a: 2200 movs r2, #0 + 800448c: 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); - 8004440: 68f8 ldr r0, [r7, #12] - 8004442: f7fd f9f1 bl 8001828 + 8004490: 68f8 ldr r0, [r7, #12] + 8004492: f7fd fa0d bl 80018b0 #endif /* USE_HAL_SRAM_REGISTER_CALLBACKS */ } /* Initialize SRAM control Interface */ (void)FSMC_NORSRAM_Init(hsram->Instance, &(hsram->Init)); - 8004446: 68fb ldr r3, [r7, #12] - 8004448: 681a ldr r2, [r3, #0] - 800444a: 68fb ldr r3, [r7, #12] - 800444c: 3308 adds r3, #8 - 800444e: 4619 mov r1, r3 - 8004450: 4610 mov r0, r2 - 8004452: f000 fac9 bl 80049e8 + 8004496: 68fb ldr r3, [r7, #12] + 8004498: 681a ldr r2, [r3, #0] + 800449a: 68fb ldr r3, [r7, #12] + 800449c: 3308 adds r3, #8 + 800449e: 4619 mov r1, r3 + 80044a0: 4610 mov r0, r2 + 80044a2: f000 fac9 bl 8004a38 /* Initialize SRAM timing Interface */ (void)FSMC_NORSRAM_Timing_Init(hsram->Instance, Timing, hsram->Init.NSBank); - 8004456: 68fb ldr r3, [r7, #12] - 8004458: 6818 ldr r0, [r3, #0] - 800445a: 68fb ldr r3, [r7, #12] - 800445c: 689b ldr r3, [r3, #8] - 800445e: 461a mov r2, r3 - 8004460: 68b9 ldr r1, [r7, #8] - 8004462: f000 fb2b bl 8004abc + 80044a6: 68fb ldr r3, [r7, #12] + 80044a8: 6818 ldr r0, [r3, #0] + 80044aa: 68fb ldr r3, [r7, #12] + 80044ac: 689b ldr r3, [r3, #8] + 80044ae: 461a mov r2, r3 + 80044b0: 68b9 ldr r1, [r7, #8] + 80044b2: f000 fb2b bl 8004b0c /* Initialize SRAM extended mode timing Interface */ (void)FSMC_NORSRAM_Extended_Timing_Init(hsram->Extended, ExtTiming, hsram->Init.NSBank, - 8004466: 68fb ldr r3, [r7, #12] - 8004468: 6858 ldr r0, [r3, #4] - 800446a: 68fb ldr r3, [r7, #12] - 800446c: 689a ldr r2, [r3, #8] - 800446e: 68fb ldr r3, [r7, #12] - 8004470: 6b1b ldr r3, [r3, #48] ; 0x30 - 8004472: 6879 ldr r1, [r7, #4] - 8004474: f000 fb56 bl 8004b24 + 80044b6: 68fb ldr r3, [r7, #12] + 80044b8: 6858 ldr r0, [r3, #4] + 80044ba: 68fb ldr r3, [r7, #12] + 80044bc: 689a ldr r2, [r3, #8] + 80044be: 68fb ldr r3, [r7, #12] + 80044c0: 6b1b ldr r3, [r3, #48] ; 0x30 + 80044c2: 6879 ldr r1, [r7, #4] + 80044c4: f000 fb56 bl 8004b74 hsram->Init.ExtendedMode); /* Enable the NORSRAM device */ __FSMC_NORSRAM_ENABLE(hsram->Instance, hsram->Init.NSBank); - 8004478: 68fb ldr r3, [r7, #12] - 800447a: 681b ldr r3, [r3, #0] - 800447c: 68fa ldr r2, [r7, #12] - 800447e: 6892 ldr r2, [r2, #8] - 8004480: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 8004484: 68fb ldr r3, [r7, #12] - 8004486: 681b ldr r3, [r3, #0] - 8004488: 68fa ldr r2, [r7, #12] - 800448a: 6892 ldr r2, [r2, #8] - 800448c: f041 0101 orr.w r1, r1, #1 - 8004490: f843 1022 str.w r1, [r3, r2, lsl #2] + 80044c8: 68fb ldr r3, [r7, #12] + 80044ca: 681b ldr r3, [r3, #0] + 80044cc: 68fa ldr r2, [r7, #12] + 80044ce: 6892 ldr r2, [r2, #8] + 80044d0: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 80044d4: 68fb ldr r3, [r7, #12] + 80044d6: 681b ldr r3, [r3, #0] + 80044d8: 68fa ldr r2, [r7, #12] + 80044da: 6892 ldr r2, [r2, #8] + 80044dc: f041 0101 orr.w r1, r1, #1 + 80044e0: f843 1022 str.w r1, [r3, r2, lsl #2] /* Initialize the SRAM controller state */ hsram->State = HAL_SRAM_STATE_READY; - 8004494: 68fb ldr r3, [r7, #12] - 8004496: 2201 movs r2, #1 - 8004498: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 80044e4: 68fb ldr r3, [r7, #12] + 80044e6: 2201 movs r2, #1 + 80044e8: f883 2041 strb.w r2, [r3, #65] ; 0x41 return HAL_OK; - 800449c: 2300 movs r3, #0 + 80044ec: 2300 movs r3, #0 } - 800449e: 4618 mov r0, r3 - 80044a0: 3710 adds r7, #16 - 80044a2: 46bd mov sp, r7 - 80044a4: bd80 pop {r7, pc} + 80044ee: 4618 mov r0, r3 + 80044f0: 3710 adds r7, #16 + 80044f2: 46bd mov sp, r7 + 80044f4: bd80 pop {r7, pc} -080044a6 : +080044f6 : * 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) { - 80044a6: b580 push {r7, lr} - 80044a8: b082 sub sp, #8 - 80044aa: af00 add r7, sp, #0 - 80044ac: 6078 str r0, [r7, #4] + 80044f6: b580 push {r7, lr} + 80044f8: b082 sub sp, #8 + 80044fa: af00 add r7, sp, #0 + 80044fc: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 80044ae: 687b ldr r3, [r7, #4] - 80044b0: 2b00 cmp r3, #0 - 80044b2: d101 bne.n 80044b8 + 80044fe: 687b ldr r3, [r7, #4] + 8004500: 2b00 cmp r3, #0 + 8004502: d101 bne.n 8004508 { return HAL_ERROR; - 80044b4: 2301 movs r3, #1 - 80044b6: e041 b.n 800453c + 8004504: 2301 movs r3, #1 + 8004506: e041 b.n 800458c 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) - 80044b8: 687b ldr r3, [r7, #4] - 80044ba: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80044be: b2db uxtb r3, r3 - 80044c0: 2b00 cmp r3, #0 - 80044c2: d106 bne.n 80044d2 + 8004508: 687b ldr r3, [r7, #4] + 800450a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 800450e: b2db uxtb r3, r3 + 8004510: 2b00 cmp r3, #0 + 8004512: d106 bne.n 8004522 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 80044c4: 687b ldr r3, [r7, #4] - 80044c6: 2200 movs r2, #0 - 80044c8: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8004514: 687b ldr r3, [r7, #4] + 8004516: 2200 movs r2, #0 + 8004518: 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); - 80044cc: 6878 ldr r0, [r7, #4] - 80044ce: f7fd f931 bl 8001734 + 800451c: 6878 ldr r0, [r7, #4] + 800451e: f7fd f94d bl 80017bc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 80044d2: 687b ldr r3, [r7, #4] - 80044d4: 2202 movs r2, #2 - 80044d6: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8004522: 687b ldr r3, [r7, #4] + 8004524: 2202 movs r2, #2 + 8004526: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Set the Time Base configuration */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 80044da: 687b ldr r3, [r7, #4] - 80044dc: 681a ldr r2, [r3, #0] - 80044de: 687b ldr r3, [r7, #4] - 80044e0: 3304 adds r3, #4 - 80044e2: 4619 mov r1, r3 - 80044e4: 4610 mov r0, r2 - 80044e6: f000 f987 bl 80047f8 + 800452a: 687b ldr r3, [r7, #4] + 800452c: 681a ldr r2, [r3, #0] + 800452e: 687b ldr r3, [r7, #4] + 8004530: 3304 adds r3, #4 + 8004532: 4619 mov r1, r3 + 8004534: 4610 mov r0, r2 + 8004536: f000 f987 bl 8004848 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 80044ea: 687b ldr r3, [r7, #4] - 80044ec: 2201 movs r2, #1 - 80044ee: f883 2046 strb.w r2, [r3, #70] ; 0x46 + 800453a: 687b ldr r3, [r7, #4] + 800453c: 2201 movs r2, #1 + 800453e: f883 2046 strb.w r2, [r3, #70] ; 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 80044f2: 687b ldr r3, [r7, #4] - 80044f4: 2201 movs r2, #1 - 80044f6: f883 203e strb.w r2, [r3, #62] ; 0x3e - 80044fa: 687b ldr r3, [r7, #4] - 80044fc: 2201 movs r2, #1 - 80044fe: f883 203f strb.w r2, [r3, #63] ; 0x3f - 8004502: 687b ldr r3, [r7, #4] - 8004504: 2201 movs r2, #1 - 8004506: f883 2040 strb.w r2, [r3, #64] ; 0x40 - 800450a: 687b ldr r3, [r7, #4] - 800450c: 2201 movs r2, #1 - 800450e: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 8004542: 687b ldr r3, [r7, #4] + 8004544: 2201 movs r2, #1 + 8004546: f883 203e strb.w r2, [r3, #62] ; 0x3e + 800454a: 687b ldr r3, [r7, #4] + 800454c: 2201 movs r2, #1 + 800454e: f883 203f strb.w r2, [r3, #63] ; 0x3f + 8004552: 687b ldr r3, [r7, #4] + 8004554: 2201 movs r2, #1 + 8004556: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 800455a: 687b ldr r3, [r7, #4] + 800455c: 2201 movs r2, #1 + 800455e: f883 2041 strb.w r2, [r3, #65] ; 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8004512: 687b ldr r3, [r7, #4] - 8004514: 2201 movs r2, #1 - 8004516: f883 2042 strb.w r2, [r3, #66] ; 0x42 - 800451a: 687b ldr r3, [r7, #4] - 800451c: 2201 movs r2, #1 - 800451e: f883 2043 strb.w r2, [r3, #67] ; 0x43 - 8004522: 687b ldr r3, [r7, #4] - 8004524: 2201 movs r2, #1 - 8004526: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 800452a: 687b ldr r3, [r7, #4] - 800452c: 2201 movs r2, #1 - 800452e: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8004562: 687b ldr r3, [r7, #4] + 8004564: 2201 movs r2, #1 + 8004566: f883 2042 strb.w r2, [r3, #66] ; 0x42 + 800456a: 687b ldr r3, [r7, #4] + 800456c: 2201 movs r2, #1 + 800456e: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 8004572: 687b ldr r3, [r7, #4] + 8004574: 2201 movs r2, #1 + 8004576: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 800457a: 687b ldr r3, [r7, #4] + 800457c: 2201 movs r2, #1 + 800457e: f883 2045 strb.w r2, [r3, #69] ; 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8004532: 687b ldr r3, [r7, #4] - 8004534: 2201 movs r2, #1 - 8004536: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8004582: 687b ldr r3, [r7, #4] + 8004584: 2201 movs r2, #1 + 8004586: f883 203d strb.w r2, [r3, #61] ; 0x3d return HAL_OK; - 800453a: 2300 movs r3, #0 + 800458a: 2300 movs r3, #0 } - 800453c: 4618 mov r0, r3 - 800453e: 3708 adds r7, #8 - 8004540: 46bd mov sp, r7 - 8004542: bd80 pop {r7, pc} + 800458c: 4618 mov r0, r3 + 800458e: 3708 adds r7, #8 + 8004590: 46bd mov sp, r7 + 8004592: bd80 pop {r7, pc} -08004544 : +08004594 : * @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) { - 8004544: b480 push {r7} - 8004546: b083 sub sp, #12 - 8004548: af00 add r7, sp, #0 - 800454a: 6078 str r0, [r7, #4] + 8004594: b480 push {r7} + 8004596: b083 sub sp, #12 + 8004598: af00 add r7, sp, #0 + 800459a: 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); - 800454c: 687b ldr r3, [r7, #4] - 800454e: 681b ldr r3, [r3, #0] - 8004550: 68da ldr r2, [r3, #12] - 8004552: 687b ldr r3, [r7, #4] - 8004554: 681b ldr r3, [r3, #0] - 8004556: f022 0201 bic.w r2, r2, #1 - 800455a: 60da str r2, [r3, #12] + 800459c: 687b ldr r3, [r7, #4] + 800459e: 681b ldr r3, [r3, #0] + 80045a0: 68da ldr r2, [r3, #12] + 80045a2: 687b ldr r3, [r7, #4] + 80045a4: 681b ldr r3, [r3, #0] + 80045a6: f022 0201 bic.w r2, r2, #1 + 80045aa: 60da str r2, [r3, #12] /* Disable the Peripheral */ __HAL_TIM_DISABLE(htim); - 800455c: 687b ldr r3, [r7, #4] - 800455e: 681b ldr r3, [r3, #0] - 8004560: 6a1a ldr r2, [r3, #32] - 8004562: f241 1311 movw r3, #4369 ; 0x1111 - 8004566: 4013 ands r3, r2 - 8004568: 2b00 cmp r3, #0 - 800456a: d10f bne.n 800458c - 800456c: 687b ldr r3, [r7, #4] - 800456e: 681b ldr r3, [r3, #0] - 8004570: 6a1a ldr r2, [r3, #32] - 8004572: f240 4344 movw r3, #1092 ; 0x444 - 8004576: 4013 ands r3, r2 - 8004578: 2b00 cmp r3, #0 - 800457a: d107 bne.n 800458c - 800457c: 687b ldr r3, [r7, #4] - 800457e: 681b ldr r3, [r3, #0] - 8004580: 681a ldr r2, [r3, #0] - 8004582: 687b ldr r3, [r7, #4] - 8004584: 681b ldr r3, [r3, #0] - 8004586: f022 0201 bic.w r2, r2, #1 - 800458a: 601a str r2, [r3, #0] + 80045ac: 687b ldr r3, [r7, #4] + 80045ae: 681b ldr r3, [r3, #0] + 80045b0: 6a1a ldr r2, [r3, #32] + 80045b2: f241 1311 movw r3, #4369 ; 0x1111 + 80045b6: 4013 ands r3, r2 + 80045b8: 2b00 cmp r3, #0 + 80045ba: d10f bne.n 80045dc + 80045bc: 687b ldr r3, [r7, #4] + 80045be: 681b ldr r3, [r3, #0] + 80045c0: 6a1a ldr r2, [r3, #32] + 80045c2: f240 4344 movw r3, #1092 ; 0x444 + 80045c6: 4013 ands r3, r2 + 80045c8: 2b00 cmp r3, #0 + 80045ca: d107 bne.n 80045dc + 80045cc: 687b ldr r3, [r7, #4] + 80045ce: 681b ldr r3, [r3, #0] + 80045d0: 681a ldr r2, [r3, #0] + 80045d2: 687b ldr r3, [r7, #4] + 80045d4: 681b ldr r3, [r3, #0] + 80045d6: f022 0201 bic.w r2, r2, #1 + 80045da: 601a str r2, [r3, #0] /* Set the TIM state */ htim->State = HAL_TIM_STATE_READY; - 800458c: 687b ldr r3, [r7, #4] - 800458e: 2201 movs r2, #1 - 8004590: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80045dc: 687b ldr r3, [r7, #4] + 80045de: 2201 movs r2, #1 + 80045e0: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Return function status */ return HAL_OK; - 8004594: 2300 movs r3, #0 + 80045e4: 2300 movs r3, #0 } - 8004596: 4618 mov r0, r3 - 8004598: 370c adds r7, #12 - 800459a: 46bd mov sp, r7 - 800459c: bc80 pop {r7} - 800459e: 4770 bx lr + 80045e6: 4618 mov r0, r3 + 80045e8: 370c adds r7, #12 + 80045ea: 46bd mov sp, r7 + 80045ec: bc80 pop {r7} + 80045ee: 4770 bx lr -080045a0 : +080045f0 : * @brief This function handles TIM interrupts requests. * @param htim TIM handle * @retval None */ void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) { - 80045a0: b580 push {r7, lr} - 80045a2: b082 sub sp, #8 - 80045a4: af00 add r7, sp, #0 - 80045a6: 6078 str r0, [r7, #4] + 80045f0: b580 push {r7, lr} + 80045f2: b082 sub sp, #8 + 80045f4: af00 add r7, sp, #0 + 80045f6: 6078 str r0, [r7, #4] /* Capture compare 1 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC1) != RESET) - 80045a8: 687b ldr r3, [r7, #4] - 80045aa: 681b ldr r3, [r3, #0] - 80045ac: 691b ldr r3, [r3, #16] - 80045ae: f003 0302 and.w r3, r3, #2 - 80045b2: 2b02 cmp r3, #2 - 80045b4: d122 bne.n 80045fc + 80045f8: 687b ldr r3, [r7, #4] + 80045fa: 681b ldr r3, [r3, #0] + 80045fc: 691b ldr r3, [r3, #16] + 80045fe: f003 0302 and.w r3, r3, #2 + 8004602: 2b02 cmp r3, #2 + 8004604: d122 bne.n 800464c { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC1) != RESET) - 80045b6: 687b ldr r3, [r7, #4] - 80045b8: 681b ldr r3, [r3, #0] - 80045ba: 68db ldr r3, [r3, #12] - 80045bc: f003 0302 and.w r3, r3, #2 - 80045c0: 2b02 cmp r3, #2 - 80045c2: d11b bne.n 80045fc + 8004606: 687b ldr r3, [r7, #4] + 8004608: 681b ldr r3, [r3, #0] + 800460a: 68db ldr r3, [r3, #12] + 800460c: f003 0302 and.w r3, r3, #2 + 8004610: 2b02 cmp r3, #2 + 8004612: d11b bne.n 800464c { { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC1); - 80045c4: 687b ldr r3, [r7, #4] - 80045c6: 681b ldr r3, [r3, #0] - 80045c8: f06f 0202 mvn.w r2, #2 - 80045cc: 611a str r2, [r3, #16] + 8004614: 687b ldr r3, [r7, #4] + 8004616: 681b ldr r3, [r3, #0] + 8004618: f06f 0202 mvn.w r2, #2 + 800461c: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; - 80045ce: 687b ldr r3, [r7, #4] - 80045d0: 2201 movs r2, #1 - 80045d2: 771a strb r2, [r3, #28] + 800461e: 687b ldr r3, [r7, #4] + 8004620: 2201 movs r2, #1 + 8004622: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) - 80045d4: 687b ldr r3, [r7, #4] - 80045d6: 681b ldr r3, [r3, #0] - 80045d8: 699b ldr r3, [r3, #24] - 80045da: f003 0303 and.w r3, r3, #3 - 80045de: 2b00 cmp r3, #0 - 80045e0: d003 beq.n 80045ea + 8004624: 687b ldr r3, [r7, #4] + 8004626: 681b ldr r3, [r3, #0] + 8004628: 699b ldr r3, [r3, #24] + 800462a: f003 0303 and.w r3, r3, #3 + 800462e: 2b00 cmp r3, #0 + 8004630: d003 beq.n 800463a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 80045e2: 6878 ldr r0, [r7, #4] - 80045e4: f000 f8ed bl 80047c2 - 80045e8: e005 b.n 80045f6 + 8004632: 6878 ldr r0, [r7, #4] + 8004634: f000 f8ed bl 8004812 + 8004638: e005 b.n 8004646 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 80045ea: 6878 ldr r0, [r7, #4] - 80045ec: f000 f8e0 bl 80047b0 + 800463a: 6878 ldr r0, [r7, #4] + 800463c: f000 f8e0 bl 8004800 HAL_TIM_PWM_PulseFinishedCallback(htim); - 80045f0: 6878 ldr r0, [r7, #4] - 80045f2: f000 f8ef bl 80047d4 + 8004640: 6878 ldr r0, [r7, #4] + 8004642: f000 f8ef bl 8004824 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 80045f6: 687b ldr r3, [r7, #4] - 80045f8: 2200 movs r2, #0 - 80045fa: 771a strb r2, [r3, #28] + 8004646: 687b ldr r3, [r7, #4] + 8004648: 2200 movs r2, #0 + 800464a: 771a strb r2, [r3, #28] } } } /* Capture compare 2 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC2) != RESET) - 80045fc: 687b ldr r3, [r7, #4] - 80045fe: 681b ldr r3, [r3, #0] - 8004600: 691b ldr r3, [r3, #16] - 8004602: f003 0304 and.w r3, r3, #4 - 8004606: 2b04 cmp r3, #4 - 8004608: d122 bne.n 8004650 + 800464c: 687b ldr r3, [r7, #4] + 800464e: 681b ldr r3, [r3, #0] + 8004650: 691b ldr r3, [r3, #16] + 8004652: f003 0304 and.w r3, r3, #4 + 8004656: 2b04 cmp r3, #4 + 8004658: d122 bne.n 80046a0 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC2) != RESET) - 800460a: 687b ldr r3, [r7, #4] - 800460c: 681b ldr r3, [r3, #0] - 800460e: 68db ldr r3, [r3, #12] - 8004610: f003 0304 and.w r3, r3, #4 - 8004614: 2b04 cmp r3, #4 - 8004616: d11b bne.n 8004650 + 800465a: 687b ldr r3, [r7, #4] + 800465c: 681b ldr r3, [r3, #0] + 800465e: 68db ldr r3, [r3, #12] + 8004660: f003 0304 and.w r3, r3, #4 + 8004664: 2b04 cmp r3, #4 + 8004666: d11b bne.n 80046a0 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC2); - 8004618: 687b ldr r3, [r7, #4] - 800461a: 681b ldr r3, [r3, #0] - 800461c: f06f 0204 mvn.w r2, #4 - 8004620: 611a str r2, [r3, #16] + 8004668: 687b ldr r3, [r7, #4] + 800466a: 681b ldr r3, [r3, #0] + 800466c: f06f 0204 mvn.w r2, #4 + 8004670: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; - 8004622: 687b ldr r3, [r7, #4] - 8004624: 2202 movs r2, #2 - 8004626: 771a strb r2, [r3, #28] + 8004672: 687b ldr r3, [r7, #4] + 8004674: 2202 movs r2, #2 + 8004676: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) - 8004628: 687b ldr r3, [r7, #4] - 800462a: 681b ldr r3, [r3, #0] - 800462c: 699b ldr r3, [r3, #24] - 800462e: f403 7340 and.w r3, r3, #768 ; 0x300 - 8004632: 2b00 cmp r3, #0 - 8004634: d003 beq.n 800463e + 8004678: 687b ldr r3, [r7, #4] + 800467a: 681b ldr r3, [r3, #0] + 800467c: 699b ldr r3, [r3, #24] + 800467e: f403 7340 and.w r3, r3, #768 ; 0x300 + 8004682: 2b00 cmp r3, #0 + 8004684: d003 beq.n 800468e { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8004636: 6878 ldr r0, [r7, #4] - 8004638: f000 f8c3 bl 80047c2 - 800463c: e005 b.n 800464a + 8004686: 6878 ldr r0, [r7, #4] + 8004688: f000 f8c3 bl 8004812 + 800468c: e005 b.n 800469a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 800463e: 6878 ldr r0, [r7, #4] - 8004640: f000 f8b6 bl 80047b0 + 800468e: 6878 ldr r0, [r7, #4] + 8004690: f000 f8b6 bl 8004800 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8004644: 6878 ldr r0, [r7, #4] - 8004646: f000 f8c5 bl 80047d4 + 8004694: 6878 ldr r0, [r7, #4] + 8004696: f000 f8c5 bl 8004824 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 800464a: 687b ldr r3, [r7, #4] - 800464c: 2200 movs r2, #0 - 800464e: 771a strb r2, [r3, #28] + 800469a: 687b ldr r3, [r7, #4] + 800469c: 2200 movs r2, #0 + 800469e: 771a strb r2, [r3, #28] } } /* Capture compare 3 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC3) != RESET) - 8004650: 687b ldr r3, [r7, #4] - 8004652: 681b ldr r3, [r3, #0] - 8004654: 691b ldr r3, [r3, #16] - 8004656: f003 0308 and.w r3, r3, #8 - 800465a: 2b08 cmp r3, #8 - 800465c: d122 bne.n 80046a4 + 80046a0: 687b ldr r3, [r7, #4] + 80046a2: 681b ldr r3, [r3, #0] + 80046a4: 691b ldr r3, [r3, #16] + 80046a6: f003 0308 and.w r3, r3, #8 + 80046aa: 2b08 cmp r3, #8 + 80046ac: d122 bne.n 80046f4 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC3) != RESET) - 800465e: 687b ldr r3, [r7, #4] - 8004660: 681b ldr r3, [r3, #0] - 8004662: 68db ldr r3, [r3, #12] - 8004664: f003 0308 and.w r3, r3, #8 - 8004668: 2b08 cmp r3, #8 - 800466a: d11b bne.n 80046a4 + 80046ae: 687b ldr r3, [r7, #4] + 80046b0: 681b ldr r3, [r3, #0] + 80046b2: 68db ldr r3, [r3, #12] + 80046b4: f003 0308 and.w r3, r3, #8 + 80046b8: 2b08 cmp r3, #8 + 80046ba: d11b bne.n 80046f4 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC3); - 800466c: 687b ldr r3, [r7, #4] - 800466e: 681b ldr r3, [r3, #0] - 8004670: f06f 0208 mvn.w r2, #8 - 8004674: 611a str r2, [r3, #16] + 80046bc: 687b ldr r3, [r7, #4] + 80046be: 681b ldr r3, [r3, #0] + 80046c0: f06f 0208 mvn.w r2, #8 + 80046c4: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; - 8004676: 687b ldr r3, [r7, #4] - 8004678: 2204 movs r2, #4 - 800467a: 771a strb r2, [r3, #28] + 80046c6: 687b ldr r3, [r7, #4] + 80046c8: 2204 movs r2, #4 + 80046ca: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) - 800467c: 687b ldr r3, [r7, #4] - 800467e: 681b ldr r3, [r3, #0] - 8004680: 69db ldr r3, [r3, #28] - 8004682: f003 0303 and.w r3, r3, #3 - 8004686: 2b00 cmp r3, #0 - 8004688: d003 beq.n 8004692 + 80046cc: 687b ldr r3, [r7, #4] + 80046ce: 681b ldr r3, [r3, #0] + 80046d0: 69db ldr r3, [r3, #28] + 80046d2: f003 0303 and.w r3, r3, #3 + 80046d6: 2b00 cmp r3, #0 + 80046d8: d003 beq.n 80046e2 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 800468a: 6878 ldr r0, [r7, #4] - 800468c: f000 f899 bl 80047c2 - 8004690: e005 b.n 800469e + 80046da: 6878 ldr r0, [r7, #4] + 80046dc: f000 f899 bl 8004812 + 80046e0: e005 b.n 80046ee { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8004692: 6878 ldr r0, [r7, #4] - 8004694: f000 f88c bl 80047b0 + 80046e2: 6878 ldr r0, [r7, #4] + 80046e4: f000 f88c bl 8004800 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8004698: 6878 ldr r0, [r7, #4] - 800469a: f000 f89b bl 80047d4 + 80046e8: 6878 ldr r0, [r7, #4] + 80046ea: f000 f89b bl 8004824 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 800469e: 687b ldr r3, [r7, #4] - 80046a0: 2200 movs r2, #0 - 80046a2: 771a strb r2, [r3, #28] + 80046ee: 687b ldr r3, [r7, #4] + 80046f0: 2200 movs r2, #0 + 80046f2: 771a strb r2, [r3, #28] } } /* Capture compare 4 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC4) != RESET) - 80046a4: 687b ldr r3, [r7, #4] - 80046a6: 681b ldr r3, [r3, #0] - 80046a8: 691b ldr r3, [r3, #16] - 80046aa: f003 0310 and.w r3, r3, #16 - 80046ae: 2b10 cmp r3, #16 - 80046b0: d122 bne.n 80046f8 + 80046f4: 687b ldr r3, [r7, #4] + 80046f6: 681b ldr r3, [r3, #0] + 80046f8: 691b ldr r3, [r3, #16] + 80046fa: f003 0310 and.w r3, r3, #16 + 80046fe: 2b10 cmp r3, #16 + 8004700: d122 bne.n 8004748 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC4) != RESET) - 80046b2: 687b ldr r3, [r7, #4] - 80046b4: 681b ldr r3, [r3, #0] - 80046b6: 68db ldr r3, [r3, #12] - 80046b8: f003 0310 and.w r3, r3, #16 - 80046bc: 2b10 cmp r3, #16 - 80046be: d11b bne.n 80046f8 + 8004702: 687b ldr r3, [r7, #4] + 8004704: 681b ldr r3, [r3, #0] + 8004706: 68db ldr r3, [r3, #12] + 8004708: f003 0310 and.w r3, r3, #16 + 800470c: 2b10 cmp r3, #16 + 800470e: d11b bne.n 8004748 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC4); - 80046c0: 687b ldr r3, [r7, #4] - 80046c2: 681b ldr r3, [r3, #0] - 80046c4: f06f 0210 mvn.w r2, #16 - 80046c8: 611a str r2, [r3, #16] + 8004710: 687b ldr r3, [r7, #4] + 8004712: 681b ldr r3, [r3, #0] + 8004714: f06f 0210 mvn.w r2, #16 + 8004718: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; - 80046ca: 687b ldr r3, [r7, #4] - 80046cc: 2208 movs r2, #8 - 80046ce: 771a strb r2, [r3, #28] + 800471a: 687b ldr r3, [r7, #4] + 800471c: 2208 movs r2, #8 + 800471e: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) - 80046d0: 687b ldr r3, [r7, #4] - 80046d2: 681b ldr r3, [r3, #0] - 80046d4: 69db ldr r3, [r3, #28] - 80046d6: f403 7340 and.w r3, r3, #768 ; 0x300 - 80046da: 2b00 cmp r3, #0 - 80046dc: d003 beq.n 80046e6 + 8004720: 687b ldr r3, [r7, #4] + 8004722: 681b ldr r3, [r3, #0] + 8004724: 69db ldr r3, [r3, #28] + 8004726: f403 7340 and.w r3, r3, #768 ; 0x300 + 800472a: 2b00 cmp r3, #0 + 800472c: d003 beq.n 8004736 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 80046de: 6878 ldr r0, [r7, #4] - 80046e0: f000 f86f bl 80047c2 - 80046e4: e005 b.n 80046f2 + 800472e: 6878 ldr r0, [r7, #4] + 8004730: f000 f86f bl 8004812 + 8004734: e005 b.n 8004742 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 80046e6: 6878 ldr r0, [r7, #4] - 80046e8: f000 f862 bl 80047b0 + 8004736: 6878 ldr r0, [r7, #4] + 8004738: f000 f862 bl 8004800 HAL_TIM_PWM_PulseFinishedCallback(htim); - 80046ec: 6878 ldr r0, [r7, #4] - 80046ee: f000 f871 bl 80047d4 + 800473c: 6878 ldr r0, [r7, #4] + 800473e: f000 f871 bl 8004824 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 80046f2: 687b ldr r3, [r7, #4] - 80046f4: 2200 movs r2, #0 - 80046f6: 771a strb r2, [r3, #28] + 8004742: 687b ldr r3, [r7, #4] + 8004744: 2200 movs r2, #0 + 8004746: 771a strb r2, [r3, #28] } } /* TIM Update event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_UPDATE) != RESET) - 80046f8: 687b ldr r3, [r7, #4] - 80046fa: 681b ldr r3, [r3, #0] - 80046fc: 691b ldr r3, [r3, #16] - 80046fe: f003 0301 and.w r3, r3, #1 - 8004702: 2b01 cmp r3, #1 - 8004704: d10e bne.n 8004724 + 8004748: 687b ldr r3, [r7, #4] + 800474a: 681b ldr r3, [r3, #0] + 800474c: 691b ldr r3, [r3, #16] + 800474e: f003 0301 and.w r3, r3, #1 + 8004752: 2b01 cmp r3, #1 + 8004754: d10e bne.n 8004774 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_UPDATE) != RESET) - 8004706: 687b ldr r3, [r7, #4] - 8004708: 681b ldr r3, [r3, #0] - 800470a: 68db ldr r3, [r3, #12] - 800470c: f003 0301 and.w r3, r3, #1 - 8004710: 2b01 cmp r3, #1 - 8004712: d107 bne.n 8004724 + 8004756: 687b ldr r3, [r7, #4] + 8004758: 681b ldr r3, [r3, #0] + 800475a: 68db ldr r3, [r3, #12] + 800475c: f003 0301 and.w r3, r3, #1 + 8004760: 2b01 cmp r3, #1 + 8004762: d107 bne.n 8004774 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_UPDATE); - 8004714: 687b ldr r3, [r7, #4] - 8004716: 681b ldr r3, [r3, #0] - 8004718: f06f 0201 mvn.w r2, #1 - 800471c: 611a str r2, [r3, #16] + 8004764: 687b ldr r3, [r7, #4] + 8004766: 681b ldr r3, [r3, #0] + 8004768: f06f 0201 mvn.w r2, #1 + 800476c: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->PeriodElapsedCallback(htim); #else HAL_TIM_PeriodElapsedCallback(htim); - 800471e: 6878 ldr r0, [r7, #4] - 8004720: f002 fbdc bl 8006edc + 800476e: 6878 ldr r0, [r7, #4] + 8004770: f002 fc44 bl 8006ffc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Break input event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_BREAK) != RESET) - 8004724: 687b ldr r3, [r7, #4] - 8004726: 681b ldr r3, [r3, #0] - 8004728: 691b ldr r3, [r3, #16] - 800472a: f003 0380 and.w r3, r3, #128 ; 0x80 - 800472e: 2b80 cmp r3, #128 ; 0x80 - 8004730: d10e bne.n 8004750 + 8004774: 687b ldr r3, [r7, #4] + 8004776: 681b ldr r3, [r3, #0] + 8004778: 691b ldr r3, [r3, #16] + 800477a: f003 0380 and.w r3, r3, #128 ; 0x80 + 800477e: 2b80 cmp r3, #128 ; 0x80 + 8004780: d10e bne.n 80047a0 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_BREAK) != RESET) - 8004732: 687b ldr r3, [r7, #4] - 8004734: 681b ldr r3, [r3, #0] - 8004736: 68db ldr r3, [r3, #12] - 8004738: f003 0380 and.w r3, r3, #128 ; 0x80 - 800473c: 2b80 cmp r3, #128 ; 0x80 - 800473e: d107 bne.n 8004750 + 8004782: 687b ldr r3, [r7, #4] + 8004784: 681b ldr r3, [r3, #0] + 8004786: 68db ldr r3, [r3, #12] + 8004788: f003 0380 and.w r3, r3, #128 ; 0x80 + 800478c: 2b80 cmp r3, #128 ; 0x80 + 800478e: d107 bne.n 80047a0 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_BREAK); - 8004740: 687b ldr r3, [r7, #4] - 8004742: 681b ldr r3, [r3, #0] - 8004744: f06f 0280 mvn.w r2, #128 ; 0x80 - 8004748: 611a str r2, [r3, #16] + 8004790: 687b ldr r3, [r7, #4] + 8004792: 681b ldr r3, [r3, #0] + 8004794: f06f 0280 mvn.w r2, #128 ; 0x80 + 8004798: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->BreakCallback(htim); #else HAL_TIMEx_BreakCallback(htim); - 800474a: 6878 ldr r0, [r7, #4] - 800474c: f000 f943 bl 80049d6 + 800479a: 6878 ldr r0, [r7, #4] + 800479c: f000 f943 bl 8004a26 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Trigger detection event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) - 8004750: 687b ldr r3, [r7, #4] - 8004752: 681b ldr r3, [r3, #0] - 8004754: 691b ldr r3, [r3, #16] - 8004756: f003 0340 and.w r3, r3, #64 ; 0x40 - 800475a: 2b40 cmp r3, #64 ; 0x40 - 800475c: d10e bne.n 800477c + 80047a0: 687b ldr r3, [r7, #4] + 80047a2: 681b ldr r3, [r3, #0] + 80047a4: 691b ldr r3, [r3, #16] + 80047a6: f003 0340 and.w r3, r3, #64 ; 0x40 + 80047aa: 2b40 cmp r3, #64 ; 0x40 + 80047ac: d10e bne.n 80047cc { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) != RESET) - 800475e: 687b ldr r3, [r7, #4] - 8004760: 681b ldr r3, [r3, #0] - 8004762: 68db ldr r3, [r3, #12] - 8004764: f003 0340 and.w r3, r3, #64 ; 0x40 - 8004768: 2b40 cmp r3, #64 ; 0x40 - 800476a: d107 bne.n 800477c + 80047ae: 687b ldr r3, [r7, #4] + 80047b0: 681b ldr r3, [r3, #0] + 80047b2: 68db ldr r3, [r3, #12] + 80047b4: f003 0340 and.w r3, r3, #64 ; 0x40 + 80047b8: 2b40 cmp r3, #64 ; 0x40 + 80047ba: d107 bne.n 80047cc { __HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER); - 800476c: 687b ldr r3, [r7, #4] - 800476e: 681b ldr r3, [r3, #0] - 8004770: f06f 0240 mvn.w r2, #64 ; 0x40 - 8004774: 611a str r2, [r3, #16] + 80047bc: 687b ldr r3, [r7, #4] + 80047be: 681b ldr r3, [r3, #0] + 80047c0: f06f 0240 mvn.w r2, #64 ; 0x40 + 80047c4: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->TriggerCallback(htim); #else HAL_TIM_TriggerCallback(htim); - 8004776: 6878 ldr r0, [r7, #4] - 8004778: f000 f835 bl 80047e6 + 80047c6: 6878 ldr r0, [r7, #4] + 80047c8: f000 f835 bl 8004836 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM commutation event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_COM) != RESET) - 800477c: 687b ldr r3, [r7, #4] - 800477e: 681b ldr r3, [r3, #0] - 8004780: 691b ldr r3, [r3, #16] - 8004782: f003 0320 and.w r3, r3, #32 - 8004786: 2b20 cmp r3, #32 - 8004788: d10e bne.n 80047a8 + 80047cc: 687b ldr r3, [r7, #4] + 80047ce: 681b ldr r3, [r3, #0] + 80047d0: 691b ldr r3, [r3, #16] + 80047d2: f003 0320 and.w r3, r3, #32 + 80047d6: 2b20 cmp r3, #32 + 80047d8: d10e bne.n 80047f8 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_COM) != RESET) - 800478a: 687b ldr r3, [r7, #4] - 800478c: 681b ldr r3, [r3, #0] - 800478e: 68db ldr r3, [r3, #12] - 8004790: f003 0320 and.w r3, r3, #32 - 8004794: 2b20 cmp r3, #32 - 8004796: d107 bne.n 80047a8 + 80047da: 687b ldr r3, [r7, #4] + 80047dc: 681b ldr r3, [r3, #0] + 80047de: 68db ldr r3, [r3, #12] + 80047e0: f003 0320 and.w r3, r3, #32 + 80047e4: 2b20 cmp r3, #32 + 80047e6: d107 bne.n 80047f8 { __HAL_TIM_CLEAR_IT(htim, TIM_FLAG_COM); - 8004798: 687b ldr r3, [r7, #4] - 800479a: 681b ldr r3, [r3, #0] - 800479c: f06f 0220 mvn.w r2, #32 - 80047a0: 611a str r2, [r3, #16] + 80047e8: 687b ldr r3, [r7, #4] + 80047ea: 681b ldr r3, [r3, #0] + 80047ec: f06f 0220 mvn.w r2, #32 + 80047f0: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->CommutationCallback(htim); #else HAL_TIMEx_CommutCallback(htim); - 80047a2: 6878 ldr r0, [r7, #4] - 80047a4: f000 f90e bl 80049c4 + 80047f2: 6878 ldr r0, [r7, #4] + 80047f4: f000 f90e bl 8004a14 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } } - 80047a8: bf00 nop - 80047aa: 3708 adds r7, #8 - 80047ac: 46bd mov sp, r7 - 80047ae: bd80 pop {r7, pc} + 80047f8: bf00 nop + 80047fa: 3708 adds r7, #8 + 80047fc: 46bd mov sp, r7 + 80047fe: bd80 pop {r7, pc} -080047b0 : +08004800 : * @brief Output Compare callback in non-blocking mode * @param htim TIM OC handle * @retval None */ __weak void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim) { - 80047b0: b480 push {r7} - 80047b2: b083 sub sp, #12 - 80047b4: af00 add r7, sp, #0 - 80047b6: 6078 str r0, [r7, #4] + 8004800: b480 push {r7} + 8004802: b083 sub sp, #12 + 8004804: af00 add r7, sp, #0 + 8004806: 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 */ } - 80047b8: bf00 nop - 80047ba: 370c adds r7, #12 - 80047bc: 46bd mov sp, r7 - 80047be: bc80 pop {r7} - 80047c0: 4770 bx lr + 8004808: bf00 nop + 800480a: 370c adds r7, #12 + 800480c: 46bd mov sp, r7 + 800480e: bc80 pop {r7} + 8004810: 4770 bx lr -080047c2 : +08004812 : * @brief Input Capture callback in non-blocking mode * @param htim TIM IC handle * @retval None */ __weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) { - 80047c2: b480 push {r7} - 80047c4: b083 sub sp, #12 - 80047c6: af00 add r7, sp, #0 - 80047c8: 6078 str r0, [r7, #4] + 8004812: b480 push {r7} + 8004814: b083 sub sp, #12 + 8004816: af00 add r7, sp, #0 + 8004818: 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 */ } - 80047ca: bf00 nop - 80047cc: 370c adds r7, #12 - 80047ce: 46bd mov sp, r7 - 80047d0: bc80 pop {r7} - 80047d2: 4770 bx lr + 800481a: bf00 nop + 800481c: 370c adds r7, #12 + 800481e: 46bd mov sp, r7 + 8004820: bc80 pop {r7} + 8004822: 4770 bx lr -080047d4 : +08004824 : * @brief PWM Pulse finished callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) { - 80047d4: b480 push {r7} - 80047d6: b083 sub sp, #12 - 80047d8: af00 add r7, sp, #0 - 80047da: 6078 str r0, [r7, #4] + 8004824: b480 push {r7} + 8004826: b083 sub sp, #12 + 8004828: af00 add r7, sp, #0 + 800482a: 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 */ } - 80047dc: bf00 nop - 80047de: 370c adds r7, #12 - 80047e0: 46bd mov sp, r7 - 80047e2: bc80 pop {r7} - 80047e4: 4770 bx lr + 800482c: bf00 nop + 800482e: 370c adds r7, #12 + 8004830: 46bd mov sp, r7 + 8004832: bc80 pop {r7} + 8004834: 4770 bx lr -080047e6 : +08004836 : * @brief Hall Trigger detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) { - 80047e6: b480 push {r7} - 80047e8: b083 sub sp, #12 - 80047ea: af00 add r7, sp, #0 - 80047ec: 6078 str r0, [r7, #4] + 8004836: b480 push {r7} + 8004838: b083 sub sp, #12 + 800483a: af00 add r7, sp, #0 + 800483c: 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 */ } - 80047ee: bf00 nop - 80047f0: 370c adds r7, #12 - 80047f2: 46bd mov sp, r7 - 80047f4: bc80 pop {r7} - 80047f6: 4770 bx lr + 800483e: bf00 nop + 8004840: 370c adds r7, #12 + 8004842: 46bd mov sp, r7 + 8004844: bc80 pop {r7} + 8004846: 4770 bx lr -080047f8 : +08004848 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure) { - 80047f8: b480 push {r7} - 80047fa: b085 sub sp, #20 - 80047fc: af00 add r7, sp, #0 - 80047fe: 6078 str r0, [r7, #4] - 8004800: 6039 str r1, [r7, #0] + 8004848: b480 push {r7} + 800484a: b085 sub sp, #20 + 800484c: af00 add r7, sp, #0 + 800484e: 6078 str r0, [r7, #4] + 8004850: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 8004802: 687b ldr r3, [r7, #4] - 8004804: 681b ldr r3, [r3, #0] - 8004806: 60fb str r3, [r7, #12] + 8004852: 687b ldr r3, [r7, #4] + 8004854: 681b ldr r3, [r3, #0] + 8004856: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 8004808: 687b ldr r3, [r7, #4] - 800480a: 4a33 ldr r2, [pc, #204] ; (80048d8 ) - 800480c: 4293 cmp r3, r2 - 800480e: d013 beq.n 8004838 - 8004810: 687b ldr r3, [r7, #4] - 8004812: 4a32 ldr r2, [pc, #200] ; (80048dc ) - 8004814: 4293 cmp r3, r2 - 8004816: d00f beq.n 8004838 - 8004818: 687b ldr r3, [r7, #4] - 800481a: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 800481e: d00b beq.n 8004838 - 8004820: 687b ldr r3, [r7, #4] - 8004822: 4a2f ldr r2, [pc, #188] ; (80048e0 ) - 8004824: 4293 cmp r3, r2 - 8004826: d007 beq.n 8004838 - 8004828: 687b ldr r3, [r7, #4] - 800482a: 4a2e ldr r2, [pc, #184] ; (80048e4 ) - 800482c: 4293 cmp r3, r2 - 800482e: d003 beq.n 8004838 - 8004830: 687b ldr r3, [r7, #4] - 8004832: 4a2d ldr r2, [pc, #180] ; (80048e8 ) - 8004834: 4293 cmp r3, r2 - 8004836: d108 bne.n 800484a + 8004858: 687b ldr r3, [r7, #4] + 800485a: 4a33 ldr r2, [pc, #204] ; (8004928 ) + 800485c: 4293 cmp r3, r2 + 800485e: d013 beq.n 8004888 + 8004860: 687b ldr r3, [r7, #4] + 8004862: 4a32 ldr r2, [pc, #200] ; (800492c ) + 8004864: 4293 cmp r3, r2 + 8004866: d00f beq.n 8004888 + 8004868: 687b ldr r3, [r7, #4] + 800486a: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 800486e: d00b beq.n 8004888 + 8004870: 687b ldr r3, [r7, #4] + 8004872: 4a2f ldr r2, [pc, #188] ; (8004930 ) + 8004874: 4293 cmp r3, r2 + 8004876: d007 beq.n 8004888 + 8004878: 687b ldr r3, [r7, #4] + 800487a: 4a2e ldr r2, [pc, #184] ; (8004934 ) + 800487c: 4293 cmp r3, r2 + 800487e: d003 beq.n 8004888 + 8004880: 687b ldr r3, [r7, #4] + 8004882: 4a2d ldr r2, [pc, #180] ; (8004938 ) + 8004884: 4293 cmp r3, r2 + 8004886: d108 bne.n 800489a { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 8004838: 68fb ldr r3, [r7, #12] - 800483a: f023 0370 bic.w r3, r3, #112 ; 0x70 - 800483e: 60fb str r3, [r7, #12] + 8004888: 68fb ldr r3, [r7, #12] + 800488a: f023 0370 bic.w r3, r3, #112 ; 0x70 + 800488e: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 8004840: 683b ldr r3, [r7, #0] - 8004842: 685b ldr r3, [r3, #4] - 8004844: 68fa ldr r2, [r7, #12] - 8004846: 4313 orrs r3, r2 - 8004848: 60fb str r3, [r7, #12] + 8004890: 683b ldr r3, [r7, #0] + 8004892: 685b ldr r3, [r3, #4] + 8004894: 68fa ldr r2, [r7, #12] + 8004896: 4313 orrs r3, r2 + 8004898: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 800484a: 687b ldr r3, [r7, #4] - 800484c: 4a22 ldr r2, [pc, #136] ; (80048d8 ) - 800484e: 4293 cmp r3, r2 - 8004850: d013 beq.n 800487a - 8004852: 687b ldr r3, [r7, #4] - 8004854: 4a21 ldr r2, [pc, #132] ; (80048dc ) - 8004856: 4293 cmp r3, r2 - 8004858: d00f beq.n 800487a - 800485a: 687b ldr r3, [r7, #4] - 800485c: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8004860: d00b beq.n 800487a - 8004862: 687b ldr r3, [r7, #4] - 8004864: 4a1e ldr r2, [pc, #120] ; (80048e0 ) - 8004866: 4293 cmp r3, r2 - 8004868: d007 beq.n 800487a - 800486a: 687b ldr r3, [r7, #4] - 800486c: 4a1d ldr r2, [pc, #116] ; (80048e4 ) - 800486e: 4293 cmp r3, r2 - 8004870: d003 beq.n 800487a - 8004872: 687b ldr r3, [r7, #4] - 8004874: 4a1c ldr r2, [pc, #112] ; (80048e8 ) - 8004876: 4293 cmp r3, r2 - 8004878: d108 bne.n 800488c + 800489a: 687b ldr r3, [r7, #4] + 800489c: 4a22 ldr r2, [pc, #136] ; (8004928 ) + 800489e: 4293 cmp r3, r2 + 80048a0: d013 beq.n 80048ca + 80048a2: 687b ldr r3, [r7, #4] + 80048a4: 4a21 ldr r2, [pc, #132] ; (800492c ) + 80048a6: 4293 cmp r3, r2 + 80048a8: d00f beq.n 80048ca + 80048aa: 687b ldr r3, [r7, #4] + 80048ac: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 80048b0: d00b beq.n 80048ca + 80048b2: 687b ldr r3, [r7, #4] + 80048b4: 4a1e ldr r2, [pc, #120] ; (8004930 ) + 80048b6: 4293 cmp r3, r2 + 80048b8: d007 beq.n 80048ca + 80048ba: 687b ldr r3, [r7, #4] + 80048bc: 4a1d ldr r2, [pc, #116] ; (8004934 ) + 80048be: 4293 cmp r3, r2 + 80048c0: d003 beq.n 80048ca + 80048c2: 687b ldr r3, [r7, #4] + 80048c4: 4a1c ldr r2, [pc, #112] ; (8004938 ) + 80048c6: 4293 cmp r3, r2 + 80048c8: d108 bne.n 80048dc { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 800487a: 68fb ldr r3, [r7, #12] - 800487c: f423 7340 bic.w r3, r3, #768 ; 0x300 - 8004880: 60fb str r3, [r7, #12] + 80048ca: 68fb ldr r3, [r7, #12] + 80048cc: f423 7340 bic.w r3, r3, #768 ; 0x300 + 80048d0: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 8004882: 683b ldr r3, [r7, #0] - 8004884: 68db ldr r3, [r3, #12] - 8004886: 68fa ldr r2, [r7, #12] - 8004888: 4313 orrs r3, r2 - 800488a: 60fb str r3, [r7, #12] + 80048d2: 683b ldr r3, [r7, #0] + 80048d4: 68db ldr r3, [r3, #12] + 80048d6: 68fa ldr r2, [r7, #12] + 80048d8: 4313 orrs r3, r2 + 80048da: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 800488c: 68fb ldr r3, [r7, #12] - 800488e: f023 0280 bic.w r2, r3, #128 ; 0x80 - 8004892: 683b ldr r3, [r7, #0] - 8004894: 695b ldr r3, [r3, #20] - 8004896: 4313 orrs r3, r2 - 8004898: 60fb str r3, [r7, #12] + 80048dc: 68fb ldr r3, [r7, #12] + 80048de: f023 0280 bic.w r2, r3, #128 ; 0x80 + 80048e2: 683b ldr r3, [r7, #0] + 80048e4: 695b ldr r3, [r3, #20] + 80048e6: 4313 orrs r3, r2 + 80048e8: 60fb str r3, [r7, #12] TIMx->CR1 = tmpcr1; - 800489a: 687b ldr r3, [r7, #4] - 800489c: 68fa ldr r2, [r7, #12] - 800489e: 601a str r2, [r3, #0] + 80048ea: 687b ldr r3, [r7, #4] + 80048ec: 68fa ldr r2, [r7, #12] + 80048ee: 601a str r2, [r3, #0] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 80048a0: 683b ldr r3, [r7, #0] - 80048a2: 689a ldr r2, [r3, #8] - 80048a4: 687b ldr r3, [r7, #4] - 80048a6: 62da str r2, [r3, #44] ; 0x2c + 80048f0: 683b ldr r3, [r7, #0] + 80048f2: 689a ldr r2, [r3, #8] + 80048f4: 687b ldr r3, [r7, #4] + 80048f6: 62da str r2, [r3, #44] ; 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 80048a8: 683b ldr r3, [r7, #0] - 80048aa: 681a ldr r2, [r3, #0] - 80048ac: 687b ldr r3, [r7, #4] - 80048ae: 629a str r2, [r3, #40] ; 0x28 + 80048f8: 683b ldr r3, [r7, #0] + 80048fa: 681a ldr r2, [r3, #0] + 80048fc: 687b ldr r3, [r7, #4] + 80048fe: 629a str r2, [r3, #40] ; 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 80048b0: 687b ldr r3, [r7, #4] - 80048b2: 4a09 ldr r2, [pc, #36] ; (80048d8 ) - 80048b4: 4293 cmp r3, r2 - 80048b6: d003 beq.n 80048c0 - 80048b8: 687b ldr r3, [r7, #4] - 80048ba: 4a08 ldr r2, [pc, #32] ; (80048dc ) - 80048bc: 4293 cmp r3, r2 - 80048be: d103 bne.n 80048c8 + 8004900: 687b ldr r3, [r7, #4] + 8004902: 4a09 ldr r2, [pc, #36] ; (8004928 ) + 8004904: 4293 cmp r3, r2 + 8004906: d003 beq.n 8004910 + 8004908: 687b ldr r3, [r7, #4] + 800490a: 4a08 ldr r2, [pc, #32] ; (800492c ) + 800490c: 4293 cmp r3, r2 + 800490e: d103 bne.n 8004918 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 80048c0: 683b ldr r3, [r7, #0] - 80048c2: 691a ldr r2, [r3, #16] - 80048c4: 687b ldr r3, [r7, #4] - 80048c6: 631a str r2, [r3, #48] ; 0x30 + 8004910: 683b ldr r3, [r7, #0] + 8004912: 691a ldr r2, [r3, #16] + 8004914: 687b ldr r3, [r7, #4] + 8004916: 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; - 80048c8: 687b ldr r3, [r7, #4] - 80048ca: 2201 movs r2, #1 - 80048cc: 615a str r2, [r3, #20] + 8004918: 687b ldr r3, [r7, #4] + 800491a: 2201 movs r2, #1 + 800491c: 615a str r2, [r3, #20] } - 80048ce: bf00 nop - 80048d0: 3714 adds r7, #20 - 80048d2: 46bd mov sp, r7 - 80048d4: bc80 pop {r7} - 80048d6: 4770 bx lr - 80048d8: 40012c00 .word 0x40012c00 - 80048dc: 40013400 .word 0x40013400 - 80048e0: 40000400 .word 0x40000400 - 80048e4: 40000800 .word 0x40000800 - 80048e8: 40000c00 .word 0x40000c00 + 800491e: bf00 nop + 8004920: 3714 adds r7, #20 + 8004922: 46bd mov sp, r7 + 8004924: bc80 pop {r7} + 8004926: 4770 bx lr + 8004928: 40012c00 .word 0x40012c00 + 800492c: 40013400 .word 0x40013400 + 8004930: 40000400 .word 0x40000400 + 8004934: 40000800 .word 0x40000800 + 8004938: 40000c00 .word 0x40000c00 -080048ec : +0800493c : * mode. * @retval HAL status */ HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, TIM_MasterConfigTypeDef *sMasterConfig) { - 80048ec: b480 push {r7} - 80048ee: b085 sub sp, #20 - 80048f0: af00 add r7, sp, #0 - 80048f2: 6078 str r0, [r7, #4] - 80048f4: 6039 str r1, [r7, #0] + 800493c: b480 push {r7} + 800493e: b085 sub sp, #20 + 8004940: af00 add r7, sp, #0 + 8004942: 6078 str r0, [r7, #4] + 8004944: 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); - 80048f6: 687b ldr r3, [r7, #4] - 80048f8: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 80048fc: 2b01 cmp r3, #1 - 80048fe: d101 bne.n 8004904 - 8004900: 2302 movs r3, #2 - 8004902: e050 b.n 80049a6 - 8004904: 687b ldr r3, [r7, #4] - 8004906: 2201 movs r2, #1 - 8004908: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8004946: 687b ldr r3, [r7, #4] + 8004948: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800494c: 2b01 cmp r3, #1 + 800494e: d101 bne.n 8004954 + 8004950: 2302 movs r3, #2 + 8004952: e050 b.n 80049f6 + 8004954: 687b ldr r3, [r7, #4] + 8004956: 2201 movs r2, #1 + 8004958: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Change the handler state */ htim->State = HAL_TIM_STATE_BUSY; - 800490c: 687b ldr r3, [r7, #4] - 800490e: 2202 movs r2, #2 - 8004910: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800495c: 687b ldr r3, [r7, #4] + 800495e: 2202 movs r2, #2 + 8004960: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Get the TIMx CR2 register value */ tmpcr2 = htim->Instance->CR2; - 8004914: 687b ldr r3, [r7, #4] - 8004916: 681b ldr r3, [r3, #0] - 8004918: 685b ldr r3, [r3, #4] - 800491a: 60fb str r3, [r7, #12] + 8004964: 687b ldr r3, [r7, #4] + 8004966: 681b ldr r3, [r3, #0] + 8004968: 685b ldr r3, [r3, #4] + 800496a: 60fb str r3, [r7, #12] /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 800491c: 687b ldr r3, [r7, #4] - 800491e: 681b ldr r3, [r3, #0] - 8004920: 689b ldr r3, [r3, #8] - 8004922: 60bb str r3, [r7, #8] + 800496c: 687b ldr r3, [r7, #4] + 800496e: 681b ldr r3, [r3, #0] + 8004970: 689b ldr r3, [r3, #8] + 8004972: 60bb str r3, [r7, #8] /* Reset the MMS Bits */ tmpcr2 &= ~TIM_CR2_MMS; - 8004924: 68fb ldr r3, [r7, #12] - 8004926: f023 0370 bic.w r3, r3, #112 ; 0x70 - 800492a: 60fb str r3, [r7, #12] + 8004974: 68fb ldr r3, [r7, #12] + 8004976: f023 0370 bic.w r3, r3, #112 ; 0x70 + 800497a: 60fb str r3, [r7, #12] /* Select the TRGO source */ tmpcr2 |= sMasterConfig->MasterOutputTrigger; - 800492c: 683b ldr r3, [r7, #0] - 800492e: 681b ldr r3, [r3, #0] - 8004930: 68fa ldr r2, [r7, #12] - 8004932: 4313 orrs r3, r2 - 8004934: 60fb str r3, [r7, #12] + 800497c: 683b ldr r3, [r7, #0] + 800497e: 681b ldr r3, [r3, #0] + 8004980: 68fa ldr r2, [r7, #12] + 8004982: 4313 orrs r3, r2 + 8004984: 60fb str r3, [r7, #12] /* Update TIMx CR2 */ htim->Instance->CR2 = tmpcr2; - 8004936: 687b ldr r3, [r7, #4] - 8004938: 681b ldr r3, [r3, #0] - 800493a: 68fa ldr r2, [r7, #12] - 800493c: 605a str r2, [r3, #4] + 8004986: 687b ldr r3, [r7, #4] + 8004988: 681b ldr r3, [r3, #0] + 800498a: 68fa ldr r2, [r7, #12] + 800498c: 605a str r2, [r3, #4] if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 800493e: 687b ldr r3, [r7, #4] - 8004940: 681b ldr r3, [r3, #0] - 8004942: 4a1b ldr r2, [pc, #108] ; (80049b0 ) - 8004944: 4293 cmp r3, r2 - 8004946: d018 beq.n 800497a - 8004948: 687b ldr r3, [r7, #4] - 800494a: 681b ldr r3, [r3, #0] - 800494c: 4a19 ldr r2, [pc, #100] ; (80049b4 ) - 800494e: 4293 cmp r3, r2 - 8004950: d013 beq.n 800497a - 8004952: 687b ldr r3, [r7, #4] - 8004954: 681b ldr r3, [r3, #0] - 8004956: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 800495a: d00e beq.n 800497a - 800495c: 687b ldr r3, [r7, #4] - 800495e: 681b ldr r3, [r3, #0] - 8004960: 4a15 ldr r2, [pc, #84] ; (80049b8 ) - 8004962: 4293 cmp r3, r2 - 8004964: d009 beq.n 800497a - 8004966: 687b ldr r3, [r7, #4] - 8004968: 681b ldr r3, [r3, #0] - 800496a: 4a14 ldr r2, [pc, #80] ; (80049bc ) - 800496c: 4293 cmp r3, r2 - 800496e: d004 beq.n 800497a - 8004970: 687b ldr r3, [r7, #4] - 8004972: 681b ldr r3, [r3, #0] - 8004974: 4a12 ldr r2, [pc, #72] ; (80049c0 ) - 8004976: 4293 cmp r3, r2 - 8004978: d10c bne.n 8004994 + 800498e: 687b ldr r3, [r7, #4] + 8004990: 681b ldr r3, [r3, #0] + 8004992: 4a1b ldr r2, [pc, #108] ; (8004a00 ) + 8004994: 4293 cmp r3, r2 + 8004996: d018 beq.n 80049ca + 8004998: 687b ldr r3, [r7, #4] + 800499a: 681b ldr r3, [r3, #0] + 800499c: 4a19 ldr r2, [pc, #100] ; (8004a04 ) + 800499e: 4293 cmp r3, r2 + 80049a0: d013 beq.n 80049ca + 80049a2: 687b ldr r3, [r7, #4] + 80049a4: 681b ldr r3, [r3, #0] + 80049a6: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 80049aa: d00e beq.n 80049ca + 80049ac: 687b ldr r3, [r7, #4] + 80049ae: 681b ldr r3, [r3, #0] + 80049b0: 4a15 ldr r2, [pc, #84] ; (8004a08 ) + 80049b2: 4293 cmp r3, r2 + 80049b4: d009 beq.n 80049ca + 80049b6: 687b ldr r3, [r7, #4] + 80049b8: 681b ldr r3, [r3, #0] + 80049ba: 4a14 ldr r2, [pc, #80] ; (8004a0c ) + 80049bc: 4293 cmp r3, r2 + 80049be: d004 beq.n 80049ca + 80049c0: 687b ldr r3, [r7, #4] + 80049c2: 681b ldr r3, [r3, #0] + 80049c4: 4a12 ldr r2, [pc, #72] ; (8004a10 ) + 80049c6: 4293 cmp r3, r2 + 80049c8: d10c bne.n 80049e4 { /* Reset the MSM Bit */ tmpsmcr &= ~TIM_SMCR_MSM; - 800497a: 68bb ldr r3, [r7, #8] - 800497c: f023 0380 bic.w r3, r3, #128 ; 0x80 - 8004980: 60bb str r3, [r7, #8] + 80049ca: 68bb ldr r3, [r7, #8] + 80049cc: f023 0380 bic.w r3, r3, #128 ; 0x80 + 80049d0: 60bb str r3, [r7, #8] /* Set master mode */ tmpsmcr |= sMasterConfig->MasterSlaveMode; - 8004982: 683b ldr r3, [r7, #0] - 8004984: 685b ldr r3, [r3, #4] - 8004986: 68ba ldr r2, [r7, #8] - 8004988: 4313 orrs r3, r2 - 800498a: 60bb str r3, [r7, #8] + 80049d2: 683b ldr r3, [r7, #0] + 80049d4: 685b ldr r3, [r3, #4] + 80049d6: 68ba ldr r2, [r7, #8] + 80049d8: 4313 orrs r3, r2 + 80049da: 60bb str r3, [r7, #8] /* Update TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 800498c: 687b ldr r3, [r7, #4] - 800498e: 681b ldr r3, [r3, #0] - 8004990: 68ba ldr r2, [r7, #8] - 8004992: 609a str r2, [r3, #8] + 80049dc: 687b ldr r3, [r7, #4] + 80049de: 681b ldr r3, [r3, #0] + 80049e0: 68ba ldr r2, [r7, #8] + 80049e2: 609a str r2, [r3, #8] } /* Change the htim state */ htim->State = HAL_TIM_STATE_READY; - 8004994: 687b ldr r3, [r7, #4] - 8004996: 2201 movs r2, #1 - 8004998: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80049e4: 687b ldr r3, [r7, #4] + 80049e6: 2201 movs r2, #1 + 80049e8: f883 203d strb.w r2, [r3, #61] ; 0x3d __HAL_UNLOCK(htim); - 800499c: 687b ldr r3, [r7, #4] - 800499e: 2200 movs r2, #0 - 80049a0: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80049ec: 687b ldr r3, [r7, #4] + 80049ee: 2200 movs r2, #0 + 80049f0: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 80049a4: 2300 movs r3, #0 + 80049f4: 2300 movs r3, #0 } - 80049a6: 4618 mov r0, r3 - 80049a8: 3714 adds r7, #20 - 80049aa: 46bd mov sp, r7 - 80049ac: bc80 pop {r7} - 80049ae: 4770 bx lr - 80049b0: 40012c00 .word 0x40012c00 - 80049b4: 40013400 .word 0x40013400 - 80049b8: 40000400 .word 0x40000400 - 80049bc: 40000800 .word 0x40000800 - 80049c0: 40000c00 .word 0x40000c00 + 80049f6: 4618 mov r0, r3 + 80049f8: 3714 adds r7, #20 + 80049fa: 46bd mov sp, r7 + 80049fc: bc80 pop {r7} + 80049fe: 4770 bx lr + 8004a00: 40012c00 .word 0x40012c00 + 8004a04: 40013400 .word 0x40013400 + 8004a08: 40000400 .word 0x40000400 + 8004a0c: 40000800 .word 0x40000800 + 8004a10: 40000c00 .word 0x40000c00 -080049c4 : +08004a14 : * @brief Hall commutation changed callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim) { - 80049c4: b480 push {r7} - 80049c6: b083 sub sp, #12 - 80049c8: af00 add r7, sp, #0 - 80049ca: 6078 str r0, [r7, #4] + 8004a14: b480 push {r7} + 8004a16: b083 sub sp, #12 + 8004a18: af00 add r7, sp, #0 + 8004a1a: 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 */ } - 80049cc: bf00 nop - 80049ce: 370c adds r7, #12 - 80049d0: 46bd mov sp, r7 - 80049d2: bc80 pop {r7} - 80049d4: 4770 bx lr + 8004a1c: bf00 nop + 8004a1e: 370c adds r7, #12 + 8004a20: 46bd mov sp, r7 + 8004a22: bc80 pop {r7} + 8004a24: 4770 bx lr -080049d6 : +08004a26 : * @brief Hall Break detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim) { - 80049d6: b480 push {r7} - 80049d8: b083 sub sp, #12 - 80049da: af00 add r7, sp, #0 - 80049dc: 6078 str r0, [r7, #4] + 8004a26: b480 push {r7} + 8004a28: b083 sub sp, #12 + 8004a2a: af00 add r7, sp, #0 + 8004a2c: 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 */ } - 80049de: bf00 nop - 80049e0: 370c adds r7, #12 - 80049e2: 46bd mov sp, r7 - 80049e4: bc80 pop {r7} - 80049e6: 4770 bx lr + 8004a2e: bf00 nop + 8004a30: 370c adds r7, #12 + 8004a32: 46bd mov sp, r7 + 8004a34: bc80 pop {r7} + 8004a36: 4770 bx lr -080049e8 : +08004a38 : * @param Init Pointer to NORSRAM Initialization structure * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Init(FSMC_NORSRAM_TypeDef *Device, FSMC_NORSRAM_InitTypeDef *Init) { - 80049e8: b480 push {r7} - 80049ea: b087 sub sp, #28 - 80049ec: af00 add r7, sp, #0 - 80049ee: 6078 str r0, [r7, #4] - 80049f0: 6039 str r1, [r7, #0] + 8004a38: b480 push {r7} + 8004a3a: b087 sub sp, #28 + 8004a3c: af00 add r7, sp, #0 + 8004a3e: 6078 str r0, [r7, #4] + 8004a40: 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); - 80049f2: 683b ldr r3, [r7, #0] - 80049f4: 681a ldr r2, [r3, #0] - 80049f6: 687b ldr r3, [r7, #4] - 80049f8: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80049fc: 683a ldr r2, [r7, #0] - 80049fe: 6812 ldr r2, [r2, #0] - 8004a00: f023 0101 bic.w r1, r3, #1 - 8004a04: 687b ldr r3, [r7, #4] - 8004a06: f843 1022 str.w r1, [r3, r2, lsl #2] + 8004a42: 683b ldr r3, [r7, #0] + 8004a44: 681a ldr r2, [r3, #0] + 8004a46: 687b ldr r3, [r7, #4] + 8004a48: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8004a4c: 683a ldr r2, [r7, #0] + 8004a4e: 6812 ldr r2, [r2, #0] + 8004a50: f023 0101 bic.w r1, r3, #1 + 8004a54: 687b ldr r3, [r7, #4] + 8004a56: f843 1022 str.w r1, [r3, r2, lsl #2] /* Set NORSRAM device control parameters */ if (Init->MemoryType == FSMC_MEMORY_TYPE_NOR) - 8004a0a: 683b ldr r3, [r7, #0] - 8004a0c: 689b ldr r3, [r3, #8] - 8004a0e: 2b08 cmp r3, #8 - 8004a10: d102 bne.n 8004a18 + 8004a5a: 683b ldr r3, [r7, #0] + 8004a5c: 689b ldr r3, [r3, #8] + 8004a5e: 2b08 cmp r3, #8 + 8004a60: d102 bne.n 8004a68 { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_ENABLE; - 8004a12: 2340 movs r3, #64 ; 0x40 - 8004a14: 617b str r3, [r7, #20] - 8004a16: e001 b.n 8004a1c + 8004a62: 2340 movs r3, #64 ; 0x40 + 8004a64: 617b str r3, [r7, #20] + 8004a66: e001 b.n 8004a6c } else { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_DISABLE; - 8004a18: 2300 movs r3, #0 - 8004a1a: 617b str r3, [r7, #20] + 8004a68: 2300 movs r3, #0 + 8004a6a: 617b str r3, [r7, #20] } btcr_reg = (flashaccess | \ Init->DataAddressMux | \ - 8004a1c: 683b ldr r3, [r7, #0] - 8004a1e: 685a ldr r2, [r3, #4] + 8004a6c: 683b ldr r3, [r7, #0] + 8004a6e: 685a ldr r2, [r3, #4] btcr_reg = (flashaccess | \ - 8004a20: 697b ldr r3, [r7, #20] - 8004a22: 431a orrs r2, r3 + 8004a70: 697b ldr r3, [r7, #20] + 8004a72: 431a orrs r2, r3 Init->MemoryType | \ - 8004a24: 683b ldr r3, [r7, #0] - 8004a26: 689b ldr r3, [r3, #8] + 8004a74: 683b ldr r3, [r7, #0] + 8004a76: 689b ldr r3, [r3, #8] Init->DataAddressMux | \ - 8004a28: 431a orrs r2, r3 + 8004a78: 431a orrs r2, r3 Init->MemoryDataWidth | \ - 8004a2a: 683b ldr r3, [r7, #0] - 8004a2c: 68db ldr r3, [r3, #12] + 8004a7a: 683b ldr r3, [r7, #0] + 8004a7c: 68db ldr r3, [r3, #12] Init->MemoryType | \ - 8004a2e: 431a orrs r2, r3 + 8004a7e: 431a orrs r2, r3 Init->BurstAccessMode | \ - 8004a30: 683b ldr r3, [r7, #0] - 8004a32: 691b ldr r3, [r3, #16] + 8004a80: 683b ldr r3, [r7, #0] + 8004a82: 691b ldr r3, [r3, #16] Init->MemoryDataWidth | \ - 8004a34: 431a orrs r2, r3 + 8004a84: 431a orrs r2, r3 Init->WaitSignalPolarity | \ - 8004a36: 683b ldr r3, [r7, #0] - 8004a38: 695b ldr r3, [r3, #20] + 8004a86: 683b ldr r3, [r7, #0] + 8004a88: 695b ldr r3, [r3, #20] Init->BurstAccessMode | \ - 8004a3a: 431a orrs r2, r3 + 8004a8a: 431a orrs r2, r3 Init->WaitSignalActive | \ - 8004a3c: 683b ldr r3, [r7, #0] - 8004a3e: 69db ldr r3, [r3, #28] + 8004a8c: 683b ldr r3, [r7, #0] + 8004a8e: 69db ldr r3, [r3, #28] Init->WaitSignalPolarity | \ - 8004a40: 431a orrs r2, r3 + 8004a90: 431a orrs r2, r3 Init->WriteOperation | \ - 8004a42: 683b ldr r3, [r7, #0] - 8004a44: 6a1b ldr r3, [r3, #32] + 8004a92: 683b ldr r3, [r7, #0] + 8004a94: 6a1b ldr r3, [r3, #32] Init->WaitSignalActive | \ - 8004a46: 431a orrs r2, r3 + 8004a96: 431a orrs r2, r3 Init->WaitSignal | \ - 8004a48: 683b ldr r3, [r7, #0] - 8004a4a: 6a5b ldr r3, [r3, #36] ; 0x24 + 8004a98: 683b ldr r3, [r7, #0] + 8004a9a: 6a5b ldr r3, [r3, #36] ; 0x24 Init->WriteOperation | \ - 8004a4c: 431a orrs r2, r3 + 8004a9c: 431a orrs r2, r3 Init->ExtendedMode | \ - 8004a4e: 683b ldr r3, [r7, #0] - 8004a50: 6a9b ldr r3, [r3, #40] ; 0x28 + 8004a9e: 683b ldr r3, [r7, #0] + 8004aa0: 6a9b ldr r3, [r3, #40] ; 0x28 Init->WaitSignal | \ - 8004a52: 431a orrs r2, r3 + 8004aa2: 431a orrs r2, r3 Init->AsynchronousWait | \ - 8004a54: 683b ldr r3, [r7, #0] - 8004a56: 6adb ldr r3, [r3, #44] ; 0x2c + 8004aa4: 683b ldr r3, [r7, #0] + 8004aa6: 6adb ldr r3, [r3, #44] ; 0x2c Init->ExtendedMode | \ - 8004a58: 431a orrs r2, r3 + 8004aa8: 431a orrs r2, r3 Init->WriteBurst); - 8004a5a: 683b ldr r3, [r7, #0] - 8004a5c: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004aaa: 683b ldr r3, [r7, #0] + 8004aac: 6b1b ldr r3, [r3, #48] ; 0x30 btcr_reg = (flashaccess | \ - 8004a5e: 4313 orrs r3, r2 - 8004a60: 613b str r3, [r7, #16] + 8004aae: 4313 orrs r3, r2 + 8004ab0: 613b str r3, [r7, #16] btcr_reg |= Init->WrapMode; - 8004a62: 683b ldr r3, [r7, #0] - 8004a64: 699b ldr r3, [r3, #24] - 8004a66: 693a ldr r2, [r7, #16] - 8004a68: 4313 orrs r3, r2 - 8004a6a: 613b str r3, [r7, #16] + 8004ab2: 683b ldr r3, [r7, #0] + 8004ab4: 699b ldr r3, [r3, #24] + 8004ab6: 693a ldr r2, [r7, #16] + 8004ab8: 4313 orrs r3, r2 + 8004aba: 613b str r3, [r7, #16] btcr_reg |= Init->PageSize; - 8004a6c: 683b ldr r3, [r7, #0] - 8004a6e: 6b5b ldr r3, [r3, #52] ; 0x34 - 8004a70: 693a ldr r2, [r7, #16] - 8004a72: 4313 orrs r3, r2 - 8004a74: 613b str r3, [r7, #16] + 8004abc: 683b ldr r3, [r7, #0] + 8004abe: 6b5b ldr r3, [r3, #52] ; 0x34 + 8004ac0: 693a ldr r2, [r7, #16] + 8004ac2: 4313 orrs r3, r2 + 8004ac4: 613b str r3, [r7, #16] mask = (FSMC_BCRx_MBKEN | - 8004a76: 4b10 ldr r3, [pc, #64] ; (8004ab8 ) - 8004a78: 60fb str r3, [r7, #12] + 8004ac6: 4b10 ldr r3, [pc, #64] ; (8004b08 ) + 8004ac8: 60fb str r3, [r7, #12] FSMC_BCRx_WAITEN | FSMC_BCRx_EXTMOD | FSMC_BCRx_ASYNCWAIT | FSMC_BCRx_CBURSTRW); mask |= FSMC_BCRx_WRAPMOD; - 8004a7a: 68fb ldr r3, [r7, #12] - 8004a7c: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 8004a80: 60fb str r3, [r7, #12] + 8004aca: 68fb ldr r3, [r7, #12] + 8004acc: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8004ad0: 60fb str r3, [r7, #12] mask |= 0x00070000U; /* CPSIZE to be defined in CMSIS file */ - 8004a82: 68fb ldr r3, [r7, #12] - 8004a84: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 - 8004a88: 60fb str r3, [r7, #12] + 8004ad2: 68fb ldr r3, [r7, #12] + 8004ad4: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 + 8004ad8: 60fb str r3, [r7, #12] MODIFY_REG(Device->BTCR[Init->NSBank], mask, btcr_reg); - 8004a8a: 683b ldr r3, [r7, #0] - 8004a8c: 681a ldr r2, [r3, #0] - 8004a8e: 687b ldr r3, [r7, #4] - 8004a90: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 8004a94: 68fb ldr r3, [r7, #12] - 8004a96: 43db mvns r3, r3 - 8004a98: ea02 0103 and.w r1, r2, r3 - 8004a9c: 683b ldr r3, [r7, #0] - 8004a9e: 681a ldr r2, [r3, #0] - 8004aa0: 693b ldr r3, [r7, #16] - 8004aa2: 4319 orrs r1, r3 - 8004aa4: 687b ldr r3, [r7, #4] - 8004aa6: f843 1022 str.w r1, [r3, r2, lsl #2] + 8004ada: 683b ldr r3, [r7, #0] + 8004adc: 681a ldr r2, [r3, #0] + 8004ade: 687b ldr r3, [r7, #4] + 8004ae0: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 8004ae4: 68fb ldr r3, [r7, #12] + 8004ae6: 43db mvns r3, r3 + 8004ae8: ea02 0103 and.w r1, r2, r3 + 8004aec: 683b ldr r3, [r7, #0] + 8004aee: 681a ldr r2, [r3, #0] + 8004af0: 693b ldr r3, [r7, #16] + 8004af2: 4319 orrs r1, r3 + 8004af4: 687b ldr r3, [r7, #4] + 8004af6: f843 1022 str.w r1, [r3, r2, lsl #2] return HAL_OK; - 8004aaa: 2300 movs r3, #0 + 8004afa: 2300 movs r3, #0 } - 8004aac: 4618 mov r0, r3 - 8004aae: 371c adds r7, #28 - 8004ab0: 46bd mov sp, r7 - 8004ab2: bc80 pop {r7} - 8004ab4: 4770 bx lr - 8004ab6: bf00 nop - 8004ab8: 0008fb7f .word 0x0008fb7f + 8004afc: 4618 mov r0, r3 + 8004afe: 371c adds r7, #28 + 8004b00: 46bd mov sp, r7 + 8004b02: bc80 pop {r7} + 8004b04: 4770 bx lr + 8004b06: bf00 nop + 8004b08: 0008fb7f .word 0x0008fb7f -08004abc : +08004b0c : * @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) { - 8004abc: b480 push {r7} - 8004abe: b085 sub sp, #20 - 8004ac0: af00 add r7, sp, #0 - 8004ac2: 60f8 str r0, [r7, #12] - 8004ac4: 60b9 str r1, [r7, #8] - 8004ac6: 607a str r2, [r7, #4] + 8004b0c: b480 push {r7} + 8004b0e: b085 sub sp, #20 + 8004b10: af00 add r7, sp, #0 + 8004b12: 60f8 str r0, [r7, #12] + 8004b14: 60b9 str r1, [r7, #8] + 8004b16: 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 | - 8004ac8: 687b ldr r3, [r7, #4] - 8004aca: 1c5a adds r2, r3, #1 - 8004acc: 68fb ldr r3, [r7, #12] - 8004ace: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8004ad2: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 - 8004ad6: 68bb ldr r3, [r7, #8] - 8004ad8: 681a ldr r2, [r3, #0] - 8004ada: 68bb ldr r3, [r7, #8] - 8004adc: 685b ldr r3, [r3, #4] - 8004ade: 011b lsls r3, r3, #4 - 8004ae0: 431a orrs r2, r3 - 8004ae2: 68bb ldr r3, [r7, #8] - 8004ae4: 689b ldr r3, [r3, #8] - 8004ae6: 021b lsls r3, r3, #8 - 8004ae8: 431a orrs r2, r3 - 8004aea: 68bb ldr r3, [r7, #8] - 8004aec: 68db ldr r3, [r3, #12] - 8004aee: 041b lsls r3, r3, #16 - 8004af0: 431a orrs r2, r3 - 8004af2: 68bb ldr r3, [r7, #8] - 8004af4: 691b ldr r3, [r3, #16] - 8004af6: 3b01 subs r3, #1 - 8004af8: 051b lsls r3, r3, #20 - 8004afa: 431a orrs r2, r3 - 8004afc: 68bb ldr r3, [r7, #8] - 8004afe: 695b ldr r3, [r3, #20] - 8004b00: 3b02 subs r3, #2 - 8004b02: 061b lsls r3, r3, #24 - 8004b04: 431a orrs r2, r3 - 8004b06: 68bb ldr r3, [r7, #8] - 8004b08: 699b ldr r3, [r3, #24] - 8004b0a: 4313 orrs r3, r2 - 8004b0c: 687a ldr r2, [r7, #4] - 8004b0e: 3201 adds r2, #1 - 8004b10: 4319 orrs r1, r3 - 8004b12: 68fb ldr r3, [r7, #12] - 8004b14: f843 1022 str.w r1, [r3, r2, lsl #2] + 8004b18: 687b ldr r3, [r7, #4] + 8004b1a: 1c5a adds r2, r3, #1 + 8004b1c: 68fb ldr r3, [r7, #12] + 8004b1e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8004b22: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 + 8004b26: 68bb ldr r3, [r7, #8] + 8004b28: 681a ldr r2, [r3, #0] + 8004b2a: 68bb ldr r3, [r7, #8] + 8004b2c: 685b ldr r3, [r3, #4] + 8004b2e: 011b lsls r3, r3, #4 + 8004b30: 431a orrs r2, r3 + 8004b32: 68bb ldr r3, [r7, #8] + 8004b34: 689b ldr r3, [r3, #8] + 8004b36: 021b lsls r3, r3, #8 + 8004b38: 431a orrs r2, r3 + 8004b3a: 68bb ldr r3, [r7, #8] + 8004b3c: 68db ldr r3, [r3, #12] + 8004b3e: 041b lsls r3, r3, #16 + 8004b40: 431a orrs r2, r3 + 8004b42: 68bb ldr r3, [r7, #8] + 8004b44: 691b ldr r3, [r3, #16] + 8004b46: 3b01 subs r3, #1 + 8004b48: 051b lsls r3, r3, #20 + 8004b4a: 431a orrs r2, r3 + 8004b4c: 68bb ldr r3, [r7, #8] + 8004b4e: 695b ldr r3, [r3, #20] + 8004b50: 3b02 subs r3, #2 + 8004b52: 061b lsls r3, r3, #24 + 8004b54: 431a orrs r2, r3 + 8004b56: 68bb ldr r3, [r7, #8] + 8004b58: 699b ldr r3, [r3, #24] + 8004b5a: 4313 orrs r3, r2 + 8004b5c: 687a ldr r2, [r7, #4] + 8004b5e: 3201 adds r2, #1 + 8004b60: 4319 orrs r1, r3 + 8004b62: 68fb ldr r3, [r7, #12] + 8004b64: 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; - 8004b18: 2300 movs r3, #0 + 8004b68: 2300 movs r3, #0 } - 8004b1a: 4618 mov r0, r3 - 8004b1c: 3714 adds r7, #20 - 8004b1e: 46bd mov sp, r7 - 8004b20: bc80 pop {r7} - 8004b22: 4770 bx lr + 8004b6a: 4618 mov r0, r3 + 8004b6c: 3714 adds r7, #20 + 8004b6e: 46bd mov sp, r7 + 8004b70: bc80 pop {r7} + 8004b72: 4770 bx lr -08004b24 : +08004b74 : * @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) { - 8004b24: b480 push {r7} - 8004b26: b085 sub sp, #20 - 8004b28: af00 add r7, sp, #0 - 8004b2a: 60f8 str r0, [r7, #12] - 8004b2c: 60b9 str r1, [r7, #8] - 8004b2e: 607a str r2, [r7, #4] - 8004b30: 603b str r3, [r7, #0] + 8004b74: b480 push {r7} + 8004b76: b085 sub sp, #20 + 8004b78: af00 add r7, sp, #0 + 8004b7a: 60f8 str r0, [r7, #12] + 8004b7c: 60b9 str r1, [r7, #8] + 8004b7e: 607a str r2, [r7, #4] + 8004b80: 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) - 8004b32: 683b ldr r3, [r7, #0] - 8004b34: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 - 8004b38: d11d bne.n 8004b76 + 8004b82: 683b ldr r3, [r7, #0] + 8004b84: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 + 8004b88: d11d bne.n 8004bc6 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 | - 8004b3a: 68fb ldr r3, [r7, #12] - 8004b3c: 687a ldr r2, [r7, #4] - 8004b3e: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 8004b42: 4b13 ldr r3, [pc, #76] ; (8004b90 ) - 8004b44: 4013 ands r3, r2 - 8004b46: 68ba ldr r2, [r7, #8] - 8004b48: 6811 ldr r1, [r2, #0] - 8004b4a: 68ba ldr r2, [r7, #8] - 8004b4c: 6852 ldr r2, [r2, #4] - 8004b4e: 0112 lsls r2, r2, #4 - 8004b50: 4311 orrs r1, r2 - 8004b52: 68ba ldr r2, [r7, #8] - 8004b54: 6892 ldr r2, [r2, #8] - 8004b56: 0212 lsls r2, r2, #8 - 8004b58: 4311 orrs r1, r2 - 8004b5a: 68ba ldr r2, [r7, #8] - 8004b5c: 6992 ldr r2, [r2, #24] - 8004b5e: 4311 orrs r1, r2 - 8004b60: 68ba ldr r2, [r7, #8] - 8004b62: 68d2 ldr r2, [r2, #12] - 8004b64: 0412 lsls r2, r2, #16 - 8004b66: 430a orrs r2, r1 - 8004b68: ea43 0102 orr.w r1, r3, r2 - 8004b6c: 68fb ldr r3, [r7, #12] - 8004b6e: 687a ldr r2, [r7, #4] - 8004b70: f843 1022 str.w r1, [r3, r2, lsl #2] - 8004b74: e005 b.n 8004b82 + 8004b8a: 68fb ldr r3, [r7, #12] + 8004b8c: 687a ldr r2, [r7, #4] + 8004b8e: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 8004b92: 4b13 ldr r3, [pc, #76] ; (8004be0 ) + 8004b94: 4013 ands r3, r2 + 8004b96: 68ba ldr r2, [r7, #8] + 8004b98: 6811 ldr r1, [r2, #0] + 8004b9a: 68ba ldr r2, [r7, #8] + 8004b9c: 6852 ldr r2, [r2, #4] + 8004b9e: 0112 lsls r2, r2, #4 + 8004ba0: 4311 orrs r1, r2 + 8004ba2: 68ba ldr r2, [r7, #8] + 8004ba4: 6892 ldr r2, [r2, #8] + 8004ba6: 0212 lsls r2, r2, #8 + 8004ba8: 4311 orrs r1, r2 + 8004baa: 68ba ldr r2, [r7, #8] + 8004bac: 6992 ldr r2, [r2, #24] + 8004bae: 4311 orrs r1, r2 + 8004bb0: 68ba ldr r2, [r7, #8] + 8004bb2: 68d2 ldr r2, [r2, #12] + 8004bb4: 0412 lsls r2, r2, #16 + 8004bb6: 430a orrs r2, r1 + 8004bb8: ea43 0102 orr.w r1, r3, r2 + 8004bbc: 68fb ldr r3, [r7, #12] + 8004bbe: 687a ldr r2, [r7, #4] + 8004bc0: f843 1022 str.w r1, [r3, r2, lsl #2] + 8004bc4: e005 b.n 8004bd2 (((Timing->DataLatency) - 2U) << FSMC_BWTRx_DATLAT_Pos))); #endif /* FSMC_BWTRx_BUSTURN */ } else { Device->BWTR[Bank] = 0x0FFFFFFFU; - 8004b76: 68fb ldr r3, [r7, #12] - 8004b78: 687a ldr r2, [r7, #4] - 8004b7a: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 - 8004b7e: f843 1022 str.w r1, [r3, r2, lsl #2] + 8004bc6: 68fb ldr r3, [r7, #12] + 8004bc8: 687a ldr r2, [r7, #4] + 8004bca: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 + 8004bce: f843 1022 str.w r1, [r3, r2, lsl #2] } return HAL_OK; - 8004b82: 2300 movs r3, #0 + 8004bd2: 2300 movs r3, #0 } - 8004b84: 4618 mov r0, r3 - 8004b86: 3714 adds r7, #20 - 8004b88: 46bd mov sp, r7 - 8004b8a: bc80 pop {r7} - 8004b8c: 4770 bx lr - 8004b8e: bf00 nop - 8004b90: cff00000 .word 0xcff00000 + 8004bd4: 4618 mov r0, r3 + 8004bd6: 3714 adds r7, #20 + 8004bd8: 46bd mov sp, r7 + 8004bda: bc80 pop {r7} + 8004bdc: 4770 bx lr + 8004bde: bf00 nop + 8004be0: cff00000 .word 0xcff00000 -08004b94 : +08004be4 : _lcd_dev lcddev; //管理LCD重要参数 //**************************************************几种快速接口 //写寄存器函数 //regval:寄存器值 void LCD_WR_REG(uint16_t regval) { - 8004b94: b480 push {r7} - 8004b96: b083 sub sp, #12 - 8004b98: af00 add r7, sp, #0 - 8004b9a: 4603 mov r3, r0 - 8004b9c: 80fb strh r3, [r7, #6] + 8004be4: b480 push {r7} + 8004be6: b083 sub sp, #12 + 8004be8: af00 add r7, sp, #0 + 8004bea: 4603 mov r3, r0 + 8004bec: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=regval;//写入要写的寄存器序号 - 8004b9e: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8004ba2: 88fb ldrh r3, [r7, #6] - 8004ba4: 8013 strh r3, [r2, #0] + 8004bee: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8004bf2: 88fb ldrh r3, [r7, #6] + 8004bf4: 8013 strh r3, [r2, #0] } - 8004ba6: bf00 nop - 8004ba8: 370c adds r7, #12 - 8004baa: 46bd mov sp, r7 - 8004bac: bc80 pop {r7} - 8004bae: 4770 bx lr + 8004bf6: bf00 nop + 8004bf8: 370c adds r7, #12 + 8004bfa: 46bd mov sp, r7 + 8004bfc: bc80 pop {r7} + 8004bfe: 4770 bx lr -08004bb0 : +08004c00 : //写LCD数据 //data:要写入的值 void LCD_WR_DATA(uint16_t data) { - 8004bb0: b480 push {r7} - 8004bb2: b083 sub sp, #12 - 8004bb4: af00 add r7, sp, #0 - 8004bb6: 4603 mov r3, r0 - 8004bb8: 80fb strh r3, [r7, #6] + 8004c00: b480 push {r7} + 8004c02: b083 sub sp, #12 + 8004c04: af00 add r7, sp, #0 + 8004c06: 4603 mov r3, r0 + 8004c08: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=data; - 8004bba: 4a04 ldr r2, [pc, #16] ; (8004bcc ) - 8004bbc: 88fb ldrh r3, [r7, #6] - 8004bbe: 8013 strh r3, [r2, #0] + 8004c0a: 4a04 ldr r2, [pc, #16] ; (8004c1c ) + 8004c0c: 88fb ldrh r3, [r7, #6] + 8004c0e: 8013 strh r3, [r2, #0] } - 8004bc0: bf00 nop - 8004bc2: 370c adds r7, #12 - 8004bc4: 46bd mov sp, r7 - 8004bc6: bc80 pop {r7} - 8004bc8: 4770 bx lr - 8004bca: bf00 nop - 8004bcc: 6c000800 .word 0x6c000800 + 8004c10: bf00 nop + 8004c12: 370c adds r7, #12 + 8004c14: 46bd mov sp, r7 + 8004c16: bc80 pop {r7} + 8004c18: 4770 bx lr + 8004c1a: bf00 nop + 8004c1c: 6c000800 .word 0x6c000800 -08004bd0 : +08004c20 : } //写寄存器 //LCD_Reg:寄存器地址 //LCD_RegValue:要写入的数据 void LCD_WriteReg(uint16_t LCD_Reg, uint16_t LCD_RegValue) { - 8004bd0: b480 push {r7} - 8004bd2: b083 sub sp, #12 - 8004bd4: af00 add r7, sp, #0 - 8004bd6: 4603 mov r3, r0 - 8004bd8: 460a mov r2, r1 - 8004bda: 80fb strh r3, [r7, #6] - 8004bdc: 4613 mov r3, r2 - 8004bde: 80bb strh r3, [r7, #4] + 8004c20: b480 push {r7} + 8004c22: b083 sub sp, #12 + 8004c24: af00 add r7, sp, #0 + 8004c26: 4603 mov r3, r0 + 8004c28: 460a mov r2, r1 + 8004c2a: 80fb strh r3, [r7, #6] + 8004c2c: 4613 mov r3, r2 + 8004c2e: 80bb strh r3, [r7, #4] LCD_REG_ADDRESS = LCD_Reg; //写入要写的寄存器序号 - 8004be0: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8004be4: 88fb ldrh r3, [r7, #6] - 8004be6: 8013 strh r3, [r2, #0] + 8004c30: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8004c34: 88fb ldrh r3, [r7, #6] + 8004c36: 8013 strh r3, [r2, #0] LCD_DATA_ADDRESS = LCD_RegValue;//写入数据 - 8004be8: 4a03 ldr r2, [pc, #12] ; (8004bf8 ) - 8004bea: 88bb ldrh r3, [r7, #4] - 8004bec: 8013 strh r3, [r2, #0] + 8004c38: 4a03 ldr r2, [pc, #12] ; (8004c48 ) + 8004c3a: 88bb ldrh r3, [r7, #4] + 8004c3c: 8013 strh r3, [r2, #0] } - 8004bee: bf00 nop - 8004bf0: 370c adds r7, #12 - 8004bf2: 46bd mov sp, r7 - 8004bf4: bc80 pop {r7} - 8004bf6: 4770 bx lr - 8004bf8: 6c000800 .word 0x6c000800 + 8004c3e: bf00 nop + 8004c40: 370c adds r7, #12 + 8004c42: 46bd mov sp, r7 + 8004c44: bc80 pop {r7} + 8004c46: 4770 bx lr + 8004c48: 6c000800 .word 0x6c000800 -08004bfc : +08004c4c : //读寄存器 //LCD_Reg:寄存器地址 //返回值:读到的数据 uint16_t LCD_ReadReg(uint16_t LCD_Reg) { - 8004bfc: b480 push {r7} - 8004bfe: b083 sub sp, #12 - 8004c00: af00 add r7, sp, #0 - 8004c02: 4603 mov r3, r0 - 8004c04: 80fb strh r3, [r7, #6] + 8004c4c: b480 push {r7} + 8004c4e: b083 sub sp, #12 + 8004c50: af00 add r7, sp, #0 + 8004c52: 4603 mov r3, r0 + 8004c54: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=LCD_Reg; //写入要读的寄存器序号 - 8004c06: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 8004c0a: 88fb ldrh r3, [r7, #6] - 8004c0c: 8013 strh r3, [r2, #0] + 8004c56: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8004c5a: 88fb ldrh r3, [r7, #6] + 8004c5c: 8013 strh r3, [r2, #0] //delay_us(5); return LCD_DATA_ADDRESS; //返回读到的值 - 8004c0e: 4b04 ldr r3, [pc, #16] ; (8004c20 ) - 8004c10: 881b ldrh r3, [r3, #0] - 8004c12: b29b uxth r3, r3 + 8004c5e: 4b04 ldr r3, [pc, #16] ; (8004c70 ) + 8004c60: 881b ldrh r3, [r3, #0] + 8004c62: b29b uxth r3, r3 } - 8004c14: 4618 mov r0, r3 - 8004c16: 370c adds r7, #12 - 8004c18: 46bd mov sp, r7 - 8004c1a: bc80 pop {r7} - 8004c1c: 4770 bx lr - 8004c1e: bf00 nop - 8004c20: 6c000800 .word 0x6c000800 + 8004c64: 4618 mov r0, r3 + 8004c66: 370c adds r7, #12 + 8004c68: 46bd mov sp, r7 + 8004c6a: bc80 pop {r7} + 8004c6c: 4770 bx lr + 8004c6e: bf00 nop + 8004c70: 6c000800 .word 0x6c000800 -08004c24 : +08004c74 : //注意:其他函数可能会受到此函数设置的影响(尤其是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) { - 8004c24: b580 push {r7, lr} - 8004c26: b084 sub sp, #16 - 8004c28: af00 add r7, sp, #0 - 8004c2a: 4603 mov r3, r0 - 8004c2c: 71fb strb r3, [r7, #7] + 8004c74: b580 push {r7, lr} + 8004c76: b084 sub sp, #16 + 8004c78: af00 add r7, sp, #0 + 8004c7a: 4603 mov r3, r0 + 8004c7c: 71fb strb r3, [r7, #7] uint16_t regval=0; - 8004c2e: 2300 movs r3, #0 - 8004c30: 81fb strh r3, [r7, #14] + 8004c7e: 2300 movs r3, #0 + 8004c80: 81fb strh r3, [r7, #14] uint8_t dirreg=0; - 8004c32: 2300 movs r3, #0 - 8004c34: 737b strb r3, [r7, #13] + 8004c82: 2300 movs r3, #0 + 8004c84: 737b strb r3, [r7, #13] uint16_t temp; if(lcddev.dir==1&&lcddev.id!=0X6804)//横屏时,对6804不改变扫描方向! - 8004c36: 4ba8 ldr r3, [pc, #672] ; (8004ed8 ) - 8004c38: 799b ldrb r3, [r3, #6] - 8004c3a: 2b01 cmp r3, #1 - 8004c3c: d134 bne.n 8004ca8 - 8004c3e: 4ba6 ldr r3, [pc, #664] ; (8004ed8 ) - 8004c40: 889b ldrh r3, [r3, #4] - 8004c42: f646 0204 movw r2, #26628 ; 0x6804 - 8004c46: 4293 cmp r3, r2 - 8004c48: d02e beq.n 8004ca8 + 8004c86: 4ba8 ldr r3, [pc, #672] ; (8004f28 ) + 8004c88: 799b ldrb r3, [r3, #6] + 8004c8a: 2b01 cmp r3, #1 + 8004c8c: d134 bne.n 8004cf8 + 8004c8e: 4ba6 ldr r3, [pc, #664] ; (8004f28 ) + 8004c90: 889b ldrh r3, [r3, #4] + 8004c92: f646 0204 movw r2, #26628 ; 0x6804 + 8004c96: 4293 cmp r3, r2 + 8004c98: d02e beq.n 8004cf8 { switch(dir)//方向转换 - 8004c4a: 79fb ldrb r3, [r7, #7] - 8004c4c: 2b07 cmp r3, #7 - 8004c4e: d82c bhi.n 8004caa - 8004c50: a201 add r2, pc, #4 ; (adr r2, 8004c58 ) - 8004c52: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8004c56: bf00 nop - 8004c58: 08004c79 .word 0x08004c79 - 8004c5c: 08004c7f .word 0x08004c7f - 8004c60: 08004c85 .word 0x08004c85 - 8004c64: 08004c8b .word 0x08004c8b - 8004c68: 08004c91 .word 0x08004c91 - 8004c6c: 08004c97 .word 0x08004c97 - 8004c70: 08004c9d .word 0x08004c9d - 8004c74: 08004ca3 .word 0x08004ca3 + 8004c9a: 79fb ldrb r3, [r7, #7] + 8004c9c: 2b07 cmp r3, #7 + 8004c9e: d82c bhi.n 8004cfa + 8004ca0: a201 add r2, pc, #4 ; (adr r2, 8004ca8 ) + 8004ca2: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004ca6: bf00 nop + 8004ca8: 08004cc9 .word 0x08004cc9 + 8004cac: 08004ccf .word 0x08004ccf + 8004cb0: 08004cd5 .word 0x08004cd5 + 8004cb4: 08004cdb .word 0x08004cdb + 8004cb8: 08004ce1 .word 0x08004ce1 + 8004cbc: 08004ce7 .word 0x08004ce7 + 8004cc0: 08004ced .word 0x08004ced + 8004cc4: 08004cf3 .word 0x08004cf3 { case 0:dir=6;break; - 8004c78: 2306 movs r3, #6 - 8004c7a: 71fb strb r3, [r7, #7] - 8004c7c: e015 b.n 8004caa + 8004cc8: 2306 movs r3, #6 + 8004cca: 71fb strb r3, [r7, #7] + 8004ccc: e015 b.n 8004cfa case 1:dir=7;break; - 8004c7e: 2307 movs r3, #7 - 8004c80: 71fb strb r3, [r7, #7] - 8004c82: e012 b.n 8004caa + 8004cce: 2307 movs r3, #7 + 8004cd0: 71fb strb r3, [r7, #7] + 8004cd2: e012 b.n 8004cfa case 2:dir=4;break; - 8004c84: 2304 movs r3, #4 - 8004c86: 71fb strb r3, [r7, #7] - 8004c88: e00f b.n 8004caa + 8004cd4: 2304 movs r3, #4 + 8004cd6: 71fb strb r3, [r7, #7] + 8004cd8: e00f b.n 8004cfa case 3:dir=5;break; - 8004c8a: 2305 movs r3, #5 - 8004c8c: 71fb strb r3, [r7, #7] - 8004c8e: e00c b.n 8004caa + 8004cda: 2305 movs r3, #5 + 8004cdc: 71fb strb r3, [r7, #7] + 8004cde: e00c b.n 8004cfa case 4:dir=1;break; - 8004c90: 2301 movs r3, #1 - 8004c92: 71fb strb r3, [r7, #7] - 8004c94: e009 b.n 8004caa + 8004ce0: 2301 movs r3, #1 + 8004ce2: 71fb strb r3, [r7, #7] + 8004ce4: e009 b.n 8004cfa case 5:dir=0;break; - 8004c96: 2300 movs r3, #0 - 8004c98: 71fb strb r3, [r7, #7] - 8004c9a: e006 b.n 8004caa + 8004ce6: 2300 movs r3, #0 + 8004ce8: 71fb strb r3, [r7, #7] + 8004cea: e006 b.n 8004cfa case 6:dir=3;break; - 8004c9c: 2303 movs r3, #3 - 8004c9e: 71fb strb r3, [r7, #7] - 8004ca0: e003 b.n 8004caa + 8004cec: 2303 movs r3, #3 + 8004cee: 71fb strb r3, [r7, #7] + 8004cf0: e003 b.n 8004cfa case 7:dir=2;break; - 8004ca2: 2302 movs r3, #2 - 8004ca4: 71fb strb r3, [r7, #7] - 8004ca6: e000 b.n 8004caa + 8004cf2: 2302 movs r3, #2 + 8004cf4: 71fb strb r3, [r7, #7] + 8004cf6: e000 b.n 8004cfa } } - 8004ca8: bf00 nop + 8004cf8: bf00 nop if(lcddev.id==0x9341||lcddev.id==0X6804||lcddev.id==0X5310)//9341/6804/5310,很特殊 - 8004caa: 4b8b ldr r3, [pc, #556] ; (8004ed8 ) - 8004cac: 889b ldrh r3, [r3, #4] - 8004cae: f249 3241 movw r2, #37697 ; 0x9341 - 8004cb2: 4293 cmp r3, r2 - 8004cb4: d00c beq.n 8004cd0 - 8004cb6: 4b88 ldr r3, [pc, #544] ; (8004ed8 ) - 8004cb8: 889b ldrh r3, [r3, #4] - 8004cba: f646 0204 movw r2, #26628 ; 0x6804 - 8004cbe: 4293 cmp r3, r2 - 8004cc0: d006 beq.n 8004cd0 - 8004cc2: 4b85 ldr r3, [pc, #532] ; (8004ed8 ) - 8004cc4: 889b ldrh r3, [r3, #4] - 8004cc6: f245 3210 movw r2, #21264 ; 0x5310 - 8004cca: 4293 cmp r3, r2 - 8004ccc: f040 80bb bne.w 8004e46 + 8004cfa: 4b8b ldr r3, [pc, #556] ; (8004f28 ) + 8004cfc: 889b ldrh r3, [r3, #4] + 8004cfe: f249 3241 movw r2, #37697 ; 0x9341 + 8004d02: 4293 cmp r3, r2 + 8004d04: d00c beq.n 8004d20 + 8004d06: 4b88 ldr r3, [pc, #544] ; (8004f28 ) + 8004d08: 889b ldrh r3, [r3, #4] + 8004d0a: f646 0204 movw r2, #26628 ; 0x6804 + 8004d0e: 4293 cmp r3, r2 + 8004d10: d006 beq.n 8004d20 + 8004d12: 4b85 ldr r3, [pc, #532] ; (8004f28 ) + 8004d14: 889b ldrh r3, [r3, #4] + 8004d16: f245 3210 movw r2, #21264 ; 0x5310 + 8004d1a: 4293 cmp r3, r2 + 8004d1c: f040 80bb bne.w 8004e96 { switch(dir) - 8004cd0: 79fb ldrb r3, [r7, #7] - 8004cd2: 2b07 cmp r3, #7 - 8004cd4: d835 bhi.n 8004d42 - 8004cd6: a201 add r2, pc, #4 ; (adr r2, 8004cdc ) - 8004cd8: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8004cdc: 08004d43 .word 0x08004d43 - 8004ce0: 08004cfd .word 0x08004cfd - 8004ce4: 08004d07 .word 0x08004d07 - 8004ce8: 08004d11 .word 0x08004d11 - 8004cec: 08004d1b .word 0x08004d1b - 8004cf0: 08004d25 .word 0x08004d25 - 8004cf4: 08004d2f .word 0x08004d2f - 8004cf8: 08004d39 .word 0x08004d39 + 8004d20: 79fb ldrb r3, [r7, #7] + 8004d22: 2b07 cmp r3, #7 + 8004d24: d835 bhi.n 8004d92 + 8004d26: a201 add r2, pc, #4 ; (adr r2, 8004d2c ) + 8004d28: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004d2c: 08004d93 .word 0x08004d93 + 8004d30: 08004d4d .word 0x08004d4d + 8004d34: 08004d57 .word 0x08004d57 + 8004d38: 08004d61 .word 0x08004d61 + 8004d3c: 08004d6b .word 0x08004d6b + 8004d40: 08004d75 .word 0x08004d75 + 8004d44: 08004d7f .word 0x08004d7f + 8004d48: 08004d89 .word 0x08004d89 { case L2R_U2D://从左到右,从上到下 regval|=(0<<7)|(0<<6)|(0<<5); break; case L2R_D2U://从左到右,从下到上 regval|=(1<<7)|(0<<6)|(0<<5); - 8004cfc: 89fb ldrh r3, [r7, #14] - 8004cfe: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8004d02: 81fb strh r3, [r7, #14] + 8004d4c: 89fb ldrh r3, [r7, #14] + 8004d4e: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8004d52: 81fb strh r3, [r7, #14] break; - 8004d04: e01d b.n 8004d42 + 8004d54: e01d b.n 8004d92 case R2L_U2D://从右到左,从上到下 regval|=(0<<7)|(1<<6)|(0<<5); - 8004d06: 89fb ldrh r3, [r7, #14] - 8004d08: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8004d0c: 81fb strh r3, [r7, #14] + 8004d56: 89fb ldrh r3, [r7, #14] + 8004d58: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8004d5c: 81fb strh r3, [r7, #14] break; - 8004d0e: e018 b.n 8004d42 + 8004d5e: e018 b.n 8004d92 case R2L_D2U://从右到左,从下到上 regval|=(1<<7)|(1<<6)|(0<<5); - 8004d10: 89fb ldrh r3, [r7, #14] - 8004d12: f043 03c0 orr.w r3, r3, #192 ; 0xc0 - 8004d16: 81fb strh r3, [r7, #14] + 8004d60: 89fb ldrh r3, [r7, #14] + 8004d62: f043 03c0 orr.w r3, r3, #192 ; 0xc0 + 8004d66: 81fb strh r3, [r7, #14] break; - 8004d18: e013 b.n 8004d42 + 8004d68: e013 b.n 8004d92 case U2D_L2R://从上到下,从左到右 regval|=(0<<7)|(0<<6)|(1<<5); - 8004d1a: 89fb ldrh r3, [r7, #14] - 8004d1c: f043 0320 orr.w r3, r3, #32 - 8004d20: 81fb strh r3, [r7, #14] + 8004d6a: 89fb ldrh r3, [r7, #14] + 8004d6c: f043 0320 orr.w r3, r3, #32 + 8004d70: 81fb strh r3, [r7, #14] break; - 8004d22: e00e b.n 8004d42 + 8004d72: e00e b.n 8004d92 case U2D_R2L://从上到下,从右到左 regval|=(0<<7)|(1<<6)|(1<<5); - 8004d24: 89fb ldrh r3, [r7, #14] - 8004d26: f043 0360 orr.w r3, r3, #96 ; 0x60 - 8004d2a: 81fb strh r3, [r7, #14] + 8004d74: 89fb ldrh r3, [r7, #14] + 8004d76: f043 0360 orr.w r3, r3, #96 ; 0x60 + 8004d7a: 81fb strh r3, [r7, #14] break; - 8004d2c: e009 b.n 8004d42 + 8004d7c: e009 b.n 8004d92 case D2U_L2R://从下到上,从左到右 regval|=(1<<7)|(0<<6)|(1<<5); - 8004d2e: 89fb ldrh r3, [r7, #14] - 8004d30: f043 03a0 orr.w r3, r3, #160 ; 0xa0 - 8004d34: 81fb strh r3, [r7, #14] + 8004d7e: 89fb ldrh r3, [r7, #14] + 8004d80: f043 03a0 orr.w r3, r3, #160 ; 0xa0 + 8004d84: 81fb strh r3, [r7, #14] break; - 8004d36: e004 b.n 8004d42 + 8004d86: e004 b.n 8004d92 case D2U_R2L://从下到上,从右到左 regval|=(1<<7)|(1<<6)|(1<<5); - 8004d38: 89fb ldrh r3, [r7, #14] - 8004d3a: f043 03e0 orr.w r3, r3, #224 ; 0xe0 - 8004d3e: 81fb strh r3, [r7, #14] + 8004d88: 89fb ldrh r3, [r7, #14] + 8004d8a: f043 03e0 orr.w r3, r3, #224 ; 0xe0 + 8004d8e: 81fb strh r3, [r7, #14] break; - 8004d40: bf00 nop + 8004d90: bf00 nop } dirreg=0X36; - 8004d42: 2336 movs r3, #54 ; 0x36 - 8004d44: 737b strb r3, [r7, #13] + 8004d92: 2336 movs r3, #54 ; 0x36 + 8004d94: 737b strb r3, [r7, #13] if(lcddev.id!=0X5310)regval|=0X08;//5310不需要BGR - 8004d46: 4b64 ldr r3, [pc, #400] ; (8004ed8 ) - 8004d48: 889b ldrh r3, [r3, #4] - 8004d4a: f245 3210 movw r2, #21264 ; 0x5310 - 8004d4e: 4293 cmp r3, r2 - 8004d50: d003 beq.n 8004d5a - 8004d52: 89fb ldrh r3, [r7, #14] - 8004d54: f043 0308 orr.w r3, r3, #8 - 8004d58: 81fb strh r3, [r7, #14] + 8004d96: 4b64 ldr r3, [pc, #400] ; (8004f28 ) + 8004d98: 889b ldrh r3, [r3, #4] + 8004d9a: f245 3210 movw r2, #21264 ; 0x5310 + 8004d9e: 4293 cmp r3, r2 + 8004da0: d003 beq.n 8004daa + 8004da2: 89fb ldrh r3, [r7, #14] + 8004da4: f043 0308 orr.w r3, r3, #8 + 8004da8: 81fb strh r3, [r7, #14] if(lcddev.id==0X6804)regval|=0x02;//6804的BIT6和9341的反了 - 8004d5a: 4b5f ldr r3, [pc, #380] ; (8004ed8 ) - 8004d5c: 889b ldrh r3, [r3, #4] - 8004d5e: f646 0204 movw r2, #26628 ; 0x6804 - 8004d62: 4293 cmp r3, r2 - 8004d64: d103 bne.n 8004d6e - 8004d66: 89fb ldrh r3, [r7, #14] - 8004d68: f043 0302 orr.w r3, r3, #2 - 8004d6c: 81fb strh r3, [r7, #14] + 8004daa: 4b5f ldr r3, [pc, #380] ; (8004f28 ) + 8004dac: 889b ldrh r3, [r3, #4] + 8004dae: f646 0204 movw r2, #26628 ; 0x6804 + 8004db2: 4293 cmp r3, r2 + 8004db4: d103 bne.n 8004dbe + 8004db6: 89fb ldrh r3, [r7, #14] + 8004db8: f043 0302 orr.w r3, r3, #2 + 8004dbc: 81fb strh r3, [r7, #14] LCD_WriteReg(dirreg,regval); - 8004d6e: 7b7b ldrb r3, [r7, #13] - 8004d70: b29b uxth r3, r3 - 8004d72: 89fa ldrh r2, [r7, #14] - 8004d74: 4611 mov r1, r2 - 8004d76: 4618 mov r0, r3 - 8004d78: f7ff ff2a bl 8004bd0 + 8004dbe: 7b7b ldrb r3, [r7, #13] + 8004dc0: b29b uxth r3, r3 + 8004dc2: 89fa ldrh r2, [r7, #14] + 8004dc4: 4611 mov r1, r2 + 8004dc6: 4618 mov r0, r3 + 8004dc8: f7ff ff2a bl 8004c20 if((regval&0X20)||lcddev.dir==1) - 8004d7c: 89fb ldrh r3, [r7, #14] - 8004d7e: f003 0320 and.w r3, r3, #32 - 8004d82: 2b00 cmp r3, #0 - 8004d84: d103 bne.n 8004d8e - 8004d86: 4b54 ldr r3, [pc, #336] ; (8004ed8 ) - 8004d88: 799b ldrb r3, [r3, #6] - 8004d8a: 2b01 cmp r3, #1 - 8004d8c: d110 bne.n 8004db0 + 8004dcc: 89fb ldrh r3, [r7, #14] + 8004dce: f003 0320 and.w r3, r3, #32 + 8004dd2: 2b00 cmp r3, #0 + 8004dd4: d103 bne.n 8004dde + 8004dd6: 4b54 ldr r3, [pc, #336] ; (8004f28 ) + 8004dd8: 799b ldrb r3, [r3, #6] + 8004dda: 2b01 cmp r3, #1 + 8004ddc: d110 bne.n 8004e00 { if(lcddev.width) - 8004d90: 881a ldrh r2, [r3, #0] - 8004d92: 4b51 ldr r3, [pc, #324] ; (8004ed8 ) - 8004d94: 885b ldrh r3, [r3, #2] - 8004d96: 429a cmp r2, r3 - 8004d98: d21a bcs.n 8004dd0 + 8004dde: 4b52 ldr r3, [pc, #328] ; (8004f28 ) + 8004de0: 881a ldrh r2, [r3, #0] + 8004de2: 4b51 ldr r3, [pc, #324] ; (8004f28 ) + 8004de4: 885b ldrh r3, [r3, #2] + 8004de6: 429a cmp r2, r3 + 8004de8: d21a bcs.n 8004e20 { temp=lcddev.width; - 8004d9a: 4b4f ldr r3, [pc, #316] ; (8004ed8 ) - 8004d9c: 881b ldrh r3, [r3, #0] - 8004d9e: 817b strh r3, [r7, #10] + 8004dea: 4b4f ldr r3, [pc, #316] ; (8004f28 ) + 8004dec: 881b ldrh r3, [r3, #0] + 8004dee: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8004da0: 4b4d ldr r3, [pc, #308] ; (8004ed8 ) - 8004da2: 885a ldrh r2, [r3, #2] - 8004da4: 4b4c ldr r3, [pc, #304] ; (8004ed8 ) - 8004da6: 801a strh r2, [r3, #0] + 8004df0: 4b4d ldr r3, [pc, #308] ; (8004f28 ) + 8004df2: 885a ldrh r2, [r3, #2] + 8004df4: 4b4c ldr r3, [pc, #304] ; (8004f28 ) + 8004df6: 801a strh r2, [r3, #0] lcddev.height=temp; - 8004da8: 4a4b ldr r2, [pc, #300] ; (8004ed8 ) - 8004daa: 897b ldrh r3, [r7, #10] - 8004dac: 8053 strh r3, [r2, #2] + 8004df8: 4a4b ldr r2, [pc, #300] ; (8004f28 ) + 8004dfa: 897b ldrh r3, [r7, #10] + 8004dfc: 8053 strh r3, [r2, #2] if(lcddev.width + 8004dfe: e00f b.n 8004e20 } }else { if(lcddev.width>lcddev.height)//交换X,Y - 8004db0: 4b49 ldr r3, [pc, #292] ; (8004ed8 ) - 8004db2: 881a ldrh r2, [r3, #0] - 8004db4: 4b48 ldr r3, [pc, #288] ; (8004ed8 ) - 8004db6: 885b ldrh r3, [r3, #2] - 8004db8: 429a cmp r2, r3 - 8004dba: d909 bls.n 8004dd0 + 8004e00: 4b49 ldr r3, [pc, #292] ; (8004f28 ) + 8004e02: 881a ldrh r2, [r3, #0] + 8004e04: 4b48 ldr r3, [pc, #288] ; (8004f28 ) + 8004e06: 885b ldrh r3, [r3, #2] + 8004e08: 429a cmp r2, r3 + 8004e0a: d909 bls.n 8004e20 { temp=lcddev.width; - 8004dbc: 4b46 ldr r3, [pc, #280] ; (8004ed8 ) - 8004dbe: 881b ldrh r3, [r3, #0] - 8004dc0: 817b strh r3, [r7, #10] + 8004e0c: 4b46 ldr r3, [pc, #280] ; (8004f28 ) + 8004e0e: 881b ldrh r3, [r3, #0] + 8004e10: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8004dc2: 4b45 ldr r3, [pc, #276] ; (8004ed8 ) - 8004dc4: 885a ldrh r2, [r3, #2] - 8004dc6: 4b44 ldr r3, [pc, #272] ; (8004ed8 ) - 8004dc8: 801a strh r2, [r3, #0] + 8004e12: 4b45 ldr r3, [pc, #276] ; (8004f28 ) + 8004e14: 885a ldrh r2, [r3, #2] + 8004e16: 4b44 ldr r3, [pc, #272] ; (8004f28 ) + 8004e18: 801a strh r2, [r3, #0] lcddev.height=temp; - 8004dca: 4a43 ldr r2, [pc, #268] ; (8004ed8 ) - 8004dcc: 897b ldrh r3, [r7, #10] - 8004dce: 8053 strh r3, [r2, #2] + 8004e1a: 4a43 ldr r2, [pc, #268] ; (8004f28 ) + 8004e1c: 897b ldrh r3, [r7, #10] + 8004e1e: 8053 strh r3, [r2, #2] } } LCD_WR_REG(lcddev.setxcmd); - 8004dd0: 4b41 ldr r3, [pc, #260] ; (8004ed8 ) - 8004dd2: 7a1b ldrb r3, [r3, #8] - 8004dd4: b29b uxth r3, r3 - 8004dd6: 4618 mov r0, r3 - 8004dd8: f7ff fedc bl 8004b94 + 8004e20: 4b41 ldr r3, [pc, #260] ; (8004f28 ) + 8004e22: 7a1b ldrb r3, [r3, #8] + 8004e24: b29b uxth r3, r3 + 8004e26: 4618 mov r0, r3 + 8004e28: f7ff fedc bl 8004be4 LCD_WR_DATA(0);LCD_WR_DATA(0); - 8004ddc: 2000 movs r0, #0 - 8004dde: f7ff fee7 bl 8004bb0 - 8004de2: 2000 movs r0, #0 - 8004de4: f7ff fee4 bl 8004bb0 + 8004e2c: 2000 movs r0, #0 + 8004e2e: f7ff fee7 bl 8004c00 + 8004e32: 2000 movs r0, #0 + 8004e34: f7ff fee4 bl 8004c00 LCD_WR_DATA((lcddev.width-1)>>8);LCD_WR_DATA((lcddev.width-1)&0XFF); - 8004de8: 4b3b ldr r3, [pc, #236] ; (8004ed8 ) - 8004dea: 881b ldrh r3, [r3, #0] - 8004dec: 3b01 subs r3, #1 - 8004dee: 121b asrs r3, r3, #8 - 8004df0: b29b uxth r3, r3 - 8004df2: 4618 mov r0, r3 - 8004df4: f7ff fedc bl 8004bb0 - 8004df8: 4b37 ldr r3, [pc, #220] ; (8004ed8 ) - 8004dfa: 881b ldrh r3, [r3, #0] - 8004dfc: 3b01 subs r3, #1 - 8004dfe: b29b uxth r3, r3 - 8004e00: b2db uxtb r3, r3 - 8004e02: b29b uxth r3, r3 - 8004e04: 4618 mov r0, r3 - 8004e06: f7ff fed3 bl 8004bb0 + 8004e38: 4b3b ldr r3, [pc, #236] ; (8004f28 ) + 8004e3a: 881b ldrh r3, [r3, #0] + 8004e3c: 3b01 subs r3, #1 + 8004e3e: 121b asrs r3, r3, #8 + 8004e40: b29b uxth r3, r3 + 8004e42: 4618 mov r0, r3 + 8004e44: f7ff fedc bl 8004c00 + 8004e48: 4b37 ldr r3, [pc, #220] ; (8004f28 ) + 8004e4a: 881b ldrh r3, [r3, #0] + 8004e4c: 3b01 subs r3, #1 + 8004e4e: b29b uxth r3, r3 + 8004e50: b2db uxtb r3, r3 + 8004e52: b29b uxth r3, r3 + 8004e54: 4618 mov r0, r3 + 8004e56: f7ff fed3 bl 8004c00 LCD_WR_REG(lcddev.setycmd); - 8004e0a: 4b33 ldr r3, [pc, #204] ; (8004ed8 ) - 8004e0c: 7a5b ldrb r3, [r3, #9] - 8004e0e: b29b uxth r3, r3 - 8004e10: 4618 mov r0, r3 - 8004e12: f7ff febf bl 8004b94 + 8004e5a: 4b33 ldr r3, [pc, #204] ; (8004f28 ) + 8004e5c: 7a5b ldrb r3, [r3, #9] + 8004e5e: b29b uxth r3, r3 + 8004e60: 4618 mov r0, r3 + 8004e62: f7ff febf bl 8004be4 LCD_WR_DATA(0);LCD_WR_DATA(0); - 8004e16: 2000 movs r0, #0 - 8004e18: f7ff feca bl 8004bb0 - 8004e1c: 2000 movs r0, #0 - 8004e1e: f7ff fec7 bl 8004bb0 + 8004e66: 2000 movs r0, #0 + 8004e68: f7ff feca bl 8004c00 + 8004e6c: 2000 movs r0, #0 + 8004e6e: f7ff fec7 bl 8004c00 LCD_WR_DATA((lcddev.height-1)>>8);LCD_WR_DATA((lcddev.height-1)&0XFF); - 8004e22: 4b2d ldr r3, [pc, #180] ; (8004ed8 ) - 8004e24: 885b ldrh r3, [r3, #2] - 8004e26: 3b01 subs r3, #1 - 8004e28: 121b asrs r3, r3, #8 - 8004e2a: b29b uxth r3, r3 - 8004e2c: 4618 mov r0, r3 - 8004e2e: f7ff febf bl 8004bb0 - 8004e32: 4b29 ldr r3, [pc, #164] ; (8004ed8 ) - 8004e34: 885b ldrh r3, [r3, #2] - 8004e36: 3b01 subs r3, #1 - 8004e38: b29b uxth r3, r3 - 8004e3a: b2db uxtb r3, r3 - 8004e3c: b29b uxth r3, r3 - 8004e3e: 4618 mov r0, r3 - 8004e40: f7ff feb6 bl 8004bb0 - 8004e44: e058 b.n 8004ef8 + 8004e72: 4b2d ldr r3, [pc, #180] ; (8004f28 ) + 8004e74: 885b ldrh r3, [r3, #2] + 8004e76: 3b01 subs r3, #1 + 8004e78: 121b asrs r3, r3, #8 + 8004e7a: b29b uxth r3, r3 + 8004e7c: 4618 mov r0, r3 + 8004e7e: f7ff febf bl 8004c00 + 8004e82: 4b29 ldr r3, [pc, #164] ; (8004f28 ) + 8004e84: 885b ldrh r3, [r3, #2] + 8004e86: 3b01 subs r3, #1 + 8004e88: b29b uxth r3, r3 + 8004e8a: b2db uxtb r3, r3 + 8004e8c: b29b uxth r3, r3 + 8004e8e: 4618 mov r0, r3 + 8004e90: f7ff feb6 bl 8004c00 + 8004e94: e058 b.n 8004f48 }else { switch(dir) - 8004e46: 79fb ldrb r3, [r7, #7] - 8004e48: 2b07 cmp r3, #7 - 8004e4a: d836 bhi.n 8004eba - 8004e4c: a201 add r2, pc, #4 ; (adr r2, 8004e54 ) - 8004e4e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8004e52: bf00 nop - 8004e54: 08004e75 .word 0x08004e75 - 8004e58: 08004e7f .word 0x08004e7f - 8004e5c: 08004e89 .word 0x08004e89 - 8004e60: 08004ebb .word 0x08004ebb - 8004e64: 08004e93 .word 0x08004e93 - 8004e68: 08004e9d .word 0x08004e9d - 8004e6c: 08004ea7 .word 0x08004ea7 - 8004e70: 08004eb1 .word 0x08004eb1 + 8004e96: 79fb ldrb r3, [r7, #7] + 8004e98: 2b07 cmp r3, #7 + 8004e9a: d836 bhi.n 8004f0a + 8004e9c: a201 add r2, pc, #4 ; (adr r2, 8004ea4 ) + 8004e9e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004ea2: bf00 nop + 8004ea4: 08004ec5 .word 0x08004ec5 + 8004ea8: 08004ecf .word 0x08004ecf + 8004eac: 08004ed9 .word 0x08004ed9 + 8004eb0: 08004f0b .word 0x08004f0b + 8004eb4: 08004ee3 .word 0x08004ee3 + 8004eb8: 08004eed .word 0x08004eed + 8004ebc: 08004ef7 .word 0x08004ef7 + 8004ec0: 08004f01 .word 0x08004f01 { case L2R_U2D://从左到右,从上到下 regval|=(1<<5)|(1<<4)|(0<<3); - 8004e74: 89fb ldrh r3, [r7, #14] - 8004e76: f043 0330 orr.w r3, r3, #48 ; 0x30 - 8004e7a: 81fb strh r3, [r7, #14] + 8004ec4: 89fb ldrh r3, [r7, #14] + 8004ec6: f043 0330 orr.w r3, r3, #48 ; 0x30 + 8004eca: 81fb strh r3, [r7, #14] break; - 8004e7c: e01d b.n 8004eba + 8004ecc: e01d b.n 8004f0a case L2R_D2U://从左到右,从下到上 regval|=(0<<5)|(1<<4)|(0<<3); - 8004e7e: 89fb ldrh r3, [r7, #14] - 8004e80: f043 0310 orr.w r3, r3, #16 - 8004e84: 81fb strh r3, [r7, #14] + 8004ece: 89fb ldrh r3, [r7, #14] + 8004ed0: f043 0310 orr.w r3, r3, #16 + 8004ed4: 81fb strh r3, [r7, #14] break; - 8004e86: e018 b.n 8004eba + 8004ed6: e018 b.n 8004f0a case R2L_U2D://从右到左,从上到下 regval|=(1<<5)|(0<<4)|(0<<3); - 8004e88: 89fb ldrh r3, [r7, #14] - 8004e8a: f043 0320 orr.w r3, r3, #32 - 8004e8e: 81fb strh r3, [r7, #14] + 8004ed8: 89fb ldrh r3, [r7, #14] + 8004eda: f043 0320 orr.w r3, r3, #32 + 8004ede: 81fb strh r3, [r7, #14] break; - 8004e90: e013 b.n 8004eba + 8004ee0: e013 b.n 8004f0a case R2L_D2U://从右到左,从下到上 regval|=(0<<5)|(0<<4)|(0<<3); break; case U2D_L2R://从上到下,从左到右 regval|=(1<<5)|(1<<4)|(1<<3); - 8004e92: 89fb ldrh r3, [r7, #14] - 8004e94: f043 0338 orr.w r3, r3, #56 ; 0x38 - 8004e98: 81fb strh r3, [r7, #14] + 8004ee2: 89fb ldrh r3, [r7, #14] + 8004ee4: f043 0338 orr.w r3, r3, #56 ; 0x38 + 8004ee8: 81fb strh r3, [r7, #14] break; - 8004e9a: e00e b.n 8004eba + 8004eea: e00e b.n 8004f0a case U2D_R2L://从上到下,从右到左 regval|=(1<<5)|(0<<4)|(1<<3); - 8004e9c: 89fb ldrh r3, [r7, #14] - 8004e9e: f043 0328 orr.w r3, r3, #40 ; 0x28 - 8004ea2: 81fb strh r3, [r7, #14] + 8004eec: 89fb ldrh r3, [r7, #14] + 8004eee: f043 0328 orr.w r3, r3, #40 ; 0x28 + 8004ef2: 81fb strh r3, [r7, #14] break; - 8004ea4: e009 b.n 8004eba + 8004ef4: e009 b.n 8004f0a case D2U_L2R://从下到上,从左到右 regval|=(0<<5)|(1<<4)|(1<<3); - 8004ea6: 89fb ldrh r3, [r7, #14] - 8004ea8: f043 0318 orr.w r3, r3, #24 - 8004eac: 81fb strh r3, [r7, #14] + 8004ef6: 89fb ldrh r3, [r7, #14] + 8004ef8: f043 0318 orr.w r3, r3, #24 + 8004efc: 81fb strh r3, [r7, #14] break; - 8004eae: e004 b.n 8004eba + 8004efe: e004 b.n 8004f0a case D2U_R2L://从下到上,从右到左 regval|=(0<<5)|(0<<4)|(1<<3); - 8004eb0: 89fb ldrh r3, [r7, #14] - 8004eb2: f043 0308 orr.w r3, r3, #8 - 8004eb6: 81fb strh r3, [r7, #14] + 8004f00: 89fb ldrh r3, [r7, #14] + 8004f02: f043 0308 orr.w r3, r3, #8 + 8004f06: 81fb strh r3, [r7, #14] break; - 8004eb8: bf00 nop + 8004f08: bf00 nop } if(lcddev.id==0x8989)//8989 IC - 8004eba: 4b07 ldr r3, [pc, #28] ; (8004ed8 ) - 8004ebc: 889b ldrh r3, [r3, #4] - 8004ebe: f648 1289 movw r2, #35209 ; 0x8989 - 8004ec2: 4293 cmp r3, r2 - 8004ec4: d10a bne.n 8004edc + 8004f0a: 4b07 ldr r3, [pc, #28] ; (8004f28 ) + 8004f0c: 889b ldrh r3, [r3, #4] + 8004f0e: f648 1289 movw r2, #35209 ; 0x8989 + 8004f12: 4293 cmp r3, r2 + 8004f14: d10a bne.n 8004f2c { dirreg=0X11; - 8004ec6: 2311 movs r3, #17 - 8004ec8: 737b strb r3, [r7, #13] + 8004f16: 2311 movs r3, #17 + 8004f18: 737b strb r3, [r7, #13] regval|=0X6040; //65K - 8004eca: 89fb ldrh r3, [r7, #14] - 8004ecc: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 - 8004ed0: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8004ed4: 81fb strh r3, [r7, #14] - 8004ed6: e007 b.n 8004ee8 - 8004ed8: 20000354 .word 0x20000354 + 8004f1a: 89fb ldrh r3, [r7, #14] + 8004f1c: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 + 8004f20: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8004f24: 81fb strh r3, [r7, #14] + 8004f26: e007 b.n 8004f38 + 8004f28: 20000354 .word 0x20000354 }else//其他驱动IC { dirreg=0X03; - 8004edc: 2303 movs r3, #3 - 8004ede: 737b strb r3, [r7, #13] + 8004f2c: 2303 movs r3, #3 + 8004f2e: 737b strb r3, [r7, #13] regval|=1<<12; - 8004ee0: 89fb ldrh r3, [r7, #14] - 8004ee2: f443 5380 orr.w r3, r3, #4096 ; 0x1000 - 8004ee6: 81fb strh r3, [r7, #14] + 8004f30: 89fb ldrh r3, [r7, #14] + 8004f32: f443 5380 orr.w r3, r3, #4096 ; 0x1000 + 8004f36: 81fb strh r3, [r7, #14] } LCD_WriteReg(dirreg,regval); - 8004ee8: 7b7b ldrb r3, [r7, #13] - 8004eea: b29b uxth r3, r3 - 8004eec: 89fa ldrh r2, [r7, #14] - 8004eee: 4611 mov r1, r2 - 8004ef0: 4618 mov r0, r3 - 8004ef2: f7ff fe6d bl 8004bd0 + 8004f38: 7b7b ldrb r3, [r7, #13] + 8004f3a: b29b uxth r3, r3 + 8004f3c: 89fa ldrh r2, [r7, #14] + 8004f3e: 4611 mov r1, r2 + 8004f40: 4618 mov r0, r3 + 8004f42: f7ff fe6d bl 8004c20 } } - 8004ef6: bf00 nop - 8004ef8: bf00 nop - 8004efa: 3710 adds r7, #16 - 8004efc: 46bd mov sp, r7 - 8004efe: bd80 pop {r7, pc} + 8004f46: bf00 nop + 8004f48: bf00 nop + 8004f4a: 3710 adds r7, #16 + 8004f4c: 46bd mov sp, r7 + 8004f4e: bd80 pop {r7, pc} -08004f00 : +08004f50 : //设置LCD显示方向 //dir:0,竖屏;1,横屏 void LCD_Display_Dir(uint8_t dir) { - 8004f00: b580 push {r7, lr} - 8004f02: b082 sub sp, #8 - 8004f04: af00 add r7, sp, #0 - 8004f06: 4603 mov r3, r0 - 8004f08: 71fb strb r3, [r7, #7] + 8004f50: b580 push {r7, lr} + 8004f52: b082 sub sp, #8 + 8004f54: af00 add r7, sp, #0 + 8004f56: 4603 mov r3, r0 + 8004f58: 71fb strb r3, [r7, #7] if(dir==0) //竖屏 - 8004f0a: 79fb ldrb r3, [r7, #7] - 8004f0c: 2b00 cmp r3, #0 - 8004f0e: d154 bne.n 8004fba + 8004f5a: 79fb ldrb r3, [r7, #7] + 8004f5c: 2b00 cmp r3, #0 + 8004f5e: d154 bne.n 800500a { lcddev.dir=0; //竖屏 - 8004f10: 4b5d ldr r3, [pc, #372] ; (8005088 ) - 8004f12: 2200 movs r2, #0 - 8004f14: 719a strb r2, [r3, #6] + 8004f60: 4b5d ldr r3, [pc, #372] ; (80050d8 ) + 8004f62: 2200 movs r2, #0 + 8004f64: 719a strb r2, [r3, #6] lcddev.width=240; - 8004f16: 4b5c ldr r3, [pc, #368] ; (8005088 ) - 8004f18: 22f0 movs r2, #240 ; 0xf0 - 8004f1a: 801a strh r2, [r3, #0] + 8004f66: 4b5c ldr r3, [pc, #368] ; (80050d8 ) + 8004f68: 22f0 movs r2, #240 ; 0xf0 + 8004f6a: 801a strh r2, [r3, #0] lcddev.height=320; - 8004f1c: 4b5a ldr r3, [pc, #360] ; (8005088 ) - 8004f1e: f44f 72a0 mov.w r2, #320 ; 0x140 - 8004f22: 805a strh r2, [r3, #2] + 8004f6c: 4b5a ldr r3, [pc, #360] ; (80050d8 ) + 8004f6e: f44f 72a0 mov.w r2, #320 ; 0x140 + 8004f72: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X6804||lcddev.id==0X5310) - 8004f24: 4b58 ldr r3, [pc, #352] ; (8005088 ) - 8004f26: 889b ldrh r3, [r3, #4] - 8004f28: f249 3241 movw r2, #37697 ; 0x9341 - 8004f2c: 4293 cmp r3, r2 - 8004f2e: d00b beq.n 8004f48 - 8004f30: 4b55 ldr r3, [pc, #340] ; (8005088 ) - 8004f32: 889b ldrh r3, [r3, #4] - 8004f34: f646 0204 movw r2, #26628 ; 0x6804 - 8004f38: 4293 cmp r3, r2 - 8004f3a: d005 beq.n 8004f48 - 8004f3c: 4b52 ldr r3, [pc, #328] ; (8005088 ) - 8004f3e: 889b ldrh r3, [r3, #4] - 8004f40: f245 3210 movw r2, #21264 ; 0x5310 - 8004f44: 4293 cmp r3, r2 - 8004f46: d11e bne.n 8004f86 + 8004f74: 4b58 ldr r3, [pc, #352] ; (80050d8 ) + 8004f76: 889b ldrh r3, [r3, #4] + 8004f78: f249 3241 movw r2, #37697 ; 0x9341 + 8004f7c: 4293 cmp r3, r2 + 8004f7e: d00b beq.n 8004f98 + 8004f80: 4b55 ldr r3, [pc, #340] ; (80050d8 ) + 8004f82: 889b ldrh r3, [r3, #4] + 8004f84: f646 0204 movw r2, #26628 ; 0x6804 + 8004f88: 4293 cmp r3, r2 + 8004f8a: d005 beq.n 8004f98 + 8004f8c: 4b52 ldr r3, [pc, #328] ; (80050d8 ) + 8004f8e: 889b ldrh r3, [r3, #4] + 8004f90: f245 3210 movw r2, #21264 ; 0x5310 + 8004f94: 4293 cmp r3, r2 + 8004f96: d11e bne.n 8004fd6 { lcddev.wramcmd=0X2C; - 8004f48: 4b4f ldr r3, [pc, #316] ; (8005088 ) - 8004f4a: 222c movs r2, #44 ; 0x2c - 8004f4c: 71da strb r2, [r3, #7] + 8004f98: 4b4f ldr r3, [pc, #316] ; (80050d8 ) + 8004f9a: 222c movs r2, #44 ; 0x2c + 8004f9c: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8004f4e: 4b4e ldr r3, [pc, #312] ; (8005088 ) - 8004f50: 222a movs r2, #42 ; 0x2a - 8004f52: 721a strb r2, [r3, #8] + 8004f9e: 4b4e ldr r3, [pc, #312] ; (80050d8 ) + 8004fa0: 222a movs r2, #42 ; 0x2a + 8004fa2: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8004f54: 4b4c ldr r3, [pc, #304] ; (8005088 ) - 8004f56: 222b movs r2, #43 ; 0x2b - 8004f58: 725a strb r2, [r3, #9] + 8004fa4: 4b4c ldr r3, [pc, #304] ; (80050d8 ) + 8004fa6: 222b movs r2, #43 ; 0x2b + 8004fa8: 725a strb r2, [r3, #9] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8004f5a: 4b4b ldr r3, [pc, #300] ; (8005088 ) - 8004f5c: 889b ldrh r3, [r3, #4] - 8004f5e: f646 0204 movw r2, #26628 ; 0x6804 - 8004f62: 4293 cmp r3, r2 - 8004f64: d006 beq.n 8004f74 - 8004f66: 4b48 ldr r3, [pc, #288] ; (8005088 ) - 8004f68: 889b ldrh r3, [r3, #4] - 8004f6a: f245 3210 movw r2, #21264 ; 0x5310 - 8004f6e: 4293 cmp r3, r2 - 8004f70: f040 8081 bne.w 8005076 + 8004faa: 4b4b ldr r3, [pc, #300] ; (80050d8 ) + 8004fac: 889b ldrh r3, [r3, #4] + 8004fae: f646 0204 movw r2, #26628 ; 0x6804 + 8004fb2: 4293 cmp r3, r2 + 8004fb4: d006 beq.n 8004fc4 + 8004fb6: 4b48 ldr r3, [pc, #288] ; (80050d8 ) + 8004fb8: 889b ldrh r3, [r3, #4] + 8004fba: f245 3210 movw r2, #21264 ; 0x5310 + 8004fbe: 4293 cmp r3, r2 + 8004fc0: f040 8081 bne.w 80050c6 { lcddev.width=320; - 8004f74: 4b44 ldr r3, [pc, #272] ; (8005088 ) - 8004f76: f44f 72a0 mov.w r2, #320 ; 0x140 - 8004f7a: 801a strh r2, [r3, #0] + 8004fc4: 4b44 ldr r3, [pc, #272] ; (80050d8 ) + 8004fc6: f44f 72a0 mov.w r2, #320 ; 0x140 + 8004fca: 801a strh r2, [r3, #0] lcddev.height=480; - 8004f7c: 4b42 ldr r3, [pc, #264] ; (8005088 ) - 8004f7e: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 8004f82: 805a strh r2, [r3, #2] + 8004fcc: 4b42 ldr r3, [pc, #264] ; (80050d8 ) + 8004fce: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 8004fd2: 805a strh r2, [r3, #2] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8004f84: e077 b.n 8005076 + 8004fd4: e077 b.n 80050c6 } }else if(lcddev.id==0X8989) - 8004f86: 4b40 ldr r3, [pc, #256] ; (8005088 ) - 8004f88: 889b ldrh r3, [r3, #4] - 8004f8a: f648 1289 movw r2, #35209 ; 0x8989 - 8004f8e: 4293 cmp r3, r2 - 8004f90: d109 bne.n 8004fa6 + 8004fd6: 4b40 ldr r3, [pc, #256] ; (80050d8 ) + 8004fd8: 889b ldrh r3, [r3, #4] + 8004fda: f648 1289 movw r2, #35209 ; 0x8989 + 8004fde: 4293 cmp r3, r2 + 8004fe0: d109 bne.n 8004ff6 { lcddev.wramcmd=R34; - 8004f92: 4b3d ldr r3, [pc, #244] ; (8005088 ) - 8004f94: 2222 movs r2, #34 ; 0x22 - 8004f96: 71da strb r2, [r3, #7] + 8004fe2: 4b3d ldr r3, [pc, #244] ; (80050d8 ) + 8004fe4: 2222 movs r2, #34 ; 0x22 + 8004fe6: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4E; - 8004f98: 4b3b ldr r3, [pc, #236] ; (8005088 ) - 8004f9a: 224e movs r2, #78 ; 0x4e - 8004f9c: 721a strb r2, [r3, #8] + 8004fe8: 4b3b ldr r3, [pc, #236] ; (80050d8 ) + 8004fea: 224e movs r2, #78 ; 0x4e + 8004fec: 721a strb r2, [r3, #8] lcddev.setycmd=0X4F; - 8004f9e: 4b3a ldr r3, [pc, #232] ; (8005088 ) - 8004fa0: 224f movs r2, #79 ; 0x4f - 8004fa2: 725a strb r2, [r3, #9] - 8004fa4: e068 b.n 8005078 + 8004fee: 4b3a ldr r3, [pc, #232] ; (80050d8 ) + 8004ff0: 224f movs r2, #79 ; 0x4f + 8004ff2: 725a strb r2, [r3, #9] + 8004ff4: e068 b.n 80050c8 }else { lcddev.wramcmd=R34; - 8004fa6: 4b38 ldr r3, [pc, #224] ; (8005088 ) - 8004fa8: 2222 movs r2, #34 ; 0x22 - 8004faa: 71da strb r2, [r3, #7] + 8004ff6: 4b38 ldr r3, [pc, #224] ; (80050d8 ) + 8004ff8: 2222 movs r2, #34 ; 0x22 + 8004ffa: 71da strb r2, [r3, #7] lcddev.setxcmd=R32; - 8004fac: 4b36 ldr r3, [pc, #216] ; (8005088 ) - 8004fae: 2220 movs r2, #32 - 8004fb0: 721a strb r2, [r3, #8] + 8004ffc: 4b36 ldr r3, [pc, #216] ; (80050d8 ) + 8004ffe: 2220 movs r2, #32 + 8005000: 721a strb r2, [r3, #8] lcddev.setycmd=R33; - 8004fb2: 4b35 ldr r3, [pc, #212] ; (8005088 ) - 8004fb4: 2221 movs r2, #33 ; 0x21 - 8004fb6: 725a strb r2, [r3, #9] - 8004fb8: e05e b.n 8005078 + 8005002: 4b35 ldr r3, [pc, #212] ; (80050d8 ) + 8005004: 2221 movs r2, #33 ; 0x21 + 8005006: 725a strb r2, [r3, #9] + 8005008: e05e b.n 80050c8 } }else //横屏 { lcddev.dir=1; //横屏 - 8004fba: 4b33 ldr r3, [pc, #204] ; (8005088 ) - 8004fbc: 2201 movs r2, #1 - 8004fbe: 719a strb r2, [r3, #6] + 800500a: 4b33 ldr r3, [pc, #204] ; (80050d8 ) + 800500c: 2201 movs r2, #1 + 800500e: 719a strb r2, [r3, #6] lcddev.width=320; - 8004fc0: 4b31 ldr r3, [pc, #196] ; (8005088 ) - 8004fc2: f44f 72a0 mov.w r2, #320 ; 0x140 - 8004fc6: 801a strh r2, [r3, #0] + 8005010: 4b31 ldr r3, [pc, #196] ; (80050d8 ) + 8005012: f44f 72a0 mov.w r2, #320 ; 0x140 + 8005016: 801a strh r2, [r3, #0] lcddev.height=240; - 8004fc8: 4b2f ldr r3, [pc, #188] ; (8005088 ) - 8004fca: 22f0 movs r2, #240 ; 0xf0 - 8004fcc: 805a strh r2, [r3, #2] + 8005018: 4b2f ldr r3, [pc, #188] ; (80050d8 ) + 800501a: 22f0 movs r2, #240 ; 0xf0 + 800501c: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X5310) - 8004fce: 4b2e ldr r3, [pc, #184] ; (8005088 ) - 8004fd0: 889b ldrh r3, [r3, #4] - 8004fd2: f249 3241 movw r2, #37697 ; 0x9341 - 8004fd6: 4293 cmp r3, r2 - 8004fd8: d005 beq.n 8004fe6 - 8004fda: 4b2b ldr r3, [pc, #172] ; (8005088 ) - 8004fdc: 889b ldrh r3, [r3, #4] - 8004fde: f245 3210 movw r2, #21264 ; 0x5310 - 8004fe2: 4293 cmp r3, r2 - 8004fe4: d109 bne.n 8004ffa + 800501e: 4b2e ldr r3, [pc, #184] ; (80050d8 ) + 8005020: 889b ldrh r3, [r3, #4] + 8005022: f249 3241 movw r2, #37697 ; 0x9341 + 8005026: 4293 cmp r3, r2 + 8005028: d005 beq.n 8005036 + 800502a: 4b2b ldr r3, [pc, #172] ; (80050d8 ) + 800502c: 889b ldrh r3, [r3, #4] + 800502e: f245 3210 movw r2, #21264 ; 0x5310 + 8005032: 4293 cmp r3, r2 + 8005034: d109 bne.n 800504a { lcddev.wramcmd=0X2C; - 8004fe6: 4b28 ldr r3, [pc, #160] ; (8005088 ) - 8004fe8: 222c movs r2, #44 ; 0x2c - 8004fea: 71da strb r2, [r3, #7] + 8005036: 4b28 ldr r3, [pc, #160] ; (80050d8 ) + 8005038: 222c movs r2, #44 ; 0x2c + 800503a: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8004fec: 4b26 ldr r3, [pc, #152] ; (8005088 ) - 8004fee: 222a movs r2, #42 ; 0x2a - 8004ff0: 721a strb r2, [r3, #8] + 800503c: 4b26 ldr r3, [pc, #152] ; (80050d8 ) + 800503e: 222a movs r2, #42 ; 0x2a + 8005040: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8004ff2: 4b25 ldr r3, [pc, #148] ; (8005088 ) - 8004ff4: 222b movs r2, #43 ; 0x2b - 8004ff6: 725a strb r2, [r3, #9] - 8004ff8: e028 b.n 800504c + 8005042: 4b25 ldr r3, [pc, #148] ; (80050d8 ) + 8005044: 222b movs r2, #43 ; 0x2b + 8005046: 725a strb r2, [r3, #9] + 8005048: e028 b.n 800509c }else if(lcddev.id==0X6804) - 8004ffa: 4b23 ldr r3, [pc, #140] ; (8005088 ) - 8004ffc: 889b ldrh r3, [r3, #4] - 8004ffe: f646 0204 movw r2, #26628 ; 0x6804 - 8005002: 4293 cmp r3, r2 - 8005004: d109 bne.n 800501a + 800504a: 4b23 ldr r3, [pc, #140] ; (80050d8 ) + 800504c: 889b ldrh r3, [r3, #4] + 800504e: f646 0204 movw r2, #26628 ; 0x6804 + 8005052: 4293 cmp r3, r2 + 8005054: d109 bne.n 800506a { lcddev.wramcmd=0X2C; - 8005006: 4b20 ldr r3, [pc, #128] ; (8005088 ) - 8005008: 222c movs r2, #44 ; 0x2c - 800500a: 71da strb r2, [r3, #7] + 8005056: 4b20 ldr r3, [pc, #128] ; (80050d8 ) + 8005058: 222c movs r2, #44 ; 0x2c + 800505a: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2B; - 800500c: 4b1e ldr r3, [pc, #120] ; (8005088 ) - 800500e: 222b movs r2, #43 ; 0x2b - 8005010: 721a strb r2, [r3, #8] + 800505c: 4b1e ldr r3, [pc, #120] ; (80050d8 ) + 800505e: 222b movs r2, #43 ; 0x2b + 8005060: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8005012: 4b1d ldr r3, [pc, #116] ; (8005088 ) - 8005014: 222a movs r2, #42 ; 0x2a - 8005016: 725a strb r2, [r3, #9] - 8005018: e018 b.n 800504c + 8005062: 4b1d ldr r3, [pc, #116] ; (80050d8 ) + 8005064: 222a movs r2, #42 ; 0x2a + 8005066: 725a strb r2, [r3, #9] + 8005068: e018 b.n 800509c }else if(lcddev.id==0X8989) - 800501a: 4b1b ldr r3, [pc, #108] ; (8005088 ) - 800501c: 889b ldrh r3, [r3, #4] - 800501e: f648 1289 movw r2, #35209 ; 0x8989 - 8005022: 4293 cmp r3, r2 - 8005024: d109 bne.n 800503a + 800506a: 4b1b ldr r3, [pc, #108] ; (80050d8 ) + 800506c: 889b ldrh r3, [r3, #4] + 800506e: f648 1289 movw r2, #35209 ; 0x8989 + 8005072: 4293 cmp r3, r2 + 8005074: d109 bne.n 800508a { lcddev.wramcmd=R34; - 8005026: 4b18 ldr r3, [pc, #96] ; (8005088 ) - 8005028: 2222 movs r2, #34 ; 0x22 - 800502a: 71da strb r2, [r3, #7] + 8005076: 4b18 ldr r3, [pc, #96] ; (80050d8 ) + 8005078: 2222 movs r2, #34 ; 0x22 + 800507a: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4F; - 800502c: 4b16 ldr r3, [pc, #88] ; (8005088 ) - 800502e: 224f movs r2, #79 ; 0x4f - 8005030: 721a strb r2, [r3, #8] + 800507c: 4b16 ldr r3, [pc, #88] ; (80050d8 ) + 800507e: 224f movs r2, #79 ; 0x4f + 8005080: 721a strb r2, [r3, #8] lcddev.setycmd=0X4E; - 8005032: 4b15 ldr r3, [pc, #84] ; (8005088 ) - 8005034: 224e movs r2, #78 ; 0x4e - 8005036: 725a strb r2, [r3, #9] - 8005038: e008 b.n 800504c + 8005082: 4b15 ldr r3, [pc, #84] ; (80050d8 ) + 8005084: 224e movs r2, #78 ; 0x4e + 8005086: 725a strb r2, [r3, #9] + 8005088: e008 b.n 800509c }else { lcddev.wramcmd=R34; - 800503a: 4b13 ldr r3, [pc, #76] ; (8005088 ) - 800503c: 2222 movs r2, #34 ; 0x22 - 800503e: 71da strb r2, [r3, #7] + 800508a: 4b13 ldr r3, [pc, #76] ; (80050d8 ) + 800508c: 2222 movs r2, #34 ; 0x22 + 800508e: 71da strb r2, [r3, #7] lcddev.setxcmd=R33; - 8005040: 4b11 ldr r3, [pc, #68] ; (8005088 ) - 8005042: 2221 movs r2, #33 ; 0x21 - 8005044: 721a strb r2, [r3, #8] + 8005090: 4b11 ldr r3, [pc, #68] ; (80050d8 ) + 8005092: 2221 movs r2, #33 ; 0x21 + 8005094: 721a strb r2, [r3, #8] lcddev.setycmd=R32; - 8005046: 4b10 ldr r3, [pc, #64] ; (8005088 ) - 8005048: 2220 movs r2, #32 - 800504a: 725a strb r2, [r3, #9] + 8005096: 4b10 ldr r3, [pc, #64] ; (80050d8 ) + 8005098: 2220 movs r2, #32 + 800509a: 725a strb r2, [r3, #9] } if(lcddev.id==0X6804||lcddev.id==0X5310) - 800504c: 4b0e ldr r3, [pc, #56] ; (8005088 ) - 800504e: 889b ldrh r3, [r3, #4] - 8005050: f646 0204 movw r2, #26628 ; 0x6804 - 8005054: 4293 cmp r3, r2 - 8005056: d005 beq.n 8005064 - 8005058: 4b0b ldr r3, [pc, #44] ; (8005088 ) - 800505a: 889b ldrh r3, [r3, #4] - 800505c: f245 3210 movw r2, #21264 ; 0x5310 - 8005060: 4293 cmp r3, r2 - 8005062: d109 bne.n 8005078 + 800509c: 4b0e ldr r3, [pc, #56] ; (80050d8 ) + 800509e: 889b ldrh r3, [r3, #4] + 80050a0: f646 0204 movw r2, #26628 ; 0x6804 + 80050a4: 4293 cmp r3, r2 + 80050a6: d005 beq.n 80050b4 + 80050a8: 4b0b ldr r3, [pc, #44] ; (80050d8 ) + 80050aa: 889b ldrh r3, [r3, #4] + 80050ac: f245 3210 movw r2, #21264 ; 0x5310 + 80050b0: 4293 cmp r3, r2 + 80050b2: d109 bne.n 80050c8 { lcddev.width=480; - 8005064: 4b08 ldr r3, [pc, #32] ; (8005088 ) - 8005066: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 800506a: 801a strh r2, [r3, #0] + 80050b4: 4b08 ldr r3, [pc, #32] ; (80050d8 ) + 80050b6: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 80050ba: 801a strh r2, [r3, #0] lcddev.height=320; - 800506c: 4b06 ldr r3, [pc, #24] ; (8005088 ) - 800506e: f44f 72a0 mov.w r2, #320 ; 0x140 - 8005072: 805a strh r2, [r3, #2] - 8005074: e000 b.n 8005078 + 80050bc: 4b06 ldr r3, [pc, #24] ; (80050d8 ) + 80050be: f44f 72a0 mov.w r2, #320 ; 0x140 + 80050c2: 805a strh r2, [r3, #2] + 80050c4: e000 b.n 80050c8 if(lcddev.id==0X6804||lcddev.id==0X5310) - 8005076: bf00 nop + 80050c6: bf00 nop } } LCD_Scan_Dir(DFT_SCAN_DIR); //默认扫描方向 - 8005078: 2000 movs r0, #0 - 800507a: f7ff fdd3 bl 8004c24 + 80050c8: 2000 movs r0, #0 + 80050ca: f7ff fdd3 bl 8004c74 } - 800507e: bf00 nop - 8005080: 3708 adds r7, #8 - 8005082: 46bd mov sp, r7 - 8005084: bd80 pop {r7, pc} - 8005086: bf00 nop - 8005088: 20000354 .word 0x20000354 + 80050ce: bf00 nop + 80050d0: 3708 adds r7, #8 + 80050d2: 46bd mov sp, r7 + 80050d4: bd80 pop {r7, pc} + 80050d6: bf00 nop + 80050d8: 20000354 .word 0x20000354 -0800508c : +080050dc : //初始化lcd //该初始化函数可以初始化各种液晶! void LCDx_Init(void) { - 800508c: b580 push {r7, lr} - 800508e: af00 add r7, sp, #0 + 80050dc: b580 push {r7, lr} + 80050de: af00 add r7, sp, #0 HAL_Delay(50); // delay 50 ms - 8005090: 2032 movs r0, #50 ; 0x32 - 8005092: f7fc fd53 bl 8001b3c + 80050e0: 2032 movs r0, #50 ; 0x32 + 80050e2: f7fc fd53 bl 8001b8c LCD_WriteReg(0x0000,0x0001); - 8005096: 2101 movs r1, #1 - 8005098: 2000 movs r0, #0 - 800509a: f7ff fd99 bl 8004bd0 + 80050e6: 2101 movs r1, #1 + 80050e8: 2000 movs r0, #0 + 80050ea: f7ff fd99 bl 8004c20 HAL_Delay(50); // delay 50 ms - 800509e: 2032 movs r0, #50 ; 0x32 - 80050a0: f7fc fd4c bl 8001b3c + 80050ee: 2032 movs r0, #50 ; 0x32 + 80050f0: f7fc fd4c bl 8001b8c lcddev.id = LCD_ReadReg(0x0000); - 80050a4: 2000 movs r0, #0 - 80050a6: f7ff fda9 bl 8004bfc - 80050aa: 4603 mov r3, r0 - 80050ac: 461a mov r2, r3 - 80050ae: 4b70 ldr r3, [pc, #448] ; (8005270 ) - 80050b0: 809a strh r2, [r3, #4] + 80050f4: 2000 movs r0, #0 + 80050f6: f7ff fda9 bl 8004c4c + 80050fa: 4603 mov r3, r0 + 80050fc: 461a mov r2, r3 + 80050fe: 4b70 ldr r3, [pc, #448] ; (80052c0 ) + 8005100: 809a strh r2, [r3, #4] LCD_WriteReg(0x00E5,0x78F0); - 80050b2: f647 01f0 movw r1, #30960 ; 0x78f0 - 80050b6: 20e5 movs r0, #229 ; 0xe5 - 80050b8: f7ff fd8a bl 8004bd0 + 8005102: f647 01f0 movw r1, #30960 ; 0x78f0 + 8005106: 20e5 movs r0, #229 ; 0xe5 + 8005108: f7ff fd8a bl 8004c20 LCD_WriteReg(0x0001,0x0100); - 80050bc: f44f 7180 mov.w r1, #256 ; 0x100 - 80050c0: 2001 movs r0, #1 - 80050c2: f7ff fd85 bl 8004bd0 + 800510c: f44f 7180 mov.w r1, #256 ; 0x100 + 8005110: 2001 movs r0, #1 + 8005112: f7ff fd85 bl 8004c20 LCD_WriteReg(0x0002,0x0700); - 80050c6: f44f 61e0 mov.w r1, #1792 ; 0x700 - 80050ca: 2002 movs r0, #2 - 80050cc: f7ff fd80 bl 8004bd0 + 8005116: f44f 61e0 mov.w r1, #1792 ; 0x700 + 800511a: 2002 movs r0, #2 + 800511c: f7ff fd80 bl 8004c20 LCD_WriteReg(0x0003,0x1030); - 80050d0: f241 0130 movw r1, #4144 ; 0x1030 - 80050d4: 2003 movs r0, #3 - 80050d6: f7ff fd7b bl 8004bd0 + 8005120: f241 0130 movw r1, #4144 ; 0x1030 + 8005124: 2003 movs r0, #3 + 8005126: f7ff fd7b bl 8004c20 LCD_WriteReg(0x0004,0x0000); - 80050da: 2100 movs r1, #0 - 80050dc: 2004 movs r0, #4 - 80050de: f7ff fd77 bl 8004bd0 + 800512a: 2100 movs r1, #0 + 800512c: 2004 movs r0, #4 + 800512e: f7ff fd77 bl 8004c20 LCD_WriteReg(0x0008,0x0202); - 80050e2: f240 2102 movw r1, #514 ; 0x202 - 80050e6: 2008 movs r0, #8 - 80050e8: f7ff fd72 bl 8004bd0 + 8005132: f240 2102 movw r1, #514 ; 0x202 + 8005136: 2008 movs r0, #8 + 8005138: f7ff fd72 bl 8004c20 LCD_WriteReg(0x0009,0x0000); - 80050ec: 2100 movs r1, #0 - 80050ee: 2009 movs r0, #9 - 80050f0: f7ff fd6e bl 8004bd0 + 800513c: 2100 movs r1, #0 + 800513e: 2009 movs r0, #9 + 8005140: f7ff fd6e bl 8004c20 LCD_WriteReg(0x000A,0x0000); - 80050f4: 2100 movs r1, #0 - 80050f6: 200a movs r0, #10 - 80050f8: f7ff fd6a bl 8004bd0 + 8005144: 2100 movs r1, #0 + 8005146: 200a movs r0, #10 + 8005148: f7ff fd6a bl 8004c20 LCD_WriteReg(0x000C,0x0000); - 80050fc: 2100 movs r1, #0 - 80050fe: 200c movs r0, #12 - 8005100: f7ff fd66 bl 8004bd0 + 800514c: 2100 movs r1, #0 + 800514e: 200c movs r0, #12 + 8005150: f7ff fd66 bl 8004c20 LCD_WriteReg(0x000D,0x0000); - 8005104: 2100 movs r1, #0 - 8005106: 200d movs r0, #13 - 8005108: f7ff fd62 bl 8004bd0 + 8005154: 2100 movs r1, #0 + 8005156: 200d movs r0, #13 + 8005158: f7ff fd62 bl 8004c20 LCD_WriteReg(0x000F,0x0000); - 800510c: 2100 movs r1, #0 - 800510e: 200f movs r0, #15 - 8005110: f7ff fd5e bl 8004bd0 + 800515c: 2100 movs r1, #0 + 800515e: 200f movs r0, #15 + 8005160: f7ff fd5e bl 8004c20 //power on sequence VGHVGL LCD_WriteReg(0x0010,0x0000); - 8005114: 2100 movs r1, #0 - 8005116: 2010 movs r0, #16 - 8005118: f7ff fd5a bl 8004bd0 + 8005164: 2100 movs r1, #0 + 8005166: 2010 movs r0, #16 + 8005168: f7ff fd5a bl 8004c20 LCD_WriteReg(0x0011,0x0007); - 800511c: 2107 movs r1, #7 - 800511e: 2011 movs r0, #17 - 8005120: f7ff fd56 bl 8004bd0 + 800516c: 2107 movs r1, #7 + 800516e: 2011 movs r0, #17 + 8005170: f7ff fd56 bl 8004c20 LCD_WriteReg(0x0012,0x0000); - 8005124: 2100 movs r1, #0 - 8005126: 2012 movs r0, #18 - 8005128: f7ff fd52 bl 8004bd0 + 8005174: 2100 movs r1, #0 + 8005176: 2012 movs r0, #18 + 8005178: f7ff fd52 bl 8004c20 LCD_WriteReg(0x0013,0x0000); - 800512c: 2100 movs r1, #0 - 800512e: 2013 movs r0, #19 - 8005130: f7ff fd4e bl 8004bd0 + 800517c: 2100 movs r1, #0 + 800517e: 2013 movs r0, #19 + 8005180: f7ff fd4e bl 8004c20 LCD_WriteReg(0x0007,0x0000); - 8005134: 2100 movs r1, #0 - 8005136: 2007 movs r0, #7 - 8005138: f7ff fd4a bl 8004bd0 + 8005184: 2100 movs r1, #0 + 8005186: 2007 movs r0, #7 + 8005188: f7ff fd4a bl 8004c20 //vgh LCD_WriteReg(0x0010,0x1690); - 800513c: f241 6190 movw r1, #5776 ; 0x1690 - 8005140: 2010 movs r0, #16 - 8005142: f7ff fd45 bl 8004bd0 + 800518c: f241 6190 movw r1, #5776 ; 0x1690 + 8005190: 2010 movs r0, #16 + 8005192: f7ff fd45 bl 8004c20 LCD_WriteReg(0x0011,0x0227); - 8005146: f240 2127 movw r1, #551 ; 0x227 - 800514a: 2011 movs r0, #17 - 800514c: f7ff fd40 bl 8004bd0 + 8005196: f240 2127 movw r1, #551 ; 0x227 + 800519a: 2011 movs r0, #17 + 800519c: f7ff fd40 bl 8004c20 //delayms(100); //vregiout LCD_WriteReg(0x0012,0x009D); //0x001b - 8005150: 219d movs r1, #157 ; 0x9d - 8005152: 2012 movs r0, #18 - 8005154: f7ff fd3c bl 8004bd0 + 80051a0: 219d movs r1, #157 ; 0x9d + 80051a2: 2012 movs r0, #18 + 80051a4: f7ff fd3c bl 8004c20 //delayms(100); //vom amplitude LCD_WriteReg(0x0013,0x1900); - 8005158: f44f 51c8 mov.w r1, #6400 ; 0x1900 - 800515c: 2013 movs r0, #19 - 800515e: f7ff fd37 bl 8004bd0 + 80051a8: f44f 51c8 mov.w r1, #6400 ; 0x1900 + 80051ac: 2013 movs r0, #19 + 80051ae: f7ff fd37 bl 8004c20 //delayms(100); //vom H LCD_WriteReg(0x0029,0x0025); - 8005162: 2125 movs r1, #37 ; 0x25 - 8005164: 2029 movs r0, #41 ; 0x29 - 8005166: f7ff fd33 bl 8004bd0 + 80051b2: 2125 movs r1, #37 ; 0x25 + 80051b4: 2029 movs r0, #41 ; 0x29 + 80051b6: f7ff fd33 bl 8004c20 LCD_WriteReg(0x002B,0x000D); - 800516a: 210d movs r1, #13 - 800516c: 202b movs r0, #43 ; 0x2b - 800516e: f7ff fd2f bl 8004bd0 + 80051ba: 210d movs r1, #13 + 80051bc: 202b movs r0, #43 ; 0x2b + 80051be: f7ff fd2f bl 8004c20 //gamma LCD_WriteReg(0x0030,0x0007); - 8005172: 2107 movs r1, #7 - 8005174: 2030 movs r0, #48 ; 0x30 - 8005176: f7ff fd2b bl 8004bd0 + 80051c2: 2107 movs r1, #7 + 80051c4: 2030 movs r0, #48 ; 0x30 + 80051c6: f7ff fd2b bl 8004c20 LCD_WriteReg(0x0031,0x0303); - 800517a: f240 3103 movw r1, #771 ; 0x303 - 800517e: 2031 movs r0, #49 ; 0x31 - 8005180: f7ff fd26 bl 8004bd0 + 80051ca: f240 3103 movw r1, #771 ; 0x303 + 80051ce: 2031 movs r0, #49 ; 0x31 + 80051d0: f7ff fd26 bl 8004c20 LCD_WriteReg(0x0032,0x0003);// 0006 - 8005184: 2103 movs r1, #3 - 8005186: 2032 movs r0, #50 ; 0x32 - 8005188: f7ff fd22 bl 8004bd0 + 80051d4: 2103 movs r1, #3 + 80051d6: 2032 movs r0, #50 ; 0x32 + 80051d8: f7ff fd22 bl 8004c20 LCD_WriteReg(0x0035,0x0206); - 800518c: f240 2106 movw r1, #518 ; 0x206 - 8005190: 2035 movs r0, #53 ; 0x35 - 8005192: f7ff fd1d bl 8004bd0 + 80051dc: f240 2106 movw r1, #518 ; 0x206 + 80051e0: 2035 movs r0, #53 ; 0x35 + 80051e2: f7ff fd1d bl 8004c20 LCD_WriteReg(0x0036,0x0008); - 8005196: 2108 movs r1, #8 - 8005198: 2036 movs r0, #54 ; 0x36 - 800519a: f7ff fd19 bl 8004bd0 + 80051e6: 2108 movs r1, #8 + 80051e8: 2036 movs r0, #54 ; 0x36 + 80051ea: f7ff fd19 bl 8004c20 LCD_WriteReg(0x0037,0x0406); - 800519e: f240 4106 movw r1, #1030 ; 0x406 - 80051a2: 2037 movs r0, #55 ; 0x37 - 80051a4: f7ff fd14 bl 8004bd0 + 80051ee: f240 4106 movw r1, #1030 ; 0x406 + 80051f2: 2037 movs r0, #55 ; 0x37 + 80051f4: f7ff fd14 bl 8004c20 LCD_WriteReg(0x0038,0x0304);//0200 - 80051a8: f44f 7141 mov.w r1, #772 ; 0x304 - 80051ac: 2038 movs r0, #56 ; 0x38 - 80051ae: f7ff fd0f bl 8004bd0 + 80051f8: f44f 7141 mov.w r1, #772 ; 0x304 + 80051fc: 2038 movs r0, #56 ; 0x38 + 80051fe: f7ff fd0f bl 8004c20 LCD_WriteReg(0x0039,0x0007); - 80051b2: 2107 movs r1, #7 - 80051b4: 2039 movs r0, #57 ; 0x39 - 80051b6: f7ff fd0b bl 8004bd0 + 8005202: 2107 movs r1, #7 + 8005204: 2039 movs r0, #57 ; 0x39 + 8005206: f7ff fd0b bl 8004c20 LCD_WriteReg(0x003C,0x0602);// 0504 - 80051ba: f240 6102 movw r1, #1538 ; 0x602 - 80051be: 203c movs r0, #60 ; 0x3c - 80051c0: f7ff fd06 bl 8004bd0 + 800520a: f240 6102 movw r1, #1538 ; 0x602 + 800520e: 203c movs r0, #60 ; 0x3c + 8005210: f7ff fd06 bl 8004c20 LCD_WriteReg(0x003D,0x0008); - 80051c4: 2108 movs r1, #8 - 80051c6: 203d movs r0, #61 ; 0x3d - 80051c8: f7ff fd02 bl 8004bd0 + 8005214: 2108 movs r1, #8 + 8005216: 203d movs r0, #61 ; 0x3d + 8005218: f7ff fd02 bl 8004c20 //ram LCD_WriteReg(0x0050,0x0000); - 80051cc: 2100 movs r1, #0 - 80051ce: 2050 movs r0, #80 ; 0x50 - 80051d0: f7ff fcfe bl 8004bd0 + 800521c: 2100 movs r1, #0 + 800521e: 2050 movs r0, #80 ; 0x50 + 8005220: f7ff fcfe bl 8004c20 LCD_WriteReg(0x0051,0x00EF); - 80051d4: 21ef movs r1, #239 ; 0xef - 80051d6: 2051 movs r0, #81 ; 0x51 - 80051d8: f7ff fcfa bl 8004bd0 + 8005224: 21ef movs r1, #239 ; 0xef + 8005226: 2051 movs r0, #81 ; 0x51 + 8005228: f7ff fcfa bl 8004c20 LCD_WriteReg(0x0052,0x0000); - 80051dc: 2100 movs r1, #0 - 80051de: 2052 movs r0, #82 ; 0x52 - 80051e0: f7ff fcf6 bl 8004bd0 + 800522c: 2100 movs r1, #0 + 800522e: 2052 movs r0, #82 ; 0x52 + 8005230: f7ff fcf6 bl 8004c20 LCD_WriteReg(0x0053,0x013F); - 80051e4: f240 113f movw r1, #319 ; 0x13f - 80051e8: 2053 movs r0, #83 ; 0x53 - 80051ea: f7ff fcf1 bl 8004bd0 + 8005234: f240 113f movw r1, #319 ; 0x13f + 8005238: 2053 movs r0, #83 ; 0x53 + 800523a: f7ff fcf1 bl 8004c20 LCD_WriteReg(0x0060,0xA700); - 80051ee: f44f 4127 mov.w r1, #42752 ; 0xa700 - 80051f2: 2060 movs r0, #96 ; 0x60 - 80051f4: f7ff fcec bl 8004bd0 + 800523e: f44f 4127 mov.w r1, #42752 ; 0xa700 + 8005242: 2060 movs r0, #96 ; 0x60 + 8005244: f7ff fcec bl 8004c20 LCD_WriteReg(0x0061,0x0001); - 80051f8: 2101 movs r1, #1 - 80051fa: 2061 movs r0, #97 ; 0x61 - 80051fc: f7ff fce8 bl 8004bd0 + 8005248: 2101 movs r1, #1 + 800524a: 2061 movs r0, #97 ; 0x61 + 800524c: f7ff fce8 bl 8004c20 LCD_WriteReg(0x006A,0x0000); - 8005200: 2100 movs r1, #0 - 8005202: 206a movs r0, #106 ; 0x6a - 8005204: f7ff fce4 bl 8004bd0 + 8005250: 2100 movs r1, #0 + 8005252: 206a movs r0, #106 ; 0x6a + 8005254: f7ff fce4 bl 8004c20 // LCD_WriteReg(0x0080,0x0000); - 8005208: 2100 movs r1, #0 - 800520a: 2080 movs r0, #128 ; 0x80 - 800520c: f7ff fce0 bl 8004bd0 + 8005258: 2100 movs r1, #0 + 800525a: 2080 movs r0, #128 ; 0x80 + 800525c: f7ff fce0 bl 8004c20 LCD_WriteReg(0x0081,0x0000); - 8005210: 2100 movs r1, #0 - 8005212: 2081 movs r0, #129 ; 0x81 - 8005214: f7ff fcdc bl 8004bd0 + 8005260: 2100 movs r1, #0 + 8005262: 2081 movs r0, #129 ; 0x81 + 8005264: f7ff fcdc bl 8004c20 LCD_WriteReg(0x0082,0x0000); - 8005218: 2100 movs r1, #0 - 800521a: 2082 movs r0, #130 ; 0x82 - 800521c: f7ff fcd8 bl 8004bd0 + 8005268: 2100 movs r1, #0 + 800526a: 2082 movs r0, #130 ; 0x82 + 800526c: f7ff fcd8 bl 8004c20 LCD_WriteReg(0x0083,0x0000); - 8005220: 2100 movs r1, #0 - 8005222: 2083 movs r0, #131 ; 0x83 - 8005224: f7ff fcd4 bl 8004bd0 + 8005270: 2100 movs r1, #0 + 8005272: 2083 movs r0, #131 ; 0x83 + 8005274: f7ff fcd4 bl 8004c20 LCD_WriteReg(0x0084,0x0000); - 8005228: 2100 movs r1, #0 - 800522a: 2084 movs r0, #132 ; 0x84 - 800522c: f7ff fcd0 bl 8004bd0 + 8005278: 2100 movs r1, #0 + 800527a: 2084 movs r0, #132 ; 0x84 + 800527c: f7ff fcd0 bl 8004c20 LCD_WriteReg(0x0085,0x0000); - 8005230: 2100 movs r1, #0 - 8005232: 2085 movs r0, #133 ; 0x85 - 8005234: f7ff fccc bl 8004bd0 + 8005280: 2100 movs r1, #0 + 8005282: 2085 movs r0, #133 ; 0x85 + 8005284: f7ff fccc bl 8004c20 // LCD_WriteReg(0x0090,0x0010); - 8005238: 2110 movs r1, #16 - 800523a: 2090 movs r0, #144 ; 0x90 - 800523c: f7ff fcc8 bl 8004bd0 + 8005288: 2110 movs r1, #16 + 800528a: 2090 movs r0, #144 ; 0x90 + 800528c: f7ff fcc8 bl 8004c20 LCD_WriteReg(0x0092,0x0600); - 8005240: f44f 61c0 mov.w r1, #1536 ; 0x600 - 8005244: 2092 movs r0, #146 ; 0x92 - 8005246: f7ff fcc3 bl 8004bd0 + 8005290: f44f 61c0 mov.w r1, #1536 ; 0x600 + 8005294: 2092 movs r0, #146 ; 0x92 + 8005296: f7ff fcc3 bl 8004c20 LCD_WriteReg(0x0007,0x0133); - 800524a: f240 1133 movw r1, #307 ; 0x133 - 800524e: 2007 movs r0, #7 - 8005250: f7ff fcbe bl 8004bd0 + 800529a: f240 1133 movw r1, #307 ; 0x133 + 800529e: 2007 movs r0, #7 + 80052a0: f7ff fcbe bl 8004c20 LCD_WriteReg(0x00,0x0022);// - 8005254: 2122 movs r1, #34 ; 0x22 - 8005256: 2000 movs r0, #0 - 8005258: f7ff fcba bl 8004bd0 + 80052a4: 2122 movs r1, #34 ; 0x22 + 80052a6: 2000 movs r0, #0 + 80052a8: f7ff fcba bl 8004c20 LCD_Display_Dir(1); //默认为h屏 - 800525c: 2001 movs r0, #1 - 800525e: f7ff fe4f bl 8004f00 + 80052ac: 2001 movs r0, #1 + 80052ae: f7ff fe4f bl 8004f50 LCD_BL(0); - 8005262: 2200 movs r2, #0 - 8005264: 2101 movs r1, #1 - 8005266: 4803 ldr r0, [pc, #12] ; (8005274 ) - 8005268: f7fc ff45 bl 80020f6 + 80052b2: 2200 movs r2, #0 + 80052b4: 2101 movs r1, #1 + 80052b6: 4803 ldr r0, [pc, #12] ; (80052c4 ) + 80052b8: f7fc ff45 bl 8002146 } - 800526c: bf00 nop - 800526e: bd80 pop {r7, pc} - 8005270: 20000354 .word 0x20000354 - 8005274: 40010c00 .word 0x40010c00 + 80052bc: bf00 nop + 80052be: bd80 pop {r7, pc} + 80052c0: 20000354 .word 0x20000354 + 80052c4: 40010c00 .word 0x40010c00 -08005278 : +080052c8 : //***********************************************************打点 读点 什么的 //设置光标位置 //Xpos:横坐标 //Ypos:纵坐标 void LCD_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 8005278: b580 push {r7, lr} - 800527a: b082 sub sp, #8 - 800527c: af00 add r7, sp, #0 - 800527e: 4603 mov r3, r0 - 8005280: 460a mov r2, r1 - 8005282: 80fb strh r3, [r7, #6] - 8005284: 4613 mov r3, r2 - 8005286: 80bb strh r3, [r7, #4] + 80052c8: b580 push {r7, lr} + 80052ca: b082 sub sp, #8 + 80052cc: af00 add r7, sp, #0 + 80052ce: 4603 mov r3, r0 + 80052d0: 460a mov r2, r1 + 80052d2: 80fb strh r3, [r7, #6] + 80052d4: 4613 mov r3, r2 + 80052d6: 80bb strh r3, [r7, #4] if(lcddev.id==0X9341||lcddev.id==0X5310) - 8005288: 4b42 ldr r3, [pc, #264] ; (8005394 ) - 800528a: 889b ldrh r3, [r3, #4] - 800528c: f249 3241 movw r2, #37697 ; 0x9341 - 8005290: 4293 cmp r3, r2 - 8005292: d005 beq.n 80052a0 - 8005294: 4b3f ldr r3, [pc, #252] ; (8005394 ) - 8005296: 889b ldrh r3, [r3, #4] - 8005298: f245 3210 movw r2, #21264 ; 0x5310 - 800529c: 4293 cmp r3, r2 - 800529e: d124 bne.n 80052ea + 80052d8: 4b42 ldr r3, [pc, #264] ; (80053e4 ) + 80052da: 889b ldrh r3, [r3, #4] + 80052dc: f249 3241 movw r2, #37697 ; 0x9341 + 80052e0: 4293 cmp r3, r2 + 80052e2: d005 beq.n 80052f0 + 80052e4: 4b3f ldr r3, [pc, #252] ; (80053e4 ) + 80052e6: 889b ldrh r3, [r3, #4] + 80052e8: f245 3210 movw r2, #21264 ; 0x5310 + 80052ec: 4293 cmp r3, r2 + 80052ee: d124 bne.n 800533a { LCD_WR_REG(lcddev.setxcmd); - 80052a0: 4b3c ldr r3, [pc, #240] ; (8005394 ) - 80052a2: 7a1b ldrb r3, [r3, #8] - 80052a4: b29b uxth r3, r3 - 80052a6: 4618 mov r0, r3 - 80052a8: f7ff fc74 bl 8004b94 + 80052f0: 4b3c ldr r3, [pc, #240] ; (80053e4 ) + 80052f2: 7a1b ldrb r3, [r3, #8] + 80052f4: b29b uxth r3, r3 + 80052f6: 4618 mov r0, r3 + 80052f8: f7ff fc74 bl 8004be4 LCD_WR_DATA(Xpos>>8); - 80052ac: 88fb ldrh r3, [r7, #6] - 80052ae: 0a1b lsrs r3, r3, #8 - 80052b0: b29b uxth r3, r3 - 80052b2: 4618 mov r0, r3 - 80052b4: f7ff fc7c bl 8004bb0 + 80052fc: 88fb ldrh r3, [r7, #6] + 80052fe: 0a1b lsrs r3, r3, #8 + 8005300: b29b uxth r3, r3 + 8005302: 4618 mov r0, r3 + 8005304: f7ff fc7c bl 8004c00 LCD_WR_DATA(Xpos&0XFF); - 80052b8: 88fb ldrh r3, [r7, #6] - 80052ba: b2db uxtb r3, r3 - 80052bc: b29b uxth r3, r3 - 80052be: 4618 mov r0, r3 - 80052c0: f7ff fc76 bl 8004bb0 + 8005308: 88fb ldrh r3, [r7, #6] + 800530a: b2db uxtb r3, r3 + 800530c: b29b uxth r3, r3 + 800530e: 4618 mov r0, r3 + 8005310: f7ff fc76 bl 8004c00 LCD_WR_REG(lcddev.setycmd); - 80052c4: 4b33 ldr r3, [pc, #204] ; (8005394 ) - 80052c6: 7a5b ldrb r3, [r3, #9] - 80052c8: b29b uxth r3, r3 - 80052ca: 4618 mov r0, r3 - 80052cc: f7ff fc62 bl 8004b94 + 8005314: 4b33 ldr r3, [pc, #204] ; (80053e4 ) + 8005316: 7a5b ldrb r3, [r3, #9] + 8005318: b29b uxth r3, r3 + 800531a: 4618 mov r0, r3 + 800531c: f7ff fc62 bl 8004be4 LCD_WR_DATA(Ypos>>8); - 80052d0: 88bb ldrh r3, [r7, #4] - 80052d2: 0a1b lsrs r3, r3, #8 - 80052d4: b29b uxth r3, r3 - 80052d6: 4618 mov r0, r3 - 80052d8: f7ff fc6a bl 8004bb0 + 8005320: 88bb ldrh r3, [r7, #4] + 8005322: 0a1b lsrs r3, r3, #8 + 8005324: b29b uxth r3, r3 + 8005326: 4618 mov r0, r3 + 8005328: f7ff fc6a bl 8004c00 LCD_WR_DATA(Ypos&0XFF); - 80052dc: 88bb ldrh r3, [r7, #4] - 80052de: b2db uxtb r3, r3 - 80052e0: b29b uxth r3, r3 - 80052e2: 4618 mov r0, r3 - 80052e4: f7ff fc64 bl 8004bb0 + 800532c: 88bb ldrh r3, [r7, #4] + 800532e: b2db uxtb r3, r3 + 8005330: b29b uxth r3, r3 + 8005332: 4618 mov r0, r3 + 8005334: f7ff fc64 bl 8004c00 { if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 LCD_WriteReg(lcddev.setxcmd, Xpos); LCD_WriteReg(lcddev.setycmd, Ypos); } } - 80052e8: e050 b.n 800538c + 8005338: e050 b.n 80053dc }else if(lcddev.id==0X6804) - 80052ea: 4b2a ldr r3, [pc, #168] ; (8005394 ) - 80052ec: 889b ldrh r3, [r3, #4] - 80052ee: f646 0204 movw r2, #26628 ; 0x6804 - 80052f2: 4293 cmp r3, r2 - 80052f4: d12f bne.n 8005356 + 800533a: 4b2a ldr r3, [pc, #168] ; (80053e4 ) + 800533c: 889b ldrh r3, [r3, #4] + 800533e: f646 0204 movw r2, #26628 ; 0x6804 + 8005342: 4293 cmp r3, r2 + 8005344: d12f bne.n 80053a6 if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏时处理 - 80052f6: 4b27 ldr r3, [pc, #156] ; (8005394 ) - 80052f8: 799b ldrb r3, [r3, #6] - 80052fa: 2b01 cmp r3, #1 - 80052fc: d106 bne.n 800530c - 80052fe: 4b25 ldr r3, [pc, #148] ; (8005394 ) - 8005300: 881a ldrh r2, [r3, #0] - 8005302: 88fb ldrh r3, [r7, #6] - 8005304: 1ad3 subs r3, r2, r3 - 8005306: b29b uxth r3, r3 - 8005308: 3b01 subs r3, #1 - 800530a: 80fb strh r3, [r7, #6] + 8005346: 4b27 ldr r3, [pc, #156] ; (80053e4 ) + 8005348: 799b ldrb r3, [r3, #6] + 800534a: 2b01 cmp r3, #1 + 800534c: d106 bne.n 800535c + 800534e: 4b25 ldr r3, [pc, #148] ; (80053e4 ) + 8005350: 881a ldrh r2, [r3, #0] + 8005352: 88fb ldrh r3, [r7, #6] + 8005354: 1ad3 subs r3, r2, r3 + 8005356: b29b uxth r3, r3 + 8005358: 3b01 subs r3, #1 + 800535a: 80fb strh r3, [r7, #6] LCD_WR_REG(lcddev.setxcmd); - 800530c: 4b21 ldr r3, [pc, #132] ; (8005394 ) - 800530e: 7a1b ldrb r3, [r3, #8] - 8005310: b29b uxth r3, r3 - 8005312: 4618 mov r0, r3 - 8005314: f7ff fc3e bl 8004b94 + 800535c: 4b21 ldr r3, [pc, #132] ; (80053e4 ) + 800535e: 7a1b ldrb r3, [r3, #8] + 8005360: b29b uxth r3, r3 + 8005362: 4618 mov r0, r3 + 8005364: f7ff fc3e bl 8004be4 LCD_WR_DATA(Xpos>>8); - 8005318: 88fb ldrh r3, [r7, #6] - 800531a: 0a1b lsrs r3, r3, #8 - 800531c: b29b uxth r3, r3 - 800531e: 4618 mov r0, r3 - 8005320: f7ff fc46 bl 8004bb0 + 8005368: 88fb ldrh r3, [r7, #6] + 800536a: 0a1b lsrs r3, r3, #8 + 800536c: b29b uxth r3, r3 + 800536e: 4618 mov r0, r3 + 8005370: f7ff fc46 bl 8004c00 LCD_WR_DATA(Xpos&0XFF); - 8005324: 88fb ldrh r3, [r7, #6] - 8005326: b2db uxtb r3, r3 - 8005328: b29b uxth r3, r3 - 800532a: 4618 mov r0, r3 - 800532c: f7ff fc40 bl 8004bb0 + 8005374: 88fb ldrh r3, [r7, #6] + 8005376: b2db uxtb r3, r3 + 8005378: b29b uxth r3, r3 + 800537a: 4618 mov r0, r3 + 800537c: f7ff fc40 bl 8004c00 LCD_WR_REG(lcddev.setycmd); - 8005330: 4b18 ldr r3, [pc, #96] ; (8005394 ) - 8005332: 7a5b ldrb r3, [r3, #9] - 8005334: b29b uxth r3, r3 - 8005336: 4618 mov r0, r3 - 8005338: f7ff fc2c bl 8004b94 - LCD_WR_DATA(Ypos>>8); - 800533c: 88bb ldrh r3, [r7, #4] - 800533e: 0a1b lsrs r3, r3, #8 - 8005340: b29b uxth r3, r3 - 8005342: 4618 mov r0, r3 - 8005344: f7ff fc34 bl 8004bb0 - LCD_WR_DATA(Ypos&0XFF); - 8005348: 88bb ldrh r3, [r7, #4] - 800534a: b2db uxtb r3, r3 - 800534c: b29b uxth r3, r3 - 800534e: 4618 mov r0, r3 - 8005350: f7ff fc2e bl 8004bb0 -} - 8005354: e01a b.n 800538c - if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 - 8005356: 4b0f ldr r3, [pc, #60] ; (8005394 ) - 8005358: 799b ldrb r3, [r3, #6] - 800535a: 2b01 cmp r3, #1 - 800535c: d106 bne.n 800536c - 800535e: 4b0d ldr r3, [pc, #52] ; (8005394 ) - 8005360: 881a ldrh r2, [r3, #0] - 8005362: 88fb ldrh r3, [r7, #6] - 8005364: 1ad3 subs r3, r2, r3 - 8005366: b29b uxth r3, r3 - 8005368: 3b01 subs r3, #1 - 800536a: 80fb strh r3, [r7, #6] - LCD_WriteReg(lcddev.setxcmd, Xpos); - 800536c: 4b09 ldr r3, [pc, #36] ; (8005394 ) - 800536e: 7a1b ldrb r3, [r3, #8] - 8005370: b29b uxth r3, r3 - 8005372: 88fa ldrh r2, [r7, #6] - 8005374: 4611 mov r1, r2 - 8005376: 4618 mov r0, r3 - 8005378: f7ff fc2a bl 8004bd0 - LCD_WriteReg(lcddev.setycmd, Ypos); - 800537c: 4b05 ldr r3, [pc, #20] ; (8005394 ) - 800537e: 7a5b ldrb r3, [r3, #9] - 8005380: b29b uxth r3, r3 - 8005382: 88ba ldrh r2, [r7, #4] - 8005384: 4611 mov r1, r2 + 8005380: 4b18 ldr r3, [pc, #96] ; (80053e4 ) + 8005382: 7a5b ldrb r3, [r3, #9] + 8005384: b29b uxth r3, r3 8005386: 4618 mov r0, r3 - 8005388: f7ff fc22 bl 8004bd0 + 8005388: f7ff fc2c bl 8004be4 + LCD_WR_DATA(Ypos>>8); + 800538c: 88bb ldrh r3, [r7, #4] + 800538e: 0a1b lsrs r3, r3, #8 + 8005390: b29b uxth r3, r3 + 8005392: 4618 mov r0, r3 + 8005394: f7ff fc34 bl 8004c00 + LCD_WR_DATA(Ypos&0XFF); + 8005398: 88bb ldrh r3, [r7, #4] + 800539a: b2db uxtb r3, r3 + 800539c: b29b uxth r3, r3 + 800539e: 4618 mov r0, r3 + 80053a0: f7ff fc2e bl 8004c00 } - 800538c: bf00 nop - 800538e: 3708 adds r7, #8 - 8005390: 46bd mov sp, r7 - 8005392: bd80 pop {r7, pc} - 8005394: 20000354 .word 0x20000354 + 80053a4: e01a b.n 80053dc + if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 + 80053a6: 4b0f ldr r3, [pc, #60] ; (80053e4 ) + 80053a8: 799b ldrb r3, [r3, #6] + 80053aa: 2b01 cmp r3, #1 + 80053ac: d106 bne.n 80053bc + 80053ae: 4b0d ldr r3, [pc, #52] ; (80053e4 ) + 80053b0: 881a ldrh r2, [r3, #0] + 80053b2: 88fb ldrh r3, [r7, #6] + 80053b4: 1ad3 subs r3, r2, r3 + 80053b6: b29b uxth r3, r3 + 80053b8: 3b01 subs r3, #1 + 80053ba: 80fb strh r3, [r7, #6] + LCD_WriteReg(lcddev.setxcmd, Xpos); + 80053bc: 4b09 ldr r3, [pc, #36] ; (80053e4 ) + 80053be: 7a1b ldrb r3, [r3, #8] + 80053c0: b29b uxth r3, r3 + 80053c2: 88fa ldrh r2, [r7, #6] + 80053c4: 4611 mov r1, r2 + 80053c6: 4618 mov r0, r3 + 80053c8: f7ff fc2a bl 8004c20 + LCD_WriteReg(lcddev.setycmd, Ypos); + 80053cc: 4b05 ldr r3, [pc, #20] ; (80053e4 ) + 80053ce: 7a5b ldrb r3, [r3, #9] + 80053d0: b29b uxth r3, r3 + 80053d2: 88ba ldrh r2, [r7, #4] + 80053d4: 4611 mov r1, r2 + 80053d6: 4618 mov r0, r3 + 80053d8: f7ff fc22 bl 8004c20 +} + 80053dc: bf00 nop + 80053de: 3708 adds r7, #8 + 80053e0: 46bd mov sp, r7 + 80053e2: bd80 pop {r7, pc} + 80053e4: 20000354 .word 0x20000354 -08005398 : +080053e8 : } //画点 //x,y:坐标 //POINT_COLOR:此点的颜色 void LCD_set_dot(uint16_t x,uint16_t y,uint16_t color) { - 8005398: b580 push {r7, lr} - 800539a: b082 sub sp, #8 - 800539c: af00 add r7, sp, #0 - 800539e: 4603 mov r3, r0 - 80053a0: 80fb strh r3, [r7, #6] - 80053a2: 460b mov r3, r1 - 80053a4: 80bb strh r3, [r7, #4] - 80053a6: 4613 mov r3, r2 - 80053a8: 807b strh r3, [r7, #2] + 80053e8: b580 push {r7, lr} + 80053ea: b082 sub sp, #8 + 80053ec: af00 add r7, sp, #0 + 80053ee: 4603 mov r3, r0 + 80053f0: 80fb strh r3, [r7, #6] + 80053f2: 460b mov r3, r1 + 80053f4: 80bb strh r3, [r7, #4] + 80053f6: 4613 mov r3, r2 + 80053f8: 807b strh r3, [r7, #2] LCD_SetCursor(x,y); //设置光标位置 - 80053aa: 88ba ldrh r2, [r7, #4] - 80053ac: 88fb ldrh r3, [r7, #6] - 80053ae: 4611 mov r1, r2 - 80053b0: 4618 mov r0, r3 - 80053b2: f7ff ff61 bl 8005278 + 80053fa: 88ba ldrh r2, [r7, #4] + 80053fc: 88fb ldrh r3, [r7, #6] + 80053fe: 4611 mov r1, r2 + 8005400: 4618 mov r0, r3 + 8005402: f7ff ff61 bl 80052c8 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 80053b6: 4b06 ldr r3, [pc, #24] ; (80053d0 ) - 80053b8: 79da ldrb r2, [r3, #7] - 80053ba: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 80053be: b292 uxth r2, r2 - 80053c0: 801a strh r2, [r3, #0] + 8005406: 4b06 ldr r3, [pc, #24] ; (8005420 ) + 8005408: 79da ldrb r2, [r3, #7] + 800540a: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 800540e: b292 uxth r2, r2 + 8005410: 801a strh r2, [r3, #0] LCD_DATA_ADDRESS=color; - 80053c2: 4a04 ldr r2, [pc, #16] ; (80053d4 ) - 80053c4: 887b ldrh r3, [r7, #2] - 80053c6: 8013 strh r3, [r2, #0] + 8005412: 4a04 ldr r2, [pc, #16] ; (8005424 ) + 8005414: 887b ldrh r3, [r7, #2] + 8005416: 8013 strh r3, [r2, #0] } - 80053c8: bf00 nop - 80053ca: 3708 adds r7, #8 - 80053cc: 46bd mov sp, r7 - 80053ce: bd80 pop {r7, pc} - 80053d0: 20000354 .word 0x20000354 - 80053d4: 6c000800 .word 0x6c000800 + 8005418: bf00 nop + 800541a: 3708 adds r7, #8 + 800541c: 46bd mov sp, r7 + 800541e: bd80 pop {r7, pc} + 8005420: 20000354 .word 0x20000354 + 8005424: 6c000800 .word 0x6c000800 -080053d8 : +08005428 : //清屏函数 //color:要清屏的填充色 void LCD_Clear(uint16_t color) { - 80053d8: b580 push {r7, lr} - 80053da: b084 sub sp, #16 - 80053dc: af00 add r7, sp, #0 - 80053de: 4603 mov r3, r0 - 80053e0: 80fb strh r3, [r7, #6] + 8005428: b580 push {r7, lr} + 800542a: b084 sub sp, #16 + 800542c: af00 add r7, sp, #0 + 800542e: 4603 mov r3, r0 + 8005430: 80fb strh r3, [r7, #6] uint32_t index=0; - 80053e2: 2300 movs r3, #0 - 80053e4: 60fb str r3, [r7, #12] + 8005432: 2300 movs r3, #0 + 8005434: 60fb str r3, [r7, #12] uint32_t totalpoint=lcddev.width; - 80053e6: 4b23 ldr r3, [pc, #140] ; (8005474 ) - 80053e8: 881b ldrh r3, [r3, #0] - 80053ea: 60bb str r3, [r7, #8] + 8005436: 4b23 ldr r3, [pc, #140] ; (80054c4 ) + 8005438: 881b ldrh r3, [r3, #0] + 800543a: 60bb str r3, [r7, #8] totalpoint*=lcddev.height; //得到总点数 - 80053ec: 4b21 ldr r3, [pc, #132] ; (8005474 ) - 80053ee: 885b ldrh r3, [r3, #2] - 80053f0: 461a mov r2, r3 - 80053f2: 68bb ldr r3, [r7, #8] - 80053f4: fb02 f303 mul.w r3, r2, r3 - 80053f8: 60bb str r3, [r7, #8] + 800543c: 4b21 ldr r3, [pc, #132] ; (80054c4 ) + 800543e: 885b ldrh r3, [r3, #2] + 8005440: 461a mov r2, r3 + 8005442: 68bb ldr r3, [r7, #8] + 8005444: fb02 f303 mul.w r3, r2, r3 + 8005448: 60bb str r3, [r7, #8] if((lcddev.id==0X6804)&&(lcddev.dir==1))//6804横屏的时候特殊处理 - 80053fa: 4b1e ldr r3, [pc, #120] ; (8005474 ) - 80053fc: 889b ldrh r3, [r3, #4] - 80053fe: f646 0204 movw r2, #26628 ; 0x6804 - 8005402: 4293 cmp r3, r2 - 8005404: d11a bne.n 800543c - 8005406: 4b1b ldr r3, [pc, #108] ; (8005474 ) - 8005408: 799b ldrb r3, [r3, #6] - 800540a: 2b01 cmp r3, #1 - 800540c: d116 bne.n 800543c + 800544a: 4b1e ldr r3, [pc, #120] ; (80054c4 ) + 800544c: 889b ldrh r3, [r3, #4] + 800544e: f646 0204 movw r2, #26628 ; 0x6804 + 8005452: 4293 cmp r3, r2 + 8005454: d11a bne.n 800548c + 8005456: 4b1b ldr r3, [pc, #108] ; (80054c4 ) + 8005458: 799b ldrb r3, [r3, #6] + 800545a: 2b01 cmp r3, #1 + 800545c: d116 bne.n 800548c { lcddev.dir=0; - 800540e: 4b19 ldr r3, [pc, #100] ; (8005474 ) - 8005410: 2200 movs r2, #0 - 8005412: 719a strb r2, [r3, #6] + 800545e: 4b19 ldr r3, [pc, #100] ; (80054c4 ) + 8005460: 2200 movs r2, #0 + 8005462: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2A; - 8005414: 4b17 ldr r3, [pc, #92] ; (8005474 ) - 8005416: 222a movs r2, #42 ; 0x2a - 8005418: 721a strb r2, [r3, #8] + 8005464: 4b17 ldr r3, [pc, #92] ; (80054c4 ) + 8005466: 222a movs r2, #42 ; 0x2a + 8005468: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 800541a: 4b16 ldr r3, [pc, #88] ; (8005474 ) - 800541c: 222b movs r2, #43 ; 0x2b - 800541e: 725a strb r2, [r3, #9] + 800546a: 4b16 ldr r3, [pc, #88] ; (80054c4 ) + 800546c: 222b movs r2, #43 ; 0x2b + 800546e: 725a strb r2, [r3, #9] LCD_SetCursor(0x00,0x0000); //设置光标位置 - 8005420: 2100 movs r1, #0 - 8005422: 2000 movs r0, #0 - 8005424: f7ff ff28 bl 8005278 + 8005470: 2100 movs r1, #0 + 8005472: 2000 movs r0, #0 + 8005474: f7ff ff28 bl 80052c8 lcddev.dir=1; - 8005428: 4b12 ldr r3, [pc, #72] ; (8005474 ) - 800542a: 2201 movs r2, #1 - 800542c: 719a strb r2, [r3, #6] + 8005478: 4b12 ldr r3, [pc, #72] ; (80054c4 ) + 800547a: 2201 movs r2, #1 + 800547c: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2B; - 800542e: 4b11 ldr r3, [pc, #68] ; (8005474 ) - 8005430: 222b movs r2, #43 ; 0x2b - 8005432: 721a strb r2, [r3, #8] + 800547e: 4b11 ldr r3, [pc, #68] ; (80054c4 ) + 8005480: 222b movs r2, #43 ; 0x2b + 8005482: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8005434: 4b0f ldr r3, [pc, #60] ; (8005474 ) - 8005436: 222a movs r2, #42 ; 0x2a - 8005438: 725a strb r2, [r3, #9] - 800543a: e003 b.n 8005444 + 8005484: 4b0f ldr r3, [pc, #60] ; (80054c4 ) + 8005486: 222a movs r2, #42 ; 0x2a + 8005488: 725a strb r2, [r3, #9] + 800548a: e003 b.n 8005494 }else LCD_SetCursor(0x00,0x0000); //设置光标位置 - 800543c: 2100 movs r1, #0 - 800543e: 2000 movs r0, #0 - 8005440: f7ff ff1a bl 8005278 + 800548c: 2100 movs r1, #0 + 800548e: 2000 movs r0, #0 + 8005490: f7ff ff1a bl 80052c8 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 8005444: 4b0b ldr r3, [pc, #44] ; (8005474 ) - 8005446: 79da ldrb r2, [r3, #7] - 8005448: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 800544c: b292 uxth r2, r2 - 800544e: 801a strh r2, [r3, #0] + 8005494: 4b0b ldr r3, [pc, #44] ; (80054c4 ) + 8005496: 79da ldrb r2, [r3, #7] + 8005498: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 800549c: b292 uxth r2, r2 + 800549e: 801a strh r2, [r3, #0] for(index=0;index + 80054a0: 2300 movs r3, #0 + 80054a2: 60fb str r3, [r7, #12] + 80054a4: e005 b.n 80054b2 { LCD_DATA_ADDRESS=color; - 8005456: 4a08 ldr r2, [pc, #32] ; (8005478 ) - 8005458: 88fb ldrh r3, [r7, #6] - 800545a: 8013 strh r3, [r2, #0] + 80054a6: 4a08 ldr r2, [pc, #32] ; (80054c8 ) + 80054a8: 88fb ldrh r3, [r7, #6] + 80054aa: 8013 strh r3, [r2, #0] for(index=0;index + 80054ac: 68fb ldr r3, [r7, #12] + 80054ae: 3301 adds r3, #1 + 80054b0: 60fb str r3, [r7, #12] + 80054b2: 68fa ldr r2, [r7, #12] + 80054b4: 68bb ldr r3, [r7, #8] + 80054b6: 429a cmp r2, r3 + 80054b8: d3f5 bcc.n 80054a6 } } - 800546a: bf00 nop - 800546c: bf00 nop - 800546e: 3710 adds r7, #16 - 8005470: 46bd mov sp, r7 - 8005472: bd80 pop {r7, pc} - 8005474: 20000354 .word 0x20000354 - 8005478: 6c000800 .word 0x6c000800 + 80054ba: bf00 nop + 80054bc: bf00 nop + 80054be: 3710 adds r7, #16 + 80054c0: 46bd mov sp, r7 + 80054c2: bd80 pop {r7, pc} + 80054c4: 20000354 .word 0x20000354 + 80054c8: 6c000800 .word 0x6c000800 -0800547c : +080054cc : //***********************************2D //画线 //x1,y1:起点坐标 //x2,y2:终点坐标 void LCD_DrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2,uint16_t color) { - 800547c: b590 push {r4, r7, lr} - 800547e: b08d sub sp, #52 ; 0x34 - 8005480: af00 add r7, sp, #0 - 8005482: 4604 mov r4, r0 - 8005484: 4608 mov r0, r1 - 8005486: 4611 mov r1, r2 - 8005488: 461a mov r2, r3 - 800548a: 4623 mov r3, r4 - 800548c: 80fb strh r3, [r7, #6] - 800548e: 4603 mov r3, r0 - 8005490: 80bb strh r3, [r7, #4] - 8005492: 460b mov r3, r1 - 8005494: 807b strh r3, [r7, #2] - 8005496: 4613 mov r3, r2 - 8005498: 803b strh r3, [r7, #0] + 80054cc: b590 push {r4, r7, lr} + 80054ce: b08d sub sp, #52 ; 0x34 + 80054d0: af00 add r7, sp, #0 + 80054d2: 4604 mov r4, r0 + 80054d4: 4608 mov r0, r1 + 80054d6: 4611 mov r1, r2 + 80054d8: 461a mov r2, r3 + 80054da: 4623 mov r3, r4 + 80054dc: 80fb strh r3, [r7, #6] + 80054de: 4603 mov r3, r0 + 80054e0: 80bb strh r3, [r7, #4] + 80054e2: 460b mov r3, r1 + 80054e4: 807b strh r3, [r7, #2] + 80054e6: 4613 mov r3, r2 + 80054e8: 803b strh r3, [r7, #0] uint16_t t; int xerr=0,yerr=0,delta_x,delta_y,distance; - 800549a: 2300 movs r3, #0 - 800549c: 62bb str r3, [r7, #40] ; 0x28 - 800549e: 2300 movs r3, #0 - 80054a0: 627b str r3, [r7, #36] ; 0x24 + 80054ea: 2300 movs r3, #0 + 80054ec: 62bb str r3, [r7, #40] ; 0x28 + 80054ee: 2300 movs r3, #0 + 80054f0: 627b str r3, [r7, #36] ; 0x24 int incx,incy,uRow,uCol; delta_x=x2-x1; //计算坐标增量 - 80054a2: 887a ldrh r2, [r7, #2] - 80054a4: 88fb ldrh r3, [r7, #6] - 80054a6: 1ad3 subs r3, r2, r3 - 80054a8: 623b str r3, [r7, #32] + 80054f2: 887a ldrh r2, [r7, #2] + 80054f4: 88fb ldrh r3, [r7, #6] + 80054f6: 1ad3 subs r3, r2, r3 + 80054f8: 623b str r3, [r7, #32] delta_y=y2-y1; - 80054aa: 883a ldrh r2, [r7, #0] - 80054ac: 88bb ldrh r3, [r7, #4] - 80054ae: 1ad3 subs r3, r2, r3 - 80054b0: 61fb str r3, [r7, #28] - uRow=x1; - 80054b2: 88fb ldrh r3, [r7, #6] - 80054b4: 60fb str r3, [r7, #12] - uCol=y1; - 80054b6: 88bb ldrh r3, [r7, #4] - 80054b8: 60bb str r3, [r7, #8] - if(delta_x>0)incx=1; //设置单步方向 - 80054ba: 6a3b ldr r3, [r7, #32] - 80054bc: 2b00 cmp r3, #0 - 80054be: dd02 ble.n 80054c6 - 80054c0: 2301 movs r3, #1 - 80054c2: 617b str r3, [r7, #20] - 80054c4: e00b b.n 80054de - else if(delta_x==0)incx=0;//垂直线 - 80054c6: 6a3b ldr r3, [r7, #32] - 80054c8: 2b00 cmp r3, #0 - 80054ca: d102 bne.n 80054d2 - 80054cc: 2300 movs r3, #0 - 80054ce: 617b str r3, [r7, #20] - 80054d0: e005 b.n 80054de - else {incx=-1;delta_x=-delta_x;} - 80054d2: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 80054d6: 617b str r3, [r7, #20] - 80054d8: 6a3b ldr r3, [r7, #32] - 80054da: 425b negs r3, r3 - 80054dc: 623b str r3, [r7, #32] - if(delta_y>0)incy=1; - 80054de: 69fb ldr r3, [r7, #28] - 80054e0: 2b00 cmp r3, #0 - 80054e2: dd02 ble.n 80054ea - 80054e4: 2301 movs r3, #1 - 80054e6: 613b str r3, [r7, #16] - 80054e8: e00b b.n 8005502 - else if(delta_y==0)incy=0;//水平线 - 80054ea: 69fb ldr r3, [r7, #28] - 80054ec: 2b00 cmp r3, #0 - 80054ee: d102 bne.n 80054f6 - 80054f0: 2300 movs r3, #0 - 80054f2: 613b str r3, [r7, #16] - 80054f4: e005 b.n 8005502 - else{incy=-1;delta_y=-delta_y;} - 80054f6: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 80054fa: 613b str r3, [r7, #16] - 80054fc: 69fb ldr r3, [r7, #28] - 80054fe: 425b negs r3, r3 + 80054fa: 883a ldrh r2, [r7, #0] + 80054fc: 88bb ldrh r3, [r7, #4] + 80054fe: 1ad3 subs r3, r2, r3 8005500: 61fb str r3, [r7, #28] - if( delta_x>delta_y)distance=delta_x; //选取基本增量坐标轴 - 8005502: 6a3a ldr r2, [r7, #32] - 8005504: 69fb ldr r3, [r7, #28] - 8005506: 429a cmp r2, r3 - 8005508: dd02 ble.n 8005510 + uRow=x1; + 8005502: 88fb ldrh r3, [r7, #6] + 8005504: 60fb str r3, [r7, #12] + uCol=y1; + 8005506: 88bb ldrh r3, [r7, #4] + 8005508: 60bb str r3, [r7, #8] + if(delta_x>0)incx=1; //设置单步方向 800550a: 6a3b ldr r3, [r7, #32] - 800550c: 61bb str r3, [r7, #24] - 800550e: e001 b.n 8005514 + 800550c: 2b00 cmp r3, #0 + 800550e: dd02 ble.n 8005516 + 8005510: 2301 movs r3, #1 + 8005512: 617b str r3, [r7, #20] + 8005514: e00b b.n 800552e + else if(delta_x==0)incx=0;//垂直线 + 8005516: 6a3b ldr r3, [r7, #32] + 8005518: 2b00 cmp r3, #0 + 800551a: d102 bne.n 8005522 + 800551c: 2300 movs r3, #0 + 800551e: 617b str r3, [r7, #20] + 8005520: e005 b.n 800552e + else {incx=-1;delta_x=-delta_x;} + 8005522: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8005526: 617b str r3, [r7, #20] + 8005528: 6a3b ldr r3, [r7, #32] + 800552a: 425b negs r3, r3 + 800552c: 623b str r3, [r7, #32] + if(delta_y>0)incy=1; + 800552e: 69fb ldr r3, [r7, #28] + 8005530: 2b00 cmp r3, #0 + 8005532: dd02 ble.n 800553a + 8005534: 2301 movs r3, #1 + 8005536: 613b str r3, [r7, #16] + 8005538: e00b b.n 8005552 + else if(delta_y==0)incy=0;//水平线 + 800553a: 69fb ldr r3, [r7, #28] + 800553c: 2b00 cmp r3, #0 + 800553e: d102 bne.n 8005546 + 8005540: 2300 movs r3, #0 + 8005542: 613b str r3, [r7, #16] + 8005544: e005 b.n 8005552 + else{incy=-1;delta_y=-delta_y;} + 8005546: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800554a: 613b str r3, [r7, #16] + 800554c: 69fb ldr r3, [r7, #28] + 800554e: 425b negs r3, r3 + 8005550: 61fb str r3, [r7, #28] + if( delta_x>delta_y)distance=delta_x; //选取基本增量坐标轴 + 8005552: 6a3a ldr r2, [r7, #32] + 8005554: 69fb ldr r3, [r7, #28] + 8005556: 429a cmp r2, r3 + 8005558: dd02 ble.n 8005560 + 800555a: 6a3b ldr r3, [r7, #32] + 800555c: 61bb str r3, [r7, #24] + 800555e: e001 b.n 8005564 else distance=delta_y; - 8005510: 69fb ldr r3, [r7, #28] - 8005512: 61bb str r3, [r7, #24] + 8005560: 69fb ldr r3, [r7, #28] + 8005562: 61bb str r3, [r7, #24] for(t=0;t<=distance+1;t++ )//画线输出 - 8005514: 2300 movs r3, #0 - 8005516: 85fb strh r3, [r7, #46] ; 0x2e - 8005518: e02b b.n 8005572 + 8005564: 2300 movs r3, #0 + 8005566: 85fb strh r3, [r7, #46] ; 0x2e + 8005568: e02b b.n 80055c2 { LCD_set_dot(uRow,uCol,color);//画点 - 800551a: 68fb ldr r3, [r7, #12] - 800551c: b29b uxth r3, r3 - 800551e: 68ba ldr r2, [r7, #8] - 8005520: b291 uxth r1, r2 - 8005522: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 - 8005526: 4618 mov r0, r3 - 8005528: f7ff ff36 bl 8005398 + 800556a: 68fb ldr r3, [r7, #12] + 800556c: b29b uxth r3, r3 + 800556e: 68ba ldr r2, [r7, #8] + 8005570: b291 uxth r1, r2 + 8005572: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 + 8005576: 4618 mov r0, r3 + 8005578: f7ff ff36 bl 80053e8 xerr+=delta_x ; - 800552c: 6aba ldr r2, [r7, #40] ; 0x28 - 800552e: 6a3b ldr r3, [r7, #32] - 8005530: 4413 add r3, r2 - 8005532: 62bb str r3, [r7, #40] ; 0x28 + 800557c: 6aba ldr r2, [r7, #40] ; 0x28 + 800557e: 6a3b ldr r3, [r7, #32] + 8005580: 4413 add r3, r2 + 8005582: 62bb str r3, [r7, #40] ; 0x28 yerr+=delta_y ; - 8005534: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005536: 69fb ldr r3, [r7, #28] - 8005538: 4413 add r3, r2 - 800553a: 627b str r3, [r7, #36] ; 0x24 + 8005584: 6a7a ldr r2, [r7, #36] ; 0x24 + 8005586: 69fb ldr r3, [r7, #28] + 8005588: 4413 add r3, r2 + 800558a: 627b str r3, [r7, #36] ; 0x24 if(xerr>distance) - 800553c: 6aba ldr r2, [r7, #40] ; 0x28 - 800553e: 69bb ldr r3, [r7, #24] - 8005540: 429a cmp r2, r3 - 8005542: dd07 ble.n 8005554 + 800558c: 6aba ldr r2, [r7, #40] ; 0x28 + 800558e: 69bb ldr r3, [r7, #24] + 8005590: 429a cmp r2, r3 + 8005592: dd07 ble.n 80055a4 { xerr-=distance; - 8005544: 6aba ldr r2, [r7, #40] ; 0x28 - 8005546: 69bb ldr r3, [r7, #24] - 8005548: 1ad3 subs r3, r2, r3 - 800554a: 62bb str r3, [r7, #40] ; 0x28 + 8005594: 6aba ldr r2, [r7, #40] ; 0x28 + 8005596: 69bb ldr r3, [r7, #24] + 8005598: 1ad3 subs r3, r2, r3 + 800559a: 62bb str r3, [r7, #40] ; 0x28 uRow+=incx; - 800554c: 68fa ldr r2, [r7, #12] - 800554e: 697b ldr r3, [r7, #20] - 8005550: 4413 add r3, r2 - 8005552: 60fb str r3, [r7, #12] + 800559c: 68fa ldr r2, [r7, #12] + 800559e: 697b ldr r3, [r7, #20] + 80055a0: 4413 add r3, r2 + 80055a2: 60fb str r3, [r7, #12] } if(yerr>distance) - 8005554: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005556: 69bb ldr r3, [r7, #24] - 8005558: 429a cmp r2, r3 - 800555a: dd07 ble.n 800556c + 80055a4: 6a7a ldr r2, [r7, #36] ; 0x24 + 80055a6: 69bb ldr r3, [r7, #24] + 80055a8: 429a cmp r2, r3 + 80055aa: dd07 ble.n 80055bc { yerr-=distance; - 800555c: 6a7a ldr r2, [r7, #36] ; 0x24 - 800555e: 69bb ldr r3, [r7, #24] - 8005560: 1ad3 subs r3, r2, r3 - 8005562: 627b str r3, [r7, #36] ; 0x24 + 80055ac: 6a7a ldr r2, [r7, #36] ; 0x24 + 80055ae: 69bb ldr r3, [r7, #24] + 80055b0: 1ad3 subs r3, r2, r3 + 80055b2: 627b str r3, [r7, #36] ; 0x24 uCol+=incy; - 8005564: 68ba ldr r2, [r7, #8] - 8005566: 693b ldr r3, [r7, #16] - 8005568: 4413 add r3, r2 - 800556a: 60bb str r3, [r7, #8] + 80055b4: 68ba ldr r2, [r7, #8] + 80055b6: 693b ldr r3, [r7, #16] + 80055b8: 4413 add r3, r2 + 80055ba: 60bb str r3, [r7, #8] for(t=0;t<=distance+1;t++ )//画线输出 - 800556c: 8dfb ldrh r3, [r7, #46] ; 0x2e - 800556e: 3301 adds r3, #1 - 8005570: 85fb strh r3, [r7, #46] ; 0x2e - 8005572: 8dfa ldrh r2, [r7, #46] ; 0x2e - 8005574: 69bb ldr r3, [r7, #24] - 8005576: 3301 adds r3, #1 - 8005578: 429a cmp r2, r3 - 800557a: ddce ble.n 800551a + 80055bc: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80055be: 3301 adds r3, #1 + 80055c0: 85fb strh r3, [r7, #46] ; 0x2e + 80055c2: 8dfa ldrh r2, [r7, #46] ; 0x2e + 80055c4: 69bb ldr r3, [r7, #24] + 80055c6: 3301 adds r3, #1 + 80055c8: 429a cmp r2, r3 + 80055ca: ddce ble.n 800556a } } } - 800557c: bf00 nop - 800557e: bf00 nop - 8005580: 3734 adds r7, #52 ; 0x34 - 8005582: 46bd mov sp, r7 - 8005584: bd90 pop {r4, r7, pc} + 80055cc: bf00 nop + 80055ce: bf00 nop + 80055d0: 3734 adds r7, #52 ; 0x34 + 80055d2: 46bd mov sp, r7 + 80055d4: bd90 pop {r4, r7, pc} -08005586 : +080055d6 : //在指定位置画一个指定大小的圆 //(x,y):中心点 //r :半径 void Draw_Circle(uint16_t x0,uint16_t y0,uint16_t r,uint16_t color) { - 8005586: b590 push {r4, r7, lr} - 8005588: b087 sub sp, #28 - 800558a: af00 add r7, sp, #0 - 800558c: 4604 mov r4, r0 - 800558e: 4608 mov r0, r1 - 8005590: 4611 mov r1, r2 - 8005592: 461a mov r2, r3 - 8005594: 4623 mov r3, r4 - 8005596: 80fb strh r3, [r7, #6] - 8005598: 4603 mov r3, r0 - 800559a: 80bb strh r3, [r7, #4] - 800559c: 460b mov r3, r1 - 800559e: 807b strh r3, [r7, #2] - 80055a0: 4613 mov r3, r2 - 80055a2: 803b strh r3, [r7, #0] + 80055d6: b590 push {r4, r7, lr} + 80055d8: b087 sub sp, #28 + 80055da: af00 add r7, sp, #0 + 80055dc: 4604 mov r4, r0 + 80055de: 4608 mov r0, r1 + 80055e0: 4611 mov r1, r2 + 80055e2: 461a mov r2, r3 + 80055e4: 4623 mov r3, r4 + 80055e6: 80fb strh r3, [r7, #6] + 80055e8: 4603 mov r3, r0 + 80055ea: 80bb strh r3, [r7, #4] + 80055ec: 460b mov r3, r1 + 80055ee: 807b strh r3, [r7, #2] + 80055f0: 4613 mov r3, r2 + 80055f2: 803b strh r3, [r7, #0] int a,b; int di; a=0;b=r; - 80055a4: 2300 movs r3, #0 - 80055a6: 617b str r3, [r7, #20] - 80055a8: 887b ldrh r3, [r7, #2] - 80055aa: 613b str r3, [r7, #16] + 80055f4: 2300 movs r3, #0 + 80055f6: 617b str r3, [r7, #20] + 80055f8: 887b ldrh r3, [r7, #2] + 80055fa: 613b str r3, [r7, #16] di=3-(r<<1); //判断下个点位置的标志 - 80055ac: 887b ldrh r3, [r7, #2] - 80055ae: 005b lsls r3, r3, #1 - 80055b0: f1c3 0303 rsb r3, r3, #3 - 80055b4: 60fb str r3, [r7, #12] + 80055fc: 887b ldrh r3, [r7, #2] + 80055fe: 005b lsls r3, r3, #1 + 8005600: f1c3 0303 rsb r3, r3, #3 + 8005604: 60fb str r3, [r7, #12] while(a<=b) - 80055b6: e087 b.n 80056c8 + 8005606: e087 b.n 8005718 { LCD_set_dot(x0+a,y0-b,color); //5 - 80055b8: 697b ldr r3, [r7, #20] - 80055ba: b29a uxth r2, r3 - 80055bc: 88fb ldrh r3, [r7, #6] - 80055be: 4413 add r3, r2 - 80055c0: b298 uxth r0, r3 - 80055c2: 693b ldr r3, [r7, #16] - 80055c4: b29b uxth r3, r3 - 80055c6: 88ba ldrh r2, [r7, #4] - 80055c8: 1ad3 subs r3, r2, r3 - 80055ca: b29b uxth r3, r3 - 80055cc: 883a ldrh r2, [r7, #0] - 80055ce: 4619 mov r1, r3 - 80055d0: f7ff fee2 bl 8005398 + 8005608: 697b ldr r3, [r7, #20] + 800560a: b29a uxth r2, r3 + 800560c: 88fb ldrh r3, [r7, #6] + 800560e: 4413 add r3, r2 + 8005610: b298 uxth r0, r3 + 8005612: 693b ldr r3, [r7, #16] + 8005614: b29b uxth r3, r3 + 8005616: 88ba ldrh r2, [r7, #4] + 8005618: 1ad3 subs r3, r2, r3 + 800561a: b29b uxth r3, r3 + 800561c: 883a ldrh r2, [r7, #0] + 800561e: 4619 mov r1, r3 + 8005620: f7ff fee2 bl 80053e8 LCD_set_dot(x0+b,y0-a,color); //0 - 80055d4: 693b ldr r3, [r7, #16] - 80055d6: b29a uxth r2, r3 - 80055d8: 88fb ldrh r3, [r7, #6] - 80055da: 4413 add r3, r2 - 80055dc: b298 uxth r0, r3 - 80055de: 697b ldr r3, [r7, #20] - 80055e0: b29b uxth r3, r3 - 80055e2: 88ba ldrh r2, [r7, #4] - 80055e4: 1ad3 subs r3, r2, r3 - 80055e6: b29b uxth r3, r3 - 80055e8: 883a ldrh r2, [r7, #0] - 80055ea: 4619 mov r1, r3 - 80055ec: f7ff fed4 bl 8005398 + 8005624: 693b ldr r3, [r7, #16] + 8005626: b29a uxth r2, r3 + 8005628: 88fb ldrh r3, [r7, #6] + 800562a: 4413 add r3, r2 + 800562c: b298 uxth r0, r3 + 800562e: 697b ldr r3, [r7, #20] + 8005630: b29b uxth r3, r3 + 8005632: 88ba ldrh r2, [r7, #4] + 8005634: 1ad3 subs r3, r2, r3 + 8005636: b29b uxth r3, r3 + 8005638: 883a ldrh r2, [r7, #0] + 800563a: 4619 mov r1, r3 + 800563c: f7ff fed4 bl 80053e8 LCD_set_dot(x0+b,y0+a,color); //4 - 80055f0: 693b ldr r3, [r7, #16] - 80055f2: b29a uxth r2, r3 - 80055f4: 88fb ldrh r3, [r7, #6] - 80055f6: 4413 add r3, r2 - 80055f8: b298 uxth r0, r3 - 80055fa: 697b ldr r3, [r7, #20] - 80055fc: b29a uxth r2, r3 - 80055fe: 88bb ldrh r3, [r7, #4] - 8005600: 4413 add r3, r2 - 8005602: b29b uxth r3, r3 - 8005604: 883a ldrh r2, [r7, #0] - 8005606: 4619 mov r1, r3 - 8005608: f7ff fec6 bl 8005398 + 8005640: 693b ldr r3, [r7, #16] + 8005642: b29a uxth r2, r3 + 8005644: 88fb ldrh r3, [r7, #6] + 8005646: 4413 add r3, r2 + 8005648: b298 uxth r0, r3 + 800564a: 697b ldr r3, [r7, #20] + 800564c: b29a uxth r2, r3 + 800564e: 88bb ldrh r3, [r7, #4] + 8005650: 4413 add r3, r2 + 8005652: b29b uxth r3, r3 + 8005654: 883a ldrh r2, [r7, #0] + 8005656: 4619 mov r1, r3 + 8005658: f7ff fec6 bl 80053e8 LCD_set_dot(x0+a,y0+b,color); //6 - 800560c: 697b ldr r3, [r7, #20] - 800560e: b29a uxth r2, r3 - 8005610: 88fb ldrh r3, [r7, #6] - 8005612: 4413 add r3, r2 - 8005614: b298 uxth r0, r3 - 8005616: 693b ldr r3, [r7, #16] - 8005618: b29a uxth r2, r3 - 800561a: 88bb ldrh r3, [r7, #4] - 800561c: 4413 add r3, r2 - 800561e: b29b uxth r3, r3 - 8005620: 883a ldrh r2, [r7, #0] - 8005622: 4619 mov r1, r3 - 8005624: f7ff feb8 bl 8005398 + 800565c: 697b ldr r3, [r7, #20] + 800565e: b29a uxth r2, r3 + 8005660: 88fb ldrh r3, [r7, #6] + 8005662: 4413 add r3, r2 + 8005664: b298 uxth r0, r3 + 8005666: 693b ldr r3, [r7, #16] + 8005668: b29a uxth r2, r3 + 800566a: 88bb ldrh r3, [r7, #4] + 800566c: 4413 add r3, r2 + 800566e: b29b uxth r3, r3 + 8005670: 883a ldrh r2, [r7, #0] + 8005672: 4619 mov r1, r3 + 8005674: f7ff feb8 bl 80053e8 LCD_set_dot(x0-a,y0+b,color); //1 - 8005628: 697b ldr r3, [r7, #20] - 800562a: b29b uxth r3, r3 - 800562c: 88fa ldrh r2, [r7, #6] - 800562e: 1ad3 subs r3, r2, r3 - 8005630: b298 uxth r0, r3 - 8005632: 693b ldr r3, [r7, #16] - 8005634: b29a uxth r2, r3 - 8005636: 88bb ldrh r3, [r7, #4] - 8005638: 4413 add r3, r2 - 800563a: b29b uxth r3, r3 - 800563c: 883a ldrh r2, [r7, #0] - 800563e: 4619 mov r1, r3 - 8005640: f7ff feaa bl 8005398 + 8005678: 697b ldr r3, [r7, #20] + 800567a: b29b uxth r3, r3 + 800567c: 88fa ldrh r2, [r7, #6] + 800567e: 1ad3 subs r3, r2, r3 + 8005680: b298 uxth r0, r3 + 8005682: 693b ldr r3, [r7, #16] + 8005684: b29a uxth r2, r3 + 8005686: 88bb ldrh r3, [r7, #4] + 8005688: 4413 add r3, r2 + 800568a: b29b uxth r3, r3 + 800568c: 883a ldrh r2, [r7, #0] + 800568e: 4619 mov r1, r3 + 8005690: f7ff feaa bl 80053e8 LCD_set_dot(x0-b,y0+a,color); - 8005644: 693b ldr r3, [r7, #16] - 8005646: b29b uxth r3, r3 - 8005648: 88fa ldrh r2, [r7, #6] - 800564a: 1ad3 subs r3, r2, r3 - 800564c: b298 uxth r0, r3 - 800564e: 697b ldr r3, [r7, #20] - 8005650: b29a uxth r2, r3 - 8005652: 88bb ldrh r3, [r7, #4] - 8005654: 4413 add r3, r2 - 8005656: b29b uxth r3, r3 - 8005658: 883a ldrh r2, [r7, #0] - 800565a: 4619 mov r1, r3 - 800565c: f7ff fe9c bl 8005398 + 8005694: 693b ldr r3, [r7, #16] + 8005696: b29b uxth r3, r3 + 8005698: 88fa ldrh r2, [r7, #6] + 800569a: 1ad3 subs r3, r2, r3 + 800569c: b298 uxth r0, r3 + 800569e: 697b ldr r3, [r7, #20] + 80056a0: b29a uxth r2, r3 + 80056a2: 88bb ldrh r3, [r7, #4] + 80056a4: 4413 add r3, r2 + 80056a6: b29b uxth r3, r3 + 80056a8: 883a ldrh r2, [r7, #0] + 80056aa: 4619 mov r1, r3 + 80056ac: f7ff fe9c bl 80053e8 LCD_set_dot(x0-a,y0-b,color); //2 - 8005660: 697b ldr r3, [r7, #20] - 8005662: b29b uxth r3, r3 - 8005664: 88fa ldrh r2, [r7, #6] - 8005666: 1ad3 subs r3, r2, r3 - 8005668: b298 uxth r0, r3 - 800566a: 693b ldr r3, [r7, #16] - 800566c: b29b uxth r3, r3 - 800566e: 88ba ldrh r2, [r7, #4] - 8005670: 1ad3 subs r3, r2, r3 - 8005672: b29b uxth r3, r3 - 8005674: 883a ldrh r2, [r7, #0] - 8005676: 4619 mov r1, r3 - 8005678: f7ff fe8e bl 8005398 + 80056b0: 697b ldr r3, [r7, #20] + 80056b2: b29b uxth r3, r3 + 80056b4: 88fa ldrh r2, [r7, #6] + 80056b6: 1ad3 subs r3, r2, r3 + 80056b8: b298 uxth r0, r3 + 80056ba: 693b ldr r3, [r7, #16] + 80056bc: b29b uxth r3, r3 + 80056be: 88ba ldrh r2, [r7, #4] + 80056c0: 1ad3 subs r3, r2, r3 + 80056c2: b29b uxth r3, r3 + 80056c4: 883a ldrh r2, [r7, #0] + 80056c6: 4619 mov r1, r3 + 80056c8: f7ff fe8e bl 80053e8 LCD_set_dot(x0-b,y0-a,color); //7 - 800567c: 693b ldr r3, [r7, #16] - 800567e: b29b uxth r3, r3 - 8005680: 88fa ldrh r2, [r7, #6] - 8005682: 1ad3 subs r3, r2, r3 - 8005684: b298 uxth r0, r3 - 8005686: 697b ldr r3, [r7, #20] - 8005688: b29b uxth r3, r3 - 800568a: 88ba ldrh r2, [r7, #4] - 800568c: 1ad3 subs r3, r2, r3 - 800568e: b29b uxth r3, r3 - 8005690: 883a ldrh r2, [r7, #0] - 8005692: 4619 mov r1, r3 - 8005694: f7ff fe80 bl 8005398 + 80056cc: 693b ldr r3, [r7, #16] + 80056ce: b29b uxth r3, r3 + 80056d0: 88fa ldrh r2, [r7, #6] + 80056d2: 1ad3 subs r3, r2, r3 + 80056d4: b298 uxth r0, r3 + 80056d6: 697b ldr r3, [r7, #20] + 80056d8: b29b uxth r3, r3 + 80056da: 88ba ldrh r2, [r7, #4] + 80056dc: 1ad3 subs r3, r2, r3 + 80056de: b29b uxth r3, r3 + 80056e0: 883a ldrh r2, [r7, #0] + 80056e2: 4619 mov r1, r3 + 80056e4: f7ff fe80 bl 80053e8 a++; - 8005698: 697b ldr r3, [r7, #20] - 800569a: 3301 adds r3, #1 - 800569c: 617b str r3, [r7, #20] + 80056e8: 697b ldr r3, [r7, #20] + 80056ea: 3301 adds r3, #1 + 80056ec: 617b str r3, [r7, #20] //使用Bresenham算法画圆 if(di<0)di +=4*a+6; - 800569e: 68fb ldr r3, [r7, #12] - 80056a0: 2b00 cmp r3, #0 - 80056a2: da06 bge.n 80056b2 - 80056a4: 697b ldr r3, [r7, #20] - 80056a6: 009b lsls r3, r3, #2 - 80056a8: 3306 adds r3, #6 - 80056aa: 68fa ldr r2, [r7, #12] - 80056ac: 4413 add r3, r2 - 80056ae: 60fb str r3, [r7, #12] - 80056b0: e00a b.n 80056c8 + 80056ee: 68fb ldr r3, [r7, #12] + 80056f0: 2b00 cmp r3, #0 + 80056f2: da06 bge.n 8005702 + 80056f4: 697b ldr r3, [r7, #20] + 80056f6: 009b lsls r3, r3, #2 + 80056f8: 3306 adds r3, #6 + 80056fa: 68fa ldr r2, [r7, #12] + 80056fc: 4413 add r3, r2 + 80056fe: 60fb str r3, [r7, #12] + 8005700: e00a b.n 8005718 else { di+=10+4*(a-b); - 80056b2: 697a ldr r2, [r7, #20] - 80056b4: 693b ldr r3, [r7, #16] - 80056b6: 1ad3 subs r3, r2, r3 - 80056b8: 009b lsls r3, r3, #2 - 80056ba: 330a adds r3, #10 - 80056bc: 68fa ldr r2, [r7, #12] - 80056be: 4413 add r3, r2 - 80056c0: 60fb str r3, [r7, #12] + 8005702: 697a ldr r2, [r7, #20] + 8005704: 693b ldr r3, [r7, #16] + 8005706: 1ad3 subs r3, r2, r3 + 8005708: 009b lsls r3, r3, #2 + 800570a: 330a adds r3, #10 + 800570c: 68fa ldr r2, [r7, #12] + 800570e: 4413 add r3, r2 + 8005710: 60fb str r3, [r7, #12] b--; - 80056c2: 693b ldr r3, [r7, #16] - 80056c4: 3b01 subs r3, #1 - 80056c6: 613b str r3, [r7, #16] + 8005712: 693b ldr r3, [r7, #16] + 8005714: 3b01 subs r3, #1 + 8005716: 613b str r3, [r7, #16] while(a<=b) - 80056c8: 697a ldr r2, [r7, #20] - 80056ca: 693b ldr r3, [r7, #16] - 80056cc: 429a cmp r2, r3 - 80056ce: f77f af73 ble.w 80055b8 + 8005718: 697a ldr r2, [r7, #20] + 800571a: 693b ldr r3, [r7, #16] + 800571c: 429a cmp r2, r3 + 800571e: f77f af73 ble.w 8005608 } } } - 80056d2: bf00 nop - 80056d4: bf00 nop - 80056d6: 371c adds r7, #28 - 80056d8: 46bd mov sp, r7 - 80056da: bd90 pop {r4, r7, pc} + 8005722: bf00 nop + 8005724: bf00 nop + 8005726: 371c adds r7, #28 + 8005728: 46bd mov sp, r7 + 800572a: bd90 pop {r4, r7, pc} -080056dc : +0800572c : //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) { - 80056dc: b590 push {r4, r7, lr} - 80056de: b085 sub sp, #20 - 80056e0: af00 add r7, sp, #0 - 80056e2: 4604 mov r4, r0 - 80056e4: 4608 mov r0, r1 - 80056e6: 4611 mov r1, r2 - 80056e8: 461a mov r2, r3 - 80056ea: 4623 mov r3, r4 - 80056ec: 80fb strh r3, [r7, #6] - 80056ee: 4603 mov r3, r0 - 80056f0: 80bb strh r3, [r7, #4] - 80056f2: 460b mov r3, r1 - 80056f4: 70fb strb r3, [r7, #3] - 80056f6: 4613 mov r3, r2 - 80056f8: 70bb strb r3, [r7, #2] + 800572c: b590 push {r4, r7, lr} + 800572e: b085 sub sp, #20 + 8005730: af00 add r7, sp, #0 + 8005732: 4604 mov r4, r0 + 8005734: 4608 mov r0, r1 + 8005736: 4611 mov r1, r2 + 8005738: 461a mov r2, r3 + 800573a: 4623 mov r3, r4 + 800573c: 80fb strh r3, [r7, #6] + 800573e: 4603 mov r3, r0 + 8005740: 80bb strh r3, [r7, #4] + 8005742: 460b mov r3, r1 + 8005744: 70fb strb r3, [r7, #3] + 8005746: 4613 mov r3, r2 + 8005748: 70bb strb r3, [r7, #2] uint8_t temp,t1,t; uint16_t y0=y; - 80056fa: 88bb ldrh r3, [r7, #4] - 80056fc: 817b strh r3, [r7, #10] + 800574a: 88bb ldrh r3, [r7, #4] + 800574c: 817b strh r3, [r7, #10] //设置窗口 num=num-' ';//得到偏移后的值 - 80056fe: 78fb ldrb r3, [r7, #3] - 8005700: 3b20 subs r3, #32 - 8005702: 70fb strb r3, [r7, #3] + 800574e: 78fb ldrb r3, [r7, #3] + 8005750: 3b20 subs r3, #32 + 8005752: 70fb strb r3, [r7, #3] for(t=0;t + 8005754: 2300 movs r3, #0 + 8005756: 737b strb r3, [r7, #13] + 8005758: e055 b.n 8005806 { if(size==12){temp=asc2_1206[num][t];} //调用1206字体 - 800570a: 78bb ldrb r3, [r7, #2] - 800570c: 2b0c cmp r3, #12 - 800570e: d10b bne.n 8005728 - 8005710: 78fa ldrb r2, [r7, #3] - 8005712: 7b79 ldrb r1, [r7, #13] - 8005714: 482c ldr r0, [pc, #176] ; (80057c8 ) - 8005716: 4613 mov r3, r2 - 8005718: 005b lsls r3, r3, #1 - 800571a: 4413 add r3, r2 - 800571c: 009b lsls r3, r3, #2 - 800571e: 4403 add r3, r0 - 8005720: 440b add r3, r1 - 8005722: 781b ldrb r3, [r3, #0] - 8005724: 73fb strb r3, [r7, #15] - 8005726: e007 b.n 8005738 + 800575a: 78bb ldrb r3, [r7, #2] + 800575c: 2b0c cmp r3, #12 + 800575e: d10b bne.n 8005778 + 8005760: 78fa ldrb r2, [r7, #3] + 8005762: 7b79 ldrb r1, [r7, #13] + 8005764: 482c ldr r0, [pc, #176] ; (8005818 ) + 8005766: 4613 mov r3, r2 + 8005768: 005b lsls r3, r3, #1 + 800576a: 4413 add r3, r2 + 800576c: 009b lsls r3, r3, #2 + 800576e: 4403 add r3, r0 + 8005770: 440b add r3, r1 + 8005772: 781b ldrb r3, [r3, #0] + 8005774: 73fb strb r3, [r7, #15] + 8005776: e007 b.n 8005788 else{ temp=asc2_1608[num][t]; } //调用1608字体 - 8005728: 78fa ldrb r2, [r7, #3] - 800572a: 7b7b ldrb r3, [r7, #13] - 800572c: 4927 ldr r1, [pc, #156] ; (80057cc ) - 800572e: 0112 lsls r2, r2, #4 - 8005730: 440a add r2, r1 - 8005732: 4413 add r3, r2 - 8005734: 781b ldrb r3, [r3, #0] - 8005736: 73fb strb r3, [r7, #15] + 8005778: 78fa ldrb r2, [r7, #3] + 800577a: 7b7b ldrb r3, [r7, #13] + 800577c: 4927 ldr r1, [pc, #156] ; (800581c ) + 800577e: 0112 lsls r2, r2, #4 + 8005780: 440a add r2, r1 + 8005782: 4413 add r3, r2 + 8005784: 781b ldrb r3, [r3, #0] + 8005786: 73fb strb r3, [r7, #15] for(t1=0;t1<8;t1++) - 8005738: 2300 movs r3, #0 - 800573a: 73bb strb r3, [r7, #14] - 800573c: e033 b.n 80057a6 + 8005788: 2300 movs r3, #0 + 800578a: 73bb strb r3, [r7, #14] + 800578c: e033 b.n 80057f6 { if(temp&0x80){LCD_set_dot(x,y,color);}else{if(bg!=color){LCD_set_dot(x,y,bg);}} - 800573e: f997 300f ldrsb.w r3, [r7, #15] - 8005742: 2b00 cmp r3, #0 - 8005744: da06 bge.n 8005754 - 8005746: 8cba ldrh r2, [r7, #36] ; 0x24 - 8005748: 88b9 ldrh r1, [r7, #4] - 800574a: 88fb ldrh r3, [r7, #6] - 800574c: 4618 mov r0, r3 - 800574e: f7ff fe23 bl 8005398 - 8005752: e009 b.n 8005768 - 8005754: 8c3a ldrh r2, [r7, #32] - 8005756: 8cbb ldrh r3, [r7, #36] ; 0x24 - 8005758: 429a cmp r2, r3 - 800575a: d005 beq.n 8005768 - 800575c: 8c3a ldrh r2, [r7, #32] - 800575e: 88b9 ldrh r1, [r7, #4] - 8005760: 88fb ldrh r3, [r7, #6] - 8005762: 4618 mov r0, r3 - 8005764: f7ff fe18 bl 8005398 + 800578e: f997 300f ldrsb.w r3, [r7, #15] + 8005792: 2b00 cmp r3, #0 + 8005794: da06 bge.n 80057a4 + 8005796: 8cba ldrh r2, [r7, #36] ; 0x24 + 8005798: 88b9 ldrh r1, [r7, #4] + 800579a: 88fb ldrh r3, [r7, #6] + 800579c: 4618 mov r0, r3 + 800579e: f7ff fe23 bl 80053e8 + 80057a2: e009 b.n 80057b8 + 80057a4: 8c3a ldrh r2, [r7, #32] + 80057a6: 8cbb ldrh r3, [r7, #36] ; 0x24 + 80057a8: 429a cmp r2, r3 + 80057aa: d005 beq.n 80057b8 + 80057ac: 8c3a ldrh r2, [r7, #32] + 80057ae: 88b9 ldrh r1, [r7, #4] + 80057b0: 88fb ldrh r3, [r7, #6] + 80057b2: 4618 mov r0, r3 + 80057b4: f7ff fe18 bl 80053e8 temp<<=1; - 8005768: 7bfb ldrb r3, [r7, #15] - 800576a: 005b lsls r3, r3, #1 - 800576c: 73fb strb r3, [r7, #15] + 80057b8: 7bfb ldrb r3, [r7, #15] + 80057ba: 005b lsls r3, r3, #1 + 80057bc: 73fb strb r3, [r7, #15] y++; - 800576e: 88bb ldrh r3, [r7, #4] - 8005770: 3301 adds r3, #1 - 8005772: 80bb strh r3, [r7, #4] + 80057be: 88bb ldrh r3, [r7, #4] + 80057c0: 3301 adds r3, #1 + 80057c2: 80bb strh r3, [r7, #4] if(x>=lcddev.width){return;}//超区域了 - 8005774: 4b16 ldr r3, [pc, #88] ; (80057d0 ) - 8005776: 881b ldrh r3, [r3, #0] - 8005778: 88fa ldrh r2, [r7, #6] - 800577a: 429a cmp r2, r3 - 800577c: d220 bcs.n 80057c0 + 80057c4: 4b16 ldr r3, [pc, #88] ; (8005820 ) + 80057c6: 881b ldrh r3, [r3, #0] + 80057c8: 88fa ldrh r2, [r7, #6] + 80057ca: 429a cmp r2, r3 + 80057cc: d220 bcs.n 8005810 if((y-y0)==size) - 800577e: 88ba ldrh r2, [r7, #4] - 8005780: 897b ldrh r3, [r7, #10] - 8005782: 1ad2 subs r2, r2, r3 - 8005784: 78bb ldrb r3, [r7, #2] - 8005786: 429a cmp r2, r3 - 8005788: d10a bne.n 80057a0 + 80057ce: 88ba ldrh r2, [r7, #4] + 80057d0: 897b ldrh r3, [r7, #10] + 80057d2: 1ad2 subs r2, r2, r3 + 80057d4: 78bb ldrb r3, [r7, #2] + 80057d6: 429a cmp r2, r3 + 80057d8: d10a bne.n 80057f0 { y=y0; - 800578a: 897b ldrh r3, [r7, #10] - 800578c: 80bb strh r3, [r7, #4] + 80057da: 897b ldrh r3, [r7, #10] + 80057dc: 80bb strh r3, [r7, #4] x++; - 800578e: 88fb ldrh r3, [r7, #6] - 8005790: 3301 adds r3, #1 - 8005792: 80fb strh r3, [r7, #6] + 80057de: 88fb ldrh r3, [r7, #6] + 80057e0: 3301 adds r3, #1 + 80057e2: 80fb strh r3, [r7, #6] if(x>=lcddev.width){return;}//超区域了 - 8005794: 4b0e ldr r3, [pc, #56] ; (80057d0 ) - 8005796: 881b ldrh r3, [r3, #0] - 8005798: 88fa ldrh r2, [r7, #6] - 800579a: 429a cmp r2, r3 - 800579c: d307 bcc.n 80057ae - 800579e: e010 b.n 80057c2 + 80057e4: 4b0e ldr r3, [pc, #56] ; (8005820 ) + 80057e6: 881b ldrh r3, [r3, #0] + 80057e8: 88fa ldrh r2, [r7, #6] + 80057ea: 429a cmp r2, r3 + 80057ec: d307 bcc.n 80057fe + 80057ee: e010 b.n 8005812 for(t1=0;t1<8;t1++) - 80057a0: 7bbb ldrb r3, [r7, #14] - 80057a2: 3301 adds r3, #1 - 80057a4: 73bb strb r3, [r7, #14] - 80057a6: 7bbb ldrb r3, [r7, #14] - 80057a8: 2b07 cmp r3, #7 - 80057aa: d9c8 bls.n 800573e - 80057ac: e000 b.n 80057b0 + 80057f0: 7bbb ldrb r3, [r7, #14] + 80057f2: 3301 adds r3, #1 + 80057f4: 73bb strb r3, [r7, #14] + 80057f6: 7bbb ldrb r3, [r7, #14] + 80057f8: 2b07 cmp r3, #7 + 80057fa: d9c8 bls.n 800578e + 80057fc: e000 b.n 8005800 break; - 80057ae: bf00 nop + 80057fe: bf00 nop for(t=0;t - 80057be: e000 b.n 80057c2 + 8005800: 7b7b ldrb r3, [r7, #13] + 8005802: 3301 adds r3, #1 + 8005804: 737b strb r3, [r7, #13] + 8005806: 7b7a ldrb r2, [r7, #13] + 8005808: 78bb ldrb r3, [r7, #2] + 800580a: 429a cmp r2, r3 + 800580c: d3a5 bcc.n 800575a + 800580e: e000 b.n 8005812 if(x>=lcddev.width){return;}//超区域了 - 80057c0: bf00 nop + 8005810: bf00 nop } } } - 80057c2: 3714 adds r7, #20 - 80057c4: 46bd mov sp, r7 - 80057c6: bd90 pop {r4, r7, pc} - 80057c8: 0800a4d4 .word 0x0800a4d4 - 80057cc: 0800a948 .word 0x0800a948 - 80057d0: 20000354 .word 0x20000354 + 8005812: 3714 adds r7, #20 + 8005814: 46bd mov sp, r7 + 8005816: bd90 pop {r4, r7, pc} + 8005818: 0800a824 .word 0x0800a824 + 800581c: 0800ac98 .word 0x0800ac98 + 8005820: 20000354 .word 0x20000354 -080057d4 : +08005824 : //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) { - 80057d4: b590 push {r4, r7, lr} - 80057d6: b087 sub sp, #28 - 80057d8: af02 add r7, sp, #8 - 80057da: 60ba str r2, [r7, #8] - 80057dc: 461a mov r2, r3 - 80057de: 4603 mov r3, r0 - 80057e0: 81fb strh r3, [r7, #14] - 80057e2: 460b mov r3, r1 - 80057e4: 81bb strh r3, [r7, #12] - 80057e6: 4613 mov r3, r2 - 80057e8: 71fb strb r3, [r7, #7] + 8005824: b590 push {r4, r7, lr} + 8005826: b087 sub sp, #28 + 8005828: af02 add r7, sp, #8 + 800582a: 60ba str r2, [r7, #8] + 800582c: 461a mov r2, r3 + 800582e: 4603 mov r3, r0 + 8005830: 81fb strh r3, [r7, #14] + 8005832: 460b mov r3, r1 + 8005834: 81bb strh r3, [r7, #12] + 8005836: 4613 mov r3, r2 + 8005838: 71fb strb r3, [r7, #7] while(*p!='\0') - 80057ea: e026 b.n 800583a + 800583a: e026 b.n 800588a { if(x>=lcddev.width||*p=='\n') - 80057ec: 4b17 ldr r3, [pc, #92] ; (800584c ) - 80057ee: 881b ldrh r3, [r3, #0] - 80057f0: 89fa ldrh r2, [r7, #14] - 80057f2: 429a cmp r2, r3 - 80057f4: d203 bcs.n 80057fe - 80057f6: 68bb ldr r3, [r7, #8] - 80057f8: 781b ldrb r3, [r3, #0] - 80057fa: 2b0a cmp r3, #10 - 80057fc: d107 bne.n 800580e + 800583c: 4b17 ldr r3, [pc, #92] ; (800589c ) + 800583e: 881b ldrh r3, [r3, #0] + 8005840: 89fa ldrh r2, [r7, #14] + 8005842: 429a cmp r2, r3 + 8005844: d203 bcs.n 800584e + 8005846: 68bb ldr r3, [r7, #8] + 8005848: 781b ldrb r3, [r3, #0] + 800584a: 2b0a cmp r3, #10 + 800584c: d107 bne.n 800585e { x=0; - 80057fe: 2300 movs r3, #0 - 8005800: 81fb strh r3, [r7, #14] + 800584e: 2300 movs r3, #0 + 8005850: 81fb strh r3, [r7, #14] y+=size; - 8005802: 79fb ldrb r3, [r7, #7] - 8005804: b29a uxth r2, r3 - 8005806: 89bb ldrh r3, [r7, #12] - 8005808: 4413 add r3, r2 - 800580a: 81bb strh r3, [r7, #12] - 800580c: e012 b.n 8005834 + 8005852: 79fb ldrb r3, [r7, #7] + 8005854: b29a uxth r2, r3 + 8005856: 89bb ldrh r3, [r7, #12] + 8005858: 4413 add r3, r2 + 800585a: 81bb strh r3, [r7, #12] + 800585c: e012 b.n 8005884 }else { LCD_ShowChar(x,y,*p,size,bg,color); - 800580e: 68bb ldr r3, [r7, #8] - 8005810: 781a ldrb r2, [r3, #0] - 8005812: 79fc ldrb r4, [r7, #7] - 8005814: 89b9 ldrh r1, [r7, #12] - 8005816: 89f8 ldrh r0, [r7, #14] - 8005818: 8cbb ldrh r3, [r7, #36] ; 0x24 - 800581a: 9301 str r3, [sp, #4] - 800581c: 8c3b ldrh r3, [r7, #32] - 800581e: 9300 str r3, [sp, #0] - 8005820: 4623 mov r3, r4 - 8005822: f7ff ff5b bl 80056dc + 800585e: 68bb ldr r3, [r7, #8] + 8005860: 781a ldrb r2, [r3, #0] + 8005862: 79fc ldrb r4, [r7, #7] + 8005864: 89b9 ldrh r1, [r7, #12] + 8005866: 89f8 ldrh r0, [r7, #14] + 8005868: 8cbb ldrh r3, [r7, #36] ; 0x24 + 800586a: 9301 str r3, [sp, #4] + 800586c: 8c3b ldrh r3, [r7, #32] + 800586e: 9300 str r3, [sp, #0] + 8005870: 4623 mov r3, r4 + 8005872: f7ff ff5b bl 800572c x+=(size/2); - 8005826: 79fb ldrb r3, [r7, #7] - 8005828: 085b lsrs r3, r3, #1 - 800582a: b2db uxtb r3, r3 - 800582c: b29a uxth r2, r3 - 800582e: 89fb ldrh r3, [r7, #14] - 8005830: 4413 add r3, r2 - 8005832: 81fb strh r3, [r7, #14] + 8005876: 79fb ldrb r3, [r7, #7] + 8005878: 085b lsrs r3, r3, #1 + 800587a: b2db uxtb r3, r3 + 800587c: b29a uxth r2, r3 + 800587e: 89fb ldrh r3, [r7, #14] + 8005880: 4413 add r3, r2 + 8005882: 81fb strh r3, [r7, #14] } p++; - 8005834: 68bb ldr r3, [r7, #8] - 8005836: 3301 adds r3, #1 - 8005838: 60bb str r3, [r7, #8] + 8005884: 68bb ldr r3, [r7, #8] + 8005886: 3301 adds r3, #1 + 8005888: 60bb str r3, [r7, #8] while(*p!='\0') - 800583a: 68bb ldr r3, [r7, #8] - 800583c: 781b ldrb r3, [r3, #0] - 800583e: 2b00 cmp r3, #0 - 8005840: d1d4 bne.n 80057ec + 800588a: 68bb ldr r3, [r7, #8] + 800588c: 781b ldrb r3, [r3, #0] + 800588e: 2b00 cmp r3, #0 + 8005890: d1d4 bne.n 800583c } } - 8005842: bf00 nop - 8005844: bf00 nop - 8005846: 3714 adds r7, #20 - 8005848: 46bd mov sp, r7 - 800584a: bd90 pop {r4, r7, pc} - 800584c: 20000354 .word 0x20000354 + 8005892: bf00 nop + 8005894: bf00 nop + 8005896: 3714 adds r7, #20 + 8005898: 46bd mov sp, r7 + 800589a: bd90 pop {r4, r7, pc} + 800589c: 20000354 .word 0x20000354 -08005850 : +080058a0 : //因为eeprom芯片的写入速度有限,每写入一个字符都需要等待一段时间才能完成写入 //整个系统不可能等它一个的,传统的解决方法可以使用定时器中断或者多线程开辟子任务在后台保存, //这里的解决方法是使用状态机,通过一个链表将要保存的数据串起来,再通过状态循环一个个保存,保存延时等于循环用时。 eeprom_write_buff_info eeprom_write_buffer; //创建链表 void EPPROM_SLOWWRITE_INIT() //初始化链表 { - 8005850: b480 push {r7} - 8005852: af00 add r7, sp, #0 + 80058a0: b480 push {r7} + 80058a2: af00 add r7, sp, #0 eeprom_write_buffer.buff=NULL; - 8005854: 4b0a ldr r3, [pc, #40] ; (8005880 ) - 8005856: 2200 movs r2, #0 - 8005858: 601a str r2, [r3, #0] + 80058a4: 4b0a ldr r3, [pc, #40] ; (80058d0 ) + 80058a6: 2200 movs r2, #0 + 80058a8: 601a str r2, [r3, #0] eeprom_write_buffer.end=NULL; - 800585a: 4b09 ldr r3, [pc, #36] ; (8005880 ) - 800585c: 2200 movs r2, #0 - 800585e: 609a str r2, [r3, #8] + 80058aa: 4b09 ldr r3, [pc, #36] ; (80058d0 ) + 80058ac: 2200 movs r2, #0 + 80058ae: 609a str r2, [r3, #8] eeprom_write_buffer.head=NULL; - 8005860: 4b07 ldr r3, [pc, #28] ; (8005880 ) - 8005862: 2200 movs r2, #0 - 8005864: 605a str r2, [r3, #4] + 80058b0: 4b07 ldr r3, [pc, #28] ; (80058d0 ) + 80058b2: 2200 movs r2, #0 + 80058b4: 605a str r2, [r3, #4] eeprom_write_buffer.save_timeout=5; //避免状态机循环过快导致的保存失败,这个是最少延时。(感觉没必要写在这里,太浪费空间了) - 8005866: 4b06 ldr r3, [pc, #24] ; (8005880 ) - 8005868: 2205 movs r2, #5 - 800586a: 741a strb r2, [r3, #16] + 80058b6: 4b06 ldr r3, [pc, #24] ; (80058d0 ) + 80058b8: 2205 movs r2, #5 + 80058ba: 741a strb r2, [r3, #16] eeprom_write_buffer.save_busy=0; //最小延时内为忙状态 - 800586c: 4a04 ldr r2, [pc, #16] ; (8005880 ) - 800586e: 7c53 ldrb r3, [r2, #17] - 8005870: f36f 0300 bfc r3, #0, #1 - 8005874: 7453 strb r3, [r2, #17] + 80058bc: 4a04 ldr r2, [pc, #16] ; (80058d0 ) + 80058be: 7c53 ldrb r3, [r2, #17] + 80058c0: f36f 0300 bfc r3, #0, #1 + 80058c4: 7453 strb r3, [r2, #17] } - 8005876: bf00 nop - 8005878: 46bd mov sp, r7 - 800587a: bc80 pop {r7} - 800587c: 4770 bx lr - 800587e: bf00 nop - 8005880: 20000360 .word 0x20000360 + 80058c6: bf00 nop + 80058c8: 46bd mov sp, r7 + 80058ca: bc80 pop {r7} + 80058cc: 4770 bx lr + 80058ce: bf00 nop + 80058d0: 20000360 .word 0x20000360 -08005884 : +080058d4 : //循环保存服务,检查链表头是否有数据是否忙。 void EEPROM_SLOWWRITE_SERVER() { - 8005884: b580 push {r7, lr} - 8005886: b082 sub sp, #8 - 8005888: af00 add r7, sp, #0 + 80058d4: b580 push {r7, lr} + 80058d6: b082 sub sp, #8 + 80058d8: af00 add r7, sp, #0 eeprom_write_buff *buff; char data; if(eeprom_write_buffer.save_busy) - 800588a: 4b20 ldr r3, [pc, #128] ; (800590c ) - 800588c: 7c5b ldrb r3, [r3, #17] - 800588e: f003 0301 and.w r3, r3, #1 - 8005892: b2db uxtb r3, r3 - 8005894: 2b00 cmp r3, #0 - 8005896: d00c beq.n 80058b2 + 80058da: 4b20 ldr r3, [pc, #128] ; (800595c ) + 80058dc: 7c5b ldrb r3, [r3, #17] + 80058de: f003 0301 and.w r3, r3, #1 + 80058e2: b2db uxtb r3, r3 + 80058e4: 2b00 cmp r3, #0 + 80058e6: d00c beq.n 8005902 { if(HAL_GetTick()>eeprom_write_buffer.save_time) - 8005898: f7fc f946 bl 8001b28 - 800589c: 4602 mov r2, r0 - 800589e: 4b1b ldr r3, [pc, #108] ; (800590c ) - 80058a0: 68db ldr r3, [r3, #12] - 80058a2: 429a cmp r2, r3 - 80058a4: d92e bls.n 8005904 + 80058e8: f7fc f946 bl 8001b78 + 80058ec: 4602 mov r2, r0 + 80058ee: 4b1b ldr r3, [pc, #108] ; (800595c ) + 80058f0: 68db ldr r3, [r3, #12] + 80058f2: 429a cmp r2, r3 + 80058f4: d92e bls.n 8005954 { eeprom_write_buffer.save_busy=0; - 80058a6: 4a19 ldr r2, [pc, #100] ; (800590c ) - 80058a8: 7c53 ldrb r3, [r2, #17] - 80058aa: f36f 0300 bfc r3, #0, #1 - 80058ae: 7453 strb r3, [r2, #17] + 80058f6: 4a19 ldr r2, [pc, #100] ; (800595c ) + 80058f8: 7c53 ldrb r3, [r2, #17] + 80058fa: f36f 0300 bfc r3, #0, #1 + 80058fe: 7453 strb r3, [r2, #17] free(eeprom_write_buffer.head); eeprom_write_buffer.head=buff; } } } - 80058b0: e028 b.n 8005904 + 8005900: e028 b.n 8005954 if(eeprom_write_buffer.head!=NULL) - 80058b2: 4b16 ldr r3, [pc, #88] ; (800590c ) - 80058b4: 685b ldr r3, [r3, #4] - 80058b6: 2b00 cmp r3, #0 - 80058b8: d024 beq.n 8005904 + 8005902: 4b16 ldr r3, [pc, #88] ; (800595c ) + 8005904: 685b ldr r3, [r3, #4] + 8005906: 2b00 cmp r3, #0 + 8005908: d024 beq.n 8005954 eeprom_write_buffer.save_busy=1; - 80058ba: 4a14 ldr r2, [pc, #80] ; (800590c ) - 80058bc: 7c53 ldrb r3, [r2, #17] - 80058be: f043 0301 orr.w r3, r3, #1 - 80058c2: 7453 strb r3, [r2, #17] + 800590a: 4a14 ldr r2, [pc, #80] ; (800595c ) + 800590c: 7c53 ldrb r3, [r2, #17] + 800590e: f043 0301 orr.w r3, r3, #1 + 8005912: 7453 strb r3, [r2, #17] eeprom_write_buffer.save_time=HAL_GetTick()+eeprom_write_buffer.save_timeout; - 80058c4: f7fc f930 bl 8001b28 - 80058c8: 4603 mov r3, r0 - 80058ca: 4a10 ldr r2, [pc, #64] ; (800590c ) - 80058cc: 7c12 ldrb r2, [r2, #16] - 80058ce: 4413 add r3, r2 - 80058d0: 4a0e ldr r2, [pc, #56] ; (800590c ) - 80058d2: 60d3 str r3, [r2, #12] + 8005914: f7fc f930 bl 8001b78 + 8005918: 4603 mov r3, r0 + 800591a: 4a10 ldr r2, [pc, #64] ; (800595c ) + 800591c: 7c12 ldrb r2, [r2, #16] + 800591e: 4413 add r3, r2 + 8005920: 4a0e ldr r2, [pc, #56] ; (800595c ) + 8005922: 60d3 str r3, [r2, #12] buff=eeprom_write_buffer.head->next; - 80058d4: 4b0d ldr r3, [pc, #52] ; (800590c ) - 80058d6: 685b ldr r3, [r3, #4] - 80058d8: 681b ldr r3, [r3, #0] - 80058da: 607b str r3, [r7, #4] + 8005924: 4b0d ldr r3, [pc, #52] ; (800595c ) + 8005926: 685b ldr r3, [r3, #4] + 8005928: 681b ldr r3, [r3, #0] + 800592a: 607b str r3, [r7, #4] data=eeprom_write_buffer.head->date; - 80058dc: 4b0b ldr r3, [pc, #44] ; (800590c ) - 80058de: 685b ldr r3, [r3, #4] - 80058e0: 799b ldrb r3, [r3, #6] - 80058e2: 70fb strb r3, [r7, #3] + 800592c: 4b0b ldr r3, [pc, #44] ; (800595c ) + 800592e: 685b ldr r3, [r3, #4] + 8005930: 799b ldrb r3, [r3, #6] + 8005932: 70fb strb r3, [r7, #3] IIC_SAND_DATE(EEPROM_ADDRESS,eeprom_write_buffer.head->add,&data,1); - 80058e4: 4b09 ldr r3, [pc, #36] ; (800590c ) - 80058e6: 685b ldr r3, [r3, #4] - 80058e8: 8899 ldrh r1, [r3, #4] - 80058ea: 1cfa adds r2, r7, #3 - 80058ec: 2301 movs r3, #1 - 80058ee: 20a0 movs r0, #160 ; 0xa0 - 80058f0: f000 f866 bl 80059c0 + 8005934: 4b09 ldr r3, [pc, #36] ; (800595c ) + 8005936: 685b ldr r3, [r3, #4] + 8005938: 8899 ldrh r1, [r3, #4] + 800593a: 1cfa adds r2, r7, #3 + 800593c: 2301 movs r3, #1 + 800593e: 20a0 movs r0, #160 ; 0xa0 + 8005940: f000 f866 bl 8005a10 free(eeprom_write_buffer.head); - 80058f4: 4b05 ldr r3, [pc, #20] ; (800590c ) - 80058f6: 685b ldr r3, [r3, #4] - 80058f8: 4618 mov r0, r3 - 80058fa: f001 feb5 bl 8007668 + 8005944: 4b05 ldr r3, [pc, #20] ; (800595c ) + 8005946: 685b ldr r3, [r3, #4] + 8005948: 4618 mov r0, r3 + 800594a: f001 ff1d bl 8007788 eeprom_write_buffer.head=buff; - 80058fe: 4a03 ldr r2, [pc, #12] ; (800590c ) - 8005900: 687b ldr r3, [r7, #4] - 8005902: 6053 str r3, [r2, #4] + 800594e: 4a03 ldr r2, [pc, #12] ; (800595c ) + 8005950: 687b ldr r3, [r7, #4] + 8005952: 6053 str r3, [r2, #4] } - 8005904: bf00 nop - 8005906: 3708 adds r7, #8 - 8005908: 46bd mov sp, r7 - 800590a: bd80 pop {r7, pc} - 800590c: 20000360 .word 0x20000360 + 8005954: bf00 nop + 8005956: 3708 adds r7, #8 + 8005958: 46bd mov sp, r7 + 800595a: bd80 pop {r7, pc} + 800595c: 20000360 .word 0x20000360 -08005910 : +08005960 : //从eeprom读取数据 void EEPROM_READ_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8005910: b580 push {r7, lr} - 8005912: b082 sub sp, #8 - 8005914: af00 add r7, sp, #0 - 8005916: 4603 mov r3, r0 - 8005918: 6039 str r1, [r7, #0] - 800591a: 80fb strh r3, [r7, #6] - 800591c: 4613 mov r3, r2 - 800591e: 80bb strh r3, [r7, #4] + 8005960: b580 push {r7, lr} + 8005962: b082 sub sp, #8 + 8005964: af00 add r7, sp, #0 + 8005966: 4603 mov r3, r0 + 8005968: 6039 str r1, [r7, #0] + 800596a: 80fb strh r3, [r7, #6] + 800596c: 4613 mov r3, r2 + 800596e: 80bb strh r3, [r7, #4] IIC_READ_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); - 8005920: 88bb ldrh r3, [r7, #4] - 8005922: 88f9 ldrh r1, [r7, #6] - 8005924: 683a ldr r2, [r7, #0] - 8005926: 20a0 movs r0, #160 ; 0xa0 - 8005928: f000 f868 bl 80059fc + 8005970: 88bb ldrh r3, [r7, #4] + 8005972: 88f9 ldrh r1, [r7, #6] + 8005974: 683a ldr r2, [r7, #0] + 8005976: 20a0 movs r0, #160 ; 0xa0 + 8005978: f000 f868 bl 8005a4c } - 800592c: bf00 nop - 800592e: 3708 adds r7, #8 - 8005930: 46bd mov sp, r7 - 8005932: bd80 pop {r7, pc} + 800597c: bf00 nop + 800597e: 3708 adds r7, #8 + 8005980: 46bd mov sp, r7 + 8005982: bd80 pop {r7, pc} -08005934 : +08005984 : //向eeprom写入数据 void EEPROM_WRITE_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8005934: b580 push {r7, lr} - 8005936: b086 sub sp, #24 - 8005938: af00 add r7, sp, #0 - 800593a: 4603 mov r3, r0 - 800593c: 6039 str r1, [r7, #0] - 800593e: 80fb strh r3, [r7, #6] - 8005940: 4613 mov r3, r2 - 8005942: 80bb strh r3, [r7, #4] + 8005984: b580 push {r7, lr} + 8005986: b086 sub sp, #24 + 8005988: af00 add r7, sp, #0 + 800598a: 4603 mov r3, r0 + 800598c: 6039 str r1, [r7, #0] + 800598e: 80fb strh r3, [r7, #6] + 8005990: 4613 mov r3, r2 + 8005992: 80bb strh r3, [r7, #4] //IIC_SAND_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); uint16_t addoffset=0; - 8005944: 2300 movs r3, #0 - 8005946: 82fb strh r3, [r7, #22] + 8005994: 2300 movs r3, #0 + 8005996: 82fb strh r3, [r7, #22] eeprom_write_buff *buff; eeprom_write_buff *buff2; while(LONG--) - 8005948: e02d b.n 80059a6 + 8005998: e02d b.n 80059f6 { buff =(eeprom_write_buff*)malloc(sizeof(eeprom_write_buff)); - 800594a: 2008 movs r0, #8 - 800594c: f001 fe84 bl 8007658 - 8005950: 4603 mov r3, r0 - 8005952: 613b str r3, [r7, #16] + 800599a: 2008 movs r0, #8 + 800599c: f001 feec bl 8007778 + 80059a0: 4603 mov r3, r0 + 80059a2: 613b str r3, [r7, #16] if(buff!=NULL) - 8005954: 693b ldr r3, [r7, #16] - 8005956: 2b00 cmp r3, #0 - 8005958: d02b beq.n 80059b2 + 80059a4: 693b ldr r3, [r7, #16] + 80059a6: 2b00 cmp r3, #0 + 80059a8: d02b beq.n 8005a02 { buff->add=IN_DEVICE_ADD+addoffset; - 800595a: 88fa ldrh r2, [r7, #6] - 800595c: 8afb ldrh r3, [r7, #22] - 800595e: 4413 add r3, r2 - 8005960: b29a uxth r2, r3 - 8005962: 693b ldr r3, [r7, #16] - 8005964: 809a strh r2, [r3, #4] + 80059aa: 88fa ldrh r2, [r7, #6] + 80059ac: 8afb ldrh r3, [r7, #22] + 80059ae: 4413 add r3, r2 + 80059b0: b29a uxth r2, r3 + 80059b2: 693b ldr r3, [r7, #16] + 80059b4: 809a strh r2, [r3, #4] buff->date=DATAS[addoffset]; - 8005966: 8afb ldrh r3, [r7, #22] - 8005968: 683a ldr r2, [r7, #0] - 800596a: 4413 add r3, r2 - 800596c: 781a ldrb r2, [r3, #0] - 800596e: 693b ldr r3, [r7, #16] - 8005970: 719a strb r2, [r3, #6] + 80059b6: 8afb ldrh r3, [r7, #22] + 80059b8: 683a ldr r2, [r7, #0] + 80059ba: 4413 add r3, r2 + 80059bc: 781a ldrb r2, [r3, #0] + 80059be: 693b ldr r3, [r7, #16] + 80059c0: 719a strb r2, [r3, #6] buff->next=NULL; - 8005972: 693b ldr r3, [r7, #16] - 8005974: 2200 movs r2, #0 - 8005976: 601a str r2, [r3, #0] + 80059c2: 693b ldr r3, [r7, #16] + 80059c4: 2200 movs r2, #0 + 80059c6: 601a str r2, [r3, #0] }else{return ;} if(eeprom_write_buffer.head==NULL) - 8005978: 4b10 ldr r3, [pc, #64] ; (80059bc ) - 800597a: 685b ldr r3, [r3, #4] - 800597c: 2b00 cmp r3, #0 - 800597e: d106 bne.n 800598e + 80059c8: 4b10 ldr r3, [pc, #64] ; (8005a0c ) + 80059ca: 685b ldr r3, [r3, #4] + 80059cc: 2b00 cmp r3, #0 + 80059ce: d106 bne.n 80059de { eeprom_write_buffer.head=buff; - 8005980: 4a0e ldr r2, [pc, #56] ; (80059bc ) - 8005982: 693b ldr r3, [r7, #16] - 8005984: 6053 str r3, [r2, #4] + 80059d0: 4a0e ldr r2, [pc, #56] ; (8005a0c ) + 80059d2: 693b ldr r3, [r7, #16] + 80059d4: 6053 str r3, [r2, #4] eeprom_write_buffer.end=buff; - 8005986: 4a0d ldr r2, [pc, #52] ; (80059bc ) - 8005988: 693b ldr r3, [r7, #16] - 800598a: 6093 str r3, [r2, #8] - 800598c: e008 b.n 80059a0 + 80059d6: 4a0d ldr r2, [pc, #52] ; (8005a0c ) + 80059d8: 693b ldr r3, [r7, #16] + 80059da: 6093 str r3, [r2, #8] + 80059dc: e008 b.n 80059f0 }else { buff2=eeprom_write_buffer.end; - 800598e: 4b0b ldr r3, [pc, #44] ; (80059bc ) - 8005990: 689b ldr r3, [r3, #8] - 8005992: 60fb str r3, [r7, #12] + 80059de: 4b0b ldr r3, [pc, #44] ; (8005a0c ) + 80059e0: 689b ldr r3, [r3, #8] + 80059e2: 60fb str r3, [r7, #12] buff2->next=buff; - 8005994: 68fb ldr r3, [r7, #12] - 8005996: 693a ldr r2, [r7, #16] - 8005998: 601a str r2, [r3, #0] + 80059e4: 68fb ldr r3, [r7, #12] + 80059e6: 693a ldr r2, [r7, #16] + 80059e8: 601a str r2, [r3, #0] eeprom_write_buffer.end=buff; - 800599a: 4a08 ldr r2, [pc, #32] ; (80059bc ) - 800599c: 693b ldr r3, [r7, #16] - 800599e: 6093 str r3, [r2, #8] + 80059ea: 4a08 ldr r2, [pc, #32] ; (8005a0c ) + 80059ec: 693b ldr r3, [r7, #16] + 80059ee: 6093 str r3, [r2, #8] } addoffset++; - 80059a0: 8afb ldrh r3, [r7, #22] - 80059a2: 3301 adds r3, #1 - 80059a4: 82fb strh r3, [r7, #22] + 80059f0: 8afb ldrh r3, [r7, #22] + 80059f2: 3301 adds r3, #1 + 80059f4: 82fb strh r3, [r7, #22] while(LONG--) - 80059a6: 88bb ldrh r3, [r7, #4] - 80059a8: 1e5a subs r2, r3, #1 - 80059aa: 80ba strh r2, [r7, #4] - 80059ac: 2b00 cmp r3, #0 - 80059ae: d1cc bne.n 800594a - 80059b0: e000 b.n 80059b4 + 80059f6: 88bb ldrh r3, [r7, #4] + 80059f8: 1e5a subs r2, r3, #1 + 80059fa: 80ba strh r2, [r7, #4] + 80059fc: 2b00 cmp r3, #0 + 80059fe: d1cc bne.n 800599a + 8005a00: e000 b.n 8005a04 }else{return ;} - 80059b2: bf00 nop + 8005a02: bf00 nop } } - 80059b4: 3718 adds r7, #24 - 80059b6: 46bd mov sp, r7 - 80059b8: bd80 pop {r7, pc} - 80059ba: bf00 nop - 80059bc: 20000360 .word 0x20000360 + 8005a04: 3718 adds r7, #24 + 8005a06: 46bd mov sp, r7 + 8005a08: bd80 pop {r7, pc} + 8005a0a: bf00 nop + 8005a0c: 20000360 .word 0x20000360 -080059c0 : +08005a10 : //iic硬件接口 extern I2C_HandleTypeDef hi2c2; void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 80059c0: b580 push {r7, lr} - 80059c2: b088 sub sp, #32 - 80059c4: af04 add r7, sp, #16 - 80059c6: 60ba str r2, [r7, #8] - 80059c8: 461a mov r2, r3 - 80059ca: 4603 mov r3, r0 - 80059cc: 81fb strh r3, [r7, #14] - 80059ce: 460b mov r3, r1 - 80059d0: 81bb strh r3, [r7, #12] - 80059d2: 4613 mov r3, r2 - 80059d4: 80fb strh r3, [r7, #6] + 8005a10: b580 push {r7, lr} + 8005a12: b088 sub sp, #32 + 8005a14: af04 add r7, sp, #16 + 8005a16: 60ba str r2, [r7, #8] + 8005a18: 461a mov r2, r3 + 8005a1a: 4603 mov r3, r0 + 8005a1c: 81fb strh r3, [r7, #14] + 8005a1e: 460b mov r3, r1 + 8005a20: 81bb strh r3, [r7, #12] + 8005a22: 4613 mov r3, r2 + 8005a24: 80fb strh r3, [r7, #6] HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 80059d6: 89ba ldrh r2, [r7, #12] - 80059d8: 89f9 ldrh r1, [r7, #14] - 80059da: 2364 movs r3, #100 ; 0x64 - 80059dc: 9302 str r3, [sp, #8] - 80059de: 88fb ldrh r3, [r7, #6] - 80059e0: 9301 str r3, [sp, #4] - 80059e2: 68bb ldr r3, [r7, #8] - 80059e4: 9300 str r3, [sp, #0] - 80059e6: 2301 movs r3, #1 - 80059e8: 4803 ldr r0, [pc, #12] ; (80059f8 ) - 80059ea: f7fc fce1 bl 80023b0 + 8005a26: 89ba ldrh r2, [r7, #12] + 8005a28: 89f9 ldrh r1, [r7, #14] + 8005a2a: 2364 movs r3, #100 ; 0x64 + 8005a2c: 9302 str r3, [sp, #8] + 8005a2e: 88fb ldrh r3, [r7, #6] + 8005a30: 9301 str r3, [sp, #4] + 8005a32: 68bb ldr r3, [r7, #8] + 8005a34: 9300 str r3, [sp, #0] + 8005a36: 2301 movs r3, #1 + 8005a38: 4803 ldr r0, [pc, #12] ; (8005a48 ) + 8005a3a: f7fc fce1 bl 8002400 } - 80059ee: bf00 nop - 80059f0: 3710 adds r7, #16 - 80059f2: 46bd mov sp, r7 - 80059f4: bd80 pop {r7, pc} - 80059f6: bf00 nop - 80059f8: 20000214 .word 0x20000214 + 8005a3e: bf00 nop + 8005a40: 3710 adds r7, #16 + 8005a42: 46bd mov sp, r7 + 8005a44: bd80 pop {r7, pc} + 8005a46: bf00 nop + 8005a48: 20000214 .word 0x20000214 -080059fc : +08005a4c : void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 80059fc: b580 push {r7, lr} - 80059fe: b088 sub sp, #32 - 8005a00: af04 add r7, sp, #16 - 8005a02: 60ba str r2, [r7, #8] - 8005a04: 461a mov r2, r3 - 8005a06: 4603 mov r3, r0 - 8005a08: 81fb strh r3, [r7, #14] - 8005a0a: 460b mov r3, r1 - 8005a0c: 81bb strh r3, [r7, #12] - 8005a0e: 4613 mov r3, r2 - 8005a10: 80fb strh r3, [r7, #6] + 8005a4c: b580 push {r7, lr} + 8005a4e: b088 sub sp, #32 + 8005a50: af04 add r7, sp, #16 + 8005a52: 60ba str r2, [r7, #8] + 8005a54: 461a mov r2, r3 + 8005a56: 4603 mov r3, r0 + 8005a58: 81fb strh r3, [r7, #14] + 8005a5a: 460b mov r3, r1 + 8005a5c: 81bb strh r3, [r7, #12] + 8005a5e: 4613 mov r3, r2 + 8005a60: 80fb strh r3, [r7, #6] HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 8005a12: 89ba ldrh r2, [r7, #12] - 8005a14: 89f9 ldrh r1, [r7, #14] - 8005a16: 2364 movs r3, #100 ; 0x64 - 8005a18: 9302 str r3, [sp, #8] - 8005a1a: 88fb ldrh r3, [r7, #6] - 8005a1c: 9301 str r3, [sp, #4] - 8005a1e: 68bb ldr r3, [r7, #8] - 8005a20: 9300 str r3, [sp, #0] - 8005a22: 2301 movs r3, #1 - 8005a24: 4803 ldr r0, [pc, #12] ; (8005a34 ) - 8005a26: f7fc fdbd bl 80025a4 + 8005a62: 89ba ldrh r2, [r7, #12] + 8005a64: 89f9 ldrh r1, [r7, #14] + 8005a66: 2364 movs r3, #100 ; 0x64 + 8005a68: 9302 str r3, [sp, #8] + 8005a6a: 88fb ldrh r3, [r7, #6] + 8005a6c: 9301 str r3, [sp, #4] + 8005a6e: 68bb ldr r3, [r7, #8] + 8005a70: 9300 str r3, [sp, #0] + 8005a72: 2301 movs r3, #1 + 8005a74: 4803 ldr r0, [pc, #12] ; (8005a84 ) + 8005a76: f7fc fdbd bl 80025f4 } - 8005a2a: bf00 nop - 8005a2c: 3710 adds r7, #16 - 8005a2e: 46bd mov sp, r7 - 8005a30: bd80 pop {r7, pc} - 8005a32: bf00 nop - 8005a34: 20000214 .word 0x20000214 + 8005a7a: bf00 nop + 8005a7c: 3710 adds r7, #16 + 8005a7e: 46bd mov sp, r7 + 8005a80: bd80 pop {r7, pc} + 8005a82: bf00 nop + 8005a84: 20000214 .word 0x20000214 -08005a38 : +08005a88 : * 输入 :ucAddress,寄存器地址 * 返回 : 寄存器的当前值 * 调用 :内部调用 */ uint8_t ReadRawRC ( uint8_t ucAddress ) { - 8005a38: b580 push {r7, lr} - 8005a3a: b084 sub sp, #16 - 8005a3c: af00 add r7, sp, #0 - 8005a3e: 4603 mov r3, r0 - 8005a40: 71fb strb r3, [r7, #7] + 8005a88: b580 push {r7, lr} + 8005a8a: b084 sub sp, #16 + 8005a8c: af00 add r7, sp, #0 + 8005a8e: 4603 mov r3, r0 + 8005a90: 71fb strb r3, [r7, #7] uint8_t ucAddr, ucReturn; ucAddr = ( ( ucAddress << 1 ) & 0x7E ) | 0x80; - 8005a42: 79fb ldrb r3, [r7, #7] - 8005a44: 005b lsls r3, r3, #1 - 8005a46: b25b sxtb r3, r3 - 8005a48: f003 037e and.w r3, r3, #126 ; 0x7e - 8005a4c: b25b sxtb r3, r3 - 8005a4e: f063 037f orn r3, r3, #127 ; 0x7f - 8005a52: b25b sxtb r3, r3 - 8005a54: b2db uxtb r3, r3 - 8005a56: 73fb strb r3, [r7, #15] + 8005a92: 79fb ldrb r3, [r7, #7] + 8005a94: 005b lsls r3, r3, #1 + 8005a96: b25b sxtb r3, r3 + 8005a98: f003 037e and.w r3, r3, #126 ; 0x7e + 8005a9c: b25b sxtb r3, r3 + 8005a9e: f063 037f orn r3, r3, #127 ; 0x7f + 8005aa2: b25b sxtb r3, r3 + 8005aa4: b2db uxtb r3, r3 + 8005aa6: 73fb strb r3, [r7, #15] HAL_GPIO_WritePin(RC522_CS_GPIO_Port, RC522_CS_Pin, 0); - 8005a58: 2200 movs r2, #0 - 8005a5a: 2110 movs r1, #16 - 8005a5c: 480d ldr r0, [pc, #52] ; (8005a94 ) - 8005a5e: f7fc fb4a bl 80020f6 + 8005aa8: 2200 movs r2, #0 + 8005aaa: 2110 movs r1, #16 + 8005aac: 480d ldr r0, [pc, #52] ; (8005ae4 ) + 8005aae: f7fc fb4a bl 8002146 HAL_SPI_Transmit(&hspi1,&ucAddr,1,100); - 8005a62: f107 010f add.w r1, r7, #15 - 8005a66: 2364 movs r3, #100 ; 0x64 - 8005a68: 2201 movs r2, #1 - 8005a6a: 480b ldr r0, [pc, #44] ; (8005a98 ) - 8005a6c: f7fd ffe6 bl 8003a3c + 8005ab2: f107 010f add.w r1, r7, #15 + 8005ab6: 2364 movs r3, #100 ; 0x64 + 8005ab8: 2201 movs r2, #1 + 8005aba: 480b ldr r0, [pc, #44] ; (8005ae8 ) + 8005abc: f7fd ffe6 bl 8003a8c HAL_SPI_Receive(&hspi1,&ucReturn,1,100); - 8005a70: f107 010e add.w r1, r7, #14 - 8005a74: 2364 movs r3, #100 ; 0x64 - 8005a76: 2201 movs r2, #1 - 8005a78: 4807 ldr r0, [pc, #28] ; (8005a98 ) - 8005a7a: f7fe f91b bl 8003cb4 + 8005ac0: f107 010e add.w r1, r7, #14 + 8005ac4: 2364 movs r3, #100 ; 0x64 + 8005ac6: 2201 movs r2, #1 + 8005ac8: 4807 ldr r0, [pc, #28] ; (8005ae8 ) + 8005aca: f7fe f91b bl 8003d04 HAL_GPIO_WritePin(RC522_CS_GPIO_Port, RC522_CS_Pin, 1); - 8005a7e: 2201 movs r2, #1 - 8005a80: 2110 movs r1, #16 - 8005a82: 4804 ldr r0, [pc, #16] ; (8005a94 ) - 8005a84: f7fc fb37 bl 80020f6 + 8005ace: 2201 movs r2, #1 + 8005ad0: 2110 movs r1, #16 + 8005ad2: 4804 ldr r0, [pc, #16] ; (8005ae4 ) + 8005ad4: f7fc fb37 bl 8002146 return ucReturn; - 8005a88: 7bbb ldrb r3, [r7, #14] + 8005ad8: 7bbb ldrb r3, [r7, #14] } - 8005a8a: 4618 mov r0, r3 - 8005a8c: 3710 adds r7, #16 - 8005a8e: 46bd mov sp, r7 - 8005a90: bd80 pop {r7, pc} - 8005a92: bf00 nop - 8005a94: 40010800 .word 0x40010800 - 8005a98: 200002f8 .word 0x200002f8 + 8005ada: 4618 mov r0, r3 + 8005adc: 3710 adds r7, #16 + 8005ade: 46bd mov sp, r7 + 8005ae0: bd80 pop {r7, pc} + 8005ae2: bf00 nop + 8005ae4: 40010800 .word 0x40010800 + 8005ae8: 200002f8 .word 0x200002f8 -08005a9c : +08005aec : * ucValue,写入寄存器的值 * 返回 : 无 * 调用 :内部调用 */ void WriteRawRC ( uint8_t ucAddress, uint8_t ucValue ) { - 8005a9c: b580 push {r7, lr} - 8005a9e: b084 sub sp, #16 - 8005aa0: af00 add r7, sp, #0 - 8005aa2: 4603 mov r3, r0 - 8005aa4: 460a mov r2, r1 - 8005aa6: 71fb strb r3, [r7, #7] - 8005aa8: 4613 mov r3, r2 - 8005aaa: 71bb strb r3, [r7, #6] + 8005aec: b580 push {r7, lr} + 8005aee: b084 sub sp, #16 + 8005af0: af00 add r7, sp, #0 + 8005af2: 4603 mov r3, r0 + 8005af4: 460a mov r2, r1 + 8005af6: 71fb strb r3, [r7, #7] + 8005af8: 4613 mov r3, r2 + 8005afa: 71bb strb r3, [r7, #6] uint8_t ucAddr; ucAddr = ( ucAddress << 1 ) & 0x7E; - 8005aac: 79fb ldrb r3, [r7, #7] - 8005aae: 005b lsls r3, r3, #1 - 8005ab0: b2db uxtb r3, r3 - 8005ab2: f003 037e and.w r3, r3, #126 ; 0x7e - 8005ab6: b2db uxtb r3, r3 - 8005ab8: 73fb strb r3, [r7, #15] + 8005afc: 79fb ldrb r3, [r7, #7] + 8005afe: 005b lsls r3, r3, #1 + 8005b00: b2db uxtb r3, r3 + 8005b02: f003 037e and.w r3, r3, #126 ; 0x7e + 8005b06: b2db uxtb r3, r3 + 8005b08: 73fb strb r3, [r7, #15] HAL_GPIO_WritePin(RC522_CS_GPIO_Port, RC522_CS_Pin, 0); - 8005aba: 2200 movs r2, #0 - 8005abc: 2110 movs r1, #16 - 8005abe: 480c ldr r0, [pc, #48] ; (8005af0 ) - 8005ac0: f7fc fb19 bl 80020f6 + 8005b0a: 2200 movs r2, #0 + 8005b0c: 2110 movs r1, #16 + 8005b0e: 480c ldr r0, [pc, #48] ; (8005b40 ) + 8005b10: f7fc fb19 bl 8002146 HAL_SPI_Transmit(&hspi1,&ucAddr,1,100); - 8005ac4: f107 010f add.w r1, r7, #15 - 8005ac8: 2364 movs r3, #100 ; 0x64 - 8005aca: 2201 movs r2, #1 - 8005acc: 4809 ldr r0, [pc, #36] ; (8005af4 ) - 8005ace: f7fd ffb5 bl 8003a3c + 8005b14: f107 010f add.w r1, r7, #15 + 8005b18: 2364 movs r3, #100 ; 0x64 + 8005b1a: 2201 movs r2, #1 + 8005b1c: 4809 ldr r0, [pc, #36] ; (8005b44 ) + 8005b1e: f7fd ffb5 bl 8003a8c HAL_SPI_Transmit(&hspi1,&ucValue,1,100); - 8005ad2: 1db9 adds r1, r7, #6 - 8005ad4: 2364 movs r3, #100 ; 0x64 - 8005ad6: 2201 movs r2, #1 - 8005ad8: 4806 ldr r0, [pc, #24] ; (8005af4 ) - 8005ada: f7fd ffaf bl 8003a3c + 8005b22: 1db9 adds r1, r7, #6 + 8005b24: 2364 movs r3, #100 ; 0x64 + 8005b26: 2201 movs r2, #1 + 8005b28: 4806 ldr r0, [pc, #24] ; (8005b44 ) + 8005b2a: f7fd ffaf bl 8003a8c HAL_GPIO_WritePin(RC522_CS_GPIO_Port, RC522_CS_Pin, 1); - 8005ade: 2201 movs r2, #1 - 8005ae0: 2110 movs r1, #16 - 8005ae2: 4803 ldr r0, [pc, #12] ; (8005af0 ) - 8005ae4: f7fc fb07 bl 80020f6 + 8005b2e: 2201 movs r2, #1 + 8005b30: 2110 movs r1, #16 + 8005b32: 4803 ldr r0, [pc, #12] ; (8005b40 ) + 8005b34: f7fc fb07 bl 8002146 } - 8005ae8: bf00 nop - 8005aea: 3710 adds r7, #16 - 8005aec: 46bd mov sp, r7 - 8005aee: bd80 pop {r7, pc} - 8005af0: 40010800 .word 0x40010800 - 8005af4: 200002f8 .word 0x200002f8 + 8005b38: bf00 nop + 8005b3a: 3710 adds r7, #16 + 8005b3c: 46bd mov sp, r7 + 8005b3e: bd80 pop {r7, pc} + 8005b40: 40010800 .word 0x40010800 + 8005b44: 200002f8 .word 0x200002f8 -08005af8 : +08005b48 : * ucMask,置位值 * 返回 : 无 * 调用 :内部调用 */ void SetBitMask ( uint8_t ucReg, uint8_t ucMask ) { - 8005af8: b580 push {r7, lr} - 8005afa: b084 sub sp, #16 - 8005afc: af00 add r7, sp, #0 - 8005afe: 4603 mov r3, r0 - 8005b00: 460a mov r2, r1 - 8005b02: 71fb strb r3, [r7, #7] - 8005b04: 4613 mov r3, r2 - 8005b06: 71bb strb r3, [r7, #6] + 8005b48: b580 push {r7, lr} + 8005b4a: b084 sub sp, #16 + 8005b4c: af00 add r7, sp, #0 + 8005b4e: 4603 mov r3, r0 + 8005b50: 460a mov r2, r1 + 8005b52: 71fb strb r3, [r7, #7] + 8005b54: 4613 mov r3, r2 + 8005b56: 71bb strb r3, [r7, #6] uint8_t ucTemp; ucTemp = ReadRawRC ( ucReg ); - 8005b08: 79fb ldrb r3, [r7, #7] - 8005b0a: 4618 mov r0, r3 - 8005b0c: f7ff ff94 bl 8005a38 - 8005b10: 4603 mov r3, r0 - 8005b12: 73fb strb r3, [r7, #15] + 8005b58: 79fb ldrb r3, [r7, #7] + 8005b5a: 4618 mov r0, r3 + 8005b5c: f7ff ff94 bl 8005a88 + 8005b60: 4603 mov r3, r0 + 8005b62: 73fb strb r3, [r7, #15] WriteRawRC ( ucReg, ucTemp | ucMask ); // set bit mask - 8005b14: 7bfa ldrb r2, [r7, #15] - 8005b16: 79bb ldrb r3, [r7, #6] - 8005b18: 4313 orrs r3, r2 - 8005b1a: b2da uxtb r2, r3 - 8005b1c: 79fb ldrb r3, [r7, #7] - 8005b1e: 4611 mov r1, r2 - 8005b20: 4618 mov r0, r3 - 8005b22: f7ff ffbb bl 8005a9c + 8005b64: 7bfa ldrb r2, [r7, #15] + 8005b66: 79bb ldrb r3, [r7, #6] + 8005b68: 4313 orrs r3, r2 + 8005b6a: b2da uxtb r2, r3 + 8005b6c: 79fb ldrb r3, [r7, #7] + 8005b6e: 4611 mov r1, r2 + 8005b70: 4618 mov r0, r3 + 8005b72: f7ff ffbb bl 8005aec } - 8005b26: bf00 nop - 8005b28: 3710 adds r7, #16 - 8005b2a: 46bd mov sp, r7 - 8005b2c: bd80 pop {r7, pc} + 8005b76: bf00 nop + 8005b78: 3710 adds r7, #16 + 8005b7a: 46bd mov sp, r7 + 8005b7c: bd80 pop {r7, pc} -08005b2e : +08005b7e : * ucMask,清位值 * 返回 : 无 * 调用 :内部调用 */ void ClearBitMask ( uint8_t ucReg, uint8_t ucMask ) { - 8005b2e: b580 push {r7, lr} - 8005b30: b084 sub sp, #16 - 8005b32: af00 add r7, sp, #0 - 8005b34: 4603 mov r3, r0 - 8005b36: 460a mov r2, r1 - 8005b38: 71fb strb r3, [r7, #7] - 8005b3a: 4613 mov r3, r2 - 8005b3c: 71bb strb r3, [r7, #6] + 8005b7e: b580 push {r7, lr} + 8005b80: b084 sub sp, #16 + 8005b82: af00 add r7, sp, #0 + 8005b84: 4603 mov r3, r0 + 8005b86: 460a mov r2, r1 + 8005b88: 71fb strb r3, [r7, #7] + 8005b8a: 4613 mov r3, r2 + 8005b8c: 71bb strb r3, [r7, #6] uint8_t ucTemp; ucTemp = ReadRawRC ( ucReg ); - 8005b3e: 79fb ldrb r3, [r7, #7] - 8005b40: 4618 mov r0, r3 - 8005b42: f7ff ff79 bl 8005a38 - 8005b46: 4603 mov r3, r0 - 8005b48: 73fb strb r3, [r7, #15] + 8005b8e: 79fb ldrb r3, [r7, #7] + 8005b90: 4618 mov r0, r3 + 8005b92: f7ff ff79 bl 8005a88 + 8005b96: 4603 mov r3, r0 + 8005b98: 73fb strb r3, [r7, #15] WriteRawRC ( ucReg, ucTemp & ( ~ ucMask) ); // clear bit mask - 8005b4a: f997 3006 ldrsb.w r3, [r7, #6] - 8005b4e: 43db mvns r3, r3 - 8005b50: b25a sxtb r2, r3 - 8005b52: f997 300f ldrsb.w r3, [r7, #15] - 8005b56: 4013 ands r3, r2 - 8005b58: b25b sxtb r3, r3 - 8005b5a: b2da uxtb r2, r3 - 8005b5c: 79fb ldrb r3, [r7, #7] - 8005b5e: 4611 mov r1, r2 - 8005b60: 4618 mov r0, r3 - 8005b62: f7ff ff9b bl 8005a9c + 8005b9a: f997 3006 ldrsb.w r3, [r7, #6] + 8005b9e: 43db mvns r3, r3 + 8005ba0: b25a sxtb r2, r3 + 8005ba2: f997 300f ldrsb.w r3, [r7, #15] + 8005ba6: 4013 ands r3, r2 + 8005ba8: b25b sxtb r3, r3 + 8005baa: b2da uxtb r2, r3 + 8005bac: 79fb ldrb r3, [r7, #7] + 8005bae: 4611 mov r1, r2 + 8005bb0: 4618 mov r0, r3 + 8005bb2: f7ff ff9b bl 8005aec } - 8005b66: bf00 nop - 8005b68: 3710 adds r7, #16 - 8005b6a: 46bd mov sp, r7 - 8005b6c: bd80 pop {r7, pc} + 8005bb6: bf00 nop + 8005bb8: 3710 adds r7, #16 + 8005bba: 46bd mov sp, r7 + 8005bbc: bd80 pop {r7, pc} -08005b6e : +08005bbe : * 输入 :无 * 返回 : 无 * 调用 :内部调用 */ void PcdAntennaOn ( void ) { - 8005b6e: b580 push {r7, lr} - 8005b70: b082 sub sp, #8 - 8005b72: af00 add r7, sp, #0 + 8005bbe: b580 push {r7, lr} + 8005bc0: b082 sub sp, #8 + 8005bc2: af00 add r7, sp, #0 uint8_t uc; uc = ReadRawRC ( TxControlReg ); - 8005b74: 2014 movs r0, #20 - 8005b76: f7ff ff5f bl 8005a38 - 8005b7a: 4603 mov r3, r0 - 8005b7c: 71fb strb r3, [r7, #7] + 8005bc4: 2014 movs r0, #20 + 8005bc6: f7ff ff5f bl 8005a88 + 8005bca: 4603 mov r3, r0 + 8005bcc: 71fb strb r3, [r7, #7] if ( ! ( uc & 0x03 ) ) - 8005b7e: 79fb ldrb r3, [r7, #7] - 8005b80: f003 0303 and.w r3, r3, #3 - 8005b84: 2b00 cmp r3, #0 - 8005b86: d103 bne.n 8005b90 + 8005bce: 79fb ldrb r3, [r7, #7] + 8005bd0: f003 0303 and.w r3, r3, #3 + 8005bd4: 2b00 cmp r3, #0 + 8005bd6: d103 bne.n 8005be0 { SetBitMask(TxControlReg, 0x03); - 8005b88: 2103 movs r1, #3 - 8005b8a: 2014 movs r0, #20 - 8005b8c: f7ff ffb4 bl 8005af8 + 8005bd8: 2103 movs r1, #3 + 8005bda: 2014 movs r0, #20 + 8005bdc: f7ff ffb4 bl 8005b48 } } - 8005b90: bf00 nop - 8005b92: 3708 adds r7, #8 - 8005b94: 46bd mov sp, r7 - 8005b96: bd80 pop {r7, pc} + 8005be0: bf00 nop + 8005be2: 3708 adds r7, #8 + 8005be4: 46bd mov sp, r7 + 8005be6: bd80 pop {r7, pc} -08005b98 : +08005be8 : * 输入 :无 * 返回 : 无 * 调用 :外部调用 */ void PcdReset ( void ) { - 8005b98: b580 push {r7, lr} - 8005b9a: af00 add r7, sp, #0 + 8005be8: b580 push {r7, lr} + 8005bea: af00 add r7, sp, #0 HAL_Delay(1); - 8005b9c: 2001 movs r0, #1 - 8005b9e: f7fb ffcd bl 8001b3c + 8005bec: 2001 movs r0, #1 + 8005bee: f7fb ffcd bl 8001b8c WriteRawRC ( CommandReg, 0x0f ); - 8005ba2: 210f movs r1, #15 - 8005ba4: 2001 movs r0, #1 - 8005ba6: f7ff ff79 bl 8005a9c + 8005bf2: 210f movs r1, #15 + 8005bf4: 2001 movs r0, #1 + 8005bf6: f7ff ff79 bl 8005aec while ( ReadRawRC ( CommandReg ) & 0x10 ); - 8005baa: bf00 nop - 8005bac: 2001 movs r0, #1 - 8005bae: f7ff ff43 bl 8005a38 - 8005bb2: 4603 mov r3, r0 - 8005bb4: f003 0310 and.w r3, r3, #16 - 8005bb8: 2b00 cmp r3, #0 - 8005bba: d1f7 bne.n 8005bac + 8005bfa: bf00 nop + 8005bfc: 2001 movs r0, #1 + 8005bfe: f7ff ff43 bl 8005a88 + 8005c02: 4603 mov r3, r0 + 8005c04: f003 0310 and.w r3, r3, #16 + 8005c08: 2b00 cmp r3, #0 + 8005c0a: d1f7 bne.n 8005bfc HAL_Delay(1); - 8005bbc: 2001 movs r0, #1 - 8005bbe: f7fb ffbd bl 8001b3c + 8005c0c: 2001 movs r0, #1 + 8005c0e: f7fb ffbd bl 8001b8c WriteRawRC ( ModeReg, 0x3D ); //定义发送和接收常用模式 和Mifare卡通讯,CRC初始值0x6363 - 8005bc2: 213d movs r1, #61 ; 0x3d - 8005bc4: 2011 movs r0, #17 - 8005bc6: f7ff ff69 bl 8005a9c + 8005c12: 213d movs r1, #61 ; 0x3d + 8005c14: 2011 movs r0, #17 + 8005c16: f7ff ff69 bl 8005aec WriteRawRC ( TReloadRegL, 30 ); //16位定时器低位 - 8005bca: 211e movs r1, #30 - 8005bcc: 202d movs r0, #45 ; 0x2d - 8005bce: f7ff ff65 bl 8005a9c + 8005c1a: 211e movs r1, #30 + 8005c1c: 202d movs r0, #45 ; 0x2d + 8005c1e: f7ff ff65 bl 8005aec WriteRawRC ( TReloadRegH, 0 ); //16位定时器高位 - 8005bd2: 2100 movs r1, #0 - 8005bd4: 202c movs r0, #44 ; 0x2c - 8005bd6: f7ff ff61 bl 8005a9c + 8005c22: 2100 movs r1, #0 + 8005c24: 202c movs r0, #44 ; 0x2c + 8005c26: f7ff ff61 bl 8005aec WriteRawRC ( TModeReg, 0x8D ); //定义内部定时器的设置 - 8005bda: 218d movs r1, #141 ; 0x8d - 8005bdc: 202a movs r0, #42 ; 0x2a - 8005bde: f7ff ff5d bl 8005a9c + 8005c2a: 218d movs r1, #141 ; 0x8d + 8005c2c: 202a movs r0, #42 ; 0x2a + 8005c2e: f7ff ff5d bl 8005aec WriteRawRC ( TPrescalerReg, 0x3E ); //设置定时器分频系数 - 8005be2: 213e movs r1, #62 ; 0x3e - 8005be4: 202b movs r0, #43 ; 0x2b - 8005be6: f7ff ff59 bl 8005a9c + 8005c32: 213e movs r1, #62 ; 0x3e + 8005c34: 202b movs r0, #43 ; 0x2b + 8005c36: f7ff ff59 bl 8005aec WriteRawRC ( TxAutoReg, 0x40 ); //调制发送信号为100%ASK - 8005bea: 2140 movs r1, #64 ; 0x40 - 8005bec: 2015 movs r0, #21 - 8005bee: f7ff ff55 bl 8005a9c + 8005c3a: 2140 movs r1, #64 ; 0x40 + 8005c3c: 2015 movs r0, #21 + 8005c3e: f7ff ff55 bl 8005aec } - 8005bf2: bf00 nop - 8005bf4: bd80 pop {r7, pc} + 8005c42: bf00 nop + 8005c44: bd80 pop {r7, pc} -08005bf6 : +08005c46 : * 输入 :ucType,工作方式 * 返回 : 无 * 调用 :外部调用 */ void M500PcdConfigISOType ( uint8_t ucType ) { - 8005bf6: b580 push {r7, lr} - 8005bf8: b082 sub sp, #8 - 8005bfa: af00 add r7, sp, #0 - 8005bfc: 4603 mov r3, r0 - 8005bfe: 71fb strb r3, [r7, #7] + 8005c46: b580 push {r7, lr} + 8005c48: b082 sub sp, #8 + 8005c4a: af00 add r7, sp, #0 + 8005c4c: 4603 mov r3, r0 + 8005c4e: 71fb strb r3, [r7, #7] if ( ucType == 'A') //ISO14443_A - 8005c00: 79fb ldrb r3, [r7, #7] - 8005c02: 2b41 cmp r3, #65 ; 0x41 - 8005c04: d124 bne.n 8005c50 + 8005c50: 79fb ldrb r3, [r7, #7] + 8005c52: 2b41 cmp r3, #65 ; 0x41 + 8005c54: d124 bne.n 8005ca0 { ClearBitMask ( Status2Reg, 0x08 ); - 8005c06: 2108 movs r1, #8 - 8005c08: 2008 movs r0, #8 - 8005c0a: f7ff ff90 bl 8005b2e + 8005c56: 2108 movs r1, #8 + 8005c58: 2008 movs r0, #8 + 8005c5a: f7ff ff90 bl 8005b7e WriteRawRC ( ModeReg, 0x3D );//3F - 8005c0e: 213d movs r1, #61 ; 0x3d - 8005c10: 2011 movs r0, #17 - 8005c12: f7ff ff43 bl 8005a9c + 8005c5e: 213d movs r1, #61 ; 0x3d + 8005c60: 2011 movs r0, #17 + 8005c62: f7ff ff43 bl 8005aec WriteRawRC ( RxSelReg, 0x86 );//84 - 8005c16: 2186 movs r1, #134 ; 0x86 - 8005c18: 2017 movs r0, #23 - 8005c1a: f7ff ff3f bl 8005a9c + 8005c66: 2186 movs r1, #134 ; 0x86 + 8005c68: 2017 movs r0, #23 + 8005c6a: f7ff ff3f bl 8005aec WriteRawRC( RFCfgReg, 0x7F ); //4F - 8005c1e: 217f movs r1, #127 ; 0x7f - 8005c20: 2026 movs r0, #38 ; 0x26 - 8005c22: f7ff ff3b bl 8005a9c + 8005c6e: 217f movs r1, #127 ; 0x7f + 8005c70: 2026 movs r0, #38 ; 0x26 + 8005c72: f7ff ff3b bl 8005aec WriteRawRC( TReloadRegL, 30 );//tmoLength);// TReloadVal = 'h6a =tmoLength(dec) - 8005c26: 211e movs r1, #30 - 8005c28: 202d movs r0, #45 ; 0x2d - 8005c2a: f7ff ff37 bl 8005a9c + 8005c76: 211e movs r1, #30 + 8005c78: 202d movs r0, #45 ; 0x2d + 8005c7a: f7ff ff37 bl 8005aec WriteRawRC ( TReloadRegH, 0 ); - 8005c2e: 2100 movs r1, #0 - 8005c30: 202c movs r0, #44 ; 0x2c - 8005c32: f7ff ff33 bl 8005a9c + 8005c7e: 2100 movs r1, #0 + 8005c80: 202c movs r0, #44 ; 0x2c + 8005c82: f7ff ff33 bl 8005aec WriteRawRC ( TModeReg, 0x8D ); - 8005c36: 218d movs r1, #141 ; 0x8d - 8005c38: 202a movs r0, #42 ; 0x2a - 8005c3a: f7ff ff2f bl 8005a9c + 8005c86: 218d movs r1, #141 ; 0x8d + 8005c88: 202a movs r0, #42 ; 0x2a + 8005c8a: f7ff ff2f bl 8005aec WriteRawRC ( TPrescalerReg, 0x3E ); - 8005c3e: 213e movs r1, #62 ; 0x3e - 8005c40: 202b movs r0, #43 ; 0x2b - 8005c42: f7ff ff2b bl 8005a9c + 8005c8e: 213e movs r1, #62 ; 0x3e + 8005c90: 202b movs r0, #43 ; 0x2b + 8005c92: f7ff ff2b bl 8005aec HAL_Delay(1); - 8005c46: 2001 movs r0, #1 - 8005c48: f7fb ff78 bl 8001b3c + 8005c96: 2001 movs r0, #1 + 8005c98: f7fb ff78 bl 8001b8c PcdAntennaOn ();//开天线 - 8005c4c: f7ff ff8f bl 8005b6e + 8005c9c: f7ff ff8f bl 8005bbe } } - 8005c50: bf00 nop - 8005c52: 3708 adds r7, #8 - 8005c54: 46bd mov sp, r7 - 8005c56: bd80 pop {r7, pc} + 8005ca0: bf00 nop + 8005ca2: 3708 adds r7, #8 + 8005ca4: 46bd mov sp, r7 + 8005ca6: bd80 pop {r7, pc} -08005c58 : +08005ca8 : * 返回 : 状态值 * = MI_OK,成功 * 调用 :内部调用 */ char PcdComMF522 ( uint8_t ucCommand, uint8_t * pInData, uint8_t ucInLenByte, uint8_t * pOutData, uint32_t * pOutLenBit ) { - 8005c58: b590 push {r4, r7, lr} - 8005c5a: b089 sub sp, #36 ; 0x24 - 8005c5c: af00 add r7, sp, #0 - 8005c5e: 60b9 str r1, [r7, #8] - 8005c60: 607b str r3, [r7, #4] - 8005c62: 4603 mov r3, r0 - 8005c64: 73fb strb r3, [r7, #15] - 8005c66: 4613 mov r3, r2 - 8005c68: 73bb strb r3, [r7, #14] + 8005ca8: b590 push {r4, r7, lr} + 8005caa: b089 sub sp, #36 ; 0x24 + 8005cac: af00 add r7, sp, #0 + 8005cae: 60b9 str r1, [r7, #8] + 8005cb0: 607b str r3, [r7, #4] + 8005cb2: 4603 mov r3, r0 + 8005cb4: 73fb strb r3, [r7, #15] + 8005cb6: 4613 mov r3, r2 + 8005cb8: 73bb strb r3, [r7, #14] char cStatus = MI_ERR; - 8005c6a: 2302 movs r3, #2 - 8005c6c: 77fb strb r3, [r7, #31] + 8005cba: 2302 movs r3, #2 + 8005cbc: 77fb strb r3, [r7, #31] uint8_t ucIrqEn = 0x00; - 8005c6e: 2300 movs r3, #0 - 8005c70: 77bb strb r3, [r7, #30] + 8005cbe: 2300 movs r3, #0 + 8005cc0: 77bb strb r3, [r7, #30] uint8_t ucWaitFor = 0x00; - 8005c72: 2300 movs r3, #0 - 8005c74: 777b strb r3, [r7, #29] + 8005cc2: 2300 movs r3, #0 + 8005cc4: 777b strb r3, [r7, #29] uint8_t ucLastBits; uint8_t ucN; uint32_t ul; switch ( ucCommand ) - 8005c76: 7bfb ldrb r3, [r7, #15] - 8005c78: 2b0c cmp r3, #12 - 8005c7a: d006 beq.n 8005c8a - 8005c7c: 2b0e cmp r3, #14 - 8005c7e: d109 bne.n 8005c94 + 8005cc6: 7bfb ldrb r3, [r7, #15] + 8005cc8: 2b0c cmp r3, #12 + 8005cca: d006 beq.n 8005cda + 8005ccc: 2b0e cmp r3, #14 + 8005cce: d109 bne.n 8005ce4 { case PCD_AUTHENT: //Mifare认证 ucIrqEn = 0x12; //允许错误中断请求ErrIEn 允许空闲中断IdleIEn - 8005c80: 2312 movs r3, #18 - 8005c82: 77bb strb r3, [r7, #30] + 8005cd0: 2312 movs r3, #18 + 8005cd2: 77bb strb r3, [r7, #30] ucWaitFor = 0x10; //认证寻卡等待时候 查询空闲中断标志位 - 8005c84: 2310 movs r3, #16 - 8005c86: 777b strb r3, [r7, #29] + 8005cd4: 2310 movs r3, #16 + 8005cd6: 777b strb r3, [r7, #29] break; - 8005c88: e005 b.n 8005c96 + 8005cd8: e005 b.n 8005ce6 case PCD_TRANSCEIVE: //接收发送 发送接收 ucIrqEn = 0x77; //允许TxIEn RxIEn IdleIEn LoAlertIEn ErrIEn TimerIEn - 8005c8a: 2377 movs r3, #119 ; 0x77 - 8005c8c: 77bb strb r3, [r7, #30] + 8005cda: 2377 movs r3, #119 ; 0x77 + 8005cdc: 77bb strb r3, [r7, #30] ucWaitFor = 0x30; //寻卡等待时候 查询接收中断标志位与 空闲中断标志位 - 8005c8e: 2330 movs r3, #48 ; 0x30 - 8005c90: 777b strb r3, [r7, #29] + 8005cde: 2330 movs r3, #48 ; 0x30 + 8005ce0: 777b strb r3, [r7, #29] break; - 8005c92: e000 b.n 8005c96 + 8005ce2: e000 b.n 8005ce6 default: break; - 8005c94: bf00 nop + 8005ce4: bf00 nop } WriteRawRC ( ComIEnReg, ucIrqEn | 0x80 ); //IRqInv置位管脚IRQ与Status1Reg的IRq位的值相反 - 8005c96: 7fbb ldrb r3, [r7, #30] - 8005c98: f063 037f orn r3, r3, #127 ; 0x7f - 8005c9c: b2db uxtb r3, r3 - 8005c9e: 4619 mov r1, r3 - 8005ca0: 2002 movs r0, #2 - 8005ca2: f7ff fefb bl 8005a9c + 8005ce6: 7fbb ldrb r3, [r7, #30] + 8005ce8: f063 037f orn r3, r3, #127 ; 0x7f + 8005cec: b2db uxtb r3, r3 + 8005cee: 4619 mov r1, r3 + 8005cf0: 2002 movs r0, #2 + 8005cf2: f7ff fefb bl 8005aec ClearBitMask ( ComIrqReg, 0x80 ); //Set1该位清零时,CommIRqReg的屏蔽位清零 - 8005ca6: 2180 movs r1, #128 ; 0x80 - 8005ca8: 2004 movs r0, #4 - 8005caa: f7ff ff40 bl 8005b2e + 8005cf6: 2180 movs r1, #128 ; 0x80 + 8005cf8: 2004 movs r0, #4 + 8005cfa: f7ff ff40 bl 8005b7e WriteRawRC ( CommandReg, PCD_IDLE ); //写空闲命令 - 8005cae: 2100 movs r1, #0 - 8005cb0: 2001 movs r0, #1 - 8005cb2: f7ff fef3 bl 8005a9c + 8005cfe: 2100 movs r1, #0 + 8005d00: 2001 movs r0, #1 + 8005d02: f7ff fef3 bl 8005aec SetBitMask ( FIFOLevelReg, 0x80 ); //置位FlushBuffer清除内部FIFO的读和写指针以及ErrReg的BufferOvfl标志位被清除 - 8005cb6: 2180 movs r1, #128 ; 0x80 - 8005cb8: 200a movs r0, #10 - 8005cba: f7ff ff1d bl 8005af8 + 8005d06: 2180 movs r1, #128 ; 0x80 + 8005d08: 200a movs r0, #10 + 8005d0a: f7ff ff1d bl 8005b48 for ( ul = 0; ul < ucInLenByte; ul ++ ) - 8005cbe: 2300 movs r3, #0 - 8005cc0: 61bb str r3, [r7, #24] - 8005cc2: e00a b.n 8005cda + 8005d0e: 2300 movs r3, #0 + 8005d10: 61bb str r3, [r7, #24] + 8005d12: e00a b.n 8005d2a { WriteRawRC ( FIFODataReg, pInData [ ul ] ); //写数据进FIFOdata - 8005cc4: 68ba ldr r2, [r7, #8] - 8005cc6: 69bb ldr r3, [r7, #24] - 8005cc8: 4413 add r3, r2 - 8005cca: 781b ldrb r3, [r3, #0] - 8005ccc: 4619 mov r1, r3 - 8005cce: 2009 movs r0, #9 - 8005cd0: f7ff fee4 bl 8005a9c + 8005d14: 68ba ldr r2, [r7, #8] + 8005d16: 69bb ldr r3, [r7, #24] + 8005d18: 4413 add r3, r2 + 8005d1a: 781b ldrb r3, [r3, #0] + 8005d1c: 4619 mov r1, r3 + 8005d1e: 2009 movs r0, #9 + 8005d20: f7ff fee4 bl 8005aec for ( ul = 0; ul < ucInLenByte; ul ++ ) - 8005cd4: 69bb ldr r3, [r7, #24] - 8005cd6: 3301 adds r3, #1 - 8005cd8: 61bb str r3, [r7, #24] - 8005cda: 7bbb ldrb r3, [r7, #14] - 8005cdc: 69ba ldr r2, [r7, #24] - 8005cde: 429a cmp r2, r3 - 8005ce0: d3f0 bcc.n 8005cc4 + 8005d24: 69bb ldr r3, [r7, #24] + 8005d26: 3301 adds r3, #1 + 8005d28: 61bb str r3, [r7, #24] + 8005d2a: 7bbb ldrb r3, [r7, #14] + 8005d2c: 69ba ldr r2, [r7, #24] + 8005d2e: 429a cmp r2, r3 + 8005d30: d3f0 bcc.n 8005d14 } WriteRawRC ( CommandReg, ucCommand ); //写命令 - 8005ce2: 7bfb ldrb r3, [r7, #15] - 8005ce4: 4619 mov r1, r3 - 8005ce6: 2001 movs r0, #1 - 8005ce8: f7ff fed8 bl 8005a9c + 8005d32: 7bfb ldrb r3, [r7, #15] + 8005d34: 4619 mov r1, r3 + 8005d36: 2001 movs r0, #1 + 8005d38: f7ff fed8 bl 8005aec if ( ucCommand == PCD_TRANSCEIVE ) - 8005cec: 7bfb ldrb r3, [r7, #15] - 8005cee: 2b0c cmp r3, #12 - 8005cf0: d103 bne.n 8005cfa + 8005d3c: 7bfb ldrb r3, [r7, #15] + 8005d3e: 2b0c cmp r3, #12 + 8005d40: d103 bne.n 8005d4a { SetBitMask(BitFramingReg,0x80); //StartSend置位启动数据发送 该位与收发命令使用时才有效 - 8005cf2: 2180 movs r1, #128 ; 0x80 - 8005cf4: 200d movs r0, #13 - 8005cf6: f7ff feff bl 8005af8 + 8005d42: 2180 movs r1, #128 ; 0x80 + 8005d44: 200d movs r0, #13 + 8005d46: f7ff feff bl 8005b48 } ul = 1000;//根据时钟频率调整,操作M1卡最大等待时间25ms - 8005cfa: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8005cfe: 61bb str r3, [r7, #24] + 8005d4a: f44f 737a mov.w r3, #1000 ; 0x3e8 + 8005d4e: 61bb str r3, [r7, #24] do //认证 与寻卡等待时间 { ucN = ReadRawRC ( ComIrqReg ); //查询事件中断 - 8005d00: 2004 movs r0, #4 - 8005d02: f7ff fe99 bl 8005a38 - 8005d06: 4603 mov r3, r0 - 8005d08: 773b strb r3, [r7, #28] + 8005d50: 2004 movs r0, #4 + 8005d52: f7ff fe99 bl 8005a88 + 8005d56: 4603 mov r3, r0 + 8005d58: 773b strb r3, [r7, #28] ul --; - 8005d0a: 69bb ldr r3, [r7, #24] - 8005d0c: 3b01 subs r3, #1 - 8005d0e: 61bb str r3, [r7, #24] + 8005d5a: 69bb ldr r3, [r7, #24] + 8005d5c: 3b01 subs r3, #1 + 8005d5e: 61bb str r3, [r7, #24] } while ( ( ul != 0 ) && ( ! ( ucN & 0x01 ) ) && ( ! ( ucN & ucWaitFor ) ) ); //退出条件i=0,定时器中断,与写空闲命令 - 8005d10: 69bb ldr r3, [r7, #24] - 8005d12: 2b00 cmp r3, #0 - 8005d14: d00a beq.n 8005d2c - 8005d16: 7f3b ldrb r3, [r7, #28] - 8005d18: f003 0301 and.w r3, r3, #1 - 8005d1c: 2b00 cmp r3, #0 - 8005d1e: d105 bne.n 8005d2c - 8005d20: 7f3a ldrb r2, [r7, #28] - 8005d22: 7f7b ldrb r3, [r7, #29] - 8005d24: 4013 ands r3, r2 - 8005d26: b2db uxtb r3, r3 - 8005d28: 2b00 cmp r3, #0 - 8005d2a: d0e9 beq.n 8005d00 + 8005d60: 69bb ldr r3, [r7, #24] + 8005d62: 2b00 cmp r3, #0 + 8005d64: d00a beq.n 8005d7c + 8005d66: 7f3b ldrb r3, [r7, #28] + 8005d68: f003 0301 and.w r3, r3, #1 + 8005d6c: 2b00 cmp r3, #0 + 8005d6e: d105 bne.n 8005d7c + 8005d70: 7f3a ldrb r2, [r7, #28] + 8005d72: 7f7b ldrb r3, [r7, #29] + 8005d74: 4013 ands r3, r2 + 8005d76: b2db uxtb r3, r3 + 8005d78: 2b00 cmp r3, #0 + 8005d7a: d0e9 beq.n 8005d50 ClearBitMask ( BitFramingReg, 0x80 ); //清理允许StartSend位 - 8005d2c: 2180 movs r1, #128 ; 0x80 - 8005d2e: 200d movs r0, #13 - 8005d30: f7ff fefd bl 8005b2e + 8005d7c: 2180 movs r1, #128 ; 0x80 + 8005d7e: 200d movs r0, #13 + 8005d80: f7ff fefd bl 8005b7e if ( ul != 0 ) - 8005d34: 69bb ldr r3, [r7, #24] - 8005d36: 2b00 cmp r3, #0 - 8005d38: d052 beq.n 8005de0 + 8005d84: 69bb ldr r3, [r7, #24] + 8005d86: 2b00 cmp r3, #0 + 8005d88: d052 beq.n 8005e30 { if ( ! (( ReadRawRC ( ErrorReg ) & 0x1B )) ) //读错误标志寄存器BufferOfI CollErr ParityErr ProtocolErr - 8005d3a: 2006 movs r0, #6 - 8005d3c: f7ff fe7c bl 8005a38 - 8005d40: 4603 mov r3, r0 - 8005d42: f003 031b and.w r3, r3, #27 - 8005d46: 2b00 cmp r3, #0 - 8005d48: d148 bne.n 8005ddc + 8005d8a: 2006 movs r0, #6 + 8005d8c: f7ff fe7c bl 8005a88 + 8005d90: 4603 mov r3, r0 + 8005d92: f003 031b and.w r3, r3, #27 + 8005d96: 2b00 cmp r3, #0 + 8005d98: d148 bne.n 8005e2c { cStatus = MI_OK; - 8005d4a: 2300 movs r3, #0 - 8005d4c: 77fb strb r3, [r7, #31] + 8005d9a: 2300 movs r3, #0 + 8005d9c: 77fb strb r3, [r7, #31] if ( ucN & ucIrqEn & 0x01 ) //是否发生定时器中断 - 8005d4e: 7f3a ldrb r2, [r7, #28] - 8005d50: 7fbb ldrb r3, [r7, #30] - 8005d52: 4013 ands r3, r2 - 8005d54: b2db uxtb r3, r3 - 8005d56: f003 0301 and.w r3, r3, #1 - 8005d5a: 2b00 cmp r3, #0 - 8005d5c: d001 beq.n 8005d62 + 8005d9e: 7f3a ldrb r2, [r7, #28] + 8005da0: 7fbb ldrb r3, [r7, #30] + 8005da2: 4013 ands r3, r2 + 8005da4: b2db uxtb r3, r3 + 8005da6: f003 0301 and.w r3, r3, #1 + 8005daa: 2b00 cmp r3, #0 + 8005dac: d001 beq.n 8005db2 { cStatus = MI_NOTAGERR; - 8005d5e: 2301 movs r3, #1 - 8005d60: 77fb strb r3, [r7, #31] + 8005dae: 2301 movs r3, #1 + 8005db0: 77fb strb r3, [r7, #31] } if ( ucCommand == PCD_TRANSCEIVE ) - 8005d62: 7bfb ldrb r3, [r7, #15] - 8005d64: 2b0c cmp r3, #12 - 8005d66: d13b bne.n 8005de0 + 8005db2: 7bfb ldrb r3, [r7, #15] + 8005db4: 2b0c cmp r3, #12 + 8005db6: d13b bne.n 8005e30 { ucN = ReadRawRC ( FIFOLevelReg ); //读FIFO中保存的字节数 - 8005d68: 200a movs r0, #10 - 8005d6a: f7ff fe65 bl 8005a38 - 8005d6e: 4603 mov r3, r0 - 8005d70: 773b strb r3, [r7, #28] + 8005db8: 200a movs r0, #10 + 8005dba: f7ff fe65 bl 8005a88 + 8005dbe: 4603 mov r3, r0 + 8005dc0: 773b strb r3, [r7, #28] ucLastBits = ReadRawRC ( ControlReg ) & 0x07; //最后接收到得字节的有效位数 - 8005d72: 200c movs r0, #12 - 8005d74: f7ff fe60 bl 8005a38 - 8005d78: 4603 mov r3, r0 - 8005d7a: f003 0307 and.w r3, r3, #7 - 8005d7e: 75fb strb r3, [r7, #23] + 8005dc2: 200c movs r0, #12 + 8005dc4: f7ff fe60 bl 8005a88 + 8005dc8: 4603 mov r3, r0 + 8005dca: f003 0307 and.w r3, r3, #7 + 8005dce: 75fb strb r3, [r7, #23] if ( ucLastBits ) - 8005d80: 7dfb ldrb r3, [r7, #23] - 8005d82: 2b00 cmp r3, #0 - 8005d84: d008 beq.n 8005d98 + 8005dd0: 7dfb ldrb r3, [r7, #23] + 8005dd2: 2b00 cmp r3, #0 + 8005dd4: d008 beq.n 8005de8 { * pOutLenBit = ( ucN - 1 ) * 8 + ucLastBits; //N个字节数减去1(最后一个字节)+最后一位的位数 读取到的数据总位数 - 8005d86: 7f3b ldrb r3, [r7, #28] - 8005d88: 3b01 subs r3, #1 - 8005d8a: 00da lsls r2, r3, #3 - 8005d8c: 7dfb ldrb r3, [r7, #23] - 8005d8e: 4413 add r3, r2 - 8005d90: 461a mov r2, r3 - 8005d92: 6b3b ldr r3, [r7, #48] ; 0x30 - 8005d94: 601a str r2, [r3, #0] - 8005d96: e004 b.n 8005da2 + 8005dd6: 7f3b ldrb r3, [r7, #28] + 8005dd8: 3b01 subs r3, #1 + 8005dda: 00da lsls r2, r3, #3 + 8005ddc: 7dfb ldrb r3, [r7, #23] + 8005dde: 4413 add r3, r2 + 8005de0: 461a mov r2, r3 + 8005de2: 6b3b ldr r3, [r7, #48] ; 0x30 + 8005de4: 601a str r2, [r3, #0] + 8005de6: e004 b.n 8005df2 } else { * pOutLenBit = ucN * 8; //最后接收到的字节整个字节有效 - 8005d98: 7f3b ldrb r3, [r7, #28] - 8005d9a: 00db lsls r3, r3, #3 - 8005d9c: 461a mov r2, r3 - 8005d9e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8005da0: 601a str r2, [r3, #0] + 8005de8: 7f3b ldrb r3, [r7, #28] + 8005dea: 00db lsls r3, r3, #3 + 8005dec: 461a mov r2, r3 + 8005dee: 6b3b ldr r3, [r7, #48] ; 0x30 + 8005df0: 601a str r2, [r3, #0] } if ( ucN == 0 ) - 8005da2: 7f3b ldrb r3, [r7, #28] - 8005da4: 2b00 cmp r3, #0 - 8005da6: d101 bne.n 8005dac + 8005df2: 7f3b ldrb r3, [r7, #28] + 8005df4: 2b00 cmp r3, #0 + 8005df6: d101 bne.n 8005dfc { ucN = 1; - 8005da8: 2301 movs r3, #1 - 8005daa: 773b strb r3, [r7, #28] + 8005df8: 2301 movs r3, #1 + 8005dfa: 773b strb r3, [r7, #28] } if ( ucN > MAXRLEN ) - 8005dac: 7f3b ldrb r3, [r7, #28] - 8005dae: 2b12 cmp r3, #18 - 8005db0: d901 bls.n 8005db6 + 8005dfc: 7f3b ldrb r3, [r7, #28] + 8005dfe: 2b12 cmp r3, #18 + 8005e00: d901 bls.n 8005e06 { ucN = MAXRLEN; - 8005db2: 2312 movs r3, #18 - 8005db4: 773b strb r3, [r7, #28] + 8005e02: 2312 movs r3, #18 + 8005e04: 773b strb r3, [r7, #28] } for ( ul = 0; ul < ucN; ul ++ ) - 8005db6: 2300 movs r3, #0 - 8005db8: 61bb str r3, [r7, #24] - 8005dba: e00a b.n 8005dd2 + 8005e06: 2300 movs r3, #0 + 8005e08: 61bb str r3, [r7, #24] + 8005e0a: e00a b.n 8005e22 { pOutData [ ul ] = ReadRawRC ( FIFODataReg ); - 8005dbc: 687a ldr r2, [r7, #4] - 8005dbe: 69bb ldr r3, [r7, #24] - 8005dc0: 18d4 adds r4, r2, r3 - 8005dc2: 2009 movs r0, #9 - 8005dc4: f7ff fe38 bl 8005a38 - 8005dc8: 4603 mov r3, r0 - 8005dca: 7023 strb r3, [r4, #0] + 8005e0c: 687a ldr r2, [r7, #4] + 8005e0e: 69bb ldr r3, [r7, #24] + 8005e10: 18d4 adds r4, r2, r3 + 8005e12: 2009 movs r0, #9 + 8005e14: f7ff fe38 bl 8005a88 + 8005e18: 4603 mov r3, r0 + 8005e1a: 7023 strb r3, [r4, #0] for ( ul = 0; ul < ucN; ul ++ ) - 8005dcc: 69bb ldr r3, [r7, #24] - 8005dce: 3301 adds r3, #1 - 8005dd0: 61bb str r3, [r7, #24] - 8005dd2: 7f3b ldrb r3, [r7, #28] - 8005dd4: 69ba ldr r2, [r7, #24] - 8005dd6: 429a cmp r2, r3 - 8005dd8: d3f0 bcc.n 8005dbc - 8005dda: e001 b.n 8005de0 + 8005e1c: 69bb ldr r3, [r7, #24] + 8005e1e: 3301 adds r3, #1 + 8005e20: 61bb str r3, [r7, #24] + 8005e22: 7f3b ldrb r3, [r7, #28] + 8005e24: 69ba ldr r2, [r7, #24] + 8005e26: 429a cmp r2, r3 + 8005e28: d3f0 bcc.n 8005e0c + 8005e2a: e001 b.n 8005e30 } } else { cStatus = MI_ERR; - 8005ddc: 2302 movs r3, #2 - 8005dde: 77fb strb r3, [r7, #31] + 8005e2c: 2302 movs r3, #2 + 8005e2e: 77fb strb r3, [r7, #31] } } SetBitMask ( ControlReg, 0x80 ); // stop timer now - 8005de0: 2180 movs r1, #128 ; 0x80 - 8005de2: 200c movs r0, #12 - 8005de4: f7ff fe88 bl 8005af8 + 8005e30: 2180 movs r1, #128 ; 0x80 + 8005e32: 200c movs r0, #12 + 8005e34: f7ff fe88 bl 8005b48 WriteRawRC ( CommandReg, PCD_IDLE ); - 8005de8: 2100 movs r1, #0 - 8005dea: 2001 movs r0, #1 - 8005dec: f7ff fe56 bl 8005a9c + 8005e38: 2100 movs r1, #0 + 8005e3a: 2001 movs r0, #1 + 8005e3c: f7ff fe56 bl 8005aec return cStatus; - 8005df0: 7ffb ldrb r3, [r7, #31] + 8005e40: 7ffb ldrb r3, [r7, #31] } - 8005df2: 4618 mov r0, r3 - 8005df4: 3724 adds r7, #36 ; 0x24 - 8005df6: 46bd mov sp, r7 - 8005df8: bd90 pop {r4, r7, pc} + 8005e42: 4618 mov r0, r3 + 8005e44: 3724 adds r7, #36 ; 0x24 + 8005e46: 46bd mov sp, r7 + 8005e48: bd90 pop {r4, r7, pc} -08005dfa : +08005e4a : * 返回 : 状态值 * = MI_OK,成功 * 调用 :外部调用 */ char PcdRequest ( uint8_t ucReq_code, uint8_t * pTagType ) { - 8005dfa: b580 push {r7, lr} - 8005dfc: b08a sub sp, #40 ; 0x28 - 8005dfe: af02 add r7, sp, #8 - 8005e00: 4603 mov r3, r0 - 8005e02: 6039 str r1, [r7, #0] - 8005e04: 71fb strb r3, [r7, #7] + 8005e4a: b580 push {r7, lr} + 8005e4c: b08a sub sp, #40 ; 0x28 + 8005e4e: af02 add r7, sp, #8 + 8005e50: 4603 mov r3, r0 + 8005e52: 6039 str r1, [r7, #0] + 8005e54: 71fb strb r3, [r7, #7] char cStatus; uint8_t ucComMF522Buf [ MAXRLEN ]; uint32_t ulLen; ClearBitMask ( Status2Reg, 0x08 ); //清理指示MIFARECyptol单元接通以及所有卡的数据通信被加密的情况 - 8005e06: 2108 movs r1, #8 - 8005e08: 2008 movs r0, #8 - 8005e0a: f7ff fe90 bl 8005b2e + 8005e56: 2108 movs r1, #8 + 8005e58: 2008 movs r0, #8 + 8005e5a: f7ff fe90 bl 8005b7e WriteRawRC ( BitFramingReg, 0x07 ); // 发送的最后一个字节的 七位 - 8005e0e: 2107 movs r1, #7 - 8005e10: 200d movs r0, #13 - 8005e12: f7ff fe43 bl 8005a9c + 8005e5e: 2107 movs r1, #7 + 8005e60: 200d movs r0, #13 + 8005e62: f7ff fe43 bl 8005aec SetBitMask ( TxControlReg, 0x03 ); //TX1,TX2管脚的输出信号传递经发送调制的13.56的能量载波信号 - 8005e16: 2103 movs r1, #3 - 8005e18: 2014 movs r0, #20 - 8005e1a: f7ff fe6d bl 8005af8 + 8005e66: 2103 movs r1, #3 + 8005e68: 2014 movs r0, #20 + 8005e6a: f7ff fe6d bl 8005b48 ucComMF522Buf [ 0 ] = ucReq_code; //存入 卡片命令字 - 8005e1e: 79fb ldrb r3, [r7, #7] - 8005e20: 733b strb r3, [r7, #12] + 8005e6e: 79fb ldrb r3, [r7, #7] + 8005e70: 733b strb r3, [r7, #12] cStatus = PcdComMF522 ( PCD_TRANSCEIVE, ucComMF522Buf, 1, ucComMF522Buf, & ulLen ); //寻卡 - 8005e22: f107 020c add.w r2, r7, #12 - 8005e26: f107 010c add.w r1, r7, #12 - 8005e2a: f107 0308 add.w r3, r7, #8 - 8005e2e: 9300 str r3, [sp, #0] - 8005e30: 4613 mov r3, r2 - 8005e32: 2201 movs r2, #1 - 8005e34: 200c movs r0, #12 - 8005e36: f7ff ff0f bl 8005c58 - 8005e3a: 4603 mov r3, r0 - 8005e3c: 77fb strb r3, [r7, #31] + 8005e72: f107 020c add.w r2, r7, #12 + 8005e76: f107 010c add.w r1, r7, #12 + 8005e7a: f107 0308 add.w r3, r7, #8 + 8005e7e: 9300 str r3, [sp, #0] + 8005e80: 4613 mov r3, r2 + 8005e82: 2201 movs r2, #1 + 8005e84: 200c movs r0, #12 + 8005e86: f7ff ff0f bl 8005ca8 + 8005e8a: 4603 mov r3, r0 + 8005e8c: 77fb strb r3, [r7, #31] if ( ( cStatus == MI_OK ) && ( ulLen == 0x10 ) ) //寻卡成功返回卡类型 - 8005e3e: 7ffb ldrb r3, [r7, #31] - 8005e40: 2b00 cmp r3, #0 - 8005e42: d10a bne.n 8005e5a - 8005e44: 68bb ldr r3, [r7, #8] - 8005e46: 2b10 cmp r3, #16 - 8005e48: d107 bne.n 8005e5a + 8005e8e: 7ffb ldrb r3, [r7, #31] + 8005e90: 2b00 cmp r3, #0 + 8005e92: d10a bne.n 8005eaa + 8005e94: 68bb ldr r3, [r7, #8] + 8005e96: 2b10 cmp r3, #16 + 8005e98: d107 bne.n 8005eaa { * pTagType = ucComMF522Buf [ 0 ]; - 8005e4a: 7b3a ldrb r2, [r7, #12] - 8005e4c: 683b ldr r3, [r7, #0] - 8005e4e: 701a strb r2, [r3, #0] + 8005e9a: 7b3a ldrb r2, [r7, #12] + 8005e9c: 683b ldr r3, [r7, #0] + 8005e9e: 701a strb r2, [r3, #0] * ( pTagType + 1 ) = ucComMF522Buf [ 1 ]; - 8005e50: 683b ldr r3, [r7, #0] - 8005e52: 3301 adds r3, #1 - 8005e54: 7b7a ldrb r2, [r7, #13] - 8005e56: 701a strb r2, [r3, #0] - 8005e58: e001 b.n 8005e5e + 8005ea0: 683b ldr r3, [r7, #0] + 8005ea2: 3301 adds r3, #1 + 8005ea4: 7b7a ldrb r2, [r7, #13] + 8005ea6: 701a strb r2, [r3, #0] + 8005ea8: e001 b.n 8005eae } else { cStatus = MI_ERR; - 8005e5a: 2302 movs r3, #2 - 8005e5c: 77fb strb r3, [r7, #31] + 8005eaa: 2302 movs r3, #2 + 8005eac: 77fb strb r3, [r7, #31] } return cStatus; - 8005e5e: 7ffb ldrb r3, [r7, #31] + 8005eae: 7ffb ldrb r3, [r7, #31] } - 8005e60: 4618 mov r0, r3 - 8005e62: 3720 adds r7, #32 - 8005e64: 46bd mov sp, r7 - 8005e66: bd80 pop {r7, pc} + 8005eb0: 4618 mov r0, r3 + 8005eb2: 3720 adds r7, #32 + 8005eb4: 46bd mov sp, r7 + 8005eb6: bd80 pop {r7, pc} -08005e68 : +08005eb8 : * 返回 : 状态值 * = MI_OK,成功 * 调用 :外部调用 */ char PcdAnticoll ( uint8_t * pSnr ) { - 8005e68: b580 push {r7, lr} - 8005e6a: b08c sub sp, #48 ; 0x30 - 8005e6c: af02 add r7, sp, #8 - 8005e6e: 6078 str r0, [r7, #4] + 8005eb8: b580 push {r7, lr} + 8005eba: b08c sub sp, #48 ; 0x30 + 8005ebc: af02 add r7, sp, #8 + 8005ebe: 6078 str r0, [r7, #4] char cStatus; uint8_t uc, ucSnr_check = 0; - 8005e70: 2300 movs r3, #0 - 8005e72: f887 3025 strb.w r3, [r7, #37] ; 0x25 + 8005ec0: 2300 movs r3, #0 + 8005ec2: f887 3025 strb.w r3, [r7, #37] ; 0x25 uint8_t ucComMF522Buf [ MAXRLEN ]; uint32_t ulLen; ClearBitMask ( Status2Reg, 0x08 ); //清MFCryptol On位 只有成功执行MFAuthent命令后,该位才能置位 - 8005e76: 2108 movs r1, #8 - 8005e78: 2008 movs r0, #8 - 8005e7a: f7ff fe58 bl 8005b2e + 8005ec6: 2108 movs r1, #8 + 8005ec8: 2008 movs r0, #8 + 8005eca: f7ff fe58 bl 8005b7e WriteRawRC ( BitFramingReg, 0x00); //清理寄存器 停止收发 - 8005e7e: 2100 movs r1, #0 - 8005e80: 200d movs r0, #13 - 8005e82: f7ff fe0b bl 8005a9c + 8005ece: 2100 movs r1, #0 + 8005ed0: 200d movs r0, #13 + 8005ed2: f7ff fe0b bl 8005aec ClearBitMask ( CollReg, 0x80 ); //清ValuesAfterColl所有接收的位在冲突后被清除 - 8005e86: 2180 movs r1, #128 ; 0x80 - 8005e88: 200e movs r0, #14 - 8005e8a: f7ff fe50 bl 8005b2e + 8005ed6: 2180 movs r1, #128 ; 0x80 + 8005ed8: 200e movs r0, #14 + 8005eda: f7ff fe50 bl 8005b7e ucComMF522Buf [ 0 ] = 0x93; //卡片防冲突命令 - 8005e8e: 2393 movs r3, #147 ; 0x93 - 8005e90: 743b strb r3, [r7, #16] + 8005ede: 2393 movs r3, #147 ; 0x93 + 8005ee0: 743b strb r3, [r7, #16] ucComMF522Buf [ 1 ] = 0x20; - 8005e92: 2320 movs r3, #32 - 8005e94: 747b strb r3, [r7, #17] + 8005ee2: 2320 movs r3, #32 + 8005ee4: 747b strb r3, [r7, #17] cStatus = PcdComMF522 ( PCD_TRANSCEIVE, ucComMF522Buf, 2, ucComMF522Buf, & ulLen);//与卡片通信 - 8005e96: f107 0210 add.w r2, r7, #16 - 8005e9a: f107 0110 add.w r1, r7, #16 - 8005e9e: f107 030c add.w r3, r7, #12 - 8005ea2: 9300 str r3, [sp, #0] - 8005ea4: 4613 mov r3, r2 - 8005ea6: 2202 movs r2, #2 - 8005ea8: 200c movs r0, #12 - 8005eaa: f7ff fed5 bl 8005c58 - 8005eae: 4603 mov r3, r0 - 8005eb0: f887 3027 strb.w r3, [r7, #39] ; 0x27 + 8005ee6: f107 0210 add.w r2, r7, #16 + 8005eea: f107 0110 add.w r1, r7, #16 + 8005eee: f107 030c add.w r3, r7, #12 + 8005ef2: 9300 str r3, [sp, #0] + 8005ef4: 4613 mov r3, r2 + 8005ef6: 2202 movs r2, #2 + 8005ef8: 200c movs r0, #12 + 8005efa: f7ff fed5 bl 8005ca8 + 8005efe: 4603 mov r3, r0 + 8005f00: f887 3027 strb.w r3, [r7, #39] ; 0x27 if ( cStatus == MI_OK) //通信成功 - 8005eb4: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 - 8005eb8: 2b00 cmp r3, #0 - 8005eba: d132 bne.n 8005f22 + 8005f04: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 + 8005f08: 2b00 cmp r3, #0 + 8005f0a: d132 bne.n 8005f72 { for ( uc = 0; uc < 4; uc ++ ) - 8005ebc: 2300 movs r3, #0 - 8005ebe: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 8005ec2: e01c b.n 8005efe + 8005f0c: 2300 movs r3, #0 + 8005f0e: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 8005f12: e01c b.n 8005f4e { * ( pSnr + uc ) = ucComMF522Buf [ uc ]; //读出UID - 8005ec4: f897 2026 ldrb.w r2, [r7, #38] ; 0x26 - 8005ec8: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8005ecc: 6879 ldr r1, [r7, #4] - 8005ece: 440b add r3, r1 - 8005ed0: f107 0128 add.w r1, r7, #40 ; 0x28 - 8005ed4: 440a add r2, r1 - 8005ed6: f812 2c18 ldrb.w r2, [r2, #-24] - 8005eda: 701a strb r2, [r3, #0] + 8005f14: f897 2026 ldrb.w r2, [r7, #38] ; 0x26 + 8005f18: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8005f1c: 6879 ldr r1, [r7, #4] + 8005f1e: 440b add r3, r1 + 8005f20: f107 0128 add.w r1, r7, #40 ; 0x28 + 8005f24: 440a add r2, r1 + 8005f26: f812 2c18 ldrb.w r2, [r2, #-24] + 8005f2a: 701a strb r2, [r3, #0] ucSnr_check ^= ucComMF522Buf [ uc ]; - 8005edc: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8005ee0: f107 0228 add.w r2, r7, #40 ; 0x28 - 8005ee4: 4413 add r3, r2 - 8005ee6: f813 2c18 ldrb.w r2, [r3, #-24] - 8005eea: f897 3025 ldrb.w r3, [r7, #37] ; 0x25 - 8005eee: 4053 eors r3, r2 - 8005ef0: f887 3025 strb.w r3, [r7, #37] ; 0x25 + 8005f2c: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8005f30: f107 0228 add.w r2, r7, #40 ; 0x28 + 8005f34: 4413 add r3, r2 + 8005f36: f813 2c18 ldrb.w r2, [r3, #-24] + 8005f3a: f897 3025 ldrb.w r3, [r7, #37] ; 0x25 + 8005f3e: 4053 eors r3, r2 + 8005f40: f887 3025 strb.w r3, [r7, #37] ; 0x25 for ( uc = 0; uc < 4; uc ++ ) - 8005ef4: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8005ef8: 3301 adds r3, #1 - 8005efa: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 8005efe: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8005f02: 2b03 cmp r3, #3 - 8005f04: d9de bls.n 8005ec4 + 8005f44: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8005f48: 3301 adds r3, #1 + 8005f4a: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 8005f4e: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8005f52: 2b03 cmp r3, #3 + 8005f54: d9de bls.n 8005f14 } if ( ucSnr_check != ucComMF522Buf [ uc ] ) - 8005f06: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8005f0a: f107 0228 add.w r2, r7, #40 ; 0x28 - 8005f0e: 4413 add r3, r2 - 8005f10: f813 3c18 ldrb.w r3, [r3, #-24] - 8005f14: f897 2025 ldrb.w r2, [r7, #37] ; 0x25 - 8005f18: 429a cmp r2, r3 - 8005f1a: d002 beq.n 8005f22 + 8005f56: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8005f5a: f107 0228 add.w r2, r7, #40 ; 0x28 + 8005f5e: 4413 add r3, r2 + 8005f60: f813 3c18 ldrb.w r3, [r3, #-24] + 8005f64: f897 2025 ldrb.w r2, [r7, #37] ; 0x25 + 8005f68: 429a cmp r2, r3 + 8005f6a: d002 beq.n 8005f72 { cStatus = MI_ERR; - 8005f1c: 2302 movs r3, #2 - 8005f1e: f887 3027 strb.w r3, [r7, #39] ; 0x27 + 8005f6c: 2302 movs r3, #2 + 8005f6e: f887 3027 strb.w r3, [r7, #39] ; 0x27 } } SetBitMask ( CollReg, 0x80 ); - 8005f22: 2180 movs r1, #128 ; 0x80 - 8005f24: 200e movs r0, #14 - 8005f26: f7ff fde7 bl 8005af8 + 8005f72: 2180 movs r1, #128 ; 0x80 + 8005f74: 200e movs r0, #14 + 8005f76: f7ff fde7 bl 8005b48 return cStatus; - 8005f2a: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 + 8005f7a: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 } - 8005f2e: 4618 mov r0, r3 - 8005f30: 3728 adds r7, #40 ; 0x28 - 8005f32: 46bd mov sp, r7 - 8005f34: bd80 pop {r7, pc} + 8005f7e: 4618 mov r0, r3 + 8005f80: 3728 adds r7, #40 ; 0x28 + 8005f82: 46bd mov sp, r7 + 8005f84: bd80 pop {r7, pc} -08005f36 : +08005f86 : * pOutData,存放计算结果存放的首地址 * 返回 : 无 * 调用 :内部调用 */ void CalulateCRC ( uint8_t * pIndata, uint8_t ucLen, uint8_t * pOutData ) { - 8005f36: b590 push {r4, r7, lr} - 8005f38: b087 sub sp, #28 - 8005f3a: af00 add r7, sp, #0 - 8005f3c: 60f8 str r0, [r7, #12] - 8005f3e: 460b mov r3, r1 - 8005f40: 607a str r2, [r7, #4] - 8005f42: 72fb strb r3, [r7, #11] + 8005f86: b590 push {r4, r7, lr} + 8005f88: b087 sub sp, #28 + 8005f8a: af00 add r7, sp, #0 + 8005f8c: 60f8 str r0, [r7, #12] + 8005f8e: 460b mov r3, r1 + 8005f90: 607a str r2, [r7, #4] + 8005f92: 72fb strb r3, [r7, #11] uint8_t uc, ucN; ClearBitMask(DivIrqReg,0x04); - 8005f44: 2104 movs r1, #4 - 8005f46: 2005 movs r0, #5 - 8005f48: f7ff fdf1 bl 8005b2e + 8005f94: 2104 movs r1, #4 + 8005f96: 2005 movs r0, #5 + 8005f98: f7ff fdf1 bl 8005b7e WriteRawRC(CommandReg,PCD_IDLE); - 8005f4c: 2100 movs r1, #0 - 8005f4e: 2001 movs r0, #1 - 8005f50: f7ff fda4 bl 8005a9c + 8005f9c: 2100 movs r1, #0 + 8005f9e: 2001 movs r0, #1 + 8005fa0: f7ff fda4 bl 8005aec SetBitMask(FIFOLevelReg,0x80); - 8005f54: 2180 movs r1, #128 ; 0x80 - 8005f56: 200a movs r0, #10 - 8005f58: f7ff fdce bl 8005af8 + 8005fa4: 2180 movs r1, #128 ; 0x80 + 8005fa6: 200a movs r0, #10 + 8005fa8: f7ff fdce bl 8005b48 for ( uc = 0; uc < ucLen; uc ++) - 8005f5c: 2300 movs r3, #0 - 8005f5e: 75fb strb r3, [r7, #23] - 8005f60: e00a b.n 8005f78 + 8005fac: 2300 movs r3, #0 + 8005fae: 75fb strb r3, [r7, #23] + 8005fb0: e00a b.n 8005fc8 { WriteRawRC ( FIFODataReg, * ( pIndata + uc ) ); - 8005f62: 7dfb ldrb r3, [r7, #23] - 8005f64: 68fa ldr r2, [r7, #12] - 8005f66: 4413 add r3, r2 - 8005f68: 781b ldrb r3, [r3, #0] - 8005f6a: 4619 mov r1, r3 - 8005f6c: 2009 movs r0, #9 - 8005f6e: f7ff fd95 bl 8005a9c + 8005fb2: 7dfb ldrb r3, [r7, #23] + 8005fb4: 68fa ldr r2, [r7, #12] + 8005fb6: 4413 add r3, r2 + 8005fb8: 781b ldrb r3, [r3, #0] + 8005fba: 4619 mov r1, r3 + 8005fbc: 2009 movs r0, #9 + 8005fbe: f7ff fd95 bl 8005aec for ( uc = 0; uc < ucLen; uc ++) - 8005f72: 7dfb ldrb r3, [r7, #23] - 8005f74: 3301 adds r3, #1 - 8005f76: 75fb strb r3, [r7, #23] - 8005f78: 7dfa ldrb r2, [r7, #23] - 8005f7a: 7afb ldrb r3, [r7, #11] - 8005f7c: 429a cmp r2, r3 - 8005f7e: d3f0 bcc.n 8005f62 + 8005fc2: 7dfb ldrb r3, [r7, #23] + 8005fc4: 3301 adds r3, #1 + 8005fc6: 75fb strb r3, [r7, #23] + 8005fc8: 7dfa ldrb r2, [r7, #23] + 8005fca: 7afb ldrb r3, [r7, #11] + 8005fcc: 429a cmp r2, r3 + 8005fce: d3f0 bcc.n 8005fb2 } WriteRawRC ( CommandReg, PCD_CALCCRC ); - 8005f80: 2103 movs r1, #3 - 8005f82: 2001 movs r0, #1 - 8005f84: f7ff fd8a bl 8005a9c + 8005fd0: 2103 movs r1, #3 + 8005fd2: 2001 movs r0, #1 + 8005fd4: f7ff fd8a bl 8005aec uc = 0xFF; - 8005f88: 23ff movs r3, #255 ; 0xff - 8005f8a: 75fb strb r3, [r7, #23] + 8005fd8: 23ff movs r3, #255 ; 0xff + 8005fda: 75fb strb r3, [r7, #23] do { ucN = ReadRawRC ( DivIrqReg ); - 8005f8c: 2005 movs r0, #5 - 8005f8e: f7ff fd53 bl 8005a38 - 8005f92: 4603 mov r3, r0 - 8005f94: 75bb strb r3, [r7, #22] + 8005fdc: 2005 movs r0, #5 + 8005fde: f7ff fd53 bl 8005a88 + 8005fe2: 4603 mov r3, r0 + 8005fe4: 75bb strb r3, [r7, #22] uc --; - 8005f96: 7dfb ldrb r3, [r7, #23] - 8005f98: 3b01 subs r3, #1 - 8005f9a: 75fb strb r3, [r7, #23] + 8005fe6: 7dfb ldrb r3, [r7, #23] + 8005fe8: 3b01 subs r3, #1 + 8005fea: 75fb strb r3, [r7, #23] } while ( ( uc != 0 ) && ! ( ucN & 0x04 ) ); - 8005f9c: 7dfb ldrb r3, [r7, #23] - 8005f9e: 2b00 cmp r3, #0 - 8005fa0: d004 beq.n 8005fac - 8005fa2: 7dbb ldrb r3, [r7, #22] - 8005fa4: f003 0304 and.w r3, r3, #4 - 8005fa8: 2b00 cmp r3, #0 - 8005faa: d0ef beq.n 8005f8c + 8005fec: 7dfb ldrb r3, [r7, #23] + 8005fee: 2b00 cmp r3, #0 + 8005ff0: d004 beq.n 8005ffc + 8005ff2: 7dbb ldrb r3, [r7, #22] + 8005ff4: f003 0304 and.w r3, r3, #4 + 8005ff8: 2b00 cmp r3, #0 + 8005ffa: d0ef beq.n 8005fdc pOutData [ 0 ] = ReadRawRC ( CRCResultRegL ); - 8005fac: 2022 movs r0, #34 ; 0x22 - 8005fae: f7ff fd43 bl 8005a38 - 8005fb2: 4603 mov r3, r0 - 8005fb4: 461a mov r2, r3 - 8005fb6: 687b ldr r3, [r7, #4] - 8005fb8: 701a strb r2, [r3, #0] + 8005ffc: 2022 movs r0, #34 ; 0x22 + 8005ffe: f7ff fd43 bl 8005a88 + 8006002: 4603 mov r3, r0 + 8006004: 461a mov r2, r3 + 8006006: 687b ldr r3, [r7, #4] + 8006008: 701a strb r2, [r3, #0] pOutData [ 1 ] = ReadRawRC ( CRCResultRegM ); - 8005fba: 687b ldr r3, [r7, #4] - 8005fbc: 1c5c adds r4, r3, #1 - 8005fbe: 2021 movs r0, #33 ; 0x21 - 8005fc0: f7ff fd3a bl 8005a38 - 8005fc4: 4603 mov r3, r0 - 8005fc6: 7023 strb r3, [r4, #0] + 800600a: 687b ldr r3, [r7, #4] + 800600c: 1c5c adds r4, r3, #1 + 800600e: 2021 movs r0, #33 ; 0x21 + 8006010: f7ff fd3a bl 8005a88 + 8006014: 4603 mov r3, r0 + 8006016: 7023 strb r3, [r4, #0] } - 8005fc8: bf00 nop - 8005fca: 371c adds r7, #28 - 8005fcc: 46bd mov sp, r7 - 8005fce: bd90 pop {r4, r7, pc} + 8006018: bf00 nop + 800601a: 371c adds r7, #28 + 800601c: 46bd mov sp, r7 + 800601e: bd90 pop {r4, r7, pc} -08005fd0 : +08006020 : * 返回 : 状态值 * = MI_OK,成功 * 调用 :外部调用 */ char PcdSelect ( uint8_t * pSnr ) { - 8005fd0: b580 push {r7, lr} - 8005fd2: b08a sub sp, #40 ; 0x28 - 8005fd4: af02 add r7, sp, #8 - 8005fd6: 6078 str r0, [r7, #4] + 8006020: b580 push {r7, lr} + 8006022: b08a sub sp, #40 ; 0x28 + 8006024: af02 add r7, sp, #8 + 8006026: 6078 str r0, [r7, #4] char ucN; uint8_t uc; uint8_t ucComMF522Buf [ MAXRLEN ]; uint32_t ulLen; ucComMF522Buf [ 0 ] = PICC_ANTICOLL1; - 8005fd8: 2393 movs r3, #147 ; 0x93 - 8005fda: 733b strb r3, [r7, #12] + 8006028: 2393 movs r3, #147 ; 0x93 + 800602a: 733b strb r3, [r7, #12] ucComMF522Buf [ 1 ] = 0x70; - 8005fdc: 2370 movs r3, #112 ; 0x70 - 8005fde: 737b strb r3, [r7, #13] + 800602c: 2370 movs r3, #112 ; 0x70 + 800602e: 737b strb r3, [r7, #13] ucComMF522Buf [ 6 ] = 0; - 8005fe0: 2300 movs r3, #0 - 8005fe2: 74bb strb r3, [r7, #18] + 8006030: 2300 movs r3, #0 + 8006032: 74bb strb r3, [r7, #18] for ( uc = 0; uc < 4; uc ++ ) - 8005fe4: 2300 movs r3, #0 - 8005fe6: 77bb strb r3, [r7, #30] - 8005fe8: e015 b.n 8006016 + 8006034: 2300 movs r3, #0 + 8006036: 77bb strb r3, [r7, #30] + 8006038: e015 b.n 8006066 { ucComMF522Buf [ uc + 2 ] = * ( pSnr + uc ); - 8005fea: 7fbb ldrb r3, [r7, #30] - 8005fec: 687a ldr r2, [r7, #4] - 8005fee: 441a add r2, r3 - 8005ff0: 7fbb ldrb r3, [r7, #30] - 8005ff2: 3302 adds r3, #2 - 8005ff4: 7812 ldrb r2, [r2, #0] - 8005ff6: f107 0120 add.w r1, r7, #32 - 8005ffa: 440b add r3, r1 - 8005ffc: f803 2c14 strb.w r2, [r3, #-20] + 800603a: 7fbb ldrb r3, [r7, #30] + 800603c: 687a ldr r2, [r7, #4] + 800603e: 441a add r2, r3 + 8006040: 7fbb ldrb r3, [r7, #30] + 8006042: 3302 adds r3, #2 + 8006044: 7812 ldrb r2, [r2, #0] + 8006046: f107 0120 add.w r1, r7, #32 + 800604a: 440b add r3, r1 + 800604c: f803 2c14 strb.w r2, [r3, #-20] ucComMF522Buf [ 6 ] ^= * ( pSnr + uc ); - 8006000: 7cba ldrb r2, [r7, #18] - 8006002: 7fbb ldrb r3, [r7, #30] - 8006004: 6879 ldr r1, [r7, #4] - 8006006: 440b add r3, r1 - 8006008: 781b ldrb r3, [r3, #0] - 800600a: 4053 eors r3, r2 - 800600c: b2db uxtb r3, r3 - 800600e: 74bb strb r3, [r7, #18] + 8006050: 7cba ldrb r2, [r7, #18] + 8006052: 7fbb ldrb r3, [r7, #30] + 8006054: 6879 ldr r1, [r7, #4] + 8006056: 440b add r3, r1 + 8006058: 781b ldrb r3, [r3, #0] + 800605a: 4053 eors r3, r2 + 800605c: b2db uxtb r3, r3 + 800605e: 74bb strb r3, [r7, #18] for ( uc = 0; uc < 4; uc ++ ) - 8006010: 7fbb ldrb r3, [r7, #30] - 8006012: 3301 adds r3, #1 - 8006014: 77bb strb r3, [r7, #30] - 8006016: 7fbb ldrb r3, [r7, #30] - 8006018: 2b03 cmp r3, #3 - 800601a: d9e6 bls.n 8005fea + 8006060: 7fbb ldrb r3, [r7, #30] + 8006062: 3301 adds r3, #1 + 8006064: 77bb strb r3, [r7, #30] + 8006066: 7fbb ldrb r3, [r7, #30] + 8006068: 2b03 cmp r3, #3 + 800606a: d9e6 bls.n 800603a } CalulateCRC ( ucComMF522Buf, 7, & ucComMF522Buf [ 7 ] ); - 800601c: f107 030c add.w r3, r7, #12 - 8006020: 1dda adds r2, r3, #7 - 8006022: f107 030c add.w r3, r7, #12 - 8006026: 2107 movs r1, #7 - 8006028: 4618 mov r0, r3 - 800602a: f7ff ff84 bl 8005f36 + 800606c: f107 030c add.w r3, r7, #12 + 8006070: 1dda adds r2, r3, #7 + 8006072: f107 030c add.w r3, r7, #12 + 8006076: 2107 movs r1, #7 + 8006078: 4618 mov r0, r3 + 800607a: f7ff ff84 bl 8005f86 ClearBitMask ( Status2Reg, 0x08 ); - 800602e: 2108 movs r1, #8 - 8006030: 2008 movs r0, #8 - 8006032: f7ff fd7c bl 8005b2e + 800607e: 2108 movs r1, #8 + 8006080: 2008 movs r0, #8 + 8006082: f7ff fd7c bl 8005b7e ucN = PcdComMF522 ( PCD_TRANSCEIVE, ucComMF522Buf, 9, ucComMF522Buf, & ulLen ); - 8006036: f107 020c add.w r2, r7, #12 - 800603a: f107 010c add.w r1, r7, #12 - 800603e: f107 0308 add.w r3, r7, #8 - 8006042: 9300 str r3, [sp, #0] - 8006044: 4613 mov r3, r2 - 8006046: 2209 movs r2, #9 - 8006048: 200c movs r0, #12 - 800604a: f7ff fe05 bl 8005c58 - 800604e: 4603 mov r3, r0 - 8006050: 77fb strb r3, [r7, #31] + 8006086: f107 020c add.w r2, r7, #12 + 800608a: f107 010c add.w r1, r7, #12 + 800608e: f107 0308 add.w r3, r7, #8 + 8006092: 9300 str r3, [sp, #0] + 8006094: 4613 mov r3, r2 + 8006096: 2209 movs r2, #9 + 8006098: 200c movs r0, #12 + 800609a: f7ff fe05 bl 8005ca8 + 800609e: 4603 mov r3, r0 + 80060a0: 77fb strb r3, [r7, #31] if ( ( ucN == MI_OK ) && ( ulLen == 0x18 ) ) - 8006052: 7ffb ldrb r3, [r7, #31] - 8006054: 2b00 cmp r3, #0 - 8006056: d105 bne.n 8006064 - 8006058: 68bb ldr r3, [r7, #8] - 800605a: 2b18 cmp r3, #24 - 800605c: d102 bne.n 8006064 + 80060a2: 7ffb ldrb r3, [r7, #31] + 80060a4: 2b00 cmp r3, #0 + 80060a6: d105 bne.n 80060b4 + 80060a8: 68bb ldr r3, [r7, #8] + 80060aa: 2b18 cmp r3, #24 + 80060ac: d102 bne.n 80060b4 { ucN = MI_OK; - 800605e: 2300 movs r3, #0 - 8006060: 77fb strb r3, [r7, #31] - 8006062: e001 b.n 8006068 + 80060ae: 2300 movs r3, #0 + 80060b0: 77fb strb r3, [r7, #31] + 80060b2: e001 b.n 80060b8 } else { ucN = MI_ERR; - 8006064: 2302 movs r3, #2 - 8006066: 77fb strb r3, [r7, #31] + 80060b4: 2302 movs r3, #2 + 80060b6: 77fb strb r3, [r7, #31] } return ucN; - 8006068: 7ffb ldrb r3, [r7, #31] + 80060b8: 7ffb ldrb r3, [r7, #31] } - 800606a: 4618 mov r0, r3 - 800606c: 3720 adds r7, #32 - 800606e: 46bd mov sp, r7 - 8006070: bd80 pop {r7, pc} + 80060ba: 4618 mov r0, r3 + 80060bc: 3720 adds r7, #32 + 80060be: 46bd mov sp, r7 + 80060c0: bd80 pop {r7, pc} -08006072 : +080060c2 : * 返回 : 状态值 * = MI_OK,成功 * 调用 :外部调用 */ char PcdAuthState ( uint8_t ucAuth_mode, uint8_t ucAddr, char * pKey, uint8_t * pSnr ) { - 8006072: b580 push {r7, lr} - 8006074: b08c sub sp, #48 ; 0x30 - 8006076: af02 add r7, sp, #8 - 8006078: 60ba str r2, [r7, #8] - 800607a: 607b str r3, [r7, #4] - 800607c: 4603 mov r3, r0 - 800607e: 73fb strb r3, [r7, #15] - 8006080: 460b mov r3, r1 - 8006082: 73bb strb r3, [r7, #14] + 80060c2: b580 push {r7, lr} + 80060c4: b08c sub sp, #48 ; 0x30 + 80060c6: af02 add r7, sp, #8 + 80060c8: 60ba str r2, [r7, #8] + 80060ca: 607b str r3, [r7, #4] + 80060cc: 4603 mov r3, r0 + 80060ce: 73fb strb r3, [r7, #15] + 80060d0: 460b mov r3, r1 + 80060d2: 73bb strb r3, [r7, #14] char cStatus; uint8_t uc, ucComMF522Buf [ MAXRLEN ]; uint32_t ulLen; ucComMF522Buf [ 0 ] = ucAuth_mode; - 8006084: 7bfb ldrb r3, [r7, #15] - 8006086: 753b strb r3, [r7, #20] + 80060d4: 7bfb ldrb r3, [r7, #15] + 80060d6: 753b strb r3, [r7, #20] ucComMF522Buf [ 1 ] = ucAddr; - 8006088: 7bbb ldrb r3, [r7, #14] - 800608a: 757b strb r3, [r7, #21] + 80060d8: 7bbb ldrb r3, [r7, #14] + 80060da: 757b strb r3, [r7, #21] for ( uc = 0; uc < 6; uc ++ ) - 800608c: 2300 movs r3, #0 - 800608e: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 8006092: e011 b.n 80060b8 + 80060dc: 2300 movs r3, #0 + 80060de: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 80060e2: e011 b.n 8006108 { ucComMF522Buf [ uc + 2 ] = * ( pKey + uc ); - 8006094: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 8006098: 68ba ldr r2, [r7, #8] - 800609a: 441a add r2, r3 - 800609c: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060a0: 3302 adds r3, #2 - 80060a2: 7812 ldrb r2, [r2, #0] - 80060a4: f107 0128 add.w r1, r7, #40 ; 0x28 - 80060a8: 440b add r3, r1 - 80060aa: f803 2c14 strb.w r2, [r3, #-20] + 80060e4: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 80060e8: 68ba ldr r2, [r7, #8] + 80060ea: 441a add r2, r3 + 80060ec: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 80060f0: 3302 adds r3, #2 + 80060f2: 7812 ldrb r2, [r2, #0] + 80060f4: f107 0128 add.w r1, r7, #40 ; 0x28 + 80060f8: 440b add r3, r1 + 80060fa: f803 2c14 strb.w r2, [r3, #-20] for ( uc = 0; uc < 6; uc ++ ) - 80060ae: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060b2: 3301 adds r3, #1 - 80060b4: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 80060b8: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060bc: 2b05 cmp r3, #5 - 80060be: d9e9 bls.n 8006094 + 80060fe: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8006102: 3301 adds r3, #1 + 8006104: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 8006108: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 800610c: 2b05 cmp r3, #5 + 800610e: d9e9 bls.n 80060e4 } for ( uc = 0; uc < 6; uc ++ ) - 80060c0: 2300 movs r3, #0 - 80060c2: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 80060c6: e011 b.n 80060ec + 8006110: 2300 movs r3, #0 + 8006112: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 8006116: e011 b.n 800613c { ucComMF522Buf [ uc + 8 ] = * ( pSnr + uc ); - 80060c8: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060cc: 687a ldr r2, [r7, #4] - 80060ce: 441a add r2, r3 - 80060d0: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060d4: 3308 adds r3, #8 - 80060d6: 7812 ldrb r2, [r2, #0] - 80060d8: f107 0128 add.w r1, r7, #40 ; 0x28 - 80060dc: 440b add r3, r1 - 80060de: f803 2c14 strb.w r2, [r3, #-20] + 8006118: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 800611c: 687a ldr r2, [r7, #4] + 800611e: 441a add r2, r3 + 8006120: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8006124: 3308 adds r3, #8 + 8006126: 7812 ldrb r2, [r2, #0] + 8006128: f107 0128 add.w r1, r7, #40 ; 0x28 + 800612c: 440b add r3, r1 + 800612e: f803 2c14 strb.w r2, [r3, #-20] for ( uc = 0; uc < 6; uc ++ ) - 80060e2: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060e6: 3301 adds r3, #1 - 80060e8: f887 3026 strb.w r3, [r7, #38] ; 0x26 - 80060ec: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 - 80060f0: 2b05 cmp r3, #5 - 80060f2: d9e9 bls.n 80060c8 + 8006132: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8006136: 3301 adds r3, #1 + 8006138: f887 3026 strb.w r3, [r7, #38] ; 0x26 + 800613c: f897 3026 ldrb.w r3, [r7, #38] ; 0x26 + 8006140: 2b05 cmp r3, #5 + 8006142: d9e9 bls.n 8006118 } cStatus = PcdComMF522 ( PCD_AUTHENT, ucComMF522Buf, 12, ucComMF522Buf, & ulLen ); - 80060f4: f107 0214 add.w r2, r7, #20 - 80060f8: f107 0114 add.w r1, r7, #20 - 80060fc: f107 0310 add.w r3, r7, #16 - 8006100: 9300 str r3, [sp, #0] - 8006102: 4613 mov r3, r2 - 8006104: 220c movs r2, #12 - 8006106: 200e movs r0, #14 - 8006108: f7ff fda6 bl 8005c58 - 800610c: 4603 mov r3, r0 - 800610e: f887 3027 strb.w r3, [r7, #39] ; 0x27 + 8006144: f107 0214 add.w r2, r7, #20 + 8006148: f107 0114 add.w r1, r7, #20 + 800614c: f107 0310 add.w r3, r7, #16 + 8006150: 9300 str r3, [sp, #0] + 8006152: 4613 mov r3, r2 + 8006154: 220c movs r2, #12 + 8006156: 200e movs r0, #14 + 8006158: f7ff fda6 bl 8005ca8 + 800615c: 4603 mov r3, r0 + 800615e: f887 3027 strb.w r3, [r7, #39] ; 0x27 if ( ( cStatus != MI_OK ) || ( ! ( ReadRawRC ( Status2Reg ) & 0x08 ) ) ) - 8006112: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 - 8006116: 2b00 cmp r3, #0 - 8006118: d107 bne.n 800612a - 800611a: 2008 movs r0, #8 - 800611c: f7ff fc8c bl 8005a38 - 8006120: 4603 mov r3, r0 - 8006122: f003 0308 and.w r3, r3, #8 - 8006126: 2b00 cmp r3, #0 - 8006128: d102 bne.n 8006130 + 8006162: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 + 8006166: 2b00 cmp r3, #0 + 8006168: d107 bne.n 800617a + 800616a: 2008 movs r0, #8 + 800616c: f7ff fc8c bl 8005a88 + 8006170: 4603 mov r3, r0 + 8006172: f003 0308 and.w r3, r3, #8 + 8006176: 2b00 cmp r3, #0 + 8006178: d102 bne.n 8006180 { // if(cStatus != MI_OK) // printf("666") ; // else // printf("888"); cStatus = MI_ERR; - 800612a: 2302 movs r3, #2 - 800612c: f887 3027 strb.w r3, [r7, #39] ; 0x27 + 800617a: 2302 movs r3, #2 + 800617c: f887 3027 strb.w r3, [r7, #39] ; 0x27 } return cStatus; - 8006130: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 + 8006180: f897 3027 ldrb.w r3, [r7, #39] ; 0x27 } - 8006134: 4618 mov r0, r3 - 8006136: 3728 adds r7, #40 ; 0x28 - 8006138: 46bd mov sp, r7 - 800613a: bd80 pop {r7, pc} + 8006184: 4618 mov r0, r3 + 8006186: 3728 adds r7, #40 ; 0x28 + 8006188: 46bd mov sp, r7 + 800618a: bd80 pop {r7, pc} -0800613c : +0800618c : + * 返回 : 状态值 + * = MI_OK,成功 + * 调用 :外部调用 + */ +char PcdRead ( uint8_t ucAddr, uint8_t * pData ) +{ + 800618c: b580 push {r7, lr} + 800618e: b08a sub sp, #40 ; 0x28 + 8006190: af02 add r7, sp, #8 + 8006192: 4603 mov r3, r0 + 8006194: 6039 str r1, [r7, #0] + 8006196: 71fb strb r3, [r7, #7] + char cStatus; + uint8_t uc, ucComMF522Buf [ MAXRLEN ]; + uint32_t ulLen; + ucComMF522Buf [ 0 ] = PICC_READ; + 8006198: 2330 movs r3, #48 ; 0x30 + 800619a: 733b strb r3, [r7, #12] + ucComMF522Buf [ 1 ] = ucAddr; + 800619c: 79fb ldrb r3, [r7, #7] + 800619e: 737b strb r3, [r7, #13] + CalulateCRC ( ucComMF522Buf, 2, & ucComMF522Buf [ 2 ] ); + 80061a0: f107 030c add.w r3, r7, #12 + 80061a4: 1c9a adds r2, r3, #2 + 80061a6: f107 030c add.w r3, r7, #12 + 80061aa: 2102 movs r1, #2 + 80061ac: 4618 mov r0, r3 + 80061ae: f7ff feea bl 8005f86 + cStatus = PcdComMF522 ( PCD_TRANSCEIVE, ucComMF522Buf, 4, ucComMF522Buf, & ulLen ); + 80061b2: f107 020c add.w r2, r7, #12 + 80061b6: f107 010c add.w r1, r7, #12 + 80061ba: f107 0308 add.w r3, r7, #8 + 80061be: 9300 str r3, [sp, #0] + 80061c0: 4613 mov r3, r2 + 80061c2: 2204 movs r2, #4 + 80061c4: 200c movs r0, #12 + 80061c6: f7ff fd6f bl 8005ca8 + 80061ca: 4603 mov r3, r0 + 80061cc: 77fb strb r3, [r7, #31] + if ( ( cStatus == MI_OK ) && ( ulLen == 0x90 ) ) + 80061ce: 7ffb ldrb r3, [r7, #31] + 80061d0: 2b00 cmp r3, #0 + 80061d2: d116 bne.n 8006202 + 80061d4: 68bb ldr r3, [r7, #8] + 80061d6: 2b90 cmp r3, #144 ; 0x90 + 80061d8: d113 bne.n 8006202 + { + for ( uc = 0; uc < 16; uc ++ ) + 80061da: 2300 movs r3, #0 + 80061dc: 77bb strb r3, [r7, #30] + 80061de: e00c b.n 80061fa + { + * ( pData + uc ) = ucComMF522Buf [ uc ]; + 80061e0: 7fba ldrb r2, [r7, #30] + 80061e2: 7fbb ldrb r3, [r7, #30] + 80061e4: 6839 ldr r1, [r7, #0] + 80061e6: 440b add r3, r1 + 80061e8: f107 0120 add.w r1, r7, #32 + 80061ec: 440a add r2, r1 + 80061ee: f812 2c14 ldrb.w r2, [r2, #-20] + 80061f2: 701a strb r2, [r3, #0] + for ( uc = 0; uc < 16; uc ++ ) + 80061f4: 7fbb ldrb r3, [r7, #30] + 80061f6: 3301 adds r3, #1 + 80061f8: 77bb strb r3, [r7, #30] + 80061fa: 7fbb ldrb r3, [r7, #30] + 80061fc: 2b0f cmp r3, #15 + 80061fe: d9ef bls.n 80061e0 + if ( ( cStatus == MI_OK ) && ( ulLen == 0x90 ) ) + 8006200: e001 b.n 8006206 + } + } + else + { + cStatus = MI_ERR; + 8006202: 2302 movs r3, #2 + 8006204: 77fb strb r3, [r7, #31] + } + return cStatus; + 8006206: 7ffb ldrb r3, [r7, #31] + +} + 8006208: 4618 mov r0, r3 + 800620a: 3720 adds r7, #32 + 800620c: 46bd mov sp, r7 + 800620e: bd80 pop {r7, pc} + +08006210 : PcdHalt (); } void RC522_Init ( void ) { - 800613c: b580 push {r7, lr} - 800613e: af00 add r7, sp, #0 + 8006210: b580 push {r7, lr} + 8006212: af00 add r7, sp, #0 PcdReset (); - 8006140: f7ff fd2a bl 8005b98 + 8006214: f7ff fce8 bl 8005be8 M500PcdConfigISOType ( 'A' );//设置工作方式 - 8006144: 2041 movs r0, #65 ; 0x41 - 8006146: f7ff fd56 bl 8005bf6 + 8006218: 2041 movs r0, #65 ; 0x41 + 800621a: f7ff fd14 bl 8005c46 } - 800614a: bf00 nop - 800614c: bd80 pop {r7, pc} + 800621e: bf00 nop + 8006220: bd80 pop {r7, pc} ... -08006150 : +08006224 : //SPI写数据 //向触摸屏IC写入1byte数据 //num:要写入的数据 void TP_Write_Byte(char num) { - 8006150: b580 push {r7, lr} - 8006152: b084 sub sp, #16 - 8006154: af00 add r7, sp, #0 - 8006156: 4603 mov r3, r0 - 8006158: 71fb strb r3, [r7, #7] + 8006224: b580 push {r7, lr} + 8006226: b084 sub sp, #16 + 8006228: af00 add r7, sp, #0 + 800622a: 4603 mov r3, r0 + 800622c: 71fb strb r3, [r7, #7] for(uint8_t count=0;count<8;count++) - 800615a: 2300 movs r3, #0 - 800615c: 73fb strb r3, [r7, #15] - 800615e: e020 b.n 80061a2 + 800622e: 2300 movs r3, #0 + 8006230: 73fb strb r3, [r7, #15] + 8006232: e020 b.n 8006276 { if(num&0x80){TDIN(1);} - 8006160: f997 3007 ldrsb.w r3, [r7, #7] - 8006164: 2b00 cmp r3, #0 - 8006166: da06 bge.n 8006176 - 8006168: 2201 movs r2, #1 - 800616a: f44f 7100 mov.w r1, #512 ; 0x200 - 800616e: 4811 ldr r0, [pc, #68] ; (80061b4 ) - 8006170: f7fb ffc1 bl 80020f6 - 8006174: e005 b.n 8006182 + 8006234: f997 3007 ldrsb.w r3, [r7, #7] + 8006238: 2b00 cmp r3, #0 + 800623a: da06 bge.n 800624a + 800623c: 2201 movs r2, #1 + 800623e: f44f 7100 mov.w r1, #512 ; 0x200 + 8006242: 4811 ldr r0, [pc, #68] ; (8006288 ) + 8006244: f7fb ff7f bl 8002146 + 8006248: e005 b.n 8006256 else {TDIN(0);} - 8006176: 2200 movs r2, #0 - 8006178: f44f 7100 mov.w r1, #512 ; 0x200 - 800617c: 480d ldr r0, [pc, #52] ; (80061b4 ) - 800617e: f7fb ffba bl 80020f6 + 800624a: 2200 movs r2, #0 + 800624c: f44f 7100 mov.w r1, #512 ; 0x200 + 8006250: 480d ldr r0, [pc, #52] ; (8006288 ) + 8006252: f7fb ff78 bl 8002146 num<<=1; - 8006182: 79fb ldrb r3, [r7, #7] - 8006184: 005b lsls r3, r3, #1 - 8006186: 71fb strb r3, [r7, #7] + 8006256: 79fb ldrb r3, [r7, #7] + 8006258: 005b lsls r3, r3, #1 + 800625a: 71fb strb r3, [r7, #7] TCLK(0); - 8006188: 2200 movs r2, #0 - 800618a: 2102 movs r1, #2 - 800618c: 480a ldr r0, [pc, #40] ; (80061b8 ) - 800618e: f7fb ffb2 bl 80020f6 + 800625c: 2200 movs r2, #0 + 800625e: 2102 movs r1, #2 + 8006260: 480a ldr r0, [pc, #40] ; (800628c ) + 8006262: f7fb ff70 bl 8002146 TCLK(1); //上升沿有效 - 8006192: 2201 movs r2, #1 - 8006194: 2102 movs r1, #2 - 8006196: 4808 ldr r0, [pc, #32] ; (80061b8 ) - 8006198: f7fb ffad bl 80020f6 + 8006266: 2201 movs r2, #1 + 8006268: 2102 movs r1, #2 + 800626a: 4808 ldr r0, [pc, #32] ; (800628c ) + 800626c: f7fb ff6b bl 8002146 for(uint8_t count=0;count<8;count++) - 800619c: 7bfb ldrb r3, [r7, #15] - 800619e: 3301 adds r3, #1 - 80061a0: 73fb strb r3, [r7, #15] - 80061a2: 7bfb ldrb r3, [r7, #15] - 80061a4: 2b07 cmp r3, #7 - 80061a6: d9db bls.n 8006160 + 8006270: 7bfb ldrb r3, [r7, #15] + 8006272: 3301 adds r3, #1 + 8006274: 73fb strb r3, [r7, #15] + 8006276: 7bfb ldrb r3, [r7, #15] + 8006278: 2b07 cmp r3, #7 + 800627a: d9db bls.n 8006234 } } - 80061a8: bf00 nop - 80061aa: bf00 nop - 80061ac: 3710 adds r7, #16 - 80061ae: 46bd mov sp, r7 - 80061b0: bd80 pop {r7, pc} - 80061b2: bf00 nop - 80061b4: 40011c00 .word 0x40011c00 - 80061b8: 40010c00 .word 0x40010c00 + 800627c: bf00 nop + 800627e: bf00 nop + 8006280: 3710 adds r7, #16 + 8006282: 46bd mov sp, r7 + 8006284: bd80 pop {r7, pc} + 8006286: bf00 nop + 8006288: 40011c00 .word 0x40011c00 + 800628c: 40010c00 .word 0x40010c00 -080061bc : +08006290 : //SPI读数据 //从触摸屏IC读取adc值 //CMD:指令 //返回值:读到的数据 uint16_t TP_Read_AD(char CMD) { - 80061bc: b580 push {r7, lr} - 80061be: b084 sub sp, #16 - 80061c0: af00 add r7, sp, #0 - 80061c2: 4603 mov r3, r0 - 80061c4: 71fb strb r3, [r7, #7] + 8006290: b580 push {r7, lr} + 8006292: b084 sub sp, #16 + 8006294: af00 add r7, sp, #0 + 8006296: 4603 mov r3, r0 + 8006298: 71fb strb r3, [r7, #7] uint16_t Num=0; - 80061c6: 2300 movs r3, #0 - 80061c8: 81fb strh r3, [r7, #14] + 800629a: 2300 movs r3, #0 + 800629c: 81fb strh r3, [r7, #14] TCLK(0); //先拉低时钟 - 80061ca: 2200 movs r2, #0 - 80061cc: 2102 movs r1, #2 - 80061ce: 482b ldr r0, [pc, #172] ; (800627c ) - 80061d0: f7fb ff91 bl 80020f6 + 800629e: 2200 movs r2, #0 + 80062a0: 2102 movs r1, #2 + 80062a2: 482b ldr r0, [pc, #172] ; (8006350 ) + 80062a4: f7fb ff4f bl 8002146 TDIN(0); //拉低数据线 - 80061d4: 2200 movs r2, #0 - 80061d6: f44f 7100 mov.w r1, #512 ; 0x200 - 80061da: 4829 ldr r0, [pc, #164] ; (8006280 ) - 80061dc: f7fb ff8b bl 80020f6 + 80062a8: 2200 movs r2, #0 + 80062aa: f44f 7100 mov.w r1, #512 ; 0x200 + 80062ae: 4829 ldr r0, [pc, #164] ; (8006354 ) + 80062b0: f7fb ff49 bl 8002146 TCS(0); //选中触摸屏IC - 80061e0: 2200 movs r2, #0 - 80061e2: 2104 movs r1, #4 - 80061e4: 4825 ldr r0, [pc, #148] ; (800627c ) - 80061e6: f7fb ff86 bl 80020f6 + 80062b4: 2200 movs r2, #0 + 80062b6: 2104 movs r1, #4 + 80062b8: 4825 ldr r0, [pc, #148] ; (8006350 ) + 80062ba: f7fb ff44 bl 8002146 TP_Write_Byte(CMD);//发送命令字 - 80061ea: 79fb ldrb r3, [r7, #7] - 80061ec: 4618 mov r0, r3 - 80061ee: f7ff ffaf bl 8006150 + 80062be: 79fb ldrb r3, [r7, #7] + 80062c0: 4618 mov r0, r3 + 80062c2: f7ff ffaf bl 8006224 HAL_GetTick(); //稍微延时,ad转换需要时间 - 80061f2: f7fb fc99 bl 8001b28 + 80062c6: f7fb fc57 bl 8001b78 HAL_GetTick(); - 80061f6: f7fb fc97 bl 8001b28 + 80062ca: f7fb fc55 bl 8001b78 HAL_GetTick(); - 80061fa: f7fb fc95 bl 8001b28 + 80062ce: f7fb fc53 bl 8001b78 HAL_GetTick(); - 80061fe: f7fb fc93 bl 8001b28 + 80062d2: f7fb fc51 bl 8001b78 HAL_GetTick(); - 8006202: f7fb fc91 bl 8001b28 + 80062d6: f7fb fc4f bl 8001b78 HAL_GetTick(); - 8006206: f7fb fc8f bl 8001b28 + 80062da: f7fb fc4d bl 8001b78 TCLK(1); //给1个时钟,清除BUSY - 800620a: 2201 movs r2, #1 - 800620c: 2102 movs r1, #2 - 800620e: 481b ldr r0, [pc, #108] ; (800627c ) - 8006210: f7fb ff71 bl 80020f6 + 80062de: 2201 movs r2, #1 + 80062e0: 2102 movs r1, #2 + 80062e2: 481b ldr r0, [pc, #108] ; (8006350 ) + 80062e4: f7fb ff2f bl 8002146 TCLK(0); - 8006214: 2200 movs r2, #0 - 8006216: 2102 movs r1, #2 - 8006218: 4818 ldr r0, [pc, #96] ; (800627c ) - 800621a: f7fb ff6c bl 80020f6 + 80062e8: 2200 movs r2, #0 + 80062ea: 2102 movs r1, #2 + 80062ec: 4818 ldr r0, [pc, #96] ; (8006350 ) + 80062ee: f7fb ff2a bl 8002146 for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 800621e: 2300 movs r3, #0 - 8006220: 737b strb r3, [r7, #13] - 8006222: e01a b.n 800625a + 80062f2: 2300 movs r3, #0 + 80062f4: 737b strb r3, [r7, #13] + 80062f6: e01a b.n 800632e { Num<<=1; - 8006224: 89fb ldrh r3, [r7, #14] - 8006226: 005b lsls r3, r3, #1 - 8006228: 81fb strh r3, [r7, #14] + 80062f8: 89fb ldrh r3, [r7, #14] + 80062fa: 005b lsls r3, r3, #1 + 80062fc: 81fb strh r3, [r7, #14] TCLK(0); //下降沿有效 - 800622a: 2200 movs r2, #0 - 800622c: 2102 movs r1, #2 - 800622e: 4813 ldr r0, [pc, #76] ; (800627c ) - 8006230: f7fb ff61 bl 80020f6 + 80062fe: 2200 movs r2, #0 + 8006300: 2102 movs r1, #2 + 8006302: 4813 ldr r0, [pc, #76] ; (8006350 ) + 8006304: f7fb ff1f bl 8002146 TCLK(1);; - 8006234: 2201 movs r2, #1 - 8006236: 2102 movs r1, #2 - 8006238: 4810 ldr r0, [pc, #64] ; (800627c ) - 800623a: f7fb ff5c bl 80020f6 + 8006308: 2201 movs r2, #1 + 800630a: 2102 movs r1, #2 + 800630c: 4810 ldr r0, [pc, #64] ; (8006350 ) + 800630e: f7fb ff1a bl 8002146 if(TDOUT){Num++;} - 800623e: f44f 7180 mov.w r1, #256 ; 0x100 - 8006242: 480f ldr r0, [pc, #60] ; (8006280 ) - 8006244: f7fb ff40 bl 80020c8 - 8006248: 4603 mov r3, r0 - 800624a: 2b00 cmp r3, #0 - 800624c: d002 beq.n 8006254 - 800624e: 89fb ldrh r3, [r7, #14] - 8006250: 3301 adds r3, #1 - 8006252: 81fb strh r3, [r7, #14] + 8006312: f44f 7180 mov.w r1, #256 ; 0x100 + 8006316: 480f ldr r0, [pc, #60] ; (8006354 ) + 8006318: f7fb fefe bl 8002118 + 800631c: 4603 mov r3, r0 + 800631e: 2b00 cmp r3, #0 + 8006320: d002 beq.n 8006328 + 8006322: 89fb ldrh r3, [r7, #14] + 8006324: 3301 adds r3, #1 + 8006326: 81fb strh r3, [r7, #14] for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 8006254: 7b7b ldrb r3, [r7, #13] - 8006256: 3301 adds r3, #1 - 8006258: 737b strb r3, [r7, #13] - 800625a: 7b7b ldrb r3, [r7, #13] - 800625c: 2b0f cmp r3, #15 - 800625e: d9e1 bls.n 8006224 + 8006328: 7b7b ldrb r3, [r7, #13] + 800632a: 3301 adds r3, #1 + 800632c: 737b strb r3, [r7, #13] + 800632e: 7b7b ldrb r3, [r7, #13] + 8006330: 2b0f cmp r3, #15 + 8006332: d9e1 bls.n 80062f8 } Num>>=4; //只有高12位有效. - 8006260: 89fb ldrh r3, [r7, #14] - 8006262: 091b lsrs r3, r3, #4 - 8006264: 81fb strh r3, [r7, #14] + 8006334: 89fb ldrh r3, [r7, #14] + 8006336: 091b lsrs r3, r3, #4 + 8006338: 81fb strh r3, [r7, #14] TCS(1); //释放片选 - 8006266: 2201 movs r2, #1 - 8006268: 2104 movs r1, #4 - 800626a: 4804 ldr r0, [pc, #16] ; (800627c ) - 800626c: f7fb ff43 bl 80020f6 + 800633a: 2201 movs r2, #1 + 800633c: 2104 movs r1, #4 + 800633e: 4804 ldr r0, [pc, #16] ; (8006350 ) + 8006340: f7fb ff01 bl 8002146 return(Num); - 8006270: 89fb ldrh r3, [r7, #14] + 8006344: 89fb ldrh r3, [r7, #14] } - 8006272: 4618 mov r0, r3 - 8006274: 3710 adds r7, #16 - 8006276: 46bd mov sp, r7 - 8006278: bd80 pop {r7, pc} - 800627a: bf00 nop - 800627c: 40010c00 .word 0x40010c00 - 8006280: 40011c00 .word 0x40011c00 + 8006346: 4618 mov r0, r3 + 8006348: 3710 adds r7, #16 + 800634a: 46bd mov sp, r7 + 800634c: bd80 pop {r7, pc} + 800634e: bf00 nop + 8006350: 40010c00 .word 0x40010c00 + 8006354: 40011c00 .word 0x40011c00 -08006284 : +08006358 : //xy:指令(CMD_RDX/CMD_RDY) //返回值:读到的数据 #define READ_TIMES 5 //读取次数 #define LOST_VAL 1 //丢弃值 uint16_t TP_Read_XOY(uint8_t xy) { - 8006284: b590 push {r4, r7, lr} - 8006286: b089 sub sp, #36 ; 0x24 - 8006288: af00 add r7, sp, #0 - 800628a: 4603 mov r3, r0 - 800628c: 71fb strb r3, [r7, #7] + 8006358: b590 push {r4, r7, lr} + 800635a: b089 sub sp, #36 ; 0x24 + 800635c: af00 add r7, sp, #0 + 800635e: 4603 mov r3, r0 + 8006360: 71fb strb r3, [r7, #7] uint16_t i, j; uint16_t buf[READ_TIMES]; uint16_t sum=0; - 800628e: 2300 movs r3, #0 - 8006290: 837b strh r3, [r7, #26] + 8006362: 2300 movs r3, #0 + 8006364: 837b strh r3, [r7, #26] uint16_t temp; for(i=0;i - 8006298: 8bfc ldrh r4, [r7, #30] - 800629a: 79fb ldrb r3, [r7, #7] - 800629c: 4618 mov r0, r3 - 800629e: f7ff ff8d bl 80061bc - 80062a2: 4603 mov r3, r0 - 80062a4: 461a mov r2, r3 - 80062a6: 0063 lsls r3, r4, #1 - 80062a8: f107 0120 add.w r1, r7, #32 - 80062ac: 440b add r3, r1 - 80062ae: f823 2c14 strh.w r2, [r3, #-20] - 80062b2: 8bfb ldrh r3, [r7, #30] - 80062b4: 3301 adds r3, #1 - 80062b6: 83fb strh r3, [r7, #30] - 80062b8: 8bfb ldrh r3, [r7, #30] - 80062ba: 2b04 cmp r3, #4 - 80062bc: d9ec bls.n 8006298 + 8006366: 2300 movs r3, #0 + 8006368: 83fb strh r3, [r7, #30] + 800636a: e00f b.n 800638c + 800636c: 8bfc ldrh r4, [r7, #30] + 800636e: 79fb ldrb r3, [r7, #7] + 8006370: 4618 mov r0, r3 + 8006372: f7ff ff8d bl 8006290 + 8006376: 4603 mov r3, r0 + 8006378: 461a mov r2, r3 + 800637a: 0063 lsls r3, r4, #1 + 800637c: f107 0120 add.w r1, r7, #32 + 8006380: 440b add r3, r1 + 8006382: f823 2c14 strh.w r2, [r3, #-20] + 8006386: 8bfb ldrh r3, [r7, #30] + 8006388: 3301 adds r3, #1 + 800638a: 83fb strh r3, [r7, #30] + 800638c: 8bfb ldrh r3, [r7, #30] + 800638e: 2b04 cmp r3, #4 + 8006390: d9ec bls.n 800636c for(i=0;i + 8006392: 2300 movs r3, #0 + 8006394: 83fb strh r3, [r7, #30] + 8006396: e03b b.n 8006410 { for(j=i+1;j + 8006398: 8bfb ldrh r3, [r7, #30] + 800639a: 3301 adds r3, #1 + 800639c: 83bb strh r3, [r7, #28] + 800639e: e031 b.n 8006404 { if(buf[i]>buf[j])//升序排列 - 80062cc: 8bfb ldrh r3, [r7, #30] - 80062ce: 005b lsls r3, r3, #1 - 80062d0: f107 0220 add.w r2, r7, #32 - 80062d4: 4413 add r3, r2 - 80062d6: f833 2c14 ldrh.w r2, [r3, #-20] - 80062da: 8bbb ldrh r3, [r7, #28] - 80062dc: 005b lsls r3, r3, #1 - 80062de: f107 0120 add.w r1, r7, #32 - 80062e2: 440b add r3, r1 - 80062e4: f833 3c14 ldrh.w r3, [r3, #-20] - 80062e8: 429a cmp r2, r3 - 80062ea: d91e bls.n 800632a + 80063a0: 8bfb ldrh r3, [r7, #30] + 80063a2: 005b lsls r3, r3, #1 + 80063a4: f107 0220 add.w r2, r7, #32 + 80063a8: 4413 add r3, r2 + 80063aa: f833 2c14 ldrh.w r2, [r3, #-20] + 80063ae: 8bbb ldrh r3, [r7, #28] + 80063b0: 005b lsls r3, r3, #1 + 80063b2: f107 0120 add.w r1, r7, #32 + 80063b6: 440b add r3, r1 + 80063b8: f833 3c14 ldrh.w r3, [r3, #-20] + 80063bc: 429a cmp r2, r3 + 80063be: d91e bls.n 80063fe { temp=buf[i]; - 80062ec: 8bfb ldrh r3, [r7, #30] - 80062ee: 005b lsls r3, r3, #1 - 80062f0: f107 0220 add.w r2, r7, #32 - 80062f4: 4413 add r3, r2 - 80062f6: f833 3c14 ldrh.w r3, [r3, #-20] - 80062fa: 833b strh r3, [r7, #24] + 80063c0: 8bfb ldrh r3, [r7, #30] + 80063c2: 005b lsls r3, r3, #1 + 80063c4: f107 0220 add.w r2, r7, #32 + 80063c8: 4413 add r3, r2 + 80063ca: f833 3c14 ldrh.w r3, [r3, #-20] + 80063ce: 833b strh r3, [r7, #24] buf[i]=buf[j]; - 80062fc: 8bbb ldrh r3, [r7, #28] - 80062fe: 8bfa ldrh r2, [r7, #30] - 8006300: 005b lsls r3, r3, #1 - 8006302: f107 0120 add.w r1, r7, #32 - 8006306: 440b add r3, r1 - 8006308: f833 1c14 ldrh.w r1, [r3, #-20] - 800630c: 0053 lsls r3, r2, #1 - 800630e: f107 0220 add.w r2, r7, #32 - 8006312: 4413 add r3, r2 - 8006314: 460a mov r2, r1 - 8006316: f823 2c14 strh.w r2, [r3, #-20] + 80063d0: 8bbb ldrh r3, [r7, #28] + 80063d2: 8bfa ldrh r2, [r7, #30] + 80063d4: 005b lsls r3, r3, #1 + 80063d6: f107 0120 add.w r1, r7, #32 + 80063da: 440b add r3, r1 + 80063dc: f833 1c14 ldrh.w r1, [r3, #-20] + 80063e0: 0053 lsls r3, r2, #1 + 80063e2: f107 0220 add.w r2, r7, #32 + 80063e6: 4413 add r3, r2 + 80063e8: 460a mov r2, r1 + 80063ea: f823 2c14 strh.w r2, [r3, #-20] buf[j]=temp; - 800631a: 8bbb ldrh r3, [r7, #28] - 800631c: 005b lsls r3, r3, #1 - 800631e: f107 0220 add.w r2, r7, #32 - 8006322: 4413 add r3, r2 - 8006324: 8b3a ldrh r2, [r7, #24] - 8006326: f823 2c14 strh.w r2, [r3, #-20] + 80063ee: 8bbb ldrh r3, [r7, #28] + 80063f0: 005b lsls r3, r3, #1 + 80063f2: f107 0220 add.w r2, r7, #32 + 80063f6: 4413 add r3, r2 + 80063f8: 8b3a ldrh r2, [r7, #24] + 80063fa: f823 2c14 strh.w r2, [r3, #-20] for(j=i+1;j + 80063fe: 8bbb ldrh r3, [r7, #28] + 8006400: 3301 adds r3, #1 + 8006402: 83bb strh r3, [r7, #28] + 8006404: 8bbb ldrh r3, [r7, #28] + 8006406: 2b04 cmp r3, #4 + 8006408: d9ca bls.n 80063a0 for(i=0;i + 800640a: 8bfb ldrh r3, [r7, #30] + 800640c: 3301 adds r3, #1 + 800640e: 83fb strh r3, [r7, #30] + 8006410: 8bfb ldrh r3, [r7, #30] + 8006412: 2b03 cmp r3, #3 + 8006414: d9c0 bls.n 8006398 } } } sum=0; - 8006342: 2300 movs r3, #0 - 8006344: 837b strh r3, [r7, #26] + 8006416: 2300 movs r3, #0 + 8006418: 837b strh r3, [r7, #26] for(i=LOST_VAL;i - 800634c: 8bfb ldrh r3, [r7, #30] - 800634e: 005b lsls r3, r3, #1 - 8006350: f107 0220 add.w r2, r7, #32 - 8006354: 4413 add r3, r2 - 8006356: f833 2c14 ldrh.w r2, [r3, #-20] - 800635a: 8b7b ldrh r3, [r7, #26] - 800635c: 4413 add r3, r2 - 800635e: 837b strh r3, [r7, #26] - 8006360: 8bfb ldrh r3, [r7, #30] - 8006362: 3301 adds r3, #1 - 8006364: 83fb strh r3, [r7, #30] - 8006366: 8bfb ldrh r3, [r7, #30] - 8006368: 2b03 cmp r3, #3 - 800636a: d9ef bls.n 800634c + 800641a: 2301 movs r3, #1 + 800641c: 83fb strh r3, [r7, #30] + 800641e: e00c b.n 800643a + 8006420: 8bfb ldrh r3, [r7, #30] + 8006422: 005b lsls r3, r3, #1 + 8006424: f107 0220 add.w r2, r7, #32 + 8006428: 4413 add r3, r2 + 800642a: f833 2c14 ldrh.w r2, [r3, #-20] + 800642e: 8b7b ldrh r3, [r7, #26] + 8006430: 4413 add r3, r2 + 8006432: 837b strh r3, [r7, #26] + 8006434: 8bfb ldrh r3, [r7, #30] + 8006436: 3301 adds r3, #1 + 8006438: 83fb strh r3, [r7, #30] + 800643a: 8bfb ldrh r3, [r7, #30] + 800643c: 2b03 cmp r3, #3 + 800643e: d9ef bls.n 8006420 temp=sum/(READ_TIMES-2*LOST_VAL); - 800636c: 8b7b ldrh r3, [r7, #26] - 800636e: 4a05 ldr r2, [pc, #20] ; (8006384 ) - 8006370: fba2 2303 umull r2, r3, r2, r3 - 8006374: 085b lsrs r3, r3, #1 - 8006376: 833b strh r3, [r7, #24] + 8006440: 8b7b ldrh r3, [r7, #26] + 8006442: 4a05 ldr r2, [pc, #20] ; (8006458 ) + 8006444: fba2 2303 umull r2, r3, r2, r3 + 8006448: 085b lsrs r3, r3, #1 + 800644a: 833b strh r3, [r7, #24] return temp; - 8006378: 8b3b ldrh r3, [r7, #24] + 800644c: 8b3b ldrh r3, [r7, #24] } - 800637a: 4618 mov r0, r3 - 800637c: 3724 adds r7, #36 ; 0x24 - 800637e: 46bd mov sp, r7 - 8006380: bd90 pop {r4, r7, pc} - 8006382: bf00 nop - 8006384: aaaaaaab .word 0xaaaaaaab + 800644e: 4618 mov r0, r3 + 8006450: 3724 adds r7, #36 ; 0x24 + 8006452: 46bd mov sp, r7 + 8006454: bd90 pop {r4, r7, pc} + 8006456: bf00 nop + 8006458: aaaaaaab .word 0xaaaaaaab -08006388 : +0800645c : //读取x,y坐标 //x,y:读取到的坐标ADC值 void TP_Read_XY_ADC(int16_t *x,int16_t *y) { - 8006388: b580 push {r7, lr} - 800638a: b084 sub sp, #16 - 800638c: af00 add r7, sp, #0 - 800638e: 6078 str r0, [r7, #4] - 8006390: 6039 str r1, [r7, #0] + 800645c: b580 push {r7, lr} + 800645e: b084 sub sp, #16 + 8006460: af00 add r7, sp, #0 + 8006462: 6078 str r0, [r7, #4] + 8006464: 6039 str r1, [r7, #0] int16_t xtemp,ytemp; xtemp=TP_Read_XOY(CMD_RDX); - 8006392: 2090 movs r0, #144 ; 0x90 - 8006394: f7ff ff76 bl 8006284 - 8006398: 4603 mov r3, r0 - 800639a: 81fb strh r3, [r7, #14] + 8006466: 2090 movs r0, #144 ; 0x90 + 8006468: f7ff ff76 bl 8006358 + 800646c: 4603 mov r3, r0 + 800646e: 81fb strh r3, [r7, #14] ytemp=TP_Read_XOY(CMD_RDY); - 800639c: 20d0 movs r0, #208 ; 0xd0 - 800639e: f7ff ff71 bl 8006284 - 80063a2: 4603 mov r3, r0 - 80063a4: 81bb strh r3, [r7, #12] + 8006470: 20d0 movs r0, #208 ; 0xd0 + 8006472: f7ff ff71 bl 8006358 + 8006476: 4603 mov r3, r0 + 8006478: 81bb strh r3, [r7, #12] *x=xtemp; - 80063a6: 687b ldr r3, [r7, #4] - 80063a8: 89fa ldrh r2, [r7, #14] - 80063aa: 801a strh r2, [r3, #0] + 800647a: 687b ldr r3, [r7, #4] + 800647c: 89fa ldrh r2, [r7, #14] + 800647e: 801a strh r2, [r3, #0] *y=ytemp; - 80063ac: 683b ldr r3, [r7, #0] - 80063ae: 89ba ldrh r2, [r7, #12] - 80063b0: 801a strh r2, [r3, #0] + 8006480: 683b ldr r3, [r7, #0] + 8006482: 89ba ldrh r2, [r7, #12] + 8006484: 801a strh r2, [r3, #0] } - 80063b2: bf00 nop - 80063b4: 3710 adds r7, #16 - 80063b6: 46bd mov sp, r7 - 80063b8: bd80 pop {r7, pc} + 8006486: bf00 nop + 8006488: 3710 adds r7, #16 + 800648a: 46bd mov sp, r7 + 800648c: bd80 pop {r7, pc} -080063ba : +0800648e : //该函数能大大提高准确度 //x,y:读取到的坐标值 //返回值:0,失败;1,成功。 #define ERR_RANGE 10 //误差范围 uint8_t TP_Read_XY2(int16_t *x,int16_t *y) { - 80063ba: b580 push {r7, lr} - 80063bc: b084 sub sp, #16 - 80063be: af00 add r7, sp, #0 - 80063c0: 6078 str r0, [r7, #4] - 80063c2: 6039 str r1, [r7, #0] + 800648e: b580 push {r7, lr} + 8006490: b084 sub sp, #16 + 8006492: af00 add r7, sp, #0 + 8006494: 6078 str r0, [r7, #4] + 8006496: 6039 str r1, [r7, #0] int16_t x1,y1; int16_t x2,y2; TP_Read_XY_ADC(&x1,&y1); - 80063c4: f107 020c add.w r2, r7, #12 - 80063c8: f107 030e add.w r3, r7, #14 - 80063cc: 4611 mov r1, r2 - 80063ce: 4618 mov r0, r3 - 80063d0: f7ff ffda bl 8006388 + 8006498: f107 020c add.w r2, r7, #12 + 800649c: f107 030e add.w r3, r7, #14 + 80064a0: 4611 mov r1, r2 + 80064a2: 4618 mov r0, r3 + 80064a4: f7ff ffda bl 800645c TP_Read_XY_ADC(&x2,&y2); - 80063d4: f107 0208 add.w r2, r7, #8 - 80063d8: f107 030a add.w r3, r7, #10 - 80063dc: 4611 mov r1, r2 - 80063de: 4618 mov r0, r3 - 80063e0: f7ff ffd2 bl 8006388 + 80064a8: f107 0208 add.w r2, r7, #8 + 80064ac: f107 030a add.w r3, r7, #10 + 80064b0: 4611 mov r1, r2 + 80064b2: 4618 mov r0, r3 + 80064b4: f7ff ffd2 bl 800645c if(((x2<=x1&&x1 - 80063f0: f9b7 300a ldrsh.w r3, [r7, #10] - 80063f4: 3309 adds r3, #9 - 80063f6: f9b7 200e ldrsh.w r2, [r7, #14] - 80063fa: 4293 cmp r3, r2 - 80063fc: da0c bge.n 8006418 - 80063fe: f9b7 200e ldrsh.w r2, [r7, #14] - 8006402: f9b7 300a ldrsh.w r3, [r7, #10] - 8006406: 429a cmp r2, r3 - 8006408: dc3a bgt.n 8006480 - 800640a: f9b7 300e ldrsh.w r3, [r7, #14] - 800640e: 3309 adds r3, #9 - 8006410: f9b7 200a ldrsh.w r2, [r7, #10] - 8006414: 4293 cmp r3, r2 - 8006416: db33 blt.n 8006480 + 80064b8: f9b7 200a ldrsh.w r2, [r7, #10] + 80064bc: f9b7 300e ldrsh.w r3, [r7, #14] + 80064c0: 429a cmp r2, r3 + 80064c2: dc06 bgt.n 80064d2 + 80064c4: f9b7 300a ldrsh.w r3, [r7, #10] + 80064c8: 3309 adds r3, #9 + 80064ca: f9b7 200e ldrsh.w r2, [r7, #14] + 80064ce: 4293 cmp r3, r2 + 80064d0: da0c bge.n 80064ec + 80064d2: f9b7 200e ldrsh.w r2, [r7, #14] + 80064d6: f9b7 300a ldrsh.w r3, [r7, #10] + 80064da: 429a cmp r2, r3 + 80064dc: dc3a bgt.n 8006554 + 80064de: f9b7 300e ldrsh.w r3, [r7, #14] + 80064e2: 3309 adds r3, #9 + 80064e4: f9b7 200a ldrsh.w r2, [r7, #10] + 80064e8: 4293 cmp r3, r2 + 80064ea: db33 blt.n 8006554 &&((y2<=y1&&y1 - 8006424: f9b7 3008 ldrsh.w r3, [r7, #8] - 8006428: 3309 adds r3, #9 - 800642a: f9b7 200c ldrsh.w r2, [r7, #12] - 800642e: 4293 cmp r3, r2 - 8006430: da0c bge.n 800644c - 8006432: f9b7 200c ldrsh.w r2, [r7, #12] - 8006436: f9b7 3008 ldrsh.w r3, [r7, #8] - 800643a: 429a cmp r2, r3 - 800643c: dc20 bgt.n 8006480 - 800643e: f9b7 300c ldrsh.w r3, [r7, #12] - 8006442: 3309 adds r3, #9 - 8006444: f9b7 2008 ldrsh.w r2, [r7, #8] - 8006448: 4293 cmp r3, r2 - 800644a: db19 blt.n 8006480 + 80064ec: f9b7 2008 ldrsh.w r2, [r7, #8] + 80064f0: f9b7 300c ldrsh.w r3, [r7, #12] + 80064f4: 429a cmp r2, r3 + 80064f6: dc06 bgt.n 8006506 + 80064f8: f9b7 3008 ldrsh.w r3, [r7, #8] + 80064fc: 3309 adds r3, #9 + 80064fe: f9b7 200c ldrsh.w r2, [r7, #12] + 8006502: 4293 cmp r3, r2 + 8006504: da0c bge.n 8006520 + 8006506: f9b7 200c ldrsh.w r2, [r7, #12] + 800650a: f9b7 3008 ldrsh.w r3, [r7, #8] + 800650e: 429a cmp r2, r3 + 8006510: dc20 bgt.n 8006554 + 8006512: f9b7 300c ldrsh.w r3, [r7, #12] + 8006516: 3309 adds r3, #9 + 8006518: f9b7 2008 ldrsh.w r2, [r7, #8] + 800651c: 4293 cmp r3, r2 + 800651e: db19 blt.n 8006554 { *x=(x1+x2)/2; - 800644c: f9b7 300e ldrsh.w r3, [r7, #14] - 8006450: 461a mov r2, r3 - 8006452: f9b7 300a ldrsh.w r3, [r7, #10] - 8006456: 4413 add r3, r2 - 8006458: 0fda lsrs r2, r3, #31 - 800645a: 4413 add r3, r2 - 800645c: 105b asrs r3, r3, #1 - 800645e: b21a sxth r2, r3 - 8006460: 687b ldr r3, [r7, #4] - 8006462: 801a strh r2, [r3, #0] + 8006520: f9b7 300e ldrsh.w r3, [r7, #14] + 8006524: 461a mov r2, r3 + 8006526: f9b7 300a ldrsh.w r3, [r7, #10] + 800652a: 4413 add r3, r2 + 800652c: 0fda lsrs r2, r3, #31 + 800652e: 4413 add r3, r2 + 8006530: 105b asrs r3, r3, #1 + 8006532: b21a sxth r2, r3 + 8006534: 687b ldr r3, [r7, #4] + 8006536: 801a strh r2, [r3, #0] *y=(y1+y2)/2; - 8006464: f9b7 300c ldrsh.w r3, [r7, #12] - 8006468: 461a mov r2, r3 - 800646a: f9b7 3008 ldrsh.w r3, [r7, #8] - 800646e: 4413 add r3, r2 - 8006470: 0fda lsrs r2, r3, #31 - 8006472: 4413 add r3, r2 - 8006474: 105b asrs r3, r3, #1 - 8006476: b21a sxth r2, r3 - 8006478: 683b ldr r3, [r7, #0] - 800647a: 801a strh r2, [r3, #0] + 8006538: f9b7 300c ldrsh.w r3, [r7, #12] + 800653c: 461a mov r2, r3 + 800653e: f9b7 3008 ldrsh.w r3, [r7, #8] + 8006542: 4413 add r3, r2 + 8006544: 0fda lsrs r2, r3, #31 + 8006546: 4413 add r3, r2 + 8006548: 105b asrs r3, r3, #1 + 800654a: b21a sxth r2, r3 + 800654c: 683b ldr r3, [r7, #0] + 800654e: 801a strh r2, [r3, #0] return 1; - 800647c: 2301 movs r3, #1 - 800647e: e000 b.n 8006482 + 8006550: 2301 movs r3, #1 + 8006552: e000 b.n 8006556 }else return 0; - 8006480: 2300 movs r3, #0 + 8006554: 2300 movs r3, #0 } - 8006482: 4618 mov r0, r3 - 8006484: 3710 adds r7, #16 - 8006486: 46bd mov sp, r7 - 8006488: bd80 pop {r7, pc} + 8006556: 4618 mov r0, r3 + 8006558: 3710 adds r7, #16 + 800655a: 46bd mov sp, r7 + 800655c: bd80 pop {r7, pc} ... -0800648c : +08006560 : touch_device t0;// t0 yyds~ touch_config tconfig; //触摸更新服务,状态机写法,循环获取坐标 void TP_Server() { - 800648c: b598 push {r3, r4, r7, lr} - 800648e: af00 add r7, sp, #0 + 8006560: b598 push {r3, r4, r7, lr} + 8006562: af00 add r7, sp, #0 if(TPEN==0) //如果有触摸 - 8006490: f44f 6180 mov.w r1, #1024 ; 0x400 - 8006494: 4835 ldr r0, [pc, #212] ; (800656c ) - 8006496: f7fb fe17 bl 80020c8 - 800649a: 4603 mov r3, r0 - 800649c: 2b00 cmp r3, #0 - 800649e: d155 bne.n 800654c + 8006564: f44f 6180 mov.w r1, #1024 ; 0x400 + 8006568: 4835 ldr r0, [pc, #212] ; (8006640 ) + 800656a: f7fb fdd5 bl 8002118 + 800656e: 4603 mov r3, r0 + 8006570: 2b00 cmp r3, #0 + 8006572: d155 bne.n 8006620 { if(TP_Read_XY2(&t0.adc_x,&t0.adc_y)) - 80064a0: 4933 ldr r1, [pc, #204] ; (8006570 ) - 80064a2: 4834 ldr r0, [pc, #208] ; (8006574 ) - 80064a4: f7ff ff89 bl 80063ba - 80064a8: 4603 mov r3, r0 - 80064aa: 2b00 cmp r3, #0 - 80064ac: d043 beq.n 8006536 + 8006574: 4933 ldr r1, [pc, #204] ; (8006644 ) + 8006576: 4834 ldr r0, [pc, #208] ; (8006648 ) + 8006578: f7ff ff89 bl 800648e + 800657c: 4603 mov r3, r0 + 800657e: 2b00 cmp r3, #0 + 8006580: d043 beq.n 800660a {//先读取ad值 t0.pix_x=(t0.adc_x/tconfig.x_acc)-tconfig.x_offset;//转换为像素坐标 - 80064ae: 4b31 ldr r3, [pc, #196] ; (8006574 ) - 80064b0: 881b ldrh r3, [r3, #0] - 80064b2: 4618 mov r0, r3 - 80064b4: f7fa fc5e bl 8000d74 <__aeabi_i2f> - 80064b8: 4602 mov r2, r0 - 80064ba: 4b2f ldr r3, [pc, #188] ; (8006578 ) - 80064bc: 685b ldr r3, [r3, #4] - 80064be: 4619 mov r1, r3 - 80064c0: 4610 mov r0, r2 - 80064c2: f7fa fd5f bl 8000f84 <__aeabi_fdiv> - 80064c6: 4603 mov r3, r0 - 80064c8: 461c mov r4, r3 - 80064ca: 4b2b ldr r3, [pc, #172] ; (8006578 ) - 80064cc: 68db ldr r3, [r3, #12] - 80064ce: 4618 mov r0, r3 - 80064d0: f7fa fc50 bl 8000d74 <__aeabi_i2f> - 80064d4: 4603 mov r3, r0 - 80064d6: 4619 mov r1, r3 - 80064d8: 4620 mov r0, r4 - 80064da: f7fa fb95 bl 8000c08 <__aeabi_fsub> - 80064de: 4603 mov r3, r0 - 80064e0: 4618 mov r0, r3 - 80064e2: f7fa fdeb bl 80010bc <__aeabi_f2iz> - 80064e6: 4603 mov r3, r0 - 80064e8: 4a22 ldr r2, [pc, #136] ; (8006574 ) - 80064ea: 6053 str r3, [r2, #4] + 8006582: 4b31 ldr r3, [pc, #196] ; (8006648 ) + 8006584: 881b ldrh r3, [r3, #0] + 8006586: 4618 mov r0, r3 + 8006588: f7fa fbf4 bl 8000d74 <__aeabi_i2f> + 800658c: 4602 mov r2, r0 + 800658e: 4b2f ldr r3, [pc, #188] ; (800664c ) + 8006590: 685b ldr r3, [r3, #4] + 8006592: 4619 mov r1, r3 + 8006594: 4610 mov r0, r2 + 8006596: f7fa fcf5 bl 8000f84 <__aeabi_fdiv> + 800659a: 4603 mov r3, r0 + 800659c: 461c mov r4, r3 + 800659e: 4b2b ldr r3, [pc, #172] ; (800664c ) + 80065a0: 68db ldr r3, [r3, #12] + 80065a2: 4618 mov r0, r3 + 80065a4: f7fa fbe6 bl 8000d74 <__aeabi_i2f> + 80065a8: 4603 mov r3, r0 + 80065aa: 4619 mov r1, r3 + 80065ac: 4620 mov r0, r4 + 80065ae: f7fa fb2b bl 8000c08 <__aeabi_fsub> + 80065b2: 4603 mov r3, r0 + 80065b4: 4618 mov r0, r3 + 80065b6: f7fa fd81 bl 80010bc <__aeabi_f2iz> + 80065ba: 4603 mov r3, r0 + 80065bc: 4a22 ldr r2, [pc, #136] ; (8006648 ) + 80065be: 6053 str r3, [r2, #4] t0.pix_y=(t0.adc_y/tconfig.y_acc)-tconfig.y_offset; - 80064ec: 4b21 ldr r3, [pc, #132] ; (8006574 ) - 80064ee: 885b ldrh r3, [r3, #2] - 80064f0: 4618 mov r0, r3 - 80064f2: f7fa fc3f bl 8000d74 <__aeabi_i2f> - 80064f6: 4602 mov r2, r0 - 80064f8: 4b1f ldr r3, [pc, #124] ; (8006578 ) - 80064fa: 689b ldr r3, [r3, #8] - 80064fc: 4619 mov r1, r3 - 80064fe: 4610 mov r0, r2 - 8006500: f7fa fd40 bl 8000f84 <__aeabi_fdiv> - 8006504: 4603 mov r3, r0 - 8006506: 461c mov r4, r3 - 8006508: 4b1b ldr r3, [pc, #108] ; (8006578 ) - 800650a: 691b ldr r3, [r3, #16] - 800650c: 4618 mov r0, r3 - 800650e: f7fa fc31 bl 8000d74 <__aeabi_i2f> - 8006512: 4603 mov r3, r0 - 8006514: 4619 mov r1, r3 - 8006516: 4620 mov r0, r4 - 8006518: f7fa fb76 bl 8000c08 <__aeabi_fsub> - 800651c: 4603 mov r3, r0 - 800651e: 4618 mov r0, r3 - 8006520: f7fa fdcc bl 80010bc <__aeabi_f2iz> - 8006524: 4603 mov r3, r0 - 8006526: 4a13 ldr r2, [pc, #76] ; (8006574 ) - 8006528: 6093 str r3, [r2, #8] + 80065c0: 4b21 ldr r3, [pc, #132] ; (8006648 ) + 80065c2: 885b ldrh r3, [r3, #2] + 80065c4: 4618 mov r0, r3 + 80065c6: f7fa fbd5 bl 8000d74 <__aeabi_i2f> + 80065ca: 4602 mov r2, r0 + 80065cc: 4b1f ldr r3, [pc, #124] ; (800664c ) + 80065ce: 689b ldr r3, [r3, #8] + 80065d0: 4619 mov r1, r3 + 80065d2: 4610 mov r0, r2 + 80065d4: f7fa fcd6 bl 8000f84 <__aeabi_fdiv> + 80065d8: 4603 mov r3, r0 + 80065da: 461c mov r4, r3 + 80065dc: 4b1b ldr r3, [pc, #108] ; (800664c ) + 80065de: 691b ldr r3, [r3, #16] + 80065e0: 4618 mov r0, r3 + 80065e2: f7fa fbc7 bl 8000d74 <__aeabi_i2f> + 80065e6: 4603 mov r3, r0 + 80065e8: 4619 mov r1, r3 + 80065ea: 4620 mov r0, r4 + 80065ec: f7fa fb0c bl 8000c08 <__aeabi_fsub> + 80065f0: 4603 mov r3, r0 + 80065f2: 4618 mov r0, r3 + 80065f4: f7fa fd62 bl 80010bc <__aeabi_f2iz> + 80065f8: 4603 mov r3, r0 + 80065fa: 4a13 ldr r2, [pc, #76] ; (8006648 ) + 80065fc: 6093 str r3, [r2, #8] t0.d=1; - 800652a: 4a12 ldr r2, [pc, #72] ; (8006574 ) - 800652c: 7b13 ldrb r3, [r2, #12] - 800652e: f043 0304 orr.w r3, r3, #4 - 8006532: 7313 strb r3, [r2, #12] - 8006534: e004 b.n 8006540 + 80065fe: 4a12 ldr r2, [pc, #72] ; (8006648 ) + 8006600: 7b13 ldrb r3, [r2, #12] + 8006602: f043 0304 orr.w r3, r3, #4 + 8006606: 7313 strb r3, [r2, #12] + 8006608: e004 b.n 8006614 }else { t0.d=0; - 8006536: 4a0f ldr r2, [pc, #60] ; (8006574 ) - 8006538: 7b13 ldrb r3, [r2, #12] - 800653a: f36f 0382 bfc r3, #2, #1 - 800653e: 7313 strb r3, [r2, #12] + 800660a: 4a0f ldr r2, [pc, #60] ; (8006648 ) + 800660c: 7b13 ldrb r3, [r2, #12] + 800660e: f36f 0382 bfc r3, #2, #1 + 8006612: 7313 strb r3, [r2, #12] } t0.c=1; - 8006540: 4a0c ldr r2, [pc, #48] ; (8006574 ) - 8006542: 7b13 ldrb r3, [r2, #12] - 8006544: f043 0302 orr.w r3, r3, #2 - 8006548: 7313 strb r3, [r2, #12] + 8006614: 4a0c ldr r2, [pc, #48] ; (8006648 ) + 8006616: 7b13 ldrb r3, [r2, #12] + 8006618: f043 0302 orr.w r3, r3, #2 + 800661c: 7313 strb r3, [r2, #12] { t0.c=0; t0.pix_x=-1; t0.pix_y=-1; } } - 800654a: e00c b.n 8006566 + 800661e: e00c b.n 800663a t0.c=0; - 800654c: 4a09 ldr r2, [pc, #36] ; (8006574 ) - 800654e: 7b13 ldrb r3, [r2, #12] - 8006550: f36f 0341 bfc r3, #1, #1 - 8006554: 7313 strb r3, [r2, #12] + 8006620: 4a09 ldr r2, [pc, #36] ; (8006648 ) + 8006622: 7b13 ldrb r3, [r2, #12] + 8006624: f36f 0341 bfc r3, #1, #1 + 8006628: 7313 strb r3, [r2, #12] t0.pix_x=-1; - 8006556: 4b07 ldr r3, [pc, #28] ; (8006574 ) - 8006558: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 800655c: 605a str r2, [r3, #4] + 800662a: 4b07 ldr r3, [pc, #28] ; (8006648 ) + 800662c: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8006630: 605a str r2, [r3, #4] t0.pix_y=-1; - 800655e: 4b05 ldr r3, [pc, #20] ; (8006574 ) - 8006560: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8006564: 609a str r2, [r3, #8] + 8006632: 4b05 ldr r3, [pc, #20] ; (8006648 ) + 8006634: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8006638: 609a str r2, [r3, #8] } - 8006566: bf00 nop - 8006568: bd98 pop {r3, r4, r7, pc} - 800656a: bf00 nop - 800656c: 40011c00 .word 0x40011c00 - 8006570: 2000038e .word 0x2000038e - 8006574: 2000038c .word 0x2000038c - 8006578: 20000374 .word 0x20000374 + 800663a: bf00 nop + 800663c: bd98 pop {r3, r4, r7, pc} + 800663e: bf00 nop + 8006640: 40011c00 .word 0x40011c00 + 8006644: 2000038e .word 0x2000038e + 8006648: 2000038c .word 0x2000038c + 800664c: 20000374 .word 0x20000374 -0800657c : +08006650 : return 0; } //校准用,画一个目标坐标 //r=坐标半径,显示特效用 void TP_DrwaTrage(int x,int y,int r) { - 800657c: b590 push {r4, r7, lr} - 800657e: b087 sub sp, #28 - 8006580: af02 add r7, sp, #8 - 8006582: 60f8 str r0, [r7, #12] - 8006584: 60b9 str r1, [r7, #8] - 8006586: 607a str r2, [r7, #4] + 8006650: b590 push {r4, r7, lr} + 8006652: b087 sub sp, #28 + 8006654: af02 add r7, sp, #8 + 8006656: 60f8 str r0, [r7, #12] + 8006658: 60b9 str r1, [r7, #8] + 800665a: 607a str r2, [r7, #4] Draw_Circle(x,y,r+1,GRAY); - 8006588: 68fb ldr r3, [r7, #12] - 800658a: b298 uxth r0, r3 - 800658c: 68bb ldr r3, [r7, #8] - 800658e: b299 uxth r1, r3 - 8006590: 687b ldr r3, [r7, #4] - 8006592: b29b uxth r3, r3 - 8006594: 3301 adds r3, #1 - 8006596: b29a uxth r2, r3 - 8006598: f248 4330 movw r3, #33840 ; 0x8430 - 800659c: f7fe fff3 bl 8005586 + 800665c: 68fb ldr r3, [r7, #12] + 800665e: b298 uxth r0, r3 + 8006660: 68bb ldr r3, [r7, #8] + 8006662: b299 uxth r1, r3 + 8006664: 687b ldr r3, [r7, #4] + 8006666: b29b uxth r3, r3 + 8006668: 3301 adds r3, #1 + 800666a: b29a uxth r2, r3 + 800666c: f248 4330 movw r3, #33840 ; 0x8430 + 8006670: f7fe ffb1 bl 80055d6 Draw_Circle(x,y,r,RED); - 80065a0: 68fb ldr r3, [r7, #12] - 80065a2: b298 uxth r0, r3 - 80065a4: 68bb ldr r3, [r7, #8] - 80065a6: b299 uxth r1, r3 - 80065a8: 687b ldr r3, [r7, #4] - 80065aa: b29a uxth r2, r3 - 80065ac: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80065b0: f7fe ffe9 bl 8005586 + 8006674: 68fb ldr r3, [r7, #12] + 8006676: b298 uxth r0, r3 + 8006678: 68bb ldr r3, [r7, #8] + 800667a: b299 uxth r1, r3 + 800667c: 687b ldr r3, [r7, #4] + 800667e: b29a uxth r2, r3 + 8006680: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006684: f7fe ffa7 bl 80055d6 LCD_DrawLine(x,y,x+10,y,RED); - 80065b4: 68fb ldr r3, [r7, #12] - 80065b6: b298 uxth r0, r3 - 80065b8: 68bb ldr r3, [r7, #8] - 80065ba: b299 uxth r1, r3 - 80065bc: 68fb ldr r3, [r7, #12] - 80065be: b29b uxth r3, r3 - 80065c0: 330a adds r3, #10 - 80065c2: b29a uxth r2, r3 - 80065c4: 68bb ldr r3, [r7, #8] - 80065c6: b29b uxth r3, r3 - 80065c8: f44f 4478 mov.w r4, #63488 ; 0xf800 - 80065cc: 9400 str r4, [sp, #0] - 80065ce: f7fe ff55 bl 800547c + 8006688: 68fb ldr r3, [r7, #12] + 800668a: b298 uxth r0, r3 + 800668c: 68bb ldr r3, [r7, #8] + 800668e: b299 uxth r1, r3 + 8006690: 68fb ldr r3, [r7, #12] + 8006692: b29b uxth r3, r3 + 8006694: 330a adds r3, #10 + 8006696: b29a uxth r2, r3 + 8006698: 68bb ldr r3, [r7, #8] + 800669a: b29b uxth r3, r3 + 800669c: f44f 4478 mov.w r4, #63488 ; 0xf800 + 80066a0: 9400 str r4, [sp, #0] + 80066a2: f7fe ff13 bl 80054cc LCD_DrawLine(x,y,x,y+10,RED); - 80065d2: 68fb ldr r3, [r7, #12] - 80065d4: b298 uxth r0, r3 - 80065d6: 68bb ldr r3, [r7, #8] - 80065d8: b299 uxth r1, r3 - 80065da: 68fb ldr r3, [r7, #12] - 80065dc: b29a uxth r2, r3 - 80065de: 68bb ldr r3, [r7, #8] - 80065e0: b29b uxth r3, r3 - 80065e2: 330a adds r3, #10 - 80065e4: b29b uxth r3, r3 - 80065e6: f44f 4478 mov.w r4, #63488 ; 0xf800 - 80065ea: 9400 str r4, [sp, #0] - 80065ec: f7fe ff46 bl 800547c + 80066a6: 68fb ldr r3, [r7, #12] + 80066a8: b298 uxth r0, r3 + 80066aa: 68bb ldr r3, [r7, #8] + 80066ac: b299 uxth r1, r3 + 80066ae: 68fb ldr r3, [r7, #12] + 80066b0: b29a uxth r2, r3 + 80066b2: 68bb ldr r3, [r7, #8] + 80066b4: b29b uxth r3, r3 + 80066b6: 330a adds r3, #10 + 80066b8: b29b uxth r3, r3 + 80066ba: f44f 4478 mov.w r4, #63488 ; 0xf800 + 80066be: 9400 str r4, [sp, #0] + 80066c0: f7fe ff04 bl 80054cc LCD_DrawLine(x,y,x-10,y,RED); - 80065f0: 68fb ldr r3, [r7, #12] - 80065f2: b298 uxth r0, r3 - 80065f4: 68bb ldr r3, [r7, #8] - 80065f6: b299 uxth r1, r3 - 80065f8: 68fb ldr r3, [r7, #12] - 80065fa: b29b uxth r3, r3 - 80065fc: 3b0a subs r3, #10 - 80065fe: b29a uxth r2, r3 - 8006600: 68bb ldr r3, [r7, #8] - 8006602: b29b uxth r3, r3 - 8006604: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8006608: 9400 str r4, [sp, #0] - 800660a: f7fe ff37 bl 800547c + 80066c4: 68fb ldr r3, [r7, #12] + 80066c6: b298 uxth r0, r3 + 80066c8: 68bb ldr r3, [r7, #8] + 80066ca: b299 uxth r1, r3 + 80066cc: 68fb ldr r3, [r7, #12] + 80066ce: b29b uxth r3, r3 + 80066d0: 3b0a subs r3, #10 + 80066d2: b29a uxth r2, r3 + 80066d4: 68bb ldr r3, [r7, #8] + 80066d6: b29b uxth r3, r3 + 80066d8: f44f 4478 mov.w r4, #63488 ; 0xf800 + 80066dc: 9400 str r4, [sp, #0] + 80066de: f7fe fef5 bl 80054cc LCD_DrawLine(x,y,x,y-10,RED); - 800660e: 68fb ldr r3, [r7, #12] - 8006610: b298 uxth r0, r3 - 8006612: 68bb ldr r3, [r7, #8] - 8006614: b299 uxth r1, r3 - 8006616: 68fb ldr r3, [r7, #12] - 8006618: b29a uxth r2, r3 - 800661a: 68bb ldr r3, [r7, #8] - 800661c: b29b uxth r3, r3 - 800661e: 3b0a subs r3, #10 - 8006620: b29b uxth r3, r3 - 8006622: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8006626: 9400 str r4, [sp, #0] - 8006628: f7fe ff28 bl 800547c + 80066e2: 68fb ldr r3, [r7, #12] + 80066e4: b298 uxth r0, r3 + 80066e6: 68bb ldr r3, [r7, #8] + 80066e8: b299 uxth r1, r3 + 80066ea: 68fb ldr r3, [r7, #12] + 80066ec: b29a uxth r2, r3 + 80066ee: 68bb ldr r3, [r7, #8] + 80066f0: b29b uxth r3, r3 + 80066f2: 3b0a subs r3, #10 + 80066f4: b29b uxth r3, r3 + 80066f6: f44f 4478 mov.w r4, #63488 ; 0xf800 + 80066fa: 9400 str r4, [sp, #0] + 80066fc: f7fe fee6 bl 80054cc } - 800662c: bf00 nop - 800662e: 3714 adds r7, #20 - 8006630: 46bd mov sp, r7 - 8006632: bd90 pop {r4, r7, pc} + 8006700: bf00 nop + 8006702: 3714 adds r7, #20 + 8006704: 46bd mov sp, r7 + 8006706: bd90 pop {r4, r7, pc} -08006634 : +08006708 : //触摸屏校准 //mode 校准模式,0 被动校准 ,1 主动校准 void TP_adjustment(char mode) { - 8006634: b5b0 push {r4, r5, r7, lr} - 8006636: b0a6 sub sp, #152 ; 0x98 - 8006638: af02 add r7, sp, #8 - 800663a: 4603 mov r3, r0 - 800663c: 71fb strb r3, [r7, #7] + 8006708: b5b0 push {r4, r5, r7, lr} + 800670a: b0a6 sub sp, #152 ; 0x98 + 800670c: af02 add r7, sp, #8 + 800670e: 4603 mov r3, r0 + 8006710: 71fb strb r3, [r7, #7] //判断是否需要校准,从eeprom获取数据 EEPROM_READ_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 800663e: 2218 movs r2, #24 - 8006640: 4917 ldr r1, [pc, #92] ; (80066a0 ) - 8006642: 2010 movs r0, #16 - 8006644: f7ff f964 bl 8005910 + 8006712: 2218 movs r2, #24 + 8006714: 4917 ldr r1, [pc, #92] ; (8006774 ) + 8006716: 2010 movs r0, #16 + 8006718: f7ff f922 bl 8005960 if(tconfig.begin==0xab&&tconfig.end==0xcd&&mode==0) //判断校准标记 - 8006648: 4b15 ldr r3, [pc, #84] ; (80066a0 ) - 800664a: 781b ldrb r3, [r3, #0] - 800664c: 2bab cmp r3, #171 ; 0xab - 800664e: d107 bne.n 8006660 - 8006650: 4b13 ldr r3, [pc, #76] ; (80066a0 ) - 8006652: 7d1b ldrb r3, [r3, #20] - 8006654: 2bcd cmp r3, #205 ; 0xcd - 8006656: d103 bne.n 8006660 - 8006658: 79fb ldrb r3, [r7, #7] - 800665a: 2b00 cmp r3, #0 - 800665c: f000 82b8 beq.w 8006bd0 + 800671c: 4b15 ldr r3, [pc, #84] ; (8006774 ) + 800671e: 781b ldrb r3, [r3, #0] + 8006720: 2bab cmp r3, #171 ; 0xab + 8006722: d107 bne.n 8006734 + 8006724: 4b13 ldr r3, [pc, #76] ; (8006774 ) + 8006726: 7d1b ldrb r3, [r3, #20] + 8006728: 2bcd cmp r3, #205 ; 0xcd + 800672a: d103 bne.n 8006734 + 800672c: 79fb ldrb r3, [r7, #7] + 800672e: 2b00 cmp r3, #0 + 8006730: f000 82b8 beq.w 8006ca4 { return; //已经校准过了 } //校准方法比较简单,读取4个坐标计算ad值与像素的关系 char str[64]; //用于字符串提示 uint16_t y_adc,x_adc,step=0,r=10; //adc缓存,校准步骤,坐标的半径 - 8006660: 2300 movs r3, #0 - 8006662: f8a7 308e strh.w r3, [r7, #142] ; 0x8e - 8006666: 230a movs r3, #10 - 8006668: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 8006734: 2300 movs r3, #0 + 8006736: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 800673a: 230a movs r3, #10 + 800673c: f8a7 308c strh.w r3, [r7, #140] ; 0x8c 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秒没操作就自动退出 - 800666c: f7fb fa5c bl 8001b28 - 8006670: 4603 mov r3, r0 - 8006672: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 8006676: 3350 adds r3, #80 ; 0x50 - 8006678: 67bb str r3, [r7, #120] ; 0x78 - 800667a: 2300 movs r3, #0 - 800667c: 677b str r3, [r7, #116] ; 0x74 + 8006740: f7fb fa1a bl 8001b78 + 8006744: 4603 mov r3, r0 + 8006746: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 800674a: 3350 adds r3, #80 ; 0x50 + 800674c: 67bb str r3, [r7, #120] ; 0x78 + 800674e: 2300 movs r3, #0 + 8006750: 677b str r3, [r7, #116] ; 0x74 //显示字符串提示 LCD_Clear(GRAY); - 800667e: f248 4030 movw r0, #33840 ; 0x8430 - 8006682: f7fe fea9 bl 80053d8 + 8006752: f248 4030 movw r0, #33840 ; 0x8430 + 8006756: f7fe fe67 bl 8005428 LCD_ShowString(0,50,"Calibrate the touch screen",16,RED,RED); - 8006686: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800668a: 9301 str r3, [sp, #4] - 800668c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006690: 9300 str r3, [sp, #0] - 8006692: 2310 movs r3, #16 - 8006694: 4a03 ldr r2, [pc, #12] ; (80066a4 ) - 8006696: 2132 movs r1, #50 ; 0x32 - 8006698: 2000 movs r0, #0 - 800669a: f7ff f89b bl 80057d4 + 800675a: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800675e: 9301 str r3, [sp, #4] + 8006760: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006764: 9300 str r3, [sp, #0] + 8006766: 2310 movs r3, #16 + 8006768: 4a03 ldr r2, [pc, #12] ; (8006778 ) + 800676a: 2132 movs r1, #50 ; 0x32 + 800676c: 2000 movs r0, #0 + 800676e: f7ff f859 bl 8005824 //TP_DrwaTrage(30,30,10); //开始校准 while(HAL_GetTick() - 80066a0: 20000374 .word 0x20000374 - 80066a4: 0800a3d0 .word 0x0800a3d0 + 8006772: e28f b.n 8006c94 + 8006774: 20000374 .word 0x20000374 + 8006778: 0800a6c8 .word 0x0800a6c8 { if(TPEN==0) //如果屏幕被按下 - 80066a8: f44f 6180 mov.w r1, #1024 ; 0x400 - 80066ac: 48d7 ldr r0, [pc, #860] ; (8006a0c ) - 80066ae: f7fb fd0b bl 80020c8 - 80066b2: 4603 mov r3, r0 - 80066b4: 2b00 cmp r3, #0 - 80066b6: d14c bne.n 8006752 + 800677c: f44f 6180 mov.w r1, #1024 ; 0x400 + 8006780: 48d7 ldr r0, [pc, #860] ; (8006ae0 ) + 8006782: f7fb fcc9 bl 8002118 + 8006786: 4603 mov r3, r0 + 8006788: 2b00 cmp r3, #0 + 800678a: d14c bne.n 8006826 { wait=HAL_GetTick()+50000; //重置50秒 - 80066b8: f7fb fa36 bl 8001b28 - 80066bc: 4603 mov r3, r0 - 80066be: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 80066c2: 3350 adds r3, #80 ; 0x50 - 80066c4: 67bb str r3, [r7, #120] ; 0x78 + 800678c: f7fb f9f4 bl 8001b78 + 8006790: 4603 mov r3, r0 + 8006792: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 8006796: 3350 adds r3, #80 ; 0x50 + 8006798: 67bb str r3, [r7, #120] ; 0x78 TP_Read_XY2(&x_adc,&y_adc); //读取xy ad值 - 80066c6: f107 020a add.w r2, r7, #10 - 80066ca: f107 0308 add.w r3, r7, #8 - 80066ce: 4611 mov r1, r2 - 80066d0: 4618 mov r0, r3 - 80066d2: f7ff fe72 bl 80063ba + 800679a: f107 020a add.w r2, r7, #10 + 800679e: f107 0308 add.w r3, r7, #8 + 80067a2: 4611 mov r1, r2 + 80067a4: 4618 mov r0, r3 + 80067a6: f7ff fe72 bl 800648e //将读到的值显示出来 sprintf(str,"ADC_X:%04d",x_adc); - 80066d6: 893b ldrh r3, [r7, #8] - 80066d8: 461a mov r2, r3 - 80066da: f107 030c add.w r3, r7, #12 - 80066de: 49cc ldr r1, [pc, #816] ; (8006a10 ) - 80066e0: 4618 mov r0, r3 - 80066e2: f001 fce7 bl 80080b4 + 80067aa: 893b ldrh r3, [r7, #8] + 80067ac: 461a mov r2, r3 + 80067ae: f107 030c add.w r3, r7, #12 + 80067b2: 49cc ldr r1, [pc, #816] ; (8006ae4 ) + 80067b4: 4618 mov r0, r3 + 80067b6: f001 fdaf bl 8008318 LCD_ShowString(100, 0, str, 16, RED, GRAY); - 80066e6: f107 020c add.w r2, r7, #12 - 80066ea: f248 4330 movw r3, #33840 ; 0x8430 - 80066ee: 9301 str r3, [sp, #4] - 80066f0: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80066f4: 9300 str r3, [sp, #0] - 80066f6: 2310 movs r3, #16 - 80066f8: 2100 movs r1, #0 - 80066fa: 2064 movs r0, #100 ; 0x64 - 80066fc: f7ff f86a bl 80057d4 + 80067ba: f107 020c add.w r2, r7, #12 + 80067be: f248 4330 movw r3, #33840 ; 0x8430 + 80067c2: 9301 str r3, [sp, #4] + 80067c4: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80067c8: 9300 str r3, [sp, #0] + 80067ca: 2310 movs r3, #16 + 80067cc: 2100 movs r1, #0 + 80067ce: 2064 movs r0, #100 ; 0x64 + 80067d0: f7ff f828 bl 8005824 sprintf(str,"ADC_Y:%04d",y_adc); - 8006700: 897b ldrh r3, [r7, #10] - 8006702: 461a mov r2, r3 - 8006704: f107 030c add.w r3, r7, #12 - 8006708: 49c2 ldr r1, [pc, #776] ; (8006a14 ) - 800670a: 4618 mov r0, r3 - 800670c: f001 fcd2 bl 80080b4 + 80067d4: 897b ldrh r3, [r7, #10] + 80067d6: 461a mov r2, r3 + 80067d8: f107 030c add.w r3, r7, #12 + 80067dc: 49c2 ldr r1, [pc, #776] ; (8006ae8 ) + 80067de: 4618 mov r0, r3 + 80067e0: f001 fd9a bl 8008318 LCD_ShowString(100, 16, str, 16, RED, GRAY); - 8006710: f107 020c add.w r2, r7, #12 - 8006714: f248 4330 movw r3, #33840 ; 0x8430 - 8006718: 9301 str r3, [sp, #4] - 800671a: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800671e: 9300 str r3, [sp, #0] - 8006720: 2310 movs r3, #16 - 8006722: 2110 movs r1, #16 - 8006724: 2064 movs r0, #100 ; 0x64 - 8006726: f7ff f855 bl 80057d4 + 80067e4: f107 020c add.w r2, r7, #12 + 80067e8: f248 4330 movw r3, #33840 ; 0x8430 + 80067ec: 9301 str r3, [sp, #4] + 80067ee: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80067f2: 9300 str r3, [sp, #0] + 80067f4: 2310 movs r3, #16 + 80067f6: 2110 movs r1, #16 + 80067f8: 2064 movs r0, #100 ; 0x64 + 80067fa: f7ff f813 bl 8005824 //特效,半径开始收缩 if(HAL_GetTick()>ms100) - 800672a: f7fb f9fd bl 8001b28 - 800672e: 4602 mov r2, r0 - 8006730: 6f7b ldr r3, [r7, #116] ; 0x74 - 8006732: 4293 cmp r3, r2 - 8006734: d20d bcs.n 8006752 + 80067fe: f7fb f9bb bl 8001b78 + 8006802: 4602 mov r2, r0 + 8006804: 6f7b ldr r3, [r7, #116] ; 0x74 + 8006806: 4293 cmp r3, r2 + 8006808: d20d bcs.n 8006826 { ms100=HAL_GetTick()+100; - 8006736: f7fb f9f7 bl 8001b28 - 800673a: 4603 mov r3, r0 - 800673c: 3364 adds r3, #100 ; 0x64 - 800673e: 677b str r3, [r7, #116] ; 0x74 + 800680a: f7fb f9b5 bl 8001b78 + 800680e: 4603 mov r3, r0 + 8006810: 3364 adds r3, #100 ; 0x64 + 8006812: 677b str r3, [r7, #116] ; 0x74 if(r>0){r--;} - 8006740: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 8006744: 2b00 cmp r3, #0 - 8006746: d004 beq.n 8006752 - 8006748: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 800674c: 3b01 subs r3, #1 - 800674e: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 8006814: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006818: 2b00 cmp r3, #0 + 800681a: d004 beq.n 8006826 + 800681c: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006820: 3b01 subs r3, #1 + 8006822: f8a7 308c strh.w r3, [r7, #140] ; 0x8c } } //步骤0,将点画在(30,30)此时半径为10 if(step==0) - 8006752: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006756: 2b00 cmp r3, #0 - 8006758: d12b bne.n 80067b2 + 8006826: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800682a: 2b00 cmp r3, #0 + 800682c: d12b bne.n 8006886 { TP_DrwaTrage(30,30,r); - 800675a: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 800675e: 461a mov r2, r3 - 8006760: 211e movs r1, #30 - 8006762: 201e movs r0, #30 - 8006764: f7ff ff0a bl 800657c + 800682e: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006832: 461a mov r2, r3 + 8006834: 211e movs r1, #30 + 8006836: 201e movs r0, #30 + 8006838: f7ff ff0a bl 8006650 if(r==0)//当半径收缩为0的时候 - 8006768: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 800676c: 2b00 cmp r3, #0 - 800676e: d120 bne.n 80067b2 + 800683c: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006840: 2b00 cmp r3, #0 + 8006842: d120 bne.n 8006886 { //进入下一个步骤,缓存这个点的值,显示出来 step+=1; - 8006770: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006774: 3301 adds r3, #1 - 8006776: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 8006844: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 8006848: 3301 adds r3, #1 + 800684a: f8a7 308e strh.w r3, [r7, #142] ; 0x8e y1=y_adc; - 800677a: 897b ldrh r3, [r7, #10] - 800677c: f8a7 308a strh.w r3, [r7, #138] ; 0x8a + 800684e: 897b ldrh r3, [r7, #10] + 8006850: f8a7 308a strh.w r3, [r7, #138] ; 0x8a x1=x_adc; - 8006780: 893b ldrh r3, [r7, #8] - 8006782: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 + 8006854: 893b ldrh r3, [r7, #8] + 8006856: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 sprintf(str,"point_1 x:%d y:%d",x1,y1); - 8006786: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 - 800678a: f8b7 308a ldrh.w r3, [r7, #138] ; 0x8a - 800678e: f107 000c add.w r0, r7, #12 - 8006792: 49a1 ldr r1, [pc, #644] ; (8006a18 ) - 8006794: f001 fc8e bl 80080b4 + 800685a: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 + 800685e: f8b7 308a ldrh.w r3, [r7, #138] ; 0x8a + 8006862: f107 000c add.w r0, r7, #12 + 8006866: 49a1 ldr r1, [pc, #644] ; (8006aec ) + 8006868: f001 fd56 bl 8008318 LCD_ShowString(0,66,str,16,RED,RED); - 8006798: f107 020c add.w r2, r7, #12 - 800679c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80067a0: 9301 str r3, [sp, #4] - 80067a2: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80067a6: 9300 str r3, [sp, #0] - 80067a8: 2310 movs r3, #16 - 80067aa: 2142 movs r1, #66 ; 0x42 - 80067ac: 2000 movs r0, #0 - 80067ae: f7ff f811 bl 80057d4 + 800686c: f107 020c add.w r2, r7, #12 + 8006870: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006874: 9301 str r3, [sp, #4] + 8006876: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800687a: 9300 str r3, [sp, #0] + 800687c: 2310 movs r3, #16 + 800687e: 2142 movs r1, #66 ; 0x42 + 8006880: 2000 movs r0, #0 + 8006882: f7fe ffcf bl 8005824 } } //步骤1,等待屏幕被松开,进入下一个步骤,重置半径 if(step==1) - 80067b2: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80067b6: 2b01 cmp r3, #1 - 80067b8: d10f bne.n 80067da + 8006886: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800688a: 2b01 cmp r3, #1 + 800688c: d10f bne.n 80068ae { if(TPEN==1) - 80067ba: f44f 6180 mov.w r1, #1024 ; 0x400 - 80067be: 4893 ldr r0, [pc, #588] ; (8006a0c ) - 80067c0: f7fb fc82 bl 80020c8 - 80067c4: 4603 mov r3, r0 - 80067c6: 2b01 cmp r3, #1 - 80067c8: d107 bne.n 80067da + 800688e: f44f 6180 mov.w r1, #1024 ; 0x400 + 8006892: 4893 ldr r0, [pc, #588] ; (8006ae0 ) + 8006894: f7fb fc40 bl 8002118 + 8006898: 4603 mov r3, r0 + 800689a: 2b01 cmp r3, #1 + 800689c: d107 bne.n 80068ae { step+=1; - 80067ca: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80067ce: 3301 adds r3, #1 - 80067d0: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 800689e: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80068a2: 3301 adds r3, #1 + 80068a4: f8a7 308e strh.w r3, [r7, #142] ; 0x8e r=10; - 80067d4: 230a movs r3, #10 - 80067d6: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 80068a8: 230a movs r3, #10 + 80068aa: f8a7 308c strh.w r3, [r7, #140] ; 0x8c } } //下面几个步骤和上面一样 if(step==2) - 80067da: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80067de: 2b02 cmp r3, #2 - 80067e0: d12c bne.n 800683c + 80068ae: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80068b2: 2b02 cmp r3, #2 + 80068b4: d12c bne.n 8006910 { TP_DrwaTrage(290,30,r); - 80067e2: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 80067e6: 461a mov r2, r3 - 80067e8: 211e movs r1, #30 - 80067ea: f44f 7091 mov.w r0, #290 ; 0x122 - 80067ee: f7ff fec5 bl 800657c + 80068b6: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 80068ba: 461a mov r2, r3 + 80068bc: 211e movs r1, #30 + 80068be: f44f 7091 mov.w r0, #290 ; 0x122 + 80068c2: f7ff fec5 bl 8006650 if(r==0) - 80067f2: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 80067f6: 2b00 cmp r3, #0 - 80067f8: d120 bne.n 800683c + 80068c6: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 80068ca: 2b00 cmp r3, #0 + 80068cc: d120 bne.n 8006910 { step+=1; - 80067fa: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80067fe: 3301 adds r3, #1 - 8006800: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 80068ce: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80068d2: 3301 adds r3, #1 + 80068d4: f8a7 308e strh.w r3, [r7, #142] ; 0x8e y2=y_adc; - 8006804: 897b ldrh r3, [r7, #10] - 8006806: f8a7 3088 strh.w r3, [r7, #136] ; 0x88 + 80068d8: 897b ldrh r3, [r7, #10] + 80068da: f8a7 3088 strh.w r3, [r7, #136] ; 0x88 x2=x_adc; - 800680a: 893b ldrh r3, [r7, #8] - 800680c: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 + 80068de: 893b ldrh r3, [r7, #8] + 80068e0: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 sprintf(str,"point_2 x:%d y:%d",x2,y2); - 8006810: f8b7 2080 ldrh.w r2, [r7, #128] ; 0x80 - 8006814: f8b7 3088 ldrh.w r3, [r7, #136] ; 0x88 - 8006818: f107 000c add.w r0, r7, #12 - 800681c: 497f ldr r1, [pc, #508] ; (8006a1c ) - 800681e: f001 fc49 bl 80080b4 + 80068e4: f8b7 2080 ldrh.w r2, [r7, #128] ; 0x80 + 80068e8: f8b7 3088 ldrh.w r3, [r7, #136] ; 0x88 + 80068ec: f107 000c add.w r0, r7, #12 + 80068f0: 497f ldr r1, [pc, #508] ; (8006af0 ) + 80068f2: f001 fd11 bl 8008318 LCD_ShowString(0,66+16,str,16,RED,RED); - 8006822: f107 020c add.w r2, r7, #12 - 8006826: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800682a: 9301 str r3, [sp, #4] - 800682c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006830: 9300 str r3, [sp, #0] - 8006832: 2310 movs r3, #16 - 8006834: 2152 movs r1, #82 ; 0x52 - 8006836: 2000 movs r0, #0 - 8006838: f7fe ffcc bl 80057d4 + 80068f6: f107 020c add.w r2, r7, #12 + 80068fa: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80068fe: 9301 str r3, [sp, #4] + 8006900: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006904: 9300 str r3, [sp, #0] + 8006906: 2310 movs r3, #16 + 8006908: 2152 movs r1, #82 ; 0x52 + 800690a: 2000 movs r0, #0 + 800690c: f7fe ff8a bl 8005824 } } if(step==3) - 800683c: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006840: 2b03 cmp r3, #3 - 8006842: d10f bne.n 8006864 + 8006910: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 8006914: 2b03 cmp r3, #3 + 8006916: d10f bne.n 8006938 { if(TPEN==1) - 8006844: f44f 6180 mov.w r1, #1024 ; 0x400 - 8006848: 4870 ldr r0, [pc, #448] ; (8006a0c ) - 800684a: f7fb fc3d bl 80020c8 - 800684e: 4603 mov r3, r0 - 8006850: 2b01 cmp r3, #1 - 8006852: d107 bne.n 8006864 + 8006918: f44f 6180 mov.w r1, #1024 ; 0x400 + 800691c: 4870 ldr r0, [pc, #448] ; (8006ae0 ) + 800691e: f7fb fbfb bl 8002118 + 8006922: 4603 mov r3, r0 + 8006924: 2b01 cmp r3, #1 + 8006926: d107 bne.n 8006938 { step+=1; - 8006854: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006858: 3301 adds r3, #1 - 800685a: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 8006928: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800692c: 3301 adds r3, #1 + 800692e: f8a7 308e strh.w r3, [r7, #142] ; 0x8e r=10; - 800685e: 230a movs r3, #10 - 8006860: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 8006932: 230a movs r3, #10 + 8006934: f8a7 308c strh.w r3, [r7, #140] ; 0x8c } } if(step==4) - 8006864: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006868: 2b04 cmp r3, #4 - 800686a: d12b bne.n 80068c4 + 8006938: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800693c: 2b04 cmp r3, #4 + 800693e: d12b bne.n 8006998 { TP_DrwaTrage(30,210,r); - 800686c: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 8006870: 461a mov r2, r3 - 8006872: 21d2 movs r1, #210 ; 0xd2 - 8006874: 201e movs r0, #30 - 8006876: f7ff fe81 bl 800657c + 8006940: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006944: 461a mov r2, r3 + 8006946: 21d2 movs r1, #210 ; 0xd2 + 8006948: 201e movs r0, #30 + 800694a: f7ff fe81 bl 8006650 if(r==0) - 800687a: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 800687e: 2b00 cmp r3, #0 - 8006880: d120 bne.n 80068c4 + 800694e: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 8006952: 2b00 cmp r3, #0 + 8006954: d120 bne.n 8006998 { step+=1; - 8006882: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006886: 3301 adds r3, #1 - 8006888: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 8006956: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800695a: 3301 adds r3, #1 + 800695c: f8a7 308e strh.w r3, [r7, #142] ; 0x8e y3=y_adc; - 800688c: 897b ldrh r3, [r7, #10] - 800688e: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8006960: 897b ldrh r3, [r7, #10] + 8006962: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 x3=x_adc; - 8006892: 893b ldrh r3, [r7, #8] - 8006894: f8a7 307e strh.w r3, [r7, #126] ; 0x7e + 8006966: 893b ldrh r3, [r7, #8] + 8006968: f8a7 307e strh.w r3, [r7, #126] ; 0x7e sprintf(str,"point_3 x:%d y:%d",x3,y3); - 8006898: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e - 800689c: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 80068a0: f107 000c add.w r0, r7, #12 - 80068a4: 495e ldr r1, [pc, #376] ; (8006a20 ) - 80068a6: f001 fc05 bl 80080b4 + 800696c: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e + 8006970: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8006974: f107 000c add.w r0, r7, #12 + 8006978: 495e ldr r1, [pc, #376] ; (8006af4 ) + 800697a: f001 fccd bl 8008318 LCD_ShowString(0,66+16+16,str,16,RED,RED); - 80068aa: f107 020c add.w r2, r7, #12 - 80068ae: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80068b2: 9301 str r3, [sp, #4] - 80068b4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80068b8: 9300 str r3, [sp, #0] - 80068ba: 2310 movs r3, #16 - 80068bc: 2162 movs r1, #98 ; 0x62 - 80068be: 2000 movs r0, #0 - 80068c0: f7fe ff88 bl 80057d4 + 800697e: f107 020c add.w r2, r7, #12 + 8006982: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006986: 9301 str r3, [sp, #4] + 8006988: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800698c: 9300 str r3, [sp, #0] + 800698e: 2310 movs r3, #16 + 8006990: 2162 movs r1, #98 ; 0x62 + 8006992: 2000 movs r0, #0 + 8006994: f7fe ff46 bl 8005824 } } if(step==5) - 80068c4: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80068c8: 2b05 cmp r3, #5 - 80068ca: d10f bne.n 80068ec + 8006998: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 800699c: 2b05 cmp r3, #5 + 800699e: d10f bne.n 80069c0 { if(TPEN==1) - 80068cc: f44f 6180 mov.w r1, #1024 ; 0x400 - 80068d0: 484e ldr r0, [pc, #312] ; (8006a0c ) - 80068d2: f7fb fbf9 bl 80020c8 - 80068d6: 4603 mov r3, r0 - 80068d8: 2b01 cmp r3, #1 - 80068da: d107 bne.n 80068ec + 80069a0: f44f 6180 mov.w r1, #1024 ; 0x400 + 80069a4: 484e ldr r0, [pc, #312] ; (8006ae0 ) + 80069a6: f7fb fbb7 bl 8002118 + 80069aa: 4603 mov r3, r0 + 80069ac: 2b01 cmp r3, #1 + 80069ae: d107 bne.n 80069c0 { step+=1; - 80068dc: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80068e0: 3301 adds r3, #1 - 80068e2: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 80069b0: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80069b4: 3301 adds r3, #1 + 80069b6: f8a7 308e strh.w r3, [r7, #142] ; 0x8e r=10; - 80068e6: 230a movs r3, #10 - 80068e8: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 80069ba: 230a movs r3, #10 + 80069bc: f8a7 308c strh.w r3, [r7, #140] ; 0x8c } } if(step==6) - 80068ec: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 80068f0: 2b06 cmp r3, #6 - 80068f2: d12c bne.n 800694e + 80069c0: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80069c4: 2b06 cmp r3, #6 + 80069c6: d12c bne.n 8006a22 { TP_DrwaTrage(290,210,r); - 80068f4: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 80068f8: 461a mov r2, r3 - 80068fa: 21d2 movs r1, #210 ; 0xd2 - 80068fc: f44f 7091 mov.w r0, #290 ; 0x122 - 8006900: f7ff fe3c bl 800657c + 80069c8: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 80069cc: 461a mov r2, r3 + 80069ce: 21d2 movs r1, #210 ; 0xd2 + 80069d0: f44f 7091 mov.w r0, #290 ; 0x122 + 80069d4: f7ff fe3c bl 8006650 if(r==0) - 8006904: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c - 8006908: 2b00 cmp r3, #0 - 800690a: d120 bne.n 800694e + 80069d8: f8b7 308c ldrh.w r3, [r7, #140] ; 0x8c + 80069dc: 2b00 cmp r3, #0 + 80069de: d120 bne.n 8006a22 { step+=1; - 800690c: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006910: 3301 adds r3, #1 - 8006912: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 80069e0: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 80069e4: 3301 adds r3, #1 + 80069e6: f8a7 308e strh.w r3, [r7, #142] ; 0x8e y4=y_adc; - 8006916: 897b ldrh r3, [r7, #10] - 8006918: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 80069ea: 897b ldrh r3, [r7, #10] + 80069ec: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 x4=x_adc; - 800691c: 893b ldrh r3, [r7, #8] - 800691e: f8a7 307c strh.w r3, [r7, #124] ; 0x7c + 80069f0: 893b ldrh r3, [r7, #8] + 80069f2: f8a7 307c strh.w r3, [r7, #124] ; 0x7c sprintf(str,"point_4 x:%d y:%d",x4,y4); - 8006922: f8b7 207c ldrh.w r2, [r7, #124] ; 0x7c - 8006926: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 800692a: f107 000c add.w r0, r7, #12 - 800692e: 493d ldr r1, [pc, #244] ; (8006a24 ) - 8006930: f001 fbc0 bl 80080b4 + 80069f6: f8b7 207c ldrh.w r2, [r7, #124] ; 0x7c + 80069fa: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 80069fe: f107 000c add.w r0, r7, #12 + 8006a02: 493d ldr r1, [pc, #244] ; (8006af8 ) + 8006a04: f001 fc88 bl 8008318 LCD_ShowString(0,66+16+16+16,str,16,RED,RED); - 8006934: f107 020c add.w r2, r7, #12 - 8006938: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800693c: 9301 str r3, [sp, #4] - 800693e: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006942: 9300 str r3, [sp, #0] - 8006944: 2310 movs r3, #16 - 8006946: 2172 movs r1, #114 ; 0x72 - 8006948: 2000 movs r0, #0 - 800694a: f7fe ff43 bl 80057d4 + 8006a08: f107 020c add.w r2, r7, #12 + 8006a0c: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006a10: 9301 str r3, [sp, #4] + 8006a12: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006a16: 9300 str r3, [sp, #0] + 8006a18: 2310 movs r3, #16 + 8006a1a: 2172 movs r1, #114 ; 0x72 + 8006a1c: 2000 movs r0, #0 + 8006a1e: f7fe ff01 bl 8005824 } } if(step==7) - 800694e: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 8006952: 2b07 cmp r3, #7 - 8006954: d10f bne.n 8006976 + 8006a22: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 8006a26: 2b07 cmp r3, #7 + 8006a28: d10f bne.n 8006a4a { if(TPEN==1) - 8006956: f44f 6180 mov.w r1, #1024 ; 0x400 - 800695a: 482c ldr r0, [pc, #176] ; (8006a0c ) - 800695c: f7fb fbb4 bl 80020c8 - 8006960: 4603 mov r3, r0 - 8006962: 2b01 cmp r3, #1 - 8006964: d107 bne.n 8006976 + 8006a2a: f44f 6180 mov.w r1, #1024 ; 0x400 + 8006a2e: 482c ldr r0, [pc, #176] ; (8006ae0 ) + 8006a30: f7fb fb72 bl 8002118 + 8006a34: 4603 mov r3, r0 + 8006a36: 2b01 cmp r3, #1 + 8006a38: d107 bne.n 8006a4a { step+=1; - 8006966: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 800696a: 3301 adds r3, #1 - 800696c: f8a7 308e strh.w r3, [r7, #142] ; 0x8e + 8006a3a: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 8006a3e: 3301 adds r3, #1 + 8006a40: f8a7 308e strh.w r3, [r7, #142] ; 0x8e r=10; - 8006970: 230a movs r3, #10 - 8006972: f8a7 308c strh.w r3, [r7, #140] ; 0x8c + 8006a44: 230a movs r3, #10 + 8006a46: f8a7 308c strh.w r3, [r7, #140] ; 0x8c } } //当4个点读取完,开始计算关系 if(step==8) - 8006976: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e - 800697a: 2b08 cmp r3, #8 - 800697c: f040 8120 bne.w 8006bc0 + 8006a4a: f8b7 308e ldrh.w r3, [r7, #142] ; 0x8e + 8006a4e: 2b08 cmp r3, #8 + 8006a50: f040 8120 bne.w 8006c94 { //其实只需要两个点就能校准,通过取平均值获得xy的长边和短边 xd=((x1+x3)/2); - 8006980: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 - 8006984: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e - 8006988: 4413 add r3, r2 - 800698a: 0fda lsrs r2, r3, #31 - 800698c: 4413 add r3, r2 - 800698e: 105b asrs r3, r3, #1 - 8006990: 673b str r3, [r7, #112] ; 0x70 + 8006a54: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 + 8006a58: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e + 8006a5c: 4413 add r3, r2 + 8006a5e: 0fda lsrs r2, r3, #31 + 8006a60: 4413 add r3, r2 + 8006a62: 105b asrs r3, r3, #1 + 8006a64: 673b str r3, [r7, #112] ; 0x70 xl=((x2+x4)/2); - 8006992: f8b7 2080 ldrh.w r2, [r7, #128] ; 0x80 - 8006996: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c - 800699a: 4413 add r3, r2 - 800699c: 0fda lsrs r2, r3, #31 - 800699e: 4413 add r3, r2 - 80069a0: 105b asrs r3, r3, #1 - 80069a2: 66fb str r3, [r7, #108] ; 0x6c + 8006a66: f8b7 2080 ldrh.w r2, [r7, #128] ; 0x80 + 8006a6a: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c + 8006a6e: 4413 add r3, r2 + 8006a70: 0fda lsrs r2, r3, #31 + 8006a72: 4413 add r3, r2 + 8006a74: 105b asrs r3, r3, #1 + 8006a76: 66fb str r3, [r7, #108] ; 0x6c yd=((y1+y2)/2); - 80069a4: f8b7 208a ldrh.w r2, [r7, #138] ; 0x8a - 80069a8: f8b7 3088 ldrh.w r3, [r7, #136] ; 0x88 - 80069ac: 4413 add r3, r2 - 80069ae: 0fda lsrs r2, r3, #31 - 80069b0: 4413 add r3, r2 - 80069b2: 105b asrs r3, r3, #1 - 80069b4: 66bb str r3, [r7, #104] ; 0x68 + 8006a78: f8b7 208a ldrh.w r2, [r7, #138] ; 0x8a + 8006a7c: f8b7 3088 ldrh.w r3, [r7, #136] ; 0x88 + 8006a80: 4413 add r3, r2 + 8006a82: 0fda lsrs r2, r3, #31 + 8006a84: 4413 add r3, r2 + 8006a86: 105b asrs r3, r3, #1 + 8006a88: 66bb str r3, [r7, #104] ; 0x68 yl=((y3+y4)/2); - 80069b6: f8b7 2086 ldrh.w r2, [r7, #134] ; 0x86 - 80069ba: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 80069be: 4413 add r3, r2 - 80069c0: 0fda lsrs r2, r3, #31 - 80069c2: 4413 add r3, r2 - 80069c4: 105b asrs r3, r3, #1 - 80069c6: 667b str r3, [r7, #100] ; 0x64 + 8006a8a: f8b7 2086 ldrh.w r2, [r7, #134] ; 0x86 + 8006a8e: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8006a92: 4413 add r3, r2 + 8006a94: 0fda lsrs r2, r3, #31 + 8006a96: 4413 add r3, r2 + 8006a98: 105b asrs r3, r3, #1 + 8006a9a: 667b str r3, [r7, #100] ; 0x64 //长边减去短边可以再获得一个点 x5=xl-xd; - 80069c8: 6efa ldr r2, [r7, #108] ; 0x6c - 80069ca: 6f3b ldr r3, [r7, #112] ; 0x70 - 80069cc: 1ad3 subs r3, r2, r3 - 80069ce: 663b str r3, [r7, #96] ; 0x60 + 8006a9c: 6efa ldr r2, [r7, #108] ; 0x6c + 8006a9e: 6f3b ldr r3, [r7, #112] ; 0x70 + 8006aa0: 1ad3 subs r3, r2, r3 + 8006aa2: 663b str r3, [r7, #96] ; 0x60 y5=yl-yd; - 80069d0: 6e7a ldr r2, [r7, #100] ; 0x64 - 80069d2: 6ebb ldr r3, [r7, #104] ; 0x68 - 80069d4: 1ad3 subs r3, r2, r3 - 80069d6: 65fb str r3, [r7, #92] ; 0x5c + 8006aa4: 6e7a ldr r2, [r7, #100] ; 0x64 + 8006aa6: 6ebb ldr r3, [r7, #104] ; 0x68 + 8006aa8: 1ad3 subs r3, r2, r3 + 8006aaa: 65fb str r3, [r7, #92] ; 0x5c //这个点如果是负数,肯定有错,可能是xy搞反了 if(x5<0||y5<0) - 80069d8: 6e3b ldr r3, [r7, #96] ; 0x60 - 80069da: 2b00 cmp r3, #0 - 80069dc: db02 blt.n 80069e4 - 80069de: 6dfb ldr r3, [r7, #92] ; 0x5c - 80069e0: 2b00 cmp r3, #0 - 80069e2: da23 bge.n 8006a2c + 8006aac: 6e3b ldr r3, [r7, #96] ; 0x60 + 8006aae: 2b00 cmp r3, #0 + 8006ab0: db02 blt.n 8006ab8 + 8006ab2: 6dfb ldr r3, [r7, #92] ; 0x5c + 8006ab4: 2b00 cmp r3, #0 + 8006ab6: da23 bge.n 8006b00 { //显示error sprintf(str,"ERROR"); - 80069e4: f107 030c add.w r3, r7, #12 - 80069e8: 490f ldr r1, [pc, #60] ; (8006a28 ) - 80069ea: 4618 mov r0, r3 - 80069ec: f001 fb62 bl 80080b4 + 8006ab8: f107 030c add.w r3, r7, #12 + 8006abc: 490f ldr r1, [pc, #60] ; (8006afc ) + 8006abe: 4618 mov r0, r3 + 8006ac0: f001 fc2a bl 8008318 LCD_ShowString(0,66+16+16+16+16,str,16,RED, GRAY); - 80069f0: f107 020c add.w r2, r7, #12 - 80069f4: f248 4330 movw r3, #33840 ; 0x8430 - 80069f8: 9301 str r3, [sp, #4] - 80069fa: f44f 4378 mov.w r3, #63488 ; 0xf800 - 80069fe: 9300 str r3, [sp, #0] - 8006a00: 2310 movs r3, #16 - 8006a02: 2182 movs r1, #130 ; 0x82 - 8006a04: 2000 movs r0, #0 - 8006a06: f7fe fee5 bl 80057d4 - { - 8006a0a: e0cf b.n 8006bac - 8006a0c: 40011c00 .word 0x40011c00 - 8006a10: 0800a3ec .word 0x0800a3ec - 8006a14: 0800a3f8 .word 0x0800a3f8 - 8006a18: 0800a404 .word 0x0800a404 - 8006a1c: 0800a418 .word 0x0800a418 - 8006a20: 0800a42c .word 0x0800a42c - 8006a24: 0800a440 .word 0x0800a440 - 8006a28: 0800a454 .word 0x0800a454 + 8006ac4: f107 020c add.w r2, r7, #12 + 8006ac8: f248 4330 movw r3, #33840 ; 0x8430 + 8006acc: 9301 str r3, [sp, #4] + 8006ace: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006ad2: 9300 str r3, [sp, #0] + 8006ad4: 2310 movs r3, #16 + 8006ad6: 2182 movs r1, #130 ; 0x82 + 8006ad8: 2000 movs r0, #0 + 8006ada: f7fe fea3 bl 8005824 + 8006ade: e0cf b.n 8006c80 + 8006ae0: 40011c00 .word 0x40011c00 + 8006ae4: 0800a6e4 .word 0x0800a6e4 + 8006ae8: 0800a6f0 .word 0x0800a6f0 + 8006aec: 0800a6fc .word 0x0800a6fc + 8006af0: 0800a710 .word 0x0800a710 + 8006af4: 0800a724 .word 0x0800a724 + 8006af8: 0800a738 .word 0x0800a738 + 8006afc: 0800a74c .word 0x0800a74c }else { //计算关系倍率 //ad的长边减去短边再除去实际屏幕像素的长边减短边(260=320-30-30,180=240-30-30) acc_x=x5/260.0; - 8006a2c: 6e38 ldr r0, [r7, #96] ; 0x60 - 8006a2e: f7f9 fd55 bl 80004dc <__aeabi_i2d> - 8006a32: f04f 0200 mov.w r2, #0 - 8006a36: 4b68 ldr r3, [pc, #416] ; (8006bd8 ) - 8006a38: f7f9 fee4 bl 8000804 <__aeabi_ddiv> - 8006a3c: 4602 mov r2, r0 - 8006a3e: 460b mov r3, r1 - 8006a40: 4610 mov r0, r2 - 8006a42: 4619 mov r1, r3 - 8006a44: f7fa f88c bl 8000b60 <__aeabi_d2f> - 8006a48: 4603 mov r3, r0 - 8006a4a: 65bb str r3, [r7, #88] ; 0x58 + 8006b00: 6e38 ldr r0, [r7, #96] ; 0x60 + 8006b02: f7f9 fceb bl 80004dc <__aeabi_i2d> + 8006b06: f04f 0200 mov.w r2, #0 + 8006b0a: 4b68 ldr r3, [pc, #416] ; (8006cac ) + 8006b0c: f7f9 fe7a bl 8000804 <__aeabi_ddiv> + 8006b10: 4602 mov r2, r0 + 8006b12: 460b mov r3, r1 + 8006b14: 4610 mov r0, r2 + 8006b16: 4619 mov r1, r3 + 8006b18: f7fa f822 bl 8000b60 <__aeabi_d2f> + 8006b1c: 4603 mov r3, r0 + 8006b1e: 65bb str r3, [r7, #88] ; 0x58 acc_y=y5/180.0; - 8006a4c: 6df8 ldr r0, [r7, #92] ; 0x5c - 8006a4e: f7f9 fd45 bl 80004dc <__aeabi_i2d> - 8006a52: f04f 0200 mov.w r2, #0 - 8006a56: 4b61 ldr r3, [pc, #388] ; (8006bdc ) - 8006a58: f7f9 fed4 bl 8000804 <__aeabi_ddiv> - 8006a5c: 4602 mov r2, r0 - 8006a5e: 460b mov r3, r1 - 8006a60: 4610 mov r0, r2 - 8006a62: 4619 mov r1, r3 - 8006a64: f7fa f87c bl 8000b60 <__aeabi_d2f> - 8006a68: 4603 mov r3, r0 - 8006a6a: 657b str r3, [r7, #84] ; 0x54 + 8006b20: 6df8 ldr r0, [r7, #92] ; 0x5c + 8006b22: f7f9 fcdb bl 80004dc <__aeabi_i2d> + 8006b26: f04f 0200 mov.w r2, #0 + 8006b2a: 4b61 ldr r3, [pc, #388] ; (8006cb0 ) + 8006b2c: f7f9 fe6a bl 8000804 <__aeabi_ddiv> + 8006b30: 4602 mov r2, r0 + 8006b32: 460b mov r3, r1 + 8006b34: 4610 mov r0, r2 + 8006b36: 4619 mov r1, r3 + 8006b38: f7fa f812 bl 8000b60 <__aeabi_d2f> + 8006b3c: 4603 mov r3, r0 + 8006b3e: 657b str r3, [r7, #84] ; 0x54 //验证倍率,将实际值减去验证值就等于误差值,因为有两个点,所以计算了两个误差后求了平均值 offset_x=(((xd/acc_x)-30)+((xl/acc_x)-290))/2; - 8006a6c: 6f38 ldr r0, [r7, #112] ; 0x70 - 8006a6e: f7fa f981 bl 8000d74 <__aeabi_i2f> - 8006a72: 4603 mov r3, r0 - 8006a74: 6db9 ldr r1, [r7, #88] ; 0x58 - 8006a76: 4618 mov r0, r3 - 8006a78: f7fa fa84 bl 8000f84 <__aeabi_fdiv> - 8006a7c: 4603 mov r3, r0 - 8006a7e: 4958 ldr r1, [pc, #352] ; (8006be0 ) - 8006a80: 4618 mov r0, r3 - 8006a82: f7fa f8c1 bl 8000c08 <__aeabi_fsub> - 8006a86: 4603 mov r3, r0 - 8006a88: 461c mov r4, r3 - 8006a8a: 6ef8 ldr r0, [r7, #108] ; 0x6c - 8006a8c: f7fa f972 bl 8000d74 <__aeabi_i2f> - 8006a90: 4603 mov r3, r0 - 8006a92: 6db9 ldr r1, [r7, #88] ; 0x58 - 8006a94: 4618 mov r0, r3 - 8006a96: f7fa fa75 bl 8000f84 <__aeabi_fdiv> - 8006a9a: 4603 mov r3, r0 - 8006a9c: 4951 ldr r1, [pc, #324] ; (8006be4 ) - 8006a9e: 4618 mov r0, r3 - 8006aa0: f7fa f8b2 bl 8000c08 <__aeabi_fsub> - 8006aa4: 4603 mov r3, r0 - 8006aa6: 4619 mov r1, r3 - 8006aa8: 4620 mov r0, r4 - 8006aaa: f7fa f8af bl 8000c0c <__addsf3> - 8006aae: 4603 mov r3, r0 - 8006ab0: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 8006ab4: 4618 mov r0, r3 - 8006ab6: f7fa fa65 bl 8000f84 <__aeabi_fdiv> - 8006aba: 4603 mov r3, r0 - 8006abc: 4618 mov r0, r3 - 8006abe: f7fa fafd bl 80010bc <__aeabi_f2iz> - 8006ac2: 4603 mov r3, r0 - 8006ac4: 653b str r3, [r7, #80] ; 0x50 + 8006b40: 6f38 ldr r0, [r7, #112] ; 0x70 + 8006b42: f7fa f917 bl 8000d74 <__aeabi_i2f> + 8006b46: 4603 mov r3, r0 + 8006b48: 6db9 ldr r1, [r7, #88] ; 0x58 + 8006b4a: 4618 mov r0, r3 + 8006b4c: f7fa fa1a bl 8000f84 <__aeabi_fdiv> + 8006b50: 4603 mov r3, r0 + 8006b52: 4958 ldr r1, [pc, #352] ; (8006cb4 ) + 8006b54: 4618 mov r0, r3 + 8006b56: f7fa f857 bl 8000c08 <__aeabi_fsub> + 8006b5a: 4603 mov r3, r0 + 8006b5c: 461c mov r4, r3 + 8006b5e: 6ef8 ldr r0, [r7, #108] ; 0x6c + 8006b60: f7fa f908 bl 8000d74 <__aeabi_i2f> + 8006b64: 4603 mov r3, r0 + 8006b66: 6db9 ldr r1, [r7, #88] ; 0x58 + 8006b68: 4618 mov r0, r3 + 8006b6a: f7fa fa0b bl 8000f84 <__aeabi_fdiv> + 8006b6e: 4603 mov r3, r0 + 8006b70: 4951 ldr r1, [pc, #324] ; (8006cb8 ) + 8006b72: 4618 mov r0, r3 + 8006b74: f7fa f848 bl 8000c08 <__aeabi_fsub> + 8006b78: 4603 mov r3, r0 + 8006b7a: 4619 mov r1, r3 + 8006b7c: 4620 mov r0, r4 + 8006b7e: f7fa f845 bl 8000c0c <__addsf3> + 8006b82: 4603 mov r3, r0 + 8006b84: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 8006b88: 4618 mov r0, r3 + 8006b8a: f7fa f9fb bl 8000f84 <__aeabi_fdiv> + 8006b8e: 4603 mov r3, r0 + 8006b90: 4618 mov r0, r3 + 8006b92: f7fa fa93 bl 80010bc <__aeabi_f2iz> + 8006b96: 4603 mov r3, r0 + 8006b98: 653b str r3, [r7, #80] ; 0x50 offset_y=(((yd/acc_y)-30)+((yl/acc_y)-210))/2; - 8006ac6: 6eb8 ldr r0, [r7, #104] ; 0x68 - 8006ac8: f7fa f954 bl 8000d74 <__aeabi_i2f> - 8006acc: 4603 mov r3, r0 - 8006ace: 6d79 ldr r1, [r7, #84] ; 0x54 - 8006ad0: 4618 mov r0, r3 - 8006ad2: f7fa fa57 bl 8000f84 <__aeabi_fdiv> - 8006ad6: 4603 mov r3, r0 - 8006ad8: 4941 ldr r1, [pc, #260] ; (8006be0 ) - 8006ada: 4618 mov r0, r3 - 8006adc: f7fa f894 bl 8000c08 <__aeabi_fsub> - 8006ae0: 4603 mov r3, r0 - 8006ae2: 461c mov r4, r3 - 8006ae4: 6e78 ldr r0, [r7, #100] ; 0x64 - 8006ae6: f7fa f945 bl 8000d74 <__aeabi_i2f> - 8006aea: 4603 mov r3, r0 - 8006aec: 6d79 ldr r1, [r7, #84] ; 0x54 - 8006aee: 4618 mov r0, r3 - 8006af0: f7fa fa48 bl 8000f84 <__aeabi_fdiv> - 8006af4: 4603 mov r3, r0 - 8006af6: 493c ldr r1, [pc, #240] ; (8006be8 ) - 8006af8: 4618 mov r0, r3 - 8006afa: f7fa f885 bl 8000c08 <__aeabi_fsub> - 8006afe: 4603 mov r3, r0 - 8006b00: 4619 mov r1, r3 - 8006b02: 4620 mov r0, r4 - 8006b04: f7fa f882 bl 8000c0c <__addsf3> - 8006b08: 4603 mov r3, r0 - 8006b0a: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 8006b0e: 4618 mov r0, r3 - 8006b10: f7fa fa38 bl 8000f84 <__aeabi_fdiv> - 8006b14: 4603 mov r3, r0 - 8006b16: 4618 mov r0, r3 - 8006b18: f7fa fad0 bl 80010bc <__aeabi_f2iz> - 8006b1c: 4603 mov r3, r0 - 8006b1e: 64fb str r3, [r7, #76] ; 0x4c + 8006b9a: 6eb8 ldr r0, [r7, #104] ; 0x68 + 8006b9c: f7fa f8ea bl 8000d74 <__aeabi_i2f> + 8006ba0: 4603 mov r3, r0 + 8006ba2: 6d79 ldr r1, [r7, #84] ; 0x54 + 8006ba4: 4618 mov r0, r3 + 8006ba6: f7fa f9ed bl 8000f84 <__aeabi_fdiv> + 8006baa: 4603 mov r3, r0 + 8006bac: 4941 ldr r1, [pc, #260] ; (8006cb4 ) + 8006bae: 4618 mov r0, r3 + 8006bb0: f7fa f82a bl 8000c08 <__aeabi_fsub> + 8006bb4: 4603 mov r3, r0 + 8006bb6: 461c mov r4, r3 + 8006bb8: 6e78 ldr r0, [r7, #100] ; 0x64 + 8006bba: f7fa f8db bl 8000d74 <__aeabi_i2f> + 8006bbe: 4603 mov r3, r0 + 8006bc0: 6d79 ldr r1, [r7, #84] ; 0x54 + 8006bc2: 4618 mov r0, r3 + 8006bc4: f7fa f9de bl 8000f84 <__aeabi_fdiv> + 8006bc8: 4603 mov r3, r0 + 8006bca: 493c ldr r1, [pc, #240] ; (8006cbc ) + 8006bcc: 4618 mov r0, r3 + 8006bce: f7fa f81b bl 8000c08 <__aeabi_fsub> + 8006bd2: 4603 mov r3, r0 + 8006bd4: 4619 mov r1, r3 + 8006bd6: 4620 mov r0, r4 + 8006bd8: f7fa f818 bl 8000c0c <__addsf3> + 8006bdc: 4603 mov r3, r0 + 8006bde: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 8006be2: 4618 mov r0, r3 + 8006be4: f7fa f9ce bl 8000f84 <__aeabi_fdiv> + 8006be8: 4603 mov r3, r0 + 8006bea: 4618 mov r0, r3 + 8006bec: f7fa fa66 bl 80010bc <__aeabi_f2iz> + 8006bf0: 4603 mov r3, r0 + 8006bf2: 64fb str r3, [r7, #76] ; 0x4c //保存计算结果 tconfig.x_acc=acc_x; - 8006b20: 4a32 ldr r2, [pc, #200] ; (8006bec ) - 8006b22: 6dbb ldr r3, [r7, #88] ; 0x58 - 8006b24: 6053 str r3, [r2, #4] + 8006bf4: 4a32 ldr r2, [pc, #200] ; (8006cc0 ) + 8006bf6: 6dbb ldr r3, [r7, #88] ; 0x58 + 8006bf8: 6053 str r3, [r2, #4] tconfig.x_offset=offset_x; - 8006b26: 4a31 ldr r2, [pc, #196] ; (8006bec ) - 8006b28: 6d3b ldr r3, [r7, #80] ; 0x50 - 8006b2a: 60d3 str r3, [r2, #12] + 8006bfa: 4a31 ldr r2, [pc, #196] ; (8006cc0 ) + 8006bfc: 6d3b ldr r3, [r7, #80] ; 0x50 + 8006bfe: 60d3 str r3, [r2, #12] tconfig.y_acc=acc_y; - 8006b2c: 4a2f ldr r2, [pc, #188] ; (8006bec ) - 8006b2e: 6d7b ldr r3, [r7, #84] ; 0x54 - 8006b30: 6093 str r3, [r2, #8] + 8006c00: 4a2f ldr r2, [pc, #188] ; (8006cc0 ) + 8006c02: 6d7b ldr r3, [r7, #84] ; 0x54 + 8006c04: 6093 str r3, [r2, #8] tconfig.y_offset=offset_y; - 8006b32: 4a2e ldr r2, [pc, #184] ; (8006bec ) - 8006b34: 6cfb ldr r3, [r7, #76] ; 0x4c - 8006b36: 6113 str r3, [r2, #16] + 8006c06: 4a2e ldr r2, [pc, #184] ; (8006cc0 ) + 8006c08: 6cfb ldr r3, [r7, #76] ; 0x4c + 8006c0a: 6113 str r3, [r2, #16] //eeprom块标记 tconfig.begin=0xab; - 8006b38: 4b2c ldr r3, [pc, #176] ; (8006bec ) - 8006b3a: 22ab movs r2, #171 ; 0xab - 8006b3c: 701a strb r2, [r3, #0] + 8006c0c: 4b2c ldr r3, [pc, #176] ; (8006cc0 ) + 8006c0e: 22ab movs r2, #171 ; 0xab + 8006c10: 701a strb r2, [r3, #0] tconfig.end=0xcd; - 8006b3e: 4b2b ldr r3, [pc, #172] ; (8006bec ) - 8006b40: 22cd movs r2, #205 ; 0xcd - 8006b42: 751a strb r2, [r3, #20] + 8006c12: 4b2b ldr r3, [pc, #172] ; (8006cc0 ) + 8006c14: 22cd movs r2, #205 ; 0xcd + 8006c16: 751a strb r2, [r3, #20] //显示计算结果 sprintf(str,"x_acc=%f y_acc=%f",acc_x,acc_y); - 8006b44: 6db8 ldr r0, [r7, #88] ; 0x58 - 8006b46: f7f9 fcdb bl 8000500 <__aeabi_f2d> - 8006b4a: 4604 mov r4, r0 - 8006b4c: 460d mov r5, r1 - 8006b4e: 6d78 ldr r0, [r7, #84] ; 0x54 - 8006b50: f7f9 fcd6 bl 8000500 <__aeabi_f2d> - 8006b54: 4602 mov r2, r0 - 8006b56: 460b mov r3, r1 - 8006b58: f107 000c add.w r0, r7, #12 - 8006b5c: e9cd 2300 strd r2, r3, [sp] - 8006b60: 4622 mov r2, r4 - 8006b62: 462b mov r3, r5 - 8006b64: 4922 ldr r1, [pc, #136] ; (8006bf0 ) - 8006b66: f001 faa5 bl 80080b4 + 8006c18: 6db8 ldr r0, [r7, #88] ; 0x58 + 8006c1a: f7f9 fc71 bl 8000500 <__aeabi_f2d> + 8006c1e: 4604 mov r4, r0 + 8006c20: 460d mov r5, r1 + 8006c22: 6d78 ldr r0, [r7, #84] ; 0x54 + 8006c24: f7f9 fc6c bl 8000500 <__aeabi_f2d> + 8006c28: 4602 mov r2, r0 + 8006c2a: 460b mov r3, r1 + 8006c2c: f107 000c add.w r0, r7, #12 + 8006c30: e9cd 2300 strd r2, r3, [sp] + 8006c34: 4622 mov r2, r4 + 8006c36: 462b mov r3, r5 + 8006c38: 4922 ldr r1, [pc, #136] ; (8006cc4 ) + 8006c3a: f001 fb6d bl 8008318 LCD_ShowString(0,66+16+16+16+16,str,16,RED,RED); - 8006b6a: f107 020c add.w r2, r7, #12 - 8006b6e: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006b72: 9301 str r3, [sp, #4] - 8006b74: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006b78: 9300 str r3, [sp, #0] - 8006b7a: 2310 movs r3, #16 - 8006b7c: 2182 movs r1, #130 ; 0x82 - 8006b7e: 2000 movs r0, #0 - 8006b80: f7fe fe28 bl 80057d4 + 8006c3e: f107 020c add.w r2, r7, #12 + 8006c42: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006c46: 9301 str r3, [sp, #4] + 8006c48: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006c4c: 9300 str r3, [sp, #0] + 8006c4e: 2310 movs r3, #16 + 8006c50: 2182 movs r1, #130 ; 0x82 + 8006c52: 2000 movs r0, #0 + 8006c54: f7fe fde6 bl 8005824 sprintf(str,"x_offset=%d y_offset=%d",offset_x,offset_y); - 8006b84: f107 000c add.w r0, r7, #12 - 8006b88: 6cfb ldr r3, [r7, #76] ; 0x4c - 8006b8a: 6d3a ldr r2, [r7, #80] ; 0x50 - 8006b8c: 4919 ldr r1, [pc, #100] ; (8006bf4 ) - 8006b8e: f001 fa91 bl 80080b4 + 8006c58: f107 000c add.w r0, r7, #12 + 8006c5c: 6cfb ldr r3, [r7, #76] ; 0x4c + 8006c5e: 6d3a ldr r2, [r7, #80] ; 0x50 + 8006c60: 4919 ldr r1, [pc, #100] ; (8006cc8 ) + 8006c62: f001 fb59 bl 8008318 LCD_ShowString(0,66+16+16+16+16+16,str,16,RED,RED); - 8006b92: f107 020c add.w r2, r7, #12 - 8006b96: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006b9a: 9301 str r3, [sp, #4] - 8006b9c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006ba0: 9300 str r3, [sp, #0] - 8006ba2: 2310 movs r3, #16 - 8006ba4: 2192 movs r1, #146 ; 0x92 - 8006ba6: 2000 movs r0, #0 - 8006ba8: f7fe fe14 bl 80057d4 + 8006c66: f107 020c add.w r2, r7, #12 + 8006c6a: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006c6e: 9301 str r3, [sp, #4] + 8006c70: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006c74: 9300 str r3, [sp, #0] + 8006c76: 2310 movs r3, #16 + 8006c78: 2192 movs r1, #146 ; 0x92 + 8006c7a: 2000 movs r0, #0 + 8006c7c: f7fe fdd2 bl 8005824 } //将结果保存起来 EEPROM_WRITE_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 8006bac: 2218 movs r2, #24 - 8006bae: 490f ldr r1, [pc, #60] ; (8006bec ) - 8006bb0: 2010 movs r0, #16 - 8006bb2: f7fe febf bl 8005934 + 8006c80: 2218 movs r2, #24 + 8006c82: 490f ldr r1, [pc, #60] ; (8006cc0 ) + 8006c84: 2010 movs r0, #16 + 8006c86: f7fe fe7d bl 8005984 HAL_Delay(1000); - 8006bb6: f44f 707a mov.w r0, #1000 ; 0x3e8 - 8006bba: f7fa ffbf bl 8001b3c + 8006c8a: f44f 707a mov.w r0, #1000 ; 0x3e8 + 8006c8e: f7fa ff7d bl 8001b8c return; - 8006bbe: e008 b.n 8006bd2 + 8006c92: e008 b.n 8006ca6 while(HAL_GetTick() - 8006bc4: 4602 mov r2, r0 - 8006bc6: 6fbb ldr r3, [r7, #120] ; 0x78 - 8006bc8: 4293 cmp r3, r2 - 8006bca: f63f ad6d bhi.w 80066a8 - 8006bce: e000 b.n 8006bd2 + 8006c94: f7fa ff70 bl 8001b78 + 8006c98: 4602 mov r2, r0 + 8006c9a: 6fbb ldr r3, [r7, #120] ; 0x78 + 8006c9c: 4293 cmp r3, r2 + 8006c9e: f63f ad6d bhi.w 800677c + 8006ca2: e000 b.n 8006ca6 return; //已经校准过了 - 8006bd0: bf00 nop + 8006ca4: bf00 nop } } } - 8006bd2: 3790 adds r7, #144 ; 0x90 - 8006bd4: 46bd mov sp, r7 - 8006bd6: bdb0 pop {r4, r5, r7, pc} - 8006bd8: 40704000 .word 0x40704000 - 8006bdc: 40668000 .word 0x40668000 - 8006be0: 41f00000 .word 0x41f00000 - 8006be4: 43910000 .word 0x43910000 - 8006be8: 43520000 .word 0x43520000 - 8006bec: 20000374 .word 0x20000374 - 8006bf0: 0800a45c .word 0x0800a45c - 8006bf4: 0800a470 .word 0x0800a470 + 8006ca6: 3790 adds r7, #144 ; 0x90 + 8006ca8: 46bd mov sp, r7 + 8006caa: bdb0 pop {r4, r5, r7, pc} + 8006cac: 40704000 .word 0x40704000 + 8006cb0: 40668000 .word 0x40668000 + 8006cb4: 41f00000 .word 0x41f00000 + 8006cb8: 43910000 .word 0x43910000 + 8006cbc: 43520000 .word 0x43520000 + 8006cc0: 20000374 .word 0x20000374 + 8006cc4: 0800a754 .word 0x0800a754 + 8006cc8: 0800a768 .word 0x0800a768 -08006bf8 : +08006ccc : window *idcard_window; char idcard_str[32]; void APP_IDcard_init(window *a_window) { - 8006bf8: b580 push {r7, lr} - 8006bfa: b082 sub sp, #8 - 8006bfc: af00 add r7, sp, #0 - 8006bfe: 6078 str r0, [r7, #4] + 8006ccc: b580 push {r7, lr} + 8006cce: b082 sub sp, #8 + 8006cd0: af00 add r7, sp, #0 + 8006cd2: 6078 str r0, [r7, #4] idcard_window=a_window; - 8006c00: 4a04 ldr r2, [pc, #16] ; (8006c14 ) - 8006c02: 687b ldr r3, [r7, #4] - 8006c04: 6013 str r3, [r2, #0] + 8006cd4: 4a04 ldr r2, [pc, #16] ; (8006ce8 ) + 8006cd6: 687b ldr r3, [r7, #4] + 8006cd8: 6013 str r3, [r2, #0] RC522_Init(); - 8006c06: f7ff fa99 bl 800613c + 8006cda: f7ff fa99 bl 8006210 } - 8006c0a: bf00 nop - 8006c0c: 3708 adds r7, #8 - 8006c0e: 46bd mov sp, r7 - 8006c10: bd80 pop {r7, pc} - 8006c12: bf00 nop - 8006c14: 200003d0 .word 0x200003d0 + 8006cde: bf00 nop + 8006ce0: 3708 adds r7, #8 + 8006ce2: 46bd mov sp, r7 + 8006ce4: bd80 pop {r7, pc} + 8006ce6: bf00 nop + 8006ce8: 200003d4 .word 0x200003d4 -08006c18 : -uint32_t card_number_D=0; +08006cec : +char fundcard,PA,sele,checkkey,read_flag; -char fundcard,PA,sele,checkkey; +//通过debug返回卡片数据 void APP_IDcard_loop() { - 8006c18: b580 push {r7, lr} - 8006c1a: b082 sub sp, #8 - 8006c1c: af02 add r7, sp, #8 + 8006cec: b580 push {r7, lr} + 8006cee: b084 sub sp, #16 + 8006cf0: af02 add r7, sp, #8 fundcard = PcdRequest(PICC_REQALL,CT); - 8006c1e: 4961 ldr r1, [pc, #388] ; (8006da4 ) - 8006c20: 2052 movs r0, #82 ; 0x52 - 8006c22: f7ff f8ea bl 8005dfa - 8006c26: 4603 mov r3, r0 - 8006c28: 461a mov r2, r3 - 8006c2a: 4b5f ldr r3, [pc, #380] ; (8006da8 ) - 8006c2c: 701a strb r2, [r3, #0] + 8006cf2: 496d ldr r1, [pc, #436] ; (8006ea8 ) + 8006cf4: 2052 movs r0, #82 ; 0x52 + 8006cf6: f7ff f8a8 bl 8005e4a + 8006cfa: 4603 mov r3, r0 + 8006cfc: 461a mov r2, r3 + 8006cfe: 4b6b ldr r3, [pc, #428] ; (8006eac ) + 8006d00: 701a strb r2, [r3, #0] if(fundcard==MI_OK) - 8006c2e: 4b5e ldr r3, [pc, #376] ; (8006da8 ) - 8006c30: 781b ldrb r3, [r3, #0] - 8006c32: 2b00 cmp r3, #0 - 8006c34: f040 80b2 bne.w 8006d9c + 8006d02: 4b6a ldr r3, [pc, #424] ; (8006eac ) + 8006d04: 781b ldrb r3, [r3, #0] + 8006d06: 2b00 cmp r3, #0 + 8006d08: f040 80ca bne.w 8006ea0 { + status=MI_ERR; - 8006c38: 4b5c ldr r3, [pc, #368] ; (8006dac ) - 8006c3a: 2202 movs r2, #2 - 8006c3c: 701a strb r2, [r3, #0] + 8006d0c: 4b68 ldr r3, [pc, #416] ; (8006eb0 ) + 8006d0e: 2202 movs r2, #2 + 8006d10: 701a strb r2, [r3, #0] PA = PcdAnticoll(SN); - 8006c3e: 485c ldr r0, [pc, #368] ; (8006db0 ) - 8006c40: f7ff f912 bl 8005e68 - 8006c44: 4603 mov r3, r0 - 8006c46: 461a mov r2, r3 - 8006c48: 4b5a ldr r3, [pc, #360] ; (8006db4 ) - 8006c4a: 701a strb r2, [r3, #0] + 8006d12: 4868 ldr r0, [pc, #416] ; (8006eb4 ) + 8006d14: f7ff f8d0 bl 8005eb8 + 8006d18: 4603 mov r3, r0 + 8006d1a: 461a mov r2, r3 + 8006d1c: 4b66 ldr r3, [pc, #408] ; (8006eb8 ) + 8006d1e: 701a strb r2, [r3, #0] if(PA==MI_OK) - 8006c4c: 4b59 ldr r3, [pc, #356] ; (8006db4 ) - 8006c4e: 781b ldrb r3, [r3, #0] - 8006c50: 2b00 cmp r3, #0 - 8006c52: f040 80a3 bne.w 8006d9c + 8006d20: 4b65 ldr r3, [pc, #404] ; (8006eb8 ) + 8006d22: 781b ldrb r3, [r3, #0] + 8006d24: 2b00 cmp r3, #0 + 8006d26: f040 80bb bne.w 8006ea0 { + printf("\n***********************\n"); + 8006d2a: 4864 ldr r0, [pc, #400] ; (8006ebc ) + 8006d2c: f001 fadc bl 80082e8 + printf("Card Type:%X%X\n",CT[0],CT[1]); + 8006d30: 4b5d ldr r3, [pc, #372] ; (8006ea8 ) + 8006d32: 781b ldrb r3, [r3, #0] + 8006d34: 4619 mov r1, r3 + 8006d36: 4b5c ldr r3, [pc, #368] ; (8006ea8 ) + 8006d38: 785b ldrb r3, [r3, #1] + 8006d3a: 461a mov r2, r3 + 8006d3c: 4860 ldr r0, [pc, #384] ; (8006ec0 ) + 8006d3e: f001 fa39 bl 80081b4 + printf("CardId:%X%X%X%X\n",SN[0],SN[1],SN[2],SN[3]); + 8006d42: 4b5c ldr r3, [pc, #368] ; (8006eb4 ) + 8006d44: 781b ldrb r3, [r3, #0] + 8006d46: 4619 mov r1, r3 + 8006d48: 4b5a ldr r3, [pc, #360] ; (8006eb4 ) + 8006d4a: 785b ldrb r3, [r3, #1] + 8006d4c: 461a mov r2, r3 + 8006d4e: 4b59 ldr r3, [pc, #356] ; (8006eb4 ) + 8006d50: 789b ldrb r3, [r3, #2] + 8006d52: 4618 mov r0, r3 + 8006d54: 4b57 ldr r3, [pc, #348] ; (8006eb4 ) + 8006d56: 78db ldrb r3, [r3, #3] + 8006d58: 9300 str r3, [sp, #0] + 8006d5a: 4603 mov r3, r0 + 8006d5c: 4859 ldr r0, [pc, #356] ; (8006ec4 ) + 8006d5e: f001 fa29 bl 80081b4 + sprintf(idcard_str,"CardId:%X%X",CT[0],CT[1]); - 8006c56: 4b53 ldr r3, [pc, #332] ; (8006da4 ) - 8006c58: 781b ldrb r3, [r3, #0] - 8006c5a: 461a mov r2, r3 - 8006c5c: 4b51 ldr r3, [pc, #324] ; (8006da4 ) - 8006c5e: 785b ldrb r3, [r3, #1] - 8006c60: 4955 ldr r1, [pc, #340] ; (8006db8 ) - 8006c62: 4856 ldr r0, [pc, #344] ; (8006dbc ) - 8006c64: f001 fa26 bl 80080b4 + 8006d62: 4b51 ldr r3, [pc, #324] ; (8006ea8 ) + 8006d64: 781b ldrb r3, [r3, #0] + 8006d66: 461a mov r2, r3 + 8006d68: 4b4f ldr r3, [pc, #316] ; (8006ea8 ) + 8006d6a: 785b ldrb r3, [r3, #1] + 8006d6c: 4956 ldr r1, [pc, #344] ; (8006ec8 ) + 8006d6e: 4857 ldr r0, [pc, #348] ; (8006ecc ) + 8006d70: f001 fad2 bl 8008318 LCD_ShowString(idcard_window->x, idcard_window->y+16, idcard_str, 16, GREEN, RED); - 8006c68: 4b55 ldr r3, [pc, #340] ; (8006dc0 ) - 8006c6a: 681b ldr r3, [r3, #0] - 8006c6c: 8818 ldrh r0, [r3, #0] - 8006c6e: 4b54 ldr r3, [pc, #336] ; (8006dc0 ) - 8006c70: 681b ldr r3, [r3, #0] - 8006c72: 885b ldrh r3, [r3, #2] - 8006c74: 3310 adds r3, #16 - 8006c76: b299 uxth r1, r3 - 8006c78: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006c7c: 9301 str r3, [sp, #4] - 8006c7e: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006c82: 9300 str r3, [sp, #0] - 8006c84: 2310 movs r3, #16 - 8006c86: 4a4d ldr r2, [pc, #308] ; (8006dbc ) - 8006c88: f7fe fda4 bl 80057d4 + 8006d74: 4b56 ldr r3, [pc, #344] ; (8006ed0 ) + 8006d76: 681b ldr r3, [r3, #0] + 8006d78: 8818 ldrh r0, [r3, #0] + 8006d7a: 4b55 ldr r3, [pc, #340] ; (8006ed0 ) + 8006d7c: 681b ldr r3, [r3, #0] + 8006d7e: 885b ldrh r3, [r3, #2] + 8006d80: 3310 adds r3, #16 + 8006d82: b299 uxth r1, r3 + 8006d84: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006d88: 9301 str r3, [sp, #4] + 8006d8a: f44f 63fc mov.w r3, #2016 ; 0x7e0 + 8006d8e: 9300 str r3, [sp, #0] + 8006d90: 2310 movs r3, #16 + 8006d92: 4a4e ldr r2, [pc, #312] ; (8006ecc ) + 8006d94: f7fe fd46 bl 8005824 sprintf(idcard_str,"CardId:%X%X%X%X",SN[0],SN[1],SN[2],SN[3]); - 8006c8c: 4b48 ldr r3, [pc, #288] ; (8006db0 ) - 8006c8e: 781b ldrb r3, [r3, #0] - 8006c90: 4619 mov r1, r3 - 8006c92: 4b47 ldr r3, [pc, #284] ; (8006db0 ) - 8006c94: 785b ldrb r3, [r3, #1] - 8006c96: 4618 mov r0, r3 - 8006c98: 4b45 ldr r3, [pc, #276] ; (8006db0 ) - 8006c9a: 789b ldrb r3, [r3, #2] - 8006c9c: 461a mov r2, r3 - 8006c9e: 4b44 ldr r3, [pc, #272] ; (8006db0 ) - 8006ca0: 78db ldrb r3, [r3, #3] - 8006ca2: 9301 str r3, [sp, #4] - 8006ca4: 9200 str r2, [sp, #0] - 8006ca6: 4603 mov r3, r0 - 8006ca8: 460a mov r2, r1 - 8006caa: 4946 ldr r1, [pc, #280] ; (8006dc4 ) - 8006cac: 4843 ldr r0, [pc, #268] ; (8006dbc ) - 8006cae: f001 fa01 bl 80080b4 + 8006d98: 4b46 ldr r3, [pc, #280] ; (8006eb4 ) + 8006d9a: 781b ldrb r3, [r3, #0] + 8006d9c: 4619 mov r1, r3 + 8006d9e: 4b45 ldr r3, [pc, #276] ; (8006eb4 ) + 8006da0: 785b ldrb r3, [r3, #1] + 8006da2: 4618 mov r0, r3 + 8006da4: 4b43 ldr r3, [pc, #268] ; (8006eb4 ) + 8006da6: 789b ldrb r3, [r3, #2] + 8006da8: 461a mov r2, r3 + 8006daa: 4b42 ldr r3, [pc, #264] ; (8006eb4 ) + 8006dac: 78db ldrb r3, [r3, #3] + 8006dae: 9301 str r3, [sp, #4] + 8006db0: 9200 str r2, [sp, #0] + 8006db2: 4603 mov r3, r0 + 8006db4: 460a mov r2, r1 + 8006db6: 4947 ldr r1, [pc, #284] ; (8006ed4 ) + 8006db8: 4844 ldr r0, [pc, #272] ; (8006ecc ) + 8006dba: f001 faad bl 8008318 LCD_ShowString(idcard_window->x, idcard_window->y+32, idcard_str, 16, GREEN, RED); - 8006cb2: 4b43 ldr r3, [pc, #268] ; (8006dc0 ) - 8006cb4: 681b ldr r3, [r3, #0] - 8006cb6: 8818 ldrh r0, [r3, #0] - 8006cb8: 4b41 ldr r3, [pc, #260] ; (8006dc0 ) - 8006cba: 681b ldr r3, [r3, #0] - 8006cbc: 885b ldrh r3, [r3, #2] - 8006cbe: 3320 adds r3, #32 - 8006cc0: b299 uxth r1, r3 - 8006cc2: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006cc6: 9301 str r3, [sp, #4] - 8006cc8: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006ccc: 9300 str r3, [sp, #0] - 8006cce: 2310 movs r3, #16 - 8006cd0: 4a3a ldr r2, [pc, #232] ; (8006dbc ) - 8006cd2: f7fe fd7f bl 80057d4 + 8006dbe: 4b44 ldr r3, [pc, #272] ; (8006ed0 ) + 8006dc0: 681b ldr r3, [r3, #0] + 8006dc2: 8818 ldrh r0, [r3, #0] + 8006dc4: 4b42 ldr r3, [pc, #264] ; (8006ed0 ) + 8006dc6: 681b ldr r3, [r3, #0] + 8006dc8: 885b ldrh r3, [r3, #2] + 8006dca: 3320 adds r3, #32 + 8006dcc: b299 uxth r1, r3 + 8006dce: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006dd2: 9301 str r3, [sp, #4] + 8006dd4: f44f 63fc mov.w r3, #2016 ; 0x7e0 + 8006dd8: 9300 str r3, [sp, #0] + 8006dda: 2310 movs r3, #16 + 8006ddc: 4a3b ldr r2, [pc, #236] ; (8006ecc ) + 8006dde: f7fe fd21 bl 8005824 sele=PcdSelect(SN); - 8006cd6: 4836 ldr r0, [pc, #216] ; (8006db0 ) - 8006cd8: f7ff f97a bl 8005fd0 - 8006cdc: 4603 mov r3, r0 - 8006cde: b2da uxtb r2, r3 - 8006ce0: 4b39 ldr r3, [pc, #228] ; (8006dc8 ) - 8006ce2: 701a strb r2, [r3, #0] + 8006de2: 4834 ldr r0, [pc, #208] ; (8006eb4 ) + 8006de4: f7ff f91c bl 8006020 + 8006de8: 4603 mov r3, r0 + 8006dea: b2da uxtb r2, r3 + 8006dec: 4b3a ldr r3, [pc, #232] ; (8006ed8 ) + 8006dee: 701a strb r2, [r3, #0] if(sele==MI_OK) - 8006ce4: 4b38 ldr r3, [pc, #224] ; (8006dc8 ) - 8006ce6: 781b ldrb r3, [r3, #0] - 8006ce8: 2b00 cmp r3, #0 - 8006cea: d157 bne.n 8006d9c + 8006df0: 4b39 ldr r3, [pc, #228] ; (8006ed8 ) + 8006df2: 781b ldrb r3, [r3, #0] + 8006df4: 2b00 cmp r3, #0 + 8006df6: d153 bne.n 8006ea0 { - LCD_ShowString(idcard_window->x, idcard_window->y+48, "SELE OK", 16, GREEN, RED); - 8006cec: 4b34 ldr r3, [pc, #208] ; (8006dc0 ) - 8006cee: 681b ldr r3, [r3, #0] - 8006cf0: 8818 ldrh r0, [r3, #0] - 8006cf2: 4b33 ldr r3, [pc, #204] ; (8006dc0 ) - 8006cf4: 681b ldr r3, [r3, #0] - 8006cf6: 885b ldrh r3, [r3, #2] - 8006cf8: 3330 adds r3, #48 ; 0x30 - 8006cfa: b299 uxth r1, r3 - 8006cfc: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006d00: 9301 str r3, [sp, #4] - 8006d02: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006d06: 9300 str r3, [sp, #0] - 8006d08: 2310 movs r3, #16 - 8006d0a: 4a30 ldr r2, [pc, #192] ; (8006dcc ) - 8006d0c: f7fe fd62 bl 80057d4 - checkkey=MI_ERR; - 8006d10: 4b2f ldr r3, [pc, #188] ; (8006dd0 ) - 8006d12: 2202 movs r2, #2 - 8006d14: 701a strb r2, [r3, #0] - checkkey=PcdAuthState(0x61,0,KEY,SN); - 8006d16: 4b26 ldr r3, [pc, #152] ; (8006db0 ) - 8006d18: 4a2e ldr r2, [pc, #184] ; (8006dd4 ) - 8006d1a: 2100 movs r1, #0 - 8006d1c: 2061 movs r0, #97 ; 0x61 - 8006d1e: f7ff f9a8 bl 8006072 - 8006d22: 4603 mov r3, r0 - 8006d24: 461a mov r2, r3 - 8006d26: 4b2a ldr r3, [pc, #168] ; (8006dd0 ) - 8006d28: 701a strb r2, [r3, #0] - if(checkkey==MI_OK) - 8006d2a: 4b29 ldr r3, [pc, #164] ; (8006dd0 ) - 8006d2c: 781b ldrb r3, [r3, #0] - 8006d2e: 2b00 cmp r3, #0 - 8006d30: d111 bne.n 8006d56 - { - LCD_ShowString(idcard_window->x, idcard_window->y+48+16, "KEY OK", 16, GREEN, RED); - 8006d32: 4b23 ldr r3, [pc, #140] ; (8006dc0 ) - 8006d34: 681b ldr r3, [r3, #0] - 8006d36: 8818 ldrh r0, [r3, #0] - 8006d38: 4b21 ldr r3, [pc, #132] ; (8006dc0 ) - 8006d3a: 681b ldr r3, [r3, #0] - 8006d3c: 885b ldrh r3, [r3, #2] - 8006d3e: 3340 adds r3, #64 ; 0x40 - 8006d40: b299 uxth r1, r3 - 8006d42: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006d46: 9301 str r3, [sp, #4] - 8006d48: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006d4c: 9300 str r3, [sp, #0] - 8006d4e: 2310 movs r3, #16 - 8006d50: 4a21 ldr r2, [pc, #132] ; (8006dd8 ) - 8006d52: f7fe fd3f bl 80057d4 - //PcdRead(0,RFID); - } - checkkey=MI_ERR; - 8006d56: 4b1e ldr r3, [pc, #120] ; (8006dd0 ) - 8006d58: 2202 movs r2, #2 - 8006d5a: 701a strb r2, [r3, #0] - checkkey=PcdAuthState(0x61,32,KEY,SN); - 8006d5c: 4b14 ldr r3, [pc, #80] ; (8006db0 ) - 8006d5e: 4a1d ldr r2, [pc, #116] ; (8006dd4 ) - 8006d60: 2120 movs r1, #32 - 8006d62: 2061 movs r0, #97 ; 0x61 - 8006d64: f7ff f985 bl 8006072 - 8006d68: 4603 mov r3, r0 - 8006d6a: 461a mov r2, r3 - 8006d6c: 4b18 ldr r3, [pc, #96] ; (8006dd0 ) - 8006d6e: 701a strb r2, [r3, #0] - if(checkkey==MI_OK) - 8006d70: 4b17 ldr r3, [pc, #92] ; (8006dd0 ) - 8006d72: 781b ldrb r3, [r3, #0] - 8006d74: 2b00 cmp r3, #0 - 8006d76: d111 bne.n 8006d9c - { - LCD_ShowString(idcard_window->x, idcard_window->y+48+32, "KEY OK", 16, GREEN, RED); - 8006d78: 4b11 ldr r3, [pc, #68] ; (8006dc0 ) - 8006d7a: 681b ldr r3, [r3, #0] - 8006d7c: 8818 ldrh r0, [r3, #0] - 8006d7e: 4b10 ldr r3, [pc, #64] ; (8006dc0 ) - 8006d80: 681b ldr r3, [r3, #0] - 8006d82: 885b ldrh r3, [r3, #2] - 8006d84: 3350 adds r3, #80 ; 0x50 - 8006d86: b299 uxth r1, r3 - 8006d88: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8006d8c: 9301 str r3, [sp, #4] - 8006d8e: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006d92: 9300 str r3, [sp, #0] - 8006d94: 2310 movs r3, #16 - 8006d96: 4a10 ldr r2, [pc, #64] ; (8006dd8 ) - 8006d98: f7fe fd1c bl 80057d4 + LCD_ShowString(idcard_window->x, idcard_window->y+48, "Key ok", 16, GREEN, RED); + 8006df8: 4b35 ldr r3, [pc, #212] ; (8006ed0 ) + 8006dfa: 681b ldr r3, [r3, #0] + 8006dfc: 8818 ldrh r0, [r3, #0] + 8006dfe: 4b34 ldr r3, [pc, #208] ; (8006ed0 ) + 8006e00: 681b ldr r3, [r3, #0] + 8006e02: 885b ldrh r3, [r3, #2] + 8006e04: 3330 adds r3, #48 ; 0x30 + 8006e06: b299 uxth r1, r3 + 8006e08: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8006e0c: 9301 str r3, [sp, #4] + 8006e0e: f44f 63fc mov.w r3, #2016 ; 0x7e0 + 8006e12: 9300 str r3, [sp, #0] + 8006e14: 2310 movs r3, #16 + 8006e16: 4a31 ldr r2, [pc, #196] ; (8006edc ) + 8006e18: f7fe fd04 bl 8005824 + for(int a=0;a<64;a++) + 8006e1c: 2300 movs r3, #0 + 8006e1e: 607b str r3, [r7, #4] + 8006e20: e03b b.n 8006e9a + { + checkkey=PcdAuthState(0x61,a,KEYB,SN); + 8006e22: 687b ldr r3, [r7, #4] + 8006e24: b2d9 uxtb r1, r3 + 8006e26: 4b23 ldr r3, [pc, #140] ; (8006eb4 ) + 8006e28: 4a2d ldr r2, [pc, #180] ; (8006ee0 ) + 8006e2a: 2061 movs r0, #97 ; 0x61 + 8006e2c: f7ff f949 bl 80060c2 + 8006e30: 4603 mov r3, r0 + 8006e32: 461a mov r2, r3 + 8006e34: 4b2b ldr r3, [pc, #172] ; (8006ee4 ) + 8006e36: 701a strb r2, [r3, #0] + if(checkkey==MI_OK) + 8006e38: 4b2a ldr r3, [pc, #168] ; (8006ee4 ) + 8006e3a: 781b ldrb r3, [r3, #0] + 8006e3c: 2b00 cmp r3, #0 + 8006e3e: d123 bne.n 8006e88 + { + read_flag=PcdRead(a,RFID); + 8006e40: 687b ldr r3, [r7, #4] + 8006e42: b2db uxtb r3, r3 + 8006e44: 4928 ldr r1, [pc, #160] ; (8006ee8 ) + 8006e46: 4618 mov r0, r3 + 8006e48: f7ff f9a0 bl 800618c + 8006e4c: 4603 mov r3, r0 + 8006e4e: 461a mov r2, r3 + 8006e50: 4b26 ldr r3, [pc, #152] ; (8006eec ) + 8006e52: 701a strb r2, [r3, #0] + if(read_flag==MI_OK) + 8006e54: 4b25 ldr r3, [pc, #148] ; (8006eec ) + 8006e56: 781b ldrb r3, [r3, #0] + 8006e58: 2b00 cmp r3, #0 + 8006e5a: d111 bne.n 8006e80 + { + for(int d=0;d<16;d++) + 8006e5c: 2300 movs r3, #0 + 8006e5e: 603b str r3, [r7, #0] + 8006e60: e00a b.n 8006e78 + { + printf("%02X",RFID[d]); + 8006e62: 4a21 ldr r2, [pc, #132] ; (8006ee8 ) + 8006e64: 683b ldr r3, [r7, #0] + 8006e66: 4413 add r3, r2 + 8006e68: 781b ldrb r3, [r3, #0] + 8006e6a: 4619 mov r1, r3 + 8006e6c: 4820 ldr r0, [pc, #128] ; (8006ef0 ) + 8006e6e: f001 f9a1 bl 80081b4 + for(int d=0;d<16;d++) + 8006e72: 683b ldr r3, [r7, #0] + 8006e74: 3301 adds r3, #1 + 8006e76: 603b str r3, [r7, #0] + 8006e78: 683b ldr r3, [r7, #0] + 8006e7a: 2b0f cmp r3, #15 + 8006e7c: ddf1 ble.n 8006e62 + 8006e7e: e006 b.n 8006e8e + } + }else + { + printf("READ_ERROR"); + 8006e80: 481c ldr r0, [pc, #112] ; (8006ef4 ) + 8006e82: f001 f997 bl 80081b4 + 8006e86: e002 b.n 8006e8e + } + + }else + { + printf("KEY_ERROR"); + 8006e88: 481b ldr r0, [pc, #108] ; (8006ef8 ) + 8006e8a: f001 f993 bl 80081b4 + } + printf("\n"); + 8006e8e: 200a movs r0, #10 + 8006e90: f001 f9a8 bl 80081e4 + for(int a=0;a<64;a++) + 8006e94: 687b ldr r3, [r7, #4] + 8006e96: 3301 adds r3, #1 + 8006e98: 607b str r3, [r7, #4] + 8006e9a: 687b ldr r3, [r7, #4] + 8006e9c: 2b3f cmp r3, #63 ; 0x3f + 8006e9e: ddc0 ble.n 8006e22 sprintf(idcard_str,"%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x",RFID[0],RFID[1],RFID[2],RFID[3],RFID[4],RFID[5],RFID[6],RFID[7],RFID[8],RFID[9],RFID[10],RFID[11],RFID[12],RFID[13],RFID[14],RFID[15]); LCD_ShowString(idcard_window->x, idcard_window->y+32, idcard_str, 16, GREEN, RED); } */ } - 8006d9c: bf00 nop - 8006d9e: 46bd mov sp, r7 - 8006da0: bd80 pop {r7, pc} - 8006da2: bf00 nop - 8006da4: 200003d8 .word 0x200003d8 - 8006da8: 200003e0 .word 0x200003e0 - 8006dac: 200003e2 .word 0x200003e2 - 8006db0: 200003dc .word 0x200003dc - 8006db4: 200003ac .word 0x200003ac - 8006db8: 0800a488 .word 0x0800a488 - 8006dbc: 200003b0 .word 0x200003b0 - 8006dc0: 200003d0 .word 0x200003d0 - 8006dc4: 0800a494 .word 0x0800a494 - 8006dc8: 200003e1 .word 0x200003e1 - 8006dcc: 0800a4a4 .word 0x0800a4a4 - 8006dd0: 200003d4 .word 0x200003d4 - 8006dd4: 2000000c .word 0x2000000c - 8006dd8: 0800a4ac .word 0x0800a4ac + 8006ea0: bf00 nop + 8006ea2: 3708 adds r7, #8 + 8006ea4: 46bd mov sp, r7 + 8006ea6: bd80 pop {r7, pc} + 8006ea8: 200003dc .word 0x200003dc + 8006eac: 200003e4 .word 0x200003e4 + 8006eb0: 200003e6 .word 0x200003e6 + 8006eb4: 200003e0 .word 0x200003e0 + 8006eb8: 200003ac .word 0x200003ac + 8006ebc: 0800a780 .word 0x0800a780 + 8006ec0: 0800a79c .word 0x0800a79c + 8006ec4: 0800a7ac .word 0x0800a7ac + 8006ec8: 0800a7c0 .word 0x0800a7c0 + 8006ecc: 200003b0 .word 0x200003b0 + 8006ed0: 200003d4 .word 0x200003d4 + 8006ed4: 0800a7cc .word 0x0800a7cc + 8006ed8: 200003e5 .word 0x200003e5 + 8006edc: 0800a7dc .word 0x0800a7dc + 8006ee0: 2000000c .word 0x2000000c + 8006ee4: 200003d8 .word 0x200003d8 + 8006ee8: 2000039c .word 0x2000039c + 8006eec: 200003d0 .word 0x200003d0 + 8006ef0: 0800a7e4 .word 0x0800a7e4 + 8006ef4: 0800a7ec .word 0x0800a7ec + 8006ef8: 0800a7f8 .word 0x0800a7f8 -08006ddc : +08006efc : IIC_SAND_DATE(MAX30102_Device_address,REG_LED2_PA,&a,1);// Choose value for ~ 10mA for LED2 a=0x7f; IIC_SAND_DATE(MAX30102_Device_address,REG_PILOT_PA,&a,1);// Choose value for ~ 25mA for Pilot LED } void max30102_read_fifo(void) { - 8006ddc: b580 push {r7, lr} - 8006dde: b082 sub sp, #8 - 8006de0: af00 add r7, sp, #0 + 8006efc: b580 push {r7, lr} + 8006efe: b082 sub sp, #8 + 8006f00: af00 add r7, sp, #0 uint16_t un_temp; fifo_red=0; - 8006de2: 4b3c ldr r3, [pc, #240] ; (8006ed4 ) - 8006de4: 2200 movs r2, #0 - 8006de6: 801a strh r2, [r3, #0] + 8006f02: 4b3c ldr r3, [pc, #240] ; (8006ff4 ) + 8006f04: 2200 movs r2, #0 + 8006f06: 801a strh r2, [r3, #0] fifo_ir=0; - 8006de8: 4b3b ldr r3, [pc, #236] ; (8006ed8 ) - 8006dea: 2200 movs r2, #0 - 8006dec: 801a strh r2, [r3, #0] + 8006f08: 4b3b ldr r3, [pc, #236] ; (8006ff8 ) + 8006f0a: 2200 movs r2, #0 + 8006f0c: 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); - 8006dee: 463a mov r2, r7 - 8006df0: 2301 movs r3, #1 - 8006df2: 2100 movs r1, #0 - 8006df4: 20ae movs r0, #174 ; 0xae - 8006df6: f7fe fe01 bl 80059fc + 8006f0e: 463a mov r2, r7 + 8006f10: 2301 movs r3, #1 + 8006f12: 2100 movs r1, #0 + 8006f14: 20ae movs r0, #174 ; 0xae + 8006f16: f7fe fd99 bl 8005a4c IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_2,&ach_i2c_data,1); - 8006dfa: 463a mov r2, r7 - 8006dfc: 2301 movs r3, #1 - 8006dfe: 2101 movs r1, #1 - 8006e00: 20ae movs r0, #174 ; 0xae - 8006e02: f7fe fdfb bl 80059fc + 8006f1a: 463a mov r2, r7 + 8006f1c: 2301 movs r3, #1 + 8006f1e: 2101 movs r1, #1 + 8006f20: 20ae movs r0, #174 ; 0xae + 8006f22: f7fe fd93 bl 8005a4c ach_i2c_data[0]=REG_FIFO_DATA; - 8006e06: 2307 movs r3, #7 - 8006e08: 703b strb r3, [r7, #0] + 8006f26: 2307 movs r3, #7 + 8006f28: 703b strb r3, [r7, #0] IIC_READ_DATE(MAX30102_Device_address,REG_FIFO_DATA,&ach_i2c_data,6); - 8006e0a: 463a mov r2, r7 - 8006e0c: 2306 movs r3, #6 - 8006e0e: 2107 movs r1, #7 - 8006e10: 20ae movs r0, #174 ; 0xae - 8006e12: f7fe fdf3 bl 80059fc + 8006f2a: 463a mov r2, r7 + 8006f2c: 2306 movs r3, #6 + 8006f2e: 2107 movs r1, #7 + 8006f30: 20ae movs r0, #174 ; 0xae + 8006f32: f7fe fd8b bl 8005a4c un_temp=ach_i2c_data[0]; - 8006e16: 783b ldrb r3, [r7, #0] - 8006e18: 80fb strh r3, [r7, #6] + 8006f36: 783b ldrb r3, [r7, #0] + 8006f38: 80fb strh r3, [r7, #6] un_temp<<=14; - 8006e1a: 88fb ldrh r3, [r7, #6] - 8006e1c: 039b lsls r3, r3, #14 - 8006e1e: 80fb strh r3, [r7, #6] + 8006f3a: 88fb ldrh r3, [r7, #6] + 8006f3c: 039b lsls r3, r3, #14 + 8006f3e: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 8006e20: 4b2c ldr r3, [pc, #176] ; (8006ed4 ) - 8006e22: 881a ldrh r2, [r3, #0] - 8006e24: 88fb ldrh r3, [r7, #6] - 8006e26: 4413 add r3, r2 - 8006e28: b29a uxth r2, r3 - 8006e2a: 4b2a ldr r3, [pc, #168] ; (8006ed4 ) - 8006e2c: 801a strh r2, [r3, #0] + 8006f40: 4b2c ldr r3, [pc, #176] ; (8006ff4 ) + 8006f42: 881a ldrh r2, [r3, #0] + 8006f44: 88fb ldrh r3, [r7, #6] + 8006f46: 4413 add r3, r2 + 8006f48: b29a uxth r2, r3 + 8006f4a: 4b2a ldr r3, [pc, #168] ; (8006ff4 ) + 8006f4c: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[1]; - 8006e2e: 787b ldrb r3, [r7, #1] - 8006e30: 80fb strh r3, [r7, #6] + 8006f4e: 787b ldrb r3, [r7, #1] + 8006f50: 80fb strh r3, [r7, #6] un_temp<<=6; - 8006e32: 88fb ldrh r3, [r7, #6] - 8006e34: 019b lsls r3, r3, #6 - 8006e36: 80fb strh r3, [r7, #6] + 8006f52: 88fb ldrh r3, [r7, #6] + 8006f54: 019b lsls r3, r3, #6 + 8006f56: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 8006e38: 4b26 ldr r3, [pc, #152] ; (8006ed4 ) - 8006e3a: 881a ldrh r2, [r3, #0] - 8006e3c: 88fb ldrh r3, [r7, #6] - 8006e3e: 4413 add r3, r2 - 8006e40: b29a uxth r2, r3 - 8006e42: 4b24 ldr r3, [pc, #144] ; (8006ed4 ) - 8006e44: 801a strh r2, [r3, #0] + 8006f58: 4b26 ldr r3, [pc, #152] ; (8006ff4 ) + 8006f5a: 881a ldrh r2, [r3, #0] + 8006f5c: 88fb ldrh r3, [r7, #6] + 8006f5e: 4413 add r3, r2 + 8006f60: b29a uxth r2, r3 + 8006f62: 4b24 ldr r3, [pc, #144] ; (8006ff4 ) + 8006f64: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[2]; - 8006e46: 78bb ldrb r3, [r7, #2] - 8006e48: 80fb strh r3, [r7, #6] + 8006f66: 78bb ldrb r3, [r7, #2] + 8006f68: 80fb strh r3, [r7, #6] un_temp>>=2; - 8006e4a: 88fb ldrh r3, [r7, #6] - 8006e4c: 089b lsrs r3, r3, #2 - 8006e4e: 80fb strh r3, [r7, #6] + 8006f6a: 88fb ldrh r3, [r7, #6] + 8006f6c: 089b lsrs r3, r3, #2 + 8006f6e: 80fb strh r3, [r7, #6] fifo_red+=un_temp; - 8006e50: 4b20 ldr r3, [pc, #128] ; (8006ed4 ) - 8006e52: 881a ldrh r2, [r3, #0] - 8006e54: 88fb ldrh r3, [r7, #6] - 8006e56: 4413 add r3, r2 - 8006e58: b29a uxth r2, r3 - 8006e5a: 4b1e ldr r3, [pc, #120] ; (8006ed4 ) - 8006e5c: 801a strh r2, [r3, #0] + 8006f70: 4b20 ldr r3, [pc, #128] ; (8006ff4 ) + 8006f72: 881a ldrh r2, [r3, #0] + 8006f74: 88fb ldrh r3, [r7, #6] + 8006f76: 4413 add r3, r2 + 8006f78: b29a uxth r2, r3 + 8006f7a: 4b1e ldr r3, [pc, #120] ; (8006ff4 ) + 8006f7c: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[3]; - 8006e5e: 78fb ldrb r3, [r7, #3] - 8006e60: 80fb strh r3, [r7, #6] + 8006f7e: 78fb ldrb r3, [r7, #3] + 8006f80: 80fb strh r3, [r7, #6] un_temp<<=14; - 8006e62: 88fb ldrh r3, [r7, #6] - 8006e64: 039b lsls r3, r3, #14 - 8006e66: 80fb strh r3, [r7, #6] + 8006f82: 88fb ldrh r3, [r7, #6] + 8006f84: 039b lsls r3, r3, #14 + 8006f86: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 8006e68: 4b1b ldr r3, [pc, #108] ; (8006ed8 ) - 8006e6a: 881a ldrh r2, [r3, #0] - 8006e6c: 88fb ldrh r3, [r7, #6] - 8006e6e: 4413 add r3, r2 - 8006e70: b29a uxth r2, r3 - 8006e72: 4b19 ldr r3, [pc, #100] ; (8006ed8 ) - 8006e74: 801a strh r2, [r3, #0] + 8006f88: 4b1b ldr r3, [pc, #108] ; (8006ff8 ) + 8006f8a: 881a ldrh r2, [r3, #0] + 8006f8c: 88fb ldrh r3, [r7, #6] + 8006f8e: 4413 add r3, r2 + 8006f90: b29a uxth r2, r3 + 8006f92: 4b19 ldr r3, [pc, #100] ; (8006ff8 ) + 8006f94: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[4]; - 8006e76: 793b ldrb r3, [r7, #4] - 8006e78: 80fb strh r3, [r7, #6] + 8006f96: 793b ldrb r3, [r7, #4] + 8006f98: 80fb strh r3, [r7, #6] un_temp<<=6; - 8006e7a: 88fb ldrh r3, [r7, #6] - 8006e7c: 019b lsls r3, r3, #6 - 8006e7e: 80fb strh r3, [r7, #6] + 8006f9a: 88fb ldrh r3, [r7, #6] + 8006f9c: 019b lsls r3, r3, #6 + 8006f9e: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 8006e80: 4b15 ldr r3, [pc, #84] ; (8006ed8 ) - 8006e82: 881a ldrh r2, [r3, #0] - 8006e84: 88fb ldrh r3, [r7, #6] - 8006e86: 4413 add r3, r2 - 8006e88: b29a uxth r2, r3 - 8006e8a: 4b13 ldr r3, [pc, #76] ; (8006ed8 ) - 8006e8c: 801a strh r2, [r3, #0] + 8006fa0: 4b15 ldr r3, [pc, #84] ; (8006ff8 ) + 8006fa2: 881a ldrh r2, [r3, #0] + 8006fa4: 88fb ldrh r3, [r7, #6] + 8006fa6: 4413 add r3, r2 + 8006fa8: b29a uxth r2, r3 + 8006faa: 4b13 ldr r3, [pc, #76] ; (8006ff8 ) + 8006fac: 801a strh r2, [r3, #0] un_temp=ach_i2c_data[5]; - 8006e8e: 797b ldrb r3, [r7, #5] - 8006e90: 80fb strh r3, [r7, #6] + 8006fae: 797b ldrb r3, [r7, #5] + 8006fb0: 80fb strh r3, [r7, #6] un_temp>>=2; - 8006e92: 88fb ldrh r3, [r7, #6] - 8006e94: 089b lsrs r3, r3, #2 - 8006e96: 80fb strh r3, [r7, #6] + 8006fb2: 88fb ldrh r3, [r7, #6] + 8006fb4: 089b lsrs r3, r3, #2 + 8006fb6: 80fb strh r3, [r7, #6] fifo_ir+=un_temp; - 8006e98: 4b0f ldr r3, [pc, #60] ; (8006ed8 ) - 8006e9a: 881a ldrh r2, [r3, #0] - 8006e9c: 88fb ldrh r3, [r7, #6] - 8006e9e: 4413 add r3, r2 - 8006ea0: b29a uxth r2, r3 - 8006ea2: 4b0d ldr r3, [pc, #52] ; (8006ed8 ) - 8006ea4: 801a strh r2, [r3, #0] + 8006fb8: 4b0f ldr r3, [pc, #60] ; (8006ff8 ) + 8006fba: 881a ldrh r2, [r3, #0] + 8006fbc: 88fb ldrh r3, [r7, #6] + 8006fbe: 4413 add r3, r2 + 8006fc0: b29a uxth r2, r3 + 8006fc2: 4b0d ldr r3, [pc, #52] ; (8006ff8 ) + 8006fc4: 801a strh r2, [r3, #0] if(fifo_ir<=10000) - 8006ea6: 4b0c ldr r3, [pc, #48] ; (8006ed8 ) - 8006ea8: 881b ldrh r3, [r3, #0] - 8006eaa: f242 7210 movw r2, #10000 ; 0x2710 - 8006eae: 4293 cmp r3, r2 - 8006eb0: d802 bhi.n 8006eb8 + 8006fc6: 4b0c ldr r3, [pc, #48] ; (8006ff8 ) + 8006fc8: 881b ldrh r3, [r3, #0] + 8006fca: f242 7210 movw r2, #10000 ; 0x2710 + 8006fce: 4293 cmp r3, r2 + 8006fd0: d802 bhi.n 8006fd8 { fifo_ir=0; - 8006eb2: 4b09 ldr r3, [pc, #36] ; (8006ed8 ) - 8006eb4: 2200 movs r2, #0 - 8006eb6: 801a strh r2, [r3, #0] + 8006fd2: 4b09 ldr r3, [pc, #36] ; (8006ff8 ) + 8006fd4: 2200 movs r2, #0 + 8006fd6: 801a strh r2, [r3, #0] } if(fifo_red<=10000) - 8006eb8: 4b06 ldr r3, [pc, #24] ; (8006ed4 ) - 8006eba: 881b ldrh r3, [r3, #0] - 8006ebc: f242 7210 movw r2, #10000 ; 0x2710 - 8006ec0: 4293 cmp r3, r2 - 8006ec2: d802 bhi.n 8006eca + 8006fd8: 4b06 ldr r3, [pc, #24] ; (8006ff4 ) + 8006fda: 881b ldrh r3, [r3, #0] + 8006fdc: f242 7210 movw r2, #10000 ; 0x2710 + 8006fe0: 4293 cmp r3, r2 + 8006fe2: d802 bhi.n 8006fea { fifo_red=0; - 8006ec4: 4b03 ldr r3, [pc, #12] ; (8006ed4 ) - 8006ec6: 2200 movs r2, #0 - 8006ec8: 801a strh r2, [r3, #0] + 8006fe4: 4b03 ldr r3, [pc, #12] ; (8006ff4 ) + 8006fe6: 2200 movs r2, #0 + 8006fe8: 801a strh r2, [r3, #0] } } - 8006eca: bf00 nop - 8006ecc: 3708 adds r7, #8 - 8006ece: 46bd mov sp, r7 - 8006ed0: bd80 pop {r7, pc} - 8006ed2: bf00 nop - 8006ed4: 20002534 .word 0x20002534 - 8006ed8: 20000424 .word 0x20000424 + 8006fea: bf00 nop + 8006fec: 3708 adds r7, #8 + 8006fee: 46bd mov sp, r7 + 8006ff0: bd80 pop {r7, pc} + 8006ff2: bf00 nop + 8006ff4: 20002538 .word 0x20002538 + 8006ff8: 20000428 .word 0x20000428 -08006edc : +08006ffc : } void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)//10us { - 8006edc: b590 push {r4, r7, lr} - 8006ede: b083 sub sp, #12 - 8006ee0: af00 add r7, sp, #0 - 8006ee2: 6078 str r0, [r7, #4] + 8006ffc: b590 push {r4, r7, lr} + 8006ffe: b083 sub sp, #12 + 8007000: af00 add r7, sp, #0 + 8007002: 6078 str r0, [r7, #4] if (htim == (&htim6)) - 8006ee4: 687b ldr r3, [r7, #4] - 8006ee6: 4a21 ldr r2, [pc, #132] ; (8006f6c ) - 8006ee8: 4293 cmp r3, r2 - 8006eea: d13a bne.n 8006f62 + 8007004: 687b ldr r3, [r7, #4] + 8007006: 4a21 ldr r2, [pc, #132] ; (800708c ) + 8007008: 4293 cmp r3, r2 + 800700a: d13a bne.n 8007082 { max30102_read_fifo(); //read from MAX30102 FIFO2 - 8006eec: f7ff ff76 bl 8006ddc + 800700c: f7ff ff76 bl 8006efc //将数据写入fft输入并清除输出 s1[g_fft_index].real = fifo_red; - 8006ef0: 4b1f ldr r3, [pc, #124] ; (8006f70 ) - 8006ef2: 881b ldrh r3, [r3, #0] - 8006ef4: 4a1f ldr r2, [pc, #124] ; (8006f74 ) - 8006ef6: 8812 ldrh r2, [r2, #0] - 8006ef8: 4614 mov r4, r2 - 8006efa: 4618 mov r0, r3 - 8006efc: f7f9 ff36 bl 8000d6c <__aeabi_ui2f> - 8006f00: 4603 mov r3, r0 - 8006f02: 4a1d ldr r2, [pc, #116] ; (8006f78 ) - 8006f04: f842 3034 str.w r3, [r2, r4, lsl #3] + 8007010: 4b1f ldr r3, [pc, #124] ; (8007090 ) + 8007012: 881b ldrh r3, [r3, #0] + 8007014: 4a1f ldr r2, [pc, #124] ; (8007094 ) + 8007016: 8812 ldrh r2, [r2, #0] + 8007018: 4614 mov r4, r2 + 800701a: 4618 mov r0, r3 + 800701c: f7f9 fea6 bl 8000d6c <__aeabi_ui2f> + 8007020: 4603 mov r3, r0 + 8007022: 4a1d ldr r2, [pc, #116] ; (8007098 ) + 8007024: f842 3034 str.w r3, [r2, r4, lsl #3] s1[g_fft_index].imag= 0; - 8006f08: 4b1a ldr r3, [pc, #104] ; (8006f74 ) - 8006f0a: 881b ldrh r3, [r3, #0] - 8006f0c: 4a1a ldr r2, [pc, #104] ; (8006f78 ) - 8006f0e: 00db lsls r3, r3, #3 - 8006f10: 4413 add r3, r2 - 8006f12: f04f 0200 mov.w r2, #0 - 8006f16: 605a str r2, [r3, #4] + 8007028: 4b1a ldr r3, [pc, #104] ; (8007094 ) + 800702a: 881b ldrh r3, [r3, #0] + 800702c: 4a1a ldr r2, [pc, #104] ; (8007098 ) + 800702e: 00db lsls r3, r3, #3 + 8007030: 4413 add r3, r2 + 8007032: f04f 0200 mov.w r2, #0 + 8007036: 605a str r2, [r3, #4] s2[g_fft_index].real = fifo_ir; - 8006f18: 4b18 ldr r3, [pc, #96] ; (8006f7c ) - 8006f1a: 881b ldrh r3, [r3, #0] - 8006f1c: 4a15 ldr r2, [pc, #84] ; (8006f74 ) - 8006f1e: 8812 ldrh r2, [r2, #0] - 8006f20: 4614 mov r4, r2 - 8006f22: 4618 mov r0, r3 - 8006f24: f7f9 ff22 bl 8000d6c <__aeabi_ui2f> - 8006f28: 4603 mov r3, r0 - 8006f2a: 4a15 ldr r2, [pc, #84] ; (8006f80 ) - 8006f2c: f842 3034 str.w r3, [r2, r4, lsl #3] + 8007038: 4b18 ldr r3, [pc, #96] ; (800709c ) + 800703a: 881b ldrh r3, [r3, #0] + 800703c: 4a15 ldr r2, [pc, #84] ; (8007094 ) + 800703e: 8812 ldrh r2, [r2, #0] + 8007040: 4614 mov r4, r2 + 8007042: 4618 mov r0, r3 + 8007044: f7f9 fe92 bl 8000d6c <__aeabi_ui2f> + 8007048: 4603 mov r3, r0 + 800704a: 4a15 ldr r2, [pc, #84] ; (80070a0 ) + 800704c: f842 3034 str.w r3, [r2, r4, lsl #3] s2[g_fft_index].imag= 0; - 8006f30: 4b10 ldr r3, [pc, #64] ; (8006f74 ) - 8006f32: 881b ldrh r3, [r3, #0] - 8006f34: 4a12 ldr r2, [pc, #72] ; (8006f80 ) - 8006f36: 00db lsls r3, r3, #3 - 8006f38: 4413 add r3, r2 - 8006f3a: f04f 0200 mov.w r2, #0 - 8006f3e: 605a str r2, [r3, #4] + 8007050: 4b10 ldr r3, [pc, #64] ; (8007094 ) + 8007052: 881b ldrh r3, [r3, #0] + 8007054: 4a12 ldr r2, [pc, #72] ; (80070a0 ) + 8007056: 00db lsls r3, r3, #3 + 8007058: 4413 add r3, r2 + 800705a: f04f 0200 mov.w r2, #0 + 800705e: 605a str r2, [r3, #4] g_fft_index++; - 8006f40: 4b0c ldr r3, [pc, #48] ; (8006f74 ) - 8006f42: 881b ldrh r3, [r3, #0] - 8006f44: 3301 adds r3, #1 - 8006f46: b29a uxth r2, r3 - 8006f48: 4b0a ldr r3, [pc, #40] ; (8006f74 ) - 8006f4a: 801a strh r2, [r3, #0] + 8007060: 4b0c ldr r3, [pc, #48] ; (8007094 ) + 8007062: 881b ldrh r3, [r3, #0] + 8007064: 3301 adds r3, #1 + 8007066: b29a uxth r2, r3 + 8007068: 4b0a ldr r3, [pc, #40] ; (8007094 ) + 800706a: 801a strh r2, [r3, #0] if(g_fft_index>FFT_N) - 8006f4c: 4b09 ldr r3, [pc, #36] ; (8006f74 ) - 8006f4e: 881b ldrh r3, [r3, #0] - 8006f50: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 8006f54: d905 bls.n 8006f62 + 800706c: 4b09 ldr r3, [pc, #36] ; (8007094 ) + 800706e: 881b ldrh r3, [r3, #0] + 8007070: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 8007074: d905 bls.n 8007082 { get_data_flag=1; - 8006f56: 4b0b ldr r3, [pc, #44] ; (8006f84 ) - 8006f58: 2201 movs r2, #1 - 8006f5a: 701a strb r2, [r3, #0] + 8007076: 4b0b ldr r3, [pc, #44] ; (80070a4 ) + 8007078: 2201 movs r2, #1 + 800707a: 701a strb r2, [r3, #0] HAL_TIM_Base_Stop_IT(&htim6); - 8006f5c: 4803 ldr r0, [pc, #12] ; (8006f6c ) - 8006f5e: f7fd faf1 bl 8004544 + 800707c: 4803 ldr r0, [pc, #12] ; (800708c ) + 800707e: f7fd fa89 bl 8004594 } } } - 8006f62: bf00 nop - 8006f64: 370c adds r7, #12 - 8006f66: 46bd mov sp, r7 - 8006f68: bd90 pop {r4, r7, pc} - 8006f6a: bf00 nop - 8006f6c: 200002b0 .word 0x200002b0 - 8006f70: 20002534 .word 0x20002534 - 8006f74: 2000020a .word 0x2000020a - 8006f78: 2000042c .word 0x2000042c - 8006f7c: 20000424 .word 0x20000424 - 8006f80: 200014ac .word 0x200014ac - 8006f84: 20000208 .word 0x20000208 + 8007082: bf00 nop + 8007084: 370c adds r7, #12 + 8007086: 46bd mov sp, r7 + 8007088: bd90 pop {r4, r7, pc} + 800708a: bf00 nop + 800708c: 200002b0 .word 0x200002b0 + 8007090: 20002538 .word 0x20002538 + 8007094: 2000020a .word 0x2000020a + 8007098: 20000430 .word 0x20000430 + 800709c: 20000428 .word 0x20000428 + 80070a0: 200014b0 .word 0x200014b0 + 80070a4: 20000208 .word 0x20000208 + +080070a8 : + -08006f88 : -extern touch_device t0; -task run_loop;//主循环状态机 void main_app() { - 8006f88: b580 push {r7, lr} - 8006f8a: b096 sub sp, #88 ; 0x58 - 8006f8c: af04 add r7, sp, #16 + 80070a8: b580 push {r7, lr} + 80070aa: b096 sub sp, #88 ; 0x58 + 80070ac: af04 add r7, sp, #16 char str[64]; LCDx_Init(); - 8006f8e: f7fe f87d bl 800508c + 80070ae: f7fe f815 bl 80050dc EPPROM_SLOWWRITE_INIT(); - 8006f92: f7fe fc5d bl 8005850 + 80070b2: f7fe fbf5 bl 80058a0 if(HAL_GPIO_ReadPin(KEY3_GPIO_Port, KEY3_Pin)==0) - 8006f96: 2104 movs r1, #4 - 8006f98: 4819 ldr r0, [pc, #100] ; (8007000 ) - 8006f9a: f7fb f895 bl 80020c8 - 8006f9e: 4603 mov r3, r0 - 8006fa0: 2b00 cmp r3, #0 - 8006fa2: d103 bne.n 8006fac + 80070b6: 2104 movs r1, #4 + 80070b8: 4819 ldr r0, [pc, #100] ; (8007120 ) + 80070ba: f7fb f82d bl 8002118 + 80070be: 4603 mov r3, r0 + 80070c0: 2b00 cmp r3, #0 + 80070c2: d103 bne.n 80070cc { TP_adjustment(1); - 8006fa4: 2001 movs r0, #1 - 8006fa6: f7ff fb45 bl 8006634 - 8006faa: e002 b.n 8006fb2 + 80070c4: 2001 movs r0, #1 + 80070c6: f7ff fb1f bl 8006708 + 80070ca: e002 b.n 80070d2 }else { TP_adjustment(0); - 8006fac: 2000 movs r0, #0 - 8006fae: f7ff fb41 bl 8006634 + 80070cc: 2000 movs r0, #0 + 80070ce: f7ff fb1b bl 8006708 } UI *ui=UI_Init(BLACK); - 8006fb2: 2000 movs r0, #0 - 8006fb4: f000 f852 bl 800705c - 8006fb8: 6478 str r0, [r7, #68] ; 0x44 + 80070d2: 2000 movs r0, #0 + 80070d4: f000 f852 bl 800717c + 80070d8: 6478 str r0, [r7, #68] ; 0x44 //APP_blood_init(New_Window(ui,10,10,128,128,WHITE,"MAX30102")); APP_IDcard_init(New_Window(ui,25,30,150,100,GREEN,"IDcard")); - 8006fba: 4b12 ldr r3, [pc, #72] ; (8007004 ) - 8006fbc: 9302 str r3, [sp, #8] - 8006fbe: f44f 63fc mov.w r3, #2016 ; 0x7e0 - 8006fc2: 9301 str r3, [sp, #4] - 8006fc4: 2364 movs r3, #100 ; 0x64 - 8006fc6: 9300 str r3, [sp, #0] - 8006fc8: 2396 movs r3, #150 ; 0x96 - 8006fca: 221e movs r2, #30 - 8006fcc: 2119 movs r1, #25 - 8006fce: 6c78 ldr r0, [r7, #68] ; 0x44 - 8006fd0: f000 f877 bl 80070c2 - 8006fd4: 4603 mov r3, r0 - 8006fd6: 4618 mov r0, r3 - 8006fd8: f7ff fe0e bl 8006bf8 + 80070da: 4b12 ldr r3, [pc, #72] ; (8007124 ) + 80070dc: 9302 str r3, [sp, #8] + 80070de: f44f 63fc mov.w r3, #2016 ; 0x7e0 + 80070e2: 9301 str r3, [sp, #4] + 80070e4: 2364 movs r3, #100 ; 0x64 + 80070e6: 9300 str r3, [sp, #0] + 80070e8: 2396 movs r3, #150 ; 0x96 + 80070ea: 221e movs r2, #30 + 80070ec: 2119 movs r1, #25 + 80070ee: 6c78 ldr r0, [r7, #68] ; 0x44 + 80070f0: f000 f877 bl 80071e2 + 80070f4: 4603 mov r3, r0 + 80070f6: 4618 mov r0, r3 + 80070f8: f7ff fde8 bl 8006ccc //New_Window(ui,80,80,60,90,YELLOW,"YELLOW"); //New_Window(ui,120,90,70,60,MAGENTA,"MAGENTA"); ui->refresh_ui_flag=1; - 8006fdc: 6c7a ldr r2, [r7, #68] ; 0x44 - 8006fde: f892 3020 ldrb.w r3, [r2, #32] - 8006fe2: f043 0304 orr.w r3, r3, #4 - 8006fe6: f882 3020 strb.w r3, [r2, #32] + 80070fc: 6c7a ldr r2, [r7, #68] ; 0x44 + 80070fe: f892 3020 ldrb.w r3, [r2, #32] + 8007102: f043 0304 orr.w r3, r3, #4 + 8007106: f882 3020 strb.w r3, [r2, #32] */ // 交叉编译测试 //APP_blood_loop(); APP_IDcard_loop(); - 8006fea: f7ff fe15 bl 8006c18 + 800710a: f7ff fdef bl 8006cec UI_Server(ui); - 8006fee: 6c78 ldr r0, [r7, #68] ; 0x44 - 8006ff0: f000 fa0e bl 8007410 + 800710e: 6c78 ldr r0, [r7, #68] ; 0x44 + 8007110: f000 fa0e bl 8007530 TP_Server(); - 8006ff4: f7ff fa4a bl 800648c + 8007114: f7ff fa24 bl 8006560 EEPROM_SLOWWRITE_SERVER(); - 8006ff8: f7fe fc44 bl 8005884 + 8007118: f7fe fbdc bl 80058d4 { - 8006ffc: e7f5 b.n 8006fea - 8006ffe: bf00 nop - 8007000: 40011800 .word 0x40011800 - 8007004: 0800a4b4 .word 0x0800a4b4 + 800711c: e7f5 b.n 800710a + 800711e: bf00 nop + 8007120: 40011800 .word 0x40011800 + 8007124: 0800a804 .word 0x0800a804 -08007008 : +08007128 : #include "touch.h" extern touch_device t0; //接口 //设置屏幕像素坐标 void Inteface_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 8007008: b580 push {r7, lr} - 800700a: b082 sub sp, #8 - 800700c: af00 add r7, sp, #0 - 800700e: 4603 mov r3, r0 - 8007010: 460a mov r2, r1 - 8007012: 80fb strh r3, [r7, #6] - 8007014: 4613 mov r3, r2 - 8007016: 80bb strh r3, [r7, #4] + 8007128: b580 push {r7, lr} + 800712a: b082 sub sp, #8 + 800712c: af00 add r7, sp, #0 + 800712e: 4603 mov r3, r0 + 8007130: 460a mov r2, r1 + 8007132: 80fb strh r3, [r7, #6] + 8007134: 4613 mov r3, r2 + 8007136: 80bb strh r3, [r7, #4] LCD_SetCursor(Xpos,Ypos); //设置光标位置 - 8007018: 88ba ldrh r2, [r7, #4] - 800701a: 88fb ldrh r3, [r7, #6] - 800701c: 4611 mov r1, r2 - 800701e: 4618 mov r0, r3 - 8007020: f7fe f92a bl 8005278 + 8007138: 88ba ldrh r2, [r7, #4] + 800713a: 88fb ldrh r3, [r7, #6] + 800713c: 4611 mov r1, r2 + 800713e: 4618 mov r0, r3 + 8007140: f7fe f8c2 bl 80052c8 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 8007024: 4b04 ldr r3, [pc, #16] ; (8007038 ) - 8007026: 79da ldrb r2, [r3, #7] - 8007028: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 800702c: b292 uxth r2, r2 - 800702e: 801a strh r2, [r3, #0] + 8007144: 4b04 ldr r3, [pc, #16] ; (8007158 ) + 8007146: 79da ldrb r2, [r3, #7] + 8007148: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 800714c: b292 uxth r2, r2 + 800714e: 801a strh r2, [r3, #0] } - 8007030: bf00 nop - 8007032: 3708 adds r7, #8 - 8007034: 46bd mov sp, r7 - 8007036: bd80 pop {r7, pc} - 8007038: 20000354 .word 0x20000354 + 8007150: bf00 nop + 8007152: 3708 adds r7, #8 + 8007154: 46bd mov sp, r7 + 8007156: bd80 pop {r7, pc} + 8007158: 20000354 .word 0x20000354 -0800703c : +0800715c : //往像素坐标写入一个颜色 void Inteface_SetColor(uint16_t color) { - 800703c: b480 push {r7} - 800703e: b083 sub sp, #12 - 8007040: af00 add r7, sp, #0 - 8007042: 4603 mov r3, r0 - 8007044: 80fb strh r3, [r7, #6] + 800715c: b480 push {r7} + 800715e: b083 sub sp, #12 + 8007160: af00 add r7, sp, #0 + 8007162: 4603 mov r3, r0 + 8007164: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=color; - 8007046: 4a04 ldr r2, [pc, #16] ; (8007058 ) - 8007048: 88fb ldrh r3, [r7, #6] - 800704a: 8013 strh r3, [r2, #0] + 8007166: 4a04 ldr r2, [pc, #16] ; (8007178 ) + 8007168: 88fb ldrh r3, [r7, #6] + 800716a: 8013 strh r3, [r2, #0] } - 800704c: bf00 nop - 800704e: 370c adds r7, #12 - 8007050: 46bd mov sp, r7 - 8007052: bc80 pop {r7} - 8007054: 4770 bx lr - 8007056: bf00 nop - 8007058: 6c000800 .word 0x6c000800 + 800716c: bf00 nop + 800716e: 370c adds r7, #12 + 8007170: 46bd mov sp, r7 + 8007172: bc80 pop {r7} + 8007174: 4770 bx lr + 8007176: bf00 nop + 8007178: 6c000800 .word 0x6c000800 -0800705c : +0800717c : //新建一个UI对象 //当时都想法是类似windows的多桌面,每个桌面都能有n个窗口 UI *UI_Init(COLOR_16 background) { - 800705c: b580 push {r7, lr} - 800705e: b084 sub sp, #16 - 8007060: af00 add r7, sp, #0 - 8007062: 6078 str r0, [r7, #4] + 800717c: b580 push {r7, lr} + 800717e: b084 sub sp, #16 + 8007180: af00 add r7, sp, #0 + 8007182: 6078 str r0, [r7, #4] UI *ui; ui = (UI*)malloc(sizeof(UI)); - 8007064: 2024 movs r0, #36 ; 0x24 - 8007066: f000 faf7 bl 8007658 - 800706a: 4603 mov r3, r0 - 800706c: 60fb str r3, [r7, #12] + 8007184: 2024 movs r0, #36 ; 0x24 + 8007186: f000 faf7 bl 8007778 + 800718a: 4603 mov r3, r0 + 800718c: 60fb str r3, [r7, #12] if(ui!=NULL) - 800706e: 68fb ldr r3, [r7, #12] - 8007070: 2b00 cmp r3, #0 - 8007072: d021 beq.n 80070b8 + 800718e: 68fb ldr r3, [r7, #12] + 8007190: 2b00 cmp r3, #0 + 8007192: d021 beq.n 80071d8 { ui->x=0; - 8007074: 68fb ldr r3, [r7, #12] - 8007076: 2200 movs r2, #0 - 8007078: 809a strh r2, [r3, #4] + 8007194: 68fb ldr r3, [r7, #12] + 8007196: 2200 movs r2, #0 + 8007198: 809a strh r2, [r3, #4] ui->y=0; - 800707a: 68fb ldr r3, [r7, #12] - 800707c: 2200 movs r2, #0 - 800707e: 80da strh r2, [r3, #6] + 800719a: 68fb ldr r3, [r7, #12] + 800719c: 2200 movs r2, #0 + 800719e: 80da strh r2, [r3, #6] ui->high=240; - 8007080: 68fb ldr r3, [r7, #12] - 8007082: 22f0 movs r2, #240 ; 0xf0 - 8007084: 815a strh r2, [r3, #10] + 80071a0: 68fb ldr r3, [r7, #12] + 80071a2: 22f0 movs r2, #240 ; 0xf0 + 80071a4: 815a strh r2, [r3, #10] ui->width=320; - 8007086: 68fb ldr r3, [r7, #12] - 8007088: f44f 72a0 mov.w r2, #320 ; 0x140 - 800708c: 811a strh r2, [r3, #8] + 80071a6: 68fb ldr r3, [r7, #12] + 80071a8: f44f 72a0 mov.w r2, #320 ; 0x140 + 80071ac: 811a strh r2, [r3, #8] ui->background=background; - 800708e: 68fb ldr r3, [r7, #12] - 8007090: 687a ldr r2, [r7, #4] - 8007092: 601a str r2, [r3, #0] + 80071ae: 68fb ldr r3, [r7, #12] + 80071b0: 687a ldr r2, [r7, #4] + 80071b2: 601a str r2, [r3, #0] ui->windows=NULL; - 8007094: 68fb ldr r3, [r7, #12] - 8007096: 2200 movs r2, #0 - 8007098: 60da str r2, [r3, #12] + 80071b4: 68fb ldr r3, [r7, #12] + 80071b6: 2200 movs r2, #0 + 80071b8: 60da str r2, [r3, #12] ui->last_windows=NULL; - 800709a: 68fb ldr r3, [r7, #12] - 800709c: 2200 movs r2, #0 - 800709e: 611a str r2, [r3, #16] + 80071ba: 68fb ldr r3, [r7, #12] + 80071bc: 2200 movs r2, #0 + 80071be: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; - 80070a0: 68fa ldr r2, [r7, #12] - 80070a2: f892 3020 ldrb.w r3, [r2, #32] - 80070a6: f043 0304 orr.w r3, r3, #4 - 80070aa: f882 3020 strb.w r3, [r2, #32] + 80071c0: 68fa ldr r2, [r7, #12] + 80071c2: f892 3020 ldrb.w r3, [r2, #32] + 80071c6: f043 0304 orr.w r3, r3, #4 + 80071ca: f882 3020 strb.w r3, [r2, #32] ui->moveed_windwos=NULL; - 80070ae: 68fb ldr r3, [r7, #12] - 80070b0: 2200 movs r2, #0 - 80070b2: 615a str r2, [r3, #20] + 80071ce: 68fb ldr r3, [r7, #12] + 80071d0: 2200 movs r2, #0 + 80071d2: 615a str r2, [r3, #20] ui->touch->acc_y=0; } */ return ui; - 80070b4: 68fb ldr r3, [r7, #12] - 80070b6: e000 b.n 80070ba + 80071d4: 68fb ldr r3, [r7, #12] + 80071d6: e000 b.n 80071da } return NULL; - 80070b8: 2300 movs r3, #0 + 80071d8: 2300 movs r3, #0 } - 80070ba: 4618 mov r0, r3 - 80070bc: 3710 adds r7, #16 - 80070be: 46bd mov sp, r7 - 80070c0: bd80 pop {r7, pc} + 80071da: 4618 mov r0, r3 + 80071dc: 3710 adds r7, #16 + 80071de: 46bd mov sp, r7 + 80071e0: bd80 pop {r7, pc} -080070c2 : +080071e2 : //新建一个窗口 //返回窗口的指针 //将窗口挂载到某个ui window *New_Window(UI *ui,uint16_t x,uint16_t y,uint16_t width,uint16_t high,COLOR_16 background,const char *title) { - 80070c2: b580 push {r7, lr} - 80070c4: b088 sub sp, #32 - 80070c6: af00 add r7, sp, #0 - 80070c8: 60f8 str r0, [r7, #12] - 80070ca: 4608 mov r0, r1 - 80070cc: 4611 mov r1, r2 - 80070ce: 461a mov r2, r3 - 80070d0: 4603 mov r3, r0 - 80070d2: 817b strh r3, [r7, #10] - 80070d4: 460b mov r3, r1 - 80070d6: 813b strh r3, [r7, #8] - 80070d8: 4613 mov r3, r2 - 80070da: 80fb strh r3, [r7, #6] + 80071e2: b580 push {r7, lr} + 80071e4: b088 sub sp, #32 + 80071e6: af00 add r7, sp, #0 + 80071e8: 60f8 str r0, [r7, #12] + 80071ea: 4608 mov r0, r1 + 80071ec: 4611 mov r1, r2 + 80071ee: 461a mov r2, r3 + 80071f0: 4603 mov r3, r0 + 80071f2: 817b strh r3, [r7, #10] + 80071f4: 460b mov r3, r1 + 80071f6: 813b strh r3, [r7, #8] + 80071f8: 4613 mov r3, r2 + 80071fa: 80fb strh r3, [r7, #6] window *temp_window; temp_window = (window*)malloc(sizeof(window)); - 80070dc: 201c movs r0, #28 - 80070de: f000 fabb bl 8007658 - 80070e2: 4603 mov r3, r0 - 80070e4: 617b str r3, [r7, #20] + 80071fc: 201c movs r0, #28 + 80071fe: f000 fabb bl 8007778 + 8007202: 4603 mov r3, r0 + 8007204: 617b str r3, [r7, #20] if(temp_window!=NULL) - 80070e6: 697b ldr r3, [r7, #20] - 80070e8: 2b00 cmp r3, #0 - 80070ea: d022 beq.n 8007132 + 8007206: 697b ldr r3, [r7, #20] + 8007208: 2b00 cmp r3, #0 + 800720a: d022 beq.n 8007252 { temp_window->background=background; - 80070ec: 697b ldr r3, [r7, #20] - 80070ee: 6afa ldr r2, [r7, #44] ; 0x2c - 80070f0: 609a str r2, [r3, #8] + 800720c: 697b ldr r3, [r7, #20] + 800720e: 6afa ldr r2, [r7, #44] ; 0x2c + 8007210: 609a str r2, [r3, #8] temp_window->high=high; - 80070f2: 697b ldr r3, [r7, #20] - 80070f4: 8d3a ldrh r2, [r7, #40] ; 0x28 - 80070f6: 80da strh r2, [r3, #6] + 8007212: 697b ldr r3, [r7, #20] + 8007214: 8d3a ldrh r2, [r7, #40] ; 0x28 + 8007216: 80da strh r2, [r3, #6] temp_window->width=width; - 80070f8: 697b ldr r3, [r7, #20] - 80070fa: 88fa ldrh r2, [r7, #6] - 80070fc: 809a strh r2, [r3, #4] + 8007218: 697b ldr r3, [r7, #20] + 800721a: 88fa ldrh r2, [r7, #6] + 800721c: 809a strh r2, [r3, #4] temp_window->x=x; - 80070fe: 697b ldr r3, [r7, #20] - 8007100: 897a ldrh r2, [r7, #10] - 8007102: 801a strh r2, [r3, #0] + 800721e: 697b ldr r3, [r7, #20] + 8007220: 897a ldrh r2, [r7, #10] + 8007222: 801a strh r2, [r3, #0] temp_window->y=y; - 8007104: 697b ldr r3, [r7, #20] - 8007106: 893a ldrh r2, [r7, #8] - 8007108: 805a strh r2, [r3, #2] + 8007224: 697b ldr r3, [r7, #20] + 8007226: 893a ldrh r2, [r7, #8] + 8007228: 805a strh r2, [r3, #2] for(int a=0;a<16;a++) - 800710a: 2300 movs r3, #0 - 800710c: 61fb str r3, [r7, #28] - 800710e: e00c b.n 800712a + 800722a: 2300 movs r3, #0 + 800722c: 61fb str r3, [r7, #28] + 800722e: e00c b.n 800724a { temp_window->title[a]=title[a]; - 8007110: 69fb ldr r3, [r7, #28] - 8007112: 6b3a ldr r2, [r7, #48] ; 0x30 - 8007114: 4413 add r3, r2 - 8007116: 7819 ldrb r1, [r3, #0] - 8007118: 697a ldr r2, [r7, #20] - 800711a: 69fb ldr r3, [r7, #28] - 800711c: 4413 add r3, r2 - 800711e: 330c adds r3, #12 - 8007120: 460a mov r2, r1 - 8007122: 701a strb r2, [r3, #0] + 8007230: 69fb ldr r3, [r7, #28] + 8007232: 6b3a ldr r2, [r7, #48] ; 0x30 + 8007234: 4413 add r3, r2 + 8007236: 7819 ldrb r1, [r3, #0] + 8007238: 697a ldr r2, [r7, #20] + 800723a: 69fb ldr r3, [r7, #28] + 800723c: 4413 add r3, r2 + 800723e: 330c adds r3, #12 + 8007240: 460a mov r2, r1 + 8007242: 701a strb r2, [r3, #0] for(int a=0;a<16;a++) - 8007124: 69fb ldr r3, [r7, #28] - 8007126: 3301 adds r3, #1 - 8007128: 61fb str r3, [r7, #28] - 800712a: 69fb ldr r3, [r7, #28] - 800712c: 2b0f cmp r3, #15 - 800712e: ddef ble.n 8007110 - 8007130: e001 b.n 8007136 + 8007244: 69fb ldr r3, [r7, #28] + 8007246: 3301 adds r3, #1 + 8007248: 61fb str r3, [r7, #28] + 800724a: 69fb ldr r3, [r7, #28] + 800724c: 2b0f cmp r3, #15 + 800724e: ddef ble.n 8007230 + 8007250: e001 b.n 8007256 } }else{return NULL;} - 8007132: 2300 movs r3, #0 - 8007134: e02a b.n 800718c + 8007252: 2300 movs r3, #0 + 8007254: e02a b.n 80072ac windows_stack *temp_windows_stack; temp_windows_stack=ui->last_windows; - 8007136: 68fb ldr r3, [r7, #12] - 8007138: 691b ldr r3, [r3, #16] - 800713a: 61bb str r3, [r7, #24] + 8007256: 68fb ldr r3, [r7, #12] + 8007258: 691b ldr r3, [r3, #16] + 800725a: 61bb str r3, [r7, #24] if(temp_windows_stack==NULL) - 800713c: 69bb ldr r3, [r7, #24] - 800713e: 2b00 cmp r3, #0 - 8007140: d10b bne.n 800715a + 800725c: 69bb ldr r3, [r7, #24] + 800725e: 2b00 cmp r3, #0 + 8007260: d10b bne.n 800727a { temp_windows_stack=(windows_stack*)malloc(sizeof(windows_stack)); - 8007142: 200c movs r0, #12 - 8007144: f000 fa88 bl 8007658 - 8007148: 4603 mov r3, r0 - 800714a: 61bb str r3, [r7, #24] + 8007262: 200c movs r0, #12 + 8007264: f000 fa88 bl 8007778 + 8007268: 4603 mov r3, r0 + 800726a: 61bb str r3, [r7, #24] temp_windows_stack->up=NULL; - 800714c: 69bb ldr r3, [r7, #24] - 800714e: 2200 movs r2, #0 - 8007150: 601a str r2, [r3, #0] + 800726c: 69bb ldr r3, [r7, #24] + 800726e: 2200 movs r2, #0 + 8007270: 601a str r2, [r3, #0] ui->windows=temp_windows_stack; - 8007152: 68fb ldr r3, [r7, #12] - 8007154: 69ba ldr r2, [r7, #24] - 8007156: 60da str r2, [r3, #12] - 8007158: e00e b.n 8007178 + 8007272: 68fb ldr r3, [r7, #12] + 8007274: 69ba ldr r2, [r7, #24] + 8007276: 60da str r2, [r3, #12] + 8007278: e00e b.n 8007298 while(temp_windows_stack->next!=NULL) { temp_windows_stack=temp_windows_stack->next; } */ windows_stack *up=temp_windows_stack;//备份当前对象指针 - 800715a: 69bb ldr r3, [r7, #24] - 800715c: 613b str r3, [r7, #16] + 800727a: 69bb ldr r3, [r7, #24] + 800727c: 613b str r3, [r7, #16] temp_windows_stack->next=(windows_stack*)malloc(sizeof(windows_stack)); - 800715e: 200c movs r0, #12 - 8007160: f000 fa7a bl 8007658 - 8007164: 4603 mov r3, r0 - 8007166: 461a mov r2, r3 - 8007168: 69bb ldr r3, [r7, #24] - 800716a: 609a str r2, [r3, #8] + 800727e: 200c movs r0, #12 + 8007280: f000 fa7a bl 8007778 + 8007284: 4603 mov r3, r0 + 8007286: 461a mov r2, r3 + 8007288: 69bb ldr r3, [r7, #24] + 800728a: 609a str r2, [r3, #8] temp_windows_stack=temp_windows_stack->next; - 800716c: 69bb ldr r3, [r7, #24] - 800716e: 689b ldr r3, [r3, #8] - 8007170: 61bb str r3, [r7, #24] + 800728c: 69bb ldr r3, [r7, #24] + 800728e: 689b ldr r3, [r3, #8] + 8007290: 61bb str r3, [r7, #24] temp_windows_stack->up=up; - 8007172: 69bb ldr r3, [r7, #24] - 8007174: 693a ldr r2, [r7, #16] - 8007176: 601a str r2, [r3, #0] + 8007292: 69bb ldr r3, [r7, #24] + 8007294: 693a ldr r2, [r7, #16] + 8007296: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; - 8007178: 69bb ldr r3, [r7, #24] - 800717a: 2200 movs r2, #0 - 800717c: 609a str r2, [r3, #8] + 8007298: 69bb ldr r3, [r7, #24] + 800729a: 2200 movs r2, #0 + 800729c: 609a str r2, [r3, #8] temp_windows_stack->window=temp_window; - 800717e: 69bb ldr r3, [r7, #24] - 8007180: 697a ldr r2, [r7, #20] - 8007182: 605a str r2, [r3, #4] + 800729e: 69bb ldr r3, [r7, #24] + 80072a0: 697a ldr r2, [r7, #20] + 80072a2: 605a str r2, [r3, #4] ui->last_windows=temp_windows_stack; - 8007184: 68fb ldr r3, [r7, #12] - 8007186: 69ba ldr r2, [r7, #24] - 8007188: 611a str r2, [r3, #16] + 80072a4: 68fb ldr r3, [r7, #12] + 80072a6: 69ba ldr r2, [r7, #24] + 80072a8: 611a str r2, [r3, #16] return temp_window; - 800718a: 697b ldr r3, [r7, #20] + 80072aa: 697b ldr r3, [r7, #20] } - 800718c: 4618 mov r0, r3 - 800718e: 3720 adds r7, #32 - 8007190: 46bd mov sp, r7 - 8007192: bd80 pop {r7, pc} + 80072ac: 4618 mov r0, r3 + 80072ae: 3720 adds r7, #32 + 80072b0: 46bd mov sp, r7 + 80072b2: bd80 pop {r7, pc} -08007194 : +080072b4 : temp_window->y=temp_window->y+acc_y; } //显示一个窗口 void Refresh_Window(UI *ui,window *temp_window) { - 8007194: b580 push {r7, lr} - 8007196: b088 sub sp, #32 - 8007198: af02 add r7, sp, #8 - 800719a: 6078 str r0, [r7, #4] - 800719c: 6039 str r1, [r7, #0] + 80072b4: b580 push {r7, lr} + 80072b6: b088 sub sp, #32 + 80072b8: af02 add r7, sp, #8 + 80072ba: 6078 str r0, [r7, #4] + 80072bc: 6039 str r1, [r7, #0] //开始绘制窗口//填充窗口背景 int x,y; char z; for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 800719e: 2300 movs r3, #0 - 80071a0: 82bb strh r3, [r7, #20] - 80071a2: e063 b.n 800726c + 80072be: 2300 movs r3, #0 + 80072c0: 82bb strh r3, [r7, #20] + 80072c2: e063 b.n 800738c { z=1; - 80071a4: 2301 movs r3, #1 - 80071a6: 75fb strb r3, [r7, #23] + 80072c4: 2301 movs r3, #1 + 80072c6: 75fb strb r3, [r7, #23] for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 80071a8: 2300 movs r3, #0 - 80071aa: 827b strh r3, [r7, #18] - 80071ac: e056 b.n 800725c + 80072c8: 2300 movs r3, #0 + 80072ca: 827b strh r3, [r7, #18] + 80072cc: e056 b.n 800737c { x=temp_window->x+temp_i; - 80071ae: 683b ldr r3, [r7, #0] - 80071b0: 881b ldrh r3, [r3, #0] - 80071b2: 461a mov r2, r3 - 80071b4: 8a7b ldrh r3, [r7, #18] - 80071b6: 4413 add r3, r2 - 80071b8: 60fb str r3, [r7, #12] + 80072ce: 683b ldr r3, [r7, #0] + 80072d0: 881b ldrh r3, [r3, #0] + 80072d2: 461a mov r2, r3 + 80072d4: 8a7b ldrh r3, [r7, #18] + 80072d6: 4413 add r3, r2 + 80072d8: 60fb str r3, [r7, #12] y=temp_window->y+temp_y; - 80071ba: 683b ldr r3, [r7, #0] - 80071bc: 885b ldrh r3, [r3, #2] - 80071be: 461a mov r2, r3 - 80071c0: 8abb ldrh r3, [r7, #20] - 80071c2: 4413 add r3, r2 - 80071c4: 60bb str r3, [r7, #8] + 80072da: 683b ldr r3, [r7, #0] + 80072dc: 885b ldrh r3, [r3, #2] + 80072de: 461a mov r2, r3 + 80072e0: 8abb ldrh r3, [r7, #20] + 80072e2: 4413 add r3, r2 + 80072e4: 60bb str r3, [r7, #8] if(y>=ui->y&&z==1) - 80071c6: 687b ldr r3, [r7, #4] - 80071c8: 88db ldrh r3, [r3, #6] - 80071ca: 461a mov r2, r3 - 80071cc: 68bb ldr r3, [r7, #8] - 80071ce: 4293 cmp r3, r2 - 80071d0: db0c blt.n 80071ec - 80071d2: 7dfb ldrb r3, [r7, #23] - 80071d4: 2b01 cmp r3, #1 - 80071d6: d109 bne.n 80071ec + 80072e6: 687b ldr r3, [r7, #4] + 80072e8: 88db ldrh r3, [r3, #6] + 80072ea: 461a mov r2, r3 + 80072ec: 68bb ldr r3, [r7, #8] + 80072ee: 4293 cmp r3, r2 + 80072f0: db0c blt.n 800730c + 80072f2: 7dfb ldrb r3, [r7, #23] + 80072f4: 2b01 cmp r3, #1 + 80072f6: d109 bne.n 800730c { Inteface_SetCursor(x,y); - 80071d8: 68fb ldr r3, [r7, #12] - 80071da: b29b uxth r3, r3 - 80071dc: 68ba ldr r2, [r7, #8] - 80071de: b292 uxth r2, r2 - 80071e0: 4611 mov r1, r2 - 80071e2: 4618 mov r0, r3 - 80071e4: f7ff ff10 bl 8007008 + 80072f8: 68fb ldr r3, [r7, #12] + 80072fa: b29b uxth r3, r3 + 80072fc: 68ba ldr r2, [r7, #8] + 80072fe: b292 uxth r2, r2 + 8007300: 4611 mov r1, r2 + 8007302: 4618 mov r0, r3 + 8007304: f7ff ff10 bl 8007128 z=0; - 80071e8: 2300 movs r3, #0 - 80071ea: 75fb strb r3, [r7, #23] + 8007308: 2300 movs r3, #0 + 800730a: 75fb strb r3, [r7, #23] } if(x>=ui->x) - 80071ec: 687b ldr r3, [r7, #4] - 80071ee: 889b ldrh r3, [r3, #4] - 80071f0: 461a mov r2, r3 - 80071f2: 68fb ldr r3, [r7, #12] - 80071f4: 4293 cmp r3, r2 - 80071f6: db2e blt.n 8007256 + 800730c: 687b ldr r3, [r7, #4] + 800730e: 889b ldrh r3, [r3, #4] + 8007310: 461a mov r2, r3 + 8007312: 68fb ldr r3, [r7, #12] + 8007314: 4293 cmp r3, r2 + 8007316: db2e blt.n 8007376 { if(temp_y<16) - 80071f8: 8abb ldrh r3, [r7, #20] - 80071fa: 2b0f cmp r3, #15 - 80071fc: d80f bhi.n 800721e + 8007318: 8abb ldrh r3, [r7, #20] + 800731a: 2b0f cmp r3, #15 + 800731c: d80f bhi.n 800733e { if(temp_i>temp_window->width-16) - 80071fe: 683b ldr r3, [r7, #0] - 8007200: 889b ldrh r3, [r3, #4] - 8007202: f1a3 020f sub.w r2, r3, #15 - 8007206: 8a7b ldrh r3, [r7, #18] - 8007208: 429a cmp r2, r3 - 800720a: dc04 bgt.n 8007216 + 800731e: 683b ldr r3, [r7, #0] + 8007320: 889b ldrh r3, [r3, #4] + 8007322: f1a3 020f sub.w r2, r3, #15 + 8007326: 8a7b ldrh r3, [r7, #18] + 8007328: 429a cmp r2, r3 + 800732a: dc04 bgt.n 8007336 { Inteface_SetColor(RED); - 800720c: f44f 4078 mov.w r0, #63488 ; 0xf800 - 8007210: f7ff ff14 bl 800703c - 8007214: e01f b.n 8007256 + 800732c: f44f 4078 mov.w r0, #63488 ; 0xf800 + 8007330: f7ff ff14 bl 800715c + 8007334: e01f b.n 8007376 }else { Inteface_SetColor(BLUE); - 8007216: 201f movs r0, #31 - 8007218: f7ff ff10 bl 800703c - 800721c: e01b b.n 8007256 + 8007336: 201f movs r0, #31 + 8007338: f7ff ff10 bl 800715c + 800733c: e01b b.n 8007376 } }else { if(temp_i==0||temp_y==0||temp_i==temp_window->width-1||temp_y==temp_window->high-1) - 800721e: 8a7b ldrh r3, [r7, #18] - 8007220: 2b00 cmp r3, #0 - 8007222: d00e beq.n 8007242 - 8007224: 8abb ldrh r3, [r7, #20] - 8007226: 2b00 cmp r3, #0 - 8007228: d00b beq.n 8007242 - 800722a: 8a7a ldrh r2, [r7, #18] - 800722c: 683b ldr r3, [r7, #0] - 800722e: 889b ldrh r3, [r3, #4] - 8007230: 3b01 subs r3, #1 - 8007232: 429a cmp r2, r3 - 8007234: d005 beq.n 8007242 - 8007236: 8aba ldrh r2, [r7, #20] - 8007238: 683b ldr r3, [r7, #0] - 800723a: 88db ldrh r3, [r3, #6] - 800723c: 3b01 subs r3, #1 - 800723e: 429a cmp r2, r3 - 8007240: d103 bne.n 800724a + 800733e: 8a7b ldrh r3, [r7, #18] + 8007340: 2b00 cmp r3, #0 + 8007342: d00e beq.n 8007362 + 8007344: 8abb ldrh r3, [r7, #20] + 8007346: 2b00 cmp r3, #0 + 8007348: d00b beq.n 8007362 + 800734a: 8a7a ldrh r2, [r7, #18] + 800734c: 683b ldr r3, [r7, #0] + 800734e: 889b ldrh r3, [r3, #4] + 8007350: 3b01 subs r3, #1 + 8007352: 429a cmp r2, r3 + 8007354: d005 beq.n 8007362 + 8007356: 8aba ldrh r2, [r7, #20] + 8007358: 683b ldr r3, [r7, #0] + 800735a: 88db ldrh r3, [r3, #6] + 800735c: 3b01 subs r3, #1 + 800735e: 429a cmp r2, r3 + 8007360: d103 bne.n 800736a { Inteface_SetColor(BLUE); - 8007242: 201f movs r0, #31 - 8007244: f7ff fefa bl 800703c - 8007248: e005 b.n 8007256 + 8007362: 201f movs r0, #31 + 8007364: f7ff fefa bl 800715c + 8007368: e005 b.n 8007376 }else { Inteface_SetColor(temp_window->background); - 800724a: 683b ldr r3, [r7, #0] - 800724c: 689b ldr r3, [r3, #8] - 800724e: b29b uxth r3, r3 - 8007250: 4618 mov r0, r3 - 8007252: f7ff fef3 bl 800703c + 800736a: 683b ldr r3, [r7, #0] + 800736c: 689b ldr r3, [r3, #8] + 800736e: b29b uxth r3, r3 + 8007370: 4618 mov r0, r3 + 8007372: f7ff fef3 bl 800715c for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 8007256: 8a7b ldrh r3, [r7, #18] - 8007258: 3301 adds r3, #1 - 800725a: 827b strh r3, [r7, #18] - 800725c: 683b ldr r3, [r7, #0] - 800725e: 889b ldrh r3, [r3, #4] - 8007260: 8a7a ldrh r2, [r7, #18] - 8007262: 429a cmp r2, r3 - 8007264: d3a3 bcc.n 80071ae + 8007376: 8a7b ldrh r3, [r7, #18] + 8007378: 3301 adds r3, #1 + 800737a: 827b strh r3, [r7, #18] + 800737c: 683b ldr r3, [r7, #0] + 800737e: 889b ldrh r3, [r3, #4] + 8007380: 8a7a ldrh r2, [r7, #18] + 8007382: 429a cmp r2, r3 + 8007384: d3a3 bcc.n 80072ce for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 8007266: 8abb ldrh r3, [r7, #20] - 8007268: 3301 adds r3, #1 - 800726a: 82bb strh r3, [r7, #20] - 800726c: 683b ldr r3, [r7, #0] - 800726e: 88db ldrh r3, [r3, #6] - 8007270: 8aba ldrh r2, [r7, #20] - 8007272: 429a cmp r2, r3 - 8007274: d396 bcc.n 80071a4 + 8007386: 8abb ldrh r3, [r7, #20] + 8007388: 3301 adds r3, #1 + 800738a: 82bb strh r3, [r7, #20] + 800738c: 683b ldr r3, [r7, #0] + 800738e: 88db ldrh r3, [r3, #6] + 8007390: 8aba ldrh r2, [r7, #20] + 8007392: 429a cmp r2, r3 + 8007394: d396 bcc.n 80072c4 } } */ //显示title LCD_ShowString(temp_window->x,temp_window->y,&temp_window->title,16,WHITE,WHITE); - 8007276: 683b ldr r3, [r7, #0] - 8007278: 8818 ldrh r0, [r3, #0] - 800727a: 683b ldr r3, [r7, #0] - 800727c: 8859 ldrh r1, [r3, #2] - 800727e: 683b ldr r3, [r7, #0] - 8007280: f103 020c add.w r2, r3, #12 - 8007284: f64f 73ff movw r3, #65535 ; 0xffff - 8007288: 9301 str r3, [sp, #4] - 800728a: f64f 73ff movw r3, #65535 ; 0xffff - 800728e: 9300 str r3, [sp, #0] - 8007290: 2310 movs r3, #16 - 8007292: f7fe fa9f bl 80057d4 + 8007396: 683b ldr r3, [r7, #0] + 8007398: 8818 ldrh r0, [r3, #0] + 800739a: 683b ldr r3, [r7, #0] + 800739c: 8859 ldrh r1, [r3, #2] + 800739e: 683b ldr r3, [r7, #0] + 80073a0: f103 020c add.w r2, r3, #12 + 80073a4: f64f 73ff movw r3, #65535 ; 0xffff + 80073a8: 9301 str r3, [sp, #4] + 80073aa: f64f 73ff movw r3, #65535 ; 0xffff + 80073ae: 9300 str r3, [sp, #0] + 80073b0: 2310 movs r3, #16 + 80073b2: f7fe fa37 bl 8005824 } - 8007296: bf00 nop - 8007298: 3718 adds r7, #24 - 800729a: 46bd mov sp, r7 - 800729c: bd80 pop {r7, pc} + 80073b6: bf00 nop + 80073b8: 3718 adds r7, #24 + 80073ba: 46bd mov sp, r7 + 80073bc: bd80 pop {r7, pc} -0800729e : +080073be : * 很可惜 辛辛苦苦写的代码要被放弃 * 用算法实现遮挡关系计算真挺蠢 * * */ void Refresh_UI(UI *ui) { - 800729e: b580 push {r7, lr} - 80072a0: b086 sub sp, #24 - 80072a2: af00 add r7, sp, #0 - 80072a4: 6078 str r0, [r7, #4] + 80073be: b580 push {r7, lr} + 80073c0: b086 sub sp, #24 + 80073c2: af00 add r7, sp, #0 + 80073c4: 6078 str r0, [r7, #4] int flag=0; - 80072a6: 2300 movs r3, #0 - 80072a8: 617b str r3, [r7, #20] + 80073c6: 2300 movs r3, #0 + 80073c8: 617b str r3, [r7, #20] uint16_t dot_y=0,dot_x=0; - 80072aa: 2300 movs r3, #0 - 80072ac: 827b strh r3, [r7, #18] - 80072ae: 2300 movs r3, #0 - 80072b0: 823b strh r3, [r7, #16] + 80073ca: 2300 movs r3, #0 + 80073cc: 827b strh r3, [r7, #18] + 80073ce: 2300 movs r3, #0 + 80073d0: 823b strh r3, [r7, #16] //画背景 for(dot_y=ui->y;dot_yhigh;dot_y++) - 80072b2: 687b ldr r3, [r7, #4] - 80072b4: 88db ldrh r3, [r3, #6] - 80072b6: 827b strh r3, [r7, #18] - 80072b8: e01a b.n 80072f0 + 80073d2: 687b ldr r3, [r7, #4] + 80073d4: 88db ldrh r3, [r3, #6] + 80073d6: 827b strh r3, [r7, #18] + 80073d8: e01a b.n 8007410 { Inteface_SetCursor(dot_x,dot_y); - 80072ba: 8a7a ldrh r2, [r7, #18] - 80072bc: 8a3b ldrh r3, [r7, #16] - 80072be: 4611 mov r1, r2 - 80072c0: 4618 mov r0, r3 - 80072c2: f7ff fea1 bl 8007008 + 80073da: 8a7a ldrh r2, [r7, #18] + 80073dc: 8a3b ldrh r3, [r7, #16] + 80073de: 4611 mov r1, r2 + 80073e0: 4618 mov r0, r3 + 80073e2: f7ff fea1 bl 8007128 for(dot_x=ui->x;dot_xwidth;dot_x++) - 80072c6: 687b ldr r3, [r7, #4] - 80072c8: 889b ldrh r3, [r3, #4] - 80072ca: 823b strh r3, [r7, #16] - 80072cc: e008 b.n 80072e0 + 80073e6: 687b ldr r3, [r7, #4] + 80073e8: 889b ldrh r3, [r3, #4] + 80073ea: 823b strh r3, [r7, #16] + 80073ec: e008 b.n 8007400 { Inteface_SetColor(ui->background); - 80072ce: 687b ldr r3, [r7, #4] - 80072d0: 681b ldr r3, [r3, #0] - 80072d2: b29b uxth r3, r3 - 80072d4: 4618 mov r0, r3 - 80072d6: f7ff feb1 bl 800703c + 80073ee: 687b ldr r3, [r7, #4] + 80073f0: 681b ldr r3, [r3, #0] + 80073f2: b29b uxth r3, r3 + 80073f4: 4618 mov r0, r3 + 80073f6: f7ff feb1 bl 800715c for(dot_x=ui->x;dot_xwidth;dot_x++) - 80072da: 8a3b ldrh r3, [r7, #16] - 80072dc: 3301 adds r3, #1 - 80072de: 823b strh r3, [r7, #16] - 80072e0: 687b ldr r3, [r7, #4] - 80072e2: 891b ldrh r3, [r3, #8] - 80072e4: 8a3a ldrh r2, [r7, #16] - 80072e6: 429a cmp r2, r3 - 80072e8: d3f1 bcc.n 80072ce + 80073fa: 8a3b ldrh r3, [r7, #16] + 80073fc: 3301 adds r3, #1 + 80073fe: 823b strh r3, [r7, #16] + 8007400: 687b ldr r3, [r7, #4] + 8007402: 891b ldrh r3, [r3, #8] + 8007404: 8a3a ldrh r2, [r7, #16] + 8007406: 429a cmp r2, r3 + 8007408: d3f1 bcc.n 80073ee for(dot_y=ui->y;dot_yhigh;dot_y++) - 80072ea: 8a7b ldrh r3, [r7, #18] - 80072ec: 3301 adds r3, #1 - 80072ee: 827b strh r3, [r7, #18] - 80072f0: 687b ldr r3, [r7, #4] - 80072f2: 895b ldrh r3, [r3, #10] - 80072f4: 8a7a ldrh r2, [r7, #18] - 80072f6: 429a cmp r2, r3 - 80072f8: d3df bcc.n 80072ba + 800740a: 8a7b ldrh r3, [r7, #18] + 800740c: 3301 adds r3, #1 + 800740e: 827b strh r3, [r7, #18] + 8007410: 687b ldr r3, [r7, #4] + 8007412: 895b ldrh r3, [r3, #10] + 8007414: 8a7a ldrh r2, [r7, #18] + 8007416: 429a cmp r2, r3 + 8007418: d3df bcc.n 80073da } } windows_stack *temp_windows_stack,*temp_windows_stack2; temp_windows_stack=ui->windows; - 80072fa: 687b ldr r3, [r7, #4] - 80072fc: 68db ldr r3, [r3, #12] - 80072fe: 60fb str r3, [r7, #12] + 800741a: 687b ldr r3, [r7, #4] + 800741c: 68db ldr r3, [r3, #12] + 800741e: 60fb str r3, [r7, #12] do { if(temp_windows_stack!=NULL) - 8007300: 68fb ldr r3, [r7, #12] - 8007302: 2b00 cmp r3, #0 - 8007304: d00b beq.n 800731e + 8007420: 68fb ldr r3, [r7, #12] + 8007422: 2b00 cmp r3, #0 + 8007424: d00b beq.n 800743e { flag=1; - 8007306: 2301 movs r3, #1 - 8007308: 617b str r3, [r7, #20] + 8007426: 2301 movs r3, #1 + 8007428: 617b str r3, [r7, #20] Refresh_Window(ui,temp_windows_stack->window); - 800730a: 68fb ldr r3, [r7, #12] - 800730c: 685b ldr r3, [r3, #4] - 800730e: 4619 mov r1, r3 - 8007310: 6878 ldr r0, [r7, #4] - 8007312: f7ff ff3f bl 8007194 + 800742a: 68fb ldr r3, [r7, #12] + 800742c: 685b ldr r3, [r3, #4] + 800742e: 4619 mov r1, r3 + 8007430: 6878 ldr r0, [r7, #4] + 8007432: f7ff ff3f bl 80072b4 //绘制下一个窗口 temp_windows_stack=temp_windows_stack->next; - 8007316: 68fb ldr r3, [r7, #12] - 8007318: 689b ldr r3, [r3, #8] - 800731a: 60fb str r3, [r7, #12] - 800731c: e001 b.n 8007322 + 8007436: 68fb ldr r3, [r7, #12] + 8007438: 689b ldr r3, [r3, #8] + 800743a: 60fb str r3, [r7, #12] + 800743c: e001 b.n 8007442 }else { flag=0; - 800731e: 2300 movs r3, #0 - 8007320: 617b str r3, [r7, #20] + 800743e: 2300 movs r3, #0 + 8007440: 617b str r3, [r7, #20] } }while(flag); - 8007322: 697b ldr r3, [r7, #20] - 8007324: 2b00 cmp r3, #0 - 8007326: d1eb bne.n 8007300 + 8007442: 697b ldr r3, [r7, #20] + 8007444: 2b00 cmp r3, #0 + 8007446: d1eb bne.n 8007420 } } */ } - 8007328: bf00 nop - 800732a: bf00 nop - 800732c: 3718 adds r7, #24 - 800732e: 46bd mov sp, r7 - 8007330: bd80 pop {r7, pc} + 8007448: bf00 nop + 800744a: bf00 nop + 800744c: 3718 adds r7, #24 + 800744e: 46bd mov sp, r7 + 8007450: bd80 pop {r7, pc} -08007332 : +08007452 : #define BODY 1 #define BAR 2 #define CLOSE 3 uint8_t Chack(window *this_window,int x,int y) { - 8007332: b480 push {r7} - 8007334: b087 sub sp, #28 - 8007336: af00 add r7, sp, #0 - 8007338: 60f8 str r0, [r7, #12] - 800733a: 60b9 str r1, [r7, #8] - 800733c: 607a str r2, [r7, #4] + 8007452: b480 push {r7} + 8007454: b087 sub sp, #28 + 8007456: af00 add r7, sp, #0 + 8007458: 60f8 str r0, [r7, #12] + 800745a: 60b9 str r1, [r7, #8] + 800745c: 607a str r2, [r7, #4] int a=0; - 800733e: 2300 movs r3, #0 - 8007340: 617b str r3, [r7, #20] + 800745e: 2300 movs r3, #0 + 8007460: 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)))) - 8007342: 68fb ldr r3, [r7, #12] - 8007344: 881b ldrh r3, [r3, #0] - 8007346: 461a mov r2, r3 - 8007348: 68bb ldr r3, [r7, #8] - 800734a: 4293 cmp r3, r2 - 800734c: db19 blt.n 8007382 - 800734e: 68fb ldr r3, [r7, #12] - 8007350: 881b ldrh r3, [r3, #0] - 8007352: 461a mov r2, r3 - 8007354: 68fb ldr r3, [r7, #12] - 8007356: 889b ldrh r3, [r3, #4] - 8007358: 4413 add r3, r2 - 800735a: 68ba ldr r2, [r7, #8] - 800735c: 429a cmp r2, r3 - 800735e: da10 bge.n 8007382 - 8007360: 68fb ldr r3, [r7, #12] - 8007362: 885b ldrh r3, [r3, #2] - 8007364: 330f adds r3, #15 - 8007366: 687a ldr r2, [r7, #4] - 8007368: 429a cmp r2, r3 - 800736a: dd0a ble.n 8007382 - 800736c: 68fb ldr r3, [r7, #12] - 800736e: 885b ldrh r3, [r3, #2] - 8007370: 461a mov r2, r3 - 8007372: 68fb ldr r3, [r7, #12] - 8007374: 88db ldrh r3, [r3, #6] - 8007376: 4413 add r3, r2 - 8007378: 687a ldr r2, [r7, #4] - 800737a: 429a cmp r2, r3 - 800737c: da01 bge.n 8007382 + 8007462: 68fb ldr r3, [r7, #12] + 8007464: 881b ldrh r3, [r3, #0] + 8007466: 461a mov r2, r3 + 8007468: 68bb ldr r3, [r7, #8] + 800746a: 4293 cmp r3, r2 + 800746c: db19 blt.n 80074a2 + 800746e: 68fb ldr r3, [r7, #12] + 8007470: 881b ldrh r3, [r3, #0] + 8007472: 461a mov r2, r3 + 8007474: 68fb ldr r3, [r7, #12] + 8007476: 889b ldrh r3, [r3, #4] + 8007478: 4413 add r3, r2 + 800747a: 68ba ldr r2, [r7, #8] + 800747c: 429a cmp r2, r3 + 800747e: da10 bge.n 80074a2 + 8007480: 68fb ldr r3, [r7, #12] + 8007482: 885b ldrh r3, [r3, #2] + 8007484: 330f adds r3, #15 + 8007486: 687a ldr r2, [r7, #4] + 8007488: 429a cmp r2, r3 + 800748a: dd0a ble.n 80074a2 + 800748c: 68fb ldr r3, [r7, #12] + 800748e: 885b ldrh r3, [r3, #2] + 8007490: 461a mov r2, r3 + 8007492: 68fb ldr r3, [r7, #12] + 8007494: 88db ldrh r3, [r3, #6] + 8007496: 4413 add r3, r2 + 8007498: 687a ldr r2, [r7, #4] + 800749a: 429a cmp r2, r3 + 800749c: da01 bge.n 80074a2 { a=1; - 800737e: 2301 movs r3, #1 - 8007380: 617b str r3, [r7, #20] + 800749e: 2301 movs r3, #1 + 80074a0: 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)))) - 8007382: 68fb ldr r3, [r7, #12] - 8007384: 881b ldrh r3, [r3, #0] - 8007386: 461a mov r2, r3 - 8007388: 68bb ldr r3, [r7, #8] - 800738a: 4293 cmp r3, r2 - 800738c: db17 blt.n 80073be - 800738e: 68fb ldr r3, [r7, #12] - 8007390: 881b ldrh r3, [r3, #0] - 8007392: 461a mov r2, r3 - 8007394: 68fb ldr r3, [r7, #12] - 8007396: 889b ldrh r3, [r3, #4] - 8007398: 4413 add r3, r2 - 800739a: 3b10 subs r3, #16 - 800739c: 68ba ldr r2, [r7, #8] - 800739e: 429a cmp r2, r3 - 80073a0: da0d bge.n 80073be - 80073a2: 68fb ldr r3, [r7, #12] - 80073a4: 885b ldrh r3, [r3, #2] - 80073a6: 461a mov r2, r3 - 80073a8: 687b ldr r3, [r7, #4] - 80073aa: 4293 cmp r3, r2 - 80073ac: db07 blt.n 80073be - 80073ae: 68fb ldr r3, [r7, #12] - 80073b0: 885b ldrh r3, [r3, #2] - 80073b2: 330f adds r3, #15 - 80073b4: 687a ldr r2, [r7, #4] - 80073b6: 429a cmp r2, r3 - 80073b8: dc01 bgt.n 80073be + 80074a2: 68fb ldr r3, [r7, #12] + 80074a4: 881b ldrh r3, [r3, #0] + 80074a6: 461a mov r2, r3 + 80074a8: 68bb ldr r3, [r7, #8] + 80074aa: 4293 cmp r3, r2 + 80074ac: db17 blt.n 80074de + 80074ae: 68fb ldr r3, [r7, #12] + 80074b0: 881b ldrh r3, [r3, #0] + 80074b2: 461a mov r2, r3 + 80074b4: 68fb ldr r3, [r7, #12] + 80074b6: 889b ldrh r3, [r3, #4] + 80074b8: 4413 add r3, r2 + 80074ba: 3b10 subs r3, #16 + 80074bc: 68ba ldr r2, [r7, #8] + 80074be: 429a cmp r2, r3 + 80074c0: da0d bge.n 80074de + 80074c2: 68fb ldr r3, [r7, #12] + 80074c4: 885b ldrh r3, [r3, #2] + 80074c6: 461a mov r2, r3 + 80074c8: 687b ldr r3, [r7, #4] + 80074ca: 4293 cmp r3, r2 + 80074cc: db07 blt.n 80074de + 80074ce: 68fb ldr r3, [r7, #12] + 80074d0: 885b ldrh r3, [r3, #2] + 80074d2: 330f adds r3, #15 + 80074d4: 687a ldr r2, [r7, #4] + 80074d6: 429a cmp r2, r3 + 80074d8: dc01 bgt.n 80074de { a=2; - 80073ba: 2302 movs r3, #2 - 80073bc: 617b str r3, [r7, #20] + 80074da: 2302 movs r3, #2 + 80074dc: 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)))) - 80073be: 68fb ldr r3, [r7, #12] - 80073c0: 881b ldrh r3, [r3, #0] - 80073c2: 461a mov r2, r3 - 80073c4: 68fb ldr r3, [r7, #12] - 80073c6: 889b ldrh r3, [r3, #4] - 80073c8: 4413 add r3, r2 - 80073ca: 3b10 subs r3, #16 - 80073cc: 68ba ldr r2, [r7, #8] - 80073ce: 429a cmp r2, r3 - 80073d0: db16 blt.n 8007400 - 80073d2: 68fb ldr r3, [r7, #12] - 80073d4: 881b ldrh r3, [r3, #0] - 80073d6: 461a mov r2, r3 - 80073d8: 68fb ldr r3, [r7, #12] - 80073da: 889b ldrh r3, [r3, #4] - 80073dc: 4413 add r3, r2 - 80073de: 68ba ldr r2, [r7, #8] - 80073e0: 429a cmp r2, r3 - 80073e2: da0d bge.n 8007400 - 80073e4: 68fb ldr r3, [r7, #12] - 80073e6: 885b ldrh r3, [r3, #2] - 80073e8: 461a mov r2, r3 - 80073ea: 687b ldr r3, [r7, #4] - 80073ec: 4293 cmp r3, r2 - 80073ee: db07 blt.n 8007400 - 80073f0: 68fb ldr r3, [r7, #12] - 80073f2: 885b ldrh r3, [r3, #2] - 80073f4: 330f adds r3, #15 - 80073f6: 687a ldr r2, [r7, #4] - 80073f8: 429a cmp r2, r3 - 80073fa: dc01 bgt.n 8007400 + 80074de: 68fb ldr r3, [r7, #12] + 80074e0: 881b ldrh r3, [r3, #0] + 80074e2: 461a mov r2, r3 + 80074e4: 68fb ldr r3, [r7, #12] + 80074e6: 889b ldrh r3, [r3, #4] + 80074e8: 4413 add r3, r2 + 80074ea: 3b10 subs r3, #16 + 80074ec: 68ba ldr r2, [r7, #8] + 80074ee: 429a cmp r2, r3 + 80074f0: db16 blt.n 8007520 + 80074f2: 68fb ldr r3, [r7, #12] + 80074f4: 881b ldrh r3, [r3, #0] + 80074f6: 461a mov r2, r3 + 80074f8: 68fb ldr r3, [r7, #12] + 80074fa: 889b ldrh r3, [r3, #4] + 80074fc: 4413 add r3, r2 + 80074fe: 68ba ldr r2, [r7, #8] + 8007500: 429a cmp r2, r3 + 8007502: da0d bge.n 8007520 + 8007504: 68fb ldr r3, [r7, #12] + 8007506: 885b ldrh r3, [r3, #2] + 8007508: 461a mov r2, r3 + 800750a: 687b ldr r3, [r7, #4] + 800750c: 4293 cmp r3, r2 + 800750e: db07 blt.n 8007520 + 8007510: 68fb ldr r3, [r7, #12] + 8007512: 885b ldrh r3, [r3, #2] + 8007514: 330f adds r3, #15 + 8007516: 687a ldr r2, [r7, #4] + 8007518: 429a cmp r2, r3 + 800751a: dc01 bgt.n 8007520 { a=3; - 80073fc: 2303 movs r3, #3 - 80073fe: 617b str r3, [r7, #20] + 800751c: 2303 movs r3, #3 + 800751e: 617b str r3, [r7, #20] } return a; - 8007400: 697b ldr r3, [r7, #20] - 8007402: b2db uxtb r3, r3 + 8007520: 697b ldr r3, [r7, #20] + 8007522: b2db uxtb r3, r3 } - 8007404: 4618 mov r0, r3 - 8007406: 371c adds r7, #28 - 8007408: 46bd mov sp, r7 - 800740a: bc80 pop {r7} - 800740c: 4770 bx lr + 8007524: 4618 mov r0, r3 + 8007526: 371c adds r7, #28 + 8007528: 46bd mov sp, r7 + 800752a: bc80 pop {r7} + 800752c: 4770 bx lr ... -08007410 : +08007530 : void UI_Server(UI *ui) { - 8007410: b580 push {r7, lr} - 8007412: b088 sub sp, #32 - 8007414: af00 add r7, sp, #0 - 8007416: 6078 str r0, [r7, #4] + 8007530: b580 push {r7, lr} + 8007532: b088 sub sp, #32 + 8007534: af00 add r7, sp, #0 + 8007536: 6078 str r0, [r7, #4] windows_stack *temp_windows_stack=NULL; - 8007418: 2300 movs r3, #0 - 800741a: 61fb str r3, [r7, #28] + 8007538: 2300 movs r3, #0 + 800753a: 61fb str r3, [r7, #28] window *temp_window; //touch_device *temp_touch=NULL; int flag=0; - 800741c: 2300 movs r3, #0 - 800741e: 61bb str r3, [r7, #24] + 800753c: 2300 movs r3, #0 + 800753e: 61bb str r3, [r7, #24] uint8_t hit_flag=0; - 8007420: 2300 movs r3, #0 - 8007422: 75fb strb r3, [r7, #23] + 8007540: 2300 movs r3, #0 + 8007542: 75fb strb r3, [r7, #23] int t_x,t_y; //touch //temp_touch=ui->touch; if(t0.c)//TP_XY(&t_x, &t_y)) - 8007424: 4b76 ldr r3, [pc, #472] ; (8007600 ) - 8007426: 7b1b ldrb r3, [r3, #12] - 8007428: f003 0302 and.w r3, r3, #2 - 800742c: b2db uxtb r3, r3 - 800742e: 2b00 cmp r3, #0 - 8007430: f000 80ba beq.w 80075a8 + 8007544: 4b76 ldr r3, [pc, #472] ; (8007720 ) + 8007546: 7b1b ldrb r3, [r3, #12] + 8007548: f003 0302 and.w r3, r3, #2 + 800754c: b2db uxtb r3, r3 + 800754e: 2b00 cmp r3, #0 + 8007550: f000 80ba beq.w 80076c8 { if(t0.d) - 8007434: 4b72 ldr r3, [pc, #456] ; (8007600 ) - 8007436: 7b1b ldrb r3, [r3, #12] - 8007438: f003 0304 and.w r3, r3, #4 - 800743c: b2db uxtb r3, r3 - 800743e: 2b00 cmp r3, #0 - 8007440: f000 80c8 beq.w 80075d4 + 8007554: 4b72 ldr r3, [pc, #456] ; (8007720 ) + 8007556: 7b1b ldrb r3, [r3, #12] + 8007558: f003 0304 and.w r3, r3, #4 + 800755c: b2db uxtb r3, r3 + 800755e: 2b00 cmp r3, #0 + 8007560: f000 80c8 beq.w 80076f4 { t_x=t0.pix_x; - 8007444: 4b6e ldr r3, [pc, #440] ; (8007600 ) - 8007446: 685b ldr r3, [r3, #4] - 8007448: 613b str r3, [r7, #16] + 8007564: 4b6e ldr r3, [pc, #440] ; (8007720 ) + 8007566: 685b ldr r3, [r3, #4] + 8007568: 613b str r3, [r7, #16] t_y=t0.pix_y; - 800744a: 4b6d ldr r3, [pc, #436] ; (8007600 ) - 800744c: 689b ldr r3, [r3, #8] - 800744e: 60fb str r3, [r7, #12] + 800756a: 4b6d ldr r3, [pc, #436] ; (8007720 ) + 800756c: 689b ldr r3, [r3, #8] + 800756e: 60fb str r3, [r7, #12] temp_window=NULL; - 8007450: 2300 movs r3, #0 - 8007452: 60bb str r3, [r7, #8] + 8007570: 2300 movs r3, #0 + 8007572: 60bb str r3, [r7, #8] if(ui->moveed_windwos==NULL) - 8007454: 687b ldr r3, [r7, #4] - 8007456: 695b ldr r3, [r3, #20] - 8007458: 2b00 cmp r3, #0 - 800745a: f040 8088 bne.w 800756e + 8007574: 687b ldr r3, [r7, #4] + 8007576: 695b ldr r3, [r3, #20] + 8007578: 2b00 cmp r3, #0 + 800757a: f040 8088 bne.w 800768e { if(ui->First_click_flag==0) - 800745e: 687b ldr r3, [r7, #4] - 8007460: f893 3020 ldrb.w r3, [r3, #32] - 8007464: f003 0302 and.w r3, r3, #2 - 8007468: b2db uxtb r3, r3 - 800746a: 2b00 cmp r3, #0 - 800746c: f040 80b2 bne.w 80075d4 + 800757e: 687b ldr r3, [r7, #4] + 8007580: f893 3020 ldrb.w r3, [r3, #32] + 8007584: f003 0302 and.w r3, r3, #2 + 8007588: b2db uxtb r3, r3 + 800758a: 2b00 cmp r3, #0 + 800758c: f040 80b2 bne.w 80076f4 { ui->First_click_flag=1; - 8007470: 687a ldr r2, [r7, #4] - 8007472: f892 3020 ldrb.w r3, [r2, #32] - 8007476: f043 0302 orr.w r3, r3, #2 - 800747a: f882 3020 strb.w r3, [r2, #32] + 8007590: 687a ldr r2, [r7, #4] + 8007592: f892 3020 ldrb.w r3, [r2, #32] + 8007596: f043 0302 orr.w r3, r3, #2 + 800759a: f882 3020 strb.w r3, [r2, #32] temp_windows_stack=ui->last_windows; //获取ui中最前端的窗口 从前往后扫描 - 800747e: 687b ldr r3, [r7, #4] - 8007480: 691b ldr r3, [r3, #16] - 8007482: 61fb str r3, [r7, #28] + 800759e: 687b ldr r3, [r7, #4] + 80075a0: 691b ldr r3, [r3, #16] + 80075a2: 61fb str r3, [r7, #28] do { if(temp_windows_stack!=NULL) //如果有窗口就开始扫描 - 8007484: 69fb ldr r3, [r7, #28] - 8007486: 2b00 cmp r3, #0 - 8007488: d06b beq.n 8007562 + 80075a4: 69fb ldr r3, [r7, #28] + 80075a6: 2b00 cmp r3, #0 + 80075a8: d06b beq.n 8007682 { flag=1; //检查到有窗口 需要循环一次以检查是否有下一个窗口 - 800748a: 2301 movs r3, #1 - 800748c: 61bb str r3, [r7, #24] + 80075aa: 2301 movs r3, #1 + 80075ac: 61bb str r3, [r7, #24] // temp_window=temp_windows_stack->window; //取出这个窗口 - 800748e: 69fb ldr r3, [r7, #28] - 8007490: 685b ldr r3, [r3, #4] - 8007492: 60bb str r3, [r7, #8] + 80075ae: 69fb ldr r3, [r7, #28] + 80075b0: 685b ldr r3, [r3, #4] + 80075b2: 60bb str r3, [r7, #8] hit_flag=Chack(temp_window,t_x,t_y); //检查触摸是否命中 直接返回命中窗口的位置 - 8007494: 68fa ldr r2, [r7, #12] - 8007496: 6939 ldr r1, [r7, #16] - 8007498: 68b8 ldr r0, [r7, #8] - 800749a: f7ff ff4a bl 8007332 - 800749e: 4603 mov r3, r0 - 80074a0: 75fb strb r3, [r7, #23] + 80075b4: 68fa ldr r2, [r7, #12] + 80075b6: 6939 ldr r1, [r7, #16] + 80075b8: 68b8 ldr r0, [r7, #8] + 80075ba: f7ff ff4a bl 8007452 + 80075be: 4603 mov r3, r0 + 80075c0: 75fb strb r3, [r7, #23] if(hit_flag) // 命中继续 - 80074a2: 7dfb ldrb r3, [r7, #23] - 80074a4: 2b00 cmp r3, #0 - 80074a6: d058 beq.n 800755a + 80075c2: 7dfb ldrb r3, [r7, #23] + 80075c4: 2b00 cmp r3, #0 + 80075c6: d058 beq.n 800767a { if(temp_windows_stack!=ui->last_windows) //检查是否最前端的窗口 如果不是就放最前面 - 80074a8: 687b ldr r3, [r7, #4] - 80074aa: 691b ldr r3, [r3, #16] - 80074ac: 69fa ldr r2, [r7, #28] - 80074ae: 429a cmp r2, r3 - 80074b0: d02c beq.n 800750c + 80075c8: 687b ldr r3, [r7, #4] + 80075ca: 691b ldr r3, [r3, #16] + 80075cc: 69fa ldr r2, [r7, #28] + 80075ce: 429a cmp r2, r3 + 80075d0: d02c beq.n 800762c { if(temp_windows_stack!=ui->windows) //检查是否最后端的窗口 因为显示是从最后端往前显示的 所以ui有最后端窗口的入口 - 80074b2: 687b ldr r3, [r7, #4] - 80074b4: 68db ldr r3, [r3, #12] - 80074b6: 69fa ldr r2, [r7, #28] - 80074b8: 429a cmp r2, r3 - 80074ba: d00a beq.n 80074d2 + 80075d2: 687b ldr r3, [r7, #4] + 80075d4: 68db ldr r3, [r3, #12] + 80075d6: 69fa ldr r2, [r7, #28] + 80075d8: 429a cmp r2, r3 + 80075da: d00a beq.n 80075f2 { temp_windows_stack->up->next=temp_windows_stack->next; //取出这个节点 把节点的上下补上链接 - 80074bc: 69fb ldr r3, [r7, #28] - 80074be: 681b ldr r3, [r3, #0] - 80074c0: 69fa ldr r2, [r7, #28] - 80074c2: 6892 ldr r2, [r2, #8] - 80074c4: 609a str r2, [r3, #8] + 80075dc: 69fb ldr r3, [r7, #28] + 80075de: 681b ldr r3, [r3, #0] + 80075e0: 69fa ldr r2, [r7, #28] + 80075e2: 6892 ldr r2, [r2, #8] + 80075e4: 609a str r2, [r3, #8] temp_windows_stack->next->up=temp_windows_stack->up; - 80074c6: 69fb ldr r3, [r7, #28] - 80074c8: 689b ldr r3, [r3, #8] - 80074ca: 69fa ldr r2, [r7, #28] - 80074cc: 6812 ldr r2, [r2, #0] - 80074ce: 601a str r2, [r3, #0] - 80074d0: e007 b.n 80074e2 + 80075e6: 69fb ldr r3, [r7, #28] + 80075e8: 689b ldr r3, [r3, #8] + 80075ea: 69fa ldr r2, [r7, #28] + 80075ec: 6812 ldr r2, [r2, #0] + 80075ee: 601a str r2, [r3, #0] + 80075f0: e007 b.n 8007602 }else { ui->windows=temp_windows_stack->next; //如果是最后端的窗口 则取出这个节点后入口就变下一个节点了 - 80074d2: 69fb ldr r3, [r7, #28] - 80074d4: 689a ldr r2, [r3, #8] - 80074d6: 687b ldr r3, [r7, #4] - 80074d8: 60da str r2, [r3, #12] + 80075f2: 69fb ldr r3, [r7, #28] + 80075f4: 689a ldr r2, [r3, #8] + 80075f6: 687b ldr r3, [r7, #4] + 80075f8: 60da str r2, [r3, #12] ui->windows->up=NULL; //倒数第二变最后端 在走就没了 所以要清空指针 - 80074da: 687b ldr r3, [r7, #4] - 80074dc: 68db ldr r3, [r3, #12] - 80074de: 2200 movs r2, #0 - 80074e0: 601a str r2, [r3, #0] + 80075fa: 687b ldr r3, [r7, #4] + 80075fc: 68db ldr r3, [r3, #12] + 80075fe: 2200 movs r2, #0 + 8007600: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; //取出的节点要放在最前端 所以 无法再往前 清空往前的指针 - 80074e2: 69fb ldr r3, [r7, #28] - 80074e4: 2200 movs r2, #0 - 80074e6: 609a str r2, [r3, #8] + 8007602: 69fb ldr r3, [r7, #28] + 8007604: 2200 movs r2, #0 + 8007606: 609a str r2, [r3, #8] temp_windows_stack->up=ui->last_windows; //上一个指针就是原来的最后一个 - 80074e8: 687b ldr r3, [r7, #4] - 80074ea: 691a ldr r2, [r3, #16] - 80074ec: 69fb ldr r3, [r7, #28] - 80074ee: 601a str r2, [r3, #0] + 8007608: 687b ldr r3, [r7, #4] + 800760a: 691a ldr r2, [r3, #16] + 800760c: 69fb ldr r3, [r7, #28] + 800760e: 601a str r2, [r3, #0] ui->last_windows->next=temp_windows_stack; //原来的最后一个指向现在的最后一个 - 80074f0: 687b ldr r3, [r7, #4] - 80074f2: 691b ldr r3, [r3, #16] - 80074f4: 69fa ldr r2, [r7, #28] - 80074f6: 609a str r2, [r3, #8] + 8007610: 687b ldr r3, [r7, #4] + 8007612: 691b ldr r3, [r3, #16] + 8007614: 69fa ldr r2, [r7, #28] + 8007616: 609a str r2, [r3, #8] ui->last_windows=temp_windows_stack; //更新ui中的最后一个的入口 - 80074f8: 687b ldr r3, [r7, #4] - 80074fa: 69fa ldr r2, [r7, #28] - 80074fc: 611a str r2, [r3, #16] + 8007618: 687b ldr r3, [r7, #4] + 800761a: 69fa ldr r2, [r7, #28] + 800761c: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 80074fe: 687a ldr r2, [r7, #4] - 8007500: f892 3020 ldrb.w r3, [r2, #32] - 8007504: f043 0304 orr.w r3, r3, #4 - 8007508: f882 3020 strb.w r3, [r2, #32] + 800761e: 687a ldr r2, [r7, #4] + 8007620: f892 3020 ldrb.w r3, [r2, #32] + 8007624: f043 0304 orr.w r3, r3, #4 + 8007628: f882 3020 strb.w r3, [r2, #32] } //检查标中窗口的什么位置 switch(hit_flag) - 800750c: 7dfb ldrb r3, [r7, #23] - 800750e: 2b03 cmp r3, #3 - 8007510: d006 beq.n 8007520 - 8007512: 2b03 cmp r3, #3 - 8007514: dc1f bgt.n 8007556 - 8007516: 2b01 cmp r3, #1 - 8007518: d01c beq.n 8007554 - 800751a: 2b02 cmp r3, #2 - 800751c: d008 beq.n 8007530 - 800751e: e01a b.n 8007556 + 800762c: 7dfb ldrb r3, [r7, #23] + 800762e: 2b03 cmp r3, #3 + 8007630: d006 beq.n 8007640 + 8007632: 2b03 cmp r3, #3 + 8007634: dc1f bgt.n 8007676 + 8007636: 2b01 cmp r3, #1 + 8007638: d01c beq.n 8007674 + 800763a: 2b02 cmp r3, #2 + 800763c: d008 beq.n 8007650 + 800763e: e01a b.n 8007676 { case CLOSE: //Close_Windows_Stack(ui,temp_windows_stack); ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 8007520: 687a ldr r2, [r7, #4] - 8007522: f892 3020 ldrb.w r3, [r2, #32] - 8007526: f043 0304 orr.w r3, r3, #4 - 800752a: f882 3020 strb.w r3, [r2, #32] + 8007640: 687a ldr r2, [r7, #4] + 8007642: f892 3020 ldrb.w r3, [r2, #32] + 8007646: f043 0304 orr.w r3, r3, #4 + 800764a: f882 3020 strb.w r3, [r2, #32] break; - 800752e: e012 b.n 8007556 + 800764e: e012 b.n 8007676 case BAR: ui->moveed_windwos=temp_window; - 8007530: 687b ldr r3, [r7, #4] - 8007532: 68ba ldr r2, [r7, #8] - 8007534: 615a str r2, [r3, #20] + 8007650: 687b ldr r3, [r7, #4] + 8007652: 68ba ldr r2, [r7, #8] + 8007654: 615a str r2, [r3, #20] ui->move_x=t_x-temp_window->x; - 8007536: 68bb ldr r3, [r7, #8] - 8007538: 881b ldrh r3, [r3, #0] - 800753a: 461a mov r2, r3 - 800753c: 693b ldr r3, [r7, #16] - 800753e: 1a9a subs r2, r3, r2 - 8007540: 687b ldr r3, [r7, #4] - 8007542: 619a str r2, [r3, #24] + 8007656: 68bb ldr r3, [r7, #8] + 8007658: 881b ldrh r3, [r3, #0] + 800765a: 461a mov r2, r3 + 800765c: 693b ldr r3, [r7, #16] + 800765e: 1a9a subs r2, r3, r2 + 8007660: 687b ldr r3, [r7, #4] + 8007662: 619a str r2, [r3, #24] ui->move_y=t_y-temp_window->y; - 8007544: 68bb ldr r3, [r7, #8] - 8007546: 885b ldrh r3, [r3, #2] - 8007548: 461a mov r2, r3 - 800754a: 68fb ldr r3, [r7, #12] - 800754c: 1a9a subs r2, r3, r2 - 800754e: 687b ldr r3, [r7, #4] - 8007550: 61da str r2, [r3, #28] + 8007664: 68bb ldr r3, [r7, #8] + 8007666: 885b ldrh r3, [r3, #2] + 8007668: 461a mov r2, r3 + 800766a: 68fb ldr r3, [r7, #12] + 800766c: 1a9a subs r2, r3, r2 + 800766e: 687b ldr r3, [r7, #4] + 8007670: 61da str r2, [r3, #28] break; - 8007552: e000 b.n 8007556 + 8007672: e000 b.n 8007676 case BODY: //ui->background=temp_windows_stack->window->background; //ui->refresh_ui_flag=1; break; - 8007554: bf00 nop + 8007674: bf00 nop } flag=0; //结束扫描 防止穿透当前窗口 - 8007556: 2300 movs r3, #0 - 8007558: 61bb str r3, [r7, #24] + 8007676: 2300 movs r3, #0 + 8007678: 61bb str r3, [r7, #24] } temp_windows_stack=temp_windows_stack->up; //往前扫描 - 800755a: 69fb ldr r3, [r7, #28] - 800755c: 681b ldr r3, [r3, #0] - 800755e: 61fb str r3, [r7, #28] - 8007560: e001 b.n 8007566 + 800767a: 69fb ldr r3, [r7, #28] + 800767c: 681b ldr r3, [r3, #0] + 800767e: 61fb str r3, [r7, #28] + 8007680: e001 b.n 8007686 }else { flag=0; //一个窗口都没有 直接结束循环 - 8007562: 2300 movs r3, #0 - 8007564: 61bb str r3, [r7, #24] + 8007682: 2300 movs r3, #0 + 8007684: 61bb str r3, [r7, #24] } }while(flag); - 8007566: 69bb ldr r3, [r7, #24] - 8007568: 2b00 cmp r3, #0 - 800756a: d18b bne.n 8007484 - 800756c: e032 b.n 80075d4 + 8007686: 69bb ldr r3, [r7, #24] + 8007688: 2b00 cmp r3, #0 + 800768a: d18b bne.n 80075a4 + 800768c: e032 b.n 80076f4 } }else { temp_window=ui->moveed_windwos; - 800756e: 687b ldr r3, [r7, #4] - 8007570: 695b ldr r3, [r3, #20] - 8007572: 60bb str r3, [r7, #8] + 800768e: 687b ldr r3, [r7, #4] + 8007690: 695b ldr r3, [r3, #20] + 8007692: 60bb str r3, [r7, #8] temp_window->x=t_x-ui->move_x; - 8007574: 693b ldr r3, [r7, #16] - 8007576: b29a uxth r2, r3 - 8007578: 687b ldr r3, [r7, #4] - 800757a: 699b ldr r3, [r3, #24] - 800757c: b29b uxth r3, r3 - 800757e: 1ad3 subs r3, r2, r3 - 8007580: b29a uxth r2, r3 - 8007582: 68bb ldr r3, [r7, #8] - 8007584: 801a strh r2, [r3, #0] + 8007694: 693b ldr r3, [r7, #16] + 8007696: b29a uxth r2, r3 + 8007698: 687b ldr r3, [r7, #4] + 800769a: 699b ldr r3, [r3, #24] + 800769c: b29b uxth r3, r3 + 800769e: 1ad3 subs r3, r2, r3 + 80076a0: b29a uxth r2, r3 + 80076a2: 68bb ldr r3, [r7, #8] + 80076a4: 801a strh r2, [r3, #0] temp_window->y=t_y-ui->move_y; - 8007586: 68fb ldr r3, [r7, #12] - 8007588: b29a uxth r2, r3 - 800758a: 687b ldr r3, [r7, #4] - 800758c: 69db ldr r3, [r3, #28] - 800758e: b29b uxth r3, r3 - 8007590: 1ad3 subs r3, r2, r3 - 8007592: b29a uxth r2, r3 - 8007594: 68bb ldr r3, [r7, #8] - 8007596: 805a strh r2, [r3, #2] + 80076a6: 68fb ldr r3, [r7, #12] + 80076a8: b29a uxth r2, r3 + 80076aa: 687b ldr r3, [r7, #4] + 80076ac: 69db ldr r3, [r3, #28] + 80076ae: b29b uxth r3, r3 + 80076b0: 1ad3 subs r3, r2, r3 + 80076b2: b29a uxth r2, r3 + 80076b4: 68bb ldr r3, [r7, #8] + 80076b6: 805a strh r2, [r3, #2] ui->refresh_ui_flag=1; - 8007598: 687a ldr r2, [r7, #4] - 800759a: f892 3020 ldrb.w r3, [r2, #32] - 800759e: f043 0304 orr.w r3, r3, #4 - 80075a2: f882 3020 strb.w r3, [r2, #32] - 80075a6: e015 b.n 80075d4 + 80076b8: 687a ldr r2, [r7, #4] + 80076ba: f892 3020 ldrb.w r3, [r2, #32] + 80076be: f043 0304 orr.w r3, r3, #4 + 80076c2: f882 3020 strb.w r3, [r2, #32] + 80076c6: e015 b.n 80076f4 }else { if(ui->First_click_flag==1) - 80075a8: 687b ldr r3, [r7, #4] - 80075aa: f893 3020 ldrb.w r3, [r3, #32] - 80075ae: f003 0302 and.w r3, r3, #2 - 80075b2: b2db uxtb r3, r3 - 80075b4: 2b00 cmp r3, #0 - 80075b6: d006 beq.n 80075c6 + 80076c8: 687b ldr r3, [r7, #4] + 80076ca: f893 3020 ldrb.w r3, [r3, #32] + 80076ce: f003 0302 and.w r3, r3, #2 + 80076d2: b2db uxtb r3, r3 + 80076d4: 2b00 cmp r3, #0 + 80076d6: d006 beq.n 80076e6 { ui->First_click_flag=0; - 80075b8: 687a ldr r2, [r7, #4] - 80075ba: f892 3020 ldrb.w r3, [r2, #32] - 80075be: f36f 0341 bfc r3, #1, #1 - 80075c2: f882 3020 strb.w r3, [r2, #32] + 80076d8: 687a ldr r2, [r7, #4] + 80076da: f892 3020 ldrb.w r3, [r2, #32] + 80076de: f36f 0341 bfc r3, #1, #1 + 80076e2: f882 3020 strb.w r3, [r2, #32] } if(ui->moveed_windwos!=NULL) - 80075c6: 687b ldr r3, [r7, #4] - 80075c8: 695b ldr r3, [r3, #20] - 80075ca: 2b00 cmp r3, #0 - 80075cc: d002 beq.n 80075d4 + 80076e6: 687b ldr r3, [r7, #4] + 80076e8: 695b ldr r3, [r3, #20] + 80076ea: 2b00 cmp r3, #0 + 80076ec: d002 beq.n 80076f4 { ui->moveed_windwos=NULL; - 80075ce: 687b ldr r3, [r7, #4] - 80075d0: 2200 movs r2, #0 - 80075d2: 615a str r2, [r3, #20] + 80076ee: 687b ldr r3, [r7, #4] + 80076f0: 2200 movs r2, #0 + 80076f2: 615a str r2, [r3, #20] } } //display if(ui->refresh_ui_flag==1) - 80075d4: 687b ldr r3, [r7, #4] - 80075d6: f893 3020 ldrb.w r3, [r3, #32] - 80075da: f003 0304 and.w r3, r3, #4 - 80075de: b2db uxtb r3, r3 - 80075e0: 2b00 cmp r3, #0 - 80075e2: d009 beq.n 80075f8 + 80076f4: 687b ldr r3, [r7, #4] + 80076f6: f893 3020 ldrb.w r3, [r3, #32] + 80076fa: f003 0304 and.w r3, r3, #4 + 80076fe: b2db uxtb r3, r3 + 8007700: 2b00 cmp r3, #0 + 8007702: d009 beq.n 8007718 { ui->refresh_ui_flag=0; - 80075e4: 687a ldr r2, [r7, #4] - 80075e6: f892 3020 ldrb.w r3, [r2, #32] - 80075ea: f36f 0382 bfc r3, #2, #1 - 80075ee: f882 3020 strb.w r3, [r2, #32] + 8007704: 687a ldr r2, [r7, #4] + 8007706: f892 3020 ldrb.w r3, [r2, #32] + 800770a: f36f 0382 bfc r3, #2, #1 + 800770e: f882 3020 strb.w r3, [r2, #32] Refresh_UI(ui); - 80075f2: 6878 ldr r0, [r7, #4] - 80075f4: f7ff fe53 bl 800729e + 8007712: 6878 ldr r0, [r7, #4] + 8007714: f7ff fe53 bl 80073be } } - 80075f8: bf00 nop - 80075fa: 3720 adds r7, #32 - 80075fc: 46bd mov sp, r7 - 80075fe: bd80 pop {r7, pc} - 8007600: 2000038c .word 0x2000038c + 8007718: bf00 nop + 800771a: 3720 adds r7, #32 + 800771c: 46bd mov sp, r7 + 800771e: bd80 pop {r7, pc} + 8007720: 2000038c .word 0x2000038c -08007604 <__errno>: - 8007604: 4b01 ldr r3, [pc, #4] ; (800760c <__errno+0x8>) - 8007606: 6818 ldr r0, [r3, #0] - 8007608: 4770 bx lr - 800760a: bf00 nop - 800760c: 20000014 .word 0x20000014 +08007724 <__errno>: + 8007724: 4b01 ldr r3, [pc, #4] ; (800772c <__errno+0x8>) + 8007726: 6818 ldr r0, [r3, #0] + 8007728: 4770 bx lr + 800772a: bf00 nop + 800772c: 20000014 .word 0x20000014 -08007610 <__libc_init_array>: - 8007610: b570 push {r4, r5, r6, lr} - 8007612: 2600 movs r6, #0 - 8007614: 4d0c ldr r5, [pc, #48] ; (8007648 <__libc_init_array+0x38>) - 8007616: 4c0d ldr r4, [pc, #52] ; (800764c <__libc_init_array+0x3c>) - 8007618: 1b64 subs r4, r4, r5 - 800761a: 10a4 asrs r4, r4, #2 - 800761c: 42a6 cmp r6, r4 - 800761e: d109 bne.n 8007634 <__libc_init_array+0x24> - 8007620: f002 fec2 bl 800a3a8 <_init> - 8007624: 2600 movs r6, #0 - 8007626: 4d0a ldr r5, [pc, #40] ; (8007650 <__libc_init_array+0x40>) - 8007628: 4c0a ldr r4, [pc, #40] ; (8007654 <__libc_init_array+0x44>) - 800762a: 1b64 subs r4, r4, r5 - 800762c: 10a4 asrs r4, r4, #2 - 800762e: 42a6 cmp r6, r4 - 8007630: d105 bne.n 800763e <__libc_init_array+0x2e> - 8007632: bd70 pop {r4, r5, r6, pc} - 8007634: f855 3b04 ldr.w r3, [r5], #4 - 8007638: 4798 blx r3 - 800763a: 3601 adds r6, #1 - 800763c: e7ee b.n 800761c <__libc_init_array+0xc> - 800763e: f855 3b04 ldr.w r3, [r5], #4 - 8007642: 4798 blx r3 - 8007644: 3601 adds r6, #1 - 8007646: e7f2 b.n 800762e <__libc_init_array+0x1e> - 8007648: 0800b31c .word 0x0800b31c - 800764c: 0800b31c .word 0x0800b31c - 8007650: 0800b31c .word 0x0800b31c - 8007654: 0800b320 .word 0x0800b320 +08007730 <__libc_init_array>: + 8007730: b570 push {r4, r5, r6, lr} + 8007732: 2600 movs r6, #0 + 8007734: 4d0c ldr r5, [pc, #48] ; (8007768 <__libc_init_array+0x38>) + 8007736: 4c0d ldr r4, [pc, #52] ; (800776c <__libc_init_array+0x3c>) + 8007738: 1b64 subs r4, r4, r5 + 800773a: 10a4 asrs r4, r4, #2 + 800773c: 42a6 cmp r6, r4 + 800773e: d109 bne.n 8007754 <__libc_init_array+0x24> + 8007740: f002 ffae bl 800a6a0 <_init> + 8007744: 2600 movs r6, #0 + 8007746: 4d0a ldr r5, [pc, #40] ; (8007770 <__libc_init_array+0x40>) + 8007748: 4c0a ldr r4, [pc, #40] ; (8007774 <__libc_init_array+0x44>) + 800774a: 1b64 subs r4, r4, r5 + 800774c: 10a4 asrs r4, r4, #2 + 800774e: 42a6 cmp r6, r4 + 8007750: d105 bne.n 800775e <__libc_init_array+0x2e> + 8007752: bd70 pop {r4, r5, r6, pc} + 8007754: f855 3b04 ldr.w r3, [r5], #4 + 8007758: 4798 blx r3 + 800775a: 3601 adds r6, #1 + 800775c: e7ee b.n 800773c <__libc_init_array+0xc> + 800775e: f855 3b04 ldr.w r3, [r5], #4 + 8007762: 4798 blx r3 + 8007764: 3601 adds r6, #1 + 8007766: e7f2 b.n 800774e <__libc_init_array+0x1e> + 8007768: 0800b66c .word 0x0800b66c + 800776c: 0800b66c .word 0x0800b66c + 8007770: 0800b66c .word 0x0800b66c + 8007774: 0800b670 .word 0x0800b670 -08007658 : - 8007658: 4b02 ldr r3, [pc, #8] ; (8007664 ) - 800765a: 4601 mov r1, r0 - 800765c: 6818 ldr r0, [r3, #0] - 800765e: f000 b85f b.w 8007720 <_malloc_r> - 8007662: bf00 nop - 8007664: 20000014 .word 0x20000014 +08007778 : + 8007778: 4b02 ldr r3, [pc, #8] ; (8007784 ) + 800777a: 4601 mov r1, r0 + 800777c: 6818 ldr r0, [r3, #0] + 800777e: f000 b85f b.w 8007840 <_malloc_r> + 8007782: bf00 nop + 8007784: 20000014 .word 0x20000014 -08007668 : - 8007668: 4b02 ldr r3, [pc, #8] ; (8007674 ) - 800766a: 4601 mov r1, r0 - 800766c: 6818 ldr r0, [r3, #0] - 800766e: f000 b80b b.w 8007688 <_free_r> - 8007672: bf00 nop - 8007674: 20000014 .word 0x20000014 +08007788 : + 8007788: 4b02 ldr r3, [pc, #8] ; (8007794 ) + 800778a: 4601 mov r1, r0 + 800778c: 6818 ldr r0, [r3, #0] + 800778e: f000 b80b b.w 80077a8 <_free_r> + 8007792: bf00 nop + 8007794: 20000014 .word 0x20000014 -08007678 : - 8007678: 4603 mov r3, r0 - 800767a: 4402 add r2, r0 - 800767c: 4293 cmp r3, r2 - 800767e: d100 bne.n 8007682 - 8007680: 4770 bx lr - 8007682: f803 1b01 strb.w r1, [r3], #1 - 8007686: e7f9 b.n 800767c +08007798 : + 8007798: 4603 mov r3, r0 + 800779a: 4402 add r2, r0 + 800779c: 4293 cmp r3, r2 + 800779e: d100 bne.n 80077a2 + 80077a0: 4770 bx lr + 80077a2: f803 1b01 strb.w r1, [r3], #1 + 80077a6: e7f9 b.n 800779c -08007688 <_free_r>: - 8007688: b538 push {r3, r4, r5, lr} - 800768a: 4605 mov r5, r0 - 800768c: 2900 cmp r1, #0 - 800768e: d043 beq.n 8007718 <_free_r+0x90> - 8007690: f851 3c04 ldr.w r3, [r1, #-4] - 8007694: 1f0c subs r4, r1, #4 - 8007696: 2b00 cmp r3, #0 - 8007698: bfb8 it lt - 800769a: 18e4 addlt r4, r4, r3 - 800769c: f001 fbc6 bl 8008e2c <__malloc_lock> - 80076a0: 4a1e ldr r2, [pc, #120] ; (800771c <_free_r+0x94>) - 80076a2: 6813 ldr r3, [r2, #0] - 80076a4: 4610 mov r0, r2 - 80076a6: b933 cbnz r3, 80076b6 <_free_r+0x2e> - 80076a8: 6063 str r3, [r4, #4] - 80076aa: 6014 str r4, [r2, #0] - 80076ac: 4628 mov r0, r5 - 80076ae: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 80076b2: f001 bbc1 b.w 8008e38 <__malloc_unlock> - 80076b6: 42a3 cmp r3, r4 - 80076b8: d90a bls.n 80076d0 <_free_r+0x48> - 80076ba: 6821 ldr r1, [r4, #0] - 80076bc: 1862 adds r2, r4, r1 - 80076be: 4293 cmp r3, r2 - 80076c0: bf01 itttt eq - 80076c2: 681a ldreq r2, [r3, #0] - 80076c4: 685b ldreq r3, [r3, #4] - 80076c6: 1852 addeq r2, r2, r1 - 80076c8: 6022 streq r2, [r4, #0] - 80076ca: 6063 str r3, [r4, #4] - 80076cc: 6004 str r4, [r0, #0] - 80076ce: e7ed b.n 80076ac <_free_r+0x24> - 80076d0: 461a mov r2, r3 - 80076d2: 685b ldr r3, [r3, #4] - 80076d4: b10b cbz r3, 80076da <_free_r+0x52> - 80076d6: 42a3 cmp r3, r4 - 80076d8: d9fa bls.n 80076d0 <_free_r+0x48> - 80076da: 6811 ldr r1, [r2, #0] - 80076dc: 1850 adds r0, r2, r1 - 80076de: 42a0 cmp r0, r4 - 80076e0: d10b bne.n 80076fa <_free_r+0x72> - 80076e2: 6820 ldr r0, [r4, #0] - 80076e4: 4401 add r1, r0 - 80076e6: 1850 adds r0, r2, r1 - 80076e8: 4283 cmp r3, r0 - 80076ea: 6011 str r1, [r2, #0] - 80076ec: d1de bne.n 80076ac <_free_r+0x24> - 80076ee: 6818 ldr r0, [r3, #0] - 80076f0: 685b ldr r3, [r3, #4] - 80076f2: 4401 add r1, r0 - 80076f4: 6011 str r1, [r2, #0] - 80076f6: 6053 str r3, [r2, #4] - 80076f8: e7d8 b.n 80076ac <_free_r+0x24> - 80076fa: d902 bls.n 8007702 <_free_r+0x7a> - 80076fc: 230c movs r3, #12 - 80076fe: 602b str r3, [r5, #0] - 8007700: e7d4 b.n 80076ac <_free_r+0x24> - 8007702: 6820 ldr r0, [r4, #0] - 8007704: 1821 adds r1, r4, r0 - 8007706: 428b cmp r3, r1 - 8007708: bf01 itttt eq - 800770a: 6819 ldreq r1, [r3, #0] - 800770c: 685b ldreq r3, [r3, #4] - 800770e: 1809 addeq r1, r1, r0 - 8007710: 6021 streq r1, [r4, #0] - 8007712: 6063 str r3, [r4, #4] - 8007714: 6054 str r4, [r2, #4] - 8007716: e7c9 b.n 80076ac <_free_r+0x24> - 8007718: bd38 pop {r3, r4, r5, pc} - 800771a: bf00 nop - 800771c: 2000020c .word 0x2000020c +080077a8 <_free_r>: + 80077a8: b538 push {r3, r4, r5, lr} + 80077aa: 4605 mov r5, r0 + 80077ac: 2900 cmp r1, #0 + 80077ae: d043 beq.n 8007838 <_free_r+0x90> + 80077b0: f851 3c04 ldr.w r3, [r1, #-4] + 80077b4: 1f0c subs r4, r1, #4 + 80077b6: 2b00 cmp r3, #0 + 80077b8: bfb8 it lt + 80077ba: 18e4 addlt r4, r4, r3 + 80077bc: f001 ff4a bl 8009654 <__malloc_lock> + 80077c0: 4a1e ldr r2, [pc, #120] ; (800783c <_free_r+0x94>) + 80077c2: 6813 ldr r3, [r2, #0] + 80077c4: 4610 mov r0, r2 + 80077c6: b933 cbnz r3, 80077d6 <_free_r+0x2e> + 80077c8: 6063 str r3, [r4, #4] + 80077ca: 6014 str r4, [r2, #0] + 80077cc: 4628 mov r0, r5 + 80077ce: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 80077d2: f001 bf45 b.w 8009660 <__malloc_unlock> + 80077d6: 42a3 cmp r3, r4 + 80077d8: d90a bls.n 80077f0 <_free_r+0x48> + 80077da: 6821 ldr r1, [r4, #0] + 80077dc: 1862 adds r2, r4, r1 + 80077de: 4293 cmp r3, r2 + 80077e0: bf01 itttt eq + 80077e2: 681a ldreq r2, [r3, #0] + 80077e4: 685b ldreq r3, [r3, #4] + 80077e6: 1852 addeq r2, r2, r1 + 80077e8: 6022 streq r2, [r4, #0] + 80077ea: 6063 str r3, [r4, #4] + 80077ec: 6004 str r4, [r0, #0] + 80077ee: e7ed b.n 80077cc <_free_r+0x24> + 80077f0: 461a mov r2, r3 + 80077f2: 685b ldr r3, [r3, #4] + 80077f4: b10b cbz r3, 80077fa <_free_r+0x52> + 80077f6: 42a3 cmp r3, r4 + 80077f8: d9fa bls.n 80077f0 <_free_r+0x48> + 80077fa: 6811 ldr r1, [r2, #0] + 80077fc: 1850 adds r0, r2, r1 + 80077fe: 42a0 cmp r0, r4 + 8007800: d10b bne.n 800781a <_free_r+0x72> + 8007802: 6820 ldr r0, [r4, #0] + 8007804: 4401 add r1, r0 + 8007806: 1850 adds r0, r2, r1 + 8007808: 4283 cmp r3, r0 + 800780a: 6011 str r1, [r2, #0] + 800780c: d1de bne.n 80077cc <_free_r+0x24> + 800780e: 6818 ldr r0, [r3, #0] + 8007810: 685b ldr r3, [r3, #4] + 8007812: 4401 add r1, r0 + 8007814: 6011 str r1, [r2, #0] + 8007816: 6053 str r3, [r2, #4] + 8007818: e7d8 b.n 80077cc <_free_r+0x24> + 800781a: d902 bls.n 8007822 <_free_r+0x7a> + 800781c: 230c movs r3, #12 + 800781e: 602b str r3, [r5, #0] + 8007820: e7d4 b.n 80077cc <_free_r+0x24> + 8007822: 6820 ldr r0, [r4, #0] + 8007824: 1821 adds r1, r4, r0 + 8007826: 428b cmp r3, r1 + 8007828: bf01 itttt eq + 800782a: 6819 ldreq r1, [r3, #0] + 800782c: 685b ldreq r3, [r3, #4] + 800782e: 1809 addeq r1, r1, r0 + 8007830: 6021 streq r1, [r4, #0] + 8007832: 6063 str r3, [r4, #4] + 8007834: 6054 str r4, [r2, #4] + 8007836: e7c9 b.n 80077cc <_free_r+0x24> + 8007838: bd38 pop {r3, r4, r5, pc} + 800783a: bf00 nop + 800783c: 2000020c .word 0x2000020c -08007720 <_malloc_r>: - 8007720: b5f8 push {r3, r4, r5, r6, r7, lr} - 8007722: 1ccd adds r5, r1, #3 - 8007724: f025 0503 bic.w r5, r5, #3 - 8007728: 3508 adds r5, #8 - 800772a: 2d0c cmp r5, #12 - 800772c: bf38 it cc - 800772e: 250c movcc r5, #12 - 8007730: 2d00 cmp r5, #0 - 8007732: 4606 mov r6, r0 - 8007734: db01 blt.n 800773a <_malloc_r+0x1a> - 8007736: 42a9 cmp r1, r5 - 8007738: d903 bls.n 8007742 <_malloc_r+0x22> - 800773a: 230c movs r3, #12 - 800773c: 6033 str r3, [r6, #0] - 800773e: 2000 movs r0, #0 - 8007740: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8007742: f001 fb73 bl 8008e2c <__malloc_lock> - 8007746: 4921 ldr r1, [pc, #132] ; (80077cc <_malloc_r+0xac>) - 8007748: 680a ldr r2, [r1, #0] - 800774a: 4614 mov r4, r2 - 800774c: b99c cbnz r4, 8007776 <_malloc_r+0x56> - 800774e: 4f20 ldr r7, [pc, #128] ; (80077d0 <_malloc_r+0xb0>) - 8007750: 683b ldr r3, [r7, #0] - 8007752: b923 cbnz r3, 800775e <_malloc_r+0x3e> - 8007754: 4621 mov r1, r4 - 8007756: 4630 mov r0, r6 - 8007758: f000 fc9c bl 8008094 <_sbrk_r> - 800775c: 6038 str r0, [r7, #0] - 800775e: 4629 mov r1, r5 - 8007760: 4630 mov r0, r6 - 8007762: f000 fc97 bl 8008094 <_sbrk_r> - 8007766: 1c43 adds r3, r0, #1 - 8007768: d123 bne.n 80077b2 <_malloc_r+0x92> - 800776a: 230c movs r3, #12 - 800776c: 4630 mov r0, r6 - 800776e: 6033 str r3, [r6, #0] - 8007770: f001 fb62 bl 8008e38 <__malloc_unlock> - 8007774: e7e3 b.n 800773e <_malloc_r+0x1e> - 8007776: 6823 ldr r3, [r4, #0] - 8007778: 1b5b subs r3, r3, r5 - 800777a: d417 bmi.n 80077ac <_malloc_r+0x8c> - 800777c: 2b0b cmp r3, #11 - 800777e: d903 bls.n 8007788 <_malloc_r+0x68> - 8007780: 6023 str r3, [r4, #0] - 8007782: 441c add r4, r3 - 8007784: 6025 str r5, [r4, #0] - 8007786: e004 b.n 8007792 <_malloc_r+0x72> - 8007788: 6863 ldr r3, [r4, #4] - 800778a: 42a2 cmp r2, r4 - 800778c: bf0c ite eq - 800778e: 600b streq r3, [r1, #0] - 8007790: 6053 strne r3, [r2, #4] - 8007792: 4630 mov r0, r6 - 8007794: f001 fb50 bl 8008e38 <__malloc_unlock> - 8007798: f104 000b add.w r0, r4, #11 - 800779c: 1d23 adds r3, r4, #4 - 800779e: f020 0007 bic.w r0, r0, #7 - 80077a2: 1ac2 subs r2, r0, r3 - 80077a4: d0cc beq.n 8007740 <_malloc_r+0x20> - 80077a6: 1a1b subs r3, r3, r0 - 80077a8: 50a3 str r3, [r4, r2] - 80077aa: e7c9 b.n 8007740 <_malloc_r+0x20> - 80077ac: 4622 mov r2, r4 - 80077ae: 6864 ldr r4, [r4, #4] - 80077b0: e7cc b.n 800774c <_malloc_r+0x2c> - 80077b2: 1cc4 adds r4, r0, #3 - 80077b4: f024 0403 bic.w r4, r4, #3 - 80077b8: 42a0 cmp r0, r4 - 80077ba: d0e3 beq.n 8007784 <_malloc_r+0x64> - 80077bc: 1a21 subs r1, r4, r0 - 80077be: 4630 mov r0, r6 - 80077c0: f000 fc68 bl 8008094 <_sbrk_r> - 80077c4: 3001 adds r0, #1 - 80077c6: d1dd bne.n 8007784 <_malloc_r+0x64> - 80077c8: e7cf b.n 800776a <_malloc_r+0x4a> - 80077ca: bf00 nop - 80077cc: 2000020c .word 0x2000020c - 80077d0: 20000210 .word 0x20000210 +08007840 <_malloc_r>: + 8007840: b5f8 push {r3, r4, r5, r6, r7, lr} + 8007842: 1ccd adds r5, r1, #3 + 8007844: f025 0503 bic.w r5, r5, #3 + 8007848: 3508 adds r5, #8 + 800784a: 2d0c cmp r5, #12 + 800784c: bf38 it cc + 800784e: 250c movcc r5, #12 + 8007850: 2d00 cmp r5, #0 + 8007852: 4606 mov r6, r0 + 8007854: db01 blt.n 800785a <_malloc_r+0x1a> + 8007856: 42a9 cmp r1, r5 + 8007858: d903 bls.n 8007862 <_malloc_r+0x22> + 800785a: 230c movs r3, #12 + 800785c: 6033 str r3, [r6, #0] + 800785e: 2000 movs r0, #0 + 8007860: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8007862: f001 fef7 bl 8009654 <__malloc_lock> + 8007866: 4921 ldr r1, [pc, #132] ; (80078ec <_malloc_r+0xac>) + 8007868: 680a ldr r2, [r1, #0] + 800786a: 4614 mov r4, r2 + 800786c: b99c cbnz r4, 8007896 <_malloc_r+0x56> + 800786e: 4f20 ldr r7, [pc, #128] ; (80078f0 <_malloc_r+0xb0>) + 8007870: 683b ldr r3, [r7, #0] + 8007872: b923 cbnz r3, 800787e <_malloc_r+0x3e> + 8007874: 4621 mov r1, r4 + 8007876: 4630 mov r0, r6 + 8007878: f000 fd3e bl 80082f8 <_sbrk_r> + 800787c: 6038 str r0, [r7, #0] + 800787e: 4629 mov r1, r5 + 8007880: 4630 mov r0, r6 + 8007882: f000 fd39 bl 80082f8 <_sbrk_r> + 8007886: 1c43 adds r3, r0, #1 + 8007888: d123 bne.n 80078d2 <_malloc_r+0x92> + 800788a: 230c movs r3, #12 + 800788c: 4630 mov r0, r6 + 800788e: 6033 str r3, [r6, #0] + 8007890: f001 fee6 bl 8009660 <__malloc_unlock> + 8007894: e7e3 b.n 800785e <_malloc_r+0x1e> + 8007896: 6823 ldr r3, [r4, #0] + 8007898: 1b5b subs r3, r3, r5 + 800789a: d417 bmi.n 80078cc <_malloc_r+0x8c> + 800789c: 2b0b cmp r3, #11 + 800789e: d903 bls.n 80078a8 <_malloc_r+0x68> + 80078a0: 6023 str r3, [r4, #0] + 80078a2: 441c add r4, r3 + 80078a4: 6025 str r5, [r4, #0] + 80078a6: e004 b.n 80078b2 <_malloc_r+0x72> + 80078a8: 6863 ldr r3, [r4, #4] + 80078aa: 42a2 cmp r2, r4 + 80078ac: bf0c ite eq + 80078ae: 600b streq r3, [r1, #0] + 80078b0: 6053 strne r3, [r2, #4] + 80078b2: 4630 mov r0, r6 + 80078b4: f001 fed4 bl 8009660 <__malloc_unlock> + 80078b8: f104 000b add.w r0, r4, #11 + 80078bc: 1d23 adds r3, r4, #4 + 80078be: f020 0007 bic.w r0, r0, #7 + 80078c2: 1ac2 subs r2, r0, r3 + 80078c4: d0cc beq.n 8007860 <_malloc_r+0x20> + 80078c6: 1a1b subs r3, r3, r0 + 80078c8: 50a3 str r3, [r4, r2] + 80078ca: e7c9 b.n 8007860 <_malloc_r+0x20> + 80078cc: 4622 mov r2, r4 + 80078ce: 6864 ldr r4, [r4, #4] + 80078d0: e7cc b.n 800786c <_malloc_r+0x2c> + 80078d2: 1cc4 adds r4, r0, #3 + 80078d4: f024 0403 bic.w r4, r4, #3 + 80078d8: 42a0 cmp r0, r4 + 80078da: d0e3 beq.n 80078a4 <_malloc_r+0x64> + 80078dc: 1a21 subs r1, r4, r0 + 80078de: 4630 mov r0, r6 + 80078e0: f000 fd0a bl 80082f8 <_sbrk_r> + 80078e4: 3001 adds r0, #1 + 80078e6: d1dd bne.n 80078a4 <_malloc_r+0x64> + 80078e8: e7cf b.n 800788a <_malloc_r+0x4a> + 80078ea: bf00 nop + 80078ec: 2000020c .word 0x2000020c + 80078f0: 20000210 .word 0x20000210 -080077d4 <__cvt>: - 80077d4: 2b00 cmp r3, #0 - 80077d6: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 80077da: 461f mov r7, r3 - 80077dc: bfbb ittet lt - 80077de: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 - 80077e2: 461f movlt r7, r3 - 80077e4: 2300 movge r3, #0 - 80077e6: 232d movlt r3, #45 ; 0x2d - 80077e8: b088 sub sp, #32 - 80077ea: 4614 mov r4, r2 - 80077ec: 9a12 ldr r2, [sp, #72] ; 0x48 - 80077ee: 9d10 ldr r5, [sp, #64] ; 0x40 - 80077f0: 7013 strb r3, [r2, #0] - 80077f2: 9b14 ldr r3, [sp, #80] ; 0x50 - 80077f4: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c - 80077f8: f023 0820 bic.w r8, r3, #32 - 80077fc: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8007800: d005 beq.n 800780e <__cvt+0x3a> - 8007802: f1b8 0f45 cmp.w r8, #69 ; 0x45 - 8007806: d100 bne.n 800780a <__cvt+0x36> - 8007808: 3501 adds r5, #1 - 800780a: 2302 movs r3, #2 - 800780c: e000 b.n 8007810 <__cvt+0x3c> - 800780e: 2303 movs r3, #3 - 8007810: aa07 add r2, sp, #28 - 8007812: 9204 str r2, [sp, #16] - 8007814: aa06 add r2, sp, #24 - 8007816: e9cd a202 strd sl, r2, [sp, #8] - 800781a: e9cd 3500 strd r3, r5, [sp] - 800781e: 4622 mov r2, r4 - 8007820: 463b mov r3, r7 - 8007822: f000 fcf5 bl 8008210 <_dtoa_r> - 8007826: f1b8 0f47 cmp.w r8, #71 ; 0x47 - 800782a: 4606 mov r6, r0 - 800782c: d102 bne.n 8007834 <__cvt+0x60> - 800782e: 9b11 ldr r3, [sp, #68] ; 0x44 - 8007830: 07db lsls r3, r3, #31 - 8007832: d522 bpl.n 800787a <__cvt+0xa6> - 8007834: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8007838: eb06 0905 add.w r9, r6, r5 - 800783c: d110 bne.n 8007860 <__cvt+0x8c> - 800783e: 7833 ldrb r3, [r6, #0] - 8007840: 2b30 cmp r3, #48 ; 0x30 - 8007842: d10a bne.n 800785a <__cvt+0x86> - 8007844: 2200 movs r2, #0 - 8007846: 2300 movs r3, #0 - 8007848: 4620 mov r0, r4 - 800784a: 4639 mov r1, r7 - 800784c: f7f9 f918 bl 8000a80 <__aeabi_dcmpeq> - 8007850: b918 cbnz r0, 800785a <__cvt+0x86> - 8007852: f1c5 0501 rsb r5, r5, #1 - 8007856: f8ca 5000 str.w r5, [sl] - 800785a: f8da 3000 ldr.w r3, [sl] - 800785e: 4499 add r9, r3 - 8007860: 2200 movs r2, #0 - 8007862: 2300 movs r3, #0 - 8007864: 4620 mov r0, r4 - 8007866: 4639 mov r1, r7 - 8007868: f7f9 f90a bl 8000a80 <__aeabi_dcmpeq> - 800786c: b108 cbz r0, 8007872 <__cvt+0x9e> - 800786e: f8cd 901c str.w r9, [sp, #28] - 8007872: 2230 movs r2, #48 ; 0x30 - 8007874: 9b07 ldr r3, [sp, #28] - 8007876: 454b cmp r3, r9 - 8007878: d307 bcc.n 800788a <__cvt+0xb6> - 800787a: 4630 mov r0, r6 - 800787c: 9b07 ldr r3, [sp, #28] - 800787e: 9a15 ldr r2, [sp, #84] ; 0x54 - 8007880: 1b9b subs r3, r3, r6 - 8007882: 6013 str r3, [r2, #0] - 8007884: b008 add sp, #32 - 8007886: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 800788a: 1c59 adds r1, r3, #1 - 800788c: 9107 str r1, [sp, #28] - 800788e: 701a strb r2, [r3, #0] - 8007890: e7f0 b.n 8007874 <__cvt+0xa0> +080078f4 <__cvt>: + 80078f4: 2b00 cmp r3, #0 + 80078f6: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 80078fa: 461f mov r7, r3 + 80078fc: bfbb ittet lt + 80078fe: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 + 8007902: 461f movlt r7, r3 + 8007904: 2300 movge r3, #0 + 8007906: 232d movlt r3, #45 ; 0x2d + 8007908: b088 sub sp, #32 + 800790a: 4614 mov r4, r2 + 800790c: 9a12 ldr r2, [sp, #72] ; 0x48 + 800790e: 9d10 ldr r5, [sp, #64] ; 0x40 + 8007910: 7013 strb r3, [r2, #0] + 8007912: 9b14 ldr r3, [sp, #80] ; 0x50 + 8007914: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c + 8007918: f023 0820 bic.w r8, r3, #32 + 800791c: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 8007920: d005 beq.n 800792e <__cvt+0x3a> + 8007922: f1b8 0f45 cmp.w r8, #69 ; 0x45 + 8007926: d100 bne.n 800792a <__cvt+0x36> + 8007928: 3501 adds r5, #1 + 800792a: 2302 movs r3, #2 + 800792c: e000 b.n 8007930 <__cvt+0x3c> + 800792e: 2303 movs r3, #3 + 8007930: aa07 add r2, sp, #28 + 8007932: 9204 str r2, [sp, #16] + 8007934: aa06 add r2, sp, #24 + 8007936: e9cd a202 strd sl, r2, [sp, #8] + 800793a: e9cd 3500 strd r3, r5, [sp] + 800793e: 4622 mov r2, r4 + 8007940: 463b mov r3, r7 + 8007942: f000 fe59 bl 80085f8 <_dtoa_r> + 8007946: f1b8 0f47 cmp.w r8, #71 ; 0x47 + 800794a: 4606 mov r6, r0 + 800794c: d102 bne.n 8007954 <__cvt+0x60> + 800794e: 9b11 ldr r3, [sp, #68] ; 0x44 + 8007950: 07db lsls r3, r3, #31 + 8007952: d522 bpl.n 800799a <__cvt+0xa6> + 8007954: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 8007958: eb06 0905 add.w r9, r6, r5 + 800795c: d110 bne.n 8007980 <__cvt+0x8c> + 800795e: 7833 ldrb r3, [r6, #0] + 8007960: 2b30 cmp r3, #48 ; 0x30 + 8007962: d10a bne.n 800797a <__cvt+0x86> + 8007964: 2200 movs r2, #0 + 8007966: 2300 movs r3, #0 + 8007968: 4620 mov r0, r4 + 800796a: 4639 mov r1, r7 + 800796c: f7f9 f888 bl 8000a80 <__aeabi_dcmpeq> + 8007970: b918 cbnz r0, 800797a <__cvt+0x86> + 8007972: f1c5 0501 rsb r5, r5, #1 + 8007976: f8ca 5000 str.w r5, [sl] + 800797a: f8da 3000 ldr.w r3, [sl] + 800797e: 4499 add r9, r3 + 8007980: 2200 movs r2, #0 + 8007982: 2300 movs r3, #0 + 8007984: 4620 mov r0, r4 + 8007986: 4639 mov r1, r7 + 8007988: f7f9 f87a bl 8000a80 <__aeabi_dcmpeq> + 800798c: b108 cbz r0, 8007992 <__cvt+0x9e> + 800798e: f8cd 901c str.w r9, [sp, #28] + 8007992: 2230 movs r2, #48 ; 0x30 + 8007994: 9b07 ldr r3, [sp, #28] + 8007996: 454b cmp r3, r9 + 8007998: d307 bcc.n 80079aa <__cvt+0xb6> + 800799a: 4630 mov r0, r6 + 800799c: 9b07 ldr r3, [sp, #28] + 800799e: 9a15 ldr r2, [sp, #84] ; 0x54 + 80079a0: 1b9b subs r3, r3, r6 + 80079a2: 6013 str r3, [r2, #0] + 80079a4: b008 add sp, #32 + 80079a6: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 80079aa: 1c59 adds r1, r3, #1 + 80079ac: 9107 str r1, [sp, #28] + 80079ae: 701a strb r2, [r3, #0] + 80079b0: e7f0 b.n 8007994 <__cvt+0xa0> -08007892 <__exponent>: - 8007892: 4603 mov r3, r0 - 8007894: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 8007896: 2900 cmp r1, #0 - 8007898: f803 2b02 strb.w r2, [r3], #2 - 800789c: bfb6 itet lt - 800789e: 222d movlt r2, #45 ; 0x2d - 80078a0: 222b movge r2, #43 ; 0x2b - 80078a2: 4249 neglt r1, r1 - 80078a4: 2909 cmp r1, #9 - 80078a6: 7042 strb r2, [r0, #1] - 80078a8: dd2b ble.n 8007902 <__exponent+0x70> - 80078aa: f10d 0407 add.w r4, sp, #7 - 80078ae: 46a4 mov ip, r4 - 80078b0: 270a movs r7, #10 - 80078b2: fb91 f6f7 sdiv r6, r1, r7 - 80078b6: 460a mov r2, r1 - 80078b8: 46a6 mov lr, r4 - 80078ba: fb07 1516 mls r5, r7, r6, r1 - 80078be: 2a63 cmp r2, #99 ; 0x63 - 80078c0: f105 0530 add.w r5, r5, #48 ; 0x30 - 80078c4: 4631 mov r1, r6 - 80078c6: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff - 80078ca: f80e 5c01 strb.w r5, [lr, #-1] - 80078ce: dcf0 bgt.n 80078b2 <__exponent+0x20> - 80078d0: 3130 adds r1, #48 ; 0x30 - 80078d2: f1ae 0502 sub.w r5, lr, #2 - 80078d6: f804 1c01 strb.w r1, [r4, #-1] - 80078da: 4629 mov r1, r5 - 80078dc: 1c44 adds r4, r0, #1 - 80078de: 4561 cmp r1, ip - 80078e0: d30a bcc.n 80078f8 <__exponent+0x66> - 80078e2: f10d 0209 add.w r2, sp, #9 - 80078e6: eba2 020e sub.w r2, r2, lr - 80078ea: 4565 cmp r5, ip - 80078ec: bf88 it hi - 80078ee: 2200 movhi r2, #0 - 80078f0: 4413 add r3, r2 - 80078f2: 1a18 subs r0, r3, r0 - 80078f4: b003 add sp, #12 - 80078f6: bdf0 pop {r4, r5, r6, r7, pc} - 80078f8: f811 2b01 ldrb.w r2, [r1], #1 - 80078fc: f804 2f01 strb.w r2, [r4, #1]! - 8007900: e7ed b.n 80078de <__exponent+0x4c> - 8007902: 2330 movs r3, #48 ; 0x30 - 8007904: 3130 adds r1, #48 ; 0x30 - 8007906: 7083 strb r3, [r0, #2] - 8007908: 70c1 strb r1, [r0, #3] - 800790a: 1d03 adds r3, r0, #4 - 800790c: e7f1 b.n 80078f2 <__exponent+0x60> +080079b2 <__exponent>: + 80079b2: 4603 mov r3, r0 + 80079b4: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} + 80079b6: 2900 cmp r1, #0 + 80079b8: f803 2b02 strb.w r2, [r3], #2 + 80079bc: bfb6 itet lt + 80079be: 222d movlt r2, #45 ; 0x2d + 80079c0: 222b movge r2, #43 ; 0x2b + 80079c2: 4249 neglt r1, r1 + 80079c4: 2909 cmp r1, #9 + 80079c6: 7042 strb r2, [r0, #1] + 80079c8: dd2b ble.n 8007a22 <__exponent+0x70> + 80079ca: f10d 0407 add.w r4, sp, #7 + 80079ce: 46a4 mov ip, r4 + 80079d0: 270a movs r7, #10 + 80079d2: fb91 f6f7 sdiv r6, r1, r7 + 80079d6: 460a mov r2, r1 + 80079d8: 46a6 mov lr, r4 + 80079da: fb07 1516 mls r5, r7, r6, r1 + 80079de: 2a63 cmp r2, #99 ; 0x63 + 80079e0: f105 0530 add.w r5, r5, #48 ; 0x30 + 80079e4: 4631 mov r1, r6 + 80079e6: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff + 80079ea: f80e 5c01 strb.w r5, [lr, #-1] + 80079ee: dcf0 bgt.n 80079d2 <__exponent+0x20> + 80079f0: 3130 adds r1, #48 ; 0x30 + 80079f2: f1ae 0502 sub.w r5, lr, #2 + 80079f6: f804 1c01 strb.w r1, [r4, #-1] + 80079fa: 4629 mov r1, r5 + 80079fc: 1c44 adds r4, r0, #1 + 80079fe: 4561 cmp r1, ip + 8007a00: d30a bcc.n 8007a18 <__exponent+0x66> + 8007a02: f10d 0209 add.w r2, sp, #9 + 8007a06: eba2 020e sub.w r2, r2, lr + 8007a0a: 4565 cmp r5, ip + 8007a0c: bf88 it hi + 8007a0e: 2200 movhi r2, #0 + 8007a10: 4413 add r3, r2 + 8007a12: 1a18 subs r0, r3, r0 + 8007a14: b003 add sp, #12 + 8007a16: bdf0 pop {r4, r5, r6, r7, pc} + 8007a18: f811 2b01 ldrb.w r2, [r1], #1 + 8007a1c: f804 2f01 strb.w r2, [r4, #1]! + 8007a20: e7ed b.n 80079fe <__exponent+0x4c> + 8007a22: 2330 movs r3, #48 ; 0x30 + 8007a24: 3130 adds r1, #48 ; 0x30 + 8007a26: 7083 strb r3, [r0, #2] + 8007a28: 70c1 strb r1, [r0, #3] + 8007a2a: 1d03 adds r3, r0, #4 + 8007a2c: e7f1 b.n 8007a12 <__exponent+0x60> ... -08007910 <_printf_float>: - 8007910: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8007914: b091 sub sp, #68 ; 0x44 - 8007916: 460c mov r4, r1 - 8007918: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 - 800791c: 4616 mov r6, r2 - 800791e: 461f mov r7, r3 - 8007920: 4605 mov r5, r0 - 8007922: f001 fa63 bl 8008dec <_localeconv_r> - 8007926: 6803 ldr r3, [r0, #0] - 8007928: 4618 mov r0, r3 - 800792a: 9309 str r3, [sp, #36] ; 0x24 - 800792c: f7f8 fc7c bl 8000228 - 8007930: 2300 movs r3, #0 - 8007932: 930e str r3, [sp, #56] ; 0x38 - 8007934: f8d8 3000 ldr.w r3, [r8] - 8007938: 900a str r0, [sp, #40] ; 0x28 - 800793a: 3307 adds r3, #7 - 800793c: f023 0307 bic.w r3, r3, #7 - 8007940: f103 0208 add.w r2, r3, #8 - 8007944: f894 9018 ldrb.w r9, [r4, #24] - 8007948: f8d4 b000 ldr.w fp, [r4] - 800794c: f8c8 2000 str.w r2, [r8] - 8007950: e9d3 2300 ldrd r2, r3, [r3] - 8007954: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 - 8007958: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 - 800795c: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 - 8007960: 930b str r3, [sp, #44] ; 0x2c - 8007962: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8007966: 4640 mov r0, r8 - 8007968: 4b9c ldr r3, [pc, #624] ; (8007bdc <_printf_float+0x2cc>) - 800796a: 990b ldr r1, [sp, #44] ; 0x2c - 800796c: f7f9 f8ba bl 8000ae4 <__aeabi_dcmpun> - 8007970: bb70 cbnz r0, 80079d0 <_printf_float+0xc0> - 8007972: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8007976: 4640 mov r0, r8 - 8007978: 4b98 ldr r3, [pc, #608] ; (8007bdc <_printf_float+0x2cc>) - 800797a: 990b ldr r1, [sp, #44] ; 0x2c - 800797c: f7f9 f894 bl 8000aa8 <__aeabi_dcmple> - 8007980: bb30 cbnz r0, 80079d0 <_printf_float+0xc0> - 8007982: 2200 movs r2, #0 - 8007984: 2300 movs r3, #0 - 8007986: 4640 mov r0, r8 - 8007988: 4651 mov r1, sl - 800798a: f7f9 f883 bl 8000a94 <__aeabi_dcmplt> - 800798e: b110 cbz r0, 8007996 <_printf_float+0x86> - 8007990: 232d movs r3, #45 ; 0x2d - 8007992: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8007996: 4b92 ldr r3, [pc, #584] ; (8007be0 <_printf_float+0x2d0>) - 8007998: 4892 ldr r0, [pc, #584] ; (8007be4 <_printf_float+0x2d4>) - 800799a: f1b9 0f47 cmp.w r9, #71 ; 0x47 - 800799e: bf94 ite ls - 80079a0: 4698 movls r8, r3 - 80079a2: 4680 movhi r8, r0 - 80079a4: 2303 movs r3, #3 - 80079a6: f04f 0a00 mov.w sl, #0 - 80079aa: 6123 str r3, [r4, #16] - 80079ac: f02b 0304 bic.w r3, fp, #4 - 80079b0: 6023 str r3, [r4, #0] - 80079b2: 4633 mov r3, r6 - 80079b4: 4621 mov r1, r4 - 80079b6: 4628 mov r0, r5 - 80079b8: 9700 str r7, [sp, #0] - 80079ba: aa0f add r2, sp, #60 ; 0x3c - 80079bc: f000 f9d4 bl 8007d68 <_printf_common> - 80079c0: 3001 adds r0, #1 - 80079c2: f040 8090 bne.w 8007ae6 <_printf_float+0x1d6> - 80079c6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80079ca: b011 add sp, #68 ; 0x44 - 80079cc: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80079d0: 4642 mov r2, r8 - 80079d2: 4653 mov r3, sl - 80079d4: 4640 mov r0, r8 - 80079d6: 4651 mov r1, sl - 80079d8: f7f9 f884 bl 8000ae4 <__aeabi_dcmpun> - 80079dc: b148 cbz r0, 80079f2 <_printf_float+0xe2> - 80079de: f1ba 0f00 cmp.w sl, #0 - 80079e2: bfb8 it lt - 80079e4: 232d movlt r3, #45 ; 0x2d - 80079e6: 4880 ldr r0, [pc, #512] ; (8007be8 <_printf_float+0x2d8>) - 80079e8: bfb8 it lt - 80079ea: f884 3043 strblt.w r3, [r4, #67] ; 0x43 - 80079ee: 4b7f ldr r3, [pc, #508] ; (8007bec <_printf_float+0x2dc>) - 80079f0: e7d3 b.n 800799a <_printf_float+0x8a> - 80079f2: 6863 ldr r3, [r4, #4] - 80079f4: f009 01df and.w r1, r9, #223 ; 0xdf - 80079f8: 1c5a adds r2, r3, #1 - 80079fa: d142 bne.n 8007a82 <_printf_float+0x172> - 80079fc: 2306 movs r3, #6 - 80079fe: 6063 str r3, [r4, #4] - 8007a00: 2200 movs r2, #0 - 8007a02: 9206 str r2, [sp, #24] - 8007a04: aa0e add r2, sp, #56 ; 0x38 - 8007a06: e9cd 9204 strd r9, r2, [sp, #16] - 8007a0a: aa0d add r2, sp, #52 ; 0x34 - 8007a0c: f44b 6380 orr.w r3, fp, #1024 ; 0x400 - 8007a10: 9203 str r2, [sp, #12] - 8007a12: f10d 0233 add.w r2, sp, #51 ; 0x33 - 8007a16: e9cd 3201 strd r3, r2, [sp, #4] - 8007a1a: 6023 str r3, [r4, #0] - 8007a1c: 6863 ldr r3, [r4, #4] - 8007a1e: 4642 mov r2, r8 - 8007a20: 9300 str r3, [sp, #0] - 8007a22: 4628 mov r0, r5 - 8007a24: 4653 mov r3, sl - 8007a26: 910b str r1, [sp, #44] ; 0x2c - 8007a28: f7ff fed4 bl 80077d4 <__cvt> - 8007a2c: 990b ldr r1, [sp, #44] ; 0x2c - 8007a2e: 4680 mov r8, r0 - 8007a30: 2947 cmp r1, #71 ; 0x47 - 8007a32: 990d ldr r1, [sp, #52] ; 0x34 - 8007a34: d108 bne.n 8007a48 <_printf_float+0x138> - 8007a36: 1cc8 adds r0, r1, #3 - 8007a38: db02 blt.n 8007a40 <_printf_float+0x130> - 8007a3a: 6863 ldr r3, [r4, #4] - 8007a3c: 4299 cmp r1, r3 - 8007a3e: dd40 ble.n 8007ac2 <_printf_float+0x1b2> - 8007a40: f1a9 0902 sub.w r9, r9, #2 - 8007a44: fa5f f989 uxtb.w r9, r9 - 8007a48: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8007a4c: d81f bhi.n 8007a8e <_printf_float+0x17e> - 8007a4e: 464a mov r2, r9 - 8007a50: 3901 subs r1, #1 - 8007a52: f104 0050 add.w r0, r4, #80 ; 0x50 - 8007a56: 910d str r1, [sp, #52] ; 0x34 - 8007a58: f7ff ff1b bl 8007892 <__exponent> - 8007a5c: 9a0e ldr r2, [sp, #56] ; 0x38 - 8007a5e: 4682 mov sl, r0 - 8007a60: 1813 adds r3, r2, r0 - 8007a62: 2a01 cmp r2, #1 - 8007a64: 6123 str r3, [r4, #16] - 8007a66: dc02 bgt.n 8007a6e <_printf_float+0x15e> - 8007a68: 6822 ldr r2, [r4, #0] - 8007a6a: 07d2 lsls r2, r2, #31 - 8007a6c: d501 bpl.n 8007a72 <_printf_float+0x162> - 8007a6e: 3301 adds r3, #1 - 8007a70: 6123 str r3, [r4, #16] - 8007a72: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 - 8007a76: 2b00 cmp r3, #0 - 8007a78: d09b beq.n 80079b2 <_printf_float+0xa2> - 8007a7a: 232d movs r3, #45 ; 0x2d - 8007a7c: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8007a80: e797 b.n 80079b2 <_printf_float+0xa2> - 8007a82: 2947 cmp r1, #71 ; 0x47 - 8007a84: d1bc bne.n 8007a00 <_printf_float+0xf0> - 8007a86: 2b00 cmp r3, #0 - 8007a88: d1ba bne.n 8007a00 <_printf_float+0xf0> - 8007a8a: 2301 movs r3, #1 - 8007a8c: e7b7 b.n 80079fe <_printf_float+0xee> - 8007a8e: f1b9 0f66 cmp.w r9, #102 ; 0x66 - 8007a92: d118 bne.n 8007ac6 <_printf_float+0x1b6> - 8007a94: 2900 cmp r1, #0 - 8007a96: 6863 ldr r3, [r4, #4] - 8007a98: dd0b ble.n 8007ab2 <_printf_float+0x1a2> - 8007a9a: 6121 str r1, [r4, #16] - 8007a9c: b913 cbnz r3, 8007aa4 <_printf_float+0x194> - 8007a9e: 6822 ldr r2, [r4, #0] - 8007aa0: 07d0 lsls r0, r2, #31 - 8007aa2: d502 bpl.n 8007aaa <_printf_float+0x19a> - 8007aa4: 3301 adds r3, #1 - 8007aa6: 440b add r3, r1 - 8007aa8: 6123 str r3, [r4, #16] - 8007aaa: f04f 0a00 mov.w sl, #0 - 8007aae: 65a1 str r1, [r4, #88] ; 0x58 - 8007ab0: e7df b.n 8007a72 <_printf_float+0x162> - 8007ab2: b913 cbnz r3, 8007aba <_printf_float+0x1aa> - 8007ab4: 6822 ldr r2, [r4, #0] - 8007ab6: 07d2 lsls r2, r2, #31 - 8007ab8: d501 bpl.n 8007abe <_printf_float+0x1ae> - 8007aba: 3302 adds r3, #2 - 8007abc: e7f4 b.n 8007aa8 <_printf_float+0x198> - 8007abe: 2301 movs r3, #1 - 8007ac0: e7f2 b.n 8007aa8 <_printf_float+0x198> - 8007ac2: f04f 0967 mov.w r9, #103 ; 0x67 - 8007ac6: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007ac8: 4299 cmp r1, r3 - 8007aca: db05 blt.n 8007ad8 <_printf_float+0x1c8> - 8007acc: 6823 ldr r3, [r4, #0] - 8007ace: 6121 str r1, [r4, #16] - 8007ad0: 07d8 lsls r0, r3, #31 - 8007ad2: d5ea bpl.n 8007aaa <_printf_float+0x19a> - 8007ad4: 1c4b adds r3, r1, #1 - 8007ad6: e7e7 b.n 8007aa8 <_printf_float+0x198> - 8007ad8: 2900 cmp r1, #0 - 8007ada: bfcc ite gt - 8007adc: 2201 movgt r2, #1 - 8007ade: f1c1 0202 rsble r2, r1, #2 - 8007ae2: 4413 add r3, r2 - 8007ae4: e7e0 b.n 8007aa8 <_printf_float+0x198> - 8007ae6: 6823 ldr r3, [r4, #0] - 8007ae8: 055a lsls r2, r3, #21 - 8007aea: d407 bmi.n 8007afc <_printf_float+0x1ec> - 8007aec: 6923 ldr r3, [r4, #16] - 8007aee: 4642 mov r2, r8 - 8007af0: 4631 mov r1, r6 - 8007af2: 4628 mov r0, r5 - 8007af4: 47b8 blx r7 - 8007af6: 3001 adds r0, #1 - 8007af8: d12b bne.n 8007b52 <_printf_float+0x242> - 8007afa: e764 b.n 80079c6 <_printf_float+0xb6> - 8007afc: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8007b00: f240 80dd bls.w 8007cbe <_printf_float+0x3ae> - 8007b04: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 8007b08: 2200 movs r2, #0 - 8007b0a: 2300 movs r3, #0 - 8007b0c: f7f8 ffb8 bl 8000a80 <__aeabi_dcmpeq> - 8007b10: 2800 cmp r0, #0 - 8007b12: d033 beq.n 8007b7c <_printf_float+0x26c> - 8007b14: 2301 movs r3, #1 - 8007b16: 4631 mov r1, r6 - 8007b18: 4628 mov r0, r5 - 8007b1a: 4a35 ldr r2, [pc, #212] ; (8007bf0 <_printf_float+0x2e0>) - 8007b1c: 47b8 blx r7 - 8007b1e: 3001 adds r0, #1 - 8007b20: f43f af51 beq.w 80079c6 <_printf_float+0xb6> - 8007b24: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8007b28: 429a cmp r2, r3 - 8007b2a: db02 blt.n 8007b32 <_printf_float+0x222> - 8007b2c: 6823 ldr r3, [r4, #0] - 8007b2e: 07d8 lsls r0, r3, #31 - 8007b30: d50f bpl.n 8007b52 <_printf_float+0x242> - 8007b32: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8007b36: 4631 mov r1, r6 - 8007b38: 4628 mov r0, r5 - 8007b3a: 47b8 blx r7 - 8007b3c: 3001 adds r0, #1 - 8007b3e: f43f af42 beq.w 80079c6 <_printf_float+0xb6> - 8007b42: f04f 0800 mov.w r8, #0 - 8007b46: f104 091a add.w r9, r4, #26 - 8007b4a: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007b4c: 3b01 subs r3, #1 - 8007b4e: 4543 cmp r3, r8 - 8007b50: dc09 bgt.n 8007b66 <_printf_float+0x256> - 8007b52: 6823 ldr r3, [r4, #0] - 8007b54: 079b lsls r3, r3, #30 - 8007b56: f100 8102 bmi.w 8007d5e <_printf_float+0x44e> - 8007b5a: 68e0 ldr r0, [r4, #12] - 8007b5c: 9b0f ldr r3, [sp, #60] ; 0x3c - 8007b5e: 4298 cmp r0, r3 - 8007b60: bfb8 it lt - 8007b62: 4618 movlt r0, r3 - 8007b64: e731 b.n 80079ca <_printf_float+0xba> - 8007b66: 2301 movs r3, #1 - 8007b68: 464a mov r2, r9 - 8007b6a: 4631 mov r1, r6 - 8007b6c: 4628 mov r0, r5 - 8007b6e: 47b8 blx r7 - 8007b70: 3001 adds r0, #1 - 8007b72: f43f af28 beq.w 80079c6 <_printf_float+0xb6> - 8007b76: f108 0801 add.w r8, r8, #1 - 8007b7a: e7e6 b.n 8007b4a <_printf_float+0x23a> - 8007b7c: 9b0d ldr r3, [sp, #52] ; 0x34 - 8007b7e: 2b00 cmp r3, #0 - 8007b80: dc38 bgt.n 8007bf4 <_printf_float+0x2e4> - 8007b82: 2301 movs r3, #1 - 8007b84: 4631 mov r1, r6 - 8007b86: 4628 mov r0, r5 - 8007b88: 4a19 ldr r2, [pc, #100] ; (8007bf0 <_printf_float+0x2e0>) - 8007b8a: 47b8 blx r7 - 8007b8c: 3001 adds r0, #1 - 8007b8e: f43f af1a beq.w 80079c6 <_printf_float+0xb6> - 8007b92: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8007b96: 4313 orrs r3, r2 - 8007b98: d102 bne.n 8007ba0 <_printf_float+0x290> - 8007b9a: 6823 ldr r3, [r4, #0] - 8007b9c: 07d9 lsls r1, r3, #31 - 8007b9e: d5d8 bpl.n 8007b52 <_printf_float+0x242> - 8007ba0: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8007ba4: 4631 mov r1, r6 - 8007ba6: 4628 mov r0, r5 - 8007ba8: 47b8 blx r7 - 8007baa: 3001 adds r0, #1 - 8007bac: f43f af0b beq.w 80079c6 <_printf_float+0xb6> - 8007bb0: f04f 0900 mov.w r9, #0 - 8007bb4: f104 0a1a add.w sl, r4, #26 - 8007bb8: 9b0d ldr r3, [sp, #52] ; 0x34 - 8007bba: 425b negs r3, r3 - 8007bbc: 454b cmp r3, r9 - 8007bbe: dc01 bgt.n 8007bc4 <_printf_float+0x2b4> - 8007bc0: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007bc2: e794 b.n 8007aee <_printf_float+0x1de> - 8007bc4: 2301 movs r3, #1 - 8007bc6: 4652 mov r2, sl - 8007bc8: 4631 mov r1, r6 - 8007bca: 4628 mov r0, r5 - 8007bcc: 47b8 blx r7 - 8007bce: 3001 adds r0, #1 - 8007bd0: f43f aef9 beq.w 80079c6 <_printf_float+0xb6> - 8007bd4: f109 0901 add.w r9, r9, #1 - 8007bd8: e7ee b.n 8007bb8 <_printf_float+0x2a8> - 8007bda: bf00 nop - 8007bdc: 7fefffff .word 0x7fefffff - 8007be0: 0800af3c .word 0x0800af3c - 8007be4: 0800af40 .word 0x0800af40 - 8007be8: 0800af48 .word 0x0800af48 - 8007bec: 0800af44 .word 0x0800af44 - 8007bf0: 0800af4c .word 0x0800af4c - 8007bf4: 9a0e ldr r2, [sp, #56] ; 0x38 - 8007bf6: 6da3 ldr r3, [r4, #88] ; 0x58 - 8007bf8: 429a cmp r2, r3 - 8007bfa: bfa8 it ge - 8007bfc: 461a movge r2, r3 - 8007bfe: 2a00 cmp r2, #0 - 8007c00: 4691 mov r9, r2 - 8007c02: dc37 bgt.n 8007c74 <_printf_float+0x364> - 8007c04: f04f 0b00 mov.w fp, #0 - 8007c08: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8007c0c: f104 021a add.w r2, r4, #26 - 8007c10: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 - 8007c14: ebaa 0309 sub.w r3, sl, r9 - 8007c18: 455b cmp r3, fp - 8007c1a: dc33 bgt.n 8007c84 <_printf_float+0x374> - 8007c1c: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8007c20: 429a cmp r2, r3 - 8007c22: db3b blt.n 8007c9c <_printf_float+0x38c> - 8007c24: 6823 ldr r3, [r4, #0] - 8007c26: 07da lsls r2, r3, #31 - 8007c28: d438 bmi.n 8007c9c <_printf_float+0x38c> - 8007c2a: 9a0e ldr r2, [sp, #56] ; 0x38 - 8007c2c: 990d ldr r1, [sp, #52] ; 0x34 - 8007c2e: eba2 030a sub.w r3, r2, sl - 8007c32: eba2 0901 sub.w r9, r2, r1 - 8007c36: 4599 cmp r9, r3 - 8007c38: bfa8 it ge - 8007c3a: 4699 movge r9, r3 - 8007c3c: f1b9 0f00 cmp.w r9, #0 - 8007c40: dc34 bgt.n 8007cac <_printf_float+0x39c> - 8007c42: f04f 0800 mov.w r8, #0 - 8007c46: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8007c4a: f104 0a1a add.w sl, r4, #26 - 8007c4e: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8007c52: 1a9b subs r3, r3, r2 - 8007c54: eba3 0309 sub.w r3, r3, r9 - 8007c58: 4543 cmp r3, r8 - 8007c5a: f77f af7a ble.w 8007b52 <_printf_float+0x242> - 8007c5e: 2301 movs r3, #1 - 8007c60: 4652 mov r2, sl - 8007c62: 4631 mov r1, r6 - 8007c64: 4628 mov r0, r5 - 8007c66: 47b8 blx r7 - 8007c68: 3001 adds r0, #1 - 8007c6a: f43f aeac beq.w 80079c6 <_printf_float+0xb6> - 8007c6e: f108 0801 add.w r8, r8, #1 - 8007c72: e7ec b.n 8007c4e <_printf_float+0x33e> - 8007c74: 4613 mov r3, r2 - 8007c76: 4631 mov r1, r6 - 8007c78: 4642 mov r2, r8 - 8007c7a: 4628 mov r0, r5 - 8007c7c: 47b8 blx r7 - 8007c7e: 3001 adds r0, #1 - 8007c80: d1c0 bne.n 8007c04 <_printf_float+0x2f4> - 8007c82: e6a0 b.n 80079c6 <_printf_float+0xb6> - 8007c84: 2301 movs r3, #1 - 8007c86: 4631 mov r1, r6 - 8007c88: 4628 mov r0, r5 - 8007c8a: 920b str r2, [sp, #44] ; 0x2c - 8007c8c: 47b8 blx r7 - 8007c8e: 3001 adds r0, #1 - 8007c90: f43f ae99 beq.w 80079c6 <_printf_float+0xb6> - 8007c94: 9a0b ldr r2, [sp, #44] ; 0x2c - 8007c96: f10b 0b01 add.w fp, fp, #1 - 8007c9a: e7b9 b.n 8007c10 <_printf_float+0x300> - 8007c9c: 4631 mov r1, r6 - 8007c9e: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8007ca2: 4628 mov r0, r5 - 8007ca4: 47b8 blx r7 - 8007ca6: 3001 adds r0, #1 - 8007ca8: d1bf bne.n 8007c2a <_printf_float+0x31a> - 8007caa: e68c b.n 80079c6 <_printf_float+0xb6> - 8007cac: 464b mov r3, r9 - 8007cae: 4631 mov r1, r6 - 8007cb0: 4628 mov r0, r5 - 8007cb2: eb08 020a add.w r2, r8, sl - 8007cb6: 47b8 blx r7 - 8007cb8: 3001 adds r0, #1 - 8007cba: d1c2 bne.n 8007c42 <_printf_float+0x332> - 8007cbc: e683 b.n 80079c6 <_printf_float+0xb6> - 8007cbe: 9a0e ldr r2, [sp, #56] ; 0x38 - 8007cc0: 2a01 cmp r2, #1 - 8007cc2: dc01 bgt.n 8007cc8 <_printf_float+0x3b8> - 8007cc4: 07db lsls r3, r3, #31 - 8007cc6: d537 bpl.n 8007d38 <_printf_float+0x428> - 8007cc8: 2301 movs r3, #1 - 8007cca: 4642 mov r2, r8 - 8007ccc: 4631 mov r1, r6 - 8007cce: 4628 mov r0, r5 - 8007cd0: 47b8 blx r7 - 8007cd2: 3001 adds r0, #1 - 8007cd4: f43f ae77 beq.w 80079c6 <_printf_float+0xb6> - 8007cd8: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8007cdc: 4631 mov r1, r6 - 8007cde: 4628 mov r0, r5 - 8007ce0: 47b8 blx r7 - 8007ce2: 3001 adds r0, #1 - 8007ce4: f43f ae6f beq.w 80079c6 <_printf_float+0xb6> - 8007ce8: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 8007cec: 2200 movs r2, #0 - 8007cee: 2300 movs r3, #0 - 8007cf0: f7f8 fec6 bl 8000a80 <__aeabi_dcmpeq> - 8007cf4: b9d8 cbnz r0, 8007d2e <_printf_float+0x41e> - 8007cf6: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007cf8: f108 0201 add.w r2, r8, #1 - 8007cfc: 3b01 subs r3, #1 - 8007cfe: 4631 mov r1, r6 - 8007d00: 4628 mov r0, r5 - 8007d02: 47b8 blx r7 - 8007d04: 3001 adds r0, #1 - 8007d06: d10e bne.n 8007d26 <_printf_float+0x416> - 8007d08: e65d b.n 80079c6 <_printf_float+0xb6> - 8007d0a: 2301 movs r3, #1 - 8007d0c: 464a mov r2, r9 - 8007d0e: 4631 mov r1, r6 - 8007d10: 4628 mov r0, r5 - 8007d12: 47b8 blx r7 - 8007d14: 3001 adds r0, #1 - 8007d16: f43f ae56 beq.w 80079c6 <_printf_float+0xb6> - 8007d1a: f108 0801 add.w r8, r8, #1 - 8007d1e: 9b0e ldr r3, [sp, #56] ; 0x38 - 8007d20: 3b01 subs r3, #1 - 8007d22: 4543 cmp r3, r8 - 8007d24: dcf1 bgt.n 8007d0a <_printf_float+0x3fa> - 8007d26: 4653 mov r3, sl - 8007d28: f104 0250 add.w r2, r4, #80 ; 0x50 - 8007d2c: e6e0 b.n 8007af0 <_printf_float+0x1e0> - 8007d2e: f04f 0800 mov.w r8, #0 - 8007d32: f104 091a add.w r9, r4, #26 - 8007d36: e7f2 b.n 8007d1e <_printf_float+0x40e> - 8007d38: 2301 movs r3, #1 - 8007d3a: 4642 mov r2, r8 - 8007d3c: e7df b.n 8007cfe <_printf_float+0x3ee> - 8007d3e: 2301 movs r3, #1 - 8007d40: 464a mov r2, r9 - 8007d42: 4631 mov r1, r6 - 8007d44: 4628 mov r0, r5 - 8007d46: 47b8 blx r7 - 8007d48: 3001 adds r0, #1 - 8007d4a: f43f ae3c beq.w 80079c6 <_printf_float+0xb6> - 8007d4e: f108 0801 add.w r8, r8, #1 - 8007d52: 68e3 ldr r3, [r4, #12] - 8007d54: 990f ldr r1, [sp, #60] ; 0x3c - 8007d56: 1a5b subs r3, r3, r1 - 8007d58: 4543 cmp r3, r8 - 8007d5a: dcf0 bgt.n 8007d3e <_printf_float+0x42e> - 8007d5c: e6fd b.n 8007b5a <_printf_float+0x24a> - 8007d5e: f04f 0800 mov.w r8, #0 - 8007d62: f104 0919 add.w r9, r4, #25 - 8007d66: e7f4 b.n 8007d52 <_printf_float+0x442> +08007a30 <_printf_float>: + 8007a30: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007a34: b091 sub sp, #68 ; 0x44 + 8007a36: 460c mov r4, r1 + 8007a38: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 + 8007a3c: 4616 mov r6, r2 + 8007a3e: 461f mov r7, r3 + 8007a40: 4605 mov r5, r0 + 8007a42: f001 fd7f bl 8009544 <_localeconv_r> + 8007a46: 6803 ldr r3, [r0, #0] + 8007a48: 4618 mov r0, r3 + 8007a4a: 9309 str r3, [sp, #36] ; 0x24 + 8007a4c: f7f8 fbec bl 8000228 + 8007a50: 2300 movs r3, #0 + 8007a52: 930e str r3, [sp, #56] ; 0x38 + 8007a54: f8d8 3000 ldr.w r3, [r8] + 8007a58: 900a str r0, [sp, #40] ; 0x28 + 8007a5a: 3307 adds r3, #7 + 8007a5c: f023 0307 bic.w r3, r3, #7 + 8007a60: f103 0208 add.w r2, r3, #8 + 8007a64: f894 9018 ldrb.w r9, [r4, #24] + 8007a68: f8d4 b000 ldr.w fp, [r4] + 8007a6c: f8c8 2000 str.w r2, [r8] + 8007a70: e9d3 2300 ldrd r2, r3, [r3] + 8007a74: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 + 8007a78: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 + 8007a7c: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 + 8007a80: 930b str r3, [sp, #44] ; 0x2c + 8007a82: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8007a86: 4640 mov r0, r8 + 8007a88: 4b9c ldr r3, [pc, #624] ; (8007cfc <_printf_float+0x2cc>) + 8007a8a: 990b ldr r1, [sp, #44] ; 0x2c + 8007a8c: f7f9 f82a bl 8000ae4 <__aeabi_dcmpun> + 8007a90: bb70 cbnz r0, 8007af0 <_printf_float+0xc0> + 8007a92: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8007a96: 4640 mov r0, r8 + 8007a98: 4b98 ldr r3, [pc, #608] ; (8007cfc <_printf_float+0x2cc>) + 8007a9a: 990b ldr r1, [sp, #44] ; 0x2c + 8007a9c: f7f9 f804 bl 8000aa8 <__aeabi_dcmple> + 8007aa0: bb30 cbnz r0, 8007af0 <_printf_float+0xc0> + 8007aa2: 2200 movs r2, #0 + 8007aa4: 2300 movs r3, #0 + 8007aa6: 4640 mov r0, r8 + 8007aa8: 4651 mov r1, sl + 8007aaa: f7f8 fff3 bl 8000a94 <__aeabi_dcmplt> + 8007aae: b110 cbz r0, 8007ab6 <_printf_float+0x86> + 8007ab0: 232d movs r3, #45 ; 0x2d + 8007ab2: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8007ab6: 4b92 ldr r3, [pc, #584] ; (8007d00 <_printf_float+0x2d0>) + 8007ab8: 4892 ldr r0, [pc, #584] ; (8007d04 <_printf_float+0x2d4>) + 8007aba: f1b9 0f47 cmp.w r9, #71 ; 0x47 + 8007abe: bf94 ite ls + 8007ac0: 4698 movls r8, r3 + 8007ac2: 4680 movhi r8, r0 + 8007ac4: 2303 movs r3, #3 + 8007ac6: f04f 0a00 mov.w sl, #0 + 8007aca: 6123 str r3, [r4, #16] + 8007acc: f02b 0304 bic.w r3, fp, #4 + 8007ad0: 6023 str r3, [r4, #0] + 8007ad2: 4633 mov r3, r6 + 8007ad4: 4621 mov r1, r4 + 8007ad6: 4628 mov r0, r5 + 8007ad8: 9700 str r7, [sp, #0] + 8007ada: aa0f add r2, sp, #60 ; 0x3c + 8007adc: f000 f9d4 bl 8007e88 <_printf_common> + 8007ae0: 3001 adds r0, #1 + 8007ae2: f040 8090 bne.w 8007c06 <_printf_float+0x1d6> + 8007ae6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007aea: b011 add sp, #68 ; 0x44 + 8007aec: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007af0: 4642 mov r2, r8 + 8007af2: 4653 mov r3, sl + 8007af4: 4640 mov r0, r8 + 8007af6: 4651 mov r1, sl + 8007af8: f7f8 fff4 bl 8000ae4 <__aeabi_dcmpun> + 8007afc: b148 cbz r0, 8007b12 <_printf_float+0xe2> + 8007afe: f1ba 0f00 cmp.w sl, #0 + 8007b02: bfb8 it lt + 8007b04: 232d movlt r3, #45 ; 0x2d + 8007b06: 4880 ldr r0, [pc, #512] ; (8007d08 <_printf_float+0x2d8>) + 8007b08: bfb8 it lt + 8007b0a: f884 3043 strblt.w r3, [r4, #67] ; 0x43 + 8007b0e: 4b7f ldr r3, [pc, #508] ; (8007d0c <_printf_float+0x2dc>) + 8007b10: e7d3 b.n 8007aba <_printf_float+0x8a> + 8007b12: 6863 ldr r3, [r4, #4] + 8007b14: f009 01df and.w r1, r9, #223 ; 0xdf + 8007b18: 1c5a adds r2, r3, #1 + 8007b1a: d142 bne.n 8007ba2 <_printf_float+0x172> + 8007b1c: 2306 movs r3, #6 + 8007b1e: 6063 str r3, [r4, #4] + 8007b20: 2200 movs r2, #0 + 8007b22: 9206 str r2, [sp, #24] + 8007b24: aa0e add r2, sp, #56 ; 0x38 + 8007b26: e9cd 9204 strd r9, r2, [sp, #16] + 8007b2a: aa0d add r2, sp, #52 ; 0x34 + 8007b2c: f44b 6380 orr.w r3, fp, #1024 ; 0x400 + 8007b30: 9203 str r2, [sp, #12] + 8007b32: f10d 0233 add.w r2, sp, #51 ; 0x33 + 8007b36: e9cd 3201 strd r3, r2, [sp, #4] + 8007b3a: 6023 str r3, [r4, #0] + 8007b3c: 6863 ldr r3, [r4, #4] + 8007b3e: 4642 mov r2, r8 + 8007b40: 9300 str r3, [sp, #0] + 8007b42: 4628 mov r0, r5 + 8007b44: 4653 mov r3, sl + 8007b46: 910b str r1, [sp, #44] ; 0x2c + 8007b48: f7ff fed4 bl 80078f4 <__cvt> + 8007b4c: 990b ldr r1, [sp, #44] ; 0x2c + 8007b4e: 4680 mov r8, r0 + 8007b50: 2947 cmp r1, #71 ; 0x47 + 8007b52: 990d ldr r1, [sp, #52] ; 0x34 + 8007b54: d108 bne.n 8007b68 <_printf_float+0x138> + 8007b56: 1cc8 adds r0, r1, #3 + 8007b58: db02 blt.n 8007b60 <_printf_float+0x130> + 8007b5a: 6863 ldr r3, [r4, #4] + 8007b5c: 4299 cmp r1, r3 + 8007b5e: dd40 ble.n 8007be2 <_printf_float+0x1b2> + 8007b60: f1a9 0902 sub.w r9, r9, #2 + 8007b64: fa5f f989 uxtb.w r9, r9 + 8007b68: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 8007b6c: d81f bhi.n 8007bae <_printf_float+0x17e> + 8007b6e: 464a mov r2, r9 + 8007b70: 3901 subs r1, #1 + 8007b72: f104 0050 add.w r0, r4, #80 ; 0x50 + 8007b76: 910d str r1, [sp, #52] ; 0x34 + 8007b78: f7ff ff1b bl 80079b2 <__exponent> + 8007b7c: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007b7e: 4682 mov sl, r0 + 8007b80: 1813 adds r3, r2, r0 + 8007b82: 2a01 cmp r2, #1 + 8007b84: 6123 str r3, [r4, #16] + 8007b86: dc02 bgt.n 8007b8e <_printf_float+0x15e> + 8007b88: 6822 ldr r2, [r4, #0] + 8007b8a: 07d2 lsls r2, r2, #31 + 8007b8c: d501 bpl.n 8007b92 <_printf_float+0x162> + 8007b8e: 3301 adds r3, #1 + 8007b90: 6123 str r3, [r4, #16] + 8007b92: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 + 8007b96: 2b00 cmp r3, #0 + 8007b98: d09b beq.n 8007ad2 <_printf_float+0xa2> + 8007b9a: 232d movs r3, #45 ; 0x2d + 8007b9c: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8007ba0: e797 b.n 8007ad2 <_printf_float+0xa2> + 8007ba2: 2947 cmp r1, #71 ; 0x47 + 8007ba4: d1bc bne.n 8007b20 <_printf_float+0xf0> + 8007ba6: 2b00 cmp r3, #0 + 8007ba8: d1ba bne.n 8007b20 <_printf_float+0xf0> + 8007baa: 2301 movs r3, #1 + 8007bac: e7b7 b.n 8007b1e <_printf_float+0xee> + 8007bae: f1b9 0f66 cmp.w r9, #102 ; 0x66 + 8007bb2: d118 bne.n 8007be6 <_printf_float+0x1b6> + 8007bb4: 2900 cmp r1, #0 + 8007bb6: 6863 ldr r3, [r4, #4] + 8007bb8: dd0b ble.n 8007bd2 <_printf_float+0x1a2> + 8007bba: 6121 str r1, [r4, #16] + 8007bbc: b913 cbnz r3, 8007bc4 <_printf_float+0x194> + 8007bbe: 6822 ldr r2, [r4, #0] + 8007bc0: 07d0 lsls r0, r2, #31 + 8007bc2: d502 bpl.n 8007bca <_printf_float+0x19a> + 8007bc4: 3301 adds r3, #1 + 8007bc6: 440b add r3, r1 + 8007bc8: 6123 str r3, [r4, #16] + 8007bca: f04f 0a00 mov.w sl, #0 + 8007bce: 65a1 str r1, [r4, #88] ; 0x58 + 8007bd0: e7df b.n 8007b92 <_printf_float+0x162> + 8007bd2: b913 cbnz r3, 8007bda <_printf_float+0x1aa> + 8007bd4: 6822 ldr r2, [r4, #0] + 8007bd6: 07d2 lsls r2, r2, #31 + 8007bd8: d501 bpl.n 8007bde <_printf_float+0x1ae> + 8007bda: 3302 adds r3, #2 + 8007bdc: e7f4 b.n 8007bc8 <_printf_float+0x198> + 8007bde: 2301 movs r3, #1 + 8007be0: e7f2 b.n 8007bc8 <_printf_float+0x198> + 8007be2: f04f 0967 mov.w r9, #103 ; 0x67 + 8007be6: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007be8: 4299 cmp r1, r3 + 8007bea: db05 blt.n 8007bf8 <_printf_float+0x1c8> + 8007bec: 6823 ldr r3, [r4, #0] + 8007bee: 6121 str r1, [r4, #16] + 8007bf0: 07d8 lsls r0, r3, #31 + 8007bf2: d5ea bpl.n 8007bca <_printf_float+0x19a> + 8007bf4: 1c4b adds r3, r1, #1 + 8007bf6: e7e7 b.n 8007bc8 <_printf_float+0x198> + 8007bf8: 2900 cmp r1, #0 + 8007bfa: bfcc ite gt + 8007bfc: 2201 movgt r2, #1 + 8007bfe: f1c1 0202 rsble r2, r1, #2 + 8007c02: 4413 add r3, r2 + 8007c04: e7e0 b.n 8007bc8 <_printf_float+0x198> + 8007c06: 6823 ldr r3, [r4, #0] + 8007c08: 055a lsls r2, r3, #21 + 8007c0a: d407 bmi.n 8007c1c <_printf_float+0x1ec> + 8007c0c: 6923 ldr r3, [r4, #16] + 8007c0e: 4642 mov r2, r8 + 8007c10: 4631 mov r1, r6 + 8007c12: 4628 mov r0, r5 + 8007c14: 47b8 blx r7 + 8007c16: 3001 adds r0, #1 + 8007c18: d12b bne.n 8007c72 <_printf_float+0x242> + 8007c1a: e764 b.n 8007ae6 <_printf_float+0xb6> + 8007c1c: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 8007c20: f240 80dd bls.w 8007dde <_printf_float+0x3ae> + 8007c24: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 8007c28: 2200 movs r2, #0 + 8007c2a: 2300 movs r3, #0 + 8007c2c: f7f8 ff28 bl 8000a80 <__aeabi_dcmpeq> + 8007c30: 2800 cmp r0, #0 + 8007c32: d033 beq.n 8007c9c <_printf_float+0x26c> + 8007c34: 2301 movs r3, #1 + 8007c36: 4631 mov r1, r6 + 8007c38: 4628 mov r0, r5 + 8007c3a: 4a35 ldr r2, [pc, #212] ; (8007d10 <_printf_float+0x2e0>) + 8007c3c: 47b8 blx r7 + 8007c3e: 3001 adds r0, #1 + 8007c40: f43f af51 beq.w 8007ae6 <_printf_float+0xb6> + 8007c44: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007c48: 429a cmp r2, r3 + 8007c4a: db02 blt.n 8007c52 <_printf_float+0x222> + 8007c4c: 6823 ldr r3, [r4, #0] + 8007c4e: 07d8 lsls r0, r3, #31 + 8007c50: d50f bpl.n 8007c72 <_printf_float+0x242> + 8007c52: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007c56: 4631 mov r1, r6 + 8007c58: 4628 mov r0, r5 + 8007c5a: 47b8 blx r7 + 8007c5c: 3001 adds r0, #1 + 8007c5e: f43f af42 beq.w 8007ae6 <_printf_float+0xb6> + 8007c62: f04f 0800 mov.w r8, #0 + 8007c66: f104 091a add.w r9, r4, #26 + 8007c6a: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007c6c: 3b01 subs r3, #1 + 8007c6e: 4543 cmp r3, r8 + 8007c70: dc09 bgt.n 8007c86 <_printf_float+0x256> + 8007c72: 6823 ldr r3, [r4, #0] + 8007c74: 079b lsls r3, r3, #30 + 8007c76: f100 8102 bmi.w 8007e7e <_printf_float+0x44e> + 8007c7a: 68e0 ldr r0, [r4, #12] + 8007c7c: 9b0f ldr r3, [sp, #60] ; 0x3c + 8007c7e: 4298 cmp r0, r3 + 8007c80: bfb8 it lt + 8007c82: 4618 movlt r0, r3 + 8007c84: e731 b.n 8007aea <_printf_float+0xba> + 8007c86: 2301 movs r3, #1 + 8007c88: 464a mov r2, r9 + 8007c8a: 4631 mov r1, r6 + 8007c8c: 4628 mov r0, r5 + 8007c8e: 47b8 blx r7 + 8007c90: 3001 adds r0, #1 + 8007c92: f43f af28 beq.w 8007ae6 <_printf_float+0xb6> + 8007c96: f108 0801 add.w r8, r8, #1 + 8007c9a: e7e6 b.n 8007c6a <_printf_float+0x23a> + 8007c9c: 9b0d ldr r3, [sp, #52] ; 0x34 + 8007c9e: 2b00 cmp r3, #0 + 8007ca0: dc38 bgt.n 8007d14 <_printf_float+0x2e4> + 8007ca2: 2301 movs r3, #1 + 8007ca4: 4631 mov r1, r6 + 8007ca6: 4628 mov r0, r5 + 8007ca8: 4a19 ldr r2, [pc, #100] ; (8007d10 <_printf_float+0x2e0>) + 8007caa: 47b8 blx r7 + 8007cac: 3001 adds r0, #1 + 8007cae: f43f af1a beq.w 8007ae6 <_printf_float+0xb6> + 8007cb2: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007cb6: 4313 orrs r3, r2 + 8007cb8: d102 bne.n 8007cc0 <_printf_float+0x290> + 8007cba: 6823 ldr r3, [r4, #0] + 8007cbc: 07d9 lsls r1, r3, #31 + 8007cbe: d5d8 bpl.n 8007c72 <_printf_float+0x242> + 8007cc0: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007cc4: 4631 mov r1, r6 + 8007cc6: 4628 mov r0, r5 + 8007cc8: 47b8 blx r7 + 8007cca: 3001 adds r0, #1 + 8007ccc: f43f af0b beq.w 8007ae6 <_printf_float+0xb6> + 8007cd0: f04f 0900 mov.w r9, #0 + 8007cd4: f104 0a1a add.w sl, r4, #26 + 8007cd8: 9b0d ldr r3, [sp, #52] ; 0x34 + 8007cda: 425b negs r3, r3 + 8007cdc: 454b cmp r3, r9 + 8007cde: dc01 bgt.n 8007ce4 <_printf_float+0x2b4> + 8007ce0: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007ce2: e794 b.n 8007c0e <_printf_float+0x1de> + 8007ce4: 2301 movs r3, #1 + 8007ce6: 4652 mov r2, sl + 8007ce8: 4631 mov r1, r6 + 8007cea: 4628 mov r0, r5 + 8007cec: 47b8 blx r7 + 8007cee: 3001 adds r0, #1 + 8007cf0: f43f aef9 beq.w 8007ae6 <_printf_float+0xb6> + 8007cf4: f109 0901 add.w r9, r9, #1 + 8007cf8: e7ee b.n 8007cd8 <_printf_float+0x2a8> + 8007cfa: bf00 nop + 8007cfc: 7fefffff .word 0x7fefffff + 8007d00: 0800b28c .word 0x0800b28c + 8007d04: 0800b290 .word 0x0800b290 + 8007d08: 0800b298 .word 0x0800b298 + 8007d0c: 0800b294 .word 0x0800b294 + 8007d10: 0800b29c .word 0x0800b29c + 8007d14: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007d16: 6da3 ldr r3, [r4, #88] ; 0x58 + 8007d18: 429a cmp r2, r3 + 8007d1a: bfa8 it ge + 8007d1c: 461a movge r2, r3 + 8007d1e: 2a00 cmp r2, #0 + 8007d20: 4691 mov r9, r2 + 8007d22: dc37 bgt.n 8007d94 <_printf_float+0x364> + 8007d24: f04f 0b00 mov.w fp, #0 + 8007d28: ea29 79e9 bic.w r9, r9, r9, asr #31 + 8007d2c: f104 021a add.w r2, r4, #26 + 8007d30: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 + 8007d34: ebaa 0309 sub.w r3, sl, r9 + 8007d38: 455b cmp r3, fp + 8007d3a: dc33 bgt.n 8007da4 <_printf_float+0x374> + 8007d3c: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007d40: 429a cmp r2, r3 + 8007d42: db3b blt.n 8007dbc <_printf_float+0x38c> + 8007d44: 6823 ldr r3, [r4, #0] + 8007d46: 07da lsls r2, r3, #31 + 8007d48: d438 bmi.n 8007dbc <_printf_float+0x38c> + 8007d4a: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007d4c: 990d ldr r1, [sp, #52] ; 0x34 + 8007d4e: eba2 030a sub.w r3, r2, sl + 8007d52: eba2 0901 sub.w r9, r2, r1 + 8007d56: 4599 cmp r9, r3 + 8007d58: bfa8 it ge + 8007d5a: 4699 movge r9, r3 + 8007d5c: f1b9 0f00 cmp.w r9, #0 + 8007d60: dc34 bgt.n 8007dcc <_printf_float+0x39c> + 8007d62: f04f 0800 mov.w r8, #0 + 8007d66: ea29 79e9 bic.w r9, r9, r9, asr #31 + 8007d6a: f104 0a1a add.w sl, r4, #26 + 8007d6e: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8007d72: 1a9b subs r3, r3, r2 + 8007d74: eba3 0309 sub.w r3, r3, r9 + 8007d78: 4543 cmp r3, r8 + 8007d7a: f77f af7a ble.w 8007c72 <_printf_float+0x242> + 8007d7e: 2301 movs r3, #1 + 8007d80: 4652 mov r2, sl + 8007d82: 4631 mov r1, r6 + 8007d84: 4628 mov r0, r5 + 8007d86: 47b8 blx r7 + 8007d88: 3001 adds r0, #1 + 8007d8a: f43f aeac beq.w 8007ae6 <_printf_float+0xb6> + 8007d8e: f108 0801 add.w r8, r8, #1 + 8007d92: e7ec b.n 8007d6e <_printf_float+0x33e> + 8007d94: 4613 mov r3, r2 + 8007d96: 4631 mov r1, r6 + 8007d98: 4642 mov r2, r8 + 8007d9a: 4628 mov r0, r5 + 8007d9c: 47b8 blx r7 + 8007d9e: 3001 adds r0, #1 + 8007da0: d1c0 bne.n 8007d24 <_printf_float+0x2f4> + 8007da2: e6a0 b.n 8007ae6 <_printf_float+0xb6> + 8007da4: 2301 movs r3, #1 + 8007da6: 4631 mov r1, r6 + 8007da8: 4628 mov r0, r5 + 8007daa: 920b str r2, [sp, #44] ; 0x2c + 8007dac: 47b8 blx r7 + 8007dae: 3001 adds r0, #1 + 8007db0: f43f ae99 beq.w 8007ae6 <_printf_float+0xb6> + 8007db4: 9a0b ldr r2, [sp, #44] ; 0x2c + 8007db6: f10b 0b01 add.w fp, fp, #1 + 8007dba: e7b9 b.n 8007d30 <_printf_float+0x300> + 8007dbc: 4631 mov r1, r6 + 8007dbe: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007dc2: 4628 mov r0, r5 + 8007dc4: 47b8 blx r7 + 8007dc6: 3001 adds r0, #1 + 8007dc8: d1bf bne.n 8007d4a <_printf_float+0x31a> + 8007dca: e68c b.n 8007ae6 <_printf_float+0xb6> + 8007dcc: 464b mov r3, r9 + 8007dce: 4631 mov r1, r6 + 8007dd0: 4628 mov r0, r5 + 8007dd2: eb08 020a add.w r2, r8, sl + 8007dd6: 47b8 blx r7 + 8007dd8: 3001 adds r0, #1 + 8007dda: d1c2 bne.n 8007d62 <_printf_float+0x332> + 8007ddc: e683 b.n 8007ae6 <_printf_float+0xb6> + 8007dde: 9a0e ldr r2, [sp, #56] ; 0x38 + 8007de0: 2a01 cmp r2, #1 + 8007de2: dc01 bgt.n 8007de8 <_printf_float+0x3b8> + 8007de4: 07db lsls r3, r3, #31 + 8007de6: d537 bpl.n 8007e58 <_printf_float+0x428> + 8007de8: 2301 movs r3, #1 + 8007dea: 4642 mov r2, r8 + 8007dec: 4631 mov r1, r6 + 8007dee: 4628 mov r0, r5 + 8007df0: 47b8 blx r7 + 8007df2: 3001 adds r0, #1 + 8007df4: f43f ae77 beq.w 8007ae6 <_printf_float+0xb6> + 8007df8: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 8007dfc: 4631 mov r1, r6 + 8007dfe: 4628 mov r0, r5 + 8007e00: 47b8 blx r7 + 8007e02: 3001 adds r0, #1 + 8007e04: f43f ae6f beq.w 8007ae6 <_printf_float+0xb6> + 8007e08: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 8007e0c: 2200 movs r2, #0 + 8007e0e: 2300 movs r3, #0 + 8007e10: f7f8 fe36 bl 8000a80 <__aeabi_dcmpeq> + 8007e14: b9d8 cbnz r0, 8007e4e <_printf_float+0x41e> + 8007e16: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007e18: f108 0201 add.w r2, r8, #1 + 8007e1c: 3b01 subs r3, #1 + 8007e1e: 4631 mov r1, r6 + 8007e20: 4628 mov r0, r5 + 8007e22: 47b8 blx r7 + 8007e24: 3001 adds r0, #1 + 8007e26: d10e bne.n 8007e46 <_printf_float+0x416> + 8007e28: e65d b.n 8007ae6 <_printf_float+0xb6> + 8007e2a: 2301 movs r3, #1 + 8007e2c: 464a mov r2, r9 + 8007e2e: 4631 mov r1, r6 + 8007e30: 4628 mov r0, r5 + 8007e32: 47b8 blx r7 + 8007e34: 3001 adds r0, #1 + 8007e36: f43f ae56 beq.w 8007ae6 <_printf_float+0xb6> + 8007e3a: f108 0801 add.w r8, r8, #1 + 8007e3e: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007e40: 3b01 subs r3, #1 + 8007e42: 4543 cmp r3, r8 + 8007e44: dcf1 bgt.n 8007e2a <_printf_float+0x3fa> + 8007e46: 4653 mov r3, sl + 8007e48: f104 0250 add.w r2, r4, #80 ; 0x50 + 8007e4c: e6e0 b.n 8007c10 <_printf_float+0x1e0> + 8007e4e: f04f 0800 mov.w r8, #0 + 8007e52: f104 091a add.w r9, r4, #26 + 8007e56: e7f2 b.n 8007e3e <_printf_float+0x40e> + 8007e58: 2301 movs r3, #1 + 8007e5a: 4642 mov r2, r8 + 8007e5c: e7df b.n 8007e1e <_printf_float+0x3ee> + 8007e5e: 2301 movs r3, #1 + 8007e60: 464a mov r2, r9 + 8007e62: 4631 mov r1, r6 + 8007e64: 4628 mov r0, r5 + 8007e66: 47b8 blx r7 + 8007e68: 3001 adds r0, #1 + 8007e6a: f43f ae3c beq.w 8007ae6 <_printf_float+0xb6> + 8007e6e: f108 0801 add.w r8, r8, #1 + 8007e72: 68e3 ldr r3, [r4, #12] + 8007e74: 990f ldr r1, [sp, #60] ; 0x3c + 8007e76: 1a5b subs r3, r3, r1 + 8007e78: 4543 cmp r3, r8 + 8007e7a: dcf0 bgt.n 8007e5e <_printf_float+0x42e> + 8007e7c: e6fd b.n 8007c7a <_printf_float+0x24a> + 8007e7e: f04f 0800 mov.w r8, #0 + 8007e82: f104 0919 add.w r9, r4, #25 + 8007e86: e7f4 b.n 8007e72 <_printf_float+0x442> -08007d68 <_printf_common>: - 8007d68: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8007d6c: 4616 mov r6, r2 - 8007d6e: 4699 mov r9, r3 - 8007d70: 688a ldr r2, [r1, #8] - 8007d72: 690b ldr r3, [r1, #16] - 8007d74: 4607 mov r7, r0 - 8007d76: 4293 cmp r3, r2 - 8007d78: bfb8 it lt - 8007d7a: 4613 movlt r3, r2 - 8007d7c: 6033 str r3, [r6, #0] - 8007d7e: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 - 8007d82: 460c mov r4, r1 - 8007d84: f8dd 8020 ldr.w r8, [sp, #32] - 8007d88: b10a cbz r2, 8007d8e <_printf_common+0x26> - 8007d8a: 3301 adds r3, #1 - 8007d8c: 6033 str r3, [r6, #0] - 8007d8e: 6823 ldr r3, [r4, #0] - 8007d90: 0699 lsls r1, r3, #26 - 8007d92: bf42 ittt mi - 8007d94: 6833 ldrmi r3, [r6, #0] - 8007d96: 3302 addmi r3, #2 - 8007d98: 6033 strmi r3, [r6, #0] - 8007d9a: 6825 ldr r5, [r4, #0] - 8007d9c: f015 0506 ands.w r5, r5, #6 - 8007da0: d106 bne.n 8007db0 <_printf_common+0x48> - 8007da2: f104 0a19 add.w sl, r4, #25 - 8007da6: 68e3 ldr r3, [r4, #12] - 8007da8: 6832 ldr r2, [r6, #0] - 8007daa: 1a9b subs r3, r3, r2 - 8007dac: 42ab cmp r3, r5 - 8007dae: dc28 bgt.n 8007e02 <_printf_common+0x9a> - 8007db0: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 - 8007db4: 1e13 subs r3, r2, #0 - 8007db6: 6822 ldr r2, [r4, #0] - 8007db8: bf18 it ne - 8007dba: 2301 movne r3, #1 - 8007dbc: 0692 lsls r2, r2, #26 - 8007dbe: d42d bmi.n 8007e1c <_printf_common+0xb4> - 8007dc0: 4649 mov r1, r9 - 8007dc2: 4638 mov r0, r7 - 8007dc4: f104 0243 add.w r2, r4, #67 ; 0x43 - 8007dc8: 47c0 blx r8 - 8007dca: 3001 adds r0, #1 - 8007dcc: d020 beq.n 8007e10 <_printf_common+0xa8> - 8007dce: 6823 ldr r3, [r4, #0] - 8007dd0: 68e5 ldr r5, [r4, #12] - 8007dd2: f003 0306 and.w r3, r3, #6 - 8007dd6: 2b04 cmp r3, #4 - 8007dd8: bf18 it ne - 8007dda: 2500 movne r5, #0 - 8007ddc: 6832 ldr r2, [r6, #0] - 8007dde: f04f 0600 mov.w r6, #0 - 8007de2: 68a3 ldr r3, [r4, #8] - 8007de4: bf08 it eq - 8007de6: 1aad subeq r5, r5, r2 - 8007de8: 6922 ldr r2, [r4, #16] - 8007dea: bf08 it eq - 8007dec: ea25 75e5 biceq.w r5, r5, r5, asr #31 - 8007df0: 4293 cmp r3, r2 - 8007df2: bfc4 itt gt - 8007df4: 1a9b subgt r3, r3, r2 - 8007df6: 18ed addgt r5, r5, r3 - 8007df8: 341a adds r4, #26 - 8007dfa: 42b5 cmp r5, r6 - 8007dfc: d11a bne.n 8007e34 <_printf_common+0xcc> - 8007dfe: 2000 movs r0, #0 - 8007e00: e008 b.n 8007e14 <_printf_common+0xac> - 8007e02: 2301 movs r3, #1 - 8007e04: 4652 mov r2, sl - 8007e06: 4649 mov r1, r9 - 8007e08: 4638 mov r0, r7 - 8007e0a: 47c0 blx r8 - 8007e0c: 3001 adds r0, #1 - 8007e0e: d103 bne.n 8007e18 <_printf_common+0xb0> - 8007e10: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007e14: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8007e18: 3501 adds r5, #1 - 8007e1a: e7c4 b.n 8007da6 <_printf_common+0x3e> - 8007e1c: 2030 movs r0, #48 ; 0x30 - 8007e1e: 18e1 adds r1, r4, r3 - 8007e20: f881 0043 strb.w r0, [r1, #67] ; 0x43 - 8007e24: 1c5a adds r2, r3, #1 - 8007e26: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 - 8007e2a: 4422 add r2, r4 - 8007e2c: 3302 adds r3, #2 - 8007e2e: f882 1043 strb.w r1, [r2, #67] ; 0x43 - 8007e32: e7c5 b.n 8007dc0 <_printf_common+0x58> - 8007e34: 2301 movs r3, #1 - 8007e36: 4622 mov r2, r4 - 8007e38: 4649 mov r1, r9 - 8007e3a: 4638 mov r0, r7 - 8007e3c: 47c0 blx r8 - 8007e3e: 3001 adds r0, #1 - 8007e40: d0e6 beq.n 8007e10 <_printf_common+0xa8> - 8007e42: 3601 adds r6, #1 - 8007e44: e7d9 b.n 8007dfa <_printf_common+0x92> +08007e88 <_printf_common>: + 8007e88: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8007e8c: 4616 mov r6, r2 + 8007e8e: 4699 mov r9, r3 + 8007e90: 688a ldr r2, [r1, #8] + 8007e92: 690b ldr r3, [r1, #16] + 8007e94: 4607 mov r7, r0 + 8007e96: 4293 cmp r3, r2 + 8007e98: bfb8 it lt + 8007e9a: 4613 movlt r3, r2 + 8007e9c: 6033 str r3, [r6, #0] + 8007e9e: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 + 8007ea2: 460c mov r4, r1 + 8007ea4: f8dd 8020 ldr.w r8, [sp, #32] + 8007ea8: b10a cbz r2, 8007eae <_printf_common+0x26> + 8007eaa: 3301 adds r3, #1 + 8007eac: 6033 str r3, [r6, #0] + 8007eae: 6823 ldr r3, [r4, #0] + 8007eb0: 0699 lsls r1, r3, #26 + 8007eb2: bf42 ittt mi + 8007eb4: 6833 ldrmi r3, [r6, #0] + 8007eb6: 3302 addmi r3, #2 + 8007eb8: 6033 strmi r3, [r6, #0] + 8007eba: 6825 ldr r5, [r4, #0] + 8007ebc: f015 0506 ands.w r5, r5, #6 + 8007ec0: d106 bne.n 8007ed0 <_printf_common+0x48> + 8007ec2: f104 0a19 add.w sl, r4, #25 + 8007ec6: 68e3 ldr r3, [r4, #12] + 8007ec8: 6832 ldr r2, [r6, #0] + 8007eca: 1a9b subs r3, r3, r2 + 8007ecc: 42ab cmp r3, r5 + 8007ece: dc28 bgt.n 8007f22 <_printf_common+0x9a> + 8007ed0: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 + 8007ed4: 1e13 subs r3, r2, #0 + 8007ed6: 6822 ldr r2, [r4, #0] + 8007ed8: bf18 it ne + 8007eda: 2301 movne r3, #1 + 8007edc: 0692 lsls r2, r2, #26 + 8007ede: d42d bmi.n 8007f3c <_printf_common+0xb4> + 8007ee0: 4649 mov r1, r9 + 8007ee2: 4638 mov r0, r7 + 8007ee4: f104 0243 add.w r2, r4, #67 ; 0x43 + 8007ee8: 47c0 blx r8 + 8007eea: 3001 adds r0, #1 + 8007eec: d020 beq.n 8007f30 <_printf_common+0xa8> + 8007eee: 6823 ldr r3, [r4, #0] + 8007ef0: 68e5 ldr r5, [r4, #12] + 8007ef2: f003 0306 and.w r3, r3, #6 + 8007ef6: 2b04 cmp r3, #4 + 8007ef8: bf18 it ne + 8007efa: 2500 movne r5, #0 + 8007efc: 6832 ldr r2, [r6, #0] + 8007efe: f04f 0600 mov.w r6, #0 + 8007f02: 68a3 ldr r3, [r4, #8] + 8007f04: bf08 it eq + 8007f06: 1aad subeq r5, r5, r2 + 8007f08: 6922 ldr r2, [r4, #16] + 8007f0a: bf08 it eq + 8007f0c: ea25 75e5 biceq.w r5, r5, r5, asr #31 + 8007f10: 4293 cmp r3, r2 + 8007f12: bfc4 itt gt + 8007f14: 1a9b subgt r3, r3, r2 + 8007f16: 18ed addgt r5, r5, r3 + 8007f18: 341a adds r4, #26 + 8007f1a: 42b5 cmp r5, r6 + 8007f1c: d11a bne.n 8007f54 <_printf_common+0xcc> + 8007f1e: 2000 movs r0, #0 + 8007f20: e008 b.n 8007f34 <_printf_common+0xac> + 8007f22: 2301 movs r3, #1 + 8007f24: 4652 mov r2, sl + 8007f26: 4649 mov r1, r9 + 8007f28: 4638 mov r0, r7 + 8007f2a: 47c0 blx r8 + 8007f2c: 3001 adds r0, #1 + 8007f2e: d103 bne.n 8007f38 <_printf_common+0xb0> + 8007f30: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007f34: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8007f38: 3501 adds r5, #1 + 8007f3a: e7c4 b.n 8007ec6 <_printf_common+0x3e> + 8007f3c: 2030 movs r0, #48 ; 0x30 + 8007f3e: 18e1 adds r1, r4, r3 + 8007f40: f881 0043 strb.w r0, [r1, #67] ; 0x43 + 8007f44: 1c5a adds r2, r3, #1 + 8007f46: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 + 8007f4a: 4422 add r2, r4 + 8007f4c: 3302 adds r3, #2 + 8007f4e: f882 1043 strb.w r1, [r2, #67] ; 0x43 + 8007f52: e7c5 b.n 8007ee0 <_printf_common+0x58> + 8007f54: 2301 movs r3, #1 + 8007f56: 4622 mov r2, r4 + 8007f58: 4649 mov r1, r9 + 8007f5a: 4638 mov r0, r7 + 8007f5c: 47c0 blx r8 + 8007f5e: 3001 adds r0, #1 + 8007f60: d0e6 beq.n 8007f30 <_printf_common+0xa8> + 8007f62: 3601 adds r6, #1 + 8007f64: e7d9 b.n 8007f1a <_printf_common+0x92> ... -08007e48 <_printf_i>: - 8007e48: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} - 8007e4c: 460c mov r4, r1 - 8007e4e: 7e27 ldrb r7, [r4, #24] - 8007e50: 4691 mov r9, r2 - 8007e52: 2f78 cmp r7, #120 ; 0x78 - 8007e54: 4680 mov r8, r0 - 8007e56: 469a mov sl, r3 - 8007e58: 990c ldr r1, [sp, #48] ; 0x30 - 8007e5a: f104 0243 add.w r2, r4, #67 ; 0x43 - 8007e5e: d807 bhi.n 8007e70 <_printf_i+0x28> - 8007e60: 2f62 cmp r7, #98 ; 0x62 - 8007e62: d80a bhi.n 8007e7a <_printf_i+0x32> - 8007e64: 2f00 cmp r7, #0 - 8007e66: f000 80d9 beq.w 800801c <_printf_i+0x1d4> - 8007e6a: 2f58 cmp r7, #88 ; 0x58 - 8007e6c: f000 80a4 beq.w 8007fb8 <_printf_i+0x170> - 8007e70: f104 0642 add.w r6, r4, #66 ; 0x42 - 8007e74: f884 7042 strb.w r7, [r4, #66] ; 0x42 - 8007e78: e03a b.n 8007ef0 <_printf_i+0xa8> - 8007e7a: f1a7 0363 sub.w r3, r7, #99 ; 0x63 - 8007e7e: 2b15 cmp r3, #21 - 8007e80: d8f6 bhi.n 8007e70 <_printf_i+0x28> - 8007e82: a001 add r0, pc, #4 ; (adr r0, 8007e88 <_printf_i+0x40>) - 8007e84: f850 f023 ldr.w pc, [r0, r3, lsl #2] - 8007e88: 08007ee1 .word 0x08007ee1 - 8007e8c: 08007ef5 .word 0x08007ef5 - 8007e90: 08007e71 .word 0x08007e71 - 8007e94: 08007e71 .word 0x08007e71 - 8007e98: 08007e71 .word 0x08007e71 - 8007e9c: 08007e71 .word 0x08007e71 - 8007ea0: 08007ef5 .word 0x08007ef5 - 8007ea4: 08007e71 .word 0x08007e71 - 8007ea8: 08007e71 .word 0x08007e71 - 8007eac: 08007e71 .word 0x08007e71 - 8007eb0: 08007e71 .word 0x08007e71 - 8007eb4: 08008003 .word 0x08008003 - 8007eb8: 08007f25 .word 0x08007f25 - 8007ebc: 08007fe5 .word 0x08007fe5 - 8007ec0: 08007e71 .word 0x08007e71 - 8007ec4: 08007e71 .word 0x08007e71 - 8007ec8: 08008025 .word 0x08008025 - 8007ecc: 08007e71 .word 0x08007e71 - 8007ed0: 08007f25 .word 0x08007f25 - 8007ed4: 08007e71 .word 0x08007e71 - 8007ed8: 08007e71 .word 0x08007e71 - 8007edc: 08007fed .word 0x08007fed - 8007ee0: 680b ldr r3, [r1, #0] - 8007ee2: f104 0642 add.w r6, r4, #66 ; 0x42 - 8007ee6: 1d1a adds r2, r3, #4 - 8007ee8: 681b ldr r3, [r3, #0] - 8007eea: 600a str r2, [r1, #0] - 8007eec: f884 3042 strb.w r3, [r4, #66] ; 0x42 - 8007ef0: 2301 movs r3, #1 - 8007ef2: e0a4 b.n 800803e <_printf_i+0x1f6> - 8007ef4: 6825 ldr r5, [r4, #0] - 8007ef6: 6808 ldr r0, [r1, #0] - 8007ef8: 062e lsls r6, r5, #24 - 8007efa: f100 0304 add.w r3, r0, #4 - 8007efe: d50a bpl.n 8007f16 <_printf_i+0xce> - 8007f00: 6805 ldr r5, [r0, #0] - 8007f02: 600b str r3, [r1, #0] - 8007f04: 2d00 cmp r5, #0 - 8007f06: da03 bge.n 8007f10 <_printf_i+0xc8> - 8007f08: 232d movs r3, #45 ; 0x2d - 8007f0a: 426d negs r5, r5 - 8007f0c: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8007f10: 230a movs r3, #10 - 8007f12: 485e ldr r0, [pc, #376] ; (800808c <_printf_i+0x244>) - 8007f14: e019 b.n 8007f4a <_printf_i+0x102> - 8007f16: f015 0f40 tst.w r5, #64 ; 0x40 - 8007f1a: 6805 ldr r5, [r0, #0] - 8007f1c: 600b str r3, [r1, #0] - 8007f1e: bf18 it ne - 8007f20: b22d sxthne r5, r5 - 8007f22: e7ef b.n 8007f04 <_printf_i+0xbc> - 8007f24: 680b ldr r3, [r1, #0] - 8007f26: 6825 ldr r5, [r4, #0] - 8007f28: 1d18 adds r0, r3, #4 - 8007f2a: 6008 str r0, [r1, #0] - 8007f2c: 0628 lsls r0, r5, #24 - 8007f2e: d501 bpl.n 8007f34 <_printf_i+0xec> - 8007f30: 681d ldr r5, [r3, #0] - 8007f32: e002 b.n 8007f3a <_printf_i+0xf2> - 8007f34: 0669 lsls r1, r5, #25 - 8007f36: d5fb bpl.n 8007f30 <_printf_i+0xe8> - 8007f38: 881d ldrh r5, [r3, #0] - 8007f3a: 2f6f cmp r7, #111 ; 0x6f - 8007f3c: bf0c ite eq - 8007f3e: 2308 moveq r3, #8 - 8007f40: 230a movne r3, #10 - 8007f42: 4852 ldr r0, [pc, #328] ; (800808c <_printf_i+0x244>) - 8007f44: 2100 movs r1, #0 - 8007f46: f884 1043 strb.w r1, [r4, #67] ; 0x43 - 8007f4a: 6866 ldr r6, [r4, #4] - 8007f4c: 2e00 cmp r6, #0 - 8007f4e: bfa8 it ge - 8007f50: 6821 ldrge r1, [r4, #0] - 8007f52: 60a6 str r6, [r4, #8] - 8007f54: bfa4 itt ge - 8007f56: f021 0104 bicge.w r1, r1, #4 - 8007f5a: 6021 strge r1, [r4, #0] - 8007f5c: b90d cbnz r5, 8007f62 <_printf_i+0x11a> - 8007f5e: 2e00 cmp r6, #0 - 8007f60: d04d beq.n 8007ffe <_printf_i+0x1b6> - 8007f62: 4616 mov r6, r2 - 8007f64: fbb5 f1f3 udiv r1, r5, r3 - 8007f68: fb03 5711 mls r7, r3, r1, r5 - 8007f6c: 5dc7 ldrb r7, [r0, r7] - 8007f6e: f806 7d01 strb.w r7, [r6, #-1]! - 8007f72: 462f mov r7, r5 - 8007f74: 42bb cmp r3, r7 - 8007f76: 460d mov r5, r1 - 8007f78: d9f4 bls.n 8007f64 <_printf_i+0x11c> - 8007f7a: 2b08 cmp r3, #8 - 8007f7c: d10b bne.n 8007f96 <_printf_i+0x14e> - 8007f7e: 6823 ldr r3, [r4, #0] - 8007f80: 07df lsls r7, r3, #31 - 8007f82: d508 bpl.n 8007f96 <_printf_i+0x14e> - 8007f84: 6923 ldr r3, [r4, #16] - 8007f86: 6861 ldr r1, [r4, #4] - 8007f88: 4299 cmp r1, r3 - 8007f8a: bfde ittt le - 8007f8c: 2330 movle r3, #48 ; 0x30 - 8007f8e: f806 3c01 strble.w r3, [r6, #-1] - 8007f92: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff - 8007f96: 1b92 subs r2, r2, r6 - 8007f98: 6122 str r2, [r4, #16] - 8007f9a: 464b mov r3, r9 - 8007f9c: 4621 mov r1, r4 - 8007f9e: 4640 mov r0, r8 - 8007fa0: f8cd a000 str.w sl, [sp] - 8007fa4: aa03 add r2, sp, #12 - 8007fa6: f7ff fedf bl 8007d68 <_printf_common> - 8007faa: 3001 adds r0, #1 - 8007fac: d14c bne.n 8008048 <_printf_i+0x200> - 8007fae: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007fb2: b004 add sp, #16 - 8007fb4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8007fb8: 4834 ldr r0, [pc, #208] ; (800808c <_printf_i+0x244>) - 8007fba: f884 7045 strb.w r7, [r4, #69] ; 0x45 - 8007fbe: 680e ldr r6, [r1, #0] - 8007fc0: 6823 ldr r3, [r4, #0] - 8007fc2: f856 5b04 ldr.w r5, [r6], #4 - 8007fc6: 061f lsls r7, r3, #24 - 8007fc8: 600e str r6, [r1, #0] - 8007fca: d514 bpl.n 8007ff6 <_printf_i+0x1ae> - 8007fcc: 07d9 lsls r1, r3, #31 - 8007fce: bf44 itt mi - 8007fd0: f043 0320 orrmi.w r3, r3, #32 - 8007fd4: 6023 strmi r3, [r4, #0] - 8007fd6: b91d cbnz r5, 8007fe0 <_printf_i+0x198> - 8007fd8: 6823 ldr r3, [r4, #0] - 8007fda: f023 0320 bic.w r3, r3, #32 - 8007fde: 6023 str r3, [r4, #0] - 8007fe0: 2310 movs r3, #16 - 8007fe2: e7af b.n 8007f44 <_printf_i+0xfc> - 8007fe4: 6823 ldr r3, [r4, #0] - 8007fe6: f043 0320 orr.w r3, r3, #32 - 8007fea: 6023 str r3, [r4, #0] - 8007fec: 2378 movs r3, #120 ; 0x78 - 8007fee: 4828 ldr r0, [pc, #160] ; (8008090 <_printf_i+0x248>) - 8007ff0: f884 3045 strb.w r3, [r4, #69] ; 0x45 - 8007ff4: e7e3 b.n 8007fbe <_printf_i+0x176> - 8007ff6: 065e lsls r6, r3, #25 - 8007ff8: bf48 it mi - 8007ffa: b2ad uxthmi r5, r5 - 8007ffc: e7e6 b.n 8007fcc <_printf_i+0x184> - 8007ffe: 4616 mov r6, r2 - 8008000: e7bb b.n 8007f7a <_printf_i+0x132> - 8008002: 680b ldr r3, [r1, #0] - 8008004: 6826 ldr r6, [r4, #0] - 8008006: 1d1d adds r5, r3, #4 - 8008008: 6960 ldr r0, [r4, #20] - 800800a: 600d str r5, [r1, #0] - 800800c: 0635 lsls r5, r6, #24 - 800800e: 681b ldr r3, [r3, #0] - 8008010: d501 bpl.n 8008016 <_printf_i+0x1ce> - 8008012: 6018 str r0, [r3, #0] - 8008014: e002 b.n 800801c <_printf_i+0x1d4> - 8008016: 0671 lsls r1, r6, #25 - 8008018: d5fb bpl.n 8008012 <_printf_i+0x1ca> - 800801a: 8018 strh r0, [r3, #0] - 800801c: 2300 movs r3, #0 - 800801e: 4616 mov r6, r2 - 8008020: 6123 str r3, [r4, #16] - 8008022: e7ba b.n 8007f9a <_printf_i+0x152> - 8008024: 680b ldr r3, [r1, #0] - 8008026: 1d1a adds r2, r3, #4 - 8008028: 600a str r2, [r1, #0] - 800802a: 681e ldr r6, [r3, #0] - 800802c: 2100 movs r1, #0 - 800802e: 4630 mov r0, r6 - 8008030: 6862 ldr r2, [r4, #4] - 8008032: f000 fedf bl 8008df4 - 8008036: b108 cbz r0, 800803c <_printf_i+0x1f4> - 8008038: 1b80 subs r0, r0, r6 - 800803a: 6060 str r0, [r4, #4] - 800803c: 6863 ldr r3, [r4, #4] - 800803e: 6123 str r3, [r4, #16] - 8008040: 2300 movs r3, #0 - 8008042: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8008046: e7a8 b.n 8007f9a <_printf_i+0x152> - 8008048: 4632 mov r2, r6 - 800804a: 4649 mov r1, r9 - 800804c: 4640 mov r0, r8 - 800804e: 6923 ldr r3, [r4, #16] - 8008050: 47d0 blx sl - 8008052: 3001 adds r0, #1 - 8008054: d0ab beq.n 8007fae <_printf_i+0x166> - 8008056: 6823 ldr r3, [r4, #0] - 8008058: 079b lsls r3, r3, #30 - 800805a: d413 bmi.n 8008084 <_printf_i+0x23c> - 800805c: 68e0 ldr r0, [r4, #12] - 800805e: 9b03 ldr r3, [sp, #12] - 8008060: 4298 cmp r0, r3 - 8008062: bfb8 it lt - 8008064: 4618 movlt r0, r3 - 8008066: e7a4 b.n 8007fb2 <_printf_i+0x16a> - 8008068: 2301 movs r3, #1 - 800806a: 4632 mov r2, r6 - 800806c: 4649 mov r1, r9 - 800806e: 4640 mov r0, r8 - 8008070: 47d0 blx sl - 8008072: 3001 adds r0, #1 - 8008074: d09b beq.n 8007fae <_printf_i+0x166> - 8008076: 3501 adds r5, #1 - 8008078: 68e3 ldr r3, [r4, #12] - 800807a: 9903 ldr r1, [sp, #12] - 800807c: 1a5b subs r3, r3, r1 - 800807e: 42ab cmp r3, r5 - 8008080: dcf2 bgt.n 8008068 <_printf_i+0x220> - 8008082: e7eb b.n 800805c <_printf_i+0x214> - 8008084: 2500 movs r5, #0 - 8008086: f104 0619 add.w r6, r4, #25 - 800808a: e7f5 b.n 8008078 <_printf_i+0x230> - 800808c: 0800af4e .word 0x0800af4e - 8008090: 0800af5f .word 0x0800af5f +08007f68 <_printf_i>: + 8007f68: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} + 8007f6c: 460c mov r4, r1 + 8007f6e: 7e27 ldrb r7, [r4, #24] + 8007f70: 4691 mov r9, r2 + 8007f72: 2f78 cmp r7, #120 ; 0x78 + 8007f74: 4680 mov r8, r0 + 8007f76: 469a mov sl, r3 + 8007f78: 990c ldr r1, [sp, #48] ; 0x30 + 8007f7a: f104 0243 add.w r2, r4, #67 ; 0x43 + 8007f7e: d807 bhi.n 8007f90 <_printf_i+0x28> + 8007f80: 2f62 cmp r7, #98 ; 0x62 + 8007f82: d80a bhi.n 8007f9a <_printf_i+0x32> + 8007f84: 2f00 cmp r7, #0 + 8007f86: f000 80d9 beq.w 800813c <_printf_i+0x1d4> + 8007f8a: 2f58 cmp r7, #88 ; 0x58 + 8007f8c: f000 80a4 beq.w 80080d8 <_printf_i+0x170> + 8007f90: f104 0642 add.w r6, r4, #66 ; 0x42 + 8007f94: f884 7042 strb.w r7, [r4, #66] ; 0x42 + 8007f98: e03a b.n 8008010 <_printf_i+0xa8> + 8007f9a: f1a7 0363 sub.w r3, r7, #99 ; 0x63 + 8007f9e: 2b15 cmp r3, #21 + 8007fa0: d8f6 bhi.n 8007f90 <_printf_i+0x28> + 8007fa2: a001 add r0, pc, #4 ; (adr r0, 8007fa8 <_printf_i+0x40>) + 8007fa4: f850 f023 ldr.w pc, [r0, r3, lsl #2] + 8007fa8: 08008001 .word 0x08008001 + 8007fac: 08008015 .word 0x08008015 + 8007fb0: 08007f91 .word 0x08007f91 + 8007fb4: 08007f91 .word 0x08007f91 + 8007fb8: 08007f91 .word 0x08007f91 + 8007fbc: 08007f91 .word 0x08007f91 + 8007fc0: 08008015 .word 0x08008015 + 8007fc4: 08007f91 .word 0x08007f91 + 8007fc8: 08007f91 .word 0x08007f91 + 8007fcc: 08007f91 .word 0x08007f91 + 8007fd0: 08007f91 .word 0x08007f91 + 8007fd4: 08008123 .word 0x08008123 + 8007fd8: 08008045 .word 0x08008045 + 8007fdc: 08008105 .word 0x08008105 + 8007fe0: 08007f91 .word 0x08007f91 + 8007fe4: 08007f91 .word 0x08007f91 + 8007fe8: 08008145 .word 0x08008145 + 8007fec: 08007f91 .word 0x08007f91 + 8007ff0: 08008045 .word 0x08008045 + 8007ff4: 08007f91 .word 0x08007f91 + 8007ff8: 08007f91 .word 0x08007f91 + 8007ffc: 0800810d .word 0x0800810d + 8008000: 680b ldr r3, [r1, #0] + 8008002: f104 0642 add.w r6, r4, #66 ; 0x42 + 8008006: 1d1a adds r2, r3, #4 + 8008008: 681b ldr r3, [r3, #0] + 800800a: 600a str r2, [r1, #0] + 800800c: f884 3042 strb.w r3, [r4, #66] ; 0x42 + 8008010: 2301 movs r3, #1 + 8008012: e0a4 b.n 800815e <_printf_i+0x1f6> + 8008014: 6825 ldr r5, [r4, #0] + 8008016: 6808 ldr r0, [r1, #0] + 8008018: 062e lsls r6, r5, #24 + 800801a: f100 0304 add.w r3, r0, #4 + 800801e: d50a bpl.n 8008036 <_printf_i+0xce> + 8008020: 6805 ldr r5, [r0, #0] + 8008022: 600b str r3, [r1, #0] + 8008024: 2d00 cmp r5, #0 + 8008026: da03 bge.n 8008030 <_printf_i+0xc8> + 8008028: 232d movs r3, #45 ; 0x2d + 800802a: 426d negs r5, r5 + 800802c: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8008030: 230a movs r3, #10 + 8008032: 485e ldr r0, [pc, #376] ; (80081ac <_printf_i+0x244>) + 8008034: e019 b.n 800806a <_printf_i+0x102> + 8008036: f015 0f40 tst.w r5, #64 ; 0x40 + 800803a: 6805 ldr r5, [r0, #0] + 800803c: 600b str r3, [r1, #0] + 800803e: bf18 it ne + 8008040: b22d sxthne r5, r5 + 8008042: e7ef b.n 8008024 <_printf_i+0xbc> + 8008044: 680b ldr r3, [r1, #0] + 8008046: 6825 ldr r5, [r4, #0] + 8008048: 1d18 adds r0, r3, #4 + 800804a: 6008 str r0, [r1, #0] + 800804c: 0628 lsls r0, r5, #24 + 800804e: d501 bpl.n 8008054 <_printf_i+0xec> + 8008050: 681d ldr r5, [r3, #0] + 8008052: e002 b.n 800805a <_printf_i+0xf2> + 8008054: 0669 lsls r1, r5, #25 + 8008056: d5fb bpl.n 8008050 <_printf_i+0xe8> + 8008058: 881d ldrh r5, [r3, #0] + 800805a: 2f6f cmp r7, #111 ; 0x6f + 800805c: bf0c ite eq + 800805e: 2308 moveq r3, #8 + 8008060: 230a movne r3, #10 + 8008062: 4852 ldr r0, [pc, #328] ; (80081ac <_printf_i+0x244>) + 8008064: 2100 movs r1, #0 + 8008066: f884 1043 strb.w r1, [r4, #67] ; 0x43 + 800806a: 6866 ldr r6, [r4, #4] + 800806c: 2e00 cmp r6, #0 + 800806e: bfa8 it ge + 8008070: 6821 ldrge r1, [r4, #0] + 8008072: 60a6 str r6, [r4, #8] + 8008074: bfa4 itt ge + 8008076: f021 0104 bicge.w r1, r1, #4 + 800807a: 6021 strge r1, [r4, #0] + 800807c: b90d cbnz r5, 8008082 <_printf_i+0x11a> + 800807e: 2e00 cmp r6, #0 + 8008080: d04d beq.n 800811e <_printf_i+0x1b6> + 8008082: 4616 mov r6, r2 + 8008084: fbb5 f1f3 udiv r1, r5, r3 + 8008088: fb03 5711 mls r7, r3, r1, r5 + 800808c: 5dc7 ldrb r7, [r0, r7] + 800808e: f806 7d01 strb.w r7, [r6, #-1]! + 8008092: 462f mov r7, r5 + 8008094: 42bb cmp r3, r7 + 8008096: 460d mov r5, r1 + 8008098: d9f4 bls.n 8008084 <_printf_i+0x11c> + 800809a: 2b08 cmp r3, #8 + 800809c: d10b bne.n 80080b6 <_printf_i+0x14e> + 800809e: 6823 ldr r3, [r4, #0] + 80080a0: 07df lsls r7, r3, #31 + 80080a2: d508 bpl.n 80080b6 <_printf_i+0x14e> + 80080a4: 6923 ldr r3, [r4, #16] + 80080a6: 6861 ldr r1, [r4, #4] + 80080a8: 4299 cmp r1, r3 + 80080aa: bfde ittt le + 80080ac: 2330 movle r3, #48 ; 0x30 + 80080ae: f806 3c01 strble.w r3, [r6, #-1] + 80080b2: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff + 80080b6: 1b92 subs r2, r2, r6 + 80080b8: 6122 str r2, [r4, #16] + 80080ba: 464b mov r3, r9 + 80080bc: 4621 mov r1, r4 + 80080be: 4640 mov r0, r8 + 80080c0: f8cd a000 str.w sl, [sp] + 80080c4: aa03 add r2, sp, #12 + 80080c6: f7ff fedf bl 8007e88 <_printf_common> + 80080ca: 3001 adds r0, #1 + 80080cc: d14c bne.n 8008168 <_printf_i+0x200> + 80080ce: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80080d2: b004 add sp, #16 + 80080d4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 80080d8: 4834 ldr r0, [pc, #208] ; (80081ac <_printf_i+0x244>) + 80080da: f884 7045 strb.w r7, [r4, #69] ; 0x45 + 80080de: 680e ldr r6, [r1, #0] + 80080e0: 6823 ldr r3, [r4, #0] + 80080e2: f856 5b04 ldr.w r5, [r6], #4 + 80080e6: 061f lsls r7, r3, #24 + 80080e8: 600e str r6, [r1, #0] + 80080ea: d514 bpl.n 8008116 <_printf_i+0x1ae> + 80080ec: 07d9 lsls r1, r3, #31 + 80080ee: bf44 itt mi + 80080f0: f043 0320 orrmi.w r3, r3, #32 + 80080f4: 6023 strmi r3, [r4, #0] + 80080f6: b91d cbnz r5, 8008100 <_printf_i+0x198> + 80080f8: 6823 ldr r3, [r4, #0] + 80080fa: f023 0320 bic.w r3, r3, #32 + 80080fe: 6023 str r3, [r4, #0] + 8008100: 2310 movs r3, #16 + 8008102: e7af b.n 8008064 <_printf_i+0xfc> + 8008104: 6823 ldr r3, [r4, #0] + 8008106: f043 0320 orr.w r3, r3, #32 + 800810a: 6023 str r3, [r4, #0] + 800810c: 2378 movs r3, #120 ; 0x78 + 800810e: 4828 ldr r0, [pc, #160] ; (80081b0 <_printf_i+0x248>) + 8008110: f884 3045 strb.w r3, [r4, #69] ; 0x45 + 8008114: e7e3 b.n 80080de <_printf_i+0x176> + 8008116: 065e lsls r6, r3, #25 + 8008118: bf48 it mi + 800811a: b2ad uxthmi r5, r5 + 800811c: e7e6 b.n 80080ec <_printf_i+0x184> + 800811e: 4616 mov r6, r2 + 8008120: e7bb b.n 800809a <_printf_i+0x132> + 8008122: 680b ldr r3, [r1, #0] + 8008124: 6826 ldr r6, [r4, #0] + 8008126: 1d1d adds r5, r3, #4 + 8008128: 6960 ldr r0, [r4, #20] + 800812a: 600d str r5, [r1, #0] + 800812c: 0635 lsls r5, r6, #24 + 800812e: 681b ldr r3, [r3, #0] + 8008130: d501 bpl.n 8008136 <_printf_i+0x1ce> + 8008132: 6018 str r0, [r3, #0] + 8008134: e002 b.n 800813c <_printf_i+0x1d4> + 8008136: 0671 lsls r1, r6, #25 + 8008138: d5fb bpl.n 8008132 <_printf_i+0x1ca> + 800813a: 8018 strh r0, [r3, #0] + 800813c: 2300 movs r3, #0 + 800813e: 4616 mov r6, r2 + 8008140: 6123 str r3, [r4, #16] + 8008142: e7ba b.n 80080ba <_printf_i+0x152> + 8008144: 680b ldr r3, [r1, #0] + 8008146: 1d1a adds r2, r3, #4 + 8008148: 600a str r2, [r1, #0] + 800814a: 681e ldr r6, [r3, #0] + 800814c: 2100 movs r1, #0 + 800814e: 4630 mov r0, r6 + 8008150: 6862 ldr r2, [r4, #4] + 8008152: f001 fa63 bl 800961c + 8008156: b108 cbz r0, 800815c <_printf_i+0x1f4> + 8008158: 1b80 subs r0, r0, r6 + 800815a: 6060 str r0, [r4, #4] + 800815c: 6863 ldr r3, [r4, #4] + 800815e: 6123 str r3, [r4, #16] + 8008160: 2300 movs r3, #0 + 8008162: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8008166: e7a8 b.n 80080ba <_printf_i+0x152> + 8008168: 4632 mov r2, r6 + 800816a: 4649 mov r1, r9 + 800816c: 4640 mov r0, r8 + 800816e: 6923 ldr r3, [r4, #16] + 8008170: 47d0 blx sl + 8008172: 3001 adds r0, #1 + 8008174: d0ab beq.n 80080ce <_printf_i+0x166> + 8008176: 6823 ldr r3, [r4, #0] + 8008178: 079b lsls r3, r3, #30 + 800817a: d413 bmi.n 80081a4 <_printf_i+0x23c> + 800817c: 68e0 ldr r0, [r4, #12] + 800817e: 9b03 ldr r3, [sp, #12] + 8008180: 4298 cmp r0, r3 + 8008182: bfb8 it lt + 8008184: 4618 movlt r0, r3 + 8008186: e7a4 b.n 80080d2 <_printf_i+0x16a> + 8008188: 2301 movs r3, #1 + 800818a: 4632 mov r2, r6 + 800818c: 4649 mov r1, r9 + 800818e: 4640 mov r0, r8 + 8008190: 47d0 blx sl + 8008192: 3001 adds r0, #1 + 8008194: d09b beq.n 80080ce <_printf_i+0x166> + 8008196: 3501 adds r5, #1 + 8008198: 68e3 ldr r3, [r4, #12] + 800819a: 9903 ldr r1, [sp, #12] + 800819c: 1a5b subs r3, r3, r1 + 800819e: 42ab cmp r3, r5 + 80081a0: dcf2 bgt.n 8008188 <_printf_i+0x220> + 80081a2: e7eb b.n 800817c <_printf_i+0x214> + 80081a4: 2500 movs r5, #0 + 80081a6: f104 0619 add.w r6, r4, #25 + 80081aa: e7f5 b.n 8008198 <_printf_i+0x230> + 80081ac: 0800b29e .word 0x0800b29e + 80081b0: 0800b2af .word 0x0800b2af -08008094 <_sbrk_r>: - 8008094: b538 push {r3, r4, r5, lr} - 8008096: 2300 movs r3, #0 - 8008098: 4d05 ldr r5, [pc, #20] ; (80080b0 <_sbrk_r+0x1c>) - 800809a: 4604 mov r4, r0 - 800809c: 4608 mov r0, r1 - 800809e: 602b str r3, [r5, #0] - 80080a0: f7f9 fc88 bl 80019b4 <_sbrk> - 80080a4: 1c43 adds r3, r0, #1 - 80080a6: d102 bne.n 80080ae <_sbrk_r+0x1a> - 80080a8: 682b ldr r3, [r5, #0] - 80080aa: b103 cbz r3, 80080ae <_sbrk_r+0x1a> - 80080ac: 6023 str r3, [r4, #0] - 80080ae: bd38 pop {r3, r4, r5, pc} - 80080b0: 20002538 .word 0x20002538 +080081b4 : + 80081b4: b40f push {r0, r1, r2, r3} + 80081b6: 4b0a ldr r3, [pc, #40] ; (80081e0 ) + 80081b8: b513 push {r0, r1, r4, lr} + 80081ba: 681c ldr r4, [r3, #0] + 80081bc: b124 cbz r4, 80081c8 + 80081be: 69a3 ldr r3, [r4, #24] + 80081c0: b913 cbnz r3, 80081c8 + 80081c2: 4620 mov r0, r4 + 80081c4: f001 f920 bl 8009408 <__sinit> + 80081c8: ab05 add r3, sp, #20 + 80081ca: 4620 mov r0, r4 + 80081cc: 9a04 ldr r2, [sp, #16] + 80081ce: 68a1 ldr r1, [r4, #8] + 80081d0: 9301 str r3, [sp, #4] + 80081d2: f001 ff5f bl 800a094 <_vfiprintf_r> + 80081d6: b002 add sp, #8 + 80081d8: e8bd 4010 ldmia.w sp!, {r4, lr} + 80081dc: b004 add sp, #16 + 80081de: 4770 bx lr + 80081e0: 20000014 .word 0x20000014 -080080b4 : - 80080b4: b40e push {r1, r2, r3} - 80080b6: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 - 80080ba: b500 push {lr} - 80080bc: b09c sub sp, #112 ; 0x70 - 80080be: ab1d add r3, sp, #116 ; 0x74 - 80080c0: 9002 str r0, [sp, #8] - 80080c2: 9006 str r0, [sp, #24] - 80080c4: 9107 str r1, [sp, #28] - 80080c6: 9104 str r1, [sp, #16] - 80080c8: 4808 ldr r0, [pc, #32] ; (80080ec ) - 80080ca: 4909 ldr r1, [pc, #36] ; (80080f0 ) - 80080cc: f853 2b04 ldr.w r2, [r3], #4 - 80080d0: 9105 str r1, [sp, #20] - 80080d2: 6800 ldr r0, [r0, #0] - 80080d4: a902 add r1, sp, #8 - 80080d6: 9301 str r3, [sp, #4] - 80080d8: f001 faa0 bl 800961c <_svfiprintf_r> - 80080dc: 2200 movs r2, #0 - 80080de: 9b02 ldr r3, [sp, #8] - 80080e0: 701a strb r2, [r3, #0] - 80080e2: b01c add sp, #112 ; 0x70 - 80080e4: f85d eb04 ldr.w lr, [sp], #4 - 80080e8: b003 add sp, #12 - 80080ea: 4770 bx lr - 80080ec: 20000014 .word 0x20000014 - 80080f0: ffff0208 .word 0xffff0208 +080081e4 : + 80081e4: b538 push {r3, r4, r5, lr} + 80081e6: 4b08 ldr r3, [pc, #32] ; (8008208 ) + 80081e8: 4605 mov r5, r0 + 80081ea: 681c ldr r4, [r3, #0] + 80081ec: b124 cbz r4, 80081f8 + 80081ee: 69a3 ldr r3, [r4, #24] + 80081f0: b913 cbnz r3, 80081f8 + 80081f2: 4620 mov r0, r4 + 80081f4: f001 f908 bl 8009408 <__sinit> + 80081f8: 4629 mov r1, r5 + 80081fa: 4620 mov r0, r4 + 80081fc: 68a2 ldr r2, [r4, #8] + 80081fe: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 8008202: f002 b877 b.w 800a2f4 <_putc_r> + 8008206: bf00 nop + 8008208: 20000014 .word 0x20000014 -080080f4 : - 80080f4: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 80080f8: 6903 ldr r3, [r0, #16] - 80080fa: 690c ldr r4, [r1, #16] - 80080fc: 4607 mov r7, r0 - 80080fe: 42a3 cmp r3, r4 - 8008100: f2c0 8083 blt.w 800820a - 8008104: 3c01 subs r4, #1 - 8008106: f100 0514 add.w r5, r0, #20 - 800810a: f101 0814 add.w r8, r1, #20 - 800810e: eb05 0384 add.w r3, r5, r4, lsl #2 - 8008112: 9301 str r3, [sp, #4] - 8008114: f858 3024 ldr.w r3, [r8, r4, lsl #2] - 8008118: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 800811c: 3301 adds r3, #1 - 800811e: 429a cmp r2, r3 - 8008120: fbb2 f6f3 udiv r6, r2, r3 - 8008124: ea4f 0b84 mov.w fp, r4, lsl #2 - 8008128: eb08 0984 add.w r9, r8, r4, lsl #2 - 800812c: d332 bcc.n 8008194 - 800812e: f04f 0e00 mov.w lr, #0 - 8008132: 4640 mov r0, r8 - 8008134: 46ac mov ip, r5 - 8008136: 46f2 mov sl, lr - 8008138: f850 2b04 ldr.w r2, [r0], #4 - 800813c: b293 uxth r3, r2 - 800813e: fb06 e303 mla r3, r6, r3, lr - 8008142: 0c12 lsrs r2, r2, #16 - 8008144: ea4f 4e13 mov.w lr, r3, lsr #16 - 8008148: fb06 e202 mla r2, r6, r2, lr - 800814c: b29b uxth r3, r3 - 800814e: ebaa 0303 sub.w r3, sl, r3 - 8008152: f8dc a000 ldr.w sl, [ip] - 8008156: ea4f 4e12 mov.w lr, r2, lsr #16 - 800815a: fa1f fa8a uxth.w sl, sl - 800815e: 4453 add r3, sl - 8008160: fa1f fa82 uxth.w sl, r2 - 8008164: f8dc 2000 ldr.w r2, [ip] - 8008168: 4581 cmp r9, r0 - 800816a: ebca 4212 rsb r2, sl, r2, lsr #16 - 800816e: eb02 4223 add.w r2, r2, r3, asr #16 - 8008172: b29b uxth r3, r3 - 8008174: ea43 4302 orr.w r3, r3, r2, lsl #16 - 8008178: ea4f 4a22 mov.w sl, r2, asr #16 - 800817c: f84c 3b04 str.w r3, [ip], #4 - 8008180: d2da bcs.n 8008138 - 8008182: f855 300b ldr.w r3, [r5, fp] - 8008186: b92b cbnz r3, 8008194 - 8008188: 9b01 ldr r3, [sp, #4] - 800818a: 3b04 subs r3, #4 - 800818c: 429d cmp r5, r3 - 800818e: 461a mov r2, r3 - 8008190: d32f bcc.n 80081f2 - 8008192: 613c str r4, [r7, #16] - 8008194: 4638 mov r0, r7 - 8008196: f001 f8cf bl 8009338 <__mcmp> - 800819a: 2800 cmp r0, #0 - 800819c: db25 blt.n 80081ea - 800819e: 4628 mov r0, r5 - 80081a0: f04f 0c00 mov.w ip, #0 - 80081a4: 3601 adds r6, #1 - 80081a6: f858 1b04 ldr.w r1, [r8], #4 - 80081aa: f8d0 e000 ldr.w lr, [r0] - 80081ae: b28b uxth r3, r1 - 80081b0: ebac 0303 sub.w r3, ip, r3 - 80081b4: fa1f f28e uxth.w r2, lr - 80081b8: 4413 add r3, r2 - 80081ba: 0c0a lsrs r2, r1, #16 - 80081bc: ebc2 421e rsb r2, r2, lr, lsr #16 - 80081c0: eb02 4223 add.w r2, r2, r3, asr #16 - 80081c4: b29b uxth r3, r3 - 80081c6: ea43 4302 orr.w r3, r3, r2, lsl #16 - 80081ca: 45c1 cmp r9, r8 - 80081cc: ea4f 4c22 mov.w ip, r2, asr #16 - 80081d0: f840 3b04 str.w r3, [r0], #4 - 80081d4: d2e7 bcs.n 80081a6 - 80081d6: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 80081da: eb05 0384 add.w r3, r5, r4, lsl #2 - 80081de: b922 cbnz r2, 80081ea - 80081e0: 3b04 subs r3, #4 - 80081e2: 429d cmp r5, r3 - 80081e4: 461a mov r2, r3 - 80081e6: d30a bcc.n 80081fe - 80081e8: 613c str r4, [r7, #16] - 80081ea: 4630 mov r0, r6 - 80081ec: b003 add sp, #12 - 80081ee: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80081f2: 6812 ldr r2, [r2, #0] - 80081f4: 3b04 subs r3, #4 - 80081f6: 2a00 cmp r2, #0 - 80081f8: d1cb bne.n 8008192 - 80081fa: 3c01 subs r4, #1 - 80081fc: e7c6 b.n 800818c - 80081fe: 6812 ldr r2, [r2, #0] - 8008200: 3b04 subs r3, #4 - 8008202: 2a00 cmp r2, #0 - 8008204: d1f0 bne.n 80081e8 - 8008206: 3c01 subs r4, #1 - 8008208: e7eb b.n 80081e2 - 800820a: 2000 movs r0, #0 - 800820c: e7ee b.n 80081ec +0800820c <_puts_r>: + 800820c: b570 push {r4, r5, r6, lr} + 800820e: 460e mov r6, r1 + 8008210: 4605 mov r5, r0 + 8008212: b118 cbz r0, 800821c <_puts_r+0x10> + 8008214: 6983 ldr r3, [r0, #24] + 8008216: b90b cbnz r3, 800821c <_puts_r+0x10> + 8008218: f001 f8f6 bl 8009408 <__sinit> + 800821c: 69ab ldr r3, [r5, #24] + 800821e: 68ac ldr r4, [r5, #8] + 8008220: b913 cbnz r3, 8008228 <_puts_r+0x1c> + 8008222: 4628 mov r0, r5 + 8008224: f001 f8f0 bl 8009408 <__sinit> + 8008228: 4b2c ldr r3, [pc, #176] ; (80082dc <_puts_r+0xd0>) + 800822a: 429c cmp r4, r3 + 800822c: d120 bne.n 8008270 <_puts_r+0x64> + 800822e: 686c ldr r4, [r5, #4] + 8008230: 6e63 ldr r3, [r4, #100] ; 0x64 + 8008232: 07db lsls r3, r3, #31 + 8008234: d405 bmi.n 8008242 <_puts_r+0x36> + 8008236: 89a3 ldrh r3, [r4, #12] + 8008238: 0598 lsls r0, r3, #22 + 800823a: d402 bmi.n 8008242 <_puts_r+0x36> + 800823c: 6da0 ldr r0, [r4, #88] ; 0x58 + 800823e: f001 f986 bl 800954e <__retarget_lock_acquire_recursive> + 8008242: 89a3 ldrh r3, [r4, #12] + 8008244: 0719 lsls r1, r3, #28 + 8008246: d51d bpl.n 8008284 <_puts_r+0x78> + 8008248: 6923 ldr r3, [r4, #16] + 800824a: b1db cbz r3, 8008284 <_puts_r+0x78> + 800824c: 3e01 subs r6, #1 + 800824e: 68a3 ldr r3, [r4, #8] + 8008250: f816 1f01 ldrb.w r1, [r6, #1]! + 8008254: 3b01 subs r3, #1 + 8008256: 60a3 str r3, [r4, #8] + 8008258: bb39 cbnz r1, 80082aa <_puts_r+0x9e> + 800825a: 2b00 cmp r3, #0 + 800825c: da38 bge.n 80082d0 <_puts_r+0xc4> + 800825e: 4622 mov r2, r4 + 8008260: 210a movs r1, #10 + 8008262: 4628 mov r0, r5 + 8008264: f000 f878 bl 8008358 <__swbuf_r> + 8008268: 3001 adds r0, #1 + 800826a: d011 beq.n 8008290 <_puts_r+0x84> + 800826c: 250a movs r5, #10 + 800826e: e011 b.n 8008294 <_puts_r+0x88> + 8008270: 4b1b ldr r3, [pc, #108] ; (80082e0 <_puts_r+0xd4>) + 8008272: 429c cmp r4, r3 + 8008274: d101 bne.n 800827a <_puts_r+0x6e> + 8008276: 68ac ldr r4, [r5, #8] + 8008278: e7da b.n 8008230 <_puts_r+0x24> + 800827a: 4b1a ldr r3, [pc, #104] ; (80082e4 <_puts_r+0xd8>) + 800827c: 429c cmp r4, r3 + 800827e: bf08 it eq + 8008280: 68ec ldreq r4, [r5, #12] + 8008282: e7d5 b.n 8008230 <_puts_r+0x24> + 8008284: 4621 mov r1, r4 + 8008286: 4628 mov r0, r5 + 8008288: f000 f8b8 bl 80083fc <__swsetup_r> + 800828c: 2800 cmp r0, #0 + 800828e: d0dd beq.n 800824c <_puts_r+0x40> + 8008290: f04f 35ff mov.w r5, #4294967295 ; 0xffffffff + 8008294: 6e63 ldr r3, [r4, #100] ; 0x64 + 8008296: 07da lsls r2, r3, #31 + 8008298: d405 bmi.n 80082a6 <_puts_r+0x9a> + 800829a: 89a3 ldrh r3, [r4, #12] + 800829c: 059b lsls r3, r3, #22 + 800829e: d402 bmi.n 80082a6 <_puts_r+0x9a> + 80082a0: 6da0 ldr r0, [r4, #88] ; 0x58 + 80082a2: f001 f955 bl 8009550 <__retarget_lock_release_recursive> + 80082a6: 4628 mov r0, r5 + 80082a8: bd70 pop {r4, r5, r6, pc} + 80082aa: 2b00 cmp r3, #0 + 80082ac: da04 bge.n 80082b8 <_puts_r+0xac> + 80082ae: 69a2 ldr r2, [r4, #24] + 80082b0: 429a cmp r2, r3 + 80082b2: dc06 bgt.n 80082c2 <_puts_r+0xb6> + 80082b4: 290a cmp r1, #10 + 80082b6: d004 beq.n 80082c2 <_puts_r+0xb6> + 80082b8: 6823 ldr r3, [r4, #0] + 80082ba: 1c5a adds r2, r3, #1 + 80082bc: 6022 str r2, [r4, #0] + 80082be: 7019 strb r1, [r3, #0] + 80082c0: e7c5 b.n 800824e <_puts_r+0x42> + 80082c2: 4622 mov r2, r4 + 80082c4: 4628 mov r0, r5 + 80082c6: f000 f847 bl 8008358 <__swbuf_r> + 80082ca: 3001 adds r0, #1 + 80082cc: d1bf bne.n 800824e <_puts_r+0x42> + 80082ce: e7df b.n 8008290 <_puts_r+0x84> + 80082d0: 250a movs r5, #10 + 80082d2: 6823 ldr r3, [r4, #0] + 80082d4: 1c5a adds r2, r3, #1 + 80082d6: 6022 str r2, [r4, #0] + 80082d8: 701d strb r5, [r3, #0] + 80082da: e7db b.n 8008294 <_puts_r+0x88> + 80082dc: 0800b374 .word 0x0800b374 + 80082e0: 0800b394 .word 0x0800b394 + 80082e4: 0800b354 .word 0x0800b354 + +080082e8 : + 80082e8: 4b02 ldr r3, [pc, #8] ; (80082f4 ) + 80082ea: 4601 mov r1, r0 + 80082ec: 6818 ldr r0, [r3, #0] + 80082ee: f7ff bf8d b.w 800820c <_puts_r> + 80082f2: bf00 nop + 80082f4: 20000014 .word 0x20000014 + +080082f8 <_sbrk_r>: + 80082f8: b538 push {r3, r4, r5, lr} + 80082fa: 2300 movs r3, #0 + 80082fc: 4d05 ldr r5, [pc, #20] ; (8008314 <_sbrk_r+0x1c>) + 80082fe: 4604 mov r4, r0 + 8008300: 4608 mov r0, r1 + 8008302: 602b str r3, [r5, #0] + 8008304: f7f9 fb7e bl 8001a04 <_sbrk> + 8008308: 1c43 adds r3, r0, #1 + 800830a: d102 bne.n 8008312 <_sbrk_r+0x1a> + 800830c: 682b ldr r3, [r5, #0] + 800830e: b103 cbz r3, 8008312 <_sbrk_r+0x1a> + 8008310: 6023 str r3, [r4, #0] + 8008312: bd38 pop {r3, r4, r5, pc} + 8008314: 20002544 .word 0x20002544 + +08008318 : + 8008318: b40e push {r1, r2, r3} + 800831a: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 + 800831e: b500 push {lr} + 8008320: b09c sub sp, #112 ; 0x70 + 8008322: ab1d add r3, sp, #116 ; 0x74 + 8008324: 9002 str r0, [sp, #8] + 8008326: 9006 str r0, [sp, #24] + 8008328: 9107 str r1, [sp, #28] + 800832a: 9104 str r1, [sp, #16] + 800832c: 4808 ldr r0, [pc, #32] ; (8008350 ) + 800832e: 4909 ldr r1, [pc, #36] ; (8008354 ) + 8008330: f853 2b04 ldr.w r2, [r3], #4 + 8008334: 9105 str r1, [sp, #20] + 8008336: 6800 ldr r0, [r0, #0] + 8008338: a902 add r1, sp, #8 + 800833a: 9301 str r3, [sp, #4] + 800833c: f001 fd82 bl 8009e44 <_svfiprintf_r> + 8008340: 2200 movs r2, #0 + 8008342: 9b02 ldr r3, [sp, #8] + 8008344: 701a strb r2, [r3, #0] + 8008346: b01c add sp, #112 ; 0x70 + 8008348: f85d eb04 ldr.w lr, [sp], #4 + 800834c: b003 add sp, #12 + 800834e: 4770 bx lr + 8008350: 20000014 .word 0x20000014 + 8008354: ffff0208 .word 0xffff0208 + +08008358 <__swbuf_r>: + 8008358: b5f8 push {r3, r4, r5, r6, r7, lr} + 800835a: 460e mov r6, r1 + 800835c: 4614 mov r4, r2 + 800835e: 4605 mov r5, r0 + 8008360: b118 cbz r0, 800836a <__swbuf_r+0x12> + 8008362: 6983 ldr r3, [r0, #24] + 8008364: b90b cbnz r3, 800836a <__swbuf_r+0x12> + 8008366: f001 f84f bl 8009408 <__sinit> + 800836a: 4b21 ldr r3, [pc, #132] ; (80083f0 <__swbuf_r+0x98>) + 800836c: 429c cmp r4, r3 + 800836e: d12b bne.n 80083c8 <__swbuf_r+0x70> + 8008370: 686c ldr r4, [r5, #4] + 8008372: 69a3 ldr r3, [r4, #24] + 8008374: 60a3 str r3, [r4, #8] + 8008376: 89a3 ldrh r3, [r4, #12] + 8008378: 071a lsls r2, r3, #28 + 800837a: d52f bpl.n 80083dc <__swbuf_r+0x84> + 800837c: 6923 ldr r3, [r4, #16] + 800837e: b36b cbz r3, 80083dc <__swbuf_r+0x84> + 8008380: 6923 ldr r3, [r4, #16] + 8008382: 6820 ldr r0, [r4, #0] + 8008384: b2f6 uxtb r6, r6 + 8008386: 1ac0 subs r0, r0, r3 + 8008388: 6963 ldr r3, [r4, #20] + 800838a: 4637 mov r7, r6 + 800838c: 4283 cmp r3, r0 + 800838e: dc04 bgt.n 800839a <__swbuf_r+0x42> + 8008390: 4621 mov r1, r4 + 8008392: 4628 mov r0, r5 + 8008394: f000 ffa4 bl 80092e0 <_fflush_r> + 8008398: bb30 cbnz r0, 80083e8 <__swbuf_r+0x90> + 800839a: 68a3 ldr r3, [r4, #8] + 800839c: 3001 adds r0, #1 + 800839e: 3b01 subs r3, #1 + 80083a0: 60a3 str r3, [r4, #8] + 80083a2: 6823 ldr r3, [r4, #0] + 80083a4: 1c5a adds r2, r3, #1 + 80083a6: 6022 str r2, [r4, #0] + 80083a8: 701e strb r6, [r3, #0] + 80083aa: 6963 ldr r3, [r4, #20] + 80083ac: 4283 cmp r3, r0 + 80083ae: d004 beq.n 80083ba <__swbuf_r+0x62> + 80083b0: 89a3 ldrh r3, [r4, #12] + 80083b2: 07db lsls r3, r3, #31 + 80083b4: d506 bpl.n 80083c4 <__swbuf_r+0x6c> + 80083b6: 2e0a cmp r6, #10 + 80083b8: d104 bne.n 80083c4 <__swbuf_r+0x6c> + 80083ba: 4621 mov r1, r4 + 80083bc: 4628 mov r0, r5 + 80083be: f000 ff8f bl 80092e0 <_fflush_r> + 80083c2: b988 cbnz r0, 80083e8 <__swbuf_r+0x90> + 80083c4: 4638 mov r0, r7 + 80083c6: bdf8 pop {r3, r4, r5, r6, r7, pc} + 80083c8: 4b0a ldr r3, [pc, #40] ; (80083f4 <__swbuf_r+0x9c>) + 80083ca: 429c cmp r4, r3 + 80083cc: d101 bne.n 80083d2 <__swbuf_r+0x7a> + 80083ce: 68ac ldr r4, [r5, #8] + 80083d0: e7cf b.n 8008372 <__swbuf_r+0x1a> + 80083d2: 4b09 ldr r3, [pc, #36] ; (80083f8 <__swbuf_r+0xa0>) + 80083d4: 429c cmp r4, r3 + 80083d6: bf08 it eq + 80083d8: 68ec ldreq r4, [r5, #12] + 80083da: e7ca b.n 8008372 <__swbuf_r+0x1a> + 80083dc: 4621 mov r1, r4 + 80083de: 4628 mov r0, r5 + 80083e0: f000 f80c bl 80083fc <__swsetup_r> + 80083e4: 2800 cmp r0, #0 + 80083e6: d0cb beq.n 8008380 <__swbuf_r+0x28> + 80083e8: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff + 80083ec: e7ea b.n 80083c4 <__swbuf_r+0x6c> + 80083ee: bf00 nop + 80083f0: 0800b374 .word 0x0800b374 + 80083f4: 0800b394 .word 0x0800b394 + 80083f8: 0800b354 .word 0x0800b354 + +080083fc <__swsetup_r>: + 80083fc: 4b32 ldr r3, [pc, #200] ; (80084c8 <__swsetup_r+0xcc>) + 80083fe: b570 push {r4, r5, r6, lr} + 8008400: 681d ldr r5, [r3, #0] + 8008402: 4606 mov r6, r0 + 8008404: 460c mov r4, r1 + 8008406: b125 cbz r5, 8008412 <__swsetup_r+0x16> + 8008408: 69ab ldr r3, [r5, #24] + 800840a: b913 cbnz r3, 8008412 <__swsetup_r+0x16> + 800840c: 4628 mov r0, r5 + 800840e: f000 fffb bl 8009408 <__sinit> + 8008412: 4b2e ldr r3, [pc, #184] ; (80084cc <__swsetup_r+0xd0>) + 8008414: 429c cmp r4, r3 + 8008416: d10f bne.n 8008438 <__swsetup_r+0x3c> + 8008418: 686c ldr r4, [r5, #4] + 800841a: 89a3 ldrh r3, [r4, #12] + 800841c: f9b4 200c ldrsh.w r2, [r4, #12] + 8008420: 0719 lsls r1, r3, #28 + 8008422: d42c bmi.n 800847e <__swsetup_r+0x82> + 8008424: 06dd lsls r5, r3, #27 + 8008426: d411 bmi.n 800844c <__swsetup_r+0x50> + 8008428: 2309 movs r3, #9 + 800842a: 6033 str r3, [r6, #0] + 800842c: f042 0340 orr.w r3, r2, #64 ; 0x40 + 8008430: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8008434: 81a3 strh r3, [r4, #12] + 8008436: e03e b.n 80084b6 <__swsetup_r+0xba> + 8008438: 4b25 ldr r3, [pc, #148] ; (80084d0 <__swsetup_r+0xd4>) + 800843a: 429c cmp r4, r3 + 800843c: d101 bne.n 8008442 <__swsetup_r+0x46> + 800843e: 68ac ldr r4, [r5, #8] + 8008440: e7eb b.n 800841a <__swsetup_r+0x1e> + 8008442: 4b24 ldr r3, [pc, #144] ; (80084d4 <__swsetup_r+0xd8>) + 8008444: 429c cmp r4, r3 + 8008446: bf08 it eq + 8008448: 68ec ldreq r4, [r5, #12] + 800844a: e7e6 b.n 800841a <__swsetup_r+0x1e> + 800844c: 0758 lsls r0, r3, #29 + 800844e: d512 bpl.n 8008476 <__swsetup_r+0x7a> + 8008450: 6b61 ldr r1, [r4, #52] ; 0x34 + 8008452: b141 cbz r1, 8008466 <__swsetup_r+0x6a> + 8008454: f104 0344 add.w r3, r4, #68 ; 0x44 + 8008458: 4299 cmp r1, r3 + 800845a: d002 beq.n 8008462 <__swsetup_r+0x66> + 800845c: 4630 mov r0, r6 + 800845e: f7ff f9a3 bl 80077a8 <_free_r> + 8008462: 2300 movs r3, #0 + 8008464: 6363 str r3, [r4, #52] ; 0x34 + 8008466: 89a3 ldrh r3, [r4, #12] + 8008468: f023 0324 bic.w r3, r3, #36 ; 0x24 + 800846c: 81a3 strh r3, [r4, #12] + 800846e: 2300 movs r3, #0 + 8008470: 6063 str r3, [r4, #4] + 8008472: 6923 ldr r3, [r4, #16] + 8008474: 6023 str r3, [r4, #0] + 8008476: 89a3 ldrh r3, [r4, #12] + 8008478: f043 0308 orr.w r3, r3, #8 + 800847c: 81a3 strh r3, [r4, #12] + 800847e: 6923 ldr r3, [r4, #16] + 8008480: b94b cbnz r3, 8008496 <__swsetup_r+0x9a> + 8008482: 89a3 ldrh r3, [r4, #12] + 8008484: f403 7320 and.w r3, r3, #640 ; 0x280 + 8008488: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 800848c: d003 beq.n 8008496 <__swsetup_r+0x9a> + 800848e: 4621 mov r1, r4 + 8008490: 4630 mov r0, r6 + 8008492: f001 f883 bl 800959c <__smakebuf_r> + 8008496: 89a0 ldrh r0, [r4, #12] + 8008498: f9b4 200c ldrsh.w r2, [r4, #12] + 800849c: f010 0301 ands.w r3, r0, #1 + 80084a0: d00a beq.n 80084b8 <__swsetup_r+0xbc> + 80084a2: 2300 movs r3, #0 + 80084a4: 60a3 str r3, [r4, #8] + 80084a6: 6963 ldr r3, [r4, #20] + 80084a8: 425b negs r3, r3 + 80084aa: 61a3 str r3, [r4, #24] + 80084ac: 6923 ldr r3, [r4, #16] + 80084ae: b943 cbnz r3, 80084c2 <__swsetup_r+0xc6> + 80084b0: f010 0080 ands.w r0, r0, #128 ; 0x80 + 80084b4: d1ba bne.n 800842c <__swsetup_r+0x30> + 80084b6: bd70 pop {r4, r5, r6, pc} + 80084b8: 0781 lsls r1, r0, #30 + 80084ba: bf58 it pl + 80084bc: 6963 ldrpl r3, [r4, #20] + 80084be: 60a3 str r3, [r4, #8] + 80084c0: e7f4 b.n 80084ac <__swsetup_r+0xb0> + 80084c2: 2000 movs r0, #0 + 80084c4: e7f7 b.n 80084b6 <__swsetup_r+0xba> + 80084c6: bf00 nop + 80084c8: 20000014 .word 0x20000014 + 80084cc: 0800b374 .word 0x0800b374 + 80084d0: 0800b394 .word 0x0800b394 + 80084d4: 0800b354 .word 0x0800b354 + +080084d8 : + 80084d8: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 80084dc: 6903 ldr r3, [r0, #16] + 80084de: 690c ldr r4, [r1, #16] + 80084e0: 4607 mov r7, r0 + 80084e2: 42a3 cmp r3, r4 + 80084e4: f2c0 8083 blt.w 80085ee + 80084e8: 3c01 subs r4, #1 + 80084ea: f100 0514 add.w r5, r0, #20 + 80084ee: f101 0814 add.w r8, r1, #20 + 80084f2: eb05 0384 add.w r3, r5, r4, lsl #2 + 80084f6: 9301 str r3, [sp, #4] + 80084f8: f858 3024 ldr.w r3, [r8, r4, lsl #2] + 80084fc: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 8008500: 3301 adds r3, #1 + 8008502: 429a cmp r2, r3 + 8008504: fbb2 f6f3 udiv r6, r2, r3 + 8008508: ea4f 0b84 mov.w fp, r4, lsl #2 + 800850c: eb08 0984 add.w r9, r8, r4, lsl #2 + 8008510: d332 bcc.n 8008578 + 8008512: f04f 0e00 mov.w lr, #0 + 8008516: 4640 mov r0, r8 + 8008518: 46ac mov ip, r5 + 800851a: 46f2 mov sl, lr + 800851c: f850 2b04 ldr.w r2, [r0], #4 + 8008520: b293 uxth r3, r2 + 8008522: fb06 e303 mla r3, r6, r3, lr + 8008526: 0c12 lsrs r2, r2, #16 + 8008528: ea4f 4e13 mov.w lr, r3, lsr #16 + 800852c: fb06 e202 mla r2, r6, r2, lr + 8008530: b29b uxth r3, r3 + 8008532: ebaa 0303 sub.w r3, sl, r3 + 8008536: f8dc a000 ldr.w sl, [ip] + 800853a: ea4f 4e12 mov.w lr, r2, lsr #16 + 800853e: fa1f fa8a uxth.w sl, sl + 8008542: 4453 add r3, sl + 8008544: fa1f fa82 uxth.w sl, r2 + 8008548: f8dc 2000 ldr.w r2, [ip] + 800854c: 4581 cmp r9, r0 + 800854e: ebca 4212 rsb r2, sl, r2, lsr #16 + 8008552: eb02 4223 add.w r2, r2, r3, asr #16 + 8008556: b29b uxth r3, r3 + 8008558: ea43 4302 orr.w r3, r3, r2, lsl #16 + 800855c: ea4f 4a22 mov.w sl, r2, asr #16 + 8008560: f84c 3b04 str.w r3, [ip], #4 + 8008564: d2da bcs.n 800851c + 8008566: f855 300b ldr.w r3, [r5, fp] + 800856a: b92b cbnz r3, 8008578 + 800856c: 9b01 ldr r3, [sp, #4] + 800856e: 3b04 subs r3, #4 + 8008570: 429d cmp r5, r3 + 8008572: 461a mov r2, r3 + 8008574: d32f bcc.n 80085d6 + 8008576: 613c str r4, [r7, #16] + 8008578: 4638 mov r0, r7 + 800857a: f001 faf1 bl 8009b60 <__mcmp> + 800857e: 2800 cmp r0, #0 + 8008580: db25 blt.n 80085ce + 8008582: 4628 mov r0, r5 + 8008584: f04f 0c00 mov.w ip, #0 + 8008588: 3601 adds r6, #1 + 800858a: f858 1b04 ldr.w r1, [r8], #4 + 800858e: f8d0 e000 ldr.w lr, [r0] + 8008592: b28b uxth r3, r1 + 8008594: ebac 0303 sub.w r3, ip, r3 + 8008598: fa1f f28e uxth.w r2, lr + 800859c: 4413 add r3, r2 + 800859e: 0c0a lsrs r2, r1, #16 + 80085a0: ebc2 421e rsb r2, r2, lr, lsr #16 + 80085a4: eb02 4223 add.w r2, r2, r3, asr #16 + 80085a8: b29b uxth r3, r3 + 80085aa: ea43 4302 orr.w r3, r3, r2, lsl #16 + 80085ae: 45c1 cmp r9, r8 + 80085b0: ea4f 4c22 mov.w ip, r2, asr #16 + 80085b4: f840 3b04 str.w r3, [r0], #4 + 80085b8: d2e7 bcs.n 800858a + 80085ba: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 80085be: eb05 0384 add.w r3, r5, r4, lsl #2 + 80085c2: b922 cbnz r2, 80085ce + 80085c4: 3b04 subs r3, #4 + 80085c6: 429d cmp r5, r3 + 80085c8: 461a mov r2, r3 + 80085ca: d30a bcc.n 80085e2 + 80085cc: 613c str r4, [r7, #16] + 80085ce: 4630 mov r0, r6 + 80085d0: b003 add sp, #12 + 80085d2: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 80085d6: 6812 ldr r2, [r2, #0] + 80085d8: 3b04 subs r3, #4 + 80085da: 2a00 cmp r2, #0 + 80085dc: d1cb bne.n 8008576 + 80085de: 3c01 subs r4, #1 + 80085e0: e7c6 b.n 8008570 + 80085e2: 6812 ldr r2, [r2, #0] + 80085e4: 3b04 subs r3, #4 + 80085e6: 2a00 cmp r2, #0 + 80085e8: d1f0 bne.n 80085cc + 80085ea: 3c01 subs r4, #1 + 80085ec: e7eb b.n 80085c6 + 80085ee: 2000 movs r0, #0 + 80085f0: e7ee b.n 80085d0 + 80085f2: 0000 movs r0, r0 + 80085f4: 0000 movs r0, r0 ... -08008210 <_dtoa_r>: - 8008210: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8008214: 4616 mov r6, r2 - 8008216: 461f mov r7, r3 - 8008218: 6a44 ldr r4, [r0, #36] ; 0x24 - 800821a: b099 sub sp, #100 ; 0x64 - 800821c: 4605 mov r5, r0 - 800821e: e9cd 6704 strd r6, r7, [sp, #16] - 8008222: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 - 8008226: b974 cbnz r4, 8008246 <_dtoa_r+0x36> - 8008228: 2010 movs r0, #16 - 800822a: f7ff fa15 bl 8007658 - 800822e: 4602 mov r2, r0 - 8008230: 6268 str r0, [r5, #36] ; 0x24 - 8008232: b920 cbnz r0, 800823e <_dtoa_r+0x2e> - 8008234: 21ea movs r1, #234 ; 0xea - 8008236: 4bae ldr r3, [pc, #696] ; (80084f0 <_dtoa_r+0x2e0>) - 8008238: 48ae ldr r0, [pc, #696] ; (80084f4 <_dtoa_r+0x2e4>) - 800823a: f001 faef bl 800981c <__assert_func> - 800823e: e9c0 4401 strd r4, r4, [r0, #4] - 8008242: 6004 str r4, [r0, #0] - 8008244: 60c4 str r4, [r0, #12] - 8008246: 6a6b ldr r3, [r5, #36] ; 0x24 - 8008248: 6819 ldr r1, [r3, #0] - 800824a: b151 cbz r1, 8008262 <_dtoa_r+0x52> - 800824c: 685a ldr r2, [r3, #4] - 800824e: 2301 movs r3, #1 - 8008250: 4093 lsls r3, r2 - 8008252: 604a str r2, [r1, #4] - 8008254: 608b str r3, [r1, #8] - 8008256: 4628 mov r0, r5 - 8008258: f000 fe34 bl 8008ec4 <_Bfree> - 800825c: 2200 movs r2, #0 - 800825e: 6a6b ldr r3, [r5, #36] ; 0x24 - 8008260: 601a str r2, [r3, #0] - 8008262: 1e3b subs r3, r7, #0 - 8008264: bfaf iteee ge - 8008266: 2300 movge r3, #0 - 8008268: 2201 movlt r2, #1 - 800826a: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 - 800826e: 9305 strlt r3, [sp, #20] - 8008270: bfa8 it ge - 8008272: f8c8 3000 strge.w r3, [r8] - 8008276: f8dd 9014 ldr.w r9, [sp, #20] - 800827a: 4b9f ldr r3, [pc, #636] ; (80084f8 <_dtoa_r+0x2e8>) - 800827c: bfb8 it lt - 800827e: f8c8 2000 strlt.w r2, [r8] - 8008282: ea33 0309 bics.w r3, r3, r9 - 8008286: d119 bne.n 80082bc <_dtoa_r+0xac> - 8008288: f242 730f movw r3, #9999 ; 0x270f - 800828c: 9a24 ldr r2, [sp, #144] ; 0x90 - 800828e: 6013 str r3, [r2, #0] - 8008290: f3c9 0313 ubfx r3, r9, #0, #20 - 8008294: 4333 orrs r3, r6 - 8008296: f000 8580 beq.w 8008d9a <_dtoa_r+0xb8a> - 800829a: 9b26 ldr r3, [sp, #152] ; 0x98 - 800829c: b953 cbnz r3, 80082b4 <_dtoa_r+0xa4> - 800829e: 4b97 ldr r3, [pc, #604] ; (80084fc <_dtoa_r+0x2ec>) - 80082a0: e022 b.n 80082e8 <_dtoa_r+0xd8> - 80082a2: 4b97 ldr r3, [pc, #604] ; (8008500 <_dtoa_r+0x2f0>) - 80082a4: 9308 str r3, [sp, #32] - 80082a6: 3308 adds r3, #8 - 80082a8: 9a26 ldr r2, [sp, #152] ; 0x98 - 80082aa: 6013 str r3, [r2, #0] - 80082ac: 9808 ldr r0, [sp, #32] - 80082ae: b019 add sp, #100 ; 0x64 - 80082b0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80082b4: 4b91 ldr r3, [pc, #580] ; (80084fc <_dtoa_r+0x2ec>) - 80082b6: 9308 str r3, [sp, #32] - 80082b8: 3303 adds r3, #3 - 80082ba: e7f5 b.n 80082a8 <_dtoa_r+0x98> - 80082bc: e9dd 3404 ldrd r3, r4, [sp, #16] - 80082c0: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 - 80082c4: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80082c8: 2200 movs r2, #0 - 80082ca: 2300 movs r3, #0 - 80082cc: f7f8 fbd8 bl 8000a80 <__aeabi_dcmpeq> - 80082d0: 4680 mov r8, r0 - 80082d2: b158 cbz r0, 80082ec <_dtoa_r+0xdc> - 80082d4: 2301 movs r3, #1 - 80082d6: 9a24 ldr r2, [sp, #144] ; 0x90 - 80082d8: 6013 str r3, [r2, #0] - 80082da: 9b26 ldr r3, [sp, #152] ; 0x98 - 80082dc: 2b00 cmp r3, #0 - 80082de: f000 8559 beq.w 8008d94 <_dtoa_r+0xb84> - 80082e2: 4888 ldr r0, [pc, #544] ; (8008504 <_dtoa_r+0x2f4>) - 80082e4: 6018 str r0, [r3, #0] - 80082e6: 1e43 subs r3, r0, #1 - 80082e8: 9308 str r3, [sp, #32] - 80082ea: e7df b.n 80082ac <_dtoa_r+0x9c> - 80082ec: ab16 add r3, sp, #88 ; 0x58 - 80082ee: 9301 str r3, [sp, #4] - 80082f0: ab17 add r3, sp, #92 ; 0x5c - 80082f2: 9300 str r3, [sp, #0] - 80082f4: 4628 mov r0, r5 - 80082f6: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 - 80082fa: f001 f8c9 bl 8009490 <__d2b> - 80082fe: f3c9 540a ubfx r4, r9, #20, #11 - 8008302: 4682 mov sl, r0 - 8008304: 2c00 cmp r4, #0 - 8008306: d07e beq.n 8008406 <_dtoa_r+0x1f6> - 8008308: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 800830c: 9b0d ldr r3, [sp, #52] ; 0x34 - 800830e: f2a4 34ff subw r4, r4, #1023 ; 0x3ff - 8008312: f3c3 0313 ubfx r3, r3, #0, #20 - 8008316: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 - 800831a: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 - 800831e: f8cd 804c str.w r8, [sp, #76] ; 0x4c - 8008322: 2200 movs r2, #0 - 8008324: 4b78 ldr r3, [pc, #480] ; (8008508 <_dtoa_r+0x2f8>) - 8008326: f7f7 ff8b bl 8000240 <__aeabi_dsub> - 800832a: a36b add r3, pc, #428 ; (adr r3, 80084d8 <_dtoa_r+0x2c8>) - 800832c: e9d3 2300 ldrd r2, r3, [r3] - 8008330: f7f8 f93e bl 80005b0 <__aeabi_dmul> - 8008334: a36a add r3, pc, #424 ; (adr r3, 80084e0 <_dtoa_r+0x2d0>) - 8008336: e9d3 2300 ldrd r2, r3, [r3] - 800833a: f7f7 ff83 bl 8000244 <__adddf3> - 800833e: 4606 mov r6, r0 - 8008340: 4620 mov r0, r4 - 8008342: 460f mov r7, r1 - 8008344: f7f8 f8ca bl 80004dc <__aeabi_i2d> - 8008348: a367 add r3, pc, #412 ; (adr r3, 80084e8 <_dtoa_r+0x2d8>) - 800834a: e9d3 2300 ldrd r2, r3, [r3] - 800834e: f7f8 f92f bl 80005b0 <__aeabi_dmul> - 8008352: 4602 mov r2, r0 - 8008354: 460b mov r3, r1 - 8008356: 4630 mov r0, r6 - 8008358: 4639 mov r1, r7 - 800835a: f7f7 ff73 bl 8000244 <__adddf3> - 800835e: 4606 mov r6, r0 - 8008360: 460f mov r7, r1 - 8008362: f7f8 fbd5 bl 8000b10 <__aeabi_d2iz> - 8008366: 2200 movs r2, #0 - 8008368: 4681 mov r9, r0 - 800836a: 2300 movs r3, #0 - 800836c: 4630 mov r0, r6 - 800836e: 4639 mov r1, r7 - 8008370: f7f8 fb90 bl 8000a94 <__aeabi_dcmplt> - 8008374: b148 cbz r0, 800838a <_dtoa_r+0x17a> - 8008376: 4648 mov r0, r9 - 8008378: f7f8 f8b0 bl 80004dc <__aeabi_i2d> - 800837c: 4632 mov r2, r6 - 800837e: 463b mov r3, r7 - 8008380: f7f8 fb7e bl 8000a80 <__aeabi_dcmpeq> - 8008384: b908 cbnz r0, 800838a <_dtoa_r+0x17a> - 8008386: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 800838a: f1b9 0f16 cmp.w r9, #22 - 800838e: d857 bhi.n 8008440 <_dtoa_r+0x230> - 8008390: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8008394: 4b5d ldr r3, [pc, #372] ; (800850c <_dtoa_r+0x2fc>) - 8008396: eb03 03c9 add.w r3, r3, r9, lsl #3 - 800839a: e9d3 2300 ldrd r2, r3, [r3] - 800839e: f7f8 fb79 bl 8000a94 <__aeabi_dcmplt> - 80083a2: 2800 cmp r0, #0 - 80083a4: d04e beq.n 8008444 <_dtoa_r+0x234> - 80083a6: 2300 movs r3, #0 - 80083a8: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 80083ac: 930f str r3, [sp, #60] ; 0x3c - 80083ae: 9b16 ldr r3, [sp, #88] ; 0x58 - 80083b0: 1b1c subs r4, r3, r4 - 80083b2: 1e63 subs r3, r4, #1 - 80083b4: 9309 str r3, [sp, #36] ; 0x24 - 80083b6: bf49 itett mi - 80083b8: f1c4 0301 rsbmi r3, r4, #1 - 80083bc: 2300 movpl r3, #0 - 80083be: 9306 strmi r3, [sp, #24] - 80083c0: 2300 movmi r3, #0 - 80083c2: bf54 ite pl - 80083c4: 9306 strpl r3, [sp, #24] - 80083c6: 9309 strmi r3, [sp, #36] ; 0x24 - 80083c8: f1b9 0f00 cmp.w r9, #0 - 80083cc: db3c blt.n 8008448 <_dtoa_r+0x238> - 80083ce: 9b09 ldr r3, [sp, #36] ; 0x24 - 80083d0: f8cd 9038 str.w r9, [sp, #56] ; 0x38 - 80083d4: 444b add r3, r9 - 80083d6: 9309 str r3, [sp, #36] ; 0x24 - 80083d8: 2300 movs r3, #0 - 80083da: 930a str r3, [sp, #40] ; 0x28 - 80083dc: 9b22 ldr r3, [sp, #136] ; 0x88 - 80083de: 2b09 cmp r3, #9 - 80083e0: d86c bhi.n 80084bc <_dtoa_r+0x2ac> - 80083e2: 2b05 cmp r3, #5 - 80083e4: bfc4 itt gt - 80083e6: 3b04 subgt r3, #4 - 80083e8: 9322 strgt r3, [sp, #136] ; 0x88 - 80083ea: 9b22 ldr r3, [sp, #136] ; 0x88 - 80083ec: bfc8 it gt - 80083ee: 2400 movgt r4, #0 - 80083f0: f1a3 0302 sub.w r3, r3, #2 - 80083f4: bfd8 it le - 80083f6: 2401 movle r4, #1 - 80083f8: 2b03 cmp r3, #3 - 80083fa: f200 808b bhi.w 8008514 <_dtoa_r+0x304> - 80083fe: e8df f003 tbb [pc, r3] - 8008402: 4f2d .short 0x4f2d - 8008404: 5b4d .short 0x5b4d - 8008406: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 - 800840a: 441c add r4, r3 - 800840c: f204 4332 addw r3, r4, #1074 ; 0x432 - 8008410: 2b20 cmp r3, #32 - 8008412: bfc3 ittte gt - 8008414: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 - 8008418: f204 4012 addwgt r0, r4, #1042 ; 0x412 - 800841c: fa09 f303 lslgt.w r3, r9, r3 - 8008420: f1c3 0320 rsble r3, r3, #32 - 8008424: bfc6 itte gt - 8008426: fa26 f000 lsrgt.w r0, r6, r0 - 800842a: 4318 orrgt r0, r3 - 800842c: fa06 f003 lslle.w r0, r6, r3 - 8008430: f7f8 f844 bl 80004bc <__aeabi_ui2d> - 8008434: 2301 movs r3, #1 - 8008436: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 - 800843a: 3c01 subs r4, #1 - 800843c: 9313 str r3, [sp, #76] ; 0x4c - 800843e: e770 b.n 8008322 <_dtoa_r+0x112> - 8008440: 2301 movs r3, #1 - 8008442: e7b3 b.n 80083ac <_dtoa_r+0x19c> - 8008444: 900f str r0, [sp, #60] ; 0x3c - 8008446: e7b2 b.n 80083ae <_dtoa_r+0x19e> - 8008448: 9b06 ldr r3, [sp, #24] - 800844a: eba3 0309 sub.w r3, r3, r9 - 800844e: 9306 str r3, [sp, #24] - 8008450: f1c9 0300 rsb r3, r9, #0 - 8008454: 930a str r3, [sp, #40] ; 0x28 - 8008456: 2300 movs r3, #0 - 8008458: 930e str r3, [sp, #56] ; 0x38 - 800845a: e7bf b.n 80083dc <_dtoa_r+0x1cc> - 800845c: 2300 movs r3, #0 - 800845e: 930b str r3, [sp, #44] ; 0x2c - 8008460: 9b23 ldr r3, [sp, #140] ; 0x8c - 8008462: 2b00 cmp r3, #0 - 8008464: dc59 bgt.n 800851a <_dtoa_r+0x30a> - 8008466: f04f 0b01 mov.w fp, #1 - 800846a: 465b mov r3, fp - 800846c: f8cd b008 str.w fp, [sp, #8] - 8008470: f8cd b08c str.w fp, [sp, #140] ; 0x8c - 8008474: 2200 movs r2, #0 - 8008476: 6a68 ldr r0, [r5, #36] ; 0x24 - 8008478: 6042 str r2, [r0, #4] - 800847a: 2204 movs r2, #4 - 800847c: f102 0614 add.w r6, r2, #20 - 8008480: 429e cmp r6, r3 - 8008482: 6841 ldr r1, [r0, #4] - 8008484: d94f bls.n 8008526 <_dtoa_r+0x316> - 8008486: 4628 mov r0, r5 - 8008488: f000 fcdc bl 8008e44 <_Balloc> - 800848c: 9008 str r0, [sp, #32] - 800848e: 2800 cmp r0, #0 - 8008490: d14d bne.n 800852e <_dtoa_r+0x31e> - 8008492: 4602 mov r2, r0 - 8008494: f44f 71d5 mov.w r1, #426 ; 0x1aa - 8008498: 4b1d ldr r3, [pc, #116] ; (8008510 <_dtoa_r+0x300>) - 800849a: e6cd b.n 8008238 <_dtoa_r+0x28> - 800849c: 2301 movs r3, #1 - 800849e: e7de b.n 800845e <_dtoa_r+0x24e> - 80084a0: 2300 movs r3, #0 - 80084a2: 930b str r3, [sp, #44] ; 0x2c - 80084a4: 9b23 ldr r3, [sp, #140] ; 0x8c - 80084a6: eb09 0b03 add.w fp, r9, r3 - 80084aa: f10b 0301 add.w r3, fp, #1 - 80084ae: 2b01 cmp r3, #1 - 80084b0: 9302 str r3, [sp, #8] - 80084b2: bfb8 it lt - 80084b4: 2301 movlt r3, #1 - 80084b6: e7dd b.n 8008474 <_dtoa_r+0x264> - 80084b8: 2301 movs r3, #1 - 80084ba: e7f2 b.n 80084a2 <_dtoa_r+0x292> - 80084bc: 2401 movs r4, #1 - 80084be: 2300 movs r3, #0 - 80084c0: 940b str r4, [sp, #44] ; 0x2c - 80084c2: 9322 str r3, [sp, #136] ; 0x88 - 80084c4: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff - 80084c8: 2200 movs r2, #0 - 80084ca: 2312 movs r3, #18 - 80084cc: f8cd b008 str.w fp, [sp, #8] - 80084d0: 9223 str r2, [sp, #140] ; 0x8c - 80084d2: e7cf b.n 8008474 <_dtoa_r+0x264> - 80084d4: f3af 8000 nop.w - 80084d8: 636f4361 .word 0x636f4361 - 80084dc: 3fd287a7 .word 0x3fd287a7 - 80084e0: 8b60c8b3 .word 0x8b60c8b3 - 80084e4: 3fc68a28 .word 0x3fc68a28 - 80084e8: 509f79fb .word 0x509f79fb - 80084ec: 3fd34413 .word 0x3fd34413 - 80084f0: 0800af7d .word 0x0800af7d - 80084f4: 0800af94 .word 0x0800af94 - 80084f8: 7ff00000 .word 0x7ff00000 - 80084fc: 0800af79 .word 0x0800af79 - 8008500: 0800af70 .word 0x0800af70 - 8008504: 0800af4d .word 0x0800af4d - 8008508: 3ff80000 .word 0x3ff80000 - 800850c: 0800b090 .word 0x0800b090 - 8008510: 0800aff3 .word 0x0800aff3 - 8008514: 2301 movs r3, #1 - 8008516: 930b str r3, [sp, #44] ; 0x2c - 8008518: e7d4 b.n 80084c4 <_dtoa_r+0x2b4> - 800851a: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c - 800851e: 465b mov r3, fp - 8008520: f8cd b008 str.w fp, [sp, #8] - 8008524: e7a6 b.n 8008474 <_dtoa_r+0x264> - 8008526: 3101 adds r1, #1 - 8008528: 6041 str r1, [r0, #4] - 800852a: 0052 lsls r2, r2, #1 - 800852c: e7a6 b.n 800847c <_dtoa_r+0x26c> - 800852e: 6a6b ldr r3, [r5, #36] ; 0x24 - 8008530: 9a08 ldr r2, [sp, #32] - 8008532: 601a str r2, [r3, #0] - 8008534: 9b02 ldr r3, [sp, #8] - 8008536: 2b0e cmp r3, #14 - 8008538: f200 80a8 bhi.w 800868c <_dtoa_r+0x47c> - 800853c: 2c00 cmp r4, #0 - 800853e: f000 80a5 beq.w 800868c <_dtoa_r+0x47c> - 8008542: f1b9 0f00 cmp.w r9, #0 - 8008546: dd34 ble.n 80085b2 <_dtoa_r+0x3a2> - 8008548: 4a9a ldr r2, [pc, #616] ; (80087b4 <_dtoa_r+0x5a4>) - 800854a: f009 030f and.w r3, r9, #15 - 800854e: eb02 03c3 add.w r3, r2, r3, lsl #3 - 8008552: f419 7f80 tst.w r9, #256 ; 0x100 - 8008556: e9d3 3400 ldrd r3, r4, [r3] - 800855a: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 800855e: ea4f 1429 mov.w r4, r9, asr #4 - 8008562: d016 beq.n 8008592 <_dtoa_r+0x382> - 8008564: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8008568: 4b93 ldr r3, [pc, #588] ; (80087b8 <_dtoa_r+0x5a8>) - 800856a: 2703 movs r7, #3 - 800856c: e9d3 2308 ldrd r2, r3, [r3, #32] - 8008570: f7f8 f948 bl 8000804 <__aeabi_ddiv> - 8008574: e9cd 0104 strd r0, r1, [sp, #16] - 8008578: f004 040f and.w r4, r4, #15 - 800857c: 4e8e ldr r6, [pc, #568] ; (80087b8 <_dtoa_r+0x5a8>) - 800857e: b954 cbnz r4, 8008596 <_dtoa_r+0x386> - 8008580: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8008584: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008588: f7f8 f93c bl 8000804 <__aeabi_ddiv> - 800858c: e9cd 0104 strd r0, r1, [sp, #16] - 8008590: e029 b.n 80085e6 <_dtoa_r+0x3d6> - 8008592: 2702 movs r7, #2 - 8008594: e7f2 b.n 800857c <_dtoa_r+0x36c> - 8008596: 07e1 lsls r1, r4, #31 - 8008598: d508 bpl.n 80085ac <_dtoa_r+0x39c> - 800859a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 800859e: e9d6 2300 ldrd r2, r3, [r6] - 80085a2: f7f8 f805 bl 80005b0 <__aeabi_dmul> - 80085a6: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80085aa: 3701 adds r7, #1 - 80085ac: 1064 asrs r4, r4, #1 - 80085ae: 3608 adds r6, #8 - 80085b0: e7e5 b.n 800857e <_dtoa_r+0x36e> - 80085b2: f000 80a5 beq.w 8008700 <_dtoa_r+0x4f0> - 80085b6: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80085ba: f1c9 0400 rsb r4, r9, #0 - 80085be: 4b7d ldr r3, [pc, #500] ; (80087b4 <_dtoa_r+0x5a4>) - 80085c0: f004 020f and.w r2, r4, #15 - 80085c4: eb03 03c2 add.w r3, r3, r2, lsl #3 - 80085c8: e9d3 2300 ldrd r2, r3, [r3] - 80085cc: f7f7 fff0 bl 80005b0 <__aeabi_dmul> - 80085d0: 2702 movs r7, #2 - 80085d2: 2300 movs r3, #0 - 80085d4: e9cd 0104 strd r0, r1, [sp, #16] - 80085d8: 4e77 ldr r6, [pc, #476] ; (80087b8 <_dtoa_r+0x5a8>) - 80085da: 1124 asrs r4, r4, #4 - 80085dc: 2c00 cmp r4, #0 - 80085de: f040 8084 bne.w 80086ea <_dtoa_r+0x4da> - 80085e2: 2b00 cmp r3, #0 - 80085e4: d1d2 bne.n 800858c <_dtoa_r+0x37c> - 80085e6: 9b0f ldr r3, [sp, #60] ; 0x3c - 80085e8: 2b00 cmp r3, #0 - 80085ea: f000 808b beq.w 8008704 <_dtoa_r+0x4f4> - 80085ee: e9dd 3404 ldrd r3, r4, [sp, #16] - 80085f2: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 80085f6: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 80085fa: 2200 movs r2, #0 - 80085fc: 4b6f ldr r3, [pc, #444] ; (80087bc <_dtoa_r+0x5ac>) - 80085fe: f7f8 fa49 bl 8000a94 <__aeabi_dcmplt> - 8008602: 2800 cmp r0, #0 - 8008604: d07e beq.n 8008704 <_dtoa_r+0x4f4> - 8008606: 9b02 ldr r3, [sp, #8] - 8008608: 2b00 cmp r3, #0 - 800860a: d07b beq.n 8008704 <_dtoa_r+0x4f4> - 800860c: f1bb 0f00 cmp.w fp, #0 - 8008610: dd38 ble.n 8008684 <_dtoa_r+0x474> - 8008612: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8008616: 2200 movs r2, #0 - 8008618: 4b69 ldr r3, [pc, #420] ; (80087c0 <_dtoa_r+0x5b0>) - 800861a: f7f7 ffc9 bl 80005b0 <__aeabi_dmul> - 800861e: 465c mov r4, fp - 8008620: e9cd 0104 strd r0, r1, [sp, #16] - 8008624: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff - 8008628: 3701 adds r7, #1 - 800862a: 4638 mov r0, r7 - 800862c: f7f7 ff56 bl 80004dc <__aeabi_i2d> - 8008630: e9dd 2304 ldrd r2, r3, [sp, #16] - 8008634: f7f7 ffbc bl 80005b0 <__aeabi_dmul> - 8008638: 2200 movs r2, #0 - 800863a: 4b62 ldr r3, [pc, #392] ; (80087c4 <_dtoa_r+0x5b4>) - 800863c: f7f7 fe02 bl 8000244 <__adddf3> - 8008640: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 - 8008644: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8008648: 9611 str r6, [sp, #68] ; 0x44 - 800864a: 2c00 cmp r4, #0 - 800864c: d15d bne.n 800870a <_dtoa_r+0x4fa> - 800864e: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008652: 2200 movs r2, #0 - 8008654: 4b5c ldr r3, [pc, #368] ; (80087c8 <_dtoa_r+0x5b8>) - 8008656: f7f7 fdf3 bl 8000240 <__aeabi_dsub> - 800865a: 4602 mov r2, r0 - 800865c: 460b mov r3, r1 - 800865e: e9cd 2304 strd r2, r3, [sp, #16] - 8008662: 4633 mov r3, r6 - 8008664: 9a10 ldr r2, [sp, #64] ; 0x40 - 8008666: f7f8 fa33 bl 8000ad0 <__aeabi_dcmpgt> - 800866a: 2800 cmp r0, #0 - 800866c: f040 829e bne.w 8008bac <_dtoa_r+0x99c> - 8008670: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008674: 9a10 ldr r2, [sp, #64] ; 0x40 - 8008676: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 - 800867a: f7f8 fa0b bl 8000a94 <__aeabi_dcmplt> - 800867e: 2800 cmp r0, #0 - 8008680: f040 8292 bne.w 8008ba8 <_dtoa_r+0x998> - 8008684: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 - 8008688: e9cd 3404 strd r3, r4, [sp, #16] - 800868c: 9b17 ldr r3, [sp, #92] ; 0x5c - 800868e: 2b00 cmp r3, #0 - 8008690: f2c0 8153 blt.w 800893a <_dtoa_r+0x72a> - 8008694: f1b9 0f0e cmp.w r9, #14 - 8008698: f300 814f bgt.w 800893a <_dtoa_r+0x72a> - 800869c: 4b45 ldr r3, [pc, #276] ; (80087b4 <_dtoa_r+0x5a4>) - 800869e: eb03 03c9 add.w r3, r3, r9, lsl #3 - 80086a2: e9d3 3400 ldrd r3, r4, [r3] - 80086a6: e9cd 3406 strd r3, r4, [sp, #24] - 80086aa: 9b23 ldr r3, [sp, #140] ; 0x8c - 80086ac: 2b00 cmp r3, #0 - 80086ae: f280 80db bge.w 8008868 <_dtoa_r+0x658> - 80086b2: 9b02 ldr r3, [sp, #8] - 80086b4: 2b00 cmp r3, #0 - 80086b6: f300 80d7 bgt.w 8008868 <_dtoa_r+0x658> - 80086ba: f040 8274 bne.w 8008ba6 <_dtoa_r+0x996> - 80086be: e9dd 0106 ldrd r0, r1, [sp, #24] - 80086c2: 2200 movs r2, #0 - 80086c4: 4b40 ldr r3, [pc, #256] ; (80087c8 <_dtoa_r+0x5b8>) - 80086c6: f7f7 ff73 bl 80005b0 <__aeabi_dmul> - 80086ca: e9dd 2304 ldrd r2, r3, [sp, #16] - 80086ce: f7f8 f9f5 bl 8000abc <__aeabi_dcmpge> - 80086d2: 9c02 ldr r4, [sp, #8] - 80086d4: 4626 mov r6, r4 - 80086d6: 2800 cmp r0, #0 - 80086d8: f040 824a bne.w 8008b70 <_dtoa_r+0x960> - 80086dc: 2331 movs r3, #49 ; 0x31 - 80086de: 9f08 ldr r7, [sp, #32] - 80086e0: f109 0901 add.w r9, r9, #1 - 80086e4: f807 3b01 strb.w r3, [r7], #1 - 80086e8: e246 b.n 8008b78 <_dtoa_r+0x968> - 80086ea: 07e2 lsls r2, r4, #31 - 80086ec: d505 bpl.n 80086fa <_dtoa_r+0x4ea> - 80086ee: e9d6 2300 ldrd r2, r3, [r6] - 80086f2: f7f7 ff5d bl 80005b0 <__aeabi_dmul> - 80086f6: 2301 movs r3, #1 - 80086f8: 3701 adds r7, #1 - 80086fa: 1064 asrs r4, r4, #1 - 80086fc: 3608 adds r6, #8 - 80086fe: e76d b.n 80085dc <_dtoa_r+0x3cc> - 8008700: 2702 movs r7, #2 - 8008702: e770 b.n 80085e6 <_dtoa_r+0x3d6> - 8008704: 46c8 mov r8, r9 - 8008706: 9c02 ldr r4, [sp, #8] - 8008708: e78f b.n 800862a <_dtoa_r+0x41a> - 800870a: 9908 ldr r1, [sp, #32] - 800870c: 4b29 ldr r3, [pc, #164] ; (80087b4 <_dtoa_r+0x5a4>) - 800870e: 4421 add r1, r4 - 8008710: 9112 str r1, [sp, #72] ; 0x48 - 8008712: 990b ldr r1, [sp, #44] ; 0x2c - 8008714: eb03 03c4 add.w r3, r3, r4, lsl #3 - 8008718: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 - 800871c: e953 2302 ldrd r2, r3, [r3, #-8] - 8008720: 2900 cmp r1, #0 - 8008722: d055 beq.n 80087d0 <_dtoa_r+0x5c0> - 8008724: 2000 movs r0, #0 - 8008726: 4929 ldr r1, [pc, #164] ; (80087cc <_dtoa_r+0x5bc>) - 8008728: f7f8 f86c bl 8000804 <__aeabi_ddiv> - 800872c: 463b mov r3, r7 - 800872e: 4632 mov r2, r6 - 8008730: f7f7 fd86 bl 8000240 <__aeabi_dsub> - 8008734: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8008738: 9f08 ldr r7, [sp, #32] - 800873a: e9dd 0104 ldrd r0, r1, [sp, #16] - 800873e: f7f8 f9e7 bl 8000b10 <__aeabi_d2iz> - 8008742: 4604 mov r4, r0 - 8008744: f7f7 feca bl 80004dc <__aeabi_i2d> - 8008748: 4602 mov r2, r0 - 800874a: 460b mov r3, r1 - 800874c: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008750: f7f7 fd76 bl 8000240 <__aeabi_dsub> - 8008754: 4602 mov r2, r0 - 8008756: 460b mov r3, r1 - 8008758: 3430 adds r4, #48 ; 0x30 - 800875a: e9cd 2304 strd r2, r3, [sp, #16] - 800875e: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8008762: f807 4b01 strb.w r4, [r7], #1 - 8008766: f7f8 f995 bl 8000a94 <__aeabi_dcmplt> - 800876a: 2800 cmp r0, #0 - 800876c: d174 bne.n 8008858 <_dtoa_r+0x648> - 800876e: e9dd 2304 ldrd r2, r3, [sp, #16] - 8008772: 2000 movs r0, #0 - 8008774: 4911 ldr r1, [pc, #68] ; (80087bc <_dtoa_r+0x5ac>) - 8008776: f7f7 fd63 bl 8000240 <__aeabi_dsub> - 800877a: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 800877e: f7f8 f989 bl 8000a94 <__aeabi_dcmplt> - 8008782: 2800 cmp r0, #0 - 8008784: f040 80b6 bne.w 80088f4 <_dtoa_r+0x6e4> - 8008788: 9b12 ldr r3, [sp, #72] ; 0x48 - 800878a: 429f cmp r7, r3 - 800878c: f43f af7a beq.w 8008684 <_dtoa_r+0x474> - 8008790: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8008794: 2200 movs r2, #0 - 8008796: 4b0a ldr r3, [pc, #40] ; (80087c0 <_dtoa_r+0x5b0>) - 8008798: f7f7 ff0a bl 80005b0 <__aeabi_dmul> - 800879c: 2200 movs r2, #0 - 800879e: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80087a2: e9dd 0104 ldrd r0, r1, [sp, #16] - 80087a6: 4b06 ldr r3, [pc, #24] ; (80087c0 <_dtoa_r+0x5b0>) - 80087a8: f7f7 ff02 bl 80005b0 <__aeabi_dmul> - 80087ac: e9cd 0104 strd r0, r1, [sp, #16] - 80087b0: e7c3 b.n 800873a <_dtoa_r+0x52a> - 80087b2: bf00 nop - 80087b4: 0800b090 .word 0x0800b090 - 80087b8: 0800b068 .word 0x0800b068 - 80087bc: 3ff00000 .word 0x3ff00000 - 80087c0: 40240000 .word 0x40240000 - 80087c4: 401c0000 .word 0x401c0000 - 80087c8: 40140000 .word 0x40140000 - 80087cc: 3fe00000 .word 0x3fe00000 - 80087d0: 4630 mov r0, r6 - 80087d2: 4639 mov r1, r7 - 80087d4: f7f7 feec bl 80005b0 <__aeabi_dmul> - 80087d8: 9b12 ldr r3, [sp, #72] ; 0x48 - 80087da: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80087de: 9c08 ldr r4, [sp, #32] - 80087e0: 9314 str r3, [sp, #80] ; 0x50 - 80087e2: e9dd 0104 ldrd r0, r1, [sp, #16] - 80087e6: f7f8 f993 bl 8000b10 <__aeabi_d2iz> - 80087ea: 9015 str r0, [sp, #84] ; 0x54 - 80087ec: f7f7 fe76 bl 80004dc <__aeabi_i2d> - 80087f0: 4602 mov r2, r0 - 80087f2: 460b mov r3, r1 - 80087f4: e9dd 0104 ldrd r0, r1, [sp, #16] - 80087f8: f7f7 fd22 bl 8000240 <__aeabi_dsub> - 80087fc: 9b15 ldr r3, [sp, #84] ; 0x54 - 80087fe: 4606 mov r6, r0 - 8008800: 3330 adds r3, #48 ; 0x30 - 8008802: f804 3b01 strb.w r3, [r4], #1 - 8008806: 9b12 ldr r3, [sp, #72] ; 0x48 - 8008808: 460f mov r7, r1 - 800880a: 429c cmp r4, r3 - 800880c: f04f 0200 mov.w r2, #0 - 8008810: d124 bne.n 800885c <_dtoa_r+0x64c> - 8008812: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8008816: 4bb3 ldr r3, [pc, #716] ; (8008ae4 <_dtoa_r+0x8d4>) - 8008818: f7f7 fd14 bl 8000244 <__adddf3> - 800881c: 4602 mov r2, r0 - 800881e: 460b mov r3, r1 - 8008820: 4630 mov r0, r6 - 8008822: 4639 mov r1, r7 - 8008824: f7f8 f954 bl 8000ad0 <__aeabi_dcmpgt> - 8008828: 2800 cmp r0, #0 - 800882a: d162 bne.n 80088f2 <_dtoa_r+0x6e2> - 800882c: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8008830: 2000 movs r0, #0 - 8008832: 49ac ldr r1, [pc, #688] ; (8008ae4 <_dtoa_r+0x8d4>) - 8008834: f7f7 fd04 bl 8000240 <__aeabi_dsub> - 8008838: 4602 mov r2, r0 - 800883a: 460b mov r3, r1 - 800883c: 4630 mov r0, r6 - 800883e: 4639 mov r1, r7 - 8008840: f7f8 f928 bl 8000a94 <__aeabi_dcmplt> - 8008844: 2800 cmp r0, #0 - 8008846: f43f af1d beq.w 8008684 <_dtoa_r+0x474> - 800884a: 9f14 ldr r7, [sp, #80] ; 0x50 - 800884c: 1e7b subs r3, r7, #1 - 800884e: 9314 str r3, [sp, #80] ; 0x50 - 8008850: f817 3c01 ldrb.w r3, [r7, #-1] - 8008854: 2b30 cmp r3, #48 ; 0x30 - 8008856: d0f8 beq.n 800884a <_dtoa_r+0x63a> - 8008858: 46c1 mov r9, r8 - 800885a: e03a b.n 80088d2 <_dtoa_r+0x6c2> - 800885c: 4ba2 ldr r3, [pc, #648] ; (8008ae8 <_dtoa_r+0x8d8>) - 800885e: f7f7 fea7 bl 80005b0 <__aeabi_dmul> - 8008862: e9cd 0104 strd r0, r1, [sp, #16] - 8008866: e7bc b.n 80087e2 <_dtoa_r+0x5d2> - 8008868: 9f08 ldr r7, [sp, #32] - 800886a: e9dd 2306 ldrd r2, r3, [sp, #24] - 800886e: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008872: f7f7 ffc7 bl 8000804 <__aeabi_ddiv> - 8008876: f7f8 f94b bl 8000b10 <__aeabi_d2iz> - 800887a: 4604 mov r4, r0 - 800887c: f7f7 fe2e bl 80004dc <__aeabi_i2d> - 8008880: e9dd 2306 ldrd r2, r3, [sp, #24] - 8008884: f7f7 fe94 bl 80005b0 <__aeabi_dmul> - 8008888: f104 0630 add.w r6, r4, #48 ; 0x30 - 800888c: 460b mov r3, r1 - 800888e: 4602 mov r2, r0 - 8008890: e9dd 0104 ldrd r0, r1, [sp, #16] - 8008894: f7f7 fcd4 bl 8000240 <__aeabi_dsub> - 8008898: f807 6b01 strb.w r6, [r7], #1 - 800889c: 9e08 ldr r6, [sp, #32] - 800889e: 9b02 ldr r3, [sp, #8] - 80088a0: 1bbe subs r6, r7, r6 - 80088a2: 42b3 cmp r3, r6 - 80088a4: d13a bne.n 800891c <_dtoa_r+0x70c> - 80088a6: 4602 mov r2, r0 - 80088a8: 460b mov r3, r1 - 80088aa: f7f7 fccb bl 8000244 <__adddf3> - 80088ae: 4602 mov r2, r0 - 80088b0: 460b mov r3, r1 - 80088b2: e9cd 2302 strd r2, r3, [sp, #8] - 80088b6: e9dd 2306 ldrd r2, r3, [sp, #24] - 80088ba: f7f8 f909 bl 8000ad0 <__aeabi_dcmpgt> - 80088be: bb58 cbnz r0, 8008918 <_dtoa_r+0x708> - 80088c0: e9dd 2306 ldrd r2, r3, [sp, #24] - 80088c4: e9dd 0102 ldrd r0, r1, [sp, #8] - 80088c8: f7f8 f8da bl 8000a80 <__aeabi_dcmpeq> - 80088cc: b108 cbz r0, 80088d2 <_dtoa_r+0x6c2> - 80088ce: 07e1 lsls r1, r4, #31 - 80088d0: d422 bmi.n 8008918 <_dtoa_r+0x708> - 80088d2: 4628 mov r0, r5 - 80088d4: 4651 mov r1, sl - 80088d6: f000 faf5 bl 8008ec4 <_Bfree> - 80088da: 2300 movs r3, #0 - 80088dc: 703b strb r3, [r7, #0] - 80088de: 9b24 ldr r3, [sp, #144] ; 0x90 - 80088e0: f109 0001 add.w r0, r9, #1 - 80088e4: 6018 str r0, [r3, #0] - 80088e6: 9b26 ldr r3, [sp, #152] ; 0x98 - 80088e8: 2b00 cmp r3, #0 - 80088ea: f43f acdf beq.w 80082ac <_dtoa_r+0x9c> - 80088ee: 601f str r7, [r3, #0] - 80088f0: e4dc b.n 80082ac <_dtoa_r+0x9c> - 80088f2: 4627 mov r7, r4 - 80088f4: 463b mov r3, r7 - 80088f6: 461f mov r7, r3 - 80088f8: f813 2d01 ldrb.w r2, [r3, #-1]! - 80088fc: 2a39 cmp r2, #57 ; 0x39 - 80088fe: d107 bne.n 8008910 <_dtoa_r+0x700> - 8008900: 9a08 ldr r2, [sp, #32] - 8008902: 429a cmp r2, r3 - 8008904: d1f7 bne.n 80088f6 <_dtoa_r+0x6e6> - 8008906: 2230 movs r2, #48 ; 0x30 - 8008908: 9908 ldr r1, [sp, #32] - 800890a: f108 0801 add.w r8, r8, #1 - 800890e: 700a strb r2, [r1, #0] - 8008910: 781a ldrb r2, [r3, #0] - 8008912: 3201 adds r2, #1 - 8008914: 701a strb r2, [r3, #0] - 8008916: e79f b.n 8008858 <_dtoa_r+0x648> - 8008918: 46c8 mov r8, r9 - 800891a: e7eb b.n 80088f4 <_dtoa_r+0x6e4> - 800891c: 2200 movs r2, #0 - 800891e: 4b72 ldr r3, [pc, #456] ; (8008ae8 <_dtoa_r+0x8d8>) - 8008920: f7f7 fe46 bl 80005b0 <__aeabi_dmul> - 8008924: 4602 mov r2, r0 - 8008926: 460b mov r3, r1 - 8008928: e9cd 2304 strd r2, r3, [sp, #16] - 800892c: 2200 movs r2, #0 - 800892e: 2300 movs r3, #0 - 8008930: f7f8 f8a6 bl 8000a80 <__aeabi_dcmpeq> - 8008934: 2800 cmp r0, #0 - 8008936: d098 beq.n 800886a <_dtoa_r+0x65a> - 8008938: e7cb b.n 80088d2 <_dtoa_r+0x6c2> - 800893a: 9a0b ldr r2, [sp, #44] ; 0x2c - 800893c: 2a00 cmp r2, #0 - 800893e: f000 80cd beq.w 8008adc <_dtoa_r+0x8cc> - 8008942: 9a22 ldr r2, [sp, #136] ; 0x88 - 8008944: 2a01 cmp r2, #1 - 8008946: f300 80af bgt.w 8008aa8 <_dtoa_r+0x898> - 800894a: 9a13 ldr r2, [sp, #76] ; 0x4c - 800894c: 2a00 cmp r2, #0 - 800894e: f000 80a7 beq.w 8008aa0 <_dtoa_r+0x890> - 8008952: f203 4333 addw r3, r3, #1075 ; 0x433 - 8008956: 9c0a ldr r4, [sp, #40] ; 0x28 - 8008958: 9f06 ldr r7, [sp, #24] - 800895a: 9a06 ldr r2, [sp, #24] - 800895c: 2101 movs r1, #1 - 800895e: 441a add r2, r3 - 8008960: 9206 str r2, [sp, #24] - 8008962: 9a09 ldr r2, [sp, #36] ; 0x24 - 8008964: 4628 mov r0, r5 - 8008966: 441a add r2, r3 - 8008968: 9209 str r2, [sp, #36] ; 0x24 - 800896a: f000 fb65 bl 8009038 <__i2b> - 800896e: 4606 mov r6, r0 - 8008970: 2f00 cmp r7, #0 - 8008972: dd0c ble.n 800898e <_dtoa_r+0x77e> - 8008974: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008976: 2b00 cmp r3, #0 - 8008978: dd09 ble.n 800898e <_dtoa_r+0x77e> - 800897a: 42bb cmp r3, r7 - 800897c: bfa8 it ge - 800897e: 463b movge r3, r7 - 8008980: 9a06 ldr r2, [sp, #24] - 8008982: 1aff subs r7, r7, r3 - 8008984: 1ad2 subs r2, r2, r3 - 8008986: 9206 str r2, [sp, #24] - 8008988: 9a09 ldr r2, [sp, #36] ; 0x24 - 800898a: 1ad3 subs r3, r2, r3 - 800898c: 9309 str r3, [sp, #36] ; 0x24 - 800898e: 9b0a ldr r3, [sp, #40] ; 0x28 - 8008990: b1f3 cbz r3, 80089d0 <_dtoa_r+0x7c0> - 8008992: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008994: 2b00 cmp r3, #0 - 8008996: f000 80a9 beq.w 8008aec <_dtoa_r+0x8dc> - 800899a: 2c00 cmp r4, #0 - 800899c: dd10 ble.n 80089c0 <_dtoa_r+0x7b0> - 800899e: 4631 mov r1, r6 - 80089a0: 4622 mov r2, r4 - 80089a2: 4628 mov r0, r5 - 80089a4: f000 fc02 bl 80091ac <__pow5mult> - 80089a8: 4652 mov r2, sl - 80089aa: 4601 mov r1, r0 - 80089ac: 4606 mov r6, r0 - 80089ae: 4628 mov r0, r5 - 80089b0: f000 fb58 bl 8009064 <__multiply> - 80089b4: 4680 mov r8, r0 - 80089b6: 4651 mov r1, sl - 80089b8: 4628 mov r0, r5 - 80089ba: f000 fa83 bl 8008ec4 <_Bfree> - 80089be: 46c2 mov sl, r8 - 80089c0: 9b0a ldr r3, [sp, #40] ; 0x28 - 80089c2: 1b1a subs r2, r3, r4 - 80089c4: d004 beq.n 80089d0 <_dtoa_r+0x7c0> - 80089c6: 4651 mov r1, sl - 80089c8: 4628 mov r0, r5 - 80089ca: f000 fbef bl 80091ac <__pow5mult> - 80089ce: 4682 mov sl, r0 - 80089d0: 2101 movs r1, #1 - 80089d2: 4628 mov r0, r5 - 80089d4: f000 fb30 bl 8009038 <__i2b> - 80089d8: 9b0e ldr r3, [sp, #56] ; 0x38 - 80089da: 4604 mov r4, r0 - 80089dc: 2b00 cmp r3, #0 - 80089de: f340 8087 ble.w 8008af0 <_dtoa_r+0x8e0> - 80089e2: 461a mov r2, r3 - 80089e4: 4601 mov r1, r0 - 80089e6: 4628 mov r0, r5 - 80089e8: f000 fbe0 bl 80091ac <__pow5mult> - 80089ec: 9b22 ldr r3, [sp, #136] ; 0x88 - 80089ee: 4604 mov r4, r0 - 80089f0: 2b01 cmp r3, #1 - 80089f2: f340 8080 ble.w 8008af6 <_dtoa_r+0x8e6> - 80089f6: f04f 0800 mov.w r8, #0 - 80089fa: 6923 ldr r3, [r4, #16] - 80089fc: eb04 0383 add.w r3, r4, r3, lsl #2 - 8008a00: 6918 ldr r0, [r3, #16] - 8008a02: f000 facb bl 8008f9c <__hi0bits> - 8008a06: f1c0 0020 rsb r0, r0, #32 - 8008a0a: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008a0c: 4418 add r0, r3 - 8008a0e: f010 001f ands.w r0, r0, #31 - 8008a12: f000 8092 beq.w 8008b3a <_dtoa_r+0x92a> - 8008a16: f1c0 0320 rsb r3, r0, #32 - 8008a1a: 2b04 cmp r3, #4 - 8008a1c: f340 808a ble.w 8008b34 <_dtoa_r+0x924> - 8008a20: f1c0 001c rsb r0, r0, #28 - 8008a24: 9b06 ldr r3, [sp, #24] - 8008a26: 4407 add r7, r0 - 8008a28: 4403 add r3, r0 - 8008a2a: 9306 str r3, [sp, #24] - 8008a2c: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008a2e: 4403 add r3, r0 - 8008a30: 9309 str r3, [sp, #36] ; 0x24 - 8008a32: 9b06 ldr r3, [sp, #24] - 8008a34: 2b00 cmp r3, #0 - 8008a36: dd05 ble.n 8008a44 <_dtoa_r+0x834> - 8008a38: 4651 mov r1, sl - 8008a3a: 461a mov r2, r3 - 8008a3c: 4628 mov r0, r5 - 8008a3e: f000 fc0f bl 8009260 <__lshift> - 8008a42: 4682 mov sl, r0 - 8008a44: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008a46: 2b00 cmp r3, #0 - 8008a48: dd05 ble.n 8008a56 <_dtoa_r+0x846> - 8008a4a: 4621 mov r1, r4 - 8008a4c: 461a mov r2, r3 - 8008a4e: 4628 mov r0, r5 - 8008a50: f000 fc06 bl 8009260 <__lshift> - 8008a54: 4604 mov r4, r0 - 8008a56: 9b0f ldr r3, [sp, #60] ; 0x3c - 8008a58: 2b00 cmp r3, #0 - 8008a5a: d070 beq.n 8008b3e <_dtoa_r+0x92e> - 8008a5c: 4621 mov r1, r4 - 8008a5e: 4650 mov r0, sl - 8008a60: f000 fc6a bl 8009338 <__mcmp> - 8008a64: 2800 cmp r0, #0 - 8008a66: da6a bge.n 8008b3e <_dtoa_r+0x92e> - 8008a68: 2300 movs r3, #0 - 8008a6a: 4651 mov r1, sl - 8008a6c: 220a movs r2, #10 - 8008a6e: 4628 mov r0, r5 - 8008a70: f000 fa4a bl 8008f08 <__multadd> - 8008a74: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008a76: 4682 mov sl, r0 - 8008a78: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 8008a7c: 2b00 cmp r3, #0 - 8008a7e: f000 8193 beq.w 8008da8 <_dtoa_r+0xb98> - 8008a82: 4631 mov r1, r6 - 8008a84: 2300 movs r3, #0 - 8008a86: 220a movs r2, #10 - 8008a88: 4628 mov r0, r5 - 8008a8a: f000 fa3d bl 8008f08 <__multadd> - 8008a8e: f1bb 0f00 cmp.w fp, #0 - 8008a92: 4606 mov r6, r0 - 8008a94: f300 8093 bgt.w 8008bbe <_dtoa_r+0x9ae> - 8008a98: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008a9a: 2b02 cmp r3, #2 - 8008a9c: dc57 bgt.n 8008b4e <_dtoa_r+0x93e> - 8008a9e: e08e b.n 8008bbe <_dtoa_r+0x9ae> - 8008aa0: 9b16 ldr r3, [sp, #88] ; 0x58 - 8008aa2: f1c3 0336 rsb r3, r3, #54 ; 0x36 - 8008aa6: e756 b.n 8008956 <_dtoa_r+0x746> - 8008aa8: 9b02 ldr r3, [sp, #8] - 8008aaa: 1e5c subs r4, r3, #1 - 8008aac: 9b0a ldr r3, [sp, #40] ; 0x28 - 8008aae: 42a3 cmp r3, r4 - 8008ab0: bfb7 itett lt - 8008ab2: 9b0a ldrlt r3, [sp, #40] ; 0x28 - 8008ab4: 1b1c subge r4, r3, r4 - 8008ab6: 1ae2 sublt r2, r4, r3 - 8008ab8: 9b0e ldrlt r3, [sp, #56] ; 0x38 - 8008aba: bfbe ittt lt - 8008abc: 940a strlt r4, [sp, #40] ; 0x28 - 8008abe: 189b addlt r3, r3, r2 - 8008ac0: 930e strlt r3, [sp, #56] ; 0x38 - 8008ac2: 9b02 ldr r3, [sp, #8] - 8008ac4: bfb8 it lt - 8008ac6: 2400 movlt r4, #0 - 8008ac8: 2b00 cmp r3, #0 - 8008aca: bfbb ittet lt - 8008acc: 9b06 ldrlt r3, [sp, #24] - 8008ace: 9a02 ldrlt r2, [sp, #8] - 8008ad0: 9f06 ldrge r7, [sp, #24] - 8008ad2: 1a9f sublt r7, r3, r2 - 8008ad4: bfac ite ge - 8008ad6: 9b02 ldrge r3, [sp, #8] - 8008ad8: 2300 movlt r3, #0 - 8008ada: e73e b.n 800895a <_dtoa_r+0x74a> - 8008adc: 9c0a ldr r4, [sp, #40] ; 0x28 - 8008ade: 9f06 ldr r7, [sp, #24] - 8008ae0: 9e0b ldr r6, [sp, #44] ; 0x2c - 8008ae2: e745 b.n 8008970 <_dtoa_r+0x760> - 8008ae4: 3fe00000 .word 0x3fe00000 - 8008ae8: 40240000 .word 0x40240000 - 8008aec: 9a0a ldr r2, [sp, #40] ; 0x28 - 8008aee: e76a b.n 80089c6 <_dtoa_r+0x7b6> - 8008af0: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008af2: 2b01 cmp r3, #1 - 8008af4: dc19 bgt.n 8008b2a <_dtoa_r+0x91a> - 8008af6: 9b04 ldr r3, [sp, #16] - 8008af8: b9bb cbnz r3, 8008b2a <_dtoa_r+0x91a> - 8008afa: 9b05 ldr r3, [sp, #20] - 8008afc: f3c3 0313 ubfx r3, r3, #0, #20 - 8008b00: b99b cbnz r3, 8008b2a <_dtoa_r+0x91a> - 8008b02: 9b05 ldr r3, [sp, #20] - 8008b04: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 - 8008b08: 0d1b lsrs r3, r3, #20 - 8008b0a: 051b lsls r3, r3, #20 - 8008b0c: b183 cbz r3, 8008b30 <_dtoa_r+0x920> - 8008b0e: f04f 0801 mov.w r8, #1 - 8008b12: 9b06 ldr r3, [sp, #24] - 8008b14: 3301 adds r3, #1 - 8008b16: 9306 str r3, [sp, #24] - 8008b18: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008b1a: 3301 adds r3, #1 - 8008b1c: 9309 str r3, [sp, #36] ; 0x24 - 8008b1e: 9b0e ldr r3, [sp, #56] ; 0x38 - 8008b20: 2b00 cmp r3, #0 - 8008b22: f47f af6a bne.w 80089fa <_dtoa_r+0x7ea> - 8008b26: 2001 movs r0, #1 - 8008b28: e76f b.n 8008a0a <_dtoa_r+0x7fa> - 8008b2a: f04f 0800 mov.w r8, #0 - 8008b2e: e7f6 b.n 8008b1e <_dtoa_r+0x90e> - 8008b30: 4698 mov r8, r3 - 8008b32: e7f4 b.n 8008b1e <_dtoa_r+0x90e> - 8008b34: f43f af7d beq.w 8008a32 <_dtoa_r+0x822> - 8008b38: 4618 mov r0, r3 - 8008b3a: 301c adds r0, #28 - 8008b3c: e772 b.n 8008a24 <_dtoa_r+0x814> - 8008b3e: 9b02 ldr r3, [sp, #8] - 8008b40: 2b00 cmp r3, #0 - 8008b42: dc36 bgt.n 8008bb2 <_dtoa_r+0x9a2> - 8008b44: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008b46: 2b02 cmp r3, #2 - 8008b48: dd33 ble.n 8008bb2 <_dtoa_r+0x9a2> - 8008b4a: f8dd b008 ldr.w fp, [sp, #8] - 8008b4e: f1bb 0f00 cmp.w fp, #0 - 8008b52: d10d bne.n 8008b70 <_dtoa_r+0x960> - 8008b54: 4621 mov r1, r4 - 8008b56: 465b mov r3, fp - 8008b58: 2205 movs r2, #5 - 8008b5a: 4628 mov r0, r5 - 8008b5c: f000 f9d4 bl 8008f08 <__multadd> - 8008b60: 4601 mov r1, r0 - 8008b62: 4604 mov r4, r0 - 8008b64: 4650 mov r0, sl - 8008b66: f000 fbe7 bl 8009338 <__mcmp> +080085f8 <_dtoa_r>: + 80085f8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 80085fc: 4616 mov r6, r2 + 80085fe: 461f mov r7, r3 + 8008600: 6a44 ldr r4, [r0, #36] ; 0x24 + 8008602: b099 sub sp, #100 ; 0x64 + 8008604: 4605 mov r5, r0 + 8008606: e9cd 6704 strd r6, r7, [sp, #16] + 800860a: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 + 800860e: b974 cbnz r4, 800862e <_dtoa_r+0x36> + 8008610: 2010 movs r0, #16 + 8008612: f7ff f8b1 bl 8007778 + 8008616: 4602 mov r2, r0 + 8008618: 6268 str r0, [r5, #36] ; 0x24 + 800861a: b920 cbnz r0, 8008626 <_dtoa_r+0x2e> + 800861c: 21ea movs r1, #234 ; 0xea + 800861e: 4bae ldr r3, [pc, #696] ; (80088d8 <_dtoa_r+0x2e0>) + 8008620: 48ae ldr r0, [pc, #696] ; (80088dc <_dtoa_r+0x2e4>) + 8008622: f001 ff05 bl 800a430 <__assert_func> + 8008626: e9c0 4401 strd r4, r4, [r0, #4] + 800862a: 6004 str r4, [r0, #0] + 800862c: 60c4 str r4, [r0, #12] + 800862e: 6a6b ldr r3, [r5, #36] ; 0x24 + 8008630: 6819 ldr r1, [r3, #0] + 8008632: b151 cbz r1, 800864a <_dtoa_r+0x52> + 8008634: 685a ldr r2, [r3, #4] + 8008636: 2301 movs r3, #1 + 8008638: 4093 lsls r3, r2 + 800863a: 604a str r2, [r1, #4] + 800863c: 608b str r3, [r1, #8] + 800863e: 4628 mov r0, r5 + 8008640: f001 f854 bl 80096ec <_Bfree> + 8008644: 2200 movs r2, #0 + 8008646: 6a6b ldr r3, [r5, #36] ; 0x24 + 8008648: 601a str r2, [r3, #0] + 800864a: 1e3b subs r3, r7, #0 + 800864c: bfaf iteee ge + 800864e: 2300 movge r3, #0 + 8008650: 2201 movlt r2, #1 + 8008652: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 + 8008656: 9305 strlt r3, [sp, #20] + 8008658: bfa8 it ge + 800865a: f8c8 3000 strge.w r3, [r8] + 800865e: f8dd 9014 ldr.w r9, [sp, #20] + 8008662: 4b9f ldr r3, [pc, #636] ; (80088e0 <_dtoa_r+0x2e8>) + 8008664: bfb8 it lt + 8008666: f8c8 2000 strlt.w r2, [r8] + 800866a: ea33 0309 bics.w r3, r3, r9 + 800866e: d119 bne.n 80086a4 <_dtoa_r+0xac> + 8008670: f242 730f movw r3, #9999 ; 0x270f + 8008674: 9a24 ldr r2, [sp, #144] ; 0x90 + 8008676: 6013 str r3, [r2, #0] + 8008678: f3c9 0313 ubfx r3, r9, #0, #20 + 800867c: 4333 orrs r3, r6 + 800867e: f000 8580 beq.w 8009182 <_dtoa_r+0xb8a> + 8008682: 9b26 ldr r3, [sp, #152] ; 0x98 + 8008684: b953 cbnz r3, 800869c <_dtoa_r+0xa4> + 8008686: 4b97 ldr r3, [pc, #604] ; (80088e4 <_dtoa_r+0x2ec>) + 8008688: e022 b.n 80086d0 <_dtoa_r+0xd8> + 800868a: 4b97 ldr r3, [pc, #604] ; (80088e8 <_dtoa_r+0x2f0>) + 800868c: 9308 str r3, [sp, #32] + 800868e: 3308 adds r3, #8 + 8008690: 9a26 ldr r2, [sp, #152] ; 0x98 + 8008692: 6013 str r3, [r2, #0] + 8008694: 9808 ldr r0, [sp, #32] + 8008696: b019 add sp, #100 ; 0x64 + 8008698: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800869c: 4b91 ldr r3, [pc, #580] ; (80088e4 <_dtoa_r+0x2ec>) + 800869e: 9308 str r3, [sp, #32] + 80086a0: 3303 adds r3, #3 + 80086a2: e7f5 b.n 8008690 <_dtoa_r+0x98> + 80086a4: e9dd 3404 ldrd r3, r4, [sp, #16] + 80086a8: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 + 80086ac: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80086b0: 2200 movs r2, #0 + 80086b2: 2300 movs r3, #0 + 80086b4: f7f8 f9e4 bl 8000a80 <__aeabi_dcmpeq> + 80086b8: 4680 mov r8, r0 + 80086ba: b158 cbz r0, 80086d4 <_dtoa_r+0xdc> + 80086bc: 2301 movs r3, #1 + 80086be: 9a24 ldr r2, [sp, #144] ; 0x90 + 80086c0: 6013 str r3, [r2, #0] + 80086c2: 9b26 ldr r3, [sp, #152] ; 0x98 + 80086c4: 2b00 cmp r3, #0 + 80086c6: f000 8559 beq.w 800917c <_dtoa_r+0xb84> + 80086ca: 4888 ldr r0, [pc, #544] ; (80088ec <_dtoa_r+0x2f4>) + 80086cc: 6018 str r0, [r3, #0] + 80086ce: 1e43 subs r3, r0, #1 + 80086d0: 9308 str r3, [sp, #32] + 80086d2: e7df b.n 8008694 <_dtoa_r+0x9c> + 80086d4: ab16 add r3, sp, #88 ; 0x58 + 80086d6: 9301 str r3, [sp, #4] + 80086d8: ab17 add r3, sp, #92 ; 0x5c + 80086da: 9300 str r3, [sp, #0] + 80086dc: 4628 mov r0, r5 + 80086de: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 + 80086e2: f001 fae9 bl 8009cb8 <__d2b> + 80086e6: f3c9 540a ubfx r4, r9, #20, #11 + 80086ea: 4682 mov sl, r0 + 80086ec: 2c00 cmp r4, #0 + 80086ee: d07e beq.n 80087ee <_dtoa_r+0x1f6> + 80086f0: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80086f4: 9b0d ldr r3, [sp, #52] ; 0x34 + 80086f6: f2a4 34ff subw r4, r4, #1023 ; 0x3ff + 80086fa: f3c3 0313 ubfx r3, r3, #0, #20 + 80086fe: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 + 8008702: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 + 8008706: f8cd 804c str.w r8, [sp, #76] ; 0x4c + 800870a: 2200 movs r2, #0 + 800870c: 4b78 ldr r3, [pc, #480] ; (80088f0 <_dtoa_r+0x2f8>) + 800870e: f7f7 fd97 bl 8000240 <__aeabi_dsub> + 8008712: a36b add r3, pc, #428 ; (adr r3, 80088c0 <_dtoa_r+0x2c8>) + 8008714: e9d3 2300 ldrd r2, r3, [r3] + 8008718: f7f7 ff4a bl 80005b0 <__aeabi_dmul> + 800871c: a36a add r3, pc, #424 ; (adr r3, 80088c8 <_dtoa_r+0x2d0>) + 800871e: e9d3 2300 ldrd r2, r3, [r3] + 8008722: f7f7 fd8f bl 8000244 <__adddf3> + 8008726: 4606 mov r6, r0 + 8008728: 4620 mov r0, r4 + 800872a: 460f mov r7, r1 + 800872c: f7f7 fed6 bl 80004dc <__aeabi_i2d> + 8008730: a367 add r3, pc, #412 ; (adr r3, 80088d0 <_dtoa_r+0x2d8>) + 8008732: e9d3 2300 ldrd r2, r3, [r3] + 8008736: f7f7 ff3b bl 80005b0 <__aeabi_dmul> + 800873a: 4602 mov r2, r0 + 800873c: 460b mov r3, r1 + 800873e: 4630 mov r0, r6 + 8008740: 4639 mov r1, r7 + 8008742: f7f7 fd7f bl 8000244 <__adddf3> + 8008746: 4606 mov r6, r0 + 8008748: 460f mov r7, r1 + 800874a: f7f8 f9e1 bl 8000b10 <__aeabi_d2iz> + 800874e: 2200 movs r2, #0 + 8008750: 4681 mov r9, r0 + 8008752: 2300 movs r3, #0 + 8008754: 4630 mov r0, r6 + 8008756: 4639 mov r1, r7 + 8008758: f7f8 f99c bl 8000a94 <__aeabi_dcmplt> + 800875c: b148 cbz r0, 8008772 <_dtoa_r+0x17a> + 800875e: 4648 mov r0, r9 + 8008760: f7f7 febc bl 80004dc <__aeabi_i2d> + 8008764: 4632 mov r2, r6 + 8008766: 463b mov r3, r7 + 8008768: f7f8 f98a bl 8000a80 <__aeabi_dcmpeq> + 800876c: b908 cbnz r0, 8008772 <_dtoa_r+0x17a> + 800876e: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8008772: f1b9 0f16 cmp.w r9, #22 + 8008776: d857 bhi.n 8008828 <_dtoa_r+0x230> + 8008778: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 800877c: 4b5d ldr r3, [pc, #372] ; (80088f4 <_dtoa_r+0x2fc>) + 800877e: eb03 03c9 add.w r3, r3, r9, lsl #3 + 8008782: e9d3 2300 ldrd r2, r3, [r3] + 8008786: f7f8 f985 bl 8000a94 <__aeabi_dcmplt> + 800878a: 2800 cmp r0, #0 + 800878c: d04e beq.n 800882c <_dtoa_r+0x234> + 800878e: 2300 movs r3, #0 + 8008790: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8008794: 930f str r3, [sp, #60] ; 0x3c + 8008796: 9b16 ldr r3, [sp, #88] ; 0x58 + 8008798: 1b1c subs r4, r3, r4 + 800879a: 1e63 subs r3, r4, #1 + 800879c: 9309 str r3, [sp, #36] ; 0x24 + 800879e: bf49 itett mi + 80087a0: f1c4 0301 rsbmi r3, r4, #1 + 80087a4: 2300 movpl r3, #0 + 80087a6: 9306 strmi r3, [sp, #24] + 80087a8: 2300 movmi r3, #0 + 80087aa: bf54 ite pl + 80087ac: 9306 strpl r3, [sp, #24] + 80087ae: 9309 strmi r3, [sp, #36] ; 0x24 + 80087b0: f1b9 0f00 cmp.w r9, #0 + 80087b4: db3c blt.n 8008830 <_dtoa_r+0x238> + 80087b6: 9b09 ldr r3, [sp, #36] ; 0x24 + 80087b8: f8cd 9038 str.w r9, [sp, #56] ; 0x38 + 80087bc: 444b add r3, r9 + 80087be: 9309 str r3, [sp, #36] ; 0x24 + 80087c0: 2300 movs r3, #0 + 80087c2: 930a str r3, [sp, #40] ; 0x28 + 80087c4: 9b22 ldr r3, [sp, #136] ; 0x88 + 80087c6: 2b09 cmp r3, #9 + 80087c8: d86c bhi.n 80088a4 <_dtoa_r+0x2ac> + 80087ca: 2b05 cmp r3, #5 + 80087cc: bfc4 itt gt + 80087ce: 3b04 subgt r3, #4 + 80087d0: 9322 strgt r3, [sp, #136] ; 0x88 + 80087d2: 9b22 ldr r3, [sp, #136] ; 0x88 + 80087d4: bfc8 it gt + 80087d6: 2400 movgt r4, #0 + 80087d8: f1a3 0302 sub.w r3, r3, #2 + 80087dc: bfd8 it le + 80087de: 2401 movle r4, #1 + 80087e0: 2b03 cmp r3, #3 + 80087e2: f200 808b bhi.w 80088fc <_dtoa_r+0x304> + 80087e6: e8df f003 tbb [pc, r3] + 80087ea: 4f2d .short 0x4f2d + 80087ec: 5b4d .short 0x5b4d + 80087ee: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 + 80087f2: 441c add r4, r3 + 80087f4: f204 4332 addw r3, r4, #1074 ; 0x432 + 80087f8: 2b20 cmp r3, #32 + 80087fa: bfc3 ittte gt + 80087fc: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 + 8008800: f204 4012 addwgt r0, r4, #1042 ; 0x412 + 8008804: fa09 f303 lslgt.w r3, r9, r3 + 8008808: f1c3 0320 rsble r3, r3, #32 + 800880c: bfc6 itte gt + 800880e: fa26 f000 lsrgt.w r0, r6, r0 + 8008812: 4318 orrgt r0, r3 + 8008814: fa06 f003 lslle.w r0, r6, r3 + 8008818: f7f7 fe50 bl 80004bc <__aeabi_ui2d> + 800881c: 2301 movs r3, #1 + 800881e: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 + 8008822: 3c01 subs r4, #1 + 8008824: 9313 str r3, [sp, #76] ; 0x4c + 8008826: e770 b.n 800870a <_dtoa_r+0x112> + 8008828: 2301 movs r3, #1 + 800882a: e7b3 b.n 8008794 <_dtoa_r+0x19c> + 800882c: 900f str r0, [sp, #60] ; 0x3c + 800882e: e7b2 b.n 8008796 <_dtoa_r+0x19e> + 8008830: 9b06 ldr r3, [sp, #24] + 8008832: eba3 0309 sub.w r3, r3, r9 + 8008836: 9306 str r3, [sp, #24] + 8008838: f1c9 0300 rsb r3, r9, #0 + 800883c: 930a str r3, [sp, #40] ; 0x28 + 800883e: 2300 movs r3, #0 + 8008840: 930e str r3, [sp, #56] ; 0x38 + 8008842: e7bf b.n 80087c4 <_dtoa_r+0x1cc> + 8008844: 2300 movs r3, #0 + 8008846: 930b str r3, [sp, #44] ; 0x2c + 8008848: 9b23 ldr r3, [sp, #140] ; 0x8c + 800884a: 2b00 cmp r3, #0 + 800884c: dc59 bgt.n 8008902 <_dtoa_r+0x30a> + 800884e: f04f 0b01 mov.w fp, #1 + 8008852: 465b mov r3, fp + 8008854: f8cd b008 str.w fp, [sp, #8] + 8008858: f8cd b08c str.w fp, [sp, #140] ; 0x8c + 800885c: 2200 movs r2, #0 + 800885e: 6a68 ldr r0, [r5, #36] ; 0x24 + 8008860: 6042 str r2, [r0, #4] + 8008862: 2204 movs r2, #4 + 8008864: f102 0614 add.w r6, r2, #20 + 8008868: 429e cmp r6, r3 + 800886a: 6841 ldr r1, [r0, #4] + 800886c: d94f bls.n 800890e <_dtoa_r+0x316> + 800886e: 4628 mov r0, r5 + 8008870: f000 fefc bl 800966c <_Balloc> + 8008874: 9008 str r0, [sp, #32] + 8008876: 2800 cmp r0, #0 + 8008878: d14d bne.n 8008916 <_dtoa_r+0x31e> + 800887a: 4602 mov r2, r0 + 800887c: f44f 71d5 mov.w r1, #426 ; 0x1aa + 8008880: 4b1d ldr r3, [pc, #116] ; (80088f8 <_dtoa_r+0x300>) + 8008882: e6cd b.n 8008620 <_dtoa_r+0x28> + 8008884: 2301 movs r3, #1 + 8008886: e7de b.n 8008846 <_dtoa_r+0x24e> + 8008888: 2300 movs r3, #0 + 800888a: 930b str r3, [sp, #44] ; 0x2c + 800888c: 9b23 ldr r3, [sp, #140] ; 0x8c + 800888e: eb09 0b03 add.w fp, r9, r3 + 8008892: f10b 0301 add.w r3, fp, #1 + 8008896: 2b01 cmp r3, #1 + 8008898: 9302 str r3, [sp, #8] + 800889a: bfb8 it lt + 800889c: 2301 movlt r3, #1 + 800889e: e7dd b.n 800885c <_dtoa_r+0x264> + 80088a0: 2301 movs r3, #1 + 80088a2: e7f2 b.n 800888a <_dtoa_r+0x292> + 80088a4: 2401 movs r4, #1 + 80088a6: 2300 movs r3, #0 + 80088a8: 940b str r4, [sp, #44] ; 0x2c + 80088aa: 9322 str r3, [sp, #136] ; 0x88 + 80088ac: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff + 80088b0: 2200 movs r2, #0 + 80088b2: 2312 movs r3, #18 + 80088b4: f8cd b008 str.w fp, [sp, #8] + 80088b8: 9223 str r2, [sp, #140] ; 0x8c + 80088ba: e7cf b.n 800885c <_dtoa_r+0x264> + 80088bc: f3af 8000 nop.w + 80088c0: 636f4361 .word 0x636f4361 + 80088c4: 3fd287a7 .word 0x3fd287a7 + 80088c8: 8b60c8b3 .word 0x8b60c8b3 + 80088cc: 3fc68a28 .word 0x3fc68a28 + 80088d0: 509f79fb .word 0x509f79fb + 80088d4: 3fd34413 .word 0x3fd34413 + 80088d8: 0800b2cd .word 0x0800b2cd + 80088dc: 0800b2e4 .word 0x0800b2e4 + 80088e0: 7ff00000 .word 0x7ff00000 + 80088e4: 0800b2c9 .word 0x0800b2c9 + 80088e8: 0800b2c0 .word 0x0800b2c0 + 80088ec: 0800b29d .word 0x0800b29d + 80088f0: 3ff80000 .word 0x3ff80000 + 80088f4: 0800b440 .word 0x0800b440 + 80088f8: 0800b343 .word 0x0800b343 + 80088fc: 2301 movs r3, #1 + 80088fe: 930b str r3, [sp, #44] ; 0x2c + 8008900: e7d4 b.n 80088ac <_dtoa_r+0x2b4> + 8008902: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c + 8008906: 465b mov r3, fp + 8008908: f8cd b008 str.w fp, [sp, #8] + 800890c: e7a6 b.n 800885c <_dtoa_r+0x264> + 800890e: 3101 adds r1, #1 + 8008910: 6041 str r1, [r0, #4] + 8008912: 0052 lsls r2, r2, #1 + 8008914: e7a6 b.n 8008864 <_dtoa_r+0x26c> + 8008916: 6a6b ldr r3, [r5, #36] ; 0x24 + 8008918: 9a08 ldr r2, [sp, #32] + 800891a: 601a str r2, [r3, #0] + 800891c: 9b02 ldr r3, [sp, #8] + 800891e: 2b0e cmp r3, #14 + 8008920: f200 80a8 bhi.w 8008a74 <_dtoa_r+0x47c> + 8008924: 2c00 cmp r4, #0 + 8008926: f000 80a5 beq.w 8008a74 <_dtoa_r+0x47c> + 800892a: f1b9 0f00 cmp.w r9, #0 + 800892e: dd34 ble.n 800899a <_dtoa_r+0x3a2> + 8008930: 4a9a ldr r2, [pc, #616] ; (8008b9c <_dtoa_r+0x5a4>) + 8008932: f009 030f and.w r3, r9, #15 + 8008936: eb02 03c3 add.w r3, r2, r3, lsl #3 + 800893a: f419 7f80 tst.w r9, #256 ; 0x100 + 800893e: e9d3 3400 ldrd r3, r4, [r3] + 8008942: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 8008946: ea4f 1429 mov.w r4, r9, asr #4 + 800894a: d016 beq.n 800897a <_dtoa_r+0x382> + 800894c: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8008950: 4b93 ldr r3, [pc, #588] ; (8008ba0 <_dtoa_r+0x5a8>) + 8008952: 2703 movs r7, #3 + 8008954: e9d3 2308 ldrd r2, r3, [r3, #32] + 8008958: f7f7 ff54 bl 8000804 <__aeabi_ddiv> + 800895c: e9cd 0104 strd r0, r1, [sp, #16] + 8008960: f004 040f and.w r4, r4, #15 + 8008964: 4e8e ldr r6, [pc, #568] ; (8008ba0 <_dtoa_r+0x5a8>) + 8008966: b954 cbnz r4, 800897e <_dtoa_r+0x386> + 8008968: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 800896c: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008970: f7f7 ff48 bl 8000804 <__aeabi_ddiv> + 8008974: e9cd 0104 strd r0, r1, [sp, #16] + 8008978: e029 b.n 80089ce <_dtoa_r+0x3d6> + 800897a: 2702 movs r7, #2 + 800897c: e7f2 b.n 8008964 <_dtoa_r+0x36c> + 800897e: 07e1 lsls r1, r4, #31 + 8008980: d508 bpl.n 8008994 <_dtoa_r+0x39c> + 8008982: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008986: e9d6 2300 ldrd r2, r3, [r6] + 800898a: f7f7 fe11 bl 80005b0 <__aeabi_dmul> + 800898e: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008992: 3701 adds r7, #1 + 8008994: 1064 asrs r4, r4, #1 + 8008996: 3608 adds r6, #8 + 8008998: e7e5 b.n 8008966 <_dtoa_r+0x36e> + 800899a: f000 80a5 beq.w 8008ae8 <_dtoa_r+0x4f0> + 800899e: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80089a2: f1c9 0400 rsb r4, r9, #0 + 80089a6: 4b7d ldr r3, [pc, #500] ; (8008b9c <_dtoa_r+0x5a4>) + 80089a8: f004 020f and.w r2, r4, #15 + 80089ac: eb03 03c2 add.w r3, r3, r2, lsl #3 + 80089b0: e9d3 2300 ldrd r2, r3, [r3] + 80089b4: f7f7 fdfc bl 80005b0 <__aeabi_dmul> + 80089b8: 2702 movs r7, #2 + 80089ba: 2300 movs r3, #0 + 80089bc: e9cd 0104 strd r0, r1, [sp, #16] + 80089c0: 4e77 ldr r6, [pc, #476] ; (8008ba0 <_dtoa_r+0x5a8>) + 80089c2: 1124 asrs r4, r4, #4 + 80089c4: 2c00 cmp r4, #0 + 80089c6: f040 8084 bne.w 8008ad2 <_dtoa_r+0x4da> + 80089ca: 2b00 cmp r3, #0 + 80089cc: d1d2 bne.n 8008974 <_dtoa_r+0x37c> + 80089ce: 9b0f ldr r3, [sp, #60] ; 0x3c + 80089d0: 2b00 cmp r3, #0 + 80089d2: f000 808b beq.w 8008aec <_dtoa_r+0x4f4> + 80089d6: e9dd 3404 ldrd r3, r4, [sp, #16] + 80089da: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 80089de: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 80089e2: 2200 movs r2, #0 + 80089e4: 4b6f ldr r3, [pc, #444] ; (8008ba4 <_dtoa_r+0x5ac>) + 80089e6: f7f8 f855 bl 8000a94 <__aeabi_dcmplt> + 80089ea: 2800 cmp r0, #0 + 80089ec: d07e beq.n 8008aec <_dtoa_r+0x4f4> + 80089ee: 9b02 ldr r3, [sp, #8] + 80089f0: 2b00 cmp r3, #0 + 80089f2: d07b beq.n 8008aec <_dtoa_r+0x4f4> + 80089f4: f1bb 0f00 cmp.w fp, #0 + 80089f8: dd38 ble.n 8008a6c <_dtoa_r+0x474> + 80089fa: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 80089fe: 2200 movs r2, #0 + 8008a00: 4b69 ldr r3, [pc, #420] ; (8008ba8 <_dtoa_r+0x5b0>) + 8008a02: f7f7 fdd5 bl 80005b0 <__aeabi_dmul> + 8008a06: 465c mov r4, fp + 8008a08: e9cd 0104 strd r0, r1, [sp, #16] + 8008a0c: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff + 8008a10: 3701 adds r7, #1 + 8008a12: 4638 mov r0, r7 + 8008a14: f7f7 fd62 bl 80004dc <__aeabi_i2d> + 8008a18: e9dd 2304 ldrd r2, r3, [sp, #16] + 8008a1c: f7f7 fdc8 bl 80005b0 <__aeabi_dmul> + 8008a20: 2200 movs r2, #0 + 8008a22: 4b62 ldr r3, [pc, #392] ; (8008bac <_dtoa_r+0x5b4>) + 8008a24: f7f7 fc0e bl 8000244 <__adddf3> + 8008a28: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 + 8008a2c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008a30: 9611 str r6, [sp, #68] ; 0x44 + 8008a32: 2c00 cmp r4, #0 + 8008a34: d15d bne.n 8008af2 <_dtoa_r+0x4fa> + 8008a36: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008a3a: 2200 movs r2, #0 + 8008a3c: 4b5c ldr r3, [pc, #368] ; (8008bb0 <_dtoa_r+0x5b8>) + 8008a3e: f7f7 fbff bl 8000240 <__aeabi_dsub> + 8008a42: 4602 mov r2, r0 + 8008a44: 460b mov r3, r1 + 8008a46: e9cd 2304 strd r2, r3, [sp, #16] + 8008a4a: 4633 mov r3, r6 + 8008a4c: 9a10 ldr r2, [sp, #64] ; 0x40 + 8008a4e: f7f8 f83f bl 8000ad0 <__aeabi_dcmpgt> + 8008a52: 2800 cmp r0, #0 + 8008a54: f040 829e bne.w 8008f94 <_dtoa_r+0x99c> + 8008a58: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008a5c: 9a10 ldr r2, [sp, #64] ; 0x40 + 8008a5e: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 + 8008a62: f7f8 f817 bl 8000a94 <__aeabi_dcmplt> + 8008a66: 2800 cmp r0, #0 + 8008a68: f040 8292 bne.w 8008f90 <_dtoa_r+0x998> + 8008a6c: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 + 8008a70: e9cd 3404 strd r3, r4, [sp, #16] + 8008a74: 9b17 ldr r3, [sp, #92] ; 0x5c + 8008a76: 2b00 cmp r3, #0 + 8008a78: f2c0 8153 blt.w 8008d22 <_dtoa_r+0x72a> + 8008a7c: f1b9 0f0e cmp.w r9, #14 + 8008a80: f300 814f bgt.w 8008d22 <_dtoa_r+0x72a> + 8008a84: 4b45 ldr r3, [pc, #276] ; (8008b9c <_dtoa_r+0x5a4>) + 8008a86: eb03 03c9 add.w r3, r3, r9, lsl #3 + 8008a8a: e9d3 3400 ldrd r3, r4, [r3] + 8008a8e: e9cd 3406 strd r3, r4, [sp, #24] + 8008a92: 9b23 ldr r3, [sp, #140] ; 0x8c + 8008a94: 2b00 cmp r3, #0 + 8008a96: f280 80db bge.w 8008c50 <_dtoa_r+0x658> + 8008a9a: 9b02 ldr r3, [sp, #8] + 8008a9c: 2b00 cmp r3, #0 + 8008a9e: f300 80d7 bgt.w 8008c50 <_dtoa_r+0x658> + 8008aa2: f040 8274 bne.w 8008f8e <_dtoa_r+0x996> + 8008aa6: e9dd 0106 ldrd r0, r1, [sp, #24] + 8008aaa: 2200 movs r2, #0 + 8008aac: 4b40 ldr r3, [pc, #256] ; (8008bb0 <_dtoa_r+0x5b8>) + 8008aae: f7f7 fd7f bl 80005b0 <__aeabi_dmul> + 8008ab2: e9dd 2304 ldrd r2, r3, [sp, #16] + 8008ab6: f7f8 f801 bl 8000abc <__aeabi_dcmpge> + 8008aba: 9c02 ldr r4, [sp, #8] + 8008abc: 4626 mov r6, r4 + 8008abe: 2800 cmp r0, #0 + 8008ac0: f040 824a bne.w 8008f58 <_dtoa_r+0x960> + 8008ac4: 2331 movs r3, #49 ; 0x31 + 8008ac6: 9f08 ldr r7, [sp, #32] + 8008ac8: f109 0901 add.w r9, r9, #1 + 8008acc: f807 3b01 strb.w r3, [r7], #1 + 8008ad0: e246 b.n 8008f60 <_dtoa_r+0x968> + 8008ad2: 07e2 lsls r2, r4, #31 + 8008ad4: d505 bpl.n 8008ae2 <_dtoa_r+0x4ea> + 8008ad6: e9d6 2300 ldrd r2, r3, [r6] + 8008ada: f7f7 fd69 bl 80005b0 <__aeabi_dmul> + 8008ade: 2301 movs r3, #1 + 8008ae0: 3701 adds r7, #1 + 8008ae2: 1064 asrs r4, r4, #1 + 8008ae4: 3608 adds r6, #8 + 8008ae6: e76d b.n 80089c4 <_dtoa_r+0x3cc> + 8008ae8: 2702 movs r7, #2 + 8008aea: e770 b.n 80089ce <_dtoa_r+0x3d6> + 8008aec: 46c8 mov r8, r9 + 8008aee: 9c02 ldr r4, [sp, #8] + 8008af0: e78f b.n 8008a12 <_dtoa_r+0x41a> + 8008af2: 9908 ldr r1, [sp, #32] + 8008af4: 4b29 ldr r3, [pc, #164] ; (8008b9c <_dtoa_r+0x5a4>) + 8008af6: 4421 add r1, r4 + 8008af8: 9112 str r1, [sp, #72] ; 0x48 + 8008afa: 990b ldr r1, [sp, #44] ; 0x2c + 8008afc: eb03 03c4 add.w r3, r3, r4, lsl #3 + 8008b00: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 + 8008b04: e953 2302 ldrd r2, r3, [r3, #-8] + 8008b08: 2900 cmp r1, #0 + 8008b0a: d055 beq.n 8008bb8 <_dtoa_r+0x5c0> + 8008b0c: 2000 movs r0, #0 + 8008b0e: 4929 ldr r1, [pc, #164] ; (8008bb4 <_dtoa_r+0x5bc>) + 8008b10: f7f7 fe78 bl 8000804 <__aeabi_ddiv> + 8008b14: 463b mov r3, r7 + 8008b16: 4632 mov r2, r6 + 8008b18: f7f7 fb92 bl 8000240 <__aeabi_dsub> + 8008b1c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008b20: 9f08 ldr r7, [sp, #32] + 8008b22: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008b26: f7f7 fff3 bl 8000b10 <__aeabi_d2iz> + 8008b2a: 4604 mov r4, r0 + 8008b2c: f7f7 fcd6 bl 80004dc <__aeabi_i2d> + 8008b30: 4602 mov r2, r0 + 8008b32: 460b mov r3, r1 + 8008b34: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008b38: f7f7 fb82 bl 8000240 <__aeabi_dsub> + 8008b3c: 4602 mov r2, r0 + 8008b3e: 460b mov r3, r1 + 8008b40: 3430 adds r4, #48 ; 0x30 + 8008b42: e9cd 2304 strd r2, r3, [sp, #16] + 8008b46: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8008b4a: f807 4b01 strb.w r4, [r7], #1 + 8008b4e: f7f7 ffa1 bl 8000a94 <__aeabi_dcmplt> + 8008b52: 2800 cmp r0, #0 + 8008b54: d174 bne.n 8008c40 <_dtoa_r+0x648> + 8008b56: e9dd 2304 ldrd r2, r3, [sp, #16] + 8008b5a: 2000 movs r0, #0 + 8008b5c: 4911 ldr r1, [pc, #68] ; (8008ba4 <_dtoa_r+0x5ac>) + 8008b5e: f7f7 fb6f bl 8000240 <__aeabi_dsub> + 8008b62: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8008b66: f7f7 ff95 bl 8000a94 <__aeabi_dcmplt> 8008b6a: 2800 cmp r0, #0 - 8008b6c: f73f adb6 bgt.w 80086dc <_dtoa_r+0x4cc> - 8008b70: 9b23 ldr r3, [sp, #140] ; 0x8c - 8008b72: 9f08 ldr r7, [sp, #32] - 8008b74: ea6f 0903 mvn.w r9, r3 - 8008b78: f04f 0800 mov.w r8, #0 - 8008b7c: 4621 mov r1, r4 - 8008b7e: 4628 mov r0, r5 - 8008b80: f000 f9a0 bl 8008ec4 <_Bfree> - 8008b84: 2e00 cmp r6, #0 - 8008b86: f43f aea4 beq.w 80088d2 <_dtoa_r+0x6c2> - 8008b8a: f1b8 0f00 cmp.w r8, #0 - 8008b8e: d005 beq.n 8008b9c <_dtoa_r+0x98c> - 8008b90: 45b0 cmp r8, r6 - 8008b92: d003 beq.n 8008b9c <_dtoa_r+0x98c> - 8008b94: 4641 mov r1, r8 - 8008b96: 4628 mov r0, r5 - 8008b98: f000 f994 bl 8008ec4 <_Bfree> - 8008b9c: 4631 mov r1, r6 - 8008b9e: 4628 mov r0, r5 - 8008ba0: f000 f990 bl 8008ec4 <_Bfree> - 8008ba4: e695 b.n 80088d2 <_dtoa_r+0x6c2> - 8008ba6: 2400 movs r4, #0 - 8008ba8: 4626 mov r6, r4 - 8008baa: e7e1 b.n 8008b70 <_dtoa_r+0x960> - 8008bac: 46c1 mov r9, r8 - 8008bae: 4626 mov r6, r4 - 8008bb0: e594 b.n 80086dc <_dtoa_r+0x4cc> - 8008bb2: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008bb4: f8dd b008 ldr.w fp, [sp, #8] - 8008bb8: 2b00 cmp r3, #0 - 8008bba: f000 80fc beq.w 8008db6 <_dtoa_r+0xba6> - 8008bbe: 2f00 cmp r7, #0 - 8008bc0: dd05 ble.n 8008bce <_dtoa_r+0x9be> - 8008bc2: 4631 mov r1, r6 - 8008bc4: 463a mov r2, r7 - 8008bc6: 4628 mov r0, r5 - 8008bc8: f000 fb4a bl 8009260 <__lshift> - 8008bcc: 4606 mov r6, r0 - 8008bce: f1b8 0f00 cmp.w r8, #0 - 8008bd2: d05c beq.n 8008c8e <_dtoa_r+0xa7e> - 8008bd4: 4628 mov r0, r5 - 8008bd6: 6871 ldr r1, [r6, #4] - 8008bd8: f000 f934 bl 8008e44 <_Balloc> - 8008bdc: 4607 mov r7, r0 - 8008bde: b928 cbnz r0, 8008bec <_dtoa_r+0x9dc> - 8008be0: 4602 mov r2, r0 - 8008be2: f240 21ea movw r1, #746 ; 0x2ea - 8008be6: 4b7e ldr r3, [pc, #504] ; (8008de0 <_dtoa_r+0xbd0>) - 8008be8: f7ff bb26 b.w 8008238 <_dtoa_r+0x28> - 8008bec: 6932 ldr r2, [r6, #16] - 8008bee: f106 010c add.w r1, r6, #12 - 8008bf2: 3202 adds r2, #2 - 8008bf4: 0092 lsls r2, r2, #2 - 8008bf6: 300c adds r0, #12 - 8008bf8: f000 f90a bl 8008e10 - 8008bfc: 2201 movs r2, #1 - 8008bfe: 4639 mov r1, r7 - 8008c00: 4628 mov r0, r5 - 8008c02: f000 fb2d bl 8009260 <__lshift> - 8008c06: 46b0 mov r8, r6 - 8008c08: 4606 mov r6, r0 - 8008c0a: 9b08 ldr r3, [sp, #32] - 8008c0c: 3301 adds r3, #1 - 8008c0e: 9302 str r3, [sp, #8] - 8008c10: 9b08 ldr r3, [sp, #32] - 8008c12: 445b add r3, fp - 8008c14: 930a str r3, [sp, #40] ; 0x28 - 8008c16: 9b04 ldr r3, [sp, #16] - 8008c18: f003 0301 and.w r3, r3, #1 - 8008c1c: 9309 str r3, [sp, #36] ; 0x24 - 8008c1e: 9b02 ldr r3, [sp, #8] - 8008c20: 4621 mov r1, r4 - 8008c22: 4650 mov r0, sl - 8008c24: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff - 8008c28: f7ff fa64 bl 80080f4 - 8008c2c: 4603 mov r3, r0 - 8008c2e: 4641 mov r1, r8 - 8008c30: 3330 adds r3, #48 ; 0x30 - 8008c32: 9004 str r0, [sp, #16] - 8008c34: 4650 mov r0, sl - 8008c36: 930b str r3, [sp, #44] ; 0x2c - 8008c38: f000 fb7e bl 8009338 <__mcmp> - 8008c3c: 4632 mov r2, r6 - 8008c3e: 9006 str r0, [sp, #24] - 8008c40: 4621 mov r1, r4 - 8008c42: 4628 mov r0, r5 - 8008c44: f000 fb94 bl 8009370 <__mdiff> - 8008c48: 68c2 ldr r2, [r0, #12] - 8008c4a: 4607 mov r7, r0 - 8008c4c: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008c4e: bb02 cbnz r2, 8008c92 <_dtoa_r+0xa82> - 8008c50: 4601 mov r1, r0 - 8008c52: 4650 mov r0, sl - 8008c54: f000 fb70 bl 8009338 <__mcmp> - 8008c58: 4602 mov r2, r0 - 8008c5a: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008c5c: 4639 mov r1, r7 - 8008c5e: 4628 mov r0, r5 - 8008c60: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c - 8008c64: f000 f92e bl 8008ec4 <_Bfree> - 8008c68: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008c6a: 9a0c ldr r2, [sp, #48] ; 0x30 - 8008c6c: 9f02 ldr r7, [sp, #8] - 8008c6e: ea43 0102 orr.w r1, r3, r2 - 8008c72: 9b09 ldr r3, [sp, #36] ; 0x24 - 8008c74: 430b orrs r3, r1 - 8008c76: 9b0b ldr r3, [sp, #44] ; 0x2c - 8008c78: d10d bne.n 8008c96 <_dtoa_r+0xa86> - 8008c7a: 2b39 cmp r3, #57 ; 0x39 - 8008c7c: d027 beq.n 8008cce <_dtoa_r+0xabe> - 8008c7e: 9a06 ldr r2, [sp, #24] - 8008c80: 2a00 cmp r2, #0 - 8008c82: dd01 ble.n 8008c88 <_dtoa_r+0xa78> - 8008c84: 9b04 ldr r3, [sp, #16] - 8008c86: 3331 adds r3, #49 ; 0x31 - 8008c88: f88b 3000 strb.w r3, [fp] - 8008c8c: e776 b.n 8008b7c <_dtoa_r+0x96c> - 8008c8e: 4630 mov r0, r6 - 8008c90: e7b9 b.n 8008c06 <_dtoa_r+0x9f6> - 8008c92: 2201 movs r2, #1 - 8008c94: e7e2 b.n 8008c5c <_dtoa_r+0xa4c> - 8008c96: 9906 ldr r1, [sp, #24] - 8008c98: 2900 cmp r1, #0 - 8008c9a: db04 blt.n 8008ca6 <_dtoa_r+0xa96> - 8008c9c: 9822 ldr r0, [sp, #136] ; 0x88 - 8008c9e: 4301 orrs r1, r0 - 8008ca0: 9809 ldr r0, [sp, #36] ; 0x24 - 8008ca2: 4301 orrs r1, r0 - 8008ca4: d120 bne.n 8008ce8 <_dtoa_r+0xad8> - 8008ca6: 2a00 cmp r2, #0 - 8008ca8: ddee ble.n 8008c88 <_dtoa_r+0xa78> - 8008caa: 4651 mov r1, sl - 8008cac: 2201 movs r2, #1 - 8008cae: 4628 mov r0, r5 - 8008cb0: 9302 str r3, [sp, #8] - 8008cb2: f000 fad5 bl 8009260 <__lshift> - 8008cb6: 4621 mov r1, r4 - 8008cb8: 4682 mov sl, r0 - 8008cba: f000 fb3d bl 8009338 <__mcmp> - 8008cbe: 2800 cmp r0, #0 - 8008cc0: 9b02 ldr r3, [sp, #8] - 8008cc2: dc02 bgt.n 8008cca <_dtoa_r+0xaba> - 8008cc4: d1e0 bne.n 8008c88 <_dtoa_r+0xa78> - 8008cc6: 07da lsls r2, r3, #31 - 8008cc8: d5de bpl.n 8008c88 <_dtoa_r+0xa78> - 8008cca: 2b39 cmp r3, #57 ; 0x39 - 8008ccc: d1da bne.n 8008c84 <_dtoa_r+0xa74> - 8008cce: 2339 movs r3, #57 ; 0x39 - 8008cd0: f88b 3000 strb.w r3, [fp] - 8008cd4: 463b mov r3, r7 - 8008cd6: 461f mov r7, r3 - 8008cd8: f817 2c01 ldrb.w r2, [r7, #-1] - 8008cdc: 3b01 subs r3, #1 - 8008cde: 2a39 cmp r2, #57 ; 0x39 - 8008ce0: d050 beq.n 8008d84 <_dtoa_r+0xb74> - 8008ce2: 3201 adds r2, #1 - 8008ce4: 701a strb r2, [r3, #0] - 8008ce6: e749 b.n 8008b7c <_dtoa_r+0x96c> - 8008ce8: 2a00 cmp r2, #0 - 8008cea: dd03 ble.n 8008cf4 <_dtoa_r+0xae4> - 8008cec: 2b39 cmp r3, #57 ; 0x39 - 8008cee: d0ee beq.n 8008cce <_dtoa_r+0xabe> - 8008cf0: 3301 adds r3, #1 - 8008cf2: e7c9 b.n 8008c88 <_dtoa_r+0xa78> - 8008cf4: 9a02 ldr r2, [sp, #8] - 8008cf6: 990a ldr r1, [sp, #40] ; 0x28 - 8008cf8: f802 3c01 strb.w r3, [r2, #-1] - 8008cfc: 428a cmp r2, r1 - 8008cfe: d02a beq.n 8008d56 <_dtoa_r+0xb46> - 8008d00: 4651 mov r1, sl - 8008d02: 2300 movs r3, #0 - 8008d04: 220a movs r2, #10 - 8008d06: 4628 mov r0, r5 - 8008d08: f000 f8fe bl 8008f08 <__multadd> - 8008d0c: 45b0 cmp r8, r6 - 8008d0e: 4682 mov sl, r0 - 8008d10: f04f 0300 mov.w r3, #0 - 8008d14: f04f 020a mov.w r2, #10 - 8008d18: 4641 mov r1, r8 - 8008d1a: 4628 mov r0, r5 - 8008d1c: d107 bne.n 8008d2e <_dtoa_r+0xb1e> - 8008d1e: f000 f8f3 bl 8008f08 <__multadd> - 8008d22: 4680 mov r8, r0 - 8008d24: 4606 mov r6, r0 - 8008d26: 9b02 ldr r3, [sp, #8] - 8008d28: 3301 adds r3, #1 - 8008d2a: 9302 str r3, [sp, #8] - 8008d2c: e777 b.n 8008c1e <_dtoa_r+0xa0e> - 8008d2e: f000 f8eb bl 8008f08 <__multadd> - 8008d32: 4631 mov r1, r6 - 8008d34: 4680 mov r8, r0 - 8008d36: 2300 movs r3, #0 - 8008d38: 220a movs r2, #10 - 8008d3a: 4628 mov r0, r5 - 8008d3c: f000 f8e4 bl 8008f08 <__multadd> - 8008d40: 4606 mov r6, r0 - 8008d42: e7f0 b.n 8008d26 <_dtoa_r+0xb16> - 8008d44: f1bb 0f00 cmp.w fp, #0 - 8008d48: bfcc ite gt - 8008d4a: 465f movgt r7, fp - 8008d4c: 2701 movle r7, #1 - 8008d4e: f04f 0800 mov.w r8, #0 - 8008d52: 9a08 ldr r2, [sp, #32] - 8008d54: 4417 add r7, r2 - 8008d56: 4651 mov r1, sl - 8008d58: 2201 movs r2, #1 - 8008d5a: 4628 mov r0, r5 - 8008d5c: 9302 str r3, [sp, #8] - 8008d5e: f000 fa7f bl 8009260 <__lshift> - 8008d62: 4621 mov r1, r4 - 8008d64: 4682 mov sl, r0 - 8008d66: f000 fae7 bl 8009338 <__mcmp> - 8008d6a: 2800 cmp r0, #0 - 8008d6c: dcb2 bgt.n 8008cd4 <_dtoa_r+0xac4> - 8008d6e: d102 bne.n 8008d76 <_dtoa_r+0xb66> - 8008d70: 9b02 ldr r3, [sp, #8] - 8008d72: 07db lsls r3, r3, #31 - 8008d74: d4ae bmi.n 8008cd4 <_dtoa_r+0xac4> - 8008d76: 463b mov r3, r7 - 8008d78: 461f mov r7, r3 - 8008d7a: f813 2d01 ldrb.w r2, [r3, #-1]! - 8008d7e: 2a30 cmp r2, #48 ; 0x30 - 8008d80: d0fa beq.n 8008d78 <_dtoa_r+0xb68> - 8008d82: e6fb b.n 8008b7c <_dtoa_r+0x96c> - 8008d84: 9a08 ldr r2, [sp, #32] - 8008d86: 429a cmp r2, r3 - 8008d88: d1a5 bne.n 8008cd6 <_dtoa_r+0xac6> - 8008d8a: 2331 movs r3, #49 ; 0x31 - 8008d8c: f109 0901 add.w r9, r9, #1 - 8008d90: 7013 strb r3, [r2, #0] - 8008d92: e6f3 b.n 8008b7c <_dtoa_r+0x96c> - 8008d94: 4b13 ldr r3, [pc, #76] ; (8008de4 <_dtoa_r+0xbd4>) - 8008d96: f7ff baa7 b.w 80082e8 <_dtoa_r+0xd8> - 8008d9a: 9b26 ldr r3, [sp, #152] ; 0x98 - 8008d9c: 2b00 cmp r3, #0 - 8008d9e: f47f aa80 bne.w 80082a2 <_dtoa_r+0x92> - 8008da2: 4b11 ldr r3, [pc, #68] ; (8008de8 <_dtoa_r+0xbd8>) - 8008da4: f7ff baa0 b.w 80082e8 <_dtoa_r+0xd8> - 8008da8: f1bb 0f00 cmp.w fp, #0 - 8008dac: dc03 bgt.n 8008db6 <_dtoa_r+0xba6> - 8008dae: 9b22 ldr r3, [sp, #136] ; 0x88 - 8008db0: 2b02 cmp r3, #2 - 8008db2: f73f aecc bgt.w 8008b4e <_dtoa_r+0x93e> - 8008db6: 9f08 ldr r7, [sp, #32] - 8008db8: 4621 mov r1, r4 - 8008dba: 4650 mov r0, sl - 8008dbc: f7ff f99a bl 80080f4 - 8008dc0: 9a08 ldr r2, [sp, #32] - 8008dc2: f100 0330 add.w r3, r0, #48 ; 0x30 - 8008dc6: f807 3b01 strb.w r3, [r7], #1 - 8008dca: 1aba subs r2, r7, r2 - 8008dcc: 4593 cmp fp, r2 - 8008dce: ddb9 ble.n 8008d44 <_dtoa_r+0xb34> - 8008dd0: 4651 mov r1, sl - 8008dd2: 2300 movs r3, #0 - 8008dd4: 220a movs r2, #10 - 8008dd6: 4628 mov r0, r5 - 8008dd8: f000 f896 bl 8008f08 <__multadd> - 8008ddc: 4682 mov sl, r0 - 8008dde: e7eb b.n 8008db8 <_dtoa_r+0xba8> - 8008de0: 0800aff3 .word 0x0800aff3 - 8008de4: 0800af4c .word 0x0800af4c - 8008de8: 0800af70 .word 0x0800af70 + 8008b6c: f040 80b6 bne.w 8008cdc <_dtoa_r+0x6e4> + 8008b70: 9b12 ldr r3, [sp, #72] ; 0x48 + 8008b72: 429f cmp r7, r3 + 8008b74: f43f af7a beq.w 8008a6c <_dtoa_r+0x474> + 8008b78: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008b7c: 2200 movs r2, #0 + 8008b7e: 4b0a ldr r3, [pc, #40] ; (8008ba8 <_dtoa_r+0x5b0>) + 8008b80: f7f7 fd16 bl 80005b0 <__aeabi_dmul> + 8008b84: 2200 movs r2, #0 + 8008b86: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008b8a: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008b8e: 4b06 ldr r3, [pc, #24] ; (8008ba8 <_dtoa_r+0x5b0>) + 8008b90: f7f7 fd0e bl 80005b0 <__aeabi_dmul> + 8008b94: e9cd 0104 strd r0, r1, [sp, #16] + 8008b98: e7c3 b.n 8008b22 <_dtoa_r+0x52a> + 8008b9a: bf00 nop + 8008b9c: 0800b440 .word 0x0800b440 + 8008ba0: 0800b418 .word 0x0800b418 + 8008ba4: 3ff00000 .word 0x3ff00000 + 8008ba8: 40240000 .word 0x40240000 + 8008bac: 401c0000 .word 0x401c0000 + 8008bb0: 40140000 .word 0x40140000 + 8008bb4: 3fe00000 .word 0x3fe00000 + 8008bb8: 4630 mov r0, r6 + 8008bba: 4639 mov r1, r7 + 8008bbc: f7f7 fcf8 bl 80005b0 <__aeabi_dmul> + 8008bc0: 9b12 ldr r3, [sp, #72] ; 0x48 + 8008bc2: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8008bc6: 9c08 ldr r4, [sp, #32] + 8008bc8: 9314 str r3, [sp, #80] ; 0x50 + 8008bca: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008bce: f7f7 ff9f bl 8000b10 <__aeabi_d2iz> + 8008bd2: 9015 str r0, [sp, #84] ; 0x54 + 8008bd4: f7f7 fc82 bl 80004dc <__aeabi_i2d> + 8008bd8: 4602 mov r2, r0 + 8008bda: 460b mov r3, r1 + 8008bdc: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008be0: f7f7 fb2e bl 8000240 <__aeabi_dsub> + 8008be4: 9b15 ldr r3, [sp, #84] ; 0x54 + 8008be6: 4606 mov r6, r0 + 8008be8: 3330 adds r3, #48 ; 0x30 + 8008bea: f804 3b01 strb.w r3, [r4], #1 + 8008bee: 9b12 ldr r3, [sp, #72] ; 0x48 + 8008bf0: 460f mov r7, r1 + 8008bf2: 429c cmp r4, r3 + 8008bf4: f04f 0200 mov.w r2, #0 + 8008bf8: d124 bne.n 8008c44 <_dtoa_r+0x64c> + 8008bfa: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8008bfe: 4bb3 ldr r3, [pc, #716] ; (8008ecc <_dtoa_r+0x8d4>) + 8008c00: f7f7 fb20 bl 8000244 <__adddf3> + 8008c04: 4602 mov r2, r0 + 8008c06: 460b mov r3, r1 + 8008c08: 4630 mov r0, r6 + 8008c0a: 4639 mov r1, r7 + 8008c0c: f7f7 ff60 bl 8000ad0 <__aeabi_dcmpgt> + 8008c10: 2800 cmp r0, #0 + 8008c12: d162 bne.n 8008cda <_dtoa_r+0x6e2> + 8008c14: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8008c18: 2000 movs r0, #0 + 8008c1a: 49ac ldr r1, [pc, #688] ; (8008ecc <_dtoa_r+0x8d4>) + 8008c1c: f7f7 fb10 bl 8000240 <__aeabi_dsub> + 8008c20: 4602 mov r2, r0 + 8008c22: 460b mov r3, r1 + 8008c24: 4630 mov r0, r6 + 8008c26: 4639 mov r1, r7 + 8008c28: f7f7 ff34 bl 8000a94 <__aeabi_dcmplt> + 8008c2c: 2800 cmp r0, #0 + 8008c2e: f43f af1d beq.w 8008a6c <_dtoa_r+0x474> + 8008c32: 9f14 ldr r7, [sp, #80] ; 0x50 + 8008c34: 1e7b subs r3, r7, #1 + 8008c36: 9314 str r3, [sp, #80] ; 0x50 + 8008c38: f817 3c01 ldrb.w r3, [r7, #-1] + 8008c3c: 2b30 cmp r3, #48 ; 0x30 + 8008c3e: d0f8 beq.n 8008c32 <_dtoa_r+0x63a> + 8008c40: 46c1 mov r9, r8 + 8008c42: e03a b.n 8008cba <_dtoa_r+0x6c2> + 8008c44: 4ba2 ldr r3, [pc, #648] ; (8008ed0 <_dtoa_r+0x8d8>) + 8008c46: f7f7 fcb3 bl 80005b0 <__aeabi_dmul> + 8008c4a: e9cd 0104 strd r0, r1, [sp, #16] + 8008c4e: e7bc b.n 8008bca <_dtoa_r+0x5d2> + 8008c50: 9f08 ldr r7, [sp, #32] + 8008c52: e9dd 2306 ldrd r2, r3, [sp, #24] + 8008c56: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008c5a: f7f7 fdd3 bl 8000804 <__aeabi_ddiv> + 8008c5e: f7f7 ff57 bl 8000b10 <__aeabi_d2iz> + 8008c62: 4604 mov r4, r0 + 8008c64: f7f7 fc3a bl 80004dc <__aeabi_i2d> + 8008c68: e9dd 2306 ldrd r2, r3, [sp, #24] + 8008c6c: f7f7 fca0 bl 80005b0 <__aeabi_dmul> + 8008c70: f104 0630 add.w r6, r4, #48 ; 0x30 + 8008c74: 460b mov r3, r1 + 8008c76: 4602 mov r2, r0 + 8008c78: e9dd 0104 ldrd r0, r1, [sp, #16] + 8008c7c: f7f7 fae0 bl 8000240 <__aeabi_dsub> + 8008c80: f807 6b01 strb.w r6, [r7], #1 + 8008c84: 9e08 ldr r6, [sp, #32] + 8008c86: 9b02 ldr r3, [sp, #8] + 8008c88: 1bbe subs r6, r7, r6 + 8008c8a: 42b3 cmp r3, r6 + 8008c8c: d13a bne.n 8008d04 <_dtoa_r+0x70c> + 8008c8e: 4602 mov r2, r0 + 8008c90: 460b mov r3, r1 + 8008c92: f7f7 fad7 bl 8000244 <__adddf3> + 8008c96: 4602 mov r2, r0 + 8008c98: 460b mov r3, r1 + 8008c9a: e9cd 2302 strd r2, r3, [sp, #8] + 8008c9e: e9dd 2306 ldrd r2, r3, [sp, #24] + 8008ca2: f7f7 ff15 bl 8000ad0 <__aeabi_dcmpgt> + 8008ca6: bb58 cbnz r0, 8008d00 <_dtoa_r+0x708> + 8008ca8: e9dd 2306 ldrd r2, r3, [sp, #24] + 8008cac: e9dd 0102 ldrd r0, r1, [sp, #8] + 8008cb0: f7f7 fee6 bl 8000a80 <__aeabi_dcmpeq> + 8008cb4: b108 cbz r0, 8008cba <_dtoa_r+0x6c2> + 8008cb6: 07e1 lsls r1, r4, #31 + 8008cb8: d422 bmi.n 8008d00 <_dtoa_r+0x708> + 8008cba: 4628 mov r0, r5 + 8008cbc: 4651 mov r1, sl + 8008cbe: f000 fd15 bl 80096ec <_Bfree> + 8008cc2: 2300 movs r3, #0 + 8008cc4: 703b strb r3, [r7, #0] + 8008cc6: 9b24 ldr r3, [sp, #144] ; 0x90 + 8008cc8: f109 0001 add.w r0, r9, #1 + 8008ccc: 6018 str r0, [r3, #0] + 8008cce: 9b26 ldr r3, [sp, #152] ; 0x98 + 8008cd0: 2b00 cmp r3, #0 + 8008cd2: f43f acdf beq.w 8008694 <_dtoa_r+0x9c> + 8008cd6: 601f str r7, [r3, #0] + 8008cd8: e4dc b.n 8008694 <_dtoa_r+0x9c> + 8008cda: 4627 mov r7, r4 + 8008cdc: 463b mov r3, r7 + 8008cde: 461f mov r7, r3 + 8008ce0: f813 2d01 ldrb.w r2, [r3, #-1]! + 8008ce4: 2a39 cmp r2, #57 ; 0x39 + 8008ce6: d107 bne.n 8008cf8 <_dtoa_r+0x700> + 8008ce8: 9a08 ldr r2, [sp, #32] + 8008cea: 429a cmp r2, r3 + 8008cec: d1f7 bne.n 8008cde <_dtoa_r+0x6e6> + 8008cee: 2230 movs r2, #48 ; 0x30 + 8008cf0: 9908 ldr r1, [sp, #32] + 8008cf2: f108 0801 add.w r8, r8, #1 + 8008cf6: 700a strb r2, [r1, #0] + 8008cf8: 781a ldrb r2, [r3, #0] + 8008cfa: 3201 adds r2, #1 + 8008cfc: 701a strb r2, [r3, #0] + 8008cfe: e79f b.n 8008c40 <_dtoa_r+0x648> + 8008d00: 46c8 mov r8, r9 + 8008d02: e7eb b.n 8008cdc <_dtoa_r+0x6e4> + 8008d04: 2200 movs r2, #0 + 8008d06: 4b72 ldr r3, [pc, #456] ; (8008ed0 <_dtoa_r+0x8d8>) + 8008d08: f7f7 fc52 bl 80005b0 <__aeabi_dmul> + 8008d0c: 4602 mov r2, r0 + 8008d0e: 460b mov r3, r1 + 8008d10: e9cd 2304 strd r2, r3, [sp, #16] + 8008d14: 2200 movs r2, #0 + 8008d16: 2300 movs r3, #0 + 8008d18: f7f7 feb2 bl 8000a80 <__aeabi_dcmpeq> + 8008d1c: 2800 cmp r0, #0 + 8008d1e: d098 beq.n 8008c52 <_dtoa_r+0x65a> + 8008d20: e7cb b.n 8008cba <_dtoa_r+0x6c2> + 8008d22: 9a0b ldr r2, [sp, #44] ; 0x2c + 8008d24: 2a00 cmp r2, #0 + 8008d26: f000 80cd beq.w 8008ec4 <_dtoa_r+0x8cc> + 8008d2a: 9a22 ldr r2, [sp, #136] ; 0x88 + 8008d2c: 2a01 cmp r2, #1 + 8008d2e: f300 80af bgt.w 8008e90 <_dtoa_r+0x898> + 8008d32: 9a13 ldr r2, [sp, #76] ; 0x4c + 8008d34: 2a00 cmp r2, #0 + 8008d36: f000 80a7 beq.w 8008e88 <_dtoa_r+0x890> + 8008d3a: f203 4333 addw r3, r3, #1075 ; 0x433 + 8008d3e: 9c0a ldr r4, [sp, #40] ; 0x28 + 8008d40: 9f06 ldr r7, [sp, #24] + 8008d42: 9a06 ldr r2, [sp, #24] + 8008d44: 2101 movs r1, #1 + 8008d46: 441a add r2, r3 + 8008d48: 9206 str r2, [sp, #24] + 8008d4a: 9a09 ldr r2, [sp, #36] ; 0x24 + 8008d4c: 4628 mov r0, r5 + 8008d4e: 441a add r2, r3 + 8008d50: 9209 str r2, [sp, #36] ; 0x24 + 8008d52: f000 fd85 bl 8009860 <__i2b> + 8008d56: 4606 mov r6, r0 + 8008d58: 2f00 cmp r7, #0 + 8008d5a: dd0c ble.n 8008d76 <_dtoa_r+0x77e> + 8008d5c: 9b09 ldr r3, [sp, #36] ; 0x24 + 8008d5e: 2b00 cmp r3, #0 + 8008d60: dd09 ble.n 8008d76 <_dtoa_r+0x77e> + 8008d62: 42bb cmp r3, r7 + 8008d64: bfa8 it ge + 8008d66: 463b movge r3, r7 + 8008d68: 9a06 ldr r2, [sp, #24] + 8008d6a: 1aff subs r7, r7, r3 + 8008d6c: 1ad2 subs r2, r2, r3 + 8008d6e: 9206 str r2, [sp, #24] + 8008d70: 9a09 ldr r2, [sp, #36] ; 0x24 + 8008d72: 1ad3 subs r3, r2, r3 + 8008d74: 9309 str r3, [sp, #36] ; 0x24 + 8008d76: 9b0a ldr r3, [sp, #40] ; 0x28 + 8008d78: b1f3 cbz r3, 8008db8 <_dtoa_r+0x7c0> + 8008d7a: 9b0b ldr r3, [sp, #44] ; 0x2c + 8008d7c: 2b00 cmp r3, #0 + 8008d7e: f000 80a9 beq.w 8008ed4 <_dtoa_r+0x8dc> + 8008d82: 2c00 cmp r4, #0 + 8008d84: dd10 ble.n 8008da8 <_dtoa_r+0x7b0> + 8008d86: 4631 mov r1, r6 + 8008d88: 4622 mov r2, r4 + 8008d8a: 4628 mov r0, r5 + 8008d8c: f000 fe22 bl 80099d4 <__pow5mult> + 8008d90: 4652 mov r2, sl + 8008d92: 4601 mov r1, r0 + 8008d94: 4606 mov r6, r0 + 8008d96: 4628 mov r0, r5 + 8008d98: f000 fd78 bl 800988c <__multiply> + 8008d9c: 4680 mov r8, r0 + 8008d9e: 4651 mov r1, sl + 8008da0: 4628 mov r0, r5 + 8008da2: f000 fca3 bl 80096ec <_Bfree> + 8008da6: 46c2 mov sl, r8 + 8008da8: 9b0a ldr r3, [sp, #40] ; 0x28 + 8008daa: 1b1a subs r2, r3, r4 + 8008dac: d004 beq.n 8008db8 <_dtoa_r+0x7c0> + 8008dae: 4651 mov r1, sl + 8008db0: 4628 mov r0, r5 + 8008db2: f000 fe0f bl 80099d4 <__pow5mult> + 8008db6: 4682 mov sl, r0 + 8008db8: 2101 movs r1, #1 + 8008dba: 4628 mov r0, r5 + 8008dbc: f000 fd50 bl 8009860 <__i2b> + 8008dc0: 9b0e ldr r3, [sp, #56] ; 0x38 + 8008dc2: 4604 mov r4, r0 + 8008dc4: 2b00 cmp r3, #0 + 8008dc6: f340 8087 ble.w 8008ed8 <_dtoa_r+0x8e0> + 8008dca: 461a mov r2, r3 + 8008dcc: 4601 mov r1, r0 + 8008dce: 4628 mov r0, r5 + 8008dd0: f000 fe00 bl 80099d4 <__pow5mult> + 8008dd4: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008dd6: 4604 mov r4, r0 + 8008dd8: 2b01 cmp r3, #1 + 8008dda: f340 8080 ble.w 8008ede <_dtoa_r+0x8e6> + 8008dde: f04f 0800 mov.w r8, #0 + 8008de2: 6923 ldr r3, [r4, #16] + 8008de4: eb04 0383 add.w r3, r4, r3, lsl #2 + 8008de8: 6918 ldr r0, [r3, #16] + 8008dea: f000 fceb bl 80097c4 <__hi0bits> + 8008dee: f1c0 0020 rsb r0, r0, #32 + 8008df2: 9b09 ldr r3, [sp, #36] ; 0x24 + 8008df4: 4418 add r0, r3 + 8008df6: f010 001f ands.w r0, r0, #31 + 8008dfa: f000 8092 beq.w 8008f22 <_dtoa_r+0x92a> + 8008dfe: f1c0 0320 rsb r3, r0, #32 + 8008e02: 2b04 cmp r3, #4 + 8008e04: f340 808a ble.w 8008f1c <_dtoa_r+0x924> + 8008e08: f1c0 001c rsb r0, r0, #28 + 8008e0c: 9b06 ldr r3, [sp, #24] + 8008e0e: 4407 add r7, r0 + 8008e10: 4403 add r3, r0 + 8008e12: 9306 str r3, [sp, #24] + 8008e14: 9b09 ldr r3, [sp, #36] ; 0x24 + 8008e16: 4403 add r3, r0 + 8008e18: 9309 str r3, [sp, #36] ; 0x24 + 8008e1a: 9b06 ldr r3, [sp, #24] + 8008e1c: 2b00 cmp r3, #0 + 8008e1e: dd05 ble.n 8008e2c <_dtoa_r+0x834> + 8008e20: 4651 mov r1, sl + 8008e22: 461a mov r2, r3 + 8008e24: 4628 mov r0, r5 + 8008e26: f000 fe2f bl 8009a88 <__lshift> + 8008e2a: 4682 mov sl, r0 + 8008e2c: 9b09 ldr r3, [sp, #36] ; 0x24 + 8008e2e: 2b00 cmp r3, #0 + 8008e30: dd05 ble.n 8008e3e <_dtoa_r+0x846> + 8008e32: 4621 mov r1, r4 + 8008e34: 461a mov r2, r3 + 8008e36: 4628 mov r0, r5 + 8008e38: f000 fe26 bl 8009a88 <__lshift> + 8008e3c: 4604 mov r4, r0 + 8008e3e: 9b0f ldr r3, [sp, #60] ; 0x3c + 8008e40: 2b00 cmp r3, #0 + 8008e42: d070 beq.n 8008f26 <_dtoa_r+0x92e> + 8008e44: 4621 mov r1, r4 + 8008e46: 4650 mov r0, sl + 8008e48: f000 fe8a bl 8009b60 <__mcmp> + 8008e4c: 2800 cmp r0, #0 + 8008e4e: da6a bge.n 8008f26 <_dtoa_r+0x92e> + 8008e50: 2300 movs r3, #0 + 8008e52: 4651 mov r1, sl + 8008e54: 220a movs r2, #10 + 8008e56: 4628 mov r0, r5 + 8008e58: f000 fc6a bl 8009730 <__multadd> + 8008e5c: 9b0b ldr r3, [sp, #44] ; 0x2c + 8008e5e: 4682 mov sl, r0 + 8008e60: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8008e64: 2b00 cmp r3, #0 + 8008e66: f000 8193 beq.w 8009190 <_dtoa_r+0xb98> + 8008e6a: 4631 mov r1, r6 + 8008e6c: 2300 movs r3, #0 + 8008e6e: 220a movs r2, #10 + 8008e70: 4628 mov r0, r5 + 8008e72: f000 fc5d bl 8009730 <__multadd> + 8008e76: f1bb 0f00 cmp.w fp, #0 + 8008e7a: 4606 mov r6, r0 + 8008e7c: f300 8093 bgt.w 8008fa6 <_dtoa_r+0x9ae> + 8008e80: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008e82: 2b02 cmp r3, #2 + 8008e84: dc57 bgt.n 8008f36 <_dtoa_r+0x93e> + 8008e86: e08e b.n 8008fa6 <_dtoa_r+0x9ae> + 8008e88: 9b16 ldr r3, [sp, #88] ; 0x58 + 8008e8a: f1c3 0336 rsb r3, r3, #54 ; 0x36 + 8008e8e: e756 b.n 8008d3e <_dtoa_r+0x746> + 8008e90: 9b02 ldr r3, [sp, #8] + 8008e92: 1e5c subs r4, r3, #1 + 8008e94: 9b0a ldr r3, [sp, #40] ; 0x28 + 8008e96: 42a3 cmp r3, r4 + 8008e98: bfb7 itett lt + 8008e9a: 9b0a ldrlt r3, [sp, #40] ; 0x28 + 8008e9c: 1b1c subge r4, r3, r4 + 8008e9e: 1ae2 sublt r2, r4, r3 + 8008ea0: 9b0e ldrlt r3, [sp, #56] ; 0x38 + 8008ea2: bfbe ittt lt + 8008ea4: 940a strlt r4, [sp, #40] ; 0x28 + 8008ea6: 189b addlt r3, r3, r2 + 8008ea8: 930e strlt r3, [sp, #56] ; 0x38 + 8008eaa: 9b02 ldr r3, [sp, #8] + 8008eac: bfb8 it lt + 8008eae: 2400 movlt r4, #0 + 8008eb0: 2b00 cmp r3, #0 + 8008eb2: bfbb ittet lt + 8008eb4: 9b06 ldrlt r3, [sp, #24] + 8008eb6: 9a02 ldrlt r2, [sp, #8] + 8008eb8: 9f06 ldrge r7, [sp, #24] + 8008eba: 1a9f sublt r7, r3, r2 + 8008ebc: bfac ite ge + 8008ebe: 9b02 ldrge r3, [sp, #8] + 8008ec0: 2300 movlt r3, #0 + 8008ec2: e73e b.n 8008d42 <_dtoa_r+0x74a> + 8008ec4: 9c0a ldr r4, [sp, #40] ; 0x28 + 8008ec6: 9f06 ldr r7, [sp, #24] + 8008ec8: 9e0b ldr r6, [sp, #44] ; 0x2c + 8008eca: e745 b.n 8008d58 <_dtoa_r+0x760> + 8008ecc: 3fe00000 .word 0x3fe00000 + 8008ed0: 40240000 .word 0x40240000 + 8008ed4: 9a0a ldr r2, [sp, #40] ; 0x28 + 8008ed6: e76a b.n 8008dae <_dtoa_r+0x7b6> + 8008ed8: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008eda: 2b01 cmp r3, #1 + 8008edc: dc19 bgt.n 8008f12 <_dtoa_r+0x91a> + 8008ede: 9b04 ldr r3, [sp, #16] + 8008ee0: b9bb cbnz r3, 8008f12 <_dtoa_r+0x91a> + 8008ee2: 9b05 ldr r3, [sp, #20] + 8008ee4: f3c3 0313 ubfx r3, r3, #0, #20 + 8008ee8: b99b cbnz r3, 8008f12 <_dtoa_r+0x91a> + 8008eea: 9b05 ldr r3, [sp, #20] + 8008eec: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 + 8008ef0: 0d1b lsrs r3, r3, #20 + 8008ef2: 051b lsls r3, r3, #20 + 8008ef4: b183 cbz r3, 8008f18 <_dtoa_r+0x920> + 8008ef6: f04f 0801 mov.w r8, #1 + 8008efa: 9b06 ldr r3, [sp, #24] + 8008efc: 3301 adds r3, #1 + 8008efe: 9306 str r3, [sp, #24] + 8008f00: 9b09 ldr r3, [sp, #36] ; 0x24 + 8008f02: 3301 adds r3, #1 + 8008f04: 9309 str r3, [sp, #36] ; 0x24 + 8008f06: 9b0e ldr r3, [sp, #56] ; 0x38 + 8008f08: 2b00 cmp r3, #0 + 8008f0a: f47f af6a bne.w 8008de2 <_dtoa_r+0x7ea> + 8008f0e: 2001 movs r0, #1 + 8008f10: e76f b.n 8008df2 <_dtoa_r+0x7fa> + 8008f12: f04f 0800 mov.w r8, #0 + 8008f16: e7f6 b.n 8008f06 <_dtoa_r+0x90e> + 8008f18: 4698 mov r8, r3 + 8008f1a: e7f4 b.n 8008f06 <_dtoa_r+0x90e> + 8008f1c: f43f af7d beq.w 8008e1a <_dtoa_r+0x822> + 8008f20: 4618 mov r0, r3 + 8008f22: 301c adds r0, #28 + 8008f24: e772 b.n 8008e0c <_dtoa_r+0x814> + 8008f26: 9b02 ldr r3, [sp, #8] + 8008f28: 2b00 cmp r3, #0 + 8008f2a: dc36 bgt.n 8008f9a <_dtoa_r+0x9a2> + 8008f2c: 9b22 ldr r3, [sp, #136] ; 0x88 + 8008f2e: 2b02 cmp r3, #2 + 8008f30: dd33 ble.n 8008f9a <_dtoa_r+0x9a2> + 8008f32: f8dd b008 ldr.w fp, [sp, #8] + 8008f36: f1bb 0f00 cmp.w fp, #0 + 8008f3a: d10d bne.n 8008f58 <_dtoa_r+0x960> + 8008f3c: 4621 mov r1, r4 + 8008f3e: 465b mov r3, fp + 8008f40: 2205 movs r2, #5 + 8008f42: 4628 mov r0, r5 + 8008f44: f000 fbf4 bl 8009730 <__multadd> + 8008f48: 4601 mov r1, r0 + 8008f4a: 4604 mov r4, r0 + 8008f4c: 4650 mov r0, sl + 8008f4e: f000 fe07 bl 8009b60 <__mcmp> + 8008f52: 2800 cmp r0, #0 + 8008f54: f73f adb6 bgt.w 8008ac4 <_dtoa_r+0x4cc> + 8008f58: 9b23 ldr r3, [sp, #140] ; 0x8c + 8008f5a: 9f08 ldr r7, [sp, #32] + 8008f5c: ea6f 0903 mvn.w r9, r3 + 8008f60: f04f 0800 mov.w r8, #0 + 8008f64: 4621 mov r1, r4 + 8008f66: 4628 mov r0, r5 + 8008f68: f000 fbc0 bl 80096ec <_Bfree> + 8008f6c: 2e00 cmp r6, #0 + 8008f6e: f43f aea4 beq.w 8008cba <_dtoa_r+0x6c2> + 8008f72: f1b8 0f00 cmp.w r8, #0 + 8008f76: d005 beq.n 8008f84 <_dtoa_r+0x98c> + 8008f78: 45b0 cmp r8, r6 + 8008f7a: d003 beq.n 8008f84 <_dtoa_r+0x98c> + 8008f7c: 4641 mov r1, r8 + 8008f7e: 4628 mov r0, r5 + 8008f80: f000 fbb4 bl 80096ec <_Bfree> + 8008f84: 4631 mov r1, r6 + 8008f86: 4628 mov r0, r5 + 8008f88: f000 fbb0 bl 80096ec <_Bfree> + 8008f8c: e695 b.n 8008cba <_dtoa_r+0x6c2> + 8008f8e: 2400 movs r4, #0 + 8008f90: 4626 mov r6, r4 + 8008f92: e7e1 b.n 8008f58 <_dtoa_r+0x960> + 8008f94: 46c1 mov r9, r8 + 8008f96: 4626 mov r6, r4 + 8008f98: e594 b.n 8008ac4 <_dtoa_r+0x4cc> + 8008f9a: 9b0b ldr r3, [sp, #44] ; 0x2c + 8008f9c: f8dd b008 ldr.w fp, [sp, #8] + 8008fa0: 2b00 cmp r3, #0 + 8008fa2: f000 80fc beq.w 800919e <_dtoa_r+0xba6> + 8008fa6: 2f00 cmp r7, #0 + 8008fa8: dd05 ble.n 8008fb6 <_dtoa_r+0x9be> + 8008faa: 4631 mov r1, r6 + 8008fac: 463a mov r2, r7 + 8008fae: 4628 mov r0, r5 + 8008fb0: f000 fd6a bl 8009a88 <__lshift> + 8008fb4: 4606 mov r6, r0 + 8008fb6: f1b8 0f00 cmp.w r8, #0 + 8008fba: d05c beq.n 8009076 <_dtoa_r+0xa7e> + 8008fbc: 4628 mov r0, r5 + 8008fbe: 6871 ldr r1, [r6, #4] + 8008fc0: f000 fb54 bl 800966c <_Balloc> + 8008fc4: 4607 mov r7, r0 + 8008fc6: b928 cbnz r0, 8008fd4 <_dtoa_r+0x9dc> + 8008fc8: 4602 mov r2, r0 + 8008fca: f240 21ea movw r1, #746 ; 0x2ea + 8008fce: 4b7e ldr r3, [pc, #504] ; (80091c8 <_dtoa_r+0xbd0>) + 8008fd0: f7ff bb26 b.w 8008620 <_dtoa_r+0x28> + 8008fd4: 6932 ldr r2, [r6, #16] + 8008fd6: f106 010c add.w r1, r6, #12 + 8008fda: 3202 adds r2, #2 + 8008fdc: 0092 lsls r2, r2, #2 + 8008fde: 300c adds r0, #12 + 8008fe0: f000 fb2a bl 8009638 + 8008fe4: 2201 movs r2, #1 + 8008fe6: 4639 mov r1, r7 + 8008fe8: 4628 mov r0, r5 + 8008fea: f000 fd4d bl 8009a88 <__lshift> + 8008fee: 46b0 mov r8, r6 + 8008ff0: 4606 mov r6, r0 + 8008ff2: 9b08 ldr r3, [sp, #32] + 8008ff4: 3301 adds r3, #1 + 8008ff6: 9302 str r3, [sp, #8] + 8008ff8: 9b08 ldr r3, [sp, #32] + 8008ffa: 445b add r3, fp + 8008ffc: 930a str r3, [sp, #40] ; 0x28 + 8008ffe: 9b04 ldr r3, [sp, #16] + 8009000: f003 0301 and.w r3, r3, #1 + 8009004: 9309 str r3, [sp, #36] ; 0x24 + 8009006: 9b02 ldr r3, [sp, #8] + 8009008: 4621 mov r1, r4 + 800900a: 4650 mov r0, sl + 800900c: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff + 8009010: f7ff fa62 bl 80084d8 + 8009014: 4603 mov r3, r0 + 8009016: 4641 mov r1, r8 + 8009018: 3330 adds r3, #48 ; 0x30 + 800901a: 9004 str r0, [sp, #16] + 800901c: 4650 mov r0, sl + 800901e: 930b str r3, [sp, #44] ; 0x2c + 8009020: f000 fd9e bl 8009b60 <__mcmp> + 8009024: 4632 mov r2, r6 + 8009026: 9006 str r0, [sp, #24] + 8009028: 4621 mov r1, r4 + 800902a: 4628 mov r0, r5 + 800902c: f000 fdb4 bl 8009b98 <__mdiff> + 8009030: 68c2 ldr r2, [r0, #12] + 8009032: 4607 mov r7, r0 + 8009034: 9b0b ldr r3, [sp, #44] ; 0x2c + 8009036: bb02 cbnz r2, 800907a <_dtoa_r+0xa82> + 8009038: 4601 mov r1, r0 + 800903a: 4650 mov r0, sl + 800903c: f000 fd90 bl 8009b60 <__mcmp> + 8009040: 4602 mov r2, r0 + 8009042: 9b0b ldr r3, [sp, #44] ; 0x2c + 8009044: 4639 mov r1, r7 + 8009046: 4628 mov r0, r5 + 8009048: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c + 800904c: f000 fb4e bl 80096ec <_Bfree> + 8009050: 9b22 ldr r3, [sp, #136] ; 0x88 + 8009052: 9a0c ldr r2, [sp, #48] ; 0x30 + 8009054: 9f02 ldr r7, [sp, #8] + 8009056: ea43 0102 orr.w r1, r3, r2 + 800905a: 9b09 ldr r3, [sp, #36] ; 0x24 + 800905c: 430b orrs r3, r1 + 800905e: 9b0b ldr r3, [sp, #44] ; 0x2c + 8009060: d10d bne.n 800907e <_dtoa_r+0xa86> + 8009062: 2b39 cmp r3, #57 ; 0x39 + 8009064: d027 beq.n 80090b6 <_dtoa_r+0xabe> + 8009066: 9a06 ldr r2, [sp, #24] + 8009068: 2a00 cmp r2, #0 + 800906a: dd01 ble.n 8009070 <_dtoa_r+0xa78> + 800906c: 9b04 ldr r3, [sp, #16] + 800906e: 3331 adds r3, #49 ; 0x31 + 8009070: f88b 3000 strb.w r3, [fp] + 8009074: e776 b.n 8008f64 <_dtoa_r+0x96c> + 8009076: 4630 mov r0, r6 + 8009078: e7b9 b.n 8008fee <_dtoa_r+0x9f6> + 800907a: 2201 movs r2, #1 + 800907c: e7e2 b.n 8009044 <_dtoa_r+0xa4c> + 800907e: 9906 ldr r1, [sp, #24] + 8009080: 2900 cmp r1, #0 + 8009082: db04 blt.n 800908e <_dtoa_r+0xa96> + 8009084: 9822 ldr r0, [sp, #136] ; 0x88 + 8009086: 4301 orrs r1, r0 + 8009088: 9809 ldr r0, [sp, #36] ; 0x24 + 800908a: 4301 orrs r1, r0 + 800908c: d120 bne.n 80090d0 <_dtoa_r+0xad8> + 800908e: 2a00 cmp r2, #0 + 8009090: ddee ble.n 8009070 <_dtoa_r+0xa78> + 8009092: 4651 mov r1, sl + 8009094: 2201 movs r2, #1 + 8009096: 4628 mov r0, r5 + 8009098: 9302 str r3, [sp, #8] + 800909a: f000 fcf5 bl 8009a88 <__lshift> + 800909e: 4621 mov r1, r4 + 80090a0: 4682 mov sl, r0 + 80090a2: f000 fd5d bl 8009b60 <__mcmp> + 80090a6: 2800 cmp r0, #0 + 80090a8: 9b02 ldr r3, [sp, #8] + 80090aa: dc02 bgt.n 80090b2 <_dtoa_r+0xaba> + 80090ac: d1e0 bne.n 8009070 <_dtoa_r+0xa78> + 80090ae: 07da lsls r2, r3, #31 + 80090b0: d5de bpl.n 8009070 <_dtoa_r+0xa78> + 80090b2: 2b39 cmp r3, #57 ; 0x39 + 80090b4: d1da bne.n 800906c <_dtoa_r+0xa74> + 80090b6: 2339 movs r3, #57 ; 0x39 + 80090b8: f88b 3000 strb.w r3, [fp] + 80090bc: 463b mov r3, r7 + 80090be: 461f mov r7, r3 + 80090c0: f817 2c01 ldrb.w r2, [r7, #-1] + 80090c4: 3b01 subs r3, #1 + 80090c6: 2a39 cmp r2, #57 ; 0x39 + 80090c8: d050 beq.n 800916c <_dtoa_r+0xb74> + 80090ca: 3201 adds r2, #1 + 80090cc: 701a strb r2, [r3, #0] + 80090ce: e749 b.n 8008f64 <_dtoa_r+0x96c> + 80090d0: 2a00 cmp r2, #0 + 80090d2: dd03 ble.n 80090dc <_dtoa_r+0xae4> + 80090d4: 2b39 cmp r3, #57 ; 0x39 + 80090d6: d0ee beq.n 80090b6 <_dtoa_r+0xabe> + 80090d8: 3301 adds r3, #1 + 80090da: e7c9 b.n 8009070 <_dtoa_r+0xa78> + 80090dc: 9a02 ldr r2, [sp, #8] + 80090de: 990a ldr r1, [sp, #40] ; 0x28 + 80090e0: f802 3c01 strb.w r3, [r2, #-1] + 80090e4: 428a cmp r2, r1 + 80090e6: d02a beq.n 800913e <_dtoa_r+0xb46> + 80090e8: 4651 mov r1, sl + 80090ea: 2300 movs r3, #0 + 80090ec: 220a movs r2, #10 + 80090ee: 4628 mov r0, r5 + 80090f0: f000 fb1e bl 8009730 <__multadd> + 80090f4: 45b0 cmp r8, r6 + 80090f6: 4682 mov sl, r0 + 80090f8: f04f 0300 mov.w r3, #0 + 80090fc: f04f 020a mov.w r2, #10 + 8009100: 4641 mov r1, r8 + 8009102: 4628 mov r0, r5 + 8009104: d107 bne.n 8009116 <_dtoa_r+0xb1e> + 8009106: f000 fb13 bl 8009730 <__multadd> + 800910a: 4680 mov r8, r0 + 800910c: 4606 mov r6, r0 + 800910e: 9b02 ldr r3, [sp, #8] + 8009110: 3301 adds r3, #1 + 8009112: 9302 str r3, [sp, #8] + 8009114: e777 b.n 8009006 <_dtoa_r+0xa0e> + 8009116: f000 fb0b bl 8009730 <__multadd> + 800911a: 4631 mov r1, r6 + 800911c: 4680 mov r8, r0 + 800911e: 2300 movs r3, #0 + 8009120: 220a movs r2, #10 + 8009122: 4628 mov r0, r5 + 8009124: f000 fb04 bl 8009730 <__multadd> + 8009128: 4606 mov r6, r0 + 800912a: e7f0 b.n 800910e <_dtoa_r+0xb16> + 800912c: f1bb 0f00 cmp.w fp, #0 + 8009130: bfcc ite gt + 8009132: 465f movgt r7, fp + 8009134: 2701 movle r7, #1 + 8009136: f04f 0800 mov.w r8, #0 + 800913a: 9a08 ldr r2, [sp, #32] + 800913c: 4417 add r7, r2 + 800913e: 4651 mov r1, sl + 8009140: 2201 movs r2, #1 + 8009142: 4628 mov r0, r5 + 8009144: 9302 str r3, [sp, #8] + 8009146: f000 fc9f bl 8009a88 <__lshift> + 800914a: 4621 mov r1, r4 + 800914c: 4682 mov sl, r0 + 800914e: f000 fd07 bl 8009b60 <__mcmp> + 8009152: 2800 cmp r0, #0 + 8009154: dcb2 bgt.n 80090bc <_dtoa_r+0xac4> + 8009156: d102 bne.n 800915e <_dtoa_r+0xb66> + 8009158: 9b02 ldr r3, [sp, #8] + 800915a: 07db lsls r3, r3, #31 + 800915c: d4ae bmi.n 80090bc <_dtoa_r+0xac4> + 800915e: 463b mov r3, r7 + 8009160: 461f mov r7, r3 + 8009162: f813 2d01 ldrb.w r2, [r3, #-1]! + 8009166: 2a30 cmp r2, #48 ; 0x30 + 8009168: d0fa beq.n 8009160 <_dtoa_r+0xb68> + 800916a: e6fb b.n 8008f64 <_dtoa_r+0x96c> + 800916c: 9a08 ldr r2, [sp, #32] + 800916e: 429a cmp r2, r3 + 8009170: d1a5 bne.n 80090be <_dtoa_r+0xac6> + 8009172: 2331 movs r3, #49 ; 0x31 + 8009174: f109 0901 add.w r9, r9, #1 + 8009178: 7013 strb r3, [r2, #0] + 800917a: e6f3 b.n 8008f64 <_dtoa_r+0x96c> + 800917c: 4b13 ldr r3, [pc, #76] ; (80091cc <_dtoa_r+0xbd4>) + 800917e: f7ff baa7 b.w 80086d0 <_dtoa_r+0xd8> + 8009182: 9b26 ldr r3, [sp, #152] ; 0x98 + 8009184: 2b00 cmp r3, #0 + 8009186: f47f aa80 bne.w 800868a <_dtoa_r+0x92> + 800918a: 4b11 ldr r3, [pc, #68] ; (80091d0 <_dtoa_r+0xbd8>) + 800918c: f7ff baa0 b.w 80086d0 <_dtoa_r+0xd8> + 8009190: f1bb 0f00 cmp.w fp, #0 + 8009194: dc03 bgt.n 800919e <_dtoa_r+0xba6> + 8009196: 9b22 ldr r3, [sp, #136] ; 0x88 + 8009198: 2b02 cmp r3, #2 + 800919a: f73f aecc bgt.w 8008f36 <_dtoa_r+0x93e> + 800919e: 9f08 ldr r7, [sp, #32] + 80091a0: 4621 mov r1, r4 + 80091a2: 4650 mov r0, sl + 80091a4: f7ff f998 bl 80084d8 + 80091a8: 9a08 ldr r2, [sp, #32] + 80091aa: f100 0330 add.w r3, r0, #48 ; 0x30 + 80091ae: f807 3b01 strb.w r3, [r7], #1 + 80091b2: 1aba subs r2, r7, r2 + 80091b4: 4593 cmp fp, r2 + 80091b6: ddb9 ble.n 800912c <_dtoa_r+0xb34> + 80091b8: 4651 mov r1, sl + 80091ba: 2300 movs r3, #0 + 80091bc: 220a movs r2, #10 + 80091be: 4628 mov r0, r5 + 80091c0: f000 fab6 bl 8009730 <__multadd> + 80091c4: 4682 mov sl, r0 + 80091c6: e7eb b.n 80091a0 <_dtoa_r+0xba8> + 80091c8: 0800b343 .word 0x0800b343 + 80091cc: 0800b29c .word 0x0800b29c + 80091d0: 0800b2c0 .word 0x0800b2c0 -08008dec <_localeconv_r>: - 8008dec: 4800 ldr r0, [pc, #0] ; (8008df0 <_localeconv_r+0x4>) - 8008dee: 4770 bx lr - 8008df0: 20000168 .word 0x20000168 +080091d4 <__sflush_r>: + 80091d4: 898a ldrh r2, [r1, #12] + 80091d6: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 80091da: 4605 mov r5, r0 + 80091dc: 0710 lsls r0, r2, #28 + 80091de: 460c mov r4, r1 + 80091e0: d458 bmi.n 8009294 <__sflush_r+0xc0> + 80091e2: 684b ldr r3, [r1, #4] + 80091e4: 2b00 cmp r3, #0 + 80091e6: dc05 bgt.n 80091f4 <__sflush_r+0x20> + 80091e8: 6c0b ldr r3, [r1, #64] ; 0x40 + 80091ea: 2b00 cmp r3, #0 + 80091ec: dc02 bgt.n 80091f4 <__sflush_r+0x20> + 80091ee: 2000 movs r0, #0 + 80091f0: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 80091f4: 6ae6 ldr r6, [r4, #44] ; 0x2c + 80091f6: 2e00 cmp r6, #0 + 80091f8: d0f9 beq.n 80091ee <__sflush_r+0x1a> + 80091fa: 2300 movs r3, #0 + 80091fc: f412 5280 ands.w r2, r2, #4096 ; 0x1000 + 8009200: 682f ldr r7, [r5, #0] + 8009202: 602b str r3, [r5, #0] + 8009204: d032 beq.n 800926c <__sflush_r+0x98> + 8009206: 6d60 ldr r0, [r4, #84] ; 0x54 + 8009208: 89a3 ldrh r3, [r4, #12] + 800920a: 075a lsls r2, r3, #29 + 800920c: d505 bpl.n 800921a <__sflush_r+0x46> + 800920e: 6863 ldr r3, [r4, #4] + 8009210: 1ac0 subs r0, r0, r3 + 8009212: 6b63 ldr r3, [r4, #52] ; 0x34 + 8009214: b10b cbz r3, 800921a <__sflush_r+0x46> + 8009216: 6c23 ldr r3, [r4, #64] ; 0x40 + 8009218: 1ac0 subs r0, r0, r3 + 800921a: 2300 movs r3, #0 + 800921c: 4602 mov r2, r0 + 800921e: 6ae6 ldr r6, [r4, #44] ; 0x2c + 8009220: 4628 mov r0, r5 + 8009222: 6a21 ldr r1, [r4, #32] + 8009224: 47b0 blx r6 + 8009226: 1c43 adds r3, r0, #1 + 8009228: 89a3 ldrh r3, [r4, #12] + 800922a: d106 bne.n 800923a <__sflush_r+0x66> + 800922c: 6829 ldr r1, [r5, #0] + 800922e: 291d cmp r1, #29 + 8009230: d82c bhi.n 800928c <__sflush_r+0xb8> + 8009232: 4a2a ldr r2, [pc, #168] ; (80092dc <__sflush_r+0x108>) + 8009234: 40ca lsrs r2, r1 + 8009236: 07d6 lsls r6, r2, #31 + 8009238: d528 bpl.n 800928c <__sflush_r+0xb8> + 800923a: 2200 movs r2, #0 + 800923c: 6062 str r2, [r4, #4] + 800923e: 6922 ldr r2, [r4, #16] + 8009240: 04d9 lsls r1, r3, #19 + 8009242: 6022 str r2, [r4, #0] + 8009244: d504 bpl.n 8009250 <__sflush_r+0x7c> + 8009246: 1c42 adds r2, r0, #1 + 8009248: d101 bne.n 800924e <__sflush_r+0x7a> + 800924a: 682b ldr r3, [r5, #0] + 800924c: b903 cbnz r3, 8009250 <__sflush_r+0x7c> + 800924e: 6560 str r0, [r4, #84] ; 0x54 + 8009250: 6b61 ldr r1, [r4, #52] ; 0x34 + 8009252: 602f str r7, [r5, #0] + 8009254: 2900 cmp r1, #0 + 8009256: d0ca beq.n 80091ee <__sflush_r+0x1a> + 8009258: f104 0344 add.w r3, r4, #68 ; 0x44 + 800925c: 4299 cmp r1, r3 + 800925e: d002 beq.n 8009266 <__sflush_r+0x92> + 8009260: 4628 mov r0, r5 + 8009262: f7fe faa1 bl 80077a8 <_free_r> + 8009266: 2000 movs r0, #0 + 8009268: 6360 str r0, [r4, #52] ; 0x34 + 800926a: e7c1 b.n 80091f0 <__sflush_r+0x1c> + 800926c: 6a21 ldr r1, [r4, #32] + 800926e: 2301 movs r3, #1 + 8009270: 4628 mov r0, r5 + 8009272: 47b0 blx r6 + 8009274: 1c41 adds r1, r0, #1 + 8009276: d1c7 bne.n 8009208 <__sflush_r+0x34> + 8009278: 682b ldr r3, [r5, #0] + 800927a: 2b00 cmp r3, #0 + 800927c: d0c4 beq.n 8009208 <__sflush_r+0x34> + 800927e: 2b1d cmp r3, #29 + 8009280: d001 beq.n 8009286 <__sflush_r+0xb2> + 8009282: 2b16 cmp r3, #22 + 8009284: d101 bne.n 800928a <__sflush_r+0xb6> + 8009286: 602f str r7, [r5, #0] + 8009288: e7b1 b.n 80091ee <__sflush_r+0x1a> + 800928a: 89a3 ldrh r3, [r4, #12] + 800928c: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8009290: 81a3 strh r3, [r4, #12] + 8009292: e7ad b.n 80091f0 <__sflush_r+0x1c> + 8009294: 690f ldr r7, [r1, #16] + 8009296: 2f00 cmp r7, #0 + 8009298: d0a9 beq.n 80091ee <__sflush_r+0x1a> + 800929a: 0793 lsls r3, r2, #30 + 800929c: bf18 it ne + 800929e: 2300 movne r3, #0 + 80092a0: 680e ldr r6, [r1, #0] + 80092a2: bf08 it eq + 80092a4: 694b ldreq r3, [r1, #20] + 80092a6: eba6 0807 sub.w r8, r6, r7 + 80092aa: 600f str r7, [r1, #0] + 80092ac: 608b str r3, [r1, #8] + 80092ae: f1b8 0f00 cmp.w r8, #0 + 80092b2: dd9c ble.n 80091ee <__sflush_r+0x1a> + 80092b4: 4643 mov r3, r8 + 80092b6: 463a mov r2, r7 + 80092b8: 4628 mov r0, r5 + 80092ba: 6a21 ldr r1, [r4, #32] + 80092bc: 6aa6 ldr r6, [r4, #40] ; 0x28 + 80092be: 47b0 blx r6 + 80092c0: 2800 cmp r0, #0 + 80092c2: dc06 bgt.n 80092d2 <__sflush_r+0xfe> + 80092c4: 89a3 ldrh r3, [r4, #12] + 80092c6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80092ca: f043 0340 orr.w r3, r3, #64 ; 0x40 + 80092ce: 81a3 strh r3, [r4, #12] + 80092d0: e78e b.n 80091f0 <__sflush_r+0x1c> + 80092d2: 4407 add r7, r0 + 80092d4: eba8 0800 sub.w r8, r8, r0 + 80092d8: e7e9 b.n 80092ae <__sflush_r+0xda> + 80092da: bf00 nop + 80092dc: 20400001 .word 0x20400001 -08008df4 : - 8008df4: 4603 mov r3, r0 - 8008df6: b510 push {r4, lr} - 8008df8: b2c9 uxtb r1, r1 - 8008dfa: 4402 add r2, r0 - 8008dfc: 4293 cmp r3, r2 - 8008dfe: 4618 mov r0, r3 - 8008e00: d101 bne.n 8008e06 - 8008e02: 2000 movs r0, #0 - 8008e04: e003 b.n 8008e0e - 8008e06: 7804 ldrb r4, [r0, #0] - 8008e08: 3301 adds r3, #1 - 8008e0a: 428c cmp r4, r1 - 8008e0c: d1f6 bne.n 8008dfc - 8008e0e: bd10 pop {r4, pc} +080092e0 <_fflush_r>: + 80092e0: b538 push {r3, r4, r5, lr} + 80092e2: 690b ldr r3, [r1, #16] + 80092e4: 4605 mov r5, r0 + 80092e6: 460c mov r4, r1 + 80092e8: b913 cbnz r3, 80092f0 <_fflush_r+0x10> + 80092ea: 2500 movs r5, #0 + 80092ec: 4628 mov r0, r5 + 80092ee: bd38 pop {r3, r4, r5, pc} + 80092f0: b118 cbz r0, 80092fa <_fflush_r+0x1a> + 80092f2: 6983 ldr r3, [r0, #24] + 80092f4: b90b cbnz r3, 80092fa <_fflush_r+0x1a> + 80092f6: f000 f887 bl 8009408 <__sinit> + 80092fa: 4b14 ldr r3, [pc, #80] ; (800934c <_fflush_r+0x6c>) + 80092fc: 429c cmp r4, r3 + 80092fe: d11b bne.n 8009338 <_fflush_r+0x58> + 8009300: 686c ldr r4, [r5, #4] + 8009302: f9b4 300c ldrsh.w r3, [r4, #12] + 8009306: 2b00 cmp r3, #0 + 8009308: d0ef beq.n 80092ea <_fflush_r+0xa> + 800930a: 6e62 ldr r2, [r4, #100] ; 0x64 + 800930c: 07d0 lsls r0, r2, #31 + 800930e: d404 bmi.n 800931a <_fflush_r+0x3a> + 8009310: 0599 lsls r1, r3, #22 + 8009312: d402 bmi.n 800931a <_fflush_r+0x3a> + 8009314: 6da0 ldr r0, [r4, #88] ; 0x58 + 8009316: f000 f91a bl 800954e <__retarget_lock_acquire_recursive> + 800931a: 4628 mov r0, r5 + 800931c: 4621 mov r1, r4 + 800931e: f7ff ff59 bl 80091d4 <__sflush_r> + 8009322: 6e63 ldr r3, [r4, #100] ; 0x64 + 8009324: 4605 mov r5, r0 + 8009326: 07da lsls r2, r3, #31 + 8009328: d4e0 bmi.n 80092ec <_fflush_r+0xc> + 800932a: 89a3 ldrh r3, [r4, #12] + 800932c: 059b lsls r3, r3, #22 + 800932e: d4dd bmi.n 80092ec <_fflush_r+0xc> + 8009330: 6da0 ldr r0, [r4, #88] ; 0x58 + 8009332: f000 f90d bl 8009550 <__retarget_lock_release_recursive> + 8009336: e7d9 b.n 80092ec <_fflush_r+0xc> + 8009338: 4b05 ldr r3, [pc, #20] ; (8009350 <_fflush_r+0x70>) + 800933a: 429c cmp r4, r3 + 800933c: d101 bne.n 8009342 <_fflush_r+0x62> + 800933e: 68ac ldr r4, [r5, #8] + 8009340: e7df b.n 8009302 <_fflush_r+0x22> + 8009342: 4b04 ldr r3, [pc, #16] ; (8009354 <_fflush_r+0x74>) + 8009344: 429c cmp r4, r3 + 8009346: bf08 it eq + 8009348: 68ec ldreq r4, [r5, #12] + 800934a: e7da b.n 8009302 <_fflush_r+0x22> + 800934c: 0800b374 .word 0x0800b374 + 8009350: 0800b394 .word 0x0800b394 + 8009354: 0800b354 .word 0x0800b354 -08008e10 : - 8008e10: 440a add r2, r1 - 8008e12: 4291 cmp r1, r2 - 8008e14: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff - 8008e18: d100 bne.n 8008e1c - 8008e1a: 4770 bx lr - 8008e1c: b510 push {r4, lr} - 8008e1e: f811 4b01 ldrb.w r4, [r1], #1 - 8008e22: 4291 cmp r1, r2 - 8008e24: f803 4f01 strb.w r4, [r3, #1]! - 8008e28: d1f9 bne.n 8008e1e - 8008e2a: bd10 pop {r4, pc} +08009358 : + 8009358: 2300 movs r3, #0 + 800935a: b510 push {r4, lr} + 800935c: 4604 mov r4, r0 + 800935e: e9c0 3300 strd r3, r3, [r0] + 8009362: e9c0 3304 strd r3, r3, [r0, #16] + 8009366: 6083 str r3, [r0, #8] + 8009368: 8181 strh r1, [r0, #12] + 800936a: 6643 str r3, [r0, #100] ; 0x64 + 800936c: 81c2 strh r2, [r0, #14] + 800936e: 6183 str r3, [r0, #24] + 8009370: 4619 mov r1, r3 + 8009372: 2208 movs r2, #8 + 8009374: 305c adds r0, #92 ; 0x5c + 8009376: f7fe fa0f bl 8007798 + 800937a: 4b05 ldr r3, [pc, #20] ; (8009390 ) + 800937c: 6224 str r4, [r4, #32] + 800937e: 6263 str r3, [r4, #36] ; 0x24 + 8009380: 4b04 ldr r3, [pc, #16] ; (8009394 ) + 8009382: 62a3 str r3, [r4, #40] ; 0x28 + 8009384: 4b04 ldr r3, [pc, #16] ; (8009398 ) + 8009386: 62e3 str r3, [r4, #44] ; 0x2c + 8009388: 4b04 ldr r3, [pc, #16] ; (800939c ) + 800938a: 6323 str r3, [r4, #48] ; 0x30 + 800938c: bd10 pop {r4, pc} + 800938e: bf00 nop + 8009390: 0800a385 .word 0x0800a385 + 8009394: 0800a3a7 .word 0x0800a3a7 + 8009398: 0800a3df .word 0x0800a3df + 800939c: 0800a403 .word 0x0800a403 -08008e2c <__malloc_lock>: - 8008e2c: 4801 ldr r0, [pc, #4] ; (8008e34 <__malloc_lock+0x8>) - 8008e2e: f000 bd26 b.w 800987e <__retarget_lock_acquire_recursive> - 8008e32: bf00 nop - 8008e34: 20002540 .word 0x20002540 +080093a0 <_cleanup_r>: + 80093a0: 4901 ldr r1, [pc, #4] ; (80093a8 <_cleanup_r+0x8>) + 80093a2: f000 b8af b.w 8009504 <_fwalk_reent> + 80093a6: bf00 nop + 80093a8: 080092e1 .word 0x080092e1 -08008e38 <__malloc_unlock>: - 8008e38: 4801 ldr r0, [pc, #4] ; (8008e40 <__malloc_unlock+0x8>) - 8008e3a: f000 bd21 b.w 8009880 <__retarget_lock_release_recursive> - 8008e3e: bf00 nop - 8008e40: 20002540 .word 0x20002540 +080093ac <__sfmoreglue>: + 80093ac: b570 push {r4, r5, r6, lr} + 80093ae: 2568 movs r5, #104 ; 0x68 + 80093b0: 1e4a subs r2, r1, #1 + 80093b2: 4355 muls r5, r2 + 80093b4: 460e mov r6, r1 + 80093b6: f105 0174 add.w r1, r5, #116 ; 0x74 + 80093ba: f7fe fa41 bl 8007840 <_malloc_r> + 80093be: 4604 mov r4, r0 + 80093c0: b140 cbz r0, 80093d4 <__sfmoreglue+0x28> + 80093c2: 2100 movs r1, #0 + 80093c4: e9c0 1600 strd r1, r6, [r0] + 80093c8: 300c adds r0, #12 + 80093ca: 60a0 str r0, [r4, #8] + 80093cc: f105 0268 add.w r2, r5, #104 ; 0x68 + 80093d0: f7fe f9e2 bl 8007798 + 80093d4: 4620 mov r0, r4 + 80093d6: bd70 pop {r4, r5, r6, pc} -08008e44 <_Balloc>: - 8008e44: b570 push {r4, r5, r6, lr} - 8008e46: 6a46 ldr r6, [r0, #36] ; 0x24 - 8008e48: 4604 mov r4, r0 - 8008e4a: 460d mov r5, r1 - 8008e4c: b976 cbnz r6, 8008e6c <_Balloc+0x28> - 8008e4e: 2010 movs r0, #16 - 8008e50: f7fe fc02 bl 8007658 - 8008e54: 4602 mov r2, r0 - 8008e56: 6260 str r0, [r4, #36] ; 0x24 - 8008e58: b920 cbnz r0, 8008e64 <_Balloc+0x20> - 8008e5a: 2166 movs r1, #102 ; 0x66 - 8008e5c: 4b17 ldr r3, [pc, #92] ; (8008ebc <_Balloc+0x78>) - 8008e5e: 4818 ldr r0, [pc, #96] ; (8008ec0 <_Balloc+0x7c>) - 8008e60: f000 fcdc bl 800981c <__assert_func> - 8008e64: e9c0 6601 strd r6, r6, [r0, #4] - 8008e68: 6006 str r6, [r0, #0] - 8008e6a: 60c6 str r6, [r0, #12] - 8008e6c: 6a66 ldr r6, [r4, #36] ; 0x24 - 8008e6e: 68f3 ldr r3, [r6, #12] - 8008e70: b183 cbz r3, 8008e94 <_Balloc+0x50> - 8008e72: 6a63 ldr r3, [r4, #36] ; 0x24 - 8008e74: 68db ldr r3, [r3, #12] - 8008e76: f853 0025 ldr.w r0, [r3, r5, lsl #2] - 8008e7a: b9b8 cbnz r0, 8008eac <_Balloc+0x68> - 8008e7c: 2101 movs r1, #1 - 8008e7e: fa01 f605 lsl.w r6, r1, r5 - 8008e82: 1d72 adds r2, r6, #5 - 8008e84: 4620 mov r0, r4 - 8008e86: 0092 lsls r2, r2, #2 - 8008e88: f000 fb5e bl 8009548 <_calloc_r> - 8008e8c: b160 cbz r0, 8008ea8 <_Balloc+0x64> - 8008e8e: e9c0 5601 strd r5, r6, [r0, #4] - 8008e92: e00e b.n 8008eb2 <_Balloc+0x6e> - 8008e94: 2221 movs r2, #33 ; 0x21 - 8008e96: 2104 movs r1, #4 - 8008e98: 4620 mov r0, r4 - 8008e9a: f000 fb55 bl 8009548 <_calloc_r> - 8008e9e: 6a63 ldr r3, [r4, #36] ; 0x24 - 8008ea0: 60f0 str r0, [r6, #12] - 8008ea2: 68db ldr r3, [r3, #12] - 8008ea4: 2b00 cmp r3, #0 - 8008ea6: d1e4 bne.n 8008e72 <_Balloc+0x2e> - 8008ea8: 2000 movs r0, #0 - 8008eaa: bd70 pop {r4, r5, r6, pc} - 8008eac: 6802 ldr r2, [r0, #0] - 8008eae: f843 2025 str.w r2, [r3, r5, lsl #2] - 8008eb2: 2300 movs r3, #0 - 8008eb4: e9c0 3303 strd r3, r3, [r0, #12] - 8008eb8: e7f7 b.n 8008eaa <_Balloc+0x66> - 8008eba: bf00 nop - 8008ebc: 0800af7d .word 0x0800af7d - 8008ec0: 0800b004 .word 0x0800b004 +080093d8 <__sfp_lock_acquire>: + 80093d8: 4801 ldr r0, [pc, #4] ; (80093e0 <__sfp_lock_acquire+0x8>) + 80093da: f000 b8b8 b.w 800954e <__retarget_lock_acquire_recursive> + 80093de: bf00 nop + 80093e0: 20002542 .word 0x20002542 -08008ec4 <_Bfree>: - 8008ec4: b570 push {r4, r5, r6, lr} - 8008ec6: 6a46 ldr r6, [r0, #36] ; 0x24 - 8008ec8: 4605 mov r5, r0 - 8008eca: 460c mov r4, r1 - 8008ecc: b976 cbnz r6, 8008eec <_Bfree+0x28> - 8008ece: 2010 movs r0, #16 - 8008ed0: f7fe fbc2 bl 8007658 - 8008ed4: 4602 mov r2, r0 - 8008ed6: 6268 str r0, [r5, #36] ; 0x24 - 8008ed8: b920 cbnz r0, 8008ee4 <_Bfree+0x20> - 8008eda: 218a movs r1, #138 ; 0x8a - 8008edc: 4b08 ldr r3, [pc, #32] ; (8008f00 <_Bfree+0x3c>) - 8008ede: 4809 ldr r0, [pc, #36] ; (8008f04 <_Bfree+0x40>) - 8008ee0: f000 fc9c bl 800981c <__assert_func> - 8008ee4: e9c0 6601 strd r6, r6, [r0, #4] - 8008ee8: 6006 str r6, [r0, #0] - 8008eea: 60c6 str r6, [r0, #12] - 8008eec: b13c cbz r4, 8008efe <_Bfree+0x3a> - 8008eee: 6a6b ldr r3, [r5, #36] ; 0x24 - 8008ef0: 6862 ldr r2, [r4, #4] - 8008ef2: 68db ldr r3, [r3, #12] - 8008ef4: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 8008ef8: 6021 str r1, [r4, #0] - 8008efa: f843 4022 str.w r4, [r3, r2, lsl #2] - 8008efe: bd70 pop {r4, r5, r6, pc} - 8008f00: 0800af7d .word 0x0800af7d - 8008f04: 0800b004 .word 0x0800b004 +080093e4 <__sfp_lock_release>: + 80093e4: 4801 ldr r0, [pc, #4] ; (80093ec <__sfp_lock_release+0x8>) + 80093e6: f000 b8b3 b.w 8009550 <__retarget_lock_release_recursive> + 80093ea: bf00 nop + 80093ec: 20002542 .word 0x20002542 -08008f08 <__multadd>: - 8008f08: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8008f0c: 4698 mov r8, r3 - 8008f0e: 460c mov r4, r1 - 8008f10: 2300 movs r3, #0 - 8008f12: 690e ldr r6, [r1, #16] - 8008f14: 4607 mov r7, r0 - 8008f16: f101 0014 add.w r0, r1, #20 - 8008f1a: 6805 ldr r5, [r0, #0] - 8008f1c: 3301 adds r3, #1 - 8008f1e: b2a9 uxth r1, r5 - 8008f20: fb02 8101 mla r1, r2, r1, r8 - 8008f24: 0c2d lsrs r5, r5, #16 - 8008f26: ea4f 4c11 mov.w ip, r1, lsr #16 - 8008f2a: fb02 c505 mla r5, r2, r5, ip - 8008f2e: b289 uxth r1, r1 - 8008f30: eb01 4105 add.w r1, r1, r5, lsl #16 - 8008f34: 429e cmp r6, r3 - 8008f36: ea4f 4815 mov.w r8, r5, lsr #16 - 8008f3a: f840 1b04 str.w r1, [r0], #4 - 8008f3e: dcec bgt.n 8008f1a <__multadd+0x12> - 8008f40: f1b8 0f00 cmp.w r8, #0 - 8008f44: d022 beq.n 8008f8c <__multadd+0x84> - 8008f46: 68a3 ldr r3, [r4, #8] - 8008f48: 42b3 cmp r3, r6 - 8008f4a: dc19 bgt.n 8008f80 <__multadd+0x78> - 8008f4c: 6861 ldr r1, [r4, #4] - 8008f4e: 4638 mov r0, r7 - 8008f50: 3101 adds r1, #1 - 8008f52: f7ff ff77 bl 8008e44 <_Balloc> - 8008f56: 4605 mov r5, r0 - 8008f58: b928 cbnz r0, 8008f66 <__multadd+0x5e> - 8008f5a: 4602 mov r2, r0 - 8008f5c: 21b5 movs r1, #181 ; 0xb5 - 8008f5e: 4b0d ldr r3, [pc, #52] ; (8008f94 <__multadd+0x8c>) - 8008f60: 480d ldr r0, [pc, #52] ; (8008f98 <__multadd+0x90>) - 8008f62: f000 fc5b bl 800981c <__assert_func> - 8008f66: 6922 ldr r2, [r4, #16] - 8008f68: f104 010c add.w r1, r4, #12 - 8008f6c: 3202 adds r2, #2 - 8008f6e: 0092 lsls r2, r2, #2 - 8008f70: 300c adds r0, #12 - 8008f72: f7ff ff4d bl 8008e10 - 8008f76: 4621 mov r1, r4 - 8008f78: 4638 mov r0, r7 - 8008f7a: f7ff ffa3 bl 8008ec4 <_Bfree> - 8008f7e: 462c mov r4, r5 - 8008f80: eb04 0386 add.w r3, r4, r6, lsl #2 - 8008f84: 3601 adds r6, #1 - 8008f86: f8c3 8014 str.w r8, [r3, #20] - 8008f8a: 6126 str r6, [r4, #16] - 8008f8c: 4620 mov r0, r4 - 8008f8e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8008f92: bf00 nop - 8008f94: 0800aff3 .word 0x0800aff3 - 8008f98: 0800b004 .word 0x0800b004 +080093f0 <__sinit_lock_acquire>: + 80093f0: 4801 ldr r0, [pc, #4] ; (80093f8 <__sinit_lock_acquire+0x8>) + 80093f2: f000 b8ac b.w 800954e <__retarget_lock_acquire_recursive> + 80093f6: bf00 nop + 80093f8: 2000253d .word 0x2000253d -08008f9c <__hi0bits>: - 8008f9c: 0c02 lsrs r2, r0, #16 - 8008f9e: 0412 lsls r2, r2, #16 - 8008fa0: 4603 mov r3, r0 - 8008fa2: b9ca cbnz r2, 8008fd8 <__hi0bits+0x3c> - 8008fa4: 0403 lsls r3, r0, #16 - 8008fa6: 2010 movs r0, #16 - 8008fa8: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 - 8008fac: bf04 itt eq - 8008fae: 021b lsleq r3, r3, #8 - 8008fb0: 3008 addeq r0, #8 - 8008fb2: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 - 8008fb6: bf04 itt eq - 8008fb8: 011b lsleq r3, r3, #4 - 8008fba: 3004 addeq r0, #4 - 8008fbc: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 - 8008fc0: bf04 itt eq - 8008fc2: 009b lsleq r3, r3, #2 - 8008fc4: 3002 addeq r0, #2 - 8008fc6: 2b00 cmp r3, #0 - 8008fc8: db05 blt.n 8008fd6 <__hi0bits+0x3a> - 8008fca: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 - 8008fce: f100 0001 add.w r0, r0, #1 - 8008fd2: bf08 it eq - 8008fd4: 2020 moveq r0, #32 - 8008fd6: 4770 bx lr - 8008fd8: 2000 movs r0, #0 - 8008fda: e7e5 b.n 8008fa8 <__hi0bits+0xc> +080093fc <__sinit_lock_release>: + 80093fc: 4801 ldr r0, [pc, #4] ; (8009404 <__sinit_lock_release+0x8>) + 80093fe: f000 b8a7 b.w 8009550 <__retarget_lock_release_recursive> + 8009402: bf00 nop + 8009404: 2000253d .word 0x2000253d -08008fdc <__lo0bits>: - 8008fdc: 6803 ldr r3, [r0, #0] - 8008fde: 4602 mov r2, r0 - 8008fe0: f013 0007 ands.w r0, r3, #7 - 8008fe4: d00b beq.n 8008ffe <__lo0bits+0x22> - 8008fe6: 07d9 lsls r1, r3, #31 - 8008fe8: d422 bmi.n 8009030 <__lo0bits+0x54> - 8008fea: 0798 lsls r0, r3, #30 - 8008fec: bf49 itett mi - 8008fee: 085b lsrmi r3, r3, #1 - 8008ff0: 089b lsrpl r3, r3, #2 - 8008ff2: 2001 movmi r0, #1 - 8008ff4: 6013 strmi r3, [r2, #0] - 8008ff6: bf5c itt pl - 8008ff8: 2002 movpl r0, #2 - 8008ffa: 6013 strpl r3, [r2, #0] - 8008ffc: 4770 bx lr - 8008ffe: b299 uxth r1, r3 - 8009000: b909 cbnz r1, 8009006 <__lo0bits+0x2a> - 8009002: 2010 movs r0, #16 - 8009004: 0c1b lsrs r3, r3, #16 - 8009006: f013 0fff tst.w r3, #255 ; 0xff - 800900a: bf04 itt eq - 800900c: 0a1b lsreq r3, r3, #8 - 800900e: 3008 addeq r0, #8 - 8009010: 0719 lsls r1, r3, #28 - 8009012: bf04 itt eq - 8009014: 091b lsreq r3, r3, #4 - 8009016: 3004 addeq r0, #4 - 8009018: 0799 lsls r1, r3, #30 - 800901a: bf04 itt eq - 800901c: 089b lsreq r3, r3, #2 - 800901e: 3002 addeq r0, #2 - 8009020: 07d9 lsls r1, r3, #31 - 8009022: d403 bmi.n 800902c <__lo0bits+0x50> - 8009024: 085b lsrs r3, r3, #1 - 8009026: f100 0001 add.w r0, r0, #1 - 800902a: d003 beq.n 8009034 <__lo0bits+0x58> - 800902c: 6013 str r3, [r2, #0] - 800902e: 4770 bx lr - 8009030: 2000 movs r0, #0 - 8009032: 4770 bx lr - 8009034: 2020 movs r0, #32 - 8009036: 4770 bx lr +08009408 <__sinit>: + 8009408: b510 push {r4, lr} + 800940a: 4604 mov r4, r0 + 800940c: f7ff fff0 bl 80093f0 <__sinit_lock_acquire> + 8009410: 69a3 ldr r3, [r4, #24] + 8009412: b11b cbz r3, 800941c <__sinit+0x14> + 8009414: e8bd 4010 ldmia.w sp!, {r4, lr} + 8009418: f7ff bff0 b.w 80093fc <__sinit_lock_release> + 800941c: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 + 8009420: 6523 str r3, [r4, #80] ; 0x50 + 8009422: 4b13 ldr r3, [pc, #76] ; (8009470 <__sinit+0x68>) + 8009424: 4a13 ldr r2, [pc, #76] ; (8009474 <__sinit+0x6c>) + 8009426: 681b ldr r3, [r3, #0] + 8009428: 62a2 str r2, [r4, #40] ; 0x28 + 800942a: 42a3 cmp r3, r4 + 800942c: bf08 it eq + 800942e: 2301 moveq r3, #1 + 8009430: 4620 mov r0, r4 + 8009432: bf08 it eq + 8009434: 61a3 streq r3, [r4, #24] + 8009436: f000 f81f bl 8009478 <__sfp> + 800943a: 6060 str r0, [r4, #4] + 800943c: 4620 mov r0, r4 + 800943e: f000 f81b bl 8009478 <__sfp> + 8009442: 60a0 str r0, [r4, #8] + 8009444: 4620 mov r0, r4 + 8009446: f000 f817 bl 8009478 <__sfp> + 800944a: 2200 movs r2, #0 + 800944c: 2104 movs r1, #4 + 800944e: 60e0 str r0, [r4, #12] + 8009450: 6860 ldr r0, [r4, #4] + 8009452: f7ff ff81 bl 8009358 + 8009456: 2201 movs r2, #1 + 8009458: 2109 movs r1, #9 + 800945a: 68a0 ldr r0, [r4, #8] + 800945c: f7ff ff7c bl 8009358 + 8009460: 2202 movs r2, #2 + 8009462: 2112 movs r1, #18 + 8009464: 68e0 ldr r0, [r4, #12] + 8009466: f7ff ff77 bl 8009358 + 800946a: 2301 movs r3, #1 + 800946c: 61a3 str r3, [r4, #24] + 800946e: e7d1 b.n 8009414 <__sinit+0xc> + 8009470: 0800b288 .word 0x0800b288 + 8009474: 080093a1 .word 0x080093a1 -08009038 <__i2b>: - 8009038: b510 push {r4, lr} - 800903a: 460c mov r4, r1 - 800903c: 2101 movs r1, #1 - 800903e: f7ff ff01 bl 8008e44 <_Balloc> - 8009042: 4602 mov r2, r0 - 8009044: b928 cbnz r0, 8009052 <__i2b+0x1a> - 8009046: f44f 71a0 mov.w r1, #320 ; 0x140 - 800904a: 4b04 ldr r3, [pc, #16] ; (800905c <__i2b+0x24>) - 800904c: 4804 ldr r0, [pc, #16] ; (8009060 <__i2b+0x28>) - 800904e: f000 fbe5 bl 800981c <__assert_func> - 8009052: 2301 movs r3, #1 - 8009054: 6144 str r4, [r0, #20] - 8009056: 6103 str r3, [r0, #16] - 8009058: bd10 pop {r4, pc} - 800905a: bf00 nop - 800905c: 0800aff3 .word 0x0800aff3 - 8009060: 0800b004 .word 0x0800b004 +08009478 <__sfp>: + 8009478: b5f8 push {r3, r4, r5, r6, r7, lr} + 800947a: 4607 mov r7, r0 + 800947c: f7ff ffac bl 80093d8 <__sfp_lock_acquire> + 8009480: 4b1e ldr r3, [pc, #120] ; (80094fc <__sfp+0x84>) + 8009482: 681e ldr r6, [r3, #0] + 8009484: 69b3 ldr r3, [r6, #24] + 8009486: b913 cbnz r3, 800948e <__sfp+0x16> + 8009488: 4630 mov r0, r6 + 800948a: f7ff ffbd bl 8009408 <__sinit> + 800948e: 3648 adds r6, #72 ; 0x48 + 8009490: e9d6 3401 ldrd r3, r4, [r6, #4] + 8009494: 3b01 subs r3, #1 + 8009496: d503 bpl.n 80094a0 <__sfp+0x28> + 8009498: 6833 ldr r3, [r6, #0] + 800949a: b30b cbz r3, 80094e0 <__sfp+0x68> + 800949c: 6836 ldr r6, [r6, #0] + 800949e: e7f7 b.n 8009490 <__sfp+0x18> + 80094a0: f9b4 500c ldrsh.w r5, [r4, #12] + 80094a4: b9d5 cbnz r5, 80094dc <__sfp+0x64> + 80094a6: 4b16 ldr r3, [pc, #88] ; (8009500 <__sfp+0x88>) + 80094a8: f104 0058 add.w r0, r4, #88 ; 0x58 + 80094ac: 60e3 str r3, [r4, #12] + 80094ae: 6665 str r5, [r4, #100] ; 0x64 + 80094b0: f000 f84c bl 800954c <__retarget_lock_init_recursive> + 80094b4: f7ff ff96 bl 80093e4 <__sfp_lock_release> + 80094b8: 2208 movs r2, #8 + 80094ba: 4629 mov r1, r5 + 80094bc: e9c4 5501 strd r5, r5, [r4, #4] + 80094c0: e9c4 5504 strd r5, r5, [r4, #16] + 80094c4: 6025 str r5, [r4, #0] + 80094c6: 61a5 str r5, [r4, #24] + 80094c8: f104 005c add.w r0, r4, #92 ; 0x5c + 80094cc: f7fe f964 bl 8007798 + 80094d0: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 + 80094d4: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 + 80094d8: 4620 mov r0, r4 + 80094da: bdf8 pop {r3, r4, r5, r6, r7, pc} + 80094dc: 3468 adds r4, #104 ; 0x68 + 80094de: e7d9 b.n 8009494 <__sfp+0x1c> + 80094e0: 2104 movs r1, #4 + 80094e2: 4638 mov r0, r7 + 80094e4: f7ff ff62 bl 80093ac <__sfmoreglue> + 80094e8: 4604 mov r4, r0 + 80094ea: 6030 str r0, [r6, #0] + 80094ec: 2800 cmp r0, #0 + 80094ee: d1d5 bne.n 800949c <__sfp+0x24> + 80094f0: f7ff ff78 bl 80093e4 <__sfp_lock_release> + 80094f4: 230c movs r3, #12 + 80094f6: 603b str r3, [r7, #0] + 80094f8: e7ee b.n 80094d8 <__sfp+0x60> + 80094fa: bf00 nop + 80094fc: 0800b288 .word 0x0800b288 + 8009500: ffff0001 .word 0xffff0001 -08009064 <__multiply>: - 8009064: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8009068: 4614 mov r4, r2 - 800906a: 690a ldr r2, [r1, #16] - 800906c: 6923 ldr r3, [r4, #16] - 800906e: 460d mov r5, r1 - 8009070: 429a cmp r2, r3 - 8009072: bfbe ittt lt - 8009074: 460b movlt r3, r1 - 8009076: 4625 movlt r5, r4 - 8009078: 461c movlt r4, r3 - 800907a: f8d5 a010 ldr.w sl, [r5, #16] - 800907e: f8d4 9010 ldr.w r9, [r4, #16] - 8009082: 68ab ldr r3, [r5, #8] - 8009084: 6869 ldr r1, [r5, #4] - 8009086: eb0a 0709 add.w r7, sl, r9 - 800908a: 42bb cmp r3, r7 - 800908c: b085 sub sp, #20 - 800908e: bfb8 it lt - 8009090: 3101 addlt r1, #1 - 8009092: f7ff fed7 bl 8008e44 <_Balloc> - 8009096: b930 cbnz r0, 80090a6 <__multiply+0x42> - 8009098: 4602 mov r2, r0 - 800909a: f240 115d movw r1, #349 ; 0x15d - 800909e: 4b41 ldr r3, [pc, #260] ; (80091a4 <__multiply+0x140>) - 80090a0: 4841 ldr r0, [pc, #260] ; (80091a8 <__multiply+0x144>) - 80090a2: f000 fbbb bl 800981c <__assert_func> - 80090a6: f100 0614 add.w r6, r0, #20 - 80090aa: 4633 mov r3, r6 - 80090ac: 2200 movs r2, #0 - 80090ae: eb06 0887 add.w r8, r6, r7, lsl #2 - 80090b2: 4543 cmp r3, r8 - 80090b4: d31e bcc.n 80090f4 <__multiply+0x90> - 80090b6: f105 0c14 add.w ip, r5, #20 - 80090ba: f104 0314 add.w r3, r4, #20 - 80090be: eb0c 0c8a add.w ip, ip, sl, lsl #2 - 80090c2: eb03 0289 add.w r2, r3, r9, lsl #2 - 80090c6: 9202 str r2, [sp, #8] - 80090c8: ebac 0205 sub.w r2, ip, r5 - 80090cc: 3a15 subs r2, #21 - 80090ce: f022 0203 bic.w r2, r2, #3 - 80090d2: 3204 adds r2, #4 - 80090d4: f105 0115 add.w r1, r5, #21 - 80090d8: 458c cmp ip, r1 - 80090da: bf38 it cc - 80090dc: 2204 movcc r2, #4 - 80090de: 9201 str r2, [sp, #4] - 80090e0: 9a02 ldr r2, [sp, #8] - 80090e2: 9303 str r3, [sp, #12] - 80090e4: 429a cmp r2, r3 - 80090e6: d808 bhi.n 80090fa <__multiply+0x96> - 80090e8: 2f00 cmp r7, #0 - 80090ea: dc55 bgt.n 8009198 <__multiply+0x134> - 80090ec: 6107 str r7, [r0, #16] - 80090ee: b005 add sp, #20 - 80090f0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80090f4: f843 2b04 str.w r2, [r3], #4 - 80090f8: e7db b.n 80090b2 <__multiply+0x4e> - 80090fa: f8b3 a000 ldrh.w sl, [r3] - 80090fe: f1ba 0f00 cmp.w sl, #0 - 8009102: d020 beq.n 8009146 <__multiply+0xe2> - 8009104: 46b1 mov r9, r6 - 8009106: 2200 movs r2, #0 - 8009108: f105 0e14 add.w lr, r5, #20 - 800910c: f85e 4b04 ldr.w r4, [lr], #4 - 8009110: f8d9 b000 ldr.w fp, [r9] - 8009114: b2a1 uxth r1, r4 - 8009116: fa1f fb8b uxth.w fp, fp - 800911a: fb0a b101 mla r1, sl, r1, fp - 800911e: 4411 add r1, r2 - 8009120: f8d9 2000 ldr.w r2, [r9] - 8009124: 0c24 lsrs r4, r4, #16 - 8009126: 0c12 lsrs r2, r2, #16 - 8009128: fb0a 2404 mla r4, sl, r4, r2 - 800912c: eb04 4411 add.w r4, r4, r1, lsr #16 - 8009130: b289 uxth r1, r1 - 8009132: ea41 4104 orr.w r1, r1, r4, lsl #16 - 8009136: 45f4 cmp ip, lr - 8009138: ea4f 4214 mov.w r2, r4, lsr #16 - 800913c: f849 1b04 str.w r1, [r9], #4 - 8009140: d8e4 bhi.n 800910c <__multiply+0xa8> - 8009142: 9901 ldr r1, [sp, #4] - 8009144: 5072 str r2, [r6, r1] - 8009146: 9a03 ldr r2, [sp, #12] - 8009148: 3304 adds r3, #4 - 800914a: f8b2 9002 ldrh.w r9, [r2, #2] - 800914e: f1b9 0f00 cmp.w r9, #0 - 8009152: d01f beq.n 8009194 <__multiply+0x130> - 8009154: 46b6 mov lr, r6 - 8009156: f04f 0a00 mov.w sl, #0 - 800915a: 6834 ldr r4, [r6, #0] - 800915c: f105 0114 add.w r1, r5, #20 - 8009160: 880a ldrh r2, [r1, #0] - 8009162: f8be b002 ldrh.w fp, [lr, #2] - 8009166: b2a4 uxth r4, r4 - 8009168: fb09 b202 mla r2, r9, r2, fp - 800916c: 4492 add sl, r2 - 800916e: ea44 440a orr.w r4, r4, sl, lsl #16 - 8009172: f84e 4b04 str.w r4, [lr], #4 - 8009176: f851 4b04 ldr.w r4, [r1], #4 - 800917a: f8be 2000 ldrh.w r2, [lr] - 800917e: 0c24 lsrs r4, r4, #16 - 8009180: fb09 2404 mla r4, r9, r4, r2 - 8009184: 458c cmp ip, r1 - 8009186: eb04 441a add.w r4, r4, sl, lsr #16 - 800918a: ea4f 4a14 mov.w sl, r4, lsr #16 - 800918e: d8e7 bhi.n 8009160 <__multiply+0xfc> - 8009190: 9a01 ldr r2, [sp, #4] - 8009192: 50b4 str r4, [r6, r2] - 8009194: 3604 adds r6, #4 - 8009196: e7a3 b.n 80090e0 <__multiply+0x7c> - 8009198: f858 3d04 ldr.w r3, [r8, #-4]! - 800919c: 2b00 cmp r3, #0 - 800919e: d1a5 bne.n 80090ec <__multiply+0x88> - 80091a0: 3f01 subs r7, #1 - 80091a2: e7a1 b.n 80090e8 <__multiply+0x84> - 80091a4: 0800aff3 .word 0x0800aff3 - 80091a8: 0800b004 .word 0x0800b004 - -080091ac <__pow5mult>: - 80091ac: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 80091b0: 4615 mov r5, r2 - 80091b2: f012 0203 ands.w r2, r2, #3 - 80091b6: 4606 mov r6, r0 - 80091b8: 460f mov r7, r1 - 80091ba: d007 beq.n 80091cc <__pow5mult+0x20> - 80091bc: 4c25 ldr r4, [pc, #148] ; (8009254 <__pow5mult+0xa8>) - 80091be: 3a01 subs r2, #1 - 80091c0: 2300 movs r3, #0 - 80091c2: f854 2022 ldr.w r2, [r4, r2, lsl #2] - 80091c6: f7ff fe9f bl 8008f08 <__multadd> - 80091ca: 4607 mov r7, r0 - 80091cc: 10ad asrs r5, r5, #2 - 80091ce: d03d beq.n 800924c <__pow5mult+0xa0> - 80091d0: 6a74 ldr r4, [r6, #36] ; 0x24 - 80091d2: b97c cbnz r4, 80091f4 <__pow5mult+0x48> - 80091d4: 2010 movs r0, #16 - 80091d6: f7fe fa3f bl 8007658 - 80091da: 4602 mov r2, r0 - 80091dc: 6270 str r0, [r6, #36] ; 0x24 - 80091de: b928 cbnz r0, 80091ec <__pow5mult+0x40> - 80091e0: f44f 71d7 mov.w r1, #430 ; 0x1ae - 80091e4: 4b1c ldr r3, [pc, #112] ; (8009258 <__pow5mult+0xac>) - 80091e6: 481d ldr r0, [pc, #116] ; (800925c <__pow5mult+0xb0>) - 80091e8: f000 fb18 bl 800981c <__assert_func> - 80091ec: e9c0 4401 strd r4, r4, [r0, #4] - 80091f0: 6004 str r4, [r0, #0] - 80091f2: 60c4 str r4, [r0, #12] - 80091f4: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 - 80091f8: f8d8 4008 ldr.w r4, [r8, #8] - 80091fc: b94c cbnz r4, 8009212 <__pow5mult+0x66> - 80091fe: f240 2171 movw r1, #625 ; 0x271 - 8009202: 4630 mov r0, r6 - 8009204: f7ff ff18 bl 8009038 <__i2b> - 8009208: 2300 movs r3, #0 - 800920a: 4604 mov r4, r0 - 800920c: f8c8 0008 str.w r0, [r8, #8] - 8009210: 6003 str r3, [r0, #0] - 8009212: f04f 0900 mov.w r9, #0 - 8009216: 07eb lsls r3, r5, #31 - 8009218: d50a bpl.n 8009230 <__pow5mult+0x84> - 800921a: 4639 mov r1, r7 - 800921c: 4622 mov r2, r4 - 800921e: 4630 mov r0, r6 - 8009220: f7ff ff20 bl 8009064 <__multiply> - 8009224: 4680 mov r8, r0 - 8009226: 4639 mov r1, r7 - 8009228: 4630 mov r0, r6 - 800922a: f7ff fe4b bl 8008ec4 <_Bfree> - 800922e: 4647 mov r7, r8 - 8009230: 106d asrs r5, r5, #1 - 8009232: d00b beq.n 800924c <__pow5mult+0xa0> - 8009234: 6820 ldr r0, [r4, #0] - 8009236: b938 cbnz r0, 8009248 <__pow5mult+0x9c> - 8009238: 4622 mov r2, r4 - 800923a: 4621 mov r1, r4 - 800923c: 4630 mov r0, r6 - 800923e: f7ff ff11 bl 8009064 <__multiply> - 8009242: 6020 str r0, [r4, #0] - 8009244: f8c0 9000 str.w r9, [r0] - 8009248: 4604 mov r4, r0 - 800924a: e7e4 b.n 8009216 <__pow5mult+0x6a> - 800924c: 4638 mov r0, r7 - 800924e: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 8009252: bf00 nop - 8009254: 0800b158 .word 0x0800b158 - 8009258: 0800af7d .word 0x0800af7d - 800925c: 0800b004 .word 0x0800b004 - -08009260 <__lshift>: - 8009260: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8009264: 460c mov r4, r1 - 8009266: 4607 mov r7, r0 - 8009268: 4691 mov r9, r2 - 800926a: 6923 ldr r3, [r4, #16] - 800926c: 6849 ldr r1, [r1, #4] - 800926e: eb03 1862 add.w r8, r3, r2, asr #5 - 8009272: 68a3 ldr r3, [r4, #8] - 8009274: ea4f 1a62 mov.w sl, r2, asr #5 - 8009278: f108 0601 add.w r6, r8, #1 - 800927c: 42b3 cmp r3, r6 - 800927e: db0b blt.n 8009298 <__lshift+0x38> - 8009280: 4638 mov r0, r7 - 8009282: f7ff fddf bl 8008e44 <_Balloc> - 8009286: 4605 mov r5, r0 - 8009288: b948 cbnz r0, 800929e <__lshift+0x3e> - 800928a: 4602 mov r2, r0 - 800928c: f240 11d9 movw r1, #473 ; 0x1d9 - 8009290: 4b27 ldr r3, [pc, #156] ; (8009330 <__lshift+0xd0>) - 8009292: 4828 ldr r0, [pc, #160] ; (8009334 <__lshift+0xd4>) - 8009294: f000 fac2 bl 800981c <__assert_func> - 8009298: 3101 adds r1, #1 - 800929a: 005b lsls r3, r3, #1 - 800929c: e7ee b.n 800927c <__lshift+0x1c> - 800929e: 2300 movs r3, #0 - 80092a0: f100 0114 add.w r1, r0, #20 - 80092a4: f100 0210 add.w r2, r0, #16 - 80092a8: 4618 mov r0, r3 - 80092aa: 4553 cmp r3, sl - 80092ac: db33 blt.n 8009316 <__lshift+0xb6> - 80092ae: 6920 ldr r0, [r4, #16] - 80092b0: ea2a 7aea bic.w sl, sl, sl, asr #31 - 80092b4: f104 0314 add.w r3, r4, #20 - 80092b8: f019 091f ands.w r9, r9, #31 - 80092bc: eb01 018a add.w r1, r1, sl, lsl #2 - 80092c0: eb03 0c80 add.w ip, r3, r0, lsl #2 - 80092c4: d02b beq.n 800931e <__lshift+0xbe> - 80092c6: 468a mov sl, r1 - 80092c8: 2200 movs r2, #0 - 80092ca: f1c9 0e20 rsb lr, r9, #32 - 80092ce: 6818 ldr r0, [r3, #0] - 80092d0: fa00 f009 lsl.w r0, r0, r9 - 80092d4: 4302 orrs r2, r0 - 80092d6: f84a 2b04 str.w r2, [sl], #4 - 80092da: f853 2b04 ldr.w r2, [r3], #4 - 80092de: 459c cmp ip, r3 - 80092e0: fa22 f20e lsr.w r2, r2, lr - 80092e4: d8f3 bhi.n 80092ce <__lshift+0x6e> - 80092e6: ebac 0304 sub.w r3, ip, r4 - 80092ea: 3b15 subs r3, #21 - 80092ec: f023 0303 bic.w r3, r3, #3 - 80092f0: 3304 adds r3, #4 - 80092f2: f104 0015 add.w r0, r4, #21 - 80092f6: 4584 cmp ip, r0 - 80092f8: bf38 it cc - 80092fa: 2304 movcc r3, #4 - 80092fc: 50ca str r2, [r1, r3] - 80092fe: b10a cbz r2, 8009304 <__lshift+0xa4> - 8009300: f108 0602 add.w r6, r8, #2 - 8009304: 3e01 subs r6, #1 - 8009306: 4638 mov r0, r7 - 8009308: 4621 mov r1, r4 - 800930a: 612e str r6, [r5, #16] - 800930c: f7ff fdda bl 8008ec4 <_Bfree> - 8009310: 4628 mov r0, r5 - 8009312: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8009316: f842 0f04 str.w r0, [r2, #4]! - 800931a: 3301 adds r3, #1 - 800931c: e7c5 b.n 80092aa <__lshift+0x4a> - 800931e: 3904 subs r1, #4 - 8009320: f853 2b04 ldr.w r2, [r3], #4 - 8009324: 459c cmp ip, r3 - 8009326: f841 2f04 str.w r2, [r1, #4]! - 800932a: d8f9 bhi.n 8009320 <__lshift+0xc0> - 800932c: e7ea b.n 8009304 <__lshift+0xa4> - 800932e: bf00 nop - 8009330: 0800aff3 .word 0x0800aff3 - 8009334: 0800b004 .word 0x0800b004 - -08009338 <__mcmp>: - 8009338: 4603 mov r3, r0 - 800933a: 690a ldr r2, [r1, #16] - 800933c: 6900 ldr r0, [r0, #16] - 800933e: b530 push {r4, r5, lr} - 8009340: 1a80 subs r0, r0, r2 - 8009342: d10d bne.n 8009360 <__mcmp+0x28> - 8009344: 3314 adds r3, #20 - 8009346: 3114 adds r1, #20 - 8009348: eb03 0482 add.w r4, r3, r2, lsl #2 - 800934c: eb01 0182 add.w r1, r1, r2, lsl #2 - 8009350: f854 5d04 ldr.w r5, [r4, #-4]! - 8009354: f851 2d04 ldr.w r2, [r1, #-4]! - 8009358: 4295 cmp r5, r2 - 800935a: d002 beq.n 8009362 <__mcmp+0x2a> - 800935c: d304 bcc.n 8009368 <__mcmp+0x30> - 800935e: 2001 movs r0, #1 - 8009360: bd30 pop {r4, r5, pc} - 8009362: 42a3 cmp r3, r4 - 8009364: d3f4 bcc.n 8009350 <__mcmp+0x18> - 8009366: e7fb b.n 8009360 <__mcmp+0x28> - 8009368: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 800936c: e7f8 b.n 8009360 <__mcmp+0x28> +08009504 <_fwalk_reent>: + 8009504: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 8009508: 4606 mov r6, r0 + 800950a: 4688 mov r8, r1 + 800950c: 2700 movs r7, #0 + 800950e: f100 0448 add.w r4, r0, #72 ; 0x48 + 8009512: e9d4 9501 ldrd r9, r5, [r4, #4] + 8009516: f1b9 0901 subs.w r9, r9, #1 + 800951a: d505 bpl.n 8009528 <_fwalk_reent+0x24> + 800951c: 6824 ldr r4, [r4, #0] + 800951e: 2c00 cmp r4, #0 + 8009520: d1f7 bne.n 8009512 <_fwalk_reent+0xe> + 8009522: 4638 mov r0, r7 + 8009524: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 8009528: 89ab ldrh r3, [r5, #12] + 800952a: 2b01 cmp r3, #1 + 800952c: d907 bls.n 800953e <_fwalk_reent+0x3a> + 800952e: f9b5 300e ldrsh.w r3, [r5, #14] + 8009532: 3301 adds r3, #1 + 8009534: d003 beq.n 800953e <_fwalk_reent+0x3a> + 8009536: 4629 mov r1, r5 + 8009538: 4630 mov r0, r6 + 800953a: 47c0 blx r8 + 800953c: 4307 orrs r7, r0 + 800953e: 3568 adds r5, #104 ; 0x68 + 8009540: e7e9 b.n 8009516 <_fwalk_reent+0x12> ... -08009370 <__mdiff>: - 8009370: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8009374: 460c mov r4, r1 - 8009376: 4606 mov r6, r0 - 8009378: 4611 mov r1, r2 - 800937a: 4620 mov r0, r4 - 800937c: 4692 mov sl, r2 - 800937e: f7ff ffdb bl 8009338 <__mcmp> - 8009382: 1e05 subs r5, r0, #0 - 8009384: d111 bne.n 80093aa <__mdiff+0x3a> - 8009386: 4629 mov r1, r5 - 8009388: 4630 mov r0, r6 - 800938a: f7ff fd5b bl 8008e44 <_Balloc> - 800938e: 4602 mov r2, r0 - 8009390: b928 cbnz r0, 800939e <__mdiff+0x2e> - 8009392: f240 2132 movw r1, #562 ; 0x232 - 8009396: 4b3c ldr r3, [pc, #240] ; (8009488 <__mdiff+0x118>) - 8009398: 483c ldr r0, [pc, #240] ; (800948c <__mdiff+0x11c>) - 800939a: f000 fa3f bl 800981c <__assert_func> - 800939e: 2301 movs r3, #1 - 80093a0: e9c0 3504 strd r3, r5, [r0, #16] - 80093a4: 4610 mov r0, r2 - 80093a6: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80093aa: bfa4 itt ge - 80093ac: 4653 movge r3, sl - 80093ae: 46a2 movge sl, r4 - 80093b0: 4630 mov r0, r6 - 80093b2: f8da 1004 ldr.w r1, [sl, #4] - 80093b6: bfa6 itte ge - 80093b8: 461c movge r4, r3 - 80093ba: 2500 movge r5, #0 - 80093bc: 2501 movlt r5, #1 - 80093be: f7ff fd41 bl 8008e44 <_Balloc> - 80093c2: 4602 mov r2, r0 - 80093c4: b918 cbnz r0, 80093ce <__mdiff+0x5e> - 80093c6: f44f 7110 mov.w r1, #576 ; 0x240 - 80093ca: 4b2f ldr r3, [pc, #188] ; (8009488 <__mdiff+0x118>) - 80093cc: e7e4 b.n 8009398 <__mdiff+0x28> - 80093ce: f100 0814 add.w r8, r0, #20 - 80093d2: f8da 7010 ldr.w r7, [sl, #16] - 80093d6: 60c5 str r5, [r0, #12] - 80093d8: f04f 0c00 mov.w ip, #0 - 80093dc: f10a 0514 add.w r5, sl, #20 - 80093e0: f10a 0010 add.w r0, sl, #16 - 80093e4: 46c2 mov sl, r8 - 80093e6: 6926 ldr r6, [r4, #16] - 80093e8: f104 0914 add.w r9, r4, #20 - 80093ec: eb05 0e87 add.w lr, r5, r7, lsl #2 - 80093f0: eb09 0686 add.w r6, r9, r6, lsl #2 - 80093f4: f850 bf04 ldr.w fp, [r0, #4]! - 80093f8: f859 3b04 ldr.w r3, [r9], #4 - 80093fc: fa1f f18b uxth.w r1, fp - 8009400: 4461 add r1, ip - 8009402: fa1f fc83 uxth.w ip, r3 - 8009406: 0c1b lsrs r3, r3, #16 - 8009408: eba1 010c sub.w r1, r1, ip - 800940c: ebc3 431b rsb r3, r3, fp, lsr #16 - 8009410: eb03 4321 add.w r3, r3, r1, asr #16 - 8009414: b289 uxth r1, r1 - 8009416: ea4f 4c23 mov.w ip, r3, asr #16 - 800941a: 454e cmp r6, r9 - 800941c: ea41 4303 orr.w r3, r1, r3, lsl #16 - 8009420: f84a 3b04 str.w r3, [sl], #4 - 8009424: d8e6 bhi.n 80093f4 <__mdiff+0x84> - 8009426: 1b33 subs r3, r6, r4 - 8009428: 3b15 subs r3, #21 - 800942a: f023 0303 bic.w r3, r3, #3 - 800942e: 3415 adds r4, #21 - 8009430: 3304 adds r3, #4 - 8009432: 42a6 cmp r6, r4 - 8009434: bf38 it cc - 8009436: 2304 movcc r3, #4 - 8009438: 441d add r5, r3 - 800943a: 4443 add r3, r8 - 800943c: 461e mov r6, r3 - 800943e: 462c mov r4, r5 - 8009440: 4574 cmp r4, lr - 8009442: d30e bcc.n 8009462 <__mdiff+0xf2> - 8009444: f10e 0103 add.w r1, lr, #3 - 8009448: 1b49 subs r1, r1, r5 - 800944a: f021 0103 bic.w r1, r1, #3 - 800944e: 3d03 subs r5, #3 - 8009450: 45ae cmp lr, r5 - 8009452: bf38 it cc - 8009454: 2100 movcc r1, #0 - 8009456: 4419 add r1, r3 - 8009458: f851 3d04 ldr.w r3, [r1, #-4]! - 800945c: b18b cbz r3, 8009482 <__mdiff+0x112> - 800945e: 6117 str r7, [r2, #16] - 8009460: e7a0 b.n 80093a4 <__mdiff+0x34> - 8009462: f854 8b04 ldr.w r8, [r4], #4 - 8009466: fa1f f188 uxth.w r1, r8 - 800946a: 4461 add r1, ip - 800946c: 1408 asrs r0, r1, #16 - 800946e: eb00 4018 add.w r0, r0, r8, lsr #16 - 8009472: b289 uxth r1, r1 - 8009474: ea41 4100 orr.w r1, r1, r0, lsl #16 - 8009478: ea4f 4c20 mov.w ip, r0, asr #16 - 800947c: f846 1b04 str.w r1, [r6], #4 - 8009480: e7de b.n 8009440 <__mdiff+0xd0> - 8009482: 3f01 subs r7, #1 - 8009484: e7e8 b.n 8009458 <__mdiff+0xe8> - 8009486: bf00 nop - 8009488: 0800aff3 .word 0x0800aff3 - 800948c: 0800b004 .word 0x0800b004 +08009544 <_localeconv_r>: + 8009544: 4800 ldr r0, [pc, #0] ; (8009548 <_localeconv_r+0x4>) + 8009546: 4770 bx lr + 8009548: 20000168 .word 0x20000168 -08009490 <__d2b>: - 8009490: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} - 8009494: 2101 movs r1, #1 - 8009496: e9dd 7608 ldrd r7, r6, [sp, #32] - 800949a: 4690 mov r8, r2 - 800949c: 461d mov r5, r3 - 800949e: f7ff fcd1 bl 8008e44 <_Balloc> - 80094a2: 4604 mov r4, r0 - 80094a4: b930 cbnz r0, 80094b4 <__d2b+0x24> - 80094a6: 4602 mov r2, r0 - 80094a8: f240 310a movw r1, #778 ; 0x30a - 80094ac: 4b24 ldr r3, [pc, #144] ; (8009540 <__d2b+0xb0>) - 80094ae: 4825 ldr r0, [pc, #148] ; (8009544 <__d2b+0xb4>) - 80094b0: f000 f9b4 bl 800981c <__assert_func> - 80094b4: f3c5 0313 ubfx r3, r5, #0, #20 - 80094b8: f3c5 550a ubfx r5, r5, #20, #11 - 80094bc: bb2d cbnz r5, 800950a <__d2b+0x7a> - 80094be: 9301 str r3, [sp, #4] - 80094c0: f1b8 0300 subs.w r3, r8, #0 - 80094c4: d026 beq.n 8009514 <__d2b+0x84> - 80094c6: 4668 mov r0, sp - 80094c8: 9300 str r3, [sp, #0] - 80094ca: f7ff fd87 bl 8008fdc <__lo0bits> - 80094ce: 9900 ldr r1, [sp, #0] - 80094d0: b1f0 cbz r0, 8009510 <__d2b+0x80> - 80094d2: 9a01 ldr r2, [sp, #4] - 80094d4: f1c0 0320 rsb r3, r0, #32 - 80094d8: fa02 f303 lsl.w r3, r2, r3 - 80094dc: 430b orrs r3, r1 - 80094de: 40c2 lsrs r2, r0 - 80094e0: 6163 str r3, [r4, #20] - 80094e2: 9201 str r2, [sp, #4] - 80094e4: 9b01 ldr r3, [sp, #4] - 80094e6: 2b00 cmp r3, #0 - 80094e8: bf14 ite ne - 80094ea: 2102 movne r1, #2 - 80094ec: 2101 moveq r1, #1 - 80094ee: 61a3 str r3, [r4, #24] - 80094f0: 6121 str r1, [r4, #16] - 80094f2: b1c5 cbz r5, 8009526 <__d2b+0x96> - 80094f4: f2a5 4533 subw r5, r5, #1075 ; 0x433 - 80094f8: 4405 add r5, r0 - 80094fa: f1c0 0035 rsb r0, r0, #53 ; 0x35 - 80094fe: 603d str r5, [r7, #0] - 8009500: 6030 str r0, [r6, #0] - 8009502: 4620 mov r0, r4 - 8009504: b002 add sp, #8 - 8009506: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 800950a: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 - 800950e: e7d6 b.n 80094be <__d2b+0x2e> - 8009510: 6161 str r1, [r4, #20] - 8009512: e7e7 b.n 80094e4 <__d2b+0x54> - 8009514: a801 add r0, sp, #4 - 8009516: f7ff fd61 bl 8008fdc <__lo0bits> - 800951a: 2101 movs r1, #1 - 800951c: 9b01 ldr r3, [sp, #4] - 800951e: 6121 str r1, [r4, #16] - 8009520: 6163 str r3, [r4, #20] - 8009522: 3020 adds r0, #32 - 8009524: e7e5 b.n 80094f2 <__d2b+0x62> - 8009526: eb04 0381 add.w r3, r4, r1, lsl #2 - 800952a: f2a0 4032 subw r0, r0, #1074 ; 0x432 - 800952e: 6038 str r0, [r7, #0] - 8009530: 6918 ldr r0, [r3, #16] - 8009532: f7ff fd33 bl 8008f9c <__hi0bits> - 8009536: ebc0 1141 rsb r1, r0, r1, lsl #5 - 800953a: 6031 str r1, [r6, #0] - 800953c: e7e1 b.n 8009502 <__d2b+0x72> - 800953e: bf00 nop - 8009540: 0800aff3 .word 0x0800aff3 - 8009544: 0800b004 .word 0x0800b004 +0800954c <__retarget_lock_init_recursive>: + 800954c: 4770 bx lr -08009548 <_calloc_r>: - 8009548: b538 push {r3, r4, r5, lr} - 800954a: fb02 f501 mul.w r5, r2, r1 - 800954e: 4629 mov r1, r5 - 8009550: f7fe f8e6 bl 8007720 <_malloc_r> - 8009554: 4604 mov r4, r0 - 8009556: b118 cbz r0, 8009560 <_calloc_r+0x18> - 8009558: 462a mov r2, r5 - 800955a: 2100 movs r1, #0 - 800955c: f7fe f88c bl 8007678 - 8009560: 4620 mov r0, r4 - 8009562: bd38 pop {r3, r4, r5, pc} +0800954e <__retarget_lock_acquire_recursive>: + 800954e: 4770 bx lr -08009564 <__ssputs_r>: - 8009564: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8009568: 688e ldr r6, [r1, #8] - 800956a: 4682 mov sl, r0 - 800956c: 429e cmp r6, r3 - 800956e: 460c mov r4, r1 - 8009570: 4690 mov r8, r2 - 8009572: 461f mov r7, r3 - 8009574: d838 bhi.n 80095e8 <__ssputs_r+0x84> - 8009576: 898a ldrh r2, [r1, #12] - 8009578: f412 6f90 tst.w r2, #1152 ; 0x480 - 800957c: d032 beq.n 80095e4 <__ssputs_r+0x80> - 800957e: 6825 ldr r5, [r4, #0] - 8009580: 6909 ldr r1, [r1, #16] - 8009582: 3301 adds r3, #1 - 8009584: eba5 0901 sub.w r9, r5, r1 - 8009588: 6965 ldr r5, [r4, #20] - 800958a: 444b add r3, r9 - 800958c: eb05 0545 add.w r5, r5, r5, lsl #1 - 8009590: eb05 75d5 add.w r5, r5, r5, lsr #31 - 8009594: 106d asrs r5, r5, #1 - 8009596: 429d cmp r5, r3 - 8009598: bf38 it cc - 800959a: 461d movcc r5, r3 - 800959c: 0553 lsls r3, r2, #21 - 800959e: d531 bpl.n 8009604 <__ssputs_r+0xa0> - 80095a0: 4629 mov r1, r5 - 80095a2: f7fe f8bd bl 8007720 <_malloc_r> - 80095a6: 4606 mov r6, r0 - 80095a8: b950 cbnz r0, 80095c0 <__ssputs_r+0x5c> - 80095aa: 230c movs r3, #12 - 80095ac: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80095b0: f8ca 3000 str.w r3, [sl] - 80095b4: 89a3 ldrh r3, [r4, #12] - 80095b6: f043 0340 orr.w r3, r3, #64 ; 0x40 - 80095ba: 81a3 strh r3, [r4, #12] - 80095bc: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 80095c0: 464a mov r2, r9 - 80095c2: 6921 ldr r1, [r4, #16] - 80095c4: f7ff fc24 bl 8008e10 - 80095c8: 89a3 ldrh r3, [r4, #12] - 80095ca: f423 6390 bic.w r3, r3, #1152 ; 0x480 - 80095ce: f043 0380 orr.w r3, r3, #128 ; 0x80 - 80095d2: 81a3 strh r3, [r4, #12] - 80095d4: 6126 str r6, [r4, #16] - 80095d6: 444e add r6, r9 - 80095d8: 6026 str r6, [r4, #0] - 80095da: 463e mov r6, r7 - 80095dc: 6165 str r5, [r4, #20] - 80095de: eba5 0509 sub.w r5, r5, r9 - 80095e2: 60a5 str r5, [r4, #8] - 80095e4: 42be cmp r6, r7 - 80095e6: d900 bls.n 80095ea <__ssputs_r+0x86> - 80095e8: 463e mov r6, r7 - 80095ea: 4632 mov r2, r6 - 80095ec: 4641 mov r1, r8 - 80095ee: 6820 ldr r0, [r4, #0] - 80095f0: f000 f959 bl 80098a6 - 80095f4: 68a3 ldr r3, [r4, #8] - 80095f6: 6822 ldr r2, [r4, #0] - 80095f8: 1b9b subs r3, r3, r6 - 80095fa: 4432 add r2, r6 - 80095fc: 2000 movs r0, #0 - 80095fe: 60a3 str r3, [r4, #8] - 8009600: 6022 str r2, [r4, #0] - 8009602: e7db b.n 80095bc <__ssputs_r+0x58> - 8009604: 462a mov r2, r5 - 8009606: f000 f968 bl 80098da <_realloc_r> - 800960a: 4606 mov r6, r0 - 800960c: 2800 cmp r0, #0 - 800960e: d1e1 bne.n 80095d4 <__ssputs_r+0x70> - 8009610: 4650 mov r0, sl - 8009612: 6921 ldr r1, [r4, #16] - 8009614: f7fe f838 bl 8007688 <_free_r> - 8009618: e7c7 b.n 80095aa <__ssputs_r+0x46> +08009550 <__retarget_lock_release_recursive>: + 8009550: 4770 bx lr + +08009552 <__swhatbuf_r>: + 8009552: b570 push {r4, r5, r6, lr} + 8009554: 460e mov r6, r1 + 8009556: f9b1 100e ldrsh.w r1, [r1, #14] + 800955a: 4614 mov r4, r2 + 800955c: 2900 cmp r1, #0 + 800955e: 461d mov r5, r3 + 8009560: b096 sub sp, #88 ; 0x58 + 8009562: da07 bge.n 8009574 <__swhatbuf_r+0x22> + 8009564: 2300 movs r3, #0 + 8009566: 602b str r3, [r5, #0] + 8009568: 89b3 ldrh r3, [r6, #12] + 800956a: 061a lsls r2, r3, #24 + 800956c: d410 bmi.n 8009590 <__swhatbuf_r+0x3e> + 800956e: f44f 6380 mov.w r3, #1024 ; 0x400 + 8009572: e00e b.n 8009592 <__swhatbuf_r+0x40> + 8009574: 466a mov r2, sp + 8009576: f000 ff9b bl 800a4b0 <_fstat_r> + 800957a: 2800 cmp r0, #0 + 800957c: dbf2 blt.n 8009564 <__swhatbuf_r+0x12> + 800957e: 9a01 ldr r2, [sp, #4] + 8009580: f402 4270 and.w r2, r2, #61440 ; 0xf000 + 8009584: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 + 8009588: 425a negs r2, r3 + 800958a: 415a adcs r2, r3 + 800958c: 602a str r2, [r5, #0] + 800958e: e7ee b.n 800956e <__swhatbuf_r+0x1c> + 8009590: 2340 movs r3, #64 ; 0x40 + 8009592: 2000 movs r0, #0 + 8009594: 6023 str r3, [r4, #0] + 8009596: b016 add sp, #88 ; 0x58 + 8009598: bd70 pop {r4, r5, r6, pc} ... -0800961c <_svfiprintf_r>: - 800961c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8009620: 4698 mov r8, r3 - 8009622: 898b ldrh r3, [r1, #12] - 8009624: 4607 mov r7, r0 - 8009626: 061b lsls r3, r3, #24 - 8009628: 460d mov r5, r1 - 800962a: 4614 mov r4, r2 - 800962c: b09d sub sp, #116 ; 0x74 - 800962e: d50e bpl.n 800964e <_svfiprintf_r+0x32> - 8009630: 690b ldr r3, [r1, #16] - 8009632: b963 cbnz r3, 800964e <_svfiprintf_r+0x32> - 8009634: 2140 movs r1, #64 ; 0x40 - 8009636: f7fe f873 bl 8007720 <_malloc_r> - 800963a: 6028 str r0, [r5, #0] - 800963c: 6128 str r0, [r5, #16] - 800963e: b920 cbnz r0, 800964a <_svfiprintf_r+0x2e> - 8009640: 230c movs r3, #12 - 8009642: 603b str r3, [r7, #0] - 8009644: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8009648: e0d1 b.n 80097ee <_svfiprintf_r+0x1d2> - 800964a: 2340 movs r3, #64 ; 0x40 - 800964c: 616b str r3, [r5, #20] - 800964e: 2300 movs r3, #0 - 8009650: 9309 str r3, [sp, #36] ; 0x24 - 8009652: 2320 movs r3, #32 - 8009654: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 8009658: 2330 movs r3, #48 ; 0x30 - 800965a: f04f 0901 mov.w r9, #1 - 800965e: f8cd 800c str.w r8, [sp, #12] - 8009662: f8df 81a4 ldr.w r8, [pc, #420] ; 8009808 <_svfiprintf_r+0x1ec> - 8009666: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 800966a: 4623 mov r3, r4 - 800966c: 469a mov sl, r3 - 800966e: f813 2b01 ldrb.w r2, [r3], #1 - 8009672: b10a cbz r2, 8009678 <_svfiprintf_r+0x5c> - 8009674: 2a25 cmp r2, #37 ; 0x25 - 8009676: d1f9 bne.n 800966c <_svfiprintf_r+0x50> - 8009678: ebba 0b04 subs.w fp, sl, r4 - 800967c: d00b beq.n 8009696 <_svfiprintf_r+0x7a> - 800967e: 465b mov r3, fp - 8009680: 4622 mov r2, r4 - 8009682: 4629 mov r1, r5 - 8009684: 4638 mov r0, r7 - 8009686: f7ff ff6d bl 8009564 <__ssputs_r> - 800968a: 3001 adds r0, #1 - 800968c: f000 80aa beq.w 80097e4 <_svfiprintf_r+0x1c8> - 8009690: 9a09 ldr r2, [sp, #36] ; 0x24 - 8009692: 445a add r2, fp - 8009694: 9209 str r2, [sp, #36] ; 0x24 - 8009696: f89a 3000 ldrb.w r3, [sl] - 800969a: 2b00 cmp r3, #0 - 800969c: f000 80a2 beq.w 80097e4 <_svfiprintf_r+0x1c8> - 80096a0: 2300 movs r3, #0 - 80096a2: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 80096a6: e9cd 2305 strd r2, r3, [sp, #20] - 80096aa: f10a 0a01 add.w sl, sl, #1 - 80096ae: 9304 str r3, [sp, #16] - 80096b0: 9307 str r3, [sp, #28] - 80096b2: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 80096b6: 931a str r3, [sp, #104] ; 0x68 - 80096b8: 4654 mov r4, sl - 80096ba: 2205 movs r2, #5 - 80096bc: f814 1b01 ldrb.w r1, [r4], #1 - 80096c0: 4851 ldr r0, [pc, #324] ; (8009808 <_svfiprintf_r+0x1ec>) - 80096c2: f7ff fb97 bl 8008df4 - 80096c6: 9a04 ldr r2, [sp, #16] - 80096c8: b9d8 cbnz r0, 8009702 <_svfiprintf_r+0xe6> - 80096ca: 06d0 lsls r0, r2, #27 - 80096cc: bf44 itt mi - 80096ce: 2320 movmi r3, #32 - 80096d0: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 80096d4: 0711 lsls r1, r2, #28 - 80096d6: bf44 itt mi - 80096d8: 232b movmi r3, #43 ; 0x2b - 80096da: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 80096de: f89a 3000 ldrb.w r3, [sl] - 80096e2: 2b2a cmp r3, #42 ; 0x2a - 80096e4: d015 beq.n 8009712 <_svfiprintf_r+0xf6> - 80096e6: 4654 mov r4, sl - 80096e8: 2000 movs r0, #0 - 80096ea: f04f 0c0a mov.w ip, #10 - 80096ee: 9a07 ldr r2, [sp, #28] - 80096f0: 4621 mov r1, r4 - 80096f2: f811 3b01 ldrb.w r3, [r1], #1 - 80096f6: 3b30 subs r3, #48 ; 0x30 - 80096f8: 2b09 cmp r3, #9 - 80096fa: d94e bls.n 800979a <_svfiprintf_r+0x17e> - 80096fc: b1b0 cbz r0, 800972c <_svfiprintf_r+0x110> - 80096fe: 9207 str r2, [sp, #28] - 8009700: e014 b.n 800972c <_svfiprintf_r+0x110> - 8009702: eba0 0308 sub.w r3, r0, r8 - 8009706: fa09 f303 lsl.w r3, r9, r3 - 800970a: 4313 orrs r3, r2 - 800970c: 46a2 mov sl, r4 - 800970e: 9304 str r3, [sp, #16] - 8009710: e7d2 b.n 80096b8 <_svfiprintf_r+0x9c> - 8009712: 9b03 ldr r3, [sp, #12] - 8009714: 1d19 adds r1, r3, #4 - 8009716: 681b ldr r3, [r3, #0] - 8009718: 9103 str r1, [sp, #12] - 800971a: 2b00 cmp r3, #0 - 800971c: bfbb ittet lt - 800971e: 425b neglt r3, r3 - 8009720: f042 0202 orrlt.w r2, r2, #2 - 8009724: 9307 strge r3, [sp, #28] - 8009726: 9307 strlt r3, [sp, #28] - 8009728: bfb8 it lt - 800972a: 9204 strlt r2, [sp, #16] - 800972c: 7823 ldrb r3, [r4, #0] - 800972e: 2b2e cmp r3, #46 ; 0x2e - 8009730: d10c bne.n 800974c <_svfiprintf_r+0x130> - 8009732: 7863 ldrb r3, [r4, #1] - 8009734: 2b2a cmp r3, #42 ; 0x2a - 8009736: d135 bne.n 80097a4 <_svfiprintf_r+0x188> - 8009738: 9b03 ldr r3, [sp, #12] - 800973a: 3402 adds r4, #2 - 800973c: 1d1a adds r2, r3, #4 - 800973e: 681b ldr r3, [r3, #0] - 8009740: 9203 str r2, [sp, #12] - 8009742: 2b00 cmp r3, #0 - 8009744: bfb8 it lt - 8009746: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 800974a: 9305 str r3, [sp, #20] - 800974c: f8df a0c8 ldr.w sl, [pc, #200] ; 8009818 <_svfiprintf_r+0x1fc> - 8009750: 2203 movs r2, #3 - 8009752: 4650 mov r0, sl - 8009754: 7821 ldrb r1, [r4, #0] - 8009756: f7ff fb4d bl 8008df4 - 800975a: b140 cbz r0, 800976e <_svfiprintf_r+0x152> - 800975c: 2340 movs r3, #64 ; 0x40 - 800975e: eba0 000a sub.w r0, r0, sl - 8009762: fa03 f000 lsl.w r0, r3, r0 - 8009766: 9b04 ldr r3, [sp, #16] - 8009768: 3401 adds r4, #1 - 800976a: 4303 orrs r3, r0 - 800976c: 9304 str r3, [sp, #16] - 800976e: f814 1b01 ldrb.w r1, [r4], #1 - 8009772: 2206 movs r2, #6 - 8009774: 4825 ldr r0, [pc, #148] ; (800980c <_svfiprintf_r+0x1f0>) - 8009776: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 800977a: f7ff fb3b bl 8008df4 - 800977e: 2800 cmp r0, #0 - 8009780: d038 beq.n 80097f4 <_svfiprintf_r+0x1d8> - 8009782: 4b23 ldr r3, [pc, #140] ; (8009810 <_svfiprintf_r+0x1f4>) - 8009784: bb1b cbnz r3, 80097ce <_svfiprintf_r+0x1b2> - 8009786: 9b03 ldr r3, [sp, #12] - 8009788: 3307 adds r3, #7 - 800978a: f023 0307 bic.w r3, r3, #7 - 800978e: 3308 adds r3, #8 - 8009790: 9303 str r3, [sp, #12] - 8009792: 9b09 ldr r3, [sp, #36] ; 0x24 - 8009794: 4433 add r3, r6 - 8009796: 9309 str r3, [sp, #36] ; 0x24 - 8009798: e767 b.n 800966a <_svfiprintf_r+0x4e> - 800979a: 460c mov r4, r1 - 800979c: 2001 movs r0, #1 - 800979e: fb0c 3202 mla r2, ip, r2, r3 - 80097a2: e7a5 b.n 80096f0 <_svfiprintf_r+0xd4> - 80097a4: 2300 movs r3, #0 - 80097a6: f04f 0c0a mov.w ip, #10 - 80097aa: 4619 mov r1, r3 - 80097ac: 3401 adds r4, #1 - 80097ae: 9305 str r3, [sp, #20] - 80097b0: 4620 mov r0, r4 - 80097b2: f810 2b01 ldrb.w r2, [r0], #1 - 80097b6: 3a30 subs r2, #48 ; 0x30 - 80097b8: 2a09 cmp r2, #9 - 80097ba: d903 bls.n 80097c4 <_svfiprintf_r+0x1a8> - 80097bc: 2b00 cmp r3, #0 - 80097be: d0c5 beq.n 800974c <_svfiprintf_r+0x130> - 80097c0: 9105 str r1, [sp, #20] - 80097c2: e7c3 b.n 800974c <_svfiprintf_r+0x130> - 80097c4: 4604 mov r4, r0 - 80097c6: 2301 movs r3, #1 - 80097c8: fb0c 2101 mla r1, ip, r1, r2 - 80097cc: e7f0 b.n 80097b0 <_svfiprintf_r+0x194> - 80097ce: ab03 add r3, sp, #12 - 80097d0: 9300 str r3, [sp, #0] - 80097d2: 462a mov r2, r5 - 80097d4: 4638 mov r0, r7 - 80097d6: 4b0f ldr r3, [pc, #60] ; (8009814 <_svfiprintf_r+0x1f8>) - 80097d8: a904 add r1, sp, #16 - 80097da: f7fe f899 bl 8007910 <_printf_float> - 80097de: 1c42 adds r2, r0, #1 - 80097e0: 4606 mov r6, r0 - 80097e2: d1d6 bne.n 8009792 <_svfiprintf_r+0x176> - 80097e4: 89ab ldrh r3, [r5, #12] - 80097e6: 065b lsls r3, r3, #25 - 80097e8: f53f af2c bmi.w 8009644 <_svfiprintf_r+0x28> - 80097ec: 9809 ldr r0, [sp, #36] ; 0x24 - 80097ee: b01d add sp, #116 ; 0x74 - 80097f0: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80097f4: ab03 add r3, sp, #12 - 80097f6: 9300 str r3, [sp, #0] - 80097f8: 462a mov r2, r5 - 80097fa: 4638 mov r0, r7 - 80097fc: 4b05 ldr r3, [pc, #20] ; (8009814 <_svfiprintf_r+0x1f8>) - 80097fe: a904 add r1, sp, #16 - 8009800: f7fe fb22 bl 8007e48 <_printf_i> - 8009804: e7eb b.n 80097de <_svfiprintf_r+0x1c2> - 8009806: bf00 nop - 8009808: 0800b164 .word 0x0800b164 - 800980c: 0800b16e .word 0x0800b16e - 8009810: 08007911 .word 0x08007911 - 8009814: 08009565 .word 0x08009565 - 8009818: 0800b16a .word 0x0800b16a +0800959c <__smakebuf_r>: + 800959c: 898b ldrh r3, [r1, #12] + 800959e: b573 push {r0, r1, r4, r5, r6, lr} + 80095a0: 079d lsls r5, r3, #30 + 80095a2: 4606 mov r6, r0 + 80095a4: 460c mov r4, r1 + 80095a6: d507 bpl.n 80095b8 <__smakebuf_r+0x1c> + 80095a8: f104 0347 add.w r3, r4, #71 ; 0x47 + 80095ac: 6023 str r3, [r4, #0] + 80095ae: 6123 str r3, [r4, #16] + 80095b0: 2301 movs r3, #1 + 80095b2: 6163 str r3, [r4, #20] + 80095b4: b002 add sp, #8 + 80095b6: bd70 pop {r4, r5, r6, pc} + 80095b8: 466a mov r2, sp + 80095ba: ab01 add r3, sp, #4 + 80095bc: f7ff ffc9 bl 8009552 <__swhatbuf_r> + 80095c0: 9900 ldr r1, [sp, #0] + 80095c2: 4605 mov r5, r0 + 80095c4: 4630 mov r0, r6 + 80095c6: f7fe f93b bl 8007840 <_malloc_r> + 80095ca: b948 cbnz r0, 80095e0 <__smakebuf_r+0x44> + 80095cc: f9b4 300c ldrsh.w r3, [r4, #12] + 80095d0: 059a lsls r2, r3, #22 + 80095d2: d4ef bmi.n 80095b4 <__smakebuf_r+0x18> + 80095d4: f023 0303 bic.w r3, r3, #3 + 80095d8: f043 0302 orr.w r3, r3, #2 + 80095dc: 81a3 strh r3, [r4, #12] + 80095de: e7e3 b.n 80095a8 <__smakebuf_r+0xc> + 80095e0: 4b0d ldr r3, [pc, #52] ; (8009618 <__smakebuf_r+0x7c>) + 80095e2: 62b3 str r3, [r6, #40] ; 0x28 + 80095e4: 89a3 ldrh r3, [r4, #12] + 80095e6: 6020 str r0, [r4, #0] + 80095e8: f043 0380 orr.w r3, r3, #128 ; 0x80 + 80095ec: 81a3 strh r3, [r4, #12] + 80095ee: 9b00 ldr r3, [sp, #0] + 80095f0: 6120 str r0, [r4, #16] + 80095f2: 6163 str r3, [r4, #20] + 80095f4: 9b01 ldr r3, [sp, #4] + 80095f6: b15b cbz r3, 8009610 <__smakebuf_r+0x74> + 80095f8: 4630 mov r0, r6 + 80095fa: f9b4 100e ldrsh.w r1, [r4, #14] + 80095fe: f000 ff69 bl 800a4d4 <_isatty_r> + 8009602: b128 cbz r0, 8009610 <__smakebuf_r+0x74> + 8009604: 89a3 ldrh r3, [r4, #12] + 8009606: f023 0303 bic.w r3, r3, #3 + 800960a: f043 0301 orr.w r3, r3, #1 + 800960e: 81a3 strh r3, [r4, #12] + 8009610: 89a0 ldrh r0, [r4, #12] + 8009612: 4305 orrs r5, r0 + 8009614: 81a5 strh r5, [r4, #12] + 8009616: e7cd b.n 80095b4 <__smakebuf_r+0x18> + 8009618: 080093a1 .word 0x080093a1 -0800981c <__assert_func>: - 800981c: b51f push {r0, r1, r2, r3, r4, lr} - 800981e: 4614 mov r4, r2 - 8009820: 461a mov r2, r3 - 8009822: 4b09 ldr r3, [pc, #36] ; (8009848 <__assert_func+0x2c>) - 8009824: 4605 mov r5, r0 - 8009826: 681b ldr r3, [r3, #0] - 8009828: 68d8 ldr r0, [r3, #12] - 800982a: b14c cbz r4, 8009840 <__assert_func+0x24> - 800982c: 4b07 ldr r3, [pc, #28] ; (800984c <__assert_func+0x30>) - 800982e: e9cd 3401 strd r3, r4, [sp, #4] - 8009832: 9100 str r1, [sp, #0] - 8009834: 462b mov r3, r5 - 8009836: 4906 ldr r1, [pc, #24] ; (8009850 <__assert_func+0x34>) - 8009838: f000 f80e bl 8009858 - 800983c: f000 fa98 bl 8009d70 - 8009840: 4b04 ldr r3, [pc, #16] ; (8009854 <__assert_func+0x38>) - 8009842: 461c mov r4, r3 - 8009844: e7f3 b.n 800982e <__assert_func+0x12> - 8009846: bf00 nop - 8009848: 20000014 .word 0x20000014 - 800984c: 0800b175 .word 0x0800b175 - 8009850: 0800b182 .word 0x0800b182 - 8009854: 0800b1b0 .word 0x0800b1b0 +0800961c : + 800961c: 4603 mov r3, r0 + 800961e: b510 push {r4, lr} + 8009620: b2c9 uxtb r1, r1 + 8009622: 4402 add r2, r0 + 8009624: 4293 cmp r3, r2 + 8009626: 4618 mov r0, r3 + 8009628: d101 bne.n 800962e + 800962a: 2000 movs r0, #0 + 800962c: e003 b.n 8009636 + 800962e: 7804 ldrb r4, [r0, #0] + 8009630: 3301 adds r3, #1 + 8009632: 428c cmp r4, r1 + 8009634: d1f6 bne.n 8009624 + 8009636: bd10 pop {r4, pc} -08009858 : - 8009858: b40e push {r1, r2, r3} - 800985a: b503 push {r0, r1, lr} - 800985c: 4601 mov r1, r0 - 800985e: ab03 add r3, sp, #12 - 8009860: 4805 ldr r0, [pc, #20] ; (8009878 ) - 8009862: f853 2b04 ldr.w r2, [r3], #4 - 8009866: 6800 ldr r0, [r0, #0] - 8009868: 9301 str r3, [sp, #4] - 800986a: f000 f883 bl 8009974 <_vfiprintf_r> - 800986e: b002 add sp, #8 - 8009870: f85d eb04 ldr.w lr, [sp], #4 - 8009874: b003 add sp, #12 - 8009876: 4770 bx lr - 8009878: 20000014 .word 0x20000014 +08009638 : + 8009638: 440a add r2, r1 + 800963a: 4291 cmp r1, r2 + 800963c: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff + 8009640: d100 bne.n 8009644 + 8009642: 4770 bx lr + 8009644: b510 push {r4, lr} + 8009646: f811 4b01 ldrb.w r4, [r1], #1 + 800964a: 4291 cmp r1, r2 + 800964c: f803 4f01 strb.w r4, [r3, #1]! + 8009650: d1f9 bne.n 8009646 + 8009652: bd10 pop {r4, pc} -0800987c <__retarget_lock_init_recursive>: - 800987c: 4770 bx lr +08009654 <__malloc_lock>: + 8009654: 4801 ldr r0, [pc, #4] ; (800965c <__malloc_lock+0x8>) + 8009656: f7ff bf7a b.w 800954e <__retarget_lock_acquire_recursive> + 800965a: bf00 nop + 800965c: 2000253e .word 0x2000253e -0800987e <__retarget_lock_acquire_recursive>: - 800987e: 4770 bx lr +08009660 <__malloc_unlock>: + 8009660: 4801 ldr r0, [pc, #4] ; (8009668 <__malloc_unlock+0x8>) + 8009662: f7ff bf75 b.w 8009550 <__retarget_lock_release_recursive> + 8009666: bf00 nop + 8009668: 2000253e .word 0x2000253e -08009880 <__retarget_lock_release_recursive>: - 8009880: 4770 bx lr +0800966c <_Balloc>: + 800966c: b570 push {r4, r5, r6, lr} + 800966e: 6a46 ldr r6, [r0, #36] ; 0x24 + 8009670: 4604 mov r4, r0 + 8009672: 460d mov r5, r1 + 8009674: b976 cbnz r6, 8009694 <_Balloc+0x28> + 8009676: 2010 movs r0, #16 + 8009678: f7fe f87e bl 8007778 + 800967c: 4602 mov r2, r0 + 800967e: 6260 str r0, [r4, #36] ; 0x24 + 8009680: b920 cbnz r0, 800968c <_Balloc+0x20> + 8009682: 2166 movs r1, #102 ; 0x66 + 8009684: 4b17 ldr r3, [pc, #92] ; (80096e4 <_Balloc+0x78>) + 8009686: 4818 ldr r0, [pc, #96] ; (80096e8 <_Balloc+0x7c>) + 8009688: f000 fed2 bl 800a430 <__assert_func> + 800968c: e9c0 6601 strd r6, r6, [r0, #4] + 8009690: 6006 str r6, [r0, #0] + 8009692: 60c6 str r6, [r0, #12] + 8009694: 6a66 ldr r6, [r4, #36] ; 0x24 + 8009696: 68f3 ldr r3, [r6, #12] + 8009698: b183 cbz r3, 80096bc <_Balloc+0x50> + 800969a: 6a63 ldr r3, [r4, #36] ; 0x24 + 800969c: 68db ldr r3, [r3, #12] + 800969e: f853 0025 ldr.w r0, [r3, r5, lsl #2] + 80096a2: b9b8 cbnz r0, 80096d4 <_Balloc+0x68> + 80096a4: 2101 movs r1, #1 + 80096a6: fa01 f605 lsl.w r6, r1, r5 + 80096aa: 1d72 adds r2, r6, #5 + 80096ac: 4620 mov r0, r4 + 80096ae: 0092 lsls r2, r2, #2 + 80096b0: f000 fb5e bl 8009d70 <_calloc_r> + 80096b4: b160 cbz r0, 80096d0 <_Balloc+0x64> + 80096b6: e9c0 5601 strd r5, r6, [r0, #4] + 80096ba: e00e b.n 80096da <_Balloc+0x6e> + 80096bc: 2221 movs r2, #33 ; 0x21 + 80096be: 2104 movs r1, #4 + 80096c0: 4620 mov r0, r4 + 80096c2: f000 fb55 bl 8009d70 <_calloc_r> + 80096c6: 6a63 ldr r3, [r4, #36] ; 0x24 + 80096c8: 60f0 str r0, [r6, #12] + 80096ca: 68db ldr r3, [r3, #12] + 80096cc: 2b00 cmp r3, #0 + 80096ce: d1e4 bne.n 800969a <_Balloc+0x2e> + 80096d0: 2000 movs r0, #0 + 80096d2: bd70 pop {r4, r5, r6, pc} + 80096d4: 6802 ldr r2, [r0, #0] + 80096d6: f843 2025 str.w r2, [r3, r5, lsl #2] + 80096da: 2300 movs r3, #0 + 80096dc: e9c0 3303 strd r3, r3, [r0, #12] + 80096e0: e7f7 b.n 80096d2 <_Balloc+0x66> + 80096e2: bf00 nop + 80096e4: 0800b2cd .word 0x0800b2cd + 80096e8: 0800b3b4 .word 0x0800b3b4 -08009882 <__ascii_mbtowc>: - 8009882: b082 sub sp, #8 - 8009884: b901 cbnz r1, 8009888 <__ascii_mbtowc+0x6> - 8009886: a901 add r1, sp, #4 - 8009888: b142 cbz r2, 800989c <__ascii_mbtowc+0x1a> - 800988a: b14b cbz r3, 80098a0 <__ascii_mbtowc+0x1e> - 800988c: 7813 ldrb r3, [r2, #0] - 800988e: 600b str r3, [r1, #0] - 8009890: 7812 ldrb r2, [r2, #0] - 8009892: 1e10 subs r0, r2, #0 - 8009894: bf18 it ne - 8009896: 2001 movne r0, #1 - 8009898: b002 add sp, #8 - 800989a: 4770 bx lr - 800989c: 4610 mov r0, r2 - 800989e: e7fb b.n 8009898 <__ascii_mbtowc+0x16> - 80098a0: f06f 0001 mvn.w r0, #1 - 80098a4: e7f8 b.n 8009898 <__ascii_mbtowc+0x16> +080096ec <_Bfree>: + 80096ec: b570 push {r4, r5, r6, lr} + 80096ee: 6a46 ldr r6, [r0, #36] ; 0x24 + 80096f0: 4605 mov r5, r0 + 80096f2: 460c mov r4, r1 + 80096f4: b976 cbnz r6, 8009714 <_Bfree+0x28> + 80096f6: 2010 movs r0, #16 + 80096f8: f7fe f83e bl 8007778 + 80096fc: 4602 mov r2, r0 + 80096fe: 6268 str r0, [r5, #36] ; 0x24 + 8009700: b920 cbnz r0, 800970c <_Bfree+0x20> + 8009702: 218a movs r1, #138 ; 0x8a + 8009704: 4b08 ldr r3, [pc, #32] ; (8009728 <_Bfree+0x3c>) + 8009706: 4809 ldr r0, [pc, #36] ; (800972c <_Bfree+0x40>) + 8009708: f000 fe92 bl 800a430 <__assert_func> + 800970c: e9c0 6601 strd r6, r6, [r0, #4] + 8009710: 6006 str r6, [r0, #0] + 8009712: 60c6 str r6, [r0, #12] + 8009714: b13c cbz r4, 8009726 <_Bfree+0x3a> + 8009716: 6a6b ldr r3, [r5, #36] ; 0x24 + 8009718: 6862 ldr r2, [r4, #4] + 800971a: 68db ldr r3, [r3, #12] + 800971c: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 8009720: 6021 str r1, [r4, #0] + 8009722: f843 4022 str.w r4, [r3, r2, lsl #2] + 8009726: bd70 pop {r4, r5, r6, pc} + 8009728: 0800b2cd .word 0x0800b2cd + 800972c: 0800b3b4 .word 0x0800b3b4 -080098a6 : - 80098a6: 4288 cmp r0, r1 - 80098a8: b510 push {r4, lr} - 80098aa: eb01 0402 add.w r4, r1, r2 - 80098ae: d902 bls.n 80098b6 - 80098b0: 4284 cmp r4, r0 - 80098b2: 4623 mov r3, r4 - 80098b4: d807 bhi.n 80098c6 - 80098b6: 1e43 subs r3, r0, #1 - 80098b8: 42a1 cmp r1, r4 - 80098ba: d008 beq.n 80098ce - 80098bc: f811 2b01 ldrb.w r2, [r1], #1 - 80098c0: f803 2f01 strb.w r2, [r3, #1]! - 80098c4: e7f8 b.n 80098b8 - 80098c6: 4601 mov r1, r0 - 80098c8: 4402 add r2, r0 - 80098ca: 428a cmp r2, r1 - 80098cc: d100 bne.n 80098d0 - 80098ce: bd10 pop {r4, pc} - 80098d0: f813 4d01 ldrb.w r4, [r3, #-1]! - 80098d4: f802 4d01 strb.w r4, [r2, #-1]! - 80098d8: e7f7 b.n 80098ca +08009730 <__multadd>: + 8009730: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8009734: 4698 mov r8, r3 + 8009736: 460c mov r4, r1 + 8009738: 2300 movs r3, #0 + 800973a: 690e ldr r6, [r1, #16] + 800973c: 4607 mov r7, r0 + 800973e: f101 0014 add.w r0, r1, #20 + 8009742: 6805 ldr r5, [r0, #0] + 8009744: 3301 adds r3, #1 + 8009746: b2a9 uxth r1, r5 + 8009748: fb02 8101 mla r1, r2, r1, r8 + 800974c: 0c2d lsrs r5, r5, #16 + 800974e: ea4f 4c11 mov.w ip, r1, lsr #16 + 8009752: fb02 c505 mla r5, r2, r5, ip + 8009756: b289 uxth r1, r1 + 8009758: eb01 4105 add.w r1, r1, r5, lsl #16 + 800975c: 429e cmp r6, r3 + 800975e: ea4f 4815 mov.w r8, r5, lsr #16 + 8009762: f840 1b04 str.w r1, [r0], #4 + 8009766: dcec bgt.n 8009742 <__multadd+0x12> + 8009768: f1b8 0f00 cmp.w r8, #0 + 800976c: d022 beq.n 80097b4 <__multadd+0x84> + 800976e: 68a3 ldr r3, [r4, #8] + 8009770: 42b3 cmp r3, r6 + 8009772: dc19 bgt.n 80097a8 <__multadd+0x78> + 8009774: 6861 ldr r1, [r4, #4] + 8009776: 4638 mov r0, r7 + 8009778: 3101 adds r1, #1 + 800977a: f7ff ff77 bl 800966c <_Balloc> + 800977e: 4605 mov r5, r0 + 8009780: b928 cbnz r0, 800978e <__multadd+0x5e> + 8009782: 4602 mov r2, r0 + 8009784: 21b5 movs r1, #181 ; 0xb5 + 8009786: 4b0d ldr r3, [pc, #52] ; (80097bc <__multadd+0x8c>) + 8009788: 480d ldr r0, [pc, #52] ; (80097c0 <__multadd+0x90>) + 800978a: f000 fe51 bl 800a430 <__assert_func> + 800978e: 6922 ldr r2, [r4, #16] + 8009790: f104 010c add.w r1, r4, #12 + 8009794: 3202 adds r2, #2 + 8009796: 0092 lsls r2, r2, #2 + 8009798: 300c adds r0, #12 + 800979a: f7ff ff4d bl 8009638 + 800979e: 4621 mov r1, r4 + 80097a0: 4638 mov r0, r7 + 80097a2: f7ff ffa3 bl 80096ec <_Bfree> + 80097a6: 462c mov r4, r5 + 80097a8: eb04 0386 add.w r3, r4, r6, lsl #2 + 80097ac: 3601 adds r6, #1 + 80097ae: f8c3 8014 str.w r8, [r3, #20] + 80097b2: 6126 str r6, [r4, #16] + 80097b4: 4620 mov r0, r4 + 80097b6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 80097ba: bf00 nop + 80097bc: 0800b343 .word 0x0800b343 + 80097c0: 0800b3b4 .word 0x0800b3b4 -080098da <_realloc_r>: - 80098da: b5f8 push {r3, r4, r5, r6, r7, lr} - 80098dc: 4607 mov r7, r0 - 80098de: 4614 mov r4, r2 - 80098e0: 460e mov r6, r1 - 80098e2: b921 cbnz r1, 80098ee <_realloc_r+0x14> - 80098e4: 4611 mov r1, r2 - 80098e6: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} - 80098ea: f7fd bf19 b.w 8007720 <_malloc_r> - 80098ee: b922 cbnz r2, 80098fa <_realloc_r+0x20> - 80098f0: f7fd feca bl 8007688 <_free_r> - 80098f4: 4625 mov r5, r4 - 80098f6: 4628 mov r0, r5 - 80098f8: bdf8 pop {r3, r4, r5, r6, r7, pc} - 80098fa: f000 fc5d bl 800a1b8 <_malloc_usable_size_r> - 80098fe: 42a0 cmp r0, r4 - 8009900: d20f bcs.n 8009922 <_realloc_r+0x48> - 8009902: 4621 mov r1, r4 - 8009904: 4638 mov r0, r7 - 8009906: f7fd ff0b bl 8007720 <_malloc_r> - 800990a: 4605 mov r5, r0 - 800990c: 2800 cmp r0, #0 - 800990e: d0f2 beq.n 80098f6 <_realloc_r+0x1c> - 8009910: 4631 mov r1, r6 - 8009912: 4622 mov r2, r4 - 8009914: f7ff fa7c bl 8008e10 - 8009918: 4631 mov r1, r6 - 800991a: 4638 mov r0, r7 - 800991c: f7fd feb4 bl 8007688 <_free_r> - 8009920: e7e9 b.n 80098f6 <_realloc_r+0x1c> - 8009922: 4635 mov r5, r6 - 8009924: e7e7 b.n 80098f6 <_realloc_r+0x1c> +080097c4 <__hi0bits>: + 80097c4: 0c02 lsrs r2, r0, #16 + 80097c6: 0412 lsls r2, r2, #16 + 80097c8: 4603 mov r3, r0 + 80097ca: b9ca cbnz r2, 8009800 <__hi0bits+0x3c> + 80097cc: 0403 lsls r3, r0, #16 + 80097ce: 2010 movs r0, #16 + 80097d0: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 + 80097d4: bf04 itt eq + 80097d6: 021b lsleq r3, r3, #8 + 80097d8: 3008 addeq r0, #8 + 80097da: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 + 80097de: bf04 itt eq + 80097e0: 011b lsleq r3, r3, #4 + 80097e2: 3004 addeq r0, #4 + 80097e4: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 + 80097e8: bf04 itt eq + 80097ea: 009b lsleq r3, r3, #2 + 80097ec: 3002 addeq r0, #2 + 80097ee: 2b00 cmp r3, #0 + 80097f0: db05 blt.n 80097fe <__hi0bits+0x3a> + 80097f2: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 + 80097f6: f100 0001 add.w r0, r0, #1 + 80097fa: bf08 it eq + 80097fc: 2020 moveq r0, #32 + 80097fe: 4770 bx lr + 8009800: 2000 movs r0, #0 + 8009802: e7e5 b.n 80097d0 <__hi0bits+0xc> -08009926 <__sfputc_r>: - 8009926: 6893 ldr r3, [r2, #8] - 8009928: b410 push {r4} - 800992a: 3b01 subs r3, #1 - 800992c: 2b00 cmp r3, #0 - 800992e: 6093 str r3, [r2, #8] - 8009930: da07 bge.n 8009942 <__sfputc_r+0x1c> - 8009932: 6994 ldr r4, [r2, #24] - 8009934: 42a3 cmp r3, r4 - 8009936: db01 blt.n 800993c <__sfputc_r+0x16> - 8009938: 290a cmp r1, #10 - 800993a: d102 bne.n 8009942 <__sfputc_r+0x1c> - 800993c: bc10 pop {r4} - 800993e: f000 b949 b.w 8009bd4 <__swbuf_r> - 8009942: 6813 ldr r3, [r2, #0] - 8009944: 1c58 adds r0, r3, #1 - 8009946: 6010 str r0, [r2, #0] - 8009948: 7019 strb r1, [r3, #0] - 800994a: 4608 mov r0, r1 - 800994c: bc10 pop {r4} - 800994e: 4770 bx lr +08009804 <__lo0bits>: + 8009804: 6803 ldr r3, [r0, #0] + 8009806: 4602 mov r2, r0 + 8009808: f013 0007 ands.w r0, r3, #7 + 800980c: d00b beq.n 8009826 <__lo0bits+0x22> + 800980e: 07d9 lsls r1, r3, #31 + 8009810: d422 bmi.n 8009858 <__lo0bits+0x54> + 8009812: 0798 lsls r0, r3, #30 + 8009814: bf49 itett mi + 8009816: 085b lsrmi r3, r3, #1 + 8009818: 089b lsrpl r3, r3, #2 + 800981a: 2001 movmi r0, #1 + 800981c: 6013 strmi r3, [r2, #0] + 800981e: bf5c itt pl + 8009820: 2002 movpl r0, #2 + 8009822: 6013 strpl r3, [r2, #0] + 8009824: 4770 bx lr + 8009826: b299 uxth r1, r3 + 8009828: b909 cbnz r1, 800982e <__lo0bits+0x2a> + 800982a: 2010 movs r0, #16 + 800982c: 0c1b lsrs r3, r3, #16 + 800982e: f013 0fff tst.w r3, #255 ; 0xff + 8009832: bf04 itt eq + 8009834: 0a1b lsreq r3, r3, #8 + 8009836: 3008 addeq r0, #8 + 8009838: 0719 lsls r1, r3, #28 + 800983a: bf04 itt eq + 800983c: 091b lsreq r3, r3, #4 + 800983e: 3004 addeq r0, #4 + 8009840: 0799 lsls r1, r3, #30 + 8009842: bf04 itt eq + 8009844: 089b lsreq r3, r3, #2 + 8009846: 3002 addeq r0, #2 + 8009848: 07d9 lsls r1, r3, #31 + 800984a: d403 bmi.n 8009854 <__lo0bits+0x50> + 800984c: 085b lsrs r3, r3, #1 + 800984e: f100 0001 add.w r0, r0, #1 + 8009852: d003 beq.n 800985c <__lo0bits+0x58> + 8009854: 6013 str r3, [r2, #0] + 8009856: 4770 bx lr + 8009858: 2000 movs r0, #0 + 800985a: 4770 bx lr + 800985c: 2020 movs r0, #32 + 800985e: 4770 bx lr -08009950 <__sfputs_r>: - 8009950: b5f8 push {r3, r4, r5, r6, r7, lr} - 8009952: 4606 mov r6, r0 - 8009954: 460f mov r7, r1 - 8009956: 4614 mov r4, r2 - 8009958: 18d5 adds r5, r2, r3 - 800995a: 42ac cmp r4, r5 - 800995c: d101 bne.n 8009962 <__sfputs_r+0x12> - 800995e: 2000 movs r0, #0 - 8009960: e007 b.n 8009972 <__sfputs_r+0x22> - 8009962: 463a mov r2, r7 - 8009964: 4630 mov r0, r6 - 8009966: f814 1b01 ldrb.w r1, [r4], #1 - 800996a: f7ff ffdc bl 8009926 <__sfputc_r> - 800996e: 1c43 adds r3, r0, #1 - 8009970: d1f3 bne.n 800995a <__sfputs_r+0xa> - 8009972: bdf8 pop {r3, r4, r5, r6, r7, pc} +08009860 <__i2b>: + 8009860: b510 push {r4, lr} + 8009862: 460c mov r4, r1 + 8009864: 2101 movs r1, #1 + 8009866: f7ff ff01 bl 800966c <_Balloc> + 800986a: 4602 mov r2, r0 + 800986c: b928 cbnz r0, 800987a <__i2b+0x1a> + 800986e: f44f 71a0 mov.w r1, #320 ; 0x140 + 8009872: 4b04 ldr r3, [pc, #16] ; (8009884 <__i2b+0x24>) + 8009874: 4804 ldr r0, [pc, #16] ; (8009888 <__i2b+0x28>) + 8009876: f000 fddb bl 800a430 <__assert_func> + 800987a: 2301 movs r3, #1 + 800987c: 6144 str r4, [r0, #20] + 800987e: 6103 str r3, [r0, #16] + 8009880: bd10 pop {r4, pc} + 8009882: bf00 nop + 8009884: 0800b343 .word 0x0800b343 + 8009888: 0800b3b4 .word 0x0800b3b4 -08009974 <_vfiprintf_r>: - 8009974: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8009978: 460d mov r5, r1 - 800997a: 4614 mov r4, r2 - 800997c: 4698 mov r8, r3 - 800997e: 4606 mov r6, r0 - 8009980: b09d sub sp, #116 ; 0x74 - 8009982: b118 cbz r0, 800998c <_vfiprintf_r+0x18> - 8009984: 6983 ldr r3, [r0, #24] - 8009986: b90b cbnz r3, 800998c <_vfiprintf_r+0x18> - 8009988: f000 fb14 bl 8009fb4 <__sinit> - 800998c: 4b89 ldr r3, [pc, #548] ; (8009bb4 <_vfiprintf_r+0x240>) - 800998e: 429d cmp r5, r3 - 8009990: d11b bne.n 80099ca <_vfiprintf_r+0x56> - 8009992: 6875 ldr r5, [r6, #4] - 8009994: 6e6b ldr r3, [r5, #100] ; 0x64 - 8009996: 07d9 lsls r1, r3, #31 - 8009998: d405 bmi.n 80099a6 <_vfiprintf_r+0x32> - 800999a: 89ab ldrh r3, [r5, #12] - 800999c: 059a lsls r2, r3, #22 - 800999e: d402 bmi.n 80099a6 <_vfiprintf_r+0x32> - 80099a0: 6da8 ldr r0, [r5, #88] ; 0x58 - 80099a2: f7ff ff6c bl 800987e <__retarget_lock_acquire_recursive> - 80099a6: 89ab ldrh r3, [r5, #12] - 80099a8: 071b lsls r3, r3, #28 - 80099aa: d501 bpl.n 80099b0 <_vfiprintf_r+0x3c> - 80099ac: 692b ldr r3, [r5, #16] - 80099ae: b9eb cbnz r3, 80099ec <_vfiprintf_r+0x78> - 80099b0: 4629 mov r1, r5 - 80099b2: 4630 mov r0, r6 - 80099b4: f000 f96e bl 8009c94 <__swsetup_r> - 80099b8: b1c0 cbz r0, 80099ec <_vfiprintf_r+0x78> - 80099ba: 6e6b ldr r3, [r5, #100] ; 0x64 - 80099bc: 07dc lsls r4, r3, #31 - 80099be: d50e bpl.n 80099de <_vfiprintf_r+0x6a> - 80099c0: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80099c4: b01d add sp, #116 ; 0x74 - 80099c6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80099ca: 4b7b ldr r3, [pc, #492] ; (8009bb8 <_vfiprintf_r+0x244>) - 80099cc: 429d cmp r5, r3 - 80099ce: d101 bne.n 80099d4 <_vfiprintf_r+0x60> - 80099d0: 68b5 ldr r5, [r6, #8] - 80099d2: e7df b.n 8009994 <_vfiprintf_r+0x20> - 80099d4: 4b79 ldr r3, [pc, #484] ; (8009bbc <_vfiprintf_r+0x248>) - 80099d6: 429d cmp r5, r3 - 80099d8: bf08 it eq - 80099da: 68f5 ldreq r5, [r6, #12] - 80099dc: e7da b.n 8009994 <_vfiprintf_r+0x20> - 80099de: 89ab ldrh r3, [r5, #12] - 80099e0: 0598 lsls r0, r3, #22 - 80099e2: d4ed bmi.n 80099c0 <_vfiprintf_r+0x4c> - 80099e4: 6da8 ldr r0, [r5, #88] ; 0x58 - 80099e6: f7ff ff4b bl 8009880 <__retarget_lock_release_recursive> - 80099ea: e7e9 b.n 80099c0 <_vfiprintf_r+0x4c> - 80099ec: 2300 movs r3, #0 - 80099ee: 9309 str r3, [sp, #36] ; 0x24 - 80099f0: 2320 movs r3, #32 - 80099f2: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 80099f6: 2330 movs r3, #48 ; 0x30 - 80099f8: f04f 0901 mov.w r9, #1 - 80099fc: f8cd 800c str.w r8, [sp, #12] - 8009a00: f8df 81bc ldr.w r8, [pc, #444] ; 8009bc0 <_vfiprintf_r+0x24c> - 8009a04: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 8009a08: 4623 mov r3, r4 - 8009a0a: 469a mov sl, r3 - 8009a0c: f813 2b01 ldrb.w r2, [r3], #1 - 8009a10: b10a cbz r2, 8009a16 <_vfiprintf_r+0xa2> - 8009a12: 2a25 cmp r2, #37 ; 0x25 - 8009a14: d1f9 bne.n 8009a0a <_vfiprintf_r+0x96> - 8009a16: ebba 0b04 subs.w fp, sl, r4 - 8009a1a: d00b beq.n 8009a34 <_vfiprintf_r+0xc0> - 8009a1c: 465b mov r3, fp - 8009a1e: 4622 mov r2, r4 - 8009a20: 4629 mov r1, r5 - 8009a22: 4630 mov r0, r6 - 8009a24: f7ff ff94 bl 8009950 <__sfputs_r> - 8009a28: 3001 adds r0, #1 - 8009a2a: f000 80aa beq.w 8009b82 <_vfiprintf_r+0x20e> - 8009a2e: 9a09 ldr r2, [sp, #36] ; 0x24 - 8009a30: 445a add r2, fp - 8009a32: 9209 str r2, [sp, #36] ; 0x24 - 8009a34: f89a 3000 ldrb.w r3, [sl] - 8009a38: 2b00 cmp r3, #0 - 8009a3a: f000 80a2 beq.w 8009b82 <_vfiprintf_r+0x20e> - 8009a3e: 2300 movs r3, #0 - 8009a40: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8009a44: e9cd 2305 strd r2, r3, [sp, #20] - 8009a48: f10a 0a01 add.w sl, sl, #1 - 8009a4c: 9304 str r3, [sp, #16] - 8009a4e: 9307 str r3, [sp, #28] - 8009a50: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 8009a54: 931a str r3, [sp, #104] ; 0x68 - 8009a56: 4654 mov r4, sl - 8009a58: 2205 movs r2, #5 - 8009a5a: f814 1b01 ldrb.w r1, [r4], #1 - 8009a5e: 4858 ldr r0, [pc, #352] ; (8009bc0 <_vfiprintf_r+0x24c>) - 8009a60: f7ff f9c8 bl 8008df4 - 8009a64: 9a04 ldr r2, [sp, #16] - 8009a66: b9d8 cbnz r0, 8009aa0 <_vfiprintf_r+0x12c> - 8009a68: 06d1 lsls r1, r2, #27 - 8009a6a: bf44 itt mi - 8009a6c: 2320 movmi r3, #32 - 8009a6e: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8009a72: 0713 lsls r3, r2, #28 - 8009a74: bf44 itt mi - 8009a76: 232b movmi r3, #43 ; 0x2b - 8009a78: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8009a7c: f89a 3000 ldrb.w r3, [sl] - 8009a80: 2b2a cmp r3, #42 ; 0x2a - 8009a82: d015 beq.n 8009ab0 <_vfiprintf_r+0x13c> - 8009a84: 4654 mov r4, sl - 8009a86: 2000 movs r0, #0 - 8009a88: f04f 0c0a mov.w ip, #10 - 8009a8c: 9a07 ldr r2, [sp, #28] - 8009a8e: 4621 mov r1, r4 - 8009a90: f811 3b01 ldrb.w r3, [r1], #1 - 8009a94: 3b30 subs r3, #48 ; 0x30 - 8009a96: 2b09 cmp r3, #9 - 8009a98: d94e bls.n 8009b38 <_vfiprintf_r+0x1c4> - 8009a9a: b1b0 cbz r0, 8009aca <_vfiprintf_r+0x156> - 8009a9c: 9207 str r2, [sp, #28] - 8009a9e: e014 b.n 8009aca <_vfiprintf_r+0x156> - 8009aa0: eba0 0308 sub.w r3, r0, r8 - 8009aa4: fa09 f303 lsl.w r3, r9, r3 - 8009aa8: 4313 orrs r3, r2 - 8009aaa: 46a2 mov sl, r4 - 8009aac: 9304 str r3, [sp, #16] - 8009aae: e7d2 b.n 8009a56 <_vfiprintf_r+0xe2> - 8009ab0: 9b03 ldr r3, [sp, #12] - 8009ab2: 1d19 adds r1, r3, #4 - 8009ab4: 681b ldr r3, [r3, #0] - 8009ab6: 9103 str r1, [sp, #12] - 8009ab8: 2b00 cmp r3, #0 - 8009aba: bfbb ittet lt - 8009abc: 425b neglt r3, r3 - 8009abe: f042 0202 orrlt.w r2, r2, #2 - 8009ac2: 9307 strge r3, [sp, #28] - 8009ac4: 9307 strlt r3, [sp, #28] - 8009ac6: bfb8 it lt - 8009ac8: 9204 strlt r2, [sp, #16] - 8009aca: 7823 ldrb r3, [r4, #0] - 8009acc: 2b2e cmp r3, #46 ; 0x2e - 8009ace: d10c bne.n 8009aea <_vfiprintf_r+0x176> - 8009ad0: 7863 ldrb r3, [r4, #1] - 8009ad2: 2b2a cmp r3, #42 ; 0x2a - 8009ad4: d135 bne.n 8009b42 <_vfiprintf_r+0x1ce> - 8009ad6: 9b03 ldr r3, [sp, #12] - 8009ad8: 3402 adds r4, #2 - 8009ada: 1d1a adds r2, r3, #4 - 8009adc: 681b ldr r3, [r3, #0] - 8009ade: 9203 str r2, [sp, #12] - 8009ae0: 2b00 cmp r3, #0 - 8009ae2: bfb8 it lt - 8009ae4: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 8009ae8: 9305 str r3, [sp, #20] - 8009aea: f8df a0e4 ldr.w sl, [pc, #228] ; 8009bd0 <_vfiprintf_r+0x25c> - 8009aee: 2203 movs r2, #3 - 8009af0: 4650 mov r0, sl - 8009af2: 7821 ldrb r1, [r4, #0] - 8009af4: f7ff f97e bl 8008df4 - 8009af8: b140 cbz r0, 8009b0c <_vfiprintf_r+0x198> - 8009afa: 2340 movs r3, #64 ; 0x40 - 8009afc: eba0 000a sub.w r0, r0, sl - 8009b00: fa03 f000 lsl.w r0, r3, r0 - 8009b04: 9b04 ldr r3, [sp, #16] - 8009b06: 3401 adds r4, #1 - 8009b08: 4303 orrs r3, r0 - 8009b0a: 9304 str r3, [sp, #16] - 8009b0c: f814 1b01 ldrb.w r1, [r4], #1 - 8009b10: 2206 movs r2, #6 - 8009b12: 482c ldr r0, [pc, #176] ; (8009bc4 <_vfiprintf_r+0x250>) - 8009b14: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 8009b18: f7ff f96c bl 8008df4 - 8009b1c: 2800 cmp r0, #0 - 8009b1e: d03f beq.n 8009ba0 <_vfiprintf_r+0x22c> - 8009b20: 4b29 ldr r3, [pc, #164] ; (8009bc8 <_vfiprintf_r+0x254>) - 8009b22: bb1b cbnz r3, 8009b6c <_vfiprintf_r+0x1f8> - 8009b24: 9b03 ldr r3, [sp, #12] - 8009b26: 3307 adds r3, #7 - 8009b28: f023 0307 bic.w r3, r3, #7 - 8009b2c: 3308 adds r3, #8 - 8009b2e: 9303 str r3, [sp, #12] - 8009b30: 9b09 ldr r3, [sp, #36] ; 0x24 - 8009b32: 443b add r3, r7 - 8009b34: 9309 str r3, [sp, #36] ; 0x24 - 8009b36: e767 b.n 8009a08 <_vfiprintf_r+0x94> - 8009b38: 460c mov r4, r1 - 8009b3a: 2001 movs r0, #1 - 8009b3c: fb0c 3202 mla r2, ip, r2, r3 - 8009b40: e7a5 b.n 8009a8e <_vfiprintf_r+0x11a> - 8009b42: 2300 movs r3, #0 - 8009b44: f04f 0c0a mov.w ip, #10 - 8009b48: 4619 mov r1, r3 - 8009b4a: 3401 adds r4, #1 - 8009b4c: 9305 str r3, [sp, #20] - 8009b4e: 4620 mov r0, r4 - 8009b50: f810 2b01 ldrb.w r2, [r0], #1 - 8009b54: 3a30 subs r2, #48 ; 0x30 - 8009b56: 2a09 cmp r2, #9 - 8009b58: d903 bls.n 8009b62 <_vfiprintf_r+0x1ee> - 8009b5a: 2b00 cmp r3, #0 - 8009b5c: d0c5 beq.n 8009aea <_vfiprintf_r+0x176> - 8009b5e: 9105 str r1, [sp, #20] - 8009b60: e7c3 b.n 8009aea <_vfiprintf_r+0x176> - 8009b62: 4604 mov r4, r0 - 8009b64: 2301 movs r3, #1 - 8009b66: fb0c 2101 mla r1, ip, r1, r2 - 8009b6a: e7f0 b.n 8009b4e <_vfiprintf_r+0x1da> - 8009b6c: ab03 add r3, sp, #12 - 8009b6e: 9300 str r3, [sp, #0] - 8009b70: 462a mov r2, r5 - 8009b72: 4630 mov r0, r6 - 8009b74: 4b15 ldr r3, [pc, #84] ; (8009bcc <_vfiprintf_r+0x258>) - 8009b76: a904 add r1, sp, #16 - 8009b78: f7fd feca bl 8007910 <_printf_float> - 8009b7c: 4607 mov r7, r0 - 8009b7e: 1c78 adds r0, r7, #1 - 8009b80: d1d6 bne.n 8009b30 <_vfiprintf_r+0x1bc> - 8009b82: 6e6b ldr r3, [r5, #100] ; 0x64 - 8009b84: 07d9 lsls r1, r3, #31 - 8009b86: d405 bmi.n 8009b94 <_vfiprintf_r+0x220> - 8009b88: 89ab ldrh r3, [r5, #12] - 8009b8a: 059a lsls r2, r3, #22 - 8009b8c: d402 bmi.n 8009b94 <_vfiprintf_r+0x220> - 8009b8e: 6da8 ldr r0, [r5, #88] ; 0x58 - 8009b90: f7ff fe76 bl 8009880 <__retarget_lock_release_recursive> - 8009b94: 89ab ldrh r3, [r5, #12] - 8009b96: 065b lsls r3, r3, #25 - 8009b98: f53f af12 bmi.w 80099c0 <_vfiprintf_r+0x4c> - 8009b9c: 9809 ldr r0, [sp, #36] ; 0x24 - 8009b9e: e711 b.n 80099c4 <_vfiprintf_r+0x50> - 8009ba0: ab03 add r3, sp, #12 - 8009ba2: 9300 str r3, [sp, #0] - 8009ba4: 462a mov r2, r5 - 8009ba6: 4630 mov r0, r6 - 8009ba8: 4b08 ldr r3, [pc, #32] ; (8009bcc <_vfiprintf_r+0x258>) - 8009baa: a904 add r1, sp, #16 - 8009bac: f7fe f94c bl 8007e48 <_printf_i> - 8009bb0: e7e4 b.n 8009b7c <_vfiprintf_r+0x208> - 8009bb2: bf00 nop - 8009bb4: 0800b2dc .word 0x0800b2dc - 8009bb8: 0800b2fc .word 0x0800b2fc - 8009bbc: 0800b2bc .word 0x0800b2bc - 8009bc0: 0800b164 .word 0x0800b164 - 8009bc4: 0800b16e .word 0x0800b16e - 8009bc8: 08007911 .word 0x08007911 - 8009bcc: 08009951 .word 0x08009951 - 8009bd0: 0800b16a .word 0x0800b16a +0800988c <__multiply>: + 800988c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8009890: 4614 mov r4, r2 + 8009892: 690a ldr r2, [r1, #16] + 8009894: 6923 ldr r3, [r4, #16] + 8009896: 460d mov r5, r1 + 8009898: 429a cmp r2, r3 + 800989a: bfbe ittt lt + 800989c: 460b movlt r3, r1 + 800989e: 4625 movlt r5, r4 + 80098a0: 461c movlt r4, r3 + 80098a2: f8d5 a010 ldr.w sl, [r5, #16] + 80098a6: f8d4 9010 ldr.w r9, [r4, #16] + 80098aa: 68ab ldr r3, [r5, #8] + 80098ac: 6869 ldr r1, [r5, #4] + 80098ae: eb0a 0709 add.w r7, sl, r9 + 80098b2: 42bb cmp r3, r7 + 80098b4: b085 sub sp, #20 + 80098b6: bfb8 it lt + 80098b8: 3101 addlt r1, #1 + 80098ba: f7ff fed7 bl 800966c <_Balloc> + 80098be: b930 cbnz r0, 80098ce <__multiply+0x42> + 80098c0: 4602 mov r2, r0 + 80098c2: f240 115d movw r1, #349 ; 0x15d + 80098c6: 4b41 ldr r3, [pc, #260] ; (80099cc <__multiply+0x140>) + 80098c8: 4841 ldr r0, [pc, #260] ; (80099d0 <__multiply+0x144>) + 80098ca: f000 fdb1 bl 800a430 <__assert_func> + 80098ce: f100 0614 add.w r6, r0, #20 + 80098d2: 4633 mov r3, r6 + 80098d4: 2200 movs r2, #0 + 80098d6: eb06 0887 add.w r8, r6, r7, lsl #2 + 80098da: 4543 cmp r3, r8 + 80098dc: d31e bcc.n 800991c <__multiply+0x90> + 80098de: f105 0c14 add.w ip, r5, #20 + 80098e2: f104 0314 add.w r3, r4, #20 + 80098e6: eb0c 0c8a add.w ip, ip, sl, lsl #2 + 80098ea: eb03 0289 add.w r2, r3, r9, lsl #2 + 80098ee: 9202 str r2, [sp, #8] + 80098f0: ebac 0205 sub.w r2, ip, r5 + 80098f4: 3a15 subs r2, #21 + 80098f6: f022 0203 bic.w r2, r2, #3 + 80098fa: 3204 adds r2, #4 + 80098fc: f105 0115 add.w r1, r5, #21 + 8009900: 458c cmp ip, r1 + 8009902: bf38 it cc + 8009904: 2204 movcc r2, #4 + 8009906: 9201 str r2, [sp, #4] + 8009908: 9a02 ldr r2, [sp, #8] + 800990a: 9303 str r3, [sp, #12] + 800990c: 429a cmp r2, r3 + 800990e: d808 bhi.n 8009922 <__multiply+0x96> + 8009910: 2f00 cmp r7, #0 + 8009912: dc55 bgt.n 80099c0 <__multiply+0x134> + 8009914: 6107 str r7, [r0, #16] + 8009916: b005 add sp, #20 + 8009918: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800991c: f843 2b04 str.w r2, [r3], #4 + 8009920: e7db b.n 80098da <__multiply+0x4e> + 8009922: f8b3 a000 ldrh.w sl, [r3] + 8009926: f1ba 0f00 cmp.w sl, #0 + 800992a: d020 beq.n 800996e <__multiply+0xe2> + 800992c: 46b1 mov r9, r6 + 800992e: 2200 movs r2, #0 + 8009930: f105 0e14 add.w lr, r5, #20 + 8009934: f85e 4b04 ldr.w r4, [lr], #4 + 8009938: f8d9 b000 ldr.w fp, [r9] + 800993c: b2a1 uxth r1, r4 + 800993e: fa1f fb8b uxth.w fp, fp + 8009942: fb0a b101 mla r1, sl, r1, fp + 8009946: 4411 add r1, r2 + 8009948: f8d9 2000 ldr.w r2, [r9] + 800994c: 0c24 lsrs r4, r4, #16 + 800994e: 0c12 lsrs r2, r2, #16 + 8009950: fb0a 2404 mla r4, sl, r4, r2 + 8009954: eb04 4411 add.w r4, r4, r1, lsr #16 + 8009958: b289 uxth r1, r1 + 800995a: ea41 4104 orr.w r1, r1, r4, lsl #16 + 800995e: 45f4 cmp ip, lr + 8009960: ea4f 4214 mov.w r2, r4, lsr #16 + 8009964: f849 1b04 str.w r1, [r9], #4 + 8009968: d8e4 bhi.n 8009934 <__multiply+0xa8> + 800996a: 9901 ldr r1, [sp, #4] + 800996c: 5072 str r2, [r6, r1] + 800996e: 9a03 ldr r2, [sp, #12] + 8009970: 3304 adds r3, #4 + 8009972: f8b2 9002 ldrh.w r9, [r2, #2] + 8009976: f1b9 0f00 cmp.w r9, #0 + 800997a: d01f beq.n 80099bc <__multiply+0x130> + 800997c: 46b6 mov lr, r6 + 800997e: f04f 0a00 mov.w sl, #0 + 8009982: 6834 ldr r4, [r6, #0] + 8009984: f105 0114 add.w r1, r5, #20 + 8009988: 880a ldrh r2, [r1, #0] + 800998a: f8be b002 ldrh.w fp, [lr, #2] + 800998e: b2a4 uxth r4, r4 + 8009990: fb09 b202 mla r2, r9, r2, fp + 8009994: 4492 add sl, r2 + 8009996: ea44 440a orr.w r4, r4, sl, lsl #16 + 800999a: f84e 4b04 str.w r4, [lr], #4 + 800999e: f851 4b04 ldr.w r4, [r1], #4 + 80099a2: f8be 2000 ldrh.w r2, [lr] + 80099a6: 0c24 lsrs r4, r4, #16 + 80099a8: fb09 2404 mla r4, r9, r4, r2 + 80099ac: 458c cmp ip, r1 + 80099ae: eb04 441a add.w r4, r4, sl, lsr #16 + 80099b2: ea4f 4a14 mov.w sl, r4, lsr #16 + 80099b6: d8e7 bhi.n 8009988 <__multiply+0xfc> + 80099b8: 9a01 ldr r2, [sp, #4] + 80099ba: 50b4 str r4, [r6, r2] + 80099bc: 3604 adds r6, #4 + 80099be: e7a3 b.n 8009908 <__multiply+0x7c> + 80099c0: f858 3d04 ldr.w r3, [r8, #-4]! + 80099c4: 2b00 cmp r3, #0 + 80099c6: d1a5 bne.n 8009914 <__multiply+0x88> + 80099c8: 3f01 subs r7, #1 + 80099ca: e7a1 b.n 8009910 <__multiply+0x84> + 80099cc: 0800b343 .word 0x0800b343 + 80099d0: 0800b3b4 .word 0x0800b3b4 -08009bd4 <__swbuf_r>: - 8009bd4: b5f8 push {r3, r4, r5, r6, r7, lr} - 8009bd6: 460e mov r6, r1 - 8009bd8: 4614 mov r4, r2 - 8009bda: 4605 mov r5, r0 - 8009bdc: b118 cbz r0, 8009be6 <__swbuf_r+0x12> - 8009bde: 6983 ldr r3, [r0, #24] - 8009be0: b90b cbnz r3, 8009be6 <__swbuf_r+0x12> - 8009be2: f000 f9e7 bl 8009fb4 <__sinit> - 8009be6: 4b21 ldr r3, [pc, #132] ; (8009c6c <__swbuf_r+0x98>) - 8009be8: 429c cmp r4, r3 - 8009bea: d12b bne.n 8009c44 <__swbuf_r+0x70> - 8009bec: 686c ldr r4, [r5, #4] - 8009bee: 69a3 ldr r3, [r4, #24] - 8009bf0: 60a3 str r3, [r4, #8] - 8009bf2: 89a3 ldrh r3, [r4, #12] - 8009bf4: 071a lsls r2, r3, #28 - 8009bf6: d52f bpl.n 8009c58 <__swbuf_r+0x84> - 8009bf8: 6923 ldr r3, [r4, #16] - 8009bfa: b36b cbz r3, 8009c58 <__swbuf_r+0x84> - 8009bfc: 6923 ldr r3, [r4, #16] - 8009bfe: 6820 ldr r0, [r4, #0] - 8009c00: b2f6 uxtb r6, r6 - 8009c02: 1ac0 subs r0, r0, r3 - 8009c04: 6963 ldr r3, [r4, #20] - 8009c06: 4637 mov r7, r6 - 8009c08: 4283 cmp r3, r0 - 8009c0a: dc04 bgt.n 8009c16 <__swbuf_r+0x42> - 8009c0c: 4621 mov r1, r4 - 8009c0e: 4628 mov r0, r5 - 8009c10: f000 f93c bl 8009e8c <_fflush_r> - 8009c14: bb30 cbnz r0, 8009c64 <__swbuf_r+0x90> - 8009c16: 68a3 ldr r3, [r4, #8] - 8009c18: 3001 adds r0, #1 - 8009c1a: 3b01 subs r3, #1 - 8009c1c: 60a3 str r3, [r4, #8] - 8009c1e: 6823 ldr r3, [r4, #0] - 8009c20: 1c5a adds r2, r3, #1 - 8009c22: 6022 str r2, [r4, #0] - 8009c24: 701e strb r6, [r3, #0] - 8009c26: 6963 ldr r3, [r4, #20] - 8009c28: 4283 cmp r3, r0 - 8009c2a: d004 beq.n 8009c36 <__swbuf_r+0x62> - 8009c2c: 89a3 ldrh r3, [r4, #12] - 8009c2e: 07db lsls r3, r3, #31 - 8009c30: d506 bpl.n 8009c40 <__swbuf_r+0x6c> - 8009c32: 2e0a cmp r6, #10 - 8009c34: d104 bne.n 8009c40 <__swbuf_r+0x6c> - 8009c36: 4621 mov r1, r4 - 8009c38: 4628 mov r0, r5 - 8009c3a: f000 f927 bl 8009e8c <_fflush_r> - 8009c3e: b988 cbnz r0, 8009c64 <__swbuf_r+0x90> - 8009c40: 4638 mov r0, r7 - 8009c42: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8009c44: 4b0a ldr r3, [pc, #40] ; (8009c70 <__swbuf_r+0x9c>) - 8009c46: 429c cmp r4, r3 - 8009c48: d101 bne.n 8009c4e <__swbuf_r+0x7a> - 8009c4a: 68ac ldr r4, [r5, #8] - 8009c4c: e7cf b.n 8009bee <__swbuf_r+0x1a> - 8009c4e: 4b09 ldr r3, [pc, #36] ; (8009c74 <__swbuf_r+0xa0>) - 8009c50: 429c cmp r4, r3 - 8009c52: bf08 it eq - 8009c54: 68ec ldreq r4, [r5, #12] - 8009c56: e7ca b.n 8009bee <__swbuf_r+0x1a> - 8009c58: 4621 mov r1, r4 - 8009c5a: 4628 mov r0, r5 - 8009c5c: f000 f81a bl 8009c94 <__swsetup_r> - 8009c60: 2800 cmp r0, #0 - 8009c62: d0cb beq.n 8009bfc <__swbuf_r+0x28> - 8009c64: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff - 8009c68: e7ea b.n 8009c40 <__swbuf_r+0x6c> - 8009c6a: bf00 nop - 8009c6c: 0800b2dc .word 0x0800b2dc - 8009c70: 0800b2fc .word 0x0800b2fc - 8009c74: 0800b2bc .word 0x0800b2bc +080099d4 <__pow5mult>: + 80099d4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 80099d8: 4615 mov r5, r2 + 80099da: f012 0203 ands.w r2, r2, #3 + 80099de: 4606 mov r6, r0 + 80099e0: 460f mov r7, r1 + 80099e2: d007 beq.n 80099f4 <__pow5mult+0x20> + 80099e4: 4c25 ldr r4, [pc, #148] ; (8009a7c <__pow5mult+0xa8>) + 80099e6: 3a01 subs r2, #1 + 80099e8: 2300 movs r3, #0 + 80099ea: f854 2022 ldr.w r2, [r4, r2, lsl #2] + 80099ee: f7ff fe9f bl 8009730 <__multadd> + 80099f2: 4607 mov r7, r0 + 80099f4: 10ad asrs r5, r5, #2 + 80099f6: d03d beq.n 8009a74 <__pow5mult+0xa0> + 80099f8: 6a74 ldr r4, [r6, #36] ; 0x24 + 80099fa: b97c cbnz r4, 8009a1c <__pow5mult+0x48> + 80099fc: 2010 movs r0, #16 + 80099fe: f7fd febb bl 8007778 + 8009a02: 4602 mov r2, r0 + 8009a04: 6270 str r0, [r6, #36] ; 0x24 + 8009a06: b928 cbnz r0, 8009a14 <__pow5mult+0x40> + 8009a08: f44f 71d7 mov.w r1, #430 ; 0x1ae + 8009a0c: 4b1c ldr r3, [pc, #112] ; (8009a80 <__pow5mult+0xac>) + 8009a0e: 481d ldr r0, [pc, #116] ; (8009a84 <__pow5mult+0xb0>) + 8009a10: f000 fd0e bl 800a430 <__assert_func> + 8009a14: e9c0 4401 strd r4, r4, [r0, #4] + 8009a18: 6004 str r4, [r0, #0] + 8009a1a: 60c4 str r4, [r0, #12] + 8009a1c: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 + 8009a20: f8d8 4008 ldr.w r4, [r8, #8] + 8009a24: b94c cbnz r4, 8009a3a <__pow5mult+0x66> + 8009a26: f240 2171 movw r1, #625 ; 0x271 + 8009a2a: 4630 mov r0, r6 + 8009a2c: f7ff ff18 bl 8009860 <__i2b> + 8009a30: 2300 movs r3, #0 + 8009a32: 4604 mov r4, r0 + 8009a34: f8c8 0008 str.w r0, [r8, #8] + 8009a38: 6003 str r3, [r0, #0] + 8009a3a: f04f 0900 mov.w r9, #0 + 8009a3e: 07eb lsls r3, r5, #31 + 8009a40: d50a bpl.n 8009a58 <__pow5mult+0x84> + 8009a42: 4639 mov r1, r7 + 8009a44: 4622 mov r2, r4 + 8009a46: 4630 mov r0, r6 + 8009a48: f7ff ff20 bl 800988c <__multiply> + 8009a4c: 4680 mov r8, r0 + 8009a4e: 4639 mov r1, r7 + 8009a50: 4630 mov r0, r6 + 8009a52: f7ff fe4b bl 80096ec <_Bfree> + 8009a56: 4647 mov r7, r8 + 8009a58: 106d asrs r5, r5, #1 + 8009a5a: d00b beq.n 8009a74 <__pow5mult+0xa0> + 8009a5c: 6820 ldr r0, [r4, #0] + 8009a5e: b938 cbnz r0, 8009a70 <__pow5mult+0x9c> + 8009a60: 4622 mov r2, r4 + 8009a62: 4621 mov r1, r4 + 8009a64: 4630 mov r0, r6 + 8009a66: f7ff ff11 bl 800988c <__multiply> + 8009a6a: 6020 str r0, [r4, #0] + 8009a6c: f8c0 9000 str.w r9, [r0] + 8009a70: 4604 mov r4, r0 + 8009a72: e7e4 b.n 8009a3e <__pow5mult+0x6a> + 8009a74: 4638 mov r0, r7 + 8009a76: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 8009a7a: bf00 nop + 8009a7c: 0800b508 .word 0x0800b508 + 8009a80: 0800b2cd .word 0x0800b2cd + 8009a84: 0800b3b4 .word 0x0800b3b4 -08009c78 <__ascii_wctomb>: - 8009c78: 4603 mov r3, r0 - 8009c7a: 4608 mov r0, r1 - 8009c7c: b141 cbz r1, 8009c90 <__ascii_wctomb+0x18> - 8009c7e: 2aff cmp r2, #255 ; 0xff - 8009c80: d904 bls.n 8009c8c <__ascii_wctomb+0x14> - 8009c82: 228a movs r2, #138 ; 0x8a - 8009c84: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8009c88: 601a str r2, [r3, #0] - 8009c8a: 4770 bx lr - 8009c8c: 2001 movs r0, #1 - 8009c8e: 700a strb r2, [r1, #0] - 8009c90: 4770 bx lr +08009a88 <__lshift>: + 8009a88: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8009a8c: 460c mov r4, r1 + 8009a8e: 4607 mov r7, r0 + 8009a90: 4691 mov r9, r2 + 8009a92: 6923 ldr r3, [r4, #16] + 8009a94: 6849 ldr r1, [r1, #4] + 8009a96: eb03 1862 add.w r8, r3, r2, asr #5 + 8009a9a: 68a3 ldr r3, [r4, #8] + 8009a9c: ea4f 1a62 mov.w sl, r2, asr #5 + 8009aa0: f108 0601 add.w r6, r8, #1 + 8009aa4: 42b3 cmp r3, r6 + 8009aa6: db0b blt.n 8009ac0 <__lshift+0x38> + 8009aa8: 4638 mov r0, r7 + 8009aaa: f7ff fddf bl 800966c <_Balloc> + 8009aae: 4605 mov r5, r0 + 8009ab0: b948 cbnz r0, 8009ac6 <__lshift+0x3e> + 8009ab2: 4602 mov r2, r0 + 8009ab4: f240 11d9 movw r1, #473 ; 0x1d9 + 8009ab8: 4b27 ldr r3, [pc, #156] ; (8009b58 <__lshift+0xd0>) + 8009aba: 4828 ldr r0, [pc, #160] ; (8009b5c <__lshift+0xd4>) + 8009abc: f000 fcb8 bl 800a430 <__assert_func> + 8009ac0: 3101 adds r1, #1 + 8009ac2: 005b lsls r3, r3, #1 + 8009ac4: e7ee b.n 8009aa4 <__lshift+0x1c> + 8009ac6: 2300 movs r3, #0 + 8009ac8: f100 0114 add.w r1, r0, #20 + 8009acc: f100 0210 add.w r2, r0, #16 + 8009ad0: 4618 mov r0, r3 + 8009ad2: 4553 cmp r3, sl + 8009ad4: db33 blt.n 8009b3e <__lshift+0xb6> + 8009ad6: 6920 ldr r0, [r4, #16] + 8009ad8: ea2a 7aea bic.w sl, sl, sl, asr #31 + 8009adc: f104 0314 add.w r3, r4, #20 + 8009ae0: f019 091f ands.w r9, r9, #31 + 8009ae4: eb01 018a add.w r1, r1, sl, lsl #2 + 8009ae8: eb03 0c80 add.w ip, r3, r0, lsl #2 + 8009aec: d02b beq.n 8009b46 <__lshift+0xbe> + 8009aee: 468a mov sl, r1 + 8009af0: 2200 movs r2, #0 + 8009af2: f1c9 0e20 rsb lr, r9, #32 + 8009af6: 6818 ldr r0, [r3, #0] + 8009af8: fa00 f009 lsl.w r0, r0, r9 + 8009afc: 4302 orrs r2, r0 + 8009afe: f84a 2b04 str.w r2, [sl], #4 + 8009b02: f853 2b04 ldr.w r2, [r3], #4 + 8009b06: 459c cmp ip, r3 + 8009b08: fa22 f20e lsr.w r2, r2, lr + 8009b0c: d8f3 bhi.n 8009af6 <__lshift+0x6e> + 8009b0e: ebac 0304 sub.w r3, ip, r4 + 8009b12: 3b15 subs r3, #21 + 8009b14: f023 0303 bic.w r3, r3, #3 + 8009b18: 3304 adds r3, #4 + 8009b1a: f104 0015 add.w r0, r4, #21 + 8009b1e: 4584 cmp ip, r0 + 8009b20: bf38 it cc + 8009b22: 2304 movcc r3, #4 + 8009b24: 50ca str r2, [r1, r3] + 8009b26: b10a cbz r2, 8009b2c <__lshift+0xa4> + 8009b28: f108 0602 add.w r6, r8, #2 + 8009b2c: 3e01 subs r6, #1 + 8009b2e: 4638 mov r0, r7 + 8009b30: 4621 mov r1, r4 + 8009b32: 612e str r6, [r5, #16] + 8009b34: f7ff fdda bl 80096ec <_Bfree> + 8009b38: 4628 mov r0, r5 + 8009b3a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8009b3e: f842 0f04 str.w r0, [r2, #4]! + 8009b42: 3301 adds r3, #1 + 8009b44: e7c5 b.n 8009ad2 <__lshift+0x4a> + 8009b46: 3904 subs r1, #4 + 8009b48: f853 2b04 ldr.w r2, [r3], #4 + 8009b4c: 459c cmp ip, r3 + 8009b4e: f841 2f04 str.w r2, [r1, #4]! + 8009b52: d8f9 bhi.n 8009b48 <__lshift+0xc0> + 8009b54: e7ea b.n 8009b2c <__lshift+0xa4> + 8009b56: bf00 nop + 8009b58: 0800b343 .word 0x0800b343 + 8009b5c: 0800b3b4 .word 0x0800b3b4 + +08009b60 <__mcmp>: + 8009b60: 4603 mov r3, r0 + 8009b62: 690a ldr r2, [r1, #16] + 8009b64: 6900 ldr r0, [r0, #16] + 8009b66: b530 push {r4, r5, lr} + 8009b68: 1a80 subs r0, r0, r2 + 8009b6a: d10d bne.n 8009b88 <__mcmp+0x28> + 8009b6c: 3314 adds r3, #20 + 8009b6e: 3114 adds r1, #20 + 8009b70: eb03 0482 add.w r4, r3, r2, lsl #2 + 8009b74: eb01 0182 add.w r1, r1, r2, lsl #2 + 8009b78: f854 5d04 ldr.w r5, [r4, #-4]! + 8009b7c: f851 2d04 ldr.w r2, [r1, #-4]! + 8009b80: 4295 cmp r5, r2 + 8009b82: d002 beq.n 8009b8a <__mcmp+0x2a> + 8009b84: d304 bcc.n 8009b90 <__mcmp+0x30> + 8009b86: 2001 movs r0, #1 + 8009b88: bd30 pop {r4, r5, pc} + 8009b8a: 42a3 cmp r3, r4 + 8009b8c: d3f4 bcc.n 8009b78 <__mcmp+0x18> + 8009b8e: e7fb b.n 8009b88 <__mcmp+0x28> + 8009b90: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009b94: e7f8 b.n 8009b88 <__mcmp+0x28> ... -08009c94 <__swsetup_r>: - 8009c94: 4b32 ldr r3, [pc, #200] ; (8009d60 <__swsetup_r+0xcc>) - 8009c96: b570 push {r4, r5, r6, lr} - 8009c98: 681d ldr r5, [r3, #0] - 8009c9a: 4606 mov r6, r0 - 8009c9c: 460c mov r4, r1 - 8009c9e: b125 cbz r5, 8009caa <__swsetup_r+0x16> - 8009ca0: 69ab ldr r3, [r5, #24] - 8009ca2: b913 cbnz r3, 8009caa <__swsetup_r+0x16> - 8009ca4: 4628 mov r0, r5 - 8009ca6: f000 f985 bl 8009fb4 <__sinit> - 8009caa: 4b2e ldr r3, [pc, #184] ; (8009d64 <__swsetup_r+0xd0>) - 8009cac: 429c cmp r4, r3 - 8009cae: d10f bne.n 8009cd0 <__swsetup_r+0x3c> - 8009cb0: 686c ldr r4, [r5, #4] - 8009cb2: 89a3 ldrh r3, [r4, #12] - 8009cb4: f9b4 200c ldrsh.w r2, [r4, #12] - 8009cb8: 0719 lsls r1, r3, #28 - 8009cba: d42c bmi.n 8009d16 <__swsetup_r+0x82> - 8009cbc: 06dd lsls r5, r3, #27 - 8009cbe: d411 bmi.n 8009ce4 <__swsetup_r+0x50> - 8009cc0: 2309 movs r3, #9 - 8009cc2: 6033 str r3, [r6, #0] - 8009cc4: f042 0340 orr.w r3, r2, #64 ; 0x40 - 8009cc8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8009ccc: 81a3 strh r3, [r4, #12] - 8009cce: e03e b.n 8009d4e <__swsetup_r+0xba> - 8009cd0: 4b25 ldr r3, [pc, #148] ; (8009d68 <__swsetup_r+0xd4>) - 8009cd2: 429c cmp r4, r3 - 8009cd4: d101 bne.n 8009cda <__swsetup_r+0x46> - 8009cd6: 68ac ldr r4, [r5, #8] - 8009cd8: e7eb b.n 8009cb2 <__swsetup_r+0x1e> - 8009cda: 4b24 ldr r3, [pc, #144] ; (8009d6c <__swsetup_r+0xd8>) - 8009cdc: 429c cmp r4, r3 - 8009cde: bf08 it eq - 8009ce0: 68ec ldreq r4, [r5, #12] - 8009ce2: e7e6 b.n 8009cb2 <__swsetup_r+0x1e> - 8009ce4: 0758 lsls r0, r3, #29 - 8009ce6: d512 bpl.n 8009d0e <__swsetup_r+0x7a> - 8009ce8: 6b61 ldr r1, [r4, #52] ; 0x34 - 8009cea: b141 cbz r1, 8009cfe <__swsetup_r+0x6a> - 8009cec: f104 0344 add.w r3, r4, #68 ; 0x44 - 8009cf0: 4299 cmp r1, r3 - 8009cf2: d002 beq.n 8009cfa <__swsetup_r+0x66> - 8009cf4: 4630 mov r0, r6 - 8009cf6: f7fd fcc7 bl 8007688 <_free_r> - 8009cfa: 2300 movs r3, #0 - 8009cfc: 6363 str r3, [r4, #52] ; 0x34 - 8009cfe: 89a3 ldrh r3, [r4, #12] - 8009d00: f023 0324 bic.w r3, r3, #36 ; 0x24 - 8009d04: 81a3 strh r3, [r4, #12] - 8009d06: 2300 movs r3, #0 - 8009d08: 6063 str r3, [r4, #4] - 8009d0a: 6923 ldr r3, [r4, #16] - 8009d0c: 6023 str r3, [r4, #0] - 8009d0e: 89a3 ldrh r3, [r4, #12] - 8009d10: f043 0308 orr.w r3, r3, #8 - 8009d14: 81a3 strh r3, [r4, #12] - 8009d16: 6923 ldr r3, [r4, #16] - 8009d18: b94b cbnz r3, 8009d2e <__swsetup_r+0x9a> - 8009d1a: 89a3 ldrh r3, [r4, #12] - 8009d1c: f403 7320 and.w r3, r3, #640 ; 0x280 - 8009d20: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 8009d24: d003 beq.n 8009d2e <__swsetup_r+0x9a> - 8009d26: 4621 mov r1, r4 - 8009d28: 4630 mov r0, r6 - 8009d2a: f000 fa05 bl 800a138 <__smakebuf_r> - 8009d2e: 89a0 ldrh r0, [r4, #12] - 8009d30: f9b4 200c ldrsh.w r2, [r4, #12] - 8009d34: f010 0301 ands.w r3, r0, #1 - 8009d38: d00a beq.n 8009d50 <__swsetup_r+0xbc> - 8009d3a: 2300 movs r3, #0 - 8009d3c: 60a3 str r3, [r4, #8] - 8009d3e: 6963 ldr r3, [r4, #20] - 8009d40: 425b negs r3, r3 - 8009d42: 61a3 str r3, [r4, #24] - 8009d44: 6923 ldr r3, [r4, #16] - 8009d46: b943 cbnz r3, 8009d5a <__swsetup_r+0xc6> - 8009d48: f010 0080 ands.w r0, r0, #128 ; 0x80 - 8009d4c: d1ba bne.n 8009cc4 <__swsetup_r+0x30> - 8009d4e: bd70 pop {r4, r5, r6, pc} - 8009d50: 0781 lsls r1, r0, #30 - 8009d52: bf58 it pl - 8009d54: 6963 ldrpl r3, [r4, #20] - 8009d56: 60a3 str r3, [r4, #8] - 8009d58: e7f4 b.n 8009d44 <__swsetup_r+0xb0> - 8009d5a: 2000 movs r0, #0 - 8009d5c: e7f7 b.n 8009d4e <__swsetup_r+0xba> - 8009d5e: bf00 nop - 8009d60: 20000014 .word 0x20000014 - 8009d64: 0800b2dc .word 0x0800b2dc - 8009d68: 0800b2fc .word 0x0800b2fc - 8009d6c: 0800b2bc .word 0x0800b2bc +08009b98 <__mdiff>: + 8009b98: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8009b9c: 460c mov r4, r1 + 8009b9e: 4606 mov r6, r0 + 8009ba0: 4611 mov r1, r2 + 8009ba2: 4620 mov r0, r4 + 8009ba4: 4692 mov sl, r2 + 8009ba6: f7ff ffdb bl 8009b60 <__mcmp> + 8009baa: 1e05 subs r5, r0, #0 + 8009bac: d111 bne.n 8009bd2 <__mdiff+0x3a> + 8009bae: 4629 mov r1, r5 + 8009bb0: 4630 mov r0, r6 + 8009bb2: f7ff fd5b bl 800966c <_Balloc> + 8009bb6: 4602 mov r2, r0 + 8009bb8: b928 cbnz r0, 8009bc6 <__mdiff+0x2e> + 8009bba: f240 2132 movw r1, #562 ; 0x232 + 8009bbe: 4b3c ldr r3, [pc, #240] ; (8009cb0 <__mdiff+0x118>) + 8009bc0: 483c ldr r0, [pc, #240] ; (8009cb4 <__mdiff+0x11c>) + 8009bc2: f000 fc35 bl 800a430 <__assert_func> + 8009bc6: 2301 movs r3, #1 + 8009bc8: e9c0 3504 strd r3, r5, [r0, #16] + 8009bcc: 4610 mov r0, r2 + 8009bce: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8009bd2: bfa4 itt ge + 8009bd4: 4653 movge r3, sl + 8009bd6: 46a2 movge sl, r4 + 8009bd8: 4630 mov r0, r6 + 8009bda: f8da 1004 ldr.w r1, [sl, #4] + 8009bde: bfa6 itte ge + 8009be0: 461c movge r4, r3 + 8009be2: 2500 movge r5, #0 + 8009be4: 2501 movlt r5, #1 + 8009be6: f7ff fd41 bl 800966c <_Balloc> + 8009bea: 4602 mov r2, r0 + 8009bec: b918 cbnz r0, 8009bf6 <__mdiff+0x5e> + 8009bee: f44f 7110 mov.w r1, #576 ; 0x240 + 8009bf2: 4b2f ldr r3, [pc, #188] ; (8009cb0 <__mdiff+0x118>) + 8009bf4: e7e4 b.n 8009bc0 <__mdiff+0x28> + 8009bf6: f100 0814 add.w r8, r0, #20 + 8009bfa: f8da 7010 ldr.w r7, [sl, #16] + 8009bfe: 60c5 str r5, [r0, #12] + 8009c00: f04f 0c00 mov.w ip, #0 + 8009c04: f10a 0514 add.w r5, sl, #20 + 8009c08: f10a 0010 add.w r0, sl, #16 + 8009c0c: 46c2 mov sl, r8 + 8009c0e: 6926 ldr r6, [r4, #16] + 8009c10: f104 0914 add.w r9, r4, #20 + 8009c14: eb05 0e87 add.w lr, r5, r7, lsl #2 + 8009c18: eb09 0686 add.w r6, r9, r6, lsl #2 + 8009c1c: f850 bf04 ldr.w fp, [r0, #4]! + 8009c20: f859 3b04 ldr.w r3, [r9], #4 + 8009c24: fa1f f18b uxth.w r1, fp + 8009c28: 4461 add r1, ip + 8009c2a: fa1f fc83 uxth.w ip, r3 + 8009c2e: 0c1b lsrs r3, r3, #16 + 8009c30: eba1 010c sub.w r1, r1, ip + 8009c34: ebc3 431b rsb r3, r3, fp, lsr #16 + 8009c38: eb03 4321 add.w r3, r3, r1, asr #16 + 8009c3c: b289 uxth r1, r1 + 8009c3e: ea4f 4c23 mov.w ip, r3, asr #16 + 8009c42: 454e cmp r6, r9 + 8009c44: ea41 4303 orr.w r3, r1, r3, lsl #16 + 8009c48: f84a 3b04 str.w r3, [sl], #4 + 8009c4c: d8e6 bhi.n 8009c1c <__mdiff+0x84> + 8009c4e: 1b33 subs r3, r6, r4 + 8009c50: 3b15 subs r3, #21 + 8009c52: f023 0303 bic.w r3, r3, #3 + 8009c56: 3415 adds r4, #21 + 8009c58: 3304 adds r3, #4 + 8009c5a: 42a6 cmp r6, r4 + 8009c5c: bf38 it cc + 8009c5e: 2304 movcc r3, #4 + 8009c60: 441d add r5, r3 + 8009c62: 4443 add r3, r8 + 8009c64: 461e mov r6, r3 + 8009c66: 462c mov r4, r5 + 8009c68: 4574 cmp r4, lr + 8009c6a: d30e bcc.n 8009c8a <__mdiff+0xf2> + 8009c6c: f10e 0103 add.w r1, lr, #3 + 8009c70: 1b49 subs r1, r1, r5 + 8009c72: f021 0103 bic.w r1, r1, #3 + 8009c76: 3d03 subs r5, #3 + 8009c78: 45ae cmp lr, r5 + 8009c7a: bf38 it cc + 8009c7c: 2100 movcc r1, #0 + 8009c7e: 4419 add r1, r3 + 8009c80: f851 3d04 ldr.w r3, [r1, #-4]! + 8009c84: b18b cbz r3, 8009caa <__mdiff+0x112> + 8009c86: 6117 str r7, [r2, #16] + 8009c88: e7a0 b.n 8009bcc <__mdiff+0x34> + 8009c8a: f854 8b04 ldr.w r8, [r4], #4 + 8009c8e: fa1f f188 uxth.w r1, r8 + 8009c92: 4461 add r1, ip + 8009c94: 1408 asrs r0, r1, #16 + 8009c96: eb00 4018 add.w r0, r0, r8, lsr #16 + 8009c9a: b289 uxth r1, r1 + 8009c9c: ea41 4100 orr.w r1, r1, r0, lsl #16 + 8009ca0: ea4f 4c20 mov.w ip, r0, asr #16 + 8009ca4: f846 1b04 str.w r1, [r6], #4 + 8009ca8: e7de b.n 8009c68 <__mdiff+0xd0> + 8009caa: 3f01 subs r7, #1 + 8009cac: e7e8 b.n 8009c80 <__mdiff+0xe8> + 8009cae: bf00 nop + 8009cb0: 0800b343 .word 0x0800b343 + 8009cb4: 0800b3b4 .word 0x0800b3b4 -08009d70 : - 8009d70: 2006 movs r0, #6 - 8009d72: b508 push {r3, lr} - 8009d74: f000 fa50 bl 800a218 - 8009d78: 2001 movs r0, #1 - 8009d7a: f7f7 fda8 bl 80018ce <_exit> +08009cb8 <__d2b>: + 8009cb8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} + 8009cbc: 2101 movs r1, #1 + 8009cbe: e9dd 7608 ldrd r7, r6, [sp, #32] + 8009cc2: 4690 mov r8, r2 + 8009cc4: 461d mov r5, r3 + 8009cc6: f7ff fcd1 bl 800966c <_Balloc> + 8009cca: 4604 mov r4, r0 + 8009ccc: b930 cbnz r0, 8009cdc <__d2b+0x24> + 8009cce: 4602 mov r2, r0 + 8009cd0: f240 310a movw r1, #778 ; 0x30a + 8009cd4: 4b24 ldr r3, [pc, #144] ; (8009d68 <__d2b+0xb0>) + 8009cd6: 4825 ldr r0, [pc, #148] ; (8009d6c <__d2b+0xb4>) + 8009cd8: f000 fbaa bl 800a430 <__assert_func> + 8009cdc: f3c5 0313 ubfx r3, r5, #0, #20 + 8009ce0: f3c5 550a ubfx r5, r5, #20, #11 + 8009ce4: bb2d cbnz r5, 8009d32 <__d2b+0x7a> + 8009ce6: 9301 str r3, [sp, #4] + 8009ce8: f1b8 0300 subs.w r3, r8, #0 + 8009cec: d026 beq.n 8009d3c <__d2b+0x84> + 8009cee: 4668 mov r0, sp + 8009cf0: 9300 str r3, [sp, #0] + 8009cf2: f7ff fd87 bl 8009804 <__lo0bits> + 8009cf6: 9900 ldr r1, [sp, #0] + 8009cf8: b1f0 cbz r0, 8009d38 <__d2b+0x80> + 8009cfa: 9a01 ldr r2, [sp, #4] + 8009cfc: f1c0 0320 rsb r3, r0, #32 + 8009d00: fa02 f303 lsl.w r3, r2, r3 + 8009d04: 430b orrs r3, r1 + 8009d06: 40c2 lsrs r2, r0 + 8009d08: 6163 str r3, [r4, #20] + 8009d0a: 9201 str r2, [sp, #4] + 8009d0c: 9b01 ldr r3, [sp, #4] + 8009d0e: 2b00 cmp r3, #0 + 8009d10: bf14 ite ne + 8009d12: 2102 movne r1, #2 + 8009d14: 2101 moveq r1, #1 + 8009d16: 61a3 str r3, [r4, #24] + 8009d18: 6121 str r1, [r4, #16] + 8009d1a: b1c5 cbz r5, 8009d4e <__d2b+0x96> + 8009d1c: f2a5 4533 subw r5, r5, #1075 ; 0x433 + 8009d20: 4405 add r5, r0 + 8009d22: f1c0 0035 rsb r0, r0, #53 ; 0x35 + 8009d26: 603d str r5, [r7, #0] + 8009d28: 6030 str r0, [r6, #0] + 8009d2a: 4620 mov r0, r4 + 8009d2c: b002 add sp, #8 + 8009d2e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 8009d32: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 + 8009d36: e7d6 b.n 8009ce6 <__d2b+0x2e> + 8009d38: 6161 str r1, [r4, #20] + 8009d3a: e7e7 b.n 8009d0c <__d2b+0x54> + 8009d3c: a801 add r0, sp, #4 + 8009d3e: f7ff fd61 bl 8009804 <__lo0bits> + 8009d42: 2101 movs r1, #1 + 8009d44: 9b01 ldr r3, [sp, #4] + 8009d46: 6121 str r1, [r4, #16] + 8009d48: 6163 str r3, [r4, #20] + 8009d4a: 3020 adds r0, #32 + 8009d4c: e7e5 b.n 8009d1a <__d2b+0x62> + 8009d4e: eb04 0381 add.w r3, r4, r1, lsl #2 + 8009d52: f2a0 4032 subw r0, r0, #1074 ; 0x432 + 8009d56: 6038 str r0, [r7, #0] + 8009d58: 6918 ldr r0, [r3, #16] + 8009d5a: f7ff fd33 bl 80097c4 <__hi0bits> + 8009d5e: ebc0 1141 rsb r1, r0, r1, lsl #5 + 8009d62: 6031 str r1, [r6, #0] + 8009d64: e7e1 b.n 8009d2a <__d2b+0x72> + 8009d66: bf00 nop + 8009d68: 0800b343 .word 0x0800b343 + 8009d6c: 0800b3b4 .word 0x0800b3b4 + +08009d70 <_calloc_r>: + 8009d70: b538 push {r3, r4, r5, lr} + 8009d72: fb02 f501 mul.w r5, r2, r1 + 8009d76: 4629 mov r1, r5 + 8009d78: f7fd fd62 bl 8007840 <_malloc_r> + 8009d7c: 4604 mov r4, r0 + 8009d7e: b118 cbz r0, 8009d88 <_calloc_r+0x18> + 8009d80: 462a mov r2, r5 + 8009d82: 2100 movs r1, #0 + 8009d84: f7fd fd08 bl 8007798 + 8009d88: 4620 mov r0, r4 + 8009d8a: bd38 pop {r3, r4, r5, pc} + +08009d8c <__ssputs_r>: + 8009d8c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8009d90: 688e ldr r6, [r1, #8] + 8009d92: 4682 mov sl, r0 + 8009d94: 429e cmp r6, r3 + 8009d96: 460c mov r4, r1 + 8009d98: 4690 mov r8, r2 + 8009d9a: 461f mov r7, r3 + 8009d9c: d838 bhi.n 8009e10 <__ssputs_r+0x84> + 8009d9e: 898a ldrh r2, [r1, #12] + 8009da0: f412 6f90 tst.w r2, #1152 ; 0x480 + 8009da4: d032 beq.n 8009e0c <__ssputs_r+0x80> + 8009da6: 6825 ldr r5, [r4, #0] + 8009da8: 6909 ldr r1, [r1, #16] + 8009daa: 3301 adds r3, #1 + 8009dac: eba5 0901 sub.w r9, r5, r1 + 8009db0: 6965 ldr r5, [r4, #20] + 8009db2: 444b add r3, r9 + 8009db4: eb05 0545 add.w r5, r5, r5, lsl #1 + 8009db8: eb05 75d5 add.w r5, r5, r5, lsr #31 + 8009dbc: 106d asrs r5, r5, #1 + 8009dbe: 429d cmp r5, r3 + 8009dc0: bf38 it cc + 8009dc2: 461d movcc r5, r3 + 8009dc4: 0553 lsls r3, r2, #21 + 8009dc6: d531 bpl.n 8009e2c <__ssputs_r+0xa0> + 8009dc8: 4629 mov r1, r5 + 8009dca: f7fd fd39 bl 8007840 <_malloc_r> + 8009dce: 4606 mov r6, r0 + 8009dd0: b950 cbnz r0, 8009de8 <__ssputs_r+0x5c> + 8009dd2: 230c movs r3, #12 + 8009dd4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009dd8: f8ca 3000 str.w r3, [sl] + 8009ddc: 89a3 ldrh r3, [r4, #12] + 8009dde: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8009de2: 81a3 strh r3, [r4, #12] + 8009de4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8009de8: 464a mov r2, r9 + 8009dea: 6921 ldr r1, [r4, #16] + 8009dec: f7ff fc24 bl 8009638 + 8009df0: 89a3 ldrh r3, [r4, #12] + 8009df2: f423 6390 bic.w r3, r3, #1152 ; 0x480 + 8009df6: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8009dfa: 81a3 strh r3, [r4, #12] + 8009dfc: 6126 str r6, [r4, #16] + 8009dfe: 444e add r6, r9 + 8009e00: 6026 str r6, [r4, #0] + 8009e02: 463e mov r6, r7 + 8009e04: 6165 str r5, [r4, #20] + 8009e06: eba5 0509 sub.w r5, r5, r9 + 8009e0a: 60a5 str r5, [r4, #8] + 8009e0c: 42be cmp r6, r7 + 8009e0e: d900 bls.n 8009e12 <__ssputs_r+0x86> + 8009e10: 463e mov r6, r7 + 8009e12: 4632 mov r2, r6 + 8009e14: 4641 mov r1, r8 + 8009e16: 6820 ldr r0, [r4, #0] + 8009e18: f000 fb90 bl 800a53c + 8009e1c: 68a3 ldr r3, [r4, #8] + 8009e1e: 6822 ldr r2, [r4, #0] + 8009e20: 1b9b subs r3, r3, r6 + 8009e22: 4432 add r2, r6 + 8009e24: 2000 movs r0, #0 + 8009e26: 60a3 str r3, [r4, #8] + 8009e28: 6022 str r2, [r4, #0] + 8009e2a: e7db b.n 8009de4 <__ssputs_r+0x58> + 8009e2c: 462a mov r2, r5 + 8009e2e: f000 fb9f bl 800a570 <_realloc_r> + 8009e32: 4606 mov r6, r0 + 8009e34: 2800 cmp r0, #0 + 8009e36: d1e1 bne.n 8009dfc <__ssputs_r+0x70> + 8009e38: 4650 mov r0, sl + 8009e3a: 6921 ldr r1, [r4, #16] + 8009e3c: f7fd fcb4 bl 80077a8 <_free_r> + 8009e40: e7c7 b.n 8009dd2 <__ssputs_r+0x46> ... -08009d80 <__sflush_r>: - 8009d80: 898a ldrh r2, [r1, #12] - 8009d82: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8009d86: 4605 mov r5, r0 - 8009d88: 0710 lsls r0, r2, #28 - 8009d8a: 460c mov r4, r1 - 8009d8c: d458 bmi.n 8009e40 <__sflush_r+0xc0> - 8009d8e: 684b ldr r3, [r1, #4] - 8009d90: 2b00 cmp r3, #0 - 8009d92: dc05 bgt.n 8009da0 <__sflush_r+0x20> - 8009d94: 6c0b ldr r3, [r1, #64] ; 0x40 - 8009d96: 2b00 cmp r3, #0 - 8009d98: dc02 bgt.n 8009da0 <__sflush_r+0x20> - 8009d9a: 2000 movs r0, #0 - 8009d9c: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8009da0: 6ae6 ldr r6, [r4, #44] ; 0x2c - 8009da2: 2e00 cmp r6, #0 - 8009da4: d0f9 beq.n 8009d9a <__sflush_r+0x1a> - 8009da6: 2300 movs r3, #0 - 8009da8: f412 5280 ands.w r2, r2, #4096 ; 0x1000 - 8009dac: 682f ldr r7, [r5, #0] - 8009dae: 602b str r3, [r5, #0] - 8009db0: d032 beq.n 8009e18 <__sflush_r+0x98> - 8009db2: 6d60 ldr r0, [r4, #84] ; 0x54 - 8009db4: 89a3 ldrh r3, [r4, #12] - 8009db6: 075a lsls r2, r3, #29 - 8009db8: d505 bpl.n 8009dc6 <__sflush_r+0x46> - 8009dba: 6863 ldr r3, [r4, #4] - 8009dbc: 1ac0 subs r0, r0, r3 - 8009dbe: 6b63 ldr r3, [r4, #52] ; 0x34 - 8009dc0: b10b cbz r3, 8009dc6 <__sflush_r+0x46> - 8009dc2: 6c23 ldr r3, [r4, #64] ; 0x40 - 8009dc4: 1ac0 subs r0, r0, r3 - 8009dc6: 2300 movs r3, #0 - 8009dc8: 4602 mov r2, r0 - 8009dca: 6ae6 ldr r6, [r4, #44] ; 0x2c - 8009dcc: 4628 mov r0, r5 - 8009dce: 6a21 ldr r1, [r4, #32] - 8009dd0: 47b0 blx r6 - 8009dd2: 1c43 adds r3, r0, #1 - 8009dd4: 89a3 ldrh r3, [r4, #12] - 8009dd6: d106 bne.n 8009de6 <__sflush_r+0x66> - 8009dd8: 6829 ldr r1, [r5, #0] - 8009dda: 291d cmp r1, #29 - 8009ddc: d82c bhi.n 8009e38 <__sflush_r+0xb8> - 8009dde: 4a2a ldr r2, [pc, #168] ; (8009e88 <__sflush_r+0x108>) - 8009de0: 40ca lsrs r2, r1 - 8009de2: 07d6 lsls r6, r2, #31 - 8009de4: d528 bpl.n 8009e38 <__sflush_r+0xb8> - 8009de6: 2200 movs r2, #0 - 8009de8: 6062 str r2, [r4, #4] - 8009dea: 6922 ldr r2, [r4, #16] - 8009dec: 04d9 lsls r1, r3, #19 - 8009dee: 6022 str r2, [r4, #0] - 8009df0: d504 bpl.n 8009dfc <__sflush_r+0x7c> - 8009df2: 1c42 adds r2, r0, #1 - 8009df4: d101 bne.n 8009dfa <__sflush_r+0x7a> - 8009df6: 682b ldr r3, [r5, #0] - 8009df8: b903 cbnz r3, 8009dfc <__sflush_r+0x7c> - 8009dfa: 6560 str r0, [r4, #84] ; 0x54 - 8009dfc: 6b61 ldr r1, [r4, #52] ; 0x34 - 8009dfe: 602f str r7, [r5, #0] - 8009e00: 2900 cmp r1, #0 - 8009e02: d0ca beq.n 8009d9a <__sflush_r+0x1a> - 8009e04: f104 0344 add.w r3, r4, #68 ; 0x44 - 8009e08: 4299 cmp r1, r3 - 8009e0a: d002 beq.n 8009e12 <__sflush_r+0x92> - 8009e0c: 4628 mov r0, r5 - 8009e0e: f7fd fc3b bl 8007688 <_free_r> - 8009e12: 2000 movs r0, #0 - 8009e14: 6360 str r0, [r4, #52] ; 0x34 - 8009e16: e7c1 b.n 8009d9c <__sflush_r+0x1c> - 8009e18: 6a21 ldr r1, [r4, #32] - 8009e1a: 2301 movs r3, #1 - 8009e1c: 4628 mov r0, r5 - 8009e1e: 47b0 blx r6 - 8009e20: 1c41 adds r1, r0, #1 - 8009e22: d1c7 bne.n 8009db4 <__sflush_r+0x34> - 8009e24: 682b ldr r3, [r5, #0] - 8009e26: 2b00 cmp r3, #0 - 8009e28: d0c4 beq.n 8009db4 <__sflush_r+0x34> - 8009e2a: 2b1d cmp r3, #29 - 8009e2c: d001 beq.n 8009e32 <__sflush_r+0xb2> - 8009e2e: 2b16 cmp r3, #22 - 8009e30: d101 bne.n 8009e36 <__sflush_r+0xb6> - 8009e32: 602f str r7, [r5, #0] - 8009e34: e7b1 b.n 8009d9a <__sflush_r+0x1a> - 8009e36: 89a3 ldrh r3, [r4, #12] - 8009e38: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8009e3c: 81a3 strh r3, [r4, #12] - 8009e3e: e7ad b.n 8009d9c <__sflush_r+0x1c> - 8009e40: 690f ldr r7, [r1, #16] - 8009e42: 2f00 cmp r7, #0 - 8009e44: d0a9 beq.n 8009d9a <__sflush_r+0x1a> - 8009e46: 0793 lsls r3, r2, #30 - 8009e48: bf18 it ne - 8009e4a: 2300 movne r3, #0 - 8009e4c: 680e ldr r6, [r1, #0] - 8009e4e: bf08 it eq - 8009e50: 694b ldreq r3, [r1, #20] - 8009e52: eba6 0807 sub.w r8, r6, r7 - 8009e56: 600f str r7, [r1, #0] - 8009e58: 608b str r3, [r1, #8] - 8009e5a: f1b8 0f00 cmp.w r8, #0 - 8009e5e: dd9c ble.n 8009d9a <__sflush_r+0x1a> - 8009e60: 4643 mov r3, r8 - 8009e62: 463a mov r2, r7 - 8009e64: 4628 mov r0, r5 - 8009e66: 6a21 ldr r1, [r4, #32] - 8009e68: 6aa6 ldr r6, [r4, #40] ; 0x28 - 8009e6a: 47b0 blx r6 - 8009e6c: 2800 cmp r0, #0 - 8009e6e: dc06 bgt.n 8009e7e <__sflush_r+0xfe> - 8009e70: 89a3 ldrh r3, [r4, #12] - 8009e72: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8009e76: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8009e7a: 81a3 strh r3, [r4, #12] - 8009e7c: e78e b.n 8009d9c <__sflush_r+0x1c> - 8009e7e: 4407 add r7, r0 - 8009e80: eba8 0800 sub.w r8, r8, r0 - 8009e84: e7e9 b.n 8009e5a <__sflush_r+0xda> - 8009e86: bf00 nop - 8009e88: 20400001 .word 0x20400001 +08009e44 <_svfiprintf_r>: + 8009e44: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8009e48: 4698 mov r8, r3 + 8009e4a: 898b ldrh r3, [r1, #12] + 8009e4c: 4607 mov r7, r0 + 8009e4e: 061b lsls r3, r3, #24 + 8009e50: 460d mov r5, r1 + 8009e52: 4614 mov r4, r2 + 8009e54: b09d sub sp, #116 ; 0x74 + 8009e56: d50e bpl.n 8009e76 <_svfiprintf_r+0x32> + 8009e58: 690b ldr r3, [r1, #16] + 8009e5a: b963 cbnz r3, 8009e76 <_svfiprintf_r+0x32> + 8009e5c: 2140 movs r1, #64 ; 0x40 + 8009e5e: f7fd fcef bl 8007840 <_malloc_r> + 8009e62: 6028 str r0, [r5, #0] + 8009e64: 6128 str r0, [r5, #16] + 8009e66: b920 cbnz r0, 8009e72 <_svfiprintf_r+0x2e> + 8009e68: 230c movs r3, #12 + 8009e6a: 603b str r3, [r7, #0] + 8009e6c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8009e70: e0d1 b.n 800a016 <_svfiprintf_r+0x1d2> + 8009e72: 2340 movs r3, #64 ; 0x40 + 8009e74: 616b str r3, [r5, #20] + 8009e76: 2300 movs r3, #0 + 8009e78: 9309 str r3, [sp, #36] ; 0x24 + 8009e7a: 2320 movs r3, #32 + 8009e7c: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 8009e80: 2330 movs r3, #48 ; 0x30 + 8009e82: f04f 0901 mov.w r9, #1 + 8009e86: f8cd 800c str.w r8, [sp, #12] + 8009e8a: f8df 81a4 ldr.w r8, [pc, #420] ; 800a030 <_svfiprintf_r+0x1ec> + 8009e8e: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 8009e92: 4623 mov r3, r4 + 8009e94: 469a mov sl, r3 + 8009e96: f813 2b01 ldrb.w r2, [r3], #1 + 8009e9a: b10a cbz r2, 8009ea0 <_svfiprintf_r+0x5c> + 8009e9c: 2a25 cmp r2, #37 ; 0x25 + 8009e9e: d1f9 bne.n 8009e94 <_svfiprintf_r+0x50> + 8009ea0: ebba 0b04 subs.w fp, sl, r4 + 8009ea4: d00b beq.n 8009ebe <_svfiprintf_r+0x7a> + 8009ea6: 465b mov r3, fp + 8009ea8: 4622 mov r2, r4 + 8009eaa: 4629 mov r1, r5 + 8009eac: 4638 mov r0, r7 + 8009eae: f7ff ff6d bl 8009d8c <__ssputs_r> + 8009eb2: 3001 adds r0, #1 + 8009eb4: f000 80aa beq.w 800a00c <_svfiprintf_r+0x1c8> + 8009eb8: 9a09 ldr r2, [sp, #36] ; 0x24 + 8009eba: 445a add r2, fp + 8009ebc: 9209 str r2, [sp, #36] ; 0x24 + 8009ebe: f89a 3000 ldrb.w r3, [sl] + 8009ec2: 2b00 cmp r3, #0 + 8009ec4: f000 80a2 beq.w 800a00c <_svfiprintf_r+0x1c8> + 8009ec8: 2300 movs r3, #0 + 8009eca: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8009ece: e9cd 2305 strd r2, r3, [sp, #20] + 8009ed2: f10a 0a01 add.w sl, sl, #1 + 8009ed6: 9304 str r3, [sp, #16] + 8009ed8: 9307 str r3, [sp, #28] + 8009eda: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 8009ede: 931a str r3, [sp, #104] ; 0x68 + 8009ee0: 4654 mov r4, sl + 8009ee2: 2205 movs r2, #5 + 8009ee4: f814 1b01 ldrb.w r1, [r4], #1 + 8009ee8: 4851 ldr r0, [pc, #324] ; (800a030 <_svfiprintf_r+0x1ec>) + 8009eea: f7ff fb97 bl 800961c + 8009eee: 9a04 ldr r2, [sp, #16] + 8009ef0: b9d8 cbnz r0, 8009f2a <_svfiprintf_r+0xe6> + 8009ef2: 06d0 lsls r0, r2, #27 + 8009ef4: bf44 itt mi + 8009ef6: 2320 movmi r3, #32 + 8009ef8: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8009efc: 0711 lsls r1, r2, #28 + 8009efe: bf44 itt mi + 8009f00: 232b movmi r3, #43 ; 0x2b + 8009f02: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8009f06: f89a 3000 ldrb.w r3, [sl] + 8009f0a: 2b2a cmp r3, #42 ; 0x2a + 8009f0c: d015 beq.n 8009f3a <_svfiprintf_r+0xf6> + 8009f0e: 4654 mov r4, sl + 8009f10: 2000 movs r0, #0 + 8009f12: f04f 0c0a mov.w ip, #10 + 8009f16: 9a07 ldr r2, [sp, #28] + 8009f18: 4621 mov r1, r4 + 8009f1a: f811 3b01 ldrb.w r3, [r1], #1 + 8009f1e: 3b30 subs r3, #48 ; 0x30 + 8009f20: 2b09 cmp r3, #9 + 8009f22: d94e bls.n 8009fc2 <_svfiprintf_r+0x17e> + 8009f24: b1b0 cbz r0, 8009f54 <_svfiprintf_r+0x110> + 8009f26: 9207 str r2, [sp, #28] + 8009f28: e014 b.n 8009f54 <_svfiprintf_r+0x110> + 8009f2a: eba0 0308 sub.w r3, r0, r8 + 8009f2e: fa09 f303 lsl.w r3, r9, r3 + 8009f32: 4313 orrs r3, r2 + 8009f34: 46a2 mov sl, r4 + 8009f36: 9304 str r3, [sp, #16] + 8009f38: e7d2 b.n 8009ee0 <_svfiprintf_r+0x9c> + 8009f3a: 9b03 ldr r3, [sp, #12] + 8009f3c: 1d19 adds r1, r3, #4 + 8009f3e: 681b ldr r3, [r3, #0] + 8009f40: 9103 str r1, [sp, #12] + 8009f42: 2b00 cmp r3, #0 + 8009f44: bfbb ittet lt + 8009f46: 425b neglt r3, r3 + 8009f48: f042 0202 orrlt.w r2, r2, #2 + 8009f4c: 9307 strge r3, [sp, #28] + 8009f4e: 9307 strlt r3, [sp, #28] + 8009f50: bfb8 it lt + 8009f52: 9204 strlt r2, [sp, #16] + 8009f54: 7823 ldrb r3, [r4, #0] + 8009f56: 2b2e cmp r3, #46 ; 0x2e + 8009f58: d10c bne.n 8009f74 <_svfiprintf_r+0x130> + 8009f5a: 7863 ldrb r3, [r4, #1] + 8009f5c: 2b2a cmp r3, #42 ; 0x2a + 8009f5e: d135 bne.n 8009fcc <_svfiprintf_r+0x188> + 8009f60: 9b03 ldr r3, [sp, #12] + 8009f62: 3402 adds r4, #2 + 8009f64: 1d1a adds r2, r3, #4 + 8009f66: 681b ldr r3, [r3, #0] + 8009f68: 9203 str r2, [sp, #12] + 8009f6a: 2b00 cmp r3, #0 + 8009f6c: bfb8 it lt + 8009f6e: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 8009f72: 9305 str r3, [sp, #20] + 8009f74: f8df a0c8 ldr.w sl, [pc, #200] ; 800a040 <_svfiprintf_r+0x1fc> + 8009f78: 2203 movs r2, #3 + 8009f7a: 4650 mov r0, sl + 8009f7c: 7821 ldrb r1, [r4, #0] + 8009f7e: f7ff fb4d bl 800961c + 8009f82: b140 cbz r0, 8009f96 <_svfiprintf_r+0x152> + 8009f84: 2340 movs r3, #64 ; 0x40 + 8009f86: eba0 000a sub.w r0, r0, sl + 8009f8a: fa03 f000 lsl.w r0, r3, r0 + 8009f8e: 9b04 ldr r3, [sp, #16] + 8009f90: 3401 adds r4, #1 + 8009f92: 4303 orrs r3, r0 + 8009f94: 9304 str r3, [sp, #16] + 8009f96: f814 1b01 ldrb.w r1, [r4], #1 + 8009f9a: 2206 movs r2, #6 + 8009f9c: 4825 ldr r0, [pc, #148] ; (800a034 <_svfiprintf_r+0x1f0>) + 8009f9e: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 8009fa2: f7ff fb3b bl 800961c + 8009fa6: 2800 cmp r0, #0 + 8009fa8: d038 beq.n 800a01c <_svfiprintf_r+0x1d8> + 8009faa: 4b23 ldr r3, [pc, #140] ; (800a038 <_svfiprintf_r+0x1f4>) + 8009fac: bb1b cbnz r3, 8009ff6 <_svfiprintf_r+0x1b2> + 8009fae: 9b03 ldr r3, [sp, #12] + 8009fb0: 3307 adds r3, #7 + 8009fb2: f023 0307 bic.w r3, r3, #7 + 8009fb6: 3308 adds r3, #8 + 8009fb8: 9303 str r3, [sp, #12] + 8009fba: 9b09 ldr r3, [sp, #36] ; 0x24 + 8009fbc: 4433 add r3, r6 + 8009fbe: 9309 str r3, [sp, #36] ; 0x24 + 8009fc0: e767 b.n 8009e92 <_svfiprintf_r+0x4e> + 8009fc2: 460c mov r4, r1 + 8009fc4: 2001 movs r0, #1 + 8009fc6: fb0c 3202 mla r2, ip, r2, r3 + 8009fca: e7a5 b.n 8009f18 <_svfiprintf_r+0xd4> + 8009fcc: 2300 movs r3, #0 + 8009fce: f04f 0c0a mov.w ip, #10 + 8009fd2: 4619 mov r1, r3 + 8009fd4: 3401 adds r4, #1 + 8009fd6: 9305 str r3, [sp, #20] + 8009fd8: 4620 mov r0, r4 + 8009fda: f810 2b01 ldrb.w r2, [r0], #1 + 8009fde: 3a30 subs r2, #48 ; 0x30 + 8009fe0: 2a09 cmp r2, #9 + 8009fe2: d903 bls.n 8009fec <_svfiprintf_r+0x1a8> + 8009fe4: 2b00 cmp r3, #0 + 8009fe6: d0c5 beq.n 8009f74 <_svfiprintf_r+0x130> + 8009fe8: 9105 str r1, [sp, #20] + 8009fea: e7c3 b.n 8009f74 <_svfiprintf_r+0x130> + 8009fec: 4604 mov r4, r0 + 8009fee: 2301 movs r3, #1 + 8009ff0: fb0c 2101 mla r1, ip, r1, r2 + 8009ff4: e7f0 b.n 8009fd8 <_svfiprintf_r+0x194> + 8009ff6: ab03 add r3, sp, #12 + 8009ff8: 9300 str r3, [sp, #0] + 8009ffa: 462a mov r2, r5 + 8009ffc: 4638 mov r0, r7 + 8009ffe: 4b0f ldr r3, [pc, #60] ; (800a03c <_svfiprintf_r+0x1f8>) + 800a000: a904 add r1, sp, #16 + 800a002: f7fd fd15 bl 8007a30 <_printf_float> + 800a006: 1c42 adds r2, r0, #1 + 800a008: 4606 mov r6, r0 + 800a00a: d1d6 bne.n 8009fba <_svfiprintf_r+0x176> + 800a00c: 89ab ldrh r3, [r5, #12] + 800a00e: 065b lsls r3, r3, #25 + 800a010: f53f af2c bmi.w 8009e6c <_svfiprintf_r+0x28> + 800a014: 9809 ldr r0, [sp, #36] ; 0x24 + 800a016: b01d add sp, #116 ; 0x74 + 800a018: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800a01c: ab03 add r3, sp, #12 + 800a01e: 9300 str r3, [sp, #0] + 800a020: 462a mov r2, r5 + 800a022: 4638 mov r0, r7 + 800a024: 4b05 ldr r3, [pc, #20] ; (800a03c <_svfiprintf_r+0x1f8>) + 800a026: a904 add r1, sp, #16 + 800a028: f7fd ff9e bl 8007f68 <_printf_i> + 800a02c: e7eb b.n 800a006 <_svfiprintf_r+0x1c2> + 800a02e: bf00 nop + 800a030: 0800b514 .word 0x0800b514 + 800a034: 0800b51e .word 0x0800b51e + 800a038: 08007a31 .word 0x08007a31 + 800a03c: 08009d8d .word 0x08009d8d + 800a040: 0800b51a .word 0x0800b51a -08009e8c <_fflush_r>: - 8009e8c: b538 push {r3, r4, r5, lr} - 8009e8e: 690b ldr r3, [r1, #16] - 8009e90: 4605 mov r5, r0 - 8009e92: 460c mov r4, r1 - 8009e94: b913 cbnz r3, 8009e9c <_fflush_r+0x10> - 8009e96: 2500 movs r5, #0 - 8009e98: 4628 mov r0, r5 - 8009e9a: bd38 pop {r3, r4, r5, pc} - 8009e9c: b118 cbz r0, 8009ea6 <_fflush_r+0x1a> - 8009e9e: 6983 ldr r3, [r0, #24] - 8009ea0: b90b cbnz r3, 8009ea6 <_fflush_r+0x1a> - 8009ea2: f000 f887 bl 8009fb4 <__sinit> - 8009ea6: 4b14 ldr r3, [pc, #80] ; (8009ef8 <_fflush_r+0x6c>) - 8009ea8: 429c cmp r4, r3 - 8009eaa: d11b bne.n 8009ee4 <_fflush_r+0x58> - 8009eac: 686c ldr r4, [r5, #4] - 8009eae: f9b4 300c ldrsh.w r3, [r4, #12] - 8009eb2: 2b00 cmp r3, #0 - 8009eb4: d0ef beq.n 8009e96 <_fflush_r+0xa> - 8009eb6: 6e62 ldr r2, [r4, #100] ; 0x64 - 8009eb8: 07d0 lsls r0, r2, #31 - 8009eba: d404 bmi.n 8009ec6 <_fflush_r+0x3a> - 8009ebc: 0599 lsls r1, r3, #22 - 8009ebe: d402 bmi.n 8009ec6 <_fflush_r+0x3a> - 8009ec0: 6da0 ldr r0, [r4, #88] ; 0x58 - 8009ec2: f7ff fcdc bl 800987e <__retarget_lock_acquire_recursive> - 8009ec6: 4628 mov r0, r5 - 8009ec8: 4621 mov r1, r4 - 8009eca: f7ff ff59 bl 8009d80 <__sflush_r> - 8009ece: 6e63 ldr r3, [r4, #100] ; 0x64 - 8009ed0: 4605 mov r5, r0 - 8009ed2: 07da lsls r2, r3, #31 - 8009ed4: d4e0 bmi.n 8009e98 <_fflush_r+0xc> - 8009ed6: 89a3 ldrh r3, [r4, #12] - 8009ed8: 059b lsls r3, r3, #22 - 8009eda: d4dd bmi.n 8009e98 <_fflush_r+0xc> - 8009edc: 6da0 ldr r0, [r4, #88] ; 0x58 - 8009ede: f7ff fccf bl 8009880 <__retarget_lock_release_recursive> - 8009ee2: e7d9 b.n 8009e98 <_fflush_r+0xc> - 8009ee4: 4b05 ldr r3, [pc, #20] ; (8009efc <_fflush_r+0x70>) - 8009ee6: 429c cmp r4, r3 - 8009ee8: d101 bne.n 8009eee <_fflush_r+0x62> - 8009eea: 68ac ldr r4, [r5, #8] - 8009eec: e7df b.n 8009eae <_fflush_r+0x22> - 8009eee: 4b04 ldr r3, [pc, #16] ; (8009f00 <_fflush_r+0x74>) - 8009ef0: 429c cmp r4, r3 - 8009ef2: bf08 it eq - 8009ef4: 68ec ldreq r4, [r5, #12] - 8009ef6: e7da b.n 8009eae <_fflush_r+0x22> - 8009ef8: 0800b2dc .word 0x0800b2dc - 8009efc: 0800b2fc .word 0x0800b2fc - 8009f00: 0800b2bc .word 0x0800b2bc +0800a044 <__sfputc_r>: + 800a044: 6893 ldr r3, [r2, #8] + 800a046: b410 push {r4} + 800a048: 3b01 subs r3, #1 + 800a04a: 2b00 cmp r3, #0 + 800a04c: 6093 str r3, [r2, #8] + 800a04e: da07 bge.n 800a060 <__sfputc_r+0x1c> + 800a050: 6994 ldr r4, [r2, #24] + 800a052: 42a3 cmp r3, r4 + 800a054: db01 blt.n 800a05a <__sfputc_r+0x16> + 800a056: 290a cmp r1, #10 + 800a058: d102 bne.n 800a060 <__sfputc_r+0x1c> + 800a05a: bc10 pop {r4} + 800a05c: f7fe b97c b.w 8008358 <__swbuf_r> + 800a060: 6813 ldr r3, [r2, #0] + 800a062: 1c58 adds r0, r3, #1 + 800a064: 6010 str r0, [r2, #0] + 800a066: 7019 strb r1, [r3, #0] + 800a068: 4608 mov r0, r1 + 800a06a: bc10 pop {r4} + 800a06c: 4770 bx lr -08009f04 : - 8009f04: 2300 movs r3, #0 - 8009f06: b510 push {r4, lr} - 8009f08: 4604 mov r4, r0 - 8009f0a: e9c0 3300 strd r3, r3, [r0] - 8009f0e: e9c0 3304 strd r3, r3, [r0, #16] - 8009f12: 6083 str r3, [r0, #8] - 8009f14: 8181 strh r1, [r0, #12] - 8009f16: 6643 str r3, [r0, #100] ; 0x64 - 8009f18: 81c2 strh r2, [r0, #14] - 8009f1a: 6183 str r3, [r0, #24] - 8009f1c: 4619 mov r1, r3 - 8009f1e: 2208 movs r2, #8 - 8009f20: 305c adds r0, #92 ; 0x5c - 8009f22: f7fd fba9 bl 8007678 - 8009f26: 4b05 ldr r3, [pc, #20] ; (8009f3c ) - 8009f28: 6224 str r4, [r4, #32] - 8009f2a: 6263 str r3, [r4, #36] ; 0x24 - 8009f2c: 4b04 ldr r3, [pc, #16] ; (8009f40 ) - 8009f2e: 62a3 str r3, [r4, #40] ; 0x28 - 8009f30: 4b04 ldr r3, [pc, #16] ; (8009f44 ) - 8009f32: 62e3 str r3, [r4, #44] ; 0x2c - 8009f34: 4b04 ldr r3, [pc, #16] ; (8009f48 ) - 8009f36: 6323 str r3, [r4, #48] ; 0x30 - 8009f38: bd10 pop {r4, pc} - 8009f3a: bf00 nop - 8009f3c: 0800a251 .word 0x0800a251 - 8009f40: 0800a273 .word 0x0800a273 - 8009f44: 0800a2ab .word 0x0800a2ab - 8009f48: 0800a2cf .word 0x0800a2cf - -08009f4c <_cleanup_r>: - 8009f4c: 4901 ldr r1, [pc, #4] ; (8009f54 <_cleanup_r+0x8>) - 8009f4e: f000 b8af b.w 800a0b0 <_fwalk_reent> - 8009f52: bf00 nop - 8009f54: 08009e8d .word 0x08009e8d - -08009f58 <__sfmoreglue>: - 8009f58: b570 push {r4, r5, r6, lr} - 8009f5a: 2568 movs r5, #104 ; 0x68 - 8009f5c: 1e4a subs r2, r1, #1 - 8009f5e: 4355 muls r5, r2 - 8009f60: 460e mov r6, r1 - 8009f62: f105 0174 add.w r1, r5, #116 ; 0x74 - 8009f66: f7fd fbdb bl 8007720 <_malloc_r> - 8009f6a: 4604 mov r4, r0 - 8009f6c: b140 cbz r0, 8009f80 <__sfmoreglue+0x28> - 8009f6e: 2100 movs r1, #0 - 8009f70: e9c0 1600 strd r1, r6, [r0] - 8009f74: 300c adds r0, #12 - 8009f76: 60a0 str r0, [r4, #8] - 8009f78: f105 0268 add.w r2, r5, #104 ; 0x68 - 8009f7c: f7fd fb7c bl 8007678 - 8009f80: 4620 mov r0, r4 - 8009f82: bd70 pop {r4, r5, r6, pc} - -08009f84 <__sfp_lock_acquire>: - 8009f84: 4801 ldr r0, [pc, #4] ; (8009f8c <__sfp_lock_acquire+0x8>) - 8009f86: f7ff bc7a b.w 800987e <__retarget_lock_acquire_recursive> - 8009f8a: bf00 nop - 8009f8c: 20002544 .word 0x20002544 - -08009f90 <__sfp_lock_release>: - 8009f90: 4801 ldr r0, [pc, #4] ; (8009f98 <__sfp_lock_release+0x8>) - 8009f92: f7ff bc75 b.w 8009880 <__retarget_lock_release_recursive> - 8009f96: bf00 nop - 8009f98: 20002544 .word 0x20002544 - -08009f9c <__sinit_lock_acquire>: - 8009f9c: 4801 ldr r0, [pc, #4] ; (8009fa4 <__sinit_lock_acquire+0x8>) - 8009f9e: f7ff bc6e b.w 800987e <__retarget_lock_acquire_recursive> - 8009fa2: bf00 nop - 8009fa4: 2000253f .word 0x2000253f - -08009fa8 <__sinit_lock_release>: - 8009fa8: 4801 ldr r0, [pc, #4] ; (8009fb0 <__sinit_lock_release+0x8>) - 8009faa: f7ff bc69 b.w 8009880 <__retarget_lock_release_recursive> - 8009fae: bf00 nop - 8009fb0: 2000253f .word 0x2000253f - -08009fb4 <__sinit>: - 8009fb4: b510 push {r4, lr} - 8009fb6: 4604 mov r4, r0 - 8009fb8: f7ff fff0 bl 8009f9c <__sinit_lock_acquire> - 8009fbc: 69a3 ldr r3, [r4, #24] - 8009fbe: b11b cbz r3, 8009fc8 <__sinit+0x14> - 8009fc0: e8bd 4010 ldmia.w sp!, {r4, lr} - 8009fc4: f7ff bff0 b.w 8009fa8 <__sinit_lock_release> - 8009fc8: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 - 8009fcc: 6523 str r3, [r4, #80] ; 0x50 - 8009fce: 4b13 ldr r3, [pc, #76] ; (800a01c <__sinit+0x68>) - 8009fd0: 4a13 ldr r2, [pc, #76] ; (800a020 <__sinit+0x6c>) - 8009fd2: 681b ldr r3, [r3, #0] - 8009fd4: 62a2 str r2, [r4, #40] ; 0x28 - 8009fd6: 42a3 cmp r3, r4 - 8009fd8: bf08 it eq - 8009fda: 2301 moveq r3, #1 - 8009fdc: 4620 mov r0, r4 - 8009fde: bf08 it eq - 8009fe0: 61a3 streq r3, [r4, #24] - 8009fe2: f000 f81f bl 800a024 <__sfp> - 8009fe6: 6060 str r0, [r4, #4] - 8009fe8: 4620 mov r0, r4 - 8009fea: f000 f81b bl 800a024 <__sfp> - 8009fee: 60a0 str r0, [r4, #8] - 8009ff0: 4620 mov r0, r4 - 8009ff2: f000 f817 bl 800a024 <__sfp> - 8009ff6: 2200 movs r2, #0 - 8009ff8: 2104 movs r1, #4 - 8009ffa: 60e0 str r0, [r4, #12] - 8009ffc: 6860 ldr r0, [r4, #4] - 8009ffe: f7ff ff81 bl 8009f04 - 800a002: 2201 movs r2, #1 - 800a004: 2109 movs r1, #9 - 800a006: 68a0 ldr r0, [r4, #8] - 800a008: f7ff ff7c bl 8009f04 - 800a00c: 2202 movs r2, #2 - 800a00e: 2112 movs r1, #18 - 800a010: 68e0 ldr r0, [r4, #12] - 800a012: f7ff ff77 bl 8009f04 - 800a016: 2301 movs r3, #1 - 800a018: 61a3 str r3, [r4, #24] - 800a01a: e7d1 b.n 8009fc0 <__sinit+0xc> - 800a01c: 0800af38 .word 0x0800af38 - 800a020: 08009f4d .word 0x08009f4d - -0800a024 <__sfp>: - 800a024: b5f8 push {r3, r4, r5, r6, r7, lr} - 800a026: 4607 mov r7, r0 - 800a028: f7ff ffac bl 8009f84 <__sfp_lock_acquire> - 800a02c: 4b1e ldr r3, [pc, #120] ; (800a0a8 <__sfp+0x84>) - 800a02e: 681e ldr r6, [r3, #0] - 800a030: 69b3 ldr r3, [r6, #24] - 800a032: b913 cbnz r3, 800a03a <__sfp+0x16> - 800a034: 4630 mov r0, r6 - 800a036: f7ff ffbd bl 8009fb4 <__sinit> - 800a03a: 3648 adds r6, #72 ; 0x48 - 800a03c: e9d6 3401 ldrd r3, r4, [r6, #4] - 800a040: 3b01 subs r3, #1 - 800a042: d503 bpl.n 800a04c <__sfp+0x28> - 800a044: 6833 ldr r3, [r6, #0] - 800a046: b30b cbz r3, 800a08c <__sfp+0x68> - 800a048: 6836 ldr r6, [r6, #0] - 800a04a: e7f7 b.n 800a03c <__sfp+0x18> - 800a04c: f9b4 500c ldrsh.w r5, [r4, #12] - 800a050: b9d5 cbnz r5, 800a088 <__sfp+0x64> - 800a052: 4b16 ldr r3, [pc, #88] ; (800a0ac <__sfp+0x88>) - 800a054: f104 0058 add.w r0, r4, #88 ; 0x58 - 800a058: 60e3 str r3, [r4, #12] - 800a05a: 6665 str r5, [r4, #100] ; 0x64 - 800a05c: f7ff fc0e bl 800987c <__retarget_lock_init_recursive> - 800a060: f7ff ff96 bl 8009f90 <__sfp_lock_release> - 800a064: 2208 movs r2, #8 - 800a066: 4629 mov r1, r5 - 800a068: e9c4 5501 strd r5, r5, [r4, #4] - 800a06c: e9c4 5504 strd r5, r5, [r4, #16] - 800a070: 6025 str r5, [r4, #0] - 800a072: 61a5 str r5, [r4, #24] - 800a074: f104 005c add.w r0, r4, #92 ; 0x5c - 800a078: f7fd fafe bl 8007678 - 800a07c: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 - 800a080: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 - 800a084: 4620 mov r0, r4 - 800a086: bdf8 pop {r3, r4, r5, r6, r7, pc} - 800a088: 3468 adds r4, #104 ; 0x68 - 800a08a: e7d9 b.n 800a040 <__sfp+0x1c> - 800a08c: 2104 movs r1, #4 - 800a08e: 4638 mov r0, r7 - 800a090: f7ff ff62 bl 8009f58 <__sfmoreglue> - 800a094: 4604 mov r4, r0 - 800a096: 6030 str r0, [r6, #0] - 800a098: 2800 cmp r0, #0 - 800a09a: d1d5 bne.n 800a048 <__sfp+0x24> - 800a09c: f7ff ff78 bl 8009f90 <__sfp_lock_release> - 800a0a0: 230c movs r3, #12 - 800a0a2: 603b str r3, [r7, #0] - 800a0a4: e7ee b.n 800a084 <__sfp+0x60> - 800a0a6: bf00 nop - 800a0a8: 0800af38 .word 0x0800af38 - 800a0ac: ffff0001 .word 0xffff0001 - -0800a0b0 <_fwalk_reent>: - 800a0b0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 800a0b4: 4606 mov r6, r0 - 800a0b6: 4688 mov r8, r1 - 800a0b8: 2700 movs r7, #0 - 800a0ba: f100 0448 add.w r4, r0, #72 ; 0x48 - 800a0be: e9d4 9501 ldrd r9, r5, [r4, #4] - 800a0c2: f1b9 0901 subs.w r9, r9, #1 - 800a0c6: d505 bpl.n 800a0d4 <_fwalk_reent+0x24> - 800a0c8: 6824 ldr r4, [r4, #0] - 800a0ca: 2c00 cmp r4, #0 - 800a0cc: d1f7 bne.n 800a0be <_fwalk_reent+0xe> - 800a0ce: 4638 mov r0, r7 - 800a0d0: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 800a0d4: 89ab ldrh r3, [r5, #12] - 800a0d6: 2b01 cmp r3, #1 - 800a0d8: d907 bls.n 800a0ea <_fwalk_reent+0x3a> - 800a0da: f9b5 300e ldrsh.w r3, [r5, #14] - 800a0de: 3301 adds r3, #1 - 800a0e0: d003 beq.n 800a0ea <_fwalk_reent+0x3a> - 800a0e2: 4629 mov r1, r5 - 800a0e4: 4630 mov r0, r6 - 800a0e6: 47c0 blx r8 - 800a0e8: 4307 orrs r7, r0 - 800a0ea: 3568 adds r5, #104 ; 0x68 - 800a0ec: e7e9 b.n 800a0c2 <_fwalk_reent+0x12> - -0800a0ee <__swhatbuf_r>: - 800a0ee: b570 push {r4, r5, r6, lr} - 800a0f0: 460e mov r6, r1 - 800a0f2: f9b1 100e ldrsh.w r1, [r1, #14] - 800a0f6: 4614 mov r4, r2 - 800a0f8: 2900 cmp r1, #0 - 800a0fa: 461d mov r5, r3 - 800a0fc: b096 sub sp, #88 ; 0x58 - 800a0fe: da07 bge.n 800a110 <__swhatbuf_r+0x22> - 800a100: 2300 movs r3, #0 - 800a102: 602b str r3, [r5, #0] - 800a104: 89b3 ldrh r3, [r6, #12] - 800a106: 061a lsls r2, r3, #24 - 800a108: d410 bmi.n 800a12c <__swhatbuf_r+0x3e> - 800a10a: f44f 6380 mov.w r3, #1024 ; 0x400 - 800a10e: e00e b.n 800a12e <__swhatbuf_r+0x40> - 800a110: 466a mov r2, sp - 800a112: f000 f903 bl 800a31c <_fstat_r> - 800a116: 2800 cmp r0, #0 - 800a118: dbf2 blt.n 800a100 <__swhatbuf_r+0x12> - 800a11a: 9a01 ldr r2, [sp, #4] - 800a11c: f402 4270 and.w r2, r2, #61440 ; 0xf000 - 800a120: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 - 800a124: 425a negs r2, r3 - 800a126: 415a adcs r2, r3 - 800a128: 602a str r2, [r5, #0] - 800a12a: e7ee b.n 800a10a <__swhatbuf_r+0x1c> - 800a12c: 2340 movs r3, #64 ; 0x40 - 800a12e: 2000 movs r0, #0 - 800a130: 6023 str r3, [r4, #0] - 800a132: b016 add sp, #88 ; 0x58 - 800a134: bd70 pop {r4, r5, r6, pc} +0800a06e <__sfputs_r>: + 800a06e: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a070: 4606 mov r6, r0 + 800a072: 460f mov r7, r1 + 800a074: 4614 mov r4, r2 + 800a076: 18d5 adds r5, r2, r3 + 800a078: 42ac cmp r4, r5 + 800a07a: d101 bne.n 800a080 <__sfputs_r+0x12> + 800a07c: 2000 movs r0, #0 + 800a07e: e007 b.n 800a090 <__sfputs_r+0x22> + 800a080: 463a mov r2, r7 + 800a082: 4630 mov r0, r6 + 800a084: f814 1b01 ldrb.w r1, [r4], #1 + 800a088: f7ff ffdc bl 800a044 <__sfputc_r> + 800a08c: 1c43 adds r3, r0, #1 + 800a08e: d1f3 bne.n 800a078 <__sfputs_r+0xa> + 800a090: bdf8 pop {r3, r4, r5, r6, r7, pc} ... -0800a138 <__smakebuf_r>: - 800a138: 898b ldrh r3, [r1, #12] - 800a13a: b573 push {r0, r1, r4, r5, r6, lr} - 800a13c: 079d lsls r5, r3, #30 - 800a13e: 4606 mov r6, r0 - 800a140: 460c mov r4, r1 - 800a142: d507 bpl.n 800a154 <__smakebuf_r+0x1c> - 800a144: f104 0347 add.w r3, r4, #71 ; 0x47 - 800a148: 6023 str r3, [r4, #0] - 800a14a: 6123 str r3, [r4, #16] - 800a14c: 2301 movs r3, #1 - 800a14e: 6163 str r3, [r4, #20] - 800a150: b002 add sp, #8 - 800a152: bd70 pop {r4, r5, r6, pc} - 800a154: 466a mov r2, sp - 800a156: ab01 add r3, sp, #4 - 800a158: f7ff ffc9 bl 800a0ee <__swhatbuf_r> - 800a15c: 9900 ldr r1, [sp, #0] - 800a15e: 4605 mov r5, r0 - 800a160: 4630 mov r0, r6 - 800a162: f7fd fadd bl 8007720 <_malloc_r> - 800a166: b948 cbnz r0, 800a17c <__smakebuf_r+0x44> - 800a168: f9b4 300c ldrsh.w r3, [r4, #12] - 800a16c: 059a lsls r2, r3, #22 - 800a16e: d4ef bmi.n 800a150 <__smakebuf_r+0x18> - 800a170: f023 0303 bic.w r3, r3, #3 - 800a174: f043 0302 orr.w r3, r3, #2 - 800a178: 81a3 strh r3, [r4, #12] - 800a17a: e7e3 b.n 800a144 <__smakebuf_r+0xc> - 800a17c: 4b0d ldr r3, [pc, #52] ; (800a1b4 <__smakebuf_r+0x7c>) - 800a17e: 62b3 str r3, [r6, #40] ; 0x28 - 800a180: 89a3 ldrh r3, [r4, #12] - 800a182: 6020 str r0, [r4, #0] - 800a184: f043 0380 orr.w r3, r3, #128 ; 0x80 - 800a188: 81a3 strh r3, [r4, #12] - 800a18a: 9b00 ldr r3, [sp, #0] - 800a18c: 6120 str r0, [r4, #16] - 800a18e: 6163 str r3, [r4, #20] - 800a190: 9b01 ldr r3, [sp, #4] - 800a192: b15b cbz r3, 800a1ac <__smakebuf_r+0x74> - 800a194: 4630 mov r0, r6 - 800a196: f9b4 100e ldrsh.w r1, [r4, #14] - 800a19a: f000 f8d1 bl 800a340 <_isatty_r> - 800a19e: b128 cbz r0, 800a1ac <__smakebuf_r+0x74> - 800a1a0: 89a3 ldrh r3, [r4, #12] - 800a1a2: f023 0303 bic.w r3, r3, #3 - 800a1a6: f043 0301 orr.w r3, r3, #1 - 800a1aa: 81a3 strh r3, [r4, #12] - 800a1ac: 89a0 ldrh r0, [r4, #12] - 800a1ae: 4305 orrs r5, r0 - 800a1b0: 81a5 strh r5, [r4, #12] - 800a1b2: e7cd b.n 800a150 <__smakebuf_r+0x18> - 800a1b4: 08009f4d .word 0x08009f4d +0800a094 <_vfiprintf_r>: + 800a094: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 800a098: 460d mov r5, r1 + 800a09a: 4614 mov r4, r2 + 800a09c: 4698 mov r8, r3 + 800a09e: 4606 mov r6, r0 + 800a0a0: b09d sub sp, #116 ; 0x74 + 800a0a2: b118 cbz r0, 800a0ac <_vfiprintf_r+0x18> + 800a0a4: 6983 ldr r3, [r0, #24] + 800a0a6: b90b cbnz r3, 800a0ac <_vfiprintf_r+0x18> + 800a0a8: f7ff f9ae bl 8009408 <__sinit> + 800a0ac: 4b89 ldr r3, [pc, #548] ; (800a2d4 <_vfiprintf_r+0x240>) + 800a0ae: 429d cmp r5, r3 + 800a0b0: d11b bne.n 800a0ea <_vfiprintf_r+0x56> + 800a0b2: 6875 ldr r5, [r6, #4] + 800a0b4: 6e6b ldr r3, [r5, #100] ; 0x64 + 800a0b6: 07d9 lsls r1, r3, #31 + 800a0b8: d405 bmi.n 800a0c6 <_vfiprintf_r+0x32> + 800a0ba: 89ab ldrh r3, [r5, #12] + 800a0bc: 059a lsls r2, r3, #22 + 800a0be: d402 bmi.n 800a0c6 <_vfiprintf_r+0x32> + 800a0c0: 6da8 ldr r0, [r5, #88] ; 0x58 + 800a0c2: f7ff fa44 bl 800954e <__retarget_lock_acquire_recursive> + 800a0c6: 89ab ldrh r3, [r5, #12] + 800a0c8: 071b lsls r3, r3, #28 + 800a0ca: d501 bpl.n 800a0d0 <_vfiprintf_r+0x3c> + 800a0cc: 692b ldr r3, [r5, #16] + 800a0ce: b9eb cbnz r3, 800a10c <_vfiprintf_r+0x78> + 800a0d0: 4629 mov r1, r5 + 800a0d2: 4630 mov r0, r6 + 800a0d4: f7fe f992 bl 80083fc <__swsetup_r> + 800a0d8: b1c0 cbz r0, 800a10c <_vfiprintf_r+0x78> + 800a0da: 6e6b ldr r3, [r5, #100] ; 0x64 + 800a0dc: 07dc lsls r4, r3, #31 + 800a0de: d50e bpl.n 800a0fe <_vfiprintf_r+0x6a> + 800a0e0: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800a0e4: b01d add sp, #116 ; 0x74 + 800a0e6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800a0ea: 4b7b ldr r3, [pc, #492] ; (800a2d8 <_vfiprintf_r+0x244>) + 800a0ec: 429d cmp r5, r3 + 800a0ee: d101 bne.n 800a0f4 <_vfiprintf_r+0x60> + 800a0f0: 68b5 ldr r5, [r6, #8] + 800a0f2: e7df b.n 800a0b4 <_vfiprintf_r+0x20> + 800a0f4: 4b79 ldr r3, [pc, #484] ; (800a2dc <_vfiprintf_r+0x248>) + 800a0f6: 429d cmp r5, r3 + 800a0f8: bf08 it eq + 800a0fa: 68f5 ldreq r5, [r6, #12] + 800a0fc: e7da b.n 800a0b4 <_vfiprintf_r+0x20> + 800a0fe: 89ab ldrh r3, [r5, #12] + 800a100: 0598 lsls r0, r3, #22 + 800a102: d4ed bmi.n 800a0e0 <_vfiprintf_r+0x4c> + 800a104: 6da8 ldr r0, [r5, #88] ; 0x58 + 800a106: f7ff fa23 bl 8009550 <__retarget_lock_release_recursive> + 800a10a: e7e9 b.n 800a0e0 <_vfiprintf_r+0x4c> + 800a10c: 2300 movs r3, #0 + 800a10e: 9309 str r3, [sp, #36] ; 0x24 + 800a110: 2320 movs r3, #32 + 800a112: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 800a116: 2330 movs r3, #48 ; 0x30 + 800a118: f04f 0901 mov.w r9, #1 + 800a11c: f8cd 800c str.w r8, [sp, #12] + 800a120: f8df 81bc ldr.w r8, [pc, #444] ; 800a2e0 <_vfiprintf_r+0x24c> + 800a124: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 800a128: 4623 mov r3, r4 + 800a12a: 469a mov sl, r3 + 800a12c: f813 2b01 ldrb.w r2, [r3], #1 + 800a130: b10a cbz r2, 800a136 <_vfiprintf_r+0xa2> + 800a132: 2a25 cmp r2, #37 ; 0x25 + 800a134: d1f9 bne.n 800a12a <_vfiprintf_r+0x96> + 800a136: ebba 0b04 subs.w fp, sl, r4 + 800a13a: d00b beq.n 800a154 <_vfiprintf_r+0xc0> + 800a13c: 465b mov r3, fp + 800a13e: 4622 mov r2, r4 + 800a140: 4629 mov r1, r5 + 800a142: 4630 mov r0, r6 + 800a144: f7ff ff93 bl 800a06e <__sfputs_r> + 800a148: 3001 adds r0, #1 + 800a14a: f000 80aa beq.w 800a2a2 <_vfiprintf_r+0x20e> + 800a14e: 9a09 ldr r2, [sp, #36] ; 0x24 + 800a150: 445a add r2, fp + 800a152: 9209 str r2, [sp, #36] ; 0x24 + 800a154: f89a 3000 ldrb.w r3, [sl] + 800a158: 2b00 cmp r3, #0 + 800a15a: f000 80a2 beq.w 800a2a2 <_vfiprintf_r+0x20e> + 800a15e: 2300 movs r3, #0 + 800a160: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 800a164: e9cd 2305 strd r2, r3, [sp, #20] + 800a168: f10a 0a01 add.w sl, sl, #1 + 800a16c: 9304 str r3, [sp, #16] + 800a16e: 9307 str r3, [sp, #28] + 800a170: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 800a174: 931a str r3, [sp, #104] ; 0x68 + 800a176: 4654 mov r4, sl + 800a178: 2205 movs r2, #5 + 800a17a: f814 1b01 ldrb.w r1, [r4], #1 + 800a17e: 4858 ldr r0, [pc, #352] ; (800a2e0 <_vfiprintf_r+0x24c>) + 800a180: f7ff fa4c bl 800961c + 800a184: 9a04 ldr r2, [sp, #16] + 800a186: b9d8 cbnz r0, 800a1c0 <_vfiprintf_r+0x12c> + 800a188: 06d1 lsls r1, r2, #27 + 800a18a: bf44 itt mi + 800a18c: 2320 movmi r3, #32 + 800a18e: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 800a192: 0713 lsls r3, r2, #28 + 800a194: bf44 itt mi + 800a196: 232b movmi r3, #43 ; 0x2b + 800a198: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 800a19c: f89a 3000 ldrb.w r3, [sl] + 800a1a0: 2b2a cmp r3, #42 ; 0x2a + 800a1a2: d015 beq.n 800a1d0 <_vfiprintf_r+0x13c> + 800a1a4: 4654 mov r4, sl + 800a1a6: 2000 movs r0, #0 + 800a1a8: f04f 0c0a mov.w ip, #10 + 800a1ac: 9a07 ldr r2, [sp, #28] + 800a1ae: 4621 mov r1, r4 + 800a1b0: f811 3b01 ldrb.w r3, [r1], #1 + 800a1b4: 3b30 subs r3, #48 ; 0x30 + 800a1b6: 2b09 cmp r3, #9 + 800a1b8: d94e bls.n 800a258 <_vfiprintf_r+0x1c4> + 800a1ba: b1b0 cbz r0, 800a1ea <_vfiprintf_r+0x156> + 800a1bc: 9207 str r2, [sp, #28] + 800a1be: e014 b.n 800a1ea <_vfiprintf_r+0x156> + 800a1c0: eba0 0308 sub.w r3, r0, r8 + 800a1c4: fa09 f303 lsl.w r3, r9, r3 + 800a1c8: 4313 orrs r3, r2 + 800a1ca: 46a2 mov sl, r4 + 800a1cc: 9304 str r3, [sp, #16] + 800a1ce: e7d2 b.n 800a176 <_vfiprintf_r+0xe2> + 800a1d0: 9b03 ldr r3, [sp, #12] + 800a1d2: 1d19 adds r1, r3, #4 + 800a1d4: 681b ldr r3, [r3, #0] + 800a1d6: 9103 str r1, [sp, #12] + 800a1d8: 2b00 cmp r3, #0 + 800a1da: bfbb ittet lt + 800a1dc: 425b neglt r3, r3 + 800a1de: f042 0202 orrlt.w r2, r2, #2 + 800a1e2: 9307 strge r3, [sp, #28] + 800a1e4: 9307 strlt r3, [sp, #28] + 800a1e6: bfb8 it lt + 800a1e8: 9204 strlt r2, [sp, #16] + 800a1ea: 7823 ldrb r3, [r4, #0] + 800a1ec: 2b2e cmp r3, #46 ; 0x2e + 800a1ee: d10c bne.n 800a20a <_vfiprintf_r+0x176> + 800a1f0: 7863 ldrb r3, [r4, #1] + 800a1f2: 2b2a cmp r3, #42 ; 0x2a + 800a1f4: d135 bne.n 800a262 <_vfiprintf_r+0x1ce> + 800a1f6: 9b03 ldr r3, [sp, #12] + 800a1f8: 3402 adds r4, #2 + 800a1fa: 1d1a adds r2, r3, #4 + 800a1fc: 681b ldr r3, [r3, #0] + 800a1fe: 9203 str r2, [sp, #12] + 800a200: 2b00 cmp r3, #0 + 800a202: bfb8 it lt + 800a204: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 800a208: 9305 str r3, [sp, #20] + 800a20a: f8df a0e4 ldr.w sl, [pc, #228] ; 800a2f0 <_vfiprintf_r+0x25c> + 800a20e: 2203 movs r2, #3 + 800a210: 4650 mov r0, sl + 800a212: 7821 ldrb r1, [r4, #0] + 800a214: f7ff fa02 bl 800961c + 800a218: b140 cbz r0, 800a22c <_vfiprintf_r+0x198> + 800a21a: 2340 movs r3, #64 ; 0x40 + 800a21c: eba0 000a sub.w r0, r0, sl + 800a220: fa03 f000 lsl.w r0, r3, r0 + 800a224: 9b04 ldr r3, [sp, #16] + 800a226: 3401 adds r4, #1 + 800a228: 4303 orrs r3, r0 + 800a22a: 9304 str r3, [sp, #16] + 800a22c: f814 1b01 ldrb.w r1, [r4], #1 + 800a230: 2206 movs r2, #6 + 800a232: 482c ldr r0, [pc, #176] ; (800a2e4 <_vfiprintf_r+0x250>) + 800a234: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 800a238: f7ff f9f0 bl 800961c + 800a23c: 2800 cmp r0, #0 + 800a23e: d03f beq.n 800a2c0 <_vfiprintf_r+0x22c> + 800a240: 4b29 ldr r3, [pc, #164] ; (800a2e8 <_vfiprintf_r+0x254>) + 800a242: bb1b cbnz r3, 800a28c <_vfiprintf_r+0x1f8> + 800a244: 9b03 ldr r3, [sp, #12] + 800a246: 3307 adds r3, #7 + 800a248: f023 0307 bic.w r3, r3, #7 + 800a24c: 3308 adds r3, #8 + 800a24e: 9303 str r3, [sp, #12] + 800a250: 9b09 ldr r3, [sp, #36] ; 0x24 + 800a252: 443b add r3, r7 + 800a254: 9309 str r3, [sp, #36] ; 0x24 + 800a256: e767 b.n 800a128 <_vfiprintf_r+0x94> + 800a258: 460c mov r4, r1 + 800a25a: 2001 movs r0, #1 + 800a25c: fb0c 3202 mla r2, ip, r2, r3 + 800a260: e7a5 b.n 800a1ae <_vfiprintf_r+0x11a> + 800a262: 2300 movs r3, #0 + 800a264: f04f 0c0a mov.w ip, #10 + 800a268: 4619 mov r1, r3 + 800a26a: 3401 adds r4, #1 + 800a26c: 9305 str r3, [sp, #20] + 800a26e: 4620 mov r0, r4 + 800a270: f810 2b01 ldrb.w r2, [r0], #1 + 800a274: 3a30 subs r2, #48 ; 0x30 + 800a276: 2a09 cmp r2, #9 + 800a278: d903 bls.n 800a282 <_vfiprintf_r+0x1ee> + 800a27a: 2b00 cmp r3, #0 + 800a27c: d0c5 beq.n 800a20a <_vfiprintf_r+0x176> + 800a27e: 9105 str r1, [sp, #20] + 800a280: e7c3 b.n 800a20a <_vfiprintf_r+0x176> + 800a282: 4604 mov r4, r0 + 800a284: 2301 movs r3, #1 + 800a286: fb0c 2101 mla r1, ip, r1, r2 + 800a28a: e7f0 b.n 800a26e <_vfiprintf_r+0x1da> + 800a28c: ab03 add r3, sp, #12 + 800a28e: 9300 str r3, [sp, #0] + 800a290: 462a mov r2, r5 + 800a292: 4630 mov r0, r6 + 800a294: 4b15 ldr r3, [pc, #84] ; (800a2ec <_vfiprintf_r+0x258>) + 800a296: a904 add r1, sp, #16 + 800a298: f7fd fbca bl 8007a30 <_printf_float> + 800a29c: 4607 mov r7, r0 + 800a29e: 1c78 adds r0, r7, #1 + 800a2a0: d1d6 bne.n 800a250 <_vfiprintf_r+0x1bc> + 800a2a2: 6e6b ldr r3, [r5, #100] ; 0x64 + 800a2a4: 07d9 lsls r1, r3, #31 + 800a2a6: d405 bmi.n 800a2b4 <_vfiprintf_r+0x220> + 800a2a8: 89ab ldrh r3, [r5, #12] + 800a2aa: 059a lsls r2, r3, #22 + 800a2ac: d402 bmi.n 800a2b4 <_vfiprintf_r+0x220> + 800a2ae: 6da8 ldr r0, [r5, #88] ; 0x58 + 800a2b0: f7ff f94e bl 8009550 <__retarget_lock_release_recursive> + 800a2b4: 89ab ldrh r3, [r5, #12] + 800a2b6: 065b lsls r3, r3, #25 + 800a2b8: f53f af12 bmi.w 800a0e0 <_vfiprintf_r+0x4c> + 800a2bc: 9809 ldr r0, [sp, #36] ; 0x24 + 800a2be: e711 b.n 800a0e4 <_vfiprintf_r+0x50> + 800a2c0: ab03 add r3, sp, #12 + 800a2c2: 9300 str r3, [sp, #0] + 800a2c4: 462a mov r2, r5 + 800a2c6: 4630 mov r0, r6 + 800a2c8: 4b08 ldr r3, [pc, #32] ; (800a2ec <_vfiprintf_r+0x258>) + 800a2ca: a904 add r1, sp, #16 + 800a2cc: f7fd fe4c bl 8007f68 <_printf_i> + 800a2d0: e7e4 b.n 800a29c <_vfiprintf_r+0x208> + 800a2d2: bf00 nop + 800a2d4: 0800b374 .word 0x0800b374 + 800a2d8: 0800b394 .word 0x0800b394 + 800a2dc: 0800b354 .word 0x0800b354 + 800a2e0: 0800b514 .word 0x0800b514 + 800a2e4: 0800b51e .word 0x0800b51e + 800a2e8: 08007a31 .word 0x08007a31 + 800a2ec: 0800a06f .word 0x0800a06f + 800a2f0: 0800b51a .word 0x0800b51a -0800a1b8 <_malloc_usable_size_r>: - 800a1b8: f851 3c04 ldr.w r3, [r1, #-4] - 800a1bc: 1f18 subs r0, r3, #4 - 800a1be: 2b00 cmp r3, #0 - 800a1c0: bfbc itt lt - 800a1c2: 580b ldrlt r3, [r1, r0] - 800a1c4: 18c0 addlt r0, r0, r3 - 800a1c6: 4770 bx lr +0800a2f4 <_putc_r>: + 800a2f4: b570 push {r4, r5, r6, lr} + 800a2f6: 460d mov r5, r1 + 800a2f8: 4614 mov r4, r2 + 800a2fa: 4606 mov r6, r0 + 800a2fc: b118 cbz r0, 800a306 <_putc_r+0x12> + 800a2fe: 6983 ldr r3, [r0, #24] + 800a300: b90b cbnz r3, 800a306 <_putc_r+0x12> + 800a302: f7ff f881 bl 8009408 <__sinit> + 800a306: 4b1c ldr r3, [pc, #112] ; (800a378 <_putc_r+0x84>) + 800a308: 429c cmp r4, r3 + 800a30a: d124 bne.n 800a356 <_putc_r+0x62> + 800a30c: 6874 ldr r4, [r6, #4] + 800a30e: 6e63 ldr r3, [r4, #100] ; 0x64 + 800a310: 07d8 lsls r0, r3, #31 + 800a312: d405 bmi.n 800a320 <_putc_r+0x2c> + 800a314: 89a3 ldrh r3, [r4, #12] + 800a316: 0599 lsls r1, r3, #22 + 800a318: d402 bmi.n 800a320 <_putc_r+0x2c> + 800a31a: 6da0 ldr r0, [r4, #88] ; 0x58 + 800a31c: f7ff f917 bl 800954e <__retarget_lock_acquire_recursive> + 800a320: 68a3 ldr r3, [r4, #8] + 800a322: 3b01 subs r3, #1 + 800a324: 2b00 cmp r3, #0 + 800a326: 60a3 str r3, [r4, #8] + 800a328: da05 bge.n 800a336 <_putc_r+0x42> + 800a32a: 69a2 ldr r2, [r4, #24] + 800a32c: 4293 cmp r3, r2 + 800a32e: db1c blt.n 800a36a <_putc_r+0x76> + 800a330: b2eb uxtb r3, r5 + 800a332: 2b0a cmp r3, #10 + 800a334: d019 beq.n 800a36a <_putc_r+0x76> + 800a336: 6823 ldr r3, [r4, #0] + 800a338: 1c5a adds r2, r3, #1 + 800a33a: 6022 str r2, [r4, #0] + 800a33c: 701d strb r5, [r3, #0] + 800a33e: b2ed uxtb r5, r5 + 800a340: 6e63 ldr r3, [r4, #100] ; 0x64 + 800a342: 07da lsls r2, r3, #31 + 800a344: d405 bmi.n 800a352 <_putc_r+0x5e> + 800a346: 89a3 ldrh r3, [r4, #12] + 800a348: 059b lsls r3, r3, #22 + 800a34a: d402 bmi.n 800a352 <_putc_r+0x5e> + 800a34c: 6da0 ldr r0, [r4, #88] ; 0x58 + 800a34e: f7ff f8ff bl 8009550 <__retarget_lock_release_recursive> + 800a352: 4628 mov r0, r5 + 800a354: bd70 pop {r4, r5, r6, pc} + 800a356: 4b09 ldr r3, [pc, #36] ; (800a37c <_putc_r+0x88>) + 800a358: 429c cmp r4, r3 + 800a35a: d101 bne.n 800a360 <_putc_r+0x6c> + 800a35c: 68b4 ldr r4, [r6, #8] + 800a35e: e7d6 b.n 800a30e <_putc_r+0x1a> + 800a360: 4b07 ldr r3, [pc, #28] ; (800a380 <_putc_r+0x8c>) + 800a362: 429c cmp r4, r3 + 800a364: bf08 it eq + 800a366: 68f4 ldreq r4, [r6, #12] + 800a368: e7d1 b.n 800a30e <_putc_r+0x1a> + 800a36a: 4629 mov r1, r5 + 800a36c: 4622 mov r2, r4 + 800a36e: 4630 mov r0, r6 + 800a370: f7fd fff2 bl 8008358 <__swbuf_r> + 800a374: 4605 mov r5, r0 + 800a376: e7e3 b.n 800a340 <_putc_r+0x4c> + 800a378: 0800b374 .word 0x0800b374 + 800a37c: 0800b394 .word 0x0800b394 + 800a380: 0800b354 .word 0x0800b354 -0800a1c8 <_raise_r>: - 800a1c8: 291f cmp r1, #31 - 800a1ca: b538 push {r3, r4, r5, lr} - 800a1cc: 4604 mov r4, r0 - 800a1ce: 460d mov r5, r1 - 800a1d0: d904 bls.n 800a1dc <_raise_r+0x14> - 800a1d2: 2316 movs r3, #22 - 800a1d4: 6003 str r3, [r0, #0] - 800a1d6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 800a1da: bd38 pop {r3, r4, r5, pc} - 800a1dc: 6c42 ldr r2, [r0, #68] ; 0x44 - 800a1de: b112 cbz r2, 800a1e6 <_raise_r+0x1e> - 800a1e0: f852 3021 ldr.w r3, [r2, r1, lsl #2] - 800a1e4: b94b cbnz r3, 800a1fa <_raise_r+0x32> - 800a1e6: 4620 mov r0, r4 - 800a1e8: f000 f830 bl 800a24c <_getpid_r> - 800a1ec: 462a mov r2, r5 - 800a1ee: 4601 mov r1, r0 - 800a1f0: 4620 mov r0, r4 - 800a1f2: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 800a1f6: f000 b817 b.w 800a228 <_kill_r> - 800a1fa: 2b01 cmp r3, #1 - 800a1fc: d00a beq.n 800a214 <_raise_r+0x4c> - 800a1fe: 1c59 adds r1, r3, #1 - 800a200: d103 bne.n 800a20a <_raise_r+0x42> - 800a202: 2316 movs r3, #22 - 800a204: 6003 str r3, [r0, #0] - 800a206: 2001 movs r0, #1 - 800a208: e7e7 b.n 800a1da <_raise_r+0x12> - 800a20a: 2400 movs r4, #0 - 800a20c: 4628 mov r0, r5 - 800a20e: f842 4025 str.w r4, [r2, r5, lsl #2] - 800a212: 4798 blx r3 - 800a214: 2000 movs r0, #0 - 800a216: e7e0 b.n 800a1da <_raise_r+0x12> +0800a384 <__sread>: + 800a384: b510 push {r4, lr} + 800a386: 460c mov r4, r1 + 800a388: f9b1 100e ldrsh.w r1, [r1, #14] + 800a38c: f000 f916 bl 800a5bc <_read_r> + 800a390: 2800 cmp r0, #0 + 800a392: bfab itete ge + 800a394: 6d63 ldrge r3, [r4, #84] ; 0x54 + 800a396: 89a3 ldrhlt r3, [r4, #12] + 800a398: 181b addge r3, r3, r0 + 800a39a: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 + 800a39e: bfac ite ge + 800a3a0: 6563 strge r3, [r4, #84] ; 0x54 + 800a3a2: 81a3 strhlt r3, [r4, #12] + 800a3a4: bd10 pop {r4, pc} -0800a218 : - 800a218: 4b02 ldr r3, [pc, #8] ; (800a224 ) - 800a21a: 4601 mov r1, r0 - 800a21c: 6818 ldr r0, [r3, #0] - 800a21e: f7ff bfd3 b.w 800a1c8 <_raise_r> - 800a222: bf00 nop - 800a224: 20000014 .word 0x20000014 +0800a3a6 <__swrite>: + 800a3a6: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 800a3aa: 461f mov r7, r3 + 800a3ac: 898b ldrh r3, [r1, #12] + 800a3ae: 4605 mov r5, r0 + 800a3b0: 05db lsls r3, r3, #23 + 800a3b2: 460c mov r4, r1 + 800a3b4: 4616 mov r6, r2 + 800a3b6: d505 bpl.n 800a3c4 <__swrite+0x1e> + 800a3b8: 2302 movs r3, #2 + 800a3ba: 2200 movs r2, #0 + 800a3bc: f9b1 100e ldrsh.w r1, [r1, #14] + 800a3c0: f000 f898 bl 800a4f4 <_lseek_r> + 800a3c4: 89a3 ldrh r3, [r4, #12] + 800a3c6: 4632 mov r2, r6 + 800a3c8: f423 5380 bic.w r3, r3, #4096 ; 0x1000 + 800a3cc: 81a3 strh r3, [r4, #12] + 800a3ce: 4628 mov r0, r5 + 800a3d0: 463b mov r3, r7 + 800a3d2: f9b4 100e ldrsh.w r1, [r4, #14] + 800a3d6: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} + 800a3da: f000 b817 b.w 800a40c <_write_r> -0800a228 <_kill_r>: - 800a228: b538 push {r3, r4, r5, lr} - 800a22a: 2300 movs r3, #0 - 800a22c: 4d06 ldr r5, [pc, #24] ; (800a248 <_kill_r+0x20>) - 800a22e: 4604 mov r4, r0 - 800a230: 4608 mov r0, r1 - 800a232: 4611 mov r1, r2 - 800a234: 602b str r3, [r5, #0] - 800a236: f7f7 fb3a bl 80018ae <_kill> - 800a23a: 1c43 adds r3, r0, #1 - 800a23c: d102 bne.n 800a244 <_kill_r+0x1c> - 800a23e: 682b ldr r3, [r5, #0] - 800a240: b103 cbz r3, 800a244 <_kill_r+0x1c> - 800a242: 6023 str r3, [r4, #0] - 800a244: bd38 pop {r3, r4, r5, pc} - 800a246: bf00 nop - 800a248: 20002538 .word 0x20002538 +0800a3de <__sseek>: + 800a3de: b510 push {r4, lr} + 800a3e0: 460c mov r4, r1 + 800a3e2: f9b1 100e ldrsh.w r1, [r1, #14] + 800a3e6: f000 f885 bl 800a4f4 <_lseek_r> + 800a3ea: 1c43 adds r3, r0, #1 + 800a3ec: 89a3 ldrh r3, [r4, #12] + 800a3ee: bf15 itete ne + 800a3f0: 6560 strne r0, [r4, #84] ; 0x54 + 800a3f2: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 + 800a3f6: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 + 800a3fa: 81a3 strheq r3, [r4, #12] + 800a3fc: bf18 it ne + 800a3fe: 81a3 strhne r3, [r4, #12] + 800a400: bd10 pop {r4, pc} -0800a24c <_getpid_r>: - 800a24c: f7f7 bb28 b.w 80018a0 <_getpid> - -0800a250 <__sread>: - 800a250: b510 push {r4, lr} - 800a252: 460c mov r4, r1 - 800a254: f9b1 100e ldrsh.w r1, [r1, #14] - 800a258: f000 f894 bl 800a384 <_read_r> - 800a25c: 2800 cmp r0, #0 - 800a25e: bfab itete ge - 800a260: 6d63 ldrge r3, [r4, #84] ; 0x54 - 800a262: 89a3 ldrhlt r3, [r4, #12] - 800a264: 181b addge r3, r3, r0 - 800a266: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 - 800a26a: bfac ite ge - 800a26c: 6563 strge r3, [r4, #84] ; 0x54 - 800a26e: 81a3 strhlt r3, [r4, #12] - 800a270: bd10 pop {r4, pc} - -0800a272 <__swrite>: - 800a272: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 800a276: 461f mov r7, r3 - 800a278: 898b ldrh r3, [r1, #12] - 800a27a: 4605 mov r5, r0 - 800a27c: 05db lsls r3, r3, #23 - 800a27e: 460c mov r4, r1 - 800a280: 4616 mov r6, r2 - 800a282: d505 bpl.n 800a290 <__swrite+0x1e> - 800a284: 2302 movs r3, #2 - 800a286: 2200 movs r2, #0 - 800a288: f9b1 100e ldrsh.w r1, [r1, #14] - 800a28c: f000 f868 bl 800a360 <_lseek_r> - 800a290: 89a3 ldrh r3, [r4, #12] - 800a292: 4632 mov r2, r6 - 800a294: f423 5380 bic.w r3, r3, #4096 ; 0x1000 - 800a298: 81a3 strh r3, [r4, #12] - 800a29a: 4628 mov r0, r5 - 800a29c: 463b mov r3, r7 - 800a29e: f9b4 100e ldrsh.w r1, [r4, #14] - 800a2a2: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} - 800a2a6: f000 b817 b.w 800a2d8 <_write_r> - -0800a2aa <__sseek>: - 800a2aa: b510 push {r4, lr} - 800a2ac: 460c mov r4, r1 - 800a2ae: f9b1 100e ldrsh.w r1, [r1, #14] - 800a2b2: f000 f855 bl 800a360 <_lseek_r> - 800a2b6: 1c43 adds r3, r0, #1 - 800a2b8: 89a3 ldrh r3, [r4, #12] - 800a2ba: bf15 itete ne - 800a2bc: 6560 strne r0, [r4, #84] ; 0x54 - 800a2be: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 - 800a2c2: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 - 800a2c6: 81a3 strheq r3, [r4, #12] - 800a2c8: bf18 it ne - 800a2ca: 81a3 strhne r3, [r4, #12] - 800a2cc: bd10 pop {r4, pc} - -0800a2ce <__sclose>: - 800a2ce: f9b1 100e ldrsh.w r1, [r1, #14] - 800a2d2: f000 b813 b.w 800a2fc <_close_r> +0800a402 <__sclose>: + 800a402: f9b1 100e ldrsh.w r1, [r1, #14] + 800a406: f000 b831 b.w 800a46c <_close_r> ... -0800a2d8 <_write_r>: - 800a2d8: b538 push {r3, r4, r5, lr} - 800a2da: 4604 mov r4, r0 - 800a2dc: 4608 mov r0, r1 - 800a2de: 4611 mov r1, r2 - 800a2e0: 2200 movs r2, #0 - 800a2e2: 4d05 ldr r5, [pc, #20] ; (800a2f8 <_write_r+0x20>) - 800a2e4: 602a str r2, [r5, #0] - 800a2e6: 461a mov r2, r3 - 800a2e8: f7f7 fb18 bl 800191c <_write> - 800a2ec: 1c43 adds r3, r0, #1 - 800a2ee: d102 bne.n 800a2f6 <_write_r+0x1e> - 800a2f0: 682b ldr r3, [r5, #0] - 800a2f2: b103 cbz r3, 800a2f6 <_write_r+0x1e> - 800a2f4: 6023 str r3, [r4, #0] - 800a2f6: bd38 pop {r3, r4, r5, pc} - 800a2f8: 20002538 .word 0x20002538 +0800a40c <_write_r>: + 800a40c: b538 push {r3, r4, r5, lr} + 800a40e: 4604 mov r4, r0 + 800a410: 4608 mov r0, r1 + 800a412: 4611 mov r1, r2 + 800a414: 2200 movs r2, #0 + 800a416: 4d05 ldr r5, [pc, #20] ; (800a42c <_write_r+0x20>) + 800a418: 602a str r2, [r5, #0] + 800a41a: 461a mov r2, r3 + 800a41c: f7f6 fe9a bl 8001154 <_write> + 800a420: 1c43 adds r3, r0, #1 + 800a422: d102 bne.n 800a42a <_write_r+0x1e> + 800a424: 682b ldr r3, [r5, #0] + 800a426: b103 cbz r3, 800a42a <_write_r+0x1e> + 800a428: 6023 str r3, [r4, #0] + 800a42a: bd38 pop {r3, r4, r5, pc} + 800a42c: 20002544 .word 0x20002544 -0800a2fc <_close_r>: - 800a2fc: b538 push {r3, r4, r5, lr} - 800a2fe: 2300 movs r3, #0 - 800a300: 4d05 ldr r5, [pc, #20] ; (800a318 <_close_r+0x1c>) - 800a302: 4604 mov r4, r0 - 800a304: 4608 mov r0, r1 - 800a306: 602b str r3, [r5, #0] - 800a308: f7f7 fb24 bl 8001954 <_close> - 800a30c: 1c43 adds r3, r0, #1 - 800a30e: d102 bne.n 800a316 <_close_r+0x1a> - 800a310: 682b ldr r3, [r5, #0] - 800a312: b103 cbz r3, 800a316 <_close_r+0x1a> - 800a314: 6023 str r3, [r4, #0] - 800a316: bd38 pop {r3, r4, r5, pc} - 800a318: 20002538 .word 0x20002538 +0800a430 <__assert_func>: + 800a430: b51f push {r0, r1, r2, r3, r4, lr} + 800a432: 4614 mov r4, r2 + 800a434: 461a mov r2, r3 + 800a436: 4b09 ldr r3, [pc, #36] ; (800a45c <__assert_func+0x2c>) + 800a438: 4605 mov r5, r0 + 800a43a: 681b ldr r3, [r3, #0] + 800a43c: 68d8 ldr r0, [r3, #12] + 800a43e: b14c cbz r4, 800a454 <__assert_func+0x24> + 800a440: 4b07 ldr r3, [pc, #28] ; (800a460 <__assert_func+0x30>) + 800a442: e9cd 3401 strd r3, r4, [sp, #4] + 800a446: 9100 str r1, [sp, #0] + 800a448: 462b mov r3, r5 + 800a44a: 4906 ldr r1, [pc, #24] ; (800a464 <__assert_func+0x34>) + 800a44c: f000 f81e bl 800a48c + 800a450: f000 f8d3 bl 800a5fa + 800a454: 4b04 ldr r3, [pc, #16] ; (800a468 <__assert_func+0x38>) + 800a456: 461c mov r4, r3 + 800a458: e7f3 b.n 800a442 <__assert_func+0x12> + 800a45a: bf00 nop + 800a45c: 20000014 .word 0x20000014 + 800a460: 0800b525 .word 0x0800b525 + 800a464: 0800b532 .word 0x0800b532 + 800a468: 0800b560 .word 0x0800b560 -0800a31c <_fstat_r>: - 800a31c: b538 push {r3, r4, r5, lr} - 800a31e: 2300 movs r3, #0 - 800a320: 4d06 ldr r5, [pc, #24] ; (800a33c <_fstat_r+0x20>) - 800a322: 4604 mov r4, r0 - 800a324: 4608 mov r0, r1 - 800a326: 4611 mov r1, r2 - 800a328: 602b str r3, [r5, #0] - 800a32a: f7f7 fb1e bl 800196a <_fstat> - 800a32e: 1c43 adds r3, r0, #1 - 800a330: d102 bne.n 800a338 <_fstat_r+0x1c> - 800a332: 682b ldr r3, [r5, #0] - 800a334: b103 cbz r3, 800a338 <_fstat_r+0x1c> - 800a336: 6023 str r3, [r4, #0] - 800a338: bd38 pop {r3, r4, r5, pc} - 800a33a: bf00 nop - 800a33c: 20002538 .word 0x20002538 +0800a46c <_close_r>: + 800a46c: b538 push {r3, r4, r5, lr} + 800a46e: 2300 movs r3, #0 + 800a470: 4d05 ldr r5, [pc, #20] ; (800a488 <_close_r+0x1c>) + 800a472: 4604 mov r4, r0 + 800a474: 4608 mov r0, r1 + 800a476: 602b str r3, [r5, #0] + 800a478: f7f7 fa94 bl 80019a4 <_close> + 800a47c: 1c43 adds r3, r0, #1 + 800a47e: d102 bne.n 800a486 <_close_r+0x1a> + 800a480: 682b ldr r3, [r5, #0] + 800a482: b103 cbz r3, 800a486 <_close_r+0x1a> + 800a484: 6023 str r3, [r4, #0] + 800a486: bd38 pop {r3, r4, r5, pc} + 800a488: 20002544 .word 0x20002544 -0800a340 <_isatty_r>: - 800a340: b538 push {r3, r4, r5, lr} - 800a342: 2300 movs r3, #0 - 800a344: 4d05 ldr r5, [pc, #20] ; (800a35c <_isatty_r+0x1c>) - 800a346: 4604 mov r4, r0 - 800a348: 4608 mov r0, r1 - 800a34a: 602b str r3, [r5, #0] - 800a34c: f7f7 fb1c bl 8001988 <_isatty> - 800a350: 1c43 adds r3, r0, #1 - 800a352: d102 bne.n 800a35a <_isatty_r+0x1a> - 800a354: 682b ldr r3, [r5, #0] - 800a356: b103 cbz r3, 800a35a <_isatty_r+0x1a> - 800a358: 6023 str r3, [r4, #0] - 800a35a: bd38 pop {r3, r4, r5, pc} - 800a35c: 20002538 .word 0x20002538 +0800a48c : + 800a48c: b40e push {r1, r2, r3} + 800a48e: b503 push {r0, r1, lr} + 800a490: 4601 mov r1, r0 + 800a492: ab03 add r3, sp, #12 + 800a494: 4805 ldr r0, [pc, #20] ; (800a4ac ) + 800a496: f853 2b04 ldr.w r2, [r3], #4 + 800a49a: 6800 ldr r0, [r0, #0] + 800a49c: 9301 str r3, [sp, #4] + 800a49e: f7ff fdf9 bl 800a094 <_vfiprintf_r> + 800a4a2: b002 add sp, #8 + 800a4a4: f85d eb04 ldr.w lr, [sp], #4 + 800a4a8: b003 add sp, #12 + 800a4aa: 4770 bx lr + 800a4ac: 20000014 .word 0x20000014 -0800a360 <_lseek_r>: - 800a360: b538 push {r3, r4, r5, lr} - 800a362: 4604 mov r4, r0 - 800a364: 4608 mov r0, r1 - 800a366: 4611 mov r1, r2 - 800a368: 2200 movs r2, #0 - 800a36a: 4d05 ldr r5, [pc, #20] ; (800a380 <_lseek_r+0x20>) - 800a36c: 602a str r2, [r5, #0] - 800a36e: 461a mov r2, r3 - 800a370: f7f7 fb14 bl 800199c <_lseek> - 800a374: 1c43 adds r3, r0, #1 - 800a376: d102 bne.n 800a37e <_lseek_r+0x1e> - 800a378: 682b ldr r3, [r5, #0] - 800a37a: b103 cbz r3, 800a37e <_lseek_r+0x1e> - 800a37c: 6023 str r3, [r4, #0] - 800a37e: bd38 pop {r3, r4, r5, pc} - 800a380: 20002538 .word 0x20002538 +0800a4b0 <_fstat_r>: + 800a4b0: b538 push {r3, r4, r5, lr} + 800a4b2: 2300 movs r3, #0 + 800a4b4: 4d06 ldr r5, [pc, #24] ; (800a4d0 <_fstat_r+0x20>) + 800a4b6: 4604 mov r4, r0 + 800a4b8: 4608 mov r0, r1 + 800a4ba: 4611 mov r1, r2 + 800a4bc: 602b str r3, [r5, #0] + 800a4be: f7f7 fa7c bl 80019ba <_fstat> + 800a4c2: 1c43 adds r3, r0, #1 + 800a4c4: d102 bne.n 800a4cc <_fstat_r+0x1c> + 800a4c6: 682b ldr r3, [r5, #0] + 800a4c8: b103 cbz r3, 800a4cc <_fstat_r+0x1c> + 800a4ca: 6023 str r3, [r4, #0] + 800a4cc: bd38 pop {r3, r4, r5, pc} + 800a4ce: bf00 nop + 800a4d0: 20002544 .word 0x20002544 -0800a384 <_read_r>: - 800a384: b538 push {r3, r4, r5, lr} - 800a386: 4604 mov r4, r0 - 800a388: 4608 mov r0, r1 - 800a38a: 4611 mov r1, r2 - 800a38c: 2200 movs r2, #0 - 800a38e: 4d05 ldr r5, [pc, #20] ; (800a3a4 <_read_r+0x20>) - 800a390: 602a str r2, [r5, #0] - 800a392: 461a mov r2, r3 - 800a394: f7f7 faa5 bl 80018e2 <_read> - 800a398: 1c43 adds r3, r0, #1 - 800a39a: d102 bne.n 800a3a2 <_read_r+0x1e> - 800a39c: 682b ldr r3, [r5, #0] - 800a39e: b103 cbz r3, 800a3a2 <_read_r+0x1e> - 800a3a0: 6023 str r3, [r4, #0] - 800a3a2: bd38 pop {r3, r4, r5, pc} - 800a3a4: 20002538 .word 0x20002538 +0800a4d4 <_isatty_r>: + 800a4d4: b538 push {r3, r4, r5, lr} + 800a4d6: 2300 movs r3, #0 + 800a4d8: 4d05 ldr r5, [pc, #20] ; (800a4f0 <_isatty_r+0x1c>) + 800a4da: 4604 mov r4, r0 + 800a4dc: 4608 mov r0, r1 + 800a4de: 602b str r3, [r5, #0] + 800a4e0: f7f7 fa7a bl 80019d8 <_isatty> + 800a4e4: 1c43 adds r3, r0, #1 + 800a4e6: d102 bne.n 800a4ee <_isatty_r+0x1a> + 800a4e8: 682b ldr r3, [r5, #0] + 800a4ea: b103 cbz r3, 800a4ee <_isatty_r+0x1a> + 800a4ec: 6023 str r3, [r4, #0] + 800a4ee: bd38 pop {r3, r4, r5, pc} + 800a4f0: 20002544 .word 0x20002544 -0800a3a8 <_init>: - 800a3a8: b5f8 push {r3, r4, r5, r6, r7, lr} - 800a3aa: bf00 nop - 800a3ac: bcf8 pop {r3, r4, r5, r6, r7} - 800a3ae: bc08 pop {r3} - 800a3b0: 469e mov lr, r3 - 800a3b2: 4770 bx lr +0800a4f4 <_lseek_r>: + 800a4f4: b538 push {r3, r4, r5, lr} + 800a4f6: 4604 mov r4, r0 + 800a4f8: 4608 mov r0, r1 + 800a4fa: 4611 mov r1, r2 + 800a4fc: 2200 movs r2, #0 + 800a4fe: 4d05 ldr r5, [pc, #20] ; (800a514 <_lseek_r+0x20>) + 800a500: 602a str r2, [r5, #0] + 800a502: 461a mov r2, r3 + 800a504: f7f7 fa72 bl 80019ec <_lseek> + 800a508: 1c43 adds r3, r0, #1 + 800a50a: d102 bne.n 800a512 <_lseek_r+0x1e> + 800a50c: 682b ldr r3, [r5, #0] + 800a50e: b103 cbz r3, 800a512 <_lseek_r+0x1e> + 800a510: 6023 str r3, [r4, #0] + 800a512: bd38 pop {r3, r4, r5, pc} + 800a514: 20002544 .word 0x20002544 -0800a3b4 <_fini>: - 800a3b4: b5f8 push {r3, r4, r5, r6, r7, lr} - 800a3b6: bf00 nop - 800a3b8: bcf8 pop {r3, r4, r5, r6, r7} - 800a3ba: bc08 pop {r3} - 800a3bc: 469e mov lr, r3 - 800a3be: 4770 bx lr +0800a518 <__ascii_mbtowc>: + 800a518: b082 sub sp, #8 + 800a51a: b901 cbnz r1, 800a51e <__ascii_mbtowc+0x6> + 800a51c: a901 add r1, sp, #4 + 800a51e: b142 cbz r2, 800a532 <__ascii_mbtowc+0x1a> + 800a520: b14b cbz r3, 800a536 <__ascii_mbtowc+0x1e> + 800a522: 7813 ldrb r3, [r2, #0] + 800a524: 600b str r3, [r1, #0] + 800a526: 7812 ldrb r2, [r2, #0] + 800a528: 1e10 subs r0, r2, #0 + 800a52a: bf18 it ne + 800a52c: 2001 movne r0, #1 + 800a52e: b002 add sp, #8 + 800a530: 4770 bx lr + 800a532: 4610 mov r0, r2 + 800a534: e7fb b.n 800a52e <__ascii_mbtowc+0x16> + 800a536: f06f 0001 mvn.w r0, #1 + 800a53a: e7f8 b.n 800a52e <__ascii_mbtowc+0x16> + +0800a53c : + 800a53c: 4288 cmp r0, r1 + 800a53e: b510 push {r4, lr} + 800a540: eb01 0402 add.w r4, r1, r2 + 800a544: d902 bls.n 800a54c + 800a546: 4284 cmp r4, r0 + 800a548: 4623 mov r3, r4 + 800a54a: d807 bhi.n 800a55c + 800a54c: 1e43 subs r3, r0, #1 + 800a54e: 42a1 cmp r1, r4 + 800a550: d008 beq.n 800a564 + 800a552: f811 2b01 ldrb.w r2, [r1], #1 + 800a556: f803 2f01 strb.w r2, [r3, #1]! + 800a55a: e7f8 b.n 800a54e + 800a55c: 4601 mov r1, r0 + 800a55e: 4402 add r2, r0 + 800a560: 428a cmp r2, r1 + 800a562: d100 bne.n 800a566 + 800a564: bd10 pop {r4, pc} + 800a566: f813 4d01 ldrb.w r4, [r3, #-1]! + 800a56a: f802 4d01 strb.w r4, [r2, #-1]! + 800a56e: e7f7 b.n 800a560 + +0800a570 <_realloc_r>: + 800a570: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a572: 4607 mov r7, r0 + 800a574: 4614 mov r4, r2 + 800a576: 460e mov r6, r1 + 800a578: b921 cbnz r1, 800a584 <_realloc_r+0x14> + 800a57a: 4611 mov r1, r2 + 800a57c: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} + 800a580: f7fd b95e b.w 8007840 <_malloc_r> + 800a584: b922 cbnz r2, 800a590 <_realloc_r+0x20> + 800a586: f7fd f90f bl 80077a8 <_free_r> + 800a58a: 4625 mov r5, r4 + 800a58c: 4628 mov r0, r5 + 800a58e: bdf8 pop {r3, r4, r5, r6, r7, pc} + 800a590: f000 f83a bl 800a608 <_malloc_usable_size_r> + 800a594: 42a0 cmp r0, r4 + 800a596: d20f bcs.n 800a5b8 <_realloc_r+0x48> + 800a598: 4621 mov r1, r4 + 800a59a: 4638 mov r0, r7 + 800a59c: f7fd f950 bl 8007840 <_malloc_r> + 800a5a0: 4605 mov r5, r0 + 800a5a2: 2800 cmp r0, #0 + 800a5a4: d0f2 beq.n 800a58c <_realloc_r+0x1c> + 800a5a6: 4631 mov r1, r6 + 800a5a8: 4622 mov r2, r4 + 800a5aa: f7ff f845 bl 8009638 + 800a5ae: 4631 mov r1, r6 + 800a5b0: 4638 mov r0, r7 + 800a5b2: f7fd f8f9 bl 80077a8 <_free_r> + 800a5b6: e7e9 b.n 800a58c <_realloc_r+0x1c> + 800a5b8: 4635 mov r5, r6 + 800a5ba: e7e7 b.n 800a58c <_realloc_r+0x1c> + +0800a5bc <_read_r>: + 800a5bc: b538 push {r3, r4, r5, lr} + 800a5be: 4604 mov r4, r0 + 800a5c0: 4608 mov r0, r1 + 800a5c2: 4611 mov r1, r2 + 800a5c4: 2200 movs r2, #0 + 800a5c6: 4d05 ldr r5, [pc, #20] ; (800a5dc <_read_r+0x20>) + 800a5c8: 602a str r2, [r5, #0] + 800a5ca: 461a mov r2, r3 + 800a5cc: f7f7 f9cd bl 800196a <_read> + 800a5d0: 1c43 adds r3, r0, #1 + 800a5d2: d102 bne.n 800a5da <_read_r+0x1e> + 800a5d4: 682b ldr r3, [r5, #0] + 800a5d6: b103 cbz r3, 800a5da <_read_r+0x1e> + 800a5d8: 6023 str r3, [r4, #0] + 800a5da: bd38 pop {r3, r4, r5, pc} + 800a5dc: 20002544 .word 0x20002544 + +0800a5e0 <__ascii_wctomb>: + 800a5e0: 4603 mov r3, r0 + 800a5e2: 4608 mov r0, r1 + 800a5e4: b141 cbz r1, 800a5f8 <__ascii_wctomb+0x18> + 800a5e6: 2aff cmp r2, #255 ; 0xff + 800a5e8: d904 bls.n 800a5f4 <__ascii_wctomb+0x14> + 800a5ea: 228a movs r2, #138 ; 0x8a + 800a5ec: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800a5f0: 601a str r2, [r3, #0] + 800a5f2: 4770 bx lr + 800a5f4: 2001 movs r0, #1 + 800a5f6: 700a strb r2, [r1, #0] + 800a5f8: 4770 bx lr + +0800a5fa : + 800a5fa: 2006 movs r0, #6 + 800a5fc: b508 push {r3, lr} + 800a5fe: f000 f833 bl 800a668 + 800a602: 2001 movs r0, #1 + 800a604: f7f7 f9a7 bl 8001956 <_exit> + +0800a608 <_malloc_usable_size_r>: + 800a608: f851 3c04 ldr.w r3, [r1, #-4] + 800a60c: 1f18 subs r0, r3, #4 + 800a60e: 2b00 cmp r3, #0 + 800a610: bfbc itt lt + 800a612: 580b ldrlt r3, [r1, r0] + 800a614: 18c0 addlt r0, r0, r3 + 800a616: 4770 bx lr + +0800a618 <_raise_r>: + 800a618: 291f cmp r1, #31 + 800a61a: b538 push {r3, r4, r5, lr} + 800a61c: 4604 mov r4, r0 + 800a61e: 460d mov r5, r1 + 800a620: d904 bls.n 800a62c <_raise_r+0x14> + 800a622: 2316 movs r3, #22 + 800a624: 6003 str r3, [r0, #0] + 800a626: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800a62a: bd38 pop {r3, r4, r5, pc} + 800a62c: 6c42 ldr r2, [r0, #68] ; 0x44 + 800a62e: b112 cbz r2, 800a636 <_raise_r+0x1e> + 800a630: f852 3021 ldr.w r3, [r2, r1, lsl #2] + 800a634: b94b cbnz r3, 800a64a <_raise_r+0x32> + 800a636: 4620 mov r0, r4 + 800a638: f000 f830 bl 800a69c <_getpid_r> + 800a63c: 462a mov r2, r5 + 800a63e: 4601 mov r1, r0 + 800a640: 4620 mov r0, r4 + 800a642: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 800a646: f000 b817 b.w 800a678 <_kill_r> + 800a64a: 2b01 cmp r3, #1 + 800a64c: d00a beq.n 800a664 <_raise_r+0x4c> + 800a64e: 1c59 adds r1, r3, #1 + 800a650: d103 bne.n 800a65a <_raise_r+0x42> + 800a652: 2316 movs r3, #22 + 800a654: 6003 str r3, [r0, #0] + 800a656: 2001 movs r0, #1 + 800a658: e7e7 b.n 800a62a <_raise_r+0x12> + 800a65a: 2400 movs r4, #0 + 800a65c: 4628 mov r0, r5 + 800a65e: f842 4025 str.w r4, [r2, r5, lsl #2] + 800a662: 4798 blx r3 + 800a664: 2000 movs r0, #0 + 800a666: e7e0 b.n 800a62a <_raise_r+0x12> + +0800a668 : + 800a668: 4b02 ldr r3, [pc, #8] ; (800a674 ) + 800a66a: 4601 mov r1, r0 + 800a66c: 6818 ldr r0, [r3, #0] + 800a66e: f7ff bfd3 b.w 800a618 <_raise_r> + 800a672: bf00 nop + 800a674: 20000014 .word 0x20000014 + +0800a678 <_kill_r>: + 800a678: b538 push {r3, r4, r5, lr} + 800a67a: 2300 movs r3, #0 + 800a67c: 4d06 ldr r5, [pc, #24] ; (800a698 <_kill_r+0x20>) + 800a67e: 4604 mov r4, r0 + 800a680: 4608 mov r0, r1 + 800a682: 4611 mov r1, r2 + 800a684: 602b str r3, [r5, #0] + 800a686: f7f7 f956 bl 8001936 <_kill> + 800a68a: 1c43 adds r3, r0, #1 + 800a68c: d102 bne.n 800a694 <_kill_r+0x1c> + 800a68e: 682b ldr r3, [r5, #0] + 800a690: b103 cbz r3, 800a694 <_kill_r+0x1c> + 800a692: 6023 str r3, [r4, #0] + 800a694: bd38 pop {r3, r4, r5, pc} + 800a696: bf00 nop + 800a698: 20002544 .word 0x20002544 + +0800a69c <_getpid_r>: + 800a69c: f7f7 b944 b.w 8001928 <_getpid> + +0800a6a0 <_init>: + 800a6a0: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a6a2: bf00 nop + 800a6a4: bcf8 pop {r3, r4, r5, r6, r7} + 800a6a6: bc08 pop {r3} + 800a6a8: 469e mov lr, r3 + 800a6aa: 4770 bx lr + +0800a6ac <_fini>: + 800a6ac: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a6ae: bf00 nop + 800a6b0: bcf8 pop {r3, r4, r5, r6, r7} + 800a6b2: bc08 pop {r3} + 800a6b4: 469e mov lr, r3 + 800a6b6: 4770 bx lr diff --git a/Debug/m3s.map b/Debug/m3s.map index 30ef25f..23648fd 100644 --- a/Debug/m3s.map +++ b/Debug/m3s.map @@ -20,16 +20,36 @@ Archive member included to satisfy reference by file (symbol) (_printf_float) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_printf_common) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) + ./SW_APPs/APP_IDcard.o (printf) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) + ./SW_APPs/APP_IDcard.o (putchar) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) + ./SW_APPs/APP_IDcard.o (puts) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_sbrk_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) ./HW_Devices/touch.o (sprintf) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (strlen) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) (__swbuf_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) (__swsetup_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_dtoa_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fflush_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) (__sinit) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fwalk) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_localeconv_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__retarget_lock_init_recursive) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__smakebuf_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (memchr) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) @@ -42,66 +62,54 @@ Archive member included to satisfy reference by file (symbol) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_calloc_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_svfprintf_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) (_vfprintf_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putc.o) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) (_putc_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (errno) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__sread) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_write_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__assert_func) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_close_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (fiprintf) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fstat_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__sfvwrite_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_isatty_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__global_locale) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__retarget_lock_acquire_recursive) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_lseek_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__ascii_mbtowc) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (memmove) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_realloc_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_vfprintf_r) +/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_read_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strcmp.o) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (strcmp) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__swbuf_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__ascii_wctomb) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__swsetup_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (abort) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_ctype_) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fflush_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__sinit) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__sfvwrite_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fwalk) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__smakebuf_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_malloc_usable_size_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (raise) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_kill_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (__sread) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_write_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_close_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_fstat_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_isatty_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_lseek_r) -/Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) (_read_r) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-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) ./SW_APPs/APP_blood.o (sqrtf) /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-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) @@ -162,6 +170,7 @@ s1 0x1080 ./SW_APPs/APP_blood.o idcard_str 0x20 ./SW_APPs/APP_IDcard.o __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) +read_flag 0x1 ./SW_APPs/APP_IDcard.o idcard_window 0x4 ./SW_APPs/APP_IDcard.o eeprom_write_buffer 0x14 ./HW_Devices/eeprom.o @@ -238,6 +247,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -280,6 +316,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -333,6 +396,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./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 0x52 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x18 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x3c ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x35 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x333 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x43 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x58 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x71 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x12a ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x52 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x40 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0xd5 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x3d ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x145 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0xac ./Core/Src/stm32f1xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o @@ -373,6 +463,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -414,6 +531,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./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 0x52 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x18 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x3c ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x35 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x333 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x43 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x58 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x71 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x12a ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x52 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x22 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x40 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0xd5 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x3d ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x145 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0xac ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o @@ -469,6 +613,7 @@ Discarded input sections .data.environ 0x0000000000000000 0x4 ./Core/Src/syscalls.o .text.initialise_monitor_handles 0x0000000000000000 0xc ./Core/Src/syscalls.o + .text._write 0x0000000000000000 0x38 ./Core/Src/syscalls.o .text._open 0x0000000000000000 0x1a ./Core/Src/syscalls.o .text._wait 0x0000000000000000 0x1e ./Core/Src/syscalls.o .text._unlink 0x0000000000000000 0x1e ./Core/Src/syscalls.o @@ -479,8 +624,32 @@ Discarded input sections .text._execve 0x0000000000000000 0x22 ./Core/Src/syscalls.o .debug_macro 0x0000000000000000 0xa9c ./Core/Src/syscalls.o .debug_macro 0x0000000000000000 0x22 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x18 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x3c ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/syscalls.o .debug_macro 0x0000000000000000 0x174 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x43 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x34 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x58 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x71 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x12a ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x35 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/syscalls.o .debug_macro 0x0000000000000000 0x6a ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x52 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x22 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x40 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0xd5 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x3d ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000000000 0x145 ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/sysmem.o .group 0x0000000000000000 0xc ./Core/Src/sysmem.o .group 0x0000000000000000 0xc ./Core/Src/sysmem.o @@ -2942,6 +3111,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -2999,6 +3195,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x18 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x35 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x333 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x43 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x58 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x71 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x12a ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x40 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0xd5 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x3d ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x145 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0xac ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o @@ -3039,6 +3262,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -3080,6 +3330,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x18 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x35 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x333 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x43 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x58 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x71 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x12a ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x40 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0xd5 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x3d ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x145 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0xac ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/iic.o @@ -3120,6 +3397,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -3161,6 +3465,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x18 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x35 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x333 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x43 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x58 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x71 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x12a ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x40 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xd5 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x3d ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x145 ./HW_Devices/iic.o .debug_macro 0x0000000000000000 0xac ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/rs522.o .group 0x0000000000000000 0xc ./HW_Devices/rs522.o @@ -3202,6 +3533,33 @@ Discarded input sections .group 0x0000000000000000 0xc ./HW_Devices/rs522.o .group 0x0000000000000000 0xc ./HW_Devices/rs522.o .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o + .group 0x0000000000000000 0xc ./HW_Devices/rs522.o .text 0x0000000000000000 0x0 ./HW_Devices/rs522.o .data 0x0000000000000000 0x0 ./HW_Devices/rs522.o .bss 0x0000000000000000 0x0 ./HW_Devices/rs522.o @@ -3209,7 +3567,6 @@ Discarded input sections 0x0000000000000000 0x10 ./HW_Devices/rs522.o .text.PcdWrite 0x0000000000000000 0xdc ./HW_Devices/rs522.o - .text.PcdRead 0x0000000000000000 0x84 ./HW_Devices/rs522.o .text.PcdHalt 0x0000000000000000 0x38 ./HW_Devices/rs522.o .text.IC_CMT 0x0000000000000000 0x60 ./HW_Devices/rs522.o .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/rs522.o @@ -3250,6 +3607,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./HW_Devices/rs522.o .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/rs522.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x18 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x35 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x333 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x43 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x58 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x71 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x12a ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x40 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0xd5 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x3d ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/rs522.o + .debug_macro 0x0000000000000000 0x145 ./HW_Devices/rs522.o .debug_macro 0x0000000000000000 0xac ./HW_Devices/rs522.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o @@ -3293,6 +3677,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -3335,6 +3746,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x8d1 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x18 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x35 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x333 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x43 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x34 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x58 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x71 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x12a ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x52 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x10 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x40 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0xd5 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x3d ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x16 ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x145 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0xac ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o @@ -3377,10 +3815,38 @@ Discarded input sections .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_IDcard.o .text 0x0000000000000000 0x0 ./SW_APPs/APP_IDcard.o .data 0x0000000000000000 0x0 ./SW_APPs/APP_IDcard.o .bss 0x0000000000000000 0x0 ./SW_APPs/APP_IDcard.o .data.s 0x0000000000000000 0x1 ./SW_APPs/APP_IDcard.o + .bss.KEYA 0x0000000000000000 0x6 ./SW_APPs/APP_IDcard.o .bss.card_number_D 0x0000000000000000 0x4 ./SW_APPs/APP_IDcard.o .debug_macro 0x0000000000000000 0xa9c ./SW_APPs/APP_IDcard.o @@ -3421,6 +3887,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./SW_APPs/APP_IDcard.o .debug_macro 0x0000000000000000 0x8d1 ./SW_APPs/APP_IDcard.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x18 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x3c ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x35 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x333 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x43 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x58 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x71 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x12a ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x22 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x40 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0xd5 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x3d ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/APP_IDcard.o + .debug_macro 0x0000000000000000 0x145 ./SW_APPs/APP_IDcard.o .debug_macro 0x0000000000000000 0xac ./SW_APPs/APP_IDcard.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o @@ -3477,6 +3970,20 @@ 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 + .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 + .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 + .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 + .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 @@ -3556,6 +4063,20 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./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 0x1c ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x35 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x22 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x40 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0xd5 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x3d ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x145 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0xac ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x391 ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o @@ -3602,6 +4123,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -3643,6 +4191,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./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 0x52 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x18 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x3c ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x35 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x333 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x43 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x58 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x71 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x12a ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x22 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x40 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0xd5 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x3d ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x145 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0xac ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x38b ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o @@ -3689,6 +4264,33 @@ 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 + .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 + .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 + .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 + .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 + .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 + .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 + .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 @@ -3736,6 +4338,33 @@ Discarded input sections .debug_macro 0x0000000000000000 0x217 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x8d1 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x18 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x3c ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x35 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x333 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x43 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x34 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x58 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x71 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x12a ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x52 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x22 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x10 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x40 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0xd5 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x1c ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x3d ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x16 ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x145 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0xac ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x391 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x28 ./SW_APPs/windows.o @@ -3773,6 +4402,19 @@ Discarded input sections .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) + .text._printf_r + 0x0000000000000000 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-printf.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) + .text._putchar_r + 0x0000000000000000 0x1e /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putchar.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-puts.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) @@ -3783,9 +4425,37 @@ Discarded input sections 0x0000000000000000 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-sprintf.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + .text.__swbuf 0x0000000000000000 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-wbuf.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + .text.fflush 0x0000000000000000 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-fflush.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + .text.__fp_lock + 0x0000000000000000 0x18 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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.__fp_unlock + 0x0000000000000000 0x18 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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 + 0x0000000000000000 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) + .text.__fp_lock_all + 0x0000000000000000 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-findfp.o) + .text.__fp_unlock_all + 0x0000000000000000 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-findfp.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + .text._fwalk 0x0000000000000000 0x3a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) @@ -3793,6 +4463,26 @@ Discarded input sections 0x0000000000000000 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-localeconv.o) .text.localeconv 0x0000000000000000 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) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + .text.__retarget_lock_init + 0x0000000000000000 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) + .text.__retarget_lock_close + 0x0000000000000000 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) + .text.__retarget_lock_close_recursive + 0x0000000000000000 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) + .text.__retarget_lock_acquire + 0x0000000000000000 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) + .text.__retarget_lock_try_acquire + 0x0000000000000000 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-lock.o) + .text.__retarget_lock_try_acquire_recursive + 0x0000000000000000 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-lock.o) + .text.__retarget_lock_release + 0x0000000000000000 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) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) @@ -3825,6 +4515,17 @@ Discarded input sections .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) .text.__ssprint_r 0x0000000000000000 0xf6 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + .text.__sprint_r + 0x0000000000000000 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-nano-vfprintf.o) + .text.vfprintf + 0x0000000000000000 0x14 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putc.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putc.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-putc.o) + .text.putc 0x0000000000000000 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-putc.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) @@ -3832,16 +4533,41 @@ Discarded input sections 0x0000000000000000 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-reent.o) .text._reclaim_reent 0x0000000000000000 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-reent.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + .text.__seofread + 0x0000000000000000 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-stdio.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) .text.__assert 0x0000000000000000 0xa /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) .text._fprintf_r 0x0000000000000000 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-fprintf.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) + .text.__sfvwrite_r + 0x0000000000000000 0x294 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) + .debug_frame 0x0000000000000000 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-fvwrite.o) + .ARM.attributes + 0x0000000000000000 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-fvwrite.o) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) @@ -3853,23 +4579,9 @@ Discarded input sections 0x0000000000000000 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-locale.o) .bss._PathLocale 0x0000000000000000 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-locale.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - .text.__retarget_lock_init - 0x0000000000000000 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) - .text.__retarget_lock_close - 0x0000000000000000 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) - .text.__retarget_lock_close_recursive - 0x0000000000000000 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) - .text.__retarget_lock_acquire - 0x0000000000000000 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) - .text.__retarget_lock_try_acquire - 0x0000000000000000 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-lock.o) - .text.__retarget_lock_try_acquire_recursive - 0x0000000000000000 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-lock.o) - .text.__retarget_lock_release - 0x0000000000000000 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) + .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) @@ -3881,69 +4593,26 @@ Discarded input sections .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - .text.__sprint_r - 0x0000000000000000 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-nano-vfprintf.o) - .text.vfprintf - 0x0000000000000000 0x14 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) .text 0x0000000000000000 0x14 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strcmp.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strcmp.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strcmp.o) .debug_frame 0x0000000000000000 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-strcmp.o) .ARM.attributes 0x0000000000000000 0x1b /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strcmp.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - .text.__swbuf 0x0000000000000000 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-wbuf.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) .text._wctomb_r 0x0000000000000000 0x14 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - .text.fflush 0x0000000000000000 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-fflush.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - .text.__fp_lock - 0x0000000000000000 0x18 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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.__fp_unlock - 0x0000000000000000 0x18 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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 - 0x0000000000000000 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) - .text.__fp_lock_all - 0x0000000000000000 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-findfp.o) - .text.__fp_unlock_all - 0x0000000000000000 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-findfp.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) - .text.__sfvwrite_r - 0x0000000000000000 0x294 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fvwrite.o) - .debug_frame 0x0000000000000000 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-fvwrite.o) - .ARM.attributes - 0x0000000000000000 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-fvwrite.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - .text._fwalk 0x0000000000000000 0x3a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.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) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) @@ -3964,29 +4633,6 @@ Discarded input sections .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - .text.__seofread - 0x0000000000000000 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-stdio.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) .text 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) .data 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) .bss 0x0000000000000000 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/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a(lib_a-wf_sqrt.o) @@ -4137,7 +4783,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x0000000008000000 g_pfnVectors 0x00000000080001e4 . = ALIGN (0x4) -.text 0x00000000080001e8 0xa1d8 +.text 0x00000000080001e8 0xa4d0 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 @@ -4212,845 +4858,860 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x00000000080010bc __fixsfsi 0x00000000080010bc __aeabi_f2iz *(.text*) - .text.main 0x0000000008001108 0x26 ./Core/Src/main.o - 0x0000000008001108 main + .text.ITM_SendChar + 0x0000000008001108 0x4c ./Core/Src/main.o + .text._write 0x0000000008001154 0x3c ./Core/Src/main.o + 0x0000000008001154 _write + .text.main 0x0000000008001190 0x26 ./Core/Src/main.o + 0x0000000008001190 main .text.SystemClock_Config - 0x000000000800112e 0x8a ./Core/Src/main.o - 0x000000000800112e SystemClock_Config + 0x00000000080011b6 0x8a ./Core/Src/main.o + 0x00000000080011b6 SystemClock_Config .text.MX_I2C2_Init - 0x00000000080011b8 0x5c ./Core/Src/main.o + 0x0000000008001240 0x5c ./Core/Src/main.o .text.MX_SPI1_Init - 0x0000000008001214 0x6c ./Core/Src/main.o + 0x000000000800129c 0x6c ./Core/Src/main.o .text.MX_TIM6_Init - 0x0000000008001280 0x6c ./Core/Src/main.o + 0x0000000008001308 0x6c ./Core/Src/main.o .text.MX_GPIO_Init - 0x00000000080012ec 0x1fc ./Core/Src/main.o + 0x0000000008001374 0x1fc ./Core/Src/main.o .text.MX_FSMC_Init - 0x00000000080014e8 0xc8 ./Core/Src/main.o + 0x0000000008001570 0xc8 ./Core/Src/main.o .text.Error_Handler - 0x00000000080015b0 0xa ./Core/Src/main.o - 0x00000000080015b0 Error_Handler - *fill* 0x00000000080015ba 0x2 + 0x0000000008001638 0xa ./Core/Src/main.o + 0x0000000008001638 Error_Handler + *fill* 0x0000000008001642 0x2 .text.HAL_MspInit - 0x00000000080015bc 0x64 ./Core/Src/stm32f1xx_hal_msp.o - 0x00000000080015bc HAL_MspInit + 0x0000000008001644 0x64 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001644 HAL_MspInit .text.HAL_I2C_MspInit - 0x0000000008001620 0x80 ./Core/Src/stm32f1xx_hal_msp.o - 0x0000000008001620 HAL_I2C_MspInit + 0x00000000080016a8 0x80 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080016a8 HAL_I2C_MspInit .text.HAL_SPI_MspInit - 0x00000000080016a0 0x94 ./Core/Src/stm32f1xx_hal_msp.o - 0x00000000080016a0 HAL_SPI_MspInit + 0x0000000008001728 0x94 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001728 HAL_SPI_MspInit .text.HAL_TIM_Base_MspInit - 0x0000000008001734 0x4c ./Core/Src/stm32f1xx_hal_msp.o - 0x0000000008001734 HAL_TIM_Base_MspInit + 0x00000000080017bc 0x4c ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080017bc HAL_TIM_Base_MspInit .text.HAL_FSMC_MspInit - 0x0000000008001780 0xa8 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001808 0xa8 ./Core/Src/stm32f1xx_hal_msp.o .text.HAL_SRAM_MspInit - 0x0000000008001828 0x14 ./Core/Src/stm32f1xx_hal_msp.o - 0x0000000008001828 HAL_SRAM_MspInit + 0x00000000080018b0 0x14 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080018b0 HAL_SRAM_MspInit .text.NMI_Handler - 0x000000000800183c 0x6 ./Core/Src/stm32f1xx_it.o - 0x000000000800183c NMI_Handler + 0x00000000080018c4 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080018c4 NMI_Handler .text.HardFault_Handler - 0x0000000008001842 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001842 HardFault_Handler + 0x00000000080018ca 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080018ca HardFault_Handler .text.MemManage_Handler - 0x0000000008001848 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001848 MemManage_Handler + 0x00000000080018d0 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080018d0 MemManage_Handler .text.BusFault_Handler - 0x000000000800184e 0x6 ./Core/Src/stm32f1xx_it.o - 0x000000000800184e BusFault_Handler + 0x00000000080018d6 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080018d6 BusFault_Handler .text.UsageFault_Handler - 0x0000000008001854 0x6 ./Core/Src/stm32f1xx_it.o - 0x0000000008001854 UsageFault_Handler + 0x00000000080018dc 0x6 ./Core/Src/stm32f1xx_it.o + 0x00000000080018dc UsageFault_Handler .text.SVC_Handler - 0x000000000800185a 0xc ./Core/Src/stm32f1xx_it.o - 0x000000000800185a SVC_Handler + 0x00000000080018e2 0xc ./Core/Src/stm32f1xx_it.o + 0x00000000080018e2 SVC_Handler .text.DebugMon_Handler - 0x0000000008001866 0xc ./Core/Src/stm32f1xx_it.o - 0x0000000008001866 DebugMon_Handler + 0x00000000080018ee 0xc ./Core/Src/stm32f1xx_it.o + 0x00000000080018ee DebugMon_Handler .text.PendSV_Handler - 0x0000000008001872 0xc ./Core/Src/stm32f1xx_it.o - 0x0000000008001872 PendSV_Handler + 0x00000000080018fa 0xc ./Core/Src/stm32f1xx_it.o + 0x00000000080018fa PendSV_Handler .text.SysTick_Handler - 0x000000000800187e 0xc ./Core/Src/stm32f1xx_it.o - 0x000000000800187e SysTick_Handler - *fill* 0x000000000800188a 0x2 + 0x0000000008001906 0xc ./Core/Src/stm32f1xx_it.o + 0x0000000008001906 SysTick_Handler + *fill* 0x0000000008001912 0x2 .text.TIM6_IRQHandler - 0x000000000800188c 0x14 ./Core/Src/stm32f1xx_it.o - 0x000000000800188c TIM6_IRQHandler - .text._getpid 0x00000000080018a0 0xe ./Core/Src/syscalls.o - 0x00000000080018a0 _getpid - .text._kill 0x00000000080018ae 0x20 ./Core/Src/syscalls.o - 0x00000000080018ae _kill - .text._exit 0x00000000080018ce 0x14 ./Core/Src/syscalls.o - 0x00000000080018ce _exit - .text._read 0x00000000080018e2 0x3a ./Core/Src/syscalls.o - 0x00000000080018e2 _read - .text._write 0x000000000800191c 0x38 ./Core/Src/syscalls.o - 0x000000000800191c _write - .text._close 0x0000000008001954 0x16 ./Core/Src/syscalls.o - 0x0000000008001954 _close - .text._fstat 0x000000000800196a 0x1e ./Core/Src/syscalls.o - 0x000000000800196a _fstat - .text._isatty 0x0000000008001988 0x14 ./Core/Src/syscalls.o - 0x0000000008001988 _isatty - .text._lseek 0x000000000800199c 0x18 ./Core/Src/syscalls.o - 0x000000000800199c _lseek - .text._sbrk 0x00000000080019b4 0x6c ./Core/Src/sysmem.o - 0x00000000080019b4 _sbrk + 0x0000000008001914 0x14 ./Core/Src/stm32f1xx_it.o + 0x0000000008001914 TIM6_IRQHandler + .text._getpid 0x0000000008001928 0xe ./Core/Src/syscalls.o + 0x0000000008001928 _getpid + .text._kill 0x0000000008001936 0x20 ./Core/Src/syscalls.o + 0x0000000008001936 _kill + .text._exit 0x0000000008001956 0x14 ./Core/Src/syscalls.o + 0x0000000008001956 _exit + .text._read 0x000000000800196a 0x3a ./Core/Src/syscalls.o + 0x000000000800196a _read + .text._close 0x00000000080019a4 0x16 ./Core/Src/syscalls.o + 0x00000000080019a4 _close + .text._fstat 0x00000000080019ba 0x1e ./Core/Src/syscalls.o + 0x00000000080019ba _fstat + .text._isatty 0x00000000080019d8 0x14 ./Core/Src/syscalls.o + 0x00000000080019d8 _isatty + .text._lseek 0x00000000080019ec 0x18 ./Core/Src/syscalls.o + 0x00000000080019ec _lseek + .text._sbrk 0x0000000008001a04 0x6c ./Core/Src/sysmem.o + 0x0000000008001a04 _sbrk .text.SystemInit - 0x0000000008001a20 0xc ./Core/Src/system_stm32f1xx.o - 0x0000000008001a20 SystemInit + 0x0000000008001a70 0xc ./Core/Src/system_stm32f1xx.o + 0x0000000008001a70 SystemInit .text.Reset_Handler - 0x0000000008001a2c 0x48 ./Core/Startup/startup_stm32f103zetx.o - 0x0000000008001a2c Reset_Handler + 0x0000000008001a7c 0x48 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000008001a7c Reset_Handler .text.Default_Handler - 0x0000000008001a74 0x2 ./Core/Startup/startup_stm32f103zetx.o - 0x0000000008001a74 DMA2_Channel3_IRQHandler - 0x0000000008001a74 EXTI2_IRQHandler - 0x0000000008001a74 TIM8_TRG_COM_IRQHandler - 0x0000000008001a74 TIM8_CC_IRQHandler - 0x0000000008001a74 TIM1_CC_IRQHandler - 0x0000000008001a74 PVD_IRQHandler - 0x0000000008001a74 SDIO_IRQHandler - 0x0000000008001a74 EXTI3_IRQHandler - 0x0000000008001a74 EXTI0_IRQHandler - 0x0000000008001a74 I2C2_EV_IRQHandler - 0x0000000008001a74 ADC1_2_IRQHandler - 0x0000000008001a74 SPI1_IRQHandler - 0x0000000008001a74 TAMPER_IRQHandler - 0x0000000008001a74 TIM8_UP_IRQHandler - 0x0000000008001a74 DMA2_Channel2_IRQHandler - 0x0000000008001a74 DMA1_Channel4_IRQHandler - 0x0000000008001a74 USART3_IRQHandler - 0x0000000008001a74 RTC_IRQHandler - 0x0000000008001a74 DMA1_Channel7_IRQHandler - 0x0000000008001a74 CAN1_RX1_IRQHandler - 0x0000000008001a74 UART5_IRQHandler - 0x0000000008001a74 ADC3_IRQHandler - 0x0000000008001a74 TIM4_IRQHandler - 0x0000000008001a74 DMA2_Channel1_IRQHandler - 0x0000000008001a74 I2C1_EV_IRQHandler - 0x0000000008001a74 DMA1_Channel6_IRQHandler - 0x0000000008001a74 UART4_IRQHandler - 0x0000000008001a74 TIM3_IRQHandler - 0x0000000008001a74 RCC_IRQHandler - 0x0000000008001a74 TIM1_TRG_COM_IRQHandler - 0x0000000008001a74 DMA1_Channel1_IRQHandler - 0x0000000008001a74 Default_Handler - 0x0000000008001a74 EXTI15_10_IRQHandler - 0x0000000008001a74 TIM7_IRQHandler - 0x0000000008001a74 TIM5_IRQHandler - 0x0000000008001a74 EXTI9_5_IRQHandler - 0x0000000008001a74 SPI2_IRQHandler - 0x0000000008001a74 DMA1_Channel5_IRQHandler - 0x0000000008001a74 EXTI4_IRQHandler - 0x0000000008001a74 USB_LP_CAN1_RX0_IRQHandler - 0x0000000008001a74 USB_HP_CAN1_TX_IRQHandler - 0x0000000008001a74 DMA1_Channel3_IRQHandler - 0x0000000008001a74 FSMC_IRQHandler - 0x0000000008001a74 TIM1_UP_IRQHandler - 0x0000000008001a74 WWDG_IRQHandler - 0x0000000008001a74 TIM2_IRQHandler - 0x0000000008001a74 TIM1_BRK_IRQHandler - 0x0000000008001a74 EXTI1_IRQHandler - 0x0000000008001a74 DMA2_Channel4_5_IRQHandler - 0x0000000008001a74 USART2_IRQHandler - 0x0000000008001a74 I2C2_ER_IRQHandler - 0x0000000008001a74 DMA1_Channel2_IRQHandler - 0x0000000008001a74 TIM8_BRK_IRQHandler - 0x0000000008001a74 CAN1_SCE_IRQHandler - 0x0000000008001a74 FLASH_IRQHandler - 0x0000000008001a74 USART1_IRQHandler - 0x0000000008001a74 SPI3_IRQHandler - 0x0000000008001a74 I2C1_ER_IRQHandler - 0x0000000008001a74 USBWakeUp_IRQHandler - 0x0000000008001a74 RTC_Alarm_IRQHandler - *fill* 0x0000000008001a76 0x2 + 0x0000000008001ac4 0x2 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000008001ac4 DMA2_Channel3_IRQHandler + 0x0000000008001ac4 EXTI2_IRQHandler + 0x0000000008001ac4 TIM8_TRG_COM_IRQHandler + 0x0000000008001ac4 TIM8_CC_IRQHandler + 0x0000000008001ac4 TIM1_CC_IRQHandler + 0x0000000008001ac4 PVD_IRQHandler + 0x0000000008001ac4 SDIO_IRQHandler + 0x0000000008001ac4 EXTI3_IRQHandler + 0x0000000008001ac4 EXTI0_IRQHandler + 0x0000000008001ac4 I2C2_EV_IRQHandler + 0x0000000008001ac4 ADC1_2_IRQHandler + 0x0000000008001ac4 SPI1_IRQHandler + 0x0000000008001ac4 TAMPER_IRQHandler + 0x0000000008001ac4 TIM8_UP_IRQHandler + 0x0000000008001ac4 DMA2_Channel2_IRQHandler + 0x0000000008001ac4 DMA1_Channel4_IRQHandler + 0x0000000008001ac4 USART3_IRQHandler + 0x0000000008001ac4 RTC_IRQHandler + 0x0000000008001ac4 DMA1_Channel7_IRQHandler + 0x0000000008001ac4 CAN1_RX1_IRQHandler + 0x0000000008001ac4 UART5_IRQHandler + 0x0000000008001ac4 ADC3_IRQHandler + 0x0000000008001ac4 TIM4_IRQHandler + 0x0000000008001ac4 DMA2_Channel1_IRQHandler + 0x0000000008001ac4 I2C1_EV_IRQHandler + 0x0000000008001ac4 DMA1_Channel6_IRQHandler + 0x0000000008001ac4 UART4_IRQHandler + 0x0000000008001ac4 TIM3_IRQHandler + 0x0000000008001ac4 RCC_IRQHandler + 0x0000000008001ac4 TIM1_TRG_COM_IRQHandler + 0x0000000008001ac4 DMA1_Channel1_IRQHandler + 0x0000000008001ac4 Default_Handler + 0x0000000008001ac4 EXTI15_10_IRQHandler + 0x0000000008001ac4 TIM7_IRQHandler + 0x0000000008001ac4 TIM5_IRQHandler + 0x0000000008001ac4 EXTI9_5_IRQHandler + 0x0000000008001ac4 SPI2_IRQHandler + 0x0000000008001ac4 DMA1_Channel5_IRQHandler + 0x0000000008001ac4 EXTI4_IRQHandler + 0x0000000008001ac4 USB_LP_CAN1_RX0_IRQHandler + 0x0000000008001ac4 USB_HP_CAN1_TX_IRQHandler + 0x0000000008001ac4 DMA1_Channel3_IRQHandler + 0x0000000008001ac4 FSMC_IRQHandler + 0x0000000008001ac4 TIM1_UP_IRQHandler + 0x0000000008001ac4 WWDG_IRQHandler + 0x0000000008001ac4 TIM2_IRQHandler + 0x0000000008001ac4 TIM1_BRK_IRQHandler + 0x0000000008001ac4 EXTI1_IRQHandler + 0x0000000008001ac4 DMA2_Channel4_5_IRQHandler + 0x0000000008001ac4 USART2_IRQHandler + 0x0000000008001ac4 I2C2_ER_IRQHandler + 0x0000000008001ac4 DMA1_Channel2_IRQHandler + 0x0000000008001ac4 TIM8_BRK_IRQHandler + 0x0000000008001ac4 CAN1_SCE_IRQHandler + 0x0000000008001ac4 FLASH_IRQHandler + 0x0000000008001ac4 USART1_IRQHandler + 0x0000000008001ac4 SPI3_IRQHandler + 0x0000000008001ac4 I2C1_ER_IRQHandler + 0x0000000008001ac4 USBWakeUp_IRQHandler + 0x0000000008001ac4 RTC_Alarm_IRQHandler + *fill* 0x0000000008001ac6 0x2 .text.HAL_Init - 0x0000000008001a78 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001a78 HAL_Init + 0x0000000008001ac8 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001ac8 HAL_Init .text.HAL_InitTick - 0x0000000008001aa4 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001aa4 HAL_InitTick + 0x0000000008001af4 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001af4 HAL_InitTick .text.HAL_IncTick - 0x0000000008001b04 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001b04 HAL_IncTick + 0x0000000008001b54 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001b54 HAL_IncTick .text.HAL_GetTick - 0x0000000008001b28 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001b28 HAL_GetTick + 0x0000000008001b78 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001b78 HAL_GetTick .text.HAL_Delay - 0x0000000008001b3c 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001b3c HAL_Delay + 0x0000000008001b8c 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001b8c HAL_Delay .text.__NVIC_SetPriorityGrouping - 0x0000000008001b84 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001bd4 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x0000000008001bcc 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001c1c 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_EnableIRQ - 0x0000000008001be8 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001c38 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_SetPriority - 0x0000000008001c20 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001c70 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.NVIC_EncodePriority - 0x0000000008001c74 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001cc4 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.SysTick_Config - 0x0000000008001cd8 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001d28 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x0000000008001d1c 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001d1c HAL_NVIC_SetPriorityGrouping + 0x0000000008001d6c 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001d6c HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x0000000008001d32 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001d32 HAL_NVIC_SetPriority + 0x0000000008001d82 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001d82 HAL_NVIC_SetPriority .text.HAL_NVIC_EnableIRQ - 0x0000000008001d6a 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001d6a HAL_NVIC_EnableIRQ + 0x0000000008001dba 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001dba HAL_NVIC_EnableIRQ .text.HAL_SYSTICK_Config - 0x0000000008001d86 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001d86 HAL_SYSTICK_Config - *fill* 0x0000000008001d9e 0x2 + 0x0000000008001dd6 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001dd6 HAL_SYSTICK_Config + *fill* 0x0000000008001dee 0x2 .text.HAL_GPIO_Init - 0x0000000008001da0 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001da0 HAL_GPIO_Init + 0x0000000008001df0 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008001df0 HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x00000000080020c8 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x00000000080020c8 HAL_GPIO_ReadPin + 0x0000000008002118 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008002118 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x00000000080020f6 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x00000000080020f6 HAL_GPIO_WritePin - *fill* 0x0000000008002126 0x2 + 0x0000000008002146 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008002146 HAL_GPIO_WritePin + *fill* 0x0000000008002176 0x2 .text.HAL_I2C_Init - 0x0000000008002128 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x0000000008002128 HAL_I2C_Init + 0x0000000008002178 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002178 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x00000000080023b0 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x00000000080023b0 HAL_I2C_Mem_Write + 0x0000000008002400 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002400 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x00000000080025a4 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x00000000080025a4 HAL_I2C_Mem_Read + 0x00000000080025f4 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x00000000080025f4 HAL_I2C_Mem_Read .text.I2C_RequestMemoryWrite - 0x0000000008002a74 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002ac4 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x0000000008002ba0 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002bf0 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x0000000008002d70 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002dc0 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnMasterAddressFlagUntilTimeout - 0x0000000008002e1e 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002e6e 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnTXEFlagUntilTimeout - 0x0000000008002f1c 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002f6c 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnBTFFlagUntilTimeout - 0x0000000008002f9e 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002fee 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnRXNEFlagUntilTimeout - 0x0000000008003020 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008003070 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x00000000080030cc 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x000000000800311c 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.HAL_RCC_OscConfig - 0x0000000008003128 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003128 HAL_RCC_OscConfig + 0x0000000008003178 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003178 HAL_RCC_OscConfig .text.HAL_RCC_ClockConfig - 0x0000000008003628 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003628 HAL_RCC_ClockConfig + 0x0000000008003678 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003678 HAL_RCC_ClockConfig .text.HAL_RCC_GetSysClockFreq - 0x00000000080037fc 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080037fc HAL_RCC_GetSysClockFreq + 0x000000000800384c 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x000000000800384c HAL_RCC_GetSysClockFreq .text.HAL_RCC_GetHCLKFreq - 0x00000000080038bc 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080038bc HAL_RCC_GetHCLKFreq + 0x000000000800390c 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x000000000800390c HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x00000000080038d0 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080038d0 HAL_RCC_GetPCLK1Freq + 0x0000000008003920 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003920 HAL_RCC_GetPCLK1Freq .text.RCC_Delay - 0x00000000080038f8 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003948 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .text.HAL_SPI_Init - 0x0000000008003934 0x108 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - 0x0000000008003934 HAL_SPI_Init + 0x0000000008003984 0x108 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x0000000008003984 HAL_SPI_Init .text.HAL_SPI_Transmit - 0x0000000008003a3c 0x278 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - 0x0000000008003a3c HAL_SPI_Transmit + 0x0000000008003a8c 0x278 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x0000000008003a8c HAL_SPI_Transmit .text.HAL_SPI_Receive - 0x0000000008003cb4 0x222 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - 0x0000000008003cb4 HAL_SPI_Receive + 0x0000000008003d04 0x222 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x0000000008003d04 HAL_SPI_Receive .text.HAL_SPI_TransmitReceive - 0x0000000008003ed6 0x344 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - 0x0000000008003ed6 HAL_SPI_TransmitReceive - *fill* 0x000000000800421a 0x2 + 0x0000000008003f26 0x344 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x0000000008003f26 HAL_SPI_TransmitReceive + *fill* 0x000000000800426a 0x2 .text.SPI_WaitFlagStateUntilTimeout - 0x000000000800421c 0x110 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x000000000800426c 0x110 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o .text.SPI_EndRxTransaction - 0x000000000800432c 0xa4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x000000000800437c 0xa4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o .text.SPI_EndRxTxTransaction - 0x00000000080043d0 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x0000000008004420 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o .text.HAL_SRAM_Init - 0x000000000800440c 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - 0x000000000800440c HAL_SRAM_Init + 0x000000000800445c 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x000000000800445c HAL_SRAM_Init .text.HAL_TIM_Base_Init - 0x00000000080044a6 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080044a6 HAL_TIM_Base_Init + 0x00000000080044f6 0x9e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x00000000080044f6 HAL_TIM_Base_Init .text.HAL_TIM_Base_Stop_IT - 0x0000000008004544 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x0000000008004544 HAL_TIM_Base_Stop_IT + 0x0000000008004594 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004594 HAL_TIM_Base_Stop_IT .text.HAL_TIM_IRQHandler - 0x00000000080045a0 0x210 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080045a0 HAL_TIM_IRQHandler + 0x00000000080045f0 0x210 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x00000000080045f0 HAL_TIM_IRQHandler .text.HAL_TIM_OC_DelayElapsedCallback - 0x00000000080047b0 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080047b0 HAL_TIM_OC_DelayElapsedCallback + 0x0000000008004800 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004800 HAL_TIM_OC_DelayElapsedCallback .text.HAL_TIM_IC_CaptureCallback - 0x00000000080047c2 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080047c2 HAL_TIM_IC_CaptureCallback + 0x0000000008004812 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004812 HAL_TIM_IC_CaptureCallback .text.HAL_TIM_PWM_PulseFinishedCallback - 0x00000000080047d4 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080047d4 HAL_TIM_PWM_PulseFinishedCallback + 0x0000000008004824 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004824 HAL_TIM_PWM_PulseFinishedCallback .text.HAL_TIM_TriggerCallback - 0x00000000080047e6 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080047e6 HAL_TIM_TriggerCallback + 0x0000000008004836 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004836 HAL_TIM_TriggerCallback .text.TIM_Base_SetConfig - 0x00000000080047f8 0xf4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - 0x00000000080047f8 TIM_Base_SetConfig + 0x0000000008004848 0xf4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000008004848 TIM_Base_SetConfig .text.HAL_TIMEx_MasterConfigSynchronization - 0x00000000080048ec 0xd8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - 0x00000000080048ec HAL_TIMEx_MasterConfigSynchronization + 0x000000000800493c 0xd8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x000000000800493c HAL_TIMEx_MasterConfigSynchronization .text.HAL_TIMEx_CommutCallback - 0x00000000080049c4 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - 0x00000000080049c4 HAL_TIMEx_CommutCallback + 0x0000000008004a14 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000008004a14 HAL_TIMEx_CommutCallback .text.HAL_TIMEx_BreakCallback - 0x00000000080049d6 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - 0x00000000080049d6 HAL_TIMEx_BreakCallback + 0x0000000008004a26 0x12 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000008004a26 HAL_TIMEx_BreakCallback .text.FSMC_NORSRAM_Init - 0x00000000080049e8 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x00000000080049e8 FSMC_NORSRAM_Init + 0x0000000008004a38 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008004a38 FSMC_NORSRAM_Init .text.FSMC_NORSRAM_Timing_Init - 0x0000000008004abc 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x0000000008004abc FSMC_NORSRAM_Timing_Init + 0x0000000008004b0c 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008004b0c FSMC_NORSRAM_Timing_Init .text.FSMC_NORSRAM_Extended_Timing_Init - 0x0000000008004b24 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x0000000008004b24 FSMC_NORSRAM_Extended_Timing_Init + 0x0000000008004b74 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008004b74 FSMC_NORSRAM_Extended_Timing_Init .text.LCD_WR_REG - 0x0000000008004b94 0x1c ./HW_Devices/LCD.o - 0x0000000008004b94 LCD_WR_REG + 0x0000000008004be4 0x1c ./HW_Devices/LCD.o + 0x0000000008004be4 LCD_WR_REG .text.LCD_WR_DATA - 0x0000000008004bb0 0x20 ./HW_Devices/LCD.o - 0x0000000008004bb0 LCD_WR_DATA + 0x0000000008004c00 0x20 ./HW_Devices/LCD.o + 0x0000000008004c00 LCD_WR_DATA .text.LCD_WriteReg - 0x0000000008004bd0 0x2c ./HW_Devices/LCD.o - 0x0000000008004bd0 LCD_WriteReg + 0x0000000008004c20 0x2c ./HW_Devices/LCD.o + 0x0000000008004c20 LCD_WriteReg .text.LCD_ReadReg - 0x0000000008004bfc 0x28 ./HW_Devices/LCD.o - 0x0000000008004bfc LCD_ReadReg + 0x0000000008004c4c 0x28 ./HW_Devices/LCD.o + 0x0000000008004c4c LCD_ReadReg .text.LCD_Scan_Dir - 0x0000000008004c24 0x2dc ./HW_Devices/LCD.o - 0x0000000008004c24 LCD_Scan_Dir + 0x0000000008004c74 0x2dc ./HW_Devices/LCD.o + 0x0000000008004c74 LCD_Scan_Dir .text.LCD_Display_Dir - 0x0000000008004f00 0x18c ./HW_Devices/LCD.o - 0x0000000008004f00 LCD_Display_Dir + 0x0000000008004f50 0x18c ./HW_Devices/LCD.o + 0x0000000008004f50 LCD_Display_Dir .text.LCDx_Init - 0x000000000800508c 0x1ec ./HW_Devices/LCD.o - 0x000000000800508c LCDx_Init + 0x00000000080050dc 0x1ec ./HW_Devices/LCD.o + 0x00000000080050dc LCDx_Init .text.LCD_SetCursor - 0x0000000008005278 0x120 ./HW_Devices/LCD.o - 0x0000000008005278 LCD_SetCursor + 0x00000000080052c8 0x120 ./HW_Devices/LCD.o + 0x00000000080052c8 LCD_SetCursor .text.LCD_set_dot - 0x0000000008005398 0x40 ./HW_Devices/LCD.o - 0x0000000008005398 LCD_set_dot + 0x00000000080053e8 0x40 ./HW_Devices/LCD.o + 0x00000000080053e8 LCD_set_dot .text.LCD_Clear - 0x00000000080053d8 0xa4 ./HW_Devices/LCD.o - 0x00000000080053d8 LCD_Clear + 0x0000000008005428 0xa4 ./HW_Devices/LCD.o + 0x0000000008005428 LCD_Clear .text.LCD_DrawLine - 0x000000000800547c 0x10a ./HW_Devices/LCD.o - 0x000000000800547c LCD_DrawLine + 0x00000000080054cc 0x10a ./HW_Devices/LCD.o + 0x00000000080054cc LCD_DrawLine .text.Draw_Circle - 0x0000000008005586 0x156 ./HW_Devices/LCD.o - 0x0000000008005586 Draw_Circle + 0x00000000080055d6 0x156 ./HW_Devices/LCD.o + 0x00000000080055d6 Draw_Circle .text.LCD_ShowChar - 0x00000000080056dc 0xf8 ./HW_Devices/LCD.o - 0x00000000080056dc LCD_ShowChar + 0x000000000800572c 0xf8 ./HW_Devices/LCD.o + 0x000000000800572c LCD_ShowChar .text.LCD_ShowString - 0x00000000080057d4 0x7c ./HW_Devices/LCD.o - 0x00000000080057d4 LCD_ShowString + 0x0000000008005824 0x7c ./HW_Devices/LCD.o + 0x0000000008005824 LCD_ShowString .text.EPPROM_SLOWWRITE_INIT - 0x0000000008005850 0x34 ./HW_Devices/eeprom.o - 0x0000000008005850 EPPROM_SLOWWRITE_INIT + 0x00000000080058a0 0x34 ./HW_Devices/eeprom.o + 0x00000000080058a0 EPPROM_SLOWWRITE_INIT .text.EEPROM_SLOWWRITE_SERVER - 0x0000000008005884 0x8c ./HW_Devices/eeprom.o - 0x0000000008005884 EEPROM_SLOWWRITE_SERVER + 0x00000000080058d4 0x8c ./HW_Devices/eeprom.o + 0x00000000080058d4 EEPROM_SLOWWRITE_SERVER .text.EEPROM_READ_BATY - 0x0000000008005910 0x24 ./HW_Devices/eeprom.o - 0x0000000008005910 EEPROM_READ_BATY + 0x0000000008005960 0x24 ./HW_Devices/eeprom.o + 0x0000000008005960 EEPROM_READ_BATY .text.EEPROM_WRITE_BATY - 0x0000000008005934 0x8c ./HW_Devices/eeprom.o - 0x0000000008005934 EEPROM_WRITE_BATY + 0x0000000008005984 0x8c ./HW_Devices/eeprom.o + 0x0000000008005984 EEPROM_WRITE_BATY .text.IIC_SAND_DATE - 0x00000000080059c0 0x3c ./HW_Devices/iic.o - 0x00000000080059c0 IIC_SAND_DATE + 0x0000000008005a10 0x3c ./HW_Devices/iic.o + 0x0000000008005a10 IIC_SAND_DATE .text.IIC_READ_DATE - 0x00000000080059fc 0x3c ./HW_Devices/iic.o - 0x00000000080059fc IIC_READ_DATE + 0x0000000008005a4c 0x3c ./HW_Devices/iic.o + 0x0000000008005a4c IIC_READ_DATE .text.ReadRawRC - 0x0000000008005a38 0x64 ./HW_Devices/rs522.o - 0x0000000008005a38 ReadRawRC + 0x0000000008005a88 0x64 ./HW_Devices/rs522.o + 0x0000000008005a88 ReadRawRC .text.WriteRawRC - 0x0000000008005a9c 0x5c ./HW_Devices/rs522.o - 0x0000000008005a9c WriteRawRC + 0x0000000008005aec 0x5c ./HW_Devices/rs522.o + 0x0000000008005aec WriteRawRC .text.SetBitMask - 0x0000000008005af8 0x36 ./HW_Devices/rs522.o - 0x0000000008005af8 SetBitMask + 0x0000000008005b48 0x36 ./HW_Devices/rs522.o + 0x0000000008005b48 SetBitMask .text.ClearBitMask - 0x0000000008005b2e 0x40 ./HW_Devices/rs522.o - 0x0000000008005b2e ClearBitMask + 0x0000000008005b7e 0x40 ./HW_Devices/rs522.o + 0x0000000008005b7e ClearBitMask .text.PcdAntennaOn - 0x0000000008005b6e 0x2a ./HW_Devices/rs522.o - 0x0000000008005b6e PcdAntennaOn + 0x0000000008005bbe 0x2a ./HW_Devices/rs522.o + 0x0000000008005bbe PcdAntennaOn .text.PcdReset - 0x0000000008005b98 0x5e ./HW_Devices/rs522.o - 0x0000000008005b98 PcdReset + 0x0000000008005be8 0x5e ./HW_Devices/rs522.o + 0x0000000008005be8 PcdReset .text.M500PcdConfigISOType - 0x0000000008005bf6 0x62 ./HW_Devices/rs522.o - 0x0000000008005bf6 M500PcdConfigISOType + 0x0000000008005c46 0x62 ./HW_Devices/rs522.o + 0x0000000008005c46 M500PcdConfigISOType .text.PcdComMF522 - 0x0000000008005c58 0x1a2 ./HW_Devices/rs522.o - 0x0000000008005c58 PcdComMF522 + 0x0000000008005ca8 0x1a2 ./HW_Devices/rs522.o + 0x0000000008005ca8 PcdComMF522 .text.PcdRequest - 0x0000000008005dfa 0x6e ./HW_Devices/rs522.o - 0x0000000008005dfa PcdRequest + 0x0000000008005e4a 0x6e ./HW_Devices/rs522.o + 0x0000000008005e4a PcdRequest .text.PcdAnticoll - 0x0000000008005e68 0xce ./HW_Devices/rs522.o - 0x0000000008005e68 PcdAnticoll + 0x0000000008005eb8 0xce ./HW_Devices/rs522.o + 0x0000000008005eb8 PcdAnticoll .text.CalulateCRC - 0x0000000008005f36 0x9a ./HW_Devices/rs522.o - 0x0000000008005f36 CalulateCRC + 0x0000000008005f86 0x9a ./HW_Devices/rs522.o + 0x0000000008005f86 CalulateCRC .text.PcdSelect - 0x0000000008005fd0 0xa2 ./HW_Devices/rs522.o - 0x0000000008005fd0 PcdSelect + 0x0000000008006020 0xa2 ./HW_Devices/rs522.o + 0x0000000008006020 PcdSelect .text.PcdAuthState - 0x0000000008006072 0xca ./HW_Devices/rs522.o - 0x0000000008006072 PcdAuthState + 0x00000000080060c2 0xca ./HW_Devices/rs522.o + 0x00000000080060c2 PcdAuthState + .text.PcdRead 0x000000000800618c 0x84 ./HW_Devices/rs522.o + 0x000000000800618c PcdRead .text.RC522_Init - 0x000000000800613c 0x12 ./HW_Devices/rs522.o - 0x000000000800613c RC522_Init - *fill* 0x000000000800614e 0x2 + 0x0000000008006210 0x12 ./HW_Devices/rs522.o + 0x0000000008006210 RC522_Init + *fill* 0x0000000008006222 0x2 .text.TP_Write_Byte - 0x0000000008006150 0x6c ./HW_Devices/touch.o - 0x0000000008006150 TP_Write_Byte + 0x0000000008006224 0x6c ./HW_Devices/touch.o + 0x0000000008006224 TP_Write_Byte .text.TP_Read_AD - 0x00000000080061bc 0xc8 ./HW_Devices/touch.o - 0x00000000080061bc TP_Read_AD + 0x0000000008006290 0xc8 ./HW_Devices/touch.o + 0x0000000008006290 TP_Read_AD .text.TP_Read_XOY - 0x0000000008006284 0x104 ./HW_Devices/touch.o - 0x0000000008006284 TP_Read_XOY + 0x0000000008006358 0x104 ./HW_Devices/touch.o + 0x0000000008006358 TP_Read_XOY .text.TP_Read_XY_ADC - 0x0000000008006388 0x32 ./HW_Devices/touch.o - 0x0000000008006388 TP_Read_XY_ADC + 0x000000000800645c 0x32 ./HW_Devices/touch.o + 0x000000000800645c TP_Read_XY_ADC .text.TP_Read_XY2 - 0x00000000080063ba 0xd0 ./HW_Devices/touch.o - 0x00000000080063ba TP_Read_XY2 - *fill* 0x000000000800648a 0x2 + 0x000000000800648e 0xd0 ./HW_Devices/touch.o + 0x000000000800648e TP_Read_XY2 + *fill* 0x000000000800655e 0x2 .text.TP_Server - 0x000000000800648c 0xf0 ./HW_Devices/touch.o - 0x000000000800648c TP_Server + 0x0000000008006560 0xf0 ./HW_Devices/touch.o + 0x0000000008006560 TP_Server .text.TP_DrwaTrage - 0x000000000800657c 0xb8 ./HW_Devices/touch.o - 0x000000000800657c TP_DrwaTrage + 0x0000000008006650 0xb8 ./HW_Devices/touch.o + 0x0000000008006650 TP_DrwaTrage .text.TP_adjustment - 0x0000000008006634 0x5c4 ./HW_Devices/touch.o - 0x0000000008006634 TP_adjustment + 0x0000000008006708 0x5c4 ./HW_Devices/touch.o + 0x0000000008006708 TP_adjustment .text.APP_IDcard_init - 0x0000000008006bf8 0x20 ./SW_APPs/APP_IDcard.o - 0x0000000008006bf8 APP_IDcard_init + 0x0000000008006ccc 0x20 ./SW_APPs/APP_IDcard.o + 0x0000000008006ccc APP_IDcard_init .text.APP_IDcard_loop - 0x0000000008006c18 0x1c4 ./SW_APPs/APP_IDcard.o - 0x0000000008006c18 APP_IDcard_loop + 0x0000000008006cec 0x210 ./SW_APPs/APP_IDcard.o + 0x0000000008006cec APP_IDcard_loop .text.max30102_read_fifo - 0x0000000008006ddc 0x100 ./SW_APPs/APP_blood.o - 0x0000000008006ddc max30102_read_fifo + 0x0000000008006efc 0x100 ./SW_APPs/APP_blood.o + 0x0000000008006efc max30102_read_fifo .text.HAL_TIM_PeriodElapsedCallback - 0x0000000008006edc 0xac ./SW_APPs/APP_blood.o - 0x0000000008006edc HAL_TIM_PeriodElapsedCallback + 0x0000000008006ffc 0xac ./SW_APPs/APP_blood.o + 0x0000000008006ffc HAL_TIM_PeriodElapsedCallback .text.main_app - 0x0000000008006f88 0x80 ./SW_APPs/Main_APP.o - 0x0000000008006f88 main_app + 0x00000000080070a8 0x80 ./SW_APPs/Main_APP.o + 0x00000000080070a8 main_app .text.Inteface_SetCursor - 0x0000000008007008 0x34 ./SW_APPs/windows.o - 0x0000000008007008 Inteface_SetCursor + 0x0000000008007128 0x34 ./SW_APPs/windows.o + 0x0000000008007128 Inteface_SetCursor .text.Inteface_SetColor - 0x000000000800703c 0x20 ./SW_APPs/windows.o - 0x000000000800703c Inteface_SetColor - .text.UI_Init 0x000000000800705c 0x66 ./SW_APPs/windows.o - 0x000000000800705c UI_Init + 0x000000000800715c 0x20 ./SW_APPs/windows.o + 0x000000000800715c Inteface_SetColor + .text.UI_Init 0x000000000800717c 0x66 ./SW_APPs/windows.o + 0x000000000800717c UI_Init .text.New_Window - 0x00000000080070c2 0xd2 ./SW_APPs/windows.o - 0x00000000080070c2 New_Window + 0x00000000080071e2 0xd2 ./SW_APPs/windows.o + 0x00000000080071e2 New_Window .text.Refresh_Window - 0x0000000008007194 0x10a ./SW_APPs/windows.o - 0x0000000008007194 Refresh_Window + 0x00000000080072b4 0x10a ./SW_APPs/windows.o + 0x00000000080072b4 Refresh_Window .text.Refresh_UI - 0x000000000800729e 0x94 ./SW_APPs/windows.o - 0x000000000800729e Refresh_UI - .text.Chack 0x0000000008007332 0xdc ./SW_APPs/windows.o - 0x0000000008007332 Chack - *fill* 0x000000000800740e 0x2 + 0x00000000080073be 0x94 ./SW_APPs/windows.o + 0x00000000080073be Refresh_UI + .text.Chack 0x0000000008007452 0xdc ./SW_APPs/windows.o + 0x0000000008007452 Chack + *fill* 0x000000000800752e 0x2 .text.UI_Server - 0x0000000008007410 0x1f4 ./SW_APPs/windows.o - 0x0000000008007410 UI_Server - .text.__errno 0x0000000008007604 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) - 0x0000000008007604 __errno + 0x0000000008007530 0x1f4 ./SW_APPs/windows.o + 0x0000000008007530 UI_Server + .text.__errno 0x0000000008007724 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) + 0x0000000008007724 __errno .text.__libc_init_array - 0x0000000008007610 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) - 0x0000000008007610 __libc_init_array - .text.malloc 0x0000000008007658 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) - 0x0000000008007658 malloc - .text.free 0x0000000008007668 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) - 0x0000000008007668 free - .text.memset 0x0000000008007678 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) - 0x0000000008007678 memset - .text._free_r 0x0000000008007688 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) - 0x0000000008007688 _free_r + 0x0000000008007730 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) + 0x0000000008007730 __libc_init_array + .text.malloc 0x0000000008007778 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) + 0x0000000008007778 malloc + .text.free 0x0000000008007788 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) + 0x0000000008007788 free + .text.memset 0x0000000008007798 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) + 0x0000000008007798 memset + .text._free_r 0x00000000080077a8 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) + 0x00000000080077a8 _free_r .text._malloc_r - 0x0000000008007720 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) - 0x0000000008007720 _malloc_r - .text.__cvt 0x00000000080077d4 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) - 0x00000000080077d4 __cvt + 0x0000000008007840 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) + 0x0000000008007840 _malloc_r + .text.__cvt 0x00000000080078f4 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) + 0x00000000080078f4 __cvt .text.__exponent - 0x0000000008007892 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) - 0x0000000008007892 __exponent - *fill* 0x000000000800790e 0x2 + 0x00000000080079b2 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) + 0x00000000080079b2 __exponent + *fill* 0x0000000008007a2e 0x2 .text._printf_float - 0x0000000008007910 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) - 0x0000000008007910 _printf_float + 0x0000000008007a30 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) + 0x0000000008007a30 _printf_float .text._printf_common - 0x0000000008007d68 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) - 0x0000000008007d68 _printf_common - *fill* 0x0000000008007e46 0x2 + 0x0000000008007e88 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) + 0x0000000008007e88 _printf_common + *fill* 0x0000000008007f66 0x2 .text._printf_i - 0x0000000008007e48 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) - 0x0000000008007e48 _printf_i - .text._sbrk_r 0x0000000008008094 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) - 0x0000000008008094 _sbrk_r - .text.sprintf 0x00000000080080b4 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) - 0x00000000080080b4 sprintf - 0x00000000080080b4 siprintf - .text.quorem 0x00000000080080f4 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* 0x000000000800820e 0x2 - .text._dtoa_r 0x0000000008008210 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) - 0x0000000008008210 _dtoa_r - .text._localeconv_r - 0x0000000008008dec 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) - 0x0000000008008dec _localeconv_r - .text.memchr 0x0000000008008df4 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) - 0x0000000008008df4 memchr - .text.memcpy 0x0000000008008e10 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) - 0x0000000008008e10 memcpy - .text.__malloc_lock - 0x0000000008008e2c 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) - 0x0000000008008e2c __malloc_lock - .text.__malloc_unlock - 0x0000000008008e38 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) - 0x0000000008008e38 __malloc_unlock - .text._Balloc 0x0000000008008e44 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) - 0x0000000008008e44 _Balloc - .text._Bfree 0x0000000008008ec4 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) - 0x0000000008008ec4 _Bfree - .text.__multadd - 0x0000000008008f08 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) - 0x0000000008008f08 __multadd - .text.__hi0bits - 0x0000000008008f9c 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) - 0x0000000008008f9c __hi0bits - .text.__lo0bits - 0x0000000008008fdc 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) - 0x0000000008008fdc __lo0bits - .text.__i2b 0x0000000008009038 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) - 0x0000000008009038 __i2b - .text.__multiply - 0x0000000008009064 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) - 0x0000000008009064 __multiply - .text.__pow5mult - 0x00000000080091ac 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) - 0x00000000080091ac __pow5mult - .text.__lshift - 0x0000000008009260 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) - 0x0000000008009260 __lshift - .text.__mcmp 0x0000000008009338 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) - 0x0000000008009338 __mcmp - *fill* 0x000000000800936e 0x2 - .text.__mdiff 0x0000000008009370 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) - 0x0000000008009370 __mdiff - .text.__d2b 0x0000000008009490 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) - 0x0000000008009490 __d2b - .text._calloc_r - 0x0000000008009548 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) - 0x0000000008009548 _calloc_r - .text.__ssputs_r - 0x0000000008009564 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) - 0x0000000008009564 __ssputs_r - *fill* 0x000000000800961a 0x2 - .text._svfprintf_r - 0x000000000800961c 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) - 0x000000000800961c _svfprintf_r - 0x000000000800961c _svfiprintf_r - .text.__assert_func - 0x000000000800981c 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) - 0x000000000800981c __assert_func - .text.fprintf 0x0000000008009858 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) - 0x0000000008009858 fprintf - 0x0000000008009858 fiprintf - .text.__retarget_lock_init_recursive - 0x000000000800987c 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) - 0x000000000800987c __retarget_lock_init_recursive - .text.__retarget_lock_acquire_recursive - 0x000000000800987e 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) - 0x000000000800987e __retarget_lock_acquire_recursive - .text.__retarget_lock_release_recursive - 0x0000000008009880 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) - 0x0000000008009880 __retarget_lock_release_recursive - .text.__ascii_mbtowc - 0x0000000008009882 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) - 0x0000000008009882 __ascii_mbtowc - .text.memmove 0x00000000080098a6 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) - 0x00000000080098a6 memmove - .text._realloc_r - 0x00000000080098da 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) - 0x00000000080098da _realloc_r - .text.__sfputc_r - 0x0000000008009926 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 - 0x0000000008009950 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) - 0x0000000008009950 __sfputs_r - .text._vfprintf_r - 0x0000000008009974 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) - 0x0000000008009974 _vfiprintf_r - 0x0000000008009974 _vfprintf_r + 0x0000000008007f68 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) + 0x0000000008007f68 _printf_i + .text.printf 0x00000000080081b4 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-printf.o) + 0x00000000080081b4 printf + 0x00000000080081b4 iprintf + .text.putchar 0x00000000080081e4 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-putchar.o) + 0x00000000080081e4 putchar + .text._puts_r 0x000000000800820c 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-puts.o) + 0x000000000800820c _puts_r + .text.puts 0x00000000080082e8 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-puts.o) + 0x00000000080082e8 puts + .text._sbrk_r 0x00000000080082f8 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) + 0x00000000080082f8 _sbrk_r + .text.sprintf 0x0000000008008318 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) + 0x0000000008008318 sprintf + 0x0000000008008318 siprintf .text.__swbuf_r - 0x0000000008009bd4 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) - 0x0000000008009bd4 __swbuf_r - .text.__ascii_wctomb - 0x0000000008009c78 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) - 0x0000000008009c78 __ascii_wctomb - *fill* 0x0000000008009c92 0x2 + 0x0000000008008358 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) + 0x0000000008008358 __swbuf_r .text.__swsetup_r - 0x0000000008009c94 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) - 0x0000000008009c94 __swsetup_r - .text.abort 0x0000000008009d70 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) - 0x0000000008009d70 abort - *fill* 0x0000000008009d7e 0x2 + 0x00000000080083fc 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) + 0x00000000080083fc __swsetup_r + .text.quorem 0x00000000080084d8 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* 0x00000000080085f2 0x6 + .text._dtoa_r 0x00000000080085f8 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) + 0x00000000080085f8 _dtoa_r .text.__sflush_r - 0x0000000008009d80 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) - 0x0000000008009d80 __sflush_r + 0x00000000080091d4 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) + 0x00000000080091d4 __sflush_r .text._fflush_r - 0x0000000008009e8c 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) - 0x0000000008009e8c _fflush_r - .text.std 0x0000000008009f04 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) + 0x00000000080092e0 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) + 0x00000000080092e0 _fflush_r + .text.std 0x0000000008009358 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 - 0x0000000008009f4c 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) - 0x0000000008009f4c _cleanup_r + 0x00000000080093a0 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) + 0x00000000080093a0 _cleanup_r .text.__sfmoreglue - 0x0000000008009f58 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) - 0x0000000008009f58 __sfmoreglue + 0x00000000080093ac 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) + 0x00000000080093ac __sfmoreglue .text.__sfp_lock_acquire - 0x0000000008009f84 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) - 0x0000000008009f84 __sfp_lock_acquire + 0x00000000080093d8 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) + 0x00000000080093d8 __sfp_lock_acquire .text.__sfp_lock_release - 0x0000000008009f90 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) - 0x0000000008009f90 __sfp_lock_release + 0x00000000080093e4 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) + 0x00000000080093e4 __sfp_lock_release .text.__sinit_lock_acquire - 0x0000000008009f9c 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) - 0x0000000008009f9c __sinit_lock_acquire + 0x00000000080093f0 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) + 0x00000000080093f0 __sinit_lock_acquire .text.__sinit_lock_release - 0x0000000008009fa8 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) - 0x0000000008009fa8 __sinit_lock_release - .text.__sinit 0x0000000008009fb4 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) - 0x0000000008009fb4 __sinit - .text.__sfp 0x000000000800a024 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) - 0x000000000800a024 __sfp + 0x00000000080093fc 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) + 0x00000000080093fc __sinit_lock_release + .text.__sinit 0x0000000008009408 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) + 0x0000000008009408 __sinit + .text.__sfp 0x0000000008009478 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) + 0x0000000008009478 __sfp .text._fwalk_reent - 0x000000000800a0b0 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) - 0x000000000800a0b0 _fwalk_reent + 0x0000000008009504 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) + 0x0000000008009504 _fwalk_reent + *fill* 0x0000000008009542 0x2 + .text._localeconv_r + 0x0000000008009544 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) + 0x0000000008009544 _localeconv_r + .text.__retarget_lock_init_recursive + 0x000000000800954c 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) + 0x000000000800954c __retarget_lock_init_recursive + .text.__retarget_lock_acquire_recursive + 0x000000000800954e 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) + 0x000000000800954e __retarget_lock_acquire_recursive + .text.__retarget_lock_release_recursive + 0x0000000008009550 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) + 0x0000000008009550 __retarget_lock_release_recursive .text.__swhatbuf_r - 0x000000000800a0ee 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) - 0x000000000800a0ee __swhatbuf_r - *fill* 0x000000000800a136 0x2 + 0x0000000008009552 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) + 0x0000000008009552 __swhatbuf_r + *fill* 0x000000000800959a 0x2 .text.__smakebuf_r - 0x000000000800a138 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) - 0x000000000800a138 __smakebuf_r - .text._malloc_usable_size_r - 0x000000000800a1b8 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) - 0x000000000800a1b8 _malloc_usable_size_r - .text._raise_r - 0x000000000800a1c8 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) - 0x000000000800a1c8 _raise_r - .text.raise 0x000000000800a218 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) - 0x000000000800a218 raise - .text._kill_r 0x000000000800a228 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) - 0x000000000800a228 _kill_r - .text._getpid_r - 0x000000000800a24c 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) - 0x000000000800a24c _getpid_r - .text.__sread 0x000000000800a250 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) - 0x000000000800a250 __sread + 0x000000000800959c 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) + 0x000000000800959c __smakebuf_r + .text.memchr 0x000000000800961c 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) + 0x000000000800961c memchr + .text.memcpy 0x0000000008009638 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) + 0x0000000008009638 memcpy + .text.__malloc_lock + 0x0000000008009654 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) + 0x0000000008009654 __malloc_lock + .text.__malloc_unlock + 0x0000000008009660 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) + 0x0000000008009660 __malloc_unlock + .text._Balloc 0x000000000800966c 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) + 0x000000000800966c _Balloc + .text._Bfree 0x00000000080096ec 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) + 0x00000000080096ec _Bfree + .text.__multadd + 0x0000000008009730 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) + 0x0000000008009730 __multadd + .text.__hi0bits + 0x00000000080097c4 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) + 0x00000000080097c4 __hi0bits + .text.__lo0bits + 0x0000000008009804 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) + 0x0000000008009804 __lo0bits + .text.__i2b 0x0000000008009860 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) + 0x0000000008009860 __i2b + .text.__multiply + 0x000000000800988c 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) + 0x000000000800988c __multiply + .text.__pow5mult + 0x00000000080099d4 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) + 0x00000000080099d4 __pow5mult + .text.__lshift + 0x0000000008009a88 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) + 0x0000000008009a88 __lshift + .text.__mcmp 0x0000000008009b60 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) + 0x0000000008009b60 __mcmp + *fill* 0x0000000008009b96 0x2 + .text.__mdiff 0x0000000008009b98 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) + 0x0000000008009b98 __mdiff + .text.__d2b 0x0000000008009cb8 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) + 0x0000000008009cb8 __d2b + .text._calloc_r + 0x0000000008009d70 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) + 0x0000000008009d70 _calloc_r + .text.__ssputs_r + 0x0000000008009d8c 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) + 0x0000000008009d8c __ssputs_r + *fill* 0x0000000008009e42 0x2 + .text._svfprintf_r + 0x0000000008009e44 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) + 0x0000000008009e44 _svfprintf_r + 0x0000000008009e44 _svfiprintf_r + .text.__sfputc_r + 0x000000000800a044 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 + 0x000000000800a06e 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) + 0x000000000800a06e __sfputs_r + *fill* 0x000000000800a092 0x2 + .text._vfprintf_r + 0x000000000800a094 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) + 0x000000000800a094 _vfiprintf_r + 0x000000000800a094 _vfprintf_r + .text._putc_r 0x000000000800a2f4 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-putc.o) + 0x000000000800a2f4 _putc_r + .text.__sread 0x000000000800a384 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) + 0x000000000800a384 __sread .text.__swrite - 0x000000000800a272 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) - 0x000000000800a272 __swrite - .text.__sseek 0x000000000800a2aa 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) - 0x000000000800a2aa __sseek + 0x000000000800a3a6 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) + 0x000000000800a3a6 __swrite + .text.__sseek 0x000000000800a3de 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) + 0x000000000800a3de __sseek .text.__sclose - 0x000000000800a2ce 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) - 0x000000000800a2ce __sclose - *fill* 0x000000000800a2d6 0x2 + 0x000000000800a402 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) + 0x000000000800a402 __sclose + *fill* 0x000000000800a40a 0x2 .text._write_r - 0x000000000800a2d8 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) - 0x000000000800a2d8 _write_r + 0x000000000800a40c 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) + 0x000000000800a40c _write_r + .text.__assert_func + 0x000000000800a430 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) + 0x000000000800a430 __assert_func .text._close_r - 0x000000000800a2fc 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) - 0x000000000800a2fc _close_r + 0x000000000800a46c 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) + 0x000000000800a46c _close_r + .text.fprintf 0x000000000800a48c 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) + 0x000000000800a48c fprintf + 0x000000000800a48c fiprintf .text._fstat_r - 0x000000000800a31c 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) - 0x000000000800a31c _fstat_r + 0x000000000800a4b0 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) + 0x000000000800a4b0 _fstat_r .text._isatty_r - 0x000000000800a340 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) - 0x000000000800a340 _isatty_r + 0x000000000800a4d4 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) + 0x000000000800a4d4 _isatty_r .text._lseek_r - 0x000000000800a360 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) - 0x000000000800a360 _lseek_r - .text._read_r 0x000000000800a384 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) - 0x000000000800a384 _read_r + 0x000000000800a4f4 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) + 0x000000000800a4f4 _lseek_r + .text.__ascii_mbtowc + 0x000000000800a518 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) + 0x000000000800a518 __ascii_mbtowc + .text.memmove 0x000000000800a53c 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) + 0x000000000800a53c memmove + .text._realloc_r + 0x000000000800a570 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) + 0x000000000800a570 _realloc_r + .text._read_r 0x000000000800a5bc 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) + 0x000000000800a5bc _read_r + .text.__ascii_wctomb + 0x000000000800a5e0 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) + 0x000000000800a5e0 __ascii_wctomb + .text.abort 0x000000000800a5fa 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) + 0x000000000800a5fa abort + .text._malloc_usable_size_r + 0x000000000800a608 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) + 0x000000000800a608 _malloc_usable_size_r + .text._raise_r + 0x000000000800a618 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) + 0x000000000800a618 _raise_r + .text.raise 0x000000000800a668 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) + 0x000000000800a668 raise + .text._kill_r 0x000000000800a678 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) + 0x000000000800a678 _kill_r + .text._getpid_r + 0x000000000800a69c 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) + 0x000000000800a69c _getpid_r *(.glue_7) - .glue_7 0x000000000800a3a8 0x0 linker stubs + .glue_7 0x000000000800a6a0 0x0 linker stubs *(.glue_7t) - .glue_7t 0x000000000800a3a8 0x0 linker stubs + .glue_7t 0x000000000800a6a0 0x0 linker stubs *(.eh_frame) - .eh_frame 0x000000000800a3a8 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 + .eh_frame 0x000000000800a6a0 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 0x000000000800a3a8 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 - 0x000000000800a3a8 _init - .init 0x000000000800a3ac 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 0x000000000800a6a0 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 + 0x000000000800a6a0 _init + .init 0x000000000800a6a4 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 0x000000000800a3b4 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 - 0x000000000800a3b4 _fini - .fini 0x000000000800a3b8 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 - 0x000000000800a3c0 . = ALIGN (0x4) - 0x000000000800a3c0 _etext = . + .fini 0x000000000800a6ac 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 + 0x000000000800a6ac _fini + .fini 0x000000000800a6b0 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 + 0x000000000800a6b8 . = ALIGN (0x4) + 0x000000000800a6b8 _etext = . -.vfp11_veneer 0x000000000800a3c0 0x0 - .vfp11_veneer 0x000000000800a3c0 0x0 linker stubs +.vfp11_veneer 0x000000000800a6b8 0x0 + .vfp11_veneer 0x000000000800a6b8 0x0 linker stubs -.v4_bx 0x000000000800a3c0 0x0 - .v4_bx 0x000000000800a3c0 0x0 linker stubs +.v4_bx 0x000000000800a6b8 0x0 + .v4_bx 0x000000000800a6b8 0x0 linker stubs -.iplt 0x000000000800a3c0 0x0 - .iplt 0x000000000800a3c0 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 0x000000000800a6b8 0x0 + .iplt 0x000000000800a6b8 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 0x000000000800a3c0 0xf5c - 0x000000000800a3c0 . = ALIGN (0x4) +.rodata 0x000000000800a6b8 0xfb4 + 0x000000000800a6b8 . = ALIGN (0x4) *(.rodata) - .rodata 0x000000000800a3c0 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .rodata 0x000000000800a3d0 0xb8 ./HW_Devices/touch.o - .rodata 0x000000000800a488 0x2b ./SW_APPs/APP_IDcard.o - *fill* 0x000000000800a4b3 0x1 - .rodata 0x000000000800a4b4 0x7 ./SW_APPs/Main_APP.o + .rodata 0x000000000800a6b8 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .rodata 0x000000000800a6c8 0xb8 ./HW_Devices/touch.o + .rodata 0x000000000800a780 0x82 ./SW_APPs/APP_IDcard.o + *fill* 0x000000000800a802 0x2 + .rodata 0x000000000800a804 0x7 ./SW_APPs/Main_APP.o *(.rodata*) - *fill* 0x000000000800a4bb 0x1 + *fill* 0x000000000800a80b 0x1 .rodata.AHBPrescTable - 0x000000000800a4bc 0x10 ./Core/Src/system_stm32f1xx.o - 0x000000000800a4bc AHBPrescTable + 0x000000000800a80c 0x10 ./Core/Src/system_stm32f1xx.o + 0x000000000800a80c AHBPrescTable .rodata.APBPrescTable - 0x000000000800a4cc 0x8 ./Core/Src/system_stm32f1xx.o - 0x000000000800a4cc APBPrescTable + 0x000000000800a81c 0x8 ./Core/Src/system_stm32f1xx.o + 0x000000000800a81c APBPrescTable .rodata.asc2_1206 - 0x000000000800a4d4 0x474 ./HW_Devices/LCD.o - 0x000000000800a4d4 asc2_1206 + 0x000000000800a824 0x474 ./HW_Devices/LCD.o + 0x000000000800a824 asc2_1206 .rodata.asc2_1608 - 0x000000000800a948 0x5f0 ./HW_Devices/LCD.o - 0x000000000800a948 asc2_1608 + 0x000000000800ac98 0x5f0 ./HW_Devices/LCD.o + 0x000000000800ac98 asc2_1608 .rodata._global_impure_ptr - 0x000000000800af38 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) - 0x000000000800af38 _global_impure_ptr + 0x000000000800b288 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) + 0x000000000800b288 _global_impure_ptr .rodata._printf_float.str1.1 - 0x000000000800af3c 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) + 0x000000000800b28c 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 - 0x000000000800af4e 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) + 0x000000000800b29e 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 - 0x000000000800af70 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) + 0x000000000800b2c0 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.__sf_fake_stderr + 0x000000000800b354 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) + 0x000000000800b354 __sf_fake_stderr + .rodata.__sf_fake_stdin + 0x000000000800b374 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) + 0x000000000800b374 __sf_fake_stdin + .rodata.__sf_fake_stdout + 0x000000000800b394 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) + 0x000000000800b394 __sf_fake_stdout .rodata._Balloc.str1.1 - 0x000000000800b004 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) + 0x000000000800b3b4 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 - 0x000000000800b064 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* 0x000000000800b064 0x4 + 0x000000000800b414 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* 0x000000000800b414 0x4 .rodata.__mprec_bigtens - 0x000000000800b068 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) - 0x000000000800b068 __mprec_bigtens + 0x000000000800b418 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) + 0x000000000800b418 __mprec_bigtens .rodata.__mprec_tens - 0x000000000800b090 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) - 0x000000000800b090 __mprec_tens + 0x000000000800b440 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) + 0x000000000800b440 __mprec_tens .rodata.p05.6150 - 0x000000000800b158 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) + 0x000000000800b508 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 - 0x000000000800b164 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) + 0x000000000800b514 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._vfprintf_r.str1.1 + 0x000000000800b525 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.__assert_func.str1.1 - 0x000000000800b175 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) + 0x000000000800b525 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 - 0x000000000800b1b1 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) + 0x000000000800b561 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 - 0x000000000800b1b9 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 - 0x000000000800b1bb 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) + 0x000000000800b569 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._ctype_ - 0x000000000800b1bb 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) - 0x000000000800b1bb _ctype_ - .rodata.__sf_fake_stderr - 0x000000000800b2bc 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) - 0x000000000800b2bc __sf_fake_stderr - .rodata.__sf_fake_stdin - 0x000000000800b2dc 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) - 0x000000000800b2dc __sf_fake_stdin - .rodata.__sf_fake_stdout - 0x000000000800b2fc 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) - 0x000000000800b2fc __sf_fake_stdout - 0x000000000800b31c . = ALIGN (0x4) + 0x000000000800b56b 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) + 0x000000000800b56b _ctype_ + 0x000000000800b66c . = ALIGN (0x4) -.rel.dyn 0x000000000800b31c 0x0 - .rel.iplt 0x000000000800b31c 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 0x000000000800b66c 0x0 + .rel.iplt 0x000000000800b66c 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 0x000000000800b31c 0x0 - 0x000000000800b31c . = ALIGN (0x4) +.ARM.extab 0x000000000800b66c 0x0 + 0x000000000800b66c . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x000000000800b31c . = ALIGN (0x4) + 0x000000000800b66c . = ALIGN (0x4) -.ARM 0x000000000800b31c 0x0 - 0x000000000800b31c . = ALIGN (0x4) - 0x000000000800b31c __exidx_start = . +.ARM 0x000000000800b66c 0x0 + 0x000000000800b66c . = ALIGN (0x4) + 0x000000000800b66c __exidx_start = . *(.ARM.exidx*) - 0x000000000800b31c __exidx_end = . - 0x000000000800b31c . = ALIGN (0x4) + 0x000000000800b66c __exidx_end = . + 0x000000000800b66c . = ALIGN (0x4) -.preinit_array 0x000000000800b31c 0x0 - 0x000000000800b31c . = ALIGN (0x4) - 0x000000000800b31c PROVIDE (__preinit_array_start = .) +.preinit_array 0x000000000800b66c 0x0 + 0x000000000800b66c . = ALIGN (0x4) + 0x000000000800b66c PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x000000000800b31c PROVIDE (__preinit_array_end = .) - 0x000000000800b31c . = ALIGN (0x4) + 0x000000000800b66c PROVIDE (__preinit_array_end = .) + 0x000000000800b66c . = ALIGN (0x4) -.init_array 0x000000000800b31c 0x4 - 0x000000000800b31c . = ALIGN (0x4) - 0x000000000800b31c PROVIDE (__init_array_start = .) +.init_array 0x000000000800b66c 0x4 + 0x000000000800b66c . = ALIGN (0x4) + 0x000000000800b66c PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x000000000800b31c 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 - 0x000000000800b320 PROVIDE (__init_array_end = .) - 0x000000000800b320 . = ALIGN (0x4) + .init_array 0x000000000800b66c 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 + 0x000000000800b670 PROVIDE (__init_array_end = .) + 0x000000000800b670 . = ALIGN (0x4) -.fini_array 0x000000000800b320 0x4 - 0x000000000800b320 . = ALIGN (0x4) +.fini_array 0x000000000800b670 0x4 + 0x000000000800b670 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x000000000800b320 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 0x000000000800b670 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 = .) - 0x000000000800b324 . = ALIGN (0x4) - 0x000000000800b324 _sidata = LOADADDR (.data) + 0x000000000800b674 . = ALIGN (0x4) + 0x000000000800b674 _sidata = LOADADDR (.data) -.data 0x0000000020000000 0x1e4 load address 0x000000000800b324 +.data 0x0000000020000000 0x1e4 load address 0x000000000800b674 0x0000000020000000 . = ALIGN (0x4) 0x0000000020000000 _sdata = . *(.data) @@ -5065,8 +5726,8 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x0000000020000008 0x1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o 0x0000000020000008 uwTickFreq *fill* 0x0000000020000009 0x3 - .data.KEY 0x000000002000000c 0x6 ./SW_APPs/APP_IDcard.o - 0x000000002000000c KEY + .data.KEYB 0x000000002000000c 0x6 ./SW_APPs/APP_IDcard.o + 0x000000002000000c KEYB *fill* 0x0000000020000012 0x2 .data._impure_ptr 0x0000000020000014 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) @@ -5081,11 +5742,11 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x00000000200001e4 . = ALIGN (0x4) 0x00000000200001e4 _edata = . -.igot.plt 0x00000000200001e4 0x0 load address 0x000000000800b508 +.igot.plt 0x00000000200001e4 0x0 load address 0x000000000800b858 .igot.plt 0x00000000200001e4 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 0x00000000200001e4 . = ALIGN (0x4) -.bss 0x00000000200001e4 0x2364 load address 0x000000000800b508 +.bss 0x00000000200001e4 0x2364 load address 0x000000000800b858 0x00000000200001e4 _sbss = . 0x00000000200001e4 __bss_start__ = _sbss *(.bss) @@ -5124,46 +5785,46 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id COMMON 0x0000000020000374 0x28 ./HW_Devices/touch.o 0x0000000020000374 tconfig 0x000000002000038c t0 - COMMON 0x000000002000039c 0x47 ./SW_APPs/APP_IDcard.o + COMMON 0x000000002000039c 0x4b ./SW_APPs/APP_IDcard.o 0x000000002000039c RFID 0x00000000200003ac PA 0x00000000200003b0 idcard_str - 0x00000000200003d0 idcard_window - 0x00000000200003d4 checkkey - 0x00000000200003d8 CT - 0x00000000200003dc SN - 0x00000000200003e0 fundcard - 0x00000000200003e1 sele - 0x00000000200003e2 status - *fill* 0x00000000200003e3 0x1 - COMMON 0x00000000200003e4 0x2152 ./SW_APPs/APP_blood.o - 0x00000000200003e4 blood_str - 0x0000000020000424 fifo_ir - 0x0000000020000428 blood_win - 0x000000002000042c s1 - 0x00000000200014ac s2 - 0x000000002000252c g_BloodWave - 0x0000000020002534 fifo_red - *fill* 0x0000000020002536 0x2 - COMMON 0x0000000020002538 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) - 0x0000000020002538 errno - COMMON 0x000000002000253c 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) - 0x000000002000253c __lock___atexit_recursive_mutex - 0x000000002000253d __lock___arc4random_mutex - 0x000000002000253e __lock___env_recursive_mutex - 0x000000002000253f __lock___sinit_recursive_mutex - 0x0000000020002540 __lock___malloc_recursive_mutex - 0x0000000020002541 __lock___at_quick_exit_mutex - 0x0000000020002542 __lock___dd_hash_mutex - 0x0000000020002543 __lock___tz_mutex - 0x0000000020002544 __lock___sfp_recursive_mutex + 0x00000000200003d0 read_flag + 0x00000000200003d4 idcard_window + 0x00000000200003d8 checkkey + 0x00000000200003dc CT + 0x00000000200003e0 SN + 0x00000000200003e4 fundcard + 0x00000000200003e5 sele + 0x00000000200003e6 status + *fill* 0x00000000200003e7 0x1 + COMMON 0x00000000200003e8 0x2152 ./SW_APPs/APP_blood.o + 0x00000000200003e8 blood_str + 0x0000000020000428 fifo_ir + 0x000000002000042c blood_win + 0x0000000020000430 s1 + 0x00000000200014b0 s2 + 0x0000000020002530 g_BloodWave + 0x0000000020002538 fifo_red + COMMON 0x000000002000253a 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) + 0x000000002000253a __lock___atexit_recursive_mutex + 0x000000002000253b __lock___arc4random_mutex + 0x000000002000253c __lock___env_recursive_mutex + 0x000000002000253d __lock___sinit_recursive_mutex + 0x000000002000253e __lock___malloc_recursive_mutex + 0x000000002000253f __lock___at_quick_exit_mutex + 0x0000000020002540 __lock___dd_hash_mutex + 0x0000000020002541 __lock___tz_mutex + 0x0000000020002542 __lock___sfp_recursive_mutex + *fill* 0x0000000020002543 0x1 + COMMON 0x0000000020002544 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) + 0x0000000020002544 errno 0x0000000020002548 . = ALIGN (0x4) - *fill* 0x0000000020002545 0x3 0x0000000020002548 _ebss = . 0x0000000020002548 __bss_end__ = _ebss ._user_heap_stack - 0x0000000020002548 0xc00 load address 0x000000000800b508 + 0x0000000020002548 0xc00 load address 0x000000000800b858 0x0000000020002548 . = ALIGN (0x8) [!provide] PROVIDE (end = .) 0x0000000020002548 PROVIDE (_end = .) @@ -5256,451 +5917,462 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .ARM.attributes 0x0000000000000638 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 - 0x0000000000000665 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) + 0x0000000000000665 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-printf.o) .ARM.attributes - 0x0000000000000692 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) + 0x0000000000000692 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-putchar.o) .ARM.attributes - 0x00000000000006bf 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) + 0x00000000000006bf 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-puts.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-dtoa.o) + 0x00000000000006ec 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 - 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-localeconv.o) + 0x0000000000000719 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 - 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-memchr-stub.o) + 0x0000000000000746 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 - 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-memcpy-stub.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-wbuf.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-mlock.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-wsetup.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-mprec.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-dtoa.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-nano-callocr.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-fflush.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-nano-svfprintf.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-findfp.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-reent.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-fwalk.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-assert.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-localeconv.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-fprintf.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-lock.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-locale.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-makebuf.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-lock.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-memchr-stub.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-mbtowc_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-memcpy-stub.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-memmove.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-mlock.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-nano-reallocr.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-mprec.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-nano-vfprintf.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-nano-callocr.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-wbuf.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-nano-svfprintf.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-wctomb_r.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-nano-vfprintf.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-wsetup.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-putc.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-abort.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-reent.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-ctype_.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-stdio.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-fflush.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-writer.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-findfp.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-assert.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-fwalk.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-closer.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-makebuf.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-fprintf.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-nano-msizer.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-fstatr.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-signal.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-isattyr.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-signalr.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-locale.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-stdio.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-lseekr.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-writer.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-mbtowc_r.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/libc_nano.a(lib_a-closer.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-memmove.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/libc_nano.a(lib_a-fstatr.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-nano-reallocr.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/libc_nano.a(lib_a-isattyr.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/libc_nano.a(lib_a-readr.o) .ARM.attributes - 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/libc_nano.a(lib_a-lseekr.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/libc_nano.a(lib_a-wctomb_r.o) .ARM.attributes - 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/libc_nano.a(lib_a-readr.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/libc_nano.a(lib_a-abort.o) .ARM.attributes - 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) + 0x0000000000000d2a 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 - 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) + 0x0000000000000d57 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 - 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) + 0x0000000000000d84 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 - 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) + 0x0000000000000db1 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 - 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) + 0x0000000000000dde 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 - 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) + 0x0000000000000dfb 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 - 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) + 0x0000000000000e18 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 - 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) + 0x0000000000000e35 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 - 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_fixsfsi.o) + 0x0000000000000e52 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 - 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/crtn.o + 0x0000000000000e6f 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 + 0x0000000000000e8c 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 + 0x0000000000000ea9 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 + 0x0000000000000ec6 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 + 0x0000000000000ee3 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 0x15b3f - .debug_info 0x0000000000000000 0x141a ./Core/Src/main.o - .debug_info 0x000000000000141a 0x1487 ./Core/Src/stm32f1xx_hal_msp.o - .debug_info 0x00000000000028a1 0x7b4 ./Core/Src/stm32f1xx_it.o - .debug_info 0x0000000000003055 0xfa8 ./Core/Src/syscalls.o - .debug_info 0x0000000000003ffd 0xa25 ./Core/Src/sysmem.o - .debug_info 0x0000000000004a22 0x2be ./Core/Src/system_stm32f1xx.o - .debug_info 0x0000000000004ce0 0x22 ./Core/Startup/startup_stm32f103zetx.o - .debug_info 0x0000000000004d02 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_info 0x00000000000054d2 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_info 0x0000000000006114 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_info 0x0000000000006815 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_info 0x0000000000008fa3 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_info 0x0000000000009831 0x16cd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_info 0x000000000000aefe 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_info 0x000000000000bc49 0x2a45 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_info 0x000000000000e68e 0x14d5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_info 0x000000000000fb63 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_info 0x000000000001064a 0xa30 ./HW_Devices/LCD.o - .debug_info 0x000000000001107a 0x39b ./HW_Devices/eeprom.o - .debug_info 0x0000000000011415 0x734 ./HW_Devices/iic.o - .debug_info 0x0000000000011b49 0xd4d ./HW_Devices/rs522.o - .debug_info 0x0000000000012896 0x8c1 ./HW_Devices/touch.o - .debug_info 0x0000000000013157 0x443 ./SW_APPs/APP_IDcard.o - .debug_info 0x000000000001359a 0x17f7 ./SW_APPs/APP_blood.o - .debug_info 0x0000000000014d91 0x546 ./SW_APPs/Main_APP.o - .debug_info 0x00000000000152d7 0x868 ./SW_APPs/windows.o +.debug_info 0x0000000000000000 0x1bb92 + .debug_info 0x0000000000000000 0x1f85 ./Core/Src/main.o + .debug_info 0x0000000000001f85 0x1d27 ./Core/Src/stm32f1xx_hal_msp.o + .debug_info 0x0000000000003cac 0x1054 ./Core/Src/stm32f1xx_it.o + .debug_info 0x0000000000004d00 0xfa8 ./Core/Src/syscalls.o + .debug_info 0x0000000000005ca8 0xa25 ./Core/Src/sysmem.o + .debug_info 0x00000000000066cd 0x2be ./Core/Src/system_stm32f1xx.o + .debug_info 0x000000000000698b 0x22 ./Core/Startup/startup_stm32f103zetx.o + .debug_info 0x00000000000069ad 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_info 0x000000000000717d 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_info 0x0000000000007dbf 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_info 0x00000000000084c0 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_info 0x000000000000ac4e 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_info 0x000000000000b4dc 0x16cd ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_info 0x000000000000cba9 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_info 0x000000000000d8f4 0x2a45 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_info 0x0000000000010339 0x14d5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_info 0x000000000001180e 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_info 0x00000000000122f5 0x12d2 ./HW_Devices/LCD.o + .debug_info 0x00000000000135c7 0xc2e ./HW_Devices/eeprom.o + .debug_info 0x00000000000141f5 0xfc7 ./HW_Devices/iic.o + .debug_info 0x00000000000151bc 0x15e0 ./HW_Devices/rs522.o + .debug_info 0x000000000001679c 0x104c ./HW_Devices/touch.o + .debug_info 0x00000000000177e8 0xcf8 ./SW_APPs/APP_IDcard.o + .debug_info 0x00000000000184e0 0x17db ./SW_APPs/APP_blood.o + .debug_info 0x0000000000019cbb 0xde1 ./SW_APPs/Main_APP.o + .debug_info 0x000000000001aa9c 0x10f6 ./SW_APPs/windows.o -.debug_abbrev 0x0000000000000000 0x36de - .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 0x26e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_abbrev 0x0000000000001a02 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_abbrev 0x0000000000001bf4 0x25e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_abbrev 0x0000000000001e52 0x266 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_abbrev 0x00000000000020b8 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_abbrev 0x0000000000002266 0x28b ./HW_Devices/LCD.o - .debug_abbrev 0x00000000000024f1 0x1b6 ./HW_Devices/eeprom.o - .debug_abbrev 0x00000000000026a7 0x176 ./HW_Devices/iic.o - .debug_abbrev 0x000000000000281d 0x27b ./HW_Devices/rs522.o - .debug_abbrev 0x0000000000002a98 0x24f ./HW_Devices/touch.o - .debug_abbrev 0x0000000000002ce7 0x180 ./SW_APPs/APP_IDcard.o - .debug_abbrev 0x0000000000002e67 0x3ca ./SW_APPs/APP_blood.o - .debug_abbrev 0x0000000000003231 0x1d8 ./SW_APPs/Main_APP.o - .debug_abbrev 0x0000000000003409 0x2d5 ./SW_APPs/windows.o +.debug_abbrev 0x0000000000000000 0x3d70 + .debug_abbrev 0x0000000000000000 0x3a0 ./Core/Src/main.o + .debug_abbrev 0x00000000000003a0 0x2a4 ./Core/Src/stm32f1xx_hal_msp.o + .debug_abbrev 0x0000000000000644 0x1f3 ./Core/Src/stm32f1xx_it.o + .debug_abbrev 0x0000000000000837 0x286 ./Core/Src/syscalls.o + .debug_abbrev 0x0000000000000abd 0x1bf ./Core/Src/sysmem.o + .debug_abbrev 0x0000000000000c7c 0x14e ./Core/Src/system_stm32f1xx.o + .debug_abbrev 0x0000000000000dca 0x12 ./Core/Startup/startup_stm32f103zetx.o + .debug_abbrev 0x0000000000000ddc 0x1ed ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_abbrev 0x0000000000000fc9 0x313 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_abbrev 0x00000000000012dc 0x1e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_abbrev 0x00000000000014c4 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_abbrev 0x000000000000174c 0x273 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_abbrev 0x00000000000019bf 0x26e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_abbrev 0x0000000000001c2d 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_abbrev 0x0000000000001e1f 0x25e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_abbrev 0x000000000000207d 0x266 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_abbrev 0x00000000000022e3 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_abbrev 0x0000000000002491 0x31f ./HW_Devices/LCD.o + .debug_abbrev 0x00000000000027b0 0x26b ./HW_Devices/eeprom.o + .debug_abbrev 0x0000000000002a1b 0x1f3 ./HW_Devices/iic.o + .debug_abbrev 0x0000000000002c0e 0x2e7 ./HW_Devices/rs522.o + .debug_abbrev 0x0000000000002ef5 0x2b9 ./HW_Devices/touch.o + .debug_abbrev 0x00000000000031ae 0x23c ./SW_APPs/APP_IDcard.o + .debug_abbrev 0x00000000000033ea 0x3b0 ./SW_APPs/APP_blood.o + .debug_abbrev 0x000000000000379a 0x25b ./SW_APPs/Main_APP.o + .debug_abbrev 0x00000000000039f5 0x37b ./SW_APPs/windows.o -.debug_aranges 0x0000000000000000 0x1398 +.debug_aranges 0x0000000000000000 0x13a8 .debug_aranges - 0x0000000000000000 0x58 ./Core/Src/main.o + 0x0000000000000000 0x68 ./Core/Src/main.o .debug_aranges - 0x0000000000000058 0x70 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000000000068 0x70 ./Core/Src/stm32f1xx_hal_msp.o .debug_aranges - 0x00000000000000c8 0x68 ./Core/Src/stm32f1xx_it.o + 0x00000000000000d8 0x68 ./Core/Src/stm32f1xx_it.o .debug_aranges - 0x0000000000000130 0xa8 ./Core/Src/syscalls.o + 0x0000000000000140 0xa8 ./Core/Src/syscalls.o .debug_aranges - 0x00000000000001d8 0x20 ./Core/Src/sysmem.o + 0x00000000000001e8 0x20 ./Core/Src/sysmem.o .debug_aranges - 0x00000000000001f8 0x28 ./Core/Src/system_stm32f1xx.o + 0x0000000000000208 0x28 ./Core/Src/system_stm32f1xx.o .debug_aranges - 0x0000000000000220 0x28 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000000000230 0x28 ./Core/Startup/startup_stm32f103zetx.o .debug_aranges - 0x0000000000000248 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000000000258 0xe0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o .debug_aranges - 0x0000000000000328 0x100 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000000000338 0x100 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .debug_aranges - 0x0000000000000428 0x58 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000000000438 0x58 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o .debug_aranges - 0x0000000000000480 0x2a0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000000000490 0x2a0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .debug_aranges - 0x0000000000000720 0x90 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000000000730 0x90 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .debug_aranges - 0x00000000000007b0 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + 0x00000000000007c0 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o .debug_aranges - 0x0000000000000980 0xb8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x0000000000000990 0xb8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_aranges - 0x0000000000000a38 0x3d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + 0x0000000000000a48 0x3d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o .debug_aranges - 0x0000000000000e08 0x168 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + 0x0000000000000e18 0x168 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o .debug_aranges - 0x0000000000000f70 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000000000f80 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_aranges - 0x0000000000001018 0xc8 ./HW_Devices/LCD.o + 0x0000000000001028 0xc8 ./HW_Devices/LCD.o .debug_aranges - 0x00000000000010e0 0x38 ./HW_Devices/eeprom.o + 0x00000000000010f0 0x38 ./HW_Devices/eeprom.o .debug_aranges - 0x0000000000001118 0x28 ./HW_Devices/iic.o + 0x0000000000001128 0x28 ./HW_Devices/iic.o .debug_aranges - 0x0000000000001140 0xb0 ./HW_Devices/rs522.o + 0x0000000000001150 0xb0 ./HW_Devices/rs522.o .debug_aranges - 0x00000000000011f0 0x60 ./HW_Devices/touch.o + 0x0000000000001200 0x60 ./HW_Devices/touch.o .debug_aranges - 0x0000000000001250 0x28 ./SW_APPs/APP_IDcard.o + 0x0000000000001260 0x28 ./SW_APPs/APP_IDcard.o .debug_aranges - 0x0000000000001278 0x90 ./SW_APPs/APP_blood.o + 0x0000000000001288 0x90 ./SW_APPs/APP_blood.o .debug_aranges - 0x0000000000001308 0x20 ./SW_APPs/Main_APP.o + 0x0000000000001318 0x20 ./SW_APPs/Main_APP.o .debug_aranges - 0x0000000000001328 0x70 ./SW_APPs/windows.o + 0x0000000000001338 0x70 ./SW_APPs/windows.o -.debug_ranges 0x0000000000000000 0x1240 - .debug_ranges 0x0000000000000000 0x48 ./Core/Src/main.o - .debug_ranges 0x0000000000000048 0x60 ./Core/Src/stm32f1xx_hal_msp.o - .debug_ranges 0x00000000000000a8 0x58 ./Core/Src/stm32f1xx_it.o - .debug_ranges 0x0000000000000100 0x98 ./Core/Src/syscalls.o - .debug_ranges 0x0000000000000198 0x10 ./Core/Src/sysmem.o - .debug_ranges 0x00000000000001a8 0x18 ./Core/Src/system_stm32f1xx.o - .debug_ranges 0x00000000000001c0 0x20 ./Core/Startup/startup_stm32f103zetx.o - .debug_ranges 0x00000000000001e0 0xd0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_ranges 0x00000000000002b0 0xf0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_ranges 0x00000000000003a0 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_ranges 0x00000000000003e8 0x2b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_ranges 0x00000000000006a0 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_ranges 0x0000000000000720 0x1c0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_ranges 0x00000000000008e0 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_ranges 0x0000000000000988 0x3c0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_ranges 0x0000000000000d48 0x158 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_ranges 0x0000000000000ea0 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_ranges 0x0000000000000f38 0xb8 ./HW_Devices/LCD.o - .debug_ranges 0x0000000000000ff0 0x40 ./HW_Devices/eeprom.o - .debug_ranges 0x0000000000001030 0x18 ./HW_Devices/iic.o - .debug_ranges 0x0000000000001048 0xa0 ./HW_Devices/rs522.o - .debug_ranges 0x00000000000010e8 0x50 ./HW_Devices/touch.o - .debug_ranges 0x0000000000001138 0x18 ./SW_APPs/APP_IDcard.o - .debug_ranges 0x0000000000001150 0x80 ./SW_APPs/APP_blood.o - .debug_ranges 0x00000000000011d0 0x10 ./SW_APPs/Main_APP.o - .debug_ranges 0x00000000000011e0 0x60 ./SW_APPs/windows.o +.debug_ranges 0x0000000000000000 0x1250 + .debug_ranges 0x0000000000000000 0x58 ./Core/Src/main.o + .debug_ranges 0x0000000000000058 0x60 ./Core/Src/stm32f1xx_hal_msp.o + .debug_ranges 0x00000000000000b8 0x58 ./Core/Src/stm32f1xx_it.o + .debug_ranges 0x0000000000000110 0x98 ./Core/Src/syscalls.o + .debug_ranges 0x00000000000001a8 0x10 ./Core/Src/sysmem.o + .debug_ranges 0x00000000000001b8 0x18 ./Core/Src/system_stm32f1xx.o + .debug_ranges 0x00000000000001d0 0x20 ./Core/Startup/startup_stm32f103zetx.o + .debug_ranges 0x00000000000001f0 0xd0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_ranges 0x00000000000002c0 0xf0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_ranges 0x00000000000003b0 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_ranges 0x00000000000003f8 0x2b8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_ranges 0x00000000000006b0 0x80 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_ranges 0x0000000000000730 0x1c0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_ranges 0x00000000000008f0 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_ranges 0x0000000000000998 0x3c0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_ranges 0x0000000000000d58 0x158 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_ranges 0x0000000000000eb0 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_ranges 0x0000000000000f48 0xb8 ./HW_Devices/LCD.o + .debug_ranges 0x0000000000001000 0x40 ./HW_Devices/eeprom.o + .debug_ranges 0x0000000000001040 0x18 ./HW_Devices/iic.o + .debug_ranges 0x0000000000001058 0xa0 ./HW_Devices/rs522.o + .debug_ranges 0x00000000000010f8 0x50 ./HW_Devices/touch.o + .debug_ranges 0x0000000000001148 0x18 ./SW_APPs/APP_IDcard.o + .debug_ranges 0x0000000000001160 0x80 ./SW_APPs/APP_blood.o + .debug_ranges 0x00000000000011e0 0x10 ./SW_APPs/Main_APP.o + .debug_ranges 0x00000000000011f0 0x60 ./SW_APPs/windows.o -.debug_macro 0x0000000000000000 0x1d58c - .debug_macro 0x0000000000000000 0x1e0 ./Core/Src/main.o - .debug_macro 0x00000000000001e0 0xa9c ./Core/Src/main.o - .debug_macro 0x0000000000000c7c 0x227 ./Core/Src/main.o - .debug_macro 0x0000000000000ea3 0x2e ./Core/Src/main.o - .debug_macro 0x0000000000000ed1 0x22 ./Core/Src/main.o - .debug_macro 0x0000000000000ef3 0x22 ./Core/Src/main.o - .debug_macro 0x0000000000000f15 0x8e ./Core/Src/main.o - .debug_macro 0x0000000000000fa3 0x51 ./Core/Src/main.o - .debug_macro 0x0000000000000ff4 0x103 ./Core/Src/main.o - .debug_macro 0x00000000000010f7 0x6a ./Core/Src/main.o - .debug_macro 0x0000000000001161 0x1df ./Core/Src/main.o - .debug_macro 0x0000000000001340 0x1c ./Core/Src/main.o - .debug_macro 0x000000000000135c 0x22 ./Core/Src/main.o - .debug_macro 0x000000000000137e 0xc3 ./Core/Src/main.o - .debug_macro 0x0000000000001441 0xd23 ./Core/Src/main.o - .debug_macro 0x0000000000002164 0xfd8c ./Core/Src/main.o - .debug_macro 0x0000000000011ef0 0x6d ./Core/Src/main.o - .debug_macro 0x0000000000011f5d 0x3468 ./Core/Src/main.o - .debug_macro 0x00000000000153c5 0x174 ./Core/Src/main.o - .debug_macro 0x0000000000015539 0x5c ./Core/Src/main.o - .debug_macro 0x0000000000015595 0x5be ./Core/Src/main.o - .debug_macro 0x0000000000015b53 0x4d5 ./Core/Src/main.o - .debug_macro 0x0000000000016028 0x1cb ./Core/Src/main.o - .debug_macro 0x00000000000161f3 0x114 ./Core/Src/main.o - .debug_macro 0x0000000000016307 0x1ea ./Core/Src/main.o - .debug_macro 0x00000000000164f1 0x27 ./Core/Src/main.o - .debug_macro 0x0000000000016518 0x144 ./Core/Src/main.o - .debug_macro 0x000000000001665c 0x1bc ./Core/Src/main.o - .debug_macro 0x0000000000016818 0x30 ./Core/Src/main.o - .debug_macro 0x0000000000016848 0x3c ./Core/Src/main.o - .debug_macro 0x0000000000016884 0x57 ./Core/Src/main.o - .debug_macro 0x00000000000168db 0x88 ./Core/Src/main.o - .debug_macro 0x0000000000016963 0x24f ./Core/Src/main.o - .debug_macro 0x0000000000016bb2 0x356 ./Core/Src/main.o - .debug_macro 0x0000000000016f08 0x287 ./Core/Src/main.o - .debug_macro 0x000000000001718f 0x141 ./Core/Src/main.o - .debug_macro 0x00000000000172d0 0x217 ./Core/Src/main.o - .debug_macro 0x00000000000174e7 0x8d1 ./Core/Src/main.o - .debug_macro 0x0000000000017db8 0xb5 ./Core/Src/main.o - .debug_macro 0x0000000000017e6d 0xac ./Core/Src/main.o - .debug_macro 0x0000000000017f19 0x1d6 ./Core/Src/stm32f1xx_hal_msp.o - .debug_macro 0x00000000000180ef 0x1e0 ./Core/Src/stm32f1xx_it.o - .debug_macro 0x00000000000182cf 0x24c ./Core/Src/syscalls.o - .debug_macro 0x000000000001851b 0x4c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018567 0x18 ./Core/Src/syscalls.o - .debug_macro 0x000000000001857f 0x94 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018613 0x3c ./Core/Src/syscalls.o - .debug_macro 0x000000000001864f 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018683 0x57 ./Core/Src/syscalls.o - .debug_macro 0x00000000000186da 0x339 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018a13 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018a29 0x43 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018a6c 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018aa0 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018ab0 0x58 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018b08 0x71 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018b79 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018b95 0x12a ./Core/Src/syscalls.o - .debug_macro 0x0000000000018cbf 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018ccf 0x35 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018d04 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018d14 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018d24 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018d34 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018d50 0x52 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018da2 0x22 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018dc4 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018dd4 0x40 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018e14 0xd5 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018ee9 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018f05 0x3d ./Core/Src/syscalls.o - .debug_macro 0x0000000000018f42 0x35 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018f77 0x12c ./Core/Src/syscalls.o - .debug_macro 0x00000000000190a3 0x16 ./Core/Src/syscalls.o - .debug_macro 0x00000000000190b9 0x16 ./Core/Src/syscalls.o - .debug_macro 0x00000000000190cf 0x29 ./Core/Src/syscalls.o - .debug_macro 0x00000000000190f8 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000019108 0x241 ./Core/Src/syscalls.o - .debug_macro 0x0000000000019349 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000019365 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000019375 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000019385 0x16 ./Core/Src/syscalls.o - .debug_macro 0x000000000001939b 0x145 ./Core/Src/syscalls.o - .debug_macro 0x00000000000194e0 0x189 ./Core/Src/syscalls.o - .debug_macro 0x0000000000019669 0x16 ./Core/Src/syscalls.o - .debug_macro 0x000000000001967f 0xce ./Core/Src/syscalls.o - .debug_macro 0x000000000001974d 0xff ./Core/Src/sysmem.o - .debug_macro 0x000000000001984c 0x23b ./Core/Src/sysmem.o - .debug_macro 0x0000000000019a87 0x1c7 ./Core/Src/system_stm32f1xx.o - .debug_macro 0x0000000000019c4e 0x1eb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_macro 0x0000000000019e39 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_macro 0x000000000001a000 0x232 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_macro 0x000000000001a232 0x20e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_macro 0x000000000001a440 0x1d9 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_macro 0x000000000001a619 0x1cf ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_macro 0x000000000001a7e8 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_macro 0x000000000001a9af 0x1c8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_macro 0x000000000001ab77 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_macro 0x000000000001ad3e 0x200 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_macro 0x000000000001af3e 0x1e5 ./HW_Devices/LCD.o - .debug_macro 0x000000000001b123 0x38b ./HW_Devices/LCD.o - .debug_macro 0x000000000001b4ae 0x1f0 ./HW_Devices/eeprom.o - .debug_macro 0x000000000001b69e 0x1e0 ./HW_Devices/iic.o - .debug_macro 0x000000000001b87e 0x1e5 ./HW_Devices/rs522.o - .debug_macro 0x000000000001ba63 0x244 ./HW_Devices/rs522.o - .debug_macro 0x000000000001bca7 0x215 ./HW_Devices/touch.o - .debug_macro 0x000000000001bebc 0x22 ./HW_Devices/touch.o - .debug_macro 0x000000000001bede 0x391 ./HW_Devices/touch.o - .debug_macro 0x000000000001c26f 0x10 ./HW_Devices/touch.o - .debug_macro 0x000000000001c27f 0x1fc ./SW_APPs/APP_IDcard.o - .debug_macro 0x000000000001c47b 0x391 ./SW_APPs/APP_IDcard.o - .debug_macro 0x000000000001c80c 0x24a ./SW_APPs/APP_IDcard.o - .debug_macro 0x000000000001ca56 0x2e6 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001cd3c 0x1a9 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001cee5 0xbd ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001cfa2 0x56 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001cff8 0x9a ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001d092 0x22b ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001d2bd 0x28 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001d2e5 0xa0 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001d385 0x207 ./SW_APPs/windows.o +.debug_macro 0x0000000000000000 0x1e8fd + .debug_macro 0x0000000000000000 0x33f ./Core/Src/main.o + .debug_macro 0x000000000000033f 0xa9c ./Core/Src/main.o + .debug_macro 0x0000000000000ddb 0x227 ./Core/Src/main.o + .debug_macro 0x0000000000001002 0x2e ./Core/Src/main.o + .debug_macro 0x0000000000001030 0x22 ./Core/Src/main.o + .debug_macro 0x0000000000001052 0x22 ./Core/Src/main.o + .debug_macro 0x0000000000001074 0x8e ./Core/Src/main.o + .debug_macro 0x0000000000001102 0x51 ./Core/Src/main.o + .debug_macro 0x0000000000001153 0x103 ./Core/Src/main.o + .debug_macro 0x0000000000001256 0x6a ./Core/Src/main.o + .debug_macro 0x00000000000012c0 0x1df ./Core/Src/main.o + .debug_macro 0x000000000000149f 0x1c ./Core/Src/main.o + .debug_macro 0x00000000000014bb 0x22 ./Core/Src/main.o + .debug_macro 0x00000000000014dd 0xc3 ./Core/Src/main.o + .debug_macro 0x00000000000015a0 0xd23 ./Core/Src/main.o + .debug_macro 0x00000000000022c3 0xfd8c ./Core/Src/main.o + .debug_macro 0x000000000001204f 0x6d ./Core/Src/main.o + .debug_macro 0x00000000000120bc 0x3468 ./Core/Src/main.o + .debug_macro 0x0000000000015524 0x174 ./Core/Src/main.o + .debug_macro 0x0000000000015698 0x5c ./Core/Src/main.o + .debug_macro 0x00000000000156f4 0x5be ./Core/Src/main.o + .debug_macro 0x0000000000015cb2 0x4d5 ./Core/Src/main.o + .debug_macro 0x0000000000016187 0x1cb ./Core/Src/main.o + .debug_macro 0x0000000000016352 0x114 ./Core/Src/main.o + .debug_macro 0x0000000000016466 0x1ea ./Core/Src/main.o + .debug_macro 0x0000000000016650 0x27 ./Core/Src/main.o + .debug_macro 0x0000000000016677 0x144 ./Core/Src/main.o + .debug_macro 0x00000000000167bb 0x1bc ./Core/Src/main.o + .debug_macro 0x0000000000016977 0x30 ./Core/Src/main.o + .debug_macro 0x00000000000169a7 0x3c ./Core/Src/main.o + .debug_macro 0x00000000000169e3 0x57 ./Core/Src/main.o + .debug_macro 0x0000000000016a3a 0x88 ./Core/Src/main.o + .debug_macro 0x0000000000016ac2 0x24f ./Core/Src/main.o + .debug_macro 0x0000000000016d11 0x356 ./Core/Src/main.o + .debug_macro 0x0000000000017067 0x287 ./Core/Src/main.o + .debug_macro 0x00000000000172ee 0x141 ./Core/Src/main.o + .debug_macro 0x000000000001742f 0x217 ./Core/Src/main.o + .debug_macro 0x0000000000017646 0x8d1 ./Core/Src/main.o + .debug_macro 0x0000000000017f17 0xb5 ./Core/Src/main.o + .debug_macro 0x0000000000017fcc 0x52 ./Core/Src/main.o + .debug_macro 0x000000000001801e 0x18 ./Core/Src/main.o + .debug_macro 0x0000000000018036 0x3c ./Core/Src/main.o + .debug_macro 0x0000000000018072 0x34 ./Core/Src/main.o + .debug_macro 0x00000000000180a6 0x16 ./Core/Src/main.o + .debug_macro 0x00000000000180bc 0x35 ./Core/Src/main.o + .debug_macro 0x00000000000180f1 0x333 ./Core/Src/main.o + .debug_macro 0x0000000000018424 0x10 ./Core/Src/main.o + .debug_macro 0x0000000000018434 0x16 ./Core/Src/main.o + .debug_macro 0x000000000001844a 0x43 ./Core/Src/main.o + .debug_macro 0x000000000001848d 0x34 ./Core/Src/main.o + .debug_macro 0x00000000000184c1 0x10 ./Core/Src/main.o + .debug_macro 0x00000000000184d1 0x58 ./Core/Src/main.o + .debug_macro 0x0000000000018529 0x71 ./Core/Src/main.o + .debug_macro 0x000000000001859a 0x1c ./Core/Src/main.o + .debug_macro 0x00000000000185b6 0x12a ./Core/Src/main.o + .debug_macro 0x00000000000186e0 0x10 ./Core/Src/main.o + .debug_macro 0x00000000000186f0 0x1c ./Core/Src/main.o + .debug_macro 0x000000000001870c 0x52 ./Core/Src/main.o + .debug_macro 0x000000000001875e 0x22 ./Core/Src/main.o + .debug_macro 0x0000000000018780 0x10 ./Core/Src/main.o + .debug_macro 0x0000000000018790 0x40 ./Core/Src/main.o + .debug_macro 0x00000000000187d0 0xd5 ./Core/Src/main.o + .debug_macro 0x00000000000188a5 0x1c ./Core/Src/main.o + .debug_macro 0x00000000000188c1 0x3d ./Core/Src/main.o + .debug_macro 0x00000000000188fe 0x16 ./Core/Src/main.o + .debug_macro 0x0000000000018914 0x145 ./Core/Src/main.o + .debug_macro 0x0000000000018a59 0xac ./Core/Src/main.o + .debug_macro 0x0000000000018b05 0x335 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000018e3a 0x33f ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000019179 0x24c ./Core/Src/syscalls.o + .debug_macro 0x00000000000193c5 0x4c ./Core/Src/syscalls.o + .debug_macro 0x0000000000019411 0x94 ./Core/Src/syscalls.o + .debug_macro 0x00000000000194a5 0x57 ./Core/Src/syscalls.o + .debug_macro 0x00000000000194fc 0x339 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019835 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019845 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019855 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019865 0x35 ./Core/Src/syscalls.o + .debug_macro 0x000000000001989a 0x12c ./Core/Src/syscalls.o + .debug_macro 0x00000000000199c6 0x16 ./Core/Src/syscalls.o + .debug_macro 0x00000000000199dc 0x16 ./Core/Src/syscalls.o + .debug_macro 0x00000000000199f2 0x29 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019a1b 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019a2b 0x241 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019c6c 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000019c88 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019c98 0x189 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019e21 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000019e37 0xce ./Core/Src/syscalls.o + .debug_macro 0x0000000000019f05 0xff ./Core/Src/sysmem.o + .debug_macro 0x000000000001a004 0x23b ./Core/Src/sysmem.o + .debug_macro 0x000000000001a23f 0x1c7 ./Core/Src/system_stm32f1xx.o + .debug_macro 0x000000000001a406 0x1eb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_macro 0x000000000001a5f1 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_macro 0x000000000001a7b8 0x232 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_macro 0x000000000001a9ea 0x20e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_macro 0x000000000001abf8 0x1d9 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_macro 0x000000000001add1 0x1cf ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_macro 0x000000000001afa0 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_macro 0x000000000001b167 0x1c8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_macro 0x000000000001b32f 0x1c7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_macro 0x000000000001b4f6 0x200 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_macro 0x000000000001b6f6 0x344 ./HW_Devices/LCD.o + .debug_macro 0x000000000001ba3a 0x38b ./HW_Devices/LCD.o + .debug_macro 0x000000000001bdc5 0x34f ./HW_Devices/eeprom.o + .debug_macro 0x000000000001c114 0x33f ./HW_Devices/iic.o + .debug_macro 0x000000000001c453 0x344 ./HW_Devices/rs522.o + .debug_macro 0x000000000001c797 0x244 ./HW_Devices/rs522.o + .debug_macro 0x000000000001c9db 0x374 ./HW_Devices/touch.o + .debug_macro 0x000000000001cd4f 0x22 ./HW_Devices/touch.o + .debug_macro 0x000000000001cd71 0x391 ./HW_Devices/touch.o + .debug_macro 0x000000000001d102 0x10 ./HW_Devices/touch.o + .debug_macro 0x000000000001d112 0x35b ./SW_APPs/APP_IDcard.o + .debug_macro 0x000000000001d46d 0x391 ./SW_APPs/APP_IDcard.o + .debug_macro 0x000000000001d7fe 0x24a ./SW_APPs/APP_IDcard.o + .debug_macro 0x000000000001da48 0x3a7 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001ddef 0x1a9 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001df98 0xbd ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001e055 0x56 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001e0ab 0x9a ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001e145 0x38a ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001e4cf 0x28 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001e4f7 0xa0 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001e597 0x366 ./SW_APPs/windows.o -.debug_line 0x0000000000000000 0x17e8e - .debug_line 0x0000000000000000 0x962 ./Core/Src/main.o - .debug_line 0x0000000000000962 0x879 ./Core/Src/stm32f1xx_hal_msp.o - .debug_line 0x00000000000011db 0x7cc ./Core/Src/stm32f1xx_it.o - .debug_line 0x00000000000019a7 0x83e ./Core/Src/syscalls.o - .debug_line 0x00000000000021e5 0x534 ./Core/Src/sysmem.o - .debug_line 0x0000000000002719 0x770 ./Core/Src/system_stm32f1xx.o - .debug_line 0x0000000000002e89 0x87 ./Core/Startup/startup_stm32f103zetx.o - .debug_line 0x0000000000002f10 0x99d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_line 0x00000000000038ad 0xb85 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_line 0x0000000000004432 0xa5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_line 0x0000000000004e8e 0x3a87 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_line 0x0000000000008915 0xdab ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_line 0x00000000000096c0 0x1c22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_line 0x000000000000b2e2 0xd10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_line 0x000000000000bff2 0x3564 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_line 0x000000000000f556 0x1929 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_line 0x0000000000010e7f 0x9fb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_line 0x000000000001187a 0x1109 ./HW_Devices/LCD.o - .debug_line 0x0000000000012983 0x7dd ./HW_Devices/eeprom.o - .debug_line 0x0000000000013160 0x704 ./HW_Devices/iic.o - .debug_line 0x0000000000013864 0xcdd ./HW_Devices/rs522.o - .debug_line 0x0000000000014541 0xb62 ./HW_Devices/touch.o - .debug_line 0x00000000000150a3 0x822 ./SW_APPs/APP_IDcard.o - .debug_line 0x00000000000158c5 0x11a6 ./SW_APPs/APP_blood.o - .debug_line 0x0000000000016a6b 0x7c4 ./SW_APPs/Main_APP.o - .debug_line 0x000000000001722f 0xc5f ./SW_APPs/windows.o +.debug_line 0x0000000000000000 0x19533 + .debug_line 0x0000000000000000 0xbf3 ./Core/Src/main.o + .debug_line 0x0000000000000bf3 0xa66 ./Core/Src/stm32f1xx_hal_msp.o + .debug_line 0x0000000000001659 0x9b9 ./Core/Src/stm32f1xx_it.o + .debug_line 0x0000000000002012 0x83e ./Core/Src/syscalls.o + .debug_line 0x0000000000002850 0x534 ./Core/Src/sysmem.o + .debug_line 0x0000000000002d84 0x770 ./Core/Src/system_stm32f1xx.o + .debug_line 0x00000000000034f4 0x87 ./Core/Startup/startup_stm32f103zetx.o + .debug_line 0x000000000000357b 0x99d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_line 0x0000000000003f18 0xb85 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_line 0x0000000000004a9d 0xa5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_line 0x00000000000054f9 0x3a87 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_line 0x0000000000008f80 0xdab ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_line 0x0000000000009d2b 0x1c22 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_line 0x000000000000b94d 0xd10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_line 0x000000000000c65d 0x3564 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_line 0x000000000000fbc1 0x1929 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_line 0x00000000000114ea 0x9fb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_line 0x0000000000011ee5 0x12f6 ./HW_Devices/LCD.o + .debug_line 0x00000000000131db 0x9ca ./HW_Devices/eeprom.o + .debug_line 0x0000000000013ba5 0x8f1 ./HW_Devices/iic.o + .debug_line 0x0000000000014496 0xeca ./HW_Devices/rs522.o + .debug_line 0x0000000000015360 0xd3e ./HW_Devices/touch.o + .debug_line 0x000000000001609e 0xa4d ./SW_APPs/APP_IDcard.o + .debug_line 0x0000000000016aeb 0x124b ./SW_APPs/APP_blood.o + .debug_line 0x0000000000017d36 0x9b1 ./SW_APPs/Main_APP.o + .debug_line 0x00000000000186e7 0xe4c ./SW_APPs/windows.o -.debug_str 0x0000000000000000 0xa0fd6 - .debug_str 0x0000000000000000 0x956ca ./Core/Src/main.o - 0x95c59 (size before relaxing) - .debug_str 0x00000000000956ca 0x41e ./Core/Src/stm32f1xx_hal_msp.o - 0x95e60 (size before relaxing) - .debug_str 0x0000000000095ae8 0xbd ./Core/Src/stm32f1xx_it.o - 0x9539e (size before relaxing) - .debug_str 0x0000000000095ba5 0x5782 ./Core/Src/syscalls.o +.debug_str 0x0000000000000000 0xa103e + .debug_str 0x0000000000000000 0x99770 ./Core/Src/main.o + 0x99daf (size before relaxing) + .debug_str 0x0000000000099770 0x41e ./Core/Src/stm32f1xx_hal_msp.o + 0x99f23 (size before relaxing) + .debug_str 0x0000000000099b8e 0xbd ./Core/Src/stm32f1xx_it.o + 0x99461 (size before relaxing) + .debug_str 0x0000000000099c4b 0x176a ./Core/Src/syscalls.o 0x8e87 (size before relaxing) - .debug_str 0x000000000009b327 0x6b ./Core/Src/sysmem.o + .debug_str 0x000000000009b3b5 0x6b ./Core/Src/sysmem.o 0x625a (size before relaxing) - .debug_str 0x000000000009b392 0x52 ./Core/Src/system_stm32f1xx.o + .debug_str 0x000000000009b420 0x52 ./Core/Src/system_stm32f1xx.o 0x94c46 (size before relaxing) - .debug_str 0x000000000009b3e4 0x36 ./Core/Startup/startup_stm32f103zetx.o + .debug_str 0x000000000009b472 0x36 ./Core/Startup/startup_stm32f103zetx.o 0x6e (size before relaxing) - .debug_str 0x000000000009b41a 0x2f5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_str 0x000000000009b4a8 0x2f5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o 0x953bb (size before relaxing) - .debug_str 0x000000000009b70f 0x300 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_str 0x000000000009b79d 0x2d8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o 0x953c3 (size before relaxing) - .debug_str 0x000000000009ba0f 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_str 0x000000000009ba75 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o 0x9500a (size before relaxing) - .debug_str 0x000000000009bd2e 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_str 0x000000000009bd94 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o 0x95c82 (size before relaxing) - .debug_str 0x000000000009c875 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_str 0x000000000009c8db 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o 0x95043 (size before relaxing) - .debug_str 0x000000000009cab9 0x52e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_str 0x000000000009cb1f 0x52e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o 0x95558 (size before relaxing) - .debug_str 0x000000000009cfe7 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_str 0x000000000009d04d 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o 0x9523c (size before relaxing) - .debug_str 0x000000000009d1de 0xe3e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_str 0x000000000009d244 0xe3e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o 0x96015 (size before relaxing) - .debug_str 0x000000000009e01c 0x4ee ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_str 0x000000000009e082 0x4ee ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o 0x957c6 (size before relaxing) - .debug_str 0x000000000009e50a 0x7ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_str 0x000000000009e570 0x7e5 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o 0x955dd (size before relaxing) - .debug_str 0x000000000009ecf9 0x814 ./HW_Devices/LCD.o - 0x9566b (size before relaxing) - .debug_str 0x000000000009f50d 0x127 ./HW_Devices/eeprom.o - 0x94f66 (size before relaxing) - .debug_str 0x000000000009f634 0x30 ./HW_Devices/iic.o - 0x952e3 (size before relaxing) - .debug_str 0x000000000009f664 0x7c3 ./HW_Devices/rs522.o - 0x959c4 (size before relaxing) - .debug_str 0x000000000009fe27 0x288 ./HW_Devices/touch.o - 0x9575a (size before relaxing) - .debug_str 0x00000000000a00af 0xb5 ./SW_APPs/APP_IDcard.o - 0x95b33 (size before relaxing) - .debug_str 0x00000000000a0164 0xcba ./SW_APPs/APP_blood.o - 0x99859 (size before relaxing) - .debug_str 0x00000000000a0e1e 0x98 ./SW_APPs/Main_APP.o - 0x95f1a (size before relaxing) - .debug_str 0x00000000000a0eb6 0x120 ./SW_APPs/windows.o - 0x957ab (size before relaxing) + .debug_str 0x000000000009ed55 0x814 ./HW_Devices/LCD.o + 0x9972e (size before relaxing) + .debug_str 0x000000000009f569 0x127 ./HW_Devices/eeprom.o + 0x99029 (size before relaxing) + .debug_str 0x000000000009f690 0x30 ./HW_Devices/iic.o + 0x993a6 (size before relaxing) + .debug_str 0x000000000009f6c0 0x7c3 ./HW_Devices/rs522.o + 0x99a87 (size before relaxing) + .debug_str 0x000000000009fe83 0x280 ./HW_Devices/touch.o + 0x99815 (size before relaxing) + .debug_str 0x00000000000a0103 0xc9 ./SW_APPs/APP_IDcard.o + 0x99c02 (size before relaxing) + .debug_str 0x00000000000a01cc 0xcba ./SW_APPs/APP_blood.o + 0x9a791 (size before relaxing) + .debug_str 0x00000000000a0e86 0x98 ./SW_APPs/Main_APP.o + 0x99fdd (size before relaxing) + .debug_str 0x00000000000a0f1e 0x120 ./SW_APPs/windows.o + 0x9986e (size before relaxing) .comment 0x0000000000000000 0x53 .comment 0x0000000000000000 0x53 ./Core/Src/main.o @@ -5730,83 +6402,87 @@ 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 0x63cc - .debug_frame 0x0000000000000000 0x10c ./Core/Src/main.o - .debug_frame 0x000000000000010c 0x198 ./Core/Src/stm32f1xx_hal_msp.o - .debug_frame 0x00000000000002a4 0x120 ./Core/Src/stm32f1xx_it.o - .debug_frame 0x00000000000003c4 0x2ac ./Core/Src/syscalls.o - .debug_frame 0x0000000000000670 0x34 ./Core/Src/sysmem.o - .debug_frame 0x00000000000006a4 0x58 ./Core/Src/system_stm32f1xx.o - .debug_frame 0x00000000000006fc 0x334 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_frame 0x0000000000000a30 0x428 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_frame 0x0000000000000e58 0x14c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_frame 0x0000000000000fa4 0xc5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_frame 0x0000000000001c00 0x21c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_frame 0x0000000000001e1c 0x824 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o - .debug_frame 0x0000000000002640 0x30c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_frame 0x000000000000294c 0x11bc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o - .debug_frame 0x0000000000003b08 0x638 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o - .debug_frame 0x0000000000004140 0x2dc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_frame 0x000000000000441c 0x33c ./HW_Devices/LCD.o - .debug_frame 0x0000000000004758 0x9c ./HW_Devices/eeprom.o - .debug_frame 0x00000000000047f4 0x58 ./HW_Devices/iic.o - .debug_frame 0x000000000000484c 0x2bc ./HW_Devices/rs522.o - .debug_frame 0x0000000000004b08 0x164 ./HW_Devices/touch.o - .debug_frame 0x0000000000004c6c 0x58 ./SW_APPs/APP_IDcard.o - .debug_frame 0x0000000000004cc4 0x260 ./SW_APPs/APP_blood.o - .debug_frame 0x0000000000004f24 0x30 ./SW_APPs/Main_APP.o - .debug_frame 0x0000000000004f54 0x1b0 ./SW_APPs/windows.o - .debug_frame 0x0000000000005104 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 0x0000000000005124 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 0x0000000000005150 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 0x0000000000005180 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 0x00000000000051a0 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 0x00000000000051d8 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 0x0000000000005208 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 0x000000000000529c 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 0x00000000000052fc 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 0x0000000000005328 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 0x0000000000005394 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 0x0000000000005400 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 0x0000000000005440 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 0x0000000000005468 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 0x0000000000005490 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 0x00000000000054c0 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 0x0000000000005714 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 0x0000000000005740 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 0x00000000000057d0 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 0x000000000000582c 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 0x000000000000586c 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 0x00000000000058d0 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 0x0000000000005918 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 0x00000000000059c8 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 0x0000000000005a10 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 0x0000000000005a38 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 0x0000000000005a74 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 0x0000000000005b20 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 0x0000000000005b60 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 0x0000000000005b9c 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 0x0000000000005bc8 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 0x0000000000005bf0 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 0x0000000000005c4c 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 0x0000000000005d98 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 0x0000000000005dec 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 0x0000000000005e44 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 0x0000000000005e64 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 0x0000000000005f30 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 0x0000000000005f6c 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 0x0000000000005ff4 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 0x0000000000006020 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 0x000000000000604c 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 0x0000000000006078 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 0x00000000000060a4 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 0x00000000000060d0 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 0x00000000000060fc 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 0x00000000000061a8 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 0x00000000000061f8 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 0x00000000000062bc 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 0x00000000000062dc 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 0x0000000000006300 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 0x0000000000006324 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 0x0000000000006370 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 0x00000000000063a8 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 0x6560 + .debug_frame 0x0000000000000000 0x158 ./Core/Src/main.o + .debug_frame 0x0000000000000158 0x198 ./Core/Src/stm32f1xx_hal_msp.o + .debug_frame 0x00000000000002f0 0x120 ./Core/Src/stm32f1xx_it.o + .debug_frame 0x0000000000000410 0x2ac ./Core/Src/syscalls.o + .debug_frame 0x00000000000006bc 0x34 ./Core/Src/sysmem.o + .debug_frame 0x00000000000006f0 0x58 ./Core/Src/system_stm32f1xx.o + .debug_frame 0x0000000000000748 0x334 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_frame 0x0000000000000a7c 0x428 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_frame 0x0000000000000ea4 0x14c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_frame 0x0000000000000ff0 0xc5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_frame 0x0000000000001c4c 0x21c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_frame 0x0000000000001e68 0x824 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_spi.o + .debug_frame 0x000000000000268c 0x30c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_frame 0x0000000000002998 0x11bc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.o + .debug_frame 0x0000000000003b54 0x638 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o + .debug_frame 0x000000000000418c 0x2dc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_frame 0x0000000000004468 0x33c ./HW_Devices/LCD.o + .debug_frame 0x00000000000047a4 0x9c ./HW_Devices/eeprom.o + .debug_frame 0x0000000000004840 0x58 ./HW_Devices/iic.o + .debug_frame 0x0000000000004898 0x2bc ./HW_Devices/rs522.o + .debug_frame 0x0000000000004b54 0x164 ./HW_Devices/touch.o + .debug_frame 0x0000000000004cb8 0x5c ./SW_APPs/APP_IDcard.o + .debug_frame 0x0000000000004d14 0x260 ./SW_APPs/APP_blood.o + .debug_frame 0x0000000000004f74 0x30 ./SW_APPs/Main_APP.o + .debug_frame 0x0000000000004fa4 0x1b0 ./SW_APPs/windows.o + .debug_frame 0x0000000000005154 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 0x0000000000005174 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 0x00000000000051a0 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 0x00000000000051d0 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 0x00000000000051f0 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 0x0000000000005228 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 0x0000000000005258 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 0x00000000000052ec 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 0x000000000000534c 0x74 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-printf.o) + .debug_frame 0x00000000000053c0 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-putchar.o) + .debug_frame 0x0000000000005418 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-puts.o) + .debug_frame 0x0000000000005454 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 0x0000000000005480 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 0x00000000000054ec 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 0x000000000000552c 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 0x0000000000005558 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 0x00000000000055c4 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 0x0000000000005620 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 0x000000000000576c 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 0x00000000000057c0 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 0x0000000000005800 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 0x00000000000058b0 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 0x0000000000005908 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 0x0000000000005930 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 0x0000000000005958 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 0x0000000000005988 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 0x0000000000005bdc 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 0x0000000000005c08 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 0x0000000000005c98 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 0x0000000000005d44 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-putc.o) + .debug_frame 0x0000000000005d80 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 0x0000000000005ddc 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 0x0000000000005e64 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 0x0000000000005e90 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 0x0000000000005ed0 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 0x0000000000005efc 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 0x0000000000005f60 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 0x0000000000005f8c 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 0x0000000000005fb8 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 0x0000000000006000 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 0x000000000000602c 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 0x0000000000006074 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 0x000000000000609c 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 0x00000000000060d8 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 0x0000000000006104 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 0x0000000000006140 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 0x0000000000006168 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 0x0000000000006188 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 0x0000000000006254 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 0x0000000000006290 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 0x000000000000633c 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 0x000000000000638c 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 0x0000000000006450 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 0x0000000000006470 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 0x0000000000006494 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 0x00000000000064b8 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 0x0000000000006504 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 0x000000000000653c 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_IDcard.c b/SW_APPs/APP_IDcard.c index 30bf439..d4c8443 100644 --- a/SW_APPs/APP_IDcard.c +++ b/SW_APPs/APP_IDcard.c @@ -19,20 +19,28 @@ unsigned char SN[4]; unsigned char RFID[16]; unsigned char status; unsigned char s=0x08; -char KEY[6]={0xff,0xff,0xff,0xff,0xff,0xff}; +char KEYA[6]={0,0,0,0,0,0}; +char KEYB[6]={0xff,0xff,0xff,0xff,0xff,0xff}; uint32_t card_number_D=0; -char fundcard,PA,sele,checkkey; +char fundcard,PA,sele,checkkey,read_flag; + +//通过debug返回卡片数据 void APP_IDcard_loop() { fundcard = PcdRequest(PICC_REQALL,CT); if(fundcard==MI_OK) { + status=MI_ERR; PA = PcdAnticoll(SN); if(PA==MI_OK) { + printf("\n***********************\n"); + printf("Card Type:%X%X\n",CT[0],CT[1]); + printf("CardId:%X%X%X%X\n",SN[0],SN[1],SN[2],SN[3]); + sprintf(idcard_str,"CardId:%X%X",CT[0],CT[1]); LCD_ShowString(idcard_window->x, idcard_window->y+16, idcard_str, 16, GREEN, RED); sprintf(idcard_str,"CardId:%X%X%X%X",SN[0],SN[1],SN[2],SN[3]); @@ -41,22 +49,34 @@ void APP_IDcard_loop() sele=PcdSelect(SN); if(sele==MI_OK) { - LCD_ShowString(idcard_window->x, idcard_window->y+48, "SELE OK", 16, GREEN, RED); - checkkey=MI_ERR; - checkkey=PcdAuthState(0x61,0,KEY,SN); - if(checkkey==MI_OK) - { - LCD_ShowString(idcard_window->x, idcard_window->y+48+16, "KEY OK", 16, GREEN, RED); - //PcdRead(0,RFID); - } - checkkey=MI_ERR; - checkkey=PcdAuthState(0x61,32,KEY,SN); - if(checkkey==MI_OK) - { - LCD_ShowString(idcard_window->x, idcard_window->y+48+32, "KEY OK", 16, GREEN, RED); - //PcdRead(0,RFID); - } + LCD_ShowString(idcard_window->x, idcard_window->y+48, "Key ok", 16, GREEN, RED); + for(int a=0;a<64;a++) + { + checkkey=PcdAuthState(0x61,a,KEYB,SN); + if(checkkey==MI_OK) + { + read_flag=PcdRead(a,RFID); + if(read_flag==MI_OK) + { + for(int d=0;d<16;d++) + { + printf("%02X",RFID[d]); + } + }else + { + printf("READ_ERROR"); + } + + }else + { + printf("KEY_ERROR"); + } + printf("\n"); + } + + + } } diff --git a/SW_APPs/Main_APP.c b/SW_APPs/Main_APP.c index 62faa46..7e445fa 100644 --- a/SW_APPs/Main_APP.c +++ b/SW_APPs/Main_APP.c @@ -18,6 +18,9 @@ extern touch_device t0; task run_loop;//主循环状态机 + + + void main_app() { char str[64]; diff --git a/m3s Debug.launch b/m3s Debug.launch index 4a61979..6d4ee25 100644 --- a/m3s Debug.launch +++ b/m3s Debug.launch @@ -2,7 +2,7 @@ - + @@ -16,7 +16,7 @@ - + @@ -39,6 +39,15 @@ + + + + + + + + + diff --git a/m3s.ioc b/m3s.ioc index 78d2408..7def448 100644 --- a/m3s.ioc +++ b/m3s.ioc @@ -47,21 +47,23 @@ Mcu.Pin32=PD9 Mcu.Pin33=PD10 Mcu.Pin34=PD14 Mcu.Pin35=PD15 -Mcu.Pin36=PD0 -Mcu.Pin37=PD1 -Mcu.Pin38=PD4 -Mcu.Pin39=PD5 +Mcu.Pin36=PA13 +Mcu.Pin37=PA14 +Mcu.Pin38=PD0 +Mcu.Pin39=PD1 Mcu.Pin4=PF9 -Mcu.Pin40=PG12 -Mcu.Pin41=VP_SYS_VS_ND -Mcu.Pin42=VP_SYS_VS_Systick -Mcu.Pin43=VP_TIM6_VS_ClockSourceINT +Mcu.Pin40=PD4 +Mcu.Pin41=PD5 +Mcu.Pin42=PG12 +Mcu.Pin43=PB3 +Mcu.Pin44=VP_SYS_VS_Systick +Mcu.Pin45=VP_TIM6_VS_ClockSourceINT Mcu.Pin5=PF10 Mcu.Pin6=OSC_IN Mcu.Pin7=OSC_OUT Mcu.Pin8=PA0-WKUP Mcu.Pin9=PA4 -Mcu.PinsNb=44 +Mcu.PinsNb=46 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F103ZETx @@ -87,6 +89,10 @@ PA0-WKUP.GPIOParameters=GPIO_Label PA0-WKUP.GPIO_Label=KEY0 PA0-WKUP.Locked=true PA0-WKUP.Signal=GPIO_Input +PA13.Mode=Trace_Asynchronous_SW +PA13.Signal=SYS_JTMS-SWDIO +PA14.Mode=Trace_Asynchronous_SW +PA14.Signal=SYS_JTCK-SWCLK PA4.GPIOParameters=GPIO_Label PA4.GPIO_Label=RC522_CS PA4.Locked=true @@ -136,6 +142,8 @@ PB2.GPIO_Speed=GPIO_SPEED_FREQ_HIGH PB2.Locked=true PB2.PinState=GPIO_PIN_SET PB2.Signal=GPIO_Output +PB3.Mode=Trace_Asynchronous_SW +PB3.Signal=SYS_JTDO-TRACESWO PD0.Signal=FSMC_D2_DA2 PD1.Signal=FSMC_D3_DA3 PD10.Signal=FSMC_D15_DA15 @@ -289,8 +297,6 @@ SPI1.VirtualType=VM_MASTER 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