diff --git a/access_control_stm32/Core/Inc/main.h b/access_control_stm32/Core/Inc/main.h index 131b0ea..a5e7476 100644 --- a/access_control_stm32/Core/Inc/main.h +++ b/access_control_stm32/Core/Inc/main.h @@ -59,6 +59,8 @@ void Error_Handler(void); /* Private defines -----------------------------------------------------------*/ #define B1_Pin GPIO_PIN_13 #define B1_GPIO_Port GPIOC +#define ALARM_Pin GPIO_PIN_0 +#define ALARM_GPIO_Port GPIOC #define USART_TX_Pin GPIO_PIN_2 #define USART_TX_GPIO_Port GPIOA #define USART_RX_Pin GPIO_PIN_3 diff --git a/access_control_stm32/Core/Src/main.c b/access_control_stm32/Core/Src/main.c index 250bb05..d08191d 100644 --- a/access_control_stm32/Core/Src/main.c +++ b/access_control_stm32/Core/Src/main.c @@ -362,6 +362,9 @@ static void MX_GPIO_Init(void) __HAL_RCC_GPIOA_CLK_ENABLE(); __HAL_RCC_GPIOB_CLK_ENABLE(); + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(ALARM_GPIO_Port, ALARM_Pin, GPIO_PIN_RESET); + /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOA, LD2_Pin|Door_Lock_Pin, GPIO_PIN_RESET); @@ -371,6 +374,13 @@ static void MX_GPIO_Init(void) GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pin : ALARM_Pin */ + GPIO_InitStruct.Pin = ALARM_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(ALARM_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ GPIO_InitStruct.Pin = LD2_Pin|Door_Lock_Pin; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; @@ -455,11 +465,13 @@ void startDoorHandleTask(void *argument) { /* USER CODE BEGIN startDoorHandleTask */ /* Infinite loop */ + HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); for (;;) { - door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); + door_state = !HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); if (door_lock_state != door_lock_state_command) { if (door_lock_state_command == DOOR_LOCK_LOCKED) { if (door_state == DOOR_STATE_CLOSED) { + osDelay(500); HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); door_lock_state = DOOR_LOCK_LOCKED; door_lock_waiting = false; diff --git a/access_control_stm32/Debug/Core/Src/freertos.o b/access_control_stm32/Debug/Core/Src/freertos.o index 01c6870..08a055f 100644 Binary files a/access_control_stm32/Debug/Core/Src/freertos.o and b/access_control_stm32/Debug/Core/Src/freertos.o differ diff --git a/access_control_stm32/Debug/Core/Src/main.cyclo b/access_control_stm32/Debug/Core/Src/main.cyclo index d901855..aefb0cc 100644 --- a/access_control_stm32/Debug/Core/Src/main.cyclo +++ b/access_control_stm32/Debug/Core/Src/main.cyclo @@ -4,9 +4,9 @@ ../Core/Src/main.c:268:13:MX_ADC1_Init 3 ../Core/Src/main.c:320:13:MX_USART2_UART_Init 2 ../Core/Src/main.c:353:13:MX_GPIO_Init 1 -../Core/Src/main.c:402:6:StartMainTask 9 -../Core/Src/main.c:454:6:startDoorHandleTask 14 -../Core/Src/main.c:514:6:StartStateSendTask 1 -../Core/Src/main.c:535:6:StartADCReqTask 1 -../Core/Src/main.c:555:6:HAL_TIM_PeriodElapsedCallback 2 -../Core/Src/main.c:572:6:Error_Handler 1 +../Core/Src/main.c:412:6:StartMainTask 9 +../Core/Src/main.c:464:6:startDoorHandleTask 14 +../Core/Src/main.c:526:6:StartStateSendTask 1 +../Core/Src/main.c:547:6:StartADCReqTask 1 +../Core/Src/main.c:567:6:HAL_TIM_PeriodElapsedCallback 2 +../Core/Src/main.c:584:6:Error_Handler 1 diff --git a/access_control_stm32/Debug/Core/Src/main.o b/access_control_stm32/Debug/Core/Src/main.o index d6d6242..7a5ef7c 100644 Binary files a/access_control_stm32/Debug/Core/Src/main.o and b/access_control_stm32/Debug/Core/Src/main.o differ diff --git a/access_control_stm32/Debug/Core/Src/main.su b/access_control_stm32/Debug/Core/Src/main.su index ae04708..48b9e76 100644 --- a/access_control_stm32/Debug/Core/Src/main.su +++ b/access_control_stm32/Debug/Core/Src/main.su @@ -4,9 +4,9 @@ ../Core/Src/main.c:268:13:MX_ADC1_Init 24 static ../Core/Src/main.c:320:13:MX_USART2_UART_Init 8 static ../Core/Src/main.c:353:13:MX_GPIO_Init 48 static -../Core/Src/main.c:402:6:StartMainTask 24 static -../Core/Src/main.c:454:6:startDoorHandleTask 16 static -../Core/Src/main.c:514:6:StartStateSendTask 24 static -../Core/Src/main.c:535:6:StartADCReqTask 16 static -../Core/Src/main.c:555:6:HAL_TIM_PeriodElapsedCallback 16 static -../Core/Src/main.c:572:6:Error_Handler 4 static,ignoring_inline_asm +../Core/Src/main.c:412:6:StartMainTask 24 static +../Core/Src/main.c:464:6:startDoorHandleTask 16 static +../Core/Src/main.c:526:6:StartStateSendTask 24 static +../Core/Src/main.c:547:6:StartADCReqTask 16 static +../Core/Src/main.c:567:6:HAL_TIM_PeriodElapsedCallback 16 static +../Core/Src/main.c:584:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/access_control_stm32/Debug/Core/Src/stm32f4xx_hal_msp.o b/access_control_stm32/Debug/Core/Src/stm32f4xx_hal_msp.o index 3e852fc..c0c9843 100644 Binary files a/access_control_stm32/Debug/Core/Src/stm32f4xx_hal_msp.o and b/access_control_stm32/Debug/Core/Src/stm32f4xx_hal_msp.o differ diff --git a/access_control_stm32/Debug/Core/Src/stm32f4xx_it.o b/access_control_stm32/Debug/Core/Src/stm32f4xx_it.o index b7ba8b3..23cb107 100644 Binary files a/access_control_stm32/Debug/Core/Src/stm32f4xx_it.o and b/access_control_stm32/Debug/Core/Src/stm32f4xx_it.o differ diff --git a/access_control_stm32/Debug/access_control_stm32.elf b/access_control_stm32/Debug/access_control_stm32.elf index cdba186..1fd3771 100644 Binary files a/access_control_stm32/Debug/access_control_stm32.elf and b/access_control_stm32/Debug/access_control_stm32.elf differ diff --git a/access_control_stm32/Debug/access_control_stm32.list b/access_control_stm32/Debug/access_control_stm32.list index d074e91..beb431b 100644 --- a/access_control_stm32/Debug/access_control_stm32.list +++ b/access_control_stm32/Debug/access_control_stm32.list @@ -5,25 +5,25 @@ Sections: Idx Name Size VMA LMA File off Algn 0 .isr_vector 00000198 08000000 08000000 00010000 2**0 CONTENTS, ALLOC, LOAD, READONLY, DATA - 1 .text 000060a8 080001a0 080001a0 000101a0 2**4 + 1 .text 000060d8 080001a0 080001a0 000101a0 2**4 CONTENTS, ALLOC, LOAD, READONLY, CODE - 2 .rodata 000000f4 08006248 08006248 00016248 2**2 + 2 .rodata 000000f4 08006278 08006278 00016278 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 3 .ARM.extab 00000000 0800633c 0800633c 00020060 2**0 + 3 .ARM.extab 00000000 0800636c 0800636c 00020060 2**0 CONTENTS - 4 .ARM 00000008 0800633c 0800633c 0001633c 2**2 + 4 .ARM 00000008 0800636c 0800636c 0001636c 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 5 .preinit_array 00000000 08006344 08006344 00020060 2**0 + 5 .preinit_array 00000000 08006374 08006374 00020060 2**0 CONTENTS, ALLOC, LOAD, DATA - 6 .init_array 00000004 08006344 08006344 00016344 2**2 + 6 .init_array 00000004 08006374 08006374 00016374 2**2 CONTENTS, ALLOC, LOAD, DATA - 7 .fini_array 00000004 08006348 08006348 00016348 2**2 + 7 .fini_array 00000004 08006378 08006378 00016378 2**2 CONTENTS, ALLOC, LOAD, DATA - 8 .data 00000060 20000000 0800634c 00020000 2**2 + 8 .data 00000060 20000000 0800637c 00020000 2**2 CONTENTS, ALLOC, LOAD, DATA - 9 .bss 00004c44 20000060 080063ac 00020060 2**2 + 9 .bss 00004c44 20000060 080063dc 00020060 2**2 ALLOC - 10 ._user_heap_stack 00003004 20004ca4 080063ac 00024ca4 2**0 + 10 ._user_heap_stack 00003004 20004ca4 080063dc 00024ca4 2**0 ALLOC 11 .ARM.attributes 00000030 00000000 00000000 00020060 2**0 CONTENTS, READONLY @@ -39,13 +39,13 @@ Idx Name Size VMA LMA File off Algn CONTENTS, READONLY, DEBUGGING, OCTETS 17 .debug_macro 00003b4c 00000000 00000000 0003f48a 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 18 .debug_line 00017e68 00000000 00000000 00042fd6 2**0 + 18 .debug_line 00017e7d 00000000 00000000 00042fd6 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 19 .debug_str 000a457b 00000000 00000000 0005ae3e 2**0 + 19 .debug_str 000a45a6 00000000 00000000 0005ae53 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 20 .debug_frame 00005cd8 00000000 00000000 000ff3bc 2**2 + 20 .debug_frame 00005cd8 00000000 00000000 000ff3fc 2**2 CONTENTS, READONLY, DEBUGGING, OCTETS - 21 .debug_line_str 00000059 00000000 00000000 00105094 2**0 + 21 .debug_line_str 00000059 00000000 00000000 001050d4 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS Disassembly of section .text: @@ -64,7 +64,7 @@ Disassembly of section .text: 80001b6: bd10 pop {r4, pc} 80001b8: 20000060 .word 0x20000060 80001bc: 00000000 .word 0x00000000 - 80001c0: 08006230 .word 0x08006230 + 80001c0: 08006260 .word 0x08006260 080001c4 : 80001c4: b508 push {r3, lr} @@ -76,7 +76,7 @@ Disassembly of section .text: 80001d2: bd08 pop {r3, pc} 80001d4: 00000000 .word 0x00000000 80001d8: 20000064 .word 0x20000064 - 80001dc: 08006230 .word 0x08006230 + 80001dc: 08006260 .word 0x08006260 080001e0 <__aeabi_uldivmod>: 80001e0: b953 cbnz r3, 80001f8 <__aeabi_uldivmod+0x18> @@ -364,7 +364,7 @@ void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *hadc) { 80004e2: 6078 str r0, [r7, #4] adc_val = HAL_ADC_GetValue(&hadc1); 80004e4: 480a ldr r0, [pc, #40] ; (8000510 ) - 80004e6: f000 ff57 bl 8001398 + 80004e6: f000 ff75 bl 80013d4 80004ea: 4603 mov r3, r0 80004ec: b29a uxth r2, r3 80004ee: 4b09 ldr r3, [pc, #36] ; (8000514 ) @@ -404,7 +404,7 @@ int main(void) /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 8000520: f000 fce6 bl 8000ef0 + 8000520: f000 fd04 bl 8000f2c /* USER CODE BEGIN Init */ /* USER CODE END Init */ @@ -428,12 +428,12 @@ int main(void) 8000534: 220a movs r2, #10 8000536: 2100 movs r1, #0 8000538: 4813 ldr r0, [pc, #76] ; (8000588 ) - 800053a: f005 fd8f bl 800605c + 800053a: f005 fda7 bl 800608c /* USER CODE END 2 */ /* Init scheduler */ osKernelInitialize(); - 800053e: f003 f80f bl 8003560 + 800053e: f003 f82d bl 800359c /* add queues, ... */ /* USER CODE END RTOS_QUEUES */ @@ -443,7 +443,7 @@ int main(void) 8000542: 4a12 ldr r2, [pc, #72] ; (800058c ) 8000544: 2100 movs r1, #0 8000546: 4812 ldr r0, [pc, #72] ; (8000590 ) - 8000548: f003 f854 bl 80035f4 + 8000548: f003 f872 bl 8003630 800054c: 4603 mov r3, r0 800054e: 4a11 ldr r2, [pc, #68] ; (8000594 ) 8000550: 6013 str r3, [r2, #0] @@ -453,7 +453,7 @@ int main(void) 8000552: 4a11 ldr r2, [pc, #68] ; (8000598 ) 8000554: 2100 movs r1, #0 8000556: 4811 ldr r0, [pc, #68] ; (800059c ) - 8000558: f003 f84c bl 80035f4 + 8000558: f003 f86a bl 8003630 800055c: 4603 mov r3, r0 800055e: 4a10 ldr r2, [pc, #64] ; (80005a0 ) 8000560: 6013 str r3, [r2, #0] @@ -463,7 +463,7 @@ int main(void) 8000562: 4a10 ldr r2, [pc, #64] ; (80005a4 ) 8000564: 2100 movs r1, #0 8000566: 4810 ldr r0, [pc, #64] ; (80005a8 ) - 8000568: f003 f844 bl 80035f4 + 8000568: f003 f862 bl 8003630 800056c: 4603 mov r3, r0 800056e: 4a0f ldr r2, [pc, #60] ; (80005ac ) 8000570: 6013 str r3, [r2, #0] @@ -473,7 +473,7 @@ int main(void) 8000572: 4a0f ldr r2, [pc, #60] ; (80005b0 ) 8000574: 2100 movs r1, #0 8000576: 480f ldr r0, [pc, #60] ; (80005b4 ) - 8000578: f003 f83c bl 80035f4 + 8000578: f003 f85a bl 8003630 800057c: 4603 mov r3, r0 800057e: 4a0e ldr r2, [pc, #56] ; (80005b8 ) 8000580: 6013 str r3, [r2, #0] @@ -483,7 +483,7 @@ int main(void) /* Start scheduler */ osKernelStart(); - 8000582: f003 f811 bl 80035a8 + 8000582: f003 f82f bl 80035e4 /* We should never get here as control is now taken by the scheduler */ /* Infinite loop */ @@ -491,17 +491,17 @@ int main(void) while (1) { 8000586: e7fe b.n 8000586 8000588: 20000118 .word 0x20000118 - 800058c: 08006294 .word 0x08006294 - 8000590: 08000881 .word 0x08000881 + 800058c: 080062c4 .word 0x080062c4 + 8000590: 080008a9 .word 0x080008a9 8000594: 20000108 .word 0x20000108 - 8000598: 080062b8 .word 0x080062b8 - 800059c: 080009a1 .word 0x080009a1 + 8000598: 080062e8 .word 0x080062e8 + 800059c: 080009c9 .word 0x080009c9 80005a0: 2000010c .word 0x2000010c - 80005a4: 080062dc .word 0x080062dc - 80005a8: 08000b1d .word 0x08000b1d + 80005a4: 0800630c .word 0x0800630c + 80005a8: 08000b59 .word 0x08000b59 80005ac: 20000110 .word 0x20000110 - 80005b0: 08006300 .word 0x08006300 - 80005b4: 08000b75 .word 0x08000b75 + 80005b0: 08006330 .word 0x08006330 + 80005b4: 08000bb1 .word 0x08000bb1 80005b8: 20000114 .word 0x20000114 080005bc : @@ -519,7 +519,7 @@ void SystemClock_Config(void) 80005c6: 2230 movs r2, #48 ; 0x30 80005c8: 2100 movs r1, #0 80005ca: 4618 mov r0, r3 - 80005cc: f005 fd46 bl 800605c + 80005cc: f005 fd5e bl 800608c RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; 80005d0: f107 030c add.w r3, r7, #12 80005d4: 2200 movs r2, #0 @@ -591,13 +591,13 @@ void SystemClock_Config(void) if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) 800063e: f107 0320 add.w r3, r7, #32 8000642: 4618 mov r0, r3 - 8000644: f001 fb9a bl 8001d7c + 8000644: f001 fbb8 bl 8001db8 8000648: 4603 mov r3, r0 800064a: 2b00 cmp r3, #0 800064c: d001 beq.n 8000652 { Error_Handler(); - 800064e: f000 fab1 bl 8000bb4 + 800064e: f000 facf bl 8000bf0 } /** Initializes the CPU, AHB and APB buses clocks @@ -623,13 +623,13 @@ void SystemClock_Config(void) 8000668: f107 030c add.w r3, r7, #12 800066c: 2102 movs r1, #2 800066e: 4618 mov r0, r3 - 8000670: f001 fdfc bl 800226c + 8000670: f001 fe1a bl 80022a8 8000674: 4603 mov r3, r0 8000676: 2b00 cmp r3, #0 8000678: d001 beq.n 800067e { Error_Handler(); - 800067a: f000 fa9b bl 8000bb4 + 800067a: f000 fab9 bl 8000bf0 } } 800067e: bf00 nop @@ -717,13 +717,13 @@ static void MX_ADC1_Init(void) 80006ee: 615a str r2, [r3, #20] if (HAL_ADC_Init(&hadc1) != HAL_OK) 80006f0: 480d ldr r0, [pc, #52] ; (8000728 ) - 80006f2: f000 fc3f bl 8000f74 + 80006f2: f000 fc5d bl 8000fb0 80006f6: 4603 mov r3, r0 80006f8: 2b00 cmp r3, #0 80006fa: d001 beq.n 8000700 { Error_Handler(); - 80006fc: f000 fa5a bl 8000bb4 + 80006fc: f000 fa78 bl 8000bf0 } /** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time. @@ -741,13 +741,13 @@ static void MX_ADC1_Init(void) 800070c: 463b mov r3, r7 800070e: 4619 mov r1, r3 8000710: 4805 ldr r0, [pc, #20] ; (8000728 ) - 8000712: f000 fe63 bl 80013dc + 8000712: f000 fe81 bl 8001418 8000716: 4603 mov r3, r0 8000718: 2b00 cmp r3, #0 800071a: d001 beq.n 8000720 { Error_Handler(); - 800071c: f000 fa4a bl 8000bb4 + 800071c: f000 fa68 bl 8000bf0 } /* USER CODE BEGIN ADC1_Init 2 */ @@ -810,13 +810,13 @@ static void MX_USART2_UART_Init(void) 8000768: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart2) != HAL_OK) 800076a: 4805 ldr r0, [pc, #20] ; (8000780 ) - 800076c: f002 fa50 bl 8002c10 + 800076c: f002 fa6e bl 8002c4c 8000770: 4603 mov r3, r0 8000772: 2b00 cmp r3, #0 8000774: d001 beq.n 800077a { Error_Handler(); - 8000776: f000 fa1d bl 8000bb4 + 8000776: f000 fa3b bl 8000bf0 } /* USER CODE BEGIN USART2_Init 2 */ @@ -854,12 +854,12 @@ static void MX_GPIO_Init(void) __HAL_RCC_GPIOC_CLK_ENABLE(); 800079e: 2300 movs r3, #0 80007a0: 613b str r3, [r7, #16] - 80007a2: 4b34 ldr r3, [pc, #208] ; (8000874 ) + 80007a2: 4b3e ldr r3, [pc, #248] ; (800089c ) 80007a4: 6b1b ldr r3, [r3, #48] ; 0x30 - 80007a6: 4a33 ldr r2, [pc, #204] ; (8000874 ) + 80007a6: 4a3d ldr r2, [pc, #244] ; (800089c ) 80007a8: f043 0304 orr.w r3, r3, #4 80007ac: 6313 str r3, [r2, #48] ; 0x30 - 80007ae: 4b31 ldr r3, [pc, #196] ; (8000874 ) + 80007ae: 4b3b ldr r3, [pc, #236] ; (800089c ) 80007b0: 6b1b ldr r3, [r3, #48] ; 0x30 80007b2: f003 0304 and.w r3, r3, #4 80007b6: 613b str r3, [r7, #16] @@ -867,12 +867,12 @@ static void MX_GPIO_Init(void) __HAL_RCC_GPIOH_CLK_ENABLE(); 80007ba: 2300 movs r3, #0 80007bc: 60fb str r3, [r7, #12] - 80007be: 4b2d ldr r3, [pc, #180] ; (8000874 ) + 80007be: 4b37 ldr r3, [pc, #220] ; (800089c ) 80007c0: 6b1b ldr r3, [r3, #48] ; 0x30 - 80007c2: 4a2c ldr r2, [pc, #176] ; (8000874 ) + 80007c2: 4a36 ldr r2, [pc, #216] ; (800089c ) 80007c4: f043 0380 orr.w r3, r3, #128 ; 0x80 80007c8: 6313 str r3, [r2, #48] ; 0x30 - 80007ca: 4b2a ldr r3, [pc, #168] ; (8000874 ) + 80007ca: 4b34 ldr r3, [pc, #208] ; (800089c ) 80007cc: 6b1b ldr r3, [r3, #48] ; 0x30 80007ce: f003 0380 and.w r3, r3, #128 ; 0x80 80007d2: 60fb str r3, [r7, #12] @@ -880,12 +880,12 @@ static void MX_GPIO_Init(void) __HAL_RCC_GPIOA_CLK_ENABLE(); 80007d6: 2300 movs r3, #0 80007d8: 60bb str r3, [r7, #8] - 80007da: 4b26 ldr r3, [pc, #152] ; (8000874 ) + 80007da: 4b30 ldr r3, [pc, #192] ; (800089c ) 80007dc: 6b1b ldr r3, [r3, #48] ; 0x30 - 80007de: 4a25 ldr r2, [pc, #148] ; (8000874 ) + 80007de: 4a2f ldr r2, [pc, #188] ; (800089c ) 80007e0: f043 0301 orr.w r3, r3, #1 80007e4: 6313 str r3, [r2, #48] ; 0x30 - 80007e6: 4b23 ldr r3, [pc, #140] ; (8000874 ) + 80007e6: 4b2d ldr r3, [pc, #180] ; (800089c ) 80007e8: 6b1b ldr r3, [r3, #48] ; 0x30 80007ea: f003 0301 and.w r3, r3, #1 80007ee: 60bb str r3, [r7, #8] @@ -893,6236 +893,6202 @@ static void MX_GPIO_Init(void) __HAL_RCC_GPIOB_CLK_ENABLE(); 80007f2: 2300 movs r3, #0 80007f4: 607b str r3, [r7, #4] - 80007f6: 4b1f ldr r3, [pc, #124] ; (8000874 ) + 80007f6: 4b29 ldr r3, [pc, #164] ; (800089c ) 80007f8: 6b1b ldr r3, [r3, #48] ; 0x30 - 80007fa: 4a1e ldr r2, [pc, #120] ; (8000874 ) + 80007fa: 4a28 ldr r2, [pc, #160] ; (800089c ) 80007fc: f043 0302 orr.w r3, r3, #2 8000800: 6313 str r3, [r2, #48] ; 0x30 - 8000802: 4b1c ldr r3, [pc, #112] ; (8000874 ) + 8000802: 4b26 ldr r3, [pc, #152] ; (800089c ) 8000804: 6b1b ldr r3, [r3, #48] ; 0x30 8000806: f003 0302 and.w r3, r3, #2 800080a: 607b str r3, [r7, #4] 800080c: 687b ldr r3, [r7, #4] /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOA, LD2_Pin|Door_Lock_Pin, GPIO_PIN_RESET); + HAL_GPIO_WritePin(ALARM_GPIO_Port, ALARM_Pin, GPIO_PIN_RESET); 800080e: 2200 movs r2, #0 - 8000810: f44f 7108 mov.w r1, #544 ; 0x220 - 8000814: 4818 ldr r0, [pc, #96] ; (8000878 ) - 8000816: f001 fa97 bl 8001d48 + 8000810: 2101 movs r1, #1 + 8000812: 4823 ldr r0, [pc, #140] ; (80008a0 ) + 8000814: f001 fab6 bl 8001d84 + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(GPIOA, LD2_Pin|Door_Lock_Pin, GPIO_PIN_RESET); + 8000818: 2200 movs r2, #0 + 800081a: f44f 7108 mov.w r1, #544 ; 0x220 + 800081e: 4821 ldr r0, [pc, #132] ; (80008a4 ) + 8000820: f001 fab0 bl 8001d84 /*Configure GPIO pin : B1_Pin */ GPIO_InitStruct.Pin = B1_Pin; - 800081a: f44f 5300 mov.w r3, #8192 ; 0x2000 - 800081e: 617b str r3, [r7, #20] + 8000824: f44f 5300 mov.w r3, #8192 ; 0x2000 + 8000828: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; - 8000820: f44f 1304 mov.w r3, #2162688 ; 0x210000 - 8000824: 61bb str r3, [r7, #24] + 800082a: f44f 1304 mov.w r3, #2162688 ; 0x210000 + 800082e: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8000826: 2300 movs r3, #0 - 8000828: 61fb str r3, [r7, #28] + 8000830: 2300 movs r3, #0 + 8000832: 61fb str r3, [r7, #28] HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); - 800082a: f107 0314 add.w r3, r7, #20 - 800082e: 4619 mov r1, r3 - 8000830: 4812 ldr r0, [pc, #72] ; (800087c ) - 8000832: f001 f8ed bl 8001a10 + 8000834: f107 0314 add.w r3, r7, #20 + 8000838: 4619 mov r1, r3 + 800083a: 4819 ldr r0, [pc, #100] ; (80008a0 ) + 800083c: f001 f906 bl 8001a4c + + /*Configure GPIO pin : ALARM_Pin */ + GPIO_InitStruct.Pin = ALARM_Pin; + 8000840: 2301 movs r3, #1 + 8000842: 617b str r3, [r7, #20] + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + 8000844: 2301 movs r3, #1 + 8000846: 61bb str r3, [r7, #24] + GPIO_InitStruct.Pull = GPIO_NOPULL; + 8000848: 2300 movs r3, #0 + 800084a: 61fb str r3, [r7, #28] + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + 800084c: 2300 movs r3, #0 + 800084e: 623b str r3, [r7, #32] + HAL_GPIO_Init(ALARM_GPIO_Port, &GPIO_InitStruct); + 8000850: f107 0314 add.w r3, r7, #20 + 8000854: 4619 mov r1, r3 + 8000856: 4812 ldr r0, [pc, #72] ; (80008a0 ) + 8000858: f001 f8f8 bl 8001a4c /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ GPIO_InitStruct.Pin = LD2_Pin|Door_Lock_Pin; - 8000836: f44f 7308 mov.w r3, #544 ; 0x220 - 800083a: 617b str r3, [r7, #20] + 800085c: f44f 7308 mov.w r3, #544 ; 0x220 + 8000860: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 800083c: 2301 movs r3, #1 - 800083e: 61bb str r3, [r7, #24] + 8000862: 2301 movs r3, #1 + 8000864: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8000840: 2300 movs r3, #0 - 8000842: 61fb str r3, [r7, #28] + 8000866: 2300 movs r3, #0 + 8000868: 61fb str r3, [r7, #28] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 8000844: 2300 movs r3, #0 - 8000846: 623b str r3, [r7, #32] + 800086a: 2300 movs r3, #0 + 800086c: 623b str r3, [r7, #32] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000848: f107 0314 add.w r3, r7, #20 - 800084c: 4619 mov r1, r3 - 800084e: 480a ldr r0, [pc, #40] ; (8000878 ) - 8000850: f001 f8de bl 8001a10 + 800086e: f107 0314 add.w r3, r7, #20 + 8000872: 4619 mov r1, r3 + 8000874: 480b ldr r0, [pc, #44] ; (80008a4 ) + 8000876: f001 f8e9 bl 8001a4c /*Configure GPIO pin : Door_Sensor_Pin */ GPIO_InitStruct.Pin = Door_Sensor_Pin; - 8000854: 2380 movs r3, #128 ; 0x80 - 8000856: 617b str r3, [r7, #20] + 800087a: 2380 movs r3, #128 ; 0x80 + 800087c: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 8000858: 2300 movs r3, #0 - 800085a: 61bb str r3, [r7, #24] + 800087e: 2300 movs r3, #0 + 8000880: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_PULLUP; - 800085c: 2301 movs r3, #1 - 800085e: 61fb str r3, [r7, #28] + 8000882: 2301 movs r3, #1 + 8000884: 61fb str r3, [r7, #28] HAL_GPIO_Init(Door_Sensor_GPIO_Port, &GPIO_InitStruct); - 8000860: f107 0314 add.w r3, r7, #20 - 8000864: 4619 mov r1, r3 - 8000866: 4804 ldr r0, [pc, #16] ; (8000878 ) - 8000868: f001 f8d2 bl 8001a10 + 8000886: f107 0314 add.w r3, r7, #20 + 800088a: 4619 mov r1, r3 + 800088c: 4805 ldr r0, [pc, #20] ; (80008a4 ) + 800088e: f001 f8dd bl 8001a4c /* USER CODE BEGIN MX_GPIO_Init_2 */ /* USER CODE END MX_GPIO_Init_2 */ } - 800086c: bf00 nop - 800086e: 3728 adds r7, #40 ; 0x28 - 8000870: 46bd mov sp, r7 - 8000872: bd80 pop {r7, pc} - 8000874: 40023800 .word 0x40023800 - 8000878: 40020000 .word 0x40020000 - 800087c: 40020800 .word 0x40020800 + 8000892: bf00 nop + 8000894: 3728 adds r7, #40 ; 0x28 + 8000896: 46bd mov sp, r7 + 8000898: bd80 pop {r7, pc} + 800089a: bf00 nop + 800089c: 40023800 .word 0x40023800 + 80008a0: 40020800 .word 0x40020800 + 80008a4: 40020000 .word 0x40020000 -08000880 : +080008a8 : * @param argument: Not used * @retval None */ /* USER CODE END Header_StartMainTask */ void StartMainTask(void *argument) { - 8000880: b580 push {r7, lr} - 8000882: b084 sub sp, #16 - 8000884: af00 add r7, sp, #0 - 8000886: 6078 str r0, [r7, #4] + 80008a8: b580 push {r7, lr} + 80008aa: b084 sub sp, #16 + 80008ac: af00 add r7, sp, #0 + 80008ae: 6078 str r0, [r7, #4] /* USER CODE BEGIN 5 */ memset(uart_buffer, 0, 10); - 8000888: 220a movs r2, #10 - 800088a: 2100 movs r1, #0 - 800088c: 483d ldr r0, [pc, #244] ; (8000984 ) - 800088e: f005 fbe5 bl 800605c + 80008b0: 220a movs r2, #10 + 80008b2: 2100 movs r1, #0 + 80008b4: 483d ldr r0, [pc, #244] ; (80009ac ) + 80008b6: f005 fbe9 bl 800608c /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { if (HAL_UART_Receive(&huart2, uart_buffer + uart_index, 1, 100) - 8000892: 4b3d ldr r3, [pc, #244] ; (8000988 ) - 8000894: 781b ldrb r3, [r3, #0] - 8000896: 461a mov r2, r3 - 8000898: 4b3a ldr r3, [pc, #232] ; (8000984 ) - 800089a: 18d1 adds r1, r2, r3 - 800089c: 2364 movs r3, #100 ; 0x64 - 800089e: 2201 movs r2, #1 - 80008a0: 483a ldr r0, [pc, #232] ; (800098c ) - 80008a2: f002 fa94 bl 8002dce - 80008a6: 4603 mov r3, r0 - 80008a8: 2b00 cmp r3, #0 - 80008aa: d166 bne.n 800097a + 80008ba: 4b3d ldr r3, [pc, #244] ; (80009b0 ) + 80008bc: 781b ldrb r3, [r3, #0] + 80008be: 461a mov r2, r3 + 80008c0: 4b3a ldr r3, [pc, #232] ; (80009ac ) + 80008c2: 18d1 adds r1, r2, r3 + 80008c4: 2364 movs r3, #100 ; 0x64 + 80008c6: 2201 movs r2, #1 + 80008c8: 483a ldr r0, [pc, #232] ; (80009b4 ) + 80008ca: f002 fa9e bl 8002e0a + 80008ce: 4603 mov r3, r0 + 80008d0: 2b00 cmp r3, #0 + 80008d2: d166 bne.n 80009a2 == HAL_OK) { uart_index++; - 80008ac: 4b36 ldr r3, [pc, #216] ; (8000988 ) - 80008ae: 781b ldrb r3, [r3, #0] - 80008b0: 3301 adds r3, #1 - 80008b2: b2da uxtb r2, r3 - 80008b4: 4b34 ldr r3, [pc, #208] ; (8000988 ) - 80008b6: 701a strb r2, [r3, #0] + 80008d4: 4b36 ldr r3, [pc, #216] ; (80009b0 ) + 80008d6: 781b ldrb r3, [r3, #0] + 80008d8: 3301 adds r3, #1 + 80008da: b2da uxtb r2, r3 + 80008dc: 4b34 ldr r3, [pc, #208] ; (80009b0 ) + 80008de: 701a strb r2, [r3, #0] if (uart_buffer[uart_index - 1] == 0xFF) { - 80008b8: 4b33 ldr r3, [pc, #204] ; (8000988 ) - 80008ba: 781b ldrb r3, [r3, #0] - 80008bc: 3b01 subs r3, #1 - 80008be: 4a31 ldr r2, [pc, #196] ; (8000984 ) - 80008c0: 5cd3 ldrb r3, [r2, r3] - 80008c2: 2bff cmp r3, #255 ; 0xff - 80008c4: d14d bne.n 8000962 + 80008e0: 4b33 ldr r3, [pc, #204] ; (80009b0 ) + 80008e2: 781b ldrb r3, [r3, #0] + 80008e4: 3b01 subs r3, #1 + 80008e6: 4a31 ldr r2, [pc, #196] ; (80009ac ) + 80008e8: 5cd3 ldrb r3, [r2, r3] + 80008ea: 2bff cmp r3, #255 ; 0xff + 80008ec: d14d bne.n 800098a if (uart_index > 1) { - 80008c6: 4b30 ldr r3, [pc, #192] ; (8000988 ) - 80008c8: 781b ldrb r3, [r3, #0] - 80008ca: 2b01 cmp r3, #1 - 80008cc: d940 bls.n 8000950 + 80008ee: 4b30 ldr r3, [pc, #192] ; (80009b0 ) + 80008f0: 781b ldrb r3, [r3, #0] + 80008f2: 2b01 cmp r3, #1 + 80008f4: d940 bls.n 8000978 // Command Internal LED if (uart_buffer[0] == 0x00) { - 80008ce: 4b2d ldr r3, [pc, #180] ; (8000984 ) - 80008d0: 781b ldrb r3, [r3, #0] - 80008d2: 2b00 cmp r3, #0 - 80008d4: d107 bne.n 80008e6 + 80008f6: 4b2d ldr r3, [pc, #180] ; (80009ac ) + 80008f8: 781b ldrb r3, [r3, #0] + 80008fa: 2b00 cmp r3, #0 + 80008fc: d107 bne.n 800090e HAL_GPIO_WritePin(GPIOA, GPIO_PIN_5, uart_buffer[1]); - 80008d6: 4b2b ldr r3, [pc, #172] ; (8000984 ) - 80008d8: 785b ldrb r3, [r3, #1] - 80008da: 461a mov r2, r3 - 80008dc: 2120 movs r1, #32 - 80008de: 482c ldr r0, [pc, #176] ; (8000990 ) - 80008e0: f001 fa32 bl 8001d48 - 80008e4: e034 b.n 8000950 + 80008fe: 4b2b ldr r3, [pc, #172] ; (80009ac ) + 8000900: 785b ldrb r3, [r3, #1] + 8000902: 461a mov r2, r3 + 8000904: 2120 movs r1, #32 + 8000906: 482c ldr r0, [pc, #176] ; (80009b8 ) + 8000908: f001 fa3c bl 8001d84 + 800090c: e034 b.n 8000978 } // Get Current Door State else if (uart_buffer[0] == 0x01) { - 80008e6: 4b27 ldr r3, [pc, #156] ; (8000984 ) - 80008e8: 781b ldrb r3, [r3, #0] - 80008ea: 2b01 cmp r3, #1 - 80008ec: d10f bne.n 800090e + 800090e: 4b27 ldr r3, [pc, #156] ; (80009ac ) + 8000910: 781b ldrb r3, [r3, #0] + 8000912: 2b01 cmp r3, #1 + 8000914: d10f bne.n 8000936 uint8_t payload[3] = { 0x01, door_state, 0xFF }; - 80008ee: 2301 movs r3, #1 - 80008f0: 733b strb r3, [r7, #12] - 80008f2: 4b28 ldr r3, [pc, #160] ; (8000994 ) - 80008f4: 781b ldrb r3, [r3, #0] - 80008f6: 737b strb r3, [r7, #13] - 80008f8: 23ff movs r3, #255 ; 0xff - 80008fa: 73bb strb r3, [r7, #14] + 8000916: 2301 movs r3, #1 + 8000918: 733b strb r3, [r7, #12] + 800091a: 4b28 ldr r3, [pc, #160] ; (80009bc ) + 800091c: 781b ldrb r3, [r3, #0] + 800091e: 737b strb r3, [r7, #13] + 8000920: 23ff movs r3, #255 ; 0xff + 8000922: 73bb strb r3, [r7, #14] HAL_UART_Transmit(&huart2, payload, 3, 1500); - 80008fc: f107 010c add.w r1, r7, #12 - 8000900: f240 53dc movw r3, #1500 ; 0x5dc - 8000904: 2203 movs r2, #3 - 8000906: 4821 ldr r0, [pc, #132] ; (800098c ) - 8000908: f002 f9cf bl 8002caa - 800090c: e020 b.n 8000950 + 8000924: f107 010c add.w r1, r7, #12 + 8000928: f240 53dc movw r3, #1500 ; 0x5dc + 800092c: 2203 movs r2, #3 + 800092e: 4821 ldr r0, [pc, #132] ; (80009b4 ) + 8000930: f002 f9d9 bl 8002ce6 + 8000934: e020 b.n 8000978 } // Set Door Lock State else if (uart_buffer[0] == 0x02) { - 800090e: 4b1d ldr r3, [pc, #116] ; (8000984 ) - 8000910: 781b ldrb r3, [r3, #0] - 8000912: 2b02 cmp r3, #2 - 8000914: d109 bne.n 800092a + 8000936: 4b1d ldr r3, [pc, #116] ; (80009ac ) + 8000938: 781b ldrb r3, [r3, #0] + 800093a: 2b02 cmp r3, #2 + 800093c: d109 bne.n 8000952 door_lock_state_command = uart_buffer[1]; - 8000916: 4b1b ldr r3, [pc, #108] ; (8000984 ) - 8000918: 785b ldrb r3, [r3, #1] - 800091a: 2b00 cmp r3, #0 - 800091c: bf14 ite ne - 800091e: 2301 movne r3, #1 - 8000920: 2300 moveq r3, #0 - 8000922: b2da uxtb r2, r3 - 8000924: 4b1c ldr r3, [pc, #112] ; (8000998 ) - 8000926: 701a strb r2, [r3, #0] - 8000928: e012 b.n 8000950 + 800093e: 4b1b ldr r3, [pc, #108] ; (80009ac ) + 8000940: 785b ldrb r3, [r3, #1] + 8000942: 2b00 cmp r3, #0 + 8000944: bf14 ite ne + 8000946: 2301 movne r3, #1 + 8000948: 2300 moveq r3, #0 + 800094a: b2da uxtb r2, r3 + 800094c: 4b1c ldr r3, [pc, #112] ; (80009c0 ) + 800094e: 701a strb r2, [r3, #0] + 8000950: e012 b.n 8000978 // Get Current Scan Active State } else if (uart_buffer[0] == 0x03) { - 800092a: 4b16 ldr r3, [pc, #88] ; (8000984 ) - 800092c: 781b ldrb r3, [r3, #0] - 800092e: 2b03 cmp r3, #3 - 8000930: d10e bne.n 8000950 + 8000952: 4b16 ldr r3, [pc, #88] ; (80009ac ) + 8000954: 781b ldrb r3, [r3, #0] + 8000956: 2b03 cmp r3, #3 + 8000958: d10e bne.n 8000978 uint8_t payload[3] = { 0x02, scan_active, 0xFF }; - 8000932: 2302 movs r3, #2 - 8000934: 723b strb r3, [r7, #8] - 8000936: 4b19 ldr r3, [pc, #100] ; (800099c ) - 8000938: 781b ldrb r3, [r3, #0] - 800093a: 727b strb r3, [r7, #9] - 800093c: 23ff movs r3, #255 ; 0xff - 800093e: 72bb strb r3, [r7, #10] + 800095a: 2302 movs r3, #2 + 800095c: 723b strb r3, [r7, #8] + 800095e: 4b19 ldr r3, [pc, #100] ; (80009c4 ) + 8000960: 781b ldrb r3, [r3, #0] + 8000962: 727b strb r3, [r7, #9] + 8000964: 23ff movs r3, #255 ; 0xff + 8000966: 72bb strb r3, [r7, #10] HAL_UART_Transmit(&huart2, payload, 3, 1500); - 8000940: f107 0108 add.w r1, r7, #8 - 8000944: f240 53dc movw r3, #1500 ; 0x5dc - 8000948: 2203 movs r2, #3 - 800094a: 4810 ldr r0, [pc, #64] ; (800098c ) - 800094c: f002 f9ad bl 8002caa + 8000968: f107 0108 add.w r1, r7, #8 + 800096c: f240 53dc movw r3, #1500 ; 0x5dc + 8000970: 2203 movs r2, #3 + 8000972: 4810 ldr r0, [pc, #64] ; (80009b4 ) + 8000974: f002 f9b7 bl 8002ce6 } } uart_index = 0; - 8000950: 4b0d ldr r3, [pc, #52] ; (8000988 ) - 8000952: 2200 movs r2, #0 - 8000954: 701a strb r2, [r3, #0] + 8000978: 4b0d ldr r3, [pc, #52] ; (80009b0 ) + 800097a: 2200 movs r2, #0 + 800097c: 701a strb r2, [r3, #0] memset(uart_buffer, 0, 10); - 8000956: 220a movs r2, #10 - 8000958: 2100 movs r1, #0 - 800095a: 480a ldr r0, [pc, #40] ; (8000984 ) - 800095c: f005 fb7e bl 800605c - 8000960: e00b b.n 800097a + 800097e: 220a movs r2, #10 + 8000980: 2100 movs r1, #0 + 8000982: 480a ldr r0, [pc, #40] ; (80009ac ) + 8000984: f005 fb82 bl 800608c + 8000988: e00b b.n 80009a2 } else if (uart_index > sizeof(uart_buffer) - 1) { - 8000962: 4b09 ldr r3, [pc, #36] ; (8000988 ) - 8000964: 781b ldrb r3, [r3, #0] - 8000966: 2b09 cmp r3, #9 - 8000968: d907 bls.n 800097a + 800098a: 4b09 ldr r3, [pc, #36] ; (80009b0 ) + 800098c: 781b ldrb r3, [r3, #0] + 800098e: 2b09 cmp r3, #9 + 8000990: d907 bls.n 80009a2 memset(uart_buffer, 0, 10); - 800096a: 220a movs r2, #10 - 800096c: 2100 movs r1, #0 - 800096e: 4805 ldr r0, [pc, #20] ; (8000984 ) - 8000970: f005 fb74 bl 800605c + 8000992: 220a movs r2, #10 + 8000994: 2100 movs r1, #0 + 8000996: 4805 ldr r0, [pc, #20] ; (80009ac ) + 8000998: f005 fb78 bl 800608c uart_index = 0; - 8000974: 4b04 ldr r3, [pc, #16] ; (8000988 ) - 8000976: 2200 movs r2, #0 - 8000978: 701a strb r2, [r3, #0] + 800099c: 4b04 ldr r3, [pc, #16] ; (80009b0 ) + 800099e: 2200 movs r2, #0 + 80009a0: 701a strb r2, [r3, #0] } } vTaskDelay(1); - 800097a: 2001 movs r0, #1 - 800097c: f003 fe74 bl 8004668 + 80009a2: 2001 movs r0, #1 + 80009a4: f003 fe7e bl 80046a4 if (HAL_UART_Receive(&huart2, uart_buffer + uart_index, 1, 100) - 8000980: e787 b.n 8000892 - 8000982: bf00 nop - 8000984: 20000118 .word 0x20000118 - 8000988: 20000122 .word 0x20000122 - 800098c: 200000c4 .word 0x200000c4 - 8000990: 40020000 .word 0x40020000 - 8000994: 20000128 .word 0x20000128 - 8000998: 2000012a .word 0x2000012a - 800099c: 2000012d .word 0x2000012d + 80009a8: e787 b.n 80008ba + 80009aa: bf00 nop + 80009ac: 20000118 .word 0x20000118 + 80009b0: 20000122 .word 0x20000122 + 80009b4: 200000c4 .word 0x200000c4 + 80009b8: 40020000 .word 0x40020000 + 80009bc: 20000128 .word 0x20000128 + 80009c0: 2000012a .word 0x2000012a + 80009c4: 2000012d .word 0x2000012d -080009a0 : +080009c8 : * @param argument: Not used * @retval None */ /* USER CODE END Header_startDoorHandleTask */ void startDoorHandleTask(void *argument) { - 80009a0: b580 push {r7, lr} - 80009a2: b082 sub sp, #8 - 80009a4: af00 add r7, sp, #0 - 80009a6: 6078 str r0, [r7, #4] + 80009c8: b580 push {r7, lr} + 80009ca: b082 sub sp, #8 + 80009cc: af00 add r7, sp, #0 + 80009ce: 6078 str r0, [r7, #4] /* USER CODE BEGIN startDoorHandleTask */ /* Infinite loop */ + HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); + 80009d0: 2201 movs r2, #1 + 80009d2: f44f 7100 mov.w r1, #512 ; 0x200 + 80009d6: 4858 ldr r0, [pc, #352] ; (8000b38 ) + 80009d8: f001 f9d4 bl 8001d84 for (;;) { - door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); - 80009a8: 2180 movs r1, #128 ; 0x80 - 80009aa: 4854 ldr r0, [pc, #336] ; (8000afc ) - 80009ac: f001 f9b4 bl 8001d18 - 80009b0: 4603 mov r3, r0 - 80009b2: 2b00 cmp r3, #0 - 80009b4: bf14 ite ne - 80009b6: 2301 movne r3, #1 - 80009b8: 2300 moveq r3, #0 - 80009ba: b2da uxtb r2, r3 - 80009bc: 4b50 ldr r3, [pc, #320] ; (8000b00 ) - 80009be: 701a strb r2, [r3, #0] - if (door_lock_state != door_lock_state_command) { - 80009c0: 4b50 ldr r3, [pc, #320] ; (8000b04 ) - 80009c2: 781a ldrb r2, [r3, #0] - 80009c4: 4b50 ldr r3, [pc, #320] ; (8000b08 ) - 80009c6: 781b ldrb r3, [r3, #0] - 80009c8: 429a cmp r2, r3 - 80009ca: d05e beq.n 8000a8a - if (door_lock_state_command == DOOR_LOCK_LOCKED) { - 80009cc: 4b4e ldr r3, [pc, #312] ; (8000b08 ) - 80009ce: 781b ldrb r3, [r3, #0] - 80009d0: 2b00 cmp r3, #0 - 80009d2: d047 beq.n 8000a64 - if (door_state == DOOR_STATE_CLOSED) { - 80009d4: 4b4a ldr r3, [pc, #296] ; (8000b00 ) - 80009d6: 781b ldrb r3, [r3, #0] - 80009d8: 2b00 cmp r3, #0 - 80009da: d00c beq.n 80009f6 - HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); - 80009dc: 2201 movs r2, #1 - 80009de: f44f 7100 mov.w r1, #512 ; 0x200 - 80009e2: 4846 ldr r0, [pc, #280] ; (8000afc ) - 80009e4: f001 f9b0 bl 8001d48 - door_lock_state = DOOR_LOCK_LOCKED; - 80009e8: 4b46 ldr r3, [pc, #280] ; (8000b04 ) - 80009ea: 2201 movs r2, #1 - 80009ec: 701a strb r2, [r3, #0] - door_lock_waiting = false; - 80009ee: 4b47 ldr r3, [pc, #284] ; (8000b0c ) - 80009f0: 2200 movs r2, #0 + door_state = !HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); + 80009dc: 2180 movs r1, #128 ; 0x80 + 80009de: 4856 ldr r0, [pc, #344] ; (8000b38 ) + 80009e0: f001 f9b8 bl 8001d54 + 80009e4: 4603 mov r3, r0 + 80009e6: 2b00 cmp r3, #0 + 80009e8: bf0c ite eq + 80009ea: 2301 moveq r3, #1 + 80009ec: 2300 movne r3, #0 + 80009ee: b2da uxtb r2, r3 + 80009f0: 4b52 ldr r3, [pc, #328] ; (8000b3c ) 80009f2: 701a strb r2, [r3, #0] - 80009f4: e049 b.n 8000a8a + if (door_lock_state != door_lock_state_command) { + 80009f4: 4b52 ldr r3, [pc, #328] ; (8000b40 ) + 80009f6: 781a ldrb r2, [r3, #0] + 80009f8: 4b52 ldr r3, [pc, #328] ; (8000b44 ) + 80009fa: 781b ldrb r3, [r3, #0] + 80009fc: 429a cmp r2, r3 + 80009fe: d062 beq.n 8000ac6 + if (door_lock_state_command == DOOR_LOCK_LOCKED) { + 8000a00: 4b50 ldr r3, [pc, #320] ; (8000b44 ) + 8000a02: 781b ldrb r3, [r3, #0] + 8000a04: 2b00 cmp r3, #0 + 8000a06: d04b beq.n 8000aa0 + if (door_state == DOOR_STATE_CLOSED) { + 8000a08: 4b4c ldr r3, [pc, #304] ; (8000b3c ) + 8000a0a: 781b ldrb r3, [r3, #0] + 8000a0c: 2b00 cmp r3, #0 + 8000a0e: d010 beq.n 8000a32 + osDelay(500); + 8000a10: f44f 70fa mov.w r0, #500 ; 0x1f4 + 8000a14: f002 fe9e bl 8003754 + HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); + 8000a18: 2201 movs r2, #1 + 8000a1a: f44f 7100 mov.w r1, #512 ; 0x200 + 8000a1e: 4846 ldr r0, [pc, #280] ; (8000b38 ) + 8000a20: f001 f9b0 bl 8001d84 + door_lock_state = DOOR_LOCK_LOCKED; + 8000a24: 4b46 ldr r3, [pc, #280] ; (8000b40 ) + 8000a26: 2201 movs r2, #1 + 8000a28: 701a strb r2, [r3, #0] + door_lock_waiting = false; + 8000a2a: 4b47 ldr r3, [pc, #284] ; (8000b48 ) + 8000a2c: 2200 movs r2, #0 + 8000a2e: 701a strb r2, [r3, #0] + 8000a30: e049 b.n 8000ac6 } else { if (!door_lock_waiting) { - 80009f6: 4b45 ldr r3, [pc, #276] ; (8000b0c ) - 80009f8: 781b ldrb r3, [r3, #0] - 80009fa: f083 0301 eor.w r3, r3, #1 - 80009fe: b2db uxtb r3, r3 - 8000a00: 2b00 cmp r3, #0 - 8000a02: d008 beq.n 8000a16 + 8000a32: 4b45 ldr r3, [pc, #276] ; (8000b48 ) + 8000a34: 781b ldrb r3, [r3, #0] + 8000a36: f083 0301 eor.w r3, r3, #1 + 8000a3a: b2db uxtb r3, r3 + 8000a3c: 2b00 cmp r3, #0 + 8000a3e: d008 beq.n 8000a52 door_lock_command_time = HAL_GetTick(); - 8000a04: f000 faaa bl 8000f5c - 8000a08: 4603 mov r3, r0 - 8000a0a: 4a41 ldr r2, [pc, #260] ; (8000b10 ) - 8000a0c: 6013 str r3, [r2, #0] + 8000a40: f000 faaa bl 8000f98 + 8000a44: 4603 mov r3, r0 + 8000a46: 4a41 ldr r2, [pc, #260] ; (8000b4c ) + 8000a48: 6013 str r3, [r2, #0] door_lock_waiting = true; - 8000a0e: 4b3f ldr r3, [pc, #252] ; (8000b0c ) - 8000a10: 2201 movs r2, #1 - 8000a12: 701a strb r2, [r3, #0] - 8000a14: e039 b.n 8000a8a + 8000a4a: 4b3f ldr r3, [pc, #252] ; (8000b48 ) + 8000a4c: 2201 movs r2, #1 + 8000a4e: 701a strb r2, [r3, #0] + 8000a50: e039 b.n 8000ac6 } else { if (door_state == DOOR_STATE_OPEN) { - 8000a16: 4b3a ldr r3, [pc, #232] ; (8000b00 ) - 8000a18: 781b ldrb r3, [r3, #0] - 8000a1a: f083 0301 eor.w r3, r3, #1 - 8000a1e: b2db uxtb r3, r3 - 8000a20: 2b00 cmp r3, #0 - 8000a22: d012 beq.n 8000a4a + 8000a52: 4b3a ldr r3, [pc, #232] ; (8000b3c ) + 8000a54: 781b ldrb r3, [r3, #0] + 8000a56: f083 0301 eor.w r3, r3, #1 + 8000a5a: b2db uxtb r3, r3 + 8000a5c: 2b00 cmp r3, #0 + 8000a5e: d012 beq.n 8000a86 if (HAL_GetTick() - 8000a24: f000 fa9a bl 8000f5c - 8000a28: 4602 mov r2, r0 + 8000a60: f000 fa9a bl 8000f98 + 8000a64: 4602 mov r2, r0 - door_lock_command_time>DOOR_ERROR_ALARM_DELAY) { - 8000a2a: 4b39 ldr r3, [pc, #228] ; (8000b10 ) - 8000a2c: 681b ldr r3, [r3, #0] - 8000a2e: 1ad3 subs r3, r2, r3 + 8000a66: 4b39 ldr r3, [pc, #228] ; (8000b4c ) + 8000a68: 681b ldr r3, [r3, #0] + 8000a6a: 1ad3 subs r3, r2, r3 if (HAL_GetTick() - 8000a30: f242 7210 movw r2, #10000 ; 0x2710 - 8000a34: 4293 cmp r3, r2 - 8000a36: d928 bls.n 8000a8a + 8000a6c: f242 7210 movw r2, #10000 ; 0x2710 + 8000a70: 4293 cmp r3, r2 + 8000a72: d928 bls.n 8000ac6 alarm_active = true; - 8000a38: 4b36 ldr r3, [pc, #216] ; (8000b14 ) - 8000a3a: 2201 movs r2, #1 - 8000a3c: 701a strb r2, [r3, #0] + 8000a74: 4b36 ldr r3, [pc, #216] ; (8000b50 ) + 8000a76: 2201 movs r2, #1 + 8000a78: 701a strb r2, [r3, #0] HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 1); - 8000a3e: 2201 movs r2, #1 - 8000a40: 2101 movs r1, #1 - 8000a42: 4835 ldr r0, [pc, #212] ; (8000b18 ) - 8000a44: f001 f980 bl 8001d48 - 8000a48: e01f b.n 8000a8a + 8000a7a: 2201 movs r2, #1 + 8000a7c: 2101 movs r1, #1 + 8000a7e: 4835 ldr r0, [pc, #212] ; (8000b54 ) + 8000a80: f001 f980 bl 8001d84 + 8000a84: e01f b.n 8000ac6 } } else { HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 1); - 8000a4a: 2201 movs r2, #1 - 8000a4c: f44f 7100 mov.w r1, #512 ; 0x200 - 8000a50: 482a ldr r0, [pc, #168] ; (8000afc ) - 8000a52: f001 f979 bl 8001d48 + 8000a86: 2201 movs r2, #1 + 8000a88: f44f 7100 mov.w r1, #512 ; 0x200 + 8000a8c: 482a ldr r0, [pc, #168] ; (8000b38 ) + 8000a8e: f001 f979 bl 8001d84 door_lock_waiting = false; - 8000a56: 4b2d ldr r3, [pc, #180] ; (8000b0c ) - 8000a58: 2200 movs r2, #0 - 8000a5a: 701a strb r2, [r3, #0] + 8000a92: 4b2d ldr r3, [pc, #180] ; (8000b48 ) + 8000a94: 2200 movs r2, #0 + 8000a96: 701a strb r2, [r3, #0] door_lock_state = DOOR_LOCK_LOCKED; - 8000a5c: 4b29 ldr r3, [pc, #164] ; (8000b04 ) - 8000a5e: 2201 movs r2, #1 - 8000a60: 701a strb r2, [r3, #0] - 8000a62: e012 b.n 8000a8a + 8000a98: 4b29 ldr r3, [pc, #164] ; (8000b40 ) + 8000a9a: 2201 movs r2, #1 + 8000a9c: 701a strb r2, [r3, #0] + 8000a9e: e012 b.n 8000ac6 } } } } else if (door_lock_state_command == DOOR_LOCK_UNLOCKED) { - 8000a64: 4b28 ldr r3, [pc, #160] ; (8000b08 ) - 8000a66: 781b ldrb r3, [r3, #0] - 8000a68: f083 0301 eor.w r3, r3, #1 - 8000a6c: b2db uxtb r3, r3 - 8000a6e: 2b00 cmp r3, #0 - 8000a70: d00b beq.n 8000a8a + 8000aa0: 4b28 ldr r3, [pc, #160] ; (8000b44 ) + 8000aa2: 781b ldrb r3, [r3, #0] + 8000aa4: f083 0301 eor.w r3, r3, #1 + 8000aa8: b2db uxtb r3, r3 + 8000aaa: 2b00 cmp r3, #0 + 8000aac: d00b beq.n 8000ac6 HAL_GPIO_WritePin(DOOR_LOCK_BANK, DOOR_LOCK_PIN, 0); - 8000a72: 2200 movs r2, #0 - 8000a74: f44f 7100 mov.w r1, #512 ; 0x200 - 8000a78: 4820 ldr r0, [pc, #128] ; (8000afc ) - 8000a7a: f001 f965 bl 8001d48 + 8000aae: 2200 movs r2, #0 + 8000ab0: f44f 7100 mov.w r1, #512 ; 0x200 + 8000ab4: 4820 ldr r0, [pc, #128] ; (8000b38 ) + 8000ab6: f001 f965 bl 8001d84 door_lock_state = DOOR_LOCK_UNLOCKED; - 8000a7e: 4b21 ldr r3, [pc, #132] ; (8000b04 ) - 8000a80: 2200 movs r2, #0 - 8000a82: 701a strb r2, [r3, #0] + 8000aba: 4b21 ldr r3, [pc, #132] ; (8000b40 ) + 8000abc: 2200 movs r2, #0 + 8000abe: 701a strb r2, [r3, #0] door_lock_waiting = false; - 8000a84: 4b21 ldr r3, [pc, #132] ; (8000b0c ) - 8000a86: 2200 movs r2, #0 - 8000a88: 701a strb r2, [r3, #0] + 8000ac0: 4b21 ldr r3, [pc, #132] ; (8000b48 ) + 8000ac2: 2200 movs r2, #0 + 8000ac4: 701a strb r2, [r3, #0] } } if (!door_lock_state_command && door_lock_waiting) { - 8000a8a: 4b1f ldr r3, [pc, #124] ; (8000b08 ) - 8000a8c: 781b ldrb r3, [r3, #0] - 8000a8e: f083 0301 eor.w r3, r3, #1 - 8000a92: b2db uxtb r3, r3 - 8000a94: 2b00 cmp r3, #0 - 8000a96: d006 beq.n 8000aa6 - 8000a98: 4b1c ldr r3, [pc, #112] ; (8000b0c ) - 8000a9a: 781b ldrb r3, [r3, #0] - 8000a9c: 2b00 cmp r3, #0 - 8000a9e: d002 beq.n 8000aa6 + 8000ac6: 4b1f ldr r3, [pc, #124] ; (8000b44 ) + 8000ac8: 781b ldrb r3, [r3, #0] + 8000aca: f083 0301 eor.w r3, r3, #1 + 8000ace: b2db uxtb r3, r3 + 8000ad0: 2b00 cmp r3, #0 + 8000ad2: d006 beq.n 8000ae2 + 8000ad4: 4b1c ldr r3, [pc, #112] ; (8000b48 ) + 8000ad6: 781b ldrb r3, [r3, #0] + 8000ad8: 2b00 cmp r3, #0 + 8000ada: d002 beq.n 8000ae2 door_lock_waiting = false; - 8000aa0: 4b1a ldr r3, [pc, #104] ; (8000b0c ) - 8000aa2: 2200 movs r2, #0 - 8000aa4: 701a strb r2, [r3, #0] + 8000adc: 4b1a ldr r3, [pc, #104] ; (8000b48 ) + 8000ade: 2200 movs r2, #0 + 8000ae0: 701a strb r2, [r3, #0] } if (alarm_active && !door_lock_state_command) { - 8000aa6: 4b1b ldr r3, [pc, #108] ; (8000b14 ) - 8000aa8: 781b ldrb r3, [r3, #0] - 8000aaa: 2b00 cmp r3, #0 - 8000aac: d00e beq.n 8000acc - 8000aae: 4b16 ldr r3, [pc, #88] ; (8000b08 ) - 8000ab0: 781b ldrb r3, [r3, #0] - 8000ab2: f083 0301 eor.w r3, r3, #1 - 8000ab6: b2db uxtb r3, r3 - 8000ab8: 2b00 cmp r3, #0 - 8000aba: d007 beq.n 8000acc + 8000ae2: 4b1b ldr r3, [pc, #108] ; (8000b50 ) + 8000ae4: 781b ldrb r3, [r3, #0] + 8000ae6: 2b00 cmp r3, #0 + 8000ae8: d00e beq.n 8000b08 + 8000aea: 4b16 ldr r3, [pc, #88] ; (8000b44 ) + 8000aec: 781b ldrb r3, [r3, #0] + 8000aee: f083 0301 eor.w r3, r3, #1 + 8000af2: b2db uxtb r3, r3 + 8000af4: 2b00 cmp r3, #0 + 8000af6: d007 beq.n 8000b08 HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 0); - 8000abc: 2200 movs r2, #0 - 8000abe: 2101 movs r1, #1 - 8000ac0: 4815 ldr r0, [pc, #84] ; (8000b18 ) - 8000ac2: f001 f941 bl 8001d48 + 8000af8: 2200 movs r2, #0 + 8000afa: 2101 movs r1, #1 + 8000afc: 4815 ldr r0, [pc, #84] ; (8000b54 ) + 8000afe: f001 f941 bl 8001d84 alarm_active = false; - 8000ac6: 4b13 ldr r3, [pc, #76] ; (8000b14 ) - 8000ac8: 2200 movs r2, #0 - 8000aca: 701a strb r2, [r3, #0] + 8000b02: 4b13 ldr r3, [pc, #76] ; (8000b50 ) + 8000b04: 2200 movs r2, #0 + 8000b06: 701a strb r2, [r3, #0] } if (!door_state && door_lock_state) { - 8000acc: 4b0c ldr r3, [pc, #48] ; (8000b00 ) - 8000ace: 781b ldrb r3, [r3, #0] - 8000ad0: f083 0301 eor.w r3, r3, #1 - 8000ad4: b2db uxtb r3, r3 - 8000ad6: 2b00 cmp r3, #0 - 8000ad8: d00b beq.n 8000af2 - 8000ada: 4b0a ldr r3, [pc, #40] ; (8000b04 ) - 8000adc: 781b ldrb r3, [r3, #0] - 8000ade: 2b00 cmp r3, #0 - 8000ae0: d007 beq.n 8000af2 + 8000b08: 4b0c ldr r3, [pc, #48] ; (8000b3c ) + 8000b0a: 781b ldrb r3, [r3, #0] + 8000b0c: f083 0301 eor.w r3, r3, #1 + 8000b10: b2db uxtb r3, r3 + 8000b12: 2b00 cmp r3, #0 + 8000b14: d00b beq.n 8000b2e + 8000b16: 4b0a ldr r3, [pc, #40] ; (8000b40 ) + 8000b18: 781b ldrb r3, [r3, #0] + 8000b1a: 2b00 cmp r3, #0 + 8000b1c: d007 beq.n 8000b2e HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 1); - 8000ae2: 2201 movs r2, #1 - 8000ae4: 2101 movs r1, #1 - 8000ae6: 480c ldr r0, [pc, #48] ; (8000b18 ) - 8000ae8: f001 f92e bl 8001d48 + 8000b1e: 2201 movs r2, #1 + 8000b20: 2101 movs r1, #1 + 8000b22: 480c ldr r0, [pc, #48] ; (8000b54 ) + 8000b24: f001 f92e bl 8001d84 alarm_active = true; - 8000aec: 4b09 ldr r3, [pc, #36] ; (8000b14 ) - 8000aee: 2201 movs r2, #1 - 8000af0: 701a strb r2, [r3, #0] + 8000b28: 4b09 ldr r3, [pc, #36] ; (8000b50 ) + 8000b2a: 2201 movs r2, #1 + 8000b2c: 701a strb r2, [r3, #0] } vTaskDelay(50); - 8000af2: 2032 movs r0, #50 ; 0x32 - 8000af4: f003 fdb8 bl 8004668 - door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); - 8000af8: e756 b.n 80009a8 - 8000afa: bf00 nop - 8000afc: 40020000 .word 0x40020000 - 8000b00: 20000128 .word 0x20000128 - 8000b04: 20000129 .word 0x20000129 - 8000b08: 2000012a .word 0x2000012a - 8000b0c: 2000012b .word 0x2000012b - 8000b10: 20000124 .word 0x20000124 - 8000b14: 2000012c .word 0x2000012c - 8000b18: 40020800 .word 0x40020800 + 8000b2e: 2032 movs r0, #50 ; 0x32 + 8000b30: f003 fdb8 bl 80046a4 + door_state = !HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); + 8000b34: e752 b.n 80009dc + 8000b36: bf00 nop + 8000b38: 40020000 .word 0x40020000 + 8000b3c: 20000128 .word 0x20000128 + 8000b40: 20000129 .word 0x20000129 + 8000b44: 2000012a .word 0x2000012a + 8000b48: 2000012b .word 0x2000012b + 8000b4c: 20000124 .word 0x20000124 + 8000b50: 2000012c .word 0x2000012c + 8000b54: 40020800 .word 0x40020800 -08000b1c : +08000b58 : * @param argument: Not used * @retval None */ /* USER CODE END Header_StartStateSendTask */ void StartStateSendTask(void *argument) { - 8000b1c: b580 push {r7, lr} - 8000b1e: b084 sub sp, #16 - 8000b20: af00 add r7, sp, #0 - 8000b22: 6078 str r0, [r7, #4] + 8000b58: b580 push {r7, lr} + 8000b5a: b084 sub sp, #16 + 8000b5c: af00 add r7, sp, #0 + 8000b5e: 6078 str r0, [r7, #4] /* USER CODE BEGIN StartStateSendTask */ /* Infinite loop */ for (;;) { uint8_t payload1[3] = { 0x01, door_state, 0xFF }; - 8000b24: 2301 movs r3, #1 - 8000b26: 733b strb r3, [r7, #12] - 8000b28: 4b0f ldr r3, [pc, #60] ; (8000b68 ) - 8000b2a: 781b ldrb r3, [r3, #0] - 8000b2c: 737b strb r3, [r7, #13] - 8000b2e: 23ff movs r3, #255 ; 0xff - 8000b30: 73bb strb r3, [r7, #14] + 8000b60: 2301 movs r3, #1 + 8000b62: 733b strb r3, [r7, #12] + 8000b64: 4b0f ldr r3, [pc, #60] ; (8000ba4 ) + 8000b66: 781b ldrb r3, [r3, #0] + 8000b68: 737b strb r3, [r7, #13] + 8000b6a: 23ff movs r3, #255 ; 0xff + 8000b6c: 73bb strb r3, [r7, #14] HAL_UART_Transmit(&huart2, payload1, 3, 1000); - 8000b32: f107 010c add.w r1, r7, #12 - 8000b36: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8000b3a: 2203 movs r2, #3 - 8000b3c: 480b ldr r0, [pc, #44] ; (8000b6c ) - 8000b3e: f002 f8b4 bl 8002caa + 8000b6e: f107 010c add.w r1, r7, #12 + 8000b72: f44f 737a mov.w r3, #1000 ; 0x3e8 + 8000b76: 2203 movs r2, #3 + 8000b78: 480b ldr r0, [pc, #44] ; (8000ba8 ) + 8000b7a: f002 f8b4 bl 8002ce6 uint8_t payload2[3] = { 0x02, scan_active, 0xFF }; - 8000b42: 2302 movs r3, #2 - 8000b44: 723b strb r3, [r7, #8] - 8000b46: 4b0a ldr r3, [pc, #40] ; (8000b70 ) - 8000b48: 781b ldrb r3, [r3, #0] - 8000b4a: 727b strb r3, [r7, #9] - 8000b4c: 23ff movs r3, #255 ; 0xff - 8000b4e: 72bb strb r3, [r7, #10] + 8000b7e: 2302 movs r3, #2 + 8000b80: 723b strb r3, [r7, #8] + 8000b82: 4b0a ldr r3, [pc, #40] ; (8000bac ) + 8000b84: 781b ldrb r3, [r3, #0] + 8000b86: 727b strb r3, [r7, #9] + 8000b88: 23ff movs r3, #255 ; 0xff + 8000b8a: 72bb strb r3, [r7, #10] HAL_UART_Transmit(&huart2, payload2, 3, 1000); - 8000b50: f107 0108 add.w r1, r7, #8 - 8000b54: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8000b58: 2203 movs r2, #3 - 8000b5a: 4804 ldr r0, [pc, #16] ; (8000b6c ) - 8000b5c: f002 f8a5 bl 8002caa + 8000b8c: f107 0108 add.w r1, r7, #8 + 8000b90: f44f 737a mov.w r3, #1000 ; 0x3e8 + 8000b94: 2203 movs r2, #3 + 8000b96: 4804 ldr r0, [pc, #16] ; (8000ba8 ) + 8000b98: f002 f8a5 bl 8002ce6 osDelay(200); - 8000b60: 20c8 movs r0, #200 ; 0xc8 - 8000b62: f002 fdd9 bl 8003718 + 8000b9c: 20c8 movs r0, #200 ; 0xc8 + 8000b9e: f002 fdd9 bl 8003754 for (;;) { - 8000b66: e7dd b.n 8000b24 - 8000b68: 20000128 .word 0x20000128 - 8000b6c: 200000c4 .word 0x200000c4 - 8000b70: 2000012d .word 0x2000012d + 8000ba2: e7dd b.n 8000b60 + 8000ba4: 20000128 .word 0x20000128 + 8000ba8: 200000c4 .word 0x200000c4 + 8000bac: 2000012d .word 0x2000012d -08000b74 : +08000bb0 : * @param argument: Not used * @retval None */ /* USER CODE END Header_StartADCReqTask */ void StartADCReqTask(void *argument) { - 8000b74: b580 push {r7, lr} - 8000b76: b082 sub sp, #8 - 8000b78: af00 add r7, sp, #0 - 8000b7a: 6078 str r0, [r7, #4] + 8000bb0: b580 push {r7, lr} + 8000bb2: b082 sub sp, #8 + 8000bb4: af00 add r7, sp, #0 + 8000bb6: 6078 str r0, [r7, #4] /* USER CODE BEGIN StartADCReqTask */ /* Infinite loop */ for(;;) { HAL_ADC_Start_IT(&hadc1); - 8000b7c: 4803 ldr r0, [pc, #12] ; (8000b8c ) - 8000b7e: f000 fa3d bl 8000ffc + 8000bb8: 4803 ldr r0, [pc, #12] ; (8000bc8 ) + 8000bba: f000 fa3d bl 8001038 osDelay(500); - 8000b82: f44f 70fa mov.w r0, #500 ; 0x1f4 - 8000b86: f002 fdc7 bl 8003718 + 8000bbe: f44f 70fa mov.w r0, #500 ; 0x1f4 + 8000bc2: f002 fdc7 bl 8003754 HAL_ADC_Start_IT(&hadc1); - 8000b8a: e7f7 b.n 8000b7c - 8000b8c: 2000007c .word 0x2000007c + 8000bc6: e7f7 b.n 8000bb8 + 8000bc8: 2000007c .word 0x2000007c -08000b90 : +08000bcc : * a global variable "uwTick" used as application time base. * @param htim : TIM handle * @retval None */ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { - 8000b90: b580 push {r7, lr} - 8000b92: b082 sub sp, #8 - 8000b94: af00 add r7, sp, #0 - 8000b96: 6078 str r0, [r7, #4] + 8000bcc: b580 push {r7, lr} + 8000bce: b082 sub sp, #8 + 8000bd0: af00 add r7, sp, #0 + 8000bd2: 6078 str r0, [r7, #4] /* USER CODE BEGIN Callback 0 */ /* USER CODE END Callback 0 */ if (htim->Instance == TIM1) { - 8000b98: 687b ldr r3, [r7, #4] - 8000b9a: 681b ldr r3, [r3, #0] - 8000b9c: 4a04 ldr r2, [pc, #16] ; (8000bb0 ) - 8000b9e: 4293 cmp r3, r2 - 8000ba0: d101 bne.n 8000ba6 + 8000bd4: 687b ldr r3, [r7, #4] + 8000bd6: 681b ldr r3, [r3, #0] + 8000bd8: 4a04 ldr r2, [pc, #16] ; (8000bec ) + 8000bda: 4293 cmp r3, r2 + 8000bdc: d101 bne.n 8000be2 HAL_IncTick(); - 8000ba2: f000 f9c7 bl 8000f34 + 8000bde: f000 f9c7 bl 8000f70 } /* USER CODE BEGIN Callback 1 */ /* USER CODE END Callback 1 */ } - 8000ba6: bf00 nop - 8000ba8: 3708 adds r7, #8 - 8000baa: 46bd mov sp, r7 - 8000bac: bd80 pop {r7, pc} - 8000bae: bf00 nop - 8000bb0: 40010000 .word 0x40010000 + 8000be2: bf00 nop + 8000be4: 3708 adds r7, #8 + 8000be6: 46bd mov sp, r7 + 8000be8: bd80 pop {r7, pc} + 8000bea: bf00 nop + 8000bec: 40010000 .word 0x40010000 -08000bb4 : +08000bf0 : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 8000bb4: b480 push {r7} - 8000bb6: af00 add r7, sp, #0 + 8000bf0: b480 push {r7} + 8000bf2: 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"); - 8000bb8: b672 cpsid i + 8000bf4: b672 cpsid i } - 8000bba: bf00 nop + 8000bf6: 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) { - 8000bbc: e7fe b.n 8000bbc + 8000bf8: e7fe b.n 8000bf8 ... -08000bc0 : +08000bfc : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 8000bc0: b580 push {r7, lr} - 8000bc2: b082 sub sp, #8 - 8000bc4: af00 add r7, sp, #0 + 8000bfc: b580 push {r7, lr} + 8000bfe: b082 sub sp, #8 + 8000c00: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8000bc6: 2300 movs r3, #0 - 8000bc8: 607b str r3, [r7, #4] - 8000bca: 4b12 ldr r3, [pc, #72] ; (8000c14 ) - 8000bcc: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000bce: 4a11 ldr r2, [pc, #68] ; (8000c14 ) - 8000bd0: f443 4380 orr.w r3, r3, #16384 ; 0x4000 - 8000bd4: 6453 str r3, [r2, #68] ; 0x44 - 8000bd6: 4b0f ldr r3, [pc, #60] ; (8000c14 ) - 8000bd8: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000bda: f403 4380 and.w r3, r3, #16384 ; 0x4000 - 8000bde: 607b str r3, [r7, #4] - 8000be0: 687b ldr r3, [r7, #4] + 8000c02: 2300 movs r3, #0 + 8000c04: 607b str r3, [r7, #4] + 8000c06: 4b12 ldr r3, [pc, #72] ; (8000c50 ) + 8000c08: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000c0a: 4a11 ldr r2, [pc, #68] ; (8000c50 ) + 8000c0c: f443 4380 orr.w r3, r3, #16384 ; 0x4000 + 8000c10: 6453 str r3, [r2, #68] ; 0x44 + 8000c12: 4b0f ldr r3, [pc, #60] ; (8000c50 ) + 8000c14: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000c16: f403 4380 and.w r3, r3, #16384 ; 0x4000 + 8000c1a: 607b str r3, [r7, #4] + 8000c1c: 687b ldr r3, [r7, #4] __HAL_RCC_PWR_CLK_ENABLE(); - 8000be2: 2300 movs r3, #0 - 8000be4: 603b str r3, [r7, #0] - 8000be6: 4b0b ldr r3, [pc, #44] ; (8000c14 ) - 8000be8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000bea: 4a0a ldr r2, [pc, #40] ; (8000c14 ) - 8000bec: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 8000bf0: 6413 str r3, [r2, #64] ; 0x40 - 8000bf2: 4b08 ldr r3, [pc, #32] ; (8000c14 ) - 8000bf4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000bf6: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8000bfa: 603b str r3, [r7, #0] - 8000bfc: 683b ldr r3, [r7, #0] + 8000c1e: 2300 movs r3, #0 + 8000c20: 603b str r3, [r7, #0] + 8000c22: 4b0b ldr r3, [pc, #44] ; (8000c50 ) + 8000c24: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000c26: 4a0a ldr r2, [pc, #40] ; (8000c50 ) + 8000c28: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8000c2c: 6413 str r3, [r2, #64] ; 0x40 + 8000c2e: 4b08 ldr r3, [pc, #32] ; (8000c50 ) + 8000c30: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000c32: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8000c36: 603b str r3, [r7, #0] + 8000c38: 683b ldr r3, [r7, #0] /* System interrupt init*/ /* PendSV_IRQn interrupt configuration */ HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0); - 8000bfe: 2200 movs r2, #0 - 8000c00: 210f movs r1, #15 - 8000c02: f06f 0001 mvn.w r0, #1 - 8000c06: f000 fed9 bl 80019bc + 8000c3a: 2200 movs r2, #0 + 8000c3c: 210f movs r1, #15 + 8000c3e: f06f 0001 mvn.w r0, #1 + 8000c42: f000 fed9 bl 80019f8 /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 8000c0a: bf00 nop - 8000c0c: 3708 adds r7, #8 - 8000c0e: 46bd mov sp, r7 - 8000c10: bd80 pop {r7, pc} - 8000c12: bf00 nop - 8000c14: 40023800 .word 0x40023800 + 8000c46: bf00 nop + 8000c48: 3708 adds r7, #8 + 8000c4a: 46bd mov sp, r7 + 8000c4c: bd80 pop {r7, pc} + 8000c4e: bf00 nop + 8000c50: 40023800 .word 0x40023800 -08000c18 : +08000c54 : * This function configures the hardware resources used in this example * @param hadc: ADC handle pointer * @retval None */ void HAL_ADC_MspInit(ADC_HandleTypeDef* hadc) { - 8000c18: b580 push {r7, lr} - 8000c1a: b08a sub sp, #40 ; 0x28 - 8000c1c: af00 add r7, sp, #0 - 8000c1e: 6078 str r0, [r7, #4] + 8000c54: b580 push {r7, lr} + 8000c56: b08a sub sp, #40 ; 0x28 + 8000c58: af00 add r7, sp, #0 + 8000c5a: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8000c20: f107 0314 add.w r3, r7, #20 - 8000c24: 2200 movs r2, #0 - 8000c26: 601a str r2, [r3, #0] - 8000c28: 605a str r2, [r3, #4] - 8000c2a: 609a str r2, [r3, #8] - 8000c2c: 60da str r2, [r3, #12] - 8000c2e: 611a str r2, [r3, #16] + 8000c5c: f107 0314 add.w r3, r7, #20 + 8000c60: 2200 movs r2, #0 + 8000c62: 601a str r2, [r3, #0] + 8000c64: 605a str r2, [r3, #4] + 8000c66: 609a str r2, [r3, #8] + 8000c68: 60da str r2, [r3, #12] + 8000c6a: 611a str r2, [r3, #16] if(hadc->Instance==ADC1) - 8000c30: 687b ldr r3, [r7, #4] - 8000c32: 681b ldr r3, [r3, #0] - 8000c34: 4a1b ldr r2, [pc, #108] ; (8000ca4 ) - 8000c36: 4293 cmp r3, r2 - 8000c38: d12f bne.n 8000c9a + 8000c6c: 687b ldr r3, [r7, #4] + 8000c6e: 681b ldr r3, [r3, #0] + 8000c70: 4a1b ldr r2, [pc, #108] ; (8000ce0 ) + 8000c72: 4293 cmp r3, r2 + 8000c74: d12f bne.n 8000cd6 { /* USER CODE BEGIN ADC1_MspInit 0 */ /* USER CODE END ADC1_MspInit 0 */ /* Peripheral clock enable */ __HAL_RCC_ADC1_CLK_ENABLE(); - 8000c3a: 2300 movs r3, #0 - 8000c3c: 613b str r3, [r7, #16] - 8000c3e: 4b1a ldr r3, [pc, #104] ; (8000ca8 ) - 8000c40: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000c42: 4a19 ldr r2, [pc, #100] ; (8000ca8 ) - 8000c44: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8000c48: 6453 str r3, [r2, #68] ; 0x44 - 8000c4a: 4b17 ldr r3, [pc, #92] ; (8000ca8 ) - 8000c4c: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000c4e: f403 7380 and.w r3, r3, #256 ; 0x100 - 8000c52: 613b str r3, [r7, #16] - 8000c54: 693b ldr r3, [r7, #16] + 8000c76: 2300 movs r3, #0 + 8000c78: 613b str r3, [r7, #16] + 8000c7a: 4b1a ldr r3, [pc, #104] ; (8000ce4 ) + 8000c7c: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000c7e: 4a19 ldr r2, [pc, #100] ; (8000ce4 ) + 8000c80: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8000c84: 6453 str r3, [r2, #68] ; 0x44 + 8000c86: 4b17 ldr r3, [pc, #92] ; (8000ce4 ) + 8000c88: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000c8a: f403 7380 and.w r3, r3, #256 ; 0x100 + 8000c8e: 613b str r3, [r7, #16] + 8000c90: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 8000c56: 2300 movs r3, #0 - 8000c58: 60fb str r3, [r7, #12] - 8000c5a: 4b13 ldr r3, [pc, #76] ; (8000ca8 ) - 8000c5c: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000c5e: 4a12 ldr r2, [pc, #72] ; (8000ca8 ) - 8000c60: f043 0301 orr.w r3, r3, #1 - 8000c64: 6313 str r3, [r2, #48] ; 0x30 - 8000c66: 4b10 ldr r3, [pc, #64] ; (8000ca8 ) - 8000c68: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000c6a: f003 0301 and.w r3, r3, #1 - 8000c6e: 60fb str r3, [r7, #12] - 8000c70: 68fb ldr r3, [r7, #12] + 8000c92: 2300 movs r3, #0 + 8000c94: 60fb str r3, [r7, #12] + 8000c96: 4b13 ldr r3, [pc, #76] ; (8000ce4 ) + 8000c98: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000c9a: 4a12 ldr r2, [pc, #72] ; (8000ce4 ) + 8000c9c: f043 0301 orr.w r3, r3, #1 + 8000ca0: 6313 str r3, [r2, #48] ; 0x30 + 8000ca2: 4b10 ldr r3, [pc, #64] ; (8000ce4 ) + 8000ca4: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000ca6: f003 0301 and.w r3, r3, #1 + 8000caa: 60fb str r3, [r7, #12] + 8000cac: 68fb ldr r3, [r7, #12] /**ADC1 GPIO Configuration PA1 ------> ADC1_IN1 */ GPIO_InitStruct.Pin = GPIO_PIN_1; - 8000c72: 2302 movs r3, #2 - 8000c74: 617b str r3, [r7, #20] + 8000cae: 2302 movs r3, #2 + 8000cb0: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; - 8000c76: 2303 movs r3, #3 - 8000c78: 61bb str r3, [r7, #24] + 8000cb2: 2303 movs r3, #3 + 8000cb4: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8000c7a: 2300 movs r3, #0 - 8000c7c: 61fb str r3, [r7, #28] + 8000cb6: 2300 movs r3, #0 + 8000cb8: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000c7e: f107 0314 add.w r3, r7, #20 - 8000c82: 4619 mov r1, r3 - 8000c84: 4809 ldr r0, [pc, #36] ; (8000cac ) - 8000c86: f000 fec3 bl 8001a10 + 8000cba: f107 0314 add.w r3, r7, #20 + 8000cbe: 4619 mov r1, r3 + 8000cc0: 4809 ldr r0, [pc, #36] ; (8000ce8 ) + 8000cc2: f000 fec3 bl 8001a4c /* ADC1 interrupt Init */ HAL_NVIC_SetPriority(ADC_IRQn, 5, 0); - 8000c8a: 2200 movs r2, #0 - 8000c8c: 2105 movs r1, #5 - 8000c8e: 2012 movs r0, #18 - 8000c90: f000 fe94 bl 80019bc + 8000cc6: 2200 movs r2, #0 + 8000cc8: 2105 movs r1, #5 + 8000cca: 2012 movs r0, #18 + 8000ccc: f000 fe94 bl 80019f8 HAL_NVIC_EnableIRQ(ADC_IRQn); - 8000c94: 2012 movs r0, #18 - 8000c96: f000 fead bl 80019f4 + 8000cd0: 2012 movs r0, #18 + 8000cd2: f000 fead bl 8001a30 /* USER CODE BEGIN ADC1_MspInit 1 */ /* USER CODE END ADC1_MspInit 1 */ } } - 8000c9a: bf00 nop - 8000c9c: 3728 adds r7, #40 ; 0x28 - 8000c9e: 46bd mov sp, r7 - 8000ca0: bd80 pop {r7, pc} - 8000ca2: bf00 nop - 8000ca4: 40012000 .word 0x40012000 - 8000ca8: 40023800 .word 0x40023800 - 8000cac: 40020000 .word 0x40020000 + 8000cd6: bf00 nop + 8000cd8: 3728 adds r7, #40 ; 0x28 + 8000cda: 46bd mov sp, r7 + 8000cdc: bd80 pop {r7, pc} + 8000cde: bf00 nop + 8000ce0: 40012000 .word 0x40012000 + 8000ce4: 40023800 .word 0x40023800 + 8000ce8: 40020000 .word 0x40020000 -08000cb0 : +08000cec : * This function configures the hardware resources used in this example * @param huart: UART handle pointer * @retval None */ void HAL_UART_MspInit(UART_HandleTypeDef* huart) { - 8000cb0: b580 push {r7, lr} - 8000cb2: b08a sub sp, #40 ; 0x28 - 8000cb4: af00 add r7, sp, #0 - 8000cb6: 6078 str r0, [r7, #4] + 8000cec: b580 push {r7, lr} + 8000cee: b08a sub sp, #40 ; 0x28 + 8000cf0: af00 add r7, sp, #0 + 8000cf2: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8000cb8: f107 0314 add.w r3, r7, #20 - 8000cbc: 2200 movs r2, #0 - 8000cbe: 601a str r2, [r3, #0] - 8000cc0: 605a str r2, [r3, #4] - 8000cc2: 609a str r2, [r3, #8] - 8000cc4: 60da str r2, [r3, #12] - 8000cc6: 611a str r2, [r3, #16] + 8000cf4: f107 0314 add.w r3, r7, #20 + 8000cf8: 2200 movs r2, #0 + 8000cfa: 601a str r2, [r3, #0] + 8000cfc: 605a str r2, [r3, #4] + 8000cfe: 609a str r2, [r3, #8] + 8000d00: 60da str r2, [r3, #12] + 8000d02: 611a str r2, [r3, #16] if(huart->Instance==USART2) - 8000cc8: 687b ldr r3, [r7, #4] - 8000cca: 681b ldr r3, [r3, #0] - 8000ccc: 4a19 ldr r2, [pc, #100] ; (8000d34 ) - 8000cce: 4293 cmp r3, r2 - 8000cd0: d12b bne.n 8000d2a + 8000d04: 687b ldr r3, [r7, #4] + 8000d06: 681b ldr r3, [r3, #0] + 8000d08: 4a19 ldr r2, [pc, #100] ; (8000d70 ) + 8000d0a: 4293 cmp r3, r2 + 8000d0c: d12b bne.n 8000d66 { /* USER CODE BEGIN USART2_MspInit 0 */ /* USER CODE END USART2_MspInit 0 */ /* Peripheral clock enable */ __HAL_RCC_USART2_CLK_ENABLE(); - 8000cd2: 2300 movs r3, #0 - 8000cd4: 613b str r3, [r7, #16] - 8000cd6: 4b18 ldr r3, [pc, #96] ; (8000d38 ) - 8000cd8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000cda: 4a17 ldr r2, [pc, #92] ; (8000d38 ) - 8000cdc: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8000ce0: 6413 str r3, [r2, #64] ; 0x40 - 8000ce2: 4b15 ldr r3, [pc, #84] ; (8000d38 ) - 8000ce4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000ce6: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8000cea: 613b str r3, [r7, #16] - 8000cec: 693b ldr r3, [r7, #16] + 8000d0e: 2300 movs r3, #0 + 8000d10: 613b str r3, [r7, #16] + 8000d12: 4b18 ldr r3, [pc, #96] ; (8000d74 ) + 8000d14: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000d16: 4a17 ldr r2, [pc, #92] ; (8000d74 ) + 8000d18: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8000d1c: 6413 str r3, [r2, #64] ; 0x40 + 8000d1e: 4b15 ldr r3, [pc, #84] ; (8000d74 ) + 8000d20: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000d22: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8000d26: 613b str r3, [r7, #16] + 8000d28: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 8000cee: 2300 movs r3, #0 - 8000cf0: 60fb str r3, [r7, #12] - 8000cf2: 4b11 ldr r3, [pc, #68] ; (8000d38 ) - 8000cf4: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000cf6: 4a10 ldr r2, [pc, #64] ; (8000d38 ) - 8000cf8: f043 0301 orr.w r3, r3, #1 - 8000cfc: 6313 str r3, [r2, #48] ; 0x30 - 8000cfe: 4b0e ldr r3, [pc, #56] ; (8000d38 ) - 8000d00: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000d02: f003 0301 and.w r3, r3, #1 - 8000d06: 60fb str r3, [r7, #12] - 8000d08: 68fb ldr r3, [r7, #12] + 8000d2a: 2300 movs r3, #0 + 8000d2c: 60fb str r3, [r7, #12] + 8000d2e: 4b11 ldr r3, [pc, #68] ; (8000d74 ) + 8000d30: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000d32: 4a10 ldr r2, [pc, #64] ; (8000d74 ) + 8000d34: f043 0301 orr.w r3, r3, #1 + 8000d38: 6313 str r3, [r2, #48] ; 0x30 + 8000d3a: 4b0e ldr r3, [pc, #56] ; (8000d74 ) + 8000d3c: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000d3e: f003 0301 and.w r3, r3, #1 + 8000d42: 60fb str r3, [r7, #12] + 8000d44: 68fb ldr r3, [r7, #12] /**USART2 GPIO Configuration PA2 ------> USART2_TX PA3 ------> USART2_RX */ GPIO_InitStruct.Pin = USART_TX_Pin|USART_RX_Pin; - 8000d0a: 230c movs r3, #12 - 8000d0c: 617b str r3, [r7, #20] + 8000d46: 230c movs r3, #12 + 8000d48: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8000d0e: 2302 movs r3, #2 - 8000d10: 61bb str r3, [r7, #24] + 8000d4a: 2302 movs r3, #2 + 8000d4c: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8000d12: 2300 movs r3, #0 - 8000d14: 61fb str r3, [r7, #28] + 8000d4e: 2300 movs r3, #0 + 8000d50: 61fb str r3, [r7, #28] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8000d16: 2303 movs r3, #3 - 8000d18: 623b str r3, [r7, #32] + 8000d52: 2303 movs r3, #3 + 8000d54: 623b str r3, [r7, #32] GPIO_InitStruct.Alternate = GPIO_AF7_USART2; - 8000d1a: 2307 movs r3, #7 - 8000d1c: 627b str r3, [r7, #36] ; 0x24 + 8000d56: 2307 movs r3, #7 + 8000d58: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000d1e: f107 0314 add.w r3, r7, #20 - 8000d22: 4619 mov r1, r3 - 8000d24: 4805 ldr r0, [pc, #20] ; (8000d3c ) - 8000d26: f000 fe73 bl 8001a10 + 8000d5a: f107 0314 add.w r3, r7, #20 + 8000d5e: 4619 mov r1, r3 + 8000d60: 4805 ldr r0, [pc, #20] ; (8000d78 ) + 8000d62: f000 fe73 bl 8001a4c /* USER CODE BEGIN USART2_MspInit 1 */ /* USER CODE END USART2_MspInit 1 */ } } - 8000d2a: bf00 nop - 8000d2c: 3728 adds r7, #40 ; 0x28 - 8000d2e: 46bd mov sp, r7 - 8000d30: bd80 pop {r7, pc} - 8000d32: bf00 nop - 8000d34: 40004400 .word 0x40004400 - 8000d38: 40023800 .word 0x40023800 - 8000d3c: 40020000 .word 0x40020000 + 8000d66: bf00 nop + 8000d68: 3728 adds r7, #40 ; 0x28 + 8000d6a: 46bd mov sp, r7 + 8000d6c: bd80 pop {r7, pc} + 8000d6e: bf00 nop + 8000d70: 40004400 .word 0x40004400 + 8000d74: 40023800 .word 0x40023800 + 8000d78: 40020000 .word 0x40020000 -08000d40 : +08000d7c : * reset by HAL_Init() or at any time when clock is configured, by HAL_RCC_ClockConfig(). * @param TickPriority: Tick interrupt priority. * @retval HAL status */ HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8000d40: b580 push {r7, lr} - 8000d42: b08c sub sp, #48 ; 0x30 - 8000d44: af00 add r7, sp, #0 - 8000d46: 6078 str r0, [r7, #4] + 8000d7c: b580 push {r7, lr} + 8000d7e: b08c sub sp, #48 ; 0x30 + 8000d80: af00 add r7, sp, #0 + 8000d82: 6078 str r0, [r7, #4] RCC_ClkInitTypeDef clkconfig; uint32_t uwTimclock = 0U; - 8000d48: 2300 movs r3, #0 - 8000d4a: 62bb str r3, [r7, #40] ; 0x28 + 8000d84: 2300 movs r3, #0 + 8000d86: 62bb str r3, [r7, #40] ; 0x28 uint32_t uwPrescalerValue = 0U; - 8000d4c: 2300 movs r3, #0 - 8000d4e: 627b str r3, [r7, #36] ; 0x24 + 8000d88: 2300 movs r3, #0 + 8000d8a: 627b str r3, [r7, #36] ; 0x24 uint32_t pFLatency; HAL_StatusTypeDef status; /* Enable TIM1 clock */ __HAL_RCC_TIM1_CLK_ENABLE(); - 8000d50: 2300 movs r3, #0 - 8000d52: 60bb str r3, [r7, #8] - 8000d54: 4b2e ldr r3, [pc, #184] ; (8000e10 ) - 8000d56: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000d58: 4a2d ldr r2, [pc, #180] ; (8000e10 ) - 8000d5a: f043 0301 orr.w r3, r3, #1 - 8000d5e: 6453 str r3, [r2, #68] ; 0x44 - 8000d60: 4b2b ldr r3, [pc, #172] ; (8000e10 ) - 8000d62: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000d64: f003 0301 and.w r3, r3, #1 - 8000d68: 60bb str r3, [r7, #8] - 8000d6a: 68bb ldr r3, [r7, #8] + 8000d8c: 2300 movs r3, #0 + 8000d8e: 60bb str r3, [r7, #8] + 8000d90: 4b2e ldr r3, [pc, #184] ; (8000e4c ) + 8000d92: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000d94: 4a2d ldr r2, [pc, #180] ; (8000e4c ) + 8000d96: f043 0301 orr.w r3, r3, #1 + 8000d9a: 6453 str r3, [r2, #68] ; 0x44 + 8000d9c: 4b2b ldr r3, [pc, #172] ; (8000e4c ) + 8000d9e: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000da0: f003 0301 and.w r3, r3, #1 + 8000da4: 60bb str r3, [r7, #8] + 8000da6: 68bb ldr r3, [r7, #8] /* Get clock configuration */ HAL_RCC_GetClockConfig(&clkconfig, &pFLatency); - 8000d6c: f107 020c add.w r2, r7, #12 - 8000d70: f107 0310 add.w r3, r7, #16 - 8000d74: 4611 mov r1, r2 - 8000d76: 4618 mov r0, r3 - 8000d78: f001 fc98 bl 80026ac + 8000da8: f107 020c add.w r2, r7, #12 + 8000dac: f107 0310 add.w r3, r7, #16 + 8000db0: 4611 mov r1, r2 + 8000db2: 4618 mov r0, r3 + 8000db4: f001 fc98 bl 80026e8 /* Compute TIM1 clock */ uwTimclock = HAL_RCC_GetPCLK2Freq(); - 8000d7c: f001 fc82 bl 8002684 - 8000d80: 62b8 str r0, [r7, #40] ; 0x28 + 8000db8: f001 fc82 bl 80026c0 + 8000dbc: 62b8 str r0, [r7, #40] ; 0x28 /* Compute the prescaler value to have TIM1 counter clock equal to 1MHz */ uwPrescalerValue = (uint32_t) ((uwTimclock / 1000000U) - 1U); - 8000d82: 6abb ldr r3, [r7, #40] ; 0x28 - 8000d84: 4a23 ldr r2, [pc, #140] ; (8000e14 ) - 8000d86: fba2 2303 umull r2, r3, r2, r3 - 8000d8a: 0c9b lsrs r3, r3, #18 - 8000d8c: 3b01 subs r3, #1 - 8000d8e: 627b str r3, [r7, #36] ; 0x24 + 8000dbe: 6abb ldr r3, [r7, #40] ; 0x28 + 8000dc0: 4a23 ldr r2, [pc, #140] ; (8000e50 ) + 8000dc2: fba2 2303 umull r2, r3, r2, r3 + 8000dc6: 0c9b lsrs r3, r3, #18 + 8000dc8: 3b01 subs r3, #1 + 8000dca: 627b str r3, [r7, #36] ; 0x24 /* Initialize TIM1 */ htim1.Instance = TIM1; - 8000d90: 4b21 ldr r3, [pc, #132] ; (8000e18 ) - 8000d92: 4a22 ldr r2, [pc, #136] ; (8000e1c ) - 8000d94: 601a str r2, [r3, #0] + 8000dcc: 4b21 ldr r3, [pc, #132] ; (8000e54 ) + 8000dce: 4a22 ldr r2, [pc, #136] ; (8000e58 ) + 8000dd0: 601a str r2, [r3, #0] + Period = [(TIM1CLK/1000) - 1]. to have a (1/1000) s time base. + Prescaler = (uwTimclock/1000000 - 1) to have a 1MHz counter clock. + ClockDivision = 0 + Counter direction = Up */ htim1.Init.Period = (1000000U / 1000U) - 1U; - 8000d96: 4b20 ldr r3, [pc, #128] ; (8000e18 ) - 8000d98: f240 32e7 movw r2, #999 ; 0x3e7 - 8000d9c: 60da str r2, [r3, #12] + 8000dd2: 4b20 ldr r3, [pc, #128] ; (8000e54 ) + 8000dd4: f240 32e7 movw r2, #999 ; 0x3e7 + 8000dd8: 60da str r2, [r3, #12] htim1.Init.Prescaler = uwPrescalerValue; - 8000d9e: 4a1e ldr r2, [pc, #120] ; (8000e18 ) - 8000da0: 6a7b ldr r3, [r7, #36] ; 0x24 - 8000da2: 6053 str r3, [r2, #4] + 8000dda: 4a1e ldr r2, [pc, #120] ; (8000e54 ) + 8000ddc: 6a7b ldr r3, [r7, #36] ; 0x24 + 8000dde: 6053 str r3, [r2, #4] htim1.Init.ClockDivision = 0; - 8000da4: 4b1c ldr r3, [pc, #112] ; (8000e18 ) - 8000da6: 2200 movs r2, #0 - 8000da8: 611a str r2, [r3, #16] + 8000de0: 4b1c ldr r3, [pc, #112] ; (8000e54 ) + 8000de2: 2200 movs r2, #0 + 8000de4: 611a str r2, [r3, #16] htim1.Init.CounterMode = TIM_COUNTERMODE_UP; - 8000daa: 4b1b ldr r3, [pc, #108] ; (8000e18 ) - 8000dac: 2200 movs r2, #0 - 8000dae: 609a str r2, [r3, #8] + 8000de6: 4b1b ldr r3, [pc, #108] ; (8000e54 ) + 8000de8: 2200 movs r2, #0 + 8000dea: 609a str r2, [r3, #8] htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 8000db0: 4b19 ldr r3, [pc, #100] ; (8000e18 ) - 8000db2: 2200 movs r2, #0 - 8000db4: 619a str r2, [r3, #24] + 8000dec: 4b19 ldr r3, [pc, #100] ; (8000e54 ) + 8000dee: 2200 movs r2, #0 + 8000df0: 619a str r2, [r3, #24] status = HAL_TIM_Base_Init(&htim1); - 8000db6: 4818 ldr r0, [pc, #96] ; (8000e18 ) - 8000db8: f001 fcaa bl 8002710 - 8000dbc: 4603 mov r3, r0 - 8000dbe: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000df2: 4818 ldr r0, [pc, #96] ; (8000e54 ) + 8000df4: f001 fcaa bl 800274c + 8000df8: 4603 mov r3, r0 + 8000dfa: f887 302f strb.w r3, [r7, #47] ; 0x2f if (status == HAL_OK) - 8000dc2: f897 302f ldrb.w r3, [r7, #47] ; 0x2f - 8000dc6: 2b00 cmp r3, #0 - 8000dc8: d11b bne.n 8000e02 + 8000dfe: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000e02: 2b00 cmp r3, #0 + 8000e04: d11b bne.n 8000e3e { /* Start the TIM time Base generation in interrupt mode */ status = HAL_TIM_Base_Start_IT(&htim1); - 8000dca: 4813 ldr r0, [pc, #76] ; (8000e18 ) - 8000dcc: f001 fcfa bl 80027c4 - 8000dd0: 4603 mov r3, r0 - 8000dd2: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000e06: 4813 ldr r0, [pc, #76] ; (8000e54 ) + 8000e08: f001 fcfa bl 8002800 + 8000e0c: 4603 mov r3, r0 + 8000e0e: f887 302f strb.w r3, [r7, #47] ; 0x2f if (status == HAL_OK) - 8000dd6: f897 302f ldrb.w r3, [r7, #47] ; 0x2f - 8000dda: 2b00 cmp r3, #0 - 8000ddc: d111 bne.n 8000e02 + 8000e12: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000e16: 2b00 cmp r3, #0 + 8000e18: d111 bne.n 8000e3e { /* Enable the TIM1 global Interrupt */ HAL_NVIC_EnableIRQ(TIM1_UP_TIM10_IRQn); - 8000dde: 2019 movs r0, #25 - 8000de0: f000 fe08 bl 80019f4 + 8000e1a: 2019 movs r0, #25 + 8000e1c: f000 fe08 bl 8001a30 /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 8000de4: 687b ldr r3, [r7, #4] - 8000de6: 2b0f cmp r3, #15 - 8000de8: d808 bhi.n 8000dfc + 8000e20: 687b ldr r3, [r7, #4] + 8000e22: 2b0f cmp r3, #15 + 8000e24: d808 bhi.n 8000e38 { /* Configure the TIM IRQ priority */ HAL_NVIC_SetPriority(TIM1_UP_TIM10_IRQn, TickPriority, 0U); - 8000dea: 2200 movs r2, #0 - 8000dec: 6879 ldr r1, [r7, #4] - 8000dee: 2019 movs r0, #25 - 8000df0: f000 fde4 bl 80019bc + 8000e26: 2200 movs r2, #0 + 8000e28: 6879 ldr r1, [r7, #4] + 8000e2a: 2019 movs r0, #25 + 8000e2c: f000 fde4 bl 80019f8 uwTickPrio = TickPriority; - 8000df4: 4a0a ldr r2, [pc, #40] ; (8000e20 ) - 8000df6: 687b ldr r3, [r7, #4] - 8000df8: 6013 str r3, [r2, #0] - 8000dfa: e002 b.n 8000e02 + 8000e30: 4a0a ldr r2, [pc, #40] ; (8000e5c ) + 8000e32: 687b ldr r3, [r7, #4] + 8000e34: 6013 str r3, [r2, #0] + 8000e36: e002 b.n 8000e3e } else { status = HAL_ERROR; - 8000dfc: 2301 movs r3, #1 - 8000dfe: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000e38: 2301 movs r3, #1 + 8000e3a: f887 302f strb.w r3, [r7, #47] ; 0x2f } } } /* Return function status */ return status; - 8000e02: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000e3e: f897 302f ldrb.w r3, [r7, #47] ; 0x2f } - 8000e06: 4618 mov r0, r3 - 8000e08: 3730 adds r7, #48 ; 0x30 - 8000e0a: 46bd mov sp, r7 - 8000e0c: bd80 pop {r7, pc} - 8000e0e: bf00 nop - 8000e10: 40023800 .word 0x40023800 - 8000e14: 431bde83 .word 0x431bde83 - 8000e18: 20000130 .word 0x20000130 - 8000e1c: 40010000 .word 0x40010000 - 8000e20: 20000004 .word 0x20000004 + 8000e42: 4618 mov r0, r3 + 8000e44: 3730 adds r7, #48 ; 0x30 + 8000e46: 46bd mov sp, r7 + 8000e48: bd80 pop {r7, pc} + 8000e4a: bf00 nop + 8000e4c: 40023800 .word 0x40023800 + 8000e50: 431bde83 .word 0x431bde83 + 8000e54: 20000130 .word 0x20000130 + 8000e58: 40010000 .word 0x40010000 + 8000e5c: 20000004 .word 0x20000004 -08000e24 : +08000e60 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 8000e24: b480 push {r7} - 8000e26: af00 add r7, sp, #0 + 8000e60: b480 push {r7} + 8000e62: 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) - 8000e28: e7fe b.n 8000e28 + 8000e64: e7fe b.n 8000e64 -08000e2a : +08000e66 : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8000e2a: b480 push {r7} - 8000e2c: af00 add r7, sp, #0 + 8000e66: b480 push {r7} + 8000e68: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8000e2e: e7fe b.n 8000e2e + 8000e6a: e7fe b.n 8000e6a -08000e30 : +08000e6c : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8000e30: b480 push {r7} - 8000e32: af00 add r7, sp, #0 + 8000e6c: b480 push {r7} + 8000e6e: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 8000e34: e7fe b.n 8000e34 + 8000e70: e7fe b.n 8000e70 -08000e36 : +08000e72 : /** * @brief This function handles Pre-fetch fault, memory access fault. */ void BusFault_Handler(void) { - 8000e36: b480 push {r7} - 8000e38: af00 add r7, sp, #0 + 8000e72: b480 push {r7} + 8000e74: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8000e3a: e7fe b.n 8000e3a + 8000e76: e7fe b.n 8000e76 -08000e3c : +08000e78 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8000e3c: b480 push {r7} - 8000e3e: af00 add r7, sp, #0 + 8000e78: b480 push {r7} + 8000e7a: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8000e40: e7fe b.n 8000e40 + 8000e7c: e7fe b.n 8000e7c -08000e42 : +08000e7e : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8000e42: b480 push {r7} - 8000e44: af00 add r7, sp, #0 + 8000e7e: b480 push {r7} + 8000e80: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 8000e46: bf00 nop - 8000e48: 46bd mov sp, r7 - 8000e4a: f85d 7b04 ldr.w r7, [sp], #4 - 8000e4e: 4770 bx lr + 8000e82: bf00 nop + 8000e84: 46bd mov sp, r7 + 8000e86: f85d 7b04 ldr.w r7, [sp], #4 + 8000e8a: 4770 bx lr -08000e50 : +08000e8c : /** * @brief This function handles ADC1 global interrupt. */ void ADC_IRQHandler(void) { - 8000e50: b580 push {r7, lr} - 8000e52: af00 add r7, sp, #0 + 8000e8c: b580 push {r7, lr} + 8000e8e: af00 add r7, sp, #0 /* USER CODE BEGIN ADC_IRQn 0 */ /* USER CODE END ADC_IRQn 0 */ HAL_ADC_IRQHandler(&hadc1); - 8000e54: 4802 ldr r0, [pc, #8] ; (8000e60 ) - 8000e56: f000 f98f bl 8001178 + 8000e90: 4802 ldr r0, [pc, #8] ; (8000e9c ) + 8000e92: f000 f98f bl 80011b4 /* USER CODE BEGIN ADC_IRQn 1 */ /* USER CODE END ADC_IRQn 1 */ } - 8000e5a: bf00 nop - 8000e5c: bd80 pop {r7, pc} - 8000e5e: bf00 nop - 8000e60: 2000007c .word 0x2000007c + 8000e96: bf00 nop + 8000e98: bd80 pop {r7, pc} + 8000e9a: bf00 nop + 8000e9c: 2000007c .word 0x2000007c -08000e64 : +08000ea0 : /** * @brief This function handles TIM1 update interrupt and TIM10 global interrupt. */ void TIM1_UP_TIM10_IRQHandler(void) { - 8000e64: b580 push {r7, lr} - 8000e66: af00 add r7, sp, #0 + 8000ea0: b580 push {r7, lr} + 8000ea2: af00 add r7, sp, #0 /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 0 */ /* USER CODE END TIM1_UP_TIM10_IRQn 0 */ HAL_TIM_IRQHandler(&htim1); - 8000e68: 4802 ldr r0, [pc, #8] ; (8000e74 ) - 8000e6a: f001 fd0d bl 8002888 + 8000ea4: 4802 ldr r0, [pc, #8] ; (8000eb0 ) + 8000ea6: f001 fd0d bl 80028c4 /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 1 */ /* USER CODE END TIM1_UP_TIM10_IRQn 1 */ } - 8000e6e: bf00 nop - 8000e70: bd80 pop {r7, pc} - 8000e72: bf00 nop - 8000e74: 20000130 .word 0x20000130 + 8000eaa: bf00 nop + 8000eac: bd80 pop {r7, pc} + 8000eae: bf00 nop + 8000eb0: 20000130 .word 0x20000130 -08000e78 : +08000eb4 : * configuration. * @param None * @retval None */ void SystemInit(void) { - 8000e78: b480 push {r7} - 8000e7a: af00 add r7, sp, #0 + 8000eb4: b480 push {r7} + 8000eb6: af00 add r7, sp, #0 /* FPU settings ------------------------------------------------------------*/ #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ - 8000e7c: 4b06 ldr r3, [pc, #24] ; (8000e98 ) - 8000e7e: f8d3 3088 ldr.w r3, [r3, #136] ; 0x88 - 8000e82: 4a05 ldr r2, [pc, #20] ; (8000e98 ) - 8000e84: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 - 8000e88: f8c2 3088 str.w r3, [r2, #136] ; 0x88 + 8000eb8: 4b06 ldr r3, [pc, #24] ; (8000ed4 ) + 8000eba: f8d3 3088 ldr.w r3, [r3, #136] ; 0x88 + 8000ebe: 4a05 ldr r2, [pc, #20] ; (8000ed4 ) + 8000ec0: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 + 8000ec4: f8c2 3088 str.w r3, [r2, #136] ; 0x88 /* 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 */ } - 8000e8c: bf00 nop - 8000e8e: 46bd mov sp, r7 - 8000e90: f85d 7b04 ldr.w r7, [sp], #4 - 8000e94: 4770 bx lr - 8000e96: bf00 nop - 8000e98: e000ed00 .word 0xe000ed00 + 8000ec8: bf00 nop + 8000eca: 46bd mov sp, r7 + 8000ecc: f85d 7b04 ldr.w r7, [sp], #4 + 8000ed0: 4770 bx lr + 8000ed2: bf00 nop + 8000ed4: e000ed00 .word 0xe000ed00 -08000e9c : +08000ed8 : .section .text.Reset_Handler .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: ldr sp, =_estack /* set stack pointer */ - 8000e9c: f8df d034 ldr.w sp, [pc, #52] ; 8000ed4 + 8000ed8: f8df d034 ldr.w sp, [pc, #52] ; 8000f10 /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 8000ea0: 480d ldr r0, [pc, #52] ; (8000ed8 ) + 8000edc: 480d ldr r0, [pc, #52] ; (8000f14 ) ldr r1, =_edata - 8000ea2: 490e ldr r1, [pc, #56] ; (8000edc ) + 8000ede: 490e ldr r1, [pc, #56] ; (8000f18 ) ldr r2, =_sidata - 8000ea4: 4a0e ldr r2, [pc, #56] ; (8000ee0 ) + 8000ee0: 4a0e ldr r2, [pc, #56] ; (8000f1c ) movs r3, #0 - 8000ea6: 2300 movs r3, #0 + 8000ee2: 2300 movs r3, #0 b LoopCopyDataInit - 8000ea8: e002 b.n 8000eb0 + 8000ee4: e002 b.n 8000eec -08000eaa : +08000ee6 : CopyDataInit: ldr r4, [r2, r3] - 8000eaa: 58d4 ldr r4, [r2, r3] + 8000ee6: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 8000eac: 50c4 str r4, [r0, r3] + 8000ee8: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 8000eae: 3304 adds r3, #4 + 8000eea: 3304 adds r3, #4 -08000eb0 : +08000eec : LoopCopyDataInit: adds r4, r0, r3 - 8000eb0: 18c4 adds r4, r0, r3 + 8000eec: 18c4 adds r4, r0, r3 cmp r4, r1 - 8000eb2: 428c cmp r4, r1 + 8000eee: 428c cmp r4, r1 bcc CopyDataInit - 8000eb4: d3f9 bcc.n 8000eaa + 8000ef0: d3f9 bcc.n 8000ee6 /* Zero fill the bss segment. */ ldr r2, =_sbss - 8000eb6: 4a0b ldr r2, [pc, #44] ; (8000ee4 ) + 8000ef2: 4a0b ldr r2, [pc, #44] ; (8000f20 ) ldr r4, =_ebss - 8000eb8: 4c0b ldr r4, [pc, #44] ; (8000ee8 ) + 8000ef4: 4c0b ldr r4, [pc, #44] ; (8000f24 ) movs r3, #0 - 8000eba: 2300 movs r3, #0 + 8000ef6: 2300 movs r3, #0 b LoopFillZerobss - 8000ebc: e001 b.n 8000ec2 + 8000ef8: e001 b.n 8000efe -08000ebe : +08000efa : FillZerobss: str r3, [r2] - 8000ebe: 6013 str r3, [r2, #0] + 8000efa: 6013 str r3, [r2, #0] adds r2, r2, #4 - 8000ec0: 3204 adds r2, #4 + 8000efc: 3204 adds r2, #4 -08000ec2 : +08000efe : LoopFillZerobss: cmp r2, r4 - 8000ec2: 42a2 cmp r2, r4 + 8000efe: 42a2 cmp r2, r4 bcc FillZerobss - 8000ec4: d3fb bcc.n 8000ebe + 8000f00: d3fb bcc.n 8000efa /* Call the clock system initialization function.*/ bl SystemInit - 8000ec6: f7ff ffd7 bl 8000e78 + 8000f02: f7ff ffd7 bl 8000eb4 /* Call static constructors */ bl __libc_init_array - 8000eca: f005 f925 bl 8006118 <__libc_init_array> + 8000f06: f005 f91f bl 8006148 <__libc_init_array> /* Call the application's entry point.*/ bl main - 8000ece: f7ff fb25 bl 800051c
+ 8000f0a: f7ff fb07 bl 800051c
bx lr - 8000ed2: 4770 bx lr + 8000f0e: 4770 bx lr ldr sp, =_estack /* set stack pointer */ - 8000ed4: 20020000 .word 0x20020000 + 8000f10: 20020000 .word 0x20020000 ldr r0, =_sdata - 8000ed8: 20000000 .word 0x20000000 + 8000f14: 20000000 .word 0x20000000 ldr r1, =_edata - 8000edc: 20000060 .word 0x20000060 + 8000f18: 20000060 .word 0x20000060 ldr r2, =_sidata - 8000ee0: 0800634c .word 0x0800634c + 8000f1c: 0800637c .word 0x0800637c ldr r2, =_sbss - 8000ee4: 20000060 .word 0x20000060 + 8000f20: 20000060 .word 0x20000060 ldr r4, =_ebss - 8000ee8: 20004ca4 .word 0x20004ca4 + 8000f24: 20004ca4 .word 0x20004ca4 -08000eec : +08000f28 : * @retval None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 8000eec: e7fe b.n 8000eec + 8000f28: e7fe b.n 8000f28 ... -08000ef0 : +08000f2c : * 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) { - 8000ef0: b580 push {r7, lr} - 8000ef2: af00 add r7, sp, #0 + 8000f2c: b580 push {r7, lr} + 8000f2e: af00 add r7, sp, #0 /* Configure Flash prefetch, Instruction cache, Data cache */ #if (INSTRUCTION_CACHE_ENABLE != 0U) __HAL_FLASH_INSTRUCTION_CACHE_ENABLE(); - 8000ef4: 4b0e ldr r3, [pc, #56] ; (8000f30 ) - 8000ef6: 681b ldr r3, [r3, #0] - 8000ef8: 4a0d ldr r2, [pc, #52] ; (8000f30 ) - 8000efa: f443 7300 orr.w r3, r3, #512 ; 0x200 - 8000efe: 6013 str r3, [r2, #0] + 8000f30: 4b0e ldr r3, [pc, #56] ; (8000f6c ) + 8000f32: 681b ldr r3, [r3, #0] + 8000f34: 4a0d ldr r2, [pc, #52] ; (8000f6c ) + 8000f36: f443 7300 orr.w r3, r3, #512 ; 0x200 + 8000f3a: 6013 str r3, [r2, #0] #endif /* INSTRUCTION_CACHE_ENABLE */ #if (DATA_CACHE_ENABLE != 0U) __HAL_FLASH_DATA_CACHE_ENABLE(); - 8000f00: 4b0b ldr r3, [pc, #44] ; (8000f30 ) - 8000f02: 681b ldr r3, [r3, #0] - 8000f04: 4a0a ldr r2, [pc, #40] ; (8000f30 ) - 8000f06: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 8000f0a: 6013 str r3, [r2, #0] + 8000f3c: 4b0b ldr r3, [pc, #44] ; (8000f6c ) + 8000f3e: 681b ldr r3, [r3, #0] + 8000f40: 4a0a ldr r2, [pc, #40] ; (8000f6c ) + 8000f42: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8000f46: 6013 str r3, [r2, #0] #endif /* DATA_CACHE_ENABLE */ #if (PREFETCH_ENABLE != 0U) __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 8000f0c: 4b08 ldr r3, [pc, #32] ; (8000f30 ) - 8000f0e: 681b ldr r3, [r3, #0] - 8000f10: 4a07 ldr r2, [pc, #28] ; (8000f30 ) - 8000f12: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8000f16: 6013 str r3, [r2, #0] + 8000f48: 4b08 ldr r3, [pc, #32] ; (8000f6c ) + 8000f4a: 681b ldr r3, [r3, #0] + 8000f4c: 4a07 ldr r2, [pc, #28] ; (8000f6c ) + 8000f4e: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8000f52: 6013 str r3, [r2, #0] #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8000f18: 2003 movs r0, #3 - 8000f1a: f000 fd44 bl 80019a6 + 8000f54: 2003 movs r0, #3 + 8000f56: f000 fd44 bl 80019e2 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 8000f1e: 200f movs r0, #15 - 8000f20: f7ff ff0e bl 8000d40 + 8000f5a: 200f movs r0, #15 + 8000f5c: f7ff ff0e bl 8000d7c /* Init the low level hardware */ HAL_MspInit(); - 8000f24: f7ff fe4c bl 8000bc0 + 8000f60: f7ff fe4c bl 8000bfc /* Return function status */ return HAL_OK; - 8000f28: 2300 movs r3, #0 + 8000f64: 2300 movs r3, #0 } - 8000f2a: 4618 mov r0, r3 - 8000f2c: bd80 pop {r7, pc} - 8000f2e: bf00 nop - 8000f30: 40023c00 .word 0x40023c00 + 8000f66: 4618 mov r0, r3 + 8000f68: bd80 pop {r7, pc} + 8000f6a: bf00 nop + 8000f6c: 40023c00 .word 0x40023c00 -08000f34 : +08000f70 : * @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) { - 8000f34: b480 push {r7} - 8000f36: af00 add r7, sp, #0 + 8000f70: b480 push {r7} + 8000f72: af00 add r7, sp, #0 uwTick += uwTickFreq; - 8000f38: 4b06 ldr r3, [pc, #24] ; (8000f54 ) - 8000f3a: 781b ldrb r3, [r3, #0] - 8000f3c: 461a mov r2, r3 - 8000f3e: 4b06 ldr r3, [pc, #24] ; (8000f58 ) - 8000f40: 681b ldr r3, [r3, #0] - 8000f42: 4413 add r3, r2 - 8000f44: 4a04 ldr r2, [pc, #16] ; (8000f58 ) - 8000f46: 6013 str r3, [r2, #0] + 8000f74: 4b06 ldr r3, [pc, #24] ; (8000f90 ) + 8000f76: 781b ldrb r3, [r3, #0] + 8000f78: 461a mov r2, r3 + 8000f7a: 4b06 ldr r3, [pc, #24] ; (8000f94 ) + 8000f7c: 681b ldr r3, [r3, #0] + 8000f7e: 4413 add r3, r2 + 8000f80: 4a04 ldr r2, [pc, #16] ; (8000f94 ) + 8000f82: 6013 str r3, [r2, #0] } - 8000f48: bf00 nop - 8000f4a: 46bd mov sp, r7 - 8000f4c: f85d 7b04 ldr.w r7, [sp], #4 - 8000f50: 4770 bx lr - 8000f52: bf00 nop - 8000f54: 20000008 .word 0x20000008 - 8000f58: 20000178 .word 0x20000178 + 8000f84: bf00 nop + 8000f86: 46bd mov sp, r7 + 8000f88: f85d 7b04 ldr.w r7, [sp], #4 + 8000f8c: 4770 bx lr + 8000f8e: bf00 nop + 8000f90: 20000008 .word 0x20000008 + 8000f94: 20000178 .word 0x20000178 -08000f5c : +08000f98 : * @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) { - 8000f5c: b480 push {r7} - 8000f5e: af00 add r7, sp, #0 + 8000f98: b480 push {r7} + 8000f9a: af00 add r7, sp, #0 return uwTick; - 8000f60: 4b03 ldr r3, [pc, #12] ; (8000f70 ) - 8000f62: 681b ldr r3, [r3, #0] + 8000f9c: 4b03 ldr r3, [pc, #12] ; (8000fac ) + 8000f9e: 681b ldr r3, [r3, #0] } - 8000f64: 4618 mov r0, r3 - 8000f66: 46bd mov sp, r7 - 8000f68: f85d 7b04 ldr.w r7, [sp], #4 - 8000f6c: 4770 bx lr - 8000f6e: bf00 nop - 8000f70: 20000178 .word 0x20000178 + 8000fa0: 4618 mov r0, r3 + 8000fa2: 46bd mov sp, r7 + 8000fa4: f85d 7b04 ldr.w r7, [sp], #4 + 8000fa8: 4770 bx lr + 8000faa: bf00 nop + 8000fac: 20000178 .word 0x20000178 -08000f74 : +08000fb0 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef* hadc) { - 8000f74: b580 push {r7, lr} - 8000f76: b084 sub sp, #16 - 8000f78: af00 add r7, sp, #0 - 8000f7a: 6078 str r0, [r7, #4] + 8000fb0: b580 push {r7, lr} + 8000fb2: b084 sub sp, #16 + 8000fb4: af00 add r7, sp, #0 + 8000fb6: 6078 str r0, [r7, #4] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 8000f7c: 2300 movs r3, #0 - 8000f7e: 73fb strb r3, [r7, #15] + 8000fb8: 2300 movs r3, #0 + 8000fba: 73fb strb r3, [r7, #15] /* Check ADC handle */ if(hadc == NULL) - 8000f80: 687b ldr r3, [r7, #4] - 8000f82: 2b00 cmp r3, #0 - 8000f84: d101 bne.n 8000f8a + 8000fbc: 687b ldr r3, [r7, #4] + 8000fbe: 2b00 cmp r3, #0 + 8000fc0: d101 bne.n 8000fc6 { return HAL_ERROR; - 8000f86: 2301 movs r3, #1 - 8000f88: e033 b.n 8000ff2 + 8000fc2: 2301 movs r3, #1 + 8000fc4: e033 b.n 800102e if(hadc->Init.ExternalTrigConv != ADC_SOFTWARE_START) { assert_param(IS_ADC_EXT_TRIG_EDGE(hadc->Init.ExternalTrigConvEdge)); } if(hadc->State == HAL_ADC_STATE_RESET) - 8000f8a: 687b ldr r3, [r7, #4] - 8000f8c: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000f8e: 2b00 cmp r3, #0 - 8000f90: d109 bne.n 8000fa6 + 8000fc6: 687b ldr r3, [r7, #4] + 8000fc8: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000fca: 2b00 cmp r3, #0 + 8000fcc: d109 bne.n 8000fe2 /* Init the low level hardware */ hadc->MspInitCallback(hadc); #else /* Init the low level hardware */ HAL_ADC_MspInit(hadc); - 8000f92: 6878 ldr r0, [r7, #4] - 8000f94: f7ff fe40 bl 8000c18 + 8000fce: 6878 ldr r0, [r7, #4] + 8000fd0: f7ff fe40 bl 8000c54 #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */ /* Initialize ADC error code */ ADC_CLEAR_ERRORCODE(hadc); - 8000f98: 687b ldr r3, [r7, #4] - 8000f9a: 2200 movs r2, #0 - 8000f9c: 645a str r2, [r3, #68] ; 0x44 + 8000fd4: 687b ldr r3, [r7, #4] + 8000fd6: 2200 movs r2, #0 + 8000fd8: 645a str r2, [r3, #68] ; 0x44 /* Allocate lock resource and initialize it */ hadc->Lock = HAL_UNLOCKED; - 8000f9e: 687b ldr r3, [r7, #4] - 8000fa0: 2200 movs r2, #0 - 8000fa2: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8000fda: 687b ldr r3, [r7, #4] + 8000fdc: 2200 movs r2, #0 + 8000fde: f883 203c strb.w r2, [r3, #60] ; 0x3c } /* Configuration of ADC parameters if previous preliminary actions are */ /* correctly completed. */ if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL)) - 8000fa6: 687b ldr r3, [r7, #4] - 8000fa8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000faa: f003 0310 and.w r3, r3, #16 - 8000fae: 2b00 cmp r3, #0 - 8000fb0: d118 bne.n 8000fe4 + 8000fe2: 687b ldr r3, [r7, #4] + 8000fe4: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000fe6: f003 0310 and.w r3, r3, #16 + 8000fea: 2b00 cmp r3, #0 + 8000fec: d118 bne.n 8001020 { /* Set ADC state */ ADC_STATE_CLR_SET(hadc->State, - 8000fb2: 687b ldr r3, [r7, #4] - 8000fb4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000fb6: f423 5388 bic.w r3, r3, #4352 ; 0x1100 - 8000fba: f023 0302 bic.w r3, r3, #2 - 8000fbe: f043 0202 orr.w r2, r3, #2 - 8000fc2: 687b ldr r3, [r7, #4] - 8000fc4: 641a str r2, [r3, #64] ; 0x40 + 8000fee: 687b ldr r3, [r7, #4] + 8000ff0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000ff2: f423 5388 bic.w r3, r3, #4352 ; 0x1100 + 8000ff6: f023 0302 bic.w r3, r3, #2 + 8000ffa: f043 0202 orr.w r2, r3, #2 + 8000ffe: 687b ldr r3, [r7, #4] + 8001000: 641a str r2, [r3, #64] ; 0x40 HAL_ADC_STATE_REG_BUSY | HAL_ADC_STATE_INJ_BUSY, HAL_ADC_STATE_BUSY_INTERNAL); /* Set ADC parameters */ ADC_Init(hadc); - 8000fc6: 6878 ldr r0, [r7, #4] - 8000fc8: f000 fb3a bl 8001640 + 8001002: 6878 ldr r0, [r7, #4] + 8001004: f000 fb3a bl 800167c /* Set ADC error code to none */ ADC_CLEAR_ERRORCODE(hadc); - 8000fcc: 687b ldr r3, [r7, #4] - 8000fce: 2200 movs r2, #0 - 8000fd0: 645a str r2, [r3, #68] ; 0x44 + 8001008: 687b ldr r3, [r7, #4] + 800100a: 2200 movs r2, #0 + 800100c: 645a str r2, [r3, #68] ; 0x44 /* Set the ADC state */ ADC_STATE_CLR_SET(hadc->State, - 8000fd2: 687b ldr r3, [r7, #4] - 8000fd4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000fd6: f023 0303 bic.w r3, r3, #3 - 8000fda: f043 0201 orr.w r2, r3, #1 - 8000fde: 687b ldr r3, [r7, #4] - 8000fe0: 641a str r2, [r3, #64] ; 0x40 - 8000fe2: e001 b.n 8000fe8 + 800100e: 687b ldr r3, [r7, #4] + 8001010: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001012: f023 0303 bic.w r3, r3, #3 + 8001016: f043 0201 orr.w r2, r3, #1 + 800101a: 687b ldr r3, [r7, #4] + 800101c: 641a str r2, [r3, #64] ; 0x40 + 800101e: e001 b.n 8001024 HAL_ADC_STATE_BUSY_INTERNAL, HAL_ADC_STATE_READY); } else { tmp_hal_status = HAL_ERROR; - 8000fe4: 2301 movs r3, #1 - 8000fe6: 73fb strb r3, [r7, #15] + 8001020: 2301 movs r3, #1 + 8001022: 73fb strb r3, [r7, #15] } /* Release Lock */ __HAL_UNLOCK(hadc); - 8000fe8: 687b ldr r3, [r7, #4] - 8000fea: 2200 movs r2, #0 - 8000fec: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001024: 687b ldr r3, [r7, #4] + 8001026: 2200 movs r2, #0 + 8001028: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Return function status */ return tmp_hal_status; - 8000ff0: 7bfb ldrb r3, [r7, #15] + 800102c: 7bfb ldrb r3, [r7, #15] } - 8000ff2: 4618 mov r0, r3 - 8000ff4: 3710 adds r7, #16 - 8000ff6: 46bd mov sp, r7 - 8000ff8: bd80 pop {r7, pc} + 800102e: 4618 mov r0, r3 + 8001030: 3710 adds r7, #16 + 8001032: 46bd mov sp, r7 + 8001034: bd80 pop {r7, pc} ... -08000ffc : +08001038 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval HAL status. */ HAL_StatusTypeDef HAL_ADC_Start_IT(ADC_HandleTypeDef* hadc) { - 8000ffc: b480 push {r7} - 8000ffe: b085 sub sp, #20 - 8001000: af00 add r7, sp, #0 - 8001002: 6078 str r0, [r7, #4] + 8001038: b480 push {r7} + 800103a: b085 sub sp, #20 + 800103c: af00 add r7, sp, #0 + 800103e: 6078 str r0, [r7, #4] __IO uint32_t counter = 0U; - 8001004: 2300 movs r3, #0 - 8001006: 60bb str r3, [r7, #8] + 8001040: 2300 movs r3, #0 + 8001042: 60bb str r3, [r7, #8] /* Check the parameters */ assert_param(IS_FUNCTIONAL_STATE(hadc->Init.ContinuousConvMode)); assert_param(IS_ADC_EXT_TRIG_EDGE(hadc->Init.ExternalTrigConvEdge)); /* Process locked */ __HAL_LOCK(hadc); - 8001008: 687b ldr r3, [r7, #4] - 800100a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 800100e: 2b01 cmp r3, #1 - 8001010: d101 bne.n 8001016 - 8001012: 2302 movs r3, #2 - 8001014: e0a1 b.n 800115a - 8001016: 687b ldr r3, [r7, #4] - 8001018: 2201 movs r2, #1 - 800101a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001044: 687b ldr r3, [r7, #4] + 8001046: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800104a: 2b01 cmp r3, #1 + 800104c: d101 bne.n 8001052 + 800104e: 2302 movs r3, #2 + 8001050: e0a1 b.n 8001196 + 8001052: 687b ldr r3, [r7, #4] + 8001054: 2201 movs r2, #1 + 8001056: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Enable the ADC peripheral */ /* Check if ADC peripheral is disabled in order to enable it and wait during Tstab time the ADC's stabilization */ if((hadc->Instance->CR2 & ADC_CR2_ADON) != ADC_CR2_ADON) - 800101e: 687b ldr r3, [r7, #4] - 8001020: 681b ldr r3, [r3, #0] - 8001022: 689b ldr r3, [r3, #8] - 8001024: f003 0301 and.w r3, r3, #1 - 8001028: 2b01 cmp r3, #1 - 800102a: d018 beq.n 800105e + 800105a: 687b ldr r3, [r7, #4] + 800105c: 681b ldr r3, [r3, #0] + 800105e: 689b ldr r3, [r3, #8] + 8001060: f003 0301 and.w r3, r3, #1 + 8001064: 2b01 cmp r3, #1 + 8001066: d018 beq.n 800109a { /* Enable the Peripheral */ __HAL_ADC_ENABLE(hadc); - 800102c: 687b ldr r3, [r7, #4] - 800102e: 681b ldr r3, [r3, #0] - 8001030: 689a ldr r2, [r3, #8] - 8001032: 687b ldr r3, [r7, #4] - 8001034: 681b ldr r3, [r3, #0] - 8001036: f042 0201 orr.w r2, r2, #1 - 800103a: 609a str r2, [r3, #8] + 8001068: 687b ldr r3, [r7, #4] + 800106a: 681b ldr r3, [r3, #0] + 800106c: 689a ldr r2, [r3, #8] + 800106e: 687b ldr r3, [r7, #4] + 8001070: 681b ldr r3, [r3, #0] + 8001072: f042 0201 orr.w r2, r2, #1 + 8001076: 609a str r2, [r3, #8] /* Delay for ADC stabilization time */ /* Compute number of CPU cycles to wait for */ counter = (ADC_STAB_DELAY_US * (SystemCoreClock / 1000000U)); - 800103c: 4b4a ldr r3, [pc, #296] ; (8001168 ) - 800103e: 681b ldr r3, [r3, #0] - 8001040: 4a4a ldr r2, [pc, #296] ; (800116c ) - 8001042: fba2 2303 umull r2, r3, r2, r3 - 8001046: 0c9a lsrs r2, r3, #18 - 8001048: 4613 mov r3, r2 - 800104a: 005b lsls r3, r3, #1 - 800104c: 4413 add r3, r2 - 800104e: 60bb str r3, [r7, #8] + 8001078: 4b4a ldr r3, [pc, #296] ; (80011a4 ) + 800107a: 681b ldr r3, [r3, #0] + 800107c: 4a4a ldr r2, [pc, #296] ; (80011a8 ) + 800107e: fba2 2303 umull r2, r3, r2, r3 + 8001082: 0c9a lsrs r2, r3, #18 + 8001084: 4613 mov r3, r2 + 8001086: 005b lsls r3, r3, #1 + 8001088: 4413 add r3, r2 + 800108a: 60bb str r3, [r7, #8] while(counter != 0U) - 8001050: e002 b.n 8001058 + 800108c: e002 b.n 8001094 { counter--; - 8001052: 68bb ldr r3, [r7, #8] - 8001054: 3b01 subs r3, #1 - 8001056: 60bb str r3, [r7, #8] + 800108e: 68bb ldr r3, [r7, #8] + 8001090: 3b01 subs r3, #1 + 8001092: 60bb str r3, [r7, #8] while(counter != 0U) - 8001058: 68bb ldr r3, [r7, #8] - 800105a: 2b00 cmp r3, #0 - 800105c: d1f9 bne.n 8001052 + 8001094: 68bb ldr r3, [r7, #8] + 8001096: 2b00 cmp r3, #0 + 8001098: d1f9 bne.n 800108e } } /* Start conversion if ADC is effectively enabled */ if(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_ADON)) - 800105e: 687b ldr r3, [r7, #4] - 8001060: 681b ldr r3, [r3, #0] - 8001062: 689b ldr r3, [r3, #8] - 8001064: f003 0301 and.w r3, r3, #1 - 8001068: 2b01 cmp r3, #1 - 800106a: d169 bne.n 8001140 + 800109a: 687b ldr r3, [r7, #4] + 800109c: 681b ldr r3, [r3, #0] + 800109e: 689b ldr r3, [r3, #8] + 80010a0: f003 0301 and.w r3, r3, #1 + 80010a4: 2b01 cmp r3, #1 + 80010a6: d169 bne.n 800117c { /* Set ADC state */ /* - Clear state bitfield related to regular group conversion results */ /* - Set state bitfield related to regular group operation */ ADC_STATE_CLR_SET(hadc->State, - 800106c: 687b ldr r3, [r7, #4] - 800106e: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001070: f423 63e0 bic.w r3, r3, #1792 ; 0x700 - 8001074: f023 0301 bic.w r3, r3, #1 - 8001078: f443 7280 orr.w r2, r3, #256 ; 0x100 - 800107c: 687b ldr r3, [r7, #4] - 800107e: 641a str r2, [r3, #64] ; 0x40 + 80010a8: 687b ldr r3, [r7, #4] + 80010aa: 6c1b ldr r3, [r3, #64] ; 0x40 + 80010ac: f423 63e0 bic.w r3, r3, #1792 ; 0x700 + 80010b0: f023 0301 bic.w r3, r3, #1 + 80010b4: f443 7280 orr.w r2, r3, #256 ; 0x100 + 80010b8: 687b ldr r3, [r7, #4] + 80010ba: 641a str r2, [r3, #64] ; 0x40 HAL_ADC_STATE_READY | HAL_ADC_STATE_REG_EOC | HAL_ADC_STATE_REG_OVR, HAL_ADC_STATE_REG_BUSY); /* If conversions on group regular are also triggering group injected, */ /* update ADC state. */ if (READ_BIT(hadc->Instance->CR1, ADC_CR1_JAUTO) != RESET) - 8001080: 687b ldr r3, [r7, #4] - 8001082: 681b ldr r3, [r3, #0] - 8001084: 685b ldr r3, [r3, #4] - 8001086: f403 6380 and.w r3, r3, #1024 ; 0x400 - 800108a: 2b00 cmp r3, #0 - 800108c: d007 beq.n 800109e + 80010bc: 687b ldr r3, [r7, #4] + 80010be: 681b ldr r3, [r3, #0] + 80010c0: 685b ldr r3, [r3, #4] + 80010c2: f403 6380 and.w r3, r3, #1024 ; 0x400 + 80010c6: 2b00 cmp r3, #0 + 80010c8: d007 beq.n 80010da { ADC_STATE_CLR_SET(hadc->State, HAL_ADC_STATE_INJ_EOC, HAL_ADC_STATE_INJ_BUSY); - 800108e: 687b ldr r3, [r7, #4] - 8001090: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001092: f423 5340 bic.w r3, r3, #12288 ; 0x3000 - 8001096: f443 5280 orr.w r2, r3, #4096 ; 0x1000 - 800109a: 687b ldr r3, [r7, #4] - 800109c: 641a str r2, [r3, #64] ; 0x40 + 80010ca: 687b ldr r3, [r7, #4] + 80010cc: 6c1b ldr r3, [r3, #64] ; 0x40 + 80010ce: f423 5340 bic.w r3, r3, #12288 ; 0x3000 + 80010d2: f443 5280 orr.w r2, r3, #4096 ; 0x1000 + 80010d6: 687b ldr r3, [r7, #4] + 80010d8: 641a str r2, [r3, #64] ; 0x40 } /* State machine update: Check if an injected conversion is ongoing */ if (HAL_IS_BIT_SET(hadc->State, HAL_ADC_STATE_INJ_BUSY)) - 800109e: 687b ldr r3, [r7, #4] - 80010a0: 6c1b ldr r3, [r3, #64] ; 0x40 - 80010a2: f403 5380 and.w r3, r3, #4096 ; 0x1000 - 80010a6: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 80010aa: d106 bne.n 80010ba + 80010da: 687b ldr r3, [r7, #4] + 80010dc: 6c1b ldr r3, [r3, #64] ; 0x40 + 80010de: f403 5380 and.w r3, r3, #4096 ; 0x1000 + 80010e2: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 80010e6: d106 bne.n 80010f6 { /* Reset ADC error code fields related to conversions on group regular */ CLEAR_BIT(hadc->ErrorCode, (HAL_ADC_ERROR_OVR | HAL_ADC_ERROR_DMA)); - 80010ac: 687b ldr r3, [r7, #4] - 80010ae: 6c5b ldr r3, [r3, #68] ; 0x44 - 80010b0: f023 0206 bic.w r2, r3, #6 - 80010b4: 687b ldr r3, [r7, #4] - 80010b6: 645a str r2, [r3, #68] ; 0x44 - 80010b8: e002 b.n 80010c0 + 80010e8: 687b ldr r3, [r7, #4] + 80010ea: 6c5b ldr r3, [r3, #68] ; 0x44 + 80010ec: f023 0206 bic.w r2, r3, #6 + 80010f0: 687b ldr r3, [r7, #4] + 80010f2: 645a str r2, [r3, #68] ; 0x44 + 80010f4: e002 b.n 80010fc } else { /* Reset ADC all error code fields */ ADC_CLEAR_ERRORCODE(hadc); - 80010ba: 687b ldr r3, [r7, #4] - 80010bc: 2200 movs r2, #0 - 80010be: 645a str r2, [r3, #68] ; 0x44 + 80010f6: 687b ldr r3, [r7, #4] + 80010f8: 2200 movs r2, #0 + 80010fa: 645a str r2, [r3, #68] ; 0x44 } /* Process unlocked */ /* Unlock before starting ADC conversions: in case of potential */ /* interruption, to let the process to ADC IRQ Handler. */ __HAL_UNLOCK(hadc); - 80010c0: 687b ldr r3, [r7, #4] - 80010c2: 2200 movs r2, #0 - 80010c4: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80010fc: 687b ldr r3, [r7, #4] + 80010fe: 2200 movs r2, #0 + 8001100: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Pointer to the common control register to which is belonging hadc */ /* (Depending on STM32F4 product, there may be up to 3 ADCs and 1 common */ /* control register) */ tmpADC_Common = ADC_COMMON_REGISTER(hadc); - 80010c8: 4b29 ldr r3, [pc, #164] ; (8001170 ) - 80010ca: 60fb str r3, [r7, #12] + 8001104: 4b29 ldr r3, [pc, #164] ; (80011ac ) + 8001106: 60fb str r3, [r7, #12] /* Clear regular group conversion flag and overrun flag */ /* (To ensure of no unknown state from potential previous ADC operations) */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_EOC | ADC_FLAG_OVR); - 80010cc: 687b ldr r3, [r7, #4] - 80010ce: 681b ldr r3, [r3, #0] - 80010d0: f06f 0222 mvn.w r2, #34 ; 0x22 - 80010d4: 601a str r2, [r3, #0] + 8001108: 687b ldr r3, [r7, #4] + 800110a: 681b ldr r3, [r3, #0] + 800110c: f06f 0222 mvn.w r2, #34 ; 0x22 + 8001110: 601a str r2, [r3, #0] /* Enable end of conversion interrupt for regular group */ __HAL_ADC_ENABLE_IT(hadc, (ADC_IT_EOC | ADC_IT_OVR)); - 80010d6: 687b ldr r3, [r7, #4] - 80010d8: 681b ldr r3, [r3, #0] - 80010da: 685b ldr r3, [r3, #4] - 80010dc: 687a ldr r2, [r7, #4] - 80010de: 6812 ldr r2, [r2, #0] - 80010e0: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 - 80010e4: f043 0320 orr.w r3, r3, #32 - 80010e8: 6053 str r3, [r2, #4] + 8001112: 687b ldr r3, [r7, #4] + 8001114: 681b ldr r3, [r3, #0] + 8001116: 685b ldr r3, [r3, #4] + 8001118: 687a ldr r2, [r7, #4] + 800111a: 6812 ldr r2, [r2, #0] + 800111c: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 + 8001120: f043 0320 orr.w r3, r3, #32 + 8001124: 6053 str r3, [r2, #4] /* Check if Multimode enabled */ if(HAL_IS_BIT_CLR(tmpADC_Common->CCR, ADC_CCR_MULTI)) - 80010ea: 68fb ldr r3, [r7, #12] - 80010ec: 685b ldr r3, [r3, #4] - 80010ee: f003 031f and.w r3, r3, #31 - 80010f2: 2b00 cmp r3, #0 - 80010f4: d10f bne.n 8001116 + 8001126: 68fb ldr r3, [r7, #12] + 8001128: 685b ldr r3, [r3, #4] + 800112a: f003 031f and.w r3, r3, #31 + 800112e: 2b00 cmp r3, #0 + 8001130: d10f bne.n 8001152 if((hadc->Instance == ADC1) || ((hadc->Instance == ADC2) && ((ADC->CCR & ADC_CCR_MULTI_Msk) < ADC_CCR_MULTI_0)) \ || ((hadc->Instance == ADC3) && ((ADC->CCR & ADC_CCR_MULTI_Msk) < ADC_CCR_MULTI_4))) { #endif /* ADC2 || ADC3 */ /* if no external trigger present enable software conversion of regular channels */ if((hadc->Instance->CR2 & ADC_CR2_EXTEN) == RESET) - 80010f6: 687b ldr r3, [r7, #4] - 80010f8: 681b ldr r3, [r3, #0] - 80010fa: 689b ldr r3, [r3, #8] - 80010fc: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 - 8001100: 2b00 cmp r3, #0 - 8001102: d129 bne.n 8001158 + 8001132: 687b ldr r3, [r7, #4] + 8001134: 681b ldr r3, [r3, #0] + 8001136: 689b ldr r3, [r3, #8] + 8001138: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 + 800113c: 2b00 cmp r3, #0 + 800113e: d129 bne.n 8001194 { /* Enable the selected ADC software conversion for regular group */ hadc->Instance->CR2 |= (uint32_t)ADC_CR2_SWSTART; - 8001104: 687b ldr r3, [r7, #4] - 8001106: 681b ldr r3, [r3, #0] - 8001108: 689a ldr r2, [r3, #8] - 800110a: 687b ldr r3, [r7, #4] - 800110c: 681b ldr r3, [r3, #0] - 800110e: f042 4280 orr.w r2, r2, #1073741824 ; 0x40000000 - 8001112: 609a str r2, [r3, #8] - 8001114: e020 b.n 8001158 + 8001140: 687b ldr r3, [r7, #4] + 8001142: 681b ldr r3, [r3, #0] + 8001144: 689a ldr r2, [r3, #8] + 8001146: 687b ldr r3, [r7, #4] + 8001148: 681b ldr r3, [r3, #0] + 800114a: f042 4280 orr.w r2, r2, #1073741824 ; 0x40000000 + 800114e: 609a str r2, [r3, #8] + 8001150: e020 b.n 8001194 #endif /* ADC2 || ADC3 */ } else { /* if instance of handle correspond to ADC1 and no external trigger present enable software conversion of regular channels */ if((hadc->Instance == ADC1) && ((hadc->Instance->CR2 & ADC_CR2_EXTEN) == RESET)) - 8001116: 687b ldr r3, [r7, #4] - 8001118: 681b ldr r3, [r3, #0] - 800111a: 4a16 ldr r2, [pc, #88] ; (8001174 ) - 800111c: 4293 cmp r3, r2 - 800111e: d11b bne.n 8001158 - 8001120: 687b ldr r3, [r7, #4] - 8001122: 681b ldr r3, [r3, #0] - 8001124: 689b ldr r3, [r3, #8] - 8001126: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 - 800112a: 2b00 cmp r3, #0 - 800112c: d114 bne.n 8001158 + 8001152: 687b ldr r3, [r7, #4] + 8001154: 681b ldr r3, [r3, #0] + 8001156: 4a16 ldr r2, [pc, #88] ; (80011b0 ) + 8001158: 4293 cmp r3, r2 + 800115a: d11b bne.n 8001194 + 800115c: 687b ldr r3, [r7, #4] + 800115e: 681b ldr r3, [r3, #0] + 8001160: 689b ldr r3, [r3, #8] + 8001162: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 + 8001166: 2b00 cmp r3, #0 + 8001168: d114 bne.n 8001194 { /* Enable the selected ADC software conversion for regular group */ hadc->Instance->CR2 |= (uint32_t)ADC_CR2_SWSTART; - 800112e: 687b ldr r3, [r7, #4] - 8001130: 681b ldr r3, [r3, #0] - 8001132: 689a ldr r2, [r3, #8] - 8001134: 687b ldr r3, [r7, #4] - 8001136: 681b ldr r3, [r3, #0] - 8001138: f042 4280 orr.w r2, r2, #1073741824 ; 0x40000000 - 800113c: 609a str r2, [r3, #8] - 800113e: e00b b.n 8001158 + 800116a: 687b ldr r3, [r7, #4] + 800116c: 681b ldr r3, [r3, #0] + 800116e: 689a ldr r2, [r3, #8] + 8001170: 687b ldr r3, [r7, #4] + 8001172: 681b ldr r3, [r3, #0] + 8001174: f042 4280 orr.w r2, r2, #1073741824 ; 0x40000000 + 8001178: 609a str r2, [r3, #8] + 800117a: e00b b.n 8001194 } } else { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL); - 8001140: 687b ldr r3, [r7, #4] - 8001142: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001144: f043 0210 orr.w r2, r3, #16 - 8001148: 687b ldr r3, [r7, #4] - 800114a: 641a str r2, [r3, #64] ; 0x40 + 800117c: 687b ldr r3, [r7, #4] + 800117e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001180: f043 0210 orr.w r2, r3, #16 + 8001184: 687b ldr r3, [r7, #4] + 8001186: 641a str r2, [r3, #64] ; 0x40 /* Set ADC error code to ADC IP internal error */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_INTERNAL); - 800114c: 687b ldr r3, [r7, #4] - 800114e: 6c5b ldr r3, [r3, #68] ; 0x44 - 8001150: f043 0201 orr.w r2, r3, #1 - 8001154: 687b ldr r3, [r7, #4] - 8001156: 645a str r2, [r3, #68] ; 0x44 + 8001188: 687b ldr r3, [r7, #4] + 800118a: 6c5b ldr r3, [r3, #68] ; 0x44 + 800118c: f043 0201 orr.w r2, r3, #1 + 8001190: 687b ldr r3, [r7, #4] + 8001192: 645a str r2, [r3, #68] ; 0x44 } /* Return function status */ return HAL_OK; - 8001158: 2300 movs r3, #0 + 8001194: 2300 movs r3, #0 } - 800115a: 4618 mov r0, r3 - 800115c: 3714 adds r7, #20 - 800115e: 46bd mov sp, r7 - 8001160: f85d 7b04 ldr.w r7, [sp], #4 - 8001164: 4770 bx lr - 8001166: bf00 nop - 8001168: 20000000 .word 0x20000000 - 800116c: 431bde83 .word 0x431bde83 - 8001170: 40012300 .word 0x40012300 - 8001174: 40012000 .word 0x40012000 + 8001196: 4618 mov r0, r3 + 8001198: 3714 adds r7, #20 + 800119a: 46bd mov sp, r7 + 800119c: f85d 7b04 ldr.w r7, [sp], #4 + 80011a0: 4770 bx lr + 80011a2: bf00 nop + 80011a4: 20000000 .word 0x20000000 + 80011a8: 431bde83 .word 0x431bde83 + 80011ac: 40012300 .word 0x40012300 + 80011b0: 40012000 .word 0x40012000 -08001178 : +080011b4 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval None */ void HAL_ADC_IRQHandler(ADC_HandleTypeDef* hadc) { - 8001178: b580 push {r7, lr} - 800117a: b086 sub sp, #24 - 800117c: af00 add r7, sp, #0 - 800117e: 6078 str r0, [r7, #4] + 80011b4: b580 push {r7, lr} + 80011b6: b086 sub sp, #24 + 80011b8: af00 add r7, sp, #0 + 80011ba: 6078 str r0, [r7, #4] uint32_t tmp1 = 0U, tmp2 = 0U; - 8001180: 2300 movs r3, #0 - 8001182: 617b str r3, [r7, #20] - 8001184: 2300 movs r3, #0 - 8001186: 613b str r3, [r7, #16] + 80011bc: 2300 movs r3, #0 + 80011be: 617b str r3, [r7, #20] + 80011c0: 2300 movs r3, #0 + 80011c2: 613b str r3, [r7, #16] uint32_t tmp_sr = hadc->Instance->SR; - 8001188: 687b ldr r3, [r7, #4] - 800118a: 681b ldr r3, [r3, #0] - 800118c: 681b ldr r3, [r3, #0] - 800118e: 60fb str r3, [r7, #12] + 80011c4: 687b ldr r3, [r7, #4] + 80011c6: 681b ldr r3, [r3, #0] + 80011c8: 681b ldr r3, [r3, #0] + 80011ca: 60fb str r3, [r7, #12] uint32_t tmp_cr1 = hadc->Instance->CR1; - 8001190: 687b ldr r3, [r7, #4] - 8001192: 681b ldr r3, [r3, #0] - 8001194: 685b ldr r3, [r3, #4] - 8001196: 60bb str r3, [r7, #8] + 80011cc: 687b ldr r3, [r7, #4] + 80011ce: 681b ldr r3, [r3, #0] + 80011d0: 685b ldr r3, [r3, #4] + 80011d2: 60bb str r3, [r7, #8] /* Check the parameters */ assert_param(IS_FUNCTIONAL_STATE(hadc->Init.ContinuousConvMode)); assert_param(IS_ADC_REGULAR_LENGTH(hadc->Init.NbrOfConversion)); assert_param(IS_ADC_EOCSelection(hadc->Init.EOCSelection)); tmp1 = tmp_sr & ADC_FLAG_EOC; - 8001198: 68fb ldr r3, [r7, #12] - 800119a: f003 0302 and.w r3, r3, #2 - 800119e: 617b str r3, [r7, #20] + 80011d4: 68fb ldr r3, [r7, #12] + 80011d6: f003 0302 and.w r3, r3, #2 + 80011da: 617b str r3, [r7, #20] tmp2 = tmp_cr1 & ADC_IT_EOC; - 80011a0: 68bb ldr r3, [r7, #8] - 80011a2: f003 0320 and.w r3, r3, #32 - 80011a6: 613b str r3, [r7, #16] + 80011dc: 68bb ldr r3, [r7, #8] + 80011de: f003 0320 and.w r3, r3, #32 + 80011e2: 613b str r3, [r7, #16] /* Check End of conversion flag for regular channels */ if(tmp1 && tmp2) - 80011a8: 697b ldr r3, [r7, #20] - 80011aa: 2b00 cmp r3, #0 - 80011ac: d049 beq.n 8001242 - 80011ae: 693b ldr r3, [r7, #16] - 80011b0: 2b00 cmp r3, #0 - 80011b2: d046 beq.n 8001242 + 80011e4: 697b ldr r3, [r7, #20] + 80011e6: 2b00 cmp r3, #0 + 80011e8: d049 beq.n 800127e + 80011ea: 693b ldr r3, [r7, #16] + 80011ec: 2b00 cmp r3, #0 + 80011ee: d046 beq.n 800127e { /* Update state machine on conversion status if not in error state */ if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL)) - 80011b4: 687b ldr r3, [r7, #4] - 80011b6: 6c1b ldr r3, [r3, #64] ; 0x40 - 80011b8: f003 0310 and.w r3, r3, #16 - 80011bc: 2b00 cmp r3, #0 - 80011be: d105 bne.n 80011cc + 80011f0: 687b ldr r3, [r7, #4] + 80011f2: 6c1b ldr r3, [r3, #64] ; 0x40 + 80011f4: f003 0310 and.w r3, r3, #16 + 80011f8: 2b00 cmp r3, #0 + 80011fa: d105 bne.n 8001208 { /* Set ADC state */ SET_BIT(hadc->State, HAL_ADC_STATE_REG_EOC); - 80011c0: 687b ldr r3, [r7, #4] - 80011c2: 6c1b ldr r3, [r3, #64] ; 0x40 - 80011c4: f443 7200 orr.w r2, r3, #512 ; 0x200 - 80011c8: 687b ldr r3, [r7, #4] - 80011ca: 641a str r2, [r3, #64] ; 0x40 + 80011fc: 687b ldr r3, [r7, #4] + 80011fe: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001200: f443 7200 orr.w r2, r3, #512 ; 0x200 + 8001204: 687b ldr r3, [r7, #4] + 8001206: 641a str r2, [r3, #64] ; 0x40 /* by external trigger, continuous mode or scan sequence on going. */ /* Note: On STM32F4, there is no independent flag of end of sequence. */ /* The test of scan sequence on going is done either with scan */ /* sequence disabled or with end of conversion flag set to */ /* of end of sequence. */ if(ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 80011cc: 687b ldr r3, [r7, #4] - 80011ce: 681b ldr r3, [r3, #0] - 80011d0: 689b ldr r3, [r3, #8] - 80011d2: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 - 80011d6: 2b00 cmp r3, #0 - 80011d8: d12b bne.n 8001232 + 8001208: 687b ldr r3, [r7, #4] + 800120a: 681b ldr r3, [r3, #0] + 800120c: 689b ldr r3, [r3, #8] + 800120e: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 + 8001212: 2b00 cmp r3, #0 + 8001214: d12b bne.n 800126e (hadc->Init.ContinuousConvMode == DISABLE) && - 80011da: 687b ldr r3, [r7, #4] - 80011dc: 7e1b ldrb r3, [r3, #24] + 8001216: 687b ldr r3, [r7, #4] + 8001218: 7e1b ldrb r3, [r3, #24] if(ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 80011de: 2b00 cmp r3, #0 - 80011e0: d127 bne.n 8001232 + 800121a: 2b00 cmp r3, #0 + 800121c: d127 bne.n 800126e (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) || - 80011e2: 687b ldr r3, [r7, #4] - 80011e4: 681b ldr r3, [r3, #0] - 80011e6: 6adb ldr r3, [r3, #44] ; 0x2c - 80011e8: f403 0370 and.w r3, r3, #15728640 ; 0xf00000 + 800121e: 687b ldr r3, [r7, #4] + 8001220: 681b ldr r3, [r3, #0] + 8001222: 6adb ldr r3, [r3, #44] ; 0x2c + 8001224: f403 0370 and.w r3, r3, #15728640 ; 0xf00000 (hadc->Init.ContinuousConvMode == DISABLE) && - 80011ec: 2b00 cmp r3, #0 - 80011ee: d006 beq.n 80011fe + 8001228: 2b00 cmp r3, #0 + 800122a: d006 beq.n 800123a HAL_IS_BIT_CLR(hadc->Instance->CR2, ADC_CR2_EOCS) ) ) - 80011f0: 687b ldr r3, [r7, #4] - 80011f2: 681b ldr r3, [r3, #0] - 80011f4: 689b ldr r3, [r3, #8] - 80011f6: f403 6380 and.w r3, r3, #1024 ; 0x400 + 800122c: 687b ldr r3, [r7, #4] + 800122e: 681b ldr r3, [r3, #0] + 8001230: 689b ldr r3, [r3, #8] + 8001232: f403 6380 and.w r3, r3, #1024 ; 0x400 (HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) || - 80011fa: 2b00 cmp r3, #0 - 80011fc: d119 bne.n 8001232 + 8001236: 2b00 cmp r3, #0 + 8001238: d119 bne.n 800126e { /* Disable ADC end of single conversion interrupt on group regular */ /* Note: Overrun interrupt was enabled with EOC interrupt in */ /* HAL_ADC_Start_IT(), but is not disabled here because can be used */ /* by overrun IRQ process below. */ __HAL_ADC_DISABLE_IT(hadc, ADC_IT_EOC); - 80011fe: 687b ldr r3, [r7, #4] - 8001200: 681b ldr r3, [r3, #0] - 8001202: 685a ldr r2, [r3, #4] - 8001204: 687b ldr r3, [r7, #4] - 8001206: 681b ldr r3, [r3, #0] - 8001208: f022 0220 bic.w r2, r2, #32 - 800120c: 605a str r2, [r3, #4] + 800123a: 687b ldr r3, [r7, #4] + 800123c: 681b ldr r3, [r3, #0] + 800123e: 685a ldr r2, [r3, #4] + 8001240: 687b ldr r3, [r7, #4] + 8001242: 681b ldr r3, [r3, #0] + 8001244: f022 0220 bic.w r2, r2, #32 + 8001248: 605a str r2, [r3, #4] /* Set ADC state */ CLEAR_BIT(hadc->State, HAL_ADC_STATE_REG_BUSY); - 800120e: 687b ldr r3, [r7, #4] - 8001210: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001212: f423 7280 bic.w r2, r3, #256 ; 0x100 - 8001216: 687b ldr r3, [r7, #4] - 8001218: 641a str r2, [r3, #64] ; 0x40 + 800124a: 687b ldr r3, [r7, #4] + 800124c: 6c1b ldr r3, [r3, #64] ; 0x40 + 800124e: f423 7280 bic.w r2, r3, #256 ; 0x100 + 8001252: 687b ldr r3, [r7, #4] + 8001254: 641a str r2, [r3, #64] ; 0x40 if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_INJ_BUSY)) - 800121a: 687b ldr r3, [r7, #4] - 800121c: 6c1b ldr r3, [r3, #64] ; 0x40 - 800121e: f403 5380 and.w r3, r3, #4096 ; 0x1000 - 8001222: 2b00 cmp r3, #0 - 8001224: d105 bne.n 8001232 + 8001256: 687b ldr r3, [r7, #4] + 8001258: 6c1b ldr r3, [r3, #64] ; 0x40 + 800125a: f403 5380 and.w r3, r3, #4096 ; 0x1000 + 800125e: 2b00 cmp r3, #0 + 8001260: d105 bne.n 800126e { SET_BIT(hadc->State, HAL_ADC_STATE_READY); - 8001226: 687b ldr r3, [r7, #4] - 8001228: 6c1b ldr r3, [r3, #64] ; 0x40 - 800122a: f043 0201 orr.w r2, r3, #1 - 800122e: 687b ldr r3, [r7, #4] - 8001230: 641a str r2, [r3, #64] ; 0x40 + 8001262: 687b ldr r3, [r7, #4] + 8001264: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001266: f043 0201 orr.w r2, r3, #1 + 800126a: 687b ldr r3, [r7, #4] + 800126c: 641a str r2, [r3, #64] ; 0x40 /* Conversion complete callback */ #if (USE_HAL_ADC_REGISTER_CALLBACKS == 1) hadc->ConvCpltCallback(hadc); #else HAL_ADC_ConvCpltCallback(hadc); - 8001232: 6878 ldr r0, [r7, #4] - 8001234: f7ff f952 bl 80004dc + 800126e: 6878 ldr r0, [r7, #4] + 8001270: f7ff f934 bl 80004dc #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */ /* Clear regular group conversion flag */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_STRT | ADC_FLAG_EOC); - 8001238: 687b ldr r3, [r7, #4] - 800123a: 681b ldr r3, [r3, #0] - 800123c: f06f 0212 mvn.w r2, #18 - 8001240: 601a str r2, [r3, #0] + 8001274: 687b ldr r3, [r7, #4] + 8001276: 681b ldr r3, [r3, #0] + 8001278: f06f 0212 mvn.w r2, #18 + 800127c: 601a str r2, [r3, #0] } tmp1 = tmp_sr & ADC_FLAG_JEOC; - 8001242: 68fb ldr r3, [r7, #12] - 8001244: f003 0304 and.w r3, r3, #4 - 8001248: 617b str r3, [r7, #20] + 800127e: 68fb ldr r3, [r7, #12] + 8001280: f003 0304 and.w r3, r3, #4 + 8001284: 617b str r3, [r7, #20] tmp2 = tmp_cr1 & ADC_IT_JEOC; - 800124a: 68bb ldr r3, [r7, #8] - 800124c: f003 0380 and.w r3, r3, #128 ; 0x80 - 8001250: 613b str r3, [r7, #16] + 8001286: 68bb ldr r3, [r7, #8] + 8001288: f003 0380 and.w r3, r3, #128 ; 0x80 + 800128c: 613b str r3, [r7, #16] /* Check End of conversion flag for injected channels */ if(tmp1 && tmp2) - 8001252: 697b ldr r3, [r7, #20] - 8001254: 2b00 cmp r3, #0 - 8001256: d057 beq.n 8001308 - 8001258: 693b ldr r3, [r7, #16] - 800125a: 2b00 cmp r3, #0 - 800125c: d054 beq.n 8001308 + 800128e: 697b ldr r3, [r7, #20] + 8001290: 2b00 cmp r3, #0 + 8001292: d057 beq.n 8001344 + 8001294: 693b ldr r3, [r7, #16] + 8001296: 2b00 cmp r3, #0 + 8001298: d054 beq.n 8001344 { /* Update state machine on conversion status if not in error state */ if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL)) - 800125e: 687b ldr r3, [r7, #4] - 8001260: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001262: f003 0310 and.w r3, r3, #16 - 8001266: 2b00 cmp r3, #0 - 8001268: d105 bne.n 8001276 + 800129a: 687b ldr r3, [r7, #4] + 800129c: 6c1b ldr r3, [r3, #64] ; 0x40 + 800129e: f003 0310 and.w r3, r3, #16 + 80012a2: 2b00 cmp r3, #0 + 80012a4: d105 bne.n 80012b2 { /* Set ADC state */ SET_BIT(hadc->State, HAL_ADC_STATE_INJ_EOC); - 800126a: 687b ldr r3, [r7, #4] - 800126c: 6c1b ldr r3, [r3, #64] ; 0x40 - 800126e: f443 5200 orr.w r2, r3, #8192 ; 0x2000 - 8001272: 687b ldr r3, [r7, #4] - 8001274: 641a str r2, [r3, #64] ; 0x40 + 80012a6: 687b ldr r3, [r7, #4] + 80012a8: 6c1b ldr r3, [r3, #64] ; 0x40 + 80012aa: f443 5200 orr.w r2, r3, #8192 ; 0x2000 + 80012ae: 687b ldr r3, [r7, #4] + 80012b0: 641a str r2, [r3, #64] ; 0x40 /* Determine whether any further conversion upcoming on group injected */ /* by external trigger, scan sequence on going or by automatic injected */ /* conversion from group regular (same conditions as group regular */ /* interruption disabling above). */ if(ADC_IS_SOFTWARE_START_INJECTED(hadc) && - 8001276: 687b ldr r3, [r7, #4] - 8001278: 681b ldr r3, [r3, #0] - 800127a: 689b ldr r3, [r3, #8] - 800127c: f403 1340 and.w r3, r3, #3145728 ; 0x300000 - 8001280: 2b00 cmp r3, #0 - 8001282: d139 bne.n 80012f8 + 80012b2: 687b ldr r3, [r7, #4] + 80012b4: 681b ldr r3, [r3, #0] + 80012b6: 689b ldr r3, [r3, #8] + 80012b8: f403 1340 and.w r3, r3, #3145728 ; 0x300000 + 80012bc: 2b00 cmp r3, #0 + 80012be: d139 bne.n 8001334 (HAL_IS_BIT_CLR(hadc->Instance->JSQR, ADC_JSQR_JL) || - 8001284: 687b ldr r3, [r7, #4] - 8001286: 681b ldr r3, [r3, #0] - 8001288: 6b9b ldr r3, [r3, #56] ; 0x38 - 800128a: f403 1340 and.w r3, r3, #3145728 ; 0x300000 + 80012c0: 687b ldr r3, [r7, #4] + 80012c2: 681b ldr r3, [r3, #0] + 80012c4: 6b9b ldr r3, [r3, #56] ; 0x38 + 80012c6: f403 1340 and.w r3, r3, #3145728 ; 0x300000 if(ADC_IS_SOFTWARE_START_INJECTED(hadc) && - 800128e: 2b00 cmp r3, #0 - 8001290: d006 beq.n 80012a0 + 80012ca: 2b00 cmp r3, #0 + 80012cc: d006 beq.n 80012dc HAL_IS_BIT_CLR(hadc->Instance->CR2, ADC_CR2_EOCS) ) && - 8001292: 687b ldr r3, [r7, #4] - 8001294: 681b ldr r3, [r3, #0] - 8001296: 689b ldr r3, [r3, #8] - 8001298: f403 6380 and.w r3, r3, #1024 ; 0x400 + 80012ce: 687b ldr r3, [r7, #4] + 80012d0: 681b ldr r3, [r3, #0] + 80012d2: 689b ldr r3, [r3, #8] + 80012d4: f403 6380 and.w r3, r3, #1024 ; 0x400 (HAL_IS_BIT_CLR(hadc->Instance->JSQR, ADC_JSQR_JL) || - 800129c: 2b00 cmp r3, #0 - 800129e: d12b bne.n 80012f8 + 80012d8: 2b00 cmp r3, #0 + 80012da: d12b bne.n 8001334 (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO) && - 80012a0: 687b ldr r3, [r7, #4] - 80012a2: 681b ldr r3, [r3, #0] - 80012a4: 685b ldr r3, [r3, #4] - 80012a6: f403 6380 and.w r3, r3, #1024 ; 0x400 + 80012dc: 687b ldr r3, [r7, #4] + 80012de: 681b ldr r3, [r3, #0] + 80012e0: 685b ldr r3, [r3, #4] + 80012e2: f403 6380 and.w r3, r3, #1024 ; 0x400 HAL_IS_BIT_CLR(hadc->Instance->CR2, ADC_CR2_EOCS) ) && - 80012aa: 2b00 cmp r3, #0 - 80012ac: d124 bne.n 80012f8 + 80012e6: 2b00 cmp r3, #0 + 80012e8: d124 bne.n 8001334 (ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 80012ae: 687b ldr r3, [r7, #4] - 80012b0: 681b ldr r3, [r3, #0] - 80012b2: 689b ldr r3, [r3, #8] - 80012b4: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 + 80012ea: 687b ldr r3, [r7, #4] + 80012ec: 681b ldr r3, [r3, #0] + 80012ee: 689b ldr r3, [r3, #8] + 80012f0: f003 5340 and.w r3, r3, #805306368 ; 0x30000000 (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_JAUTO) && - 80012b8: 2b00 cmp r3, #0 - 80012ba: d11d bne.n 80012f8 + 80012f4: 2b00 cmp r3, #0 + 80012f6: d11d bne.n 8001334 (hadc->Init.ContinuousConvMode == DISABLE) ) ) ) - 80012bc: 687b ldr r3, [r7, #4] - 80012be: 7e1b ldrb r3, [r3, #24] + 80012f8: 687b ldr r3, [r7, #4] + 80012fa: 7e1b ldrb r3, [r3, #24] (ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 80012c0: 2b00 cmp r3, #0 - 80012c2: d119 bne.n 80012f8 + 80012fc: 2b00 cmp r3, #0 + 80012fe: d119 bne.n 8001334 { /* Disable ADC end of single conversion interrupt on group injected */ __HAL_ADC_DISABLE_IT(hadc, ADC_IT_JEOC); - 80012c4: 687b ldr r3, [r7, #4] - 80012c6: 681b ldr r3, [r3, #0] - 80012c8: 685a ldr r2, [r3, #4] - 80012ca: 687b ldr r3, [r7, #4] - 80012cc: 681b ldr r3, [r3, #0] - 80012ce: f022 0280 bic.w r2, r2, #128 ; 0x80 - 80012d2: 605a str r2, [r3, #4] + 8001300: 687b ldr r3, [r7, #4] + 8001302: 681b ldr r3, [r3, #0] + 8001304: 685a ldr r2, [r3, #4] + 8001306: 687b ldr r3, [r7, #4] + 8001308: 681b ldr r3, [r3, #0] + 800130a: f022 0280 bic.w r2, r2, #128 ; 0x80 + 800130e: 605a str r2, [r3, #4] /* Set ADC state */ CLEAR_BIT(hadc->State, HAL_ADC_STATE_INJ_BUSY); - 80012d4: 687b ldr r3, [r7, #4] - 80012d6: 6c1b ldr r3, [r3, #64] ; 0x40 - 80012d8: f423 5280 bic.w r2, r3, #4096 ; 0x1000 - 80012dc: 687b ldr r3, [r7, #4] - 80012de: 641a str r2, [r3, #64] ; 0x40 + 8001310: 687b ldr r3, [r7, #4] + 8001312: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001314: f423 5280 bic.w r2, r3, #4096 ; 0x1000 + 8001318: 687b ldr r3, [r7, #4] + 800131a: 641a str r2, [r3, #64] ; 0x40 if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_REG_BUSY)) - 80012e0: 687b ldr r3, [r7, #4] - 80012e2: 6c1b ldr r3, [r3, #64] ; 0x40 - 80012e4: f403 7380 and.w r3, r3, #256 ; 0x100 - 80012e8: 2b00 cmp r3, #0 - 80012ea: d105 bne.n 80012f8 + 800131c: 687b ldr r3, [r7, #4] + 800131e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001320: f403 7380 and.w r3, r3, #256 ; 0x100 + 8001324: 2b00 cmp r3, #0 + 8001326: d105 bne.n 8001334 { SET_BIT(hadc->State, HAL_ADC_STATE_READY); - 80012ec: 687b ldr r3, [r7, #4] - 80012ee: 6c1b ldr r3, [r3, #64] ; 0x40 - 80012f0: f043 0201 orr.w r2, r3, #1 - 80012f4: 687b ldr r3, [r7, #4] - 80012f6: 641a str r2, [r3, #64] ; 0x40 + 8001328: 687b ldr r3, [r7, #4] + 800132a: 6c1b ldr r3, [r3, #64] ; 0x40 + 800132c: f043 0201 orr.w r2, r3, #1 + 8001330: 687b ldr r3, [r7, #4] + 8001332: 641a str r2, [r3, #64] ; 0x40 /* Conversion complete callback */ /* Conversion complete callback */ #if (USE_HAL_ADC_REGISTER_CALLBACKS == 1) hadc->InjectedConvCpltCallback(hadc); #else HAL_ADCEx_InjectedConvCpltCallback(hadc); - 80012f8: 6878 ldr r0, [r7, #4] - 80012fa: f000 fa9d bl 8001838 + 8001334: 6878 ldr r0, [r7, #4] + 8001336: f000 fa9d bl 8001874 #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */ /* Clear injected group conversion flag */ __HAL_ADC_CLEAR_FLAG(hadc, (ADC_FLAG_JSTRT | ADC_FLAG_JEOC)); - 80012fe: 687b ldr r3, [r7, #4] - 8001300: 681b ldr r3, [r3, #0] - 8001302: f06f 020c mvn.w r2, #12 - 8001306: 601a str r2, [r3, #0] + 800133a: 687b ldr r3, [r7, #4] + 800133c: 681b ldr r3, [r3, #0] + 800133e: f06f 020c mvn.w r2, #12 + 8001342: 601a str r2, [r3, #0] } tmp1 = tmp_sr & ADC_FLAG_AWD; - 8001308: 68fb ldr r3, [r7, #12] - 800130a: f003 0301 and.w r3, r3, #1 - 800130e: 617b str r3, [r7, #20] + 8001344: 68fb ldr r3, [r7, #12] + 8001346: f003 0301 and.w r3, r3, #1 + 800134a: 617b str r3, [r7, #20] tmp2 = tmp_cr1 & ADC_IT_AWD; - 8001310: 68bb ldr r3, [r7, #8] - 8001312: f003 0340 and.w r3, r3, #64 ; 0x40 - 8001316: 613b str r3, [r7, #16] + 800134c: 68bb ldr r3, [r7, #8] + 800134e: f003 0340 and.w r3, r3, #64 ; 0x40 + 8001352: 613b str r3, [r7, #16] /* Check Analog watchdog flag */ if(tmp1 && tmp2) - 8001318: 697b ldr r3, [r7, #20] - 800131a: 2b00 cmp r3, #0 - 800131c: d017 beq.n 800134e - 800131e: 693b ldr r3, [r7, #16] - 8001320: 2b00 cmp r3, #0 - 8001322: d014 beq.n 800134e + 8001354: 697b ldr r3, [r7, #20] + 8001356: 2b00 cmp r3, #0 + 8001358: d017 beq.n 800138a + 800135a: 693b ldr r3, [r7, #16] + 800135c: 2b00 cmp r3, #0 + 800135e: d014 beq.n 800138a { if(__HAL_ADC_GET_FLAG(hadc, ADC_FLAG_AWD)) - 8001324: 687b ldr r3, [r7, #4] - 8001326: 681b ldr r3, [r3, #0] - 8001328: 681b ldr r3, [r3, #0] - 800132a: f003 0301 and.w r3, r3, #1 - 800132e: 2b01 cmp r3, #1 - 8001330: d10d bne.n 800134e + 8001360: 687b ldr r3, [r7, #4] + 8001362: 681b ldr r3, [r3, #0] + 8001364: 681b ldr r3, [r3, #0] + 8001366: f003 0301 and.w r3, r3, #1 + 800136a: 2b01 cmp r3, #1 + 800136c: d10d bne.n 800138a { /* Set ADC state */ SET_BIT(hadc->State, HAL_ADC_STATE_AWD1); - 8001332: 687b ldr r3, [r7, #4] - 8001334: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001336: f443 3280 orr.w r2, r3, #65536 ; 0x10000 - 800133a: 687b ldr r3, [r7, #4] - 800133c: 641a str r2, [r3, #64] ; 0x40 + 800136e: 687b ldr r3, [r7, #4] + 8001370: 6c1b ldr r3, [r3, #64] ; 0x40 + 8001372: f443 3280 orr.w r2, r3, #65536 ; 0x10000 + 8001376: 687b ldr r3, [r7, #4] + 8001378: 641a str r2, [r3, #64] ; 0x40 /* Level out of window callback */ #if (USE_HAL_ADC_REGISTER_CALLBACKS == 1) hadc->LevelOutOfWindowCallback(hadc); #else HAL_ADC_LevelOutOfWindowCallback(hadc); - 800133e: 6878 ldr r0, [r7, #4] - 8001340: f000 f837 bl 80013b2 + 800137a: 6878 ldr r0, [r7, #4] + 800137c: f000 f837 bl 80013ee #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */ /* Clear the ADC analog watchdog flag */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_AWD); - 8001344: 687b ldr r3, [r7, #4] - 8001346: 681b ldr r3, [r3, #0] - 8001348: f06f 0201 mvn.w r2, #1 - 800134c: 601a str r2, [r3, #0] + 8001380: 687b ldr r3, [r7, #4] + 8001382: 681b ldr r3, [r3, #0] + 8001384: f06f 0201 mvn.w r2, #1 + 8001388: 601a str r2, [r3, #0] } } tmp1 = tmp_sr & ADC_FLAG_OVR; - 800134e: 68fb ldr r3, [r7, #12] - 8001350: f003 0320 and.w r3, r3, #32 - 8001354: 617b str r3, [r7, #20] + 800138a: 68fb ldr r3, [r7, #12] + 800138c: f003 0320 and.w r3, r3, #32 + 8001390: 617b str r3, [r7, #20] tmp2 = tmp_cr1 & ADC_IT_OVR; - 8001356: 68bb ldr r3, [r7, #8] - 8001358: f003 6380 and.w r3, r3, #67108864 ; 0x4000000 - 800135c: 613b str r3, [r7, #16] + 8001392: 68bb ldr r3, [r7, #8] + 8001394: f003 6380 and.w r3, r3, #67108864 ; 0x4000000 + 8001398: 613b str r3, [r7, #16] /* Check Overrun flag */ if(tmp1 && tmp2) - 800135e: 697b ldr r3, [r7, #20] - 8001360: 2b00 cmp r3, #0 - 8001362: d015 beq.n 8001390 - 8001364: 693b ldr r3, [r7, #16] - 8001366: 2b00 cmp r3, #0 - 8001368: d012 beq.n 8001390 + 800139a: 697b ldr r3, [r7, #20] + 800139c: 2b00 cmp r3, #0 + 800139e: d015 beq.n 80013cc + 80013a0: 693b ldr r3, [r7, #16] + 80013a2: 2b00 cmp r3, #0 + 80013a4: d012 beq.n 80013cc /* Note: On STM32F4, ADC overrun can be set through other parameters */ /* refer to description of parameter "EOCSelection" for more */ /* details. */ /* Set ADC error code to overrun */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_OVR); - 800136a: 687b ldr r3, [r7, #4] - 800136c: 6c5b ldr r3, [r3, #68] ; 0x44 - 800136e: f043 0202 orr.w r2, r3, #2 - 8001372: 687b ldr r3, [r7, #4] - 8001374: 645a str r2, [r3, #68] ; 0x44 + 80013a6: 687b ldr r3, [r7, #4] + 80013a8: 6c5b ldr r3, [r3, #68] ; 0x44 + 80013aa: f043 0202 orr.w r2, r3, #2 + 80013ae: 687b ldr r3, [r7, #4] + 80013b0: 645a str r2, [r3, #68] ; 0x44 /* Clear ADC overrun flag */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_OVR); - 8001376: 687b ldr r3, [r7, #4] - 8001378: 681b ldr r3, [r3, #0] - 800137a: f06f 0220 mvn.w r2, #32 - 800137e: 601a str r2, [r3, #0] + 80013b2: 687b ldr r3, [r7, #4] + 80013b4: 681b ldr r3, [r3, #0] + 80013b6: f06f 0220 mvn.w r2, #32 + 80013ba: 601a str r2, [r3, #0] /* Error callback */ #if (USE_HAL_ADC_REGISTER_CALLBACKS == 1) hadc->ErrorCallback(hadc); #else HAL_ADC_ErrorCallback(hadc); - 8001380: 6878 ldr r0, [r7, #4] - 8001382: f000 f820 bl 80013c6 + 80013bc: 6878 ldr r0, [r7, #4] + 80013be: f000 f820 bl 8001402 #endif /* USE_HAL_ADC_REGISTER_CALLBACKS */ /* Clear the Overrun flag */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_OVR); - 8001386: 687b ldr r3, [r7, #4] - 8001388: 681b ldr r3, [r3, #0] - 800138a: f06f 0220 mvn.w r2, #32 - 800138e: 601a str r2, [r3, #0] + 80013c2: 687b ldr r3, [r7, #4] + 80013c4: 681b ldr r3, [r3, #0] + 80013c6: f06f 0220 mvn.w r2, #32 + 80013ca: 601a str r2, [r3, #0] } } - 8001390: bf00 nop - 8001392: 3718 adds r7, #24 - 8001394: 46bd mov sp, r7 - 8001396: bd80 pop {r7, pc} + 80013cc: bf00 nop + 80013ce: 3718 adds r7, #24 + 80013d0: 46bd mov sp, r7 + 80013d2: bd80 pop {r7, pc} -08001398 : +080013d4 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval Converted value */ uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef* hadc) { - 8001398: b480 push {r7} - 800139a: b083 sub sp, #12 - 800139c: af00 add r7, sp, #0 - 800139e: 6078 str r0, [r7, #4] + 80013d4: b480 push {r7} + 80013d6: b083 sub sp, #12 + 80013d8: af00 add r7, sp, #0 + 80013da: 6078 str r0, [r7, #4] /* Return the selected ADC converted value */ return hadc->Instance->DR; - 80013a0: 687b ldr r3, [r7, #4] - 80013a2: 681b ldr r3, [r3, #0] - 80013a4: 6cdb ldr r3, [r3, #76] ; 0x4c + 80013dc: 687b ldr r3, [r7, #4] + 80013de: 681b ldr r3, [r3, #0] + 80013e0: 6cdb ldr r3, [r3, #76] ; 0x4c } - 80013a6: 4618 mov r0, r3 - 80013a8: 370c adds r7, #12 - 80013aa: 46bd mov sp, r7 - 80013ac: f85d 7b04 ldr.w r7, [sp], #4 - 80013b0: 4770 bx lr + 80013e2: 4618 mov r0, r3 + 80013e4: 370c adds r7, #12 + 80013e6: 46bd mov sp, r7 + 80013e8: f85d 7b04 ldr.w r7, [sp], #4 + 80013ec: 4770 bx lr -080013b2 : +080013ee : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval None */ __weak void HAL_ADC_LevelOutOfWindowCallback(ADC_HandleTypeDef* hadc) { - 80013b2: b480 push {r7} - 80013b4: b083 sub sp, #12 - 80013b6: af00 add r7, sp, #0 - 80013b8: 6078 str r0, [r7, #4] + 80013ee: b480 push {r7} + 80013f0: b083 sub sp, #12 + 80013f2: af00 add r7, sp, #0 + 80013f4: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(hadc); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_ADC_LevelOoutOfWindowCallback could be implemented in the user file */ } - 80013ba: bf00 nop - 80013bc: 370c adds r7, #12 - 80013be: 46bd mov sp, r7 - 80013c0: f85d 7b04 ldr.w r7, [sp], #4 - 80013c4: 4770 bx lr + 80013f6: bf00 nop + 80013f8: 370c adds r7, #12 + 80013fa: 46bd mov sp, r7 + 80013fc: f85d 7b04 ldr.w r7, [sp], #4 + 8001400: 4770 bx lr -080013c6 : +08001402 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval None */ __weak void HAL_ADC_ErrorCallback(ADC_HandleTypeDef *hadc) { - 80013c6: b480 push {r7} - 80013c8: b083 sub sp, #12 - 80013ca: af00 add r7, sp, #0 - 80013cc: 6078 str r0, [r7, #4] + 8001402: b480 push {r7} + 8001404: b083 sub sp, #12 + 8001406: af00 add r7, sp, #0 + 8001408: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(hadc); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_ADC_ErrorCallback could be implemented in the user file */ } - 80013ce: bf00 nop - 80013d0: 370c adds r7, #12 - 80013d2: 46bd mov sp, r7 - 80013d4: f85d 7b04 ldr.w r7, [sp], #4 - 80013d8: 4770 bx lr + 800140a: bf00 nop + 800140c: 370c adds r7, #12 + 800140e: 46bd mov sp, r7 + 8001410: f85d 7b04 ldr.w r7, [sp], #4 + 8001414: 4770 bx lr ... -080013dc : +08001418 : * the configuration information for the specified ADC. * @param sConfig ADC configuration structure. * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef* hadc, ADC_ChannelConfTypeDef* sConfig) { - 80013dc: b480 push {r7} - 80013de: b085 sub sp, #20 - 80013e0: af00 add r7, sp, #0 - 80013e2: 6078 str r0, [r7, #4] - 80013e4: 6039 str r1, [r7, #0] + 8001418: b480 push {r7} + 800141a: b085 sub sp, #20 + 800141c: af00 add r7, sp, #0 + 800141e: 6078 str r0, [r7, #4] + 8001420: 6039 str r1, [r7, #0] __IO uint32_t counter = 0U; - 80013e6: 2300 movs r3, #0 - 80013e8: 60bb str r3, [r7, #8] + 8001422: 2300 movs r3, #0 + 8001424: 60bb str r3, [r7, #8] assert_param(IS_ADC_CHANNEL(sConfig->Channel)); assert_param(IS_ADC_REGULAR_RANK(sConfig->Rank)); assert_param(IS_ADC_SAMPLE_TIME(sConfig->SamplingTime)); /* Process locked */ __HAL_LOCK(hadc); - 80013ea: 687b ldr r3, [r7, #4] - 80013ec: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 80013f0: 2b01 cmp r3, #1 - 80013f2: d101 bne.n 80013f8 - 80013f4: 2302 movs r3, #2 - 80013f6: e113 b.n 8001620 - 80013f8: 687b ldr r3, [r7, #4] - 80013fa: 2201 movs r2, #1 - 80013fc: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001426: 687b ldr r3, [r7, #4] + 8001428: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800142c: 2b01 cmp r3, #1 + 800142e: d101 bne.n 8001434 + 8001430: 2302 movs r3, #2 + 8001432: e113 b.n 800165c + 8001434: 687b ldr r3, [r7, #4] + 8001436: 2201 movs r2, #1 + 8001438: f883 203c strb.w r2, [r3, #60] ; 0x3c /* if ADC_Channel_10 ... ADC_Channel_18 is selected */ if (sConfig->Channel > ADC_CHANNEL_9) - 8001400: 683b ldr r3, [r7, #0] - 8001402: 681b ldr r3, [r3, #0] - 8001404: 2b09 cmp r3, #9 - 8001406: d925 bls.n 8001454 + 800143c: 683b ldr r3, [r7, #0] + 800143e: 681b ldr r3, [r3, #0] + 8001440: 2b09 cmp r3, #9 + 8001442: d925 bls.n 8001490 { /* Clear the old sample time */ hadc->Instance->SMPR1 &= ~ADC_SMPR1(ADC_SMPR1_SMP10, sConfig->Channel); - 8001408: 687b ldr r3, [r7, #4] - 800140a: 681b ldr r3, [r3, #0] - 800140c: 68d9 ldr r1, [r3, #12] - 800140e: 683b ldr r3, [r7, #0] - 8001410: 681b ldr r3, [r3, #0] - 8001412: b29b uxth r3, r3 - 8001414: 461a mov r2, r3 - 8001416: 4613 mov r3, r2 - 8001418: 005b lsls r3, r3, #1 - 800141a: 4413 add r3, r2 - 800141c: 3b1e subs r3, #30 - 800141e: 2207 movs r2, #7 - 8001420: fa02 f303 lsl.w r3, r2, r3 - 8001424: 43da mvns r2, r3 - 8001426: 687b ldr r3, [r7, #4] - 8001428: 681b ldr r3, [r3, #0] - 800142a: 400a ands r2, r1 - 800142c: 60da str r2, [r3, #12] + 8001444: 687b ldr r3, [r7, #4] + 8001446: 681b ldr r3, [r3, #0] + 8001448: 68d9 ldr r1, [r3, #12] + 800144a: 683b ldr r3, [r7, #0] + 800144c: 681b ldr r3, [r3, #0] + 800144e: b29b uxth r3, r3 + 8001450: 461a mov r2, r3 + 8001452: 4613 mov r3, r2 + 8001454: 005b lsls r3, r3, #1 + 8001456: 4413 add r3, r2 + 8001458: 3b1e subs r3, #30 + 800145a: 2207 movs r2, #7 + 800145c: fa02 f303 lsl.w r3, r2, r3 + 8001460: 43da mvns r2, r3 + 8001462: 687b ldr r3, [r7, #4] + 8001464: 681b ldr r3, [r3, #0] + 8001466: 400a ands r2, r1 + 8001468: 60da str r2, [r3, #12] /* Set the new sample time */ hadc->Instance->SMPR1 |= ADC_SMPR1(sConfig->SamplingTime, sConfig->Channel); - 800142e: 687b ldr r3, [r7, #4] - 8001430: 681b ldr r3, [r3, #0] - 8001432: 68d9 ldr r1, [r3, #12] - 8001434: 683b ldr r3, [r7, #0] - 8001436: 689a ldr r2, [r3, #8] - 8001438: 683b ldr r3, [r7, #0] - 800143a: 681b ldr r3, [r3, #0] - 800143c: b29b uxth r3, r3 - 800143e: 4618 mov r0, r3 - 8001440: 4603 mov r3, r0 - 8001442: 005b lsls r3, r3, #1 - 8001444: 4403 add r3, r0 - 8001446: 3b1e subs r3, #30 - 8001448: 409a lsls r2, r3 - 800144a: 687b ldr r3, [r7, #4] - 800144c: 681b ldr r3, [r3, #0] - 800144e: 430a orrs r2, r1 - 8001450: 60da str r2, [r3, #12] - 8001452: e022 b.n 800149a + 800146a: 687b ldr r3, [r7, #4] + 800146c: 681b ldr r3, [r3, #0] + 800146e: 68d9 ldr r1, [r3, #12] + 8001470: 683b ldr r3, [r7, #0] + 8001472: 689a ldr r2, [r3, #8] + 8001474: 683b ldr r3, [r7, #0] + 8001476: 681b ldr r3, [r3, #0] + 8001478: b29b uxth r3, r3 + 800147a: 4618 mov r0, r3 + 800147c: 4603 mov r3, r0 + 800147e: 005b lsls r3, r3, #1 + 8001480: 4403 add r3, r0 + 8001482: 3b1e subs r3, #30 + 8001484: 409a lsls r2, r3 + 8001486: 687b ldr r3, [r7, #4] + 8001488: 681b ldr r3, [r3, #0] + 800148a: 430a orrs r2, r1 + 800148c: 60da str r2, [r3, #12] + 800148e: e022 b.n 80014d6 } else /* ADC_Channel include in ADC_Channel_[0..9] */ { /* Clear the old sample time */ hadc->Instance->SMPR2 &= ~ADC_SMPR2(ADC_SMPR2_SMP0, sConfig->Channel); - 8001454: 687b ldr r3, [r7, #4] - 8001456: 681b ldr r3, [r3, #0] - 8001458: 6919 ldr r1, [r3, #16] - 800145a: 683b ldr r3, [r7, #0] - 800145c: 681b ldr r3, [r3, #0] - 800145e: b29b uxth r3, r3 - 8001460: 461a mov r2, r3 - 8001462: 4613 mov r3, r2 - 8001464: 005b lsls r3, r3, #1 - 8001466: 4413 add r3, r2 - 8001468: 2207 movs r2, #7 - 800146a: fa02 f303 lsl.w r3, r2, r3 - 800146e: 43da mvns r2, r3 - 8001470: 687b ldr r3, [r7, #4] - 8001472: 681b ldr r3, [r3, #0] - 8001474: 400a ands r2, r1 - 8001476: 611a str r2, [r3, #16] + 8001490: 687b ldr r3, [r7, #4] + 8001492: 681b ldr r3, [r3, #0] + 8001494: 6919 ldr r1, [r3, #16] + 8001496: 683b ldr r3, [r7, #0] + 8001498: 681b ldr r3, [r3, #0] + 800149a: b29b uxth r3, r3 + 800149c: 461a mov r2, r3 + 800149e: 4613 mov r3, r2 + 80014a0: 005b lsls r3, r3, #1 + 80014a2: 4413 add r3, r2 + 80014a4: 2207 movs r2, #7 + 80014a6: fa02 f303 lsl.w r3, r2, r3 + 80014aa: 43da mvns r2, r3 + 80014ac: 687b ldr r3, [r7, #4] + 80014ae: 681b ldr r3, [r3, #0] + 80014b0: 400a ands r2, r1 + 80014b2: 611a str r2, [r3, #16] /* Set the new sample time */ hadc->Instance->SMPR2 |= ADC_SMPR2(sConfig->SamplingTime, sConfig->Channel); - 8001478: 687b ldr r3, [r7, #4] - 800147a: 681b ldr r3, [r3, #0] - 800147c: 6919 ldr r1, [r3, #16] - 800147e: 683b ldr r3, [r7, #0] - 8001480: 689a ldr r2, [r3, #8] - 8001482: 683b ldr r3, [r7, #0] - 8001484: 681b ldr r3, [r3, #0] - 8001486: b29b uxth r3, r3 - 8001488: 4618 mov r0, r3 - 800148a: 4603 mov r3, r0 - 800148c: 005b lsls r3, r3, #1 - 800148e: 4403 add r3, r0 - 8001490: 409a lsls r2, r3 - 8001492: 687b ldr r3, [r7, #4] - 8001494: 681b ldr r3, [r3, #0] - 8001496: 430a orrs r2, r1 - 8001498: 611a str r2, [r3, #16] + 80014b4: 687b ldr r3, [r7, #4] + 80014b6: 681b ldr r3, [r3, #0] + 80014b8: 6919 ldr r1, [r3, #16] + 80014ba: 683b ldr r3, [r7, #0] + 80014bc: 689a ldr r2, [r3, #8] + 80014be: 683b ldr r3, [r7, #0] + 80014c0: 681b ldr r3, [r3, #0] + 80014c2: b29b uxth r3, r3 + 80014c4: 4618 mov r0, r3 + 80014c6: 4603 mov r3, r0 + 80014c8: 005b lsls r3, r3, #1 + 80014ca: 4403 add r3, r0 + 80014cc: 409a lsls r2, r3 + 80014ce: 687b ldr r3, [r7, #4] + 80014d0: 681b ldr r3, [r3, #0] + 80014d2: 430a orrs r2, r1 + 80014d4: 611a str r2, [r3, #16] } /* For Rank 1 to 6 */ if (sConfig->Rank < 7U) - 800149a: 683b ldr r3, [r7, #0] - 800149c: 685b ldr r3, [r3, #4] - 800149e: 2b06 cmp r3, #6 - 80014a0: d824 bhi.n 80014ec + 80014d6: 683b ldr r3, [r7, #0] + 80014d8: 685b ldr r3, [r3, #4] + 80014da: 2b06 cmp r3, #6 + 80014dc: d824 bhi.n 8001528 { /* Clear the old SQx bits for the selected rank */ hadc->Instance->SQR3 &= ~ADC_SQR3_RK(ADC_SQR3_SQ1, sConfig->Rank); - 80014a2: 687b ldr r3, [r7, #4] - 80014a4: 681b ldr r3, [r3, #0] - 80014a6: 6b59 ldr r1, [r3, #52] ; 0x34 - 80014a8: 683b ldr r3, [r7, #0] - 80014aa: 685a ldr r2, [r3, #4] - 80014ac: 4613 mov r3, r2 - 80014ae: 009b lsls r3, r3, #2 - 80014b0: 4413 add r3, r2 - 80014b2: 3b05 subs r3, #5 - 80014b4: 221f movs r2, #31 - 80014b6: fa02 f303 lsl.w r3, r2, r3 - 80014ba: 43da mvns r2, r3 - 80014bc: 687b ldr r3, [r7, #4] - 80014be: 681b ldr r3, [r3, #0] - 80014c0: 400a ands r2, r1 - 80014c2: 635a str r2, [r3, #52] ; 0x34 + 80014de: 687b ldr r3, [r7, #4] + 80014e0: 681b ldr r3, [r3, #0] + 80014e2: 6b59 ldr r1, [r3, #52] ; 0x34 + 80014e4: 683b ldr r3, [r7, #0] + 80014e6: 685a ldr r2, [r3, #4] + 80014e8: 4613 mov r3, r2 + 80014ea: 009b lsls r3, r3, #2 + 80014ec: 4413 add r3, r2 + 80014ee: 3b05 subs r3, #5 + 80014f0: 221f movs r2, #31 + 80014f2: fa02 f303 lsl.w r3, r2, r3 + 80014f6: 43da mvns r2, r3 + 80014f8: 687b ldr r3, [r7, #4] + 80014fa: 681b ldr r3, [r3, #0] + 80014fc: 400a ands r2, r1 + 80014fe: 635a str r2, [r3, #52] ; 0x34 /* Set the SQx bits for the selected rank */ hadc->Instance->SQR3 |= ADC_SQR3_RK(sConfig->Channel, sConfig->Rank); - 80014c4: 687b ldr r3, [r7, #4] - 80014c6: 681b ldr r3, [r3, #0] - 80014c8: 6b59 ldr r1, [r3, #52] ; 0x34 - 80014ca: 683b ldr r3, [r7, #0] - 80014cc: 681b ldr r3, [r3, #0] - 80014ce: b29b uxth r3, r3 - 80014d0: 4618 mov r0, r3 - 80014d2: 683b ldr r3, [r7, #0] - 80014d4: 685a ldr r2, [r3, #4] - 80014d6: 4613 mov r3, r2 - 80014d8: 009b lsls r3, r3, #2 - 80014da: 4413 add r3, r2 - 80014dc: 3b05 subs r3, #5 - 80014de: fa00 f203 lsl.w r2, r0, r3 - 80014e2: 687b ldr r3, [r7, #4] - 80014e4: 681b ldr r3, [r3, #0] - 80014e6: 430a orrs r2, r1 - 80014e8: 635a str r2, [r3, #52] ; 0x34 - 80014ea: e04c b.n 8001586 + 8001500: 687b ldr r3, [r7, #4] + 8001502: 681b ldr r3, [r3, #0] + 8001504: 6b59 ldr r1, [r3, #52] ; 0x34 + 8001506: 683b ldr r3, [r7, #0] + 8001508: 681b ldr r3, [r3, #0] + 800150a: b29b uxth r3, r3 + 800150c: 4618 mov r0, r3 + 800150e: 683b ldr r3, [r7, #0] + 8001510: 685a ldr r2, [r3, #4] + 8001512: 4613 mov r3, r2 + 8001514: 009b lsls r3, r3, #2 + 8001516: 4413 add r3, r2 + 8001518: 3b05 subs r3, #5 + 800151a: fa00 f203 lsl.w r2, r0, r3 + 800151e: 687b ldr r3, [r7, #4] + 8001520: 681b ldr r3, [r3, #0] + 8001522: 430a orrs r2, r1 + 8001524: 635a str r2, [r3, #52] ; 0x34 + 8001526: e04c b.n 80015c2 } /* For Rank 7 to 12 */ else if (sConfig->Rank < 13U) - 80014ec: 683b ldr r3, [r7, #0] - 80014ee: 685b ldr r3, [r3, #4] - 80014f0: 2b0c cmp r3, #12 - 80014f2: d824 bhi.n 800153e + 8001528: 683b ldr r3, [r7, #0] + 800152a: 685b ldr r3, [r3, #4] + 800152c: 2b0c cmp r3, #12 + 800152e: d824 bhi.n 800157a { /* Clear the old SQx bits for the selected rank */ hadc->Instance->SQR2 &= ~ADC_SQR2_RK(ADC_SQR2_SQ7, sConfig->Rank); - 80014f4: 687b ldr r3, [r7, #4] - 80014f6: 681b ldr r3, [r3, #0] - 80014f8: 6b19 ldr r1, [r3, #48] ; 0x30 - 80014fa: 683b ldr r3, [r7, #0] - 80014fc: 685a ldr r2, [r3, #4] - 80014fe: 4613 mov r3, r2 - 8001500: 009b lsls r3, r3, #2 - 8001502: 4413 add r3, r2 - 8001504: 3b23 subs r3, #35 ; 0x23 - 8001506: 221f movs r2, #31 - 8001508: fa02 f303 lsl.w r3, r2, r3 - 800150c: 43da mvns r2, r3 - 800150e: 687b ldr r3, [r7, #4] - 8001510: 681b ldr r3, [r3, #0] - 8001512: 400a ands r2, r1 - 8001514: 631a str r2, [r3, #48] ; 0x30 + 8001530: 687b ldr r3, [r7, #4] + 8001532: 681b ldr r3, [r3, #0] + 8001534: 6b19 ldr r1, [r3, #48] ; 0x30 + 8001536: 683b ldr r3, [r7, #0] + 8001538: 685a ldr r2, [r3, #4] + 800153a: 4613 mov r3, r2 + 800153c: 009b lsls r3, r3, #2 + 800153e: 4413 add r3, r2 + 8001540: 3b23 subs r3, #35 ; 0x23 + 8001542: 221f movs r2, #31 + 8001544: fa02 f303 lsl.w r3, r2, r3 + 8001548: 43da mvns r2, r3 + 800154a: 687b ldr r3, [r7, #4] + 800154c: 681b ldr r3, [r3, #0] + 800154e: 400a ands r2, r1 + 8001550: 631a str r2, [r3, #48] ; 0x30 /* Set the SQx bits for the selected rank */ hadc->Instance->SQR2 |= ADC_SQR2_RK(sConfig->Channel, sConfig->Rank); - 8001516: 687b ldr r3, [r7, #4] - 8001518: 681b ldr r3, [r3, #0] - 800151a: 6b19 ldr r1, [r3, #48] ; 0x30 - 800151c: 683b ldr r3, [r7, #0] - 800151e: 681b ldr r3, [r3, #0] - 8001520: b29b uxth r3, r3 - 8001522: 4618 mov r0, r3 - 8001524: 683b ldr r3, [r7, #0] - 8001526: 685a ldr r2, [r3, #4] - 8001528: 4613 mov r3, r2 - 800152a: 009b lsls r3, r3, #2 - 800152c: 4413 add r3, r2 - 800152e: 3b23 subs r3, #35 ; 0x23 - 8001530: fa00 f203 lsl.w r2, r0, r3 - 8001534: 687b ldr r3, [r7, #4] - 8001536: 681b ldr r3, [r3, #0] - 8001538: 430a orrs r2, r1 - 800153a: 631a str r2, [r3, #48] ; 0x30 - 800153c: e023 b.n 8001586 + 8001552: 687b ldr r3, [r7, #4] + 8001554: 681b ldr r3, [r3, #0] + 8001556: 6b19 ldr r1, [r3, #48] ; 0x30 + 8001558: 683b ldr r3, [r7, #0] + 800155a: 681b ldr r3, [r3, #0] + 800155c: b29b uxth r3, r3 + 800155e: 4618 mov r0, r3 + 8001560: 683b ldr r3, [r7, #0] + 8001562: 685a ldr r2, [r3, #4] + 8001564: 4613 mov r3, r2 + 8001566: 009b lsls r3, r3, #2 + 8001568: 4413 add r3, r2 + 800156a: 3b23 subs r3, #35 ; 0x23 + 800156c: fa00 f203 lsl.w r2, r0, r3 + 8001570: 687b ldr r3, [r7, #4] + 8001572: 681b ldr r3, [r3, #0] + 8001574: 430a orrs r2, r1 + 8001576: 631a str r2, [r3, #48] ; 0x30 + 8001578: e023 b.n 80015c2 } /* For Rank 13 to 16 */ else { /* Clear the old SQx bits for the selected rank */ hadc->Instance->SQR1 &= ~ADC_SQR1_RK(ADC_SQR1_SQ13, sConfig->Rank); - 800153e: 687b ldr r3, [r7, #4] - 8001540: 681b ldr r3, [r3, #0] - 8001542: 6ad9 ldr r1, [r3, #44] ; 0x2c - 8001544: 683b ldr r3, [r7, #0] - 8001546: 685a ldr r2, [r3, #4] - 8001548: 4613 mov r3, r2 - 800154a: 009b lsls r3, r3, #2 - 800154c: 4413 add r3, r2 - 800154e: 3b41 subs r3, #65 ; 0x41 - 8001550: 221f movs r2, #31 - 8001552: fa02 f303 lsl.w r3, r2, r3 - 8001556: 43da mvns r2, r3 - 8001558: 687b ldr r3, [r7, #4] - 800155a: 681b ldr r3, [r3, #0] - 800155c: 400a ands r2, r1 - 800155e: 62da str r2, [r3, #44] ; 0x2c + 800157a: 687b ldr r3, [r7, #4] + 800157c: 681b ldr r3, [r3, #0] + 800157e: 6ad9 ldr r1, [r3, #44] ; 0x2c + 8001580: 683b ldr r3, [r7, #0] + 8001582: 685a ldr r2, [r3, #4] + 8001584: 4613 mov r3, r2 + 8001586: 009b lsls r3, r3, #2 + 8001588: 4413 add r3, r2 + 800158a: 3b41 subs r3, #65 ; 0x41 + 800158c: 221f movs r2, #31 + 800158e: fa02 f303 lsl.w r3, r2, r3 + 8001592: 43da mvns r2, r3 + 8001594: 687b ldr r3, [r7, #4] + 8001596: 681b ldr r3, [r3, #0] + 8001598: 400a ands r2, r1 + 800159a: 62da str r2, [r3, #44] ; 0x2c /* Set the SQx bits for the selected rank */ hadc->Instance->SQR1 |= ADC_SQR1_RK(sConfig->Channel, sConfig->Rank); - 8001560: 687b ldr r3, [r7, #4] - 8001562: 681b ldr r3, [r3, #0] - 8001564: 6ad9 ldr r1, [r3, #44] ; 0x2c - 8001566: 683b ldr r3, [r7, #0] - 8001568: 681b ldr r3, [r3, #0] - 800156a: b29b uxth r3, r3 - 800156c: 4618 mov r0, r3 - 800156e: 683b ldr r3, [r7, #0] - 8001570: 685a ldr r2, [r3, #4] - 8001572: 4613 mov r3, r2 - 8001574: 009b lsls r3, r3, #2 - 8001576: 4413 add r3, r2 - 8001578: 3b41 subs r3, #65 ; 0x41 - 800157a: fa00 f203 lsl.w r2, r0, r3 - 800157e: 687b ldr r3, [r7, #4] - 8001580: 681b ldr r3, [r3, #0] - 8001582: 430a orrs r2, r1 - 8001584: 62da str r2, [r3, #44] ; 0x2c + 800159c: 687b ldr r3, [r7, #4] + 800159e: 681b ldr r3, [r3, #0] + 80015a0: 6ad9 ldr r1, [r3, #44] ; 0x2c + 80015a2: 683b ldr r3, [r7, #0] + 80015a4: 681b ldr r3, [r3, #0] + 80015a6: b29b uxth r3, r3 + 80015a8: 4618 mov r0, r3 + 80015aa: 683b ldr r3, [r7, #0] + 80015ac: 685a ldr r2, [r3, #4] + 80015ae: 4613 mov r3, r2 + 80015b0: 009b lsls r3, r3, #2 + 80015b2: 4413 add r3, r2 + 80015b4: 3b41 subs r3, #65 ; 0x41 + 80015b6: fa00 f203 lsl.w r2, r0, r3 + 80015ba: 687b ldr r3, [r7, #4] + 80015bc: 681b ldr r3, [r3, #0] + 80015be: 430a orrs r2, r1 + 80015c0: 62da str r2, [r3, #44] ; 0x2c } /* Pointer to the common control register to which is belonging hadc */ /* (Depending on STM32F4 product, there may be up to 3 ADCs and 1 common */ /* control register) */ tmpADC_Common = ADC_COMMON_REGISTER(hadc); - 8001586: 4b29 ldr r3, [pc, #164] ; (800162c ) - 8001588: 60fb str r3, [r7, #12] + 80015c2: 4b29 ldr r3, [pc, #164] ; (8001668 ) + 80015c4: 60fb str r3, [r7, #12] /* if ADC1 Channel_18 is selected for VBAT Channel ennable VBATE */ if ((hadc->Instance == ADC1) && (sConfig->Channel == ADC_CHANNEL_VBAT)) - 800158a: 687b ldr r3, [r7, #4] - 800158c: 681b ldr r3, [r3, #0] - 800158e: 4a28 ldr r2, [pc, #160] ; (8001630 ) - 8001590: 4293 cmp r3, r2 - 8001592: d10f bne.n 80015b4 - 8001594: 683b ldr r3, [r7, #0] - 8001596: 681b ldr r3, [r3, #0] - 8001598: 2b12 cmp r3, #18 - 800159a: d10b bne.n 80015b4 + 80015c6: 687b ldr r3, [r7, #4] + 80015c8: 681b ldr r3, [r3, #0] + 80015ca: 4a28 ldr r2, [pc, #160] ; (800166c ) + 80015cc: 4293 cmp r3, r2 + 80015ce: d10f bne.n 80015f0 + 80015d0: 683b ldr r3, [r7, #0] + 80015d2: 681b ldr r3, [r3, #0] + 80015d4: 2b12 cmp r3, #18 + 80015d6: d10b bne.n 80015f0 { /* Disable the TEMPSENSOR channel in case of using board with multiplixed ADC_CHANNEL_VBAT & ADC_CHANNEL_TEMPSENSOR*/ if ((uint16_t)ADC_CHANNEL_TEMPSENSOR == (uint16_t)ADC_CHANNEL_VBAT) { tmpADC_Common->CCR &= ~ADC_CCR_TSVREFE; - 800159c: 68fb ldr r3, [r7, #12] - 800159e: 685b ldr r3, [r3, #4] - 80015a0: f423 0200 bic.w r2, r3, #8388608 ; 0x800000 - 80015a4: 68fb ldr r3, [r7, #12] - 80015a6: 605a str r2, [r3, #4] + 80015d8: 68fb ldr r3, [r7, #12] + 80015da: 685b ldr r3, [r3, #4] + 80015dc: f423 0200 bic.w r2, r3, #8388608 ; 0x800000 + 80015e0: 68fb ldr r3, [r7, #12] + 80015e2: 605a str r2, [r3, #4] } /* Enable the VBAT channel*/ tmpADC_Common->CCR |= ADC_CCR_VBATE; - 80015a8: 68fb ldr r3, [r7, #12] - 80015aa: 685b ldr r3, [r3, #4] - 80015ac: f443 0280 orr.w r2, r3, #4194304 ; 0x400000 - 80015b0: 68fb ldr r3, [r7, #12] - 80015b2: 605a str r2, [r3, #4] + 80015e4: 68fb ldr r3, [r7, #12] + 80015e6: 685b ldr r3, [r3, #4] + 80015e8: f443 0280 orr.w r2, r3, #4194304 ; 0x400000 + 80015ec: 68fb ldr r3, [r7, #12] + 80015ee: 605a str r2, [r3, #4] } /* if ADC1 Channel_16 or Channel_18 is selected for Temperature sensor or Channel_17 is selected for VREFINT enable TSVREFE */ if ((hadc->Instance == ADC1) && ((sConfig->Channel == ADC_CHANNEL_TEMPSENSOR) || (sConfig->Channel == ADC_CHANNEL_VREFINT))) - 80015b4: 687b ldr r3, [r7, #4] - 80015b6: 681b ldr r3, [r3, #0] - 80015b8: 4a1d ldr r2, [pc, #116] ; (8001630 ) - 80015ba: 4293 cmp r3, r2 - 80015bc: d12b bne.n 8001616 - 80015be: 683b ldr r3, [r7, #0] - 80015c0: 681b ldr r3, [r3, #0] - 80015c2: 4a1c ldr r2, [pc, #112] ; (8001634 ) - 80015c4: 4293 cmp r3, r2 - 80015c6: d003 beq.n 80015d0 - 80015c8: 683b ldr r3, [r7, #0] - 80015ca: 681b ldr r3, [r3, #0] - 80015cc: 2b11 cmp r3, #17 - 80015ce: d122 bne.n 8001616 + 80015f0: 687b ldr r3, [r7, #4] + 80015f2: 681b ldr r3, [r3, #0] + 80015f4: 4a1d ldr r2, [pc, #116] ; (800166c ) + 80015f6: 4293 cmp r3, r2 + 80015f8: d12b bne.n 8001652 + 80015fa: 683b ldr r3, [r7, #0] + 80015fc: 681b ldr r3, [r3, #0] + 80015fe: 4a1c ldr r2, [pc, #112] ; (8001670 ) + 8001600: 4293 cmp r3, r2 + 8001602: d003 beq.n 800160c + 8001604: 683b ldr r3, [r7, #0] + 8001606: 681b ldr r3, [r3, #0] + 8001608: 2b11 cmp r3, #17 + 800160a: d122 bne.n 8001652 { /* Disable the VBAT channel in case of using board with multiplixed ADC_CHANNEL_VBAT & ADC_CHANNEL_TEMPSENSOR*/ if ((uint16_t)ADC_CHANNEL_TEMPSENSOR == (uint16_t)ADC_CHANNEL_VBAT) { tmpADC_Common->CCR &= ~ADC_CCR_VBATE; - 80015d0: 68fb ldr r3, [r7, #12] - 80015d2: 685b ldr r3, [r3, #4] - 80015d4: f423 0280 bic.w r2, r3, #4194304 ; 0x400000 - 80015d8: 68fb ldr r3, [r7, #12] - 80015da: 605a str r2, [r3, #4] + 800160c: 68fb ldr r3, [r7, #12] + 800160e: 685b ldr r3, [r3, #4] + 8001610: f423 0280 bic.w r2, r3, #4194304 ; 0x400000 + 8001614: 68fb ldr r3, [r7, #12] + 8001616: 605a str r2, [r3, #4] } /* Enable the Temperature sensor and VREFINT channel*/ tmpADC_Common->CCR |= ADC_CCR_TSVREFE; - 80015dc: 68fb ldr r3, [r7, #12] - 80015de: 685b ldr r3, [r3, #4] - 80015e0: f443 0200 orr.w r2, r3, #8388608 ; 0x800000 - 80015e4: 68fb ldr r3, [r7, #12] - 80015e6: 605a str r2, [r3, #4] + 8001618: 68fb ldr r3, [r7, #12] + 800161a: 685b ldr r3, [r3, #4] + 800161c: f443 0200 orr.w r2, r3, #8388608 ; 0x800000 + 8001620: 68fb ldr r3, [r7, #12] + 8001622: 605a str r2, [r3, #4] if(sConfig->Channel == ADC_CHANNEL_TEMPSENSOR) - 80015e8: 683b ldr r3, [r7, #0] - 80015ea: 681b ldr r3, [r3, #0] - 80015ec: 4a11 ldr r2, [pc, #68] ; (8001634 ) - 80015ee: 4293 cmp r3, r2 - 80015f0: d111 bne.n 8001616 + 8001624: 683b ldr r3, [r7, #0] + 8001626: 681b ldr r3, [r3, #0] + 8001628: 4a11 ldr r2, [pc, #68] ; (8001670 ) + 800162a: 4293 cmp r3, r2 + 800162c: d111 bne.n 8001652 { /* Delay for temperature sensor stabilization time */ /* Compute number of CPU cycles to wait for */ counter = (ADC_TEMPSENSOR_DELAY_US * (SystemCoreClock / 1000000U)); - 80015f2: 4b11 ldr r3, [pc, #68] ; (8001638 ) - 80015f4: 681b ldr r3, [r3, #0] - 80015f6: 4a11 ldr r2, [pc, #68] ; (800163c ) - 80015f8: fba2 2303 umull r2, r3, r2, r3 - 80015fc: 0c9a lsrs r2, r3, #18 - 80015fe: 4613 mov r3, r2 - 8001600: 009b lsls r3, r3, #2 - 8001602: 4413 add r3, r2 - 8001604: 005b lsls r3, r3, #1 - 8001606: 60bb str r3, [r7, #8] + 800162e: 4b11 ldr r3, [pc, #68] ; (8001674 ) + 8001630: 681b ldr r3, [r3, #0] + 8001632: 4a11 ldr r2, [pc, #68] ; (8001678 ) + 8001634: fba2 2303 umull r2, r3, r2, r3 + 8001638: 0c9a lsrs r2, r3, #18 + 800163a: 4613 mov r3, r2 + 800163c: 009b lsls r3, r3, #2 + 800163e: 4413 add r3, r2 + 8001640: 005b lsls r3, r3, #1 + 8001642: 60bb str r3, [r7, #8] while(counter != 0U) - 8001608: e002 b.n 8001610 + 8001644: e002 b.n 800164c { counter--; - 800160a: 68bb ldr r3, [r7, #8] - 800160c: 3b01 subs r3, #1 - 800160e: 60bb str r3, [r7, #8] + 8001646: 68bb ldr r3, [r7, #8] + 8001648: 3b01 subs r3, #1 + 800164a: 60bb str r3, [r7, #8] while(counter != 0U) - 8001610: 68bb ldr r3, [r7, #8] - 8001612: 2b00 cmp r3, #0 - 8001614: d1f9 bne.n 800160a + 800164c: 68bb ldr r3, [r7, #8] + 800164e: 2b00 cmp r3, #0 + 8001650: d1f9 bne.n 8001646 } } } /* Process unlocked */ __HAL_UNLOCK(hadc); - 8001616: 687b ldr r3, [r7, #4] - 8001618: 2200 movs r2, #0 - 800161a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001652: 687b ldr r3, [r7, #4] + 8001654: 2200 movs r2, #0 + 8001656: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Return function status */ return HAL_OK; - 800161e: 2300 movs r3, #0 + 800165a: 2300 movs r3, #0 } - 8001620: 4618 mov r0, r3 - 8001622: 3714 adds r7, #20 - 8001624: 46bd mov sp, r7 - 8001626: f85d 7b04 ldr.w r7, [sp], #4 - 800162a: 4770 bx lr - 800162c: 40012300 .word 0x40012300 - 8001630: 40012000 .word 0x40012000 - 8001634: 10000012 .word 0x10000012 - 8001638: 20000000 .word 0x20000000 - 800163c: 431bde83 .word 0x431bde83 + 800165c: 4618 mov r0, r3 + 800165e: 3714 adds r7, #20 + 8001660: 46bd mov sp, r7 + 8001662: f85d 7b04 ldr.w r7, [sp], #4 + 8001666: 4770 bx lr + 8001668: 40012300 .word 0x40012300 + 800166c: 40012000 .word 0x40012000 + 8001670: 10000012 .word 0x10000012 + 8001674: 20000000 .word 0x20000000 + 8001678: 431bde83 .word 0x431bde83 -08001640 : +0800167c : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval None */ static void ADC_Init(ADC_HandleTypeDef* hadc) { - 8001640: b480 push {r7} - 8001642: b085 sub sp, #20 - 8001644: af00 add r7, sp, #0 - 8001646: 6078 str r0, [r7, #4] + 800167c: b480 push {r7} + 800167e: b085 sub sp, #20 + 8001680: af00 add r7, sp, #0 + 8001682: 6078 str r0, [r7, #4] /* Set ADC parameters */ /* Pointer to the common control register to which is belonging hadc */ /* (Depending on STM32F4 product, there may be up to 3 ADCs and 1 common */ /* control register) */ tmpADC_Common = ADC_COMMON_REGISTER(hadc); - 8001648: 4b79 ldr r3, [pc, #484] ; (8001830 ) - 800164a: 60fb str r3, [r7, #12] + 8001684: 4b79 ldr r3, [pc, #484] ; (800186c ) + 8001686: 60fb str r3, [r7, #12] /* Set the ADC clock prescaler */ tmpADC_Common->CCR &= ~(ADC_CCR_ADCPRE); - 800164c: 68fb ldr r3, [r7, #12] - 800164e: 685b ldr r3, [r3, #4] - 8001650: f423 3240 bic.w r2, r3, #196608 ; 0x30000 - 8001654: 68fb ldr r3, [r7, #12] - 8001656: 605a str r2, [r3, #4] + 8001688: 68fb ldr r3, [r7, #12] + 800168a: 685b ldr r3, [r3, #4] + 800168c: f423 3240 bic.w r2, r3, #196608 ; 0x30000 + 8001690: 68fb ldr r3, [r7, #12] + 8001692: 605a str r2, [r3, #4] tmpADC_Common->CCR |= hadc->Init.ClockPrescaler; - 8001658: 68fb ldr r3, [r7, #12] - 800165a: 685a ldr r2, [r3, #4] - 800165c: 687b ldr r3, [r7, #4] - 800165e: 685b ldr r3, [r3, #4] - 8001660: 431a orrs r2, r3 - 8001662: 68fb ldr r3, [r7, #12] - 8001664: 605a str r2, [r3, #4] + 8001694: 68fb ldr r3, [r7, #12] + 8001696: 685a ldr r2, [r3, #4] + 8001698: 687b ldr r3, [r7, #4] + 800169a: 685b ldr r3, [r3, #4] + 800169c: 431a orrs r2, r3 + 800169e: 68fb ldr r3, [r7, #12] + 80016a0: 605a str r2, [r3, #4] /* Set ADC scan mode */ hadc->Instance->CR1 &= ~(ADC_CR1_SCAN); - 8001666: 687b ldr r3, [r7, #4] - 8001668: 681b ldr r3, [r3, #0] - 800166a: 685a ldr r2, [r3, #4] - 800166c: 687b ldr r3, [r7, #4] - 800166e: 681b ldr r3, [r3, #0] - 8001670: f422 7280 bic.w r2, r2, #256 ; 0x100 - 8001674: 605a str r2, [r3, #4] + 80016a2: 687b ldr r3, [r7, #4] + 80016a4: 681b ldr r3, [r3, #0] + 80016a6: 685a ldr r2, [r3, #4] + 80016a8: 687b ldr r3, [r7, #4] + 80016aa: 681b ldr r3, [r3, #0] + 80016ac: f422 7280 bic.w r2, r2, #256 ; 0x100 + 80016b0: 605a str r2, [r3, #4] hadc->Instance->CR1 |= ADC_CR1_SCANCONV(hadc->Init.ScanConvMode); - 8001676: 687b ldr r3, [r7, #4] - 8001678: 681b ldr r3, [r3, #0] - 800167a: 6859 ldr r1, [r3, #4] - 800167c: 687b ldr r3, [r7, #4] - 800167e: 691b ldr r3, [r3, #16] - 8001680: 021a lsls r2, r3, #8 - 8001682: 687b ldr r3, [r7, #4] - 8001684: 681b ldr r3, [r3, #0] - 8001686: 430a orrs r2, r1 - 8001688: 605a str r2, [r3, #4] + 80016b2: 687b ldr r3, [r7, #4] + 80016b4: 681b ldr r3, [r3, #0] + 80016b6: 6859 ldr r1, [r3, #4] + 80016b8: 687b ldr r3, [r7, #4] + 80016ba: 691b ldr r3, [r3, #16] + 80016bc: 021a lsls r2, r3, #8 + 80016be: 687b ldr r3, [r7, #4] + 80016c0: 681b ldr r3, [r3, #0] + 80016c2: 430a orrs r2, r1 + 80016c4: 605a str r2, [r3, #4] /* Set ADC resolution */ hadc->Instance->CR1 &= ~(ADC_CR1_RES); - 800168a: 687b ldr r3, [r7, #4] - 800168c: 681b ldr r3, [r3, #0] - 800168e: 685a ldr r2, [r3, #4] - 8001690: 687b ldr r3, [r7, #4] - 8001692: 681b ldr r3, [r3, #0] - 8001694: f022 7240 bic.w r2, r2, #50331648 ; 0x3000000 - 8001698: 605a str r2, [r3, #4] + 80016c6: 687b ldr r3, [r7, #4] + 80016c8: 681b ldr r3, [r3, #0] + 80016ca: 685a ldr r2, [r3, #4] + 80016cc: 687b ldr r3, [r7, #4] + 80016ce: 681b ldr r3, [r3, #0] + 80016d0: f022 7240 bic.w r2, r2, #50331648 ; 0x3000000 + 80016d4: 605a str r2, [r3, #4] hadc->Instance->CR1 |= hadc->Init.Resolution; - 800169a: 687b ldr r3, [r7, #4] - 800169c: 681b ldr r3, [r3, #0] - 800169e: 6859 ldr r1, [r3, #4] - 80016a0: 687b ldr r3, [r7, #4] - 80016a2: 689a ldr r2, [r3, #8] - 80016a4: 687b ldr r3, [r7, #4] - 80016a6: 681b ldr r3, [r3, #0] - 80016a8: 430a orrs r2, r1 - 80016aa: 605a str r2, [r3, #4] + 80016d6: 687b ldr r3, [r7, #4] + 80016d8: 681b ldr r3, [r3, #0] + 80016da: 6859 ldr r1, [r3, #4] + 80016dc: 687b ldr r3, [r7, #4] + 80016de: 689a ldr r2, [r3, #8] + 80016e0: 687b ldr r3, [r7, #4] + 80016e2: 681b ldr r3, [r3, #0] + 80016e4: 430a orrs r2, r1 + 80016e6: 605a str r2, [r3, #4] /* Set ADC data alignment */ hadc->Instance->CR2 &= ~(ADC_CR2_ALIGN); - 80016ac: 687b ldr r3, [r7, #4] - 80016ae: 681b ldr r3, [r3, #0] - 80016b0: 689a ldr r2, [r3, #8] - 80016b2: 687b ldr r3, [r7, #4] - 80016b4: 681b ldr r3, [r3, #0] - 80016b6: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 80016ba: 609a str r2, [r3, #8] + 80016e8: 687b ldr r3, [r7, #4] + 80016ea: 681b ldr r3, [r3, #0] + 80016ec: 689a ldr r2, [r3, #8] + 80016ee: 687b ldr r3, [r7, #4] + 80016f0: 681b ldr r3, [r3, #0] + 80016f2: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 80016f6: 609a str r2, [r3, #8] hadc->Instance->CR2 |= hadc->Init.DataAlign; - 80016bc: 687b ldr r3, [r7, #4] - 80016be: 681b ldr r3, [r3, #0] - 80016c0: 6899 ldr r1, [r3, #8] - 80016c2: 687b ldr r3, [r7, #4] - 80016c4: 68da ldr r2, [r3, #12] - 80016c6: 687b ldr r3, [r7, #4] - 80016c8: 681b ldr r3, [r3, #0] - 80016ca: 430a orrs r2, r1 - 80016cc: 609a str r2, [r3, #8] + 80016f8: 687b ldr r3, [r7, #4] + 80016fa: 681b ldr r3, [r3, #0] + 80016fc: 6899 ldr r1, [r3, #8] + 80016fe: 687b ldr r3, [r7, #4] + 8001700: 68da ldr r2, [r3, #12] + 8001702: 687b ldr r3, [r7, #4] + 8001704: 681b ldr r3, [r3, #0] + 8001706: 430a orrs r2, r1 + 8001708: 609a str r2, [r3, #8] /* Enable external trigger if trigger selection is different of software */ /* start. */ /* Note: This configuration keeps the hardware feature of parameter */ /* ExternalTrigConvEdge "trigger edge none" equivalent to */ /* software start. */ if(hadc->Init.ExternalTrigConv != ADC_SOFTWARE_START) - 80016ce: 687b ldr r3, [r7, #4] - 80016d0: 6a9b ldr r3, [r3, #40] ; 0x28 - 80016d2: 4a58 ldr r2, [pc, #352] ; (8001834 ) - 80016d4: 4293 cmp r3, r2 - 80016d6: d022 beq.n 800171e + 800170a: 687b ldr r3, [r7, #4] + 800170c: 6a9b ldr r3, [r3, #40] ; 0x28 + 800170e: 4a58 ldr r2, [pc, #352] ; (8001870 ) + 8001710: 4293 cmp r3, r2 + 8001712: d022 beq.n 800175a { /* Select external trigger to start conversion */ hadc->Instance->CR2 &= ~(ADC_CR2_EXTSEL); - 80016d8: 687b ldr r3, [r7, #4] - 80016da: 681b ldr r3, [r3, #0] - 80016dc: 689a ldr r2, [r3, #8] - 80016de: 687b ldr r3, [r7, #4] - 80016e0: 681b ldr r3, [r3, #0] - 80016e2: f022 6270 bic.w r2, r2, #251658240 ; 0xf000000 - 80016e6: 609a str r2, [r3, #8] + 8001714: 687b ldr r3, [r7, #4] + 8001716: 681b ldr r3, [r3, #0] + 8001718: 689a ldr r2, [r3, #8] + 800171a: 687b ldr r3, [r7, #4] + 800171c: 681b ldr r3, [r3, #0] + 800171e: f022 6270 bic.w r2, r2, #251658240 ; 0xf000000 + 8001722: 609a str r2, [r3, #8] hadc->Instance->CR2 |= hadc->Init.ExternalTrigConv; - 80016e8: 687b ldr r3, [r7, #4] - 80016ea: 681b ldr r3, [r3, #0] - 80016ec: 6899 ldr r1, [r3, #8] - 80016ee: 687b ldr r3, [r7, #4] - 80016f0: 6a9a ldr r2, [r3, #40] ; 0x28 - 80016f2: 687b ldr r3, [r7, #4] - 80016f4: 681b ldr r3, [r3, #0] - 80016f6: 430a orrs r2, r1 - 80016f8: 609a str r2, [r3, #8] + 8001724: 687b ldr r3, [r7, #4] + 8001726: 681b ldr r3, [r3, #0] + 8001728: 6899 ldr r1, [r3, #8] + 800172a: 687b ldr r3, [r7, #4] + 800172c: 6a9a ldr r2, [r3, #40] ; 0x28 + 800172e: 687b ldr r3, [r7, #4] + 8001730: 681b ldr r3, [r3, #0] + 8001732: 430a orrs r2, r1 + 8001734: 609a str r2, [r3, #8] /* Select external trigger polarity */ hadc->Instance->CR2 &= ~(ADC_CR2_EXTEN); - 80016fa: 687b ldr r3, [r7, #4] - 80016fc: 681b ldr r3, [r3, #0] - 80016fe: 689a ldr r2, [r3, #8] - 8001700: 687b ldr r3, [r7, #4] - 8001702: 681b ldr r3, [r3, #0] - 8001704: f022 5240 bic.w r2, r2, #805306368 ; 0x30000000 - 8001708: 609a str r2, [r3, #8] + 8001736: 687b ldr r3, [r7, #4] + 8001738: 681b ldr r3, [r3, #0] + 800173a: 689a ldr r2, [r3, #8] + 800173c: 687b ldr r3, [r7, #4] + 800173e: 681b ldr r3, [r3, #0] + 8001740: f022 5240 bic.w r2, r2, #805306368 ; 0x30000000 + 8001744: 609a str r2, [r3, #8] hadc->Instance->CR2 |= hadc->Init.ExternalTrigConvEdge; - 800170a: 687b ldr r3, [r7, #4] - 800170c: 681b ldr r3, [r3, #0] - 800170e: 6899 ldr r1, [r3, #8] - 8001710: 687b ldr r3, [r7, #4] - 8001712: 6ada ldr r2, [r3, #44] ; 0x2c - 8001714: 687b ldr r3, [r7, #4] - 8001716: 681b ldr r3, [r3, #0] - 8001718: 430a orrs r2, r1 - 800171a: 609a str r2, [r3, #8] - 800171c: e00f b.n 800173e + 8001746: 687b ldr r3, [r7, #4] + 8001748: 681b ldr r3, [r3, #0] + 800174a: 6899 ldr r1, [r3, #8] + 800174c: 687b ldr r3, [r7, #4] + 800174e: 6ada ldr r2, [r3, #44] ; 0x2c + 8001750: 687b ldr r3, [r7, #4] + 8001752: 681b ldr r3, [r3, #0] + 8001754: 430a orrs r2, r1 + 8001756: 609a str r2, [r3, #8] + 8001758: e00f b.n 800177a } else { /* Reset the external trigger */ hadc->Instance->CR2 &= ~(ADC_CR2_EXTSEL); - 800171e: 687b ldr r3, [r7, #4] - 8001720: 681b ldr r3, [r3, #0] - 8001722: 689a ldr r2, [r3, #8] - 8001724: 687b ldr r3, [r7, #4] - 8001726: 681b ldr r3, [r3, #0] - 8001728: f022 6270 bic.w r2, r2, #251658240 ; 0xf000000 - 800172c: 609a str r2, [r3, #8] + 800175a: 687b ldr r3, [r7, #4] + 800175c: 681b ldr r3, [r3, #0] + 800175e: 689a ldr r2, [r3, #8] + 8001760: 687b ldr r3, [r7, #4] + 8001762: 681b ldr r3, [r3, #0] + 8001764: f022 6270 bic.w r2, r2, #251658240 ; 0xf000000 + 8001768: 609a str r2, [r3, #8] hadc->Instance->CR2 &= ~(ADC_CR2_EXTEN); - 800172e: 687b ldr r3, [r7, #4] - 8001730: 681b ldr r3, [r3, #0] - 8001732: 689a ldr r2, [r3, #8] - 8001734: 687b ldr r3, [r7, #4] - 8001736: 681b ldr r3, [r3, #0] - 8001738: f022 5240 bic.w r2, r2, #805306368 ; 0x30000000 - 800173c: 609a str r2, [r3, #8] + 800176a: 687b ldr r3, [r7, #4] + 800176c: 681b ldr r3, [r3, #0] + 800176e: 689a ldr r2, [r3, #8] + 8001770: 687b ldr r3, [r7, #4] + 8001772: 681b ldr r3, [r3, #0] + 8001774: f022 5240 bic.w r2, r2, #805306368 ; 0x30000000 + 8001778: 609a str r2, [r3, #8] } /* Enable or disable ADC continuous conversion mode */ hadc->Instance->CR2 &= ~(ADC_CR2_CONT); - 800173e: 687b ldr r3, [r7, #4] - 8001740: 681b ldr r3, [r3, #0] - 8001742: 689a ldr r2, [r3, #8] - 8001744: 687b ldr r3, [r7, #4] - 8001746: 681b ldr r3, [r3, #0] - 8001748: f022 0202 bic.w r2, r2, #2 - 800174c: 609a str r2, [r3, #8] + 800177a: 687b ldr r3, [r7, #4] + 800177c: 681b ldr r3, [r3, #0] + 800177e: 689a ldr r2, [r3, #8] + 8001780: 687b ldr r3, [r7, #4] + 8001782: 681b ldr r3, [r3, #0] + 8001784: f022 0202 bic.w r2, r2, #2 + 8001788: 609a str r2, [r3, #8] hadc->Instance->CR2 |= ADC_CR2_CONTINUOUS((uint32_t)hadc->Init.ContinuousConvMode); - 800174e: 687b ldr r3, [r7, #4] - 8001750: 681b ldr r3, [r3, #0] - 8001752: 6899 ldr r1, [r3, #8] - 8001754: 687b ldr r3, [r7, #4] - 8001756: 7e1b ldrb r3, [r3, #24] - 8001758: 005a lsls r2, r3, #1 - 800175a: 687b ldr r3, [r7, #4] - 800175c: 681b ldr r3, [r3, #0] - 800175e: 430a orrs r2, r1 - 8001760: 609a str r2, [r3, #8] + 800178a: 687b ldr r3, [r7, #4] + 800178c: 681b ldr r3, [r3, #0] + 800178e: 6899 ldr r1, [r3, #8] + 8001790: 687b ldr r3, [r7, #4] + 8001792: 7e1b ldrb r3, [r3, #24] + 8001794: 005a lsls r2, r3, #1 + 8001796: 687b ldr r3, [r7, #4] + 8001798: 681b ldr r3, [r3, #0] + 800179a: 430a orrs r2, r1 + 800179c: 609a str r2, [r3, #8] if(hadc->Init.DiscontinuousConvMode != DISABLE) - 8001762: 687b ldr r3, [r7, #4] - 8001764: f893 3020 ldrb.w r3, [r3, #32] - 8001768: 2b00 cmp r3, #0 - 800176a: d01b beq.n 80017a4 + 800179e: 687b ldr r3, [r7, #4] + 80017a0: f893 3020 ldrb.w r3, [r3, #32] + 80017a4: 2b00 cmp r3, #0 + 80017a6: d01b beq.n 80017e0 { assert_param(IS_ADC_REGULAR_DISC_NUMBER(hadc->Init.NbrOfDiscConversion)); /* Enable the selected ADC regular discontinuous mode */ hadc->Instance->CR1 |= (uint32_t)ADC_CR1_DISCEN; - 800176c: 687b ldr r3, [r7, #4] - 800176e: 681b ldr r3, [r3, #0] - 8001770: 685a ldr r2, [r3, #4] - 8001772: 687b ldr r3, [r7, #4] - 8001774: 681b ldr r3, [r3, #0] - 8001776: f442 6200 orr.w r2, r2, #2048 ; 0x800 - 800177a: 605a str r2, [r3, #4] + 80017a8: 687b ldr r3, [r7, #4] + 80017aa: 681b ldr r3, [r3, #0] + 80017ac: 685a ldr r2, [r3, #4] + 80017ae: 687b ldr r3, [r7, #4] + 80017b0: 681b ldr r3, [r3, #0] + 80017b2: f442 6200 orr.w r2, r2, #2048 ; 0x800 + 80017b6: 605a str r2, [r3, #4] /* Set the number of channels to be converted in discontinuous mode */ hadc->Instance->CR1 &= ~(ADC_CR1_DISCNUM); - 800177c: 687b ldr r3, [r7, #4] - 800177e: 681b ldr r3, [r3, #0] - 8001780: 685a ldr r2, [r3, #4] - 8001782: 687b ldr r3, [r7, #4] - 8001784: 681b ldr r3, [r3, #0] - 8001786: f422 4260 bic.w r2, r2, #57344 ; 0xe000 - 800178a: 605a str r2, [r3, #4] + 80017b8: 687b ldr r3, [r7, #4] + 80017ba: 681b ldr r3, [r3, #0] + 80017bc: 685a ldr r2, [r3, #4] + 80017be: 687b ldr r3, [r7, #4] + 80017c0: 681b ldr r3, [r3, #0] + 80017c2: f422 4260 bic.w r2, r2, #57344 ; 0xe000 + 80017c6: 605a str r2, [r3, #4] hadc->Instance->CR1 |= ADC_CR1_DISCONTINUOUS(hadc->Init.NbrOfDiscConversion); - 800178c: 687b ldr r3, [r7, #4] - 800178e: 681b ldr r3, [r3, #0] - 8001790: 6859 ldr r1, [r3, #4] - 8001792: 687b ldr r3, [r7, #4] - 8001794: 6a5b ldr r3, [r3, #36] ; 0x24 - 8001796: 3b01 subs r3, #1 - 8001798: 035a lsls r2, r3, #13 - 800179a: 687b ldr r3, [r7, #4] - 800179c: 681b ldr r3, [r3, #0] - 800179e: 430a orrs r2, r1 - 80017a0: 605a str r2, [r3, #4] - 80017a2: e007 b.n 80017b4 + 80017c8: 687b ldr r3, [r7, #4] + 80017ca: 681b ldr r3, [r3, #0] + 80017cc: 6859 ldr r1, [r3, #4] + 80017ce: 687b ldr r3, [r7, #4] + 80017d0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80017d2: 3b01 subs r3, #1 + 80017d4: 035a lsls r2, r3, #13 + 80017d6: 687b ldr r3, [r7, #4] + 80017d8: 681b ldr r3, [r3, #0] + 80017da: 430a orrs r2, r1 + 80017dc: 605a str r2, [r3, #4] + 80017de: e007 b.n 80017f0 } else { /* Disable the selected ADC regular discontinuous mode */ hadc->Instance->CR1 &= ~(ADC_CR1_DISCEN); - 80017a4: 687b ldr r3, [r7, #4] - 80017a6: 681b ldr r3, [r3, #0] - 80017a8: 685a ldr r2, [r3, #4] - 80017aa: 687b ldr r3, [r7, #4] - 80017ac: 681b ldr r3, [r3, #0] - 80017ae: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 80017b2: 605a str r2, [r3, #4] + 80017e0: 687b ldr r3, [r7, #4] + 80017e2: 681b ldr r3, [r3, #0] + 80017e4: 685a ldr r2, [r3, #4] + 80017e6: 687b ldr r3, [r7, #4] + 80017e8: 681b ldr r3, [r3, #0] + 80017ea: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 80017ee: 605a str r2, [r3, #4] } /* Set ADC number of conversion */ hadc->Instance->SQR1 &= ~(ADC_SQR1_L); - 80017b4: 687b ldr r3, [r7, #4] - 80017b6: 681b ldr r3, [r3, #0] - 80017b8: 6ada ldr r2, [r3, #44] ; 0x2c - 80017ba: 687b ldr r3, [r7, #4] - 80017bc: 681b ldr r3, [r3, #0] - 80017be: f422 0270 bic.w r2, r2, #15728640 ; 0xf00000 - 80017c2: 62da str r2, [r3, #44] ; 0x2c + 80017f0: 687b ldr r3, [r7, #4] + 80017f2: 681b ldr r3, [r3, #0] + 80017f4: 6ada ldr r2, [r3, #44] ; 0x2c + 80017f6: 687b ldr r3, [r7, #4] + 80017f8: 681b ldr r3, [r3, #0] + 80017fa: f422 0270 bic.w r2, r2, #15728640 ; 0xf00000 + 80017fe: 62da str r2, [r3, #44] ; 0x2c hadc->Instance->SQR1 |= ADC_SQR1(hadc->Init.NbrOfConversion); - 80017c4: 687b ldr r3, [r7, #4] - 80017c6: 681b ldr r3, [r3, #0] - 80017c8: 6ad9 ldr r1, [r3, #44] ; 0x2c - 80017ca: 687b ldr r3, [r7, #4] - 80017cc: 69db ldr r3, [r3, #28] - 80017ce: 3b01 subs r3, #1 - 80017d0: 051a lsls r2, r3, #20 - 80017d2: 687b ldr r3, [r7, #4] - 80017d4: 681b ldr r3, [r3, #0] - 80017d6: 430a orrs r2, r1 - 80017d8: 62da str r2, [r3, #44] ; 0x2c + 8001800: 687b ldr r3, [r7, #4] + 8001802: 681b ldr r3, [r3, #0] + 8001804: 6ad9 ldr r1, [r3, #44] ; 0x2c + 8001806: 687b ldr r3, [r7, #4] + 8001808: 69db ldr r3, [r3, #28] + 800180a: 3b01 subs r3, #1 + 800180c: 051a lsls r2, r3, #20 + 800180e: 687b ldr r3, [r7, #4] + 8001810: 681b ldr r3, [r3, #0] + 8001812: 430a orrs r2, r1 + 8001814: 62da str r2, [r3, #44] ; 0x2c /* Enable or disable ADC DMA continuous request */ hadc->Instance->CR2 &= ~(ADC_CR2_DDS); - 80017da: 687b ldr r3, [r7, #4] - 80017dc: 681b ldr r3, [r3, #0] - 80017de: 689a ldr r2, [r3, #8] - 80017e0: 687b ldr r3, [r7, #4] - 80017e2: 681b ldr r3, [r3, #0] - 80017e4: f422 7200 bic.w r2, r2, #512 ; 0x200 - 80017e8: 609a str r2, [r3, #8] + 8001816: 687b ldr r3, [r7, #4] + 8001818: 681b ldr r3, [r3, #0] + 800181a: 689a ldr r2, [r3, #8] + 800181c: 687b ldr r3, [r7, #4] + 800181e: 681b ldr r3, [r3, #0] + 8001820: f422 7200 bic.w r2, r2, #512 ; 0x200 + 8001824: 609a str r2, [r3, #8] hadc->Instance->CR2 |= ADC_CR2_DMAContReq((uint32_t)hadc->Init.DMAContinuousRequests); - 80017ea: 687b ldr r3, [r7, #4] - 80017ec: 681b ldr r3, [r3, #0] - 80017ee: 6899 ldr r1, [r3, #8] - 80017f0: 687b ldr r3, [r7, #4] - 80017f2: f893 3030 ldrb.w r3, [r3, #48] ; 0x30 - 80017f6: 025a lsls r2, r3, #9 - 80017f8: 687b ldr r3, [r7, #4] - 80017fa: 681b ldr r3, [r3, #0] - 80017fc: 430a orrs r2, r1 - 80017fe: 609a str r2, [r3, #8] + 8001826: 687b ldr r3, [r7, #4] + 8001828: 681b ldr r3, [r3, #0] + 800182a: 6899 ldr r1, [r3, #8] + 800182c: 687b ldr r3, [r7, #4] + 800182e: f893 3030 ldrb.w r3, [r3, #48] ; 0x30 + 8001832: 025a lsls r2, r3, #9 + 8001834: 687b ldr r3, [r7, #4] + 8001836: 681b ldr r3, [r3, #0] + 8001838: 430a orrs r2, r1 + 800183a: 609a str r2, [r3, #8] /* Enable or disable ADC end of conversion selection */ hadc->Instance->CR2 &= ~(ADC_CR2_EOCS); - 8001800: 687b ldr r3, [r7, #4] - 8001802: 681b ldr r3, [r3, #0] - 8001804: 689a ldr r2, [r3, #8] - 8001806: 687b ldr r3, [r7, #4] - 8001808: 681b ldr r3, [r3, #0] - 800180a: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 800180e: 609a str r2, [r3, #8] + 800183c: 687b ldr r3, [r7, #4] + 800183e: 681b ldr r3, [r3, #0] + 8001840: 689a ldr r2, [r3, #8] + 8001842: 687b ldr r3, [r7, #4] + 8001844: 681b ldr r3, [r3, #0] + 8001846: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 800184a: 609a str r2, [r3, #8] hadc->Instance->CR2 |= ADC_CR2_EOCSelection(hadc->Init.EOCSelection); - 8001810: 687b ldr r3, [r7, #4] - 8001812: 681b ldr r3, [r3, #0] - 8001814: 6899 ldr r1, [r3, #8] - 8001816: 687b ldr r3, [r7, #4] - 8001818: 695b ldr r3, [r3, #20] - 800181a: 029a lsls r2, r3, #10 - 800181c: 687b ldr r3, [r7, #4] - 800181e: 681b ldr r3, [r3, #0] - 8001820: 430a orrs r2, r1 - 8001822: 609a str r2, [r3, #8] + 800184c: 687b ldr r3, [r7, #4] + 800184e: 681b ldr r3, [r3, #0] + 8001850: 6899 ldr r1, [r3, #8] + 8001852: 687b ldr r3, [r7, #4] + 8001854: 695b ldr r3, [r3, #20] + 8001856: 029a lsls r2, r3, #10 + 8001858: 687b ldr r3, [r7, #4] + 800185a: 681b ldr r3, [r3, #0] + 800185c: 430a orrs r2, r1 + 800185e: 609a str r2, [r3, #8] } - 8001824: bf00 nop - 8001826: 3714 adds r7, #20 - 8001828: 46bd mov sp, r7 - 800182a: f85d 7b04 ldr.w r7, [sp], #4 - 800182e: 4770 bx lr - 8001830: 40012300 .word 0x40012300 - 8001834: 0f000001 .word 0x0f000001 + 8001860: bf00 nop + 8001862: 3714 adds r7, #20 + 8001864: 46bd mov sp, r7 + 8001866: f85d 7b04 ldr.w r7, [sp], #4 + 800186a: 4770 bx lr + 800186c: 40012300 .word 0x40012300 + 8001870: 0f000001 .word 0x0f000001 -08001838 : +08001874 : * @param hadc pointer to a ADC_HandleTypeDef structure that contains * the configuration information for the specified ADC. * @retval None */ __weak void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef* hadc) { - 8001838: b480 push {r7} - 800183a: b083 sub sp, #12 - 800183c: af00 add r7, sp, #0 - 800183e: 6078 str r0, [r7, #4] + 8001874: b480 push {r7} + 8001876: b083 sub sp, #12 + 8001878: af00 add r7, sp, #0 + 800187a: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(hadc); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_ADC_InjectedConvCpltCallback could be implemented in the user file */ } - 8001840: bf00 nop - 8001842: 370c adds r7, #12 - 8001844: 46bd mov sp, r7 - 8001846: f85d 7b04 ldr.w r7, [sp], #4 - 800184a: 4770 bx lr + 800187c: bf00 nop + 800187e: 370c adds r7, #12 + 8001880: 46bd mov sp, r7 + 8001882: f85d 7b04 ldr.w r7, [sp], #4 + 8001886: 4770 bx lr -0800184c <__NVIC_SetPriorityGrouping>: +08001888 <__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) { - 800184c: b480 push {r7} - 800184e: b085 sub sp, #20 - 8001850: af00 add r7, sp, #0 - 8001852: 6078 str r0, [r7, #4] + 8001888: b480 push {r7} + 800188a: b085 sub sp, #20 + 800188c: af00 add r7, sp, #0 + 800188e: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001854: 687b ldr r3, [r7, #4] - 8001856: f003 0307 and.w r3, r3, #7 - 800185a: 60fb str r3, [r7, #12] + 8001890: 687b ldr r3, [r7, #4] + 8001892: f003 0307 and.w r3, r3, #7 + 8001896: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 800185c: 4b0c ldr r3, [pc, #48] ; (8001890 <__NVIC_SetPriorityGrouping+0x44>) - 800185e: 68db ldr r3, [r3, #12] - 8001860: 60bb str r3, [r7, #8] + 8001898: 4b0c ldr r3, [pc, #48] ; (80018cc <__NVIC_SetPriorityGrouping+0x44>) + 800189a: 68db ldr r3, [r3, #12] + 800189c: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001862: 68ba ldr r2, [r7, #8] - 8001864: f64f 03ff movw r3, #63743 ; 0xf8ff - 8001868: 4013 ands r3, r2 - 800186a: 60bb str r3, [r7, #8] + 800189e: 68ba ldr r2, [r7, #8] + 80018a0: f64f 03ff movw r3, #63743 ; 0xf8ff + 80018a4: 4013 ands r3, r2 + 80018a6: 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 */ - 800186c: 68fb ldr r3, [r7, #12] - 800186e: 021a lsls r2, r3, #8 + 80018a8: 68fb ldr r3, [r7, #12] + 80018aa: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001870: 68bb ldr r3, [r7, #8] - 8001872: 4313 orrs r3, r2 + 80018ac: 68bb ldr r3, [r7, #8] + 80018ae: 4313 orrs r3, r2 reg_value = (reg_value | - 8001874: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 - 8001878: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 800187c: 60bb str r3, [r7, #8] + 80018b0: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 + 80018b4: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 80018b8: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 800187e: 4a04 ldr r2, [pc, #16] ; (8001890 <__NVIC_SetPriorityGrouping+0x44>) - 8001880: 68bb ldr r3, [r7, #8] - 8001882: 60d3 str r3, [r2, #12] + 80018ba: 4a04 ldr r2, [pc, #16] ; (80018cc <__NVIC_SetPriorityGrouping+0x44>) + 80018bc: 68bb ldr r3, [r7, #8] + 80018be: 60d3 str r3, [r2, #12] } - 8001884: bf00 nop - 8001886: 3714 adds r7, #20 - 8001888: 46bd mov sp, r7 - 800188a: f85d 7b04 ldr.w r7, [sp], #4 - 800188e: 4770 bx lr - 8001890: e000ed00 .word 0xe000ed00 + 80018c0: bf00 nop + 80018c2: 3714 adds r7, #20 + 80018c4: 46bd mov sp, r7 + 80018c6: f85d 7b04 ldr.w r7, [sp], #4 + 80018ca: 4770 bx lr + 80018cc: e000ed00 .word 0xe000ed00 -08001894 <__NVIC_GetPriorityGrouping>: +080018d0 <__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) { - 8001894: b480 push {r7} - 8001896: af00 add r7, sp, #0 + 80018d0: b480 push {r7} + 80018d2: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8001898: 4b04 ldr r3, [pc, #16] ; (80018ac <__NVIC_GetPriorityGrouping+0x18>) - 800189a: 68db ldr r3, [r3, #12] - 800189c: 0a1b lsrs r3, r3, #8 - 800189e: f003 0307 and.w r3, r3, #7 + 80018d4: 4b04 ldr r3, [pc, #16] ; (80018e8 <__NVIC_GetPriorityGrouping+0x18>) + 80018d6: 68db ldr r3, [r3, #12] + 80018d8: 0a1b lsrs r3, r3, #8 + 80018da: f003 0307 and.w r3, r3, #7 } - 80018a2: 4618 mov r0, r3 - 80018a4: 46bd mov sp, r7 - 80018a6: f85d 7b04 ldr.w r7, [sp], #4 - 80018aa: 4770 bx lr - 80018ac: e000ed00 .word 0xe000ed00 + 80018de: 4618 mov r0, r3 + 80018e0: 46bd mov sp, r7 + 80018e2: f85d 7b04 ldr.w r7, [sp], #4 + 80018e6: 4770 bx lr + 80018e8: e000ed00 .word 0xe000ed00 -080018b0 <__NVIC_EnableIRQ>: +080018ec <__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) { - 80018b0: b480 push {r7} - 80018b2: b083 sub sp, #12 - 80018b4: af00 add r7, sp, #0 - 80018b6: 4603 mov r3, r0 - 80018b8: 71fb strb r3, [r7, #7] + 80018ec: b480 push {r7} + 80018ee: b083 sub sp, #12 + 80018f0: af00 add r7, sp, #0 + 80018f2: 4603 mov r3, r0 + 80018f4: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 80018ba: f997 3007 ldrsb.w r3, [r7, #7] - 80018be: 2b00 cmp r3, #0 - 80018c0: db0b blt.n 80018da <__NVIC_EnableIRQ+0x2a> + 80018f6: f997 3007 ldrsb.w r3, [r7, #7] + 80018fa: 2b00 cmp r3, #0 + 80018fc: db0b blt.n 8001916 <__NVIC_EnableIRQ+0x2a> { NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 80018c2: 79fb ldrb r3, [r7, #7] - 80018c4: f003 021f and.w r2, r3, #31 - 80018c8: 4907 ldr r1, [pc, #28] ; (80018e8 <__NVIC_EnableIRQ+0x38>) - 80018ca: f997 3007 ldrsb.w r3, [r7, #7] - 80018ce: 095b lsrs r3, r3, #5 - 80018d0: 2001 movs r0, #1 - 80018d2: fa00 f202 lsl.w r2, r0, r2 - 80018d6: f841 2023 str.w r2, [r1, r3, lsl #2] + 80018fe: 79fb ldrb r3, [r7, #7] + 8001900: f003 021f and.w r2, r3, #31 + 8001904: 4907 ldr r1, [pc, #28] ; (8001924 <__NVIC_EnableIRQ+0x38>) + 8001906: f997 3007 ldrsb.w r3, [r7, #7] + 800190a: 095b lsrs r3, r3, #5 + 800190c: 2001 movs r0, #1 + 800190e: fa00 f202 lsl.w r2, r0, r2 + 8001912: f841 2023 str.w r2, [r1, r3, lsl #2] } } - 80018da: bf00 nop - 80018dc: 370c adds r7, #12 - 80018de: 46bd mov sp, r7 - 80018e0: f85d 7b04 ldr.w r7, [sp], #4 - 80018e4: 4770 bx lr - 80018e6: bf00 nop - 80018e8: e000e100 .word 0xe000e100 + 8001916: bf00 nop + 8001918: 370c adds r7, #12 + 800191a: 46bd mov sp, r7 + 800191c: f85d 7b04 ldr.w r7, [sp], #4 + 8001920: 4770 bx lr + 8001922: bf00 nop + 8001924: e000e100 .word 0xe000e100 -080018ec <__NVIC_SetPriority>: +08001928 <__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) { - 80018ec: b480 push {r7} - 80018ee: b083 sub sp, #12 - 80018f0: af00 add r7, sp, #0 - 80018f2: 4603 mov r3, r0 - 80018f4: 6039 str r1, [r7, #0] - 80018f6: 71fb strb r3, [r7, #7] + 8001928: b480 push {r7} + 800192a: b083 sub sp, #12 + 800192c: af00 add r7, sp, #0 + 800192e: 4603 mov r3, r0 + 8001930: 6039 str r1, [r7, #0] + 8001932: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 80018f8: f997 3007 ldrsb.w r3, [r7, #7] - 80018fc: 2b00 cmp r3, #0 - 80018fe: db0a blt.n 8001916 <__NVIC_SetPriority+0x2a> + 8001934: f997 3007 ldrsb.w r3, [r7, #7] + 8001938: 2b00 cmp r3, #0 + 800193a: db0a blt.n 8001952 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001900: 683b ldr r3, [r7, #0] - 8001902: b2da uxtb r2, r3 - 8001904: 490c ldr r1, [pc, #48] ; (8001938 <__NVIC_SetPriority+0x4c>) - 8001906: f997 3007 ldrsb.w r3, [r7, #7] - 800190a: 0112 lsls r2, r2, #4 - 800190c: b2d2 uxtb r2, r2 - 800190e: 440b add r3, r1 - 8001910: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 800193c: 683b ldr r3, [r7, #0] + 800193e: b2da uxtb r2, r3 + 8001940: 490c ldr r1, [pc, #48] ; (8001974 <__NVIC_SetPriority+0x4c>) + 8001942: f997 3007 ldrsb.w r3, [r7, #7] + 8001946: 0112 lsls r2, r2, #4 + 8001948: b2d2 uxtb r2, r2 + 800194a: 440b add r3, r1 + 800194c: 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); } } - 8001914: e00a b.n 800192c <__NVIC_SetPriority+0x40> + 8001950: e00a b.n 8001968 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001916: 683b ldr r3, [r7, #0] - 8001918: b2da uxtb r2, r3 - 800191a: 4908 ldr r1, [pc, #32] ; (800193c <__NVIC_SetPriority+0x50>) - 800191c: 79fb ldrb r3, [r7, #7] - 800191e: f003 030f and.w r3, r3, #15 - 8001922: 3b04 subs r3, #4 - 8001924: 0112 lsls r2, r2, #4 - 8001926: b2d2 uxtb r2, r2 - 8001928: 440b add r3, r1 - 800192a: 761a strb r2, [r3, #24] + 8001952: 683b ldr r3, [r7, #0] + 8001954: b2da uxtb r2, r3 + 8001956: 4908 ldr r1, [pc, #32] ; (8001978 <__NVIC_SetPriority+0x50>) + 8001958: 79fb ldrb r3, [r7, #7] + 800195a: f003 030f and.w r3, r3, #15 + 800195e: 3b04 subs r3, #4 + 8001960: 0112 lsls r2, r2, #4 + 8001962: b2d2 uxtb r2, r2 + 8001964: 440b add r3, r1 + 8001966: 761a strb r2, [r3, #24] } - 800192c: bf00 nop - 800192e: 370c adds r7, #12 - 8001930: 46bd mov sp, r7 - 8001932: f85d 7b04 ldr.w r7, [sp], #4 - 8001936: 4770 bx lr - 8001938: e000e100 .word 0xe000e100 - 800193c: e000ed00 .word 0xe000ed00 + 8001968: bf00 nop + 800196a: 370c adds r7, #12 + 800196c: 46bd mov sp, r7 + 800196e: f85d 7b04 ldr.w r7, [sp], #4 + 8001972: 4770 bx lr + 8001974: e000e100 .word 0xe000e100 + 8001978: e000ed00 .word 0xe000ed00 -08001940 : +0800197c : \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) { - 8001940: b480 push {r7} - 8001942: b089 sub sp, #36 ; 0x24 - 8001944: af00 add r7, sp, #0 - 8001946: 60f8 str r0, [r7, #12] - 8001948: 60b9 str r1, [r7, #8] - 800194a: 607a str r2, [r7, #4] + 800197c: b480 push {r7} + 800197e: b089 sub sp, #36 ; 0x24 + 8001980: af00 add r7, sp, #0 + 8001982: 60f8 str r0, [r7, #12] + 8001984: 60b9 str r1, [r7, #8] + 8001986: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 800194c: 68fb ldr r3, [r7, #12] - 800194e: f003 0307 and.w r3, r3, #7 - 8001952: 61fb str r3, [r7, #28] + 8001988: 68fb ldr r3, [r7, #12] + 800198a: f003 0307 and.w r3, r3, #7 + 800198e: 61fb str r3, [r7, #28] uint32_t PreemptPriorityBits; uint32_t SubPriorityBits; PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 8001954: 69fb ldr r3, [r7, #28] - 8001956: f1c3 0307 rsb r3, r3, #7 - 800195a: 2b04 cmp r3, #4 - 800195c: bf28 it cs - 800195e: 2304 movcs r3, #4 - 8001960: 61bb str r3, [r7, #24] + 8001990: 69fb ldr r3, [r7, #28] + 8001992: f1c3 0307 rsb r3, r3, #7 + 8001996: 2b04 cmp r3, #4 + 8001998: bf28 it cs + 800199a: 2304 movcs r3, #4 + 800199c: 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)); - 8001962: 69fb ldr r3, [r7, #28] - 8001964: 3304 adds r3, #4 - 8001966: 2b06 cmp r3, #6 - 8001968: d902 bls.n 8001970 - 800196a: 69fb ldr r3, [r7, #28] - 800196c: 3b03 subs r3, #3 - 800196e: e000 b.n 8001972 - 8001970: 2300 movs r3, #0 - 8001972: 617b str r3, [r7, #20] + 800199e: 69fb ldr r3, [r7, #28] + 80019a0: 3304 adds r3, #4 + 80019a2: 2b06 cmp r3, #6 + 80019a4: d902 bls.n 80019ac + 80019a6: 69fb ldr r3, [r7, #28] + 80019a8: 3b03 subs r3, #3 + 80019aa: e000 b.n 80019ae + 80019ac: 2300 movs r3, #0 + 80019ae: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001974: f04f 32ff mov.w r2, #4294967295 - 8001978: 69bb ldr r3, [r7, #24] - 800197a: fa02 f303 lsl.w r3, r2, r3 - 800197e: 43da mvns r2, r3 - 8001980: 68bb ldr r3, [r7, #8] - 8001982: 401a ands r2, r3 - 8001984: 697b ldr r3, [r7, #20] - 8001986: 409a lsls r2, r3 + 80019b0: f04f 32ff mov.w r2, #4294967295 + 80019b4: 69bb ldr r3, [r7, #24] + 80019b6: fa02 f303 lsl.w r3, r2, r3 + 80019ba: 43da mvns r2, r3 + 80019bc: 68bb ldr r3, [r7, #8] + 80019be: 401a ands r2, r3 + 80019c0: 697b ldr r3, [r7, #20] + 80019c2: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001988: f04f 31ff mov.w r1, #4294967295 - 800198c: 697b ldr r3, [r7, #20] - 800198e: fa01 f303 lsl.w r3, r1, r3 - 8001992: 43d9 mvns r1, r3 - 8001994: 687b ldr r3, [r7, #4] - 8001996: 400b ands r3, r1 + 80019c4: f04f 31ff mov.w r1, #4294967295 + 80019c8: 697b ldr r3, [r7, #20] + 80019ca: fa01 f303 lsl.w r3, r1, r3 + 80019ce: 43d9 mvns r1, r3 + 80019d0: 687b ldr r3, [r7, #4] + 80019d2: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001998: 4313 orrs r3, r2 + 80019d4: 4313 orrs r3, r2 ); } - 800199a: 4618 mov r0, r3 - 800199c: 3724 adds r7, #36 ; 0x24 - 800199e: 46bd mov sp, r7 - 80019a0: f85d 7b04 ldr.w r7, [sp], #4 - 80019a4: 4770 bx lr + 80019d6: 4618 mov r0, r3 + 80019d8: 3724 adds r7, #36 ; 0x24 + 80019da: 46bd mov sp, r7 + 80019dc: f85d 7b04 ldr.w r7, [sp], #4 + 80019e0: 4770 bx lr -080019a6 : +080019e2 : * @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) { - 80019a6: b580 push {r7, lr} - 80019a8: b082 sub sp, #8 - 80019aa: af00 add r7, sp, #0 - 80019ac: 6078 str r0, [r7, #4] + 80019e2: b580 push {r7, lr} + 80019e4: b082 sub sp, #8 + 80019e6: af00 add r7, sp, #0 + 80019e8: 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); - 80019ae: 6878 ldr r0, [r7, #4] - 80019b0: f7ff ff4c bl 800184c <__NVIC_SetPriorityGrouping> + 80019ea: 6878 ldr r0, [r7, #4] + 80019ec: f7ff ff4c bl 8001888 <__NVIC_SetPriorityGrouping> } - 80019b4: bf00 nop - 80019b6: 3708 adds r7, #8 - 80019b8: 46bd mov sp, r7 - 80019ba: bd80 pop {r7, pc} + 80019f0: bf00 nop + 80019f2: 3708 adds r7, #8 + 80019f4: 46bd mov sp, r7 + 80019f6: bd80 pop {r7, pc} -080019bc : +080019f8 : * 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) { - 80019bc: b580 push {r7, lr} - 80019be: b086 sub sp, #24 - 80019c0: af00 add r7, sp, #0 - 80019c2: 4603 mov r3, r0 - 80019c4: 60b9 str r1, [r7, #8] - 80019c6: 607a str r2, [r7, #4] - 80019c8: 73fb strb r3, [r7, #15] + 80019f8: b580 push {r7, lr} + 80019fa: b086 sub sp, #24 + 80019fc: af00 add r7, sp, #0 + 80019fe: 4603 mov r3, r0 + 8001a00: 60b9 str r1, [r7, #8] + 8001a02: 607a str r2, [r7, #4] + 8001a04: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 80019ca: 2300 movs r3, #0 - 80019cc: 617b str r3, [r7, #20] + 8001a06: 2300 movs r3, #0 + 8001a08: 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(); - 80019ce: f7ff ff61 bl 8001894 <__NVIC_GetPriorityGrouping> - 80019d2: 6178 str r0, [r7, #20] + 8001a0a: f7ff ff61 bl 80018d0 <__NVIC_GetPriorityGrouping> + 8001a0e: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 80019d4: 687a ldr r2, [r7, #4] - 80019d6: 68b9 ldr r1, [r7, #8] - 80019d8: 6978 ldr r0, [r7, #20] - 80019da: f7ff ffb1 bl 8001940 - 80019de: 4602 mov r2, r0 - 80019e0: f997 300f ldrsb.w r3, [r7, #15] - 80019e4: 4611 mov r1, r2 - 80019e6: 4618 mov r0, r3 - 80019e8: f7ff ff80 bl 80018ec <__NVIC_SetPriority> + 8001a10: 687a ldr r2, [r7, #4] + 8001a12: 68b9 ldr r1, [r7, #8] + 8001a14: 6978 ldr r0, [r7, #20] + 8001a16: f7ff ffb1 bl 800197c + 8001a1a: 4602 mov r2, r0 + 8001a1c: f997 300f ldrsb.w r3, [r7, #15] + 8001a20: 4611 mov r1, r2 + 8001a22: 4618 mov r0, r3 + 8001a24: f7ff ff80 bl 8001928 <__NVIC_SetPriority> } - 80019ec: bf00 nop - 80019ee: 3718 adds r7, #24 - 80019f0: 46bd mov sp, r7 - 80019f2: bd80 pop {r7, pc} + 8001a28: bf00 nop + 8001a2a: 3718 adds r7, #24 + 8001a2c: 46bd mov sp, r7 + 8001a2e: bd80 pop {r7, pc} -080019f4 : +08001a30 : * 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 (stm32f4xxxx.h)) * @retval None */ void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) { - 80019f4: b580 push {r7, lr} - 80019f6: b082 sub sp, #8 - 80019f8: af00 add r7, sp, #0 - 80019fa: 4603 mov r3, r0 - 80019fc: 71fb strb r3, [r7, #7] + 8001a30: b580 push {r7, lr} + 8001a32: b082 sub sp, #8 + 8001a34: af00 add r7, sp, #0 + 8001a36: 4603 mov r3, r0 + 8001a38: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 80019fe: f997 3007 ldrsb.w r3, [r7, #7] - 8001a02: 4618 mov r0, r3 - 8001a04: f7ff ff54 bl 80018b0 <__NVIC_EnableIRQ> + 8001a3a: f997 3007 ldrsb.w r3, [r7, #7] + 8001a3e: 4618 mov r0, r3 + 8001a40: f7ff ff54 bl 80018ec <__NVIC_EnableIRQ> } - 8001a08: bf00 nop - 8001a0a: 3708 adds r7, #8 - 8001a0c: 46bd mov sp, r7 - 8001a0e: bd80 pop {r7, pc} + 8001a44: bf00 nop + 8001a46: 3708 adds r7, #8 + 8001a48: 46bd mov sp, r7 + 8001a4a: bd80 pop {r7, pc} -08001a10 : +08001a4c : * @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) { - 8001a10: b480 push {r7} - 8001a12: b089 sub sp, #36 ; 0x24 - 8001a14: af00 add r7, sp, #0 - 8001a16: 6078 str r0, [r7, #4] - 8001a18: 6039 str r1, [r7, #0] + 8001a4c: b480 push {r7} + 8001a4e: b089 sub sp, #36 ; 0x24 + 8001a50: af00 add r7, sp, #0 + 8001a52: 6078 str r0, [r7, #4] + 8001a54: 6039 str r1, [r7, #0] uint32_t position; uint32_t ioposition = 0x00U; - 8001a1a: 2300 movs r3, #0 - 8001a1c: 617b str r3, [r7, #20] + 8001a56: 2300 movs r3, #0 + 8001a58: 617b str r3, [r7, #20] uint32_t iocurrent = 0x00U; - 8001a1e: 2300 movs r3, #0 - 8001a20: 613b str r3, [r7, #16] + 8001a5a: 2300 movs r3, #0 + 8001a5c: 613b str r3, [r7, #16] uint32_t temp = 0x00U; - 8001a22: 2300 movs r3, #0 - 8001a24: 61bb str r3, [r7, #24] + 8001a5e: 2300 movs r3, #0 + 8001a60: 61bb str r3, [r7, #24] 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 */ for(position = 0U; position < GPIO_NUMBER; position++) - 8001a26: 2300 movs r3, #0 - 8001a28: 61fb str r3, [r7, #28] - 8001a2a: e159 b.n 8001ce0 + 8001a62: 2300 movs r3, #0 + 8001a64: 61fb str r3, [r7, #28] + 8001a66: e159 b.n 8001d1c { /* Get the IO position */ ioposition = 0x01U << position; - 8001a2c: 2201 movs r2, #1 - 8001a2e: 69fb ldr r3, [r7, #28] - 8001a30: fa02 f303 lsl.w r3, r2, r3 - 8001a34: 617b str r3, [r7, #20] + 8001a68: 2201 movs r2, #1 + 8001a6a: 69fb ldr r3, [r7, #28] + 8001a6c: fa02 f303 lsl.w r3, r2, r3 + 8001a70: 617b str r3, [r7, #20] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8001a36: 683b ldr r3, [r7, #0] - 8001a38: 681b ldr r3, [r3, #0] - 8001a3a: 697a ldr r2, [r7, #20] - 8001a3c: 4013 ands r3, r2 - 8001a3e: 613b str r3, [r7, #16] + 8001a72: 683b ldr r3, [r7, #0] + 8001a74: 681b ldr r3, [r3, #0] + 8001a76: 697a ldr r2, [r7, #20] + 8001a78: 4013 ands r3, r2 + 8001a7a: 613b str r3, [r7, #16] if(iocurrent == ioposition) - 8001a40: 693a ldr r2, [r7, #16] - 8001a42: 697b ldr r3, [r7, #20] - 8001a44: 429a cmp r2, r3 - 8001a46: f040 8148 bne.w 8001cda + 8001a7c: 693a ldr r2, [r7, #16] + 8001a7e: 697b ldr r3, [r7, #20] + 8001a80: 429a cmp r2, r3 + 8001a82: f040 8148 bne.w 8001d16 { /*--------------------- GPIO Mode Configuration ------------------------*/ /* In case of Output or Alternate function mode selection */ if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 8001a4a: 683b ldr r3, [r7, #0] - 8001a4c: 685b ldr r3, [r3, #4] - 8001a4e: f003 0303 and.w r3, r3, #3 - 8001a52: 2b01 cmp r3, #1 - 8001a54: d005 beq.n 8001a62 + 8001a86: 683b ldr r3, [r7, #0] + 8001a88: 685b ldr r3, [r3, #4] + 8001a8a: f003 0303 and.w r3, r3, #3 + 8001a8e: 2b01 cmp r3, #1 + 8001a90: d005 beq.n 8001a9e (GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8001a56: 683b ldr r3, [r7, #0] - 8001a58: 685b ldr r3, [r3, #4] - 8001a5a: f003 0303 and.w r3, r3, #3 + 8001a92: 683b ldr r3, [r7, #0] + 8001a94: 685b ldr r3, [r3, #4] + 8001a96: f003 0303 and.w r3, r3, #3 if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 8001a5e: 2b02 cmp r3, #2 - 8001a60: d130 bne.n 8001ac4 + 8001a9a: 2b02 cmp r3, #2 + 8001a9c: d130 bne.n 8001b00 { /* Check the Speed parameter */ assert_param(IS_GPIO_SPEED(GPIO_Init->Speed)); /* Configure the IO Speed */ temp = GPIOx->OSPEEDR; - 8001a62: 687b ldr r3, [r7, #4] - 8001a64: 689b ldr r3, [r3, #8] - 8001a66: 61bb str r3, [r7, #24] + 8001a9e: 687b ldr r3, [r7, #4] + 8001aa0: 689b ldr r3, [r3, #8] + 8001aa2: 61bb str r3, [r7, #24] temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); - 8001a68: 69fb ldr r3, [r7, #28] - 8001a6a: 005b lsls r3, r3, #1 - 8001a6c: 2203 movs r2, #3 - 8001a6e: fa02 f303 lsl.w r3, r2, r3 - 8001a72: 43db mvns r3, r3 - 8001a74: 69ba ldr r2, [r7, #24] - 8001a76: 4013 ands r3, r2 - 8001a78: 61bb str r3, [r7, #24] + 8001aa4: 69fb ldr r3, [r7, #28] + 8001aa6: 005b lsls r3, r3, #1 + 8001aa8: 2203 movs r2, #3 + 8001aaa: fa02 f303 lsl.w r3, r2, r3 + 8001aae: 43db mvns r3, r3 + 8001ab0: 69ba ldr r2, [r7, #24] + 8001ab2: 4013 ands r3, r2 + 8001ab4: 61bb str r3, [r7, #24] temp |= (GPIO_Init->Speed << (position * 2U)); - 8001a7a: 683b ldr r3, [r7, #0] - 8001a7c: 68da ldr r2, [r3, #12] - 8001a7e: 69fb ldr r3, [r7, #28] - 8001a80: 005b lsls r3, r3, #1 - 8001a82: fa02 f303 lsl.w r3, r2, r3 - 8001a86: 69ba ldr r2, [r7, #24] - 8001a88: 4313 orrs r3, r2 - 8001a8a: 61bb str r3, [r7, #24] + 8001ab6: 683b ldr r3, [r7, #0] + 8001ab8: 68da ldr r2, [r3, #12] + 8001aba: 69fb ldr r3, [r7, #28] + 8001abc: 005b lsls r3, r3, #1 + 8001abe: fa02 f303 lsl.w r3, r2, r3 + 8001ac2: 69ba ldr r2, [r7, #24] + 8001ac4: 4313 orrs r3, r2 + 8001ac6: 61bb str r3, [r7, #24] GPIOx->OSPEEDR = temp; - 8001a8c: 687b ldr r3, [r7, #4] - 8001a8e: 69ba ldr r2, [r7, #24] - 8001a90: 609a str r2, [r3, #8] + 8001ac8: 687b ldr r3, [r7, #4] + 8001aca: 69ba ldr r2, [r7, #24] + 8001acc: 609a str r2, [r3, #8] /* Configure the IO Output Type */ temp = GPIOx->OTYPER; - 8001a92: 687b ldr r3, [r7, #4] - 8001a94: 685b ldr r3, [r3, #4] - 8001a96: 61bb str r3, [r7, #24] + 8001ace: 687b ldr r3, [r7, #4] + 8001ad0: 685b ldr r3, [r3, #4] + 8001ad2: 61bb str r3, [r7, #24] temp &= ~(GPIO_OTYPER_OT_0 << position) ; - 8001a98: 2201 movs r2, #1 - 8001a9a: 69fb ldr r3, [r7, #28] - 8001a9c: fa02 f303 lsl.w r3, r2, r3 - 8001aa0: 43db mvns r3, r3 - 8001aa2: 69ba ldr r2, [r7, #24] - 8001aa4: 4013 ands r3, r2 - 8001aa6: 61bb str r3, [r7, #24] + 8001ad4: 2201 movs r2, #1 + 8001ad6: 69fb ldr r3, [r7, #28] + 8001ad8: fa02 f303 lsl.w r3, r2, r3 + 8001adc: 43db mvns r3, r3 + 8001ade: 69ba ldr r2, [r7, #24] + 8001ae0: 4013 ands r3, r2 + 8001ae2: 61bb str r3, [r7, #24] temp |= (((GPIO_Init->Mode & OUTPUT_TYPE) >> OUTPUT_TYPE_Pos) << position); - 8001aa8: 683b ldr r3, [r7, #0] - 8001aaa: 685b ldr r3, [r3, #4] - 8001aac: 091b lsrs r3, r3, #4 - 8001aae: f003 0201 and.w r2, r3, #1 - 8001ab2: 69fb ldr r3, [r7, #28] - 8001ab4: fa02 f303 lsl.w r3, r2, r3 - 8001ab8: 69ba ldr r2, [r7, #24] - 8001aba: 4313 orrs r3, r2 - 8001abc: 61bb str r3, [r7, #24] + 8001ae4: 683b ldr r3, [r7, #0] + 8001ae6: 685b ldr r3, [r3, #4] + 8001ae8: 091b lsrs r3, r3, #4 + 8001aea: f003 0201 and.w r2, r3, #1 + 8001aee: 69fb ldr r3, [r7, #28] + 8001af0: fa02 f303 lsl.w r3, r2, r3 + 8001af4: 69ba ldr r2, [r7, #24] + 8001af6: 4313 orrs r3, r2 + 8001af8: 61bb str r3, [r7, #24] GPIOx->OTYPER = temp; - 8001abe: 687b ldr r3, [r7, #4] - 8001ac0: 69ba ldr r2, [r7, #24] - 8001ac2: 605a str r2, [r3, #4] + 8001afa: 687b ldr r3, [r7, #4] + 8001afc: 69ba ldr r2, [r7, #24] + 8001afe: 605a str r2, [r3, #4] } if((GPIO_Init->Mode & GPIO_MODE) != MODE_ANALOG) - 8001ac4: 683b ldr r3, [r7, #0] - 8001ac6: 685b ldr r3, [r3, #4] - 8001ac8: f003 0303 and.w r3, r3, #3 - 8001acc: 2b03 cmp r3, #3 - 8001ace: d017 beq.n 8001b00 + 8001b00: 683b ldr r3, [r7, #0] + 8001b02: 685b ldr r3, [r3, #4] + 8001b04: f003 0303 and.w r3, r3, #3 + 8001b08: 2b03 cmp r3, #3 + 8001b0a: d017 beq.n 8001b3c { /* Check the parameters */ assert_param(IS_GPIO_PULL(GPIO_Init->Pull)); /* Activate the Pull-up or Pull down resistor for the current IO */ temp = GPIOx->PUPDR; - 8001ad0: 687b ldr r3, [r7, #4] - 8001ad2: 68db ldr r3, [r3, #12] - 8001ad4: 61bb str r3, [r7, #24] + 8001b0c: 687b ldr r3, [r7, #4] + 8001b0e: 68db ldr r3, [r3, #12] + 8001b10: 61bb str r3, [r7, #24] temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); - 8001ad6: 69fb ldr r3, [r7, #28] - 8001ad8: 005b lsls r3, r3, #1 - 8001ada: 2203 movs r2, #3 - 8001adc: fa02 f303 lsl.w r3, r2, r3 - 8001ae0: 43db mvns r3, r3 - 8001ae2: 69ba ldr r2, [r7, #24] - 8001ae4: 4013 ands r3, r2 - 8001ae6: 61bb str r3, [r7, #24] + 8001b12: 69fb ldr r3, [r7, #28] + 8001b14: 005b lsls r3, r3, #1 + 8001b16: 2203 movs r2, #3 + 8001b18: fa02 f303 lsl.w r3, r2, r3 + 8001b1c: 43db mvns r3, r3 + 8001b1e: 69ba ldr r2, [r7, #24] + 8001b20: 4013 ands r3, r2 + 8001b22: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Pull) << (position * 2U)); - 8001ae8: 683b ldr r3, [r7, #0] - 8001aea: 689a ldr r2, [r3, #8] - 8001aec: 69fb ldr r3, [r7, #28] - 8001aee: 005b lsls r3, r3, #1 - 8001af0: fa02 f303 lsl.w r3, r2, r3 - 8001af4: 69ba ldr r2, [r7, #24] - 8001af6: 4313 orrs r3, r2 - 8001af8: 61bb str r3, [r7, #24] + 8001b24: 683b ldr r3, [r7, #0] + 8001b26: 689a ldr r2, [r3, #8] + 8001b28: 69fb ldr r3, [r7, #28] + 8001b2a: 005b lsls r3, r3, #1 + 8001b2c: fa02 f303 lsl.w r3, r2, r3 + 8001b30: 69ba ldr r2, [r7, #24] + 8001b32: 4313 orrs r3, r2 + 8001b34: 61bb str r3, [r7, #24] GPIOx->PUPDR = temp; - 8001afa: 687b ldr r3, [r7, #4] - 8001afc: 69ba ldr r2, [r7, #24] - 8001afe: 60da str r2, [r3, #12] + 8001b36: 687b ldr r3, [r7, #4] + 8001b38: 69ba ldr r2, [r7, #24] + 8001b3a: 60da str r2, [r3, #12] } /* In case of Alternate function mode selection */ if((GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8001b00: 683b ldr r3, [r7, #0] - 8001b02: 685b ldr r3, [r3, #4] - 8001b04: f003 0303 and.w r3, r3, #3 - 8001b08: 2b02 cmp r3, #2 - 8001b0a: d123 bne.n 8001b54 + 8001b3c: 683b ldr r3, [r7, #0] + 8001b3e: 685b ldr r3, [r3, #4] + 8001b40: f003 0303 and.w r3, r3, #3 + 8001b44: 2b02 cmp r3, #2 + 8001b46: d123 bne.n 8001b90 { /* Check the Alternate function parameter */ assert_param(IS_GPIO_AF(GPIO_Init->Alternate)); /* Configure Alternate function mapped with the current IO */ temp = GPIOx->AFR[position >> 3U]; - 8001b0c: 69fb ldr r3, [r7, #28] - 8001b0e: 08da lsrs r2, r3, #3 - 8001b10: 687b ldr r3, [r7, #4] - 8001b12: 3208 adds r2, #8 - 8001b14: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8001b18: 61bb str r3, [r7, #24] + 8001b48: 69fb ldr r3, [r7, #28] + 8001b4a: 08da lsrs r2, r3, #3 + 8001b4c: 687b ldr r3, [r7, #4] + 8001b4e: 3208 adds r2, #8 + 8001b50: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8001b54: 61bb str r3, [r7, #24] temp &= ~(0xFU << ((uint32_t)(position & 0x07U) * 4U)) ; - 8001b1a: 69fb ldr r3, [r7, #28] - 8001b1c: f003 0307 and.w r3, r3, #7 - 8001b20: 009b lsls r3, r3, #2 - 8001b22: 220f movs r2, #15 - 8001b24: fa02 f303 lsl.w r3, r2, r3 - 8001b28: 43db mvns r3, r3 - 8001b2a: 69ba ldr r2, [r7, #24] - 8001b2c: 4013 ands r3, r2 - 8001b2e: 61bb str r3, [r7, #24] - temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); - 8001b30: 683b ldr r3, [r7, #0] - 8001b32: 691a ldr r2, [r3, #16] - 8001b34: 69fb ldr r3, [r7, #28] - 8001b36: f003 0307 and.w r3, r3, #7 - 8001b3a: 009b lsls r3, r3, #2 - 8001b3c: fa02 f303 lsl.w r3, r2, r3 - 8001b40: 69ba ldr r2, [r7, #24] - 8001b42: 4313 orrs r3, r2 - 8001b44: 61bb str r3, [r7, #24] - GPIOx->AFR[position >> 3U] = temp; - 8001b46: 69fb ldr r3, [r7, #28] - 8001b48: 08da lsrs r2, r3, #3 - 8001b4a: 687b ldr r3, [r7, #4] - 8001b4c: 3208 adds r2, #8 - 8001b4e: 69b9 ldr r1, [r7, #24] - 8001b50: f843 1022 str.w r1, [r3, r2, lsl #2] - } - - /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ - temp = GPIOx->MODER; - 8001b54: 687b ldr r3, [r7, #4] - 8001b56: 681b ldr r3, [r3, #0] - 8001b58: 61bb str r3, [r7, #24] - temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); - 8001b5a: 69fb ldr r3, [r7, #28] - 8001b5c: 005b lsls r3, r3, #1 - 8001b5e: 2203 movs r2, #3 + 8001b56: 69fb ldr r3, [r7, #28] + 8001b58: f003 0307 and.w r3, r3, #7 + 8001b5c: 009b lsls r3, r3, #2 + 8001b5e: 220f movs r2, #15 8001b60: fa02 f303 lsl.w r3, r2, r3 8001b64: 43db mvns r3, r3 8001b66: 69ba ldr r2, [r7, #24] 8001b68: 4013 ands r3, r2 8001b6a: 61bb str r3, [r7, #24] - temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); + temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); 8001b6c: 683b ldr r3, [r7, #0] - 8001b6e: 685b ldr r3, [r3, #4] - 8001b70: f003 0203 and.w r2, r3, #3 - 8001b74: 69fb ldr r3, [r7, #28] - 8001b76: 005b lsls r3, r3, #1 + 8001b6e: 691a ldr r2, [r3, #16] + 8001b70: 69fb ldr r3, [r7, #28] + 8001b72: f003 0307 and.w r3, r3, #7 + 8001b76: 009b lsls r3, r3, #2 8001b78: fa02 f303 lsl.w r3, r2, r3 8001b7c: 69ba ldr r2, [r7, #24] 8001b7e: 4313 orrs r3, r2 8001b80: 61bb str r3, [r7, #24] + GPIOx->AFR[position >> 3U] = temp; + 8001b82: 69fb ldr r3, [r7, #28] + 8001b84: 08da lsrs r2, r3, #3 + 8001b86: 687b ldr r3, [r7, #4] + 8001b88: 3208 adds r2, #8 + 8001b8a: 69b9 ldr r1, [r7, #24] + 8001b8c: f843 1022 str.w r1, [r3, r2, lsl #2] + } + + /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ + temp = GPIOx->MODER; + 8001b90: 687b ldr r3, [r7, #4] + 8001b92: 681b ldr r3, [r3, #0] + 8001b94: 61bb str r3, [r7, #24] + temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); + 8001b96: 69fb ldr r3, [r7, #28] + 8001b98: 005b lsls r3, r3, #1 + 8001b9a: 2203 movs r2, #3 + 8001b9c: fa02 f303 lsl.w r3, r2, r3 + 8001ba0: 43db mvns r3, r3 + 8001ba2: 69ba ldr r2, [r7, #24] + 8001ba4: 4013 ands r3, r2 + 8001ba6: 61bb str r3, [r7, #24] + temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); + 8001ba8: 683b ldr r3, [r7, #0] + 8001baa: 685b ldr r3, [r3, #4] + 8001bac: f003 0203 and.w r2, r3, #3 + 8001bb0: 69fb ldr r3, [r7, #28] + 8001bb2: 005b lsls r3, r3, #1 + 8001bb4: fa02 f303 lsl.w r3, r2, r3 + 8001bb8: 69ba ldr r2, [r7, #24] + 8001bba: 4313 orrs r3, r2 + 8001bbc: 61bb str r3, [r7, #24] GPIOx->MODER = temp; - 8001b82: 687b ldr r3, [r7, #4] - 8001b84: 69ba ldr r2, [r7, #24] - 8001b86: 601a str r2, [r3, #0] + 8001bbe: 687b ldr r3, [r7, #4] + 8001bc0: 69ba ldr r2, [r7, #24] + 8001bc2: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if((GPIO_Init->Mode & EXTI_MODE) != 0x00U) - 8001b88: 683b ldr r3, [r7, #0] - 8001b8a: 685b ldr r3, [r3, #4] - 8001b8c: f403 3340 and.w r3, r3, #196608 ; 0x30000 - 8001b90: 2b00 cmp r3, #0 - 8001b92: f000 80a2 beq.w 8001cda + 8001bc4: 683b ldr r3, [r7, #0] + 8001bc6: 685b ldr r3, [r3, #4] + 8001bc8: f403 3340 and.w r3, r3, #196608 ; 0x30000 + 8001bcc: 2b00 cmp r3, #0 + 8001bce: f000 80a2 beq.w 8001d16 { /* Enable SYSCFG Clock */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8001b96: 2300 movs r3, #0 - 8001b98: 60fb str r3, [r7, #12] - 8001b9a: 4b57 ldr r3, [pc, #348] ; (8001cf8 ) - 8001b9c: 6c5b ldr r3, [r3, #68] ; 0x44 - 8001b9e: 4a56 ldr r2, [pc, #344] ; (8001cf8 ) - 8001ba0: f443 4380 orr.w r3, r3, #16384 ; 0x4000 - 8001ba4: 6453 str r3, [r2, #68] ; 0x44 - 8001ba6: 4b54 ldr r3, [pc, #336] ; (8001cf8 ) - 8001ba8: 6c5b ldr r3, [r3, #68] ; 0x44 - 8001baa: f403 4380 and.w r3, r3, #16384 ; 0x4000 - 8001bae: 60fb str r3, [r7, #12] - 8001bb0: 68fb ldr r3, [r7, #12] + 8001bd2: 2300 movs r3, #0 + 8001bd4: 60fb str r3, [r7, #12] + 8001bd6: 4b57 ldr r3, [pc, #348] ; (8001d34 ) + 8001bd8: 6c5b ldr r3, [r3, #68] ; 0x44 + 8001bda: 4a56 ldr r2, [pc, #344] ; (8001d34 ) + 8001bdc: f443 4380 orr.w r3, r3, #16384 ; 0x4000 + 8001be0: 6453 str r3, [r2, #68] ; 0x44 + 8001be2: 4b54 ldr r3, [pc, #336] ; (8001d34 ) + 8001be4: 6c5b ldr r3, [r3, #68] ; 0x44 + 8001be6: f403 4380 and.w r3, r3, #16384 ; 0x4000 + 8001bea: 60fb str r3, [r7, #12] + 8001bec: 68fb ldr r3, [r7, #12] temp = SYSCFG->EXTICR[position >> 2U]; - 8001bb2: 4a52 ldr r2, [pc, #328] ; (8001cfc ) - 8001bb4: 69fb ldr r3, [r7, #28] - 8001bb6: 089b lsrs r3, r3, #2 - 8001bb8: 3302 adds r3, #2 - 8001bba: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8001bbe: 61bb str r3, [r7, #24] + 8001bee: 4a52 ldr r2, [pc, #328] ; (8001d38 ) + 8001bf0: 69fb ldr r3, [r7, #28] + 8001bf2: 089b lsrs r3, r3, #2 + 8001bf4: 3302 adds r3, #2 + 8001bf6: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8001bfa: 61bb str r3, [r7, #24] temp &= ~(0x0FU << (4U * (position & 0x03U))); - 8001bc0: 69fb ldr r3, [r7, #28] - 8001bc2: f003 0303 and.w r3, r3, #3 - 8001bc6: 009b lsls r3, r3, #2 - 8001bc8: 220f movs r2, #15 - 8001bca: fa02 f303 lsl.w r3, r2, r3 - 8001bce: 43db mvns r3, r3 - 8001bd0: 69ba ldr r2, [r7, #24] - 8001bd2: 4013 ands r3, r2 - 8001bd4: 61bb str r3, [r7, #24] + 8001bfc: 69fb ldr r3, [r7, #28] + 8001bfe: f003 0303 and.w r3, r3, #3 + 8001c02: 009b lsls r3, r3, #2 + 8001c04: 220f movs r2, #15 + 8001c06: fa02 f303 lsl.w r3, r2, r3 + 8001c0a: 43db mvns r3, r3 + 8001c0c: 69ba ldr r2, [r7, #24] + 8001c0e: 4013 ands r3, r2 + 8001c10: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4U * (position & 0x03U))); - 8001bd6: 687b ldr r3, [r7, #4] - 8001bd8: 4a49 ldr r2, [pc, #292] ; (8001d00 ) - 8001bda: 4293 cmp r3, r2 - 8001bdc: d019 beq.n 8001c12 - 8001bde: 687b ldr r3, [r7, #4] - 8001be0: 4a48 ldr r2, [pc, #288] ; (8001d04 ) - 8001be2: 4293 cmp r3, r2 - 8001be4: d013 beq.n 8001c0e - 8001be6: 687b ldr r3, [r7, #4] - 8001be8: 4a47 ldr r2, [pc, #284] ; (8001d08 ) - 8001bea: 4293 cmp r3, r2 - 8001bec: d00d beq.n 8001c0a - 8001bee: 687b ldr r3, [r7, #4] - 8001bf0: 4a46 ldr r2, [pc, #280] ; (8001d0c ) - 8001bf2: 4293 cmp r3, r2 - 8001bf4: d007 beq.n 8001c06 - 8001bf6: 687b ldr r3, [r7, #4] - 8001bf8: 4a45 ldr r2, [pc, #276] ; (8001d10 ) - 8001bfa: 4293 cmp r3, r2 - 8001bfc: d101 bne.n 8001c02 - 8001bfe: 2304 movs r3, #4 - 8001c00: e008 b.n 8001c14 - 8001c02: 2307 movs r3, #7 - 8001c04: e006 b.n 8001c14 - 8001c06: 2303 movs r3, #3 - 8001c08: e004 b.n 8001c14 - 8001c0a: 2302 movs r3, #2 - 8001c0c: e002 b.n 8001c14 - 8001c0e: 2301 movs r3, #1 - 8001c10: e000 b.n 8001c14 - 8001c12: 2300 movs r3, #0 - 8001c14: 69fa ldr r2, [r7, #28] - 8001c16: f002 0203 and.w r2, r2, #3 - 8001c1a: 0092 lsls r2, r2, #2 - 8001c1c: 4093 lsls r3, r2 - 8001c1e: 69ba ldr r2, [r7, #24] - 8001c20: 4313 orrs r3, r2 - 8001c22: 61bb str r3, [r7, #24] + 8001c12: 687b ldr r3, [r7, #4] + 8001c14: 4a49 ldr r2, [pc, #292] ; (8001d3c ) + 8001c16: 4293 cmp r3, r2 + 8001c18: d019 beq.n 8001c4e + 8001c1a: 687b ldr r3, [r7, #4] + 8001c1c: 4a48 ldr r2, [pc, #288] ; (8001d40 ) + 8001c1e: 4293 cmp r3, r2 + 8001c20: d013 beq.n 8001c4a + 8001c22: 687b ldr r3, [r7, #4] + 8001c24: 4a47 ldr r2, [pc, #284] ; (8001d44 ) + 8001c26: 4293 cmp r3, r2 + 8001c28: d00d beq.n 8001c46 + 8001c2a: 687b ldr r3, [r7, #4] + 8001c2c: 4a46 ldr r2, [pc, #280] ; (8001d48 ) + 8001c2e: 4293 cmp r3, r2 + 8001c30: d007 beq.n 8001c42 + 8001c32: 687b ldr r3, [r7, #4] + 8001c34: 4a45 ldr r2, [pc, #276] ; (8001d4c ) + 8001c36: 4293 cmp r3, r2 + 8001c38: d101 bne.n 8001c3e + 8001c3a: 2304 movs r3, #4 + 8001c3c: e008 b.n 8001c50 + 8001c3e: 2307 movs r3, #7 + 8001c40: e006 b.n 8001c50 + 8001c42: 2303 movs r3, #3 + 8001c44: e004 b.n 8001c50 + 8001c46: 2302 movs r3, #2 + 8001c48: e002 b.n 8001c50 + 8001c4a: 2301 movs r3, #1 + 8001c4c: e000 b.n 8001c50 + 8001c4e: 2300 movs r3, #0 + 8001c50: 69fa ldr r2, [r7, #28] + 8001c52: f002 0203 and.w r2, r2, #3 + 8001c56: 0092 lsls r2, r2, #2 + 8001c58: 4093 lsls r3, r2 + 8001c5a: 69ba ldr r2, [r7, #24] + 8001c5c: 4313 orrs r3, r2 + 8001c5e: 61bb str r3, [r7, #24] SYSCFG->EXTICR[position >> 2U] = temp; - 8001c24: 4935 ldr r1, [pc, #212] ; (8001cfc ) - 8001c26: 69fb ldr r3, [r7, #28] - 8001c28: 089b lsrs r3, r3, #2 - 8001c2a: 3302 adds r3, #2 - 8001c2c: 69ba ldr r2, [r7, #24] - 8001c2e: f841 2023 str.w r2, [r1, r3, lsl #2] + 8001c60: 4935 ldr r1, [pc, #212] ; (8001d38 ) + 8001c62: 69fb ldr r3, [r7, #28] + 8001c64: 089b lsrs r3, r3, #2 + 8001c66: 3302 adds r3, #2 + 8001c68: 69ba ldr r2, [r7, #24] + 8001c6a: f841 2023 str.w r2, [r1, r3, lsl #2] /* Clear Rising Falling edge configuration */ temp = EXTI->RTSR; - 8001c32: 4b38 ldr r3, [pc, #224] ; (8001d14 ) - 8001c34: 689b ldr r3, [r3, #8] - 8001c36: 61bb str r3, [r7, #24] + 8001c6e: 4b38 ldr r3, [pc, #224] ; (8001d50 ) + 8001c70: 689b ldr r3, [r3, #8] + 8001c72: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8001c38: 693b ldr r3, [r7, #16] - 8001c3a: 43db mvns r3, r3 - 8001c3c: 69ba ldr r2, [r7, #24] - 8001c3e: 4013 ands r3, r2 - 8001c40: 61bb str r3, [r7, #24] + 8001c74: 693b ldr r3, [r7, #16] + 8001c76: 43db mvns r3, r3 + 8001c78: 69ba ldr r2, [r7, #24] + 8001c7a: 4013 ands r3, r2 + 8001c7c: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_RISING) != 0x00U) - 8001c42: 683b ldr r3, [r7, #0] - 8001c44: 685b ldr r3, [r3, #4] - 8001c46: f403 1380 and.w r3, r3, #1048576 ; 0x100000 - 8001c4a: 2b00 cmp r3, #0 - 8001c4c: d003 beq.n 8001c56 + 8001c7e: 683b ldr r3, [r7, #0] + 8001c80: 685b ldr r3, [r3, #4] + 8001c82: f403 1380 and.w r3, r3, #1048576 ; 0x100000 + 8001c86: 2b00 cmp r3, #0 + 8001c88: d003 beq.n 8001c92 { temp |= iocurrent; - 8001c4e: 69ba ldr r2, [r7, #24] - 8001c50: 693b ldr r3, [r7, #16] - 8001c52: 4313 orrs r3, r2 - 8001c54: 61bb str r3, [r7, #24] + 8001c8a: 69ba ldr r2, [r7, #24] + 8001c8c: 693b ldr r3, [r7, #16] + 8001c8e: 4313 orrs r3, r2 + 8001c90: 61bb str r3, [r7, #24] } EXTI->RTSR = temp; - 8001c56: 4a2f ldr r2, [pc, #188] ; (8001d14 ) - 8001c58: 69bb ldr r3, [r7, #24] - 8001c5a: 6093 str r3, [r2, #8] + 8001c92: 4a2f ldr r2, [pc, #188] ; (8001d50 ) + 8001c94: 69bb ldr r3, [r7, #24] + 8001c96: 6093 str r3, [r2, #8] temp = EXTI->FTSR; - 8001c5c: 4b2d ldr r3, [pc, #180] ; (8001d14 ) - 8001c5e: 68db ldr r3, [r3, #12] - 8001c60: 61bb str r3, [r7, #24] + 8001c98: 4b2d ldr r3, [pc, #180] ; (8001d50 ) + 8001c9a: 68db ldr r3, [r3, #12] + 8001c9c: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8001c62: 693b ldr r3, [r7, #16] - 8001c64: 43db mvns r3, r3 - 8001c66: 69ba ldr r2, [r7, #24] - 8001c68: 4013 ands r3, r2 - 8001c6a: 61bb str r3, [r7, #24] + 8001c9e: 693b ldr r3, [r7, #16] + 8001ca0: 43db mvns r3, r3 + 8001ca2: 69ba ldr r2, [r7, #24] + 8001ca4: 4013 ands r3, r2 + 8001ca6: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00U) - 8001c6c: 683b ldr r3, [r7, #0] - 8001c6e: 685b ldr r3, [r3, #4] - 8001c70: f403 1300 and.w r3, r3, #2097152 ; 0x200000 - 8001c74: 2b00 cmp r3, #0 - 8001c76: d003 beq.n 8001c80 + 8001ca8: 683b ldr r3, [r7, #0] + 8001caa: 685b ldr r3, [r3, #4] + 8001cac: f403 1300 and.w r3, r3, #2097152 ; 0x200000 + 8001cb0: 2b00 cmp r3, #0 + 8001cb2: d003 beq.n 8001cbc { temp |= iocurrent; - 8001c78: 69ba ldr r2, [r7, #24] - 8001c7a: 693b ldr r3, [r7, #16] - 8001c7c: 4313 orrs r3, r2 - 8001c7e: 61bb str r3, [r7, #24] + 8001cb4: 69ba ldr r2, [r7, #24] + 8001cb6: 693b ldr r3, [r7, #16] + 8001cb8: 4313 orrs r3, r2 + 8001cba: 61bb str r3, [r7, #24] } EXTI->FTSR = temp; - 8001c80: 4a24 ldr r2, [pc, #144] ; (8001d14 ) - 8001c82: 69bb ldr r3, [r7, #24] - 8001c84: 60d3 str r3, [r2, #12] + 8001cbc: 4a24 ldr r2, [pc, #144] ; (8001d50 ) + 8001cbe: 69bb ldr r3, [r7, #24] + 8001cc0: 60d3 str r3, [r2, #12] temp = EXTI->EMR; - 8001c86: 4b23 ldr r3, [pc, #140] ; (8001d14 ) - 8001c88: 685b ldr r3, [r3, #4] - 8001c8a: 61bb str r3, [r7, #24] + 8001cc2: 4b23 ldr r3, [pc, #140] ; (8001d50 ) + 8001cc4: 685b ldr r3, [r3, #4] + 8001cc6: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8001c8c: 693b ldr r3, [r7, #16] - 8001c8e: 43db mvns r3, r3 - 8001c90: 69ba ldr r2, [r7, #24] - 8001c92: 4013 ands r3, r2 - 8001c94: 61bb str r3, [r7, #24] + 8001cc8: 693b ldr r3, [r7, #16] + 8001cca: 43db mvns r3, r3 + 8001ccc: 69ba ldr r2, [r7, #24] + 8001cce: 4013 ands r3, r2 + 8001cd0: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_EVT) != 0x00U) - 8001c96: 683b ldr r3, [r7, #0] - 8001c98: 685b ldr r3, [r3, #4] - 8001c9a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001c9e: 2b00 cmp r3, #0 - 8001ca0: d003 beq.n 8001caa + 8001cd2: 683b ldr r3, [r7, #0] + 8001cd4: 685b ldr r3, [r3, #4] + 8001cd6: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001cda: 2b00 cmp r3, #0 + 8001cdc: d003 beq.n 8001ce6 { temp |= iocurrent; - 8001ca2: 69ba ldr r2, [r7, #24] - 8001ca4: 693b ldr r3, [r7, #16] - 8001ca6: 4313 orrs r3, r2 - 8001ca8: 61bb str r3, [r7, #24] + 8001cde: 69ba ldr r2, [r7, #24] + 8001ce0: 693b ldr r3, [r7, #16] + 8001ce2: 4313 orrs r3, r2 + 8001ce4: 61bb str r3, [r7, #24] } EXTI->EMR = temp; - 8001caa: 4a1a ldr r2, [pc, #104] ; (8001d14 ) - 8001cac: 69bb ldr r3, [r7, #24] - 8001cae: 6053 str r3, [r2, #4] + 8001ce6: 4a1a ldr r2, [pc, #104] ; (8001d50 ) + 8001ce8: 69bb ldr r3, [r7, #24] + 8001cea: 6053 str r3, [r2, #4] /* Clear EXTI line configuration */ temp = EXTI->IMR; - 8001cb0: 4b18 ldr r3, [pc, #96] ; (8001d14 ) - 8001cb2: 681b ldr r3, [r3, #0] - 8001cb4: 61bb str r3, [r7, #24] + 8001cec: 4b18 ldr r3, [pc, #96] ; (8001d50 ) + 8001cee: 681b ldr r3, [r3, #0] + 8001cf0: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8001cb6: 693b ldr r3, [r7, #16] - 8001cb8: 43db mvns r3, r3 - 8001cba: 69ba ldr r2, [r7, #24] - 8001cbc: 4013 ands r3, r2 - 8001cbe: 61bb str r3, [r7, #24] + 8001cf2: 693b ldr r3, [r7, #16] + 8001cf4: 43db mvns r3, r3 + 8001cf6: 69ba ldr r2, [r7, #24] + 8001cf8: 4013 ands r3, r2 + 8001cfa: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_IT) != 0x00U) - 8001cc0: 683b ldr r3, [r7, #0] - 8001cc2: 685b ldr r3, [r3, #4] - 8001cc4: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8001cc8: 2b00 cmp r3, #0 - 8001cca: d003 beq.n 8001cd4 + 8001cfc: 683b ldr r3, [r7, #0] + 8001cfe: 685b ldr r3, [r3, #4] + 8001d00: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8001d04: 2b00 cmp r3, #0 + 8001d06: d003 beq.n 8001d10 { temp |= iocurrent; - 8001ccc: 69ba ldr r2, [r7, #24] - 8001cce: 693b ldr r3, [r7, #16] - 8001cd0: 4313 orrs r3, r2 - 8001cd2: 61bb str r3, [r7, #24] + 8001d08: 69ba ldr r2, [r7, #24] + 8001d0a: 693b ldr r3, [r7, #16] + 8001d0c: 4313 orrs r3, r2 + 8001d0e: 61bb str r3, [r7, #24] } EXTI->IMR = temp; - 8001cd4: 4a0f ldr r2, [pc, #60] ; (8001d14 ) - 8001cd6: 69bb ldr r3, [r7, #24] - 8001cd8: 6013 str r3, [r2, #0] + 8001d10: 4a0f ldr r2, [pc, #60] ; (8001d50 ) + 8001d12: 69bb ldr r3, [r7, #24] + 8001d14: 6013 str r3, [r2, #0] for(position = 0U; position < GPIO_NUMBER; position++) - 8001cda: 69fb ldr r3, [r7, #28] - 8001cdc: 3301 adds r3, #1 - 8001cde: 61fb str r3, [r7, #28] - 8001ce0: 69fb ldr r3, [r7, #28] - 8001ce2: 2b0f cmp r3, #15 - 8001ce4: f67f aea2 bls.w 8001a2c + 8001d16: 69fb ldr r3, [r7, #28] + 8001d18: 3301 adds r3, #1 + 8001d1a: 61fb str r3, [r7, #28] + 8001d1c: 69fb ldr r3, [r7, #28] + 8001d1e: 2b0f cmp r3, #15 + 8001d20: f67f aea2 bls.w 8001a68 } } } } - 8001ce8: bf00 nop - 8001cea: bf00 nop - 8001cec: 3724 adds r7, #36 ; 0x24 - 8001cee: 46bd mov sp, r7 - 8001cf0: f85d 7b04 ldr.w r7, [sp], #4 - 8001cf4: 4770 bx lr - 8001cf6: bf00 nop - 8001cf8: 40023800 .word 0x40023800 - 8001cfc: 40013800 .word 0x40013800 - 8001d00: 40020000 .word 0x40020000 - 8001d04: 40020400 .word 0x40020400 - 8001d08: 40020800 .word 0x40020800 - 8001d0c: 40020c00 .word 0x40020c00 - 8001d10: 40021000 .word 0x40021000 - 8001d14: 40013c00 .word 0x40013c00 + 8001d24: bf00 nop + 8001d26: bf00 nop + 8001d28: 3724 adds r7, #36 ; 0x24 + 8001d2a: 46bd mov sp, r7 + 8001d2c: f85d 7b04 ldr.w r7, [sp], #4 + 8001d30: 4770 bx lr + 8001d32: bf00 nop + 8001d34: 40023800 .word 0x40023800 + 8001d38: 40013800 .word 0x40013800 + 8001d3c: 40020000 .word 0x40020000 + 8001d40: 40020400 .word 0x40020400 + 8001d44: 40020800 .word 0x40020800 + 8001d48: 40020c00 .word 0x40020c00 + 8001d4c: 40021000 .word 0x40021000 + 8001d50: 40013c00 .word 0x40013c00 -08001d18 : +08001d54 : * @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) { - 8001d18: b480 push {r7} - 8001d1a: b085 sub sp, #20 - 8001d1c: af00 add r7, sp, #0 - 8001d1e: 6078 str r0, [r7, #4] - 8001d20: 460b mov r3, r1 - 8001d22: 807b strh r3, [r7, #2] + 8001d54: b480 push {r7} + 8001d56: b085 sub sp, #20 + 8001d58: af00 add r7, sp, #0 + 8001d5a: 6078 str r0, [r7, #4] + 8001d5c: 460b mov r3, r1 + 8001d5e: 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) - 8001d24: 687b ldr r3, [r7, #4] - 8001d26: 691a ldr r2, [r3, #16] - 8001d28: 887b ldrh r3, [r7, #2] - 8001d2a: 4013 ands r3, r2 - 8001d2c: 2b00 cmp r3, #0 - 8001d2e: d002 beq.n 8001d36 + 8001d60: 687b ldr r3, [r7, #4] + 8001d62: 691a ldr r2, [r3, #16] + 8001d64: 887b ldrh r3, [r7, #2] + 8001d66: 4013 ands r3, r2 + 8001d68: 2b00 cmp r3, #0 + 8001d6a: d002 beq.n 8001d72 { bitstatus = GPIO_PIN_SET; - 8001d30: 2301 movs r3, #1 - 8001d32: 73fb strb r3, [r7, #15] - 8001d34: e001 b.n 8001d3a + 8001d6c: 2301 movs r3, #1 + 8001d6e: 73fb strb r3, [r7, #15] + 8001d70: e001 b.n 8001d76 } else { bitstatus = GPIO_PIN_RESET; - 8001d36: 2300 movs r3, #0 - 8001d38: 73fb strb r3, [r7, #15] + 8001d72: 2300 movs r3, #0 + 8001d74: 73fb strb r3, [r7, #15] } return bitstatus; - 8001d3a: 7bfb ldrb r3, [r7, #15] + 8001d76: 7bfb ldrb r3, [r7, #15] } - 8001d3c: 4618 mov r0, r3 - 8001d3e: 3714 adds r7, #20 - 8001d40: 46bd mov sp, r7 - 8001d42: f85d 7b04 ldr.w r7, [sp], #4 - 8001d46: 4770 bx lr + 8001d78: 4618 mov r0, r3 + 8001d7a: 3714 adds r7, #20 + 8001d7c: 46bd mov sp, r7 + 8001d7e: f85d 7b04 ldr.w r7, [sp], #4 + 8001d82: 4770 bx lr -08001d48 : +08001d84 : * @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) { - 8001d48: b480 push {r7} - 8001d4a: b083 sub sp, #12 - 8001d4c: af00 add r7, sp, #0 - 8001d4e: 6078 str r0, [r7, #4] - 8001d50: 460b mov r3, r1 - 8001d52: 807b strh r3, [r7, #2] - 8001d54: 4613 mov r3, r2 - 8001d56: 707b strb r3, [r7, #1] + 8001d84: b480 push {r7} + 8001d86: b083 sub sp, #12 + 8001d88: af00 add r7, sp, #0 + 8001d8a: 6078 str r0, [r7, #4] + 8001d8c: 460b mov r3, r1 + 8001d8e: 807b strh r3, [r7, #2] + 8001d90: 4613 mov r3, r2 + 8001d92: 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) - 8001d58: 787b ldrb r3, [r7, #1] - 8001d5a: 2b00 cmp r3, #0 - 8001d5c: d003 beq.n 8001d66 + 8001d94: 787b ldrb r3, [r7, #1] + 8001d96: 2b00 cmp r3, #0 + 8001d98: d003 beq.n 8001da2 { GPIOx->BSRR = GPIO_Pin; - 8001d5e: 887a ldrh r2, [r7, #2] - 8001d60: 687b ldr r3, [r7, #4] - 8001d62: 619a str r2, [r3, #24] + 8001d9a: 887a ldrh r2, [r7, #2] + 8001d9c: 687b ldr r3, [r7, #4] + 8001d9e: 619a str r2, [r3, #24] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; } } - 8001d64: e003 b.n 8001d6e + 8001da0: e003 b.n 8001daa GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; - 8001d66: 887b ldrh r3, [r7, #2] - 8001d68: 041a lsls r2, r3, #16 - 8001d6a: 687b ldr r3, [r7, #4] - 8001d6c: 619a str r2, [r3, #24] + 8001da2: 887b ldrh r3, [r7, #2] + 8001da4: 041a lsls r2, r3, #16 + 8001da6: 687b ldr r3, [r7, #4] + 8001da8: 619a str r2, [r3, #24] } - 8001d6e: bf00 nop - 8001d70: 370c adds r7, #12 - 8001d72: 46bd mov sp, r7 - 8001d74: f85d 7b04 ldr.w r7, [sp], #4 - 8001d78: 4770 bx lr + 8001daa: bf00 nop + 8001dac: 370c adds r7, #12 + 8001dae: 46bd mov sp, r7 + 8001db0: f85d 7b04 ldr.w r7, [sp], #4 + 8001db4: 4770 bx lr ... -08001d7c : +08001db8 : * supported by this API. User should request a transition to HSE Off * first and then HSE On or HSE Bypass. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) { - 8001d7c: b580 push {r7, lr} - 8001d7e: b086 sub sp, #24 - 8001d80: af00 add r7, sp, #0 - 8001d82: 6078 str r0, [r7, #4] + 8001db8: b580 push {r7, lr} + 8001dba: b086 sub sp, #24 + 8001dbc: af00 add r7, sp, #0 + 8001dbe: 6078 str r0, [r7, #4] uint32_t tickstart, pll_config; /* Check Null pointer */ if(RCC_OscInitStruct == NULL) - 8001d84: 687b ldr r3, [r7, #4] - 8001d86: 2b00 cmp r3, #0 - 8001d88: d101 bne.n 8001d8e + 8001dc0: 687b ldr r3, [r7, #4] + 8001dc2: 2b00 cmp r3, #0 + 8001dc4: d101 bne.n 8001dca { return HAL_ERROR; - 8001d8a: 2301 movs r3, #1 - 8001d8c: e267 b.n 800225e + 8001dc6: 2301 movs r3, #1 + 8001dc8: e267 b.n 800229a } /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8001d8e: 687b ldr r3, [r7, #4] - 8001d90: 681b ldr r3, [r3, #0] - 8001d92: f003 0301 and.w r3, r3, #1 - 8001d96: 2b00 cmp r3, #0 - 8001d98: d075 beq.n 8001e86 + 8001dca: 687b ldr r3, [r7, #4] + 8001dcc: 681b ldr r3, [r3, #0] + 8001dce: f003 0301 and.w r3, r3, #1 + 8001dd2: 2b00 cmp r3, #0 + 8001dd4: d075 beq.n 8001ec2 { /* 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 HSE will not disabled */ if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) ||\ - 8001d9a: 4b88 ldr r3, [pc, #544] ; (8001fbc ) - 8001d9c: 689b ldr r3, [r3, #8] - 8001d9e: f003 030c and.w r3, r3, #12 - 8001da2: 2b04 cmp r3, #4 - 8001da4: d00c beq.n 8001dc0 + 8001dd6: 4b88 ldr r3, [pc, #544] ; (8001ff8 ) + 8001dd8: 689b ldr r3, [r3, #8] + 8001dda: f003 030c and.w r3, r3, #12 + 8001dde: 2b04 cmp r3, #4 + 8001de0: d00c beq.n 8001dfc ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8001da6: 4b85 ldr r3, [pc, #532] ; (8001fbc ) - 8001da8: 689b ldr r3, [r3, #8] - 8001daa: f003 030c and.w r3, r3, #12 + 8001de2: 4b85 ldr r3, [pc, #532] ; (8001ff8 ) + 8001de4: 689b ldr r3, [r3, #8] + 8001de6: f003 030c and.w r3, r3, #12 if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) ||\ - 8001dae: 2b08 cmp r3, #8 - 8001db0: d112 bne.n 8001dd8 + 8001dea: 2b08 cmp r3, #8 + 8001dec: d112 bne.n 8001e14 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8001db2: 4b82 ldr r3, [pc, #520] ; (8001fbc ) - 8001db4: 685b ldr r3, [r3, #4] - 8001db6: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 8001dba: f5b3 0f80 cmp.w r3, #4194304 ; 0x400000 - 8001dbe: d10b bne.n 8001dd8 + 8001dee: 4b82 ldr r3, [pc, #520] ; (8001ff8 ) + 8001df0: 685b ldr r3, [r3, #4] + 8001df2: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 8001df6: f5b3 0f80 cmp.w r3, #4194304 ; 0x400000 + 8001dfa: d10b bne.n 8001e14 { if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8001dc0: 4b7e ldr r3, [pc, #504] ; (8001fbc ) - 8001dc2: 681b ldr r3, [r3, #0] - 8001dc4: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001dc8: 2b00 cmp r3, #0 - 8001dca: d05b beq.n 8001e84 - 8001dcc: 687b ldr r3, [r7, #4] - 8001dce: 685b ldr r3, [r3, #4] - 8001dd0: 2b00 cmp r3, #0 - 8001dd2: d157 bne.n 8001e84 + 8001dfc: 4b7e ldr r3, [pc, #504] ; (8001ff8 ) + 8001dfe: 681b ldr r3, [r3, #0] + 8001e00: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001e04: 2b00 cmp r3, #0 + 8001e06: d05b beq.n 8001ec0 + 8001e08: 687b ldr r3, [r7, #4] + 8001e0a: 685b ldr r3, [r3, #4] + 8001e0c: 2b00 cmp r3, #0 + 8001e0e: d157 bne.n 8001ec0 { return HAL_ERROR; - 8001dd4: 2301 movs r3, #1 - 8001dd6: e242 b.n 800225e + 8001e10: 2301 movs r3, #1 + 8001e12: e242 b.n 800229a } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8001dd8: 687b ldr r3, [r7, #4] - 8001dda: 685b ldr r3, [r3, #4] - 8001ddc: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8001de0: d106 bne.n 8001df0 - 8001de2: 4b76 ldr r3, [pc, #472] ; (8001fbc ) - 8001de4: 681b ldr r3, [r3, #0] - 8001de6: 4a75 ldr r2, [pc, #468] ; (8001fbc ) - 8001de8: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8001dec: 6013 str r3, [r2, #0] - 8001dee: e01d b.n 8001e2c - 8001df0: 687b ldr r3, [r7, #4] - 8001df2: 685b ldr r3, [r3, #4] - 8001df4: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 - 8001df8: d10c bne.n 8001e14 - 8001dfa: 4b70 ldr r3, [pc, #448] ; (8001fbc ) - 8001dfc: 681b ldr r3, [r3, #0] - 8001dfe: 4a6f ldr r2, [pc, #444] ; (8001fbc ) - 8001e00: f443 2380 orr.w r3, r3, #262144 ; 0x40000 - 8001e04: 6013 str r3, [r2, #0] - 8001e06: 4b6d ldr r3, [pc, #436] ; (8001fbc ) - 8001e08: 681b ldr r3, [r3, #0] - 8001e0a: 4a6c ldr r2, [pc, #432] ; (8001fbc ) - 8001e0c: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8001e10: 6013 str r3, [r2, #0] - 8001e12: e00b b.n 8001e2c - 8001e14: 4b69 ldr r3, [pc, #420] ; (8001fbc ) - 8001e16: 681b ldr r3, [r3, #0] - 8001e18: 4a68 ldr r2, [pc, #416] ; (8001fbc ) - 8001e1a: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 8001e1e: 6013 str r3, [r2, #0] - 8001e20: 4b66 ldr r3, [pc, #408] ; (8001fbc ) - 8001e22: 681b ldr r3, [r3, #0] - 8001e24: 4a65 ldr r2, [pc, #404] ; (8001fbc ) - 8001e26: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 8001e2a: 6013 str r3, [r2, #0] + 8001e14: 687b ldr r3, [r7, #4] + 8001e16: 685b ldr r3, [r3, #4] + 8001e18: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 8001e1c: d106 bne.n 8001e2c + 8001e1e: 4b76 ldr r3, [pc, #472] ; (8001ff8 ) + 8001e20: 681b ldr r3, [r3, #0] + 8001e22: 4a75 ldr r2, [pc, #468] ; (8001ff8 ) + 8001e24: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8001e28: 6013 str r3, [r2, #0] + 8001e2a: e01d b.n 8001e68 + 8001e2c: 687b ldr r3, [r7, #4] + 8001e2e: 685b ldr r3, [r3, #4] + 8001e30: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 + 8001e34: d10c bne.n 8001e50 + 8001e36: 4b70 ldr r3, [pc, #448] ; (8001ff8 ) + 8001e38: 681b ldr r3, [r3, #0] + 8001e3a: 4a6f ldr r2, [pc, #444] ; (8001ff8 ) + 8001e3c: f443 2380 orr.w r3, r3, #262144 ; 0x40000 + 8001e40: 6013 str r3, [r2, #0] + 8001e42: 4b6d ldr r3, [pc, #436] ; (8001ff8 ) + 8001e44: 681b ldr r3, [r3, #0] + 8001e46: 4a6c ldr r2, [pc, #432] ; (8001ff8 ) + 8001e48: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8001e4c: 6013 str r3, [r2, #0] + 8001e4e: e00b b.n 8001e68 + 8001e50: 4b69 ldr r3, [pc, #420] ; (8001ff8 ) + 8001e52: 681b ldr r3, [r3, #0] + 8001e54: 4a68 ldr r2, [pc, #416] ; (8001ff8 ) + 8001e56: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 8001e5a: 6013 str r3, [r2, #0] + 8001e5c: 4b66 ldr r3, [pc, #408] ; (8001ff8 ) + 8001e5e: 681b ldr r3, [r3, #0] + 8001e60: 4a65 ldr r2, [pc, #404] ; (8001ff8 ) + 8001e62: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 8001e66: 6013 str r3, [r2, #0] /* Check the HSE State */ if((RCC_OscInitStruct->HSEState) != RCC_HSE_OFF) - 8001e2c: 687b ldr r3, [r7, #4] - 8001e2e: 685b ldr r3, [r3, #4] - 8001e30: 2b00 cmp r3, #0 - 8001e32: d013 beq.n 8001e5c + 8001e68: 687b ldr r3, [r7, #4] + 8001e6a: 685b ldr r3, [r3, #4] + 8001e6c: 2b00 cmp r3, #0 + 8001e6e: d013 beq.n 8001e98 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001e34: f7ff f892 bl 8000f5c - 8001e38: 6138 str r0, [r7, #16] + 8001e70: f7ff f892 bl 8000f98 + 8001e74: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8001e3a: e008 b.n 8001e4e + 8001e76: e008 b.n 8001e8a { if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 8001e3c: f7ff f88e bl 8000f5c - 8001e40: 4602 mov r2, r0 - 8001e42: 693b ldr r3, [r7, #16] - 8001e44: 1ad3 subs r3, r2, r3 - 8001e46: 2b64 cmp r3, #100 ; 0x64 - 8001e48: d901 bls.n 8001e4e + 8001e78: f7ff f88e bl 8000f98 + 8001e7c: 4602 mov r2, r0 + 8001e7e: 693b ldr r3, [r7, #16] + 8001e80: 1ad3 subs r3, r2, r3 + 8001e82: 2b64 cmp r3, #100 ; 0x64 + 8001e84: d901 bls.n 8001e8a { return HAL_TIMEOUT; - 8001e4a: 2303 movs r3, #3 - 8001e4c: e207 b.n 800225e + 8001e86: 2303 movs r3, #3 + 8001e88: e207 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8001e4e: 4b5b ldr r3, [pc, #364] ; (8001fbc ) - 8001e50: 681b ldr r3, [r3, #0] - 8001e52: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001e56: 2b00 cmp r3, #0 - 8001e58: d0f0 beq.n 8001e3c - 8001e5a: e014 b.n 8001e86 + 8001e8a: 4b5b ldr r3, [pc, #364] ; (8001ff8 ) + 8001e8c: 681b ldr r3, [r3, #0] + 8001e8e: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001e92: 2b00 cmp r3, #0 + 8001e94: d0f0 beq.n 8001e78 + 8001e96: e014 b.n 8001ec2 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001e5c: f7ff f87e bl 8000f5c - 8001e60: 6138 str r0, [r7, #16] + 8001e98: f7ff f87e bl 8000f98 + 8001e9c: 6138 str r0, [r7, #16] /* Wait till HSE is bypassed or disabled */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8001e62: e008 b.n 8001e76 + 8001e9e: e008 b.n 8001eb2 { if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 8001e64: f7ff f87a bl 8000f5c - 8001e68: 4602 mov r2, r0 - 8001e6a: 693b ldr r3, [r7, #16] - 8001e6c: 1ad3 subs r3, r2, r3 - 8001e6e: 2b64 cmp r3, #100 ; 0x64 - 8001e70: d901 bls.n 8001e76 + 8001ea0: f7ff f87a bl 8000f98 + 8001ea4: 4602 mov r2, r0 + 8001ea6: 693b ldr r3, [r7, #16] + 8001ea8: 1ad3 subs r3, r2, r3 + 8001eaa: 2b64 cmp r3, #100 ; 0x64 + 8001eac: d901 bls.n 8001eb2 { return HAL_TIMEOUT; - 8001e72: 2303 movs r3, #3 - 8001e74: e1f3 b.n 800225e + 8001eae: 2303 movs r3, #3 + 8001eb0: e1f3 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8001e76: 4b51 ldr r3, [pc, #324] ; (8001fbc ) - 8001e78: 681b ldr r3, [r3, #0] - 8001e7a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001e7e: 2b00 cmp r3, #0 - 8001e80: d1f0 bne.n 8001e64 - 8001e82: e000 b.n 8001e86 + 8001eb2: 4b51 ldr r3, [pc, #324] ; (8001ff8 ) + 8001eb4: 681b ldr r3, [r3, #0] + 8001eb6: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001eba: 2b00 cmp r3, #0 + 8001ebc: d1f0 bne.n 8001ea0 + 8001ebe: e000 b.n 8001ec2 if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8001e84: bf00 nop + 8001ec0: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8001e86: 687b ldr r3, [r7, #4] - 8001e88: 681b ldr r3, [r3, #0] - 8001e8a: f003 0302 and.w r3, r3, #2 - 8001e8e: 2b00 cmp r3, #0 - 8001e90: d063 beq.n 8001f5a + 8001ec2: 687b ldr r3, [r7, #4] + 8001ec4: 681b ldr r3, [r3, #0] + 8001ec6: f003 0302 and.w r3, r3, #2 + 8001eca: 2b00 cmp r3, #0 + 8001ecc: d063 beq.n 8001f96 /* 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_CFGR_SWS_HSI) ||\ - 8001e92: 4b4a ldr r3, [pc, #296] ; (8001fbc ) - 8001e94: 689b ldr r3, [r3, #8] - 8001e96: f003 030c and.w r3, r3, #12 - 8001e9a: 2b00 cmp r3, #0 - 8001e9c: d00b beq.n 8001eb6 + 8001ece: 4b4a ldr r3, [pc, #296] ; (8001ff8 ) + 8001ed0: 689b ldr r3, [r3, #8] + 8001ed2: f003 030c and.w r3, r3, #12 + 8001ed6: 2b00 cmp r3, #0 + 8001ed8: d00b beq.n 8001ef2 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8001e9e: 4b47 ldr r3, [pc, #284] ; (8001fbc ) - 8001ea0: 689b ldr r3, [r3, #8] - 8001ea2: f003 030c and.w r3, r3, #12 + 8001eda: 4b47 ldr r3, [pc, #284] ; (8001ff8 ) + 8001edc: 689b ldr r3, [r3, #8] + 8001ede: f003 030c and.w r3, r3, #12 if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSI) ||\ - 8001ea6: 2b08 cmp r3, #8 - 8001ea8: d11c bne.n 8001ee4 + 8001ee2: 2b08 cmp r3, #8 + 8001ee4: d11c bne.n 8001f20 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8001eaa: 4b44 ldr r3, [pc, #272] ; (8001fbc ) - 8001eac: 685b ldr r3, [r3, #4] - 8001eae: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 8001eb2: 2b00 cmp r3, #0 - 8001eb4: d116 bne.n 8001ee4 + 8001ee6: 4b44 ldr r3, [pc, #272] ; (8001ff8 ) + 8001ee8: 685b ldr r3, [r3, #4] + 8001eea: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 8001eee: 2b00 cmp r3, #0 + 8001ef0: d116 bne.n 8001f20 { /* 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)) - 8001eb6: 4b41 ldr r3, [pc, #260] ; (8001fbc ) - 8001eb8: 681b ldr r3, [r3, #0] - 8001eba: f003 0302 and.w r3, r3, #2 - 8001ebe: 2b00 cmp r3, #0 - 8001ec0: d005 beq.n 8001ece - 8001ec2: 687b ldr r3, [r7, #4] - 8001ec4: 68db ldr r3, [r3, #12] - 8001ec6: 2b01 cmp r3, #1 - 8001ec8: d001 beq.n 8001ece + 8001ef2: 4b41 ldr r3, [pc, #260] ; (8001ff8 ) + 8001ef4: 681b ldr r3, [r3, #0] + 8001ef6: f003 0302 and.w r3, r3, #2 + 8001efa: 2b00 cmp r3, #0 + 8001efc: d005 beq.n 8001f0a + 8001efe: 687b ldr r3, [r7, #4] + 8001f00: 68db ldr r3, [r3, #12] + 8001f02: 2b01 cmp r3, #1 + 8001f04: d001 beq.n 8001f0a { return HAL_ERROR; - 8001eca: 2301 movs r3, #1 - 8001ecc: e1c7 b.n 800225e + 8001f06: 2301 movs r3, #1 + 8001f08: e1c7 b.n 800229a } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8001ece: 4b3b ldr r3, [pc, #236] ; (8001fbc ) - 8001ed0: 681b ldr r3, [r3, #0] - 8001ed2: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8001ed6: 687b ldr r3, [r7, #4] - 8001ed8: 691b ldr r3, [r3, #16] - 8001eda: 00db lsls r3, r3, #3 - 8001edc: 4937 ldr r1, [pc, #220] ; (8001fbc ) - 8001ede: 4313 orrs r3, r2 - 8001ee0: 600b str r3, [r1, #0] + 8001f0a: 4b3b ldr r3, [pc, #236] ; (8001ff8 ) + 8001f0c: 681b ldr r3, [r3, #0] + 8001f0e: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8001f12: 687b ldr r3, [r7, #4] + 8001f14: 691b ldr r3, [r3, #16] + 8001f16: 00db lsls r3, r3, #3 + 8001f18: 4937 ldr r1, [pc, #220] ; (8001ff8 ) + 8001f1a: 4313 orrs r3, r2 + 8001f1c: 600b str r3, [r1, #0] if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8001ee2: e03a b.n 8001f5a + 8001f1e: e03a b.n 8001f96 } } else { /* Check the HSI State */ if((RCC_OscInitStruct->HSIState)!= RCC_HSI_OFF) - 8001ee4: 687b ldr r3, [r7, #4] - 8001ee6: 68db ldr r3, [r3, #12] - 8001ee8: 2b00 cmp r3, #0 - 8001eea: d020 beq.n 8001f2e + 8001f20: 687b ldr r3, [r7, #4] + 8001f22: 68db ldr r3, [r3, #12] + 8001f24: 2b00 cmp r3, #0 + 8001f26: d020 beq.n 8001f6a { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 8001eec: 4b34 ldr r3, [pc, #208] ; (8001fc0 ) - 8001eee: 2201 movs r2, #1 - 8001ef0: 601a str r2, [r3, #0] + 8001f28: 4b34 ldr r3, [pc, #208] ; (8001ffc ) + 8001f2a: 2201 movs r2, #1 + 8001f2c: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8001ef2: f7ff f833 bl 8000f5c - 8001ef6: 6138 str r0, [r7, #16] + 8001f2e: f7ff f833 bl 8000f98 + 8001f32: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8001ef8: e008 b.n 8001f0c + 8001f34: e008 b.n 8001f48 { if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 8001efa: f7ff f82f bl 8000f5c - 8001efe: 4602 mov r2, r0 - 8001f00: 693b ldr r3, [r7, #16] - 8001f02: 1ad3 subs r3, r2, r3 - 8001f04: 2b02 cmp r3, #2 - 8001f06: d901 bls.n 8001f0c + 8001f36: f7ff f82f bl 8000f98 + 8001f3a: 4602 mov r2, r0 + 8001f3c: 693b ldr r3, [r7, #16] + 8001f3e: 1ad3 subs r3, r2, r3 + 8001f40: 2b02 cmp r3, #2 + 8001f42: d901 bls.n 8001f48 { return HAL_TIMEOUT; - 8001f08: 2303 movs r3, #3 - 8001f0a: e1a8 b.n 800225e + 8001f44: 2303 movs r3, #3 + 8001f46: e1a8 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8001f0c: 4b2b ldr r3, [pc, #172] ; (8001fbc ) - 8001f0e: 681b ldr r3, [r3, #0] - 8001f10: f003 0302 and.w r3, r3, #2 - 8001f14: 2b00 cmp r3, #0 - 8001f16: d0f0 beq.n 8001efa + 8001f48: 4b2b ldr r3, [pc, #172] ; (8001ff8 ) + 8001f4a: 681b ldr r3, [r3, #0] + 8001f4c: f003 0302 and.w r3, r3, #2 + 8001f50: 2b00 cmp r3, #0 + 8001f52: d0f0 beq.n 8001f36 } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value. */ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8001f18: 4b28 ldr r3, [pc, #160] ; (8001fbc ) - 8001f1a: 681b ldr r3, [r3, #0] - 8001f1c: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8001f20: 687b ldr r3, [r7, #4] - 8001f22: 691b ldr r3, [r3, #16] - 8001f24: 00db lsls r3, r3, #3 - 8001f26: 4925 ldr r1, [pc, #148] ; (8001fbc ) - 8001f28: 4313 orrs r3, r2 - 8001f2a: 600b str r3, [r1, #0] - 8001f2c: e015 b.n 8001f5a + 8001f54: 4b28 ldr r3, [pc, #160] ; (8001ff8 ) + 8001f56: 681b ldr r3, [r3, #0] + 8001f58: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8001f5c: 687b ldr r3, [r7, #4] + 8001f5e: 691b ldr r3, [r3, #16] + 8001f60: 00db lsls r3, r3, #3 + 8001f62: 4925 ldr r1, [pc, #148] ; (8001ff8 ) + 8001f64: 4313 orrs r3, r2 + 8001f66: 600b str r3, [r1, #0] + 8001f68: e015 b.n 8001f96 } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 8001f2e: 4b24 ldr r3, [pc, #144] ; (8001fc0 ) - 8001f30: 2200 movs r2, #0 - 8001f32: 601a str r2, [r3, #0] + 8001f6a: 4b24 ldr r3, [pc, #144] ; (8001ffc ) + 8001f6c: 2200 movs r2, #0 + 8001f6e: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8001f34: f7ff f812 bl 8000f5c - 8001f38: 6138 str r0, [r7, #16] + 8001f70: f7ff f812 bl 8000f98 + 8001f74: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8001f3a: e008 b.n 8001f4e + 8001f76: e008 b.n 8001f8a { if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 8001f3c: f7ff f80e bl 8000f5c - 8001f40: 4602 mov r2, r0 - 8001f42: 693b ldr r3, [r7, #16] - 8001f44: 1ad3 subs r3, r2, r3 - 8001f46: 2b02 cmp r3, #2 - 8001f48: d901 bls.n 8001f4e + 8001f78: f7ff f80e bl 8000f98 + 8001f7c: 4602 mov r2, r0 + 8001f7e: 693b ldr r3, [r7, #16] + 8001f80: 1ad3 subs r3, r2, r3 + 8001f82: 2b02 cmp r3, #2 + 8001f84: d901 bls.n 8001f8a { return HAL_TIMEOUT; - 8001f4a: 2303 movs r3, #3 - 8001f4c: e187 b.n 800225e + 8001f86: 2303 movs r3, #3 + 8001f88: e187 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8001f4e: 4b1b ldr r3, [pc, #108] ; (8001fbc ) - 8001f50: 681b ldr r3, [r3, #0] - 8001f52: f003 0302 and.w r3, r3, #2 - 8001f56: 2b00 cmp r3, #0 - 8001f58: d1f0 bne.n 8001f3c + 8001f8a: 4b1b ldr r3, [pc, #108] ; (8001ff8 ) + 8001f8c: 681b ldr r3, [r3, #0] + 8001f8e: f003 0302 and.w r3, r3, #2 + 8001f92: 2b00 cmp r3, #0 + 8001f94: d1f0 bne.n 8001f78 } } } } /*------------------------------ LSI Configuration -------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 8001f5a: 687b ldr r3, [r7, #4] - 8001f5c: 681b ldr r3, [r3, #0] - 8001f5e: f003 0308 and.w r3, r3, #8 - 8001f62: 2b00 cmp r3, #0 - 8001f64: d036 beq.n 8001fd4 + 8001f96: 687b ldr r3, [r7, #4] + 8001f98: 681b ldr r3, [r3, #0] + 8001f9a: f003 0308 and.w r3, r3, #8 + 8001f9e: 2b00 cmp r3, #0 + 8001fa0: d036 beq.n 8002010 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if((RCC_OscInitStruct->LSIState)!= RCC_LSI_OFF) - 8001f66: 687b ldr r3, [r7, #4] - 8001f68: 695b ldr r3, [r3, #20] - 8001f6a: 2b00 cmp r3, #0 - 8001f6c: d016 beq.n 8001f9c + 8001fa2: 687b ldr r3, [r7, #4] + 8001fa4: 695b ldr r3, [r3, #20] + 8001fa6: 2b00 cmp r3, #0 + 8001fa8: d016 beq.n 8001fd8 { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 8001f6e: 4b15 ldr r3, [pc, #84] ; (8001fc4 ) - 8001f70: 2201 movs r2, #1 - 8001f72: 601a str r2, [r3, #0] + 8001faa: 4b15 ldr r3, [pc, #84] ; (8002000 ) + 8001fac: 2201 movs r2, #1 + 8001fae: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8001f74: f7fe fff2 bl 8000f5c - 8001f78: 6138 str r0, [r7, #16] + 8001fb0: f7fe fff2 bl 8000f98 + 8001fb4: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8001f7a: e008 b.n 8001f8e + 8001fb6: e008 b.n 8001fca { if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 8001f7c: f7fe ffee bl 8000f5c - 8001f80: 4602 mov r2, r0 - 8001f82: 693b ldr r3, [r7, #16] - 8001f84: 1ad3 subs r3, r2, r3 - 8001f86: 2b02 cmp r3, #2 - 8001f88: d901 bls.n 8001f8e + 8001fb8: f7fe ffee bl 8000f98 + 8001fbc: 4602 mov r2, r0 + 8001fbe: 693b ldr r3, [r7, #16] + 8001fc0: 1ad3 subs r3, r2, r3 + 8001fc2: 2b02 cmp r3, #2 + 8001fc4: d901 bls.n 8001fca { return HAL_TIMEOUT; - 8001f8a: 2303 movs r3, #3 - 8001f8c: e167 b.n 800225e + 8001fc6: 2303 movs r3, #3 + 8001fc8: e167 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8001f8e: 4b0b ldr r3, [pc, #44] ; (8001fbc ) - 8001f90: 6f5b ldr r3, [r3, #116] ; 0x74 - 8001f92: f003 0302 and.w r3, r3, #2 - 8001f96: 2b00 cmp r3, #0 - 8001f98: d0f0 beq.n 8001f7c - 8001f9a: e01b b.n 8001fd4 + 8001fca: 4b0b ldr r3, [pc, #44] ; (8001ff8 ) + 8001fcc: 6f5b ldr r3, [r3, #116] ; 0x74 + 8001fce: f003 0302 and.w r3, r3, #2 + 8001fd2: 2b00 cmp r3, #0 + 8001fd4: d0f0 beq.n 8001fb8 + 8001fd6: e01b b.n 8002010 } } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 8001f9c: 4b09 ldr r3, [pc, #36] ; (8001fc4 ) - 8001f9e: 2200 movs r2, #0 - 8001fa0: 601a str r2, [r3, #0] + 8001fd8: 4b09 ldr r3, [pc, #36] ; (8002000 ) + 8001fda: 2200 movs r2, #0 + 8001fdc: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001fa2: f7fe ffdb bl 8000f5c - 8001fa6: 6138 str r0, [r7, #16] + 8001fde: f7fe ffdb bl 8000f98 + 8001fe2: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8001fa8: e00e b.n 8001fc8 + 8001fe4: e00e b.n 8002004 { if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 8001faa: f7fe ffd7 bl 8000f5c - 8001fae: 4602 mov r2, r0 - 8001fb0: 693b ldr r3, [r7, #16] - 8001fb2: 1ad3 subs r3, r2, r3 - 8001fb4: 2b02 cmp r3, #2 - 8001fb6: d907 bls.n 8001fc8 + 8001fe6: f7fe ffd7 bl 8000f98 + 8001fea: 4602 mov r2, r0 + 8001fec: 693b ldr r3, [r7, #16] + 8001fee: 1ad3 subs r3, r2, r3 + 8001ff0: 2b02 cmp r3, #2 + 8001ff2: d907 bls.n 8002004 { return HAL_TIMEOUT; - 8001fb8: 2303 movs r3, #3 - 8001fba: e150 b.n 800225e - 8001fbc: 40023800 .word 0x40023800 - 8001fc0: 42470000 .word 0x42470000 - 8001fc4: 42470e80 .word 0x42470e80 + 8001ff4: 2303 movs r3, #3 + 8001ff6: e150 b.n 800229a + 8001ff8: 40023800 .word 0x40023800 + 8001ffc: 42470000 .word 0x42470000 + 8002000: 42470e80 .word 0x42470e80 while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8001fc8: 4b88 ldr r3, [pc, #544] ; (80021ec ) - 8001fca: 6f5b ldr r3, [r3, #116] ; 0x74 - 8001fcc: f003 0302 and.w r3, r3, #2 - 8001fd0: 2b00 cmp r3, #0 - 8001fd2: d1ea bne.n 8001faa + 8002004: 4b88 ldr r3, [pc, #544] ; (8002228 ) + 8002006: 6f5b ldr r3, [r3, #116] ; 0x74 + 8002008: f003 0302 and.w r3, r3, #2 + 800200c: 2b00 cmp r3, #0 + 800200e: d1ea bne.n 8001fe6 } } } } /*------------------------------ LSE Configuration -------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8001fd4: 687b ldr r3, [r7, #4] - 8001fd6: 681b ldr r3, [r3, #0] - 8001fd8: f003 0304 and.w r3, r3, #4 - 8001fdc: 2b00 cmp r3, #0 - 8001fde: f000 8097 beq.w 8002110 + 8002010: 687b ldr r3, [r7, #4] + 8002012: 681b ldr r3, [r3, #0] + 8002014: f003 0304 and.w r3, r3, #4 + 8002018: 2b00 cmp r3, #0 + 800201a: f000 8097 beq.w 800214c { FlagStatus pwrclkchanged = RESET; - 8001fe2: 2300 movs r3, #0 - 8001fe4: 75fb strb r3, [r7, #23] + 800201e: 2300 movs r3, #0 + 8002020: 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()) - 8001fe6: 4b81 ldr r3, [pc, #516] ; (80021ec ) - 8001fe8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001fea: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8001fee: 2b00 cmp r3, #0 - 8001ff0: d10f bne.n 8002012 + 8002022: 4b81 ldr r3, [pc, #516] ; (8002228 ) + 8002024: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002026: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 800202a: 2b00 cmp r3, #0 + 800202c: d10f bne.n 800204e { __HAL_RCC_PWR_CLK_ENABLE(); - 8001ff2: 2300 movs r3, #0 - 8001ff4: 60bb str r3, [r7, #8] - 8001ff6: 4b7d ldr r3, [pc, #500] ; (80021ec ) - 8001ff8: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001ffa: 4a7c ldr r2, [pc, #496] ; (80021ec ) - 8001ffc: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 8002000: 6413 str r3, [r2, #64] ; 0x40 - 8002002: 4b7a ldr r3, [pc, #488] ; (80021ec ) - 8002004: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002006: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 800200a: 60bb str r3, [r7, #8] - 800200c: 68bb ldr r3, [r7, #8] + 800202e: 2300 movs r3, #0 + 8002030: 60bb str r3, [r7, #8] + 8002032: 4b7d ldr r3, [pc, #500] ; (8002228 ) + 8002034: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002036: 4a7c ldr r2, [pc, #496] ; (8002228 ) + 8002038: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 800203c: 6413 str r3, [r2, #64] ; 0x40 + 800203e: 4b7a ldr r3, [pc, #488] ; (8002228 ) + 8002040: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002042: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8002046: 60bb str r3, [r7, #8] + 8002048: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 800200e: 2301 movs r3, #1 - 8002010: 75fb strb r3, [r7, #23] + 800204a: 2301 movs r3, #1 + 800204c: 75fb strb r3, [r7, #23] } if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8002012: 4b77 ldr r3, [pc, #476] ; (80021f0 ) - 8002014: 681b ldr r3, [r3, #0] - 8002016: f403 7380 and.w r3, r3, #256 ; 0x100 - 800201a: 2b00 cmp r3, #0 - 800201c: d118 bne.n 8002050 + 800204e: 4b77 ldr r3, [pc, #476] ; (800222c ) + 8002050: 681b ldr r3, [r3, #0] + 8002052: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002056: 2b00 cmp r3, #0 + 8002058: d118 bne.n 800208c { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 800201e: 4b74 ldr r3, [pc, #464] ; (80021f0 ) - 8002020: 681b ldr r3, [r3, #0] - 8002022: 4a73 ldr r2, [pc, #460] ; (80021f0 ) - 8002024: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8002028: 6013 str r3, [r2, #0] + 800205a: 4b74 ldr r3, [pc, #464] ; (800222c ) + 800205c: 681b ldr r3, [r3, #0] + 800205e: 4a73 ldr r2, [pc, #460] ; (800222c ) + 8002060: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8002064: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 800202a: f7fe ff97 bl 8000f5c - 800202e: 6138 str r0, [r7, #16] + 8002066: f7fe ff97 bl 8000f98 + 800206a: 6138 str r0, [r7, #16] while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8002030: e008 b.n 8002044 + 800206c: e008 b.n 8002080 { if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8002032: f7fe ff93 bl 8000f5c - 8002036: 4602 mov r2, r0 - 8002038: 693b ldr r3, [r7, #16] - 800203a: 1ad3 subs r3, r2, r3 - 800203c: 2b02 cmp r3, #2 - 800203e: d901 bls.n 8002044 + 800206e: f7fe ff93 bl 8000f98 + 8002072: 4602 mov r2, r0 + 8002074: 693b ldr r3, [r7, #16] + 8002076: 1ad3 subs r3, r2, r3 + 8002078: 2b02 cmp r3, #2 + 800207a: d901 bls.n 8002080 { return HAL_TIMEOUT; - 8002040: 2303 movs r3, #3 - 8002042: e10c b.n 800225e + 800207c: 2303 movs r3, #3 + 800207e: e10c b.n 800229a while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8002044: 4b6a ldr r3, [pc, #424] ; (80021f0 ) - 8002046: 681b ldr r3, [r3, #0] - 8002048: f403 7380 and.w r3, r3, #256 ; 0x100 - 800204c: 2b00 cmp r3, #0 - 800204e: d0f0 beq.n 8002032 + 8002080: 4b6a ldr r3, [pc, #424] ; (800222c ) + 8002082: 681b ldr r3, [r3, #0] + 8002084: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002088: 2b00 cmp r3, #0 + 800208a: d0f0 beq.n 800206e } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8002050: 687b ldr r3, [r7, #4] - 8002052: 689b ldr r3, [r3, #8] - 8002054: 2b01 cmp r3, #1 - 8002056: d106 bne.n 8002066 - 8002058: 4b64 ldr r3, [pc, #400] ; (80021ec ) - 800205a: 6f1b ldr r3, [r3, #112] ; 0x70 - 800205c: 4a63 ldr r2, [pc, #396] ; (80021ec ) - 800205e: f043 0301 orr.w r3, r3, #1 - 8002062: 6713 str r3, [r2, #112] ; 0x70 - 8002064: e01c b.n 80020a0 - 8002066: 687b ldr r3, [r7, #4] - 8002068: 689b ldr r3, [r3, #8] - 800206a: 2b05 cmp r3, #5 - 800206c: d10c bne.n 8002088 - 800206e: 4b5f ldr r3, [pc, #380] ; (80021ec ) - 8002070: 6f1b ldr r3, [r3, #112] ; 0x70 - 8002072: 4a5e ldr r2, [pc, #376] ; (80021ec ) - 8002074: f043 0304 orr.w r3, r3, #4 - 8002078: 6713 str r3, [r2, #112] ; 0x70 - 800207a: 4b5c ldr r3, [pc, #368] ; (80021ec ) - 800207c: 6f1b ldr r3, [r3, #112] ; 0x70 - 800207e: 4a5b ldr r2, [pc, #364] ; (80021ec ) - 8002080: f043 0301 orr.w r3, r3, #1 - 8002084: 6713 str r3, [r2, #112] ; 0x70 - 8002086: e00b b.n 80020a0 - 8002088: 4b58 ldr r3, [pc, #352] ; (80021ec ) - 800208a: 6f1b ldr r3, [r3, #112] ; 0x70 - 800208c: 4a57 ldr r2, [pc, #348] ; (80021ec ) - 800208e: f023 0301 bic.w r3, r3, #1 - 8002092: 6713 str r3, [r2, #112] ; 0x70 - 8002094: 4b55 ldr r3, [pc, #340] ; (80021ec ) + 800208c: 687b ldr r3, [r7, #4] + 800208e: 689b ldr r3, [r3, #8] + 8002090: 2b01 cmp r3, #1 + 8002092: d106 bne.n 80020a2 + 8002094: 4b64 ldr r3, [pc, #400] ; (8002228 ) 8002096: 6f1b ldr r3, [r3, #112] ; 0x70 - 8002098: 4a54 ldr r2, [pc, #336] ; (80021ec ) - 800209a: f023 0304 bic.w r3, r3, #4 + 8002098: 4a63 ldr r2, [pc, #396] ; (8002228 ) + 800209a: f043 0301 orr.w r3, r3, #1 800209e: 6713 str r3, [r2, #112] ; 0x70 + 80020a0: e01c b.n 80020dc + 80020a2: 687b ldr r3, [r7, #4] + 80020a4: 689b ldr r3, [r3, #8] + 80020a6: 2b05 cmp r3, #5 + 80020a8: d10c bne.n 80020c4 + 80020aa: 4b5f ldr r3, [pc, #380] ; (8002228 ) + 80020ac: 6f1b ldr r3, [r3, #112] ; 0x70 + 80020ae: 4a5e ldr r2, [pc, #376] ; (8002228 ) + 80020b0: f043 0304 orr.w r3, r3, #4 + 80020b4: 6713 str r3, [r2, #112] ; 0x70 + 80020b6: 4b5c ldr r3, [pc, #368] ; (8002228 ) + 80020b8: 6f1b ldr r3, [r3, #112] ; 0x70 + 80020ba: 4a5b ldr r2, [pc, #364] ; (8002228 ) + 80020bc: f043 0301 orr.w r3, r3, #1 + 80020c0: 6713 str r3, [r2, #112] ; 0x70 + 80020c2: e00b b.n 80020dc + 80020c4: 4b58 ldr r3, [pc, #352] ; (8002228 ) + 80020c6: 6f1b ldr r3, [r3, #112] ; 0x70 + 80020c8: 4a57 ldr r2, [pc, #348] ; (8002228 ) + 80020ca: f023 0301 bic.w r3, r3, #1 + 80020ce: 6713 str r3, [r2, #112] ; 0x70 + 80020d0: 4b55 ldr r3, [pc, #340] ; (8002228 ) + 80020d2: 6f1b ldr r3, [r3, #112] ; 0x70 + 80020d4: 4a54 ldr r2, [pc, #336] ; (8002228 ) + 80020d6: f023 0304 bic.w r3, r3, #4 + 80020da: 6713 str r3, [r2, #112] ; 0x70 /* Check the LSE State */ if((RCC_OscInitStruct->LSEState) != RCC_LSE_OFF) - 80020a0: 687b ldr r3, [r7, #4] - 80020a2: 689b ldr r3, [r3, #8] - 80020a4: 2b00 cmp r3, #0 - 80020a6: d015 beq.n 80020d4 + 80020dc: 687b ldr r3, [r7, #4] + 80020de: 689b ldr r3, [r3, #8] + 80020e0: 2b00 cmp r3, #0 + 80020e2: d015 beq.n 8002110 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80020a8: f7fe ff58 bl 8000f5c - 80020ac: 6138 str r0, [r7, #16] + 80020e4: f7fe ff58 bl 8000f98 + 80020e8: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80020ae: e00a b.n 80020c6 + 80020ea: e00a b.n 8002102 { if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 80020b0: f7fe ff54 bl 8000f5c - 80020b4: 4602 mov r2, r0 - 80020b6: 693b ldr r3, [r7, #16] - 80020b8: 1ad3 subs r3, r2, r3 - 80020ba: f241 3288 movw r2, #5000 ; 0x1388 - 80020be: 4293 cmp r3, r2 - 80020c0: d901 bls.n 80020c6 + 80020ec: f7fe ff54 bl 8000f98 + 80020f0: 4602 mov r2, r0 + 80020f2: 693b ldr r3, [r7, #16] + 80020f4: 1ad3 subs r3, r2, r3 + 80020f6: f241 3288 movw r2, #5000 ; 0x1388 + 80020fa: 4293 cmp r3, r2 + 80020fc: d901 bls.n 8002102 { return HAL_TIMEOUT; - 80020c2: 2303 movs r3, #3 - 80020c4: e0cb b.n 800225e + 80020fe: 2303 movs r3, #3 + 8002100: e0cb b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80020c6: 4b49 ldr r3, [pc, #292] ; (80021ec ) - 80020c8: 6f1b ldr r3, [r3, #112] ; 0x70 - 80020ca: f003 0302 and.w r3, r3, #2 - 80020ce: 2b00 cmp r3, #0 - 80020d0: d0ee beq.n 80020b0 - 80020d2: e014 b.n 80020fe + 8002102: 4b49 ldr r3, [pc, #292] ; (8002228 ) + 8002104: 6f1b ldr r3, [r3, #112] ; 0x70 + 8002106: f003 0302 and.w r3, r3, #2 + 800210a: 2b00 cmp r3, #0 + 800210c: d0ee beq.n 80020ec + 800210e: e014 b.n 800213a } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 80020d4: f7fe ff42 bl 8000f5c - 80020d8: 6138 str r0, [r7, #16] + 8002110: f7fe ff42 bl 8000f98 + 8002114: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80020da: e00a b.n 80020f2 + 8002116: e00a b.n 800212e { if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 80020dc: f7fe ff3e bl 8000f5c - 80020e0: 4602 mov r2, r0 - 80020e2: 693b ldr r3, [r7, #16] - 80020e4: 1ad3 subs r3, r2, r3 - 80020e6: f241 3288 movw r2, #5000 ; 0x1388 - 80020ea: 4293 cmp r3, r2 - 80020ec: d901 bls.n 80020f2 + 8002118: f7fe ff3e bl 8000f98 + 800211c: 4602 mov r2, r0 + 800211e: 693b ldr r3, [r7, #16] + 8002120: 1ad3 subs r3, r2, r3 + 8002122: f241 3288 movw r2, #5000 ; 0x1388 + 8002126: 4293 cmp r3, r2 + 8002128: d901 bls.n 800212e { return HAL_TIMEOUT; - 80020ee: 2303 movs r3, #3 - 80020f0: e0b5 b.n 800225e + 800212a: 2303 movs r3, #3 + 800212c: e0b5 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80020f2: 4b3e ldr r3, [pc, #248] ; (80021ec ) - 80020f4: 6f1b ldr r3, [r3, #112] ; 0x70 - 80020f6: f003 0302 and.w r3, r3, #2 - 80020fa: 2b00 cmp r3, #0 - 80020fc: d1ee bne.n 80020dc + 800212e: 4b3e ldr r3, [pc, #248] ; (8002228 ) + 8002130: 6f1b ldr r3, [r3, #112] ; 0x70 + 8002132: f003 0302 and.w r3, r3, #2 + 8002136: 2b00 cmp r3, #0 + 8002138: d1ee bne.n 8002118 } } } /* Restore clock configuration if changed */ if(pwrclkchanged == SET) - 80020fe: 7dfb ldrb r3, [r7, #23] - 8002100: 2b01 cmp r3, #1 - 8002102: d105 bne.n 8002110 + 800213a: 7dfb ldrb r3, [r7, #23] + 800213c: 2b01 cmp r3, #1 + 800213e: d105 bne.n 800214c { __HAL_RCC_PWR_CLK_DISABLE(); - 8002104: 4b39 ldr r3, [pc, #228] ; (80021ec ) - 8002106: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002108: 4a38 ldr r2, [pc, #224] ; (80021ec ) - 800210a: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 - 800210e: 6413 str r3, [r2, #64] ; 0x40 + 8002140: 4b39 ldr r3, [pc, #228] ; (8002228 ) + 8002142: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002144: 4a38 ldr r2, [pc, #224] ; (8002228 ) + 8002146: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 + 800214a: 6413 str r3, [r2, #64] ; 0x40 } } /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 8002110: 687b ldr r3, [r7, #4] - 8002112: 699b ldr r3, [r3, #24] - 8002114: 2b00 cmp r3, #0 - 8002116: f000 80a1 beq.w 800225c + 800214c: 687b ldr r3, [r7, #4] + 800214e: 699b ldr r3, [r3, #24] + 8002150: 2b00 cmp r3, #0 + 8002152: f000 80a1 beq.w 8002298 { /* Check if the PLL is used as system clock or not */ if(__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_CFGR_SWS_PLL) - 800211a: 4b34 ldr r3, [pc, #208] ; (80021ec ) - 800211c: 689b ldr r3, [r3, #8] - 800211e: f003 030c and.w r3, r3, #12 - 8002122: 2b08 cmp r3, #8 - 8002124: d05c beq.n 80021e0 + 8002156: 4b34 ldr r3, [pc, #208] ; (8002228 ) + 8002158: 689b ldr r3, [r3, #8] + 800215a: f003 030c and.w r3, r3, #12 + 800215e: 2b08 cmp r3, #8 + 8002160: d05c beq.n 800221c { if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8002126: 687b ldr r3, [r7, #4] - 8002128: 699b ldr r3, [r3, #24] - 800212a: 2b02 cmp r3, #2 - 800212c: d141 bne.n 80021b2 + 8002162: 687b ldr r3, [r7, #4] + 8002164: 699b ldr r3, [r3, #24] + 8002166: 2b02 cmp r3, #2 + 8002168: d141 bne.n 80021ee assert_param(IS_RCC_PLLN_VALUE(RCC_OscInitStruct->PLL.PLLN)); assert_param(IS_RCC_PLLP_VALUE(RCC_OscInitStruct->PLL.PLLP)); assert_param(IS_RCC_PLLQ_VALUE(RCC_OscInitStruct->PLL.PLLQ)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800212e: 4b31 ldr r3, [pc, #196] ; (80021f4 ) - 8002130: 2200 movs r2, #0 - 8002132: 601a str r2, [r3, #0] + 800216a: 4b31 ldr r3, [pc, #196] ; (8002230 ) + 800216c: 2200 movs r2, #0 + 800216e: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8002134: f7fe ff12 bl 8000f5c - 8002138: 6138 str r0, [r7, #16] + 8002170: f7fe ff12 bl 8000f98 + 8002174: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800213a: e008 b.n 800214e + 8002176: e008 b.n 800218a { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 800213c: f7fe ff0e bl 8000f5c - 8002140: 4602 mov r2, r0 - 8002142: 693b ldr r3, [r7, #16] - 8002144: 1ad3 subs r3, r2, r3 - 8002146: 2b02 cmp r3, #2 - 8002148: d901 bls.n 800214e + 8002178: f7fe ff0e bl 8000f98 + 800217c: 4602 mov r2, r0 + 800217e: 693b ldr r3, [r7, #16] + 8002180: 1ad3 subs r3, r2, r3 + 8002182: 2b02 cmp r3, #2 + 8002184: d901 bls.n 800218a { return HAL_TIMEOUT; - 800214a: 2303 movs r3, #3 - 800214c: e087 b.n 800225e + 8002186: 2303 movs r3, #3 + 8002188: e087 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800214e: 4b27 ldr r3, [pc, #156] ; (80021ec ) - 8002150: 681b ldr r3, [r3, #0] - 8002152: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8002156: 2b00 cmp r3, #0 - 8002158: d1f0 bne.n 800213c + 800218a: 4b27 ldr r3, [pc, #156] ; (8002228 ) + 800218c: 681b ldr r3, [r3, #0] + 800218e: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8002192: 2b00 cmp r3, #0 + 8002194: d1f0 bne.n 8002178 } } /* Configure the main PLL clock source, multiplication and division factors. */ WRITE_REG(RCC->PLLCFGR, (RCC_OscInitStruct->PLL.PLLSource | \ - 800215a: 687b ldr r3, [r7, #4] - 800215c: 69da ldr r2, [r3, #28] - 800215e: 687b ldr r3, [r7, #4] - 8002160: 6a1b ldr r3, [r3, #32] - 8002162: 431a orrs r2, r3 - 8002164: 687b ldr r3, [r7, #4] - 8002166: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002168: 019b lsls r3, r3, #6 - 800216a: 431a orrs r2, r3 - 800216c: 687b ldr r3, [r7, #4] - 800216e: 6a9b ldr r3, [r3, #40] ; 0x28 - 8002170: 085b lsrs r3, r3, #1 - 8002172: 3b01 subs r3, #1 - 8002174: 041b lsls r3, r3, #16 - 8002176: 431a orrs r2, r3 - 8002178: 687b ldr r3, [r7, #4] - 800217a: 6adb ldr r3, [r3, #44] ; 0x2c - 800217c: 061b lsls r3, r3, #24 - 800217e: 491b ldr r1, [pc, #108] ; (80021ec ) - 8002180: 4313 orrs r3, r2 - 8002182: 604b str r3, [r1, #4] + 8002196: 687b ldr r3, [r7, #4] + 8002198: 69da ldr r2, [r3, #28] + 800219a: 687b ldr r3, [r7, #4] + 800219c: 6a1b ldr r3, [r3, #32] + 800219e: 431a orrs r2, r3 + 80021a0: 687b ldr r3, [r7, #4] + 80021a2: 6a5b ldr r3, [r3, #36] ; 0x24 + 80021a4: 019b lsls r3, r3, #6 + 80021a6: 431a orrs r2, r3 + 80021a8: 687b ldr r3, [r7, #4] + 80021aa: 6a9b ldr r3, [r3, #40] ; 0x28 + 80021ac: 085b lsrs r3, r3, #1 + 80021ae: 3b01 subs r3, #1 + 80021b0: 041b lsls r3, r3, #16 + 80021b2: 431a orrs r2, r3 + 80021b4: 687b ldr r3, [r7, #4] + 80021b6: 6adb ldr r3, [r3, #44] ; 0x2c + 80021b8: 061b lsls r3, r3, #24 + 80021ba: 491b ldr r1, [pc, #108] ; (8002228 ) + 80021bc: 4313 orrs r3, r2 + 80021be: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLM | \ (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PLLN_Pos) | \ (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U) << RCC_PLLCFGR_PLLP_Pos) | \ (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 8002184: 4b1b ldr r3, [pc, #108] ; (80021f4 ) - 8002186: 2201 movs r2, #1 - 8002188: 601a str r2, [r3, #0] + 80021c0: 4b1b ldr r3, [pc, #108] ; (8002230 ) + 80021c2: 2201 movs r2, #1 + 80021c4: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800218a: f7fe fee7 bl 8000f5c - 800218e: 6138 str r0, [r7, #16] + 80021c6: f7fe fee7 bl 8000f98 + 80021ca: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8002190: e008 b.n 80021a4 + 80021cc: e008 b.n 80021e0 { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 8002192: f7fe fee3 bl 8000f5c - 8002196: 4602 mov r2, r0 - 8002198: 693b ldr r3, [r7, #16] - 800219a: 1ad3 subs r3, r2, r3 - 800219c: 2b02 cmp r3, #2 - 800219e: d901 bls.n 80021a4 + 80021ce: f7fe fee3 bl 8000f98 + 80021d2: 4602 mov r2, r0 + 80021d4: 693b ldr r3, [r7, #16] + 80021d6: 1ad3 subs r3, r2, r3 + 80021d8: 2b02 cmp r3, #2 + 80021da: d901 bls.n 80021e0 { return HAL_TIMEOUT; - 80021a0: 2303 movs r3, #3 - 80021a2: e05c b.n 800225e + 80021dc: 2303 movs r3, #3 + 80021de: e05c b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80021a4: 4b11 ldr r3, [pc, #68] ; (80021ec ) - 80021a6: 681b ldr r3, [r3, #0] - 80021a8: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80021ac: 2b00 cmp r3, #0 - 80021ae: d0f0 beq.n 8002192 - 80021b0: e054 b.n 800225c + 80021e0: 4b11 ldr r3, [pc, #68] ; (8002228 ) + 80021e2: 681b ldr r3, [r3, #0] + 80021e4: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 80021e8: 2b00 cmp r3, #0 + 80021ea: d0f0 beq.n 80021ce + 80021ec: e054 b.n 8002298 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80021b2: 4b10 ldr r3, [pc, #64] ; (80021f4 ) - 80021b4: 2200 movs r2, #0 - 80021b6: 601a str r2, [r3, #0] + 80021ee: 4b10 ldr r3, [pc, #64] ; (8002230 ) + 80021f0: 2200 movs r2, #0 + 80021f2: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80021b8: f7fe fed0 bl 8000f5c - 80021bc: 6138 str r0, [r7, #16] + 80021f4: f7fe fed0 bl 8000f98 + 80021f8: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80021be: e008 b.n 80021d2 + 80021fa: e008 b.n 800220e { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 80021c0: f7fe fecc bl 8000f5c - 80021c4: 4602 mov r2, r0 - 80021c6: 693b ldr r3, [r7, #16] - 80021c8: 1ad3 subs r3, r2, r3 - 80021ca: 2b02 cmp r3, #2 - 80021cc: d901 bls.n 80021d2 + 80021fc: f7fe fecc bl 8000f98 + 8002200: 4602 mov r2, r0 + 8002202: 693b ldr r3, [r7, #16] + 8002204: 1ad3 subs r3, r2, r3 + 8002206: 2b02 cmp r3, #2 + 8002208: d901 bls.n 800220e { return HAL_TIMEOUT; - 80021ce: 2303 movs r3, #3 - 80021d0: e045 b.n 800225e + 800220a: 2303 movs r3, #3 + 800220c: e045 b.n 800229a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80021d2: 4b06 ldr r3, [pc, #24] ; (80021ec ) - 80021d4: 681b ldr r3, [r3, #0] - 80021d6: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80021da: 2b00 cmp r3, #0 - 80021dc: d1f0 bne.n 80021c0 - 80021de: e03d b.n 800225c + 800220e: 4b06 ldr r3, [pc, #24] ; (8002228 ) + 8002210: 681b ldr r3, [r3, #0] + 8002212: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8002216: 2b00 cmp r3, #0 + 8002218: d1f0 bne.n 80021fc + 800221a: e03d b.n 8002298 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 80021e0: 687b ldr r3, [r7, #4] - 80021e2: 699b ldr r3, [r3, #24] - 80021e4: 2b01 cmp r3, #1 - 80021e6: d107 bne.n 80021f8 + 800221c: 687b ldr r3, [r7, #4] + 800221e: 699b ldr r3, [r3, #24] + 8002220: 2b01 cmp r3, #1 + 8002222: d107 bne.n 8002234 { return HAL_ERROR; - 80021e8: 2301 movs r3, #1 - 80021ea: e038 b.n 800225e - 80021ec: 40023800 .word 0x40023800 - 80021f0: 40007000 .word 0x40007000 - 80021f4: 42470060 .word 0x42470060 + 8002224: 2301 movs r3, #1 + 8002226: e038 b.n 800229a + 8002228: 40023800 .word 0x40023800 + 800222c: 40007000 .word 0x40007000 + 8002230: 42470060 .word 0x42470060 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->PLLCFGR; - 80021f8: 4b1b ldr r3, [pc, #108] ; (8002268 ) - 80021fa: 685b ldr r3, [r3, #4] - 80021fc: 60fb str r3, [r7, #12] + 8002234: 4b1b ldr r3, [pc, #108] ; (80022a4 ) + 8002236: 685b ldr r3, [r3, #4] + 8002238: 60fb str r3, [r7, #12] (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLR) != (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))) #else if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 80021fe: 687b ldr r3, [r7, #4] - 8002200: 699b ldr r3, [r3, #24] - 8002202: 2b01 cmp r3, #1 - 8002204: d028 beq.n 8002258 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8002206: 68fb ldr r3, [r7, #12] - 8002208: f403 0280 and.w r2, r3, #4194304 ; 0x400000 - 800220c: 687b ldr r3, [r7, #4] - 800220e: 69db ldr r3, [r3, #28] - if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 8002210: 429a cmp r2, r3 - 8002212: d121 bne.n 8002258 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 8002214: 68fb ldr r3, [r7, #12] - 8002216: f003 023f and.w r2, r3, #63 ; 0x3f - 800221a: 687b ldr r3, [r7, #4] - 800221c: 6a1b ldr r3, [r3, #32] - (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800221e: 429a cmp r2, r3 - 8002220: d11a bne.n 8002258 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 8002222: 68fa ldr r2, [r7, #12] - 8002224: f647 73c0 movw r3, #32704 ; 0x7fc0 - 8002228: 4013 ands r3, r2 - 800222a: 687a ldr r2, [r7, #4] - 800222c: 6a52 ldr r2, [r2, #36] ; 0x24 - 800222e: 0192 lsls r2, r2, #6 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 8002230: 4293 cmp r3, r2 - 8002232: d111 bne.n 8002258 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 8002234: 68fb ldr r3, [r7, #12] - 8002236: f403 3240 and.w r2, r3, #196608 ; 0x30000 800223a: 687b ldr r3, [r7, #4] - 800223c: 6a9b ldr r3, [r3, #40] ; 0x28 - 800223e: 085b lsrs r3, r3, #1 - 8002240: 3b01 subs r3, #1 - 8002242: 041b lsls r3, r3, #16 + 800223c: 699b ldr r3, [r3, #24] + 800223e: 2b01 cmp r3, #1 + 8002240: d028 beq.n 8002294 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || + 8002242: 68fb ldr r3, [r7, #12] + 8002244: f403 0280 and.w r2, r3, #4194304 ; 0x400000 + 8002248: 687b ldr r3, [r7, #4] + 800224a: 69db ldr r3, [r3, #28] + if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || + 800224c: 429a cmp r2, r3 + 800224e: d121 bne.n 8002294 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || + 8002250: 68fb ldr r3, [r7, #12] + 8002252: f003 023f and.w r2, r3, #63 ; 0x3f + 8002256: 687b ldr r3, [r7, #4] + 8002258: 6a1b ldr r3, [r3, #32] + (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || + 800225a: 429a cmp r2, r3 + 800225c: d11a bne.n 8002294 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 8002244: 429a cmp r2, r3 - 8002246: d107 bne.n 8002258 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))) - 8002248: 68fb ldr r3, [r7, #12] - 800224a: f003 6270 and.w r2, r3, #251658240 ; 0xf000000 - 800224e: 687b ldr r3, [r7, #4] - 8002250: 6adb ldr r3, [r3, #44] ; 0x2c - 8002252: 061b lsls r3, r3, #24 + 800225e: 68fa ldr r2, [r7, #12] + 8002260: f647 73c0 movw r3, #32704 ; 0x7fc0 + 8002264: 4013 ands r3, r2 + 8002266: 687a ldr r2, [r7, #4] + 8002268: 6a52 ldr r2, [r2, #36] ; 0x24 + 800226a: 0192 lsls r2, r2, #6 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || + 800226c: 4293 cmp r3, r2 + 800226e: d111 bne.n 8002294 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 8002254: 429a cmp r2, r3 - 8002256: d001 beq.n 800225c + 8002270: 68fb ldr r3, [r7, #12] + 8002272: f403 3240 and.w r2, r3, #196608 ; 0x30000 + 8002276: 687b ldr r3, [r7, #4] + 8002278: 6a9b ldr r3, [r3, #40] ; 0x28 + 800227a: 085b lsrs r3, r3, #1 + 800227c: 3b01 subs r3, #1 + 800227e: 041b lsls r3, r3, #16 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || + 8002280: 429a cmp r2, r3 + 8002282: d107 bne.n 8002294 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))) + 8002284: 68fb ldr r3, [r7, #12] + 8002286: f003 6270 and.w r2, r3, #251658240 ; 0xf000000 + 800228a: 687b ldr r3, [r7, #4] + 800228c: 6adb ldr r3, [r3, #44] ; 0x2c + 800228e: 061b lsls r3, r3, #24 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || + 8002290: 429a cmp r2, r3 + 8002292: d001 beq.n 8002298 #endif { return HAL_ERROR; - 8002258: 2301 movs r3, #1 - 800225a: e000 b.n 800225e + 8002294: 2301 movs r3, #1 + 8002296: e000 b.n 800229a } } } } return HAL_OK; - 800225c: 2300 movs r3, #0 + 8002298: 2300 movs r3, #0 } - 800225e: 4618 mov r0, r3 - 8002260: 3718 adds r7, #24 - 8002262: 46bd mov sp, r7 - 8002264: bd80 pop {r7, pc} - 8002266: bf00 nop - 8002268: 40023800 .word 0x40023800 + 800229a: 4618 mov r0, r3 + 800229c: 3718 adds r7, #24 + 800229e: 46bd mov sp, r7 + 80022a0: bd80 pop {r7, pc} + 80022a2: bf00 nop + 80022a4: 40023800 .word 0x40023800 -0800226c : +080022a8 : * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency * (for more details refer to section above "Initialization/de-initialization functions") * @retval None */ HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 800226c: b580 push {r7, lr} - 800226e: b084 sub sp, #16 - 8002270: af00 add r7, sp, #0 - 8002272: 6078 str r0, [r7, #4] - 8002274: 6039 str r1, [r7, #0] + 80022a8: b580 push {r7, lr} + 80022aa: b084 sub sp, #16 + 80022ac: af00 add r7, sp, #0 + 80022ae: 6078 str r0, [r7, #4] + 80022b0: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if(RCC_ClkInitStruct == NULL) - 8002276: 687b ldr r3, [r7, #4] - 8002278: 2b00 cmp r3, #0 - 800227a: d101 bne.n 8002280 + 80022b2: 687b ldr r3, [r7, #4] + 80022b4: 2b00 cmp r3, #0 + 80022b6: d101 bne.n 80022bc { return HAL_ERROR; - 800227c: 2301 movs r3, #1 - 800227e: e0cc b.n 800241a + 80022b8: 2301 movs r3, #1 + 80022ba: e0cc b.n 8002456 /* To correctly read data from FLASH memory, the number of wait states (LATENCY) must be correctly programmed according to the frequency of the CPU clock (HCLK) and the supply voltage of the device. */ /* Increasing the number of wait states because of higher CPU frequency */ if(FLatency > __HAL_FLASH_GET_LATENCY()) - 8002280: 4b68 ldr r3, [pc, #416] ; (8002424 ) - 8002282: 681b ldr r3, [r3, #0] - 8002284: f003 0307 and.w r3, r3, #7 - 8002288: 683a ldr r2, [r7, #0] - 800228a: 429a cmp r2, r3 - 800228c: d90c bls.n 80022a8 + 80022bc: 4b68 ldr r3, [pc, #416] ; (8002460 ) + 80022be: 681b ldr r3, [r3, #0] + 80022c0: f003 0307 and.w r3, r3, #7 + 80022c4: 683a ldr r2, [r7, #0] + 80022c6: 429a cmp r2, r3 + 80022c8: d90c bls.n 80022e4 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 800228e: 4b65 ldr r3, [pc, #404] ; (8002424 ) - 8002290: 683a ldr r2, [r7, #0] - 8002292: b2d2 uxtb r2, r2 - 8002294: 701a strb r2, [r3, #0] + 80022ca: 4b65 ldr r3, [pc, #404] ; (8002460 ) + 80022cc: 683a ldr r2, [r7, #0] + 80022ce: b2d2 uxtb r2, r2 + 80022d0: 701a strb r2, [r3, #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) - 8002296: 4b63 ldr r3, [pc, #396] ; (8002424 ) - 8002298: 681b ldr r3, [r3, #0] - 800229a: f003 0307 and.w r3, r3, #7 - 800229e: 683a ldr r2, [r7, #0] - 80022a0: 429a cmp r2, r3 - 80022a2: d001 beq.n 80022a8 + 80022d2: 4b63 ldr r3, [pc, #396] ; (8002460 ) + 80022d4: 681b ldr r3, [r3, #0] + 80022d6: f003 0307 and.w r3, r3, #7 + 80022da: 683a ldr r2, [r7, #0] + 80022dc: 429a cmp r2, r3 + 80022de: d001 beq.n 80022e4 { return HAL_ERROR; - 80022a4: 2301 movs r3, #1 - 80022a6: e0b8 b.n 800241a + 80022e0: 2301 movs r3, #1 + 80022e2: e0b8 b.n 8002456 } } /*-------------------------- HCLK Configuration --------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 80022a8: 687b ldr r3, [r7, #4] - 80022aa: 681b ldr r3, [r3, #0] - 80022ac: f003 0302 and.w r3, r3, #2 - 80022b0: 2b00 cmp r3, #0 - 80022b2: d020 beq.n 80022f6 + 80022e4: 687b ldr r3, [r7, #4] + 80022e6: 681b ldr r3, [r3, #0] + 80022e8: f003 0302 and.w r3, r3, #2 + 80022ec: 2b00 cmp r3, #0 + 80022ee: d020 beq.n 8002332 { /* 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) - 80022b4: 687b ldr r3, [r7, #4] - 80022b6: 681b ldr r3, [r3, #0] - 80022b8: f003 0304 and.w r3, r3, #4 - 80022bc: 2b00 cmp r3, #0 - 80022be: d005 beq.n 80022cc + 80022f0: 687b ldr r3, [r7, #4] + 80022f2: 681b ldr r3, [r3, #0] + 80022f4: f003 0304 and.w r3, r3, #4 + 80022f8: 2b00 cmp r3, #0 + 80022fa: d005 beq.n 8002308 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 80022c0: 4b59 ldr r3, [pc, #356] ; (8002428 ) - 80022c2: 689b ldr r3, [r3, #8] - 80022c4: 4a58 ldr r2, [pc, #352] ; (8002428 ) - 80022c6: f443 53e0 orr.w r3, r3, #7168 ; 0x1c00 - 80022ca: 6093 str r3, [r2, #8] + 80022fc: 4b59 ldr r3, [pc, #356] ; (8002464 ) + 80022fe: 689b ldr r3, [r3, #8] + 8002300: 4a58 ldr r2, [pc, #352] ; (8002464 ) + 8002302: f443 53e0 orr.w r3, r3, #7168 ; 0x1c00 + 8002306: 6093 str r3, [r2, #8] } if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80022cc: 687b ldr r3, [r7, #4] - 80022ce: 681b ldr r3, [r3, #0] - 80022d0: f003 0308 and.w r3, r3, #8 - 80022d4: 2b00 cmp r3, #0 - 80022d6: d005 beq.n 80022e4 + 8002308: 687b ldr r3, [r7, #4] + 800230a: 681b ldr r3, [r3, #0] + 800230c: f003 0308 and.w r3, r3, #8 + 8002310: 2b00 cmp r3, #0 + 8002312: d005 beq.n 8002320 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 80022d8: 4b53 ldr r3, [pc, #332] ; (8002428 ) - 80022da: 689b ldr r3, [r3, #8] - 80022dc: 4a52 ldr r2, [pc, #328] ; (8002428 ) - 80022de: f443 4360 orr.w r3, r3, #57344 ; 0xe000 - 80022e2: 6093 str r3, [r2, #8] + 8002314: 4b53 ldr r3, [pc, #332] ; (8002464 ) + 8002316: 689b ldr r3, [r3, #8] + 8002318: 4a52 ldr r2, [pc, #328] ; (8002464 ) + 800231a: f443 4360 orr.w r3, r3, #57344 ; 0xe000 + 800231e: 6093 str r3, [r2, #8] } assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 80022e4: 4b50 ldr r3, [pc, #320] ; (8002428 ) - 80022e6: 689b ldr r3, [r3, #8] - 80022e8: f023 02f0 bic.w r2, r3, #240 ; 0xf0 - 80022ec: 687b ldr r3, [r7, #4] - 80022ee: 689b ldr r3, [r3, #8] - 80022f0: 494d ldr r1, [pc, #308] ; (8002428 ) - 80022f2: 4313 orrs r3, r2 - 80022f4: 608b str r3, [r1, #8] + 8002320: 4b50 ldr r3, [pc, #320] ; (8002464 ) + 8002322: 689b ldr r3, [r3, #8] + 8002324: f023 02f0 bic.w r2, r3, #240 ; 0xf0 + 8002328: 687b ldr r3, [r7, #4] + 800232a: 689b ldr r3, [r3, #8] + 800232c: 494d ldr r1, [pc, #308] ; (8002464 ) + 800232e: 4313 orrs r3, r2 + 8002330: 608b str r3, [r1, #8] } /*------------------------- SYSCLK Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 80022f6: 687b ldr r3, [r7, #4] - 80022f8: 681b ldr r3, [r3, #0] - 80022fa: f003 0301 and.w r3, r3, #1 - 80022fe: 2b00 cmp r3, #0 - 8002300: d044 beq.n 800238c + 8002332: 687b ldr r3, [r7, #4] + 8002334: 681b ldr r3, [r3, #0] + 8002336: f003 0301 and.w r3, r3, #1 + 800233a: 2b00 cmp r3, #0 + 800233c: d044 beq.n 80023c8 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8002302: 687b ldr r3, [r7, #4] - 8002304: 685b ldr r3, [r3, #4] - 8002306: 2b01 cmp r3, #1 - 8002308: d107 bne.n 800231a + 800233e: 687b ldr r3, [r7, #4] + 8002340: 685b ldr r3, [r3, #4] + 8002342: 2b01 cmp r3, #1 + 8002344: d107 bne.n 8002356 { /* Check the HSE ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800230a: 4b47 ldr r3, [pc, #284] ; (8002428 ) - 800230c: 681b ldr r3, [r3, #0] - 800230e: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8002312: 2b00 cmp r3, #0 - 8002314: d119 bne.n 800234a + 8002346: 4b47 ldr r3, [pc, #284] ; (8002464 ) + 8002348: 681b ldr r3, [r3, #0] + 800234a: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 800234e: 2b00 cmp r3, #0 + 8002350: d119 bne.n 8002386 { return HAL_ERROR; - 8002316: 2301 movs r3, #1 - 8002318: e07f b.n 800241a + 8002352: 2301 movs r3, #1 + 8002354: e07f b.n 8002456 } } /* PLL is selected as System Clock Source */ else if((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 800231a: 687b ldr r3, [r7, #4] - 800231c: 685b ldr r3, [r3, #4] - 800231e: 2b02 cmp r3, #2 - 8002320: d003 beq.n 800232a + 8002356: 687b ldr r3, [r7, #4] + 8002358: 685b ldr r3, [r3, #4] + 800235a: 2b02 cmp r3, #2 + 800235c: d003 beq.n 8002366 (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLRCLK)) - 8002322: 687b ldr r3, [r7, #4] - 8002324: 685b ldr r3, [r3, #4] + 800235e: 687b ldr r3, [r7, #4] + 8002360: 685b ldr r3, [r3, #4] else if((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 8002326: 2b03 cmp r3, #3 - 8002328: d107 bne.n 800233a + 8002362: 2b03 cmp r3, #3 + 8002364: d107 bne.n 8002376 { /* Check the PLL ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800232a: 4b3f ldr r3, [pc, #252] ; (8002428 ) - 800232c: 681b ldr r3, [r3, #0] - 800232e: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8002332: 2b00 cmp r3, #0 - 8002334: d109 bne.n 800234a + 8002366: 4b3f ldr r3, [pc, #252] ; (8002464 ) + 8002368: 681b ldr r3, [r3, #0] + 800236a: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800236e: 2b00 cmp r3, #0 + 8002370: d109 bne.n 8002386 { return HAL_ERROR; - 8002336: 2301 movs r3, #1 - 8002338: e06f b.n 800241a + 8002372: 2301 movs r3, #1 + 8002374: e06f b.n 8002456 } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800233a: 4b3b ldr r3, [pc, #236] ; (8002428 ) - 800233c: 681b ldr r3, [r3, #0] - 800233e: f003 0302 and.w r3, r3, #2 - 8002342: 2b00 cmp r3, #0 - 8002344: d101 bne.n 800234a + 8002376: 4b3b ldr r3, [pc, #236] ; (8002464 ) + 8002378: 681b ldr r3, [r3, #0] + 800237a: f003 0302 and.w r3, r3, #2 + 800237e: 2b00 cmp r3, #0 + 8002380: d101 bne.n 8002386 { return HAL_ERROR; - 8002346: 2301 movs r3, #1 - 8002348: e067 b.n 800241a + 8002382: 2301 movs r3, #1 + 8002384: e067 b.n 8002456 } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 800234a: 4b37 ldr r3, [pc, #220] ; (8002428 ) - 800234c: 689b ldr r3, [r3, #8] - 800234e: f023 0203 bic.w r2, r3, #3 - 8002352: 687b ldr r3, [r7, #4] - 8002354: 685b ldr r3, [r3, #4] - 8002356: 4934 ldr r1, [pc, #208] ; (8002428 ) - 8002358: 4313 orrs r3, r2 - 800235a: 608b str r3, [r1, #8] + 8002386: 4b37 ldr r3, [pc, #220] ; (8002464 ) + 8002388: 689b ldr r3, [r3, #8] + 800238a: f023 0203 bic.w r2, r3, #3 + 800238e: 687b ldr r3, [r7, #4] + 8002390: 685b ldr r3, [r3, #4] + 8002392: 4934 ldr r1, [pc, #208] ; (8002464 ) + 8002394: 4313 orrs r3, r2 + 8002396: 608b str r3, [r1, #8] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800235c: f7fe fdfe bl 8000f5c - 8002360: 60f8 str r0, [r7, #12] + 8002398: f7fe fdfe bl 8000f98 + 800239c: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8002362: e00a b.n 800237a + 800239e: e00a b.n 80023b6 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8002364: f7fe fdfa bl 8000f5c - 8002368: 4602 mov r2, r0 - 800236a: 68fb ldr r3, [r7, #12] - 800236c: 1ad3 subs r3, r2, r3 - 800236e: f241 3288 movw r2, #5000 ; 0x1388 - 8002372: 4293 cmp r3, r2 - 8002374: d901 bls.n 800237a + 80023a0: f7fe fdfa bl 8000f98 + 80023a4: 4602 mov r2, r0 + 80023a6: 68fb ldr r3, [r7, #12] + 80023a8: 1ad3 subs r3, r2, r3 + 80023aa: f241 3288 movw r2, #5000 ; 0x1388 + 80023ae: 4293 cmp r3, r2 + 80023b0: d901 bls.n 80023b6 { return HAL_TIMEOUT; - 8002376: 2303 movs r3, #3 - 8002378: e04f b.n 800241a + 80023b2: 2303 movs r3, #3 + 80023b4: e04f b.n 8002456 while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 800237a: 4b2b ldr r3, [pc, #172] ; (8002428 ) - 800237c: 689b ldr r3, [r3, #8] - 800237e: f003 020c and.w r2, r3, #12 - 8002382: 687b ldr r3, [r7, #4] - 8002384: 685b ldr r3, [r3, #4] - 8002386: 009b lsls r3, r3, #2 - 8002388: 429a cmp r2, r3 - 800238a: d1eb bne.n 8002364 + 80023b6: 4b2b ldr r3, [pc, #172] ; (8002464 ) + 80023b8: 689b ldr r3, [r3, #8] + 80023ba: f003 020c and.w r2, r3, #12 + 80023be: 687b ldr r3, [r7, #4] + 80023c0: 685b ldr r3, [r3, #4] + 80023c2: 009b lsls r3, r3, #2 + 80023c4: 429a cmp r2, r3 + 80023c6: d1eb bne.n 80023a0 } } } /* Decreasing the number of wait states because of lower CPU frequency */ if(FLatency < __HAL_FLASH_GET_LATENCY()) - 800238c: 4b25 ldr r3, [pc, #148] ; (8002424 ) - 800238e: 681b ldr r3, [r3, #0] - 8002390: f003 0307 and.w r3, r3, #7 - 8002394: 683a ldr r2, [r7, #0] - 8002396: 429a cmp r2, r3 - 8002398: d20c bcs.n 80023b4 + 80023c8: 4b25 ldr r3, [pc, #148] ; (8002460 ) + 80023ca: 681b ldr r3, [r3, #0] + 80023cc: f003 0307 and.w r3, r3, #7 + 80023d0: 683a ldr r2, [r7, #0] + 80023d2: 429a cmp r2, r3 + 80023d4: d20c bcs.n 80023f0 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 800239a: 4b22 ldr r3, [pc, #136] ; (8002424 ) - 800239c: 683a ldr r2, [r7, #0] - 800239e: b2d2 uxtb r2, r2 - 80023a0: 701a strb r2, [r3, #0] + 80023d6: 4b22 ldr r3, [pc, #136] ; (8002460 ) + 80023d8: 683a ldr r2, [r7, #0] + 80023da: b2d2 uxtb r2, r2 + 80023dc: 701a strb r2, [r3, #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) - 80023a2: 4b20 ldr r3, [pc, #128] ; (8002424 ) - 80023a4: 681b ldr r3, [r3, #0] - 80023a6: f003 0307 and.w r3, r3, #7 - 80023aa: 683a ldr r2, [r7, #0] - 80023ac: 429a cmp r2, r3 - 80023ae: d001 beq.n 80023b4 + 80023de: 4b20 ldr r3, [pc, #128] ; (8002460 ) + 80023e0: 681b ldr r3, [r3, #0] + 80023e2: f003 0307 and.w r3, r3, #7 + 80023e6: 683a ldr r2, [r7, #0] + 80023e8: 429a cmp r2, r3 + 80023ea: d001 beq.n 80023f0 { return HAL_ERROR; - 80023b0: 2301 movs r3, #1 - 80023b2: e032 b.n 800241a + 80023ec: 2301 movs r3, #1 + 80023ee: e032 b.n 8002456 } } /*-------------------------- PCLK1 Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80023b4: 687b ldr r3, [r7, #4] - 80023b6: 681b ldr r3, [r3, #0] - 80023b8: f003 0304 and.w r3, r3, #4 - 80023bc: 2b00 cmp r3, #0 - 80023be: d008 beq.n 80023d2 + 80023f0: 687b ldr r3, [r7, #4] + 80023f2: 681b ldr r3, [r3, #0] + 80023f4: f003 0304 and.w r3, r3, #4 + 80023f8: 2b00 cmp r3, #0 + 80023fa: d008 beq.n 800240e { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80023c0: 4b19 ldr r3, [pc, #100] ; (8002428 ) - 80023c2: 689b ldr r3, [r3, #8] - 80023c4: f423 52e0 bic.w r2, r3, #7168 ; 0x1c00 - 80023c8: 687b ldr r3, [r7, #4] - 80023ca: 68db ldr r3, [r3, #12] - 80023cc: 4916 ldr r1, [pc, #88] ; (8002428 ) - 80023ce: 4313 orrs r3, r2 - 80023d0: 608b str r3, [r1, #8] + 80023fc: 4b19 ldr r3, [pc, #100] ; (8002464 ) + 80023fe: 689b ldr r3, [r3, #8] + 8002400: f423 52e0 bic.w r2, r3, #7168 ; 0x1c00 + 8002404: 687b ldr r3, [r7, #4] + 8002406: 68db ldr r3, [r3, #12] + 8002408: 4916 ldr r1, [pc, #88] ; (8002464 ) + 800240a: 4313 orrs r3, r2 + 800240c: 608b str r3, [r1, #8] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80023d2: 687b ldr r3, [r7, #4] - 80023d4: 681b ldr r3, [r3, #0] - 80023d6: f003 0308 and.w r3, r3, #8 - 80023da: 2b00 cmp r3, #0 - 80023dc: d009 beq.n 80023f2 + 800240e: 687b ldr r3, [r7, #4] + 8002410: 681b ldr r3, [r3, #0] + 8002412: f003 0308 and.w r3, r3, #8 + 8002416: 2b00 cmp r3, #0 + 8002418: d009 beq.n 800242e { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3U)); - 80023de: 4b12 ldr r3, [pc, #72] ; (8002428 ) - 80023e0: 689b ldr r3, [r3, #8] - 80023e2: f423 4260 bic.w r2, r3, #57344 ; 0xe000 - 80023e6: 687b ldr r3, [r7, #4] - 80023e8: 691b ldr r3, [r3, #16] - 80023ea: 00db lsls r3, r3, #3 - 80023ec: 490e ldr r1, [pc, #56] ; (8002428 ) - 80023ee: 4313 orrs r3, r2 - 80023f0: 608b str r3, [r1, #8] + 800241a: 4b12 ldr r3, [pc, #72] ; (8002464 ) + 800241c: 689b ldr r3, [r3, #8] + 800241e: f423 4260 bic.w r2, r3, #57344 ; 0xe000 + 8002422: 687b ldr r3, [r7, #4] + 8002424: 691b ldr r3, [r3, #16] + 8002426: 00db lsls r3, r3, #3 + 8002428: 490e ldr r1, [pc, #56] ; (8002464 ) + 800242a: 4313 orrs r3, r2 + 800242c: 608b str r3, [r1, #8] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE)>> RCC_CFGR_HPRE_Pos]; - 80023f2: f000 f821 bl 8002438 - 80023f6: 4602 mov r2, r0 - 80023f8: 4b0b ldr r3, [pc, #44] ; (8002428 ) - 80023fa: 689b ldr r3, [r3, #8] - 80023fc: 091b lsrs r3, r3, #4 - 80023fe: f003 030f and.w r3, r3, #15 - 8002402: 490a ldr r1, [pc, #40] ; (800242c ) - 8002404: 5ccb ldrb r3, [r1, r3] - 8002406: fa22 f303 lsr.w r3, r2, r3 - 800240a: 4a09 ldr r2, [pc, #36] ; (8002430 ) - 800240c: 6013 str r3, [r2, #0] + 800242e: f000 f821 bl 8002474 + 8002432: 4602 mov r2, r0 + 8002434: 4b0b ldr r3, [pc, #44] ; (8002464 ) + 8002436: 689b ldr r3, [r3, #8] + 8002438: 091b lsrs r3, r3, #4 + 800243a: f003 030f and.w r3, r3, #15 + 800243e: 490a ldr r1, [pc, #40] ; (8002468 ) + 8002440: 5ccb ldrb r3, [r1, r3] + 8002442: fa22 f303 lsr.w r3, r2, r3 + 8002446: 4a09 ldr r2, [pc, #36] ; (800246c ) + 8002448: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings */ HAL_InitTick (uwTickPrio); - 800240e: 4b09 ldr r3, [pc, #36] ; (8002434 ) - 8002410: 681b ldr r3, [r3, #0] - 8002412: 4618 mov r0, r3 - 8002414: f7fe fc94 bl 8000d40 + 800244a: 4b09 ldr r3, [pc, #36] ; (8002470 ) + 800244c: 681b ldr r3, [r3, #0] + 800244e: 4618 mov r0, r3 + 8002450: f7fe fc94 bl 8000d7c return HAL_OK; - 8002418: 2300 movs r3, #0 + 8002454: 2300 movs r3, #0 } - 800241a: 4618 mov r0, r3 - 800241c: 3710 adds r7, #16 - 800241e: 46bd mov sp, r7 - 8002420: bd80 pop {r7, pc} - 8002422: bf00 nop - 8002424: 40023c00 .word 0x40023c00 - 8002428: 40023800 .word 0x40023800 - 800242c: 08006324 .word 0x08006324 - 8002430: 20000000 .word 0x20000000 - 8002434: 20000004 .word 0x20000004 + 8002456: 4618 mov r0, r3 + 8002458: 3710 adds r7, #16 + 800245a: 46bd mov sp, r7 + 800245c: bd80 pop {r7, pc} + 800245e: bf00 nop + 8002460: 40023c00 .word 0x40023c00 + 8002464: 40023800 .word 0x40023800 + 8002468: 08006354 .word 0x08006354 + 800246c: 20000000 .word 0x20000000 + 8002470: 20000004 .word 0x20000004 -08002438 : +08002474 : * * * @retval SYSCLK frequency */ __weak uint32_t HAL_RCC_GetSysClockFreq(void) { - 8002438: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 800243c: b094 sub sp, #80 ; 0x50 - 800243e: af00 add r7, sp, #0 + 8002474: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8002478: b094 sub sp, #80 ; 0x50 + 800247a: af00 add r7, sp, #0 uint32_t pllm = 0U, pllvco = 0U, pllp = 0U; - 8002440: 2300 movs r3, #0 - 8002442: 647b str r3, [r7, #68] ; 0x44 - 8002444: 2300 movs r3, #0 - 8002446: 64fb str r3, [r7, #76] ; 0x4c - 8002448: 2300 movs r3, #0 - 800244a: 643b str r3, [r7, #64] ; 0x40 + 800247c: 2300 movs r3, #0 + 800247e: 647b str r3, [r7, #68] ; 0x44 + 8002480: 2300 movs r3, #0 + 8002482: 64fb str r3, [r7, #76] ; 0x4c + 8002484: 2300 movs r3, #0 + 8002486: 643b str r3, [r7, #64] ; 0x40 uint32_t sysclockfreq = 0U; - 800244c: 2300 movs r3, #0 - 800244e: 64bb str r3, [r7, #72] ; 0x48 + 8002488: 2300 movs r3, #0 + 800248a: 64bb str r3, [r7, #72] ; 0x48 /* Get SYSCLK source -------------------------------------------------------*/ switch (RCC->CFGR & RCC_CFGR_SWS) - 8002450: 4b79 ldr r3, [pc, #484] ; (8002638 ) - 8002452: 689b ldr r3, [r3, #8] - 8002454: f003 030c and.w r3, r3, #12 - 8002458: 2b08 cmp r3, #8 - 800245a: d00d beq.n 8002478 - 800245c: 2b08 cmp r3, #8 - 800245e: f200 80e1 bhi.w 8002624 - 8002462: 2b00 cmp r3, #0 - 8002464: d002 beq.n 800246c - 8002466: 2b04 cmp r3, #4 - 8002468: d003 beq.n 8002472 - 800246a: e0db b.n 8002624 + 800248c: 4b79 ldr r3, [pc, #484] ; (8002674 ) + 800248e: 689b ldr r3, [r3, #8] + 8002490: f003 030c and.w r3, r3, #12 + 8002494: 2b08 cmp r3, #8 + 8002496: d00d beq.n 80024b4 + 8002498: 2b08 cmp r3, #8 + 800249a: f200 80e1 bhi.w 8002660 + 800249e: 2b00 cmp r3, #0 + 80024a0: d002 beq.n 80024a8 + 80024a2: 2b04 cmp r3, #4 + 80024a4: d003 beq.n 80024ae + 80024a6: e0db b.n 8002660 { case RCC_CFGR_SWS_HSI: /* HSI used as system clock source */ { sysclockfreq = HSI_VALUE; - 800246c: 4b73 ldr r3, [pc, #460] ; (800263c ) - 800246e: 64bb str r3, [r7, #72] ; 0x48 + 80024a8: 4b73 ldr r3, [pc, #460] ; (8002678 ) + 80024aa: 64bb str r3, [r7, #72] ; 0x48 break; - 8002470: e0db b.n 800262a + 80024ac: e0db b.n 8002666 } case RCC_CFGR_SWS_HSE: /* HSE used as system clock source */ { sysclockfreq = HSE_VALUE; - 8002472: 4b73 ldr r3, [pc, #460] ; (8002640 ) - 8002474: 64bb str r3, [r7, #72] ; 0x48 + 80024ae: 4b73 ldr r3, [pc, #460] ; (800267c ) + 80024b0: 64bb str r3, [r7, #72] ; 0x48 break; - 8002476: e0d8 b.n 800262a + 80024b2: e0d8 b.n 8002666 } case RCC_CFGR_SWS_PLL: /* PLL used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLP */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 8002478: 4b6f ldr r3, [pc, #444] ; (8002638 ) - 800247a: 685b ldr r3, [r3, #4] - 800247c: f003 033f and.w r3, r3, #63 ; 0x3f - 8002480: 647b str r3, [r7, #68] ; 0x44 + 80024b4: 4b6f ldr r3, [pc, #444] ; (8002674 ) + 80024b6: 685b ldr r3, [r3, #4] + 80024b8: f003 033f and.w r3, r3, #63 ; 0x3f + 80024bc: 647b str r3, [r7, #68] ; 0x44 if(__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8002482: 4b6d ldr r3, [pc, #436] ; (8002638 ) - 8002484: 685b ldr r3, [r3, #4] - 8002486: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 800248a: 2b00 cmp r3, #0 - 800248c: d063 beq.n 8002556 + 80024be: 4b6d ldr r3, [pc, #436] ; (8002674 ) + 80024c0: 685b ldr r3, [r3, #4] + 80024c2: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 80024c6: 2b00 cmp r3, #0 + 80024c8: d063 beq.n 8002592 { /* HSE used as PLL clock source */ pllvco = (uint32_t) ((((uint64_t) HSE_VALUE * ((uint64_t) ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 800248e: 4b6a ldr r3, [pc, #424] ; (8002638 ) - 8002490: 685b ldr r3, [r3, #4] - 8002492: 099b lsrs r3, r3, #6 - 8002494: 2200 movs r2, #0 - 8002496: 63bb str r3, [r7, #56] ; 0x38 - 8002498: 63fa str r2, [r7, #60] ; 0x3c - 800249a: 6bbb ldr r3, [r7, #56] ; 0x38 - 800249c: f3c3 0308 ubfx r3, r3, #0, #9 - 80024a0: 633b str r3, [r7, #48] ; 0x30 - 80024a2: 2300 movs r3, #0 - 80024a4: 637b str r3, [r7, #52] ; 0x34 - 80024a6: e9d7 450c ldrd r4, r5, [r7, #48] ; 0x30 - 80024aa: 4622 mov r2, r4 - 80024ac: 462b mov r3, r5 - 80024ae: f04f 0000 mov.w r0, #0 - 80024b2: f04f 0100 mov.w r1, #0 - 80024b6: 0159 lsls r1, r3, #5 - 80024b8: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 80024bc: 0150 lsls r0, r2, #5 - 80024be: 4602 mov r2, r0 - 80024c0: 460b mov r3, r1 - 80024c2: 4621 mov r1, r4 - 80024c4: 1a51 subs r1, r2, r1 - 80024c6: 6139 str r1, [r7, #16] - 80024c8: 4629 mov r1, r5 - 80024ca: eb63 0301 sbc.w r3, r3, r1 - 80024ce: 617b str r3, [r7, #20] - 80024d0: f04f 0200 mov.w r2, #0 - 80024d4: f04f 0300 mov.w r3, #0 - 80024d8: e9d7 ab04 ldrd sl, fp, [r7, #16] - 80024dc: 4659 mov r1, fp - 80024de: 018b lsls r3, r1, #6 - 80024e0: 4651 mov r1, sl - 80024e2: ea43 6391 orr.w r3, r3, r1, lsr #26 - 80024e6: 4651 mov r1, sl - 80024e8: 018a lsls r2, r1, #6 - 80024ea: 4651 mov r1, sl - 80024ec: ebb2 0801 subs.w r8, r2, r1 - 80024f0: 4659 mov r1, fp - 80024f2: eb63 0901 sbc.w r9, r3, r1 - 80024f6: f04f 0200 mov.w r2, #0 - 80024fa: f04f 0300 mov.w r3, #0 - 80024fe: ea4f 03c9 mov.w r3, r9, lsl #3 - 8002502: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8002506: ea4f 02c8 mov.w r2, r8, lsl #3 - 800250a: 4690 mov r8, r2 - 800250c: 4699 mov r9, r3 - 800250e: 4623 mov r3, r4 - 8002510: eb18 0303 adds.w r3, r8, r3 - 8002514: 60bb str r3, [r7, #8] - 8002516: 462b mov r3, r5 - 8002518: eb49 0303 adc.w r3, r9, r3 - 800251c: 60fb str r3, [r7, #12] - 800251e: f04f 0200 mov.w r2, #0 - 8002522: f04f 0300 mov.w r3, #0 - 8002526: e9d7 4502 ldrd r4, r5, [r7, #8] - 800252a: 4629 mov r1, r5 - 800252c: 024b lsls r3, r1, #9 - 800252e: 4621 mov r1, r4 - 8002530: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 8002534: 4621 mov r1, r4 - 8002536: 024a lsls r2, r1, #9 - 8002538: 4610 mov r0, r2 - 800253a: 4619 mov r1, r3 - 800253c: 6c7b ldr r3, [r7, #68] ; 0x44 - 800253e: 2200 movs r2, #0 - 8002540: 62bb str r3, [r7, #40] ; 0x28 - 8002542: 62fa str r2, [r7, #44] ; 0x2c - 8002544: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 - 8002548: f7fd fe4a bl 80001e0 <__aeabi_uldivmod> - 800254c: 4602 mov r2, r0 - 800254e: 460b mov r3, r1 - 8002550: 4613 mov r3, r2 - 8002552: 64fb str r3, [r7, #76] ; 0x4c - 8002554: e058 b.n 8002608 + 80024ca: 4b6a ldr r3, [pc, #424] ; (8002674 ) + 80024cc: 685b ldr r3, [r3, #4] + 80024ce: 099b lsrs r3, r3, #6 + 80024d0: 2200 movs r2, #0 + 80024d2: 63bb str r3, [r7, #56] ; 0x38 + 80024d4: 63fa str r2, [r7, #60] ; 0x3c + 80024d6: 6bbb ldr r3, [r7, #56] ; 0x38 + 80024d8: f3c3 0308 ubfx r3, r3, #0, #9 + 80024dc: 633b str r3, [r7, #48] ; 0x30 + 80024de: 2300 movs r3, #0 + 80024e0: 637b str r3, [r7, #52] ; 0x34 + 80024e2: e9d7 450c ldrd r4, r5, [r7, #48] ; 0x30 + 80024e6: 4622 mov r2, r4 + 80024e8: 462b mov r3, r5 + 80024ea: f04f 0000 mov.w r0, #0 + 80024ee: f04f 0100 mov.w r1, #0 + 80024f2: 0159 lsls r1, r3, #5 + 80024f4: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 80024f8: 0150 lsls r0, r2, #5 + 80024fa: 4602 mov r2, r0 + 80024fc: 460b mov r3, r1 + 80024fe: 4621 mov r1, r4 + 8002500: 1a51 subs r1, r2, r1 + 8002502: 6139 str r1, [r7, #16] + 8002504: 4629 mov r1, r5 + 8002506: eb63 0301 sbc.w r3, r3, r1 + 800250a: 617b str r3, [r7, #20] + 800250c: f04f 0200 mov.w r2, #0 + 8002510: f04f 0300 mov.w r3, #0 + 8002514: e9d7 ab04 ldrd sl, fp, [r7, #16] + 8002518: 4659 mov r1, fp + 800251a: 018b lsls r3, r1, #6 + 800251c: 4651 mov r1, sl + 800251e: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8002522: 4651 mov r1, sl + 8002524: 018a lsls r2, r1, #6 + 8002526: 4651 mov r1, sl + 8002528: ebb2 0801 subs.w r8, r2, r1 + 800252c: 4659 mov r1, fp + 800252e: eb63 0901 sbc.w r9, r3, r1 + 8002532: f04f 0200 mov.w r2, #0 + 8002536: f04f 0300 mov.w r3, #0 + 800253a: ea4f 03c9 mov.w r3, r9, lsl #3 + 800253e: ea43 7358 orr.w r3, r3, r8, lsr #29 + 8002542: ea4f 02c8 mov.w r2, r8, lsl #3 + 8002546: 4690 mov r8, r2 + 8002548: 4699 mov r9, r3 + 800254a: 4623 mov r3, r4 + 800254c: eb18 0303 adds.w r3, r8, r3 + 8002550: 60bb str r3, [r7, #8] + 8002552: 462b mov r3, r5 + 8002554: eb49 0303 adc.w r3, r9, r3 + 8002558: 60fb str r3, [r7, #12] + 800255a: f04f 0200 mov.w r2, #0 + 800255e: f04f 0300 mov.w r3, #0 + 8002562: e9d7 4502 ldrd r4, r5, [r7, #8] + 8002566: 4629 mov r1, r5 + 8002568: 024b lsls r3, r1, #9 + 800256a: 4621 mov r1, r4 + 800256c: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 8002570: 4621 mov r1, r4 + 8002572: 024a lsls r2, r1, #9 + 8002574: 4610 mov r0, r2 + 8002576: 4619 mov r1, r3 + 8002578: 6c7b ldr r3, [r7, #68] ; 0x44 + 800257a: 2200 movs r2, #0 + 800257c: 62bb str r3, [r7, #40] ; 0x28 + 800257e: 62fa str r2, [r7, #44] ; 0x2c + 8002580: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 + 8002584: f7fd fe2c bl 80001e0 <__aeabi_uldivmod> + 8002588: 4602 mov r2, r0 + 800258a: 460b mov r3, r1 + 800258c: 4613 mov r3, r2 + 800258e: 64fb str r3, [r7, #76] ; 0x4c + 8002590: e058 b.n 8002644 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t) ((((uint64_t) HSI_VALUE * ((uint64_t) ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8002556: 4b38 ldr r3, [pc, #224] ; (8002638 ) - 8002558: 685b ldr r3, [r3, #4] - 800255a: 099b lsrs r3, r3, #6 - 800255c: 2200 movs r2, #0 - 800255e: 4618 mov r0, r3 - 8002560: 4611 mov r1, r2 - 8002562: f3c0 0308 ubfx r3, r0, #0, #9 - 8002566: 623b str r3, [r7, #32] - 8002568: 2300 movs r3, #0 - 800256a: 627b str r3, [r7, #36] ; 0x24 - 800256c: e9d7 8908 ldrd r8, r9, [r7, #32] - 8002570: 4642 mov r2, r8 - 8002572: 464b mov r3, r9 - 8002574: f04f 0000 mov.w r0, #0 - 8002578: f04f 0100 mov.w r1, #0 - 800257c: 0159 lsls r1, r3, #5 - 800257e: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8002582: 0150 lsls r0, r2, #5 - 8002584: 4602 mov r2, r0 - 8002586: 460b mov r3, r1 - 8002588: 4641 mov r1, r8 - 800258a: ebb2 0a01 subs.w sl, r2, r1 - 800258e: 4649 mov r1, r9 - 8002590: eb63 0b01 sbc.w fp, r3, r1 - 8002594: f04f 0200 mov.w r2, #0 - 8002598: f04f 0300 mov.w r3, #0 - 800259c: ea4f 138b mov.w r3, fp, lsl #6 - 80025a0: ea43 639a orr.w r3, r3, sl, lsr #26 - 80025a4: ea4f 128a mov.w r2, sl, lsl #6 - 80025a8: ebb2 040a subs.w r4, r2, sl - 80025ac: eb63 050b sbc.w r5, r3, fp - 80025b0: f04f 0200 mov.w r2, #0 - 80025b4: f04f 0300 mov.w r3, #0 - 80025b8: 00eb lsls r3, r5, #3 - 80025ba: ea43 7354 orr.w r3, r3, r4, lsr #29 - 80025be: 00e2 lsls r2, r4, #3 - 80025c0: 4614 mov r4, r2 - 80025c2: 461d mov r5, r3 - 80025c4: 4643 mov r3, r8 - 80025c6: 18e3 adds r3, r4, r3 - 80025c8: 603b str r3, [r7, #0] - 80025ca: 464b mov r3, r9 - 80025cc: eb45 0303 adc.w r3, r5, r3 - 80025d0: 607b str r3, [r7, #4] - 80025d2: f04f 0200 mov.w r2, #0 - 80025d6: f04f 0300 mov.w r3, #0 - 80025da: e9d7 4500 ldrd r4, r5, [r7] - 80025de: 4629 mov r1, r5 - 80025e0: 028b lsls r3, r1, #10 - 80025e2: 4621 mov r1, r4 - 80025e4: ea43 5391 orr.w r3, r3, r1, lsr #22 - 80025e8: 4621 mov r1, r4 - 80025ea: 028a lsls r2, r1, #10 - 80025ec: 4610 mov r0, r2 - 80025ee: 4619 mov r1, r3 - 80025f0: 6c7b ldr r3, [r7, #68] ; 0x44 - 80025f2: 2200 movs r2, #0 - 80025f4: 61bb str r3, [r7, #24] - 80025f6: 61fa str r2, [r7, #28] - 80025f8: e9d7 2306 ldrd r2, r3, [r7, #24] - 80025fc: f7fd fdf0 bl 80001e0 <__aeabi_uldivmod> - 8002600: 4602 mov r2, r0 - 8002602: 460b mov r3, r1 - 8002604: 4613 mov r3, r2 - 8002606: 64fb str r3, [r7, #76] ; 0x4c + 8002592: 4b38 ldr r3, [pc, #224] ; (8002674 ) + 8002594: 685b ldr r3, [r3, #4] + 8002596: 099b lsrs r3, r3, #6 + 8002598: 2200 movs r2, #0 + 800259a: 4618 mov r0, r3 + 800259c: 4611 mov r1, r2 + 800259e: f3c0 0308 ubfx r3, r0, #0, #9 + 80025a2: 623b str r3, [r7, #32] + 80025a4: 2300 movs r3, #0 + 80025a6: 627b str r3, [r7, #36] ; 0x24 + 80025a8: e9d7 8908 ldrd r8, r9, [r7, #32] + 80025ac: 4642 mov r2, r8 + 80025ae: 464b mov r3, r9 + 80025b0: f04f 0000 mov.w r0, #0 + 80025b4: f04f 0100 mov.w r1, #0 + 80025b8: 0159 lsls r1, r3, #5 + 80025ba: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 80025be: 0150 lsls r0, r2, #5 + 80025c0: 4602 mov r2, r0 + 80025c2: 460b mov r3, r1 + 80025c4: 4641 mov r1, r8 + 80025c6: ebb2 0a01 subs.w sl, r2, r1 + 80025ca: 4649 mov r1, r9 + 80025cc: eb63 0b01 sbc.w fp, r3, r1 + 80025d0: f04f 0200 mov.w r2, #0 + 80025d4: f04f 0300 mov.w r3, #0 + 80025d8: ea4f 138b mov.w r3, fp, lsl #6 + 80025dc: ea43 639a orr.w r3, r3, sl, lsr #26 + 80025e0: ea4f 128a mov.w r2, sl, lsl #6 + 80025e4: ebb2 040a subs.w r4, r2, sl + 80025e8: eb63 050b sbc.w r5, r3, fp + 80025ec: f04f 0200 mov.w r2, #0 + 80025f0: f04f 0300 mov.w r3, #0 + 80025f4: 00eb lsls r3, r5, #3 + 80025f6: ea43 7354 orr.w r3, r3, r4, lsr #29 + 80025fa: 00e2 lsls r2, r4, #3 + 80025fc: 4614 mov r4, r2 + 80025fe: 461d mov r5, r3 + 8002600: 4643 mov r3, r8 + 8002602: 18e3 adds r3, r4, r3 + 8002604: 603b str r3, [r7, #0] + 8002606: 464b mov r3, r9 + 8002608: eb45 0303 adc.w r3, r5, r3 + 800260c: 607b str r3, [r7, #4] + 800260e: f04f 0200 mov.w r2, #0 + 8002612: f04f 0300 mov.w r3, #0 + 8002616: e9d7 4500 ldrd r4, r5, [r7] + 800261a: 4629 mov r1, r5 + 800261c: 028b lsls r3, r1, #10 + 800261e: 4621 mov r1, r4 + 8002620: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8002624: 4621 mov r1, r4 + 8002626: 028a lsls r2, r1, #10 + 8002628: 4610 mov r0, r2 + 800262a: 4619 mov r1, r3 + 800262c: 6c7b ldr r3, [r7, #68] ; 0x44 + 800262e: 2200 movs r2, #0 + 8002630: 61bb str r3, [r7, #24] + 8002632: 61fa str r2, [r7, #28] + 8002634: e9d7 2306 ldrd r2, r3, [r7, #24] + 8002638: f7fd fdd2 bl 80001e0 <__aeabi_uldivmod> + 800263c: 4602 mov r2, r0 + 800263e: 460b mov r3, r1 + 8002640: 4613 mov r3, r2 + 8002642: 64fb str r3, [r7, #76] ; 0x4c } pllp = ((((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >> RCC_PLLCFGR_PLLP_Pos) + 1U) *2U); - 8002608: 4b0b ldr r3, [pc, #44] ; (8002638 ) - 800260a: 685b ldr r3, [r3, #4] - 800260c: 0c1b lsrs r3, r3, #16 - 800260e: f003 0303 and.w r3, r3, #3 - 8002612: 3301 adds r3, #1 - 8002614: 005b lsls r3, r3, #1 - 8002616: 643b str r3, [r7, #64] ; 0x40 + 8002644: 4b0b ldr r3, [pc, #44] ; (8002674 ) + 8002646: 685b ldr r3, [r3, #4] + 8002648: 0c1b lsrs r3, r3, #16 + 800264a: f003 0303 and.w r3, r3, #3 + 800264e: 3301 adds r3, #1 + 8002650: 005b lsls r3, r3, #1 + 8002652: 643b str r3, [r7, #64] ; 0x40 sysclockfreq = pllvco/pllp; - 8002618: 6cfa ldr r2, [r7, #76] ; 0x4c - 800261a: 6c3b ldr r3, [r7, #64] ; 0x40 - 800261c: fbb2 f3f3 udiv r3, r2, r3 - 8002620: 64bb str r3, [r7, #72] ; 0x48 + 8002654: 6cfa ldr r2, [r7, #76] ; 0x4c + 8002656: 6c3b ldr r3, [r7, #64] ; 0x40 + 8002658: fbb2 f3f3 udiv r3, r2, r3 + 800265c: 64bb str r3, [r7, #72] ; 0x48 break; - 8002622: e002 b.n 800262a + 800265e: e002 b.n 8002666 } default: { sysclockfreq = HSI_VALUE; - 8002624: 4b05 ldr r3, [pc, #20] ; (800263c ) - 8002626: 64bb str r3, [r7, #72] ; 0x48 + 8002660: 4b05 ldr r3, [pc, #20] ; (8002678 ) + 8002662: 64bb str r3, [r7, #72] ; 0x48 break; - 8002628: bf00 nop + 8002664: bf00 nop } } return sysclockfreq; - 800262a: 6cbb ldr r3, [r7, #72] ; 0x48 + 8002666: 6cbb ldr r3, [r7, #72] ; 0x48 } - 800262c: 4618 mov r0, r3 - 800262e: 3750 adds r7, #80 ; 0x50 - 8002630: 46bd mov sp, r7 - 8002632: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8002636: bf00 nop - 8002638: 40023800 .word 0x40023800 - 800263c: 00f42400 .word 0x00f42400 - 8002640: 007a1200 .word 0x007a1200 + 8002668: 4618 mov r0, r3 + 800266a: 3750 adds r7, #80 ; 0x50 + 800266c: 46bd mov sp, r7 + 800266e: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8002672: bf00 nop + 8002674: 40023800 .word 0x40023800 + 8002678: 00f42400 .word 0x00f42400 + 800267c: 007a1200 .word 0x007a1200 -08002644 : +08002680 : * @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) { - 8002644: b480 push {r7} - 8002646: af00 add r7, sp, #0 + 8002680: b480 push {r7} + 8002682: af00 add r7, sp, #0 return SystemCoreClock; - 8002648: 4b03 ldr r3, [pc, #12] ; (8002658 ) - 800264a: 681b ldr r3, [r3, #0] + 8002684: 4b03 ldr r3, [pc, #12] ; (8002694 ) + 8002686: 681b ldr r3, [r3, #0] } - 800264c: 4618 mov r0, r3 - 800264e: 46bd mov sp, r7 - 8002650: f85d 7b04 ldr.w r7, [sp], #4 - 8002654: 4770 bx lr - 8002656: bf00 nop - 8002658: 20000000 .word 0x20000000 + 8002688: 4618 mov r0, r3 + 800268a: 46bd mov sp, r7 + 800268c: f85d 7b04 ldr.w r7, [sp], #4 + 8002690: 4770 bx lr + 8002692: bf00 nop + 8002694: 20000000 .word 0x20000000 -0800265c : +08002698 : * @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) { - 800265c: b580 push {r7, lr} - 800265e: af00 add r7, sp, #0 + 8002698: b580 push {r7, lr} + 800269a: 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]); - 8002660: f7ff fff0 bl 8002644 - 8002664: 4602 mov r2, r0 - 8002666: 4b05 ldr r3, [pc, #20] ; (800267c ) - 8002668: 689b ldr r3, [r3, #8] - 800266a: 0a9b lsrs r3, r3, #10 - 800266c: f003 0307 and.w r3, r3, #7 - 8002670: 4903 ldr r1, [pc, #12] ; (8002680 ) - 8002672: 5ccb ldrb r3, [r1, r3] - 8002674: fa22 f303 lsr.w r3, r2, r3 + 800269c: f7ff fff0 bl 8002680 + 80026a0: 4602 mov r2, r0 + 80026a2: 4b05 ldr r3, [pc, #20] ; (80026b8 ) + 80026a4: 689b ldr r3, [r3, #8] + 80026a6: 0a9b lsrs r3, r3, #10 + 80026a8: f003 0307 and.w r3, r3, #7 + 80026ac: 4903 ldr r1, [pc, #12] ; (80026bc ) + 80026ae: 5ccb ldrb r3, [r1, r3] + 80026b0: fa22 f303 lsr.w r3, r2, r3 } - 8002678: 4618 mov r0, r3 - 800267a: bd80 pop {r7, pc} - 800267c: 40023800 .word 0x40023800 - 8002680: 08006334 .word 0x08006334 + 80026b4: 4618 mov r0, r3 + 80026b6: bd80 pop {r7, pc} + 80026b8: 40023800 .word 0x40023800 + 80026bc: 08006364 .word 0x08006364 -08002684 : +080026c0 : * @note Each time PCLK2 changes, this function must be called to update the * right PCLK2 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK2 frequency */ uint32_t HAL_RCC_GetPCLK2Freq(void) { - 8002684: b580 push {r7, lr} - 8002686: af00 add r7, sp, #0 + 80026c0: b580 push {r7, lr} + 80026c2: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK2 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq()>> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE2)>> RCC_CFGR_PPRE2_Pos]); - 8002688: f7ff ffdc bl 8002644 - 800268c: 4602 mov r2, r0 - 800268e: 4b05 ldr r3, [pc, #20] ; (80026a4 ) - 8002690: 689b ldr r3, [r3, #8] - 8002692: 0b5b lsrs r3, r3, #13 - 8002694: f003 0307 and.w r3, r3, #7 - 8002698: 4903 ldr r1, [pc, #12] ; (80026a8 ) - 800269a: 5ccb ldrb r3, [r1, r3] - 800269c: fa22 f303 lsr.w r3, r2, r3 + 80026c4: f7ff ffdc bl 8002680 + 80026c8: 4602 mov r2, r0 + 80026ca: 4b05 ldr r3, [pc, #20] ; (80026e0 ) + 80026cc: 689b ldr r3, [r3, #8] + 80026ce: 0b5b lsrs r3, r3, #13 + 80026d0: f003 0307 and.w r3, r3, #7 + 80026d4: 4903 ldr r1, [pc, #12] ; (80026e4 ) + 80026d6: 5ccb ldrb r3, [r1, r3] + 80026d8: fa22 f303 lsr.w r3, r2, r3 } - 80026a0: 4618 mov r0, r3 - 80026a2: bd80 pop {r7, pc} - 80026a4: 40023800 .word 0x40023800 - 80026a8: 08006334 .word 0x08006334 + 80026dc: 4618 mov r0, r3 + 80026de: bd80 pop {r7, pc} + 80026e0: 40023800 .word 0x40023800 + 80026e4: 08006364 .word 0x08006364 -080026ac : +080026e8 : * will be configured. * @param pFLatency Pointer on the Flash Latency. * @retval None */ void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t *pFLatency) { - 80026ac: b480 push {r7} - 80026ae: b083 sub sp, #12 - 80026b0: af00 add r7, sp, #0 - 80026b2: 6078 str r0, [r7, #4] - 80026b4: 6039 str r1, [r7, #0] + 80026e8: b480 push {r7} + 80026ea: b083 sub sp, #12 + 80026ec: af00 add r7, sp, #0 + 80026ee: 6078 str r0, [r7, #4] + 80026f0: 6039 str r1, [r7, #0] /* Set all possible values for the Clock type parameter --------------------*/ RCC_ClkInitStruct->ClockType = RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; - 80026b6: 687b ldr r3, [r7, #4] - 80026b8: 220f movs r2, #15 - 80026ba: 601a str r2, [r3, #0] + 80026f2: 687b ldr r3, [r7, #4] + 80026f4: 220f movs r2, #15 + 80026f6: 601a str r2, [r3, #0] /* Get the SYSCLK configuration --------------------------------------------*/ RCC_ClkInitStruct->SYSCLKSource = (uint32_t)(RCC->CFGR & RCC_CFGR_SW); - 80026bc: 4b12 ldr r3, [pc, #72] ; (8002708 ) - 80026be: 689b ldr r3, [r3, #8] - 80026c0: f003 0203 and.w r2, r3, #3 - 80026c4: 687b ldr r3, [r7, #4] - 80026c6: 605a str r2, [r3, #4] + 80026f8: 4b12 ldr r3, [pc, #72] ; (8002744 ) + 80026fa: 689b ldr r3, [r3, #8] + 80026fc: f003 0203 and.w r2, r3, #3 + 8002700: 687b ldr r3, [r7, #4] + 8002702: 605a str r2, [r3, #4] /* Get the HCLK configuration ----------------------------------------------*/ RCC_ClkInitStruct->AHBCLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_HPRE); - 80026c8: 4b0f ldr r3, [pc, #60] ; (8002708 ) - 80026ca: 689b ldr r3, [r3, #8] - 80026cc: f003 02f0 and.w r2, r3, #240 ; 0xf0 - 80026d0: 687b ldr r3, [r7, #4] - 80026d2: 609a str r2, [r3, #8] + 8002704: 4b0f ldr r3, [pc, #60] ; (8002744 ) + 8002706: 689b ldr r3, [r3, #8] + 8002708: f003 02f0 and.w r2, r3, #240 ; 0xf0 + 800270c: 687b ldr r3, [r7, #4] + 800270e: 609a str r2, [r3, #8] /* Get the APB1 configuration ----------------------------------------------*/ RCC_ClkInitStruct->APB1CLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_PPRE1); - 80026d4: 4b0c ldr r3, [pc, #48] ; (8002708 ) - 80026d6: 689b ldr r3, [r3, #8] - 80026d8: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 - 80026dc: 687b ldr r3, [r7, #4] - 80026de: 60da str r2, [r3, #12] + 8002710: 4b0c ldr r3, [pc, #48] ; (8002744 ) + 8002712: 689b ldr r3, [r3, #8] + 8002714: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 + 8002718: 687b ldr r3, [r7, #4] + 800271a: 60da str r2, [r3, #12] /* Get the APB2 configuration ----------------------------------------------*/ RCC_ClkInitStruct->APB2CLKDivider = (uint32_t)((RCC->CFGR & RCC_CFGR_PPRE2) >> 3U); - 80026e0: 4b09 ldr r3, [pc, #36] ; (8002708 ) - 80026e2: 689b ldr r3, [r3, #8] - 80026e4: 08db lsrs r3, r3, #3 - 80026e6: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 - 80026ea: 687b ldr r3, [r7, #4] - 80026ec: 611a str r2, [r3, #16] + 800271c: 4b09 ldr r3, [pc, #36] ; (8002744 ) + 800271e: 689b ldr r3, [r3, #8] + 8002720: 08db lsrs r3, r3, #3 + 8002722: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 + 8002726: 687b ldr r3, [r7, #4] + 8002728: 611a str r2, [r3, #16] /* Get the Flash Wait State (Latency) configuration ------------------------*/ *pFLatency = (uint32_t)(FLASH->ACR & FLASH_ACR_LATENCY); - 80026ee: 4b07 ldr r3, [pc, #28] ; (800270c ) - 80026f0: 681b ldr r3, [r3, #0] - 80026f2: f003 0207 and.w r2, r3, #7 - 80026f6: 683b ldr r3, [r7, #0] - 80026f8: 601a str r2, [r3, #0] + 800272a: 4b07 ldr r3, [pc, #28] ; (8002748 ) + 800272c: 681b ldr r3, [r3, #0] + 800272e: f003 0207 and.w r2, r3, #7 + 8002732: 683b ldr r3, [r7, #0] + 8002734: 601a str r2, [r3, #0] } - 80026fa: bf00 nop - 80026fc: 370c adds r7, #12 - 80026fe: 46bd mov sp, r7 - 8002700: f85d 7b04 ldr.w r7, [sp], #4 - 8002704: 4770 bx lr - 8002706: bf00 nop - 8002708: 40023800 .word 0x40023800 - 800270c: 40023c00 .word 0x40023c00 + 8002736: bf00 nop + 8002738: 370c adds r7, #12 + 800273a: 46bd mov sp, r7 + 800273c: f85d 7b04 ldr.w r7, [sp], #4 + 8002740: 4770 bx lr + 8002742: bf00 nop + 8002744: 40023800 .word 0x40023800 + 8002748: 40023c00 .word 0x40023c00 -08002710 : +0800274c : * 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) { - 8002710: b580 push {r7, lr} - 8002712: b082 sub sp, #8 - 8002714: af00 add r7, sp, #0 - 8002716: 6078 str r0, [r7, #4] + 800274c: b580 push {r7, lr} + 800274e: b082 sub sp, #8 + 8002750: af00 add r7, sp, #0 + 8002752: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 8002718: 687b ldr r3, [r7, #4] - 800271a: 2b00 cmp r3, #0 - 800271c: d101 bne.n 8002722 + 8002754: 687b ldr r3, [r7, #4] + 8002756: 2b00 cmp r3, #0 + 8002758: d101 bne.n 800275e { return HAL_ERROR; - 800271e: 2301 movs r3, #1 - 8002720: e041 b.n 80027a6 + 800275a: 2301 movs r3, #1 + 800275c: e041 b.n 80027e2 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) - 8002722: 687b ldr r3, [r7, #4] - 8002724: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002728: b2db uxtb r3, r3 - 800272a: 2b00 cmp r3, #0 - 800272c: d106 bne.n 800273c + 800275e: 687b ldr r3, [r7, #4] + 8002760: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002764: b2db uxtb r3, r3 + 8002766: 2b00 cmp r3, #0 + 8002768: d106 bne.n 8002778 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 800272e: 687b ldr r3, [r7, #4] - 8002730: 2200 movs r2, #0 - 8002732: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800276a: 687b ldr r3, [r7, #4] + 800276c: 2200 movs r2, #0 + 800276e: 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); - 8002736: 6878 ldr r0, [r7, #4] - 8002738: f000 f839 bl 80027ae + 8002772: 6878 ldr r0, [r7, #4] + 8002774: f000 f839 bl 80027ea #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 800273c: 687b ldr r3, [r7, #4] - 800273e: 2202 movs r2, #2 - 8002740: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002778: 687b ldr r3, [r7, #4] + 800277a: 2202 movs r2, #2 + 800277c: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Set the Time Base configuration */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 8002744: 687b ldr r3, [r7, #4] - 8002746: 681a ldr r2, [r3, #0] - 8002748: 687b ldr r3, [r7, #4] - 800274a: 3304 adds r3, #4 - 800274c: 4619 mov r1, r3 - 800274e: 4610 mov r0, r2 - 8002750: f000 f9ca bl 8002ae8 + 8002780: 687b ldr r3, [r7, #4] + 8002782: 681a ldr r2, [r3, #0] + 8002784: 687b ldr r3, [r7, #4] + 8002786: 3304 adds r3, #4 + 8002788: 4619 mov r1, r3 + 800278a: 4610 mov r0, r2 + 800278c: f000 f9ca bl 8002b24 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 8002754: 687b ldr r3, [r7, #4] - 8002756: 2201 movs r2, #1 - 8002758: f883 2046 strb.w r2, [r3, #70] ; 0x46 + 8002790: 687b ldr r3, [r7, #4] + 8002792: 2201 movs r2, #1 + 8002794: f883 2046 strb.w r2, [r3, #70] ; 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 800275c: 687b ldr r3, [r7, #4] - 800275e: 2201 movs r2, #1 - 8002760: f883 203e strb.w r2, [r3, #62] ; 0x3e - 8002764: 687b ldr r3, [r7, #4] - 8002766: 2201 movs r2, #1 - 8002768: f883 203f strb.w r2, [r3, #63] ; 0x3f - 800276c: 687b ldr r3, [r7, #4] - 800276e: 2201 movs r2, #1 - 8002770: f883 2040 strb.w r2, [r3, #64] ; 0x40 - 8002774: 687b ldr r3, [r7, #4] - 8002776: 2201 movs r2, #1 - 8002778: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 8002798: 687b ldr r3, [r7, #4] + 800279a: 2201 movs r2, #1 + 800279c: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80027a0: 687b ldr r3, [r7, #4] + 80027a2: 2201 movs r2, #1 + 80027a4: f883 203f strb.w r2, [r3, #63] ; 0x3f + 80027a8: 687b ldr r3, [r7, #4] + 80027aa: 2201 movs r2, #1 + 80027ac: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 80027b0: 687b ldr r3, [r7, #4] + 80027b2: 2201 movs r2, #1 + 80027b4: f883 2041 strb.w r2, [r3, #65] ; 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 800277c: 687b ldr r3, [r7, #4] - 800277e: 2201 movs r2, #1 - 8002780: f883 2042 strb.w r2, [r3, #66] ; 0x42 - 8002784: 687b ldr r3, [r7, #4] - 8002786: 2201 movs r2, #1 - 8002788: f883 2043 strb.w r2, [r3, #67] ; 0x43 - 800278c: 687b ldr r3, [r7, #4] - 800278e: 2201 movs r2, #1 - 8002790: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 8002794: 687b ldr r3, [r7, #4] - 8002796: 2201 movs r2, #1 - 8002798: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 80027b8: 687b ldr r3, [r7, #4] + 80027ba: 2201 movs r2, #1 + 80027bc: f883 2042 strb.w r2, [r3, #66] ; 0x42 + 80027c0: 687b ldr r3, [r7, #4] + 80027c2: 2201 movs r2, #1 + 80027c4: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 80027c8: 687b ldr r3, [r7, #4] + 80027ca: 2201 movs r2, #1 + 80027cc: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 80027d0: 687b ldr r3, [r7, #4] + 80027d2: 2201 movs r2, #1 + 80027d4: f883 2045 strb.w r2, [r3, #69] ; 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 800279c: 687b ldr r3, [r7, #4] - 800279e: 2201 movs r2, #1 - 80027a0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80027d8: 687b ldr r3, [r7, #4] + 80027da: 2201 movs r2, #1 + 80027dc: f883 203d strb.w r2, [r3, #61] ; 0x3d return HAL_OK; - 80027a4: 2300 movs r3, #0 + 80027e0: 2300 movs r3, #0 } - 80027a6: 4618 mov r0, r3 - 80027a8: 3708 adds r7, #8 - 80027aa: 46bd mov sp, r7 - 80027ac: bd80 pop {r7, pc} + 80027e2: 4618 mov r0, r3 + 80027e4: 3708 adds r7, #8 + 80027e6: 46bd mov sp, r7 + 80027e8: bd80 pop {r7, pc} -080027ae : +080027ea : * @brief Initializes the TIM Base MSP. * @param htim TIM Base handle * @retval None */ __weak void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim) { - 80027ae: b480 push {r7} - 80027b0: b083 sub sp, #12 - 80027b2: af00 add r7, sp, #0 - 80027b4: 6078 str r0, [r7, #4] + 80027ea: b480 push {r7} + 80027ec: b083 sub sp, #12 + 80027ee: af00 add r7, sp, #0 + 80027f0: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_Base_MspInit could be implemented in the user file */ } - 80027b6: bf00 nop - 80027b8: 370c adds r7, #12 - 80027ba: 46bd mov sp, r7 - 80027bc: f85d 7b04 ldr.w r7, [sp], #4 - 80027c0: 4770 bx lr + 80027f2: bf00 nop + 80027f4: 370c adds r7, #12 + 80027f6: 46bd mov sp, r7 + 80027f8: f85d 7b04 ldr.w r7, [sp], #4 + 80027fc: 4770 bx lr ... -080027c4 : +08002800 : * @brief Starts the TIM Base generation in interrupt mode. * @param htim TIM Base handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim) { - 80027c4: b480 push {r7} - 80027c6: b085 sub sp, #20 - 80027c8: af00 add r7, sp, #0 - 80027ca: 6078 str r0, [r7, #4] + 8002800: b480 push {r7} + 8002802: b085 sub sp, #20 + 8002804: af00 add r7, sp, #0 + 8002806: 6078 str r0, [r7, #4] /* Check the parameters */ assert_param(IS_TIM_INSTANCE(htim->Instance)); /* Check the TIM state */ if (htim->State != HAL_TIM_STATE_READY) - 80027cc: 687b ldr r3, [r7, #4] - 80027ce: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80027d2: b2db uxtb r3, r3 - 80027d4: 2b01 cmp r3, #1 - 80027d6: d001 beq.n 80027dc + 8002808: 687b ldr r3, [r7, #4] + 800280a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 800280e: b2db uxtb r3, r3 + 8002810: 2b01 cmp r3, #1 + 8002812: d001 beq.n 8002818 { return HAL_ERROR; - 80027d8: 2301 movs r3, #1 - 80027da: e044 b.n 8002866 + 8002814: 2301 movs r3, #1 + 8002816: e044 b.n 80028a2 } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 80027dc: 687b ldr r3, [r7, #4] - 80027de: 2202 movs r2, #2 - 80027e0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002818: 687b ldr r3, [r7, #4] + 800281a: 2202 movs r2, #2 + 800281c: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Enable the TIM Update interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_UPDATE); - 80027e4: 687b ldr r3, [r7, #4] - 80027e6: 681b ldr r3, [r3, #0] - 80027e8: 68da ldr r2, [r3, #12] - 80027ea: 687b ldr r3, [r7, #4] - 80027ec: 681b ldr r3, [r3, #0] - 80027ee: f042 0201 orr.w r2, r2, #1 - 80027f2: 60da str r2, [r3, #12] + 8002820: 687b ldr r3, [r7, #4] + 8002822: 681b ldr r3, [r3, #0] + 8002824: 68da ldr r2, [r3, #12] + 8002826: 687b ldr r3, [r7, #4] + 8002828: 681b ldr r3, [r3, #0] + 800282a: f042 0201 orr.w r2, r2, #1 + 800282e: 60da str r2, [r3, #12] /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 80027f4: 687b ldr r3, [r7, #4] - 80027f6: 681b ldr r3, [r3, #0] - 80027f8: 4a1e ldr r2, [pc, #120] ; (8002874 ) - 80027fa: 4293 cmp r3, r2 - 80027fc: d018 beq.n 8002830 - 80027fe: 687b ldr r3, [r7, #4] - 8002800: 681b ldr r3, [r3, #0] - 8002802: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8002806: d013 beq.n 8002830 - 8002808: 687b ldr r3, [r7, #4] - 800280a: 681b ldr r3, [r3, #0] - 800280c: 4a1a ldr r2, [pc, #104] ; (8002878 ) - 800280e: 4293 cmp r3, r2 - 8002810: d00e beq.n 8002830 - 8002812: 687b ldr r3, [r7, #4] - 8002814: 681b ldr r3, [r3, #0] - 8002816: 4a19 ldr r2, [pc, #100] ; (800287c ) - 8002818: 4293 cmp r3, r2 - 800281a: d009 beq.n 8002830 - 800281c: 687b ldr r3, [r7, #4] - 800281e: 681b ldr r3, [r3, #0] - 8002820: 4a17 ldr r2, [pc, #92] ; (8002880 ) - 8002822: 4293 cmp r3, r2 - 8002824: d004 beq.n 8002830 - 8002826: 687b ldr r3, [r7, #4] - 8002828: 681b ldr r3, [r3, #0] - 800282a: 4a16 ldr r2, [pc, #88] ; (8002884 ) - 800282c: 4293 cmp r3, r2 - 800282e: d111 bne.n 8002854 - { - tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; 8002830: 687b ldr r3, [r7, #4] 8002832: 681b ldr r3, [r3, #0] - 8002834: 689b ldr r3, [r3, #8] - 8002836: f003 0307 and.w r3, r3, #7 - 800283a: 60fb str r3, [r7, #12] + 8002834: 4a1e ldr r2, [pc, #120] ; (80028b0 ) + 8002836: 4293 cmp r3, r2 + 8002838: d018 beq.n 800286c + 800283a: 687b ldr r3, [r7, #4] + 800283c: 681b ldr r3, [r3, #0] + 800283e: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8002842: d013 beq.n 800286c + 8002844: 687b ldr r3, [r7, #4] + 8002846: 681b ldr r3, [r3, #0] + 8002848: 4a1a ldr r2, [pc, #104] ; (80028b4 ) + 800284a: 4293 cmp r3, r2 + 800284c: d00e beq.n 800286c + 800284e: 687b ldr r3, [r7, #4] + 8002850: 681b ldr r3, [r3, #0] + 8002852: 4a19 ldr r2, [pc, #100] ; (80028b8 ) + 8002854: 4293 cmp r3, r2 + 8002856: d009 beq.n 800286c + 8002858: 687b ldr r3, [r7, #4] + 800285a: 681b ldr r3, [r3, #0] + 800285c: 4a17 ldr r2, [pc, #92] ; (80028bc ) + 800285e: 4293 cmp r3, r2 + 8002860: d004 beq.n 800286c + 8002862: 687b ldr r3, [r7, #4] + 8002864: 681b ldr r3, [r3, #0] + 8002866: 4a16 ldr r2, [pc, #88] ; (80028c0 ) + 8002868: 4293 cmp r3, r2 + 800286a: d111 bne.n 8002890 + { + tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; + 800286c: 687b ldr r3, [r7, #4] + 800286e: 681b ldr r3, [r3, #0] + 8002870: 689b ldr r3, [r3, #8] + 8002872: f003 0307 and.w r3, r3, #7 + 8002876: 60fb str r3, [r7, #12] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 800283c: 68fb ldr r3, [r7, #12] - 800283e: 2b06 cmp r3, #6 - 8002840: d010 beq.n 8002864 + 8002878: 68fb ldr r3, [r7, #12] + 800287a: 2b06 cmp r3, #6 + 800287c: d010 beq.n 80028a0 { __HAL_TIM_ENABLE(htim); - 8002842: 687b ldr r3, [r7, #4] - 8002844: 681b ldr r3, [r3, #0] - 8002846: 681a ldr r2, [r3, #0] - 8002848: 687b ldr r3, [r7, #4] - 800284a: 681b ldr r3, [r3, #0] - 800284c: f042 0201 orr.w r2, r2, #1 - 8002850: 601a str r2, [r3, #0] + 800287e: 687b ldr r3, [r7, #4] + 8002880: 681b ldr r3, [r3, #0] + 8002882: 681a ldr r2, [r3, #0] + 8002884: 687b ldr r3, [r7, #4] + 8002886: 681b ldr r3, [r3, #0] + 8002888: f042 0201 orr.w r2, r2, #1 + 800288c: 601a str r2, [r3, #0] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 8002852: e007 b.n 8002864 + 800288e: e007 b.n 80028a0 } } else { __HAL_TIM_ENABLE(htim); - 8002854: 687b ldr r3, [r7, #4] - 8002856: 681b ldr r3, [r3, #0] - 8002858: 681a ldr r2, [r3, #0] - 800285a: 687b ldr r3, [r7, #4] - 800285c: 681b ldr r3, [r3, #0] - 800285e: f042 0201 orr.w r2, r2, #1 - 8002862: 601a str r2, [r3, #0] + 8002890: 687b ldr r3, [r7, #4] + 8002892: 681b ldr r3, [r3, #0] + 8002894: 681a ldr r2, [r3, #0] + 8002896: 687b ldr r3, [r7, #4] + 8002898: 681b ldr r3, [r3, #0] + 800289a: f042 0201 orr.w r2, r2, #1 + 800289e: 601a str r2, [r3, #0] } /* Return function status */ return HAL_OK; - 8002864: 2300 movs r3, #0 + 80028a0: 2300 movs r3, #0 } - 8002866: 4618 mov r0, r3 - 8002868: 3714 adds r7, #20 - 800286a: 46bd mov sp, r7 - 800286c: f85d 7b04 ldr.w r7, [sp], #4 - 8002870: 4770 bx lr - 8002872: bf00 nop - 8002874: 40010000 .word 0x40010000 - 8002878: 40000400 .word 0x40000400 - 800287c: 40000800 .word 0x40000800 - 8002880: 40000c00 .word 0x40000c00 - 8002884: 40014000 .word 0x40014000 + 80028a2: 4618 mov r0, r3 + 80028a4: 3714 adds r7, #20 + 80028a6: 46bd mov sp, r7 + 80028a8: f85d 7b04 ldr.w r7, [sp], #4 + 80028ac: 4770 bx lr + 80028ae: bf00 nop + 80028b0: 40010000 .word 0x40010000 + 80028b4: 40000400 .word 0x40000400 + 80028b8: 40000800 .word 0x40000800 + 80028bc: 40000c00 .word 0x40000c00 + 80028c0: 40014000 .word 0x40014000 -08002888 : +080028c4 : * @brief This function handles TIM interrupts requests. * @param htim TIM handle * @retval None */ void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) { - 8002888: b580 push {r7, lr} - 800288a: b082 sub sp, #8 - 800288c: af00 add r7, sp, #0 - 800288e: 6078 str r0, [r7, #4] + 80028c4: b580 push {r7, lr} + 80028c6: b082 sub sp, #8 + 80028c8: af00 add r7, sp, #0 + 80028ca: 6078 str r0, [r7, #4] /* Capture compare 1 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC1) != RESET) - 8002890: 687b ldr r3, [r7, #4] - 8002892: 681b ldr r3, [r3, #0] - 8002894: 691b ldr r3, [r3, #16] - 8002896: f003 0302 and.w r3, r3, #2 - 800289a: 2b02 cmp r3, #2 - 800289c: d122 bne.n 80028e4 + 80028cc: 687b ldr r3, [r7, #4] + 80028ce: 681b ldr r3, [r3, #0] + 80028d0: 691b ldr r3, [r3, #16] + 80028d2: f003 0302 and.w r3, r3, #2 + 80028d6: 2b02 cmp r3, #2 + 80028d8: d122 bne.n 8002920 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC1) != RESET) - 800289e: 687b ldr r3, [r7, #4] - 80028a0: 681b ldr r3, [r3, #0] - 80028a2: 68db ldr r3, [r3, #12] - 80028a4: f003 0302 and.w r3, r3, #2 - 80028a8: 2b02 cmp r3, #2 - 80028aa: d11b bne.n 80028e4 + 80028da: 687b ldr r3, [r7, #4] + 80028dc: 681b ldr r3, [r3, #0] + 80028de: 68db ldr r3, [r3, #12] + 80028e0: f003 0302 and.w r3, r3, #2 + 80028e4: 2b02 cmp r3, #2 + 80028e6: d11b bne.n 8002920 { { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC1); - 80028ac: 687b ldr r3, [r7, #4] - 80028ae: 681b ldr r3, [r3, #0] - 80028b0: f06f 0202 mvn.w r2, #2 - 80028b4: 611a str r2, [r3, #16] + 80028e8: 687b ldr r3, [r7, #4] + 80028ea: 681b ldr r3, [r3, #0] + 80028ec: f06f 0202 mvn.w r2, #2 + 80028f0: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; - 80028b6: 687b ldr r3, [r7, #4] - 80028b8: 2201 movs r2, #1 - 80028ba: 771a strb r2, [r3, #28] + 80028f2: 687b ldr r3, [r7, #4] + 80028f4: 2201 movs r2, #1 + 80028f6: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) - 80028bc: 687b ldr r3, [r7, #4] - 80028be: 681b ldr r3, [r3, #0] - 80028c0: 699b ldr r3, [r3, #24] - 80028c2: f003 0303 and.w r3, r3, #3 - 80028c6: 2b00 cmp r3, #0 - 80028c8: d003 beq.n 80028d2 + 80028f8: 687b ldr r3, [r7, #4] + 80028fa: 681b ldr r3, [r3, #0] + 80028fc: 699b ldr r3, [r3, #24] + 80028fe: f003 0303 and.w r3, r3, #3 + 8002902: 2b00 cmp r3, #0 + 8002904: d003 beq.n 800290e { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 80028ca: 6878 ldr r0, [r7, #4] - 80028cc: f000 f8ee bl 8002aac - 80028d0: e005 b.n 80028de + 8002906: 6878 ldr r0, [r7, #4] + 8002908: f000 f8ee bl 8002ae8 + 800290c: e005 b.n 800291a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 80028d2: 6878 ldr r0, [r7, #4] - 80028d4: f000 f8e0 bl 8002a98 + 800290e: 6878 ldr r0, [r7, #4] + 8002910: f000 f8e0 bl 8002ad4 HAL_TIM_PWM_PulseFinishedCallback(htim); - 80028d8: 6878 ldr r0, [r7, #4] - 80028da: f000 f8f1 bl 8002ac0 + 8002914: 6878 ldr r0, [r7, #4] + 8002916: f000 f8f1 bl 8002afc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 80028de: 687b ldr r3, [r7, #4] - 80028e0: 2200 movs r2, #0 - 80028e2: 771a strb r2, [r3, #28] + 800291a: 687b ldr r3, [r7, #4] + 800291c: 2200 movs r2, #0 + 800291e: 771a strb r2, [r3, #28] } } } /* Capture compare 2 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC2) != RESET) - 80028e4: 687b ldr r3, [r7, #4] - 80028e6: 681b ldr r3, [r3, #0] - 80028e8: 691b ldr r3, [r3, #16] - 80028ea: f003 0304 and.w r3, r3, #4 - 80028ee: 2b04 cmp r3, #4 - 80028f0: d122 bne.n 8002938 + 8002920: 687b ldr r3, [r7, #4] + 8002922: 681b ldr r3, [r3, #0] + 8002924: 691b ldr r3, [r3, #16] + 8002926: f003 0304 and.w r3, r3, #4 + 800292a: 2b04 cmp r3, #4 + 800292c: d122 bne.n 8002974 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC2) != RESET) - 80028f2: 687b ldr r3, [r7, #4] - 80028f4: 681b ldr r3, [r3, #0] - 80028f6: 68db ldr r3, [r3, #12] - 80028f8: f003 0304 and.w r3, r3, #4 - 80028fc: 2b04 cmp r3, #4 - 80028fe: d11b bne.n 8002938 + 800292e: 687b ldr r3, [r7, #4] + 8002930: 681b ldr r3, [r3, #0] + 8002932: 68db ldr r3, [r3, #12] + 8002934: f003 0304 and.w r3, r3, #4 + 8002938: 2b04 cmp r3, #4 + 800293a: d11b bne.n 8002974 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC2); - 8002900: 687b ldr r3, [r7, #4] - 8002902: 681b ldr r3, [r3, #0] - 8002904: f06f 0204 mvn.w r2, #4 - 8002908: 611a str r2, [r3, #16] + 800293c: 687b ldr r3, [r7, #4] + 800293e: 681b ldr r3, [r3, #0] + 8002940: f06f 0204 mvn.w r2, #4 + 8002944: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; - 800290a: 687b ldr r3, [r7, #4] - 800290c: 2202 movs r2, #2 - 800290e: 771a strb r2, [r3, #28] + 8002946: 687b ldr r3, [r7, #4] + 8002948: 2202 movs r2, #2 + 800294a: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) - 8002910: 687b ldr r3, [r7, #4] - 8002912: 681b ldr r3, [r3, #0] - 8002914: 699b ldr r3, [r3, #24] - 8002916: f403 7340 and.w r3, r3, #768 ; 0x300 - 800291a: 2b00 cmp r3, #0 - 800291c: d003 beq.n 8002926 + 800294c: 687b ldr r3, [r7, #4] + 800294e: 681b ldr r3, [r3, #0] + 8002950: 699b ldr r3, [r3, #24] + 8002952: f403 7340 and.w r3, r3, #768 ; 0x300 + 8002956: 2b00 cmp r3, #0 + 8002958: d003 beq.n 8002962 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 800291e: 6878 ldr r0, [r7, #4] - 8002920: f000 f8c4 bl 8002aac - 8002924: e005 b.n 8002932 + 800295a: 6878 ldr r0, [r7, #4] + 800295c: f000 f8c4 bl 8002ae8 + 8002960: e005 b.n 800296e { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8002926: 6878 ldr r0, [r7, #4] - 8002928: f000 f8b6 bl 8002a98 + 8002962: 6878 ldr r0, [r7, #4] + 8002964: f000 f8b6 bl 8002ad4 HAL_TIM_PWM_PulseFinishedCallback(htim); - 800292c: 6878 ldr r0, [r7, #4] - 800292e: f000 f8c7 bl 8002ac0 + 8002968: 6878 ldr r0, [r7, #4] + 800296a: f000 f8c7 bl 8002afc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8002932: 687b ldr r3, [r7, #4] - 8002934: 2200 movs r2, #0 - 8002936: 771a strb r2, [r3, #28] + 800296e: 687b ldr r3, [r7, #4] + 8002970: 2200 movs r2, #0 + 8002972: 771a strb r2, [r3, #28] } } /* Capture compare 3 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC3) != RESET) - 8002938: 687b ldr r3, [r7, #4] - 800293a: 681b ldr r3, [r3, #0] - 800293c: 691b ldr r3, [r3, #16] - 800293e: f003 0308 and.w r3, r3, #8 - 8002942: 2b08 cmp r3, #8 - 8002944: d122 bne.n 800298c + 8002974: 687b ldr r3, [r7, #4] + 8002976: 681b ldr r3, [r3, #0] + 8002978: 691b ldr r3, [r3, #16] + 800297a: f003 0308 and.w r3, r3, #8 + 800297e: 2b08 cmp r3, #8 + 8002980: d122 bne.n 80029c8 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC3) != RESET) - 8002946: 687b ldr r3, [r7, #4] - 8002948: 681b ldr r3, [r3, #0] - 800294a: 68db ldr r3, [r3, #12] - 800294c: f003 0308 and.w r3, r3, #8 - 8002950: 2b08 cmp r3, #8 - 8002952: d11b bne.n 800298c + 8002982: 687b ldr r3, [r7, #4] + 8002984: 681b ldr r3, [r3, #0] + 8002986: 68db ldr r3, [r3, #12] + 8002988: f003 0308 and.w r3, r3, #8 + 800298c: 2b08 cmp r3, #8 + 800298e: d11b bne.n 80029c8 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC3); - 8002954: 687b ldr r3, [r7, #4] - 8002956: 681b ldr r3, [r3, #0] - 8002958: f06f 0208 mvn.w r2, #8 - 800295c: 611a str r2, [r3, #16] + 8002990: 687b ldr r3, [r7, #4] + 8002992: 681b ldr r3, [r3, #0] + 8002994: f06f 0208 mvn.w r2, #8 + 8002998: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; - 800295e: 687b ldr r3, [r7, #4] - 8002960: 2204 movs r2, #4 - 8002962: 771a strb r2, [r3, #28] + 800299a: 687b ldr r3, [r7, #4] + 800299c: 2204 movs r2, #4 + 800299e: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) - 8002964: 687b ldr r3, [r7, #4] - 8002966: 681b ldr r3, [r3, #0] - 8002968: 69db ldr r3, [r3, #28] - 800296a: f003 0303 and.w r3, r3, #3 - 800296e: 2b00 cmp r3, #0 - 8002970: d003 beq.n 800297a + 80029a0: 687b ldr r3, [r7, #4] + 80029a2: 681b ldr r3, [r3, #0] + 80029a4: 69db ldr r3, [r3, #28] + 80029a6: f003 0303 and.w r3, r3, #3 + 80029aa: 2b00 cmp r3, #0 + 80029ac: d003 beq.n 80029b6 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8002972: 6878 ldr r0, [r7, #4] - 8002974: f000 f89a bl 8002aac - 8002978: e005 b.n 8002986 + 80029ae: 6878 ldr r0, [r7, #4] + 80029b0: f000 f89a bl 8002ae8 + 80029b4: e005 b.n 80029c2 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 800297a: 6878 ldr r0, [r7, #4] - 800297c: f000 f88c bl 8002a98 + 80029b6: 6878 ldr r0, [r7, #4] + 80029b8: f000 f88c bl 8002ad4 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8002980: 6878 ldr r0, [r7, #4] - 8002982: f000 f89d bl 8002ac0 + 80029bc: 6878 ldr r0, [r7, #4] + 80029be: f000 f89d bl 8002afc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8002986: 687b ldr r3, [r7, #4] - 8002988: 2200 movs r2, #0 - 800298a: 771a strb r2, [r3, #28] + 80029c2: 687b ldr r3, [r7, #4] + 80029c4: 2200 movs r2, #0 + 80029c6: 771a strb r2, [r3, #28] } } /* Capture compare 4 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC4) != RESET) - 800298c: 687b ldr r3, [r7, #4] - 800298e: 681b ldr r3, [r3, #0] - 8002990: 691b ldr r3, [r3, #16] - 8002992: f003 0310 and.w r3, r3, #16 - 8002996: 2b10 cmp r3, #16 - 8002998: d122 bne.n 80029e0 + 80029c8: 687b ldr r3, [r7, #4] + 80029ca: 681b ldr r3, [r3, #0] + 80029cc: 691b ldr r3, [r3, #16] + 80029ce: f003 0310 and.w r3, r3, #16 + 80029d2: 2b10 cmp r3, #16 + 80029d4: d122 bne.n 8002a1c { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC4) != RESET) - 800299a: 687b ldr r3, [r7, #4] - 800299c: 681b ldr r3, [r3, #0] - 800299e: 68db ldr r3, [r3, #12] - 80029a0: f003 0310 and.w r3, r3, #16 - 80029a4: 2b10 cmp r3, #16 - 80029a6: d11b bne.n 80029e0 + 80029d6: 687b ldr r3, [r7, #4] + 80029d8: 681b ldr r3, [r3, #0] + 80029da: 68db ldr r3, [r3, #12] + 80029dc: f003 0310 and.w r3, r3, #16 + 80029e0: 2b10 cmp r3, #16 + 80029e2: d11b bne.n 8002a1c { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC4); - 80029a8: 687b ldr r3, [r7, #4] - 80029aa: 681b ldr r3, [r3, #0] - 80029ac: f06f 0210 mvn.w r2, #16 - 80029b0: 611a str r2, [r3, #16] + 80029e4: 687b ldr r3, [r7, #4] + 80029e6: 681b ldr r3, [r3, #0] + 80029e8: f06f 0210 mvn.w r2, #16 + 80029ec: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; - 80029b2: 687b ldr r3, [r7, #4] - 80029b4: 2208 movs r2, #8 - 80029b6: 771a strb r2, [r3, #28] + 80029ee: 687b ldr r3, [r7, #4] + 80029f0: 2208 movs r2, #8 + 80029f2: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) - 80029b8: 687b ldr r3, [r7, #4] - 80029ba: 681b ldr r3, [r3, #0] - 80029bc: 69db ldr r3, [r3, #28] - 80029be: f403 7340 and.w r3, r3, #768 ; 0x300 - 80029c2: 2b00 cmp r3, #0 - 80029c4: d003 beq.n 80029ce + 80029f4: 687b ldr r3, [r7, #4] + 80029f6: 681b ldr r3, [r3, #0] + 80029f8: 69db ldr r3, [r3, #28] + 80029fa: f403 7340 and.w r3, r3, #768 ; 0x300 + 80029fe: 2b00 cmp r3, #0 + 8002a00: d003 beq.n 8002a0a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 80029c6: 6878 ldr r0, [r7, #4] - 80029c8: f000 f870 bl 8002aac - 80029cc: e005 b.n 80029da + 8002a02: 6878 ldr r0, [r7, #4] + 8002a04: f000 f870 bl 8002ae8 + 8002a08: e005 b.n 8002a16 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 80029ce: 6878 ldr r0, [r7, #4] - 80029d0: f000 f862 bl 8002a98 + 8002a0a: 6878 ldr r0, [r7, #4] + 8002a0c: f000 f862 bl 8002ad4 HAL_TIM_PWM_PulseFinishedCallback(htim); - 80029d4: 6878 ldr r0, [r7, #4] - 80029d6: f000 f873 bl 8002ac0 + 8002a10: 6878 ldr r0, [r7, #4] + 8002a12: f000 f873 bl 8002afc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 80029da: 687b ldr r3, [r7, #4] - 80029dc: 2200 movs r2, #0 - 80029de: 771a strb r2, [r3, #28] + 8002a16: 687b ldr r3, [r7, #4] + 8002a18: 2200 movs r2, #0 + 8002a1a: 771a strb r2, [r3, #28] } } /* TIM Update event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_UPDATE) != RESET) - 80029e0: 687b ldr r3, [r7, #4] - 80029e2: 681b ldr r3, [r3, #0] - 80029e4: 691b ldr r3, [r3, #16] - 80029e6: f003 0301 and.w r3, r3, #1 - 80029ea: 2b01 cmp r3, #1 - 80029ec: d10e bne.n 8002a0c + 8002a1c: 687b ldr r3, [r7, #4] + 8002a1e: 681b ldr r3, [r3, #0] + 8002a20: 691b ldr r3, [r3, #16] + 8002a22: f003 0301 and.w r3, r3, #1 + 8002a26: 2b01 cmp r3, #1 + 8002a28: d10e bne.n 8002a48 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_UPDATE) != RESET) - 80029ee: 687b ldr r3, [r7, #4] - 80029f0: 681b ldr r3, [r3, #0] - 80029f2: 68db ldr r3, [r3, #12] - 80029f4: f003 0301 and.w r3, r3, #1 - 80029f8: 2b01 cmp r3, #1 - 80029fa: d107 bne.n 8002a0c + 8002a2a: 687b ldr r3, [r7, #4] + 8002a2c: 681b ldr r3, [r3, #0] + 8002a2e: 68db ldr r3, [r3, #12] + 8002a30: f003 0301 and.w r3, r3, #1 + 8002a34: 2b01 cmp r3, #1 + 8002a36: d107 bne.n 8002a48 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_UPDATE); - 80029fc: 687b ldr r3, [r7, #4] - 80029fe: 681b ldr r3, [r3, #0] - 8002a00: f06f 0201 mvn.w r2, #1 - 8002a04: 611a str r2, [r3, #16] + 8002a38: 687b ldr r3, [r7, #4] + 8002a3a: 681b ldr r3, [r3, #0] + 8002a3c: f06f 0201 mvn.w r2, #1 + 8002a40: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->PeriodElapsedCallback(htim); #else HAL_TIM_PeriodElapsedCallback(htim); - 8002a06: 6878 ldr r0, [r7, #4] - 8002a08: f7fe f8c2 bl 8000b90 + 8002a42: 6878 ldr r0, [r7, #4] + 8002a44: f7fe f8c2 bl 8000bcc #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Break input event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_BREAK) != RESET) - 8002a0c: 687b ldr r3, [r7, #4] - 8002a0e: 681b ldr r3, [r3, #0] - 8002a10: 691b ldr r3, [r3, #16] - 8002a12: f003 0380 and.w r3, r3, #128 ; 0x80 - 8002a16: 2b80 cmp r3, #128 ; 0x80 - 8002a18: d10e bne.n 8002a38 + 8002a48: 687b ldr r3, [r7, #4] + 8002a4a: 681b ldr r3, [r3, #0] + 8002a4c: 691b ldr r3, [r3, #16] + 8002a4e: f003 0380 and.w r3, r3, #128 ; 0x80 + 8002a52: 2b80 cmp r3, #128 ; 0x80 + 8002a54: d10e bne.n 8002a74 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_BREAK) != RESET) - 8002a1a: 687b ldr r3, [r7, #4] - 8002a1c: 681b ldr r3, [r3, #0] - 8002a1e: 68db ldr r3, [r3, #12] - 8002a20: f003 0380 and.w r3, r3, #128 ; 0x80 - 8002a24: 2b80 cmp r3, #128 ; 0x80 - 8002a26: d107 bne.n 8002a38 + 8002a56: 687b ldr r3, [r7, #4] + 8002a58: 681b ldr r3, [r3, #0] + 8002a5a: 68db ldr r3, [r3, #12] + 8002a5c: f003 0380 and.w r3, r3, #128 ; 0x80 + 8002a60: 2b80 cmp r3, #128 ; 0x80 + 8002a62: d107 bne.n 8002a74 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_BREAK); - 8002a28: 687b ldr r3, [r7, #4] - 8002a2a: 681b ldr r3, [r3, #0] - 8002a2c: f06f 0280 mvn.w r2, #128 ; 0x80 - 8002a30: 611a str r2, [r3, #16] + 8002a64: 687b ldr r3, [r7, #4] + 8002a66: 681b ldr r3, [r3, #0] + 8002a68: f06f 0280 mvn.w r2, #128 ; 0x80 + 8002a6c: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->BreakCallback(htim); #else HAL_TIMEx_BreakCallback(htim); - 8002a32: 6878 ldr r0, [r7, #4] - 8002a34: f000 f8e2 bl 8002bfc + 8002a6e: 6878 ldr r0, [r7, #4] + 8002a70: f000 f8e2 bl 8002c38 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Trigger detection event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) - 8002a38: 687b ldr r3, [r7, #4] - 8002a3a: 681b ldr r3, [r3, #0] - 8002a3c: 691b ldr r3, [r3, #16] - 8002a3e: f003 0340 and.w r3, r3, #64 ; 0x40 - 8002a42: 2b40 cmp r3, #64 ; 0x40 - 8002a44: d10e bne.n 8002a64 + 8002a74: 687b ldr r3, [r7, #4] + 8002a76: 681b ldr r3, [r3, #0] + 8002a78: 691b ldr r3, [r3, #16] + 8002a7a: f003 0340 and.w r3, r3, #64 ; 0x40 + 8002a7e: 2b40 cmp r3, #64 ; 0x40 + 8002a80: d10e bne.n 8002aa0 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) != RESET) - 8002a46: 687b ldr r3, [r7, #4] - 8002a48: 681b ldr r3, [r3, #0] - 8002a4a: 68db ldr r3, [r3, #12] - 8002a4c: f003 0340 and.w r3, r3, #64 ; 0x40 - 8002a50: 2b40 cmp r3, #64 ; 0x40 - 8002a52: d107 bne.n 8002a64 + 8002a82: 687b ldr r3, [r7, #4] + 8002a84: 681b ldr r3, [r3, #0] + 8002a86: 68db ldr r3, [r3, #12] + 8002a88: f003 0340 and.w r3, r3, #64 ; 0x40 + 8002a8c: 2b40 cmp r3, #64 ; 0x40 + 8002a8e: d107 bne.n 8002aa0 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER); - 8002a54: 687b ldr r3, [r7, #4] - 8002a56: 681b ldr r3, [r3, #0] - 8002a58: f06f 0240 mvn.w r2, #64 ; 0x40 - 8002a5c: 611a str r2, [r3, #16] + 8002a90: 687b ldr r3, [r7, #4] + 8002a92: 681b ldr r3, [r3, #0] + 8002a94: f06f 0240 mvn.w r2, #64 ; 0x40 + 8002a98: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->TriggerCallback(htim); #else HAL_TIM_TriggerCallback(htim); - 8002a5e: 6878 ldr r0, [r7, #4] - 8002a60: f000 f838 bl 8002ad4 + 8002a9a: 6878 ldr r0, [r7, #4] + 8002a9c: f000 f838 bl 8002b10 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM commutation event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_COM) != RESET) - 8002a64: 687b ldr r3, [r7, #4] - 8002a66: 681b ldr r3, [r3, #0] - 8002a68: 691b ldr r3, [r3, #16] - 8002a6a: f003 0320 and.w r3, r3, #32 - 8002a6e: 2b20 cmp r3, #32 - 8002a70: d10e bne.n 8002a90 + 8002aa0: 687b ldr r3, [r7, #4] + 8002aa2: 681b ldr r3, [r3, #0] + 8002aa4: 691b ldr r3, [r3, #16] + 8002aa6: f003 0320 and.w r3, r3, #32 + 8002aaa: 2b20 cmp r3, #32 + 8002aac: d10e bne.n 8002acc { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_COM) != RESET) - 8002a72: 687b ldr r3, [r7, #4] - 8002a74: 681b ldr r3, [r3, #0] - 8002a76: 68db ldr r3, [r3, #12] - 8002a78: f003 0320 and.w r3, r3, #32 - 8002a7c: 2b20 cmp r3, #32 - 8002a7e: d107 bne.n 8002a90 + 8002aae: 687b ldr r3, [r7, #4] + 8002ab0: 681b ldr r3, [r3, #0] + 8002ab2: 68db ldr r3, [r3, #12] + 8002ab4: f003 0320 and.w r3, r3, #32 + 8002ab8: 2b20 cmp r3, #32 + 8002aba: d107 bne.n 8002acc { __HAL_TIM_CLEAR_IT(htim, TIM_FLAG_COM); - 8002a80: 687b ldr r3, [r7, #4] - 8002a82: 681b ldr r3, [r3, #0] - 8002a84: f06f 0220 mvn.w r2, #32 - 8002a88: 611a str r2, [r3, #16] + 8002abc: 687b ldr r3, [r7, #4] + 8002abe: 681b ldr r3, [r3, #0] + 8002ac0: f06f 0220 mvn.w r2, #32 + 8002ac4: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->CommutationCallback(htim); #else HAL_TIMEx_CommutCallback(htim); - 8002a8a: 6878 ldr r0, [r7, #4] - 8002a8c: f000 f8ac bl 8002be8 + 8002ac6: 6878 ldr r0, [r7, #4] + 8002ac8: f000 f8ac bl 8002c24 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } } - 8002a90: bf00 nop - 8002a92: 3708 adds r7, #8 - 8002a94: 46bd mov sp, r7 - 8002a96: bd80 pop {r7, pc} + 8002acc: bf00 nop + 8002ace: 3708 adds r7, #8 + 8002ad0: 46bd mov sp, r7 + 8002ad2: bd80 pop {r7, pc} -08002a98 : +08002ad4 : * @brief Output Compare callback in non-blocking mode * @param htim TIM OC handle * @retval None */ __weak void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim) -{ - 8002a98: b480 push {r7} - 8002a9a: b083 sub sp, #12 - 8002a9c: af00 add r7, sp, #0 - 8002a9e: 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 - */ -} - 8002aa0: bf00 nop - 8002aa2: 370c adds r7, #12 - 8002aa4: 46bd mov sp, r7 - 8002aa6: f85d 7b04 ldr.w r7, [sp], #4 - 8002aaa: 4770 bx lr - -08002aac : - * @brief Input Capture callback in non-blocking mode - * @param htim TIM IC handle - * @retval None - */ -__weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) -{ - 8002aac: b480 push {r7} - 8002aae: b083 sub sp, #12 - 8002ab0: af00 add r7, sp, #0 - 8002ab2: 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 - */ -} - 8002ab4: bf00 nop - 8002ab6: 370c adds r7, #12 - 8002ab8: 46bd mov sp, r7 - 8002aba: f85d 7b04 ldr.w r7, [sp], #4 - 8002abe: 4770 bx lr - -08002ac0 : - * @brief PWM Pulse finished callback in non-blocking mode - * @param htim TIM handle - * @retval None - */ -__weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) -{ - 8002ac0: b480 push {r7} - 8002ac2: b083 sub sp, #12 - 8002ac4: af00 add r7, sp, #0 - 8002ac6: 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 - */ -} - 8002ac8: bf00 nop - 8002aca: 370c adds r7, #12 - 8002acc: 46bd mov sp, r7 - 8002ace: f85d 7b04 ldr.w r7, [sp], #4 - 8002ad2: 4770 bx lr - -08002ad4 : - * @brief Hall Trigger detection callback in non-blocking mode - * @param htim TIM handle - * @retval None - */ -__weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) { 8002ad4: b480 push {r7} 8002ad6: b083 sub sp, #12 @@ -7131,7 +7097,7 @@ __weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) 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 + the HAL_TIM_OC_DelayElapsedCallback could be implemented in the user file */ } 8002adc: bf00 nop @@ -7140,9835 +7106,9903 @@ __weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) 8002ae2: f85d 7b04 ldr.w r7, [sp], #4 8002ae6: 4770 bx lr -08002ae8 : +08002ae8 : + * @brief Input Capture callback in non-blocking mode + * @param htim TIM IC handle + * @retval None + */ +__weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) +{ + 8002ae8: b480 push {r7} + 8002aea: b083 sub sp, #12 + 8002aec: af00 add r7, sp, #0 + 8002aee: 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 + */ +} + 8002af0: bf00 nop + 8002af2: 370c adds r7, #12 + 8002af4: 46bd mov sp, r7 + 8002af6: f85d 7b04 ldr.w r7, [sp], #4 + 8002afa: 4770 bx lr + +08002afc : + * @brief PWM Pulse finished callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) +{ + 8002afc: b480 push {r7} + 8002afe: b083 sub sp, #12 + 8002b00: af00 add r7, sp, #0 + 8002b02: 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 + */ +} + 8002b04: bf00 nop + 8002b06: 370c adds r7, #12 + 8002b08: 46bd mov sp, r7 + 8002b0a: f85d 7b04 ldr.w r7, [sp], #4 + 8002b0e: 4770 bx lr + +08002b10 : + * @brief Hall Trigger detection callback in non-blocking mode + * @param htim TIM handle + * @retval None + */ +__weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) +{ + 8002b10: b480 push {r7} + 8002b12: b083 sub sp, #12 + 8002b14: af00 add r7, sp, #0 + 8002b16: 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 + */ +} + 8002b18: bf00 nop + 8002b1a: 370c adds r7, #12 + 8002b1c: 46bd mov sp, r7 + 8002b1e: f85d 7b04 ldr.w r7, [sp], #4 + 8002b22: 4770 bx lr + +08002b24 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure) { - 8002ae8: b480 push {r7} - 8002aea: b085 sub sp, #20 - 8002aec: af00 add r7, sp, #0 - 8002aee: 6078 str r0, [r7, #4] - 8002af0: 6039 str r1, [r7, #0] + 8002b24: b480 push {r7} + 8002b26: b085 sub sp, #20 + 8002b28: af00 add r7, sp, #0 + 8002b2a: 6078 str r0, [r7, #4] + 8002b2c: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 8002af2: 687b ldr r3, [r7, #4] - 8002af4: 681b ldr r3, [r3, #0] - 8002af6: 60fb str r3, [r7, #12] + 8002b2e: 687b ldr r3, [r7, #4] + 8002b30: 681b ldr r3, [r3, #0] + 8002b32: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 8002af8: 687b ldr r3, [r7, #4] - 8002afa: 4a34 ldr r2, [pc, #208] ; (8002bcc ) - 8002afc: 4293 cmp r3, r2 - 8002afe: d00f beq.n 8002b20 - 8002b00: 687b ldr r3, [r7, #4] - 8002b02: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8002b06: d00b beq.n 8002b20 - 8002b08: 687b ldr r3, [r7, #4] - 8002b0a: 4a31 ldr r2, [pc, #196] ; (8002bd0 ) - 8002b0c: 4293 cmp r3, r2 - 8002b0e: d007 beq.n 8002b20 - 8002b10: 687b ldr r3, [r7, #4] - 8002b12: 4a30 ldr r2, [pc, #192] ; (8002bd4 ) - 8002b14: 4293 cmp r3, r2 - 8002b16: d003 beq.n 8002b20 - 8002b18: 687b ldr r3, [r7, #4] - 8002b1a: 4a2f ldr r2, [pc, #188] ; (8002bd8 ) - 8002b1c: 4293 cmp r3, r2 - 8002b1e: d108 bne.n 8002b32 + 8002b34: 687b ldr r3, [r7, #4] + 8002b36: 4a34 ldr r2, [pc, #208] ; (8002c08 ) + 8002b38: 4293 cmp r3, r2 + 8002b3a: d00f beq.n 8002b5c + 8002b3c: 687b ldr r3, [r7, #4] + 8002b3e: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8002b42: d00b beq.n 8002b5c + 8002b44: 687b ldr r3, [r7, #4] + 8002b46: 4a31 ldr r2, [pc, #196] ; (8002c0c ) + 8002b48: 4293 cmp r3, r2 + 8002b4a: d007 beq.n 8002b5c + 8002b4c: 687b ldr r3, [r7, #4] + 8002b4e: 4a30 ldr r2, [pc, #192] ; (8002c10 ) + 8002b50: 4293 cmp r3, r2 + 8002b52: d003 beq.n 8002b5c + 8002b54: 687b ldr r3, [r7, #4] + 8002b56: 4a2f ldr r2, [pc, #188] ; (8002c14 ) + 8002b58: 4293 cmp r3, r2 + 8002b5a: d108 bne.n 8002b6e { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 8002b20: 68fb ldr r3, [r7, #12] - 8002b22: f023 0370 bic.w r3, r3, #112 ; 0x70 - 8002b26: 60fb str r3, [r7, #12] + 8002b5c: 68fb ldr r3, [r7, #12] + 8002b5e: f023 0370 bic.w r3, r3, #112 ; 0x70 + 8002b62: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 8002b28: 683b ldr r3, [r7, #0] - 8002b2a: 685b ldr r3, [r3, #4] - 8002b2c: 68fa ldr r2, [r7, #12] - 8002b2e: 4313 orrs r3, r2 - 8002b30: 60fb str r3, [r7, #12] + 8002b64: 683b ldr r3, [r7, #0] + 8002b66: 685b ldr r3, [r3, #4] + 8002b68: 68fa ldr r2, [r7, #12] + 8002b6a: 4313 orrs r3, r2 + 8002b6c: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 8002b32: 687b ldr r3, [r7, #4] - 8002b34: 4a25 ldr r2, [pc, #148] ; (8002bcc ) - 8002b36: 4293 cmp r3, r2 - 8002b38: d01b beq.n 8002b72 - 8002b3a: 687b ldr r3, [r7, #4] - 8002b3c: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8002b40: d017 beq.n 8002b72 - 8002b42: 687b ldr r3, [r7, #4] - 8002b44: 4a22 ldr r2, [pc, #136] ; (8002bd0 ) - 8002b46: 4293 cmp r3, r2 - 8002b48: d013 beq.n 8002b72 - 8002b4a: 687b ldr r3, [r7, #4] - 8002b4c: 4a21 ldr r2, [pc, #132] ; (8002bd4 ) - 8002b4e: 4293 cmp r3, r2 - 8002b50: d00f beq.n 8002b72 - 8002b52: 687b ldr r3, [r7, #4] - 8002b54: 4a20 ldr r2, [pc, #128] ; (8002bd8 ) - 8002b56: 4293 cmp r3, r2 - 8002b58: d00b beq.n 8002b72 - 8002b5a: 687b ldr r3, [r7, #4] - 8002b5c: 4a1f ldr r2, [pc, #124] ; (8002bdc ) - 8002b5e: 4293 cmp r3, r2 - 8002b60: d007 beq.n 8002b72 - 8002b62: 687b ldr r3, [r7, #4] - 8002b64: 4a1e ldr r2, [pc, #120] ; (8002be0 ) - 8002b66: 4293 cmp r3, r2 - 8002b68: d003 beq.n 8002b72 - 8002b6a: 687b ldr r3, [r7, #4] - 8002b6c: 4a1d ldr r2, [pc, #116] ; (8002be4 ) - 8002b6e: 4293 cmp r3, r2 - 8002b70: d108 bne.n 8002b84 + 8002b6e: 687b ldr r3, [r7, #4] + 8002b70: 4a25 ldr r2, [pc, #148] ; (8002c08 ) + 8002b72: 4293 cmp r3, r2 + 8002b74: d01b beq.n 8002bae + 8002b76: 687b ldr r3, [r7, #4] + 8002b78: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8002b7c: d017 beq.n 8002bae + 8002b7e: 687b ldr r3, [r7, #4] + 8002b80: 4a22 ldr r2, [pc, #136] ; (8002c0c ) + 8002b82: 4293 cmp r3, r2 + 8002b84: d013 beq.n 8002bae + 8002b86: 687b ldr r3, [r7, #4] + 8002b88: 4a21 ldr r2, [pc, #132] ; (8002c10 ) + 8002b8a: 4293 cmp r3, r2 + 8002b8c: d00f beq.n 8002bae + 8002b8e: 687b ldr r3, [r7, #4] + 8002b90: 4a20 ldr r2, [pc, #128] ; (8002c14 ) + 8002b92: 4293 cmp r3, r2 + 8002b94: d00b beq.n 8002bae + 8002b96: 687b ldr r3, [r7, #4] + 8002b98: 4a1f ldr r2, [pc, #124] ; (8002c18 ) + 8002b9a: 4293 cmp r3, r2 + 8002b9c: d007 beq.n 8002bae + 8002b9e: 687b ldr r3, [r7, #4] + 8002ba0: 4a1e ldr r2, [pc, #120] ; (8002c1c ) + 8002ba2: 4293 cmp r3, r2 + 8002ba4: d003 beq.n 8002bae + 8002ba6: 687b ldr r3, [r7, #4] + 8002ba8: 4a1d ldr r2, [pc, #116] ; (8002c20 ) + 8002baa: 4293 cmp r3, r2 + 8002bac: d108 bne.n 8002bc0 { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 8002b72: 68fb ldr r3, [r7, #12] - 8002b74: f423 7340 bic.w r3, r3, #768 ; 0x300 - 8002b78: 60fb str r3, [r7, #12] + 8002bae: 68fb ldr r3, [r7, #12] + 8002bb0: f423 7340 bic.w r3, r3, #768 ; 0x300 + 8002bb4: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 8002b7a: 683b ldr r3, [r7, #0] - 8002b7c: 68db ldr r3, [r3, #12] - 8002b7e: 68fa ldr r2, [r7, #12] - 8002b80: 4313 orrs r3, r2 - 8002b82: 60fb str r3, [r7, #12] + 8002bb6: 683b ldr r3, [r7, #0] + 8002bb8: 68db ldr r3, [r3, #12] + 8002bba: 68fa ldr r2, [r7, #12] + 8002bbc: 4313 orrs r3, r2 + 8002bbe: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 8002b84: 68fb ldr r3, [r7, #12] - 8002b86: f023 0280 bic.w r2, r3, #128 ; 0x80 - 8002b8a: 683b ldr r3, [r7, #0] - 8002b8c: 695b ldr r3, [r3, #20] - 8002b8e: 4313 orrs r3, r2 - 8002b90: 60fb str r3, [r7, #12] + 8002bc0: 68fb ldr r3, [r7, #12] + 8002bc2: f023 0280 bic.w r2, r3, #128 ; 0x80 + 8002bc6: 683b ldr r3, [r7, #0] + 8002bc8: 695b ldr r3, [r3, #20] + 8002bca: 4313 orrs r3, r2 + 8002bcc: 60fb str r3, [r7, #12] TIMx->CR1 = tmpcr1; - 8002b92: 687b ldr r3, [r7, #4] - 8002b94: 68fa ldr r2, [r7, #12] - 8002b96: 601a str r2, [r3, #0] + 8002bce: 687b ldr r3, [r7, #4] + 8002bd0: 68fa ldr r2, [r7, #12] + 8002bd2: 601a str r2, [r3, #0] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 8002b98: 683b ldr r3, [r7, #0] - 8002b9a: 689a ldr r2, [r3, #8] - 8002b9c: 687b ldr r3, [r7, #4] - 8002b9e: 62da str r2, [r3, #44] ; 0x2c + 8002bd4: 683b ldr r3, [r7, #0] + 8002bd6: 689a ldr r2, [r3, #8] + 8002bd8: 687b ldr r3, [r7, #4] + 8002bda: 62da str r2, [r3, #44] ; 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 8002ba0: 683b ldr r3, [r7, #0] - 8002ba2: 681a ldr r2, [r3, #0] - 8002ba4: 687b ldr r3, [r7, #4] - 8002ba6: 629a str r2, [r3, #40] ; 0x28 + 8002bdc: 683b ldr r3, [r7, #0] + 8002bde: 681a ldr r2, [r3, #0] + 8002be0: 687b ldr r3, [r7, #4] + 8002be2: 629a str r2, [r3, #40] ; 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 8002ba8: 687b ldr r3, [r7, #4] - 8002baa: 4a08 ldr r2, [pc, #32] ; (8002bcc ) - 8002bac: 4293 cmp r3, r2 - 8002bae: d103 bne.n 8002bb8 + 8002be4: 687b ldr r3, [r7, #4] + 8002be6: 4a08 ldr r2, [pc, #32] ; (8002c08 ) + 8002be8: 4293 cmp r3, r2 + 8002bea: d103 bne.n 8002bf4 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 8002bb0: 683b ldr r3, [r7, #0] - 8002bb2: 691a ldr r2, [r3, #16] - 8002bb4: 687b ldr r3, [r7, #4] - 8002bb6: 631a str r2, [r3, #48] ; 0x30 + 8002bec: 683b ldr r3, [r7, #0] + 8002bee: 691a ldr r2, [r3, #16] + 8002bf0: 687b ldr r3, [r7, #4] + 8002bf2: 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; - 8002bb8: 687b ldr r3, [r7, #4] - 8002bba: 2201 movs r2, #1 - 8002bbc: 615a str r2, [r3, #20] + 8002bf4: 687b ldr r3, [r7, #4] + 8002bf6: 2201 movs r2, #1 + 8002bf8: 615a str r2, [r3, #20] } - 8002bbe: bf00 nop - 8002bc0: 3714 adds r7, #20 - 8002bc2: 46bd mov sp, r7 - 8002bc4: f85d 7b04 ldr.w r7, [sp], #4 - 8002bc8: 4770 bx lr - 8002bca: bf00 nop - 8002bcc: 40010000 .word 0x40010000 - 8002bd0: 40000400 .word 0x40000400 - 8002bd4: 40000800 .word 0x40000800 - 8002bd8: 40000c00 .word 0x40000c00 - 8002bdc: 40014000 .word 0x40014000 - 8002be0: 40014400 .word 0x40014400 - 8002be4: 40014800 .word 0x40014800 + 8002bfa: bf00 nop + 8002bfc: 3714 adds r7, #20 + 8002bfe: 46bd mov sp, r7 + 8002c00: f85d 7b04 ldr.w r7, [sp], #4 + 8002c04: 4770 bx lr + 8002c06: bf00 nop + 8002c08: 40010000 .word 0x40010000 + 8002c0c: 40000400 .word 0x40000400 + 8002c10: 40000800 .word 0x40000800 + 8002c14: 40000c00 .word 0x40000c00 + 8002c18: 40014000 .word 0x40014000 + 8002c1c: 40014400 .word 0x40014400 + 8002c20: 40014800 .word 0x40014800 -08002be8 : +08002c24 : * @brief Hall commutation changed callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim) { - 8002be8: b480 push {r7} - 8002bea: b083 sub sp, #12 - 8002bec: af00 add r7, sp, #0 - 8002bee: 6078 str r0, [r7, #4] + 8002c24: b480 push {r7} + 8002c26: b083 sub sp, #12 + 8002c28: af00 add r7, sp, #0 + 8002c2a: 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 */ } - 8002bf0: bf00 nop - 8002bf2: 370c adds r7, #12 - 8002bf4: 46bd mov sp, r7 - 8002bf6: f85d 7b04 ldr.w r7, [sp], #4 - 8002bfa: 4770 bx lr + 8002c2c: bf00 nop + 8002c2e: 370c adds r7, #12 + 8002c30: 46bd mov sp, r7 + 8002c32: f85d 7b04 ldr.w r7, [sp], #4 + 8002c36: 4770 bx lr -08002bfc : +08002c38 : * @brief Hall Break detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim) { - 8002bfc: b480 push {r7} - 8002bfe: b083 sub sp, #12 - 8002c00: af00 add r7, sp, #0 - 8002c02: 6078 str r0, [r7, #4] + 8002c38: b480 push {r7} + 8002c3a: b083 sub sp, #12 + 8002c3c: af00 add r7, sp, #0 + 8002c3e: 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 */ } - 8002c04: bf00 nop - 8002c06: 370c adds r7, #12 - 8002c08: 46bd mov sp, r7 - 8002c0a: f85d 7b04 ldr.w r7, [sp], #4 - 8002c0e: 4770 bx lr + 8002c40: bf00 nop + 8002c42: 370c adds r7, #12 + 8002c44: 46bd mov sp, r7 + 8002c46: f85d 7b04 ldr.w r7, [sp], #4 + 8002c4a: 4770 bx lr -08002c10 : +08002c4c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart) { - 8002c10: b580 push {r7, lr} - 8002c12: b082 sub sp, #8 - 8002c14: af00 add r7, sp, #0 - 8002c16: 6078 str r0, [r7, #4] + 8002c4c: b580 push {r7, lr} + 8002c4e: b082 sub sp, #8 + 8002c50: af00 add r7, sp, #0 + 8002c52: 6078 str r0, [r7, #4] /* Check the UART handle allocation */ if (huart == NULL) - 8002c18: 687b ldr r3, [r7, #4] - 8002c1a: 2b00 cmp r3, #0 - 8002c1c: d101 bne.n 8002c22 + 8002c54: 687b ldr r3, [r7, #4] + 8002c56: 2b00 cmp r3, #0 + 8002c58: d101 bne.n 8002c5e { return HAL_ERROR; - 8002c1e: 2301 movs r3, #1 - 8002c20: e03f b.n 8002ca2 + 8002c5a: 2301 movs r3, #1 + 8002c5c: e03f b.n 8002cde assert_param(IS_UART_INSTANCE(huart->Instance)); } assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); if (huart->gState == HAL_UART_STATE_RESET) - 8002c22: 687b ldr r3, [r7, #4] - 8002c24: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002c28: b2db uxtb r3, r3 - 8002c2a: 2b00 cmp r3, #0 - 8002c2c: d106 bne.n 8002c3c + 8002c5e: 687b ldr r3, [r7, #4] + 8002c60: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002c64: b2db uxtb r3, r3 + 8002c66: 2b00 cmp r3, #0 + 8002c68: d106 bne.n 8002c78 { /* Allocate lock resource and initialize it */ huart->Lock = HAL_UNLOCKED; - 8002c2e: 687b ldr r3, [r7, #4] - 8002c30: 2200 movs r2, #0 - 8002c32: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002c6a: 687b ldr r3, [r7, #4] + 8002c6c: 2200 movs r2, #0 + 8002c6e: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Init the low level hardware */ huart->MspInitCallback(huart); #else /* Init the low level hardware : GPIO, CLOCK */ HAL_UART_MspInit(huart); - 8002c36: 6878 ldr r0, [r7, #4] - 8002c38: f7fe f83a bl 8000cb0 + 8002c72: 6878 ldr r0, [r7, #4] + 8002c74: f7fe f83a bl 8000cec #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } huart->gState = HAL_UART_STATE_BUSY; - 8002c3c: 687b ldr r3, [r7, #4] - 8002c3e: 2224 movs r2, #36 ; 0x24 - 8002c40: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002c78: 687b ldr r3, [r7, #4] + 8002c7a: 2224 movs r2, #36 ; 0x24 + 8002c7c: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Disable the peripheral */ __HAL_UART_DISABLE(huart); - 8002c44: 687b ldr r3, [r7, #4] - 8002c46: 681b ldr r3, [r3, #0] - 8002c48: 68da ldr r2, [r3, #12] - 8002c4a: 687b ldr r3, [r7, #4] - 8002c4c: 681b ldr r3, [r3, #0] - 8002c4e: f422 5200 bic.w r2, r2, #8192 ; 0x2000 - 8002c52: 60da str r2, [r3, #12] + 8002c80: 687b ldr r3, [r7, #4] + 8002c82: 681b ldr r3, [r3, #0] + 8002c84: 68da ldr r2, [r3, #12] + 8002c86: 687b ldr r3, [r7, #4] + 8002c88: 681b ldr r3, [r3, #0] + 8002c8a: f422 5200 bic.w r2, r2, #8192 ; 0x2000 + 8002c8e: 60da str r2, [r3, #12] /* Set the UART Communication parameters */ UART_SetConfig(huart); - 8002c54: 6878 ldr r0, [r7, #4] - 8002c56: f000 f9cb bl 8002ff0 + 8002c90: 6878 ldr r0, [r7, #4] + 8002c92: f000 f9cb bl 800302c /* In asynchronous mode, the following bits must be kept cleared: - LINEN and CLKEN bits in the USART_CR2 register, - SCEN, HDSEL and IREN bits in the USART_CR3 register.*/ CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); - 8002c5a: 687b ldr r3, [r7, #4] - 8002c5c: 681b ldr r3, [r3, #0] - 8002c5e: 691a ldr r2, [r3, #16] - 8002c60: 687b ldr r3, [r7, #4] - 8002c62: 681b ldr r3, [r3, #0] - 8002c64: f422 4290 bic.w r2, r2, #18432 ; 0x4800 - 8002c68: 611a str r2, [r3, #16] + 8002c96: 687b ldr r3, [r7, #4] + 8002c98: 681b ldr r3, [r3, #0] + 8002c9a: 691a ldr r2, [r3, #16] + 8002c9c: 687b ldr r3, [r7, #4] + 8002c9e: 681b ldr r3, [r3, #0] + 8002ca0: f422 4290 bic.w r2, r2, #18432 ; 0x4800 + 8002ca4: 611a str r2, [r3, #16] CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); - 8002c6a: 687b ldr r3, [r7, #4] - 8002c6c: 681b ldr r3, [r3, #0] - 8002c6e: 695a ldr r2, [r3, #20] - 8002c70: 687b ldr r3, [r7, #4] - 8002c72: 681b ldr r3, [r3, #0] - 8002c74: f022 022a bic.w r2, r2, #42 ; 0x2a - 8002c78: 615a str r2, [r3, #20] + 8002ca6: 687b ldr r3, [r7, #4] + 8002ca8: 681b ldr r3, [r3, #0] + 8002caa: 695a ldr r2, [r3, #20] + 8002cac: 687b ldr r3, [r7, #4] + 8002cae: 681b ldr r3, [r3, #0] + 8002cb0: f022 022a bic.w r2, r2, #42 ; 0x2a + 8002cb4: 615a str r2, [r3, #20] /* Enable the peripheral */ __HAL_UART_ENABLE(huart); - 8002c7a: 687b ldr r3, [r7, #4] - 8002c7c: 681b ldr r3, [r3, #0] - 8002c7e: 68da ldr r2, [r3, #12] - 8002c80: 687b ldr r3, [r7, #4] - 8002c82: 681b ldr r3, [r3, #0] - 8002c84: f442 5200 orr.w r2, r2, #8192 ; 0x2000 - 8002c88: 60da str r2, [r3, #12] + 8002cb6: 687b ldr r3, [r7, #4] + 8002cb8: 681b ldr r3, [r3, #0] + 8002cba: 68da ldr r2, [r3, #12] + 8002cbc: 687b ldr r3, [r7, #4] + 8002cbe: 681b ldr r3, [r3, #0] + 8002cc0: f442 5200 orr.w r2, r2, #8192 ; 0x2000 + 8002cc4: 60da str r2, [r3, #12] /* Initialize the UART state */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8002c8a: 687b ldr r3, [r7, #4] - 8002c8c: 2200 movs r2, #0 - 8002c8e: 641a str r2, [r3, #64] ; 0x40 + 8002cc6: 687b ldr r3, [r7, #4] + 8002cc8: 2200 movs r2, #0 + 8002cca: 641a str r2, [r3, #64] ; 0x40 huart->gState = HAL_UART_STATE_READY; - 8002c90: 687b ldr r3, [r7, #4] - 8002c92: 2220 movs r2, #32 - 8002c94: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002ccc: 687b ldr r3, [r7, #4] + 8002cce: 2220 movs r2, #32 + 8002cd0: f883 203d strb.w r2, [r3, #61] ; 0x3d huart->RxState = HAL_UART_STATE_READY; - 8002c98: 687b ldr r3, [r7, #4] - 8002c9a: 2220 movs r2, #32 - 8002c9c: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002cd4: 687b ldr r3, [r7, #4] + 8002cd6: 2220 movs r2, #32 + 8002cd8: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 8002ca0: 2300 movs r3, #0 + 8002cdc: 2300 movs r3, #0 } - 8002ca2: 4618 mov r0, r3 - 8002ca4: 3708 adds r7, #8 - 8002ca6: 46bd mov sp, r7 - 8002ca8: bd80 pop {r7, pc} + 8002cde: 4618 mov r0, r3 + 8002ce0: 3708 adds r7, #8 + 8002ce2: 46bd mov sp, r7 + 8002ce4: bd80 pop {r7, pc} -08002caa : +08002ce6 : * @param Size Amount of data elements (u8 or u16) to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 8002caa: b580 push {r7, lr} - 8002cac: b08a sub sp, #40 ; 0x28 - 8002cae: af02 add r7, sp, #8 - 8002cb0: 60f8 str r0, [r7, #12] - 8002cb2: 60b9 str r1, [r7, #8] - 8002cb4: 603b str r3, [r7, #0] - 8002cb6: 4613 mov r3, r2 - 8002cb8: 80fb strh r3, [r7, #6] + 8002ce6: b580 push {r7, lr} + 8002ce8: b08a sub sp, #40 ; 0x28 + 8002cea: af02 add r7, sp, #8 + 8002cec: 60f8 str r0, [r7, #12] + 8002cee: 60b9 str r1, [r7, #8] + 8002cf0: 603b str r3, [r7, #0] + 8002cf2: 4613 mov r3, r2 + 8002cf4: 80fb strh r3, [r7, #6] const uint8_t *pdata8bits; const uint16_t *pdata16bits; uint32_t tickstart = 0U; - 8002cba: 2300 movs r3, #0 - 8002cbc: 617b str r3, [r7, #20] + 8002cf6: 2300 movs r3, #0 + 8002cf8: 617b str r3, [r7, #20] /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 8002cbe: 68fb ldr r3, [r7, #12] - 8002cc0: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002cc4: b2db uxtb r3, r3 - 8002cc6: 2b20 cmp r3, #32 - 8002cc8: d17c bne.n 8002dc4 + 8002cfa: 68fb ldr r3, [r7, #12] + 8002cfc: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002d00: b2db uxtb r3, r3 + 8002d02: 2b20 cmp r3, #32 + 8002d04: d17c bne.n 8002e00 { if ((pData == NULL) || (Size == 0U)) - 8002cca: 68bb ldr r3, [r7, #8] - 8002ccc: 2b00 cmp r3, #0 - 8002cce: d002 beq.n 8002cd6 - 8002cd0: 88fb ldrh r3, [r7, #6] - 8002cd2: 2b00 cmp r3, #0 - 8002cd4: d101 bne.n 8002cda + 8002d06: 68bb ldr r3, [r7, #8] + 8002d08: 2b00 cmp r3, #0 + 8002d0a: d002 beq.n 8002d12 + 8002d0c: 88fb ldrh r3, [r7, #6] + 8002d0e: 2b00 cmp r3, #0 + 8002d10: d101 bne.n 8002d16 { return HAL_ERROR; - 8002cd6: 2301 movs r3, #1 - 8002cd8: e075 b.n 8002dc6 + 8002d12: 2301 movs r3, #1 + 8002d14: e075 b.n 8002e02 } /* Process Locked */ __HAL_LOCK(huart); - 8002cda: 68fb ldr r3, [r7, #12] - 8002cdc: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002ce0: 2b01 cmp r3, #1 - 8002ce2: d101 bne.n 8002ce8 - 8002ce4: 2302 movs r3, #2 - 8002ce6: e06e b.n 8002dc6 - 8002ce8: 68fb ldr r3, [r7, #12] - 8002cea: 2201 movs r2, #1 - 8002cec: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002d16: 68fb ldr r3, [r7, #12] + 8002d18: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8002d1c: 2b01 cmp r3, #1 + 8002d1e: d101 bne.n 8002d24 + 8002d20: 2302 movs r3, #2 + 8002d22: e06e b.n 8002e02 + 8002d24: 68fb ldr r3, [r7, #12] + 8002d26: 2201 movs r2, #1 + 8002d28: f883 203c strb.w r2, [r3, #60] ; 0x3c huart->ErrorCode = HAL_UART_ERROR_NONE; - 8002cf0: 68fb ldr r3, [r7, #12] - 8002cf2: 2200 movs r2, #0 - 8002cf4: 641a str r2, [r3, #64] ; 0x40 + 8002d2c: 68fb ldr r3, [r7, #12] + 8002d2e: 2200 movs r2, #0 + 8002d30: 641a str r2, [r3, #64] ; 0x40 huart->gState = HAL_UART_STATE_BUSY_TX; - 8002cf6: 68fb ldr r3, [r7, #12] - 8002cf8: 2221 movs r2, #33 ; 0x21 - 8002cfa: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002d32: 68fb ldr r3, [r7, #12] + 8002d34: 2221 movs r2, #33 ; 0x21 + 8002d36: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Init tickstart for timeout management */ tickstart = HAL_GetTick(); - 8002cfe: f7fe f92d bl 8000f5c - 8002d02: 6178 str r0, [r7, #20] + 8002d3a: f7fe f92d bl 8000f98 + 8002d3e: 6178 str r0, [r7, #20] huart->TxXferSize = Size; - 8002d04: 68fb ldr r3, [r7, #12] - 8002d06: 88fa ldrh r2, [r7, #6] - 8002d08: 849a strh r2, [r3, #36] ; 0x24 + 8002d40: 68fb ldr r3, [r7, #12] + 8002d42: 88fa ldrh r2, [r7, #6] + 8002d44: 849a strh r2, [r3, #36] ; 0x24 huart->TxXferCount = Size; - 8002d0a: 68fb ldr r3, [r7, #12] - 8002d0c: 88fa ldrh r2, [r7, #6] - 8002d0e: 84da strh r2, [r3, #38] ; 0x26 + 8002d46: 68fb ldr r3, [r7, #12] + 8002d48: 88fa ldrh r2, [r7, #6] + 8002d4a: 84da strh r2, [r3, #38] ; 0x26 /* In case of 9bits/No Parity transfer, pData needs to be handled as a uint16_t pointer */ if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8002d10: 68fb ldr r3, [r7, #12] - 8002d12: 689b ldr r3, [r3, #8] - 8002d14: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 8002d18: d108 bne.n 8002d2c - 8002d1a: 68fb ldr r3, [r7, #12] - 8002d1c: 691b ldr r3, [r3, #16] - 8002d1e: 2b00 cmp r3, #0 - 8002d20: d104 bne.n 8002d2c + 8002d4c: 68fb ldr r3, [r7, #12] + 8002d4e: 689b ldr r3, [r3, #8] + 8002d50: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 8002d54: d108 bne.n 8002d68 + 8002d56: 68fb ldr r3, [r7, #12] + 8002d58: 691b ldr r3, [r3, #16] + 8002d5a: 2b00 cmp r3, #0 + 8002d5c: d104 bne.n 8002d68 { pdata8bits = NULL; - 8002d22: 2300 movs r3, #0 - 8002d24: 61fb str r3, [r7, #28] + 8002d5e: 2300 movs r3, #0 + 8002d60: 61fb str r3, [r7, #28] pdata16bits = (const uint16_t *) pData; - 8002d26: 68bb ldr r3, [r7, #8] - 8002d28: 61bb str r3, [r7, #24] - 8002d2a: e003 b.n 8002d34 + 8002d62: 68bb ldr r3, [r7, #8] + 8002d64: 61bb str r3, [r7, #24] + 8002d66: e003 b.n 8002d70 } else { pdata8bits = pData; - 8002d2c: 68bb ldr r3, [r7, #8] - 8002d2e: 61fb str r3, [r7, #28] + 8002d68: 68bb ldr r3, [r7, #8] + 8002d6a: 61fb str r3, [r7, #28] pdata16bits = NULL; - 8002d30: 2300 movs r3, #0 - 8002d32: 61bb str r3, [r7, #24] + 8002d6c: 2300 movs r3, #0 + 8002d6e: 61bb str r3, [r7, #24] } /* Process Unlocked */ __HAL_UNLOCK(huart); - 8002d34: 68fb ldr r3, [r7, #12] - 8002d36: 2200 movs r2, #0 - 8002d38: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002d70: 68fb ldr r3, [r7, #12] + 8002d72: 2200 movs r2, #0 + 8002d74: f883 203c strb.w r2, [r3, #60] ; 0x3c while (huart->TxXferCount > 0U) - 8002d3c: e02a b.n 8002d94 + 8002d78: e02a b.n 8002dd0 { if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) - 8002d3e: 683b ldr r3, [r7, #0] - 8002d40: 9300 str r3, [sp, #0] - 8002d42: 697b ldr r3, [r7, #20] - 8002d44: 2200 movs r2, #0 - 8002d46: 2180 movs r1, #128 ; 0x80 - 8002d48: 68f8 ldr r0, [r7, #12] - 8002d4a: f000 f8e2 bl 8002f12 - 8002d4e: 4603 mov r3, r0 - 8002d50: 2b00 cmp r3, #0 - 8002d52: d001 beq.n 8002d58 + 8002d7a: 683b ldr r3, [r7, #0] + 8002d7c: 9300 str r3, [sp, #0] + 8002d7e: 697b ldr r3, [r7, #20] + 8002d80: 2200 movs r2, #0 + 8002d82: 2180 movs r1, #128 ; 0x80 + 8002d84: 68f8 ldr r0, [r7, #12] + 8002d86: f000 f8e2 bl 8002f4e + 8002d8a: 4603 mov r3, r0 + 8002d8c: 2b00 cmp r3, #0 + 8002d8e: d001 beq.n 8002d94 { return HAL_TIMEOUT; - 8002d54: 2303 movs r3, #3 - 8002d56: e036 b.n 8002dc6 + 8002d90: 2303 movs r3, #3 + 8002d92: e036 b.n 8002e02 } if (pdata8bits == NULL) - 8002d58: 69fb ldr r3, [r7, #28] - 8002d5a: 2b00 cmp r3, #0 - 8002d5c: d10b bne.n 8002d76 + 8002d94: 69fb ldr r3, [r7, #28] + 8002d96: 2b00 cmp r3, #0 + 8002d98: d10b bne.n 8002db2 { huart->Instance->DR = (uint16_t)(*pdata16bits & 0x01FFU); - 8002d5e: 69bb ldr r3, [r7, #24] - 8002d60: 881b ldrh r3, [r3, #0] - 8002d62: 461a mov r2, r3 - 8002d64: 68fb ldr r3, [r7, #12] - 8002d66: 681b ldr r3, [r3, #0] - 8002d68: f3c2 0208 ubfx r2, r2, #0, #9 - 8002d6c: 605a str r2, [r3, #4] + 8002d9a: 69bb ldr r3, [r7, #24] + 8002d9c: 881b ldrh r3, [r3, #0] + 8002d9e: 461a mov r2, r3 + 8002da0: 68fb ldr r3, [r7, #12] + 8002da2: 681b ldr r3, [r3, #0] + 8002da4: f3c2 0208 ubfx r2, r2, #0, #9 + 8002da8: 605a str r2, [r3, #4] pdata16bits++; - 8002d6e: 69bb ldr r3, [r7, #24] - 8002d70: 3302 adds r3, #2 - 8002d72: 61bb str r3, [r7, #24] - 8002d74: e007 b.n 8002d86 + 8002daa: 69bb ldr r3, [r7, #24] + 8002dac: 3302 adds r3, #2 + 8002dae: 61bb str r3, [r7, #24] + 8002db0: e007 b.n 8002dc2 } else { huart->Instance->DR = (uint8_t)(*pdata8bits & 0xFFU); - 8002d76: 69fb ldr r3, [r7, #28] - 8002d78: 781a ldrb r2, [r3, #0] - 8002d7a: 68fb ldr r3, [r7, #12] - 8002d7c: 681b ldr r3, [r3, #0] - 8002d7e: 605a str r2, [r3, #4] + 8002db2: 69fb ldr r3, [r7, #28] + 8002db4: 781a ldrb r2, [r3, #0] + 8002db6: 68fb ldr r3, [r7, #12] + 8002db8: 681b ldr r3, [r3, #0] + 8002dba: 605a str r2, [r3, #4] pdata8bits++; - 8002d80: 69fb ldr r3, [r7, #28] - 8002d82: 3301 adds r3, #1 - 8002d84: 61fb str r3, [r7, #28] + 8002dbc: 69fb ldr r3, [r7, #28] + 8002dbe: 3301 adds r3, #1 + 8002dc0: 61fb str r3, [r7, #28] } huart->TxXferCount--; - 8002d86: 68fb ldr r3, [r7, #12] - 8002d88: 8cdb ldrh r3, [r3, #38] ; 0x26 - 8002d8a: b29b uxth r3, r3 - 8002d8c: 3b01 subs r3, #1 - 8002d8e: b29a uxth r2, r3 - 8002d90: 68fb ldr r3, [r7, #12] - 8002d92: 84da strh r2, [r3, #38] ; 0x26 + 8002dc2: 68fb ldr r3, [r7, #12] + 8002dc4: 8cdb ldrh r3, [r3, #38] ; 0x26 + 8002dc6: b29b uxth r3, r3 + 8002dc8: 3b01 subs r3, #1 + 8002dca: b29a uxth r2, r3 + 8002dcc: 68fb ldr r3, [r7, #12] + 8002dce: 84da strh r2, [r3, #38] ; 0x26 while (huart->TxXferCount > 0U) - 8002d94: 68fb ldr r3, [r7, #12] - 8002d96: 8cdb ldrh r3, [r3, #38] ; 0x26 - 8002d98: b29b uxth r3, r3 - 8002d9a: 2b00 cmp r3, #0 - 8002d9c: d1cf bne.n 8002d3e + 8002dd0: 68fb ldr r3, [r7, #12] + 8002dd2: 8cdb ldrh r3, [r3, #38] ; 0x26 + 8002dd4: b29b uxth r3, r3 + 8002dd6: 2b00 cmp r3, #0 + 8002dd8: d1cf bne.n 8002d7a } if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) - 8002d9e: 683b ldr r3, [r7, #0] - 8002da0: 9300 str r3, [sp, #0] - 8002da2: 697b ldr r3, [r7, #20] - 8002da4: 2200 movs r2, #0 - 8002da6: 2140 movs r1, #64 ; 0x40 - 8002da8: 68f8 ldr r0, [r7, #12] - 8002daa: f000 f8b2 bl 8002f12 - 8002dae: 4603 mov r3, r0 - 8002db0: 2b00 cmp r3, #0 - 8002db2: d001 beq.n 8002db8 + 8002dda: 683b ldr r3, [r7, #0] + 8002ddc: 9300 str r3, [sp, #0] + 8002dde: 697b ldr r3, [r7, #20] + 8002de0: 2200 movs r2, #0 + 8002de2: 2140 movs r1, #64 ; 0x40 + 8002de4: 68f8 ldr r0, [r7, #12] + 8002de6: f000 f8b2 bl 8002f4e + 8002dea: 4603 mov r3, r0 + 8002dec: 2b00 cmp r3, #0 + 8002dee: d001 beq.n 8002df4 { return HAL_TIMEOUT; - 8002db4: 2303 movs r3, #3 - 8002db6: e006 b.n 8002dc6 + 8002df0: 2303 movs r3, #3 + 8002df2: e006 b.n 8002e02 } /* At end of Tx process, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8002db8: 68fb ldr r3, [r7, #12] - 8002dba: 2220 movs r2, #32 - 8002dbc: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002df4: 68fb ldr r3, [r7, #12] + 8002df6: 2220 movs r2, #32 + 8002df8: f883 203d strb.w r2, [r3, #61] ; 0x3d return HAL_OK; - 8002dc0: 2300 movs r3, #0 - 8002dc2: e000 b.n 8002dc6 + 8002dfc: 2300 movs r3, #0 + 8002dfe: e000 b.n 8002e02 } else { return HAL_BUSY; - 8002dc4: 2302 movs r3, #2 + 8002e00: 2302 movs r3, #2 } } - 8002dc6: 4618 mov r0, r3 - 8002dc8: 3720 adds r7, #32 - 8002dca: 46bd mov sp, r7 - 8002dcc: bd80 pop {r7, pc} + 8002e02: 4618 mov r0, r3 + 8002e04: 3720 adds r7, #32 + 8002e06: 46bd mov sp, r7 + 8002e08: bd80 pop {r7, pc} -08002dce : +08002e0a : * @param Size Amount of data elements (u8 or u16) to be received. * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Receive(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 8002dce: b580 push {r7, lr} - 8002dd0: b08a sub sp, #40 ; 0x28 - 8002dd2: af02 add r7, sp, #8 - 8002dd4: 60f8 str r0, [r7, #12] - 8002dd6: 60b9 str r1, [r7, #8] - 8002dd8: 603b str r3, [r7, #0] - 8002dda: 4613 mov r3, r2 - 8002ddc: 80fb strh r3, [r7, #6] + 8002e0a: b580 push {r7, lr} + 8002e0c: b08a sub sp, #40 ; 0x28 + 8002e0e: af02 add r7, sp, #8 + 8002e10: 60f8 str r0, [r7, #12] + 8002e12: 60b9 str r1, [r7, #8] + 8002e14: 603b str r3, [r7, #0] + 8002e16: 4613 mov r3, r2 + 8002e18: 80fb strh r3, [r7, #6] uint8_t *pdata8bits; uint16_t *pdata16bits; uint32_t tickstart = 0U; - 8002dde: 2300 movs r3, #0 - 8002de0: 617b str r3, [r7, #20] + 8002e1a: 2300 movs r3, #0 + 8002e1c: 617b str r3, [r7, #20] /* Check that a Rx process is not already ongoing */ if (huart->RxState == HAL_UART_STATE_READY) - 8002de2: 68fb ldr r3, [r7, #12] - 8002de4: f893 303e ldrb.w r3, [r3, #62] ; 0x3e - 8002de8: b2db uxtb r3, r3 - 8002dea: 2b20 cmp r3, #32 - 8002dec: f040 808c bne.w 8002f08 + 8002e1e: 68fb ldr r3, [r7, #12] + 8002e20: f893 303e ldrb.w r3, [r3, #62] ; 0x3e + 8002e24: b2db uxtb r3, r3 + 8002e26: 2b20 cmp r3, #32 + 8002e28: f040 808c bne.w 8002f44 { if ((pData == NULL) || (Size == 0U)) - 8002df0: 68bb ldr r3, [r7, #8] - 8002df2: 2b00 cmp r3, #0 - 8002df4: d002 beq.n 8002dfc - 8002df6: 88fb ldrh r3, [r7, #6] - 8002df8: 2b00 cmp r3, #0 - 8002dfa: d101 bne.n 8002e00 + 8002e2c: 68bb ldr r3, [r7, #8] + 8002e2e: 2b00 cmp r3, #0 + 8002e30: d002 beq.n 8002e38 + 8002e32: 88fb ldrh r3, [r7, #6] + 8002e34: 2b00 cmp r3, #0 + 8002e36: d101 bne.n 8002e3c { return HAL_ERROR; - 8002dfc: 2301 movs r3, #1 - 8002dfe: e084 b.n 8002f0a + 8002e38: 2301 movs r3, #1 + 8002e3a: e084 b.n 8002f46 } /* Process Locked */ __HAL_LOCK(huart); - 8002e00: 68fb ldr r3, [r7, #12] - 8002e02: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002e06: 2b01 cmp r3, #1 - 8002e08: d101 bne.n 8002e0e - 8002e0a: 2302 movs r3, #2 - 8002e0c: e07d b.n 8002f0a - 8002e0e: 68fb ldr r3, [r7, #12] - 8002e10: 2201 movs r2, #1 - 8002e12: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e3c: 68fb ldr r3, [r7, #12] + 8002e3e: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8002e42: 2b01 cmp r3, #1 + 8002e44: d101 bne.n 8002e4a + 8002e46: 2302 movs r3, #2 + 8002e48: e07d b.n 8002f46 + 8002e4a: 68fb ldr r3, [r7, #12] + 8002e4c: 2201 movs r2, #1 + 8002e4e: f883 203c strb.w r2, [r3, #60] ; 0x3c huart->ErrorCode = HAL_UART_ERROR_NONE; - 8002e16: 68fb ldr r3, [r7, #12] - 8002e18: 2200 movs r2, #0 - 8002e1a: 641a str r2, [r3, #64] ; 0x40 + 8002e52: 68fb ldr r3, [r7, #12] + 8002e54: 2200 movs r2, #0 + 8002e56: 641a str r2, [r3, #64] ; 0x40 huart->RxState = HAL_UART_STATE_BUSY_RX; - 8002e1c: 68fb ldr r3, [r7, #12] - 8002e1e: 2222 movs r2, #34 ; 0x22 - 8002e20: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002e58: 68fb ldr r3, [r7, #12] + 8002e5a: 2222 movs r2, #34 ; 0x22 + 8002e5c: f883 203e strb.w r2, [r3, #62] ; 0x3e huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8002e24: 68fb ldr r3, [r7, #12] - 8002e26: 2200 movs r2, #0 - 8002e28: 631a str r2, [r3, #48] ; 0x30 + 8002e60: 68fb ldr r3, [r7, #12] + 8002e62: 2200 movs r2, #0 + 8002e64: 631a str r2, [r3, #48] ; 0x30 /* Init tickstart for timeout management */ tickstart = HAL_GetTick(); - 8002e2a: f7fe f897 bl 8000f5c - 8002e2e: 6178 str r0, [r7, #20] + 8002e66: f7fe f897 bl 8000f98 + 8002e6a: 6178 str r0, [r7, #20] huart->RxXferSize = Size; - 8002e30: 68fb ldr r3, [r7, #12] - 8002e32: 88fa ldrh r2, [r7, #6] - 8002e34: 859a strh r2, [r3, #44] ; 0x2c + 8002e6c: 68fb ldr r3, [r7, #12] + 8002e6e: 88fa ldrh r2, [r7, #6] + 8002e70: 859a strh r2, [r3, #44] ; 0x2c huart->RxXferCount = Size; - 8002e36: 68fb ldr r3, [r7, #12] - 8002e38: 88fa ldrh r2, [r7, #6] - 8002e3a: 85da strh r2, [r3, #46] ; 0x2e + 8002e72: 68fb ldr r3, [r7, #12] + 8002e74: 88fa ldrh r2, [r7, #6] + 8002e76: 85da strh r2, [r3, #46] ; 0x2e /* In case of 9bits/No Parity transfer, pRxData needs to be handled as a uint16_t pointer */ if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8002e3c: 68fb ldr r3, [r7, #12] - 8002e3e: 689b ldr r3, [r3, #8] - 8002e40: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 8002e44: d108 bne.n 8002e58 - 8002e46: 68fb ldr r3, [r7, #12] - 8002e48: 691b ldr r3, [r3, #16] - 8002e4a: 2b00 cmp r3, #0 - 8002e4c: d104 bne.n 8002e58 + 8002e78: 68fb ldr r3, [r7, #12] + 8002e7a: 689b ldr r3, [r3, #8] + 8002e7c: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 8002e80: d108 bne.n 8002e94 + 8002e82: 68fb ldr r3, [r7, #12] + 8002e84: 691b ldr r3, [r3, #16] + 8002e86: 2b00 cmp r3, #0 + 8002e88: d104 bne.n 8002e94 { pdata8bits = NULL; - 8002e4e: 2300 movs r3, #0 - 8002e50: 61fb str r3, [r7, #28] + 8002e8a: 2300 movs r3, #0 + 8002e8c: 61fb str r3, [r7, #28] pdata16bits = (uint16_t *) pData; - 8002e52: 68bb ldr r3, [r7, #8] - 8002e54: 61bb str r3, [r7, #24] - 8002e56: e003 b.n 8002e60 + 8002e8e: 68bb ldr r3, [r7, #8] + 8002e90: 61bb str r3, [r7, #24] + 8002e92: e003 b.n 8002e9c } else { pdata8bits = pData; - 8002e58: 68bb ldr r3, [r7, #8] - 8002e5a: 61fb str r3, [r7, #28] + 8002e94: 68bb ldr r3, [r7, #8] + 8002e96: 61fb str r3, [r7, #28] pdata16bits = NULL; - 8002e5c: 2300 movs r3, #0 - 8002e5e: 61bb str r3, [r7, #24] + 8002e98: 2300 movs r3, #0 + 8002e9a: 61bb str r3, [r7, #24] } /* Process Unlocked */ __HAL_UNLOCK(huart); - 8002e60: 68fb ldr r3, [r7, #12] - 8002e62: 2200 movs r2, #0 - 8002e64: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e9c: 68fb ldr r3, [r7, #12] + 8002e9e: 2200 movs r2, #0 + 8002ea0: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check the remain data to be received */ while (huart->RxXferCount > 0U) - 8002e68: e043 b.n 8002ef2 + 8002ea4: e043 b.n 8002f2e { if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_RXNE, RESET, tickstart, Timeout) != HAL_OK) - 8002e6a: 683b ldr r3, [r7, #0] - 8002e6c: 9300 str r3, [sp, #0] - 8002e6e: 697b ldr r3, [r7, #20] - 8002e70: 2200 movs r2, #0 - 8002e72: 2120 movs r1, #32 - 8002e74: 68f8 ldr r0, [r7, #12] - 8002e76: f000 f84c bl 8002f12 - 8002e7a: 4603 mov r3, r0 - 8002e7c: 2b00 cmp r3, #0 - 8002e7e: d001 beq.n 8002e84 + 8002ea6: 683b ldr r3, [r7, #0] + 8002ea8: 9300 str r3, [sp, #0] + 8002eaa: 697b ldr r3, [r7, #20] + 8002eac: 2200 movs r2, #0 + 8002eae: 2120 movs r1, #32 + 8002eb0: 68f8 ldr r0, [r7, #12] + 8002eb2: f000 f84c bl 8002f4e + 8002eb6: 4603 mov r3, r0 + 8002eb8: 2b00 cmp r3, #0 + 8002eba: d001 beq.n 8002ec0 { return HAL_TIMEOUT; - 8002e80: 2303 movs r3, #3 - 8002e82: e042 b.n 8002f0a + 8002ebc: 2303 movs r3, #3 + 8002ebe: e042 b.n 8002f46 } if (pdata8bits == NULL) - 8002e84: 69fb ldr r3, [r7, #28] - 8002e86: 2b00 cmp r3, #0 - 8002e88: d10c bne.n 8002ea4 + 8002ec0: 69fb ldr r3, [r7, #28] + 8002ec2: 2b00 cmp r3, #0 + 8002ec4: d10c bne.n 8002ee0 { *pdata16bits = (uint16_t)(huart->Instance->DR & 0x01FF); - 8002e8a: 68fb ldr r3, [r7, #12] - 8002e8c: 681b ldr r3, [r3, #0] - 8002e8e: 685b ldr r3, [r3, #4] - 8002e90: b29b uxth r3, r3 - 8002e92: f3c3 0308 ubfx r3, r3, #0, #9 - 8002e96: b29a uxth r2, r3 - 8002e98: 69bb ldr r3, [r7, #24] - 8002e9a: 801a strh r2, [r3, #0] + 8002ec6: 68fb ldr r3, [r7, #12] + 8002ec8: 681b ldr r3, [r3, #0] + 8002eca: 685b ldr r3, [r3, #4] + 8002ecc: b29b uxth r3, r3 + 8002ece: f3c3 0308 ubfx r3, r3, #0, #9 + 8002ed2: b29a uxth r2, r3 + 8002ed4: 69bb ldr r3, [r7, #24] + 8002ed6: 801a strh r2, [r3, #0] pdata16bits++; - 8002e9c: 69bb ldr r3, [r7, #24] - 8002e9e: 3302 adds r3, #2 - 8002ea0: 61bb str r3, [r7, #24] - 8002ea2: e01f b.n 8002ee4 + 8002ed8: 69bb ldr r3, [r7, #24] + 8002eda: 3302 adds r3, #2 + 8002edc: 61bb str r3, [r7, #24] + 8002ede: e01f b.n 8002f20 } else { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) || ((huart->Init.WordLength == UART_WORDLENGTH_8B) && (huart->Init.Parity == UART_PARITY_NONE))) - 8002ea4: 68fb ldr r3, [r7, #12] - 8002ea6: 689b ldr r3, [r3, #8] - 8002ea8: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 8002eac: d007 beq.n 8002ebe - 8002eae: 68fb ldr r3, [r7, #12] - 8002eb0: 689b ldr r3, [r3, #8] - 8002eb2: 2b00 cmp r3, #0 - 8002eb4: d10a bne.n 8002ecc - 8002eb6: 68fb ldr r3, [r7, #12] - 8002eb8: 691b ldr r3, [r3, #16] - 8002eba: 2b00 cmp r3, #0 - 8002ebc: d106 bne.n 8002ecc + 8002ee0: 68fb ldr r3, [r7, #12] + 8002ee2: 689b ldr r3, [r3, #8] + 8002ee4: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 8002ee8: d007 beq.n 8002efa + 8002eea: 68fb ldr r3, [r7, #12] + 8002eec: 689b ldr r3, [r3, #8] + 8002eee: 2b00 cmp r3, #0 + 8002ef0: d10a bne.n 8002f08 + 8002ef2: 68fb ldr r3, [r7, #12] + 8002ef4: 691b ldr r3, [r3, #16] + 8002ef6: 2b00 cmp r3, #0 + 8002ef8: d106 bne.n 8002f08 { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x00FF); - 8002ebe: 68fb ldr r3, [r7, #12] - 8002ec0: 681b ldr r3, [r3, #0] - 8002ec2: 685b ldr r3, [r3, #4] - 8002ec4: b2da uxtb r2, r3 - 8002ec6: 69fb ldr r3, [r7, #28] - 8002ec8: 701a strb r2, [r3, #0] - 8002eca: e008 b.n 8002ede + 8002efa: 68fb ldr r3, [r7, #12] + 8002efc: 681b ldr r3, [r3, #0] + 8002efe: 685b ldr r3, [r3, #4] + 8002f00: b2da uxtb r2, r3 + 8002f02: 69fb ldr r3, [r7, #28] + 8002f04: 701a strb r2, [r3, #0] + 8002f06: e008 b.n 8002f1a } else { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x007F); - 8002ecc: 68fb ldr r3, [r7, #12] - 8002ece: 681b ldr r3, [r3, #0] - 8002ed0: 685b ldr r3, [r3, #4] - 8002ed2: b2db uxtb r3, r3 - 8002ed4: f003 037f and.w r3, r3, #127 ; 0x7f - 8002ed8: b2da uxtb r2, r3 - 8002eda: 69fb ldr r3, [r7, #28] - 8002edc: 701a strb r2, [r3, #0] + 8002f08: 68fb ldr r3, [r7, #12] + 8002f0a: 681b ldr r3, [r3, #0] + 8002f0c: 685b ldr r3, [r3, #4] + 8002f0e: b2db uxtb r3, r3 + 8002f10: f003 037f and.w r3, r3, #127 ; 0x7f + 8002f14: b2da uxtb r2, r3 + 8002f16: 69fb ldr r3, [r7, #28] + 8002f18: 701a strb r2, [r3, #0] } pdata8bits++; - 8002ede: 69fb ldr r3, [r7, #28] - 8002ee0: 3301 adds r3, #1 - 8002ee2: 61fb str r3, [r7, #28] + 8002f1a: 69fb ldr r3, [r7, #28] + 8002f1c: 3301 adds r3, #1 + 8002f1e: 61fb str r3, [r7, #28] } huart->RxXferCount--; - 8002ee4: 68fb ldr r3, [r7, #12] - 8002ee6: 8ddb ldrh r3, [r3, #46] ; 0x2e - 8002ee8: b29b uxth r3, r3 - 8002eea: 3b01 subs r3, #1 - 8002eec: b29a uxth r2, r3 - 8002eee: 68fb ldr r3, [r7, #12] - 8002ef0: 85da strh r2, [r3, #46] ; 0x2e + 8002f20: 68fb ldr r3, [r7, #12] + 8002f22: 8ddb ldrh r3, [r3, #46] ; 0x2e + 8002f24: b29b uxth r3, r3 + 8002f26: 3b01 subs r3, #1 + 8002f28: b29a uxth r2, r3 + 8002f2a: 68fb ldr r3, [r7, #12] + 8002f2c: 85da strh r2, [r3, #46] ; 0x2e while (huart->RxXferCount > 0U) - 8002ef2: 68fb ldr r3, [r7, #12] - 8002ef4: 8ddb ldrh r3, [r3, #46] ; 0x2e - 8002ef6: b29b uxth r3, r3 - 8002ef8: 2b00 cmp r3, #0 - 8002efa: d1b6 bne.n 8002e6a + 8002f2e: 68fb ldr r3, [r7, #12] + 8002f30: 8ddb ldrh r3, [r3, #46] ; 0x2e + 8002f32: b29b uxth r3, r3 + 8002f34: 2b00 cmp r3, #0 + 8002f36: d1b6 bne.n 8002ea6 } /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8002efc: 68fb ldr r3, [r7, #12] - 8002efe: 2220 movs r2, #32 - 8002f00: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002f38: 68fb ldr r3, [r7, #12] + 8002f3a: 2220 movs r2, #32 + 8002f3c: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 8002f04: 2300 movs r3, #0 - 8002f06: e000 b.n 8002f0a + 8002f40: 2300 movs r3, #0 + 8002f42: e000 b.n 8002f46 } else { return HAL_BUSY; - 8002f08: 2302 movs r3, #2 + 8002f44: 2302 movs r3, #2 } } - 8002f0a: 4618 mov r0, r3 - 8002f0c: 3720 adds r7, #32 - 8002f0e: 46bd mov sp, r7 - 8002f10: bd80 pop {r7, pc} + 8002f46: 4618 mov r0, r3 + 8002f48: 3720 adds r7, #32 + 8002f4a: 46bd mov sp, r7 + 8002f4c: bd80 pop {r7, pc} -08002f12 : +08002f4e : * @param Timeout Timeout duration * @retval HAL status */ static HAL_StatusTypeDef UART_WaitOnFlagUntilTimeout(UART_HandleTypeDef *huart, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout) { - 8002f12: b580 push {r7, lr} - 8002f14: b090 sub sp, #64 ; 0x40 - 8002f16: af00 add r7, sp, #0 - 8002f18: 60f8 str r0, [r7, #12] - 8002f1a: 60b9 str r1, [r7, #8] - 8002f1c: 603b str r3, [r7, #0] - 8002f1e: 4613 mov r3, r2 - 8002f20: 71fb strb r3, [r7, #7] + 8002f4e: b580 push {r7, lr} + 8002f50: b090 sub sp, #64 ; 0x40 + 8002f52: af00 add r7, sp, #0 + 8002f54: 60f8 str r0, [r7, #12] + 8002f56: 60b9 str r1, [r7, #8] + 8002f58: 603b str r3, [r7, #0] + 8002f5a: 4613 mov r3, r2 + 8002f5c: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8002f22: e050 b.n 8002fc6 + 8002f5e: e050 b.n 8003002 { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002f24: 6cbb ldr r3, [r7, #72] ; 0x48 - 8002f26: f1b3 3fff cmp.w r3, #4294967295 - 8002f2a: d04c beq.n 8002fc6 + 8002f60: 6cbb ldr r3, [r7, #72] ; 0x48 + 8002f62: f1b3 3fff cmp.w r3, #4294967295 + 8002f66: d04c beq.n 8003002 { if ((Timeout == 0U) || ((HAL_GetTick() - Tickstart) > Timeout)) - 8002f2c: 6cbb ldr r3, [r7, #72] ; 0x48 - 8002f2e: 2b00 cmp r3, #0 - 8002f30: d007 beq.n 8002f42 - 8002f32: f7fe f813 bl 8000f5c - 8002f36: 4602 mov r2, r0 - 8002f38: 683b ldr r3, [r7, #0] - 8002f3a: 1ad3 subs r3, r2, r3 - 8002f3c: 6cba ldr r2, [r7, #72] ; 0x48 - 8002f3e: 429a cmp r2, r3 - 8002f40: d241 bcs.n 8002fc6 + 8002f68: 6cbb ldr r3, [r7, #72] ; 0x48 + 8002f6a: 2b00 cmp r3, #0 + 8002f6c: d007 beq.n 8002f7e + 8002f6e: f7fe f813 bl 8000f98 + 8002f72: 4602 mov r2, r0 + 8002f74: 683b ldr r3, [r7, #0] + 8002f76: 1ad3 subs r3, r2, r3 + 8002f78: 6cba ldr r2, [r7, #72] ; 0x48 + 8002f7a: 429a cmp r2, r3 + 8002f7c: d241 bcs.n 8003002 { /* Disable TXE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts for the interrupt process */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE)); - 8002f42: 68fb ldr r3, [r7, #12] - 8002f44: 681b ldr r3, [r3, #0] - 8002f46: 330c adds r3, #12 - 8002f48: 62bb str r3, [r7, #40] ; 0x28 + 8002f7e: 68fb ldr r3, [r7, #12] + 8002f80: 681b ldr r3, [r3, #0] + 8002f82: 330c adds r3, #12 + 8002f84: 62bb str r3, [r7, #40] ; 0x28 */ __STATIC_FORCEINLINE uint32_t __LDREXW(volatile uint32_t *addr) { uint32_t result; __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8002f4a: 6abb ldr r3, [r7, #40] ; 0x28 - 8002f4c: e853 3f00 ldrex r3, [r3] - 8002f50: 627b str r3, [r7, #36] ; 0x24 + 8002f86: 6abb ldr r3, [r7, #40] ; 0x28 + 8002f88: e853 3f00 ldrex r3, [r3] + 8002f8c: 627b str r3, [r7, #36] ; 0x24 return(result); - 8002f52: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002f54: f423 73d0 bic.w r3, r3, #416 ; 0x1a0 - 8002f58: 63fb str r3, [r7, #60] ; 0x3c - 8002f5a: 68fb ldr r3, [r7, #12] - 8002f5c: 681b ldr r3, [r3, #0] - 8002f5e: 330c adds r3, #12 - 8002f60: 6bfa ldr r2, [r7, #60] ; 0x3c - 8002f62: 637a str r2, [r7, #52] ; 0x34 - 8002f64: 633b str r3, [r7, #48] ; 0x30 + 8002f8e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002f90: f423 73d0 bic.w r3, r3, #416 ; 0x1a0 + 8002f94: 63fb str r3, [r7, #60] ; 0x3c + 8002f96: 68fb ldr r3, [r7, #12] + 8002f98: 681b ldr r3, [r3, #0] + 8002f9a: 330c adds r3, #12 + 8002f9c: 6bfa ldr r2, [r7, #60] ; 0x3c + 8002f9e: 637a str r2, [r7, #52] ; 0x34 + 8002fa0: 633b str r3, [r7, #48] ; 0x30 */ __STATIC_FORCEINLINE uint32_t __STREXW(uint32_t value, volatile uint32_t *addr) { uint32_t result; __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8002f66: 6b39 ldr r1, [r7, #48] ; 0x30 - 8002f68: 6b7a ldr r2, [r7, #52] ; 0x34 - 8002f6a: e841 2300 strex r3, r2, [r1] - 8002f6e: 62fb str r3, [r7, #44] ; 0x2c + 8002fa2: 6b39 ldr r1, [r7, #48] ; 0x30 + 8002fa4: 6b7a ldr r2, [r7, #52] ; 0x34 + 8002fa6: e841 2300 strex r3, r2, [r1] + 8002faa: 62fb str r3, [r7, #44] ; 0x2c return(result); - 8002f70: 6afb ldr r3, [r7, #44] ; 0x2c - 8002f72: 2b00 cmp r3, #0 - 8002f74: d1e5 bne.n 8002f42 + 8002fac: 6afb ldr r3, [r7, #44] ; 0x2c + 8002fae: 2b00 cmp r3, #0 + 8002fb0: d1e5 bne.n 8002f7e ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8002f76: 68fb ldr r3, [r7, #12] - 8002f78: 681b ldr r3, [r3, #0] - 8002f7a: 3314 adds r3, #20 - 8002f7c: 617b str r3, [r7, #20] + 8002fb2: 68fb ldr r3, [r7, #12] + 8002fb4: 681b ldr r3, [r3, #0] + 8002fb6: 3314 adds r3, #20 + 8002fb8: 617b str r3, [r7, #20] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8002f7e: 697b ldr r3, [r7, #20] - 8002f80: e853 3f00 ldrex r3, [r3] - 8002f84: 613b str r3, [r7, #16] + 8002fba: 697b ldr r3, [r7, #20] + 8002fbc: e853 3f00 ldrex r3, [r3] + 8002fc0: 613b str r3, [r7, #16] return(result); - 8002f86: 693b ldr r3, [r7, #16] - 8002f88: f023 0301 bic.w r3, r3, #1 - 8002f8c: 63bb str r3, [r7, #56] ; 0x38 - 8002f8e: 68fb ldr r3, [r7, #12] - 8002f90: 681b ldr r3, [r3, #0] - 8002f92: 3314 adds r3, #20 - 8002f94: 6bba ldr r2, [r7, #56] ; 0x38 - 8002f96: 623a str r2, [r7, #32] - 8002f98: 61fb str r3, [r7, #28] + 8002fc2: 693b ldr r3, [r7, #16] + 8002fc4: f023 0301 bic.w r3, r3, #1 + 8002fc8: 63bb str r3, [r7, #56] ; 0x38 + 8002fca: 68fb ldr r3, [r7, #12] + 8002fcc: 681b ldr r3, [r3, #0] + 8002fce: 3314 adds r3, #20 + 8002fd0: 6bba ldr r2, [r7, #56] ; 0x38 + 8002fd2: 623a str r2, [r7, #32] + 8002fd4: 61fb str r3, [r7, #28] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8002f9a: 69f9 ldr r1, [r7, #28] - 8002f9c: 6a3a ldr r2, [r7, #32] - 8002f9e: e841 2300 strex r3, r2, [r1] - 8002fa2: 61bb str r3, [r7, #24] + 8002fd6: 69f9 ldr r1, [r7, #28] + 8002fd8: 6a3a ldr r2, [r7, #32] + 8002fda: e841 2300 strex r3, r2, [r1] + 8002fde: 61bb str r3, [r7, #24] return(result); - 8002fa4: 69bb ldr r3, [r7, #24] - 8002fa6: 2b00 cmp r3, #0 - 8002fa8: d1e5 bne.n 8002f76 + 8002fe0: 69bb ldr r3, [r7, #24] + 8002fe2: 2b00 cmp r3, #0 + 8002fe4: d1e5 bne.n 8002fb2 huart->gState = HAL_UART_STATE_READY; - 8002faa: 68fb ldr r3, [r7, #12] - 8002fac: 2220 movs r2, #32 - 8002fae: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002fe6: 68fb ldr r3, [r7, #12] + 8002fe8: 2220 movs r2, #32 + 8002fea: f883 203d strb.w r2, [r3, #61] ; 0x3d huart->RxState = HAL_UART_STATE_READY; - 8002fb2: 68fb ldr r3, [r7, #12] - 8002fb4: 2220 movs r2, #32 - 8002fb6: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002fee: 68fb ldr r3, [r7, #12] + 8002ff0: 2220 movs r2, #32 + 8002ff2: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(huart); - 8002fba: 68fb ldr r3, [r7, #12] - 8002fbc: 2200 movs r2, #0 - 8002fbe: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002ff6: 68fb ldr r3, [r7, #12] + 8002ff8: 2200 movs r2, #0 + 8002ffa: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_TIMEOUT; - 8002fc2: 2303 movs r3, #3 - 8002fc4: e00f b.n 8002fe6 + 8002ffe: 2303 movs r3, #3 + 8003000: e00f b.n 8003022 while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8002fc6: 68fb ldr r3, [r7, #12] - 8002fc8: 681b ldr r3, [r3, #0] - 8002fca: 681a ldr r2, [r3, #0] - 8002fcc: 68bb ldr r3, [r7, #8] - 8002fce: 4013 ands r3, r2 - 8002fd0: 68ba ldr r2, [r7, #8] - 8002fd2: 429a cmp r2, r3 - 8002fd4: bf0c ite eq - 8002fd6: 2301 moveq r3, #1 - 8002fd8: 2300 movne r3, #0 - 8002fda: b2db uxtb r3, r3 - 8002fdc: 461a mov r2, r3 - 8002fde: 79fb ldrb r3, [r7, #7] - 8002fe0: 429a cmp r2, r3 - 8002fe2: d09f beq.n 8002f24 + 8003002: 68fb ldr r3, [r7, #12] + 8003004: 681b ldr r3, [r3, #0] + 8003006: 681a ldr r2, [r3, #0] + 8003008: 68bb ldr r3, [r7, #8] + 800300a: 4013 ands r3, r2 + 800300c: 68ba ldr r2, [r7, #8] + 800300e: 429a cmp r2, r3 + 8003010: bf0c ite eq + 8003012: 2301 moveq r3, #1 + 8003014: 2300 movne r3, #0 + 8003016: b2db uxtb r3, r3 + 8003018: 461a mov r2, r3 + 800301a: 79fb ldrb r3, [r7, #7] + 800301c: 429a cmp r2, r3 + 800301e: d09f beq.n 8002f60 } } } return HAL_OK; - 8002fe4: 2300 movs r3, #0 + 8003020: 2300 movs r3, #0 } - 8002fe6: 4618 mov r0, r3 - 8002fe8: 3740 adds r7, #64 ; 0x40 - 8002fea: 46bd mov sp, r7 - 8002fec: bd80 pop {r7, pc} + 8003022: 4618 mov r0, r3 + 8003024: 3740 adds r7, #64 ; 0x40 + 8003026: 46bd mov sp, r7 + 8003028: bd80 pop {r7, pc} ... -08002ff0 : +0800302c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ static void UART_SetConfig(UART_HandleTypeDef *huart) { - 8002ff0: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 8002ff4: b0c0 sub sp, #256 ; 0x100 - 8002ff6: af00 add r7, sp, #0 - 8002ff8: f8c7 00f4 str.w r0, [r7, #244] ; 0xf4 + 800302c: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8003030: b0c0 sub sp, #256 ; 0x100 + 8003032: af00 add r7, sp, #0 + 8003034: f8c7 00f4 str.w r0, [r7, #244] ; 0xf4 assert_param(IS_UART_MODE(huart->Init.Mode)); /*-------------------------- USART CR2 Configuration -----------------------*/ /* Configure the UART Stop Bits: Set STOP[13:12] bits according to huart->Init.StopBits value */ MODIFY_REG(huart->Instance->CR2, USART_CR2_STOP, huart->Init.StopBits); - 8002ffc: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003000: 681b ldr r3, [r3, #0] - 8003002: 691b ldr r3, [r3, #16] - 8003004: f423 5040 bic.w r0, r3, #12288 ; 0x3000 - 8003008: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800300c: 68d9 ldr r1, [r3, #12] - 800300e: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003012: 681a ldr r2, [r3, #0] - 8003014: ea40 0301 orr.w r3, r0, r1 - 8003018: 6113 str r3, [r2, #16] + 8003038: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800303c: 681b ldr r3, [r3, #0] + 800303e: 691b ldr r3, [r3, #16] + 8003040: f423 5040 bic.w r0, r3, #12288 ; 0x3000 + 8003044: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8003048: 68d9 ldr r1, [r3, #12] + 800304a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800304e: 681a ldr r2, [r3, #0] + 8003050: ea40 0301 orr.w r3, r0, r1 + 8003054: 6113 str r3, [r2, #16] Set the M bits according to huart->Init.WordLength value Set PCE and PS bits according to huart->Init.Parity value Set TE and RE bits according to huart->Init.Mode value Set OVER8 bit according to huart->Init.OverSampling value */ tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling; - 800301a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800301e: 689a ldr r2, [r3, #8] - 8003020: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003024: 691b ldr r3, [r3, #16] - 8003026: 431a orrs r2, r3 - 8003028: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800302c: 695b ldr r3, [r3, #20] - 800302e: 431a orrs r2, r3 - 8003030: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003034: 69db ldr r3, [r3, #28] - 8003036: 4313 orrs r3, r2 - 8003038: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 + 8003056: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800305a: 689a ldr r2, [r3, #8] + 800305c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8003060: 691b ldr r3, [r3, #16] + 8003062: 431a orrs r2, r3 + 8003064: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8003068: 695b ldr r3, [r3, #20] + 800306a: 431a orrs r2, r3 + 800306c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8003070: 69db ldr r3, [r3, #28] + 8003072: 4313 orrs r3, r2 + 8003074: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 MODIFY_REG(huart->Instance->CR1, - 800303c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003040: 681b ldr r3, [r3, #0] - 8003042: 68db ldr r3, [r3, #12] - 8003044: f423 4116 bic.w r1, r3, #38400 ; 0x9600 - 8003048: f021 010c bic.w r1, r1, #12 - 800304c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003050: 681a ldr r2, [r3, #0] - 8003052: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 - 8003056: 430b orrs r3, r1 - 8003058: 60d3 str r3, [r2, #12] + 8003078: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800307c: 681b ldr r3, [r3, #0] + 800307e: 68db ldr r3, [r3, #12] + 8003080: f423 4116 bic.w r1, r3, #38400 ; 0x9600 + 8003084: f021 010c bic.w r1, r1, #12 + 8003088: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800308c: 681a ldr r2, [r3, #0] + 800308e: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 + 8003092: 430b orrs r3, r1 + 8003094: 60d3 str r3, [r2, #12] (uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), tmpreg); /*-------------------------- USART CR3 Configuration -----------------------*/ /* Configure the UART HFC: Set CTSE and RTSE bits according to huart->Init.HwFlowCtl value */ MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE), huart->Init.HwFlowCtl); - 800305a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800305e: 681b ldr r3, [r3, #0] - 8003060: 695b ldr r3, [r3, #20] - 8003062: f423 7040 bic.w r0, r3, #768 ; 0x300 - 8003066: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800306a: 6999 ldr r1, [r3, #24] - 800306c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003070: 681a ldr r2, [r3, #0] - 8003072: ea40 0301 orr.w r3, r0, r1 - 8003076: 6153 str r3, [r2, #20] + 8003096: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800309a: 681b ldr r3, [r3, #0] + 800309c: 695b ldr r3, [r3, #20] + 800309e: f423 7040 bic.w r0, r3, #768 ; 0x300 + 80030a2: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80030a6: 6999 ldr r1, [r3, #24] + 80030a8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80030ac: 681a ldr r2, [r3, #0] + 80030ae: ea40 0301 orr.w r3, r0, r1 + 80030b2: 6153 str r3, [r2, #20] if ((huart->Instance == USART1) || (huart->Instance == USART6) || (huart->Instance == UART9) || (huart->Instance == UART10)) { pclk = HAL_RCC_GetPCLK2Freq(); } #elif defined(USART6) if ((huart->Instance == USART1) || (huart->Instance == USART6)) - 8003078: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800307c: 681a ldr r2, [r3, #0] - 800307e: 4b8f ldr r3, [pc, #572] ; (80032bc ) - 8003080: 429a cmp r2, r3 - 8003082: d005 beq.n 8003090 - 8003084: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003088: 681a ldr r2, [r3, #0] - 800308a: 4b8d ldr r3, [pc, #564] ; (80032c0 ) - 800308c: 429a cmp r2, r3 - 800308e: d104 bne.n 800309a + 80030b4: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80030b8: 681a ldr r2, [r3, #0] + 80030ba: 4b8f ldr r3, [pc, #572] ; (80032f8 ) + 80030bc: 429a cmp r2, r3 + 80030be: d005 beq.n 80030cc + 80030c0: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80030c4: 681a ldr r2, [r3, #0] + 80030c6: 4b8d ldr r3, [pc, #564] ; (80032fc ) + 80030c8: 429a cmp r2, r3 + 80030ca: d104 bne.n 80030d6 { pclk = HAL_RCC_GetPCLK2Freq(); - 8003090: f7ff faf8 bl 8002684 - 8003094: f8c7 00fc str.w r0, [r7, #252] ; 0xfc - 8003098: e003 b.n 80030a2 + 80030cc: f7ff faf8 bl 80026c0 + 80030d0: f8c7 00fc str.w r0, [r7, #252] ; 0xfc + 80030d4: e003 b.n 80030de pclk = HAL_RCC_GetPCLK2Freq(); } #endif /* USART6 */ else { pclk = HAL_RCC_GetPCLK1Freq(); - 800309a: f7ff fadf bl 800265c - 800309e: f8c7 00fc str.w r0, [r7, #252] ; 0xfc + 80030d6: f7ff fadf bl 8002698 + 80030da: f8c7 00fc str.w r0, [r7, #252] ; 0xfc } /*-------------------------- USART BRR Configuration ---------------------*/ if (huart->Init.OverSampling == UART_OVERSAMPLING_8) - 80030a2: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80030a6: 69db ldr r3, [r3, #28] - 80030a8: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 80030ac: f040 810c bne.w 80032c8 + 80030de: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80030e2: 69db ldr r3, [r3, #28] + 80030e4: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 80030e8: f040 810c bne.w 8003304 { huart->Instance->BRR = UART_BRR_SAMPLING8(pclk, huart->Init.BaudRate); - 80030b0: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 80030b4: 2200 movs r2, #0 - 80030b6: f8c7 30e8 str.w r3, [r7, #232] ; 0xe8 - 80030ba: f8c7 20ec str.w r2, [r7, #236] ; 0xec - 80030be: e9d7 453a ldrd r4, r5, [r7, #232] ; 0xe8 - 80030c2: 4622 mov r2, r4 - 80030c4: 462b mov r3, r5 - 80030c6: 1891 adds r1, r2, r2 - 80030c8: 65b9 str r1, [r7, #88] ; 0x58 - 80030ca: 415b adcs r3, r3 - 80030cc: 65fb str r3, [r7, #92] ; 0x5c - 80030ce: e9d7 2316 ldrd r2, r3, [r7, #88] ; 0x58 - 80030d2: 4621 mov r1, r4 - 80030d4: eb12 0801 adds.w r8, r2, r1 - 80030d8: 4629 mov r1, r5 - 80030da: eb43 0901 adc.w r9, r3, r1 - 80030de: f04f 0200 mov.w r2, #0 - 80030e2: f04f 0300 mov.w r3, #0 - 80030e6: ea4f 03c9 mov.w r3, r9, lsl #3 - 80030ea: ea43 7358 orr.w r3, r3, r8, lsr #29 - 80030ee: ea4f 02c8 mov.w r2, r8, lsl #3 - 80030f2: 4690 mov r8, r2 - 80030f4: 4699 mov r9, r3 - 80030f6: 4623 mov r3, r4 - 80030f8: eb18 0303 adds.w r3, r8, r3 - 80030fc: f8c7 30e0 str.w r3, [r7, #224] ; 0xe0 + 80030ec: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 80030f0: 2200 movs r2, #0 + 80030f2: f8c7 30e8 str.w r3, [r7, #232] ; 0xe8 + 80030f6: f8c7 20ec str.w r2, [r7, #236] ; 0xec + 80030fa: e9d7 453a ldrd r4, r5, [r7, #232] ; 0xe8 + 80030fe: 4622 mov r2, r4 8003100: 462b mov r3, r5 - 8003102: eb49 0303 adc.w r3, r9, r3 - 8003106: f8c7 30e4 str.w r3, [r7, #228] ; 0xe4 - 800310a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800310e: 685b ldr r3, [r3, #4] - 8003110: 2200 movs r2, #0 - 8003112: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 - 8003116: f8c7 20dc str.w r2, [r7, #220] ; 0xdc - 800311a: e9d7 1236 ldrd r1, r2, [r7, #216] ; 0xd8 - 800311e: 460b mov r3, r1 - 8003120: 18db adds r3, r3, r3 - 8003122: 653b str r3, [r7, #80] ; 0x50 - 8003124: 4613 mov r3, r2 - 8003126: eb42 0303 adc.w r3, r2, r3 - 800312a: 657b str r3, [r7, #84] ; 0x54 - 800312c: e9d7 2314 ldrd r2, r3, [r7, #80] ; 0x50 - 8003130: e9d7 0138 ldrd r0, r1, [r7, #224] ; 0xe0 - 8003134: f7fd f854 bl 80001e0 <__aeabi_uldivmod> - 8003138: 4602 mov r2, r0 - 800313a: 460b mov r3, r1 - 800313c: 4b61 ldr r3, [pc, #388] ; (80032c4 ) - 800313e: fba3 2302 umull r2, r3, r3, r2 - 8003142: 095b lsrs r3, r3, #5 - 8003144: 011c lsls r4, r3, #4 - 8003146: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800314a: 2200 movs r2, #0 - 800314c: f8c7 30d0 str.w r3, [r7, #208] ; 0xd0 - 8003150: f8c7 20d4 str.w r2, [r7, #212] ; 0xd4 - 8003154: e9d7 8934 ldrd r8, r9, [r7, #208] ; 0xd0 - 8003158: 4642 mov r2, r8 - 800315a: 464b mov r3, r9 - 800315c: 1891 adds r1, r2, r2 - 800315e: 64b9 str r1, [r7, #72] ; 0x48 - 8003160: 415b adcs r3, r3 - 8003162: 64fb str r3, [r7, #76] ; 0x4c - 8003164: e9d7 2312 ldrd r2, r3, [r7, #72] ; 0x48 - 8003168: 4641 mov r1, r8 - 800316a: eb12 0a01 adds.w sl, r2, r1 - 800316e: 4649 mov r1, r9 - 8003170: eb43 0b01 adc.w fp, r3, r1 - 8003174: f04f 0200 mov.w r2, #0 - 8003178: f04f 0300 mov.w r3, #0 - 800317c: ea4f 03cb mov.w r3, fp, lsl #3 - 8003180: ea43 735a orr.w r3, r3, sl, lsr #29 - 8003184: ea4f 02ca mov.w r2, sl, lsl #3 - 8003188: 4692 mov sl, r2 - 800318a: 469b mov fp, r3 - 800318c: 4643 mov r3, r8 - 800318e: eb1a 0303 adds.w r3, sl, r3 - 8003192: f8c7 30c8 str.w r3, [r7, #200] ; 0xc8 + 8003102: 1891 adds r1, r2, r2 + 8003104: 65b9 str r1, [r7, #88] ; 0x58 + 8003106: 415b adcs r3, r3 + 8003108: 65fb str r3, [r7, #92] ; 0x5c + 800310a: e9d7 2316 ldrd r2, r3, [r7, #88] ; 0x58 + 800310e: 4621 mov r1, r4 + 8003110: eb12 0801 adds.w r8, r2, r1 + 8003114: 4629 mov r1, r5 + 8003116: eb43 0901 adc.w r9, r3, r1 + 800311a: f04f 0200 mov.w r2, #0 + 800311e: f04f 0300 mov.w r3, #0 + 8003122: ea4f 03c9 mov.w r3, r9, lsl #3 + 8003126: ea43 7358 orr.w r3, r3, r8, lsr #29 + 800312a: ea4f 02c8 mov.w r2, r8, lsl #3 + 800312e: 4690 mov r8, r2 + 8003130: 4699 mov r9, r3 + 8003132: 4623 mov r3, r4 + 8003134: eb18 0303 adds.w r3, r8, r3 + 8003138: f8c7 30e0 str.w r3, [r7, #224] ; 0xe0 + 800313c: 462b mov r3, r5 + 800313e: eb49 0303 adc.w r3, r9, r3 + 8003142: f8c7 30e4 str.w r3, [r7, #228] ; 0xe4 + 8003146: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800314a: 685b ldr r3, [r3, #4] + 800314c: 2200 movs r2, #0 + 800314e: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 + 8003152: f8c7 20dc str.w r2, [r7, #220] ; 0xdc + 8003156: e9d7 1236 ldrd r1, r2, [r7, #216] ; 0xd8 + 800315a: 460b mov r3, r1 + 800315c: 18db adds r3, r3, r3 + 800315e: 653b str r3, [r7, #80] ; 0x50 + 8003160: 4613 mov r3, r2 + 8003162: eb42 0303 adc.w r3, r2, r3 + 8003166: 657b str r3, [r7, #84] ; 0x54 + 8003168: e9d7 2314 ldrd r2, r3, [r7, #80] ; 0x50 + 800316c: e9d7 0138 ldrd r0, r1, [r7, #224] ; 0xe0 + 8003170: f7fd f836 bl 80001e0 <__aeabi_uldivmod> + 8003174: 4602 mov r2, r0 + 8003176: 460b mov r3, r1 + 8003178: 4b61 ldr r3, [pc, #388] ; (8003300 ) + 800317a: fba3 2302 umull r2, r3, r3, r2 + 800317e: 095b lsrs r3, r3, #5 + 8003180: 011c lsls r4, r3, #4 + 8003182: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8003186: 2200 movs r2, #0 + 8003188: f8c7 30d0 str.w r3, [r7, #208] ; 0xd0 + 800318c: f8c7 20d4 str.w r2, [r7, #212] ; 0xd4 + 8003190: e9d7 8934 ldrd r8, r9, [r7, #208] ; 0xd0 + 8003194: 4642 mov r2, r8 8003196: 464b mov r3, r9 - 8003198: eb4b 0303 adc.w r3, fp, r3 - 800319c: f8c7 30cc str.w r3, [r7, #204] ; 0xcc - 80031a0: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80031a4: 685b ldr r3, [r3, #4] - 80031a6: 2200 movs r2, #0 - 80031a8: f8c7 30c0 str.w r3, [r7, #192] ; 0xc0 - 80031ac: f8c7 20c4 str.w r2, [r7, #196] ; 0xc4 - 80031b0: e9d7 1230 ldrd r1, r2, [r7, #192] ; 0xc0 - 80031b4: 460b mov r3, r1 - 80031b6: 18db adds r3, r3, r3 - 80031b8: 643b str r3, [r7, #64] ; 0x40 - 80031ba: 4613 mov r3, r2 - 80031bc: eb42 0303 adc.w r3, r2, r3 - 80031c0: 647b str r3, [r7, #68] ; 0x44 - 80031c2: e9d7 2310 ldrd r2, r3, [r7, #64] ; 0x40 - 80031c6: e9d7 0132 ldrd r0, r1, [r7, #200] ; 0xc8 - 80031ca: f7fd f809 bl 80001e0 <__aeabi_uldivmod> - 80031ce: 4602 mov r2, r0 - 80031d0: 460b mov r3, r1 - 80031d2: 4611 mov r1, r2 - 80031d4: 4b3b ldr r3, [pc, #236] ; (80032c4 ) - 80031d6: fba3 2301 umull r2, r3, r3, r1 - 80031da: 095b lsrs r3, r3, #5 - 80031dc: 2264 movs r2, #100 ; 0x64 - 80031de: fb02 f303 mul.w r3, r2, r3 - 80031e2: 1acb subs r3, r1, r3 - 80031e4: 00db lsls r3, r3, #3 - 80031e6: f103 0232 add.w r2, r3, #50 ; 0x32 - 80031ea: 4b36 ldr r3, [pc, #216] ; (80032c4 ) - 80031ec: fba3 2302 umull r2, r3, r3, r2 - 80031f0: 095b lsrs r3, r3, #5 - 80031f2: 005b lsls r3, r3, #1 - 80031f4: f403 73f8 and.w r3, r3, #496 ; 0x1f0 - 80031f8: 441c add r4, r3 - 80031fa: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 80031fe: 2200 movs r2, #0 - 8003200: f8c7 30b8 str.w r3, [r7, #184] ; 0xb8 - 8003204: f8c7 20bc str.w r2, [r7, #188] ; 0xbc - 8003208: e9d7 892e ldrd r8, r9, [r7, #184] ; 0xb8 - 800320c: 4642 mov r2, r8 - 800320e: 464b mov r3, r9 - 8003210: 1891 adds r1, r2, r2 - 8003212: 63b9 str r1, [r7, #56] ; 0x38 - 8003214: 415b adcs r3, r3 - 8003216: 63fb str r3, [r7, #60] ; 0x3c - 8003218: e9d7 230e ldrd r2, r3, [r7, #56] ; 0x38 - 800321c: 4641 mov r1, r8 - 800321e: 1851 adds r1, r2, r1 - 8003220: 6339 str r1, [r7, #48] ; 0x30 - 8003222: 4649 mov r1, r9 - 8003224: 414b adcs r3, r1 - 8003226: 637b str r3, [r7, #52] ; 0x34 - 8003228: f04f 0200 mov.w r2, #0 - 800322c: f04f 0300 mov.w r3, #0 - 8003230: e9d7 ab0c ldrd sl, fp, [r7, #48] ; 0x30 - 8003234: 4659 mov r1, fp - 8003236: 00cb lsls r3, r1, #3 - 8003238: 4651 mov r1, sl - 800323a: ea43 7351 orr.w r3, r3, r1, lsr #29 - 800323e: 4651 mov r1, sl - 8003240: 00ca lsls r2, r1, #3 - 8003242: 4610 mov r0, r2 - 8003244: 4619 mov r1, r3 - 8003246: 4603 mov r3, r0 + 8003198: 1891 adds r1, r2, r2 + 800319a: 64b9 str r1, [r7, #72] ; 0x48 + 800319c: 415b adcs r3, r3 + 800319e: 64fb str r3, [r7, #76] ; 0x4c + 80031a0: e9d7 2312 ldrd r2, r3, [r7, #72] ; 0x48 + 80031a4: 4641 mov r1, r8 + 80031a6: eb12 0a01 adds.w sl, r2, r1 + 80031aa: 4649 mov r1, r9 + 80031ac: eb43 0b01 adc.w fp, r3, r1 + 80031b0: f04f 0200 mov.w r2, #0 + 80031b4: f04f 0300 mov.w r3, #0 + 80031b8: ea4f 03cb mov.w r3, fp, lsl #3 + 80031bc: ea43 735a orr.w r3, r3, sl, lsr #29 + 80031c0: ea4f 02ca mov.w r2, sl, lsl #3 + 80031c4: 4692 mov sl, r2 + 80031c6: 469b mov fp, r3 + 80031c8: 4643 mov r3, r8 + 80031ca: eb1a 0303 adds.w r3, sl, r3 + 80031ce: f8c7 30c8 str.w r3, [r7, #200] ; 0xc8 + 80031d2: 464b mov r3, r9 + 80031d4: eb4b 0303 adc.w r3, fp, r3 + 80031d8: f8c7 30cc str.w r3, [r7, #204] ; 0xcc + 80031dc: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80031e0: 685b ldr r3, [r3, #4] + 80031e2: 2200 movs r2, #0 + 80031e4: f8c7 30c0 str.w r3, [r7, #192] ; 0xc0 + 80031e8: f8c7 20c4 str.w r2, [r7, #196] ; 0xc4 + 80031ec: e9d7 1230 ldrd r1, r2, [r7, #192] ; 0xc0 + 80031f0: 460b mov r3, r1 + 80031f2: 18db adds r3, r3, r3 + 80031f4: 643b str r3, [r7, #64] ; 0x40 + 80031f6: 4613 mov r3, r2 + 80031f8: eb42 0303 adc.w r3, r2, r3 + 80031fc: 647b str r3, [r7, #68] ; 0x44 + 80031fe: e9d7 2310 ldrd r2, r3, [r7, #64] ; 0x40 + 8003202: e9d7 0132 ldrd r0, r1, [r7, #200] ; 0xc8 + 8003206: f7fc ffeb bl 80001e0 <__aeabi_uldivmod> + 800320a: 4602 mov r2, r0 + 800320c: 460b mov r3, r1 + 800320e: 4611 mov r1, r2 + 8003210: 4b3b ldr r3, [pc, #236] ; (8003300 ) + 8003212: fba3 2301 umull r2, r3, r3, r1 + 8003216: 095b lsrs r3, r3, #5 + 8003218: 2264 movs r2, #100 ; 0x64 + 800321a: fb02 f303 mul.w r3, r2, r3 + 800321e: 1acb subs r3, r1, r3 + 8003220: 00db lsls r3, r3, #3 + 8003222: f103 0232 add.w r2, r3, #50 ; 0x32 + 8003226: 4b36 ldr r3, [pc, #216] ; (8003300 ) + 8003228: fba3 2302 umull r2, r3, r3, r2 + 800322c: 095b lsrs r3, r3, #5 + 800322e: 005b lsls r3, r3, #1 + 8003230: f403 73f8 and.w r3, r3, #496 ; 0x1f0 + 8003234: 441c add r4, r3 + 8003236: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 800323a: 2200 movs r2, #0 + 800323c: f8c7 30b8 str.w r3, [r7, #184] ; 0xb8 + 8003240: f8c7 20bc str.w r2, [r7, #188] ; 0xbc + 8003244: e9d7 892e ldrd r8, r9, [r7, #184] ; 0xb8 8003248: 4642 mov r2, r8 - 800324a: 189b adds r3, r3, r2 - 800324c: f8c7 30b0 str.w r3, [r7, #176] ; 0xb0 - 8003250: 464b mov r3, r9 - 8003252: 460a mov r2, r1 - 8003254: eb42 0303 adc.w r3, r2, r3 - 8003258: f8c7 30b4 str.w r3, [r7, #180] ; 0xb4 - 800325c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003260: 685b ldr r3, [r3, #4] - 8003262: 2200 movs r2, #0 - 8003264: f8c7 30a8 str.w r3, [r7, #168] ; 0xa8 - 8003268: f8c7 20ac str.w r2, [r7, #172] ; 0xac - 800326c: e9d7 122a ldrd r1, r2, [r7, #168] ; 0xa8 - 8003270: 460b mov r3, r1 - 8003272: 18db adds r3, r3, r3 - 8003274: 62bb str r3, [r7, #40] ; 0x28 - 8003276: 4613 mov r3, r2 - 8003278: eb42 0303 adc.w r3, r2, r3 - 800327c: 62fb str r3, [r7, #44] ; 0x2c - 800327e: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 - 8003282: e9d7 012c ldrd r0, r1, [r7, #176] ; 0xb0 - 8003286: f7fc ffab bl 80001e0 <__aeabi_uldivmod> - 800328a: 4602 mov r2, r0 - 800328c: 460b mov r3, r1 - 800328e: 4b0d ldr r3, [pc, #52] ; (80032c4 ) - 8003290: fba3 1302 umull r1, r3, r3, r2 - 8003294: 095b lsrs r3, r3, #5 - 8003296: 2164 movs r1, #100 ; 0x64 - 8003298: fb01 f303 mul.w r3, r1, r3 - 800329c: 1ad3 subs r3, r2, r3 - 800329e: 00db lsls r3, r3, #3 - 80032a0: 3332 adds r3, #50 ; 0x32 - 80032a2: 4a08 ldr r2, [pc, #32] ; (80032c4 ) - 80032a4: fba2 2303 umull r2, r3, r2, r3 - 80032a8: 095b lsrs r3, r3, #5 - 80032aa: f003 0207 and.w r2, r3, #7 - 80032ae: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80032b2: 681b ldr r3, [r3, #0] - 80032b4: 4422 add r2, r4 - 80032b6: 609a str r2, [r3, #8] + 800324a: 464b mov r3, r9 + 800324c: 1891 adds r1, r2, r2 + 800324e: 63b9 str r1, [r7, #56] ; 0x38 + 8003250: 415b adcs r3, r3 + 8003252: 63fb str r3, [r7, #60] ; 0x3c + 8003254: e9d7 230e ldrd r2, r3, [r7, #56] ; 0x38 + 8003258: 4641 mov r1, r8 + 800325a: 1851 adds r1, r2, r1 + 800325c: 6339 str r1, [r7, #48] ; 0x30 + 800325e: 4649 mov r1, r9 + 8003260: 414b adcs r3, r1 + 8003262: 637b str r3, [r7, #52] ; 0x34 + 8003264: f04f 0200 mov.w r2, #0 + 8003268: f04f 0300 mov.w r3, #0 + 800326c: e9d7 ab0c ldrd sl, fp, [r7, #48] ; 0x30 + 8003270: 4659 mov r1, fp + 8003272: 00cb lsls r3, r1, #3 + 8003274: 4651 mov r1, sl + 8003276: ea43 7351 orr.w r3, r3, r1, lsr #29 + 800327a: 4651 mov r1, sl + 800327c: 00ca lsls r2, r1, #3 + 800327e: 4610 mov r0, r2 + 8003280: 4619 mov r1, r3 + 8003282: 4603 mov r3, r0 + 8003284: 4642 mov r2, r8 + 8003286: 189b adds r3, r3, r2 + 8003288: f8c7 30b0 str.w r3, [r7, #176] ; 0xb0 + 800328c: 464b mov r3, r9 + 800328e: 460a mov r2, r1 + 8003290: eb42 0303 adc.w r3, r2, r3 + 8003294: f8c7 30b4 str.w r3, [r7, #180] ; 0xb4 + 8003298: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800329c: 685b ldr r3, [r3, #4] + 800329e: 2200 movs r2, #0 + 80032a0: f8c7 30a8 str.w r3, [r7, #168] ; 0xa8 + 80032a4: f8c7 20ac str.w r2, [r7, #172] ; 0xac + 80032a8: e9d7 122a ldrd r1, r2, [r7, #168] ; 0xa8 + 80032ac: 460b mov r3, r1 + 80032ae: 18db adds r3, r3, r3 + 80032b0: 62bb str r3, [r7, #40] ; 0x28 + 80032b2: 4613 mov r3, r2 + 80032b4: eb42 0303 adc.w r3, r2, r3 + 80032b8: 62fb str r3, [r7, #44] ; 0x2c + 80032ba: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 + 80032be: e9d7 012c ldrd r0, r1, [r7, #176] ; 0xb0 + 80032c2: f7fc ff8d bl 80001e0 <__aeabi_uldivmod> + 80032c6: 4602 mov r2, r0 + 80032c8: 460b mov r3, r1 + 80032ca: 4b0d ldr r3, [pc, #52] ; (8003300 ) + 80032cc: fba3 1302 umull r1, r3, r3, r2 + 80032d0: 095b lsrs r3, r3, #5 + 80032d2: 2164 movs r1, #100 ; 0x64 + 80032d4: fb01 f303 mul.w r3, r1, r3 + 80032d8: 1ad3 subs r3, r2, r3 + 80032da: 00db lsls r3, r3, #3 + 80032dc: 3332 adds r3, #50 ; 0x32 + 80032de: 4a08 ldr r2, [pc, #32] ; (8003300 ) + 80032e0: fba2 2303 umull r2, r3, r2, r3 + 80032e4: 095b lsrs r3, r3, #5 + 80032e6: f003 0207 and.w r2, r3, #7 + 80032ea: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80032ee: 681b ldr r3, [r3, #0] + 80032f0: 4422 add r2, r4 + 80032f2: 609a str r2, [r3, #8] } else { huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); } } - 80032b8: e106 b.n 80034c8 - 80032ba: bf00 nop - 80032bc: 40011000 .word 0x40011000 - 80032c0: 40011400 .word 0x40011400 - 80032c4: 51eb851f .word 0x51eb851f + 80032f4: e106 b.n 8003504 + 80032f6: bf00 nop + 80032f8: 40011000 .word 0x40011000 + 80032fc: 40011400 .word 0x40011400 + 8003300: 51eb851f .word 0x51eb851f huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); - 80032c8: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 80032cc: 2200 movs r2, #0 - 80032ce: f8c7 30a0 str.w r3, [r7, #160] ; 0xa0 - 80032d2: f8c7 20a4 str.w r2, [r7, #164] ; 0xa4 - 80032d6: e9d7 8928 ldrd r8, r9, [r7, #160] ; 0xa0 - 80032da: 4642 mov r2, r8 - 80032dc: 464b mov r3, r9 - 80032de: 1891 adds r1, r2, r2 - 80032e0: 6239 str r1, [r7, #32] - 80032e2: 415b adcs r3, r3 - 80032e4: 627b str r3, [r7, #36] ; 0x24 - 80032e6: e9d7 2308 ldrd r2, r3, [r7, #32] - 80032ea: 4641 mov r1, r8 - 80032ec: 1854 adds r4, r2, r1 - 80032ee: 4649 mov r1, r9 - 80032f0: eb43 0501 adc.w r5, r3, r1 - 80032f4: f04f 0200 mov.w r2, #0 - 80032f8: f04f 0300 mov.w r3, #0 - 80032fc: 00eb lsls r3, r5, #3 - 80032fe: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8003302: 00e2 lsls r2, r4, #3 - 8003304: 4614 mov r4, r2 - 8003306: 461d mov r5, r3 - 8003308: 4643 mov r3, r8 - 800330a: 18e3 adds r3, r4, r3 - 800330c: f8c7 3098 str.w r3, [r7, #152] ; 0x98 - 8003310: 464b mov r3, r9 - 8003312: eb45 0303 adc.w r3, r5, r3 - 8003316: f8c7 309c str.w r3, [r7, #156] ; 0x9c - 800331a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800331e: 685b ldr r3, [r3, #4] - 8003320: 2200 movs r2, #0 - 8003322: f8c7 3090 str.w r3, [r7, #144] ; 0x90 - 8003326: f8c7 2094 str.w r2, [r7, #148] ; 0x94 - 800332a: f04f 0200 mov.w r2, #0 - 800332e: f04f 0300 mov.w r3, #0 - 8003332: e9d7 4524 ldrd r4, r5, [r7, #144] ; 0x90 - 8003336: 4629 mov r1, r5 - 8003338: 008b lsls r3, r1, #2 - 800333a: 4621 mov r1, r4 - 800333c: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8003340: 4621 mov r1, r4 - 8003342: 008a lsls r2, r1, #2 - 8003344: e9d7 0126 ldrd r0, r1, [r7, #152] ; 0x98 - 8003348: f7fc ff4a bl 80001e0 <__aeabi_uldivmod> - 800334c: 4602 mov r2, r0 - 800334e: 460b mov r3, r1 - 8003350: 4b60 ldr r3, [pc, #384] ; (80034d4 ) - 8003352: fba3 2302 umull r2, r3, r3, r2 - 8003356: 095b lsrs r3, r3, #5 - 8003358: 011c lsls r4, r3, #4 - 800335a: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800335e: 2200 movs r2, #0 - 8003360: f8c7 3088 str.w r3, [r7, #136] ; 0x88 - 8003364: f8c7 208c str.w r2, [r7, #140] ; 0x8c - 8003368: e9d7 8922 ldrd r8, r9, [r7, #136] ; 0x88 - 800336c: 4642 mov r2, r8 - 800336e: 464b mov r3, r9 - 8003370: 1891 adds r1, r2, r2 - 8003372: 61b9 str r1, [r7, #24] - 8003374: 415b adcs r3, r3 - 8003376: 61fb str r3, [r7, #28] - 8003378: e9d7 2306 ldrd r2, r3, [r7, #24] - 800337c: 4641 mov r1, r8 - 800337e: 1851 adds r1, r2, r1 - 8003380: 6139 str r1, [r7, #16] - 8003382: 4649 mov r1, r9 - 8003384: 414b adcs r3, r1 - 8003386: 617b str r3, [r7, #20] - 8003388: f04f 0200 mov.w r2, #0 - 800338c: f04f 0300 mov.w r3, #0 - 8003390: e9d7 ab04 ldrd sl, fp, [r7, #16] - 8003394: 4659 mov r1, fp - 8003396: 00cb lsls r3, r1, #3 - 8003398: 4651 mov r1, sl - 800339a: ea43 7351 orr.w r3, r3, r1, lsr #29 - 800339e: 4651 mov r1, sl - 80033a0: 00ca lsls r2, r1, #3 - 80033a2: 4610 mov r0, r2 - 80033a4: 4619 mov r1, r3 - 80033a6: 4603 mov r3, r0 + 8003304: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8003308: 2200 movs r2, #0 + 800330a: f8c7 30a0 str.w r3, [r7, #160] ; 0xa0 + 800330e: f8c7 20a4 str.w r2, [r7, #164] ; 0xa4 + 8003312: e9d7 8928 ldrd r8, r9, [r7, #160] ; 0xa0 + 8003316: 4642 mov r2, r8 + 8003318: 464b mov r3, r9 + 800331a: 1891 adds r1, r2, r2 + 800331c: 6239 str r1, [r7, #32] + 800331e: 415b adcs r3, r3 + 8003320: 627b str r3, [r7, #36] ; 0x24 + 8003322: e9d7 2308 ldrd r2, r3, [r7, #32] + 8003326: 4641 mov r1, r8 + 8003328: 1854 adds r4, r2, r1 + 800332a: 4649 mov r1, r9 + 800332c: eb43 0501 adc.w r5, r3, r1 + 8003330: f04f 0200 mov.w r2, #0 + 8003334: f04f 0300 mov.w r3, #0 + 8003338: 00eb lsls r3, r5, #3 + 800333a: ea43 7354 orr.w r3, r3, r4, lsr #29 + 800333e: 00e2 lsls r2, r4, #3 + 8003340: 4614 mov r4, r2 + 8003342: 461d mov r5, r3 + 8003344: 4643 mov r3, r8 + 8003346: 18e3 adds r3, r4, r3 + 8003348: f8c7 3098 str.w r3, [r7, #152] ; 0x98 + 800334c: 464b mov r3, r9 + 800334e: eb45 0303 adc.w r3, r5, r3 + 8003352: f8c7 309c str.w r3, [r7, #156] ; 0x9c + 8003356: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800335a: 685b ldr r3, [r3, #4] + 800335c: 2200 movs r2, #0 + 800335e: f8c7 3090 str.w r3, [r7, #144] ; 0x90 + 8003362: f8c7 2094 str.w r2, [r7, #148] ; 0x94 + 8003366: f04f 0200 mov.w r2, #0 + 800336a: f04f 0300 mov.w r3, #0 + 800336e: e9d7 4524 ldrd r4, r5, [r7, #144] ; 0x90 + 8003372: 4629 mov r1, r5 + 8003374: 008b lsls r3, r1, #2 + 8003376: 4621 mov r1, r4 + 8003378: ea43 7391 orr.w r3, r3, r1, lsr #30 + 800337c: 4621 mov r1, r4 + 800337e: 008a lsls r2, r1, #2 + 8003380: e9d7 0126 ldrd r0, r1, [r7, #152] ; 0x98 + 8003384: f7fc ff2c bl 80001e0 <__aeabi_uldivmod> + 8003388: 4602 mov r2, r0 + 800338a: 460b mov r3, r1 + 800338c: 4b60 ldr r3, [pc, #384] ; (8003510 ) + 800338e: fba3 2302 umull r2, r3, r3, r2 + 8003392: 095b lsrs r3, r3, #5 + 8003394: 011c lsls r4, r3, #4 + 8003396: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 800339a: 2200 movs r2, #0 + 800339c: f8c7 3088 str.w r3, [r7, #136] ; 0x88 + 80033a0: f8c7 208c str.w r2, [r7, #140] ; 0x8c + 80033a4: e9d7 8922 ldrd r8, r9, [r7, #136] ; 0x88 80033a8: 4642 mov r2, r8 - 80033aa: 189b adds r3, r3, r2 - 80033ac: f8c7 3080 str.w r3, [r7, #128] ; 0x80 - 80033b0: 464b mov r3, r9 - 80033b2: 460a mov r2, r1 - 80033b4: eb42 0303 adc.w r3, r2, r3 - 80033b8: f8c7 3084 str.w r3, [r7, #132] ; 0x84 - 80033bc: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80033c0: 685b ldr r3, [r3, #4] - 80033c2: 2200 movs r2, #0 - 80033c4: 67bb str r3, [r7, #120] ; 0x78 - 80033c6: 67fa str r2, [r7, #124] ; 0x7c - 80033c8: f04f 0200 mov.w r2, #0 - 80033cc: f04f 0300 mov.w r3, #0 - 80033d0: e9d7 891e ldrd r8, r9, [r7, #120] ; 0x78 - 80033d4: 4649 mov r1, r9 - 80033d6: 008b lsls r3, r1, #2 - 80033d8: 4641 mov r1, r8 - 80033da: ea43 7391 orr.w r3, r3, r1, lsr #30 - 80033de: 4641 mov r1, r8 - 80033e0: 008a lsls r2, r1, #2 - 80033e2: e9d7 0120 ldrd r0, r1, [r7, #128] ; 0x80 - 80033e6: f7fc fefb bl 80001e0 <__aeabi_uldivmod> - 80033ea: 4602 mov r2, r0 - 80033ec: 460b mov r3, r1 - 80033ee: 4611 mov r1, r2 - 80033f0: 4b38 ldr r3, [pc, #224] ; (80034d4 ) - 80033f2: fba3 2301 umull r2, r3, r3, r1 - 80033f6: 095b lsrs r3, r3, #5 - 80033f8: 2264 movs r2, #100 ; 0x64 - 80033fa: fb02 f303 mul.w r3, r2, r3 - 80033fe: 1acb subs r3, r1, r3 - 8003400: 011b lsls r3, r3, #4 - 8003402: 3332 adds r3, #50 ; 0x32 - 8003404: 4a33 ldr r2, [pc, #204] ; (80034d4 ) - 8003406: fba2 2303 umull r2, r3, r2, r3 - 800340a: 095b lsrs r3, r3, #5 - 800340c: f003 03f0 and.w r3, r3, #240 ; 0xf0 - 8003410: 441c add r4, r3 - 8003412: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 8003416: 2200 movs r2, #0 - 8003418: 673b str r3, [r7, #112] ; 0x70 - 800341a: 677a str r2, [r7, #116] ; 0x74 - 800341c: e9d7 891c ldrd r8, r9, [r7, #112] ; 0x70 - 8003420: 4642 mov r2, r8 - 8003422: 464b mov r3, r9 - 8003424: 1891 adds r1, r2, r2 - 8003426: 60b9 str r1, [r7, #8] - 8003428: 415b adcs r3, r3 - 800342a: 60fb str r3, [r7, #12] - 800342c: e9d7 2302 ldrd r2, r3, [r7, #8] - 8003430: 4641 mov r1, r8 - 8003432: 1851 adds r1, r2, r1 - 8003434: 6039 str r1, [r7, #0] - 8003436: 4649 mov r1, r9 - 8003438: 414b adcs r3, r1 - 800343a: 607b str r3, [r7, #4] - 800343c: f04f 0200 mov.w r2, #0 - 8003440: f04f 0300 mov.w r3, #0 - 8003444: e9d7 ab00 ldrd sl, fp, [r7] - 8003448: 4659 mov r1, fp - 800344a: 00cb lsls r3, r1, #3 - 800344c: 4651 mov r1, sl - 800344e: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8003452: 4651 mov r1, sl - 8003454: 00ca lsls r2, r1, #3 - 8003456: 4610 mov r0, r2 - 8003458: 4619 mov r1, r3 - 800345a: 4603 mov r3, r0 + 80033aa: 464b mov r3, r9 + 80033ac: 1891 adds r1, r2, r2 + 80033ae: 61b9 str r1, [r7, #24] + 80033b0: 415b adcs r3, r3 + 80033b2: 61fb str r3, [r7, #28] + 80033b4: e9d7 2306 ldrd r2, r3, [r7, #24] + 80033b8: 4641 mov r1, r8 + 80033ba: 1851 adds r1, r2, r1 + 80033bc: 6139 str r1, [r7, #16] + 80033be: 4649 mov r1, r9 + 80033c0: 414b adcs r3, r1 + 80033c2: 617b str r3, [r7, #20] + 80033c4: f04f 0200 mov.w r2, #0 + 80033c8: f04f 0300 mov.w r3, #0 + 80033cc: e9d7 ab04 ldrd sl, fp, [r7, #16] + 80033d0: 4659 mov r1, fp + 80033d2: 00cb lsls r3, r1, #3 + 80033d4: 4651 mov r1, sl + 80033d6: ea43 7351 orr.w r3, r3, r1, lsr #29 + 80033da: 4651 mov r1, sl + 80033dc: 00ca lsls r2, r1, #3 + 80033de: 4610 mov r0, r2 + 80033e0: 4619 mov r1, r3 + 80033e2: 4603 mov r3, r0 + 80033e4: 4642 mov r2, r8 + 80033e6: 189b adds r3, r3, r2 + 80033e8: f8c7 3080 str.w r3, [r7, #128] ; 0x80 + 80033ec: 464b mov r3, r9 + 80033ee: 460a mov r2, r1 + 80033f0: eb42 0303 adc.w r3, r2, r3 + 80033f4: f8c7 3084 str.w r3, [r7, #132] ; 0x84 + 80033f8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80033fc: 685b ldr r3, [r3, #4] + 80033fe: 2200 movs r2, #0 + 8003400: 67bb str r3, [r7, #120] ; 0x78 + 8003402: 67fa str r2, [r7, #124] ; 0x7c + 8003404: f04f 0200 mov.w r2, #0 + 8003408: f04f 0300 mov.w r3, #0 + 800340c: e9d7 891e ldrd r8, r9, [r7, #120] ; 0x78 + 8003410: 4649 mov r1, r9 + 8003412: 008b lsls r3, r1, #2 + 8003414: 4641 mov r1, r8 + 8003416: ea43 7391 orr.w r3, r3, r1, lsr #30 + 800341a: 4641 mov r1, r8 + 800341c: 008a lsls r2, r1, #2 + 800341e: e9d7 0120 ldrd r0, r1, [r7, #128] ; 0x80 + 8003422: f7fc fedd bl 80001e0 <__aeabi_uldivmod> + 8003426: 4602 mov r2, r0 + 8003428: 460b mov r3, r1 + 800342a: 4611 mov r1, r2 + 800342c: 4b38 ldr r3, [pc, #224] ; (8003510 ) + 800342e: fba3 2301 umull r2, r3, r3, r1 + 8003432: 095b lsrs r3, r3, #5 + 8003434: 2264 movs r2, #100 ; 0x64 + 8003436: fb02 f303 mul.w r3, r2, r3 + 800343a: 1acb subs r3, r1, r3 + 800343c: 011b lsls r3, r3, #4 + 800343e: 3332 adds r3, #50 ; 0x32 + 8003440: 4a33 ldr r2, [pc, #204] ; (8003510 ) + 8003442: fba2 2303 umull r2, r3, r2, r3 + 8003446: 095b lsrs r3, r3, #5 + 8003448: f003 03f0 and.w r3, r3, #240 ; 0xf0 + 800344c: 441c add r4, r3 + 800344e: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8003452: 2200 movs r2, #0 + 8003454: 673b str r3, [r7, #112] ; 0x70 + 8003456: 677a str r2, [r7, #116] ; 0x74 + 8003458: e9d7 891c ldrd r8, r9, [r7, #112] ; 0x70 800345c: 4642 mov r2, r8 - 800345e: 189b adds r3, r3, r2 - 8003460: 66bb str r3, [r7, #104] ; 0x68 - 8003462: 464b mov r3, r9 - 8003464: 460a mov r2, r1 - 8003466: eb42 0303 adc.w r3, r2, r3 - 800346a: 66fb str r3, [r7, #108] ; 0x6c - 800346c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8003470: 685b ldr r3, [r3, #4] - 8003472: 2200 movs r2, #0 - 8003474: 663b str r3, [r7, #96] ; 0x60 - 8003476: 667a str r2, [r7, #100] ; 0x64 + 800345e: 464b mov r3, r9 + 8003460: 1891 adds r1, r2, r2 + 8003462: 60b9 str r1, [r7, #8] + 8003464: 415b adcs r3, r3 + 8003466: 60fb str r3, [r7, #12] + 8003468: e9d7 2302 ldrd r2, r3, [r7, #8] + 800346c: 4641 mov r1, r8 + 800346e: 1851 adds r1, r2, r1 + 8003470: 6039 str r1, [r7, #0] + 8003472: 4649 mov r1, r9 + 8003474: 414b adcs r3, r1 + 8003476: 607b str r3, [r7, #4] 8003478: f04f 0200 mov.w r2, #0 800347c: f04f 0300 mov.w r3, #0 - 8003480: e9d7 8918 ldrd r8, r9, [r7, #96] ; 0x60 - 8003484: 4649 mov r1, r9 - 8003486: 008b lsls r3, r1, #2 - 8003488: 4641 mov r1, r8 - 800348a: ea43 7391 orr.w r3, r3, r1, lsr #30 - 800348e: 4641 mov r1, r8 - 8003490: 008a lsls r2, r1, #2 - 8003492: e9d7 011a ldrd r0, r1, [r7, #104] ; 0x68 - 8003496: f7fc fea3 bl 80001e0 <__aeabi_uldivmod> - 800349a: 4602 mov r2, r0 - 800349c: 460b mov r3, r1 - 800349e: 4b0d ldr r3, [pc, #52] ; (80034d4 ) - 80034a0: fba3 1302 umull r1, r3, r3, r2 - 80034a4: 095b lsrs r3, r3, #5 - 80034a6: 2164 movs r1, #100 ; 0x64 - 80034a8: fb01 f303 mul.w r3, r1, r3 - 80034ac: 1ad3 subs r3, r2, r3 - 80034ae: 011b lsls r3, r3, #4 - 80034b0: 3332 adds r3, #50 ; 0x32 - 80034b2: 4a08 ldr r2, [pc, #32] ; (80034d4 ) - 80034b4: fba2 2303 umull r2, r3, r2, r3 - 80034b8: 095b lsrs r3, r3, #5 - 80034ba: f003 020f and.w r2, r3, #15 - 80034be: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80034c2: 681b ldr r3, [r3, #0] - 80034c4: 4422 add r2, r4 - 80034c6: 609a str r2, [r3, #8] + 8003480: e9d7 ab00 ldrd sl, fp, [r7] + 8003484: 4659 mov r1, fp + 8003486: 00cb lsls r3, r1, #3 + 8003488: 4651 mov r1, sl + 800348a: ea43 7351 orr.w r3, r3, r1, lsr #29 + 800348e: 4651 mov r1, sl + 8003490: 00ca lsls r2, r1, #3 + 8003492: 4610 mov r0, r2 + 8003494: 4619 mov r1, r3 + 8003496: 4603 mov r3, r0 + 8003498: 4642 mov r2, r8 + 800349a: 189b adds r3, r3, r2 + 800349c: 66bb str r3, [r7, #104] ; 0x68 + 800349e: 464b mov r3, r9 + 80034a0: 460a mov r2, r1 + 80034a2: eb42 0303 adc.w r3, r2, r3 + 80034a6: 66fb str r3, [r7, #108] ; 0x6c + 80034a8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80034ac: 685b ldr r3, [r3, #4] + 80034ae: 2200 movs r2, #0 + 80034b0: 663b str r3, [r7, #96] ; 0x60 + 80034b2: 667a str r2, [r7, #100] ; 0x64 + 80034b4: f04f 0200 mov.w r2, #0 + 80034b8: f04f 0300 mov.w r3, #0 + 80034bc: e9d7 8918 ldrd r8, r9, [r7, #96] ; 0x60 + 80034c0: 4649 mov r1, r9 + 80034c2: 008b lsls r3, r1, #2 + 80034c4: 4641 mov r1, r8 + 80034c6: ea43 7391 orr.w r3, r3, r1, lsr #30 + 80034ca: 4641 mov r1, r8 + 80034cc: 008a lsls r2, r1, #2 + 80034ce: e9d7 011a ldrd r0, r1, [r7, #104] ; 0x68 + 80034d2: f7fc fe85 bl 80001e0 <__aeabi_uldivmod> + 80034d6: 4602 mov r2, r0 + 80034d8: 460b mov r3, r1 + 80034da: 4b0d ldr r3, [pc, #52] ; (8003510 ) + 80034dc: fba3 1302 umull r1, r3, r3, r2 + 80034e0: 095b lsrs r3, r3, #5 + 80034e2: 2164 movs r1, #100 ; 0x64 + 80034e4: fb01 f303 mul.w r3, r1, r3 + 80034e8: 1ad3 subs r3, r2, r3 + 80034ea: 011b lsls r3, r3, #4 + 80034ec: 3332 adds r3, #50 ; 0x32 + 80034ee: 4a08 ldr r2, [pc, #32] ; (8003510 ) + 80034f0: fba2 2303 umull r2, r3, r2, r3 + 80034f4: 095b lsrs r3, r3, #5 + 80034f6: f003 020f and.w r2, r3, #15 + 80034fa: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80034fe: 681b ldr r3, [r3, #0] + 8003500: 4422 add r2, r4 + 8003502: 609a str r2, [r3, #8] } - 80034c8: bf00 nop - 80034ca: f507 7780 add.w r7, r7, #256 ; 0x100 - 80034ce: 46bd mov sp, r7 - 80034d0: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 80034d4: 51eb851f .word 0x51eb851f + 8003504: bf00 nop + 8003506: f507 7780 add.w r7, r7, #256 ; 0x100 + 800350a: 46bd mov sp, r7 + 800350c: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8003510: 51eb851f .word 0x51eb851f -080034d8 <__NVIC_SetPriority>: +08003514 <__NVIC_SetPriority>: { - 80034d8: b480 push {r7} - 80034da: b083 sub sp, #12 - 80034dc: af00 add r7, sp, #0 - 80034de: 4603 mov r3, r0 - 80034e0: 6039 str r1, [r7, #0] - 80034e2: 71fb strb r3, [r7, #7] + 8003514: b480 push {r7} + 8003516: b083 sub sp, #12 + 8003518: af00 add r7, sp, #0 + 800351a: 4603 mov r3, r0 + 800351c: 6039 str r1, [r7, #0] + 800351e: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 80034e4: f997 3007 ldrsb.w r3, [r7, #7] - 80034e8: 2b00 cmp r3, #0 - 80034ea: db0a blt.n 8003502 <__NVIC_SetPriority+0x2a> + 8003520: f997 3007 ldrsb.w r3, [r7, #7] + 8003524: 2b00 cmp r3, #0 + 8003526: db0a blt.n 800353e <__NVIC_SetPriority+0x2a> NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 80034ec: 683b ldr r3, [r7, #0] - 80034ee: b2da uxtb r2, r3 - 80034f0: 490c ldr r1, [pc, #48] ; (8003524 <__NVIC_SetPriority+0x4c>) - 80034f2: f997 3007 ldrsb.w r3, [r7, #7] - 80034f6: 0112 lsls r2, r2, #4 - 80034f8: b2d2 uxtb r2, r2 - 80034fa: 440b add r3, r1 - 80034fc: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 8003528: 683b ldr r3, [r7, #0] + 800352a: b2da uxtb r2, r3 + 800352c: 490c ldr r1, [pc, #48] ; (8003560 <__NVIC_SetPriority+0x4c>) + 800352e: f997 3007 ldrsb.w r3, [r7, #7] + 8003532: 0112 lsls r2, r2, #4 + 8003534: b2d2 uxtb r2, r2 + 8003536: 440b add r3, r1 + 8003538: f883 2300 strb.w r2, [r3, #768] ; 0x300 } - 8003500: e00a b.n 8003518 <__NVIC_SetPriority+0x40> + 800353c: e00a b.n 8003554 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8003502: 683b ldr r3, [r7, #0] - 8003504: b2da uxtb r2, r3 - 8003506: 4908 ldr r1, [pc, #32] ; (8003528 <__NVIC_SetPriority+0x50>) - 8003508: 79fb ldrb r3, [r7, #7] - 800350a: f003 030f and.w r3, r3, #15 - 800350e: 3b04 subs r3, #4 - 8003510: 0112 lsls r2, r2, #4 - 8003512: b2d2 uxtb r2, r2 - 8003514: 440b add r3, r1 - 8003516: 761a strb r2, [r3, #24] + 800353e: 683b ldr r3, [r7, #0] + 8003540: b2da uxtb r2, r3 + 8003542: 4908 ldr r1, [pc, #32] ; (8003564 <__NVIC_SetPriority+0x50>) + 8003544: 79fb ldrb r3, [r7, #7] + 8003546: f003 030f and.w r3, r3, #15 + 800354a: 3b04 subs r3, #4 + 800354c: 0112 lsls r2, r2, #4 + 800354e: b2d2 uxtb r2, r2 + 8003550: 440b add r3, r1 + 8003552: 761a strb r2, [r3, #24] } - 8003518: bf00 nop - 800351a: 370c adds r7, #12 - 800351c: 46bd mov sp, r7 - 800351e: f85d 7b04 ldr.w r7, [sp], #4 - 8003522: 4770 bx lr - 8003524: e000e100 .word 0xe000e100 - 8003528: e000ed00 .word 0xe000ed00 + 8003554: bf00 nop + 8003556: 370c adds r7, #12 + 8003558: 46bd mov sp, r7 + 800355a: f85d 7b04 ldr.w r7, [sp], #4 + 800355e: 4770 bx lr + 8003560: e000e100 .word 0xe000e100 + 8003564: e000ed00 .word 0xe000ed00 -0800352c : +08003568 : /* SysTick handler implementation that also clears overflow flag. */ #if (USE_CUSTOM_SYSTICK_HANDLER_IMPLEMENTATION == 0) void SysTick_Handler (void) { - 800352c: b580 push {r7, lr} - 800352e: af00 add r7, sp, #0 + 8003568: b580 push {r7, lr} + 800356a: af00 add r7, sp, #0 /* Clear overflow flag */ SysTick->CTRL; - 8003530: 4b05 ldr r3, [pc, #20] ; (8003548 ) - 8003532: 681b ldr r3, [r3, #0] + 800356c: 4b05 ldr r3, [pc, #20] ; (8003584 ) + 800356e: 681b ldr r3, [r3, #0] if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { - 8003534: f001 fd28 bl 8004f88 - 8003538: 4603 mov r3, r0 - 800353a: 2b01 cmp r3, #1 - 800353c: d001 beq.n 8003542 + 8003570: f001 fd28 bl 8004fc4 + 8003574: 4603 mov r3, r0 + 8003576: 2b01 cmp r3, #1 + 8003578: d001 beq.n 800357e /* Call tick handler */ xPortSysTickHandler(); - 800353e: f002 fb13 bl 8005b68 + 800357a: f002 fb0d bl 8005b98 } } - 8003542: bf00 nop - 8003544: bd80 pop {r7, pc} - 8003546: bf00 nop - 8003548: e000e010 .word 0xe000e010 + 800357e: bf00 nop + 8003580: bd80 pop {r7, pc} + 8003582: bf00 nop + 8003584: e000e010 .word 0xe000e010 -0800354c : +08003588 : #endif /* SysTick */ /* Setup SVC to reset value. */ __STATIC_INLINE void SVC_Setup (void) { - 800354c: b580 push {r7, lr} - 800354e: af00 add r7, sp, #0 + 8003588: b580 push {r7, lr} + 800358a: af00 add r7, sp, #0 #if (__ARM_ARCH_7A__ == 0U) /* Service Call interrupt might be configured before kernel start */ /* and when its priority is lower or equal to BASEPRI, svc intruction */ /* causes a Hard Fault. */ NVIC_SetPriority (SVCall_IRQ_NBR, 0U); - 8003550: 2100 movs r1, #0 - 8003552: f06f 0004 mvn.w r0, #4 - 8003556: f7ff ffbf bl 80034d8 <__NVIC_SetPriority> + 800358c: 2100 movs r1, #0 + 800358e: f06f 0004 mvn.w r0, #4 + 8003592: f7ff ffbf bl 8003514 <__NVIC_SetPriority> #endif } - 800355a: bf00 nop - 800355c: bd80 pop {r7, pc} + 8003596: bf00 nop + 8003598: bd80 pop {r7, pc} ... -08003560 : +0800359c : static uint32_t OS_Tick_GetOverflow (void); /* Get OS Tick interval */ static uint32_t OS_Tick_GetInterval (void); /*---------------------------------------------------------------------------*/ osStatus_t osKernelInitialize (void) { - 8003560: b480 push {r7} - 8003562: b083 sub sp, #12 - 8003564: af00 add r7, sp, #0 + 800359c: b480 push {r7} + 800359e: b083 sub sp, #12 + 80035a0: af00 add r7, sp, #0 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 8003566: f3ef 8305 mrs r3, IPSR - 800356a: 603b str r3, [r7, #0] + 80035a2: f3ef 8305 mrs r3, IPSR + 80035a6: 603b str r3, [r7, #0] return(result); - 800356c: 683b ldr r3, [r7, #0] + 80035a8: 683b ldr r3, [r7, #0] osStatus_t stat; if (IS_IRQ()) { - 800356e: 2b00 cmp r3, #0 - 8003570: d003 beq.n 800357a + 80035aa: 2b00 cmp r3, #0 + 80035ac: d003 beq.n 80035b6 stat = osErrorISR; - 8003572: f06f 0305 mvn.w r3, #5 - 8003576: 607b str r3, [r7, #4] - 8003578: e00c b.n 8003594 + 80035ae: f06f 0305 mvn.w r3, #5 + 80035b2: 607b str r3, [r7, #4] + 80035b4: e00c b.n 80035d0 } else { if (KernelState == osKernelInactive) { - 800357a: 4b0a ldr r3, [pc, #40] ; (80035a4 ) - 800357c: 681b ldr r3, [r3, #0] - 800357e: 2b00 cmp r3, #0 - 8003580: d105 bne.n 800358e + 80035b6: 4b0a ldr r3, [pc, #40] ; (80035e0 ) + 80035b8: 681b ldr r3, [r3, #0] + 80035ba: 2b00 cmp r3, #0 + 80035bc: d105 bne.n 80035ca EvrFreeRTOSSetup(0U); #endif #if defined(USE_FreeRTOS_HEAP_5) && (HEAP_5_REGION_SETUP == 1) vPortDefineHeapRegions (configHEAP_5_REGIONS); #endif KernelState = osKernelReady; - 8003582: 4b08 ldr r3, [pc, #32] ; (80035a4 ) - 8003584: 2201 movs r2, #1 - 8003586: 601a str r2, [r3, #0] + 80035be: 4b08 ldr r3, [pc, #32] ; (80035e0 ) + 80035c0: 2201 movs r2, #1 + 80035c2: 601a str r2, [r3, #0] stat = osOK; - 8003588: 2300 movs r3, #0 - 800358a: 607b str r3, [r7, #4] - 800358c: e002 b.n 8003594 + 80035c4: 2300 movs r3, #0 + 80035c6: 607b str r3, [r7, #4] + 80035c8: e002 b.n 80035d0 } else { stat = osError; - 800358e: f04f 33ff mov.w r3, #4294967295 - 8003592: 607b str r3, [r7, #4] + 80035ca: f04f 33ff mov.w r3, #4294967295 + 80035ce: 607b str r3, [r7, #4] } } return (stat); - 8003594: 687b ldr r3, [r7, #4] + 80035d0: 687b ldr r3, [r7, #4] } - 8003596: 4618 mov r0, r3 - 8003598: 370c adds r7, #12 - 800359a: 46bd mov sp, r7 - 800359c: f85d 7b04 ldr.w r7, [sp], #4 - 80035a0: 4770 bx lr - 80035a2: bf00 nop - 80035a4: 2000017c .word 0x2000017c + 80035d2: 4618 mov r0, r3 + 80035d4: 370c adds r7, #12 + 80035d6: 46bd mov sp, r7 + 80035d8: f85d 7b04 ldr.w r7, [sp], #4 + 80035dc: 4770 bx lr + 80035de: bf00 nop + 80035e0: 2000017c .word 0x2000017c -080035a8 : +080035e4 : } return (state); } osStatus_t osKernelStart (void) { - 80035a8: b580 push {r7, lr} - 80035aa: b082 sub sp, #8 - 80035ac: af00 add r7, sp, #0 + 80035e4: b580 push {r7, lr} + 80035e6: b082 sub sp, #8 + 80035e8: af00 add r7, sp, #0 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 80035ae: f3ef 8305 mrs r3, IPSR - 80035b2: 603b str r3, [r7, #0] + 80035ea: f3ef 8305 mrs r3, IPSR + 80035ee: 603b str r3, [r7, #0] return(result); - 80035b4: 683b ldr r3, [r7, #0] + 80035f0: 683b ldr r3, [r7, #0] osStatus_t stat; if (IS_IRQ()) { - 80035b6: 2b00 cmp r3, #0 - 80035b8: d003 beq.n 80035c2 + 80035f2: 2b00 cmp r3, #0 + 80035f4: d003 beq.n 80035fe stat = osErrorISR; - 80035ba: f06f 0305 mvn.w r3, #5 - 80035be: 607b str r3, [r7, #4] - 80035c0: e010 b.n 80035e4 + 80035f6: f06f 0305 mvn.w r3, #5 + 80035fa: 607b str r3, [r7, #4] + 80035fc: e010 b.n 8003620 } else { if (KernelState == osKernelReady) { - 80035c2: 4b0b ldr r3, [pc, #44] ; (80035f0 ) - 80035c4: 681b ldr r3, [r3, #0] - 80035c6: 2b01 cmp r3, #1 - 80035c8: d109 bne.n 80035de + 80035fe: 4b0b ldr r3, [pc, #44] ; (800362c ) + 8003600: 681b ldr r3, [r3, #0] + 8003602: 2b01 cmp r3, #1 + 8003604: d109 bne.n 800361a /* Ensure SVC priority is at the reset value */ SVC_Setup(); - 80035ca: f7ff ffbf bl 800354c + 8003606: f7ff ffbf bl 8003588 /* Change state to enable IRQ masking check */ KernelState = osKernelRunning; - 80035ce: 4b08 ldr r3, [pc, #32] ; (80035f0 ) - 80035d0: 2202 movs r2, #2 - 80035d2: 601a str r2, [r3, #0] + 800360a: 4b08 ldr r3, [pc, #32] ; (800362c ) + 800360c: 2202 movs r2, #2 + 800360e: 601a str r2, [r3, #0] /* Start the kernel scheduler */ vTaskStartScheduler(); - 80035d4: f001 f87c bl 80046d0 + 8003610: f001 f87c bl 800470c stat = osOK; - 80035d8: 2300 movs r3, #0 - 80035da: 607b str r3, [r7, #4] - 80035dc: e002 b.n 80035e4 + 8003614: 2300 movs r3, #0 + 8003616: 607b str r3, [r7, #4] + 8003618: e002 b.n 8003620 } else { stat = osError; - 80035de: f04f 33ff mov.w r3, #4294967295 - 80035e2: 607b str r3, [r7, #4] + 800361a: f04f 33ff mov.w r3, #4294967295 + 800361e: 607b str r3, [r7, #4] } } return (stat); - 80035e4: 687b ldr r3, [r7, #4] + 8003620: 687b ldr r3, [r7, #4] } - 80035e6: 4618 mov r0, r3 - 80035e8: 3708 adds r7, #8 - 80035ea: 46bd mov sp, r7 - 80035ec: bd80 pop {r7, pc} - 80035ee: bf00 nop - 80035f0: 2000017c .word 0x2000017c + 8003622: 4618 mov r0, r3 + 8003624: 3708 adds r7, #8 + 8003626: 46bd mov sp, r7 + 8003628: bd80 pop {r7, pc} + 800362a: bf00 nop + 800362c: 2000017c .word 0x2000017c -080035f4 : +08003630 : return (configCPU_CLOCK_HZ); } /*---------------------------------------------------------------------------*/ osThreadId_t osThreadNew (osThreadFunc_t func, void *argument, const osThreadAttr_t *attr) { - 80035f4: b580 push {r7, lr} - 80035f6: b08e sub sp, #56 ; 0x38 - 80035f8: af04 add r7, sp, #16 - 80035fa: 60f8 str r0, [r7, #12] - 80035fc: 60b9 str r1, [r7, #8] - 80035fe: 607a str r2, [r7, #4] + 8003630: b580 push {r7, lr} + 8003632: b08e sub sp, #56 ; 0x38 + 8003634: af04 add r7, sp, #16 + 8003636: 60f8 str r0, [r7, #12] + 8003638: 60b9 str r1, [r7, #8] + 800363a: 607a str r2, [r7, #4] uint32_t stack; TaskHandle_t hTask; UBaseType_t prio; int32_t mem; hTask = NULL; - 8003600: 2300 movs r3, #0 - 8003602: 613b str r3, [r7, #16] + 800363c: 2300 movs r3, #0 + 800363e: 613b str r3, [r7, #16] __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 8003604: f3ef 8305 mrs r3, IPSR - 8003608: 617b str r3, [r7, #20] + 8003640: f3ef 8305 mrs r3, IPSR + 8003644: 617b str r3, [r7, #20] return(result); - 800360a: 697b ldr r3, [r7, #20] + 8003646: 697b ldr r3, [r7, #20] if (!IS_IRQ() && (func != NULL)) { - 800360c: 2b00 cmp r3, #0 - 800360e: d17e bne.n 800370e - 8003610: 68fb ldr r3, [r7, #12] - 8003612: 2b00 cmp r3, #0 - 8003614: d07b beq.n 800370e + 8003648: 2b00 cmp r3, #0 + 800364a: d17e bne.n 800374a + 800364c: 68fb ldr r3, [r7, #12] + 800364e: 2b00 cmp r3, #0 + 8003650: d07b beq.n 800374a stack = configMINIMAL_STACK_SIZE; - 8003616: 2380 movs r3, #128 ; 0x80 - 8003618: 623b str r3, [r7, #32] + 8003652: 2380 movs r3, #128 ; 0x80 + 8003654: 623b str r3, [r7, #32] prio = (UBaseType_t)osPriorityNormal; - 800361a: 2318 movs r3, #24 - 800361c: 61fb str r3, [r7, #28] + 8003656: 2318 movs r3, #24 + 8003658: 61fb str r3, [r7, #28] name = NULL; - 800361e: 2300 movs r3, #0 - 8003620: 627b str r3, [r7, #36] ; 0x24 + 800365a: 2300 movs r3, #0 + 800365c: 627b str r3, [r7, #36] ; 0x24 mem = -1; - 8003622: f04f 33ff mov.w r3, #4294967295 - 8003626: 61bb str r3, [r7, #24] + 800365e: f04f 33ff mov.w r3, #4294967295 + 8003662: 61bb str r3, [r7, #24] if (attr != NULL) { - 8003628: 687b ldr r3, [r7, #4] - 800362a: 2b00 cmp r3, #0 - 800362c: d045 beq.n 80036ba + 8003664: 687b ldr r3, [r7, #4] + 8003666: 2b00 cmp r3, #0 + 8003668: d045 beq.n 80036f6 if (attr->name != NULL) { - 800362e: 687b ldr r3, [r7, #4] - 8003630: 681b ldr r3, [r3, #0] - 8003632: 2b00 cmp r3, #0 - 8003634: d002 beq.n 800363c + 800366a: 687b ldr r3, [r7, #4] + 800366c: 681b ldr r3, [r3, #0] + 800366e: 2b00 cmp r3, #0 + 8003670: d002 beq.n 8003678 name = attr->name; - 8003636: 687b ldr r3, [r7, #4] - 8003638: 681b ldr r3, [r3, #0] - 800363a: 627b str r3, [r7, #36] ; 0x24 + 8003672: 687b ldr r3, [r7, #4] + 8003674: 681b ldr r3, [r3, #0] + 8003676: 627b str r3, [r7, #36] ; 0x24 } if (attr->priority != osPriorityNone) { - 800363c: 687b ldr r3, [r7, #4] - 800363e: 699b ldr r3, [r3, #24] - 8003640: 2b00 cmp r3, #0 - 8003642: d002 beq.n 800364a + 8003678: 687b ldr r3, [r7, #4] + 800367a: 699b ldr r3, [r3, #24] + 800367c: 2b00 cmp r3, #0 + 800367e: d002 beq.n 8003686 prio = (UBaseType_t)attr->priority; - 8003644: 687b ldr r3, [r7, #4] - 8003646: 699b ldr r3, [r3, #24] - 8003648: 61fb str r3, [r7, #28] + 8003680: 687b ldr r3, [r7, #4] + 8003682: 699b ldr r3, [r3, #24] + 8003684: 61fb str r3, [r7, #28] } if ((prio < osPriorityIdle) || (prio > osPriorityISR) || ((attr->attr_bits & osThreadJoinable) == osThreadJoinable)) { - 800364a: 69fb ldr r3, [r7, #28] - 800364c: 2b00 cmp r3, #0 - 800364e: d008 beq.n 8003662 - 8003650: 69fb ldr r3, [r7, #28] - 8003652: 2b38 cmp r3, #56 ; 0x38 - 8003654: d805 bhi.n 8003662 - 8003656: 687b ldr r3, [r7, #4] - 8003658: 685b ldr r3, [r3, #4] - 800365a: f003 0301 and.w r3, r3, #1 - 800365e: 2b00 cmp r3, #0 - 8003660: d001 beq.n 8003666 + 8003686: 69fb ldr r3, [r7, #28] + 8003688: 2b00 cmp r3, #0 + 800368a: d008 beq.n 800369e + 800368c: 69fb ldr r3, [r7, #28] + 800368e: 2b38 cmp r3, #56 ; 0x38 + 8003690: d805 bhi.n 800369e + 8003692: 687b ldr r3, [r7, #4] + 8003694: 685b ldr r3, [r3, #4] + 8003696: f003 0301 and.w r3, r3, #1 + 800369a: 2b00 cmp r3, #0 + 800369c: d001 beq.n 80036a2 return (NULL); - 8003662: 2300 movs r3, #0 - 8003664: e054 b.n 8003710 + 800369e: 2300 movs r3, #0 + 80036a0: e054 b.n 800374c } if (attr->stack_size > 0U) { - 8003666: 687b ldr r3, [r7, #4] - 8003668: 695b ldr r3, [r3, #20] - 800366a: 2b00 cmp r3, #0 - 800366c: d003 beq.n 8003676 + 80036a2: 687b ldr r3, [r7, #4] + 80036a4: 695b ldr r3, [r3, #20] + 80036a6: 2b00 cmp r3, #0 + 80036a8: d003 beq.n 80036b2 /* In FreeRTOS stack is not in bytes, but in sizeof(StackType_t) which is 4 on ARM ports. */ /* Stack size should be therefore 4 byte aligned in order to avoid division caused side effects */ stack = attr->stack_size / sizeof(StackType_t); - 800366e: 687b ldr r3, [r7, #4] - 8003670: 695b ldr r3, [r3, #20] - 8003672: 089b lsrs r3, r3, #2 - 8003674: 623b str r3, [r7, #32] + 80036aa: 687b ldr r3, [r7, #4] + 80036ac: 695b ldr r3, [r3, #20] + 80036ae: 089b lsrs r3, r3, #2 + 80036b0: 623b str r3, [r7, #32] } if ((attr->cb_mem != NULL) && (attr->cb_size >= sizeof(StaticTask_t)) && - 8003676: 687b ldr r3, [r7, #4] - 8003678: 689b ldr r3, [r3, #8] - 800367a: 2b00 cmp r3, #0 - 800367c: d00e beq.n 800369c - 800367e: 687b ldr r3, [r7, #4] - 8003680: 68db ldr r3, [r3, #12] - 8003682: 2ba7 cmp r3, #167 ; 0xa7 - 8003684: d90a bls.n 800369c + 80036b2: 687b ldr r3, [r7, #4] + 80036b4: 689b ldr r3, [r3, #8] + 80036b6: 2b00 cmp r3, #0 + 80036b8: d00e beq.n 80036d8 + 80036ba: 687b ldr r3, [r7, #4] + 80036bc: 68db ldr r3, [r3, #12] + 80036be: 2ba7 cmp r3, #167 ; 0xa7 + 80036c0: d90a bls.n 80036d8 (attr->stack_mem != NULL) && (attr->stack_size > 0U)) { - 8003686: 687b ldr r3, [r7, #4] - 8003688: 691b ldr r3, [r3, #16] + 80036c2: 687b ldr r3, [r7, #4] + 80036c4: 691b ldr r3, [r3, #16] if ((attr->cb_mem != NULL) && (attr->cb_size >= sizeof(StaticTask_t)) && - 800368a: 2b00 cmp r3, #0 - 800368c: d006 beq.n 800369c + 80036c6: 2b00 cmp r3, #0 + 80036c8: d006 beq.n 80036d8 (attr->stack_mem != NULL) && (attr->stack_size > 0U)) { - 800368e: 687b ldr r3, [r7, #4] - 8003690: 695b ldr r3, [r3, #20] - 8003692: 2b00 cmp r3, #0 - 8003694: d002 beq.n 800369c + 80036ca: 687b ldr r3, [r7, #4] + 80036cc: 695b ldr r3, [r3, #20] + 80036ce: 2b00 cmp r3, #0 + 80036d0: d002 beq.n 80036d8 mem = 1; - 8003696: 2301 movs r3, #1 - 8003698: 61bb str r3, [r7, #24] - 800369a: e010 b.n 80036be + 80036d2: 2301 movs r3, #1 + 80036d4: 61bb str r3, [r7, #24] + 80036d6: e010 b.n 80036fa } else { if ((attr->cb_mem == NULL) && (attr->cb_size == 0U) && (attr->stack_mem == NULL)) { - 800369c: 687b ldr r3, [r7, #4] - 800369e: 689b ldr r3, [r3, #8] - 80036a0: 2b00 cmp r3, #0 - 80036a2: d10c bne.n 80036be - 80036a4: 687b ldr r3, [r7, #4] - 80036a6: 68db ldr r3, [r3, #12] - 80036a8: 2b00 cmp r3, #0 - 80036aa: d108 bne.n 80036be - 80036ac: 687b ldr r3, [r7, #4] - 80036ae: 691b ldr r3, [r3, #16] - 80036b0: 2b00 cmp r3, #0 - 80036b2: d104 bne.n 80036be + 80036d8: 687b ldr r3, [r7, #4] + 80036da: 689b ldr r3, [r3, #8] + 80036dc: 2b00 cmp r3, #0 + 80036de: d10c bne.n 80036fa + 80036e0: 687b ldr r3, [r7, #4] + 80036e2: 68db ldr r3, [r3, #12] + 80036e4: 2b00 cmp r3, #0 + 80036e6: d108 bne.n 80036fa + 80036e8: 687b ldr r3, [r7, #4] + 80036ea: 691b ldr r3, [r3, #16] + 80036ec: 2b00 cmp r3, #0 + 80036ee: d104 bne.n 80036fa mem = 0; - 80036b4: 2300 movs r3, #0 - 80036b6: 61bb str r3, [r7, #24] - 80036b8: e001 b.n 80036be + 80036f0: 2300 movs r3, #0 + 80036f2: 61bb str r3, [r7, #24] + 80036f4: e001 b.n 80036fa } } } else { mem = 0; - 80036ba: 2300 movs r3, #0 - 80036bc: 61bb str r3, [r7, #24] + 80036f6: 2300 movs r3, #0 + 80036f8: 61bb str r3, [r7, #24] } if (mem == 1) { - 80036be: 69bb ldr r3, [r7, #24] - 80036c0: 2b01 cmp r3, #1 - 80036c2: d110 bne.n 80036e6 + 80036fa: 69bb ldr r3, [r7, #24] + 80036fc: 2b01 cmp r3, #1 + 80036fe: d110 bne.n 8003722 #if (configSUPPORT_STATIC_ALLOCATION == 1) hTask = xTaskCreateStatic ((TaskFunction_t)func, name, stack, argument, prio, (StackType_t *)attr->stack_mem, - 80036c4: 687b ldr r3, [r7, #4] - 80036c6: 691b ldr r3, [r3, #16] + 8003700: 687b ldr r3, [r7, #4] + 8003702: 691b ldr r3, [r3, #16] (StaticTask_t *)attr->cb_mem); - 80036c8: 687a ldr r2, [r7, #4] - 80036ca: 6892 ldr r2, [r2, #8] + 8003704: 687a ldr r2, [r7, #4] + 8003706: 6892 ldr r2, [r2, #8] hTask = xTaskCreateStatic ((TaskFunction_t)func, name, stack, argument, prio, (StackType_t *)attr->stack_mem, - 80036cc: 9202 str r2, [sp, #8] - 80036ce: 9301 str r3, [sp, #4] - 80036d0: 69fb ldr r3, [r7, #28] - 80036d2: 9300 str r3, [sp, #0] - 80036d4: 68bb ldr r3, [r7, #8] - 80036d6: 6a3a ldr r2, [r7, #32] - 80036d8: 6a79 ldr r1, [r7, #36] ; 0x24 - 80036da: 68f8 ldr r0, [r7, #12] - 80036dc: f000 fe0c bl 80042f8 - 80036e0: 4603 mov r3, r0 - 80036e2: 613b str r3, [r7, #16] - 80036e4: e013 b.n 800370e + 8003708: 9202 str r2, [sp, #8] + 800370a: 9301 str r3, [sp, #4] + 800370c: 69fb ldr r3, [r7, #28] + 800370e: 9300 str r3, [sp, #0] + 8003710: 68bb ldr r3, [r7, #8] + 8003712: 6a3a ldr r2, [r7, #32] + 8003714: 6a79 ldr r1, [r7, #36] ; 0x24 + 8003716: 68f8 ldr r0, [r7, #12] + 8003718: f000 fe0c bl 8004334 + 800371c: 4603 mov r3, r0 + 800371e: 613b str r3, [r7, #16] + 8003720: e013 b.n 800374a #endif } else { if (mem == 0) { - 80036e6: 69bb ldr r3, [r7, #24] - 80036e8: 2b00 cmp r3, #0 - 80036ea: d110 bne.n 800370e + 8003722: 69bb ldr r3, [r7, #24] + 8003724: 2b00 cmp r3, #0 + 8003726: d110 bne.n 800374a #if (configSUPPORT_DYNAMIC_ALLOCATION == 1) if (xTaskCreate ((TaskFunction_t)func, name, (uint16_t)stack, argument, prio, &hTask) != pdPASS) { - 80036ec: 6a3b ldr r3, [r7, #32] - 80036ee: b29a uxth r2, r3 - 80036f0: f107 0310 add.w r3, r7, #16 - 80036f4: 9301 str r3, [sp, #4] - 80036f6: 69fb ldr r3, [r7, #28] - 80036f8: 9300 str r3, [sp, #0] - 80036fa: 68bb ldr r3, [r7, #8] - 80036fc: 6a79 ldr r1, [r7, #36] ; 0x24 - 80036fe: 68f8 ldr r0, [r7, #12] - 8003700: f000 fe57 bl 80043b2 - 8003704: 4603 mov r3, r0 - 8003706: 2b01 cmp r3, #1 - 8003708: d001 beq.n 800370e + 8003728: 6a3b ldr r3, [r7, #32] + 800372a: b29a uxth r2, r3 + 800372c: f107 0310 add.w r3, r7, #16 + 8003730: 9301 str r3, [sp, #4] + 8003732: 69fb ldr r3, [r7, #28] + 8003734: 9300 str r3, [sp, #0] + 8003736: 68bb ldr r3, [r7, #8] + 8003738: 6a79 ldr r1, [r7, #36] ; 0x24 + 800373a: 68f8 ldr r0, [r7, #12] + 800373c: f000 fe57 bl 80043ee + 8003740: 4603 mov r3, r0 + 8003742: 2b01 cmp r3, #1 + 8003744: d001 beq.n 800374a hTask = NULL; - 800370a: 2300 movs r3, #0 - 800370c: 613b str r3, [r7, #16] + 8003746: 2300 movs r3, #0 + 8003748: 613b str r3, [r7, #16] #endif } } } return ((osThreadId_t)hTask); - 800370e: 693b ldr r3, [r7, #16] + 800374a: 693b ldr r3, [r7, #16] } - 8003710: 4618 mov r0, r3 - 8003712: 3728 adds r7, #40 ; 0x28 - 8003714: 46bd mov sp, r7 - 8003716: bd80 pop {r7, pc} + 800374c: 4618 mov r0, r3 + 800374e: 3728 adds r7, #40 ; 0x28 + 8003750: 46bd mov sp, r7 + 8003752: bd80 pop {r7, pc} -08003718 : +08003754 : /* Return flags before clearing */ return (rflags); } #endif /* (configUSE_OS2_THREAD_FLAGS == 1) */ osStatus_t osDelay (uint32_t ticks) { - 8003718: b580 push {r7, lr} - 800371a: b084 sub sp, #16 - 800371c: af00 add r7, sp, #0 - 800371e: 6078 str r0, [r7, #4] + 8003754: b580 push {r7, lr} + 8003756: b084 sub sp, #16 + 8003758: af00 add r7, sp, #0 + 800375a: 6078 str r0, [r7, #4] __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 8003720: f3ef 8305 mrs r3, IPSR - 8003724: 60bb str r3, [r7, #8] + 800375c: f3ef 8305 mrs r3, IPSR + 8003760: 60bb str r3, [r7, #8] return(result); - 8003726: 68bb ldr r3, [r7, #8] + 8003762: 68bb ldr r3, [r7, #8] osStatus_t stat; if (IS_IRQ()) { - 8003728: 2b00 cmp r3, #0 - 800372a: d003 beq.n 8003734 + 8003764: 2b00 cmp r3, #0 + 8003766: d003 beq.n 8003770 stat = osErrorISR; - 800372c: f06f 0305 mvn.w r3, #5 - 8003730: 60fb str r3, [r7, #12] - 8003732: e007 b.n 8003744 + 8003768: f06f 0305 mvn.w r3, #5 + 800376c: 60fb str r3, [r7, #12] + 800376e: e007 b.n 8003780 } else { stat = osOK; - 8003734: 2300 movs r3, #0 - 8003736: 60fb str r3, [r7, #12] + 8003770: 2300 movs r3, #0 + 8003772: 60fb str r3, [r7, #12] if (ticks != 0U) { - 8003738: 687b ldr r3, [r7, #4] - 800373a: 2b00 cmp r3, #0 - 800373c: d002 beq.n 8003744 + 8003774: 687b ldr r3, [r7, #4] + 8003776: 2b00 cmp r3, #0 + 8003778: d002 beq.n 8003780 vTaskDelay(ticks); - 800373e: 6878 ldr r0, [r7, #4] - 8003740: f000 ff92 bl 8004668 + 800377a: 6878 ldr r0, [r7, #4] + 800377c: f000 ff92 bl 80046a4 } } return (stat); - 8003744: 68fb ldr r3, [r7, #12] + 8003780: 68fb ldr r3, [r7, #12] } - 8003746: 4618 mov r0, r3 - 8003748: 3710 adds r7, #16 - 800374a: 46bd mov sp, r7 - 800374c: bd80 pop {r7, pc} + 8003782: 4618 mov r0, r3 + 8003784: 3710 adds r7, #16 + 8003786: 46bd mov sp, r7 + 8003788: bd80 pop {r7, pc} ... -08003750 : +0800378c : /* vApplicationGetIdleTaskMemory gets called when configSUPPORT_STATIC_ALLOCATION equals to 1 and is required for static memory allocation support. */ __WEAK void vApplicationGetIdleTaskMemory (StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize) { - 8003750: b480 push {r7} - 8003752: b085 sub sp, #20 - 8003754: af00 add r7, sp, #0 - 8003756: 60f8 str r0, [r7, #12] - 8003758: 60b9 str r1, [r7, #8] - 800375a: 607a str r2, [r7, #4] + 800378c: b480 push {r7} + 800378e: b085 sub sp, #20 + 8003790: af00 add r7, sp, #0 + 8003792: 60f8 str r0, [r7, #12] + 8003794: 60b9 str r1, [r7, #8] + 8003796: 607a str r2, [r7, #4] /* Idle task control block and stack */ static StaticTask_t Idle_TCB; static StackType_t Idle_Stack[configMINIMAL_STACK_SIZE]; *ppxIdleTaskTCBBuffer = &Idle_TCB; - 800375c: 68fb ldr r3, [r7, #12] - 800375e: 4a07 ldr r2, [pc, #28] ; (800377c ) - 8003760: 601a str r2, [r3, #0] + 8003798: 68fb ldr r3, [r7, #12] + 800379a: 4a07 ldr r2, [pc, #28] ; (80037b8 ) + 800379c: 601a str r2, [r3, #0] *ppxIdleTaskStackBuffer = &Idle_Stack[0]; - 8003762: 68bb ldr r3, [r7, #8] - 8003764: 4a06 ldr r2, [pc, #24] ; (8003780 ) - 8003766: 601a str r2, [r3, #0] + 800379e: 68bb ldr r3, [r7, #8] + 80037a0: 4a06 ldr r2, [pc, #24] ; (80037bc ) + 80037a2: 601a str r2, [r3, #0] *pulIdleTaskStackSize = (uint32_t)configMINIMAL_STACK_SIZE; - 8003768: 687b ldr r3, [r7, #4] - 800376a: 2280 movs r2, #128 ; 0x80 - 800376c: 601a str r2, [r3, #0] + 80037a4: 687b ldr r3, [r7, #4] + 80037a6: 2280 movs r2, #128 ; 0x80 + 80037a8: 601a str r2, [r3, #0] } - 800376e: bf00 nop - 8003770: 3714 adds r7, #20 - 8003772: 46bd mov sp, r7 - 8003774: f85d 7b04 ldr.w r7, [sp], #4 - 8003778: 4770 bx lr - 800377a: bf00 nop - 800377c: 20000180 .word 0x20000180 - 8003780: 20000228 .word 0x20000228 + 80037aa: bf00 nop + 80037ac: 3714 adds r7, #20 + 80037ae: 46bd mov sp, r7 + 80037b0: f85d 7b04 ldr.w r7, [sp], #4 + 80037b4: 4770 bx lr + 80037b6: bf00 nop + 80037b8: 20000180 .word 0x20000180 + 80037bc: 20000228 .word 0x20000228 -08003784 : +080037c0 : /* vApplicationGetTimerTaskMemory gets called when configSUPPORT_STATIC_ALLOCATION equals to 1 and is required for static memory allocation support. */ __WEAK void vApplicationGetTimerTaskMemory (StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize) { - 8003784: b480 push {r7} - 8003786: b085 sub sp, #20 - 8003788: af00 add r7, sp, #0 - 800378a: 60f8 str r0, [r7, #12] - 800378c: 60b9 str r1, [r7, #8] - 800378e: 607a str r2, [r7, #4] + 80037c0: b480 push {r7} + 80037c2: b085 sub sp, #20 + 80037c4: af00 add r7, sp, #0 + 80037c6: 60f8 str r0, [r7, #12] + 80037c8: 60b9 str r1, [r7, #8] + 80037ca: 607a str r2, [r7, #4] /* Timer task control block and stack */ static StaticTask_t Timer_TCB; static StackType_t Timer_Stack[configTIMER_TASK_STACK_DEPTH]; *ppxTimerTaskTCBBuffer = &Timer_TCB; - 8003790: 68fb ldr r3, [r7, #12] - 8003792: 4a07 ldr r2, [pc, #28] ; (80037b0 ) - 8003794: 601a str r2, [r3, #0] + 80037cc: 68fb ldr r3, [r7, #12] + 80037ce: 4a07 ldr r2, [pc, #28] ; (80037ec ) + 80037d0: 601a str r2, [r3, #0] *ppxTimerTaskStackBuffer = &Timer_Stack[0]; - 8003796: 68bb ldr r3, [r7, #8] - 8003798: 4a06 ldr r2, [pc, #24] ; (80037b4 ) - 800379a: 601a str r2, [r3, #0] + 80037d2: 68bb ldr r3, [r7, #8] + 80037d4: 4a06 ldr r2, [pc, #24] ; (80037f0 ) + 80037d6: 601a str r2, [r3, #0] *pulTimerTaskStackSize = (uint32_t)configTIMER_TASK_STACK_DEPTH; - 800379c: 687b ldr r3, [r7, #4] - 800379e: f44f 7280 mov.w r2, #256 ; 0x100 - 80037a2: 601a str r2, [r3, #0] + 80037d8: 687b ldr r3, [r7, #4] + 80037da: f44f 7280 mov.w r2, #256 ; 0x100 + 80037de: 601a str r2, [r3, #0] } - 80037a4: bf00 nop - 80037a6: 3714 adds r7, #20 - 80037a8: 46bd mov sp, r7 - 80037aa: f85d 7b04 ldr.w r7, [sp], #4 - 80037ae: 4770 bx lr - 80037b0: 20000428 .word 0x20000428 - 80037b4: 200004d0 .word 0x200004d0 + 80037e0: bf00 nop + 80037e2: 3714 adds r7, #20 + 80037e4: 46bd mov sp, r7 + 80037e6: f85d 7b04 ldr.w r7, [sp], #4 + 80037ea: 4770 bx lr + 80037ec: 20000428 .word 0x20000428 + 80037f0: 200004d0 .word 0x200004d0 -080037b8 : +080037f4 : /*----------------------------------------------------------- * PUBLIC LIST API documented in list.h *----------------------------------------------------------*/ void vListInitialise( List_t * const pxList ) { - 80037b8: b480 push {r7} - 80037ba: b083 sub sp, #12 - 80037bc: af00 add r7, sp, #0 - 80037be: 6078 str r0, [r7, #4] + 80037f4: b480 push {r7} + 80037f6: b083 sub sp, #12 + 80037f8: af00 add r7, sp, #0 + 80037fa: 6078 str r0, [r7, #4] /* The list structure contains a list item which is used to mark the end of the list. To initialise the list the list end is inserted as the only list entry. */ pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 80037c0: 687b ldr r3, [r7, #4] - 80037c2: f103 0208 add.w r2, r3, #8 - 80037c6: 687b ldr r3, [r7, #4] - 80037c8: 605a str r2, [r3, #4] + 80037fc: 687b ldr r3, [r7, #4] + 80037fe: f103 0208 add.w r2, r3, #8 + 8003802: 687b ldr r3, [r7, #4] + 8003804: 605a str r2, [r3, #4] /* The list end value is the highest possible value in the list to ensure it remains at the end of the list. */ pxList->xListEnd.xItemValue = portMAX_DELAY; - 80037ca: 687b ldr r3, [r7, #4] - 80037cc: f04f 32ff mov.w r2, #4294967295 - 80037d0: 609a str r2, [r3, #8] + 8003806: 687b ldr r3, [r7, #4] + 8003808: f04f 32ff mov.w r2, #4294967295 + 800380c: 609a str r2, [r3, #8] /* The list end next and previous pointers point to itself so we know when the list is empty. */ pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 80037d2: 687b ldr r3, [r7, #4] - 80037d4: f103 0208 add.w r2, r3, #8 - 80037d8: 687b ldr r3, [r7, #4] - 80037da: 60da str r2, [r3, #12] + 800380e: 687b ldr r3, [r7, #4] + 8003810: f103 0208 add.w r2, r3, #8 + 8003814: 687b ldr r3, [r7, #4] + 8003816: 60da str r2, [r3, #12] pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 80037dc: 687b ldr r3, [r7, #4] - 80037de: f103 0208 add.w r2, r3, #8 - 80037e2: 687b ldr r3, [r7, #4] - 80037e4: 611a str r2, [r3, #16] + 8003818: 687b ldr r3, [r7, #4] + 800381a: f103 0208 add.w r2, r3, #8 + 800381e: 687b ldr r3, [r7, #4] + 8003820: 611a str r2, [r3, #16] pxList->uxNumberOfItems = ( UBaseType_t ) 0U; - 80037e6: 687b ldr r3, [r7, #4] - 80037e8: 2200 movs r2, #0 - 80037ea: 601a str r2, [r3, #0] + 8003822: 687b ldr r3, [r7, #4] + 8003824: 2200 movs r2, #0 + 8003826: 601a str r2, [r3, #0] /* Write known values into the list if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); } - 80037ec: bf00 nop - 80037ee: 370c adds r7, #12 - 80037f0: 46bd mov sp, r7 - 80037f2: f85d 7b04 ldr.w r7, [sp], #4 - 80037f6: 4770 bx lr + 8003828: bf00 nop + 800382a: 370c adds r7, #12 + 800382c: 46bd mov sp, r7 + 800382e: f85d 7b04 ldr.w r7, [sp], #4 + 8003832: 4770 bx lr -080037f8 : +08003834 : /*-----------------------------------------------------------*/ void vListInitialiseItem( ListItem_t * const pxItem ) { - 80037f8: b480 push {r7} - 80037fa: b083 sub sp, #12 - 80037fc: af00 add r7, sp, #0 - 80037fe: 6078 str r0, [r7, #4] + 8003834: b480 push {r7} + 8003836: b083 sub sp, #12 + 8003838: af00 add r7, sp, #0 + 800383a: 6078 str r0, [r7, #4] /* Make sure the list item is not recorded as being on a list. */ pxItem->pxContainer = NULL; - 8003800: 687b ldr r3, [r7, #4] - 8003802: 2200 movs r2, #0 - 8003804: 611a str r2, [r3, #16] + 800383c: 687b ldr r3, [r7, #4] + 800383e: 2200 movs r2, #0 + 8003840: 611a str r2, [r3, #16] /* Write known values into the list item if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); } - 8003806: bf00 nop - 8003808: 370c adds r7, #12 - 800380a: 46bd mov sp, r7 - 800380c: f85d 7b04 ldr.w r7, [sp], #4 - 8003810: 4770 bx lr + 8003842: bf00 nop + 8003844: 370c adds r7, #12 + 8003846: 46bd mov sp, r7 + 8003848: f85d 7b04 ldr.w r7, [sp], #4 + 800384c: 4770 bx lr -08003812 : +0800384e : /*-----------------------------------------------------------*/ void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) { - 8003812: b480 push {r7} - 8003814: b085 sub sp, #20 - 8003816: af00 add r7, sp, #0 - 8003818: 6078 str r0, [r7, #4] - 800381a: 6039 str r1, [r7, #0] + 800384e: b480 push {r7} + 8003850: b085 sub sp, #20 + 8003852: af00 add r7, sp, #0 + 8003854: 6078 str r0, [r7, #4] + 8003856: 6039 str r1, [r7, #0] ListItem_t * const pxIndex = pxList->pxIndex; - 800381c: 687b ldr r3, [r7, #4] - 800381e: 685b ldr r3, [r3, #4] - 8003820: 60fb str r3, [r7, #12] + 8003858: 687b ldr r3, [r7, #4] + 800385a: 685b ldr r3, [r3, #4] + 800385c: 60fb str r3, [r7, #12] listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); /* Insert a new list item into pxList, but rather than sort the list, makes the new list item the last item to be removed by a call to listGET_OWNER_OF_NEXT_ENTRY(). */ pxNewListItem->pxNext = pxIndex; - 8003822: 683b ldr r3, [r7, #0] - 8003824: 68fa ldr r2, [r7, #12] - 8003826: 605a str r2, [r3, #4] + 800385e: 683b ldr r3, [r7, #0] + 8003860: 68fa ldr r2, [r7, #12] + 8003862: 605a str r2, [r3, #4] pxNewListItem->pxPrevious = pxIndex->pxPrevious; - 8003828: 68fb ldr r3, [r7, #12] - 800382a: 689a ldr r2, [r3, #8] - 800382c: 683b ldr r3, [r7, #0] - 800382e: 609a str r2, [r3, #8] + 8003864: 68fb ldr r3, [r7, #12] + 8003866: 689a ldr r2, [r3, #8] + 8003868: 683b ldr r3, [r7, #0] + 800386a: 609a str r2, [r3, #8] /* Only used during decision coverage testing. */ mtCOVERAGE_TEST_DELAY(); pxIndex->pxPrevious->pxNext = pxNewListItem; - 8003830: 68fb ldr r3, [r7, #12] - 8003832: 689b ldr r3, [r3, #8] - 8003834: 683a ldr r2, [r7, #0] - 8003836: 605a str r2, [r3, #4] + 800386c: 68fb ldr r3, [r7, #12] + 800386e: 689b ldr r3, [r3, #8] + 8003870: 683a ldr r2, [r7, #0] + 8003872: 605a str r2, [r3, #4] pxIndex->pxPrevious = pxNewListItem; - 8003838: 68fb ldr r3, [r7, #12] - 800383a: 683a ldr r2, [r7, #0] - 800383c: 609a str r2, [r3, #8] + 8003874: 68fb ldr r3, [r7, #12] + 8003876: 683a ldr r2, [r7, #0] + 8003878: 609a str r2, [r3, #8] /* Remember which list the item is in. */ pxNewListItem->pxContainer = pxList; - 800383e: 683b ldr r3, [r7, #0] - 8003840: 687a ldr r2, [r7, #4] - 8003842: 611a str r2, [r3, #16] + 800387a: 683b ldr r3, [r7, #0] + 800387c: 687a ldr r2, [r7, #4] + 800387e: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )++; - 8003844: 687b ldr r3, [r7, #4] - 8003846: 681b ldr r3, [r3, #0] - 8003848: 1c5a adds r2, r3, #1 - 800384a: 687b ldr r3, [r7, #4] - 800384c: 601a str r2, [r3, #0] + 8003880: 687b ldr r3, [r7, #4] + 8003882: 681b ldr r3, [r3, #0] + 8003884: 1c5a adds r2, r3, #1 + 8003886: 687b ldr r3, [r7, #4] + 8003888: 601a str r2, [r3, #0] } - 800384e: bf00 nop - 8003850: 3714 adds r7, #20 - 8003852: 46bd mov sp, r7 - 8003854: f85d 7b04 ldr.w r7, [sp], #4 - 8003858: 4770 bx lr + 800388a: bf00 nop + 800388c: 3714 adds r7, #20 + 800388e: 46bd mov sp, r7 + 8003890: f85d 7b04 ldr.w r7, [sp], #4 + 8003894: 4770 bx lr -0800385a : +08003896 : /*-----------------------------------------------------------*/ void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) { - 800385a: b480 push {r7} - 800385c: b085 sub sp, #20 - 800385e: af00 add r7, sp, #0 - 8003860: 6078 str r0, [r7, #4] - 8003862: 6039 str r1, [r7, #0] + 8003896: b480 push {r7} + 8003898: b085 sub sp, #20 + 800389a: af00 add r7, sp, #0 + 800389c: 6078 str r0, [r7, #4] + 800389e: 6039 str r1, [r7, #0] ListItem_t *pxIterator; const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; - 8003864: 683b ldr r3, [r7, #0] - 8003866: 681b ldr r3, [r3, #0] - 8003868: 60bb str r3, [r7, #8] + 80038a0: 683b ldr r3, [r7, #0] + 80038a2: 681b ldr r3, [r3, #0] + 80038a4: 60bb str r3, [r7, #8] new list item should be placed after it. This ensures that TCBs which are stored in ready lists (all of which have the same xItemValue value) get a share of the CPU. However, if the xItemValue is the same as the back marker the iteration loop below will not end. Therefore the value is checked first, and the algorithm slightly modified if necessary. */ if( xValueOfInsertion == portMAX_DELAY ) - 800386a: 68bb ldr r3, [r7, #8] - 800386c: f1b3 3fff cmp.w r3, #4294967295 - 8003870: d103 bne.n 800387a + 80038a6: 68bb ldr r3, [r7, #8] + 80038a8: f1b3 3fff cmp.w r3, #4294967295 + 80038ac: d103 bne.n 80038b6 { pxIterator = pxList->xListEnd.pxPrevious; - 8003872: 687b ldr r3, [r7, #4] - 8003874: 691b ldr r3, [r3, #16] - 8003876: 60fb str r3, [r7, #12] - 8003878: e00c b.n 8003894 + 80038ae: 687b ldr r3, [r7, #4] + 80038b0: 691b ldr r3, [r3, #16] + 80038b2: 60fb str r3, [r7, #12] + 80038b4: e00c b.n 80038d0 4) Using a queue or semaphore before it has been initialised or before the scheduler has been started (are interrupts firing before vTaskStartScheduler() has been called?). **********************************************************************/ for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ - 800387a: 687b ldr r3, [r7, #4] - 800387c: 3308 adds r3, #8 - 800387e: 60fb str r3, [r7, #12] - 8003880: e002 b.n 8003888 - 8003882: 68fb ldr r3, [r7, #12] - 8003884: 685b ldr r3, [r3, #4] - 8003886: 60fb str r3, [r7, #12] - 8003888: 68fb ldr r3, [r7, #12] - 800388a: 685b ldr r3, [r3, #4] - 800388c: 681b ldr r3, [r3, #0] - 800388e: 68ba ldr r2, [r7, #8] - 8003890: 429a cmp r2, r3 - 8003892: d2f6 bcs.n 8003882 + 80038b6: 687b ldr r3, [r7, #4] + 80038b8: 3308 adds r3, #8 + 80038ba: 60fb str r3, [r7, #12] + 80038bc: e002 b.n 80038c4 + 80038be: 68fb ldr r3, [r7, #12] + 80038c0: 685b ldr r3, [r3, #4] + 80038c2: 60fb str r3, [r7, #12] + 80038c4: 68fb ldr r3, [r7, #12] + 80038c6: 685b ldr r3, [r3, #4] + 80038c8: 681b ldr r3, [r3, #0] + 80038ca: 68ba ldr r2, [r7, #8] + 80038cc: 429a cmp r2, r3 + 80038ce: d2f6 bcs.n 80038be /* There is nothing to do here, just iterating to the wanted insertion position. */ } } pxNewListItem->pxNext = pxIterator->pxNext; - 8003894: 68fb ldr r3, [r7, #12] - 8003896: 685a ldr r2, [r3, #4] - 8003898: 683b ldr r3, [r7, #0] - 800389a: 605a str r2, [r3, #4] + 80038d0: 68fb ldr r3, [r7, #12] + 80038d2: 685a ldr r2, [r3, #4] + 80038d4: 683b ldr r3, [r7, #0] + 80038d6: 605a str r2, [r3, #4] pxNewListItem->pxNext->pxPrevious = pxNewListItem; - 800389c: 683b ldr r3, [r7, #0] - 800389e: 685b ldr r3, [r3, #4] - 80038a0: 683a ldr r2, [r7, #0] - 80038a2: 609a str r2, [r3, #8] + 80038d8: 683b ldr r3, [r7, #0] + 80038da: 685b ldr r3, [r3, #4] + 80038dc: 683a ldr r2, [r7, #0] + 80038de: 609a str r2, [r3, #8] pxNewListItem->pxPrevious = pxIterator; - 80038a4: 683b ldr r3, [r7, #0] - 80038a6: 68fa ldr r2, [r7, #12] - 80038a8: 609a str r2, [r3, #8] + 80038e0: 683b ldr r3, [r7, #0] + 80038e2: 68fa ldr r2, [r7, #12] + 80038e4: 609a str r2, [r3, #8] pxIterator->pxNext = pxNewListItem; - 80038aa: 68fb ldr r3, [r7, #12] - 80038ac: 683a ldr r2, [r7, #0] - 80038ae: 605a str r2, [r3, #4] + 80038e6: 68fb ldr r3, [r7, #12] + 80038e8: 683a ldr r2, [r7, #0] + 80038ea: 605a str r2, [r3, #4] /* Remember which list the item is in. This allows fast removal of the item later. */ pxNewListItem->pxContainer = pxList; - 80038b0: 683b ldr r3, [r7, #0] - 80038b2: 687a ldr r2, [r7, #4] - 80038b4: 611a str r2, [r3, #16] + 80038ec: 683b ldr r3, [r7, #0] + 80038ee: 687a ldr r2, [r7, #4] + 80038f0: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )++; - 80038b6: 687b ldr r3, [r7, #4] - 80038b8: 681b ldr r3, [r3, #0] - 80038ba: 1c5a adds r2, r3, #1 - 80038bc: 687b ldr r3, [r7, #4] - 80038be: 601a str r2, [r3, #0] + 80038f2: 687b ldr r3, [r7, #4] + 80038f4: 681b ldr r3, [r3, #0] + 80038f6: 1c5a adds r2, r3, #1 + 80038f8: 687b ldr r3, [r7, #4] + 80038fa: 601a str r2, [r3, #0] } - 80038c0: bf00 nop - 80038c2: 3714 adds r7, #20 - 80038c4: 46bd mov sp, r7 - 80038c6: f85d 7b04 ldr.w r7, [sp], #4 - 80038ca: 4770 bx lr + 80038fc: bf00 nop + 80038fe: 3714 adds r7, #20 + 8003900: 46bd mov sp, r7 + 8003902: f85d 7b04 ldr.w r7, [sp], #4 + 8003906: 4770 bx lr -080038cc : +08003908 : /*-----------------------------------------------------------*/ UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) { - 80038cc: b480 push {r7} - 80038ce: b085 sub sp, #20 - 80038d0: af00 add r7, sp, #0 - 80038d2: 6078 str r0, [r7, #4] + 8003908: b480 push {r7} + 800390a: b085 sub sp, #20 + 800390c: af00 add r7, sp, #0 + 800390e: 6078 str r0, [r7, #4] /* The list item knows which list it is in. Obtain the list from the list item. */ List_t * const pxList = pxItemToRemove->pxContainer; - 80038d4: 687b ldr r3, [r7, #4] - 80038d6: 691b ldr r3, [r3, #16] - 80038d8: 60fb str r3, [r7, #12] + 8003910: 687b ldr r3, [r7, #4] + 8003912: 691b ldr r3, [r3, #16] + 8003914: 60fb str r3, [r7, #12] pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; - 80038da: 687b ldr r3, [r7, #4] - 80038dc: 685b ldr r3, [r3, #4] - 80038de: 687a ldr r2, [r7, #4] - 80038e0: 6892 ldr r2, [r2, #8] - 80038e2: 609a str r2, [r3, #8] + 8003916: 687b ldr r3, [r7, #4] + 8003918: 685b ldr r3, [r3, #4] + 800391a: 687a ldr r2, [r7, #4] + 800391c: 6892 ldr r2, [r2, #8] + 800391e: 609a str r2, [r3, #8] pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; - 80038e4: 687b ldr r3, [r7, #4] - 80038e6: 689b ldr r3, [r3, #8] - 80038e8: 687a ldr r2, [r7, #4] - 80038ea: 6852 ldr r2, [r2, #4] - 80038ec: 605a str r2, [r3, #4] + 8003920: 687b ldr r3, [r7, #4] + 8003922: 689b ldr r3, [r3, #8] + 8003924: 687a ldr r2, [r7, #4] + 8003926: 6852 ldr r2, [r2, #4] + 8003928: 605a str r2, [r3, #4] /* Only used during decision coverage testing. */ mtCOVERAGE_TEST_DELAY(); /* Make sure the index is left pointing to a valid item. */ if( pxList->pxIndex == pxItemToRemove ) - 80038ee: 68fb ldr r3, [r7, #12] - 80038f0: 685b ldr r3, [r3, #4] - 80038f2: 687a ldr r2, [r7, #4] - 80038f4: 429a cmp r2, r3 - 80038f6: d103 bne.n 8003900 + 800392a: 68fb ldr r3, [r7, #12] + 800392c: 685b ldr r3, [r3, #4] + 800392e: 687a ldr r2, [r7, #4] + 8003930: 429a cmp r2, r3 + 8003932: d103 bne.n 800393c { pxList->pxIndex = pxItemToRemove->pxPrevious; - 80038f8: 687b ldr r3, [r7, #4] - 80038fa: 689a ldr r2, [r3, #8] - 80038fc: 68fb ldr r3, [r7, #12] - 80038fe: 605a str r2, [r3, #4] + 8003934: 687b ldr r3, [r7, #4] + 8003936: 689a ldr r2, [r3, #8] + 8003938: 68fb ldr r3, [r7, #12] + 800393a: 605a str r2, [r3, #4] else { mtCOVERAGE_TEST_MARKER(); } pxItemToRemove->pxContainer = NULL; - 8003900: 687b ldr r3, [r7, #4] - 8003902: 2200 movs r2, #0 - 8003904: 611a str r2, [r3, #16] + 800393c: 687b ldr r3, [r7, #4] + 800393e: 2200 movs r2, #0 + 8003940: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )--; - 8003906: 68fb ldr r3, [r7, #12] - 8003908: 681b ldr r3, [r3, #0] - 800390a: 1e5a subs r2, r3, #1 - 800390c: 68fb ldr r3, [r7, #12] - 800390e: 601a str r2, [r3, #0] + 8003942: 68fb ldr r3, [r7, #12] + 8003944: 681b ldr r3, [r3, #0] + 8003946: 1e5a subs r2, r3, #1 + 8003948: 68fb ldr r3, [r7, #12] + 800394a: 601a str r2, [r3, #0] return pxList->uxNumberOfItems; - 8003910: 68fb ldr r3, [r7, #12] - 8003912: 681b ldr r3, [r3, #0] + 800394c: 68fb ldr r3, [r7, #12] + 800394e: 681b ldr r3, [r3, #0] } - 8003914: 4618 mov r0, r3 - 8003916: 3714 adds r7, #20 - 8003918: 46bd mov sp, r7 - 800391a: f85d 7b04 ldr.w r7, [sp], #4 - 800391e: 4770 bx lr + 8003950: 4618 mov r0, r3 + 8003952: 3714 adds r7, #20 + 8003954: 46bd mov sp, r7 + 8003956: f85d 7b04 ldr.w r7, [sp], #4 + 800395a: 4770 bx lr -08003920 : +0800395c : } \ taskEXIT_CRITICAL() /*-----------------------------------------------------------*/ BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) { - 8003920: b580 push {r7, lr} - 8003922: b084 sub sp, #16 - 8003924: af00 add r7, sp, #0 - 8003926: 6078 str r0, [r7, #4] - 8003928: 6039 str r1, [r7, #0] + 800395c: b580 push {r7, lr} + 800395e: b084 sub sp, #16 + 8003960: af00 add r7, sp, #0 + 8003962: 6078 str r0, [r7, #4] + 8003964: 6039 str r1, [r7, #0] Queue_t * const pxQueue = xQueue; - 800392a: 687b ldr r3, [r7, #4] - 800392c: 60fb str r3, [r7, #12] + 8003966: 687b ldr r3, [r7, #4] + 8003968: 60fb str r3, [r7, #12] configASSERT( pxQueue ); - 800392e: 68fb ldr r3, [r7, #12] - 8003930: 2b00 cmp r3, #0 - 8003932: d10a bne.n 800394a + 800396a: 68fb ldr r3, [r7, #12] + 800396c: 2b00 cmp r3, #0 + 800396e: d10a bne.n 8003986 portFORCE_INLINE static void vPortRaiseBASEPRI( void ) { uint32_t ulNewBASEPRI; __asm volatile - 8003934: f04f 0350 mov.w r3, #80 ; 0x50 - 8003938: f383 8811 msr BASEPRI, r3 - 800393c: f3bf 8f6f isb sy - 8003940: f3bf 8f4f dsb sy - 8003944: 60bb str r3, [r7, #8] + 8003970: f04f 0350 mov.w r3, #80 ; 0x50 + 8003974: f383 8811 msr BASEPRI, r3 + 8003978: f3bf 8f6f isb sy + 800397c: f3bf 8f4f dsb sy + 8003980: 60bb str r3, [r7, #8] " msr basepri, %0 \n" \ " isb \n" \ " dsb \n" \ :"=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" ); } - 8003946: bf00 nop - 8003948: e7fe b.n 8003948 + 8003982: bf00 nop + 8003984: e7fe b.n 8003984 taskENTER_CRITICAL(); - 800394a: f002 f87b bl 8005a44 + 8003986: f002 f875 bl 8005a74 { pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - 800394e: 68fb ldr r3, [r7, #12] - 8003950: 681a ldr r2, [r3, #0] - 8003952: 68fb ldr r3, [r7, #12] - 8003954: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003956: 68f9 ldr r1, [r7, #12] - 8003958: 6c09 ldr r1, [r1, #64] ; 0x40 - 800395a: fb01 f303 mul.w r3, r1, r3 - 800395e: 441a add r2, r3 - 8003960: 68fb ldr r3, [r7, #12] - 8003962: 609a str r2, [r3, #8] - pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; - 8003964: 68fb ldr r3, [r7, #12] - 8003966: 2200 movs r2, #0 - 8003968: 639a str r2, [r3, #56] ; 0x38 - pxQueue->pcWriteTo = pxQueue->pcHead; - 800396a: 68fb ldr r3, [r7, #12] - 800396c: 681a ldr r2, [r3, #0] - 800396e: 68fb ldr r3, [r7, #12] - 8003970: 605a str r2, [r3, #4] - pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - 8003972: 68fb ldr r3, [r7, #12] - 8003974: 681a ldr r2, [r3, #0] - 8003976: 68fb ldr r3, [r7, #12] - 8003978: 6bdb ldr r3, [r3, #60] ; 0x3c - 800397a: 3b01 subs r3, #1 - 800397c: 68f9 ldr r1, [r7, #12] - 800397e: 6c09 ldr r1, [r1, #64] ; 0x40 - 8003980: fb01 f303 mul.w r3, r1, r3 - 8003984: 441a add r2, r3 - 8003986: 68fb ldr r3, [r7, #12] - 8003988: 60da str r2, [r3, #12] - pxQueue->cRxLock = queueUNLOCKED; 800398a: 68fb ldr r3, [r7, #12] - 800398c: 22ff movs r2, #255 ; 0xff - 800398e: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 800398c: 681a ldr r2, [r3, #0] + 800398e: 68fb ldr r3, [r7, #12] + 8003990: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003992: 68f9 ldr r1, [r7, #12] + 8003994: 6c09 ldr r1, [r1, #64] ; 0x40 + 8003996: fb01 f303 mul.w r3, r1, r3 + 800399a: 441a add r2, r3 + 800399c: 68fb ldr r3, [r7, #12] + 800399e: 609a str r2, [r3, #8] + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; + 80039a0: 68fb ldr r3, [r7, #12] + 80039a2: 2200 movs r2, #0 + 80039a4: 639a str r2, [r3, #56] ; 0x38 + pxQueue->pcWriteTo = pxQueue->pcHead; + 80039a6: 68fb ldr r3, [r7, #12] + 80039a8: 681a ldr r2, [r3, #0] + 80039aa: 68fb ldr r3, [r7, #12] + 80039ac: 605a str r2, [r3, #4] + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + 80039ae: 68fb ldr r3, [r7, #12] + 80039b0: 681a ldr r2, [r3, #0] + 80039b2: 68fb ldr r3, [r7, #12] + 80039b4: 6bdb ldr r3, [r3, #60] ; 0x3c + 80039b6: 3b01 subs r3, #1 + 80039b8: 68f9 ldr r1, [r7, #12] + 80039ba: 6c09 ldr r1, [r1, #64] ; 0x40 + 80039bc: fb01 f303 mul.w r3, r1, r3 + 80039c0: 441a add r2, r3 + 80039c2: 68fb ldr r3, [r7, #12] + 80039c4: 60da str r2, [r3, #12] + pxQueue->cRxLock = queueUNLOCKED; + 80039c6: 68fb ldr r3, [r7, #12] + 80039c8: 22ff movs r2, #255 ; 0xff + 80039ca: f883 2044 strb.w r2, [r3, #68] ; 0x44 pxQueue->cTxLock = queueUNLOCKED; - 8003992: 68fb ldr r3, [r7, #12] - 8003994: 22ff movs r2, #255 ; 0xff - 8003996: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 80039ce: 68fb ldr r3, [r7, #12] + 80039d0: 22ff movs r2, #255 ; 0xff + 80039d2: f883 2045 strb.w r2, [r3, #69] ; 0x45 if( xNewQueue == pdFALSE ) - 800399a: 683b ldr r3, [r7, #0] - 800399c: 2b00 cmp r3, #0 - 800399e: d114 bne.n 80039ca + 80039d6: 683b ldr r3, [r7, #0] + 80039d8: 2b00 cmp r3, #0 + 80039da: d114 bne.n 8003a06 /* If there are tasks blocked waiting to read from the queue, then the tasks will remain blocked as after this function exits the queue will still be empty. If there are tasks blocked waiting to write to the queue, then one should be unblocked as after this function exits it will be possible to write to it. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 80039a0: 68fb ldr r3, [r7, #12] - 80039a2: 691b ldr r3, [r3, #16] - 80039a4: 2b00 cmp r3, #0 - 80039a6: d01a beq.n 80039de + 80039dc: 68fb ldr r3, [r7, #12] + 80039de: 691b ldr r3, [r3, #16] + 80039e0: 2b00 cmp r3, #0 + 80039e2: d01a beq.n 8003a1a { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 80039a8: 68fb ldr r3, [r7, #12] - 80039aa: 3310 adds r3, #16 - 80039ac: 4618 mov r0, r3 - 80039ae: f001 f929 bl 8004c04 - 80039b2: 4603 mov r3, r0 - 80039b4: 2b00 cmp r3, #0 - 80039b6: d012 beq.n 80039de + 80039e4: 68fb ldr r3, [r7, #12] + 80039e6: 3310 adds r3, #16 + 80039e8: 4618 mov r0, r3 + 80039ea: f001 f929 bl 8004c40 + 80039ee: 4603 mov r3, r0 + 80039f0: 2b00 cmp r3, #0 + 80039f2: d012 beq.n 8003a1a { queueYIELD_IF_USING_PREEMPTION(); - 80039b8: 4b0c ldr r3, [pc, #48] ; (80039ec ) - 80039ba: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80039be: 601a str r2, [r3, #0] - 80039c0: f3bf 8f4f dsb sy - 80039c4: f3bf 8f6f isb sy - 80039c8: e009 b.n 80039de + 80039f4: 4b0c ldr r3, [pc, #48] ; (8003a28 ) + 80039f6: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80039fa: 601a str r2, [r3, #0] + 80039fc: f3bf 8f4f dsb sy + 8003a00: f3bf 8f6f isb sy + 8003a04: e009 b.n 8003a1a } } else { /* Ensure the event queues start in the correct state. */ vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); - 80039ca: 68fb ldr r3, [r7, #12] - 80039cc: 3310 adds r3, #16 - 80039ce: 4618 mov r0, r3 - 80039d0: f7ff fef2 bl 80037b8 + 8003a06: 68fb ldr r3, [r7, #12] + 8003a08: 3310 adds r3, #16 + 8003a0a: 4618 mov r0, r3 + 8003a0c: f7ff fef2 bl 80037f4 vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); - 80039d4: 68fb ldr r3, [r7, #12] - 80039d6: 3324 adds r3, #36 ; 0x24 - 80039d8: 4618 mov r0, r3 - 80039da: f7ff feed bl 80037b8 + 8003a10: 68fb ldr r3, [r7, #12] + 8003a12: 3324 adds r3, #36 ; 0x24 + 8003a14: 4618 mov r0, r3 + 8003a16: f7ff feed bl 80037f4 } } taskEXIT_CRITICAL(); - 80039de: f002 f861 bl 8005aa4 + 8003a1a: f002 f85b bl 8005ad4 /* A value is returned for calling semantic consistency with previous versions. */ return pdPASS; - 80039e2: 2301 movs r3, #1 + 8003a1e: 2301 movs r3, #1 } - 80039e4: 4618 mov r0, r3 - 80039e6: 3710 adds r7, #16 - 80039e8: 46bd mov sp, r7 - 80039ea: bd80 pop {r7, pc} - 80039ec: e000ed04 .word 0xe000ed04 + 8003a20: 4618 mov r0, r3 + 8003a22: 3710 adds r7, #16 + 8003a24: 46bd mov sp, r7 + 8003a26: bd80 pop {r7, pc} + 8003a28: e000ed04 .word 0xe000ed04 -080039f0 : +08003a2c : /*-----------------------------------------------------------*/ #if( configSUPPORT_STATIC_ALLOCATION == 1 ) QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) { - 80039f0: b580 push {r7, lr} - 80039f2: b08e sub sp, #56 ; 0x38 - 80039f4: af02 add r7, sp, #8 - 80039f6: 60f8 str r0, [r7, #12] - 80039f8: 60b9 str r1, [r7, #8] - 80039fa: 607a str r2, [r7, #4] - 80039fc: 603b str r3, [r7, #0] + 8003a2c: b580 push {r7, lr} + 8003a2e: b08e sub sp, #56 ; 0x38 + 8003a30: af02 add r7, sp, #8 + 8003a32: 60f8 str r0, [r7, #12] + 8003a34: 60b9 str r1, [r7, #8] + 8003a36: 607a str r2, [r7, #4] + 8003a38: 603b str r3, [r7, #0] Queue_t *pxNewQueue; configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); - 80039fe: 68fb ldr r3, [r7, #12] - 8003a00: 2b00 cmp r3, #0 - 8003a02: d10a bne.n 8003a1a + 8003a3a: 68fb ldr r3, [r7, #12] + 8003a3c: 2b00 cmp r3, #0 + 8003a3e: d10a bne.n 8003a56 __asm volatile - 8003a04: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a08: f383 8811 msr BASEPRI, r3 - 8003a0c: f3bf 8f6f isb sy - 8003a10: f3bf 8f4f dsb sy - 8003a14: 62bb str r3, [r7, #40] ; 0x28 + 8003a40: f04f 0350 mov.w r3, #80 ; 0x50 + 8003a44: f383 8811 msr BASEPRI, r3 + 8003a48: f3bf 8f6f isb sy + 8003a4c: f3bf 8f4f dsb sy + 8003a50: 62bb str r3, [r7, #40] ; 0x28 } - 8003a16: bf00 nop - 8003a18: e7fe b.n 8003a18 + 8003a52: bf00 nop + 8003a54: e7fe b.n 8003a54 /* The StaticQueue_t structure and the queue storage area must be supplied. */ configASSERT( pxStaticQueue != NULL ); - 8003a1a: 683b ldr r3, [r7, #0] - 8003a1c: 2b00 cmp r3, #0 - 8003a1e: d10a bne.n 8003a36 + 8003a56: 683b ldr r3, [r7, #0] + 8003a58: 2b00 cmp r3, #0 + 8003a5a: d10a bne.n 8003a72 __asm volatile - 8003a20: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a24: f383 8811 msr BASEPRI, r3 - 8003a28: f3bf 8f6f isb sy - 8003a2c: f3bf 8f4f dsb sy - 8003a30: 627b str r3, [r7, #36] ; 0x24 + 8003a5c: f04f 0350 mov.w r3, #80 ; 0x50 + 8003a60: f383 8811 msr BASEPRI, r3 + 8003a64: f3bf 8f6f isb sy + 8003a68: f3bf 8f4f dsb sy + 8003a6c: 627b str r3, [r7, #36] ; 0x24 } - 8003a32: bf00 nop - 8003a34: e7fe b.n 8003a34 + 8003a6e: bf00 nop + 8003a70: e7fe b.n 8003a70 /* A queue storage area should be provided if the item size is not 0, and should not be provided if the item size is 0. */ configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); - 8003a36: 687b ldr r3, [r7, #4] - 8003a38: 2b00 cmp r3, #0 - 8003a3a: d002 beq.n 8003a42 - 8003a3c: 68bb ldr r3, [r7, #8] - 8003a3e: 2b00 cmp r3, #0 - 8003a40: d001 beq.n 8003a46 - 8003a42: 2301 movs r3, #1 - 8003a44: e000 b.n 8003a48 - 8003a46: 2300 movs r3, #0 - 8003a48: 2b00 cmp r3, #0 - 8003a4a: d10a bne.n 8003a62 - __asm volatile - 8003a4c: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a50: f383 8811 msr BASEPRI, r3 - 8003a54: f3bf 8f6f isb sy - 8003a58: f3bf 8f4f dsb sy - 8003a5c: 623b str r3, [r7, #32] -} - 8003a5e: bf00 nop - 8003a60: e7fe b.n 8003a60 - configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); - 8003a62: 687b ldr r3, [r7, #4] - 8003a64: 2b00 cmp r3, #0 - 8003a66: d102 bne.n 8003a6e - 8003a68: 68bb ldr r3, [r7, #8] - 8003a6a: 2b00 cmp r3, #0 - 8003a6c: d101 bne.n 8003a72 - 8003a6e: 2301 movs r3, #1 - 8003a70: e000 b.n 8003a74 - 8003a72: 2300 movs r3, #0 + 8003a72: 687b ldr r3, [r7, #4] 8003a74: 2b00 cmp r3, #0 - 8003a76: d10a bne.n 8003a8e + 8003a76: d002 beq.n 8003a7e + 8003a78: 68bb ldr r3, [r7, #8] + 8003a7a: 2b00 cmp r3, #0 + 8003a7c: d001 beq.n 8003a82 + 8003a7e: 2301 movs r3, #1 + 8003a80: e000 b.n 8003a84 + 8003a82: 2300 movs r3, #0 + 8003a84: 2b00 cmp r3, #0 + 8003a86: d10a bne.n 8003a9e __asm volatile - 8003a78: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a7c: f383 8811 msr BASEPRI, r3 - 8003a80: f3bf 8f6f isb sy - 8003a84: f3bf 8f4f dsb sy - 8003a88: 61fb str r3, [r7, #28] + 8003a88: f04f 0350 mov.w r3, #80 ; 0x50 + 8003a8c: f383 8811 msr BASEPRI, r3 + 8003a90: f3bf 8f6f isb sy + 8003a94: f3bf 8f4f dsb sy + 8003a98: 623b str r3, [r7, #32] } - 8003a8a: bf00 nop - 8003a8c: e7fe b.n 8003a8c + 8003a9a: bf00 nop + 8003a9c: e7fe b.n 8003a9c + configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); + 8003a9e: 687b ldr r3, [r7, #4] + 8003aa0: 2b00 cmp r3, #0 + 8003aa2: d102 bne.n 8003aaa + 8003aa4: 68bb ldr r3, [r7, #8] + 8003aa6: 2b00 cmp r3, #0 + 8003aa8: d101 bne.n 8003aae + 8003aaa: 2301 movs r3, #1 + 8003aac: e000 b.n 8003ab0 + 8003aae: 2300 movs r3, #0 + 8003ab0: 2b00 cmp r3, #0 + 8003ab2: d10a bne.n 8003aca + __asm volatile + 8003ab4: f04f 0350 mov.w r3, #80 ; 0x50 + 8003ab8: f383 8811 msr BASEPRI, r3 + 8003abc: f3bf 8f6f isb sy + 8003ac0: f3bf 8f4f dsb sy + 8003ac4: 61fb str r3, [r7, #28] +} + 8003ac6: bf00 nop + 8003ac8: e7fe b.n 8003ac8 #if( configASSERT_DEFINED == 1 ) { /* Sanity check that the size of the structure used to declare a variable of type StaticQueue_t or StaticSemaphore_t equals the size of the real queue and semaphore structures. */ volatile size_t xSize = sizeof( StaticQueue_t ); - 8003a8e: 2350 movs r3, #80 ; 0x50 - 8003a90: 617b str r3, [r7, #20] + 8003aca: 2350 movs r3, #80 ; 0x50 + 8003acc: 617b str r3, [r7, #20] configASSERT( xSize == sizeof( Queue_t ) ); - 8003a92: 697b ldr r3, [r7, #20] - 8003a94: 2b50 cmp r3, #80 ; 0x50 - 8003a96: d00a beq.n 8003aae + 8003ace: 697b ldr r3, [r7, #20] + 8003ad0: 2b50 cmp r3, #80 ; 0x50 + 8003ad2: d00a beq.n 8003aea __asm volatile - 8003a98: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a9c: f383 8811 msr BASEPRI, r3 - 8003aa0: f3bf 8f6f isb sy - 8003aa4: f3bf 8f4f dsb sy - 8003aa8: 61bb str r3, [r7, #24] + 8003ad4: f04f 0350 mov.w r3, #80 ; 0x50 + 8003ad8: f383 8811 msr BASEPRI, r3 + 8003adc: f3bf 8f6f isb sy + 8003ae0: f3bf 8f4f dsb sy + 8003ae4: 61bb str r3, [r7, #24] } - 8003aaa: bf00 nop - 8003aac: e7fe b.n 8003aac + 8003ae6: bf00 nop + 8003ae8: e7fe b.n 8003ae8 ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ - 8003aae: 697b ldr r3, [r7, #20] + 8003aea: 697b ldr r3, [r7, #20] #endif /* configASSERT_DEFINED */ /* The address of a statically allocated queue was passed in, use it. The address of a statically allocated storage area was also passed in but is already set. */ pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - 8003ab0: 683b ldr r3, [r7, #0] - 8003ab2: 62fb str r3, [r7, #44] ; 0x2c + 8003aec: 683b ldr r3, [r7, #0] + 8003aee: 62fb str r3, [r7, #44] ; 0x2c if( pxNewQueue != NULL ) - 8003ab4: 6afb ldr r3, [r7, #44] ; 0x2c - 8003ab6: 2b00 cmp r3, #0 - 8003ab8: d00d beq.n 8003ad6 + 8003af0: 6afb ldr r3, [r7, #44] ; 0x2c + 8003af2: 2b00 cmp r3, #0 + 8003af4: d00d beq.n 8003b12 #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) { /* Queues can be allocated wither statically or dynamically, so note this queue was allocated statically in case the queue is later deleted. */ pxNewQueue->ucStaticallyAllocated = pdTRUE; - 8003aba: 6afb ldr r3, [r7, #44] ; 0x2c - 8003abc: 2201 movs r2, #1 - 8003abe: f883 2046 strb.w r2, [r3, #70] ; 0x46 + 8003af6: 6afb ldr r3, [r7, #44] ; 0x2c + 8003af8: 2201 movs r2, #1 + 8003afa: f883 2046 strb.w r2, [r3, #70] ; 0x46 } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); - 8003ac2: f897 2038 ldrb.w r2, [r7, #56] ; 0x38 - 8003ac6: 6afb ldr r3, [r7, #44] ; 0x2c - 8003ac8: 9300 str r3, [sp, #0] - 8003aca: 4613 mov r3, r2 - 8003acc: 687a ldr r2, [r7, #4] - 8003ace: 68b9 ldr r1, [r7, #8] - 8003ad0: 68f8 ldr r0, [r7, #12] - 8003ad2: f000 f805 bl 8003ae0 + 8003afe: f897 2038 ldrb.w r2, [r7, #56] ; 0x38 + 8003b02: 6afb ldr r3, [r7, #44] ; 0x2c + 8003b04: 9300 str r3, [sp, #0] + 8003b06: 4613 mov r3, r2 + 8003b08: 687a ldr r2, [r7, #4] + 8003b0a: 68b9 ldr r1, [r7, #8] + 8003b0c: 68f8 ldr r0, [r7, #12] + 8003b0e: f000 f805 bl 8003b1c { traceQUEUE_CREATE_FAILED( ucQueueType ); mtCOVERAGE_TEST_MARKER(); } return pxNewQueue; - 8003ad6: 6afb ldr r3, [r7, #44] ; 0x2c + 8003b12: 6afb ldr r3, [r7, #44] ; 0x2c } - 8003ad8: 4618 mov r0, r3 - 8003ada: 3730 adds r7, #48 ; 0x30 - 8003adc: 46bd mov sp, r7 - 8003ade: bd80 pop {r7, pc} + 8003b14: 4618 mov r0, r3 + 8003b16: 3730 adds r7, #48 ; 0x30 + 8003b18: 46bd mov sp, r7 + 8003b1a: bd80 pop {r7, pc} -08003ae0 : +08003b1c : #endif /* configSUPPORT_STATIC_ALLOCATION */ /*-----------------------------------------------------------*/ static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) { - 8003ae0: b580 push {r7, lr} - 8003ae2: b084 sub sp, #16 - 8003ae4: af00 add r7, sp, #0 - 8003ae6: 60f8 str r0, [r7, #12] - 8003ae8: 60b9 str r1, [r7, #8] - 8003aea: 607a str r2, [r7, #4] - 8003aec: 70fb strb r3, [r7, #3] + 8003b1c: b580 push {r7, lr} + 8003b1e: b084 sub sp, #16 + 8003b20: af00 add r7, sp, #0 + 8003b22: 60f8 str r0, [r7, #12] + 8003b24: 60b9 str r1, [r7, #8] + 8003b26: 607a str r2, [r7, #4] + 8003b28: 70fb strb r3, [r7, #3] /* Remove compiler warnings about unused parameters should configUSE_TRACE_FACILITY not be set to 1. */ ( void ) ucQueueType; if( uxItemSize == ( UBaseType_t ) 0 ) - 8003aee: 68bb ldr r3, [r7, #8] - 8003af0: 2b00 cmp r3, #0 - 8003af2: d103 bne.n 8003afc + 8003b2a: 68bb ldr r3, [r7, #8] + 8003b2c: 2b00 cmp r3, #0 + 8003b2e: d103 bne.n 8003b38 { /* No RAM was allocated for the queue storage area, but PC head cannot be set to NULL because NULL is used as a key to say the queue is used as a mutex. Therefore just set pcHead to point to the queue as a benign value that is known to be within the memory map. */ pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; - 8003af4: 69bb ldr r3, [r7, #24] - 8003af6: 69ba ldr r2, [r7, #24] - 8003af8: 601a str r2, [r3, #0] - 8003afa: e002 b.n 8003b02 + 8003b30: 69bb ldr r3, [r7, #24] + 8003b32: 69ba ldr r2, [r7, #24] + 8003b34: 601a str r2, [r3, #0] + 8003b36: e002 b.n 8003b3e } else { /* Set the head to the start of the queue storage area. */ pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; - 8003afc: 69bb ldr r3, [r7, #24] - 8003afe: 687a ldr r2, [r7, #4] - 8003b00: 601a str r2, [r3, #0] + 8003b38: 69bb ldr r3, [r7, #24] + 8003b3a: 687a ldr r2, [r7, #4] + 8003b3c: 601a str r2, [r3, #0] } /* Initialise the queue members as described where the queue type is defined. */ pxNewQueue->uxLength = uxQueueLength; - 8003b02: 69bb ldr r3, [r7, #24] - 8003b04: 68fa ldr r2, [r7, #12] - 8003b06: 63da str r2, [r3, #60] ; 0x3c + 8003b3e: 69bb ldr r3, [r7, #24] + 8003b40: 68fa ldr r2, [r7, #12] + 8003b42: 63da str r2, [r3, #60] ; 0x3c pxNewQueue->uxItemSize = uxItemSize; - 8003b08: 69bb ldr r3, [r7, #24] - 8003b0a: 68ba ldr r2, [r7, #8] - 8003b0c: 641a str r2, [r3, #64] ; 0x40 + 8003b44: 69bb ldr r3, [r7, #24] + 8003b46: 68ba ldr r2, [r7, #8] + 8003b48: 641a str r2, [r3, #64] ; 0x40 ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); - 8003b0e: 2101 movs r1, #1 - 8003b10: 69b8 ldr r0, [r7, #24] - 8003b12: f7ff ff05 bl 8003920 + 8003b4a: 2101 movs r1, #1 + 8003b4c: 69b8 ldr r0, [r7, #24] + 8003b4e: f7ff ff05 bl 800395c #if ( configUSE_TRACE_FACILITY == 1 ) { pxNewQueue->ucQueueType = ucQueueType; - 8003b16: 69bb ldr r3, [r7, #24] - 8003b18: 78fa ldrb r2, [r7, #3] - 8003b1a: f883 204c strb.w r2, [r3, #76] ; 0x4c + 8003b52: 69bb ldr r3, [r7, #24] + 8003b54: 78fa ldrb r2, [r7, #3] + 8003b56: f883 204c strb.w r2, [r3, #76] ; 0x4c pxNewQueue->pxQueueSetContainer = NULL; } #endif /* configUSE_QUEUE_SETS */ traceQUEUE_CREATE( pxNewQueue ); } - 8003b1e: bf00 nop - 8003b20: 3710 adds r7, #16 - 8003b22: 46bd mov sp, r7 - 8003b24: bd80 pop {r7, pc} + 8003b5a: bf00 nop + 8003b5c: 3710 adds r7, #16 + 8003b5e: 46bd mov sp, r7 + 8003b60: bd80 pop {r7, pc} ... -08003b28 : +08003b64 : #endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ /*-----------------------------------------------------------*/ BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) { - 8003b28: b580 push {r7, lr} - 8003b2a: b08e sub sp, #56 ; 0x38 - 8003b2c: af00 add r7, sp, #0 - 8003b2e: 60f8 str r0, [r7, #12] - 8003b30: 60b9 str r1, [r7, #8] - 8003b32: 607a str r2, [r7, #4] - 8003b34: 603b str r3, [r7, #0] + 8003b64: b580 push {r7, lr} + 8003b66: b08e sub sp, #56 ; 0x38 + 8003b68: af00 add r7, sp, #0 + 8003b6a: 60f8 str r0, [r7, #12] + 8003b6c: 60b9 str r1, [r7, #8] + 8003b6e: 607a str r2, [r7, #4] + 8003b70: 603b str r3, [r7, #0] BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; - 8003b36: 2300 movs r3, #0 - 8003b38: 637b str r3, [r7, #52] ; 0x34 + 8003b72: 2300 movs r3, #0 + 8003b74: 637b str r3, [r7, #52] ; 0x34 TimeOut_t xTimeOut; Queue_t * const pxQueue = xQueue; - 8003b3a: 68fb ldr r3, [r7, #12] - 8003b3c: 633b str r3, [r7, #48] ; 0x30 + 8003b76: 68fb ldr r3, [r7, #12] + 8003b78: 633b str r3, [r7, #48] ; 0x30 configASSERT( pxQueue ); - 8003b3e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003b40: 2b00 cmp r3, #0 - 8003b42: d10a bne.n 8003b5a + 8003b7a: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003b7c: 2b00 cmp r3, #0 + 8003b7e: d10a bne.n 8003b96 __asm volatile - 8003b44: f04f 0350 mov.w r3, #80 ; 0x50 - 8003b48: f383 8811 msr BASEPRI, r3 - 8003b4c: f3bf 8f6f isb sy - 8003b50: f3bf 8f4f dsb sy - 8003b54: 62bb str r3, [r7, #40] ; 0x28 + 8003b80: f04f 0350 mov.w r3, #80 ; 0x50 + 8003b84: f383 8811 msr BASEPRI, r3 + 8003b88: f3bf 8f6f isb sy + 8003b8c: f3bf 8f4f dsb sy + 8003b90: 62bb str r3, [r7, #40] ; 0x28 } - 8003b56: bf00 nop - 8003b58: e7fe b.n 8003b58 + 8003b92: bf00 nop + 8003b94: e7fe b.n 8003b94 configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 8003b5a: 68bb ldr r3, [r7, #8] - 8003b5c: 2b00 cmp r3, #0 - 8003b5e: d103 bne.n 8003b68 - 8003b60: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003b62: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003b64: 2b00 cmp r3, #0 - 8003b66: d101 bne.n 8003b6c - 8003b68: 2301 movs r3, #1 - 8003b6a: e000 b.n 8003b6e - 8003b6c: 2300 movs r3, #0 - 8003b6e: 2b00 cmp r3, #0 - 8003b70: d10a bne.n 8003b88 + 8003b96: 68bb ldr r3, [r7, #8] + 8003b98: 2b00 cmp r3, #0 + 8003b9a: d103 bne.n 8003ba4 + 8003b9c: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003b9e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003ba0: 2b00 cmp r3, #0 + 8003ba2: d101 bne.n 8003ba8 + 8003ba4: 2301 movs r3, #1 + 8003ba6: e000 b.n 8003baa + 8003ba8: 2300 movs r3, #0 + 8003baa: 2b00 cmp r3, #0 + 8003bac: d10a bne.n 8003bc4 __asm volatile - 8003b72: f04f 0350 mov.w r3, #80 ; 0x50 - 8003b76: f383 8811 msr BASEPRI, r3 - 8003b7a: f3bf 8f6f isb sy - 8003b7e: f3bf 8f4f dsb sy - 8003b82: 627b str r3, [r7, #36] ; 0x24 + 8003bae: f04f 0350 mov.w r3, #80 ; 0x50 + 8003bb2: f383 8811 msr BASEPRI, r3 + 8003bb6: f3bf 8f6f isb sy + 8003bba: f3bf 8f4f dsb sy + 8003bbe: 627b str r3, [r7, #36] ; 0x24 } - 8003b84: bf00 nop - 8003b86: e7fe b.n 8003b86 + 8003bc0: bf00 nop + 8003bc2: e7fe b.n 8003bc2 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - 8003b88: 683b ldr r3, [r7, #0] - 8003b8a: 2b02 cmp r3, #2 - 8003b8c: d103 bne.n 8003b96 - 8003b8e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003b90: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003b92: 2b01 cmp r3, #1 - 8003b94: d101 bne.n 8003b9a - 8003b96: 2301 movs r3, #1 - 8003b98: e000 b.n 8003b9c - 8003b9a: 2300 movs r3, #0 - 8003b9c: 2b00 cmp r3, #0 - 8003b9e: d10a bne.n 8003bb6 + 8003bc4: 683b ldr r3, [r7, #0] + 8003bc6: 2b02 cmp r3, #2 + 8003bc8: d103 bne.n 8003bd2 + 8003bca: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003bcc: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003bce: 2b01 cmp r3, #1 + 8003bd0: d101 bne.n 8003bd6 + 8003bd2: 2301 movs r3, #1 + 8003bd4: e000 b.n 8003bd8 + 8003bd6: 2300 movs r3, #0 + 8003bd8: 2b00 cmp r3, #0 + 8003bda: d10a bne.n 8003bf2 __asm volatile - 8003ba0: f04f 0350 mov.w r3, #80 ; 0x50 - 8003ba4: f383 8811 msr BASEPRI, r3 - 8003ba8: f3bf 8f6f isb sy - 8003bac: f3bf 8f4f dsb sy - 8003bb0: 623b str r3, [r7, #32] + 8003bdc: f04f 0350 mov.w r3, #80 ; 0x50 + 8003be0: f383 8811 msr BASEPRI, r3 + 8003be4: f3bf 8f6f isb sy + 8003be8: f3bf 8f4f dsb sy + 8003bec: 623b str r3, [r7, #32] } - 8003bb2: bf00 nop - 8003bb4: e7fe b.n 8003bb4 + 8003bee: bf00 nop + 8003bf0: e7fe b.n 8003bf0 #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) { configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - 8003bb6: f001 f9e7 bl 8004f88 - 8003bba: 4603 mov r3, r0 - 8003bbc: 2b00 cmp r3, #0 - 8003bbe: d102 bne.n 8003bc6 - 8003bc0: 687b ldr r3, [r7, #4] - 8003bc2: 2b00 cmp r3, #0 - 8003bc4: d101 bne.n 8003bca - 8003bc6: 2301 movs r3, #1 - 8003bc8: e000 b.n 8003bcc - 8003bca: 2300 movs r3, #0 - 8003bcc: 2b00 cmp r3, #0 - 8003bce: d10a bne.n 8003be6 + 8003bf2: f001 f9e7 bl 8004fc4 + 8003bf6: 4603 mov r3, r0 + 8003bf8: 2b00 cmp r3, #0 + 8003bfa: d102 bne.n 8003c02 + 8003bfc: 687b ldr r3, [r7, #4] + 8003bfe: 2b00 cmp r3, #0 + 8003c00: d101 bne.n 8003c06 + 8003c02: 2301 movs r3, #1 + 8003c04: e000 b.n 8003c08 + 8003c06: 2300 movs r3, #0 + 8003c08: 2b00 cmp r3, #0 + 8003c0a: d10a bne.n 8003c22 __asm volatile - 8003bd0: f04f 0350 mov.w r3, #80 ; 0x50 - 8003bd4: f383 8811 msr BASEPRI, r3 - 8003bd8: f3bf 8f6f isb sy - 8003bdc: f3bf 8f4f dsb sy - 8003be0: 61fb str r3, [r7, #28] + 8003c0c: f04f 0350 mov.w r3, #80 ; 0x50 + 8003c10: f383 8811 msr BASEPRI, r3 + 8003c14: f3bf 8f6f isb sy + 8003c18: f3bf 8f4f dsb sy + 8003c1c: 61fb str r3, [r7, #28] } - 8003be2: bf00 nop - 8003be4: e7fe b.n 8003be4 + 8003c1e: bf00 nop + 8003c20: e7fe b.n 8003c20 /*lint -save -e904 This function relaxes the coding standard somewhat to allow return statements within the function itself. This is done in the interest of execution time efficiency. */ for( ;; ) { taskENTER_CRITICAL(); - 8003be6: f001 ff2d bl 8005a44 + 8003c22: f001 ff27 bl 8005a74 { /* Is there room on the queue now? The running task must be the highest priority task wanting to access the queue. If the head item in the queue is to be overwritten then it does not matter if the queue is full. */ if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - 8003bea: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003bec: 6b9a ldr r2, [r3, #56] ; 0x38 - 8003bee: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003bf0: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003bf2: 429a cmp r2, r3 - 8003bf4: d302 bcc.n 8003bfc - 8003bf6: 683b ldr r3, [r7, #0] - 8003bf8: 2b02 cmp r3, #2 - 8003bfa: d129 bne.n 8003c50 + 8003c26: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003c28: 6b9a ldr r2, [r3, #56] ; 0x38 + 8003c2a: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003c2c: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003c2e: 429a cmp r2, r3 + 8003c30: d302 bcc.n 8003c38 + 8003c32: 683b ldr r3, [r7, #0] + 8003c34: 2b02 cmp r3, #2 + 8003c36: d129 bne.n 8003c8c } } } #else /* configUSE_QUEUE_SETS */ { xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - 8003bfc: 683a ldr r2, [r7, #0] - 8003bfe: 68b9 ldr r1, [r7, #8] - 8003c00: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003c02: f000 fa0b bl 800401c - 8003c06: 62f8 str r0, [r7, #44] ; 0x2c + 8003c38: 683a ldr r2, [r7, #0] + 8003c3a: 68b9 ldr r1, [r7, #8] + 8003c3c: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003c3e: f000 fa0b bl 8004058 + 8003c42: 62f8 str r0, [r7, #44] ; 0x2c /* If there was a task waiting for data to arrive on the queue then unblock it now. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 8003c08: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003c0a: 6a5b ldr r3, [r3, #36] ; 0x24 - 8003c0c: 2b00 cmp r3, #0 - 8003c0e: d010 beq.n 8003c32 + 8003c44: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003c46: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003c48: 2b00 cmp r3, #0 + 8003c4a: d010 beq.n 8003c6e { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 8003c10: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003c12: 3324 adds r3, #36 ; 0x24 - 8003c14: 4618 mov r0, r3 - 8003c16: f000 fff5 bl 8004c04 - 8003c1a: 4603 mov r3, r0 - 8003c1c: 2b00 cmp r3, #0 - 8003c1e: d013 beq.n 8003c48 + 8003c4c: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003c4e: 3324 adds r3, #36 ; 0x24 + 8003c50: 4618 mov r0, r3 + 8003c52: f000 fff5 bl 8004c40 + 8003c56: 4603 mov r3, r0 + 8003c58: 2b00 cmp r3, #0 + 8003c5a: d013 beq.n 8003c84 { /* The unblocked task has a priority higher than our own so yield immediately. Yes it is ok to do this from within the critical section - the kernel takes care of that. */ queueYIELD_IF_USING_PREEMPTION(); - 8003c20: 4b3f ldr r3, [pc, #252] ; (8003d20 ) - 8003c22: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003c26: 601a str r2, [r3, #0] - 8003c28: f3bf 8f4f dsb sy - 8003c2c: f3bf 8f6f isb sy - 8003c30: e00a b.n 8003c48 + 8003c5c: 4b3f ldr r3, [pc, #252] ; (8003d5c ) + 8003c5e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003c62: 601a str r2, [r3, #0] + 8003c64: f3bf 8f4f dsb sy + 8003c68: f3bf 8f6f isb sy + 8003c6c: e00a b.n 8003c84 else { mtCOVERAGE_TEST_MARKER(); } } else if( xYieldRequired != pdFALSE ) - 8003c32: 6afb ldr r3, [r7, #44] ; 0x2c - 8003c34: 2b00 cmp r3, #0 - 8003c36: d007 beq.n 8003c48 + 8003c6e: 6afb ldr r3, [r7, #44] ; 0x2c + 8003c70: 2b00 cmp r3, #0 + 8003c72: d007 beq.n 8003c84 { /* This path is a special case that will only get executed if the task was holding multiple mutexes and the mutexes were given back in an order that is different to that in which they were taken. */ queueYIELD_IF_USING_PREEMPTION(); - 8003c38: 4b39 ldr r3, [pc, #228] ; (8003d20 ) - 8003c3a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003c3e: 601a str r2, [r3, #0] - 8003c40: f3bf 8f4f dsb sy - 8003c44: f3bf 8f6f isb sy + 8003c74: 4b39 ldr r3, [pc, #228] ; (8003d5c ) + 8003c76: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003c7a: 601a str r2, [r3, #0] + 8003c7c: f3bf 8f4f dsb sy + 8003c80: f3bf 8f6f isb sy mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_QUEUE_SETS */ taskEXIT_CRITICAL(); - 8003c48: f001 ff2c bl 8005aa4 + 8003c84: f001 ff26 bl 8005ad4 return pdPASS; - 8003c4c: 2301 movs r3, #1 - 8003c4e: e063 b.n 8003d18 + 8003c88: 2301 movs r3, #1 + 8003c8a: e063 b.n 8003d54 } else { if( xTicksToWait == ( TickType_t ) 0 ) - 8003c50: 687b ldr r3, [r7, #4] - 8003c52: 2b00 cmp r3, #0 - 8003c54: d103 bne.n 8003c5e + 8003c8c: 687b ldr r3, [r7, #4] + 8003c8e: 2b00 cmp r3, #0 + 8003c90: d103 bne.n 8003c9a { /* The queue was full and no block time is specified (or the block time has expired) so leave now. */ taskEXIT_CRITICAL(); - 8003c56: f001 ff25 bl 8005aa4 + 8003c92: f001 ff1f bl 8005ad4 /* Return to the original privilege level before exiting the function. */ traceQUEUE_SEND_FAILED( pxQueue ); return errQUEUE_FULL; - 8003c5a: 2300 movs r3, #0 - 8003c5c: e05c b.n 8003d18 + 8003c96: 2300 movs r3, #0 + 8003c98: e05c b.n 8003d54 } else if( xEntryTimeSet == pdFALSE ) - 8003c5e: 6b7b ldr r3, [r7, #52] ; 0x34 - 8003c60: 2b00 cmp r3, #0 - 8003c62: d106 bne.n 8003c72 + 8003c9a: 6b7b ldr r3, [r7, #52] ; 0x34 + 8003c9c: 2b00 cmp r3, #0 + 8003c9e: d106 bne.n 8003cae { /* The queue was full and a block time was specified so configure the timeout structure. */ vTaskInternalSetTimeOutState( &xTimeOut ); - 8003c64: f107 0314 add.w r3, r7, #20 - 8003c68: 4618 mov r0, r3 - 8003c6a: f001 f82f bl 8004ccc + 8003ca0: f107 0314 add.w r3, r7, #20 + 8003ca4: 4618 mov r0, r3 + 8003ca6: f001 f82f bl 8004d08 xEntryTimeSet = pdTRUE; - 8003c6e: 2301 movs r3, #1 - 8003c70: 637b str r3, [r7, #52] ; 0x34 + 8003caa: 2301 movs r3, #1 + 8003cac: 637b str r3, [r7, #52] ; 0x34 /* Entry time was already set. */ mtCOVERAGE_TEST_MARKER(); } } } taskEXIT_CRITICAL(); - 8003c72: f001 ff17 bl 8005aa4 + 8003cae: f001 ff11 bl 8005ad4 /* Interrupts and other tasks can send to and receive from the queue now the critical section has been exited. */ vTaskSuspendAll(); - 8003c76: f000 fd9b bl 80047b0 + 8003cb2: f000 fd9b bl 80047ec prvLockQueue( pxQueue ); - 8003c7a: f001 fee3 bl 8005a44 - 8003c7e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003c80: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 8003c84: b25b sxtb r3, r3 - 8003c86: f1b3 3fff cmp.w r3, #4294967295 - 8003c8a: d103 bne.n 8003c94 - 8003c8c: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003c8e: 2200 movs r2, #0 - 8003c90: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 8003c94: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003c96: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 8003c9a: b25b sxtb r3, r3 - 8003c9c: f1b3 3fff cmp.w r3, #4294967295 - 8003ca0: d103 bne.n 8003caa - 8003ca2: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003ca4: 2200 movs r2, #0 - 8003ca6: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 8003caa: f001 fefb bl 8005aa4 + 8003cb6: f001 fedd bl 8005a74 + 8003cba: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003cbc: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 8003cc0: b25b sxtb r3, r3 + 8003cc2: f1b3 3fff cmp.w r3, #4294967295 + 8003cc6: d103 bne.n 8003cd0 + 8003cc8: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003cca: 2200 movs r2, #0 + 8003ccc: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8003cd0: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003cd2: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 8003cd6: b25b sxtb r3, r3 + 8003cd8: f1b3 3fff cmp.w r3, #4294967295 + 8003cdc: d103 bne.n 8003ce6 + 8003cde: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003ce0: 2200 movs r2, #0 + 8003ce2: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003ce6: f001 fef5 bl 8005ad4 /* Update the timeout state to see if it has expired yet. */ if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - 8003cae: 1d3a adds r2, r7, #4 - 8003cb0: f107 0314 add.w r3, r7, #20 - 8003cb4: 4611 mov r1, r2 - 8003cb6: 4618 mov r0, r3 - 8003cb8: f001 f81e bl 8004cf8 - 8003cbc: 4603 mov r3, r0 - 8003cbe: 2b00 cmp r3, #0 - 8003cc0: d124 bne.n 8003d0c + 8003cea: 1d3a adds r2, r7, #4 + 8003cec: f107 0314 add.w r3, r7, #20 + 8003cf0: 4611 mov r1, r2 + 8003cf2: 4618 mov r0, r3 + 8003cf4: f001 f81e bl 8004d34 + 8003cf8: 4603 mov r3, r0 + 8003cfa: 2b00 cmp r3, #0 + 8003cfc: d124 bne.n 8003d48 { if( prvIsQueueFull( pxQueue ) != pdFALSE ) - 8003cc2: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003cc4: f000 faa2 bl 800420c - 8003cc8: 4603 mov r3, r0 - 8003cca: 2b00 cmp r3, #0 - 8003ccc: d018 beq.n 8003d00 + 8003cfe: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003d00: f000 faa2 bl 8004248 + 8003d04: 4603 mov r3, r0 + 8003d06: 2b00 cmp r3, #0 + 8003d08: d018 beq.n 8003d3c { traceBLOCKING_ON_QUEUE_SEND( pxQueue ); vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); - 8003cce: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003cd0: 3310 adds r3, #16 - 8003cd2: 687a ldr r2, [r7, #4] - 8003cd4: 4611 mov r1, r2 - 8003cd6: 4618 mov r0, r3 - 8003cd8: f000 ff44 bl 8004b64 + 8003d0a: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003d0c: 3310 adds r3, #16 + 8003d0e: 687a ldr r2, [r7, #4] + 8003d10: 4611 mov r1, r2 + 8003d12: 4618 mov r0, r3 + 8003d14: f000 ff44 bl 8004ba0 /* Unlocking the queue means queue events can effect the event list. It is possible that interrupts occurring now remove this task from the event list again - but as the scheduler is suspended the task will go onto the pending ready last instead of the actual ready list. */ prvUnlockQueue( pxQueue ); - 8003cdc: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003cde: f000 fa2d bl 800413c + 8003d18: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003d1a: f000 fa2d bl 8004178 /* Resuming the scheduler will move tasks from the pending ready list into the ready list - so it is feasible that this task is already in a ready list before it yields - in which case the yield will not cause a context switch unless there is also a higher priority task in the pending ready list. */ if( xTaskResumeAll() == pdFALSE ) - 8003ce2: f000 fd73 bl 80047cc - 8003ce6: 4603 mov r3, r0 - 8003ce8: 2b00 cmp r3, #0 - 8003cea: f47f af7c bne.w 8003be6 + 8003d1e: f000 fd73 bl 8004808 + 8003d22: 4603 mov r3, r0 + 8003d24: 2b00 cmp r3, #0 + 8003d26: f47f af7c bne.w 8003c22 { portYIELD_WITHIN_API(); - 8003cee: 4b0c ldr r3, [pc, #48] ; (8003d20 ) - 8003cf0: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003cf4: 601a str r2, [r3, #0] - 8003cf6: f3bf 8f4f dsb sy - 8003cfa: f3bf 8f6f isb sy - 8003cfe: e772 b.n 8003be6 + 8003d2a: 4b0c ldr r3, [pc, #48] ; (8003d5c ) + 8003d2c: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003d30: 601a str r2, [r3, #0] + 8003d32: f3bf 8f4f dsb sy + 8003d36: f3bf 8f6f isb sy + 8003d3a: e772 b.n 8003c22 } } else { /* Try again. */ prvUnlockQueue( pxQueue ); - 8003d00: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003d02: f000 fa1b bl 800413c + 8003d3c: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003d3e: f000 fa1b bl 8004178 ( void ) xTaskResumeAll(); - 8003d06: f000 fd61 bl 80047cc - 8003d0a: e76c b.n 8003be6 + 8003d42: f000 fd61 bl 8004808 + 8003d46: e76c b.n 8003c22 } } else { /* The timeout has expired. */ prvUnlockQueue( pxQueue ); - 8003d0c: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003d0e: f000 fa15 bl 800413c + 8003d48: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003d4a: f000 fa15 bl 8004178 ( void ) xTaskResumeAll(); - 8003d12: f000 fd5b bl 80047cc + 8003d4e: f000 fd5b bl 8004808 traceQUEUE_SEND_FAILED( pxQueue ); return errQUEUE_FULL; - 8003d16: 2300 movs r3, #0 + 8003d52: 2300 movs r3, #0 } } /*lint -restore */ } - 8003d18: 4618 mov r0, r3 - 8003d1a: 3738 adds r7, #56 ; 0x38 - 8003d1c: 46bd mov sp, r7 - 8003d1e: bd80 pop {r7, pc} - 8003d20: e000ed04 .word 0xe000ed04 + 8003d54: 4618 mov r0, r3 + 8003d56: 3738 adds r7, #56 ; 0x38 + 8003d58: 46bd mov sp, r7 + 8003d5a: bd80 pop {r7, pc} + 8003d5c: e000ed04 .word 0xe000ed04 -08003d24 : +08003d60 : /*-----------------------------------------------------------*/ BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) { - 8003d24: b580 push {r7, lr} - 8003d26: b090 sub sp, #64 ; 0x40 - 8003d28: af00 add r7, sp, #0 - 8003d2a: 60f8 str r0, [r7, #12] - 8003d2c: 60b9 str r1, [r7, #8] - 8003d2e: 607a str r2, [r7, #4] - 8003d30: 603b str r3, [r7, #0] + 8003d60: b580 push {r7, lr} + 8003d62: b090 sub sp, #64 ; 0x40 + 8003d64: af00 add r7, sp, #0 + 8003d66: 60f8 str r0, [r7, #12] + 8003d68: 60b9 str r1, [r7, #8] + 8003d6a: 607a str r2, [r7, #4] + 8003d6c: 603b str r3, [r7, #0] BaseType_t xReturn; UBaseType_t uxSavedInterruptStatus; Queue_t * const pxQueue = xQueue; - 8003d32: 68fb ldr r3, [r7, #12] - 8003d34: 63bb str r3, [r7, #56] ; 0x38 + 8003d6e: 68fb ldr r3, [r7, #12] + 8003d70: 63bb str r3, [r7, #56] ; 0x38 configASSERT( pxQueue ); - 8003d36: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003d38: 2b00 cmp r3, #0 - 8003d3a: d10a bne.n 8003d52 + 8003d72: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003d74: 2b00 cmp r3, #0 + 8003d76: d10a bne.n 8003d8e __asm volatile - 8003d3c: f04f 0350 mov.w r3, #80 ; 0x50 - 8003d40: f383 8811 msr BASEPRI, r3 - 8003d44: f3bf 8f6f isb sy - 8003d48: f3bf 8f4f dsb sy - 8003d4c: 62bb str r3, [r7, #40] ; 0x28 + 8003d78: f04f 0350 mov.w r3, #80 ; 0x50 + 8003d7c: f383 8811 msr BASEPRI, r3 + 8003d80: f3bf 8f6f isb sy + 8003d84: f3bf 8f4f dsb sy + 8003d88: 62bb str r3, [r7, #40] ; 0x28 } - 8003d4e: bf00 nop - 8003d50: e7fe b.n 8003d50 + 8003d8a: bf00 nop + 8003d8c: e7fe b.n 8003d8c configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 8003d52: 68bb ldr r3, [r7, #8] - 8003d54: 2b00 cmp r3, #0 - 8003d56: d103 bne.n 8003d60 - 8003d58: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003d5a: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003d5c: 2b00 cmp r3, #0 - 8003d5e: d101 bne.n 8003d64 - 8003d60: 2301 movs r3, #1 - 8003d62: e000 b.n 8003d66 - 8003d64: 2300 movs r3, #0 - 8003d66: 2b00 cmp r3, #0 - 8003d68: d10a bne.n 8003d80 + 8003d8e: 68bb ldr r3, [r7, #8] + 8003d90: 2b00 cmp r3, #0 + 8003d92: d103 bne.n 8003d9c + 8003d94: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003d96: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003d98: 2b00 cmp r3, #0 + 8003d9a: d101 bne.n 8003da0 + 8003d9c: 2301 movs r3, #1 + 8003d9e: e000 b.n 8003da2 + 8003da0: 2300 movs r3, #0 + 8003da2: 2b00 cmp r3, #0 + 8003da4: d10a bne.n 8003dbc __asm volatile - 8003d6a: f04f 0350 mov.w r3, #80 ; 0x50 - 8003d6e: f383 8811 msr BASEPRI, r3 - 8003d72: f3bf 8f6f isb sy - 8003d76: f3bf 8f4f dsb sy - 8003d7a: 627b str r3, [r7, #36] ; 0x24 + 8003da6: f04f 0350 mov.w r3, #80 ; 0x50 + 8003daa: f383 8811 msr BASEPRI, r3 + 8003dae: f3bf 8f6f isb sy + 8003db2: f3bf 8f4f dsb sy + 8003db6: 627b str r3, [r7, #36] ; 0x24 } - 8003d7c: bf00 nop - 8003d7e: e7fe b.n 8003d7e + 8003db8: bf00 nop + 8003dba: e7fe b.n 8003dba configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - 8003d80: 683b ldr r3, [r7, #0] - 8003d82: 2b02 cmp r3, #2 - 8003d84: d103 bne.n 8003d8e - 8003d86: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003d88: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003d8a: 2b01 cmp r3, #1 - 8003d8c: d101 bne.n 8003d92 - 8003d8e: 2301 movs r3, #1 - 8003d90: e000 b.n 8003d94 - 8003d92: 2300 movs r3, #0 - 8003d94: 2b00 cmp r3, #0 - 8003d96: d10a bne.n 8003dae + 8003dbc: 683b ldr r3, [r7, #0] + 8003dbe: 2b02 cmp r3, #2 + 8003dc0: d103 bne.n 8003dca + 8003dc2: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003dc4: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003dc6: 2b01 cmp r3, #1 + 8003dc8: d101 bne.n 8003dce + 8003dca: 2301 movs r3, #1 + 8003dcc: e000 b.n 8003dd0 + 8003dce: 2300 movs r3, #0 + 8003dd0: 2b00 cmp r3, #0 + 8003dd2: d10a bne.n 8003dea __asm volatile - 8003d98: f04f 0350 mov.w r3, #80 ; 0x50 - 8003d9c: f383 8811 msr BASEPRI, r3 - 8003da0: f3bf 8f6f isb sy - 8003da4: f3bf 8f4f dsb sy - 8003da8: 623b str r3, [r7, #32] + 8003dd4: f04f 0350 mov.w r3, #80 ; 0x50 + 8003dd8: f383 8811 msr BASEPRI, r3 + 8003ddc: f3bf 8f6f isb sy + 8003de0: f3bf 8f4f dsb sy + 8003de4: 623b str r3, [r7, #32] } - 8003daa: bf00 nop - 8003dac: e7fe b.n 8003dac + 8003de6: bf00 nop + 8003de8: e7fe b.n 8003de8 that have been assigned a priority at or (logically) below the maximum system call interrupt priority. FreeRTOS maintains a separate interrupt safe API to ensure interrupt entry is as fast and as simple as possible. More information (albeit Cortex-M specific) is provided on the following link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - 8003dae: f001 ff2b bl 8005c08 + 8003dea: f001 ff25 bl 8005c38 portFORCE_INLINE static uint32_t ulPortRaiseBASEPRI( void ) { uint32_t ulOriginalBASEPRI, ulNewBASEPRI; __asm volatile - 8003db2: f3ef 8211 mrs r2, BASEPRI - 8003db6: f04f 0350 mov.w r3, #80 ; 0x50 - 8003dba: f383 8811 msr BASEPRI, r3 - 8003dbe: f3bf 8f6f isb sy - 8003dc2: f3bf 8f4f dsb sy - 8003dc6: 61fa str r2, [r7, #28] - 8003dc8: 61bb str r3, [r7, #24] + 8003dee: f3ef 8211 mrs r2, BASEPRI + 8003df2: f04f 0350 mov.w r3, #80 ; 0x50 + 8003df6: f383 8811 msr BASEPRI, r3 + 8003dfa: f3bf 8f6f isb sy + 8003dfe: f3bf 8f4f dsb sy + 8003e02: 61fa str r2, [r7, #28] + 8003e04: 61bb str r3, [r7, #24] :"=r" (ulOriginalBASEPRI), "=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" ); /* This return will not be reached but is necessary to prevent compiler warnings. */ return ulOriginalBASEPRI; - 8003dca: 69fb ldr r3, [r7, #28] + 8003e06: 69fb ldr r3, [r7, #28] /* Similar to xQueueGenericSend, except without blocking if there is no room in the queue. Also don't directly wake a task that was blocked on a queue read, instead return a flag to say whether a context switch is required or not (i.e. has a task with a higher priority than us been woken by this post). */ uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - 8003dcc: 637b str r3, [r7, #52] ; 0x34 + 8003e08: 637b str r3, [r7, #52] ; 0x34 { if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - 8003dce: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003dd0: 6b9a ldr r2, [r3, #56] ; 0x38 - 8003dd2: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003dd4: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003dd6: 429a cmp r2, r3 - 8003dd8: d302 bcc.n 8003de0 - 8003dda: 683b ldr r3, [r7, #0] - 8003ddc: 2b02 cmp r3, #2 - 8003dde: d12f bne.n 8003e40 + 8003e0a: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e0c: 6b9a ldr r2, [r3, #56] ; 0x38 + 8003e0e: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e10: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003e12: 429a cmp r2, r3 + 8003e14: d302 bcc.n 8003e1c + 8003e16: 683b ldr r3, [r7, #0] + 8003e18: 2b02 cmp r3, #2 + 8003e1a: d12f bne.n 8003e7c { const int8_t cTxLock = pxQueue->cTxLock; - 8003de0: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003de2: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 8003de6: f887 3033 strb.w r3, [r7, #51] ; 0x33 + 8003e1c: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e1e: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 8003e22: f887 3033 strb.w r3, [r7, #51] ; 0x33 const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; - 8003dea: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003dec: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003dee: 62fb str r3, [r7, #44] ; 0x2c + 8003e26: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e28: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003e2a: 62fb str r3, [r7, #44] ; 0x2c /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a semaphore or mutex. That means prvCopyDataToQueue() cannot result in a task disinheriting a priority and prvCopyDataToQueue() can be called here even though the disinherit function does not check if the scheduler is suspended before accessing the ready lists. */ ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - 8003df0: 683a ldr r2, [r7, #0] - 8003df2: 68b9 ldr r1, [r7, #8] - 8003df4: 6bb8 ldr r0, [r7, #56] ; 0x38 - 8003df6: f000 f911 bl 800401c + 8003e2c: 683a ldr r2, [r7, #0] + 8003e2e: 68b9 ldr r1, [r7, #8] + 8003e30: 6bb8 ldr r0, [r7, #56] ; 0x38 + 8003e32: f000 f911 bl 8004058 /* The event list is not altered if the queue is locked. This will be done when the queue is unlocked later. */ if( cTxLock == queueUNLOCKED ) - 8003dfa: f997 3033 ldrsb.w r3, [r7, #51] ; 0x33 - 8003dfe: f1b3 3fff cmp.w r3, #4294967295 - 8003e02: d112 bne.n 8003e2a + 8003e36: f997 3033 ldrsb.w r3, [r7, #51] ; 0x33 + 8003e3a: f1b3 3fff cmp.w r3, #4294967295 + 8003e3e: d112 bne.n 8003e66 } } } #else /* configUSE_QUEUE_SETS */ { if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 8003e04: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003e06: 6a5b ldr r3, [r3, #36] ; 0x24 - 8003e08: 2b00 cmp r3, #0 - 8003e0a: d016 beq.n 8003e3a + 8003e40: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e42: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003e44: 2b00 cmp r3, #0 + 8003e46: d016 beq.n 8003e76 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 8003e0c: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003e0e: 3324 adds r3, #36 ; 0x24 - 8003e10: 4618 mov r0, r3 - 8003e12: f000 fef7 bl 8004c04 - 8003e16: 4603 mov r3, r0 - 8003e18: 2b00 cmp r3, #0 - 8003e1a: d00e beq.n 8003e3a + 8003e48: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e4a: 3324 adds r3, #36 ; 0x24 + 8003e4c: 4618 mov r0, r3 + 8003e4e: f000 fef7 bl 8004c40 + 8003e52: 4603 mov r3, r0 + 8003e54: 2b00 cmp r3, #0 + 8003e56: d00e beq.n 8003e76 { /* The task waiting has a higher priority so record that a context switch is required. */ if( pxHigherPriorityTaskWoken != NULL ) - 8003e1c: 687b ldr r3, [r7, #4] - 8003e1e: 2b00 cmp r3, #0 - 8003e20: d00b beq.n 8003e3a + 8003e58: 687b ldr r3, [r7, #4] + 8003e5a: 2b00 cmp r3, #0 + 8003e5c: d00b beq.n 8003e76 { *pxHigherPriorityTaskWoken = pdTRUE; - 8003e22: 687b ldr r3, [r7, #4] - 8003e24: 2201 movs r2, #1 - 8003e26: 601a str r2, [r3, #0] - 8003e28: e007 b.n 8003e3a + 8003e5e: 687b ldr r3, [r7, #4] + 8003e60: 2201 movs r2, #1 + 8003e62: 601a str r2, [r3, #0] + 8003e64: e007 b.n 8003e76 } else { /* Increment the lock count so the task that unlocks the queue knows that data was posted while it was locked. */ pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); - 8003e2a: f897 3033 ldrb.w r3, [r7, #51] ; 0x33 - 8003e2e: 3301 adds r3, #1 - 8003e30: b2db uxtb r3, r3 - 8003e32: b25a sxtb r2, r3 - 8003e34: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003e36: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003e66: f897 3033 ldrb.w r3, [r7, #51] ; 0x33 + 8003e6a: 3301 adds r3, #1 + 8003e6c: b2db uxtb r3, r3 + 8003e6e: b25a sxtb r2, r3 + 8003e70: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003e72: f883 2045 strb.w r2, [r3, #69] ; 0x45 } xReturn = pdPASS; - 8003e3a: 2301 movs r3, #1 - 8003e3c: 63fb str r3, [r7, #60] ; 0x3c + 8003e76: 2301 movs r3, #1 + 8003e78: 63fb str r3, [r7, #60] ; 0x3c { - 8003e3e: e001 b.n 8003e44 + 8003e7a: e001 b.n 8003e80 } else { traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); xReturn = errQUEUE_FULL; - 8003e40: 2300 movs r3, #0 - 8003e42: 63fb str r3, [r7, #60] ; 0x3c - 8003e44: 6b7b ldr r3, [r7, #52] ; 0x34 - 8003e46: 617b str r3, [r7, #20] + 8003e7c: 2300 movs r3, #0 + 8003e7e: 63fb str r3, [r7, #60] ; 0x3c + 8003e80: 6b7b ldr r3, [r7, #52] ; 0x34 + 8003e82: 617b str r3, [r7, #20] } /*-----------------------------------------------------------*/ portFORCE_INLINE static void vPortSetBASEPRI( uint32_t ulNewMaskValue ) { __asm volatile - 8003e48: 697b ldr r3, [r7, #20] - 8003e4a: f383 8811 msr BASEPRI, r3 + 8003e84: 697b ldr r3, [r7, #20] + 8003e86: f383 8811 msr BASEPRI, r3 ( " msr basepri, %0 " :: "r" ( ulNewMaskValue ) : "memory" ); } - 8003e4e: bf00 nop + 8003e8a: bf00 nop } } portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); return xReturn; - 8003e50: 6bfb ldr r3, [r7, #60] ; 0x3c + 8003e8c: 6bfb ldr r3, [r7, #60] ; 0x3c } - 8003e52: 4618 mov r0, r3 - 8003e54: 3740 adds r7, #64 ; 0x40 - 8003e56: 46bd mov sp, r7 - 8003e58: bd80 pop {r7, pc} + 8003e8e: 4618 mov r0, r3 + 8003e90: 3740 adds r7, #64 ; 0x40 + 8003e92: 46bd mov sp, r7 + 8003e94: bd80 pop {r7, pc} ... -08003e5c : +08003e98 : return xReturn; } /*-----------------------------------------------------------*/ BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) { - 8003e5c: b580 push {r7, lr} - 8003e5e: b08c sub sp, #48 ; 0x30 - 8003e60: af00 add r7, sp, #0 - 8003e62: 60f8 str r0, [r7, #12] - 8003e64: 60b9 str r1, [r7, #8] - 8003e66: 607a str r2, [r7, #4] + 8003e98: b580 push {r7, lr} + 8003e9a: b08c sub sp, #48 ; 0x30 + 8003e9c: af00 add r7, sp, #0 + 8003e9e: 60f8 str r0, [r7, #12] + 8003ea0: 60b9 str r1, [r7, #8] + 8003ea2: 607a str r2, [r7, #4] BaseType_t xEntryTimeSet = pdFALSE; - 8003e68: 2300 movs r3, #0 - 8003e6a: 62fb str r3, [r7, #44] ; 0x2c + 8003ea4: 2300 movs r3, #0 + 8003ea6: 62fb str r3, [r7, #44] ; 0x2c TimeOut_t xTimeOut; Queue_t * const pxQueue = xQueue; - 8003e6c: 68fb ldr r3, [r7, #12] - 8003e6e: 62bb str r3, [r7, #40] ; 0x28 + 8003ea8: 68fb ldr r3, [r7, #12] + 8003eaa: 62bb str r3, [r7, #40] ; 0x28 /* Check the pointer is not NULL. */ configASSERT( ( pxQueue ) ); - 8003e70: 6abb ldr r3, [r7, #40] ; 0x28 - 8003e72: 2b00 cmp r3, #0 - 8003e74: d10a bne.n 8003e8c + 8003eac: 6abb ldr r3, [r7, #40] ; 0x28 + 8003eae: 2b00 cmp r3, #0 + 8003eb0: d10a bne.n 8003ec8 __asm volatile - 8003e76: f04f 0350 mov.w r3, #80 ; 0x50 - 8003e7a: f383 8811 msr BASEPRI, r3 - 8003e7e: f3bf 8f6f isb sy - 8003e82: f3bf 8f4f dsb sy - 8003e86: 623b str r3, [r7, #32] + 8003eb2: f04f 0350 mov.w r3, #80 ; 0x50 + 8003eb6: f383 8811 msr BASEPRI, r3 + 8003eba: f3bf 8f6f isb sy + 8003ebe: f3bf 8f4f dsb sy + 8003ec2: 623b str r3, [r7, #32] } - 8003e88: bf00 nop - 8003e8a: e7fe b.n 8003e8a + 8003ec4: bf00 nop + 8003ec6: e7fe b.n 8003ec6 /* The buffer into which data is received can only be NULL if the data size is zero (so no data is copied into the buffer. */ configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 8003e8c: 68bb ldr r3, [r7, #8] - 8003e8e: 2b00 cmp r3, #0 - 8003e90: d103 bne.n 8003e9a - 8003e92: 6abb ldr r3, [r7, #40] ; 0x28 - 8003e94: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003e96: 2b00 cmp r3, #0 - 8003e98: d101 bne.n 8003e9e - 8003e9a: 2301 movs r3, #1 - 8003e9c: e000 b.n 8003ea0 - 8003e9e: 2300 movs r3, #0 - 8003ea0: 2b00 cmp r3, #0 - 8003ea2: d10a bne.n 8003eba + 8003ec8: 68bb ldr r3, [r7, #8] + 8003eca: 2b00 cmp r3, #0 + 8003ecc: d103 bne.n 8003ed6 + 8003ece: 6abb ldr r3, [r7, #40] ; 0x28 + 8003ed0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003ed2: 2b00 cmp r3, #0 + 8003ed4: d101 bne.n 8003eda + 8003ed6: 2301 movs r3, #1 + 8003ed8: e000 b.n 8003edc + 8003eda: 2300 movs r3, #0 + 8003edc: 2b00 cmp r3, #0 + 8003ede: d10a bne.n 8003ef6 __asm volatile - 8003ea4: f04f 0350 mov.w r3, #80 ; 0x50 - 8003ea8: f383 8811 msr BASEPRI, r3 - 8003eac: f3bf 8f6f isb sy - 8003eb0: f3bf 8f4f dsb sy - 8003eb4: 61fb str r3, [r7, #28] + 8003ee0: f04f 0350 mov.w r3, #80 ; 0x50 + 8003ee4: f383 8811 msr BASEPRI, r3 + 8003ee8: f3bf 8f6f isb sy + 8003eec: f3bf 8f4f dsb sy + 8003ef0: 61fb str r3, [r7, #28] } - 8003eb6: bf00 nop - 8003eb8: e7fe b.n 8003eb8 + 8003ef2: bf00 nop + 8003ef4: e7fe b.n 8003ef4 /* Cannot block if the scheduler is suspended. */ #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) { configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - 8003eba: f001 f865 bl 8004f88 - 8003ebe: 4603 mov r3, r0 - 8003ec0: 2b00 cmp r3, #0 - 8003ec2: d102 bne.n 8003eca - 8003ec4: 687b ldr r3, [r7, #4] - 8003ec6: 2b00 cmp r3, #0 - 8003ec8: d101 bne.n 8003ece - 8003eca: 2301 movs r3, #1 - 8003ecc: e000 b.n 8003ed0 - 8003ece: 2300 movs r3, #0 - 8003ed0: 2b00 cmp r3, #0 - 8003ed2: d10a bne.n 8003eea + 8003ef6: f001 f865 bl 8004fc4 + 8003efa: 4603 mov r3, r0 + 8003efc: 2b00 cmp r3, #0 + 8003efe: d102 bne.n 8003f06 + 8003f00: 687b ldr r3, [r7, #4] + 8003f02: 2b00 cmp r3, #0 + 8003f04: d101 bne.n 8003f0a + 8003f06: 2301 movs r3, #1 + 8003f08: e000 b.n 8003f0c + 8003f0a: 2300 movs r3, #0 + 8003f0c: 2b00 cmp r3, #0 + 8003f0e: d10a bne.n 8003f26 __asm volatile - 8003ed4: f04f 0350 mov.w r3, #80 ; 0x50 - 8003ed8: f383 8811 msr BASEPRI, r3 - 8003edc: f3bf 8f6f isb sy - 8003ee0: f3bf 8f4f dsb sy - 8003ee4: 61bb str r3, [r7, #24] + 8003f10: f04f 0350 mov.w r3, #80 ; 0x50 + 8003f14: f383 8811 msr BASEPRI, r3 + 8003f18: f3bf 8f6f isb sy + 8003f1c: f3bf 8f4f dsb sy + 8003f20: 61bb str r3, [r7, #24] } - 8003ee6: bf00 nop - 8003ee8: e7fe b.n 8003ee8 + 8003f22: bf00 nop + 8003f24: e7fe b.n 8003f24 /*lint -save -e904 This function relaxes the coding standard somewhat to allow return statements within the function itself. This is done in the interest of execution time efficiency. */ for( ;; ) { taskENTER_CRITICAL(); - 8003eea: f001 fdab bl 8005a44 + 8003f26: f001 fda5 bl 8005a74 { const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - 8003eee: 6abb ldr r3, [r7, #40] ; 0x28 - 8003ef0: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003ef2: 627b str r3, [r7, #36] ; 0x24 + 8003f2a: 6abb ldr r3, [r7, #40] ; 0x28 + 8003f2c: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003f2e: 627b str r3, [r7, #36] ; 0x24 /* Is there data in the queue now? To be running the calling task must be the highest priority task wanting to access the queue. */ if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - 8003ef4: 6a7b ldr r3, [r7, #36] ; 0x24 - 8003ef6: 2b00 cmp r3, #0 - 8003ef8: d01f beq.n 8003f3a + 8003f30: 6a7b ldr r3, [r7, #36] ; 0x24 + 8003f32: 2b00 cmp r3, #0 + 8003f34: d01f beq.n 8003f76 { /* Data available, remove one item. */ prvCopyDataFromQueue( pxQueue, pvBuffer ); - 8003efa: 68b9 ldr r1, [r7, #8] - 8003efc: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003efe: f000 f8f7 bl 80040f0 + 8003f36: 68b9 ldr r1, [r7, #8] + 8003f38: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8003f3a: f000 f8f7 bl 800412c traceQUEUE_RECEIVE( pxQueue ); pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; - 8003f02: 6a7b ldr r3, [r7, #36] ; 0x24 - 8003f04: 1e5a subs r2, r3, #1 - 8003f06: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f08: 639a str r2, [r3, #56] ; 0x38 + 8003f3e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8003f40: 1e5a subs r2, r3, #1 + 8003f42: 6abb ldr r3, [r7, #40] ; 0x28 + 8003f44: 639a str r2, [r3, #56] ; 0x38 /* There is now space in the queue, were any tasks waiting to post to the queue? If so, unblock the highest priority waiting task. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 8003f0a: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f0c: 691b ldr r3, [r3, #16] - 8003f0e: 2b00 cmp r3, #0 - 8003f10: d00f beq.n 8003f32 + 8003f46: 6abb ldr r3, [r7, #40] ; 0x28 + 8003f48: 691b ldr r3, [r3, #16] + 8003f4a: 2b00 cmp r3, #0 + 8003f4c: d00f beq.n 8003f6e { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 8003f12: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f14: 3310 adds r3, #16 - 8003f16: 4618 mov r0, r3 - 8003f18: f000 fe74 bl 8004c04 - 8003f1c: 4603 mov r3, r0 - 8003f1e: 2b00 cmp r3, #0 - 8003f20: d007 beq.n 8003f32 + 8003f4e: 6abb ldr r3, [r7, #40] ; 0x28 + 8003f50: 3310 adds r3, #16 + 8003f52: 4618 mov r0, r3 + 8003f54: f000 fe74 bl 8004c40 + 8003f58: 4603 mov r3, r0 + 8003f5a: 2b00 cmp r3, #0 + 8003f5c: d007 beq.n 8003f6e { queueYIELD_IF_USING_PREEMPTION(); - 8003f22: 4b3d ldr r3, [pc, #244] ; (8004018 ) - 8003f24: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003f28: 601a str r2, [r3, #0] - 8003f2a: f3bf 8f4f dsb sy - 8003f2e: f3bf 8f6f isb sy + 8003f5e: 4b3d ldr r3, [pc, #244] ; (8004054 ) + 8003f60: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003f64: 601a str r2, [r3, #0] + 8003f66: f3bf 8f4f dsb sy + 8003f6a: f3bf 8f6f isb sy else { mtCOVERAGE_TEST_MARKER(); } taskEXIT_CRITICAL(); - 8003f32: f001 fdb7 bl 8005aa4 + 8003f6e: f001 fdb1 bl 8005ad4 return pdPASS; - 8003f36: 2301 movs r3, #1 - 8003f38: e069 b.n 800400e + 8003f72: 2301 movs r3, #1 + 8003f74: e069 b.n 800404a } else { if( xTicksToWait == ( TickType_t ) 0 ) - 8003f3a: 687b ldr r3, [r7, #4] - 8003f3c: 2b00 cmp r3, #0 - 8003f3e: d103 bne.n 8003f48 + 8003f76: 687b ldr r3, [r7, #4] + 8003f78: 2b00 cmp r3, #0 + 8003f7a: d103 bne.n 8003f84 { /* The queue was empty and no block time is specified (or the block time has expired) so leave now. */ taskEXIT_CRITICAL(); - 8003f40: f001 fdb0 bl 8005aa4 + 8003f7c: f001 fdaa bl 8005ad4 traceQUEUE_RECEIVE_FAILED( pxQueue ); return errQUEUE_EMPTY; - 8003f44: 2300 movs r3, #0 - 8003f46: e062 b.n 800400e + 8003f80: 2300 movs r3, #0 + 8003f82: e062 b.n 800404a } else if( xEntryTimeSet == pdFALSE ) - 8003f48: 6afb ldr r3, [r7, #44] ; 0x2c - 8003f4a: 2b00 cmp r3, #0 - 8003f4c: d106 bne.n 8003f5c + 8003f84: 6afb ldr r3, [r7, #44] ; 0x2c + 8003f86: 2b00 cmp r3, #0 + 8003f88: d106 bne.n 8003f98 { /* The queue was empty and a block time was specified so configure the timeout structure. */ vTaskInternalSetTimeOutState( &xTimeOut ); - 8003f4e: f107 0310 add.w r3, r7, #16 - 8003f52: 4618 mov r0, r3 - 8003f54: f000 feba bl 8004ccc + 8003f8a: f107 0310 add.w r3, r7, #16 + 8003f8e: 4618 mov r0, r3 + 8003f90: f000 feba bl 8004d08 xEntryTimeSet = pdTRUE; - 8003f58: 2301 movs r3, #1 - 8003f5a: 62fb str r3, [r7, #44] ; 0x2c + 8003f94: 2301 movs r3, #1 + 8003f96: 62fb str r3, [r7, #44] ; 0x2c /* Entry time was already set. */ mtCOVERAGE_TEST_MARKER(); } } } taskEXIT_CRITICAL(); - 8003f5c: f001 fda2 bl 8005aa4 + 8003f98: f001 fd9c bl 8005ad4 /* Interrupts and other tasks can send to and receive from the queue now the critical section has been exited. */ vTaskSuspendAll(); - 8003f60: f000 fc26 bl 80047b0 + 8003f9c: f000 fc26 bl 80047ec prvLockQueue( pxQueue ); - 8003f64: f001 fd6e bl 8005a44 - 8003f68: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f6a: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 8003f6e: b25b sxtb r3, r3 - 8003f70: f1b3 3fff cmp.w r3, #4294967295 - 8003f74: d103 bne.n 8003f7e - 8003f76: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f78: 2200 movs r2, #0 - 8003f7a: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 8003f7e: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f80: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 8003f84: b25b sxtb r3, r3 - 8003f86: f1b3 3fff cmp.w r3, #4294967295 - 8003f8a: d103 bne.n 8003f94 - 8003f8c: 6abb ldr r3, [r7, #40] ; 0x28 - 8003f8e: 2200 movs r2, #0 - 8003f90: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 8003f94: f001 fd86 bl 8005aa4 + 8003fa0: f001 fd68 bl 8005a74 + 8003fa4: 6abb ldr r3, [r7, #40] ; 0x28 + 8003fa6: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 8003faa: b25b sxtb r3, r3 + 8003fac: f1b3 3fff cmp.w r3, #4294967295 + 8003fb0: d103 bne.n 8003fba + 8003fb2: 6abb ldr r3, [r7, #40] ; 0x28 + 8003fb4: 2200 movs r2, #0 + 8003fb6: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8003fba: 6abb ldr r3, [r7, #40] ; 0x28 + 8003fbc: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 8003fc0: b25b sxtb r3, r3 + 8003fc2: f1b3 3fff cmp.w r3, #4294967295 + 8003fc6: d103 bne.n 8003fd0 + 8003fc8: 6abb ldr r3, [r7, #40] ; 0x28 + 8003fca: 2200 movs r2, #0 + 8003fcc: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003fd0: f001 fd80 bl 8005ad4 /* Update the timeout state to see if it has expired yet. */ if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - 8003f98: 1d3a adds r2, r7, #4 - 8003f9a: f107 0310 add.w r3, r7, #16 - 8003f9e: 4611 mov r1, r2 - 8003fa0: 4618 mov r0, r3 - 8003fa2: f000 fea9 bl 8004cf8 - 8003fa6: 4603 mov r3, r0 - 8003fa8: 2b00 cmp r3, #0 - 8003faa: d123 bne.n 8003ff4 + 8003fd4: 1d3a adds r2, r7, #4 + 8003fd6: f107 0310 add.w r3, r7, #16 + 8003fda: 4611 mov r1, r2 + 8003fdc: 4618 mov r0, r3 + 8003fde: f000 fea9 bl 8004d34 + 8003fe2: 4603 mov r3, r0 + 8003fe4: 2b00 cmp r3, #0 + 8003fe6: d123 bne.n 8004030 { /* The timeout has not expired. If the queue is still empty place the task on the list of tasks waiting to receive from the queue. */ if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - 8003fac: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003fae: f000 f917 bl 80041e0 - 8003fb2: 4603 mov r3, r0 - 8003fb4: 2b00 cmp r3, #0 - 8003fb6: d017 beq.n 8003fe8 + 8003fe8: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8003fea: f000 f917 bl 800421c + 8003fee: 4603 mov r3, r0 + 8003ff0: 2b00 cmp r3, #0 + 8003ff2: d017 beq.n 8004024 { traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); - 8003fb8: 6abb ldr r3, [r7, #40] ; 0x28 - 8003fba: 3324 adds r3, #36 ; 0x24 - 8003fbc: 687a ldr r2, [r7, #4] - 8003fbe: 4611 mov r1, r2 - 8003fc0: 4618 mov r0, r3 - 8003fc2: f000 fdcf bl 8004b64 + 8003ff4: 6abb ldr r3, [r7, #40] ; 0x28 + 8003ff6: 3324 adds r3, #36 ; 0x24 + 8003ff8: 687a ldr r2, [r7, #4] + 8003ffa: 4611 mov r1, r2 + 8003ffc: 4618 mov r0, r3 + 8003ffe: f000 fdcf bl 8004ba0 prvUnlockQueue( pxQueue ); - 8003fc6: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003fc8: f000 f8b8 bl 800413c + 8004002: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004004: f000 f8b8 bl 8004178 if( xTaskResumeAll() == pdFALSE ) - 8003fcc: f000 fbfe bl 80047cc - 8003fd0: 4603 mov r3, r0 - 8003fd2: 2b00 cmp r3, #0 - 8003fd4: d189 bne.n 8003eea + 8004008: f000 fbfe bl 8004808 + 800400c: 4603 mov r3, r0 + 800400e: 2b00 cmp r3, #0 + 8004010: d189 bne.n 8003f26 { portYIELD_WITHIN_API(); - 8003fd6: 4b10 ldr r3, [pc, #64] ; (8004018 ) - 8003fd8: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003fdc: 601a str r2, [r3, #0] - 8003fde: f3bf 8f4f dsb sy - 8003fe2: f3bf 8f6f isb sy - 8003fe6: e780 b.n 8003eea + 8004012: 4b10 ldr r3, [pc, #64] ; (8004054 ) + 8004014: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8004018: 601a str r2, [r3, #0] + 800401a: f3bf 8f4f dsb sy + 800401e: f3bf 8f6f isb sy + 8004022: e780 b.n 8003f26 } else { /* The queue contains data again. Loop back to try and read the data. */ prvUnlockQueue( pxQueue ); - 8003fe8: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003fea: f000 f8a7 bl 800413c + 8004024: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004026: f000 f8a7 bl 8004178 ( void ) xTaskResumeAll(); - 8003fee: f000 fbed bl 80047cc - 8003ff2: e77a b.n 8003eea + 800402a: f000 fbed bl 8004808 + 800402e: e77a b.n 8003f26 } else { /* Timed out. If there is no data in the queue exit, otherwise loop back and attempt to read the data. */ prvUnlockQueue( pxQueue ); - 8003ff4: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003ff6: f000 f8a1 bl 800413c + 8004030: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004032: f000 f8a1 bl 8004178 ( void ) xTaskResumeAll(); - 8003ffa: f000 fbe7 bl 80047cc + 8004036: f000 fbe7 bl 8004808 if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - 8003ffe: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8004000: f000 f8ee bl 80041e0 - 8004004: 4603 mov r3, r0 - 8004006: 2b00 cmp r3, #0 - 8004008: f43f af6f beq.w 8003eea + 800403a: 6ab8 ldr r0, [r7, #40] ; 0x28 + 800403c: f000 f8ee bl 800421c + 8004040: 4603 mov r3, r0 + 8004042: 2b00 cmp r3, #0 + 8004044: f43f af6f beq.w 8003f26 { traceQUEUE_RECEIVE_FAILED( pxQueue ); return errQUEUE_EMPTY; - 800400c: 2300 movs r3, #0 + 8004048: 2300 movs r3, #0 { mtCOVERAGE_TEST_MARKER(); } } } /*lint -restore */ } - 800400e: 4618 mov r0, r3 - 8004010: 3730 adds r7, #48 ; 0x30 - 8004012: 46bd mov sp, r7 - 8004014: bd80 pop {r7, pc} - 8004016: bf00 nop - 8004018: e000ed04 .word 0xe000ed04 + 800404a: 4618 mov r0, r3 + 800404c: 3730 adds r7, #48 ; 0x30 + 800404e: 46bd mov sp, r7 + 8004050: bd80 pop {r7, pc} + 8004052: bf00 nop + 8004054: e000ed04 .word 0xe000ed04 -0800401c : +08004058 : #endif /* configUSE_MUTEXES */ /*-----------------------------------------------------------*/ static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) { - 800401c: b580 push {r7, lr} - 800401e: b086 sub sp, #24 - 8004020: af00 add r7, sp, #0 - 8004022: 60f8 str r0, [r7, #12] - 8004024: 60b9 str r1, [r7, #8] - 8004026: 607a str r2, [r7, #4] + 8004058: b580 push {r7, lr} + 800405a: b086 sub sp, #24 + 800405c: af00 add r7, sp, #0 + 800405e: 60f8 str r0, [r7, #12] + 8004060: 60b9 str r1, [r7, #8] + 8004062: 607a str r2, [r7, #4] BaseType_t xReturn = pdFALSE; - 8004028: 2300 movs r3, #0 - 800402a: 617b str r3, [r7, #20] + 8004064: 2300 movs r3, #0 + 8004066: 617b str r3, [r7, #20] UBaseType_t uxMessagesWaiting; /* This function is called from a critical section. */ uxMessagesWaiting = pxQueue->uxMessagesWaiting; - 800402c: 68fb ldr r3, [r7, #12] - 800402e: 6b9b ldr r3, [r3, #56] ; 0x38 - 8004030: 613b str r3, [r7, #16] + 8004068: 68fb ldr r3, [r7, #12] + 800406a: 6b9b ldr r3, [r3, #56] ; 0x38 + 800406c: 613b str r3, [r7, #16] if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) - 8004032: 68fb ldr r3, [r7, #12] - 8004034: 6c1b ldr r3, [r3, #64] ; 0x40 - 8004036: 2b00 cmp r3, #0 - 8004038: d10d bne.n 8004056 + 800406e: 68fb ldr r3, [r7, #12] + 8004070: 6c1b ldr r3, [r3, #64] ; 0x40 + 8004072: 2b00 cmp r3, #0 + 8004074: d10d bne.n 8004092 { #if ( configUSE_MUTEXES == 1 ) { if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) - 800403a: 68fb ldr r3, [r7, #12] - 800403c: 681b ldr r3, [r3, #0] - 800403e: 2b00 cmp r3, #0 - 8004040: d14d bne.n 80040de + 8004076: 68fb ldr r3, [r7, #12] + 8004078: 681b ldr r3, [r3, #0] + 800407a: 2b00 cmp r3, #0 + 800407c: d14d bne.n 800411a { /* The mutex is no longer being held. */ xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); - 8004042: 68fb ldr r3, [r7, #12] - 8004044: 689b ldr r3, [r3, #8] - 8004046: 4618 mov r0, r3 - 8004048: f000 ffbc bl 8004fc4 - 800404c: 6178 str r0, [r7, #20] + 800407e: 68fb ldr r3, [r7, #12] + 8004080: 689b ldr r3, [r3, #8] + 8004082: 4618 mov r0, r3 + 8004084: f000 ffbc bl 8005000 + 8004088: 6178 str r0, [r7, #20] pxQueue->u.xSemaphore.xMutexHolder = NULL; - 800404e: 68fb ldr r3, [r7, #12] - 8004050: 2200 movs r2, #0 - 8004052: 609a str r2, [r3, #8] - 8004054: e043 b.n 80040de + 800408a: 68fb ldr r3, [r7, #12] + 800408c: 2200 movs r2, #0 + 800408e: 609a str r2, [r3, #8] + 8004090: e043 b.n 800411a mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_MUTEXES */ } else if( xPosition == queueSEND_TO_BACK ) - 8004056: 687b ldr r3, [r7, #4] - 8004058: 2b00 cmp r3, #0 - 800405a: d119 bne.n 8004090 + 8004092: 687b ldr r3, [r7, #4] + 8004094: 2b00 cmp r3, #0 + 8004096: d119 bne.n 80040cc { ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - 800405c: 68fb ldr r3, [r7, #12] - 800405e: 6858 ldr r0, [r3, #4] - 8004060: 68fb ldr r3, [r7, #12] - 8004062: 6c1b ldr r3, [r3, #64] ; 0x40 - 8004064: 461a mov r2, r3 - 8004066: 68b9 ldr r1, [r7, #8] - 8004068: f002 f87c bl 8006164 + 8004098: 68fb ldr r3, [r7, #12] + 800409a: 6858 ldr r0, [r3, #4] + 800409c: 68fb ldr r3, [r7, #12] + 800409e: 6c1b ldr r3, [r3, #64] ; 0x40 + 80040a0: 461a mov r2, r3 + 80040a2: 68b9 ldr r1, [r7, #8] + 80040a4: f002 f876 bl 8006194 pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - 800406c: 68fb ldr r3, [r7, #12] - 800406e: 685a ldr r2, [r3, #4] - 8004070: 68fb ldr r3, [r7, #12] - 8004072: 6c1b ldr r3, [r3, #64] ; 0x40 - 8004074: 441a add r2, r3 - 8004076: 68fb ldr r3, [r7, #12] - 8004078: 605a str r2, [r3, #4] + 80040a8: 68fb ldr r3, [r7, #12] + 80040aa: 685a ldr r2, [r3, #4] + 80040ac: 68fb ldr r3, [r7, #12] + 80040ae: 6c1b ldr r3, [r3, #64] ; 0x40 + 80040b0: 441a add r2, r3 + 80040b2: 68fb ldr r3, [r7, #12] + 80040b4: 605a str r2, [r3, #4] if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - 800407a: 68fb ldr r3, [r7, #12] - 800407c: 685a ldr r2, [r3, #4] - 800407e: 68fb ldr r3, [r7, #12] - 8004080: 689b ldr r3, [r3, #8] - 8004082: 429a cmp r2, r3 - 8004084: d32b bcc.n 80040de + 80040b6: 68fb ldr r3, [r7, #12] + 80040b8: 685a ldr r2, [r3, #4] + 80040ba: 68fb ldr r3, [r7, #12] + 80040bc: 689b ldr r3, [r3, #8] + 80040be: 429a cmp r2, r3 + 80040c0: d32b bcc.n 800411a { pxQueue->pcWriteTo = pxQueue->pcHead; - 8004086: 68fb ldr r3, [r7, #12] - 8004088: 681a ldr r2, [r3, #0] - 800408a: 68fb ldr r3, [r7, #12] - 800408c: 605a str r2, [r3, #4] - 800408e: e026 b.n 80040de + 80040c2: 68fb ldr r3, [r7, #12] + 80040c4: 681a ldr r2, [r3, #0] + 80040c6: 68fb ldr r3, [r7, #12] + 80040c8: 605a str r2, [r3, #4] + 80040ca: e026 b.n 800411a mtCOVERAGE_TEST_MARKER(); } } else { ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ - 8004090: 68fb ldr r3, [r7, #12] - 8004092: 68d8 ldr r0, [r3, #12] - 8004094: 68fb ldr r3, [r7, #12] - 8004096: 6c1b ldr r3, [r3, #64] ; 0x40 - 8004098: 461a mov r2, r3 - 800409a: 68b9 ldr r1, [r7, #8] - 800409c: f002 f862 bl 8006164 + 80040cc: 68fb ldr r3, [r7, #12] + 80040ce: 68d8 ldr r0, [r3, #12] + 80040d0: 68fb ldr r3, [r7, #12] + 80040d2: 6c1b ldr r3, [r3, #64] ; 0x40 + 80040d4: 461a mov r2, r3 + 80040d6: 68b9 ldr r1, [r7, #8] + 80040d8: f002 f85c bl 8006194 pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; - 80040a0: 68fb ldr r3, [r7, #12] - 80040a2: 68da ldr r2, [r3, #12] - 80040a4: 68fb ldr r3, [r7, #12] - 80040a6: 6c1b ldr r3, [r3, #64] ; 0x40 - 80040a8: 425b negs r3, r3 - 80040aa: 441a add r2, r3 - 80040ac: 68fb ldr r3, [r7, #12] - 80040ae: 60da str r2, [r3, #12] + 80040dc: 68fb ldr r3, [r7, #12] + 80040de: 68da ldr r2, [r3, #12] + 80040e0: 68fb ldr r3, [r7, #12] + 80040e2: 6c1b ldr r3, [r3, #64] ; 0x40 + 80040e4: 425b negs r3, r3 + 80040e6: 441a add r2, r3 + 80040e8: 68fb ldr r3, [r7, #12] + 80040ea: 60da str r2, [r3, #12] if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - 80040b0: 68fb ldr r3, [r7, #12] - 80040b2: 68da ldr r2, [r3, #12] - 80040b4: 68fb ldr r3, [r7, #12] - 80040b6: 681b ldr r3, [r3, #0] - 80040b8: 429a cmp r2, r3 - 80040ba: d207 bcs.n 80040cc + 80040ec: 68fb ldr r3, [r7, #12] + 80040ee: 68da ldr r2, [r3, #12] + 80040f0: 68fb ldr r3, [r7, #12] + 80040f2: 681b ldr r3, [r3, #0] + 80040f4: 429a cmp r2, r3 + 80040f6: d207 bcs.n 8004108 { pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); - 80040bc: 68fb ldr r3, [r7, #12] - 80040be: 689a ldr r2, [r3, #8] - 80040c0: 68fb ldr r3, [r7, #12] - 80040c2: 6c1b ldr r3, [r3, #64] ; 0x40 - 80040c4: 425b negs r3, r3 - 80040c6: 441a add r2, r3 - 80040c8: 68fb ldr r3, [r7, #12] - 80040ca: 60da str r2, [r3, #12] + 80040f8: 68fb ldr r3, [r7, #12] + 80040fa: 689a ldr r2, [r3, #8] + 80040fc: 68fb ldr r3, [r7, #12] + 80040fe: 6c1b ldr r3, [r3, #64] ; 0x40 + 8004100: 425b negs r3, r3 + 8004102: 441a add r2, r3 + 8004104: 68fb ldr r3, [r7, #12] + 8004106: 60da str r2, [r3, #12] else { mtCOVERAGE_TEST_MARKER(); } if( xPosition == queueOVERWRITE ) - 80040cc: 687b ldr r3, [r7, #4] - 80040ce: 2b02 cmp r3, #2 - 80040d0: d105 bne.n 80040de + 8004108: 687b ldr r3, [r7, #4] + 800410a: 2b02 cmp r3, #2 + 800410c: d105 bne.n 800411a { if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - 80040d2: 693b ldr r3, [r7, #16] - 80040d4: 2b00 cmp r3, #0 - 80040d6: d002 beq.n 80040de + 800410e: 693b ldr r3, [r7, #16] + 8004110: 2b00 cmp r3, #0 + 8004112: d002 beq.n 800411a { /* An item is not being added but overwritten, so subtract one from the recorded number of items in the queue so when one is added again below the number of recorded items remains correct. */ --uxMessagesWaiting; - 80040d8: 693b ldr r3, [r7, #16] - 80040da: 3b01 subs r3, #1 - 80040dc: 613b str r3, [r7, #16] + 8004114: 693b ldr r3, [r7, #16] + 8004116: 3b01 subs r3, #1 + 8004118: 613b str r3, [r7, #16] { mtCOVERAGE_TEST_MARKER(); } } pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; - 80040de: 693b ldr r3, [r7, #16] - 80040e0: 1c5a adds r2, r3, #1 - 80040e2: 68fb ldr r3, [r7, #12] - 80040e4: 639a str r2, [r3, #56] ; 0x38 + 800411a: 693b ldr r3, [r7, #16] + 800411c: 1c5a adds r2, r3, #1 + 800411e: 68fb ldr r3, [r7, #12] + 8004120: 639a str r2, [r3, #56] ; 0x38 return xReturn; - 80040e6: 697b ldr r3, [r7, #20] + 8004122: 697b ldr r3, [r7, #20] } - 80040e8: 4618 mov r0, r3 - 80040ea: 3718 adds r7, #24 - 80040ec: 46bd mov sp, r7 - 80040ee: bd80 pop {r7, pc} + 8004124: 4618 mov r0, r3 + 8004126: 3718 adds r7, #24 + 8004128: 46bd mov sp, r7 + 800412a: bd80 pop {r7, pc} -080040f0 : +0800412c : /*-----------------------------------------------------------*/ static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) { - 80040f0: b580 push {r7, lr} - 80040f2: b082 sub sp, #8 - 80040f4: af00 add r7, sp, #0 - 80040f6: 6078 str r0, [r7, #4] - 80040f8: 6039 str r1, [r7, #0] + 800412c: b580 push {r7, lr} + 800412e: b082 sub sp, #8 + 8004130: af00 add r7, sp, #0 + 8004132: 6078 str r0, [r7, #4] + 8004134: 6039 str r1, [r7, #0] if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) - 80040fa: 687b ldr r3, [r7, #4] - 80040fc: 6c1b ldr r3, [r3, #64] ; 0x40 - 80040fe: 2b00 cmp r3, #0 - 8004100: d018 beq.n 8004134 + 8004136: 687b ldr r3, [r7, #4] + 8004138: 6c1b ldr r3, [r3, #64] ; 0x40 + 800413a: 2b00 cmp r3, #0 + 800413c: d018 beq.n 8004170 { pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - 8004102: 687b ldr r3, [r7, #4] - 8004104: 68da ldr r2, [r3, #12] - 8004106: 687b ldr r3, [r7, #4] - 8004108: 6c1b ldr r3, [r3, #64] ; 0x40 - 800410a: 441a add r2, r3 - 800410c: 687b ldr r3, [r7, #4] - 800410e: 60da str r2, [r3, #12] + 800413e: 687b ldr r3, [r7, #4] + 8004140: 68da ldr r2, [r3, #12] + 8004142: 687b ldr r3, [r7, #4] + 8004144: 6c1b ldr r3, [r3, #64] ; 0x40 + 8004146: 441a add r2, r3 + 8004148: 687b ldr r3, [r7, #4] + 800414a: 60da str r2, [r3, #12] if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ - 8004110: 687b ldr r3, [r7, #4] - 8004112: 68da ldr r2, [r3, #12] - 8004114: 687b ldr r3, [r7, #4] - 8004116: 689b ldr r3, [r3, #8] - 8004118: 429a cmp r2, r3 - 800411a: d303 bcc.n 8004124 + 800414c: 687b ldr r3, [r7, #4] + 800414e: 68da ldr r2, [r3, #12] + 8004150: 687b ldr r3, [r7, #4] + 8004152: 689b ldr r3, [r3, #8] + 8004154: 429a cmp r2, r3 + 8004156: d303 bcc.n 8004160 { pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; - 800411c: 687b ldr r3, [r7, #4] - 800411e: 681a ldr r2, [r3, #0] - 8004120: 687b ldr r3, [r7, #4] - 8004122: 60da str r2, [r3, #12] + 8004158: 687b ldr r3, [r7, #4] + 800415a: 681a ldr r2, [r3, #0] + 800415c: 687b ldr r3, [r7, #4] + 800415e: 60da str r2, [r3, #12] } else { mtCOVERAGE_TEST_MARKER(); } ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - 8004124: 687b ldr r3, [r7, #4] - 8004126: 68d9 ldr r1, [r3, #12] - 8004128: 687b ldr r3, [r7, #4] - 800412a: 6c1b ldr r3, [r3, #64] ; 0x40 - 800412c: 461a mov r2, r3 - 800412e: 6838 ldr r0, [r7, #0] - 8004130: f002 f818 bl 8006164 + 8004160: 687b ldr r3, [r7, #4] + 8004162: 68d9 ldr r1, [r3, #12] + 8004164: 687b ldr r3, [r7, #4] + 8004166: 6c1b ldr r3, [r3, #64] ; 0x40 + 8004168: 461a mov r2, r3 + 800416a: 6838 ldr r0, [r7, #0] + 800416c: f002 f812 bl 8006194 } } - 8004134: bf00 nop - 8004136: 3708 adds r7, #8 - 8004138: 46bd mov sp, r7 - 800413a: bd80 pop {r7, pc} + 8004170: bf00 nop + 8004172: 3708 adds r7, #8 + 8004174: 46bd mov sp, r7 + 8004176: bd80 pop {r7, pc} -0800413c : +08004178 : /*-----------------------------------------------------------*/ static void prvUnlockQueue( Queue_t * const pxQueue ) { - 800413c: b580 push {r7, lr} - 800413e: b084 sub sp, #16 - 8004140: af00 add r7, sp, #0 - 8004142: 6078 str r0, [r7, #4] + 8004178: b580 push {r7, lr} + 800417a: b084 sub sp, #16 + 800417c: af00 add r7, sp, #0 + 800417e: 6078 str r0, [r7, #4] /* The lock counts contains the number of extra data items placed or removed from the queue while the queue was locked. When a queue is locked items can be added or removed, but the event lists cannot be updated. */ taskENTER_CRITICAL(); - 8004144: f001 fc7e bl 8005a44 + 8004180: f001 fc78 bl 8005a74 { int8_t cTxLock = pxQueue->cTxLock; - 8004148: 687b ldr r3, [r7, #4] - 800414a: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 800414e: 73fb strb r3, [r7, #15] + 8004184: 687b ldr r3, [r7, #4] + 8004186: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 800418a: 73fb strb r3, [r7, #15] /* See if data was added to the queue while it was locked. */ while( cTxLock > queueLOCKED_UNMODIFIED ) - 8004150: e011 b.n 8004176 + 800418c: e011 b.n 80041b2 } #else /* configUSE_QUEUE_SETS */ { /* Tasks that are removed from the event list will get added to the pending ready list as the scheduler is still suspended. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 8004152: 687b ldr r3, [r7, #4] - 8004154: 6a5b ldr r3, [r3, #36] ; 0x24 - 8004156: 2b00 cmp r3, #0 - 8004158: d012 beq.n 8004180 + 800418e: 687b ldr r3, [r7, #4] + 8004190: 6a5b ldr r3, [r3, #36] ; 0x24 + 8004192: 2b00 cmp r3, #0 + 8004194: d012 beq.n 80041bc { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 800415a: 687b ldr r3, [r7, #4] - 800415c: 3324 adds r3, #36 ; 0x24 - 800415e: 4618 mov r0, r3 - 8004160: f000 fd50 bl 8004c04 - 8004164: 4603 mov r3, r0 - 8004166: 2b00 cmp r3, #0 - 8004168: d001 beq.n 800416e + 8004196: 687b ldr r3, [r7, #4] + 8004198: 3324 adds r3, #36 ; 0x24 + 800419a: 4618 mov r0, r3 + 800419c: f000 fd50 bl 8004c40 + 80041a0: 4603 mov r3, r0 + 80041a2: 2b00 cmp r3, #0 + 80041a4: d001 beq.n 80041aa { /* The task waiting has a higher priority so record that a context switch is required. */ vTaskMissedYield(); - 800416a: f000 fe27 bl 8004dbc + 80041a6: f000 fe27 bl 8004df8 break; } } #endif /* configUSE_QUEUE_SETS */ --cTxLock; - 800416e: 7bfb ldrb r3, [r7, #15] - 8004170: 3b01 subs r3, #1 - 8004172: b2db uxtb r3, r3 - 8004174: 73fb strb r3, [r7, #15] + 80041aa: 7bfb ldrb r3, [r7, #15] + 80041ac: 3b01 subs r3, #1 + 80041ae: b2db uxtb r3, r3 + 80041b0: 73fb strb r3, [r7, #15] while( cTxLock > queueLOCKED_UNMODIFIED ) - 8004176: f997 300f ldrsb.w r3, [r7, #15] - 800417a: 2b00 cmp r3, #0 - 800417c: dce9 bgt.n 8004152 - 800417e: e000 b.n 8004182 + 80041b2: f997 300f ldrsb.w r3, [r7, #15] + 80041b6: 2b00 cmp r3, #0 + 80041b8: dce9 bgt.n 800418e + 80041ba: e000 b.n 80041be break; - 8004180: bf00 nop + 80041bc: bf00 nop } pxQueue->cTxLock = queueUNLOCKED; - 8004182: 687b ldr r3, [r7, #4] - 8004184: 22ff movs r2, #255 ; 0xff - 8004186: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 80041be: 687b ldr r3, [r7, #4] + 80041c0: 22ff movs r2, #255 ; 0xff + 80041c2: f883 2045 strb.w r2, [r3, #69] ; 0x45 } taskEXIT_CRITICAL(); - 800418a: f001 fc8b bl 8005aa4 + 80041c6: f001 fc85 bl 8005ad4 /* Do the same for the Rx lock. */ taskENTER_CRITICAL(); - 800418e: f001 fc59 bl 8005a44 + 80041ca: f001 fc53 bl 8005a74 { int8_t cRxLock = pxQueue->cRxLock; - 8004192: 687b ldr r3, [r7, #4] - 8004194: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 8004198: 73bb strb r3, [r7, #14] + 80041ce: 687b ldr r3, [r7, #4] + 80041d0: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 80041d4: 73bb strb r3, [r7, #14] while( cRxLock > queueLOCKED_UNMODIFIED ) - 800419a: e011 b.n 80041c0 + 80041d6: e011 b.n 80041fc { if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 800419c: 687b ldr r3, [r7, #4] - 800419e: 691b ldr r3, [r3, #16] - 80041a0: 2b00 cmp r3, #0 - 80041a2: d012 beq.n 80041ca + 80041d8: 687b ldr r3, [r7, #4] + 80041da: 691b ldr r3, [r3, #16] + 80041dc: 2b00 cmp r3, #0 + 80041de: d012 beq.n 8004206 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 80041a4: 687b ldr r3, [r7, #4] - 80041a6: 3310 adds r3, #16 - 80041a8: 4618 mov r0, r3 - 80041aa: f000 fd2b bl 8004c04 - 80041ae: 4603 mov r3, r0 - 80041b0: 2b00 cmp r3, #0 - 80041b2: d001 beq.n 80041b8 + 80041e0: 687b ldr r3, [r7, #4] + 80041e2: 3310 adds r3, #16 + 80041e4: 4618 mov r0, r3 + 80041e6: f000 fd2b bl 8004c40 + 80041ea: 4603 mov r3, r0 + 80041ec: 2b00 cmp r3, #0 + 80041ee: d001 beq.n 80041f4 { vTaskMissedYield(); - 80041b4: f000 fe02 bl 8004dbc + 80041f0: f000 fe02 bl 8004df8 else { mtCOVERAGE_TEST_MARKER(); } --cRxLock; - 80041b8: 7bbb ldrb r3, [r7, #14] - 80041ba: 3b01 subs r3, #1 - 80041bc: b2db uxtb r3, r3 - 80041be: 73bb strb r3, [r7, #14] + 80041f4: 7bbb ldrb r3, [r7, #14] + 80041f6: 3b01 subs r3, #1 + 80041f8: b2db uxtb r3, r3 + 80041fa: 73bb strb r3, [r7, #14] while( cRxLock > queueLOCKED_UNMODIFIED ) - 80041c0: f997 300e ldrsb.w r3, [r7, #14] - 80041c4: 2b00 cmp r3, #0 - 80041c6: dce9 bgt.n 800419c - 80041c8: e000 b.n 80041cc + 80041fc: f997 300e ldrsb.w r3, [r7, #14] + 8004200: 2b00 cmp r3, #0 + 8004202: dce9 bgt.n 80041d8 + 8004204: e000 b.n 8004208 } else { break; - 80041ca: bf00 nop + 8004206: bf00 nop } } pxQueue->cRxLock = queueUNLOCKED; - 80041cc: 687b ldr r3, [r7, #4] - 80041ce: 22ff movs r2, #255 ; 0xff - 80041d0: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8004208: 687b ldr r3, [r7, #4] + 800420a: 22ff movs r2, #255 ; 0xff + 800420c: f883 2044 strb.w r2, [r3, #68] ; 0x44 } taskEXIT_CRITICAL(); - 80041d4: f001 fc66 bl 8005aa4 + 8004210: f001 fc60 bl 8005ad4 } - 80041d8: bf00 nop - 80041da: 3710 adds r7, #16 - 80041dc: 46bd mov sp, r7 - 80041de: bd80 pop {r7, pc} + 8004214: bf00 nop + 8004216: 3710 adds r7, #16 + 8004218: 46bd mov sp, r7 + 800421a: bd80 pop {r7, pc} -080041e0 : +0800421c : /*-----------------------------------------------------------*/ static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) { - 80041e0: b580 push {r7, lr} - 80041e2: b084 sub sp, #16 - 80041e4: af00 add r7, sp, #0 - 80041e6: 6078 str r0, [r7, #4] + 800421c: b580 push {r7, lr} + 800421e: b084 sub sp, #16 + 8004220: af00 add r7, sp, #0 + 8004222: 6078 str r0, [r7, #4] BaseType_t xReturn; taskENTER_CRITICAL(); - 80041e8: f001 fc2c bl 8005a44 + 8004224: f001 fc26 bl 8005a74 { if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) - 80041ec: 687b ldr r3, [r7, #4] - 80041ee: 6b9b ldr r3, [r3, #56] ; 0x38 - 80041f0: 2b00 cmp r3, #0 - 80041f2: d102 bne.n 80041fa + 8004228: 687b ldr r3, [r7, #4] + 800422a: 6b9b ldr r3, [r3, #56] ; 0x38 + 800422c: 2b00 cmp r3, #0 + 800422e: d102 bne.n 8004236 { xReturn = pdTRUE; - 80041f4: 2301 movs r3, #1 - 80041f6: 60fb str r3, [r7, #12] - 80041f8: e001 b.n 80041fe + 8004230: 2301 movs r3, #1 + 8004232: 60fb str r3, [r7, #12] + 8004234: e001 b.n 800423a } else { xReturn = pdFALSE; - 80041fa: 2300 movs r3, #0 - 80041fc: 60fb str r3, [r7, #12] + 8004236: 2300 movs r3, #0 + 8004238: 60fb str r3, [r7, #12] } } taskEXIT_CRITICAL(); - 80041fe: f001 fc51 bl 8005aa4 + 800423a: f001 fc4b bl 8005ad4 return xReturn; - 8004202: 68fb ldr r3, [r7, #12] + 800423e: 68fb ldr r3, [r7, #12] } - 8004204: 4618 mov r0, r3 - 8004206: 3710 adds r7, #16 - 8004208: 46bd mov sp, r7 - 800420a: bd80 pop {r7, pc} + 8004240: 4618 mov r0, r3 + 8004242: 3710 adds r7, #16 + 8004244: 46bd mov sp, r7 + 8004246: bd80 pop {r7, pc} -0800420c : +08004248 : return xReturn; } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ /*-----------------------------------------------------------*/ static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) { - 800420c: b580 push {r7, lr} - 800420e: b084 sub sp, #16 - 8004210: af00 add r7, sp, #0 - 8004212: 6078 str r0, [r7, #4] + 8004248: b580 push {r7, lr} + 800424a: b084 sub sp, #16 + 800424c: af00 add r7, sp, #0 + 800424e: 6078 str r0, [r7, #4] BaseType_t xReturn; taskENTER_CRITICAL(); - 8004214: f001 fc16 bl 8005a44 + 8004250: f001 fc10 bl 8005a74 { if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) - 8004218: 687b ldr r3, [r7, #4] - 800421a: 6b9a ldr r2, [r3, #56] ; 0x38 - 800421c: 687b ldr r3, [r7, #4] - 800421e: 6bdb ldr r3, [r3, #60] ; 0x3c - 8004220: 429a cmp r2, r3 - 8004222: d102 bne.n 800422a + 8004254: 687b ldr r3, [r7, #4] + 8004256: 6b9a ldr r2, [r3, #56] ; 0x38 + 8004258: 687b ldr r3, [r7, #4] + 800425a: 6bdb ldr r3, [r3, #60] ; 0x3c + 800425c: 429a cmp r2, r3 + 800425e: d102 bne.n 8004266 { xReturn = pdTRUE; - 8004224: 2301 movs r3, #1 - 8004226: 60fb str r3, [r7, #12] - 8004228: e001 b.n 800422e + 8004260: 2301 movs r3, #1 + 8004262: 60fb str r3, [r7, #12] + 8004264: e001 b.n 800426a } else { xReturn = pdFALSE; - 800422a: 2300 movs r3, #0 - 800422c: 60fb str r3, [r7, #12] + 8004266: 2300 movs r3, #0 + 8004268: 60fb str r3, [r7, #12] } } taskEXIT_CRITICAL(); - 800422e: f001 fc39 bl 8005aa4 + 800426a: f001 fc33 bl 8005ad4 return xReturn; - 8004232: 68fb ldr r3, [r7, #12] + 800426e: 68fb ldr r3, [r7, #12] } - 8004234: 4618 mov r0, r3 - 8004236: 3710 adds r7, #16 - 8004238: 46bd mov sp, r7 - 800423a: bd80 pop {r7, pc} + 8004270: 4618 mov r0, r3 + 8004272: 3710 adds r7, #16 + 8004274: 46bd mov sp, r7 + 8004276: bd80 pop {r7, pc} -0800423c : +08004278 : /*-----------------------------------------------------------*/ #if ( configQUEUE_REGISTRY_SIZE > 0 ) void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ { - 800423c: b480 push {r7} - 800423e: b085 sub sp, #20 - 8004240: af00 add r7, sp, #0 - 8004242: 6078 str r0, [r7, #4] - 8004244: 6039 str r1, [r7, #0] + 8004278: b480 push {r7} + 800427a: b085 sub sp, #20 + 800427c: af00 add r7, sp, #0 + 800427e: 6078 str r0, [r7, #4] + 8004280: 6039 str r1, [r7, #0] UBaseType_t ux; /* See if there is an empty space in the registry. A NULL name denotes a free slot. */ for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - 8004246: 2300 movs r3, #0 - 8004248: 60fb str r3, [r7, #12] - 800424a: e014 b.n 8004276 + 8004282: 2300 movs r3, #0 + 8004284: 60fb str r3, [r7, #12] + 8004286: e014 b.n 80042b2 { if( xQueueRegistry[ ux ].pcQueueName == NULL ) - 800424c: 4a0f ldr r2, [pc, #60] ; (800428c ) - 800424e: 68fb ldr r3, [r7, #12] - 8004250: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 8004254: 2b00 cmp r3, #0 - 8004256: d10b bne.n 8004270 + 8004288: 4a0f ldr r2, [pc, #60] ; (80042c8 ) + 800428a: 68fb ldr r3, [r7, #12] + 800428c: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 8004290: 2b00 cmp r3, #0 + 8004292: d10b bne.n 80042ac { /* Store the information on this queue. */ xQueueRegistry[ ux ].pcQueueName = pcQueueName; - 8004258: 490c ldr r1, [pc, #48] ; (800428c ) - 800425a: 68fb ldr r3, [r7, #12] - 800425c: 683a ldr r2, [r7, #0] - 800425e: f841 2033 str.w r2, [r1, r3, lsl #3] + 8004294: 490c ldr r1, [pc, #48] ; (80042c8 ) + 8004296: 68fb ldr r3, [r7, #12] + 8004298: 683a ldr r2, [r7, #0] + 800429a: f841 2033 str.w r2, [r1, r3, lsl #3] xQueueRegistry[ ux ].xHandle = xQueue; - 8004262: 4a0a ldr r2, [pc, #40] ; (800428c ) - 8004264: 68fb ldr r3, [r7, #12] - 8004266: 00db lsls r3, r3, #3 - 8004268: 4413 add r3, r2 - 800426a: 687a ldr r2, [r7, #4] - 800426c: 605a str r2, [r3, #4] + 800429e: 4a0a ldr r2, [pc, #40] ; (80042c8 ) + 80042a0: 68fb ldr r3, [r7, #12] + 80042a2: 00db lsls r3, r3, #3 + 80042a4: 4413 add r3, r2 + 80042a6: 687a ldr r2, [r7, #4] + 80042a8: 605a str r2, [r3, #4] traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); break; - 800426e: e006 b.n 800427e + 80042aa: e006 b.n 80042ba for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - 8004270: 68fb ldr r3, [r7, #12] - 8004272: 3301 adds r3, #1 - 8004274: 60fb str r3, [r7, #12] - 8004276: 68fb ldr r3, [r7, #12] - 8004278: 2b07 cmp r3, #7 - 800427a: d9e7 bls.n 800424c + 80042ac: 68fb ldr r3, [r7, #12] + 80042ae: 3301 adds r3, #1 + 80042b0: 60fb str r3, [r7, #12] + 80042b2: 68fb ldr r3, [r7, #12] + 80042b4: 2b07 cmp r3, #7 + 80042b6: d9e7 bls.n 8004288 else { mtCOVERAGE_TEST_MARKER(); } } } - 800427c: bf00 nop - 800427e: bf00 nop - 8004280: 3714 adds r7, #20 - 8004282: 46bd mov sp, r7 - 8004284: f85d 7b04 ldr.w r7, [sp], #4 - 8004288: 4770 bx lr - 800428a: bf00 nop - 800428c: 200008d0 .word 0x200008d0 + 80042b8: bf00 nop + 80042ba: bf00 nop + 80042bc: 3714 adds r7, #20 + 80042be: 46bd mov sp, r7 + 80042c0: f85d 7b04 ldr.w r7, [sp], #4 + 80042c4: 4770 bx lr + 80042c6: bf00 nop + 80042c8: 200008d0 .word 0x200008d0 -08004290 : +080042cc : /*-----------------------------------------------------------*/ #if ( configUSE_TIMERS == 1 ) void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) { - 8004290: b580 push {r7, lr} - 8004292: b086 sub sp, #24 - 8004294: af00 add r7, sp, #0 - 8004296: 60f8 str r0, [r7, #12] - 8004298: 60b9 str r1, [r7, #8] - 800429a: 607a str r2, [r7, #4] + 80042cc: b580 push {r7, lr} + 80042ce: b086 sub sp, #24 + 80042d0: af00 add r7, sp, #0 + 80042d2: 60f8 str r0, [r7, #12] + 80042d4: 60b9 str r1, [r7, #8] + 80042d6: 607a str r2, [r7, #4] Queue_t * const pxQueue = xQueue; - 800429c: 68fb ldr r3, [r7, #12] - 800429e: 617b str r3, [r7, #20] + 80042d8: 68fb ldr r3, [r7, #12] + 80042da: 617b str r3, [r7, #20] will not actually cause the task to block, just place it on a blocked list. It will not block until the scheduler is unlocked - at which time a yield will be performed. If an item is added to the queue while the queue is locked, and the calling task blocks on the queue, then the calling task will be immediately unblocked when the queue is unlocked. */ prvLockQueue( pxQueue ); - 80042a0: f001 fbd0 bl 8005a44 - 80042a4: 697b ldr r3, [r7, #20] - 80042a6: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 80042aa: b25b sxtb r3, r3 - 80042ac: f1b3 3fff cmp.w r3, #4294967295 - 80042b0: d103 bne.n 80042ba - 80042b2: 697b ldr r3, [r7, #20] - 80042b4: 2200 movs r2, #0 - 80042b6: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 80042ba: 697b ldr r3, [r7, #20] - 80042bc: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 80042c0: b25b sxtb r3, r3 - 80042c2: f1b3 3fff cmp.w r3, #4294967295 - 80042c6: d103 bne.n 80042d0 - 80042c8: 697b ldr r3, [r7, #20] - 80042ca: 2200 movs r2, #0 - 80042cc: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 80042d0: f001 fbe8 bl 8005aa4 + 80042dc: f001 fbca bl 8005a74 + 80042e0: 697b ldr r3, [r7, #20] + 80042e2: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 80042e6: b25b sxtb r3, r3 + 80042e8: f1b3 3fff cmp.w r3, #4294967295 + 80042ec: d103 bne.n 80042f6 + 80042ee: 697b ldr r3, [r7, #20] + 80042f0: 2200 movs r2, #0 + 80042f2: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 80042f6: 697b ldr r3, [r7, #20] + 80042f8: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 80042fc: b25b sxtb r3, r3 + 80042fe: f1b3 3fff cmp.w r3, #4294967295 + 8004302: d103 bne.n 800430c + 8004304: 697b ldr r3, [r7, #20] + 8004306: 2200 movs r2, #0 + 8004308: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 800430c: f001 fbe2 bl 8005ad4 if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) - 80042d4: 697b ldr r3, [r7, #20] - 80042d6: 6b9b ldr r3, [r3, #56] ; 0x38 - 80042d8: 2b00 cmp r3, #0 - 80042da: d106 bne.n 80042ea + 8004310: 697b ldr r3, [r7, #20] + 8004312: 6b9b ldr r3, [r3, #56] ; 0x38 + 8004314: 2b00 cmp r3, #0 + 8004316: d106 bne.n 8004326 { /* There is nothing in the queue, block for the specified period. */ vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); - 80042dc: 697b ldr r3, [r7, #20] - 80042de: 3324 adds r3, #36 ; 0x24 - 80042e0: 687a ldr r2, [r7, #4] - 80042e2: 68b9 ldr r1, [r7, #8] - 80042e4: 4618 mov r0, r3 - 80042e6: f000 fc61 bl 8004bac + 8004318: 697b ldr r3, [r7, #20] + 800431a: 3324 adds r3, #36 ; 0x24 + 800431c: 687a ldr r2, [r7, #4] + 800431e: 68b9 ldr r1, [r7, #8] + 8004320: 4618 mov r0, r3 + 8004322: f000 fc61 bl 8004be8 } else { mtCOVERAGE_TEST_MARKER(); } prvUnlockQueue( pxQueue ); - 80042ea: 6978 ldr r0, [r7, #20] - 80042ec: f7ff ff26 bl 800413c + 8004326: 6978 ldr r0, [r7, #20] + 8004328: f7ff ff26 bl 8004178 } - 80042f0: bf00 nop - 80042f2: 3718 adds r7, #24 - 80042f4: 46bd mov sp, r7 - 80042f6: bd80 pop {r7, pc} + 800432c: bf00 nop + 800432e: 3718 adds r7, #24 + 8004330: 46bd mov sp, r7 + 8004332: bd80 pop {r7, pc} -080042f8 : +08004334 : const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ) { - 80042f8: b580 push {r7, lr} - 80042fa: b08e sub sp, #56 ; 0x38 - 80042fc: af04 add r7, sp, #16 - 80042fe: 60f8 str r0, [r7, #12] - 8004300: 60b9 str r1, [r7, #8] - 8004302: 607a str r2, [r7, #4] - 8004304: 603b str r3, [r7, #0] + 8004334: b580 push {r7, lr} + 8004336: b08e sub sp, #56 ; 0x38 + 8004338: af04 add r7, sp, #16 + 800433a: 60f8 str r0, [r7, #12] + 800433c: 60b9 str r1, [r7, #8] + 800433e: 607a str r2, [r7, #4] + 8004340: 603b str r3, [r7, #0] TCB_t *pxNewTCB; TaskHandle_t xReturn; configASSERT( puxStackBuffer != NULL ); - 8004306: 6b7b ldr r3, [r7, #52] ; 0x34 - 8004308: 2b00 cmp r3, #0 - 800430a: d10a bne.n 8004322 + 8004342: 6b7b ldr r3, [r7, #52] ; 0x34 + 8004344: 2b00 cmp r3, #0 + 8004346: d10a bne.n 800435e __asm volatile - 800430c: f04f 0350 mov.w r3, #80 ; 0x50 - 8004310: f383 8811 msr BASEPRI, r3 - 8004314: f3bf 8f6f isb sy - 8004318: f3bf 8f4f dsb sy - 800431c: 623b str r3, [r7, #32] + 8004348: f04f 0350 mov.w r3, #80 ; 0x50 + 800434c: f383 8811 msr BASEPRI, r3 + 8004350: f3bf 8f6f isb sy + 8004354: f3bf 8f4f dsb sy + 8004358: 623b str r3, [r7, #32] } - 800431e: bf00 nop - 8004320: e7fe b.n 8004320 + 800435a: bf00 nop + 800435c: e7fe b.n 800435c configASSERT( pxTaskBuffer != NULL ); - 8004322: 6bbb ldr r3, [r7, #56] ; 0x38 - 8004324: 2b00 cmp r3, #0 - 8004326: d10a bne.n 800433e + 800435e: 6bbb ldr r3, [r7, #56] ; 0x38 + 8004360: 2b00 cmp r3, #0 + 8004362: d10a bne.n 800437a __asm volatile - 8004328: f04f 0350 mov.w r3, #80 ; 0x50 - 800432c: f383 8811 msr BASEPRI, r3 - 8004330: f3bf 8f6f isb sy - 8004334: f3bf 8f4f dsb sy - 8004338: 61fb str r3, [r7, #28] + 8004364: f04f 0350 mov.w r3, #80 ; 0x50 + 8004368: f383 8811 msr BASEPRI, r3 + 800436c: f3bf 8f6f isb sy + 8004370: f3bf 8f4f dsb sy + 8004374: 61fb str r3, [r7, #28] } - 800433a: bf00 nop - 800433c: e7fe b.n 800433c + 8004376: bf00 nop + 8004378: e7fe b.n 8004378 #if( configASSERT_DEFINED == 1 ) { /* Sanity check that the size of the structure used to declare a variable of type StaticTask_t equals the size of the real task structure. */ volatile size_t xSize = sizeof( StaticTask_t ); - 800433e: 23a8 movs r3, #168 ; 0xa8 - 8004340: 613b str r3, [r7, #16] + 800437a: 23a8 movs r3, #168 ; 0xa8 + 800437c: 613b str r3, [r7, #16] configASSERT( xSize == sizeof( TCB_t ) ); - 8004342: 693b ldr r3, [r7, #16] - 8004344: 2ba8 cmp r3, #168 ; 0xa8 - 8004346: d00a beq.n 800435e + 800437e: 693b ldr r3, [r7, #16] + 8004380: 2ba8 cmp r3, #168 ; 0xa8 + 8004382: d00a beq.n 800439a __asm volatile - 8004348: f04f 0350 mov.w r3, #80 ; 0x50 - 800434c: f383 8811 msr BASEPRI, r3 - 8004350: f3bf 8f6f isb sy - 8004354: f3bf 8f4f dsb sy - 8004358: 61bb str r3, [r7, #24] + 8004384: f04f 0350 mov.w r3, #80 ; 0x50 + 8004388: f383 8811 msr BASEPRI, r3 + 800438c: f3bf 8f6f isb sy + 8004390: f3bf 8f4f dsb sy + 8004394: 61bb str r3, [r7, #24] } - 800435a: bf00 nop - 800435c: e7fe b.n 800435c + 8004396: bf00 nop + 8004398: e7fe b.n 8004398 ( void ) xSize; /* Prevent lint warning when configASSERT() is not used. */ - 800435e: 693b ldr r3, [r7, #16] + 800439a: 693b ldr r3, [r7, #16] } #endif /* configASSERT_DEFINED */ if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) - 8004360: 6bbb ldr r3, [r7, #56] ; 0x38 - 8004362: 2b00 cmp r3, #0 - 8004364: d01e beq.n 80043a4 - 8004366: 6b7b ldr r3, [r7, #52] ; 0x34 - 8004368: 2b00 cmp r3, #0 - 800436a: d01b beq.n 80043a4 + 800439c: 6bbb ldr r3, [r7, #56] ; 0x38 + 800439e: 2b00 cmp r3, #0 + 80043a0: d01e beq.n 80043e0 + 80043a2: 6b7b ldr r3, [r7, #52] ; 0x34 + 80043a4: 2b00 cmp r3, #0 + 80043a6: d01b beq.n 80043e0 { /* The memory used for the task's TCB and stack are passed into this function - use them. */ pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - 800436c: 6bbb ldr r3, [r7, #56] ; 0x38 - 800436e: 627b str r3, [r7, #36] ; 0x24 + 80043a8: 6bbb ldr r3, [r7, #56] ; 0x38 + 80043aa: 627b str r3, [r7, #36] ; 0x24 pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; - 8004370: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004372: 6b7a ldr r2, [r7, #52] ; 0x34 - 8004374: 631a str r2, [r3, #48] ; 0x30 + 80043ac: 6a7b ldr r3, [r7, #36] ; 0x24 + 80043ae: 6b7a ldr r2, [r7, #52] ; 0x34 + 80043b0: 631a str r2, [r3, #48] ; 0x30 #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ { /* Tasks can be created statically or dynamically, so note this task was created statically in case the task is later deleted. */ pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; - 8004376: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004378: 2202 movs r2, #2 - 800437a: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 + 80043b2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80043b4: 2202 movs r2, #2 + 80043b6: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 } #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); - 800437e: 2300 movs r3, #0 - 8004380: 9303 str r3, [sp, #12] - 8004382: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004384: 9302 str r3, [sp, #8] - 8004386: f107 0314 add.w r3, r7, #20 - 800438a: 9301 str r3, [sp, #4] - 800438c: 6b3b ldr r3, [r7, #48] ; 0x30 - 800438e: 9300 str r3, [sp, #0] - 8004390: 683b ldr r3, [r7, #0] - 8004392: 687a ldr r2, [r7, #4] - 8004394: 68b9 ldr r1, [r7, #8] - 8004396: 68f8 ldr r0, [r7, #12] - 8004398: f000 f850 bl 800443c + 80043ba: 2300 movs r3, #0 + 80043bc: 9303 str r3, [sp, #12] + 80043be: 6a7b ldr r3, [r7, #36] ; 0x24 + 80043c0: 9302 str r3, [sp, #8] + 80043c2: f107 0314 add.w r3, r7, #20 + 80043c6: 9301 str r3, [sp, #4] + 80043c8: 6b3b ldr r3, [r7, #48] ; 0x30 + 80043ca: 9300 str r3, [sp, #0] + 80043cc: 683b ldr r3, [r7, #0] + 80043ce: 687a ldr r2, [r7, #4] + 80043d0: 68b9 ldr r1, [r7, #8] + 80043d2: 68f8 ldr r0, [r7, #12] + 80043d4: f000 f850 bl 8004478 prvAddNewTaskToReadyList( pxNewTCB ); - 800439c: 6a78 ldr r0, [r7, #36] ; 0x24 - 800439e: f000 f8f3 bl 8004588 - 80043a2: e001 b.n 80043a8 + 80043d8: 6a78 ldr r0, [r7, #36] ; 0x24 + 80043da: f000 f8f3 bl 80045c4 + 80043de: e001 b.n 80043e4 } else { xReturn = NULL; - 80043a4: 2300 movs r3, #0 - 80043a6: 617b str r3, [r7, #20] + 80043e0: 2300 movs r3, #0 + 80043e2: 617b str r3, [r7, #20] } return xReturn; - 80043a8: 697b ldr r3, [r7, #20] + 80043e4: 697b ldr r3, [r7, #20] } - 80043aa: 4618 mov r0, r3 - 80043ac: 3728 adds r7, #40 ; 0x28 - 80043ae: 46bd mov sp, r7 - 80043b0: bd80 pop {r7, pc} + 80043e6: 4618 mov r0, r3 + 80043e8: 3728 adds r7, #40 ; 0x28 + 80043ea: 46bd mov sp, r7 + 80043ec: bd80 pop {r7, pc} -080043b2 : +080043ee : const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ const configSTACK_DEPTH_TYPE usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ) { - 80043b2: b580 push {r7, lr} - 80043b4: b08c sub sp, #48 ; 0x30 - 80043b6: af04 add r7, sp, #16 - 80043b8: 60f8 str r0, [r7, #12] - 80043ba: 60b9 str r1, [r7, #8] - 80043bc: 603b str r3, [r7, #0] - 80043be: 4613 mov r3, r2 - 80043c0: 80fb strh r3, [r7, #6] + 80043ee: b580 push {r7, lr} + 80043f0: b08c sub sp, #48 ; 0x30 + 80043f2: af04 add r7, sp, #16 + 80043f4: 60f8 str r0, [r7, #12] + 80043f6: 60b9 str r1, [r7, #8] + 80043f8: 603b str r3, [r7, #0] + 80043fa: 4613 mov r3, r2 + 80043fc: 80fb strh r3, [r7, #6] #else /* portSTACK_GROWTH */ { StackType_t *pxStack; /* Allocate space for the stack used by the task being created. */ pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ - 80043c2: 88fb ldrh r3, [r7, #6] - 80043c4: 009b lsls r3, r3, #2 - 80043c6: 4618 mov r0, r3 - 80043c8: f001 fc5e bl 8005c88 - 80043cc: 6178 str r0, [r7, #20] + 80043fe: 88fb ldrh r3, [r7, #6] + 8004400: 009b lsls r3, r3, #2 + 8004402: 4618 mov r0, r3 + 8004404: f001 fc58 bl 8005cb8 + 8004408: 6178 str r0, [r7, #20] if( pxStack != NULL ) - 80043ce: 697b ldr r3, [r7, #20] - 80043d0: 2b00 cmp r3, #0 - 80043d2: d00e beq.n 80043f2 + 800440a: 697b ldr r3, [r7, #20] + 800440c: 2b00 cmp r3, #0 + 800440e: d00e beq.n 800442e { /* Allocate space for the TCB. */ pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ - 80043d4: 20a8 movs r0, #168 ; 0xa8 - 80043d6: f001 fc57 bl 8005c88 - 80043da: 61f8 str r0, [r7, #28] + 8004410: 20a8 movs r0, #168 ; 0xa8 + 8004412: f001 fc51 bl 8005cb8 + 8004416: 61f8 str r0, [r7, #28] if( pxNewTCB != NULL ) - 80043dc: 69fb ldr r3, [r7, #28] - 80043de: 2b00 cmp r3, #0 - 80043e0: d003 beq.n 80043ea + 8004418: 69fb ldr r3, [r7, #28] + 800441a: 2b00 cmp r3, #0 + 800441c: d003 beq.n 8004426 { /* Store the stack location in the TCB. */ pxNewTCB->pxStack = pxStack; - 80043e2: 69fb ldr r3, [r7, #28] - 80043e4: 697a ldr r2, [r7, #20] - 80043e6: 631a str r2, [r3, #48] ; 0x30 - 80043e8: e005 b.n 80043f6 + 800441e: 69fb ldr r3, [r7, #28] + 8004420: 697a ldr r2, [r7, #20] + 8004422: 631a str r2, [r3, #48] ; 0x30 + 8004424: e005 b.n 8004432 } else { /* The stack cannot be used as the TCB was not created. Free it again. */ vPortFree( pxStack ); - 80043ea: 6978 ldr r0, [r7, #20] - 80043ec: f001 fd18 bl 8005e20 - 80043f0: e001 b.n 80043f6 + 8004426: 6978 ldr r0, [r7, #20] + 8004428: f001 fd12 bl 8005e50 + 800442c: e001 b.n 8004432 } } else { pxNewTCB = NULL; - 80043f2: 2300 movs r3, #0 - 80043f4: 61fb str r3, [r7, #28] + 800442e: 2300 movs r3, #0 + 8004430: 61fb str r3, [r7, #28] } } #endif /* portSTACK_GROWTH */ if( pxNewTCB != NULL ) - 80043f6: 69fb ldr r3, [r7, #28] - 80043f8: 2b00 cmp r3, #0 - 80043fa: d017 beq.n 800442c + 8004432: 69fb ldr r3, [r7, #28] + 8004434: 2b00 cmp r3, #0 + 8004436: d017 beq.n 8004468 { #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e9029 !e731 Macro has been consolidated for readability reasons. */ { /* Tasks can be created statically or dynamically, so note this task was created dynamically in case it is later deleted. */ pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; - 80043fc: 69fb ldr r3, [r7, #28] - 80043fe: 2200 movs r2, #0 - 8004400: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 + 8004438: 69fb ldr r3, [r7, #28] + 800443a: 2200 movs r2, #0 + 800443c: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 } #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); - 8004404: 88fa ldrh r2, [r7, #6] - 8004406: 2300 movs r3, #0 - 8004408: 9303 str r3, [sp, #12] - 800440a: 69fb ldr r3, [r7, #28] - 800440c: 9302 str r3, [sp, #8] - 800440e: 6afb ldr r3, [r7, #44] ; 0x2c - 8004410: 9301 str r3, [sp, #4] - 8004412: 6abb ldr r3, [r7, #40] ; 0x28 - 8004414: 9300 str r3, [sp, #0] - 8004416: 683b ldr r3, [r7, #0] - 8004418: 68b9 ldr r1, [r7, #8] - 800441a: 68f8 ldr r0, [r7, #12] - 800441c: f000 f80e bl 800443c + 8004440: 88fa ldrh r2, [r7, #6] + 8004442: 2300 movs r3, #0 + 8004444: 9303 str r3, [sp, #12] + 8004446: 69fb ldr r3, [r7, #28] + 8004448: 9302 str r3, [sp, #8] + 800444a: 6afb ldr r3, [r7, #44] ; 0x2c + 800444c: 9301 str r3, [sp, #4] + 800444e: 6abb ldr r3, [r7, #40] ; 0x28 + 8004450: 9300 str r3, [sp, #0] + 8004452: 683b ldr r3, [r7, #0] + 8004454: 68b9 ldr r1, [r7, #8] + 8004456: 68f8 ldr r0, [r7, #12] + 8004458: f000 f80e bl 8004478 prvAddNewTaskToReadyList( pxNewTCB ); - 8004420: 69f8 ldr r0, [r7, #28] - 8004422: f000 f8b1 bl 8004588 + 800445c: 69f8 ldr r0, [r7, #28] + 800445e: f000 f8b1 bl 80045c4 xReturn = pdPASS; - 8004426: 2301 movs r3, #1 - 8004428: 61bb str r3, [r7, #24] - 800442a: e002 b.n 8004432 + 8004462: 2301 movs r3, #1 + 8004464: 61bb str r3, [r7, #24] + 8004466: e002 b.n 800446e } else { xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - 800442c: f04f 33ff mov.w r3, #4294967295 - 8004430: 61bb str r3, [r7, #24] + 8004468: f04f 33ff mov.w r3, #4294967295 + 800446c: 61bb str r3, [r7, #24] } return xReturn; - 8004432: 69bb ldr r3, [r7, #24] + 800446e: 69bb ldr r3, [r7, #24] } - 8004434: 4618 mov r0, r3 - 8004436: 3720 adds r7, #32 - 8004438: 46bd mov sp, r7 - 800443a: bd80 pop {r7, pc} + 8004470: 4618 mov r0, r3 + 8004472: 3720 adds r7, #32 + 8004474: 46bd mov sp, r7 + 8004476: bd80 pop {r7, pc} -0800443c : +08004478 : void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask, TCB_t *pxNewTCB, const MemoryRegion_t * const xRegions ) { - 800443c: b580 push {r7, lr} - 800443e: b088 sub sp, #32 - 8004440: af00 add r7, sp, #0 - 8004442: 60f8 str r0, [r7, #12] - 8004444: 60b9 str r1, [r7, #8] - 8004446: 607a str r2, [r7, #4] - 8004448: 603b str r3, [r7, #0] + 8004478: b580 push {r7, lr} + 800447a: b088 sub sp, #32 + 800447c: af00 add r7, sp, #0 + 800447e: 60f8 str r0, [r7, #12] + 8004480: 60b9 str r1, [r7, #8] + 8004482: 607a str r2, [r7, #4] + 8004484: 603b str r3, [r7, #0] /* Avoid dependency on memset() if it is not required. */ #if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 ) { /* Fill the stack with a known value to assist debugging. */ ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); - 800444a: 6b3b ldr r3, [r7, #48] ; 0x30 - 800444c: 6b18 ldr r0, [r3, #48] ; 0x30 - 800444e: 687b ldr r3, [r7, #4] - 8004450: 009b lsls r3, r3, #2 - 8004452: 461a mov r2, r3 - 8004454: 21a5 movs r1, #165 ; 0xa5 - 8004456: f001 fe01 bl 800605c + 8004486: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004488: 6b18 ldr r0, [r3, #48] ; 0x30 + 800448a: 687b ldr r3, [r7, #4] + 800448c: 009b lsls r3, r3, #2 + 800448e: 461a mov r2, r3 + 8004490: 21a5 movs r1, #165 ; 0xa5 + 8004492: f001 fdfb bl 800608c grows from high memory to low (as per the 80x86) or vice versa. portSTACK_GROWTH is used to make the result positive or negative as required by the port. */ #if( portSTACK_GROWTH < 0 ) { pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); - 800445a: 6b3b ldr r3, [r7, #48] ; 0x30 - 800445c: 6b1a ldr r2, [r3, #48] ; 0x30 - 800445e: 687b ldr r3, [r7, #4] - 8004460: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 - 8004464: 3b01 subs r3, #1 - 8004466: 009b lsls r3, r3, #2 - 8004468: 4413 add r3, r2 - 800446a: 61bb str r3, [r7, #24] + 8004496: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004498: 6b1a ldr r2, [r3, #48] ; 0x30 + 800449a: 687b ldr r3, [r7, #4] + 800449c: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 + 80044a0: 3b01 subs r3, #1 + 80044a2: 009b lsls r3, r3, #2 + 80044a4: 4413 add r3, r2 + 80044a6: 61bb str r3, [r7, #24] pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 !e9033 !e9078 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. Checked by assert(). */ - 800446c: 69bb ldr r3, [r7, #24] - 800446e: f023 0307 bic.w r3, r3, #7 - 8004472: 61bb str r3, [r7, #24] + 80044a8: 69bb ldr r3, [r7, #24] + 80044aa: f023 0307 bic.w r3, r3, #7 + 80044ae: 61bb str r3, [r7, #24] /* Check the alignment of the calculated top of stack is correct. */ configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - 8004474: 69bb ldr r3, [r7, #24] - 8004476: f003 0307 and.w r3, r3, #7 - 800447a: 2b00 cmp r3, #0 - 800447c: d00a beq.n 8004494 + 80044b0: 69bb ldr r3, [r7, #24] + 80044b2: f003 0307 and.w r3, r3, #7 + 80044b6: 2b00 cmp r3, #0 + 80044b8: d00a beq.n 80044d0 __asm volatile - 800447e: f04f 0350 mov.w r3, #80 ; 0x50 - 8004482: f383 8811 msr BASEPRI, r3 - 8004486: f3bf 8f6f isb sy - 800448a: f3bf 8f4f dsb sy - 800448e: 617b str r3, [r7, #20] + 80044ba: f04f 0350 mov.w r3, #80 ; 0x50 + 80044be: f383 8811 msr BASEPRI, r3 + 80044c2: f3bf 8f6f isb sy + 80044c6: f3bf 8f4f dsb sy + 80044ca: 617b str r3, [r7, #20] } - 8004490: bf00 nop - 8004492: e7fe b.n 8004492 + 80044cc: bf00 nop + 80044ce: e7fe b.n 80044ce pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); } #endif /* portSTACK_GROWTH */ /* Store the task name in the TCB. */ if( pcName != NULL ) - 8004494: 68bb ldr r3, [r7, #8] - 8004496: 2b00 cmp r3, #0 - 8004498: d01f beq.n 80044da + 80044d0: 68bb ldr r3, [r7, #8] + 80044d2: 2b00 cmp r3, #0 + 80044d4: d01f beq.n 8004516 { for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - 800449a: 2300 movs r3, #0 - 800449c: 61fb str r3, [r7, #28] - 800449e: e012 b.n 80044c6 + 80044d6: 2300 movs r3, #0 + 80044d8: 61fb str r3, [r7, #28] + 80044da: e012 b.n 8004502 { pxNewTCB->pcTaskName[ x ] = pcName[ x ]; - 80044a0: 68ba ldr r2, [r7, #8] - 80044a2: 69fb ldr r3, [r7, #28] - 80044a4: 4413 add r3, r2 - 80044a6: 7819 ldrb r1, [r3, #0] - 80044a8: 6b3a ldr r2, [r7, #48] ; 0x30 - 80044aa: 69fb ldr r3, [r7, #28] - 80044ac: 4413 add r3, r2 - 80044ae: 3334 adds r3, #52 ; 0x34 - 80044b0: 460a mov r2, r1 - 80044b2: 701a strb r2, [r3, #0] + 80044dc: 68ba ldr r2, [r7, #8] + 80044de: 69fb ldr r3, [r7, #28] + 80044e0: 4413 add r3, r2 + 80044e2: 7819 ldrb r1, [r3, #0] + 80044e4: 6b3a ldr r2, [r7, #48] ; 0x30 + 80044e6: 69fb ldr r3, [r7, #28] + 80044e8: 4413 add r3, r2 + 80044ea: 3334 adds r3, #52 ; 0x34 + 80044ec: 460a mov r2, r1 + 80044ee: 701a strb r2, [r3, #0] /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than configMAX_TASK_NAME_LEN characters just in case the memory after the string is not accessible (extremely unlikely). */ if( pcName[ x ] == ( char ) 0x00 ) - 80044b4: 68ba ldr r2, [r7, #8] - 80044b6: 69fb ldr r3, [r7, #28] - 80044b8: 4413 add r3, r2 - 80044ba: 781b ldrb r3, [r3, #0] - 80044bc: 2b00 cmp r3, #0 - 80044be: d006 beq.n 80044ce + 80044f0: 68ba ldr r2, [r7, #8] + 80044f2: 69fb ldr r3, [r7, #28] + 80044f4: 4413 add r3, r2 + 80044f6: 781b ldrb r3, [r3, #0] + 80044f8: 2b00 cmp r3, #0 + 80044fa: d006 beq.n 800450a for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - 80044c0: 69fb ldr r3, [r7, #28] - 80044c2: 3301 adds r3, #1 - 80044c4: 61fb str r3, [r7, #28] - 80044c6: 69fb ldr r3, [r7, #28] - 80044c8: 2b0f cmp r3, #15 - 80044ca: d9e9 bls.n 80044a0 - 80044cc: e000 b.n 80044d0 + 80044fc: 69fb ldr r3, [r7, #28] + 80044fe: 3301 adds r3, #1 + 8004500: 61fb str r3, [r7, #28] + 8004502: 69fb ldr r3, [r7, #28] + 8004504: 2b0f cmp r3, #15 + 8004506: d9e9 bls.n 80044dc + 8004508: e000 b.n 800450c { break; - 80044ce: bf00 nop + 800450a: bf00 nop } } /* Ensure the name string is terminated in the case that the string length was greater or equal to configMAX_TASK_NAME_LEN. */ pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; - 80044d0: 6b3b ldr r3, [r7, #48] ; 0x30 - 80044d2: 2200 movs r2, #0 - 80044d4: f883 2043 strb.w r2, [r3, #67] ; 0x43 - 80044d8: e003 b.n 80044e2 + 800450c: 6b3b ldr r3, [r7, #48] ; 0x30 + 800450e: 2200 movs r2, #0 + 8004510: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 8004514: e003 b.n 800451e } else { /* The task has not been given a name, so just ensure there is a NULL terminator when it is read out. */ pxNewTCB->pcTaskName[ 0 ] = 0x00; - 80044da: 6b3b ldr r3, [r7, #48] ; 0x30 - 80044dc: 2200 movs r2, #0 - 80044de: f883 2034 strb.w r2, [r3, #52] ; 0x34 + 8004516: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004518: 2200 movs r2, #0 + 800451a: f883 2034 strb.w r2, [r3, #52] ; 0x34 } /* This is used as an array index so must ensure it's not too large. First remove the privilege bit if one is present. */ if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - 80044e2: 6abb ldr r3, [r7, #40] ; 0x28 - 80044e4: 2b37 cmp r3, #55 ; 0x37 - 80044e6: d901 bls.n 80044ec + 800451e: 6abb ldr r3, [r7, #40] ; 0x28 + 8004520: 2b37 cmp r3, #55 ; 0x37 + 8004522: d901 bls.n 8004528 { uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - 80044e8: 2337 movs r3, #55 ; 0x37 - 80044ea: 62bb str r3, [r7, #40] ; 0x28 + 8004524: 2337 movs r3, #55 ; 0x37 + 8004526: 62bb str r3, [r7, #40] ; 0x28 else { mtCOVERAGE_TEST_MARKER(); } pxNewTCB->uxPriority = uxPriority; - 80044ec: 6b3b ldr r3, [r7, #48] ; 0x30 - 80044ee: 6aba ldr r2, [r7, #40] ; 0x28 - 80044f0: 62da str r2, [r3, #44] ; 0x2c + 8004528: 6b3b ldr r3, [r7, #48] ; 0x30 + 800452a: 6aba ldr r2, [r7, #40] ; 0x28 + 800452c: 62da str r2, [r3, #44] ; 0x2c #if ( configUSE_MUTEXES == 1 ) { pxNewTCB->uxBasePriority = uxPriority; - 80044f2: 6b3b ldr r3, [r7, #48] ; 0x30 - 80044f4: 6aba ldr r2, [r7, #40] ; 0x28 - 80044f6: 64da str r2, [r3, #76] ; 0x4c + 800452e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004530: 6aba ldr r2, [r7, #40] ; 0x28 + 8004532: 64da str r2, [r3, #76] ; 0x4c pxNewTCB->uxMutexesHeld = 0; - 80044f8: 6b3b ldr r3, [r7, #48] ; 0x30 - 80044fa: 2200 movs r2, #0 - 80044fc: 651a str r2, [r3, #80] ; 0x50 + 8004534: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004536: 2200 movs r2, #0 + 8004538: 651a str r2, [r3, #80] ; 0x50 } #endif /* configUSE_MUTEXES */ vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); - 80044fe: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004500: 3304 adds r3, #4 - 8004502: 4618 mov r0, r3 - 8004504: f7ff f978 bl 80037f8 + 800453a: 6b3b ldr r3, [r7, #48] ; 0x30 + 800453c: 3304 adds r3, #4 + 800453e: 4618 mov r0, r3 + 8004540: f7ff f978 bl 8003834 vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); - 8004508: 6b3b ldr r3, [r7, #48] ; 0x30 - 800450a: 3318 adds r3, #24 - 800450c: 4618 mov r0, r3 - 800450e: f7ff f973 bl 80037f8 + 8004544: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004546: 3318 adds r3, #24 + 8004548: 4618 mov r0, r3 + 800454a: f7ff f973 bl 8003834 /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get back to the containing TCB from a generic item in a list. */ listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); - 8004512: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004514: 6b3a ldr r2, [r7, #48] ; 0x30 - 8004516: 611a str r2, [r3, #16] + 800454e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004550: 6b3a ldr r2, [r7, #48] ; 0x30 + 8004552: 611a str r2, [r3, #16] /* Event lists are always in priority order. */ listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8004518: 6abb ldr r3, [r7, #40] ; 0x28 - 800451a: f1c3 0238 rsb r2, r3, #56 ; 0x38 - 800451e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004520: 619a str r2, [r3, #24] + 8004554: 6abb ldr r3, [r7, #40] ; 0x28 + 8004556: f1c3 0238 rsb r2, r3, #56 ; 0x38 + 800455a: 6b3b ldr r3, [r7, #48] ; 0x30 + 800455c: 619a str r2, [r3, #24] listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); - 8004522: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004524: 6b3a ldr r2, [r7, #48] ; 0x30 - 8004526: 625a str r2, [r3, #36] ; 0x24 + 800455e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004560: 6b3a ldr r2, [r7, #48] ; 0x30 + 8004562: 625a str r2, [r3, #36] ; 0x24 } #endif #if ( configUSE_TASK_NOTIFICATIONS == 1 ) { pxNewTCB->ulNotifiedValue = 0; - 8004528: 6b3b ldr r3, [r7, #48] ; 0x30 - 800452a: 2200 movs r2, #0 - 800452c: f8c3 20a0 str.w r2, [r3, #160] ; 0xa0 + 8004564: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004566: 2200 movs r2, #0 + 8004568: f8c3 20a0 str.w r2, [r3, #160] ; 0xa0 pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - 8004530: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004532: 2200 movs r2, #0 - 8004534: f883 20a4 strb.w r2, [r3, #164] ; 0xa4 + 800456c: 6b3b ldr r3, [r7, #48] ; 0x30 + 800456e: 2200 movs r2, #0 + 8004570: f883 20a4 strb.w r2, [r3, #164] ; 0xa4 #if ( configUSE_NEWLIB_REENTRANT == 1 ) { /* Initialise this task's Newlib reent structure. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); - 8004538: 6b3b ldr r3, [r7, #48] ; 0x30 - 800453a: 3354 adds r3, #84 ; 0x54 - 800453c: 224c movs r2, #76 ; 0x4c - 800453e: 2100 movs r1, #0 - 8004540: 4618 mov r0, r3 - 8004542: f001 fd8b bl 800605c - 8004546: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004548: 4a0c ldr r2, [pc, #48] ; (800457c ) - 800454a: 659a str r2, [r3, #88] ; 0x58 - 800454c: 6b3b ldr r3, [r7, #48] ; 0x30 - 800454e: 4a0c ldr r2, [pc, #48] ; (8004580 ) - 8004550: 65da str r2, [r3, #92] ; 0x5c - 8004552: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004554: 4a0b ldr r2, [pc, #44] ; (8004584 ) - 8004556: 661a str r2, [r3, #96] ; 0x60 + 8004574: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004576: 3354 adds r3, #84 ; 0x54 + 8004578: 224c movs r2, #76 ; 0x4c + 800457a: 2100 movs r1, #0 + 800457c: 4618 mov r0, r3 + 800457e: f001 fd85 bl 800608c + 8004582: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004584: 4a0c ldr r2, [pc, #48] ; (80045b8 ) + 8004586: 659a str r2, [r3, #88] ; 0x58 + 8004588: 6b3b ldr r3, [r7, #48] ; 0x30 + 800458a: 4a0c ldr r2, [pc, #48] ; (80045bc ) + 800458c: 65da str r2, [r3, #92] ; 0x5c + 800458e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8004590: 4a0b ldr r2, [pc, #44] ; (80045c0 ) + 8004592: 661a str r2, [r3, #96] ; 0x60 } #endif /* portSTACK_GROWTH */ } #else /* portHAS_STACK_OVERFLOW_CHECKING */ { pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); - 8004558: 683a ldr r2, [r7, #0] - 800455a: 68f9 ldr r1, [r7, #12] - 800455c: 69b8 ldr r0, [r7, #24] - 800455e: f001 f941 bl 80057e4 - 8004562: 4602 mov r2, r0 - 8004564: 6b3b ldr r3, [r7, #48] ; 0x30 - 8004566: 601a str r2, [r3, #0] + 8004594: 683a ldr r2, [r7, #0] + 8004596: 68f9 ldr r1, [r7, #12] + 8004598: 69b8 ldr r0, [r7, #24] + 800459a: f001 f941 bl 8005820 + 800459e: 4602 mov r2, r0 + 80045a0: 6b3b ldr r3, [r7, #48] ; 0x30 + 80045a2: 601a str r2, [r3, #0] } #endif /* portHAS_STACK_OVERFLOW_CHECKING */ } #endif /* portUSING_MPU_WRAPPERS */ if( pxCreatedTask != NULL ) - 8004568: 6afb ldr r3, [r7, #44] ; 0x2c - 800456a: 2b00 cmp r3, #0 - 800456c: d002 beq.n 8004574 + 80045a4: 6afb ldr r3, [r7, #44] ; 0x2c + 80045a6: 2b00 cmp r3, #0 + 80045a8: d002 beq.n 80045b0 { /* Pass the handle out in an anonymous way. The handle can be used to change the created task's priority, delete the created task, etc.*/ *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; - 800456e: 6afb ldr r3, [r7, #44] ; 0x2c - 8004570: 6b3a ldr r2, [r7, #48] ; 0x30 - 8004572: 601a str r2, [r3, #0] + 80045aa: 6afb ldr r3, [r7, #44] ; 0x2c + 80045ac: 6b3a ldr r2, [r7, #48] ; 0x30 + 80045ae: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } } - 8004574: bf00 nop - 8004576: 3720 adds r7, #32 - 8004578: 46bd mov sp, r7 - 800457a: bd80 pop {r7, pc} - 800457c: 20004b64 .word 0x20004b64 - 8004580: 20004bcc .word 0x20004bcc - 8004584: 20004c34 .word 0x20004c34 + 80045b0: bf00 nop + 80045b2: 3720 adds r7, #32 + 80045b4: 46bd mov sp, r7 + 80045b6: bd80 pop {r7, pc} + 80045b8: 20004b64 .word 0x20004b64 + 80045bc: 20004bcc .word 0x20004bcc + 80045c0: 20004c34 .word 0x20004c34 -08004588 : +080045c4 : /*-----------------------------------------------------------*/ static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) { - 8004588: b580 push {r7, lr} - 800458a: b082 sub sp, #8 - 800458c: af00 add r7, sp, #0 - 800458e: 6078 str r0, [r7, #4] + 80045c4: b580 push {r7, lr} + 80045c6: b082 sub sp, #8 + 80045c8: af00 add r7, sp, #0 + 80045ca: 6078 str r0, [r7, #4] /* Ensure interrupts don't access the task lists while the lists are being updated. */ taskENTER_CRITICAL(); - 8004590: f001 fa58 bl 8005a44 + 80045cc: f001 fa52 bl 8005a74 { uxCurrentNumberOfTasks++; - 8004594: 4b2d ldr r3, [pc, #180] ; (800464c ) - 8004596: 681b ldr r3, [r3, #0] - 8004598: 3301 adds r3, #1 - 800459a: 4a2c ldr r2, [pc, #176] ; (800464c ) - 800459c: 6013 str r3, [r2, #0] + 80045d0: 4b2d ldr r3, [pc, #180] ; (8004688 ) + 80045d2: 681b ldr r3, [r3, #0] + 80045d4: 3301 adds r3, #1 + 80045d6: 4a2c ldr r2, [pc, #176] ; (8004688 ) + 80045d8: 6013 str r3, [r2, #0] if( pxCurrentTCB == NULL ) - 800459e: 4b2c ldr r3, [pc, #176] ; (8004650 ) - 80045a0: 681b ldr r3, [r3, #0] - 80045a2: 2b00 cmp r3, #0 - 80045a4: d109 bne.n 80045ba + 80045da: 4b2c ldr r3, [pc, #176] ; (800468c ) + 80045dc: 681b ldr r3, [r3, #0] + 80045de: 2b00 cmp r3, #0 + 80045e0: d109 bne.n 80045f6 { /* There are no other tasks, or all the other tasks are in the suspended state - make this the current task. */ pxCurrentTCB = pxNewTCB; - 80045a6: 4a2a ldr r2, [pc, #168] ; (8004650 ) - 80045a8: 687b ldr r3, [r7, #4] - 80045aa: 6013 str r3, [r2, #0] + 80045e2: 4a2a ldr r2, [pc, #168] ; (800468c ) + 80045e4: 687b ldr r3, [r7, #4] + 80045e6: 6013 str r3, [r2, #0] if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) - 80045ac: 4b27 ldr r3, [pc, #156] ; (800464c ) - 80045ae: 681b ldr r3, [r3, #0] - 80045b0: 2b01 cmp r3, #1 - 80045b2: d110 bne.n 80045d6 + 80045e8: 4b27 ldr r3, [pc, #156] ; (8004688 ) + 80045ea: 681b ldr r3, [r3, #0] + 80045ec: 2b01 cmp r3, #1 + 80045ee: d110 bne.n 8004612 { /* This is the first task to be created so do the preliminary initialisation required. We will not recover if this call fails, but we will report the failure. */ prvInitialiseTaskLists(); - 80045b4: f000 fc26 bl 8004e04 - 80045b8: e00d b.n 80045d6 + 80045f0: f000 fc26 bl 8004e40 + 80045f4: e00d b.n 8004612 else { /* If the scheduler is not already running, make this task the current task if it is the highest priority task to be created so far. */ if( xSchedulerRunning == pdFALSE ) - 80045ba: 4b26 ldr r3, [pc, #152] ; (8004654 ) - 80045bc: 681b ldr r3, [r3, #0] - 80045be: 2b00 cmp r3, #0 - 80045c0: d109 bne.n 80045d6 + 80045f6: 4b26 ldr r3, [pc, #152] ; (8004690 ) + 80045f8: 681b ldr r3, [r3, #0] + 80045fa: 2b00 cmp r3, #0 + 80045fc: d109 bne.n 8004612 { if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) - 80045c2: 4b23 ldr r3, [pc, #140] ; (8004650 ) - 80045c4: 681b ldr r3, [r3, #0] - 80045c6: 6ada ldr r2, [r3, #44] ; 0x2c - 80045c8: 687b ldr r3, [r7, #4] - 80045ca: 6adb ldr r3, [r3, #44] ; 0x2c - 80045cc: 429a cmp r2, r3 - 80045ce: d802 bhi.n 80045d6 + 80045fe: 4b23 ldr r3, [pc, #140] ; (800468c ) + 8004600: 681b ldr r3, [r3, #0] + 8004602: 6ada ldr r2, [r3, #44] ; 0x2c + 8004604: 687b ldr r3, [r7, #4] + 8004606: 6adb ldr r3, [r3, #44] ; 0x2c + 8004608: 429a cmp r2, r3 + 800460a: d802 bhi.n 8004612 { pxCurrentTCB = pxNewTCB; - 80045d0: 4a1f ldr r2, [pc, #124] ; (8004650 ) - 80045d2: 687b ldr r3, [r7, #4] - 80045d4: 6013 str r3, [r2, #0] + 800460c: 4a1f ldr r2, [pc, #124] ; (800468c ) + 800460e: 687b ldr r3, [r7, #4] + 8004610: 6013 str r3, [r2, #0] { mtCOVERAGE_TEST_MARKER(); } } uxTaskNumber++; - 80045d6: 4b20 ldr r3, [pc, #128] ; (8004658 ) - 80045d8: 681b ldr r3, [r3, #0] - 80045da: 3301 adds r3, #1 - 80045dc: 4a1e ldr r2, [pc, #120] ; (8004658 ) - 80045de: 6013 str r3, [r2, #0] + 8004612: 4b20 ldr r3, [pc, #128] ; (8004694 ) + 8004614: 681b ldr r3, [r3, #0] + 8004616: 3301 adds r3, #1 + 8004618: 4a1e ldr r2, [pc, #120] ; (8004694 ) + 800461a: 6013 str r3, [r2, #0] #if ( configUSE_TRACE_FACILITY == 1 ) { /* Add a counter into the TCB for tracing only. */ pxNewTCB->uxTCBNumber = uxTaskNumber; - 80045e0: 4b1d ldr r3, [pc, #116] ; (8004658 ) - 80045e2: 681a ldr r2, [r3, #0] - 80045e4: 687b ldr r3, [r7, #4] - 80045e6: 645a str r2, [r3, #68] ; 0x44 + 800461c: 4b1d ldr r3, [pc, #116] ; (8004694 ) + 800461e: 681a ldr r2, [r3, #0] + 8004620: 687b ldr r3, [r7, #4] + 8004622: 645a str r2, [r3, #68] ; 0x44 } #endif /* configUSE_TRACE_FACILITY */ traceTASK_CREATE( pxNewTCB ); prvAddTaskToReadyList( pxNewTCB ); - 80045e8: 687b ldr r3, [r7, #4] - 80045ea: 6ada ldr r2, [r3, #44] ; 0x2c - 80045ec: 4b1b ldr r3, [pc, #108] ; (800465c ) - 80045ee: 681b ldr r3, [r3, #0] - 80045f0: 429a cmp r2, r3 - 80045f2: d903 bls.n 80045fc - 80045f4: 687b ldr r3, [r7, #4] - 80045f6: 6adb ldr r3, [r3, #44] ; 0x2c - 80045f8: 4a18 ldr r2, [pc, #96] ; (800465c ) - 80045fa: 6013 str r3, [r2, #0] - 80045fc: 687b ldr r3, [r7, #4] - 80045fe: 6ada ldr r2, [r3, #44] ; 0x2c - 8004600: 4613 mov r3, r2 - 8004602: 009b lsls r3, r3, #2 - 8004604: 4413 add r3, r2 - 8004606: 009b lsls r3, r3, #2 - 8004608: 4a15 ldr r2, [pc, #84] ; (8004660 ) - 800460a: 441a add r2, r3 - 800460c: 687b ldr r3, [r7, #4] - 800460e: 3304 adds r3, #4 - 8004610: 4619 mov r1, r3 - 8004612: 4610 mov r0, r2 - 8004614: f7ff f8fd bl 8003812 + 8004624: 687b ldr r3, [r7, #4] + 8004626: 6ada ldr r2, [r3, #44] ; 0x2c + 8004628: 4b1b ldr r3, [pc, #108] ; (8004698 ) + 800462a: 681b ldr r3, [r3, #0] + 800462c: 429a cmp r2, r3 + 800462e: d903 bls.n 8004638 + 8004630: 687b ldr r3, [r7, #4] + 8004632: 6adb ldr r3, [r3, #44] ; 0x2c + 8004634: 4a18 ldr r2, [pc, #96] ; (8004698 ) + 8004636: 6013 str r3, [r2, #0] + 8004638: 687b ldr r3, [r7, #4] + 800463a: 6ada ldr r2, [r3, #44] ; 0x2c + 800463c: 4613 mov r3, r2 + 800463e: 009b lsls r3, r3, #2 + 8004640: 4413 add r3, r2 + 8004642: 009b lsls r3, r3, #2 + 8004644: 4a15 ldr r2, [pc, #84] ; (800469c ) + 8004646: 441a add r2, r3 + 8004648: 687b ldr r3, [r7, #4] + 800464a: 3304 adds r3, #4 + 800464c: 4619 mov r1, r3 + 800464e: 4610 mov r0, r2 + 8004650: f7ff f8fd bl 800384e portSETUP_TCB( pxNewTCB ); } taskEXIT_CRITICAL(); - 8004618: f001 fa44 bl 8005aa4 + 8004654: f001 fa3e bl 8005ad4 if( xSchedulerRunning != pdFALSE ) - 800461c: 4b0d ldr r3, [pc, #52] ; (8004654 ) - 800461e: 681b ldr r3, [r3, #0] - 8004620: 2b00 cmp r3, #0 - 8004622: d00e beq.n 8004642 + 8004658: 4b0d ldr r3, [pc, #52] ; (8004690 ) + 800465a: 681b ldr r3, [r3, #0] + 800465c: 2b00 cmp r3, #0 + 800465e: d00e beq.n 800467e { /* If the created task is of a higher priority than the current task then it should run now. */ if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) - 8004624: 4b0a ldr r3, [pc, #40] ; (8004650 ) - 8004626: 681b ldr r3, [r3, #0] - 8004628: 6ada ldr r2, [r3, #44] ; 0x2c - 800462a: 687b ldr r3, [r7, #4] - 800462c: 6adb ldr r3, [r3, #44] ; 0x2c - 800462e: 429a cmp r2, r3 - 8004630: d207 bcs.n 8004642 + 8004660: 4b0a ldr r3, [pc, #40] ; (800468c ) + 8004662: 681b ldr r3, [r3, #0] + 8004664: 6ada ldr r2, [r3, #44] ; 0x2c + 8004666: 687b ldr r3, [r7, #4] + 8004668: 6adb ldr r3, [r3, #44] ; 0x2c + 800466a: 429a cmp r2, r3 + 800466c: d207 bcs.n 800467e { taskYIELD_IF_USING_PREEMPTION(); - 8004632: 4b0c ldr r3, [pc, #48] ; (8004664 ) - 8004634: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8004638: 601a str r2, [r3, #0] - 800463a: f3bf 8f4f dsb sy - 800463e: f3bf 8f6f isb sy + 800466e: 4b0c ldr r3, [pc, #48] ; (80046a0 ) + 8004670: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8004674: 601a str r2, [r3, #0] + 8004676: f3bf 8f4f dsb sy + 800467a: f3bf 8f6f isb sy } else { mtCOVERAGE_TEST_MARKER(); } } - 8004642: bf00 nop - 8004644: 3708 adds r7, #8 - 8004646: 46bd mov sp, r7 - 8004648: bd80 pop {r7, pc} - 800464a: bf00 nop - 800464c: 20000de4 .word 0x20000de4 - 8004650: 20000910 .word 0x20000910 - 8004654: 20000df0 .word 0x20000df0 - 8004658: 20000e00 .word 0x20000e00 - 800465c: 20000dec .word 0x20000dec - 8004660: 20000914 .word 0x20000914 - 8004664: e000ed04 .word 0xe000ed04 + 800467e: bf00 nop + 8004680: 3708 adds r7, #8 + 8004682: 46bd mov sp, r7 + 8004684: bd80 pop {r7, pc} + 8004686: bf00 nop + 8004688: 20000de4 .word 0x20000de4 + 800468c: 20000910 .word 0x20000910 + 8004690: 20000df0 .word 0x20000df0 + 8004694: 20000e00 .word 0x20000e00 + 8004698: 20000dec .word 0x20000dec + 800469c: 20000914 .word 0x20000914 + 80046a0: e000ed04 .word 0xe000ed04 -08004668 : +080046a4 : /*-----------------------------------------------------------*/ #if ( INCLUDE_vTaskDelay == 1 ) void vTaskDelay( const TickType_t xTicksToDelay ) { - 8004668: b580 push {r7, lr} - 800466a: b084 sub sp, #16 - 800466c: af00 add r7, sp, #0 - 800466e: 6078 str r0, [r7, #4] + 80046a4: b580 push {r7, lr} + 80046a6: b084 sub sp, #16 + 80046a8: af00 add r7, sp, #0 + 80046aa: 6078 str r0, [r7, #4] BaseType_t xAlreadyYielded = pdFALSE; - 8004670: 2300 movs r3, #0 - 8004672: 60fb str r3, [r7, #12] + 80046ac: 2300 movs r3, #0 + 80046ae: 60fb str r3, [r7, #12] /* A delay time of zero just forces a reschedule. */ if( xTicksToDelay > ( TickType_t ) 0U ) - 8004674: 687b ldr r3, [r7, #4] - 8004676: 2b00 cmp r3, #0 - 8004678: d017 beq.n 80046aa + 80046b0: 687b ldr r3, [r7, #4] + 80046b2: 2b00 cmp r3, #0 + 80046b4: d017 beq.n 80046e6 { configASSERT( uxSchedulerSuspended == 0 ); - 800467a: 4b13 ldr r3, [pc, #76] ; (80046c8 ) - 800467c: 681b ldr r3, [r3, #0] - 800467e: 2b00 cmp r3, #0 - 8004680: d00a beq.n 8004698 + 80046b6: 4b13 ldr r3, [pc, #76] ; (8004704 ) + 80046b8: 681b ldr r3, [r3, #0] + 80046ba: 2b00 cmp r3, #0 + 80046bc: d00a beq.n 80046d4 __asm volatile - 8004682: f04f 0350 mov.w r3, #80 ; 0x50 - 8004686: f383 8811 msr BASEPRI, r3 - 800468a: f3bf 8f6f isb sy - 800468e: f3bf 8f4f dsb sy - 8004692: 60bb str r3, [r7, #8] + 80046be: f04f 0350 mov.w r3, #80 ; 0x50 + 80046c2: f383 8811 msr BASEPRI, r3 + 80046c6: f3bf 8f6f isb sy + 80046ca: f3bf 8f4f dsb sy + 80046ce: 60bb str r3, [r7, #8] } - 8004694: bf00 nop - 8004696: e7fe b.n 8004696 + 80046d0: bf00 nop + 80046d2: e7fe b.n 80046d2 vTaskSuspendAll(); - 8004698: f000 f88a bl 80047b0 + 80046d4: f000 f88a bl 80047ec list or removed from the blocked list until the scheduler is resumed. This task cannot be in an event list as it is the currently executing task. */ prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); - 800469c: 2100 movs r1, #0 - 800469e: 6878 ldr r0, [r7, #4] - 80046a0: f000 fcfe bl 80050a0 + 80046d8: 2100 movs r1, #0 + 80046da: 6878 ldr r0, [r7, #4] + 80046dc: f000 fcfe bl 80050dc } xAlreadyYielded = xTaskResumeAll(); - 80046a4: f000 f892 bl 80047cc - 80046a8: 60f8 str r0, [r7, #12] + 80046e0: f000 f892 bl 8004808 + 80046e4: 60f8 str r0, [r7, #12] mtCOVERAGE_TEST_MARKER(); } /* Force a reschedule if xTaskResumeAll has not already done so, we may have put ourselves to sleep. */ if( xAlreadyYielded == pdFALSE ) - 80046aa: 68fb ldr r3, [r7, #12] - 80046ac: 2b00 cmp r3, #0 - 80046ae: d107 bne.n 80046c0 + 80046e6: 68fb ldr r3, [r7, #12] + 80046e8: 2b00 cmp r3, #0 + 80046ea: d107 bne.n 80046fc { portYIELD_WITHIN_API(); - 80046b0: 4b06 ldr r3, [pc, #24] ; (80046cc ) - 80046b2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80046b6: 601a str r2, [r3, #0] - 80046b8: f3bf 8f4f dsb sy - 80046bc: f3bf 8f6f isb sy + 80046ec: 4b06 ldr r3, [pc, #24] ; (8004708 ) + 80046ee: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80046f2: 601a str r2, [r3, #0] + 80046f4: f3bf 8f4f dsb sy + 80046f8: f3bf 8f6f isb sy } else { mtCOVERAGE_TEST_MARKER(); } } - 80046c0: bf00 nop - 80046c2: 3710 adds r7, #16 - 80046c4: 46bd mov sp, r7 - 80046c6: bd80 pop {r7, pc} - 80046c8: 20000e0c .word 0x20000e0c - 80046cc: e000ed04 .word 0xe000ed04 + 80046fc: bf00 nop + 80046fe: 3710 adds r7, #16 + 8004700: 46bd mov sp, r7 + 8004702: bd80 pop {r7, pc} + 8004704: 20000e0c .word 0x20000e0c + 8004708: e000ed04 .word 0xe000ed04 -080046d0 : +0800470c : #endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ /*-----------------------------------------------------------*/ void vTaskStartScheduler( void ) { - 80046d0: b580 push {r7, lr} - 80046d2: b08a sub sp, #40 ; 0x28 - 80046d4: af04 add r7, sp, #16 + 800470c: b580 push {r7, lr} + 800470e: b08a sub sp, #40 ; 0x28 + 8004710: af04 add r7, sp, #16 BaseType_t xReturn; /* Add the idle task at the lowest priority. */ #if( configSUPPORT_STATIC_ALLOCATION == 1 ) { StaticTask_t *pxIdleTaskTCBBuffer = NULL; - 80046d6: 2300 movs r3, #0 - 80046d8: 60bb str r3, [r7, #8] + 8004712: 2300 movs r3, #0 + 8004714: 60bb str r3, [r7, #8] StackType_t *pxIdleTaskStackBuffer = NULL; - 80046da: 2300 movs r3, #0 - 80046dc: 607b str r3, [r7, #4] + 8004716: 2300 movs r3, #0 + 8004718: 607b str r3, [r7, #4] uint32_t ulIdleTaskStackSize; /* The Idle task is created using user provided RAM - obtain the address of the RAM then create the idle task. */ vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); - 80046de: 463a mov r2, r7 - 80046e0: 1d39 adds r1, r7, #4 - 80046e2: f107 0308 add.w r3, r7, #8 - 80046e6: 4618 mov r0, r3 - 80046e8: f7ff f832 bl 8003750 + 800471a: 463a mov r2, r7 + 800471c: 1d39 adds r1, r7, #4 + 800471e: f107 0308 add.w r3, r7, #8 + 8004722: 4618 mov r0, r3 + 8004724: f7ff f832 bl 800378c xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, - 80046ec: 6839 ldr r1, [r7, #0] - 80046ee: 687b ldr r3, [r7, #4] - 80046f0: 68ba ldr r2, [r7, #8] - 80046f2: 9202 str r2, [sp, #8] - 80046f4: 9301 str r3, [sp, #4] - 80046f6: 2300 movs r3, #0 - 80046f8: 9300 str r3, [sp, #0] - 80046fa: 2300 movs r3, #0 - 80046fc: 460a mov r2, r1 - 80046fe: 4924 ldr r1, [pc, #144] ; (8004790 ) - 8004700: 4824 ldr r0, [pc, #144] ; (8004794 ) - 8004702: f7ff fdf9 bl 80042f8 - 8004706: 4603 mov r3, r0 - 8004708: 4a23 ldr r2, [pc, #140] ; (8004798 ) - 800470a: 6013 str r3, [r2, #0] + 8004728: 6839 ldr r1, [r7, #0] + 800472a: 687b ldr r3, [r7, #4] + 800472c: 68ba ldr r2, [r7, #8] + 800472e: 9202 str r2, [sp, #8] + 8004730: 9301 str r3, [sp, #4] + 8004732: 2300 movs r3, #0 + 8004734: 9300 str r3, [sp, #0] + 8004736: 2300 movs r3, #0 + 8004738: 460a mov r2, r1 + 800473a: 4924 ldr r1, [pc, #144] ; (80047cc ) + 800473c: 4824 ldr r0, [pc, #144] ; (80047d0 ) + 800473e: f7ff fdf9 bl 8004334 + 8004742: 4603 mov r3, r0 + 8004744: 4a23 ldr r2, [pc, #140] ; (80047d4 ) + 8004746: 6013 str r3, [r2, #0] ( void * ) NULL, /*lint !e961. The cast is not redundant for all compilers. */ portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ pxIdleTaskStackBuffer, pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ if( xIdleTaskHandle != NULL ) - 800470c: 4b22 ldr r3, [pc, #136] ; (8004798 ) - 800470e: 681b ldr r3, [r3, #0] - 8004710: 2b00 cmp r3, #0 - 8004712: d002 beq.n 800471a + 8004748: 4b22 ldr r3, [pc, #136] ; (80047d4 ) + 800474a: 681b ldr r3, [r3, #0] + 800474c: 2b00 cmp r3, #0 + 800474e: d002 beq.n 8004756 { xReturn = pdPASS; - 8004714: 2301 movs r3, #1 - 8004716: 617b str r3, [r7, #20] - 8004718: e001 b.n 800471e + 8004750: 2301 movs r3, #1 + 8004752: 617b str r3, [r7, #20] + 8004754: e001 b.n 800475a } else { xReturn = pdFAIL; - 800471a: 2300 movs r3, #0 - 800471c: 617b str r3, [r7, #20] + 8004756: 2300 movs r3, #0 + 8004758: 617b str r3, [r7, #20] } #endif /* configSUPPORT_STATIC_ALLOCATION */ #if ( configUSE_TIMERS == 1 ) { if( xReturn == pdPASS ) - 800471e: 697b ldr r3, [r7, #20] - 8004720: 2b01 cmp r3, #1 - 8004722: d102 bne.n 800472a + 800475a: 697b ldr r3, [r7, #20] + 800475c: 2b01 cmp r3, #1 + 800475e: d102 bne.n 8004766 { xReturn = xTimerCreateTimerTask(); - 8004724: f000 fd10 bl 8005148 - 8004728: 6178 str r0, [r7, #20] + 8004760: f000 fd10 bl 8005184 + 8004764: 6178 str r0, [r7, #20] mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_TIMERS */ if( xReturn == pdPASS ) - 800472a: 697b ldr r3, [r7, #20] - 800472c: 2b01 cmp r3, #1 - 800472e: d11b bne.n 8004768 + 8004766: 697b ldr r3, [r7, #20] + 8004768: 2b01 cmp r3, #1 + 800476a: d11b bne.n 80047a4 __asm volatile - 8004730: f04f 0350 mov.w r3, #80 ; 0x50 - 8004734: f383 8811 msr BASEPRI, r3 - 8004738: f3bf 8f6f isb sy - 800473c: f3bf 8f4f dsb sy - 8004740: 613b str r3, [r7, #16] + 800476c: f04f 0350 mov.w r3, #80 ; 0x50 + 8004770: f383 8811 msr BASEPRI, r3 + 8004774: f3bf 8f6f isb sy + 8004778: f3bf 8f4f dsb sy + 800477c: 613b str r3, [r7, #16] } - 8004742: bf00 nop + 800477e: bf00 nop { /* Switch Newlib's _impure_ptr variable to point to the _reent structure specific to the task that will run first. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - 8004744: 4b15 ldr r3, [pc, #84] ; (800479c ) - 8004746: 681b ldr r3, [r3, #0] - 8004748: 3354 adds r3, #84 ; 0x54 - 800474a: 4a15 ldr r2, [pc, #84] ; (80047a0 ) - 800474c: 6013 str r3, [r2, #0] + 8004780: 4b15 ldr r3, [pc, #84] ; (80047d8 ) + 8004782: 681b ldr r3, [r3, #0] + 8004784: 3354 adds r3, #84 ; 0x54 + 8004786: 4a15 ldr r2, [pc, #84] ; (80047dc ) + 8004788: 6013 str r3, [r2, #0] } #endif /* configUSE_NEWLIB_REENTRANT */ xNextTaskUnblockTime = portMAX_DELAY; - 800474e: 4b15 ldr r3, [pc, #84] ; (80047a4 ) - 8004750: f04f 32ff mov.w r2, #4294967295 - 8004754: 601a str r2, [r3, #0] + 800478a: 4b15 ldr r3, [pc, #84] ; (80047e0 ) + 800478c: f04f 32ff mov.w r2, #4294967295 + 8004790: 601a str r2, [r3, #0] xSchedulerRunning = pdTRUE; - 8004756: 4b14 ldr r3, [pc, #80] ; (80047a8 ) - 8004758: 2201 movs r2, #1 - 800475a: 601a str r2, [r3, #0] + 8004792: 4b14 ldr r3, [pc, #80] ; (80047e4 ) + 8004794: 2201 movs r2, #1 + 8004796: 601a str r2, [r3, #0] xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; - 800475c: 4b13 ldr r3, [pc, #76] ; (80047ac ) - 800475e: 2200 movs r2, #0 - 8004760: 601a str r2, [r3, #0] + 8004798: 4b13 ldr r3, [pc, #76] ; (80047e8 ) + 800479a: 2200 movs r2, #0 + 800479c: 601a str r2, [r3, #0] traceTASK_SWITCHED_IN(); /* Setting up the timer tick is hardware specific and thus in the portable interface. */ if( xPortStartScheduler() != pdFALSE ) - 8004762: f001 f8cd bl 8005900 + 800479e: f001 f8c7 bl 8005930 } /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, meaning xIdleTaskHandle is not used anywhere else. */ ( void ) xIdleTaskHandle; } - 8004766: e00e b.n 8004786 + 80047a2: e00e b.n 80047c2 configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); - 8004768: 697b ldr r3, [r7, #20] - 800476a: f1b3 3fff cmp.w r3, #4294967295 - 800476e: d10a bne.n 8004786 + 80047a4: 697b ldr r3, [r7, #20] + 80047a6: f1b3 3fff cmp.w r3, #4294967295 + 80047aa: d10a bne.n 80047c2 __asm volatile - 8004770: f04f 0350 mov.w r3, #80 ; 0x50 - 8004774: f383 8811 msr BASEPRI, r3 - 8004778: f3bf 8f6f isb sy - 800477c: f3bf 8f4f dsb sy - 8004780: 60fb str r3, [r7, #12] + 80047ac: f04f 0350 mov.w r3, #80 ; 0x50 + 80047b0: f383 8811 msr BASEPRI, r3 + 80047b4: f3bf 8f6f isb sy + 80047b8: f3bf 8f4f dsb sy + 80047bc: 60fb str r3, [r7, #12] } - 8004782: bf00 nop - 8004784: e7fe b.n 8004784 + 80047be: bf00 nop + 80047c0: e7fe b.n 80047c0 } - 8004786: bf00 nop - 8004788: 3718 adds r7, #24 - 800478a: 46bd mov sp, r7 - 800478c: bd80 pop {r7, pc} - 800478e: bf00 nop - 8004790: 0800627c .word 0x0800627c - 8004794: 08004dd5 .word 0x08004dd5 - 8004798: 20000e08 .word 0x20000e08 - 800479c: 20000910 .word 0x20000910 - 80047a0: 2000005c .word 0x2000005c - 80047a4: 20000e04 .word 0x20000e04 - 80047a8: 20000df0 .word 0x20000df0 - 80047ac: 20000de8 .word 0x20000de8 + 80047c2: bf00 nop + 80047c4: 3718 adds r7, #24 + 80047c6: 46bd mov sp, r7 + 80047c8: bd80 pop {r7, pc} + 80047ca: bf00 nop + 80047cc: 080062ac .word 0x080062ac + 80047d0: 08004e11 .word 0x08004e11 + 80047d4: 20000e08 .word 0x20000e08 + 80047d8: 20000910 .word 0x20000910 + 80047dc: 2000005c .word 0x2000005c + 80047e0: 20000e04 .word 0x20000e04 + 80047e4: 20000df0 .word 0x20000df0 + 80047e8: 20000de8 .word 0x20000de8 -080047b0 : +080047ec : vPortEndScheduler(); } /*----------------------------------------------------------*/ void vTaskSuspendAll( void ) { - 80047b0: b480 push {r7} - 80047b2: af00 add r7, sp, #0 + 80047ec: b480 push {r7} + 80047ee: af00 add r7, sp, #0 do not otherwise exhibit real time behaviour. */ portSOFTWARE_BARRIER(); /* The scheduler is suspended if uxSchedulerSuspended is non-zero. An increment is used to allow calls to vTaskSuspendAll() to nest. */ ++uxSchedulerSuspended; - 80047b4: 4b04 ldr r3, [pc, #16] ; (80047c8 ) - 80047b6: 681b ldr r3, [r3, #0] - 80047b8: 3301 adds r3, #1 - 80047ba: 4a03 ldr r2, [pc, #12] ; (80047c8 ) - 80047bc: 6013 str r3, [r2, #0] + 80047f0: 4b04 ldr r3, [pc, #16] ; (8004804 ) + 80047f2: 681b ldr r3, [r3, #0] + 80047f4: 3301 adds r3, #1 + 80047f6: 4a03 ldr r2, [pc, #12] ; (8004804 ) + 80047f8: 6013 str r3, [r2, #0] /* Enforces ordering for ports and optimised compilers that may otherwise place the above increment elsewhere. */ portMEMORY_BARRIER(); } - 80047be: bf00 nop - 80047c0: 46bd mov sp, r7 - 80047c2: f85d 7b04 ldr.w r7, [sp], #4 - 80047c6: 4770 bx lr - 80047c8: 20000e0c .word 0x20000e0c + 80047fa: bf00 nop + 80047fc: 46bd mov sp, r7 + 80047fe: f85d 7b04 ldr.w r7, [sp], #4 + 8004802: 4770 bx lr + 8004804: 20000e0c .word 0x20000e0c -080047cc : +08004808 : #endif /* configUSE_TICKLESS_IDLE */ /*----------------------------------------------------------*/ BaseType_t xTaskResumeAll( void ) { - 80047cc: b580 push {r7, lr} - 80047ce: b084 sub sp, #16 - 80047d0: af00 add r7, sp, #0 + 8004808: b580 push {r7, lr} + 800480a: b084 sub sp, #16 + 800480c: af00 add r7, sp, #0 TCB_t *pxTCB = NULL; - 80047d2: 2300 movs r3, #0 - 80047d4: 60fb str r3, [r7, #12] + 800480e: 2300 movs r3, #0 + 8004810: 60fb str r3, [r7, #12] BaseType_t xAlreadyYielded = pdFALSE; - 80047d6: 2300 movs r3, #0 - 80047d8: 60bb str r3, [r7, #8] + 8004812: 2300 movs r3, #0 + 8004814: 60bb str r3, [r7, #8] /* If uxSchedulerSuspended is zero then this function does not match a previous call to vTaskSuspendAll(). */ configASSERT( uxSchedulerSuspended ); - 80047da: 4b42 ldr r3, [pc, #264] ; (80048e4 ) - 80047dc: 681b ldr r3, [r3, #0] - 80047de: 2b00 cmp r3, #0 - 80047e0: d10a bne.n 80047f8 + 8004816: 4b42 ldr r3, [pc, #264] ; (8004920 ) + 8004818: 681b ldr r3, [r3, #0] + 800481a: 2b00 cmp r3, #0 + 800481c: d10a bne.n 8004834 __asm volatile - 80047e2: f04f 0350 mov.w r3, #80 ; 0x50 - 80047e6: f383 8811 msr BASEPRI, r3 - 80047ea: f3bf 8f6f isb sy - 80047ee: f3bf 8f4f dsb sy - 80047f2: 603b str r3, [r7, #0] + 800481e: f04f 0350 mov.w r3, #80 ; 0x50 + 8004822: f383 8811 msr BASEPRI, r3 + 8004826: f3bf 8f6f isb sy + 800482a: f3bf 8f4f dsb sy + 800482e: 603b str r3, [r7, #0] } - 80047f4: bf00 nop - 80047f6: e7fe b.n 80047f6 + 8004830: bf00 nop + 8004832: e7fe b.n 8004832 /* It is possible that an ISR caused a task to be removed from an event list while the scheduler was suspended. If this was the case then the removed task will have been added to the xPendingReadyList. Once the scheduler has been resumed it is safe to move all the pending ready tasks from this list into their appropriate ready list. */ taskENTER_CRITICAL(); - 80047f8: f001 f924 bl 8005a44 + 8004834: f001 f91e bl 8005a74 { --uxSchedulerSuspended; - 80047fc: 4b39 ldr r3, [pc, #228] ; (80048e4 ) - 80047fe: 681b ldr r3, [r3, #0] - 8004800: 3b01 subs r3, #1 - 8004802: 4a38 ldr r2, [pc, #224] ; (80048e4 ) - 8004804: 6013 str r3, [r2, #0] + 8004838: 4b39 ldr r3, [pc, #228] ; (8004920 ) + 800483a: 681b ldr r3, [r3, #0] + 800483c: 3b01 subs r3, #1 + 800483e: 4a38 ldr r2, [pc, #224] ; (8004920 ) + 8004840: 6013 str r3, [r2, #0] if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8004806: 4b37 ldr r3, [pc, #220] ; (80048e4 ) - 8004808: 681b ldr r3, [r3, #0] - 800480a: 2b00 cmp r3, #0 - 800480c: d162 bne.n 80048d4 + 8004842: 4b37 ldr r3, [pc, #220] ; (8004920 ) + 8004844: 681b ldr r3, [r3, #0] + 8004846: 2b00 cmp r3, #0 + 8004848: d162 bne.n 8004910 { if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) - 800480e: 4b36 ldr r3, [pc, #216] ; (80048e8 ) - 8004810: 681b ldr r3, [r3, #0] - 8004812: 2b00 cmp r3, #0 - 8004814: d05e beq.n 80048d4 + 800484a: 4b36 ldr r3, [pc, #216] ; (8004924 ) + 800484c: 681b ldr r3, [r3, #0] + 800484e: 2b00 cmp r3, #0 + 8004850: d05e beq.n 8004910 { /* Move any readied tasks from the pending list into the appropriate ready list. */ while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - 8004816: e02f b.n 8004878 + 8004852: e02f b.n 80048b4 { pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004818: 4b34 ldr r3, [pc, #208] ; (80048ec ) - 800481a: 68db ldr r3, [r3, #12] - 800481c: 68db ldr r3, [r3, #12] - 800481e: 60fb str r3, [r7, #12] + 8004854: 4b34 ldr r3, [pc, #208] ; (8004928 ) + 8004856: 68db ldr r3, [r3, #12] + 8004858: 68db ldr r3, [r3, #12] + 800485a: 60fb str r3, [r7, #12] ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - 8004820: 68fb ldr r3, [r7, #12] - 8004822: 3318 adds r3, #24 - 8004824: 4618 mov r0, r3 - 8004826: f7ff f851 bl 80038cc + 800485c: 68fb ldr r3, [r7, #12] + 800485e: 3318 adds r3, #24 + 8004860: 4618 mov r0, r3 + 8004862: f7ff f851 bl 8003908 ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 800482a: 68fb ldr r3, [r7, #12] - 800482c: 3304 adds r3, #4 - 800482e: 4618 mov r0, r3 - 8004830: f7ff f84c bl 80038cc + 8004866: 68fb ldr r3, [r7, #12] + 8004868: 3304 adds r3, #4 + 800486a: 4618 mov r0, r3 + 800486c: f7ff f84c bl 8003908 prvAddTaskToReadyList( pxTCB ); - 8004834: 68fb ldr r3, [r7, #12] - 8004836: 6ada ldr r2, [r3, #44] ; 0x2c - 8004838: 4b2d ldr r3, [pc, #180] ; (80048f0 ) - 800483a: 681b ldr r3, [r3, #0] - 800483c: 429a cmp r2, r3 - 800483e: d903 bls.n 8004848 - 8004840: 68fb ldr r3, [r7, #12] - 8004842: 6adb ldr r3, [r3, #44] ; 0x2c - 8004844: 4a2a ldr r2, [pc, #168] ; (80048f0 ) - 8004846: 6013 str r3, [r2, #0] - 8004848: 68fb ldr r3, [r7, #12] - 800484a: 6ada ldr r2, [r3, #44] ; 0x2c - 800484c: 4613 mov r3, r2 - 800484e: 009b lsls r3, r3, #2 - 8004850: 4413 add r3, r2 - 8004852: 009b lsls r3, r3, #2 - 8004854: 4a27 ldr r2, [pc, #156] ; (80048f4 ) - 8004856: 441a add r2, r3 - 8004858: 68fb ldr r3, [r7, #12] - 800485a: 3304 adds r3, #4 - 800485c: 4619 mov r1, r3 - 800485e: 4610 mov r0, r2 - 8004860: f7fe ffd7 bl 8003812 + 8004870: 68fb ldr r3, [r7, #12] + 8004872: 6ada ldr r2, [r3, #44] ; 0x2c + 8004874: 4b2d ldr r3, [pc, #180] ; (800492c ) + 8004876: 681b ldr r3, [r3, #0] + 8004878: 429a cmp r2, r3 + 800487a: d903 bls.n 8004884 + 800487c: 68fb ldr r3, [r7, #12] + 800487e: 6adb ldr r3, [r3, #44] ; 0x2c + 8004880: 4a2a ldr r2, [pc, #168] ; (800492c ) + 8004882: 6013 str r3, [r2, #0] + 8004884: 68fb ldr r3, [r7, #12] + 8004886: 6ada ldr r2, [r3, #44] ; 0x2c + 8004888: 4613 mov r3, r2 + 800488a: 009b lsls r3, r3, #2 + 800488c: 4413 add r3, r2 + 800488e: 009b lsls r3, r3, #2 + 8004890: 4a27 ldr r2, [pc, #156] ; (8004930 ) + 8004892: 441a add r2, r3 + 8004894: 68fb ldr r3, [r7, #12] + 8004896: 3304 adds r3, #4 + 8004898: 4619 mov r1, r3 + 800489a: 4610 mov r0, r2 + 800489c: f7fe ffd7 bl 800384e /* If the moved task has a priority higher than the current task then a yield must be performed. */ if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - 8004864: 68fb ldr r3, [r7, #12] - 8004866: 6ada ldr r2, [r3, #44] ; 0x2c - 8004868: 4b23 ldr r3, [pc, #140] ; (80048f8 ) - 800486a: 681b ldr r3, [r3, #0] - 800486c: 6adb ldr r3, [r3, #44] ; 0x2c - 800486e: 429a cmp r2, r3 - 8004870: d302 bcc.n 8004878 + 80048a0: 68fb ldr r3, [r7, #12] + 80048a2: 6ada ldr r2, [r3, #44] ; 0x2c + 80048a4: 4b23 ldr r3, [pc, #140] ; (8004934 ) + 80048a6: 681b ldr r3, [r3, #0] + 80048a8: 6adb ldr r3, [r3, #44] ; 0x2c + 80048aa: 429a cmp r2, r3 + 80048ac: d302 bcc.n 80048b4 { xYieldPending = pdTRUE; - 8004872: 4b22 ldr r3, [pc, #136] ; (80048fc ) - 8004874: 2201 movs r2, #1 - 8004876: 601a str r2, [r3, #0] + 80048ae: 4b22 ldr r3, [pc, #136] ; (8004938 ) + 80048b0: 2201 movs r2, #1 + 80048b2: 601a str r2, [r3, #0] while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - 8004878: 4b1c ldr r3, [pc, #112] ; (80048ec ) - 800487a: 681b ldr r3, [r3, #0] - 800487c: 2b00 cmp r3, #0 - 800487e: d1cb bne.n 8004818 + 80048b4: 4b1c ldr r3, [pc, #112] ; (8004928 ) + 80048b6: 681b ldr r3, [r3, #0] + 80048b8: 2b00 cmp r3, #0 + 80048ba: d1cb bne.n 8004854 { mtCOVERAGE_TEST_MARKER(); } } if( pxTCB != NULL ) - 8004880: 68fb ldr r3, [r7, #12] - 8004882: 2b00 cmp r3, #0 - 8004884: d001 beq.n 800488a + 80048bc: 68fb ldr r3, [r7, #12] + 80048be: 2b00 cmp r3, #0 + 80048c0: d001 beq.n 80048c6 which may have prevented the next unblock time from being re-calculated, in which case re-calculate it now. Mainly important for low power tickless implementations, where this can prevent an unnecessary exit from low power state. */ prvResetNextTaskUnblockTime(); - 8004886: f000 fb5f bl 8004f48 + 80048c2: f000 fb5f bl 8004f84 /* If any ticks occurred while the scheduler was suspended then they should be processed now. This ensures the tick count does not slip, and that any delayed tasks are resumed at the correct time. */ { TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ - 800488a: 4b1d ldr r3, [pc, #116] ; (8004900 ) - 800488c: 681b ldr r3, [r3, #0] - 800488e: 607b str r3, [r7, #4] + 80048c6: 4b1d ldr r3, [pc, #116] ; (800493c ) + 80048c8: 681b ldr r3, [r3, #0] + 80048ca: 607b str r3, [r7, #4] if( xPendedCounts > ( TickType_t ) 0U ) - 8004890: 687b ldr r3, [r7, #4] - 8004892: 2b00 cmp r3, #0 - 8004894: d010 beq.n 80048b8 + 80048cc: 687b ldr r3, [r7, #4] + 80048ce: 2b00 cmp r3, #0 + 80048d0: d010 beq.n 80048f4 { do { if( xTaskIncrementTick() != pdFALSE ) - 8004896: f000 f847 bl 8004928 - 800489a: 4603 mov r3, r0 - 800489c: 2b00 cmp r3, #0 - 800489e: d002 beq.n 80048a6 + 80048d2: f000 f847 bl 8004964 + 80048d6: 4603 mov r3, r0 + 80048d8: 2b00 cmp r3, #0 + 80048da: d002 beq.n 80048e2 { xYieldPending = pdTRUE; - 80048a0: 4b16 ldr r3, [pc, #88] ; (80048fc ) - 80048a2: 2201 movs r2, #1 - 80048a4: 601a str r2, [r3, #0] + 80048dc: 4b16 ldr r3, [pc, #88] ; (8004938 ) + 80048de: 2201 movs r2, #1 + 80048e0: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } --xPendedCounts; - 80048a6: 687b ldr r3, [r7, #4] - 80048a8: 3b01 subs r3, #1 - 80048aa: 607b str r3, [r7, #4] + 80048e2: 687b ldr r3, [r7, #4] + 80048e4: 3b01 subs r3, #1 + 80048e6: 607b str r3, [r7, #4] } while( xPendedCounts > ( TickType_t ) 0U ); - 80048ac: 687b ldr r3, [r7, #4] - 80048ae: 2b00 cmp r3, #0 - 80048b0: d1f1 bne.n 8004896 + 80048e8: 687b ldr r3, [r7, #4] + 80048ea: 2b00 cmp r3, #0 + 80048ec: d1f1 bne.n 80048d2 xPendedTicks = 0; - 80048b2: 4b13 ldr r3, [pc, #76] ; (8004900 ) - 80048b4: 2200 movs r2, #0 - 80048b6: 601a str r2, [r3, #0] + 80048ee: 4b13 ldr r3, [pc, #76] ; (800493c ) + 80048f0: 2200 movs r2, #0 + 80048f2: 601a str r2, [r3, #0] { mtCOVERAGE_TEST_MARKER(); } } if( xYieldPending != pdFALSE ) - 80048b8: 4b10 ldr r3, [pc, #64] ; (80048fc ) - 80048ba: 681b ldr r3, [r3, #0] - 80048bc: 2b00 cmp r3, #0 - 80048be: d009 beq.n 80048d4 + 80048f4: 4b10 ldr r3, [pc, #64] ; (8004938 ) + 80048f6: 681b ldr r3, [r3, #0] + 80048f8: 2b00 cmp r3, #0 + 80048fa: d009 beq.n 8004910 { #if( configUSE_PREEMPTION != 0 ) { xAlreadyYielded = pdTRUE; - 80048c0: 2301 movs r3, #1 - 80048c2: 60bb str r3, [r7, #8] + 80048fc: 2301 movs r3, #1 + 80048fe: 60bb str r3, [r7, #8] } #endif taskYIELD_IF_USING_PREEMPTION(); - 80048c4: 4b0f ldr r3, [pc, #60] ; (8004904 ) - 80048c6: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80048ca: 601a str r2, [r3, #0] - 80048cc: f3bf 8f4f dsb sy - 80048d0: f3bf 8f6f isb sy + 8004900: 4b0f ldr r3, [pc, #60] ; (8004940 ) + 8004902: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8004906: 601a str r2, [r3, #0] + 8004908: f3bf 8f4f dsb sy + 800490c: f3bf 8f6f isb sy else { mtCOVERAGE_TEST_MARKER(); } } taskEXIT_CRITICAL(); - 80048d4: f001 f8e6 bl 8005aa4 + 8004910: f001 f8e0 bl 8005ad4 return xAlreadyYielded; - 80048d8: 68bb ldr r3, [r7, #8] + 8004914: 68bb ldr r3, [r7, #8] } - 80048da: 4618 mov r0, r3 - 80048dc: 3710 adds r7, #16 - 80048de: 46bd mov sp, r7 - 80048e0: bd80 pop {r7, pc} - 80048e2: bf00 nop - 80048e4: 20000e0c .word 0x20000e0c - 80048e8: 20000de4 .word 0x20000de4 - 80048ec: 20000da4 .word 0x20000da4 - 80048f0: 20000dec .word 0x20000dec - 80048f4: 20000914 .word 0x20000914 - 80048f8: 20000910 .word 0x20000910 - 80048fc: 20000df8 .word 0x20000df8 - 8004900: 20000df4 .word 0x20000df4 - 8004904: e000ed04 .word 0xe000ed04 + 8004916: 4618 mov r0, r3 + 8004918: 3710 adds r7, #16 + 800491a: 46bd mov sp, r7 + 800491c: bd80 pop {r7, pc} + 800491e: bf00 nop + 8004920: 20000e0c .word 0x20000e0c + 8004924: 20000de4 .word 0x20000de4 + 8004928: 20000da4 .word 0x20000da4 + 800492c: 20000dec .word 0x20000dec + 8004930: 20000914 .word 0x20000914 + 8004934: 20000910 .word 0x20000910 + 8004938: 20000df8 .word 0x20000df8 + 800493c: 20000df4 .word 0x20000df4 + 8004940: e000ed04 .word 0xe000ed04 -08004908 : +08004944 : /*-----------------------------------------------------------*/ TickType_t xTaskGetTickCount( void ) { - 8004908: b480 push {r7} - 800490a: b083 sub sp, #12 - 800490c: af00 add r7, sp, #0 + 8004944: b480 push {r7} + 8004946: b083 sub sp, #12 + 8004948: af00 add r7, sp, #0 TickType_t xTicks; /* Critical section required if running on a 16 bit processor. */ portTICK_TYPE_ENTER_CRITICAL(); { xTicks = xTickCount; - 800490e: 4b05 ldr r3, [pc, #20] ; (8004924 ) - 8004910: 681b ldr r3, [r3, #0] - 8004912: 607b str r3, [r7, #4] + 800494a: 4b05 ldr r3, [pc, #20] ; (8004960 ) + 800494c: 681b ldr r3, [r3, #0] + 800494e: 607b str r3, [r7, #4] } portTICK_TYPE_EXIT_CRITICAL(); return xTicks; - 8004914: 687b ldr r3, [r7, #4] + 8004950: 687b ldr r3, [r7, #4] } - 8004916: 4618 mov r0, r3 - 8004918: 370c adds r7, #12 - 800491a: 46bd mov sp, r7 - 800491c: f85d 7b04 ldr.w r7, [sp], #4 - 8004920: 4770 bx lr - 8004922: bf00 nop - 8004924: 20000de8 .word 0x20000de8 + 8004952: 4618 mov r0, r3 + 8004954: 370c adds r7, #12 + 8004956: 46bd mov sp, r7 + 8004958: f85d 7b04 ldr.w r7, [sp], #4 + 800495c: 4770 bx lr + 800495e: bf00 nop + 8004960: 20000de8 .word 0x20000de8 -08004928 : +08004964 : #endif /* INCLUDE_xTaskAbortDelay */ /*----------------------------------------------------------*/ BaseType_t xTaskIncrementTick( void ) { - 8004928: b580 push {r7, lr} - 800492a: b086 sub sp, #24 - 800492c: af00 add r7, sp, #0 + 8004964: b580 push {r7, lr} + 8004966: b086 sub sp, #24 + 8004968: af00 add r7, sp, #0 TCB_t * pxTCB; TickType_t xItemValue; BaseType_t xSwitchRequired = pdFALSE; - 800492e: 2300 movs r3, #0 - 8004930: 617b str r3, [r7, #20] + 800496a: 2300 movs r3, #0 + 800496c: 617b str r3, [r7, #20] /* Called by the portable layer each time a tick interrupt occurs. Increments the tick then checks to see if the new tick value will cause any tasks to be unblocked. */ traceTASK_INCREMENT_TICK( xTickCount ); if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8004932: 4b4f ldr r3, [pc, #316] ; (8004a70 ) - 8004934: 681b ldr r3, [r3, #0] - 8004936: 2b00 cmp r3, #0 - 8004938: f040 808f bne.w 8004a5a + 800496e: 4b4f ldr r3, [pc, #316] ; (8004aac ) + 8004970: 681b ldr r3, [r3, #0] + 8004972: 2b00 cmp r3, #0 + 8004974: f040 808f bne.w 8004a96 { /* Minor optimisation. The tick count cannot change in this block. */ const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; - 800493c: 4b4d ldr r3, [pc, #308] ; (8004a74 ) - 800493e: 681b ldr r3, [r3, #0] - 8004940: 3301 adds r3, #1 - 8004942: 613b str r3, [r7, #16] + 8004978: 4b4d ldr r3, [pc, #308] ; (8004ab0 ) + 800497a: 681b ldr r3, [r3, #0] + 800497c: 3301 adds r3, #1 + 800497e: 613b str r3, [r7, #16] /* Increment the RTOS tick, switching the delayed and overflowed delayed lists if it wraps to 0. */ xTickCount = xConstTickCount; - 8004944: 4a4b ldr r2, [pc, #300] ; (8004a74 ) - 8004946: 693b ldr r3, [r7, #16] - 8004948: 6013 str r3, [r2, #0] + 8004980: 4a4b ldr r2, [pc, #300] ; (8004ab0 ) + 8004982: 693b ldr r3, [r7, #16] + 8004984: 6013 str r3, [r2, #0] if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ - 800494a: 693b ldr r3, [r7, #16] - 800494c: 2b00 cmp r3, #0 - 800494e: d120 bne.n 8004992 + 8004986: 693b ldr r3, [r7, #16] + 8004988: 2b00 cmp r3, #0 + 800498a: d120 bne.n 80049ce { taskSWITCH_DELAYED_LISTS(); - 8004950: 4b49 ldr r3, [pc, #292] ; (8004a78 ) - 8004952: 681b ldr r3, [r3, #0] - 8004954: 681b ldr r3, [r3, #0] - 8004956: 2b00 cmp r3, #0 - 8004958: d00a beq.n 8004970 + 800498c: 4b49 ldr r3, [pc, #292] ; (8004ab4 ) + 800498e: 681b ldr r3, [r3, #0] + 8004990: 681b ldr r3, [r3, #0] + 8004992: 2b00 cmp r3, #0 + 8004994: d00a beq.n 80049ac __asm volatile - 800495a: f04f 0350 mov.w r3, #80 ; 0x50 - 800495e: f383 8811 msr BASEPRI, r3 - 8004962: f3bf 8f6f isb sy - 8004966: f3bf 8f4f dsb sy - 800496a: 603b str r3, [r7, #0] + 8004996: f04f 0350 mov.w r3, #80 ; 0x50 + 800499a: f383 8811 msr BASEPRI, r3 + 800499e: f3bf 8f6f isb sy + 80049a2: f3bf 8f4f dsb sy + 80049a6: 603b str r3, [r7, #0] } - 800496c: bf00 nop - 800496e: e7fe b.n 800496e - 8004970: 4b41 ldr r3, [pc, #260] ; (8004a78 ) - 8004972: 681b ldr r3, [r3, #0] - 8004974: 60fb str r3, [r7, #12] - 8004976: 4b41 ldr r3, [pc, #260] ; (8004a7c ) - 8004978: 681b ldr r3, [r3, #0] - 800497a: 4a3f ldr r2, [pc, #252] ; (8004a78 ) - 800497c: 6013 str r3, [r2, #0] - 800497e: 4a3f ldr r2, [pc, #252] ; (8004a7c ) - 8004980: 68fb ldr r3, [r7, #12] - 8004982: 6013 str r3, [r2, #0] - 8004984: 4b3e ldr r3, [pc, #248] ; (8004a80 ) - 8004986: 681b ldr r3, [r3, #0] - 8004988: 3301 adds r3, #1 - 800498a: 4a3d ldr r2, [pc, #244] ; (8004a80 ) - 800498c: 6013 str r3, [r2, #0] - 800498e: f000 fadb bl 8004f48 + 80049a8: bf00 nop + 80049aa: e7fe b.n 80049aa + 80049ac: 4b41 ldr r3, [pc, #260] ; (8004ab4 ) + 80049ae: 681b ldr r3, [r3, #0] + 80049b0: 60fb str r3, [r7, #12] + 80049b2: 4b41 ldr r3, [pc, #260] ; (8004ab8 ) + 80049b4: 681b ldr r3, [r3, #0] + 80049b6: 4a3f ldr r2, [pc, #252] ; (8004ab4 ) + 80049b8: 6013 str r3, [r2, #0] + 80049ba: 4a3f ldr r2, [pc, #252] ; (8004ab8 ) + 80049bc: 68fb ldr r3, [r7, #12] + 80049be: 6013 str r3, [r2, #0] + 80049c0: 4b3e ldr r3, [pc, #248] ; (8004abc ) + 80049c2: 681b ldr r3, [r3, #0] + 80049c4: 3301 adds r3, #1 + 80049c6: 4a3d ldr r2, [pc, #244] ; (8004abc ) + 80049c8: 6013 str r3, [r2, #0] + 80049ca: f000 fadb bl 8004f84 /* See if this tick has made a timeout expire. Tasks are stored in the queue in the order of their wake time - meaning once one task has been found whose block time has not expired there is no need to look any further down the list. */ if( xConstTickCount >= xNextTaskUnblockTime ) - 8004992: 4b3c ldr r3, [pc, #240] ; (8004a84 ) - 8004994: 681b ldr r3, [r3, #0] - 8004996: 693a ldr r2, [r7, #16] - 8004998: 429a cmp r2, r3 - 800499a: d349 bcc.n 8004a30 + 80049ce: 4b3c ldr r3, [pc, #240] ; (8004ac0 ) + 80049d0: 681b ldr r3, [r3, #0] + 80049d2: 693a ldr r2, [r7, #16] + 80049d4: 429a cmp r2, r3 + 80049d6: d349 bcc.n 8004a6c { for( ;; ) { if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 800499c: 4b36 ldr r3, [pc, #216] ; (8004a78 ) - 800499e: 681b ldr r3, [r3, #0] - 80049a0: 681b ldr r3, [r3, #0] - 80049a2: 2b00 cmp r3, #0 - 80049a4: d104 bne.n 80049b0 + 80049d8: 4b36 ldr r3, [pc, #216] ; (8004ab4 ) + 80049da: 681b ldr r3, [r3, #0] + 80049dc: 681b ldr r3, [r3, #0] + 80049de: 2b00 cmp r3, #0 + 80049e0: d104 bne.n 80049ec /* The delayed list is empty. Set xNextTaskUnblockTime to the maximum possible value so it is extremely unlikely that the if( xTickCount >= xNextTaskUnblockTime ) test will pass next time through. */ xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 80049a6: 4b37 ldr r3, [pc, #220] ; (8004a84 ) - 80049a8: f04f 32ff mov.w r2, #4294967295 - 80049ac: 601a str r2, [r3, #0] + 80049e2: 4b37 ldr r3, [pc, #220] ; (8004ac0 ) + 80049e4: f04f 32ff mov.w r2, #4294967295 + 80049e8: 601a str r2, [r3, #0] break; - 80049ae: e03f b.n 8004a30 + 80049ea: e03f b.n 8004a6c { /* The delayed list is not empty, get the value of the item at the head of the delayed list. This is the time at which the task at the head of the delayed list must be removed from the Blocked state. */ pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 80049b0: 4b31 ldr r3, [pc, #196] ; (8004a78 ) - 80049b2: 681b ldr r3, [r3, #0] - 80049b4: 68db ldr r3, [r3, #12] - 80049b6: 68db ldr r3, [r3, #12] - 80049b8: 60bb str r3, [r7, #8] + 80049ec: 4b31 ldr r3, [pc, #196] ; (8004ab4 ) + 80049ee: 681b ldr r3, [r3, #0] + 80049f0: 68db ldr r3, [r3, #12] + 80049f2: 68db ldr r3, [r3, #12] + 80049f4: 60bb str r3, [r7, #8] xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); - 80049ba: 68bb ldr r3, [r7, #8] - 80049bc: 685b ldr r3, [r3, #4] - 80049be: 607b str r3, [r7, #4] + 80049f6: 68bb ldr r3, [r7, #8] + 80049f8: 685b ldr r3, [r3, #4] + 80049fa: 607b str r3, [r7, #4] if( xConstTickCount < xItemValue ) - 80049c0: 693a ldr r2, [r7, #16] - 80049c2: 687b ldr r3, [r7, #4] - 80049c4: 429a cmp r2, r3 - 80049c6: d203 bcs.n 80049d0 + 80049fc: 693a ldr r2, [r7, #16] + 80049fe: 687b ldr r3, [r7, #4] + 8004a00: 429a cmp r2, r3 + 8004a02: d203 bcs.n 8004a0c /* It is not time to unblock this item yet, but the item value is the time at which the task at the head of the blocked list must be removed from the Blocked state - so record the item value in xNextTaskUnblockTime. */ xNextTaskUnblockTime = xItemValue; - 80049c8: 4a2e ldr r2, [pc, #184] ; (8004a84 ) - 80049ca: 687b ldr r3, [r7, #4] - 80049cc: 6013 str r3, [r2, #0] + 8004a04: 4a2e ldr r2, [pc, #184] ; (8004ac0 ) + 8004a06: 687b ldr r3, [r7, #4] + 8004a08: 6013 str r3, [r2, #0] break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ - 80049ce: e02f b.n 8004a30 + 8004a0a: e02f b.n 8004a6c { mtCOVERAGE_TEST_MARKER(); } /* It is time to remove the item from the Blocked state. */ ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 80049d0: 68bb ldr r3, [r7, #8] - 80049d2: 3304 adds r3, #4 - 80049d4: 4618 mov r0, r3 - 80049d6: f7fe ff79 bl 80038cc + 8004a0c: 68bb ldr r3, [r7, #8] + 8004a0e: 3304 adds r3, #4 + 8004a10: 4618 mov r0, r3 + 8004a12: f7fe ff79 bl 8003908 /* Is the task waiting on an event also? If so remove it from the event list. */ if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - 80049da: 68bb ldr r3, [r7, #8] - 80049dc: 6a9b ldr r3, [r3, #40] ; 0x28 - 80049de: 2b00 cmp r3, #0 - 80049e0: d004 beq.n 80049ec + 8004a16: 68bb ldr r3, [r7, #8] + 8004a18: 6a9b ldr r3, [r3, #40] ; 0x28 + 8004a1a: 2b00 cmp r3, #0 + 8004a1c: d004 beq.n 8004a28 { ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - 80049e2: 68bb ldr r3, [r7, #8] - 80049e4: 3318 adds r3, #24 - 80049e6: 4618 mov r0, r3 - 80049e8: f7fe ff70 bl 80038cc + 8004a1e: 68bb ldr r3, [r7, #8] + 8004a20: 3318 adds r3, #24 + 8004a22: 4618 mov r0, r3 + 8004a24: f7fe ff70 bl 8003908 mtCOVERAGE_TEST_MARKER(); } /* Place the unblocked task into the appropriate ready list. */ prvAddTaskToReadyList( pxTCB ); - 80049ec: 68bb ldr r3, [r7, #8] - 80049ee: 6ada ldr r2, [r3, #44] ; 0x2c - 80049f0: 4b25 ldr r3, [pc, #148] ; (8004a88 ) - 80049f2: 681b ldr r3, [r3, #0] - 80049f4: 429a cmp r2, r3 - 80049f6: d903 bls.n 8004a00 - 80049f8: 68bb ldr r3, [r7, #8] - 80049fa: 6adb ldr r3, [r3, #44] ; 0x2c - 80049fc: 4a22 ldr r2, [pc, #136] ; (8004a88 ) - 80049fe: 6013 str r3, [r2, #0] - 8004a00: 68bb ldr r3, [r7, #8] - 8004a02: 6ada ldr r2, [r3, #44] ; 0x2c - 8004a04: 4613 mov r3, r2 - 8004a06: 009b lsls r3, r3, #2 - 8004a08: 4413 add r3, r2 - 8004a0a: 009b lsls r3, r3, #2 - 8004a0c: 4a1f ldr r2, [pc, #124] ; (8004a8c ) - 8004a0e: 441a add r2, r3 - 8004a10: 68bb ldr r3, [r7, #8] - 8004a12: 3304 adds r3, #4 - 8004a14: 4619 mov r1, r3 - 8004a16: 4610 mov r0, r2 - 8004a18: f7fe fefb bl 8003812 + 8004a28: 68bb ldr r3, [r7, #8] + 8004a2a: 6ada ldr r2, [r3, #44] ; 0x2c + 8004a2c: 4b25 ldr r3, [pc, #148] ; (8004ac4 ) + 8004a2e: 681b ldr r3, [r3, #0] + 8004a30: 429a cmp r2, r3 + 8004a32: d903 bls.n 8004a3c + 8004a34: 68bb ldr r3, [r7, #8] + 8004a36: 6adb ldr r3, [r3, #44] ; 0x2c + 8004a38: 4a22 ldr r2, [pc, #136] ; (8004ac4 ) + 8004a3a: 6013 str r3, [r2, #0] + 8004a3c: 68bb ldr r3, [r7, #8] + 8004a3e: 6ada ldr r2, [r3, #44] ; 0x2c + 8004a40: 4613 mov r3, r2 + 8004a42: 009b lsls r3, r3, #2 + 8004a44: 4413 add r3, r2 + 8004a46: 009b lsls r3, r3, #2 + 8004a48: 4a1f ldr r2, [pc, #124] ; (8004ac8 ) + 8004a4a: 441a add r2, r3 + 8004a4c: 68bb ldr r3, [r7, #8] + 8004a4e: 3304 adds r3, #4 + 8004a50: 4619 mov r1, r3 + 8004a52: 4610 mov r0, r2 + 8004a54: f7fe fefb bl 800384e { /* Preemption is on, but a context switch should only be performed if the unblocked task has a priority that is equal to or higher than the currently executing task. */ if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - 8004a1c: 68bb ldr r3, [r7, #8] - 8004a1e: 6ada ldr r2, [r3, #44] ; 0x2c - 8004a20: 4b1b ldr r3, [pc, #108] ; (8004a90 ) - 8004a22: 681b ldr r3, [r3, #0] - 8004a24: 6adb ldr r3, [r3, #44] ; 0x2c - 8004a26: 429a cmp r2, r3 - 8004a28: d3b8 bcc.n 800499c + 8004a58: 68bb ldr r3, [r7, #8] + 8004a5a: 6ada ldr r2, [r3, #44] ; 0x2c + 8004a5c: 4b1b ldr r3, [pc, #108] ; (8004acc ) + 8004a5e: 681b ldr r3, [r3, #0] + 8004a60: 6adb ldr r3, [r3, #44] ; 0x2c + 8004a62: 429a cmp r2, r3 + 8004a64: d3b8 bcc.n 80049d8 { xSwitchRequired = pdTRUE; - 8004a2a: 2301 movs r3, #1 - 8004a2c: 617b str r3, [r7, #20] + 8004a66: 2301 movs r3, #1 + 8004a68: 617b str r3, [r7, #20] if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 8004a2e: e7b5 b.n 800499c + 8004a6a: e7b5 b.n 80049d8 /* Tasks of equal priority to the currently running task will share processing time (time slice) if preemption is on, and the application writer has not explicitly turned time slicing off. */ #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) { if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) - 8004a30: 4b17 ldr r3, [pc, #92] ; (8004a90 ) - 8004a32: 681b ldr r3, [r3, #0] - 8004a34: 6ada ldr r2, [r3, #44] ; 0x2c - 8004a36: 4915 ldr r1, [pc, #84] ; (8004a8c ) - 8004a38: 4613 mov r3, r2 - 8004a3a: 009b lsls r3, r3, #2 - 8004a3c: 4413 add r3, r2 - 8004a3e: 009b lsls r3, r3, #2 - 8004a40: 440b add r3, r1 - 8004a42: 681b ldr r3, [r3, #0] - 8004a44: 2b01 cmp r3, #1 - 8004a46: d901 bls.n 8004a4c + 8004a6c: 4b17 ldr r3, [pc, #92] ; (8004acc ) + 8004a6e: 681b ldr r3, [r3, #0] + 8004a70: 6ada ldr r2, [r3, #44] ; 0x2c + 8004a72: 4915 ldr r1, [pc, #84] ; (8004ac8 ) + 8004a74: 4613 mov r3, r2 + 8004a76: 009b lsls r3, r3, #2 + 8004a78: 4413 add r3, r2 + 8004a7a: 009b lsls r3, r3, #2 + 8004a7c: 440b add r3, r1 + 8004a7e: 681b ldr r3, [r3, #0] + 8004a80: 2b01 cmp r3, #1 + 8004a82: d901 bls.n 8004a88 { xSwitchRequired = pdTRUE; - 8004a48: 2301 movs r3, #1 - 8004a4a: 617b str r3, [r7, #20] + 8004a84: 2301 movs r3, #1 + 8004a86: 617b str r3, [r7, #20] } #endif /* configUSE_TICK_HOOK */ #if ( configUSE_PREEMPTION == 1 ) { if( xYieldPending != pdFALSE ) - 8004a4c: 4b11 ldr r3, [pc, #68] ; (8004a94 ) - 8004a4e: 681b ldr r3, [r3, #0] - 8004a50: 2b00 cmp r3, #0 - 8004a52: d007 beq.n 8004a64 + 8004a88: 4b11 ldr r3, [pc, #68] ; (8004ad0 ) + 8004a8a: 681b ldr r3, [r3, #0] + 8004a8c: 2b00 cmp r3, #0 + 8004a8e: d007 beq.n 8004aa0 { xSwitchRequired = pdTRUE; - 8004a54: 2301 movs r3, #1 - 8004a56: 617b str r3, [r7, #20] - 8004a58: e004 b.n 8004a64 + 8004a90: 2301 movs r3, #1 + 8004a92: 617b str r3, [r7, #20] + 8004a94: e004 b.n 8004aa0 } #endif /* configUSE_PREEMPTION */ } else { ++xPendedTicks; - 8004a5a: 4b0f ldr r3, [pc, #60] ; (8004a98 ) - 8004a5c: 681b ldr r3, [r3, #0] - 8004a5e: 3301 adds r3, #1 - 8004a60: 4a0d ldr r2, [pc, #52] ; (8004a98 ) - 8004a62: 6013 str r3, [r2, #0] + 8004a96: 4b0f ldr r3, [pc, #60] ; (8004ad4 ) + 8004a98: 681b ldr r3, [r3, #0] + 8004a9a: 3301 adds r3, #1 + 8004a9c: 4a0d ldr r2, [pc, #52] ; (8004ad4 ) + 8004a9e: 6013 str r3, [r2, #0] vApplicationTickHook(); } #endif } return xSwitchRequired; - 8004a64: 697b ldr r3, [r7, #20] + 8004aa0: 697b ldr r3, [r7, #20] } - 8004a66: 4618 mov r0, r3 - 8004a68: 3718 adds r7, #24 - 8004a6a: 46bd mov sp, r7 - 8004a6c: bd80 pop {r7, pc} - 8004a6e: bf00 nop - 8004a70: 20000e0c .word 0x20000e0c - 8004a74: 20000de8 .word 0x20000de8 - 8004a78: 20000d9c .word 0x20000d9c - 8004a7c: 20000da0 .word 0x20000da0 - 8004a80: 20000dfc .word 0x20000dfc - 8004a84: 20000e04 .word 0x20000e04 - 8004a88: 20000dec .word 0x20000dec - 8004a8c: 20000914 .word 0x20000914 - 8004a90: 20000910 .word 0x20000910 - 8004a94: 20000df8 .word 0x20000df8 - 8004a98: 20000df4 .word 0x20000df4 + 8004aa2: 4618 mov r0, r3 + 8004aa4: 3718 adds r7, #24 + 8004aa6: 46bd mov sp, r7 + 8004aa8: bd80 pop {r7, pc} + 8004aaa: bf00 nop + 8004aac: 20000e0c .word 0x20000e0c + 8004ab0: 20000de8 .word 0x20000de8 + 8004ab4: 20000d9c .word 0x20000d9c + 8004ab8: 20000da0 .word 0x20000da0 + 8004abc: 20000dfc .word 0x20000dfc + 8004ac0: 20000e04 .word 0x20000e04 + 8004ac4: 20000dec .word 0x20000dec + 8004ac8: 20000914 .word 0x20000914 + 8004acc: 20000910 .word 0x20000910 + 8004ad0: 20000df8 .word 0x20000df8 + 8004ad4: 20000df4 .word 0x20000df4 -08004a9c : +08004ad8 : #endif /* configUSE_APPLICATION_TASK_TAG */ /*-----------------------------------------------------------*/ void vTaskSwitchContext( void ) { - 8004a9c: b480 push {r7} - 8004a9e: b085 sub sp, #20 - 8004aa0: af00 add r7, sp, #0 + 8004ad8: b480 push {r7} + 8004ada: b085 sub sp, #20 + 8004adc: af00 add r7, sp, #0 if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) - 8004aa2: 4b2a ldr r3, [pc, #168] ; (8004b4c ) - 8004aa4: 681b ldr r3, [r3, #0] - 8004aa6: 2b00 cmp r3, #0 - 8004aa8: d003 beq.n 8004ab2 + 8004ade: 4b2a ldr r3, [pc, #168] ; (8004b88 ) + 8004ae0: 681b ldr r3, [r3, #0] + 8004ae2: 2b00 cmp r3, #0 + 8004ae4: d003 beq.n 8004aee { /* The scheduler is currently suspended - do not allow a context switch. */ xYieldPending = pdTRUE; - 8004aaa: 4b29 ldr r3, [pc, #164] ; (8004b50 ) - 8004aac: 2201 movs r2, #1 - 8004aae: 601a str r2, [r3, #0] + 8004ae6: 4b29 ldr r3, [pc, #164] ; (8004b8c ) + 8004ae8: 2201 movs r2, #1 + 8004aea: 601a str r2, [r3, #0] for additional information. */ _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); } #endif /* configUSE_NEWLIB_REENTRANT */ } } - 8004ab0: e046 b.n 8004b40 + 8004aec: e046 b.n 8004b7c xYieldPending = pdFALSE; - 8004ab2: 4b27 ldr r3, [pc, #156] ; (8004b50 ) - 8004ab4: 2200 movs r2, #0 - 8004ab6: 601a str r2, [r3, #0] + 8004aee: 4b27 ldr r3, [pc, #156] ; (8004b8c ) + 8004af0: 2200 movs r2, #0 + 8004af2: 601a str r2, [r3, #0] taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004ab8: 4b26 ldr r3, [pc, #152] ; (8004b54 ) - 8004aba: 681b ldr r3, [r3, #0] - 8004abc: 60fb str r3, [r7, #12] - 8004abe: e010 b.n 8004ae2 - 8004ac0: 68fb ldr r3, [r7, #12] - 8004ac2: 2b00 cmp r3, #0 - 8004ac4: d10a bne.n 8004adc + 8004af4: 4b26 ldr r3, [pc, #152] ; (8004b90 ) + 8004af6: 681b ldr r3, [r3, #0] + 8004af8: 60fb str r3, [r7, #12] + 8004afa: e010 b.n 8004b1e + 8004afc: 68fb ldr r3, [r7, #12] + 8004afe: 2b00 cmp r3, #0 + 8004b00: d10a bne.n 8004b18 __asm volatile - 8004ac6: f04f 0350 mov.w r3, #80 ; 0x50 - 8004aca: f383 8811 msr BASEPRI, r3 - 8004ace: f3bf 8f6f isb sy - 8004ad2: f3bf 8f4f dsb sy - 8004ad6: 607b str r3, [r7, #4] + 8004b02: f04f 0350 mov.w r3, #80 ; 0x50 + 8004b06: f383 8811 msr BASEPRI, r3 + 8004b0a: f3bf 8f6f isb sy + 8004b0e: f3bf 8f4f dsb sy + 8004b12: 607b str r3, [r7, #4] } - 8004ad8: bf00 nop - 8004ada: e7fe b.n 8004ada - 8004adc: 68fb ldr r3, [r7, #12] - 8004ade: 3b01 subs r3, #1 - 8004ae0: 60fb str r3, [r7, #12] - 8004ae2: 491d ldr r1, [pc, #116] ; (8004b58 ) - 8004ae4: 68fa ldr r2, [r7, #12] - 8004ae6: 4613 mov r3, r2 - 8004ae8: 009b lsls r3, r3, #2 - 8004aea: 4413 add r3, r2 - 8004aec: 009b lsls r3, r3, #2 - 8004aee: 440b add r3, r1 - 8004af0: 681b ldr r3, [r3, #0] - 8004af2: 2b00 cmp r3, #0 - 8004af4: d0e4 beq.n 8004ac0 - 8004af6: 68fa ldr r2, [r7, #12] - 8004af8: 4613 mov r3, r2 - 8004afa: 009b lsls r3, r3, #2 - 8004afc: 4413 add r3, r2 - 8004afe: 009b lsls r3, r3, #2 - 8004b00: 4a15 ldr r2, [pc, #84] ; (8004b58 ) - 8004b02: 4413 add r3, r2 - 8004b04: 60bb str r3, [r7, #8] - 8004b06: 68bb ldr r3, [r7, #8] - 8004b08: 685b ldr r3, [r3, #4] - 8004b0a: 685a ldr r2, [r3, #4] - 8004b0c: 68bb ldr r3, [r7, #8] - 8004b0e: 605a str r2, [r3, #4] - 8004b10: 68bb ldr r3, [r7, #8] - 8004b12: 685a ldr r2, [r3, #4] - 8004b14: 68bb ldr r3, [r7, #8] - 8004b16: 3308 adds r3, #8 - 8004b18: 429a cmp r2, r3 - 8004b1a: d104 bne.n 8004b26 - 8004b1c: 68bb ldr r3, [r7, #8] - 8004b1e: 685b ldr r3, [r3, #4] - 8004b20: 685a ldr r2, [r3, #4] - 8004b22: 68bb ldr r3, [r7, #8] - 8004b24: 605a str r2, [r3, #4] - 8004b26: 68bb ldr r3, [r7, #8] - 8004b28: 685b ldr r3, [r3, #4] - 8004b2a: 68db ldr r3, [r3, #12] - 8004b2c: 4a0b ldr r2, [pc, #44] ; (8004b5c ) - 8004b2e: 6013 str r3, [r2, #0] - 8004b30: 4a08 ldr r2, [pc, #32] ; (8004b54 ) - 8004b32: 68fb ldr r3, [r7, #12] - 8004b34: 6013 str r3, [r2, #0] + 8004b14: bf00 nop + 8004b16: e7fe b.n 8004b16 + 8004b18: 68fb ldr r3, [r7, #12] + 8004b1a: 3b01 subs r3, #1 + 8004b1c: 60fb str r3, [r7, #12] + 8004b1e: 491d ldr r1, [pc, #116] ; (8004b94 ) + 8004b20: 68fa ldr r2, [r7, #12] + 8004b22: 4613 mov r3, r2 + 8004b24: 009b lsls r3, r3, #2 + 8004b26: 4413 add r3, r2 + 8004b28: 009b lsls r3, r3, #2 + 8004b2a: 440b add r3, r1 + 8004b2c: 681b ldr r3, [r3, #0] + 8004b2e: 2b00 cmp r3, #0 + 8004b30: d0e4 beq.n 8004afc + 8004b32: 68fa ldr r2, [r7, #12] + 8004b34: 4613 mov r3, r2 + 8004b36: 009b lsls r3, r3, #2 + 8004b38: 4413 add r3, r2 + 8004b3a: 009b lsls r3, r3, #2 + 8004b3c: 4a15 ldr r2, [pc, #84] ; (8004b94 ) + 8004b3e: 4413 add r3, r2 + 8004b40: 60bb str r3, [r7, #8] + 8004b42: 68bb ldr r3, [r7, #8] + 8004b44: 685b ldr r3, [r3, #4] + 8004b46: 685a ldr r2, [r3, #4] + 8004b48: 68bb ldr r3, [r7, #8] + 8004b4a: 605a str r2, [r3, #4] + 8004b4c: 68bb ldr r3, [r7, #8] + 8004b4e: 685a ldr r2, [r3, #4] + 8004b50: 68bb ldr r3, [r7, #8] + 8004b52: 3308 adds r3, #8 + 8004b54: 429a cmp r2, r3 + 8004b56: d104 bne.n 8004b62 + 8004b58: 68bb ldr r3, [r7, #8] + 8004b5a: 685b ldr r3, [r3, #4] + 8004b5c: 685a ldr r2, [r3, #4] + 8004b5e: 68bb ldr r3, [r7, #8] + 8004b60: 605a str r2, [r3, #4] + 8004b62: 68bb ldr r3, [r7, #8] + 8004b64: 685b ldr r3, [r3, #4] + 8004b66: 68db ldr r3, [r3, #12] + 8004b68: 4a0b ldr r2, [pc, #44] ; (8004b98 ) + 8004b6a: 6013 str r3, [r2, #0] + 8004b6c: 4a08 ldr r2, [pc, #32] ; (8004b90 ) + 8004b6e: 68fb ldr r3, [r7, #12] + 8004b70: 6013 str r3, [r2, #0] _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - 8004b36: 4b09 ldr r3, [pc, #36] ; (8004b5c ) - 8004b38: 681b ldr r3, [r3, #0] - 8004b3a: 3354 adds r3, #84 ; 0x54 - 8004b3c: 4a08 ldr r2, [pc, #32] ; (8004b60 ) - 8004b3e: 6013 str r3, [r2, #0] + 8004b72: 4b09 ldr r3, [pc, #36] ; (8004b98 ) + 8004b74: 681b ldr r3, [r3, #0] + 8004b76: 3354 adds r3, #84 ; 0x54 + 8004b78: 4a08 ldr r2, [pc, #32] ; (8004b9c ) + 8004b7a: 6013 str r3, [r2, #0] } - 8004b40: bf00 nop - 8004b42: 3714 adds r7, #20 - 8004b44: 46bd mov sp, r7 - 8004b46: f85d 7b04 ldr.w r7, [sp], #4 - 8004b4a: 4770 bx lr - 8004b4c: 20000e0c .word 0x20000e0c - 8004b50: 20000df8 .word 0x20000df8 - 8004b54: 20000dec .word 0x20000dec - 8004b58: 20000914 .word 0x20000914 - 8004b5c: 20000910 .word 0x20000910 - 8004b60: 2000005c .word 0x2000005c + 8004b7c: bf00 nop + 8004b7e: 3714 adds r7, #20 + 8004b80: 46bd mov sp, r7 + 8004b82: f85d 7b04 ldr.w r7, [sp], #4 + 8004b86: 4770 bx lr + 8004b88: 20000e0c .word 0x20000e0c + 8004b8c: 20000df8 .word 0x20000df8 + 8004b90: 20000dec .word 0x20000dec + 8004b94: 20000914 .word 0x20000914 + 8004b98: 20000910 .word 0x20000910 + 8004b9c: 2000005c .word 0x2000005c -08004b64 : +08004ba0 : /*-----------------------------------------------------------*/ void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) { - 8004b64: b580 push {r7, lr} - 8004b66: b084 sub sp, #16 - 8004b68: af00 add r7, sp, #0 - 8004b6a: 6078 str r0, [r7, #4] - 8004b6c: 6039 str r1, [r7, #0] + 8004ba0: b580 push {r7, lr} + 8004ba2: b084 sub sp, #16 + 8004ba4: af00 add r7, sp, #0 + 8004ba6: 6078 str r0, [r7, #4] + 8004ba8: 6039 str r1, [r7, #0] configASSERT( pxEventList ); - 8004b6e: 687b ldr r3, [r7, #4] - 8004b70: 2b00 cmp r3, #0 - 8004b72: d10a bne.n 8004b8a + 8004baa: 687b ldr r3, [r7, #4] + 8004bac: 2b00 cmp r3, #0 + 8004bae: d10a bne.n 8004bc6 __asm volatile - 8004b74: f04f 0350 mov.w r3, #80 ; 0x50 - 8004b78: f383 8811 msr BASEPRI, r3 - 8004b7c: f3bf 8f6f isb sy - 8004b80: f3bf 8f4f dsb sy - 8004b84: 60fb str r3, [r7, #12] + 8004bb0: f04f 0350 mov.w r3, #80 ; 0x50 + 8004bb4: f383 8811 msr BASEPRI, r3 + 8004bb8: f3bf 8f6f isb sy + 8004bbc: f3bf 8f4f dsb sy + 8004bc0: 60fb str r3, [r7, #12] } - 8004b86: bf00 nop - 8004b88: e7fe b.n 8004b88 + 8004bc2: bf00 nop + 8004bc4: e7fe b.n 8004bc4 /* Place the event list item of the TCB in the appropriate event list. This is placed in the list in priority order so the highest priority task is the first to be woken by the event. The queue that contains the event list is locked, preventing simultaneous access from interrupts. */ vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - 8004b8a: 4b07 ldr r3, [pc, #28] ; (8004ba8 ) - 8004b8c: 681b ldr r3, [r3, #0] - 8004b8e: 3318 adds r3, #24 - 8004b90: 4619 mov r1, r3 - 8004b92: 6878 ldr r0, [r7, #4] - 8004b94: f7fe fe61 bl 800385a + 8004bc6: 4b07 ldr r3, [pc, #28] ; (8004be4 ) + 8004bc8: 681b ldr r3, [r3, #0] + 8004bca: 3318 adds r3, #24 + 8004bcc: 4619 mov r1, r3 + 8004bce: 6878 ldr r0, [r7, #4] + 8004bd0: f7fe fe61 bl 8003896 prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - 8004b98: 2101 movs r1, #1 - 8004b9a: 6838 ldr r0, [r7, #0] - 8004b9c: f000 fa80 bl 80050a0 + 8004bd4: 2101 movs r1, #1 + 8004bd6: 6838 ldr r0, [r7, #0] + 8004bd8: f000 fa80 bl 80050dc } - 8004ba0: bf00 nop - 8004ba2: 3710 adds r7, #16 - 8004ba4: 46bd mov sp, r7 - 8004ba6: bd80 pop {r7, pc} - 8004ba8: 20000910 .word 0x20000910 + 8004bdc: bf00 nop + 8004bde: 3710 adds r7, #16 + 8004be0: 46bd mov sp, r7 + 8004be2: bd80 pop {r7, pc} + 8004be4: 20000910 .word 0x20000910 -08004bac : +08004be8 : /*-----------------------------------------------------------*/ #if( configUSE_TIMERS == 1 ) void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) { - 8004bac: b580 push {r7, lr} - 8004bae: b086 sub sp, #24 - 8004bb0: af00 add r7, sp, #0 - 8004bb2: 60f8 str r0, [r7, #12] - 8004bb4: 60b9 str r1, [r7, #8] - 8004bb6: 607a str r2, [r7, #4] + 8004be8: b580 push {r7, lr} + 8004bea: b086 sub sp, #24 + 8004bec: af00 add r7, sp, #0 + 8004bee: 60f8 str r0, [r7, #12] + 8004bf0: 60b9 str r1, [r7, #8] + 8004bf2: 607a str r2, [r7, #4] configASSERT( pxEventList ); - 8004bb8: 68fb ldr r3, [r7, #12] - 8004bba: 2b00 cmp r3, #0 - 8004bbc: d10a bne.n 8004bd4 + 8004bf4: 68fb ldr r3, [r7, #12] + 8004bf6: 2b00 cmp r3, #0 + 8004bf8: d10a bne.n 8004c10 __asm volatile - 8004bbe: f04f 0350 mov.w r3, #80 ; 0x50 - 8004bc2: f383 8811 msr BASEPRI, r3 - 8004bc6: f3bf 8f6f isb sy - 8004bca: f3bf 8f4f dsb sy - 8004bce: 617b str r3, [r7, #20] + 8004bfa: f04f 0350 mov.w r3, #80 ; 0x50 + 8004bfe: f383 8811 msr BASEPRI, r3 + 8004c02: f3bf 8f6f isb sy + 8004c06: f3bf 8f4f dsb sy + 8004c0a: 617b str r3, [r7, #20] } - 8004bd0: bf00 nop - 8004bd2: e7fe b.n 8004bd2 + 8004c0c: bf00 nop + 8004c0e: e7fe b.n 8004c0e /* Place the event list item of the TCB in the appropriate event list. In this case it is assume that this is the only task that is going to be waiting on this event list, so the faster vListInsertEnd() function can be used in place of vListInsert. */ vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - 8004bd4: 4b0a ldr r3, [pc, #40] ; (8004c00 ) - 8004bd6: 681b ldr r3, [r3, #0] - 8004bd8: 3318 adds r3, #24 - 8004bda: 4619 mov r1, r3 - 8004bdc: 68f8 ldr r0, [r7, #12] - 8004bde: f7fe fe18 bl 8003812 + 8004c10: 4b0a ldr r3, [pc, #40] ; (8004c3c ) + 8004c12: 681b ldr r3, [r3, #0] + 8004c14: 3318 adds r3, #24 + 8004c16: 4619 mov r1, r3 + 8004c18: 68f8 ldr r0, [r7, #12] + 8004c1a: f7fe fe18 bl 800384e /* If the task should block indefinitely then set the block time to a value that will be recognised as an indefinite delay inside the prvAddCurrentTaskToDelayedList() function. */ if( xWaitIndefinitely != pdFALSE ) - 8004be2: 687b ldr r3, [r7, #4] - 8004be4: 2b00 cmp r3, #0 - 8004be6: d002 beq.n 8004bee + 8004c1e: 687b ldr r3, [r7, #4] + 8004c20: 2b00 cmp r3, #0 + 8004c22: d002 beq.n 8004c2a { xTicksToWait = portMAX_DELAY; - 8004be8: f04f 33ff mov.w r3, #4294967295 - 8004bec: 60bb str r3, [r7, #8] + 8004c24: f04f 33ff mov.w r3, #4294967295 + 8004c28: 60bb str r3, [r7, #8] } traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); - 8004bee: 6879 ldr r1, [r7, #4] - 8004bf0: 68b8 ldr r0, [r7, #8] - 8004bf2: f000 fa55 bl 80050a0 + 8004c2a: 6879 ldr r1, [r7, #4] + 8004c2c: 68b8 ldr r0, [r7, #8] + 8004c2e: f000 fa55 bl 80050dc } - 8004bf6: bf00 nop - 8004bf8: 3718 adds r7, #24 - 8004bfa: 46bd mov sp, r7 - 8004bfc: bd80 pop {r7, pc} - 8004bfe: bf00 nop - 8004c00: 20000910 .word 0x20000910 + 8004c32: bf00 nop + 8004c34: 3718 adds r7, #24 + 8004c36: 46bd mov sp, r7 + 8004c38: bd80 pop {r7, pc} + 8004c3a: bf00 nop + 8004c3c: 20000910 .word 0x20000910 -08004c04 : +08004c40 : #endif /* configUSE_TIMERS */ /*-----------------------------------------------------------*/ BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) { - 8004c04: b580 push {r7, lr} - 8004c06: b086 sub sp, #24 - 8004c08: af00 add r7, sp, #0 - 8004c0a: 6078 str r0, [r7, #4] + 8004c40: b580 push {r7, lr} + 8004c42: b086 sub sp, #24 + 8004c44: af00 add r7, sp, #0 + 8004c46: 6078 str r0, [r7, #4] get called - the lock count on the queue will get modified instead. This means exclusive access to the event list is guaranteed here. This function assumes that a check has already been made to ensure that pxEventList is not empty. */ pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004c0c: 687b ldr r3, [r7, #4] - 8004c0e: 68db ldr r3, [r3, #12] - 8004c10: 68db ldr r3, [r3, #12] - 8004c12: 613b str r3, [r7, #16] + 8004c48: 687b ldr r3, [r7, #4] + 8004c4a: 68db ldr r3, [r3, #12] + 8004c4c: 68db ldr r3, [r3, #12] + 8004c4e: 613b str r3, [r7, #16] configASSERT( pxUnblockedTCB ); - 8004c14: 693b ldr r3, [r7, #16] - 8004c16: 2b00 cmp r3, #0 - 8004c18: d10a bne.n 8004c30 + 8004c50: 693b ldr r3, [r7, #16] + 8004c52: 2b00 cmp r3, #0 + 8004c54: d10a bne.n 8004c6c __asm volatile - 8004c1a: f04f 0350 mov.w r3, #80 ; 0x50 - 8004c1e: f383 8811 msr BASEPRI, r3 - 8004c22: f3bf 8f6f isb sy - 8004c26: f3bf 8f4f dsb sy - 8004c2a: 60fb str r3, [r7, #12] + 8004c56: f04f 0350 mov.w r3, #80 ; 0x50 + 8004c5a: f383 8811 msr BASEPRI, r3 + 8004c5e: f3bf 8f6f isb sy + 8004c62: f3bf 8f4f dsb sy + 8004c66: 60fb str r3, [r7, #12] } - 8004c2c: bf00 nop - 8004c2e: e7fe b.n 8004c2e + 8004c68: bf00 nop + 8004c6a: e7fe b.n 8004c6a ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); - 8004c30: 693b ldr r3, [r7, #16] - 8004c32: 3318 adds r3, #24 - 8004c34: 4618 mov r0, r3 - 8004c36: f7fe fe49 bl 80038cc + 8004c6c: 693b ldr r3, [r7, #16] + 8004c6e: 3318 adds r3, #24 + 8004c70: 4618 mov r0, r3 + 8004c72: f7fe fe49 bl 8003908 if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8004c3a: 4b1e ldr r3, [pc, #120] ; (8004cb4 ) - 8004c3c: 681b ldr r3, [r3, #0] - 8004c3e: 2b00 cmp r3, #0 - 8004c40: d11d bne.n 8004c7e + 8004c76: 4b1e ldr r3, [pc, #120] ; (8004cf0 ) + 8004c78: 681b ldr r3, [r3, #0] + 8004c7a: 2b00 cmp r3, #0 + 8004c7c: d11d bne.n 8004cba { ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - 8004c42: 693b ldr r3, [r7, #16] - 8004c44: 3304 adds r3, #4 - 8004c46: 4618 mov r0, r3 - 8004c48: f7fe fe40 bl 80038cc + 8004c7e: 693b ldr r3, [r7, #16] + 8004c80: 3304 adds r3, #4 + 8004c82: 4618 mov r0, r3 + 8004c84: f7fe fe40 bl 8003908 prvAddTaskToReadyList( pxUnblockedTCB ); - 8004c4c: 693b ldr r3, [r7, #16] - 8004c4e: 6ada ldr r2, [r3, #44] ; 0x2c - 8004c50: 4b19 ldr r3, [pc, #100] ; (8004cb8 ) - 8004c52: 681b ldr r3, [r3, #0] - 8004c54: 429a cmp r2, r3 - 8004c56: d903 bls.n 8004c60 - 8004c58: 693b ldr r3, [r7, #16] - 8004c5a: 6adb ldr r3, [r3, #44] ; 0x2c - 8004c5c: 4a16 ldr r2, [pc, #88] ; (8004cb8 ) - 8004c5e: 6013 str r3, [r2, #0] - 8004c60: 693b ldr r3, [r7, #16] - 8004c62: 6ada ldr r2, [r3, #44] ; 0x2c - 8004c64: 4613 mov r3, r2 - 8004c66: 009b lsls r3, r3, #2 - 8004c68: 4413 add r3, r2 - 8004c6a: 009b lsls r3, r3, #2 - 8004c6c: 4a13 ldr r2, [pc, #76] ; (8004cbc ) - 8004c6e: 441a add r2, r3 - 8004c70: 693b ldr r3, [r7, #16] - 8004c72: 3304 adds r3, #4 - 8004c74: 4619 mov r1, r3 - 8004c76: 4610 mov r0, r2 - 8004c78: f7fe fdcb bl 8003812 - 8004c7c: e005 b.n 8004c8a + 8004c88: 693b ldr r3, [r7, #16] + 8004c8a: 6ada ldr r2, [r3, #44] ; 0x2c + 8004c8c: 4b19 ldr r3, [pc, #100] ; (8004cf4 ) + 8004c8e: 681b ldr r3, [r3, #0] + 8004c90: 429a cmp r2, r3 + 8004c92: d903 bls.n 8004c9c + 8004c94: 693b ldr r3, [r7, #16] + 8004c96: 6adb ldr r3, [r3, #44] ; 0x2c + 8004c98: 4a16 ldr r2, [pc, #88] ; (8004cf4 ) + 8004c9a: 6013 str r3, [r2, #0] + 8004c9c: 693b ldr r3, [r7, #16] + 8004c9e: 6ada ldr r2, [r3, #44] ; 0x2c + 8004ca0: 4613 mov r3, r2 + 8004ca2: 009b lsls r3, r3, #2 + 8004ca4: 4413 add r3, r2 + 8004ca6: 009b lsls r3, r3, #2 + 8004ca8: 4a13 ldr r2, [pc, #76] ; (8004cf8 ) + 8004caa: 441a add r2, r3 + 8004cac: 693b ldr r3, [r7, #16] + 8004cae: 3304 adds r3, #4 + 8004cb0: 4619 mov r1, r3 + 8004cb2: 4610 mov r0, r2 + 8004cb4: f7fe fdcb bl 800384e + 8004cb8: e005 b.n 8004cc6 } else { /* The delayed and ready lists cannot be accessed, so hold this task pending until the scheduler is resumed. */ vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); - 8004c7e: 693b ldr r3, [r7, #16] - 8004c80: 3318 adds r3, #24 - 8004c82: 4619 mov r1, r3 - 8004c84: 480e ldr r0, [pc, #56] ; (8004cc0 ) - 8004c86: f7fe fdc4 bl 8003812 + 8004cba: 693b ldr r3, [r7, #16] + 8004cbc: 3318 adds r3, #24 + 8004cbe: 4619 mov r1, r3 + 8004cc0: 480e ldr r0, [pc, #56] ; (8004cfc ) + 8004cc2: f7fe fdc4 bl 800384e } if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - 8004c8a: 693b ldr r3, [r7, #16] - 8004c8c: 6ada ldr r2, [r3, #44] ; 0x2c - 8004c8e: 4b0d ldr r3, [pc, #52] ; (8004cc4 ) - 8004c90: 681b ldr r3, [r3, #0] - 8004c92: 6adb ldr r3, [r3, #44] ; 0x2c - 8004c94: 429a cmp r2, r3 - 8004c96: d905 bls.n 8004ca4 + 8004cc6: 693b ldr r3, [r7, #16] + 8004cc8: 6ada ldr r2, [r3, #44] ; 0x2c + 8004cca: 4b0d ldr r3, [pc, #52] ; (8004d00 ) + 8004ccc: 681b ldr r3, [r3, #0] + 8004cce: 6adb ldr r3, [r3, #44] ; 0x2c + 8004cd0: 429a cmp r2, r3 + 8004cd2: d905 bls.n 8004ce0 { /* Return true if the task removed from the event list has a higher priority than the calling task. This allows the calling task to know if it should force a context switch now. */ xReturn = pdTRUE; - 8004c98: 2301 movs r3, #1 - 8004c9a: 617b str r3, [r7, #20] + 8004cd4: 2301 movs r3, #1 + 8004cd6: 617b str r3, [r7, #20] /* Mark that a yield is pending in case the user is not using the "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ xYieldPending = pdTRUE; - 8004c9c: 4b0a ldr r3, [pc, #40] ; (8004cc8 ) - 8004c9e: 2201 movs r2, #1 - 8004ca0: 601a str r2, [r3, #0] - 8004ca2: e001 b.n 8004ca8 + 8004cd8: 4b0a ldr r3, [pc, #40] ; (8004d04 ) + 8004cda: 2201 movs r2, #1 + 8004cdc: 601a str r2, [r3, #0] + 8004cde: e001 b.n 8004ce4 } else { xReturn = pdFALSE; - 8004ca4: 2300 movs r3, #0 - 8004ca6: 617b str r3, [r7, #20] + 8004ce0: 2300 movs r3, #0 + 8004ce2: 617b str r3, [r7, #20] } return xReturn; - 8004ca8: 697b ldr r3, [r7, #20] + 8004ce4: 697b ldr r3, [r7, #20] } - 8004caa: 4618 mov r0, r3 - 8004cac: 3718 adds r7, #24 - 8004cae: 46bd mov sp, r7 - 8004cb0: bd80 pop {r7, pc} - 8004cb2: bf00 nop - 8004cb4: 20000e0c .word 0x20000e0c - 8004cb8: 20000dec .word 0x20000dec - 8004cbc: 20000914 .word 0x20000914 - 8004cc0: 20000da4 .word 0x20000da4 - 8004cc4: 20000910 .word 0x20000910 - 8004cc8: 20000df8 .word 0x20000df8 + 8004ce6: 4618 mov r0, r3 + 8004ce8: 3718 adds r7, #24 + 8004cea: 46bd mov sp, r7 + 8004cec: bd80 pop {r7, pc} + 8004cee: bf00 nop + 8004cf0: 20000e0c .word 0x20000e0c + 8004cf4: 20000dec .word 0x20000dec + 8004cf8: 20000914 .word 0x20000914 + 8004cfc: 20000da4 .word 0x20000da4 + 8004d00: 20000910 .word 0x20000910 + 8004d04: 20000df8 .word 0x20000df8 -08004ccc : +08004d08 : taskEXIT_CRITICAL(); } /*-----------------------------------------------------------*/ void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) { - 8004ccc: b480 push {r7} - 8004cce: b083 sub sp, #12 - 8004cd0: af00 add r7, sp, #0 - 8004cd2: 6078 str r0, [r7, #4] + 8004d08: b480 push {r7} + 8004d0a: b083 sub sp, #12 + 8004d0c: af00 add r7, sp, #0 + 8004d0e: 6078 str r0, [r7, #4] /* For internal use only as it does not use a critical section. */ pxTimeOut->xOverflowCount = xNumOfOverflows; - 8004cd4: 4b06 ldr r3, [pc, #24] ; (8004cf0 ) - 8004cd6: 681a ldr r2, [r3, #0] - 8004cd8: 687b ldr r3, [r7, #4] - 8004cda: 601a str r2, [r3, #0] + 8004d10: 4b06 ldr r3, [pc, #24] ; (8004d2c ) + 8004d12: 681a ldr r2, [r3, #0] + 8004d14: 687b ldr r3, [r7, #4] + 8004d16: 601a str r2, [r3, #0] pxTimeOut->xTimeOnEntering = xTickCount; - 8004cdc: 4b05 ldr r3, [pc, #20] ; (8004cf4 ) - 8004cde: 681a ldr r2, [r3, #0] - 8004ce0: 687b ldr r3, [r7, #4] - 8004ce2: 605a str r2, [r3, #4] + 8004d18: 4b05 ldr r3, [pc, #20] ; (8004d30 ) + 8004d1a: 681a ldr r2, [r3, #0] + 8004d1c: 687b ldr r3, [r7, #4] + 8004d1e: 605a str r2, [r3, #4] } - 8004ce4: bf00 nop - 8004ce6: 370c adds r7, #12 - 8004ce8: 46bd mov sp, r7 - 8004cea: f85d 7b04 ldr.w r7, [sp], #4 - 8004cee: 4770 bx lr - 8004cf0: 20000dfc .word 0x20000dfc - 8004cf4: 20000de8 .word 0x20000de8 + 8004d20: bf00 nop + 8004d22: 370c adds r7, #12 + 8004d24: 46bd mov sp, r7 + 8004d26: f85d 7b04 ldr.w r7, [sp], #4 + 8004d2a: 4770 bx lr + 8004d2c: 20000dfc .word 0x20000dfc + 8004d30: 20000de8 .word 0x20000de8 -08004cf8 : +08004d34 : /*-----------------------------------------------------------*/ BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) { - 8004cf8: b580 push {r7, lr} - 8004cfa: b088 sub sp, #32 - 8004cfc: af00 add r7, sp, #0 - 8004cfe: 6078 str r0, [r7, #4] - 8004d00: 6039 str r1, [r7, #0] + 8004d34: b580 push {r7, lr} + 8004d36: b088 sub sp, #32 + 8004d38: af00 add r7, sp, #0 + 8004d3a: 6078 str r0, [r7, #4] + 8004d3c: 6039 str r1, [r7, #0] BaseType_t xReturn; configASSERT( pxTimeOut ); - 8004d02: 687b ldr r3, [r7, #4] - 8004d04: 2b00 cmp r3, #0 - 8004d06: d10a bne.n 8004d1e + 8004d3e: 687b ldr r3, [r7, #4] + 8004d40: 2b00 cmp r3, #0 + 8004d42: d10a bne.n 8004d5a __asm volatile - 8004d08: f04f 0350 mov.w r3, #80 ; 0x50 - 8004d0c: f383 8811 msr BASEPRI, r3 - 8004d10: f3bf 8f6f isb sy - 8004d14: f3bf 8f4f dsb sy - 8004d18: 613b str r3, [r7, #16] + 8004d44: f04f 0350 mov.w r3, #80 ; 0x50 + 8004d48: f383 8811 msr BASEPRI, r3 + 8004d4c: f3bf 8f6f isb sy + 8004d50: f3bf 8f4f dsb sy + 8004d54: 613b str r3, [r7, #16] } - 8004d1a: bf00 nop - 8004d1c: e7fe b.n 8004d1c + 8004d56: bf00 nop + 8004d58: e7fe b.n 8004d58 configASSERT( pxTicksToWait ); - 8004d1e: 683b ldr r3, [r7, #0] - 8004d20: 2b00 cmp r3, #0 - 8004d22: d10a bne.n 8004d3a + 8004d5a: 683b ldr r3, [r7, #0] + 8004d5c: 2b00 cmp r3, #0 + 8004d5e: d10a bne.n 8004d76 __asm volatile - 8004d24: f04f 0350 mov.w r3, #80 ; 0x50 - 8004d28: f383 8811 msr BASEPRI, r3 - 8004d2c: f3bf 8f6f isb sy - 8004d30: f3bf 8f4f dsb sy - 8004d34: 60fb str r3, [r7, #12] + 8004d60: f04f 0350 mov.w r3, #80 ; 0x50 + 8004d64: f383 8811 msr BASEPRI, r3 + 8004d68: f3bf 8f6f isb sy + 8004d6c: f3bf 8f4f dsb sy + 8004d70: 60fb str r3, [r7, #12] } - 8004d36: bf00 nop - 8004d38: e7fe b.n 8004d38 + 8004d72: bf00 nop + 8004d74: e7fe b.n 8004d74 taskENTER_CRITICAL(); - 8004d3a: f000 fe83 bl 8005a44 + 8004d76: f000 fe7d bl 8005a74 { /* Minor optimisation. The tick count cannot change in this block. */ const TickType_t xConstTickCount = xTickCount; - 8004d3e: 4b1d ldr r3, [pc, #116] ; (8004db4 ) - 8004d40: 681b ldr r3, [r3, #0] - 8004d42: 61bb str r3, [r7, #24] + 8004d7a: 4b1d ldr r3, [pc, #116] ; (8004df0 ) + 8004d7c: 681b ldr r3, [r3, #0] + 8004d7e: 61bb str r3, [r7, #24] const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; - 8004d44: 687b ldr r3, [r7, #4] - 8004d46: 685b ldr r3, [r3, #4] - 8004d48: 69ba ldr r2, [r7, #24] - 8004d4a: 1ad3 subs r3, r2, r3 - 8004d4c: 617b str r3, [r7, #20] + 8004d80: 687b ldr r3, [r7, #4] + 8004d82: 685b ldr r3, [r3, #4] + 8004d84: 69ba ldr r2, [r7, #24] + 8004d86: 1ad3 subs r3, r2, r3 + 8004d88: 617b str r3, [r7, #20] } else #endif #if ( INCLUDE_vTaskSuspend == 1 ) if( *pxTicksToWait == portMAX_DELAY ) - 8004d4e: 683b ldr r3, [r7, #0] - 8004d50: 681b ldr r3, [r3, #0] - 8004d52: f1b3 3fff cmp.w r3, #4294967295 - 8004d56: d102 bne.n 8004d5e + 8004d8a: 683b ldr r3, [r7, #0] + 8004d8c: 681b ldr r3, [r3, #0] + 8004d8e: f1b3 3fff cmp.w r3, #4294967295 + 8004d92: d102 bne.n 8004d9a { /* If INCLUDE_vTaskSuspend is set to 1 and the block time specified is the maximum block time then the task should block indefinitely, and therefore never time out. */ xReturn = pdFALSE; - 8004d58: 2300 movs r3, #0 - 8004d5a: 61fb str r3, [r7, #28] - 8004d5c: e023 b.n 8004da6 + 8004d94: 2300 movs r3, #0 + 8004d96: 61fb str r3, [r7, #28] + 8004d98: e023 b.n 8004de2 } else #endif if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ - 8004d5e: 687b ldr r3, [r7, #4] - 8004d60: 681a ldr r2, [r3, #0] - 8004d62: 4b15 ldr r3, [pc, #84] ; (8004db8 ) - 8004d64: 681b ldr r3, [r3, #0] - 8004d66: 429a cmp r2, r3 - 8004d68: d007 beq.n 8004d7a - 8004d6a: 687b ldr r3, [r7, #4] - 8004d6c: 685b ldr r3, [r3, #4] - 8004d6e: 69ba ldr r2, [r7, #24] - 8004d70: 429a cmp r2, r3 - 8004d72: d302 bcc.n 8004d7a + 8004d9a: 687b ldr r3, [r7, #4] + 8004d9c: 681a ldr r2, [r3, #0] + 8004d9e: 4b15 ldr r3, [pc, #84] ; (8004df4 ) + 8004da0: 681b ldr r3, [r3, #0] + 8004da2: 429a cmp r2, r3 + 8004da4: d007 beq.n 8004db6 + 8004da6: 687b ldr r3, [r7, #4] + 8004da8: 685b ldr r3, [r3, #4] + 8004daa: 69ba ldr r2, [r7, #24] + 8004dac: 429a cmp r2, r3 + 8004dae: d302 bcc.n 8004db6 /* The tick count is greater than the time at which vTaskSetTimeout() was called, but has also overflowed since vTaskSetTimeOut() was called. It must have wrapped all the way around and gone past again. This passed since vTaskSetTimeout() was called. */ xReturn = pdTRUE; - 8004d74: 2301 movs r3, #1 - 8004d76: 61fb str r3, [r7, #28] - 8004d78: e015 b.n 8004da6 + 8004db0: 2301 movs r3, #1 + 8004db2: 61fb str r3, [r7, #28] + 8004db4: e015 b.n 8004de2 } else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ - 8004d7a: 683b ldr r3, [r7, #0] - 8004d7c: 681b ldr r3, [r3, #0] - 8004d7e: 697a ldr r2, [r7, #20] - 8004d80: 429a cmp r2, r3 - 8004d82: d20b bcs.n 8004d9c + 8004db6: 683b ldr r3, [r7, #0] + 8004db8: 681b ldr r3, [r3, #0] + 8004dba: 697a ldr r2, [r7, #20] + 8004dbc: 429a cmp r2, r3 + 8004dbe: d20b bcs.n 8004dd8 { /* Not a genuine timeout. Adjust parameters for time remaining. */ *pxTicksToWait -= xElapsedTime; - 8004d84: 683b ldr r3, [r7, #0] - 8004d86: 681a ldr r2, [r3, #0] - 8004d88: 697b ldr r3, [r7, #20] - 8004d8a: 1ad2 subs r2, r2, r3 - 8004d8c: 683b ldr r3, [r7, #0] - 8004d8e: 601a str r2, [r3, #0] + 8004dc0: 683b ldr r3, [r7, #0] + 8004dc2: 681a ldr r2, [r3, #0] + 8004dc4: 697b ldr r3, [r7, #20] + 8004dc6: 1ad2 subs r2, r2, r3 + 8004dc8: 683b ldr r3, [r7, #0] + 8004dca: 601a str r2, [r3, #0] vTaskInternalSetTimeOutState( pxTimeOut ); - 8004d90: 6878 ldr r0, [r7, #4] - 8004d92: f7ff ff9b bl 8004ccc + 8004dcc: 6878 ldr r0, [r7, #4] + 8004dce: f7ff ff9b bl 8004d08 xReturn = pdFALSE; - 8004d96: 2300 movs r3, #0 - 8004d98: 61fb str r3, [r7, #28] - 8004d9a: e004 b.n 8004da6 + 8004dd2: 2300 movs r3, #0 + 8004dd4: 61fb str r3, [r7, #28] + 8004dd6: e004 b.n 8004de2 } else { *pxTicksToWait = 0; - 8004d9c: 683b ldr r3, [r7, #0] - 8004d9e: 2200 movs r2, #0 - 8004da0: 601a str r2, [r3, #0] + 8004dd8: 683b ldr r3, [r7, #0] + 8004dda: 2200 movs r2, #0 + 8004ddc: 601a str r2, [r3, #0] xReturn = pdTRUE; - 8004da2: 2301 movs r3, #1 - 8004da4: 61fb str r3, [r7, #28] + 8004dde: 2301 movs r3, #1 + 8004de0: 61fb str r3, [r7, #28] } } taskEXIT_CRITICAL(); - 8004da6: f000 fe7d bl 8005aa4 + 8004de2: f000 fe77 bl 8005ad4 return xReturn; - 8004daa: 69fb ldr r3, [r7, #28] + 8004de6: 69fb ldr r3, [r7, #28] } - 8004dac: 4618 mov r0, r3 - 8004dae: 3720 adds r7, #32 - 8004db0: 46bd mov sp, r7 - 8004db2: bd80 pop {r7, pc} - 8004db4: 20000de8 .word 0x20000de8 - 8004db8: 20000dfc .word 0x20000dfc + 8004de8: 4618 mov r0, r3 + 8004dea: 3720 adds r7, #32 + 8004dec: 46bd mov sp, r7 + 8004dee: bd80 pop {r7, pc} + 8004df0: 20000de8 .word 0x20000de8 + 8004df4: 20000dfc .word 0x20000dfc -08004dbc : +08004df8 : /*-----------------------------------------------------------*/ void vTaskMissedYield( void ) { - 8004dbc: b480 push {r7} - 8004dbe: af00 add r7, sp, #0 + 8004df8: b480 push {r7} + 8004dfa: af00 add r7, sp, #0 xYieldPending = pdTRUE; - 8004dc0: 4b03 ldr r3, [pc, #12] ; (8004dd0 ) - 8004dc2: 2201 movs r2, #1 - 8004dc4: 601a str r2, [r3, #0] + 8004dfc: 4b03 ldr r3, [pc, #12] ; (8004e0c ) + 8004dfe: 2201 movs r2, #1 + 8004e00: 601a str r2, [r3, #0] } - 8004dc6: bf00 nop - 8004dc8: 46bd mov sp, r7 - 8004dca: f85d 7b04 ldr.w r7, [sp], #4 - 8004dce: 4770 bx lr - 8004dd0: 20000df8 .word 0x20000df8 + 8004e02: bf00 nop + 8004e04: 46bd mov sp, r7 + 8004e06: f85d 7b04 ldr.w r7, [sp], #4 + 8004e0a: 4770 bx lr + 8004e0c: 20000df8 .word 0x20000df8 -08004dd4 : +08004e10 : * * void prvIdleTask( void *pvParameters ); * */ static portTASK_FUNCTION( prvIdleTask, pvParameters ) { - 8004dd4: b580 push {r7, lr} - 8004dd6: b082 sub sp, #8 - 8004dd8: af00 add r7, sp, #0 - 8004dda: 6078 str r0, [r7, #4] + 8004e10: b580 push {r7, lr} + 8004e12: b082 sub sp, #8 + 8004e14: af00 add r7, sp, #0 + 8004e16: 6078 str r0, [r7, #4] for( ;; ) { /* See if any tasks have deleted themselves - if so then the idle task is responsible for freeing the deleted task's TCB and stack. */ prvCheckTasksWaitingTermination(); - 8004ddc: f000 f852 bl 8004e84 + 8004e18: f000 f852 bl 8004ec0 A critical region is not required here as we are just reading from the list, and an occasional incorrect value will not matter. If the ready list at the idle priority contains more than one task then a task other than the idle task is ready to execute. */ if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) - 8004de0: 4b06 ldr r3, [pc, #24] ; (8004dfc ) - 8004de2: 681b ldr r3, [r3, #0] - 8004de4: 2b01 cmp r3, #1 - 8004de6: d9f9 bls.n 8004ddc + 8004e1c: 4b06 ldr r3, [pc, #24] ; (8004e38 ) + 8004e1e: 681b ldr r3, [r3, #0] + 8004e20: 2b01 cmp r3, #1 + 8004e22: d9f9 bls.n 8004e18 { taskYIELD(); - 8004de8: 4b05 ldr r3, [pc, #20] ; (8004e00 ) - 8004dea: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8004dee: 601a str r2, [r3, #0] - 8004df0: f3bf 8f4f dsb sy - 8004df4: f3bf 8f6f isb sy + 8004e24: 4b05 ldr r3, [pc, #20] ; (8004e3c ) + 8004e26: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8004e2a: 601a str r2, [r3, #0] + 8004e2c: f3bf 8f4f dsb sy + 8004e30: f3bf 8f6f isb sy prvCheckTasksWaitingTermination(); - 8004df8: e7f0 b.n 8004ddc - 8004dfa: bf00 nop - 8004dfc: 20000914 .word 0x20000914 - 8004e00: e000ed04 .word 0xe000ed04 + 8004e34: e7f0 b.n 8004e18 + 8004e36: bf00 nop + 8004e38: 20000914 .word 0x20000914 + 8004e3c: e000ed04 .word 0xe000ed04 -08004e04 : +08004e40 : #endif /* portUSING_MPU_WRAPPERS */ /*-----------------------------------------------------------*/ static void prvInitialiseTaskLists( void ) { - 8004e04: b580 push {r7, lr} - 8004e06: b082 sub sp, #8 - 8004e08: af00 add r7, sp, #0 + 8004e40: b580 push {r7, lr} + 8004e42: b082 sub sp, #8 + 8004e44: af00 add r7, sp, #0 UBaseType_t uxPriority; for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - 8004e0a: 2300 movs r3, #0 - 8004e0c: 607b str r3, [r7, #4] - 8004e0e: e00c b.n 8004e2a + 8004e46: 2300 movs r3, #0 + 8004e48: 607b str r3, [r7, #4] + 8004e4a: e00c b.n 8004e66 { vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); - 8004e10: 687a ldr r2, [r7, #4] - 8004e12: 4613 mov r3, r2 - 8004e14: 009b lsls r3, r3, #2 - 8004e16: 4413 add r3, r2 - 8004e18: 009b lsls r3, r3, #2 - 8004e1a: 4a12 ldr r2, [pc, #72] ; (8004e64 ) - 8004e1c: 4413 add r3, r2 - 8004e1e: 4618 mov r0, r3 - 8004e20: f7fe fcca bl 80037b8 + 8004e4c: 687a ldr r2, [r7, #4] + 8004e4e: 4613 mov r3, r2 + 8004e50: 009b lsls r3, r3, #2 + 8004e52: 4413 add r3, r2 + 8004e54: 009b lsls r3, r3, #2 + 8004e56: 4a12 ldr r2, [pc, #72] ; (8004ea0 ) + 8004e58: 4413 add r3, r2 + 8004e5a: 4618 mov r0, r3 + 8004e5c: f7fe fcca bl 80037f4 for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - 8004e24: 687b ldr r3, [r7, #4] - 8004e26: 3301 adds r3, #1 - 8004e28: 607b str r3, [r7, #4] - 8004e2a: 687b ldr r3, [r7, #4] - 8004e2c: 2b37 cmp r3, #55 ; 0x37 - 8004e2e: d9ef bls.n 8004e10 + 8004e60: 687b ldr r3, [r7, #4] + 8004e62: 3301 adds r3, #1 + 8004e64: 607b str r3, [r7, #4] + 8004e66: 687b ldr r3, [r7, #4] + 8004e68: 2b37 cmp r3, #55 ; 0x37 + 8004e6a: d9ef bls.n 8004e4c } vListInitialise( &xDelayedTaskList1 ); - 8004e30: 480d ldr r0, [pc, #52] ; (8004e68 ) - 8004e32: f7fe fcc1 bl 80037b8 + 8004e6c: 480d ldr r0, [pc, #52] ; (8004ea4 ) + 8004e6e: f7fe fcc1 bl 80037f4 vListInitialise( &xDelayedTaskList2 ); - 8004e36: 480d ldr r0, [pc, #52] ; (8004e6c ) - 8004e38: f7fe fcbe bl 80037b8 + 8004e72: 480d ldr r0, [pc, #52] ; (8004ea8 ) + 8004e74: f7fe fcbe bl 80037f4 vListInitialise( &xPendingReadyList ); - 8004e3c: 480c ldr r0, [pc, #48] ; (8004e70 ) - 8004e3e: f7fe fcbb bl 80037b8 + 8004e78: 480c ldr r0, [pc, #48] ; (8004eac ) + 8004e7a: f7fe fcbb bl 80037f4 #if ( INCLUDE_vTaskDelete == 1 ) { vListInitialise( &xTasksWaitingTermination ); - 8004e42: 480c ldr r0, [pc, #48] ; (8004e74 ) - 8004e44: f7fe fcb8 bl 80037b8 + 8004e7e: 480c ldr r0, [pc, #48] ; (8004eb0 ) + 8004e80: f7fe fcb8 bl 80037f4 } #endif /* INCLUDE_vTaskDelete */ #if ( INCLUDE_vTaskSuspend == 1 ) { vListInitialise( &xSuspendedTaskList ); - 8004e48: 480b ldr r0, [pc, #44] ; (8004e78 ) - 8004e4a: f7fe fcb5 bl 80037b8 + 8004e84: 480b ldr r0, [pc, #44] ; (8004eb4 ) + 8004e86: f7fe fcb5 bl 80037f4 } #endif /* INCLUDE_vTaskSuspend */ /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList using list2. */ pxDelayedTaskList = &xDelayedTaskList1; - 8004e4e: 4b0b ldr r3, [pc, #44] ; (8004e7c ) - 8004e50: 4a05 ldr r2, [pc, #20] ; (8004e68 ) - 8004e52: 601a str r2, [r3, #0] + 8004e8a: 4b0b ldr r3, [pc, #44] ; (8004eb8 ) + 8004e8c: 4a05 ldr r2, [pc, #20] ; (8004ea4 ) + 8004e8e: 601a str r2, [r3, #0] pxOverflowDelayedTaskList = &xDelayedTaskList2; - 8004e54: 4b0a ldr r3, [pc, #40] ; (8004e80 ) - 8004e56: 4a05 ldr r2, [pc, #20] ; (8004e6c ) - 8004e58: 601a str r2, [r3, #0] + 8004e90: 4b0a ldr r3, [pc, #40] ; (8004ebc ) + 8004e92: 4a05 ldr r2, [pc, #20] ; (8004ea8 ) + 8004e94: 601a str r2, [r3, #0] } - 8004e5a: bf00 nop - 8004e5c: 3708 adds r7, #8 - 8004e5e: 46bd mov sp, r7 - 8004e60: bd80 pop {r7, pc} - 8004e62: bf00 nop - 8004e64: 20000914 .word 0x20000914 - 8004e68: 20000d74 .word 0x20000d74 - 8004e6c: 20000d88 .word 0x20000d88 - 8004e70: 20000da4 .word 0x20000da4 - 8004e74: 20000db8 .word 0x20000db8 - 8004e78: 20000dd0 .word 0x20000dd0 - 8004e7c: 20000d9c .word 0x20000d9c - 8004e80: 20000da0 .word 0x20000da0 + 8004e96: bf00 nop + 8004e98: 3708 adds r7, #8 + 8004e9a: 46bd mov sp, r7 + 8004e9c: bd80 pop {r7, pc} + 8004e9e: bf00 nop + 8004ea0: 20000914 .word 0x20000914 + 8004ea4: 20000d74 .word 0x20000d74 + 8004ea8: 20000d88 .word 0x20000d88 + 8004eac: 20000da4 .word 0x20000da4 + 8004eb0: 20000db8 .word 0x20000db8 + 8004eb4: 20000dd0 .word 0x20000dd0 + 8004eb8: 20000d9c .word 0x20000d9c + 8004ebc: 20000da0 .word 0x20000da0 -08004e84 : +08004ec0 : /*-----------------------------------------------------------*/ static void prvCheckTasksWaitingTermination( void ) { - 8004e84: b580 push {r7, lr} - 8004e86: b082 sub sp, #8 - 8004e88: af00 add r7, sp, #0 + 8004ec0: b580 push {r7, lr} + 8004ec2: b082 sub sp, #8 + 8004ec4: af00 add r7, sp, #0 { TCB_t *pxTCB; /* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL() being called too often in the idle task. */ while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - 8004e8a: e019 b.n 8004ec0 + 8004ec6: e019 b.n 8004efc { taskENTER_CRITICAL(); - 8004e8c: f000 fdda bl 8005a44 + 8004ec8: f000 fdd4 bl 8005a74 { pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004e90: 4b10 ldr r3, [pc, #64] ; (8004ed4 ) - 8004e92: 68db ldr r3, [r3, #12] - 8004e94: 68db ldr r3, [r3, #12] - 8004e96: 607b str r3, [r7, #4] + 8004ecc: 4b10 ldr r3, [pc, #64] ; (8004f10 ) + 8004ece: 68db ldr r3, [r3, #12] + 8004ed0: 68db ldr r3, [r3, #12] + 8004ed2: 607b str r3, [r7, #4] ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 8004e98: 687b ldr r3, [r7, #4] - 8004e9a: 3304 adds r3, #4 - 8004e9c: 4618 mov r0, r3 - 8004e9e: f7fe fd15 bl 80038cc + 8004ed4: 687b ldr r3, [r7, #4] + 8004ed6: 3304 adds r3, #4 + 8004ed8: 4618 mov r0, r3 + 8004eda: f7fe fd15 bl 8003908 --uxCurrentNumberOfTasks; - 8004ea2: 4b0d ldr r3, [pc, #52] ; (8004ed8 ) - 8004ea4: 681b ldr r3, [r3, #0] - 8004ea6: 3b01 subs r3, #1 - 8004ea8: 4a0b ldr r2, [pc, #44] ; (8004ed8 ) - 8004eaa: 6013 str r3, [r2, #0] + 8004ede: 4b0d ldr r3, [pc, #52] ; (8004f14 ) + 8004ee0: 681b ldr r3, [r3, #0] + 8004ee2: 3b01 subs r3, #1 + 8004ee4: 4a0b ldr r2, [pc, #44] ; (8004f14 ) + 8004ee6: 6013 str r3, [r2, #0] --uxDeletedTasksWaitingCleanUp; - 8004eac: 4b0b ldr r3, [pc, #44] ; (8004edc ) - 8004eae: 681b ldr r3, [r3, #0] - 8004eb0: 3b01 subs r3, #1 - 8004eb2: 4a0a ldr r2, [pc, #40] ; (8004edc ) - 8004eb4: 6013 str r3, [r2, #0] + 8004ee8: 4b0b ldr r3, [pc, #44] ; (8004f18 ) + 8004eea: 681b ldr r3, [r3, #0] + 8004eec: 3b01 subs r3, #1 + 8004eee: 4a0a ldr r2, [pc, #40] ; (8004f18 ) + 8004ef0: 6013 str r3, [r2, #0] } taskEXIT_CRITICAL(); - 8004eb6: f000 fdf5 bl 8005aa4 + 8004ef2: f000 fdef bl 8005ad4 prvDeleteTCB( pxTCB ); - 8004eba: 6878 ldr r0, [r7, #4] - 8004ebc: f000 f810 bl 8004ee0 + 8004ef6: 6878 ldr r0, [r7, #4] + 8004ef8: f000 f810 bl 8004f1c while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - 8004ec0: 4b06 ldr r3, [pc, #24] ; (8004edc ) - 8004ec2: 681b ldr r3, [r3, #0] - 8004ec4: 2b00 cmp r3, #0 - 8004ec6: d1e1 bne.n 8004e8c + 8004efc: 4b06 ldr r3, [pc, #24] ; (8004f18 ) + 8004efe: 681b ldr r3, [r3, #0] + 8004f00: 2b00 cmp r3, #0 + 8004f02: d1e1 bne.n 8004ec8 } } #endif /* INCLUDE_vTaskDelete */ } - 8004ec8: bf00 nop - 8004eca: bf00 nop - 8004ecc: 3708 adds r7, #8 - 8004ece: 46bd mov sp, r7 - 8004ed0: bd80 pop {r7, pc} - 8004ed2: bf00 nop - 8004ed4: 20000db8 .word 0x20000db8 - 8004ed8: 20000de4 .word 0x20000de4 - 8004edc: 20000dcc .word 0x20000dcc + 8004f04: bf00 nop + 8004f06: bf00 nop + 8004f08: 3708 adds r7, #8 + 8004f0a: 46bd mov sp, r7 + 8004f0c: bd80 pop {r7, pc} + 8004f0e: bf00 nop + 8004f10: 20000db8 .word 0x20000db8 + 8004f14: 20000de4 .word 0x20000de4 + 8004f18: 20000dcc .word 0x20000dcc -08004ee0 : +08004f1c : /*-----------------------------------------------------------*/ #if ( INCLUDE_vTaskDelete == 1 ) static void prvDeleteTCB( TCB_t *pxTCB ) { - 8004ee0: b580 push {r7, lr} - 8004ee2: b084 sub sp, #16 - 8004ee4: af00 add r7, sp, #0 - 8004ee6: 6078 str r0, [r7, #4] + 8004f1c: b580 push {r7, lr} + 8004f1e: b084 sub sp, #16 + 8004f20: af00 add r7, sp, #0 + 8004f22: 6078 str r0, [r7, #4] to the task to free any memory allocated at the application level. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ #if ( configUSE_NEWLIB_REENTRANT == 1 ) { _reclaim_reent( &( pxTCB->xNewLib_reent ) ); - 8004ee8: 687b ldr r3, [r7, #4] - 8004eea: 3354 adds r3, #84 ; 0x54 - 8004eec: 4618 mov r0, r3 - 8004eee: f001 f8bd bl 800606c <_reclaim_reent> + 8004f24: 687b ldr r3, [r7, #4] + 8004f26: 3354 adds r3, #84 ; 0x54 + 8004f28: 4618 mov r0, r3 + 8004f2a: f001 f8b7 bl 800609c <_reclaim_reent> #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ { /* The task could have been allocated statically or dynamically, so check what was statically allocated before trying to free the memory. */ if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) - 8004ef2: 687b ldr r3, [r7, #4] - 8004ef4: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 8004ef8: 2b00 cmp r3, #0 - 8004efa: d108 bne.n 8004f0e + 8004f2e: 687b ldr r3, [r7, #4] + 8004f30: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 8004f34: 2b00 cmp r3, #0 + 8004f36: d108 bne.n 8004f4a { /* Both the stack and TCB were allocated dynamically, so both must be freed. */ vPortFree( pxTCB->pxStack ); - 8004efc: 687b ldr r3, [r7, #4] - 8004efe: 6b1b ldr r3, [r3, #48] ; 0x30 - 8004f00: 4618 mov r0, r3 - 8004f02: f000 ff8d bl 8005e20 + 8004f38: 687b ldr r3, [r7, #4] + 8004f3a: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004f3c: 4618 mov r0, r3 + 8004f3e: f000 ff87 bl 8005e50 vPortFree( pxTCB ); - 8004f06: 6878 ldr r0, [r7, #4] - 8004f08: f000 ff8a bl 8005e20 + 8004f42: 6878 ldr r0, [r7, #4] + 8004f44: f000 ff84 bl 8005e50 configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); mtCOVERAGE_TEST_MARKER(); } } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ } - 8004f0c: e018 b.n 8004f40 + 8004f48: e018 b.n 8004f7c else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) - 8004f0e: 687b ldr r3, [r7, #4] - 8004f10: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 8004f14: 2b01 cmp r3, #1 - 8004f16: d103 bne.n 8004f20 + 8004f4a: 687b ldr r3, [r7, #4] + 8004f4c: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 8004f50: 2b01 cmp r3, #1 + 8004f52: d103 bne.n 8004f5c vPortFree( pxTCB ); - 8004f18: 6878 ldr r0, [r7, #4] - 8004f1a: f000 ff81 bl 8005e20 + 8004f54: 6878 ldr r0, [r7, #4] + 8004f56: f000 ff7b bl 8005e50 } - 8004f1e: e00f b.n 8004f40 + 8004f5a: e00f b.n 8004f7c configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); - 8004f20: 687b ldr r3, [r7, #4] - 8004f22: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 8004f26: 2b02 cmp r3, #2 - 8004f28: d00a beq.n 8004f40 + 8004f5c: 687b ldr r3, [r7, #4] + 8004f5e: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 8004f62: 2b02 cmp r3, #2 + 8004f64: d00a beq.n 8004f7c __asm volatile - 8004f2a: f04f 0350 mov.w r3, #80 ; 0x50 - 8004f2e: f383 8811 msr BASEPRI, r3 - 8004f32: f3bf 8f6f isb sy - 8004f36: f3bf 8f4f dsb sy - 8004f3a: 60fb str r3, [r7, #12] + 8004f66: f04f 0350 mov.w r3, #80 ; 0x50 + 8004f6a: f383 8811 msr BASEPRI, r3 + 8004f6e: f3bf 8f6f isb sy + 8004f72: f3bf 8f4f dsb sy + 8004f76: 60fb str r3, [r7, #12] } - 8004f3c: bf00 nop - 8004f3e: e7fe b.n 8004f3e + 8004f78: bf00 nop + 8004f7a: e7fe b.n 8004f7a } - 8004f40: bf00 nop - 8004f42: 3710 adds r7, #16 - 8004f44: 46bd mov sp, r7 - 8004f46: bd80 pop {r7, pc} + 8004f7c: bf00 nop + 8004f7e: 3710 adds r7, #16 + 8004f80: 46bd mov sp, r7 + 8004f82: bd80 pop {r7, pc} -08004f48 : +08004f84 : #endif /* INCLUDE_vTaskDelete */ /*-----------------------------------------------------------*/ static void prvResetNextTaskUnblockTime( void ) { - 8004f48: b480 push {r7} - 8004f4a: b083 sub sp, #12 - 8004f4c: af00 add r7, sp, #0 + 8004f84: b480 push {r7} + 8004f86: b083 sub sp, #12 + 8004f88: af00 add r7, sp, #0 TCB_t *pxTCB; if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 8004f4e: 4b0c ldr r3, [pc, #48] ; (8004f80 ) - 8004f50: 681b ldr r3, [r3, #0] - 8004f52: 681b ldr r3, [r3, #0] - 8004f54: 2b00 cmp r3, #0 - 8004f56: d104 bne.n 8004f62 + 8004f8a: 4b0c ldr r3, [pc, #48] ; (8004fbc ) + 8004f8c: 681b ldr r3, [r3, #0] + 8004f8e: 681b ldr r3, [r3, #0] + 8004f90: 2b00 cmp r3, #0 + 8004f92: d104 bne.n 8004f9e { /* The new current delayed list is empty. Set xNextTaskUnblockTime to the maximum possible value so it is extremely unlikely that the if( xTickCount >= xNextTaskUnblockTime ) test will pass until there is an item in the delayed list. */ xNextTaskUnblockTime = portMAX_DELAY; - 8004f58: 4b0a ldr r3, [pc, #40] ; (8004f84 ) - 8004f5a: f04f 32ff mov.w r2, #4294967295 - 8004f5e: 601a str r2, [r3, #0] + 8004f94: 4b0a ldr r3, [pc, #40] ; (8004fc0 ) + 8004f96: f04f 32ff mov.w r2, #4294967295 + 8004f9a: 601a str r2, [r3, #0] which the task at the head of the delayed list should be removed from the Blocked state. */ ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); } } - 8004f60: e008 b.n 8004f74 + 8004f9c: e008 b.n 8004fb0 ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004f62: 4b07 ldr r3, [pc, #28] ; (8004f80 ) - 8004f64: 681b ldr r3, [r3, #0] - 8004f66: 68db ldr r3, [r3, #12] - 8004f68: 68db ldr r3, [r3, #12] - 8004f6a: 607b str r3, [r7, #4] + 8004f9e: 4b07 ldr r3, [pc, #28] ; (8004fbc ) + 8004fa0: 681b ldr r3, [r3, #0] + 8004fa2: 68db ldr r3, [r3, #12] + 8004fa4: 68db ldr r3, [r3, #12] + 8004fa6: 607b str r3, [r7, #4] xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); - 8004f6c: 687b ldr r3, [r7, #4] - 8004f6e: 685b ldr r3, [r3, #4] - 8004f70: 4a04 ldr r2, [pc, #16] ; (8004f84 ) - 8004f72: 6013 str r3, [r2, #0] + 8004fa8: 687b ldr r3, [r7, #4] + 8004faa: 685b ldr r3, [r3, #4] + 8004fac: 4a04 ldr r2, [pc, #16] ; (8004fc0 ) + 8004fae: 6013 str r3, [r2, #0] } - 8004f74: bf00 nop - 8004f76: 370c adds r7, #12 - 8004f78: 46bd mov sp, r7 - 8004f7a: f85d 7b04 ldr.w r7, [sp], #4 - 8004f7e: 4770 bx lr - 8004f80: 20000d9c .word 0x20000d9c - 8004f84: 20000e04 .word 0x20000e04 + 8004fb0: bf00 nop + 8004fb2: 370c adds r7, #12 + 8004fb4: 46bd mov sp, r7 + 8004fb6: f85d 7b04 ldr.w r7, [sp], #4 + 8004fba: 4770 bx lr + 8004fbc: 20000d9c .word 0x20000d9c + 8004fc0: 20000e04 .word 0x20000e04 -08004f88 : +08004fc4 : /*-----------------------------------------------------------*/ #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) BaseType_t xTaskGetSchedulerState( void ) { - 8004f88: b480 push {r7} - 8004f8a: b083 sub sp, #12 - 8004f8c: af00 add r7, sp, #0 + 8004fc4: b480 push {r7} + 8004fc6: b083 sub sp, #12 + 8004fc8: af00 add r7, sp, #0 BaseType_t xReturn; if( xSchedulerRunning == pdFALSE ) - 8004f8e: 4b0b ldr r3, [pc, #44] ; (8004fbc ) - 8004f90: 681b ldr r3, [r3, #0] - 8004f92: 2b00 cmp r3, #0 - 8004f94: d102 bne.n 8004f9c + 8004fca: 4b0b ldr r3, [pc, #44] ; (8004ff8 ) + 8004fcc: 681b ldr r3, [r3, #0] + 8004fce: 2b00 cmp r3, #0 + 8004fd0: d102 bne.n 8004fd8 { xReturn = taskSCHEDULER_NOT_STARTED; - 8004f96: 2301 movs r3, #1 - 8004f98: 607b str r3, [r7, #4] - 8004f9a: e008 b.n 8004fae + 8004fd2: 2301 movs r3, #1 + 8004fd4: 607b str r3, [r7, #4] + 8004fd6: e008 b.n 8004fea } else { if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8004f9c: 4b08 ldr r3, [pc, #32] ; (8004fc0 ) - 8004f9e: 681b ldr r3, [r3, #0] - 8004fa0: 2b00 cmp r3, #0 - 8004fa2: d102 bne.n 8004faa + 8004fd8: 4b08 ldr r3, [pc, #32] ; (8004ffc ) + 8004fda: 681b ldr r3, [r3, #0] + 8004fdc: 2b00 cmp r3, #0 + 8004fde: d102 bne.n 8004fe6 { xReturn = taskSCHEDULER_RUNNING; - 8004fa4: 2302 movs r3, #2 - 8004fa6: 607b str r3, [r7, #4] - 8004fa8: e001 b.n 8004fae + 8004fe0: 2302 movs r3, #2 + 8004fe2: 607b str r3, [r7, #4] + 8004fe4: e001 b.n 8004fea } else { xReturn = taskSCHEDULER_SUSPENDED; - 8004faa: 2300 movs r3, #0 - 8004fac: 607b str r3, [r7, #4] + 8004fe6: 2300 movs r3, #0 + 8004fe8: 607b str r3, [r7, #4] } } return xReturn; - 8004fae: 687b ldr r3, [r7, #4] + 8004fea: 687b ldr r3, [r7, #4] } - 8004fb0: 4618 mov r0, r3 - 8004fb2: 370c adds r7, #12 - 8004fb4: 46bd mov sp, r7 - 8004fb6: f85d 7b04 ldr.w r7, [sp], #4 - 8004fba: 4770 bx lr - 8004fbc: 20000df0 .word 0x20000df0 - 8004fc0: 20000e0c .word 0x20000e0c + 8004fec: 4618 mov r0, r3 + 8004fee: 370c adds r7, #12 + 8004ff0: 46bd mov sp, r7 + 8004ff2: f85d 7b04 ldr.w r7, [sp], #4 + 8004ff6: 4770 bx lr + 8004ff8: 20000df0 .word 0x20000df0 + 8004ffc: 20000e0c .word 0x20000e0c -08004fc4 : +08005000 : /*-----------------------------------------------------------*/ #if ( configUSE_MUTEXES == 1 ) BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) { - 8004fc4: b580 push {r7, lr} - 8004fc6: b086 sub sp, #24 - 8004fc8: af00 add r7, sp, #0 - 8004fca: 6078 str r0, [r7, #4] + 8005000: b580 push {r7, lr} + 8005002: b086 sub sp, #24 + 8005004: af00 add r7, sp, #0 + 8005006: 6078 str r0, [r7, #4] TCB_t * const pxTCB = pxMutexHolder; - 8004fcc: 687b ldr r3, [r7, #4] - 8004fce: 613b str r3, [r7, #16] + 8005008: 687b ldr r3, [r7, #4] + 800500a: 613b str r3, [r7, #16] BaseType_t xReturn = pdFALSE; - 8004fd0: 2300 movs r3, #0 - 8004fd2: 617b str r3, [r7, #20] + 800500c: 2300 movs r3, #0 + 800500e: 617b str r3, [r7, #20] if( pxMutexHolder != NULL ) - 8004fd4: 687b ldr r3, [r7, #4] - 8004fd6: 2b00 cmp r3, #0 - 8004fd8: d056 beq.n 8005088 + 8005010: 687b ldr r3, [r7, #4] + 8005012: 2b00 cmp r3, #0 + 8005014: d056 beq.n 80050c4 { /* A task can only have an inherited priority if it holds the mutex. If the mutex is held by a task then it cannot be given from an interrupt, and if a mutex is given by the holding task then it must be the running state task. */ configASSERT( pxTCB == pxCurrentTCB ); - 8004fda: 4b2e ldr r3, [pc, #184] ; (8005094 ) - 8004fdc: 681b ldr r3, [r3, #0] - 8004fde: 693a ldr r2, [r7, #16] - 8004fe0: 429a cmp r2, r3 - 8004fe2: d00a beq.n 8004ffa + 8005016: 4b2e ldr r3, [pc, #184] ; (80050d0 ) + 8005018: 681b ldr r3, [r3, #0] + 800501a: 693a ldr r2, [r7, #16] + 800501c: 429a cmp r2, r3 + 800501e: d00a beq.n 8005036 __asm volatile - 8004fe4: f04f 0350 mov.w r3, #80 ; 0x50 - 8004fe8: f383 8811 msr BASEPRI, r3 - 8004fec: f3bf 8f6f isb sy - 8004ff0: f3bf 8f4f dsb sy - 8004ff4: 60fb str r3, [r7, #12] + 8005020: f04f 0350 mov.w r3, #80 ; 0x50 + 8005024: f383 8811 msr BASEPRI, r3 + 8005028: f3bf 8f6f isb sy + 800502c: f3bf 8f4f dsb sy + 8005030: 60fb str r3, [r7, #12] } - 8004ff6: bf00 nop - 8004ff8: e7fe b.n 8004ff8 + 8005032: bf00 nop + 8005034: e7fe b.n 8005034 configASSERT( pxTCB->uxMutexesHeld ); - 8004ffa: 693b ldr r3, [r7, #16] - 8004ffc: 6d1b ldr r3, [r3, #80] ; 0x50 - 8004ffe: 2b00 cmp r3, #0 - 8005000: d10a bne.n 8005018 + 8005036: 693b ldr r3, [r7, #16] + 8005038: 6d1b ldr r3, [r3, #80] ; 0x50 + 800503a: 2b00 cmp r3, #0 + 800503c: d10a bne.n 8005054 __asm volatile - 8005002: f04f 0350 mov.w r3, #80 ; 0x50 - 8005006: f383 8811 msr BASEPRI, r3 - 800500a: f3bf 8f6f isb sy - 800500e: f3bf 8f4f dsb sy - 8005012: 60bb str r3, [r7, #8] + 800503e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005042: f383 8811 msr BASEPRI, r3 + 8005046: f3bf 8f6f isb sy + 800504a: f3bf 8f4f dsb sy + 800504e: 60bb str r3, [r7, #8] } - 8005014: bf00 nop - 8005016: e7fe b.n 8005016 + 8005050: bf00 nop + 8005052: e7fe b.n 8005052 ( pxTCB->uxMutexesHeld )--; - 8005018: 693b ldr r3, [r7, #16] - 800501a: 6d1b ldr r3, [r3, #80] ; 0x50 - 800501c: 1e5a subs r2, r3, #1 - 800501e: 693b ldr r3, [r7, #16] - 8005020: 651a str r2, [r3, #80] ; 0x50 + 8005054: 693b ldr r3, [r7, #16] + 8005056: 6d1b ldr r3, [r3, #80] ; 0x50 + 8005058: 1e5a subs r2, r3, #1 + 800505a: 693b ldr r3, [r7, #16] + 800505c: 651a str r2, [r3, #80] ; 0x50 /* Has the holder of the mutex inherited the priority of another task? */ if( pxTCB->uxPriority != pxTCB->uxBasePriority ) - 8005022: 693b ldr r3, [r7, #16] - 8005024: 6ada ldr r2, [r3, #44] ; 0x2c - 8005026: 693b ldr r3, [r7, #16] - 8005028: 6cdb ldr r3, [r3, #76] ; 0x4c - 800502a: 429a cmp r2, r3 - 800502c: d02c beq.n 8005088 + 800505e: 693b ldr r3, [r7, #16] + 8005060: 6ada ldr r2, [r3, #44] ; 0x2c + 8005062: 693b ldr r3, [r7, #16] + 8005064: 6cdb ldr r3, [r3, #76] ; 0x4c + 8005066: 429a cmp r2, r3 + 8005068: d02c beq.n 80050c4 { /* Only disinherit if no other mutexes are held. */ if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) - 800502e: 693b ldr r3, [r7, #16] - 8005030: 6d1b ldr r3, [r3, #80] ; 0x50 - 8005032: 2b00 cmp r3, #0 - 8005034: d128 bne.n 8005088 + 800506a: 693b ldr r3, [r7, #16] + 800506c: 6d1b ldr r3, [r3, #80] ; 0x50 + 800506e: 2b00 cmp r3, #0 + 8005070: d128 bne.n 80050c4 /* A task can only have an inherited priority if it holds the mutex. If the mutex is held by a task then it cannot be given from an interrupt, and if a mutex is given by the holding task then it must be the running state task. Remove the holding task from the ready/delayed list. */ if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - 8005036: 693b ldr r3, [r7, #16] - 8005038: 3304 adds r3, #4 - 800503a: 4618 mov r0, r3 - 800503c: f7fe fc46 bl 80038cc + 8005072: 693b ldr r3, [r7, #16] + 8005074: 3304 adds r3, #4 + 8005076: 4618 mov r0, r3 + 8005078: f7fe fc46 bl 8003908 } /* Disinherit the priority before adding the task into the new ready list. */ traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); pxTCB->uxPriority = pxTCB->uxBasePriority; - 8005040: 693b ldr r3, [r7, #16] - 8005042: 6cda ldr r2, [r3, #76] ; 0x4c - 8005044: 693b ldr r3, [r7, #16] - 8005046: 62da str r2, [r3, #44] ; 0x2c + 800507c: 693b ldr r3, [r7, #16] + 800507e: 6cda ldr r2, [r3, #76] ; 0x4c + 8005080: 693b ldr r3, [r7, #16] + 8005082: 62da str r2, [r3, #44] ; 0x2c /* Reset the event list item value. It cannot be in use for any other purpose if this task is running, and it must be running to give back the mutex. */ listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8005048: 693b ldr r3, [r7, #16] - 800504a: 6adb ldr r3, [r3, #44] ; 0x2c - 800504c: f1c3 0238 rsb r2, r3, #56 ; 0x38 - 8005050: 693b ldr r3, [r7, #16] - 8005052: 619a str r2, [r3, #24] + 8005084: 693b ldr r3, [r7, #16] + 8005086: 6adb ldr r3, [r3, #44] ; 0x2c + 8005088: f1c3 0238 rsb r2, r3, #56 ; 0x38 + 800508c: 693b ldr r3, [r7, #16] + 800508e: 619a str r2, [r3, #24] prvAddTaskToReadyList( pxTCB ); - 8005054: 693b ldr r3, [r7, #16] - 8005056: 6ada ldr r2, [r3, #44] ; 0x2c - 8005058: 4b0f ldr r3, [pc, #60] ; (8005098 ) - 800505a: 681b ldr r3, [r3, #0] - 800505c: 429a cmp r2, r3 - 800505e: d903 bls.n 8005068 - 8005060: 693b ldr r3, [r7, #16] - 8005062: 6adb ldr r3, [r3, #44] ; 0x2c - 8005064: 4a0c ldr r2, [pc, #48] ; (8005098 ) - 8005066: 6013 str r3, [r2, #0] - 8005068: 693b ldr r3, [r7, #16] - 800506a: 6ada ldr r2, [r3, #44] ; 0x2c - 800506c: 4613 mov r3, r2 - 800506e: 009b lsls r3, r3, #2 - 8005070: 4413 add r3, r2 - 8005072: 009b lsls r3, r3, #2 - 8005074: 4a09 ldr r2, [pc, #36] ; (800509c ) - 8005076: 441a add r2, r3 - 8005078: 693b ldr r3, [r7, #16] - 800507a: 3304 adds r3, #4 - 800507c: 4619 mov r1, r3 - 800507e: 4610 mov r0, r2 - 8005080: f7fe fbc7 bl 8003812 + 8005090: 693b ldr r3, [r7, #16] + 8005092: 6ada ldr r2, [r3, #44] ; 0x2c + 8005094: 4b0f ldr r3, [pc, #60] ; (80050d4 ) + 8005096: 681b ldr r3, [r3, #0] + 8005098: 429a cmp r2, r3 + 800509a: d903 bls.n 80050a4 + 800509c: 693b ldr r3, [r7, #16] + 800509e: 6adb ldr r3, [r3, #44] ; 0x2c + 80050a0: 4a0c ldr r2, [pc, #48] ; (80050d4 ) + 80050a2: 6013 str r3, [r2, #0] + 80050a4: 693b ldr r3, [r7, #16] + 80050a6: 6ada ldr r2, [r3, #44] ; 0x2c + 80050a8: 4613 mov r3, r2 + 80050aa: 009b lsls r3, r3, #2 + 80050ac: 4413 add r3, r2 + 80050ae: 009b lsls r3, r3, #2 + 80050b0: 4a09 ldr r2, [pc, #36] ; (80050d8 ) + 80050b2: 441a add r2, r3 + 80050b4: 693b ldr r3, [r7, #16] + 80050b6: 3304 adds r3, #4 + 80050b8: 4619 mov r1, r3 + 80050ba: 4610 mov r0, r2 + 80050bc: f7fe fbc7 bl 800384e in an order different to that in which they were taken. If a context switch did not occur when the first mutex was returned, even if a task was waiting on it, then a context switch should occur when the last mutex is returned whether a task is waiting on it or not. */ xReturn = pdTRUE; - 8005084: 2301 movs r3, #1 - 8005086: 617b str r3, [r7, #20] + 80050c0: 2301 movs r3, #1 + 80050c2: 617b str r3, [r7, #20] else { mtCOVERAGE_TEST_MARKER(); } return xReturn; - 8005088: 697b ldr r3, [r7, #20] + 80050c4: 697b ldr r3, [r7, #20] } - 800508a: 4618 mov r0, r3 - 800508c: 3718 adds r7, #24 - 800508e: 46bd mov sp, r7 - 8005090: bd80 pop {r7, pc} - 8005092: bf00 nop - 8005094: 20000910 .word 0x20000910 - 8005098: 20000dec .word 0x20000dec - 800509c: 20000914 .word 0x20000914 + 80050c6: 4618 mov r0, r3 + 80050c8: 3718 adds r7, #24 + 80050ca: 46bd mov sp, r7 + 80050cc: bd80 pop {r7, pc} + 80050ce: bf00 nop + 80050d0: 20000910 .word 0x20000910 + 80050d4: 20000dec .word 0x20000dec + 80050d8: 20000914 .word 0x20000914 -080050a0 : +080050dc : #endif /*-----------------------------------------------------------*/ static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) { - 80050a0: b580 push {r7, lr} - 80050a2: b084 sub sp, #16 - 80050a4: af00 add r7, sp, #0 - 80050a6: 6078 str r0, [r7, #4] - 80050a8: 6039 str r1, [r7, #0] + 80050dc: b580 push {r7, lr} + 80050de: b084 sub sp, #16 + 80050e0: af00 add r7, sp, #0 + 80050e2: 6078 str r0, [r7, #4] + 80050e4: 6039 str r1, [r7, #0] TickType_t xTimeToWake; const TickType_t xConstTickCount = xTickCount; - 80050aa: 4b21 ldr r3, [pc, #132] ; (8005130 ) - 80050ac: 681b ldr r3, [r3, #0] - 80050ae: 60fb str r3, [r7, #12] + 80050e6: 4b21 ldr r3, [pc, #132] ; (800516c ) + 80050e8: 681b ldr r3, [r3, #0] + 80050ea: 60fb str r3, [r7, #12] } #endif /* Remove the task from the ready list before adding it to the blocked list as the same list item is used for both lists. */ if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - 80050b0: 4b20 ldr r3, [pc, #128] ; (8005134 ) - 80050b2: 681b ldr r3, [r3, #0] - 80050b4: 3304 adds r3, #4 - 80050b6: 4618 mov r0, r3 - 80050b8: f7fe fc08 bl 80038cc + 80050ec: 4b20 ldr r3, [pc, #128] ; (8005170 ) + 80050ee: 681b ldr r3, [r3, #0] + 80050f0: 3304 adds r3, #4 + 80050f2: 4618 mov r0, r3 + 80050f4: f7fe fc08 bl 8003908 mtCOVERAGE_TEST_MARKER(); } #if ( INCLUDE_vTaskSuspend == 1 ) { if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) - 80050bc: 687b ldr r3, [r7, #4] - 80050be: f1b3 3fff cmp.w r3, #4294967295 - 80050c2: d10a bne.n 80050da - 80050c4: 683b ldr r3, [r7, #0] - 80050c6: 2b00 cmp r3, #0 - 80050c8: d007 beq.n 80050da + 80050f8: 687b ldr r3, [r7, #4] + 80050fa: f1b3 3fff cmp.w r3, #4294967295 + 80050fe: d10a bne.n 8005116 + 8005100: 683b ldr r3, [r7, #0] + 8005102: 2b00 cmp r3, #0 + 8005104: d007 beq.n 8005116 { /* Add the task to the suspended task list instead of a delayed task list to ensure it is not woken by a timing event. It will block indefinitely. */ vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 80050ca: 4b1a ldr r3, [pc, #104] ; (8005134 ) - 80050cc: 681b ldr r3, [r3, #0] - 80050ce: 3304 adds r3, #4 - 80050d0: 4619 mov r1, r3 - 80050d2: 4819 ldr r0, [pc, #100] ; (8005138 ) - 80050d4: f7fe fb9d bl 8003812 + 8005106: 4b1a ldr r3, [pc, #104] ; (8005170 ) + 8005108: 681b ldr r3, [r3, #0] + 800510a: 3304 adds r3, #4 + 800510c: 4619 mov r1, r3 + 800510e: 4819 ldr r0, [pc, #100] ; (8005174 ) + 8005110: f7fe fb9d bl 800384e /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ ( void ) xCanBlockIndefinitely; } #endif /* INCLUDE_vTaskSuspend */ } - 80050d8: e026 b.n 8005128 + 8005114: e026 b.n 8005164 xTimeToWake = xConstTickCount + xTicksToWait; - 80050da: 68fa ldr r2, [r7, #12] - 80050dc: 687b ldr r3, [r7, #4] - 80050de: 4413 add r3, r2 - 80050e0: 60bb str r3, [r7, #8] + 8005116: 68fa ldr r2, [r7, #12] + 8005118: 687b ldr r3, [r7, #4] + 800511a: 4413 add r3, r2 + 800511c: 60bb str r3, [r7, #8] listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - 80050e2: 4b14 ldr r3, [pc, #80] ; (8005134 ) - 80050e4: 681b ldr r3, [r3, #0] - 80050e6: 68ba ldr r2, [r7, #8] - 80050e8: 605a str r2, [r3, #4] + 800511e: 4b14 ldr r3, [pc, #80] ; (8005170 ) + 8005120: 681b ldr r3, [r3, #0] + 8005122: 68ba ldr r2, [r7, #8] + 8005124: 605a str r2, [r3, #4] if( xTimeToWake < xConstTickCount ) - 80050ea: 68ba ldr r2, [r7, #8] - 80050ec: 68fb ldr r3, [r7, #12] - 80050ee: 429a cmp r2, r3 - 80050f0: d209 bcs.n 8005106 + 8005126: 68ba ldr r2, [r7, #8] + 8005128: 68fb ldr r3, [r7, #12] + 800512a: 429a cmp r2, r3 + 800512c: d209 bcs.n 8005142 vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 80050f2: 4b12 ldr r3, [pc, #72] ; (800513c ) - 80050f4: 681a ldr r2, [r3, #0] - 80050f6: 4b0f ldr r3, [pc, #60] ; (8005134 ) - 80050f8: 681b ldr r3, [r3, #0] - 80050fa: 3304 adds r3, #4 - 80050fc: 4619 mov r1, r3 - 80050fe: 4610 mov r0, r2 - 8005100: f7fe fbab bl 800385a + 800512e: 4b12 ldr r3, [pc, #72] ; (8005178 ) + 8005130: 681a ldr r2, [r3, #0] + 8005132: 4b0f ldr r3, [pc, #60] ; (8005170 ) + 8005134: 681b ldr r3, [r3, #0] + 8005136: 3304 adds r3, #4 + 8005138: 4619 mov r1, r3 + 800513a: 4610 mov r0, r2 + 800513c: f7fe fbab bl 8003896 } - 8005104: e010 b.n 8005128 + 8005140: e010 b.n 8005164 vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 8005106: 4b0e ldr r3, [pc, #56] ; (8005140 ) - 8005108: 681a ldr r2, [r3, #0] - 800510a: 4b0a ldr r3, [pc, #40] ; (8005134 ) - 800510c: 681b ldr r3, [r3, #0] - 800510e: 3304 adds r3, #4 - 8005110: 4619 mov r1, r3 - 8005112: 4610 mov r0, r2 - 8005114: f7fe fba1 bl 800385a + 8005142: 4b0e ldr r3, [pc, #56] ; (800517c ) + 8005144: 681a ldr r2, [r3, #0] + 8005146: 4b0a ldr r3, [pc, #40] ; (8005170 ) + 8005148: 681b ldr r3, [r3, #0] + 800514a: 3304 adds r3, #4 + 800514c: 4619 mov r1, r3 + 800514e: 4610 mov r0, r2 + 8005150: f7fe fba1 bl 8003896 if( xTimeToWake < xNextTaskUnblockTime ) - 8005118: 4b0a ldr r3, [pc, #40] ; (8005144 ) - 800511a: 681b ldr r3, [r3, #0] - 800511c: 68ba ldr r2, [r7, #8] - 800511e: 429a cmp r2, r3 - 8005120: d202 bcs.n 8005128 + 8005154: 4b0a ldr r3, [pc, #40] ; (8005180 ) + 8005156: 681b ldr r3, [r3, #0] + 8005158: 68ba ldr r2, [r7, #8] + 800515a: 429a cmp r2, r3 + 800515c: d202 bcs.n 8005164 xNextTaskUnblockTime = xTimeToWake; - 8005122: 4a08 ldr r2, [pc, #32] ; (8005144 ) - 8005124: 68bb ldr r3, [r7, #8] - 8005126: 6013 str r3, [r2, #0] + 800515e: 4a08 ldr r2, [pc, #32] ; (8005180 ) + 8005160: 68bb ldr r3, [r7, #8] + 8005162: 6013 str r3, [r2, #0] } - 8005128: bf00 nop - 800512a: 3710 adds r7, #16 - 800512c: 46bd mov sp, r7 - 800512e: bd80 pop {r7, pc} - 8005130: 20000de8 .word 0x20000de8 - 8005134: 20000910 .word 0x20000910 - 8005138: 20000dd0 .word 0x20000dd0 - 800513c: 20000da0 .word 0x20000da0 - 8005140: 20000d9c .word 0x20000d9c - 8005144: 20000e04 .word 0x20000e04 + 8005164: bf00 nop + 8005166: 3710 adds r7, #16 + 8005168: 46bd mov sp, r7 + 800516a: bd80 pop {r7, pc} + 800516c: 20000de8 .word 0x20000de8 + 8005170: 20000910 .word 0x20000910 + 8005174: 20000dd0 .word 0x20000dd0 + 8005178: 20000da0 .word 0x20000da0 + 800517c: 20000d9c .word 0x20000d9c + 8005180: 20000e04 .word 0x20000e04 -08005148 : +08005184 : TimerCallbackFunction_t pxCallbackFunction, Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; /*-----------------------------------------------------------*/ BaseType_t xTimerCreateTimerTask( void ) { - 8005148: b580 push {r7, lr} - 800514a: b08a sub sp, #40 ; 0x28 - 800514c: af04 add r7, sp, #16 + 8005184: b580 push {r7, lr} + 8005186: b08a sub sp, #40 ; 0x28 + 8005188: af04 add r7, sp, #16 BaseType_t xReturn = pdFAIL; - 800514e: 2300 movs r3, #0 - 8005150: 617b str r3, [r7, #20] + 800518a: 2300 movs r3, #0 + 800518c: 617b str r3, [r7, #20] /* This function is called when the scheduler is started if configUSE_TIMERS is set to 1. Check that the infrastructure used by the timer service task has been created/initialised. If timers have already been created then the initialisation will already have been performed. */ prvCheckForValidListAndQueue(); - 8005152: f000 fb07 bl 8005764 + 800518e: f000 fb07 bl 80057a0 if( xTimerQueue != NULL ) - 8005156: 4b1c ldr r3, [pc, #112] ; (80051c8 ) - 8005158: 681b ldr r3, [r3, #0] - 800515a: 2b00 cmp r3, #0 - 800515c: d021 beq.n 80051a2 + 8005192: 4b1c ldr r3, [pc, #112] ; (8005204 ) + 8005194: 681b ldr r3, [r3, #0] + 8005196: 2b00 cmp r3, #0 + 8005198: d021 beq.n 80051de { #if( configSUPPORT_STATIC_ALLOCATION == 1 ) { StaticTask_t *pxTimerTaskTCBBuffer = NULL; - 800515e: 2300 movs r3, #0 - 8005160: 60fb str r3, [r7, #12] + 800519a: 2300 movs r3, #0 + 800519c: 60fb str r3, [r7, #12] StackType_t *pxTimerTaskStackBuffer = NULL; - 8005162: 2300 movs r3, #0 - 8005164: 60bb str r3, [r7, #8] + 800519e: 2300 movs r3, #0 + 80051a0: 60bb str r3, [r7, #8] uint32_t ulTimerTaskStackSize; vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); - 8005166: 1d3a adds r2, r7, #4 - 8005168: f107 0108 add.w r1, r7, #8 - 800516c: f107 030c add.w r3, r7, #12 - 8005170: 4618 mov r0, r3 - 8005172: f7fe fb07 bl 8003784 + 80051a2: 1d3a adds r2, r7, #4 + 80051a4: f107 0108 add.w r1, r7, #8 + 80051a8: f107 030c add.w r3, r7, #12 + 80051ac: 4618 mov r0, r3 + 80051ae: f7fe fb07 bl 80037c0 xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, - 8005176: 6879 ldr r1, [r7, #4] - 8005178: 68bb ldr r3, [r7, #8] - 800517a: 68fa ldr r2, [r7, #12] - 800517c: 9202 str r2, [sp, #8] - 800517e: 9301 str r3, [sp, #4] - 8005180: 2302 movs r3, #2 - 8005182: 9300 str r3, [sp, #0] - 8005184: 2300 movs r3, #0 - 8005186: 460a mov r2, r1 - 8005188: 4910 ldr r1, [pc, #64] ; (80051cc ) - 800518a: 4811 ldr r0, [pc, #68] ; (80051d0 ) - 800518c: f7ff f8b4 bl 80042f8 - 8005190: 4603 mov r3, r0 - 8005192: 4a10 ldr r2, [pc, #64] ; (80051d4 ) - 8005194: 6013 str r3, [r2, #0] + 80051b2: 6879 ldr r1, [r7, #4] + 80051b4: 68bb ldr r3, [r7, #8] + 80051b6: 68fa ldr r2, [r7, #12] + 80051b8: 9202 str r2, [sp, #8] + 80051ba: 9301 str r3, [sp, #4] + 80051bc: 2302 movs r3, #2 + 80051be: 9300 str r3, [sp, #0] + 80051c0: 2300 movs r3, #0 + 80051c2: 460a mov r2, r1 + 80051c4: 4910 ldr r1, [pc, #64] ; (8005208 ) + 80051c6: 4811 ldr r0, [pc, #68] ; (800520c ) + 80051c8: f7ff f8b4 bl 8004334 + 80051cc: 4603 mov r3, r0 + 80051ce: 4a10 ldr r2, [pc, #64] ; (8005210 ) + 80051d0: 6013 str r3, [r2, #0] NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, pxTimerTaskStackBuffer, pxTimerTaskTCBBuffer ); if( xTimerTaskHandle != NULL ) - 8005196: 4b0f ldr r3, [pc, #60] ; (80051d4 ) - 8005198: 681b ldr r3, [r3, #0] - 800519a: 2b00 cmp r3, #0 - 800519c: d001 beq.n 80051a2 + 80051d2: 4b0f ldr r3, [pc, #60] ; (8005210 ) + 80051d4: 681b ldr r3, [r3, #0] + 80051d6: 2b00 cmp r3, #0 + 80051d8: d001 beq.n 80051de { xReturn = pdPASS; - 800519e: 2301 movs r3, #1 - 80051a0: 617b str r3, [r7, #20] + 80051da: 2301 movs r3, #1 + 80051dc: 617b str r3, [r7, #20] else { mtCOVERAGE_TEST_MARKER(); } configASSERT( xReturn ); - 80051a2: 697b ldr r3, [r7, #20] - 80051a4: 2b00 cmp r3, #0 - 80051a6: d10a bne.n 80051be + 80051de: 697b ldr r3, [r7, #20] + 80051e0: 2b00 cmp r3, #0 + 80051e2: d10a bne.n 80051fa __asm volatile - 80051a8: f04f 0350 mov.w r3, #80 ; 0x50 - 80051ac: f383 8811 msr BASEPRI, r3 - 80051b0: f3bf 8f6f isb sy - 80051b4: f3bf 8f4f dsb sy - 80051b8: 613b str r3, [r7, #16] + 80051e4: f04f 0350 mov.w r3, #80 ; 0x50 + 80051e8: f383 8811 msr BASEPRI, r3 + 80051ec: f3bf 8f6f isb sy + 80051f0: f3bf 8f4f dsb sy + 80051f4: 613b str r3, [r7, #16] } - 80051ba: bf00 nop - 80051bc: e7fe b.n 80051bc + 80051f6: bf00 nop + 80051f8: e7fe b.n 80051f8 return xReturn; - 80051be: 697b ldr r3, [r7, #20] + 80051fa: 697b ldr r3, [r7, #20] } - 80051c0: 4618 mov r0, r3 - 80051c2: 3718 adds r7, #24 - 80051c4: 46bd mov sp, r7 - 80051c6: bd80 pop {r7, pc} - 80051c8: 20000e40 .word 0x20000e40 - 80051cc: 08006284 .word 0x08006284 - 80051d0: 0800530d .word 0x0800530d - 80051d4: 20000e44 .word 0x20000e44 + 80051fc: 4618 mov r0, r3 + 80051fe: 3718 adds r7, #24 + 8005200: 46bd mov sp, r7 + 8005202: bd80 pop {r7, pc} + 8005204: 20000e40 .word 0x20000e40 + 8005208: 080062b4 .word 0x080062b4 + 800520c: 08005349 .word 0x08005349 + 8005210: 20000e44 .word 0x20000e44 -080051d8 : +08005214 : } } /*-----------------------------------------------------------*/ BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) { - 80051d8: b580 push {r7, lr} - 80051da: b08a sub sp, #40 ; 0x28 - 80051dc: af00 add r7, sp, #0 - 80051de: 60f8 str r0, [r7, #12] - 80051e0: 60b9 str r1, [r7, #8] - 80051e2: 607a str r2, [r7, #4] - 80051e4: 603b str r3, [r7, #0] + 8005214: b580 push {r7, lr} + 8005216: b08a sub sp, #40 ; 0x28 + 8005218: af00 add r7, sp, #0 + 800521a: 60f8 str r0, [r7, #12] + 800521c: 60b9 str r1, [r7, #8] + 800521e: 607a str r2, [r7, #4] + 8005220: 603b str r3, [r7, #0] BaseType_t xReturn = pdFAIL; - 80051e6: 2300 movs r3, #0 - 80051e8: 627b str r3, [r7, #36] ; 0x24 + 8005222: 2300 movs r3, #0 + 8005224: 627b str r3, [r7, #36] ; 0x24 DaemonTaskMessage_t xMessage; configASSERT( xTimer ); - 80051ea: 68fb ldr r3, [r7, #12] - 80051ec: 2b00 cmp r3, #0 - 80051ee: d10a bne.n 8005206 + 8005226: 68fb ldr r3, [r7, #12] + 8005228: 2b00 cmp r3, #0 + 800522a: d10a bne.n 8005242 __asm volatile - 80051f0: f04f 0350 mov.w r3, #80 ; 0x50 - 80051f4: f383 8811 msr BASEPRI, r3 - 80051f8: f3bf 8f6f isb sy - 80051fc: f3bf 8f4f dsb sy - 8005200: 623b str r3, [r7, #32] + 800522c: f04f 0350 mov.w r3, #80 ; 0x50 + 8005230: f383 8811 msr BASEPRI, r3 + 8005234: f3bf 8f6f isb sy + 8005238: f3bf 8f4f dsb sy + 800523c: 623b str r3, [r7, #32] } - 8005202: bf00 nop - 8005204: e7fe b.n 8005204 + 800523e: bf00 nop + 8005240: e7fe b.n 8005240 /* Send a message to the timer service task to perform a particular action on a particular timer definition. */ if( xTimerQueue != NULL ) - 8005206: 4b1a ldr r3, [pc, #104] ; (8005270 ) - 8005208: 681b ldr r3, [r3, #0] - 800520a: 2b00 cmp r3, #0 - 800520c: d02a beq.n 8005264 + 8005242: 4b1a ldr r3, [pc, #104] ; (80052ac ) + 8005244: 681b ldr r3, [r3, #0] + 8005246: 2b00 cmp r3, #0 + 8005248: d02a beq.n 80052a0 { /* Send a command to the timer service task to start the xTimer timer. */ xMessage.xMessageID = xCommandID; - 800520e: 68bb ldr r3, [r7, #8] - 8005210: 613b str r3, [r7, #16] + 800524a: 68bb ldr r3, [r7, #8] + 800524c: 613b str r3, [r7, #16] xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; - 8005212: 687b ldr r3, [r7, #4] - 8005214: 617b str r3, [r7, #20] + 800524e: 687b ldr r3, [r7, #4] + 8005250: 617b str r3, [r7, #20] xMessage.u.xTimerParameters.pxTimer = xTimer; - 8005216: 68fb ldr r3, [r7, #12] - 8005218: 61bb str r3, [r7, #24] + 8005252: 68fb ldr r3, [r7, #12] + 8005254: 61bb str r3, [r7, #24] if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) - 800521a: 68bb ldr r3, [r7, #8] - 800521c: 2b05 cmp r3, #5 - 800521e: dc18 bgt.n 8005252 + 8005256: 68bb ldr r3, [r7, #8] + 8005258: 2b05 cmp r3, #5 + 800525a: dc18 bgt.n 800528e { if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) - 8005220: f7ff feb2 bl 8004f88 - 8005224: 4603 mov r3, r0 - 8005226: 2b02 cmp r3, #2 - 8005228: d109 bne.n 800523e + 800525c: f7ff feb2 bl 8004fc4 + 8005260: 4603 mov r3, r0 + 8005262: 2b02 cmp r3, #2 + 8005264: d109 bne.n 800527a { xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); - 800522a: 4b11 ldr r3, [pc, #68] ; (8005270 ) - 800522c: 6818 ldr r0, [r3, #0] - 800522e: f107 0110 add.w r1, r7, #16 - 8005232: 2300 movs r3, #0 - 8005234: 6b3a ldr r2, [r7, #48] ; 0x30 - 8005236: f7fe fc77 bl 8003b28 - 800523a: 6278 str r0, [r7, #36] ; 0x24 - 800523c: e012 b.n 8005264 + 8005266: 4b11 ldr r3, [pc, #68] ; (80052ac ) + 8005268: 6818 ldr r0, [r3, #0] + 800526a: f107 0110 add.w r1, r7, #16 + 800526e: 2300 movs r3, #0 + 8005270: 6b3a ldr r2, [r7, #48] ; 0x30 + 8005272: f7fe fc77 bl 8003b64 + 8005276: 6278 str r0, [r7, #36] ; 0x24 + 8005278: e012 b.n 80052a0 } else { xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); - 800523e: 4b0c ldr r3, [pc, #48] ; (8005270 ) - 8005240: 6818 ldr r0, [r3, #0] - 8005242: f107 0110 add.w r1, r7, #16 - 8005246: 2300 movs r3, #0 - 8005248: 2200 movs r2, #0 - 800524a: f7fe fc6d bl 8003b28 - 800524e: 6278 str r0, [r7, #36] ; 0x24 - 8005250: e008 b.n 8005264 + 800527a: 4b0c ldr r3, [pc, #48] ; (80052ac ) + 800527c: 6818 ldr r0, [r3, #0] + 800527e: f107 0110 add.w r1, r7, #16 + 8005282: 2300 movs r3, #0 + 8005284: 2200 movs r2, #0 + 8005286: f7fe fc6d bl 8003b64 + 800528a: 6278 str r0, [r7, #36] ; 0x24 + 800528c: e008 b.n 80052a0 } } else { xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); - 8005252: 4b07 ldr r3, [pc, #28] ; (8005270 ) - 8005254: 6818 ldr r0, [r3, #0] - 8005256: f107 0110 add.w r1, r7, #16 - 800525a: 2300 movs r3, #0 - 800525c: 683a ldr r2, [r7, #0] - 800525e: f7fe fd61 bl 8003d24 - 8005262: 6278 str r0, [r7, #36] ; 0x24 + 800528e: 4b07 ldr r3, [pc, #28] ; (80052ac ) + 8005290: 6818 ldr r0, [r3, #0] + 8005292: f107 0110 add.w r1, r7, #16 + 8005296: 2300 movs r3, #0 + 8005298: 683a ldr r2, [r7, #0] + 800529a: f7fe fd61 bl 8003d60 + 800529e: 6278 str r0, [r7, #36] ; 0x24 else { mtCOVERAGE_TEST_MARKER(); } return xReturn; - 8005264: 6a7b ldr r3, [r7, #36] ; 0x24 + 80052a0: 6a7b ldr r3, [r7, #36] ; 0x24 } - 8005266: 4618 mov r0, r3 - 8005268: 3728 adds r7, #40 ; 0x28 - 800526a: 46bd mov sp, r7 - 800526c: bd80 pop {r7, pc} - 800526e: bf00 nop - 8005270: 20000e40 .word 0x20000e40 + 80052a2: 4618 mov r0, r3 + 80052a4: 3728 adds r7, #40 ; 0x28 + 80052a6: 46bd mov sp, r7 + 80052a8: bd80 pop {r7, pc} + 80052aa: bf00 nop + 80052ac: 20000e40 .word 0x20000e40 -08005274 : +080052b0 : return pxTimer->pcTimerName; } /*-----------------------------------------------------------*/ static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) { - 8005274: b580 push {r7, lr} - 8005276: b088 sub sp, #32 - 8005278: af02 add r7, sp, #8 - 800527a: 6078 str r0, [r7, #4] - 800527c: 6039 str r1, [r7, #0] + 80052b0: b580 push {r7, lr} + 80052b2: b088 sub sp, #32 + 80052b4: af02 add r7, sp, #8 + 80052b6: 6078 str r0, [r7, #4] + 80052b8: 6039 str r1, [r7, #0] BaseType_t xResult; Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 800527e: 4b22 ldr r3, [pc, #136] ; (8005308 ) - 8005280: 681b ldr r3, [r3, #0] - 8005282: 68db ldr r3, [r3, #12] - 8005284: 68db ldr r3, [r3, #12] - 8005286: 617b str r3, [r7, #20] + 80052ba: 4b22 ldr r3, [pc, #136] ; (8005344 ) + 80052bc: 681b ldr r3, [r3, #0] + 80052be: 68db ldr r3, [r3, #12] + 80052c0: 68db ldr r3, [r3, #12] + 80052c2: 617b str r3, [r7, #20] /* Remove the timer from the list of active timers. A check has already been performed to ensure the list is not empty. */ ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 8005288: 697b ldr r3, [r7, #20] - 800528a: 3304 adds r3, #4 - 800528c: 4618 mov r0, r3 - 800528e: f7fe fb1d bl 80038cc + 80052c4: 697b ldr r3, [r7, #20] + 80052c6: 3304 adds r3, #4 + 80052c8: 4618 mov r0, r3 + 80052ca: f7fe fb1d bl 8003908 traceTIMER_EXPIRED( pxTimer ); /* If the timer is an auto-reload timer then calculate the next expiry time and re-insert the timer in the list of active timers. */ if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 8005292: 697b ldr r3, [r7, #20] - 8005294: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8005298: f003 0304 and.w r3, r3, #4 - 800529c: 2b00 cmp r3, #0 - 800529e: d022 beq.n 80052e6 + 80052ce: 697b ldr r3, [r7, #20] + 80052d0: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 80052d4: f003 0304 and.w r3, r3, #4 + 80052d8: 2b00 cmp r3, #0 + 80052da: d022 beq.n 8005322 { /* The timer is inserted into a list using a time relative to anything other than the current time. It will therefore be inserted into the correct list relative to the time this task thinks it is now. */ if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) - 80052a0: 697b ldr r3, [r7, #20] - 80052a2: 699a ldr r2, [r3, #24] - 80052a4: 687b ldr r3, [r7, #4] - 80052a6: 18d1 adds r1, r2, r3 - 80052a8: 687b ldr r3, [r7, #4] - 80052aa: 683a ldr r2, [r7, #0] - 80052ac: 6978 ldr r0, [r7, #20] - 80052ae: f000 f8d1 bl 8005454 - 80052b2: 4603 mov r3, r0 - 80052b4: 2b00 cmp r3, #0 - 80052b6: d01f beq.n 80052f8 + 80052dc: 697b ldr r3, [r7, #20] + 80052de: 699a ldr r2, [r3, #24] + 80052e0: 687b ldr r3, [r7, #4] + 80052e2: 18d1 adds r1, r2, r3 + 80052e4: 687b ldr r3, [r7, #4] + 80052e6: 683a ldr r2, [r7, #0] + 80052e8: 6978 ldr r0, [r7, #20] + 80052ea: f000 f8d1 bl 8005490 + 80052ee: 4603 mov r3, r0 + 80052f0: 2b00 cmp r3, #0 + 80052f2: d01f beq.n 8005334 { /* The timer expired before it was added to the active timer list. Reload it now. */ xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - 80052b8: 2300 movs r3, #0 - 80052ba: 9300 str r3, [sp, #0] - 80052bc: 2300 movs r3, #0 - 80052be: 687a ldr r2, [r7, #4] - 80052c0: 2100 movs r1, #0 - 80052c2: 6978 ldr r0, [r7, #20] - 80052c4: f7ff ff88 bl 80051d8 - 80052c8: 6138 str r0, [r7, #16] + 80052f4: 2300 movs r3, #0 + 80052f6: 9300 str r3, [sp, #0] + 80052f8: 2300 movs r3, #0 + 80052fa: 687a ldr r2, [r7, #4] + 80052fc: 2100 movs r1, #0 + 80052fe: 6978 ldr r0, [r7, #20] + 8005300: f7ff ff88 bl 8005214 + 8005304: 6138 str r0, [r7, #16] configASSERT( xResult ); - 80052ca: 693b ldr r3, [r7, #16] - 80052cc: 2b00 cmp r3, #0 - 80052ce: d113 bne.n 80052f8 + 8005306: 693b ldr r3, [r7, #16] + 8005308: 2b00 cmp r3, #0 + 800530a: d113 bne.n 8005334 __asm volatile - 80052d0: f04f 0350 mov.w r3, #80 ; 0x50 - 80052d4: f383 8811 msr BASEPRI, r3 - 80052d8: f3bf 8f6f isb sy - 80052dc: f3bf 8f4f dsb sy - 80052e0: 60fb str r3, [r7, #12] + 800530c: f04f 0350 mov.w r3, #80 ; 0x50 + 8005310: f383 8811 msr BASEPRI, r3 + 8005314: f3bf 8f6f isb sy + 8005318: f3bf 8f4f dsb sy + 800531c: 60fb str r3, [r7, #12] } - 80052e2: bf00 nop - 80052e4: e7fe b.n 80052e4 + 800531e: bf00 nop + 8005320: e7fe b.n 8005320 mtCOVERAGE_TEST_MARKER(); } } else { pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 80052e6: 697b ldr r3, [r7, #20] - 80052e8: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80052ec: f023 0301 bic.w r3, r3, #1 - 80052f0: b2da uxtb r2, r3 - 80052f2: 697b ldr r3, [r7, #20] - 80052f4: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 8005322: 697b ldr r3, [r7, #20] + 8005324: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8005328: f023 0301 bic.w r3, r3, #1 + 800532c: b2da uxtb r2, r3 + 800532e: 697b ldr r3, [r7, #20] + 8005330: f883 2028 strb.w r2, [r3, #40] ; 0x28 mtCOVERAGE_TEST_MARKER(); } /* Call the timer callback. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 80052f8: 697b ldr r3, [r7, #20] - 80052fa: 6a1b ldr r3, [r3, #32] - 80052fc: 6978 ldr r0, [r7, #20] - 80052fe: 4798 blx r3 + 8005334: 697b ldr r3, [r7, #20] + 8005336: 6a1b ldr r3, [r3, #32] + 8005338: 6978 ldr r0, [r7, #20] + 800533a: 4798 blx r3 } - 8005300: bf00 nop - 8005302: 3718 adds r7, #24 - 8005304: 46bd mov sp, r7 - 8005306: bd80 pop {r7, pc} - 8005308: 20000e38 .word 0x20000e38 + 800533c: bf00 nop + 800533e: 3718 adds r7, #24 + 8005340: 46bd mov sp, r7 + 8005342: bd80 pop {r7, pc} + 8005344: 20000e38 .word 0x20000e38 -0800530c : +08005348 : /*-----------------------------------------------------------*/ static portTASK_FUNCTION( prvTimerTask, pvParameters ) { - 800530c: b580 push {r7, lr} - 800530e: b084 sub sp, #16 - 8005310: af00 add r7, sp, #0 - 8005312: 6078 str r0, [r7, #4] + 8005348: b580 push {r7, lr} + 800534a: b084 sub sp, #16 + 800534c: af00 add r7, sp, #0 + 800534e: 6078 str r0, [r7, #4] for( ;; ) { /* Query the timers list to see if it contains any timers, and if so, obtain the time at which the next timer will expire. */ xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); - 8005314: f107 0308 add.w r3, r7, #8 - 8005318: 4618 mov r0, r3 - 800531a: f000 f857 bl 80053cc - 800531e: 60f8 str r0, [r7, #12] + 8005350: f107 0308 add.w r3, r7, #8 + 8005354: 4618 mov r0, r3 + 8005356: f000 f857 bl 8005408 + 800535a: 60f8 str r0, [r7, #12] /* If a timer has expired, process it. Otherwise, block this task until either a timer does expire, or a command is received. */ prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); - 8005320: 68bb ldr r3, [r7, #8] - 8005322: 4619 mov r1, r3 - 8005324: 68f8 ldr r0, [r7, #12] - 8005326: f000 f803 bl 8005330 + 800535c: 68bb ldr r3, [r7, #8] + 800535e: 4619 mov r1, r3 + 8005360: 68f8 ldr r0, [r7, #12] + 8005362: f000 f803 bl 800536c /* Empty the command queue. */ prvProcessReceivedCommands(); - 800532a: f000 f8d5 bl 80054d8 + 8005366: f000 f8d5 bl 8005514 xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); - 800532e: e7f1 b.n 8005314 + 800536a: e7f1 b.n 8005350 -08005330 : +0800536c : } } /*-----------------------------------------------------------*/ static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) { - 8005330: b580 push {r7, lr} - 8005332: b084 sub sp, #16 - 8005334: af00 add r7, sp, #0 - 8005336: 6078 str r0, [r7, #4] - 8005338: 6039 str r1, [r7, #0] + 800536c: b580 push {r7, lr} + 800536e: b084 sub sp, #16 + 8005370: af00 add r7, sp, #0 + 8005372: 6078 str r0, [r7, #4] + 8005374: 6039 str r1, [r7, #0] TickType_t xTimeNow; BaseType_t xTimerListsWereSwitched; vTaskSuspendAll(); - 800533a: f7ff fa39 bl 80047b0 + 8005376: f7ff fa39 bl 80047ec /* Obtain the time now to make an assessment as to whether the timer has expired or not. If obtaining the time causes the lists to switch then don't process this timer as any timers that remained in the list when the lists were switched will have been processed within the prvSampleTimeNow() function. */ xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - 800533e: f107 0308 add.w r3, r7, #8 - 8005342: 4618 mov r0, r3 - 8005344: f000 f866 bl 8005414 - 8005348: 60f8 str r0, [r7, #12] + 800537a: f107 0308 add.w r3, r7, #8 + 800537e: 4618 mov r0, r3 + 8005380: f000 f866 bl 8005450 + 8005384: 60f8 str r0, [r7, #12] if( xTimerListsWereSwitched == pdFALSE ) - 800534a: 68bb ldr r3, [r7, #8] - 800534c: 2b00 cmp r3, #0 - 800534e: d130 bne.n 80053b2 + 8005386: 68bb ldr r3, [r7, #8] + 8005388: 2b00 cmp r3, #0 + 800538a: d130 bne.n 80053ee { /* The tick count has not overflowed, has the timer expired? */ if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) - 8005350: 683b ldr r3, [r7, #0] - 8005352: 2b00 cmp r3, #0 - 8005354: d10a bne.n 800536c - 8005356: 687a ldr r2, [r7, #4] - 8005358: 68fb ldr r3, [r7, #12] - 800535a: 429a cmp r2, r3 - 800535c: d806 bhi.n 800536c + 800538c: 683b ldr r3, [r7, #0] + 800538e: 2b00 cmp r3, #0 + 8005390: d10a bne.n 80053a8 + 8005392: 687a ldr r2, [r7, #4] + 8005394: 68fb ldr r3, [r7, #12] + 8005396: 429a cmp r2, r3 + 8005398: d806 bhi.n 80053a8 { ( void ) xTaskResumeAll(); - 800535e: f7ff fa35 bl 80047cc + 800539a: f7ff fa35 bl 8004808 prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); - 8005362: 68f9 ldr r1, [r7, #12] - 8005364: 6878 ldr r0, [r7, #4] - 8005366: f7ff ff85 bl 8005274 + 800539e: 68f9 ldr r1, [r7, #12] + 80053a0: 6878 ldr r0, [r7, #4] + 80053a2: f7ff ff85 bl 80052b0 else { ( void ) xTaskResumeAll(); } } } - 800536a: e024 b.n 80053b6 + 80053a6: e024 b.n 80053f2 if( xListWasEmpty != pdFALSE ) - 800536c: 683b ldr r3, [r7, #0] - 800536e: 2b00 cmp r3, #0 - 8005370: d008 beq.n 8005384 + 80053a8: 683b ldr r3, [r7, #0] + 80053aa: 2b00 cmp r3, #0 + 80053ac: d008 beq.n 80053c0 xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); - 8005372: 4b13 ldr r3, [pc, #76] ; (80053c0 ) - 8005374: 681b ldr r3, [r3, #0] - 8005376: 681b ldr r3, [r3, #0] - 8005378: 2b00 cmp r3, #0 - 800537a: d101 bne.n 8005380 - 800537c: 2301 movs r3, #1 - 800537e: e000 b.n 8005382 - 8005380: 2300 movs r3, #0 - 8005382: 603b str r3, [r7, #0] + 80053ae: 4b13 ldr r3, [pc, #76] ; (80053fc ) + 80053b0: 681b ldr r3, [r3, #0] + 80053b2: 681b ldr r3, [r3, #0] + 80053b4: 2b00 cmp r3, #0 + 80053b6: d101 bne.n 80053bc + 80053b8: 2301 movs r3, #1 + 80053ba: e000 b.n 80053be + 80053bc: 2300 movs r3, #0 + 80053be: 603b str r3, [r7, #0] vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); - 8005384: 4b0f ldr r3, [pc, #60] ; (80053c4 ) - 8005386: 6818 ldr r0, [r3, #0] - 8005388: 687a ldr r2, [r7, #4] - 800538a: 68fb ldr r3, [r7, #12] - 800538c: 1ad3 subs r3, r2, r3 - 800538e: 683a ldr r2, [r7, #0] - 8005390: 4619 mov r1, r3 - 8005392: f7fe ff7d bl 8004290 + 80053c0: 4b0f ldr r3, [pc, #60] ; (8005400 ) + 80053c2: 6818 ldr r0, [r3, #0] + 80053c4: 687a ldr r2, [r7, #4] + 80053c6: 68fb ldr r3, [r7, #12] + 80053c8: 1ad3 subs r3, r2, r3 + 80053ca: 683a ldr r2, [r7, #0] + 80053cc: 4619 mov r1, r3 + 80053ce: f7fe ff7d bl 80042cc if( xTaskResumeAll() == pdFALSE ) - 8005396: f7ff fa19 bl 80047cc - 800539a: 4603 mov r3, r0 - 800539c: 2b00 cmp r3, #0 - 800539e: d10a bne.n 80053b6 + 80053d2: f7ff fa19 bl 8004808 + 80053d6: 4603 mov r3, r0 + 80053d8: 2b00 cmp r3, #0 + 80053da: d10a bne.n 80053f2 portYIELD_WITHIN_API(); - 80053a0: 4b09 ldr r3, [pc, #36] ; (80053c8 ) - 80053a2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80053a6: 601a str r2, [r3, #0] - 80053a8: f3bf 8f4f dsb sy - 80053ac: f3bf 8f6f isb sy + 80053dc: 4b09 ldr r3, [pc, #36] ; (8005404 ) + 80053de: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80053e2: 601a str r2, [r3, #0] + 80053e4: f3bf 8f4f dsb sy + 80053e8: f3bf 8f6f isb sy } - 80053b0: e001 b.n 80053b6 + 80053ec: e001 b.n 80053f2 ( void ) xTaskResumeAll(); - 80053b2: f7ff fa0b bl 80047cc + 80053ee: f7ff fa0b bl 8004808 } - 80053b6: bf00 nop - 80053b8: 3710 adds r7, #16 - 80053ba: 46bd mov sp, r7 - 80053bc: bd80 pop {r7, pc} - 80053be: bf00 nop - 80053c0: 20000e3c .word 0x20000e3c - 80053c4: 20000e40 .word 0x20000e40 - 80053c8: e000ed04 .word 0xe000ed04 + 80053f2: bf00 nop + 80053f4: 3710 adds r7, #16 + 80053f6: 46bd mov sp, r7 + 80053f8: bd80 pop {r7, pc} + 80053fa: bf00 nop + 80053fc: 20000e3c .word 0x20000e3c + 8005400: 20000e40 .word 0x20000e40 + 8005404: e000ed04 .word 0xe000ed04 -080053cc : +08005408 : /*-----------------------------------------------------------*/ static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) { - 80053cc: b480 push {r7} - 80053ce: b085 sub sp, #20 - 80053d0: af00 add r7, sp, #0 - 80053d2: 6078 str r0, [r7, #4] + 8005408: b480 push {r7} + 800540a: b085 sub sp, #20 + 800540c: af00 add r7, sp, #0 + 800540e: 6078 str r0, [r7, #4] the timer with the nearest expiry time will expire. If there are no active timers then just set the next expire time to 0. That will cause this task to unblock when the tick count overflows, at which point the timer lists will be switched and the next expiry time can be re-assessed. */ *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); - 80053d4: 4b0e ldr r3, [pc, #56] ; (8005410 ) - 80053d6: 681b ldr r3, [r3, #0] - 80053d8: 681b ldr r3, [r3, #0] - 80053da: 2b00 cmp r3, #0 - 80053dc: d101 bne.n 80053e2 - 80053de: 2201 movs r2, #1 - 80053e0: e000 b.n 80053e4 - 80053e2: 2200 movs r2, #0 - 80053e4: 687b ldr r3, [r7, #4] - 80053e6: 601a str r2, [r3, #0] + 8005410: 4b0e ldr r3, [pc, #56] ; (800544c ) + 8005412: 681b ldr r3, [r3, #0] + 8005414: 681b ldr r3, [r3, #0] + 8005416: 2b00 cmp r3, #0 + 8005418: d101 bne.n 800541e + 800541a: 2201 movs r2, #1 + 800541c: e000 b.n 8005420 + 800541e: 2200 movs r2, #0 + 8005420: 687b ldr r3, [r7, #4] + 8005422: 601a str r2, [r3, #0] if( *pxListWasEmpty == pdFALSE ) - 80053e8: 687b ldr r3, [r7, #4] - 80053ea: 681b ldr r3, [r3, #0] - 80053ec: 2b00 cmp r3, #0 - 80053ee: d105 bne.n 80053fc + 8005424: 687b ldr r3, [r7, #4] + 8005426: 681b ldr r3, [r3, #0] + 8005428: 2b00 cmp r3, #0 + 800542a: d105 bne.n 8005438 { xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - 80053f0: 4b07 ldr r3, [pc, #28] ; (8005410 ) - 80053f2: 681b ldr r3, [r3, #0] - 80053f4: 68db ldr r3, [r3, #12] - 80053f6: 681b ldr r3, [r3, #0] - 80053f8: 60fb str r3, [r7, #12] - 80053fa: e001 b.n 8005400 + 800542c: 4b07 ldr r3, [pc, #28] ; (800544c ) + 800542e: 681b ldr r3, [r3, #0] + 8005430: 68db ldr r3, [r3, #12] + 8005432: 681b ldr r3, [r3, #0] + 8005434: 60fb str r3, [r7, #12] + 8005436: e001 b.n 800543c } else { /* Ensure the task unblocks when the tick count rolls over. */ xNextExpireTime = ( TickType_t ) 0U; - 80053fc: 2300 movs r3, #0 - 80053fe: 60fb str r3, [r7, #12] + 8005438: 2300 movs r3, #0 + 800543a: 60fb str r3, [r7, #12] } return xNextExpireTime; - 8005400: 68fb ldr r3, [r7, #12] + 800543c: 68fb ldr r3, [r7, #12] } - 8005402: 4618 mov r0, r3 - 8005404: 3714 adds r7, #20 - 8005406: 46bd mov sp, r7 - 8005408: f85d 7b04 ldr.w r7, [sp], #4 - 800540c: 4770 bx lr - 800540e: bf00 nop - 8005410: 20000e38 .word 0x20000e38 + 800543e: 4618 mov r0, r3 + 8005440: 3714 adds r7, #20 + 8005442: 46bd mov sp, r7 + 8005444: f85d 7b04 ldr.w r7, [sp], #4 + 8005448: 4770 bx lr + 800544a: bf00 nop + 800544c: 20000e38 .word 0x20000e38 -08005414 : +08005450 : /*-----------------------------------------------------------*/ static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) { - 8005414: b580 push {r7, lr} - 8005416: b084 sub sp, #16 - 8005418: af00 add r7, sp, #0 - 800541a: 6078 str r0, [r7, #4] + 8005450: b580 push {r7, lr} + 8005452: b084 sub sp, #16 + 8005454: af00 add r7, sp, #0 + 8005456: 6078 str r0, [r7, #4] TickType_t xTimeNow; PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ xTimeNow = xTaskGetTickCount(); - 800541c: f7ff fa74 bl 8004908 - 8005420: 60f8 str r0, [r7, #12] + 8005458: f7ff fa74 bl 8004944 + 800545c: 60f8 str r0, [r7, #12] if( xTimeNow < xLastTime ) - 8005422: 4b0b ldr r3, [pc, #44] ; (8005450 ) - 8005424: 681b ldr r3, [r3, #0] - 8005426: 68fa ldr r2, [r7, #12] - 8005428: 429a cmp r2, r3 - 800542a: d205 bcs.n 8005438 + 800545e: 4b0b ldr r3, [pc, #44] ; (800548c ) + 8005460: 681b ldr r3, [r3, #0] + 8005462: 68fa ldr r2, [r7, #12] + 8005464: 429a cmp r2, r3 + 8005466: d205 bcs.n 8005474 { prvSwitchTimerLists(); - 800542c: f000 f936 bl 800569c + 8005468: f000 f936 bl 80056d8 *pxTimerListsWereSwitched = pdTRUE; - 8005430: 687b ldr r3, [r7, #4] - 8005432: 2201 movs r2, #1 - 8005434: 601a str r2, [r3, #0] - 8005436: e002 b.n 800543e + 800546c: 687b ldr r3, [r7, #4] + 800546e: 2201 movs r2, #1 + 8005470: 601a str r2, [r3, #0] + 8005472: e002 b.n 800547a } else { *pxTimerListsWereSwitched = pdFALSE; - 8005438: 687b ldr r3, [r7, #4] - 800543a: 2200 movs r2, #0 - 800543c: 601a str r2, [r3, #0] + 8005474: 687b ldr r3, [r7, #4] + 8005476: 2200 movs r2, #0 + 8005478: 601a str r2, [r3, #0] } xLastTime = xTimeNow; - 800543e: 4a04 ldr r2, [pc, #16] ; (8005450 ) - 8005440: 68fb ldr r3, [r7, #12] - 8005442: 6013 str r3, [r2, #0] + 800547a: 4a04 ldr r2, [pc, #16] ; (800548c ) + 800547c: 68fb ldr r3, [r7, #12] + 800547e: 6013 str r3, [r2, #0] return xTimeNow; - 8005444: 68fb ldr r3, [r7, #12] + 8005480: 68fb ldr r3, [r7, #12] } - 8005446: 4618 mov r0, r3 - 8005448: 3710 adds r7, #16 - 800544a: 46bd mov sp, r7 - 800544c: bd80 pop {r7, pc} - 800544e: bf00 nop - 8005450: 20000e48 .word 0x20000e48 + 8005482: 4618 mov r0, r3 + 8005484: 3710 adds r7, #16 + 8005486: 46bd mov sp, r7 + 8005488: bd80 pop {r7, pc} + 800548a: bf00 nop + 800548c: 20000e48 .word 0x20000e48 -08005454 : +08005490 : /*-----------------------------------------------------------*/ static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) { - 8005454: b580 push {r7, lr} - 8005456: b086 sub sp, #24 - 8005458: af00 add r7, sp, #0 - 800545a: 60f8 str r0, [r7, #12] - 800545c: 60b9 str r1, [r7, #8] - 800545e: 607a str r2, [r7, #4] - 8005460: 603b str r3, [r7, #0] + 8005490: b580 push {r7, lr} + 8005492: b086 sub sp, #24 + 8005494: af00 add r7, sp, #0 + 8005496: 60f8 str r0, [r7, #12] + 8005498: 60b9 str r1, [r7, #8] + 800549a: 607a str r2, [r7, #4] + 800549c: 603b str r3, [r7, #0] BaseType_t xProcessTimerNow = pdFALSE; - 8005462: 2300 movs r3, #0 - 8005464: 617b str r3, [r7, #20] + 800549e: 2300 movs r3, #0 + 80054a0: 617b str r3, [r7, #20] listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); - 8005466: 68fb ldr r3, [r7, #12] - 8005468: 68ba ldr r2, [r7, #8] - 800546a: 605a str r2, [r3, #4] + 80054a2: 68fb ldr r3, [r7, #12] + 80054a4: 68ba ldr r2, [r7, #8] + 80054a6: 605a str r2, [r3, #4] listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - 800546c: 68fb ldr r3, [r7, #12] - 800546e: 68fa ldr r2, [r7, #12] - 8005470: 611a str r2, [r3, #16] + 80054a8: 68fb ldr r3, [r7, #12] + 80054aa: 68fa ldr r2, [r7, #12] + 80054ac: 611a str r2, [r3, #16] if( xNextExpiryTime <= xTimeNow ) - 8005472: 68ba ldr r2, [r7, #8] - 8005474: 687b ldr r3, [r7, #4] - 8005476: 429a cmp r2, r3 - 8005478: d812 bhi.n 80054a0 + 80054ae: 68ba ldr r2, [r7, #8] + 80054b0: 687b ldr r3, [r7, #4] + 80054b2: 429a cmp r2, r3 + 80054b4: d812 bhi.n 80054dc { /* Has the expiry time elapsed between the command to start/reset a timer was issued, and the time the command was processed? */ if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 800547a: 687a ldr r2, [r7, #4] - 800547c: 683b ldr r3, [r7, #0] - 800547e: 1ad2 subs r2, r2, r3 - 8005480: 68fb ldr r3, [r7, #12] - 8005482: 699b ldr r3, [r3, #24] - 8005484: 429a cmp r2, r3 - 8005486: d302 bcc.n 800548e + 80054b6: 687a ldr r2, [r7, #4] + 80054b8: 683b ldr r3, [r7, #0] + 80054ba: 1ad2 subs r2, r2, r3 + 80054bc: 68fb ldr r3, [r7, #12] + 80054be: 699b ldr r3, [r3, #24] + 80054c0: 429a cmp r2, r3 + 80054c2: d302 bcc.n 80054ca { /* The time between a command being issued and the command being processed actually exceeds the timers period. */ xProcessTimerNow = pdTRUE; - 8005488: 2301 movs r3, #1 - 800548a: 617b str r3, [r7, #20] - 800548c: e01b b.n 80054c6 + 80054c4: 2301 movs r3, #1 + 80054c6: 617b str r3, [r7, #20] + 80054c8: e01b b.n 8005502 } else { vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); - 800548e: 4b10 ldr r3, [pc, #64] ; (80054d0 ) - 8005490: 681a ldr r2, [r3, #0] - 8005492: 68fb ldr r3, [r7, #12] - 8005494: 3304 adds r3, #4 - 8005496: 4619 mov r1, r3 - 8005498: 4610 mov r0, r2 - 800549a: f7fe f9de bl 800385a - 800549e: e012 b.n 80054c6 + 80054ca: 4b10 ldr r3, [pc, #64] ; (800550c ) + 80054cc: 681a ldr r2, [r3, #0] + 80054ce: 68fb ldr r3, [r7, #12] + 80054d0: 3304 adds r3, #4 + 80054d2: 4619 mov r1, r3 + 80054d4: 4610 mov r0, r2 + 80054d6: f7fe f9de bl 8003896 + 80054da: e012 b.n 8005502 } } else { if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) - 80054a0: 687a ldr r2, [r7, #4] - 80054a2: 683b ldr r3, [r7, #0] - 80054a4: 429a cmp r2, r3 - 80054a6: d206 bcs.n 80054b6 - 80054a8: 68ba ldr r2, [r7, #8] - 80054aa: 683b ldr r3, [r7, #0] - 80054ac: 429a cmp r2, r3 - 80054ae: d302 bcc.n 80054b6 + 80054dc: 687a ldr r2, [r7, #4] + 80054de: 683b ldr r3, [r7, #0] + 80054e0: 429a cmp r2, r3 + 80054e2: d206 bcs.n 80054f2 + 80054e4: 68ba ldr r2, [r7, #8] + 80054e6: 683b ldr r3, [r7, #0] + 80054e8: 429a cmp r2, r3 + 80054ea: d302 bcc.n 80054f2 { /* If, since the command was issued, the tick count has overflowed but the expiry time has not, then the timer must have already passed its expiry time and should be processed immediately. */ xProcessTimerNow = pdTRUE; - 80054b0: 2301 movs r3, #1 - 80054b2: 617b str r3, [r7, #20] - 80054b4: e007 b.n 80054c6 + 80054ec: 2301 movs r3, #1 + 80054ee: 617b str r3, [r7, #20] + 80054f0: e007 b.n 8005502 } else { vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - 80054b6: 4b07 ldr r3, [pc, #28] ; (80054d4 ) - 80054b8: 681a ldr r2, [r3, #0] - 80054ba: 68fb ldr r3, [r7, #12] - 80054bc: 3304 adds r3, #4 - 80054be: 4619 mov r1, r3 - 80054c0: 4610 mov r0, r2 - 80054c2: f7fe f9ca bl 800385a + 80054f2: 4b07 ldr r3, [pc, #28] ; (8005510 ) + 80054f4: 681a ldr r2, [r3, #0] + 80054f6: 68fb ldr r3, [r7, #12] + 80054f8: 3304 adds r3, #4 + 80054fa: 4619 mov r1, r3 + 80054fc: 4610 mov r0, r2 + 80054fe: f7fe f9ca bl 8003896 } } return xProcessTimerNow; - 80054c6: 697b ldr r3, [r7, #20] + 8005502: 697b ldr r3, [r7, #20] } - 80054c8: 4618 mov r0, r3 - 80054ca: 3718 adds r7, #24 - 80054cc: 46bd mov sp, r7 - 80054ce: bd80 pop {r7, pc} - 80054d0: 20000e3c .word 0x20000e3c - 80054d4: 20000e38 .word 0x20000e38 + 8005504: 4618 mov r0, r3 + 8005506: 3718 adds r7, #24 + 8005508: 46bd mov sp, r7 + 800550a: bd80 pop {r7, pc} + 800550c: 20000e3c .word 0x20000e3c + 8005510: 20000e38 .word 0x20000e38 -080054d8 : +08005514 : /*-----------------------------------------------------------*/ static void prvProcessReceivedCommands( void ) { - 80054d8: b580 push {r7, lr} - 80054da: b08e sub sp, #56 ; 0x38 - 80054dc: af02 add r7, sp, #8 + 8005514: b580 push {r7, lr} + 8005516: b08e sub sp, #56 ; 0x38 + 8005518: af02 add r7, sp, #8 DaemonTaskMessage_t xMessage; Timer_t *pxTimer; BaseType_t xTimerListsWereSwitched, xResult; TickType_t xTimeNow; while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ - 80054de: e0ca b.n 8005676 + 800551a: e0ca b.n 80056b2 { #if ( INCLUDE_xTimerPendFunctionCall == 1 ) { /* Negative commands are pended function calls rather than timer commands. */ if( xMessage.xMessageID < ( BaseType_t ) 0 ) - 80054e0: 687b ldr r3, [r7, #4] - 80054e2: 2b00 cmp r3, #0 - 80054e4: da18 bge.n 8005518 + 800551c: 687b ldr r3, [r7, #4] + 800551e: 2b00 cmp r3, #0 + 8005520: da18 bge.n 8005554 { const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); - 80054e6: 1d3b adds r3, r7, #4 - 80054e8: 3304 adds r3, #4 - 80054ea: 62fb str r3, [r7, #44] ; 0x2c + 8005522: 1d3b adds r3, r7, #4 + 8005524: 3304 adds r3, #4 + 8005526: 62fb str r3, [r7, #44] ; 0x2c /* The timer uses the xCallbackParameters member to request a callback be executed. Check the callback is not NULL. */ configASSERT( pxCallback ); - 80054ec: 6afb ldr r3, [r7, #44] ; 0x2c - 80054ee: 2b00 cmp r3, #0 - 80054f0: d10a bne.n 8005508 + 8005528: 6afb ldr r3, [r7, #44] ; 0x2c + 800552a: 2b00 cmp r3, #0 + 800552c: d10a bne.n 8005544 __asm volatile - 80054f2: f04f 0350 mov.w r3, #80 ; 0x50 - 80054f6: f383 8811 msr BASEPRI, r3 - 80054fa: f3bf 8f6f isb sy - 80054fe: f3bf 8f4f dsb sy - 8005502: 61fb str r3, [r7, #28] + 800552e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005532: f383 8811 msr BASEPRI, r3 + 8005536: f3bf 8f6f isb sy + 800553a: f3bf 8f4f dsb sy + 800553e: 61fb str r3, [r7, #28] } - 8005504: bf00 nop - 8005506: e7fe b.n 8005506 + 8005540: bf00 nop + 8005542: e7fe b.n 8005542 /* Call the function. */ pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); - 8005508: 6afb ldr r3, [r7, #44] ; 0x2c - 800550a: 681b ldr r3, [r3, #0] - 800550c: 6afa ldr r2, [r7, #44] ; 0x2c - 800550e: 6850 ldr r0, [r2, #4] - 8005510: 6afa ldr r2, [r7, #44] ; 0x2c - 8005512: 6892 ldr r2, [r2, #8] - 8005514: 4611 mov r1, r2 - 8005516: 4798 blx r3 + 8005544: 6afb ldr r3, [r7, #44] ; 0x2c + 8005546: 681b ldr r3, [r3, #0] + 8005548: 6afa ldr r2, [r7, #44] ; 0x2c + 800554a: 6850 ldr r0, [r2, #4] + 800554c: 6afa ldr r2, [r7, #44] ; 0x2c + 800554e: 6892 ldr r2, [r2, #8] + 8005550: 4611 mov r1, r2 + 8005552: 4798 blx r3 } #endif /* INCLUDE_xTimerPendFunctionCall */ /* Commands that are positive are timer commands rather than pended function calls. */ if( xMessage.xMessageID >= ( BaseType_t ) 0 ) - 8005518: 687b ldr r3, [r7, #4] - 800551a: 2b00 cmp r3, #0 - 800551c: f2c0 80ab blt.w 8005676 + 8005554: 687b ldr r3, [r7, #4] + 8005556: 2b00 cmp r3, #0 + 8005558: f2c0 80ab blt.w 80056b2 { /* The messages uses the xTimerParameters member to work on a software timer. */ pxTimer = xMessage.u.xTimerParameters.pxTimer; - 8005520: 68fb ldr r3, [r7, #12] - 8005522: 62bb str r3, [r7, #40] ; 0x28 + 800555c: 68fb ldr r3, [r7, #12] + 800555e: 62bb str r3, [r7, #40] ; 0x28 if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ - 8005524: 6abb ldr r3, [r7, #40] ; 0x28 - 8005526: 695b ldr r3, [r3, #20] - 8005528: 2b00 cmp r3, #0 - 800552a: d004 beq.n 8005536 + 8005560: 6abb ldr r3, [r7, #40] ; 0x28 + 8005562: 695b ldr r3, [r3, #20] + 8005564: 2b00 cmp r3, #0 + 8005566: d004 beq.n 8005572 { /* The timer is in a list, remove it. */ ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 800552c: 6abb ldr r3, [r7, #40] ; 0x28 - 800552e: 3304 adds r3, #4 - 8005530: 4618 mov r0, r3 - 8005532: f7fe f9cb bl 80038cc + 8005568: 6abb ldr r3, [r7, #40] ; 0x28 + 800556a: 3304 adds r3, #4 + 800556c: 4618 mov r0, r3 + 800556e: f7fe f9cb bl 8003908 it must be present in the function call. prvSampleTimeNow() must be called after the message is received from xTimerQueue so there is no possibility of a higher priority task adding a message to the message queue with a time that is ahead of the timer daemon task (because it pre-empted the timer daemon task after the xTimeNow value was set). */ xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - 8005536: 463b mov r3, r7 - 8005538: 4618 mov r0, r3 - 800553a: f7ff ff6b bl 8005414 - 800553e: 6278 str r0, [r7, #36] ; 0x24 + 8005572: 463b mov r3, r7 + 8005574: 4618 mov r0, r3 + 8005576: f7ff ff6b bl 8005450 + 800557a: 6278 str r0, [r7, #36] ; 0x24 switch( xMessage.xMessageID ) - 8005540: 687b ldr r3, [r7, #4] - 8005542: 2b09 cmp r3, #9 - 8005544: f200 8096 bhi.w 8005674 - 8005548: a201 add r2, pc, #4 ; (adr r2, 8005550 ) - 800554a: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800554e: bf00 nop - 8005550: 08005579 .word 0x08005579 - 8005554: 08005579 .word 0x08005579 - 8005558: 08005579 .word 0x08005579 - 800555c: 080055ed .word 0x080055ed - 8005560: 08005601 .word 0x08005601 - 8005564: 0800564b .word 0x0800564b - 8005568: 08005579 .word 0x08005579 - 800556c: 08005579 .word 0x08005579 - 8005570: 080055ed .word 0x080055ed - 8005574: 08005601 .word 0x08005601 + 800557c: 687b ldr r3, [r7, #4] + 800557e: 2b09 cmp r3, #9 + 8005580: f200 8096 bhi.w 80056b0 + 8005584: a201 add r2, pc, #4 ; (adr r2, 800558c ) + 8005586: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800558a: bf00 nop + 800558c: 080055b5 .word 0x080055b5 + 8005590: 080055b5 .word 0x080055b5 + 8005594: 080055b5 .word 0x080055b5 + 8005598: 08005629 .word 0x08005629 + 800559c: 0800563d .word 0x0800563d + 80055a0: 08005687 .word 0x08005687 + 80055a4: 080055b5 .word 0x080055b5 + 80055a8: 080055b5 .word 0x080055b5 + 80055ac: 08005629 .word 0x08005629 + 80055b0: 0800563d .word 0x0800563d case tmrCOMMAND_START_FROM_ISR : case tmrCOMMAND_RESET : case tmrCOMMAND_RESET_FROM_ISR : case tmrCOMMAND_START_DONT_TRACE : /* Start or restart a timer. */ pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - 8005578: 6abb ldr r3, [r7, #40] ; 0x28 - 800557a: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 800557e: f043 0301 orr.w r3, r3, #1 - 8005582: b2da uxtb r2, r3 - 8005584: 6abb ldr r3, [r7, #40] ; 0x28 - 8005586: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 80055b4: 6abb ldr r3, [r7, #40] ; 0x28 + 80055b6: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 80055ba: f043 0301 orr.w r3, r3, #1 + 80055be: b2da uxtb r2, r3 + 80055c0: 6abb ldr r3, [r7, #40] ; 0x28 + 80055c2: f883 2028 strb.w r2, [r3, #40] ; 0x28 if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) - 800558a: 68ba ldr r2, [r7, #8] - 800558c: 6abb ldr r3, [r7, #40] ; 0x28 - 800558e: 699b ldr r3, [r3, #24] - 8005590: 18d1 adds r1, r2, r3 - 8005592: 68bb ldr r3, [r7, #8] - 8005594: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005596: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005598: f7ff ff5c bl 8005454 - 800559c: 4603 mov r3, r0 - 800559e: 2b00 cmp r3, #0 - 80055a0: d069 beq.n 8005676 + 80055c6: 68ba ldr r2, [r7, #8] + 80055c8: 6abb ldr r3, [r7, #40] ; 0x28 + 80055ca: 699b ldr r3, [r3, #24] + 80055cc: 18d1 adds r1, r2, r3 + 80055ce: 68bb ldr r3, [r7, #8] + 80055d0: 6a7a ldr r2, [r7, #36] ; 0x24 + 80055d2: 6ab8 ldr r0, [r7, #40] ; 0x28 + 80055d4: f7ff ff5c bl 8005490 + 80055d8: 4603 mov r3, r0 + 80055da: 2b00 cmp r3, #0 + 80055dc: d069 beq.n 80056b2 { /* The timer expired before it was added to the active timer list. Process it now. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 80055a2: 6abb ldr r3, [r7, #40] ; 0x28 - 80055a4: 6a1b ldr r3, [r3, #32] - 80055a6: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80055a8: 4798 blx r3 + 80055de: 6abb ldr r3, [r7, #40] ; 0x28 + 80055e0: 6a1b ldr r3, [r3, #32] + 80055e2: 6ab8 ldr r0, [r7, #40] ; 0x28 + 80055e4: 4798 blx r3 traceTIMER_EXPIRED( pxTimer ); if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 80055aa: 6abb ldr r3, [r7, #40] ; 0x28 - 80055ac: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80055b0: f003 0304 and.w r3, r3, #4 - 80055b4: 2b00 cmp r3, #0 - 80055b6: d05e beq.n 8005676 + 80055e6: 6abb ldr r3, [r7, #40] ; 0x28 + 80055e8: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 80055ec: f003 0304 and.w r3, r3, #4 + 80055f0: 2b00 cmp r3, #0 + 80055f2: d05e beq.n 80056b2 { xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); - 80055b8: 68ba ldr r2, [r7, #8] - 80055ba: 6abb ldr r3, [r7, #40] ; 0x28 - 80055bc: 699b ldr r3, [r3, #24] - 80055be: 441a add r2, r3 - 80055c0: 2300 movs r3, #0 - 80055c2: 9300 str r3, [sp, #0] - 80055c4: 2300 movs r3, #0 - 80055c6: 2100 movs r1, #0 - 80055c8: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80055ca: f7ff fe05 bl 80051d8 - 80055ce: 6238 str r0, [r7, #32] + 80055f4: 68ba ldr r2, [r7, #8] + 80055f6: 6abb ldr r3, [r7, #40] ; 0x28 + 80055f8: 699b ldr r3, [r3, #24] + 80055fa: 441a add r2, r3 + 80055fc: 2300 movs r3, #0 + 80055fe: 9300 str r3, [sp, #0] + 8005600: 2300 movs r3, #0 + 8005602: 2100 movs r1, #0 + 8005604: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8005606: f7ff fe05 bl 8005214 + 800560a: 6238 str r0, [r7, #32] configASSERT( xResult ); - 80055d0: 6a3b ldr r3, [r7, #32] - 80055d2: 2b00 cmp r3, #0 - 80055d4: d14f bne.n 8005676 + 800560c: 6a3b ldr r3, [r7, #32] + 800560e: 2b00 cmp r3, #0 + 8005610: d14f bne.n 80056b2 __asm volatile - 80055d6: f04f 0350 mov.w r3, #80 ; 0x50 - 80055da: f383 8811 msr BASEPRI, r3 - 80055de: f3bf 8f6f isb sy - 80055e2: f3bf 8f4f dsb sy - 80055e6: 61bb str r3, [r7, #24] + 8005612: f04f 0350 mov.w r3, #80 ; 0x50 + 8005616: f383 8811 msr BASEPRI, r3 + 800561a: f3bf 8f6f isb sy + 800561e: f3bf 8f4f dsb sy + 8005622: 61bb str r3, [r7, #24] } - 80055e8: bf00 nop - 80055ea: e7fe b.n 80055ea + 8005624: bf00 nop + 8005626: e7fe b.n 8005626 break; case tmrCOMMAND_STOP : case tmrCOMMAND_STOP_FROM_ISR : /* The timer has already been removed from the active list. */ pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 80055ec: 6abb ldr r3, [r7, #40] ; 0x28 - 80055ee: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80055f2: f023 0301 bic.w r3, r3, #1 - 80055f6: b2da uxtb r2, r3 - 80055f8: 6abb ldr r3, [r7, #40] ; 0x28 - 80055fa: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 8005628: 6abb ldr r3, [r7, #40] ; 0x28 + 800562a: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 800562e: f023 0301 bic.w r3, r3, #1 + 8005632: b2da uxtb r2, r3 + 8005634: 6abb ldr r3, [r7, #40] ; 0x28 + 8005636: f883 2028 strb.w r2, [r3, #40] ; 0x28 break; - 80055fe: e03a b.n 8005676 + 800563a: e03a b.n 80056b2 case tmrCOMMAND_CHANGE_PERIOD : case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - 8005600: 6abb ldr r3, [r7, #40] ; 0x28 - 8005602: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8005606: f043 0301 orr.w r3, r3, #1 - 800560a: b2da uxtb r2, r3 - 800560c: 6abb ldr r3, [r7, #40] ; 0x28 - 800560e: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 800563c: 6abb ldr r3, [r7, #40] ; 0x28 + 800563e: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8005642: f043 0301 orr.w r3, r3, #1 + 8005646: b2da uxtb r2, r3 + 8005648: 6abb ldr r3, [r7, #40] ; 0x28 + 800564a: f883 2028 strb.w r2, [r3, #40] ; 0x28 pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; - 8005612: 68ba ldr r2, [r7, #8] - 8005614: 6abb ldr r3, [r7, #40] ; 0x28 - 8005616: 619a str r2, [r3, #24] + 800564e: 68ba ldr r2, [r7, #8] + 8005650: 6abb ldr r3, [r7, #40] ; 0x28 + 8005652: 619a str r2, [r3, #24] configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); - 8005618: 6abb ldr r3, [r7, #40] ; 0x28 - 800561a: 699b ldr r3, [r3, #24] - 800561c: 2b00 cmp r3, #0 - 800561e: d10a bne.n 8005636 + 8005654: 6abb ldr r3, [r7, #40] ; 0x28 + 8005656: 699b ldr r3, [r3, #24] + 8005658: 2b00 cmp r3, #0 + 800565a: d10a bne.n 8005672 __asm volatile - 8005620: f04f 0350 mov.w r3, #80 ; 0x50 - 8005624: f383 8811 msr BASEPRI, r3 - 8005628: f3bf 8f6f isb sy - 800562c: f3bf 8f4f dsb sy - 8005630: 617b str r3, [r7, #20] + 800565c: f04f 0350 mov.w r3, #80 ; 0x50 + 8005660: f383 8811 msr BASEPRI, r3 + 8005664: f3bf 8f6f isb sy + 8005668: f3bf 8f4f dsb sy + 800566c: 617b str r3, [r7, #20] } - 8005632: bf00 nop - 8005634: e7fe b.n 8005634 + 800566e: bf00 nop + 8005670: e7fe b.n 8005670 be longer or shorter than the old one. The command time is therefore set to the current time, and as the period cannot be zero the next expiry time can only be in the future, meaning (unlike for the xTimerStart() case above) there is no fail case that needs to be handled here. */ ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); - 8005636: 6abb ldr r3, [r7, #40] ; 0x28 - 8005638: 699a ldr r2, [r3, #24] - 800563a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800563c: 18d1 adds r1, r2, r3 - 800563e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005640: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005642: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8005644: f7ff ff06 bl 8005454 + 8005672: 6abb ldr r3, [r7, #40] ; 0x28 + 8005674: 699a ldr r2, [r3, #24] + 8005676: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005678: 18d1 adds r1, r2, r3 + 800567a: 6a7b ldr r3, [r7, #36] ; 0x24 + 800567c: 6a7a ldr r2, [r7, #36] ; 0x24 + 800567e: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8005680: f7ff ff06 bl 8005490 break; - 8005648: e015 b.n 8005676 + 8005684: e015 b.n 80056b2 #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) { /* The timer has already been removed from the active list, just free up the memory if the memory was dynamically allocated. */ if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) - 800564a: 6abb ldr r3, [r7, #40] ; 0x28 - 800564c: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8005650: f003 0302 and.w r3, r3, #2 - 8005654: 2b00 cmp r3, #0 - 8005656: d103 bne.n 8005660 + 8005686: 6abb ldr r3, [r7, #40] ; 0x28 + 8005688: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 800568c: f003 0302 and.w r3, r3, #2 + 8005690: 2b00 cmp r3, #0 + 8005692: d103 bne.n 800569c { vPortFree( pxTimer ); - 8005658: 6ab8 ldr r0, [r7, #40] ; 0x28 - 800565a: f000 fbe1 bl 8005e20 - 800565e: e00a b.n 8005676 + 8005694: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8005696: f000 fbdb bl 8005e50 + 800569a: e00a b.n 80056b2 } else { pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 8005660: 6abb ldr r3, [r7, #40] ; 0x28 - 8005662: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8005666: f023 0301 bic.w r3, r3, #1 - 800566a: b2da uxtb r2, r3 - 800566c: 6abb ldr r3, [r7, #40] ; 0x28 - 800566e: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 800569c: 6abb ldr r3, [r7, #40] ; 0x28 + 800569e: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 80056a2: f023 0301 bic.w r3, r3, #1 + 80056a6: b2da uxtb r2, r3 + 80056a8: 6abb ldr r3, [r7, #40] ; 0x28 + 80056aa: f883 2028 strb.w r2, [r3, #40] ; 0x28 no need to free the memory - just mark the timer as "not active". */ pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ break; - 8005672: e000 b.n 8005676 + 80056ae: e000 b.n 80056b2 default : /* Don't expect to get here. */ break; - 8005674: bf00 nop + 80056b0: bf00 nop while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ - 8005676: 4b08 ldr r3, [pc, #32] ; (8005698 ) - 8005678: 681b ldr r3, [r3, #0] - 800567a: 1d39 adds r1, r7, #4 - 800567c: 2200 movs r2, #0 - 800567e: 4618 mov r0, r3 - 8005680: f7fe fbec bl 8003e5c - 8005684: 4603 mov r3, r0 - 8005686: 2b00 cmp r3, #0 - 8005688: f47f af2a bne.w 80054e0 + 80056b2: 4b08 ldr r3, [pc, #32] ; (80056d4 ) + 80056b4: 681b ldr r3, [r3, #0] + 80056b6: 1d39 adds r1, r7, #4 + 80056b8: 2200 movs r2, #0 + 80056ba: 4618 mov r0, r3 + 80056bc: f7fe fbec bl 8003e98 + 80056c0: 4603 mov r3, r0 + 80056c2: 2b00 cmp r3, #0 + 80056c4: f47f af2a bne.w 800551c } } } } - 800568c: bf00 nop - 800568e: bf00 nop - 8005690: 3730 adds r7, #48 ; 0x30 - 8005692: 46bd mov sp, r7 - 8005694: bd80 pop {r7, pc} - 8005696: bf00 nop - 8005698: 20000e40 .word 0x20000e40 + 80056c8: bf00 nop + 80056ca: bf00 nop + 80056cc: 3730 adds r7, #48 ; 0x30 + 80056ce: 46bd mov sp, r7 + 80056d0: bd80 pop {r7, pc} + 80056d2: bf00 nop + 80056d4: 20000e40 .word 0x20000e40 -0800569c : +080056d8 : /*-----------------------------------------------------------*/ static void prvSwitchTimerLists( void ) { - 800569c: b580 push {r7, lr} - 800569e: b088 sub sp, #32 - 80056a0: af02 add r7, sp, #8 + 80056d8: b580 push {r7, lr} + 80056da: b088 sub sp, #32 + 80056dc: af02 add r7, sp, #8 /* The tick count has overflowed. The timer lists must be switched. If there are any timers still referenced from the current timer list then they must have expired and should be processed before the lists are switched. */ while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) - 80056a2: e048 b.n 8005736 + 80056de: e048 b.n 8005772 { xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - 80056a4: 4b2d ldr r3, [pc, #180] ; (800575c ) - 80056a6: 681b ldr r3, [r3, #0] - 80056a8: 68db ldr r3, [r3, #12] - 80056aa: 681b ldr r3, [r3, #0] - 80056ac: 613b str r3, [r7, #16] + 80056e0: 4b2d ldr r3, [pc, #180] ; (8005798 ) + 80056e2: 681b ldr r3, [r3, #0] + 80056e4: 68db ldr r3, [r3, #12] + 80056e6: 681b ldr r3, [r3, #0] + 80056e8: 613b str r3, [r7, #16] /* Remove the timer from the list. */ pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 80056ae: 4b2b ldr r3, [pc, #172] ; (800575c ) - 80056b0: 681b ldr r3, [r3, #0] - 80056b2: 68db ldr r3, [r3, #12] - 80056b4: 68db ldr r3, [r3, #12] - 80056b6: 60fb str r3, [r7, #12] + 80056ea: 4b2b ldr r3, [pc, #172] ; (8005798 ) + 80056ec: 681b ldr r3, [r3, #0] + 80056ee: 68db ldr r3, [r3, #12] + 80056f0: 68db ldr r3, [r3, #12] + 80056f2: 60fb str r3, [r7, #12] ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 80056b8: 68fb ldr r3, [r7, #12] - 80056ba: 3304 adds r3, #4 - 80056bc: 4618 mov r0, r3 - 80056be: f7fe f905 bl 80038cc + 80056f4: 68fb ldr r3, [r7, #12] + 80056f6: 3304 adds r3, #4 + 80056f8: 4618 mov r0, r3 + 80056fa: f7fe f905 bl 8003908 traceTIMER_EXPIRED( pxTimer ); /* Execute its callback, then send a command to restart the timer if it is an auto-reload timer. It cannot be restarted here as the lists have not yet been switched. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 80056c2: 68fb ldr r3, [r7, #12] - 80056c4: 6a1b ldr r3, [r3, #32] - 80056c6: 68f8 ldr r0, [r7, #12] - 80056c8: 4798 blx r3 + 80056fe: 68fb ldr r3, [r7, #12] + 8005700: 6a1b ldr r3, [r3, #32] + 8005702: 68f8 ldr r0, [r7, #12] + 8005704: 4798 blx r3 if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 80056ca: 68fb ldr r3, [r7, #12] - 80056cc: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80056d0: f003 0304 and.w r3, r3, #4 - 80056d4: 2b00 cmp r3, #0 - 80056d6: d02e beq.n 8005736 + 8005706: 68fb ldr r3, [r7, #12] + 8005708: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 800570c: f003 0304 and.w r3, r3, #4 + 8005710: 2b00 cmp r3, #0 + 8005712: d02e beq.n 8005772 the timer going into the same timer list then it has already expired and the timer should be re-inserted into the current list so it is processed again within this loop. Otherwise a command should be sent to restart the timer to ensure it is only inserted into a list after the lists have been swapped. */ xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); - 80056d8: 68fb ldr r3, [r7, #12] - 80056da: 699b ldr r3, [r3, #24] - 80056dc: 693a ldr r2, [r7, #16] - 80056de: 4413 add r3, r2 - 80056e0: 60bb str r3, [r7, #8] + 8005714: 68fb ldr r3, [r7, #12] + 8005716: 699b ldr r3, [r3, #24] + 8005718: 693a ldr r2, [r7, #16] + 800571a: 4413 add r3, r2 + 800571c: 60bb str r3, [r7, #8] if( xReloadTime > xNextExpireTime ) - 80056e2: 68ba ldr r2, [r7, #8] - 80056e4: 693b ldr r3, [r7, #16] - 80056e6: 429a cmp r2, r3 - 80056e8: d90e bls.n 8005708 + 800571e: 68ba ldr r2, [r7, #8] + 8005720: 693b ldr r3, [r7, #16] + 8005722: 429a cmp r2, r3 + 8005724: d90e bls.n 8005744 { listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); - 80056ea: 68fb ldr r3, [r7, #12] - 80056ec: 68ba ldr r2, [r7, #8] - 80056ee: 605a str r2, [r3, #4] + 8005726: 68fb ldr r3, [r7, #12] + 8005728: 68ba ldr r2, [r7, #8] + 800572a: 605a str r2, [r3, #4] listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - 80056f0: 68fb ldr r3, [r7, #12] - 80056f2: 68fa ldr r2, [r7, #12] - 80056f4: 611a str r2, [r3, #16] + 800572c: 68fb ldr r3, [r7, #12] + 800572e: 68fa ldr r2, [r7, #12] + 8005730: 611a str r2, [r3, #16] vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - 80056f6: 4b19 ldr r3, [pc, #100] ; (800575c ) - 80056f8: 681a ldr r2, [r3, #0] - 80056fa: 68fb ldr r3, [r7, #12] - 80056fc: 3304 adds r3, #4 - 80056fe: 4619 mov r1, r3 - 8005700: 4610 mov r0, r2 - 8005702: f7fe f8aa bl 800385a - 8005706: e016 b.n 8005736 + 8005732: 4b19 ldr r3, [pc, #100] ; (8005798 ) + 8005734: 681a ldr r2, [r3, #0] + 8005736: 68fb ldr r3, [r7, #12] + 8005738: 3304 adds r3, #4 + 800573a: 4619 mov r1, r3 + 800573c: 4610 mov r0, r2 + 800573e: f7fe f8aa bl 8003896 + 8005742: e016 b.n 8005772 } else { xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - 8005708: 2300 movs r3, #0 - 800570a: 9300 str r3, [sp, #0] - 800570c: 2300 movs r3, #0 - 800570e: 693a ldr r2, [r7, #16] - 8005710: 2100 movs r1, #0 - 8005712: 68f8 ldr r0, [r7, #12] - 8005714: f7ff fd60 bl 80051d8 - 8005718: 6078 str r0, [r7, #4] + 8005744: 2300 movs r3, #0 + 8005746: 9300 str r3, [sp, #0] + 8005748: 2300 movs r3, #0 + 800574a: 693a ldr r2, [r7, #16] + 800574c: 2100 movs r1, #0 + 800574e: 68f8 ldr r0, [r7, #12] + 8005750: f7ff fd60 bl 8005214 + 8005754: 6078 str r0, [r7, #4] configASSERT( xResult ); - 800571a: 687b ldr r3, [r7, #4] - 800571c: 2b00 cmp r3, #0 - 800571e: d10a bne.n 8005736 + 8005756: 687b ldr r3, [r7, #4] + 8005758: 2b00 cmp r3, #0 + 800575a: d10a bne.n 8005772 __asm volatile - 8005720: f04f 0350 mov.w r3, #80 ; 0x50 - 8005724: f383 8811 msr BASEPRI, r3 - 8005728: f3bf 8f6f isb sy - 800572c: f3bf 8f4f dsb sy - 8005730: 603b str r3, [r7, #0] + 800575c: f04f 0350 mov.w r3, #80 ; 0x50 + 8005760: f383 8811 msr BASEPRI, r3 + 8005764: f3bf 8f6f isb sy + 8005768: f3bf 8f4f dsb sy + 800576c: 603b str r3, [r7, #0] } - 8005732: bf00 nop - 8005734: e7fe b.n 8005734 + 800576e: bf00 nop + 8005770: e7fe b.n 8005770 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) - 8005736: 4b09 ldr r3, [pc, #36] ; (800575c ) - 8005738: 681b ldr r3, [r3, #0] - 800573a: 681b ldr r3, [r3, #0] - 800573c: 2b00 cmp r3, #0 - 800573e: d1b1 bne.n 80056a4 + 8005772: 4b09 ldr r3, [pc, #36] ; (8005798 ) + 8005774: 681b ldr r3, [r3, #0] + 8005776: 681b ldr r3, [r3, #0] + 8005778: 2b00 cmp r3, #0 + 800577a: d1b1 bne.n 80056e0 { mtCOVERAGE_TEST_MARKER(); } } pxTemp = pxCurrentTimerList; - 8005740: 4b06 ldr r3, [pc, #24] ; (800575c ) - 8005742: 681b ldr r3, [r3, #0] - 8005744: 617b str r3, [r7, #20] + 800577c: 4b06 ldr r3, [pc, #24] ; (8005798 ) + 800577e: 681b ldr r3, [r3, #0] + 8005780: 617b str r3, [r7, #20] pxCurrentTimerList = pxOverflowTimerList; - 8005746: 4b06 ldr r3, [pc, #24] ; (8005760 ) - 8005748: 681b ldr r3, [r3, #0] - 800574a: 4a04 ldr r2, [pc, #16] ; (800575c ) - 800574c: 6013 str r3, [r2, #0] + 8005782: 4b06 ldr r3, [pc, #24] ; (800579c ) + 8005784: 681b ldr r3, [r3, #0] + 8005786: 4a04 ldr r2, [pc, #16] ; (8005798 ) + 8005788: 6013 str r3, [r2, #0] pxOverflowTimerList = pxTemp; - 800574e: 4a04 ldr r2, [pc, #16] ; (8005760 ) - 8005750: 697b ldr r3, [r7, #20] - 8005752: 6013 str r3, [r2, #0] + 800578a: 4a04 ldr r2, [pc, #16] ; (800579c ) + 800578c: 697b ldr r3, [r7, #20] + 800578e: 6013 str r3, [r2, #0] } - 8005754: bf00 nop - 8005756: 3718 adds r7, #24 - 8005758: 46bd mov sp, r7 - 800575a: bd80 pop {r7, pc} - 800575c: 20000e38 .word 0x20000e38 - 8005760: 20000e3c .word 0x20000e3c + 8005790: bf00 nop + 8005792: 3718 adds r7, #24 + 8005794: 46bd mov sp, r7 + 8005796: bd80 pop {r7, pc} + 8005798: 20000e38 .word 0x20000e38 + 800579c: 20000e3c .word 0x20000e3c -08005764 : +080057a0 : /*-----------------------------------------------------------*/ static void prvCheckForValidListAndQueue( void ) { - 8005764: b580 push {r7, lr} - 8005766: b082 sub sp, #8 - 8005768: af02 add r7, sp, #8 + 80057a0: b580 push {r7, lr} + 80057a2: b082 sub sp, #8 + 80057a4: af02 add r7, sp, #8 /* Check that the list from which active timers are referenced, and the queue used to communicate with the timer service, have been initialised. */ taskENTER_CRITICAL(); - 800576a: f000 f96b bl 8005a44 + 80057a6: f000 f965 bl 8005a74 { if( xTimerQueue == NULL ) - 800576e: 4b15 ldr r3, [pc, #84] ; (80057c4 ) - 8005770: 681b ldr r3, [r3, #0] - 8005772: 2b00 cmp r3, #0 - 8005774: d120 bne.n 80057b8 + 80057aa: 4b15 ldr r3, [pc, #84] ; (8005800 ) + 80057ac: 681b ldr r3, [r3, #0] + 80057ae: 2b00 cmp r3, #0 + 80057b0: d120 bne.n 80057f4 { vListInitialise( &xActiveTimerList1 ); - 8005776: 4814 ldr r0, [pc, #80] ; (80057c8 ) - 8005778: f7fe f81e bl 80037b8 + 80057b2: 4814 ldr r0, [pc, #80] ; (8005804 ) + 80057b4: f7fe f81e bl 80037f4 vListInitialise( &xActiveTimerList2 ); - 800577c: 4813 ldr r0, [pc, #76] ; (80057cc ) - 800577e: f7fe f81b bl 80037b8 + 80057b8: 4813 ldr r0, [pc, #76] ; (8005808 ) + 80057ba: f7fe f81b bl 80037f4 pxCurrentTimerList = &xActiveTimerList1; - 8005782: 4b13 ldr r3, [pc, #76] ; (80057d0 ) - 8005784: 4a10 ldr r2, [pc, #64] ; (80057c8 ) - 8005786: 601a str r2, [r3, #0] + 80057be: 4b13 ldr r3, [pc, #76] ; (800580c ) + 80057c0: 4a10 ldr r2, [pc, #64] ; (8005804 ) + 80057c2: 601a str r2, [r3, #0] pxOverflowTimerList = &xActiveTimerList2; - 8005788: 4b12 ldr r3, [pc, #72] ; (80057d4 ) - 800578a: 4a10 ldr r2, [pc, #64] ; (80057cc ) - 800578c: 601a str r2, [r3, #0] + 80057c4: 4b12 ldr r3, [pc, #72] ; (8005810 ) + 80057c6: 4a10 ldr r2, [pc, #64] ; (8005808 ) + 80057c8: 601a str r2, [r3, #0] /* The timer queue is allocated statically in case configSUPPORT_DYNAMIC_ALLOCATION is 0. */ static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ static uint8_t ucStaticTimerQueueStorage[ ( size_t ) configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); - 800578e: 2300 movs r3, #0 - 8005790: 9300 str r3, [sp, #0] - 8005792: 4b11 ldr r3, [pc, #68] ; (80057d8 ) - 8005794: 4a11 ldr r2, [pc, #68] ; (80057dc ) - 8005796: 2110 movs r1, #16 - 8005798: 200a movs r0, #10 - 800579a: f7fe f929 bl 80039f0 - 800579e: 4603 mov r3, r0 - 80057a0: 4a08 ldr r2, [pc, #32] ; (80057c4 ) - 80057a2: 6013 str r3, [r2, #0] + 80057ca: 2300 movs r3, #0 + 80057cc: 9300 str r3, [sp, #0] + 80057ce: 4b11 ldr r3, [pc, #68] ; (8005814 ) + 80057d0: 4a11 ldr r2, [pc, #68] ; (8005818 ) + 80057d2: 2110 movs r1, #16 + 80057d4: 200a movs r0, #10 + 80057d6: f7fe f929 bl 8003a2c + 80057da: 4603 mov r3, r0 + 80057dc: 4a08 ldr r2, [pc, #32] ; (8005800 ) + 80057de: 6013 str r3, [r2, #0] } #endif #if ( configQUEUE_REGISTRY_SIZE > 0 ) { if( xTimerQueue != NULL ) - 80057a4: 4b07 ldr r3, [pc, #28] ; (80057c4 ) - 80057a6: 681b ldr r3, [r3, #0] - 80057a8: 2b00 cmp r3, #0 - 80057aa: d005 beq.n 80057b8 + 80057e0: 4b07 ldr r3, [pc, #28] ; (8005800 ) + 80057e2: 681b ldr r3, [r3, #0] + 80057e4: 2b00 cmp r3, #0 + 80057e6: d005 beq.n 80057f4 { vQueueAddToRegistry( xTimerQueue, "TmrQ" ); - 80057ac: 4b05 ldr r3, [pc, #20] ; (80057c4 ) - 80057ae: 681b ldr r3, [r3, #0] - 80057b0: 490b ldr r1, [pc, #44] ; (80057e0 ) - 80057b2: 4618 mov r0, r3 - 80057b4: f7fe fd42 bl 800423c + 80057e8: 4b05 ldr r3, [pc, #20] ; (8005800 ) + 80057ea: 681b ldr r3, [r3, #0] + 80057ec: 490b ldr r1, [pc, #44] ; (800581c ) + 80057ee: 4618 mov r0, r3 + 80057f0: f7fe fd42 bl 8004278 else { mtCOVERAGE_TEST_MARKER(); } } taskEXIT_CRITICAL(); - 80057b8: f000 f974 bl 8005aa4 + 80057f4: f000 f96e bl 8005ad4 } - 80057bc: bf00 nop - 80057be: 46bd mov sp, r7 - 80057c0: bd80 pop {r7, pc} - 80057c2: bf00 nop - 80057c4: 20000e40 .word 0x20000e40 - 80057c8: 20000e10 .word 0x20000e10 - 80057cc: 20000e24 .word 0x20000e24 - 80057d0: 20000e38 .word 0x20000e38 - 80057d4: 20000e3c .word 0x20000e3c - 80057d8: 20000eec .word 0x20000eec - 80057dc: 20000e4c .word 0x20000e4c - 80057e0: 0800628c .word 0x0800628c + 80057f8: bf00 nop + 80057fa: 46bd mov sp, r7 + 80057fc: bd80 pop {r7, pc} + 80057fe: bf00 nop + 8005800: 20000e40 .word 0x20000e40 + 8005804: 20000e10 .word 0x20000e10 + 8005808: 20000e24 .word 0x20000e24 + 800580c: 20000e38 .word 0x20000e38 + 8005810: 20000e3c .word 0x20000e3c + 8005814: 20000eec .word 0x20000eec + 8005818: 20000e4c .word 0x20000e4c + 800581c: 080062bc .word 0x080062bc -080057e4 : +08005820 : /* * See header file for description. */ StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) { - 80057e4: b480 push {r7} - 80057e6: b085 sub sp, #20 - 80057e8: af00 add r7, sp, #0 - 80057ea: 60f8 str r0, [r7, #12] - 80057ec: 60b9 str r1, [r7, #8] - 80057ee: 607a str r2, [r7, #4] + 8005820: b480 push {r7} + 8005822: b085 sub sp, #20 + 8005824: af00 add r7, sp, #0 + 8005826: 60f8 str r0, [r7, #12] + 8005828: 60b9 str r1, [r7, #8] + 800582a: 607a str r2, [r7, #4] /* Simulate the stack frame as it would be created by a context switch interrupt. */ /* Offset added to account for the way the MCU uses the stack on entry/exit of interrupts, and to ensure alignment. */ pxTopOfStack--; - 80057f0: 68fb ldr r3, [r7, #12] - 80057f2: 3b04 subs r3, #4 - 80057f4: 60fb str r3, [r7, #12] + 800582c: 68fb ldr r3, [r7, #12] + 800582e: 3b04 subs r3, #4 + 8005830: 60fb str r3, [r7, #12] *pxTopOfStack = portINITIAL_XPSR; /* xPSR */ - 80057f6: 68fb ldr r3, [r7, #12] - 80057f8: f04f 7280 mov.w r2, #16777216 ; 0x1000000 - 80057fc: 601a str r2, [r3, #0] + 8005832: 68fb ldr r3, [r7, #12] + 8005834: f04f 7280 mov.w r2, #16777216 ; 0x1000000 + 8005838: 601a str r2, [r3, #0] pxTopOfStack--; - 80057fe: 68fb ldr r3, [r7, #12] - 8005800: 3b04 subs r3, #4 - 8005802: 60fb str r3, [r7, #12] + 800583a: 68fb ldr r3, [r7, #12] + 800583c: 3b04 subs r3, #4 + 800583e: 60fb str r3, [r7, #12] *pxTopOfStack = ( ( StackType_t ) pxCode ) & portSTART_ADDRESS_MASK; /* PC */ - 8005804: 68bb ldr r3, [r7, #8] - 8005806: f023 0201 bic.w r2, r3, #1 - 800580a: 68fb ldr r3, [r7, #12] - 800580c: 601a str r2, [r3, #0] + 8005840: 68bb ldr r3, [r7, #8] + 8005842: f023 0201 bic.w r2, r3, #1 + 8005846: 68fb ldr r3, [r7, #12] + 8005848: 601a str r2, [r3, #0] pxTopOfStack--; - 800580e: 68fb ldr r3, [r7, #12] - 8005810: 3b04 subs r3, #4 - 8005812: 60fb str r3, [r7, #12] + 800584a: 68fb ldr r3, [r7, #12] + 800584c: 3b04 subs r3, #4 + 800584e: 60fb str r3, [r7, #12] *pxTopOfStack = ( StackType_t ) portTASK_RETURN_ADDRESS; /* LR */ - 8005814: 4a0c ldr r2, [pc, #48] ; (8005848 ) - 8005816: 68fb ldr r3, [r7, #12] - 8005818: 601a str r2, [r3, #0] + 8005850: 4a0c ldr r2, [pc, #48] ; (8005884 ) + 8005852: 68fb ldr r3, [r7, #12] + 8005854: 601a str r2, [r3, #0] /* Save code space by skipping register initialisation. */ pxTopOfStack -= 5; /* R12, R3, R2 and R1. */ - 800581a: 68fb ldr r3, [r7, #12] - 800581c: 3b14 subs r3, #20 - 800581e: 60fb str r3, [r7, #12] + 8005856: 68fb ldr r3, [r7, #12] + 8005858: 3b14 subs r3, #20 + 800585a: 60fb str r3, [r7, #12] *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */ - 8005820: 687a ldr r2, [r7, #4] - 8005822: 68fb ldr r3, [r7, #12] - 8005824: 601a str r2, [r3, #0] + 800585c: 687a ldr r2, [r7, #4] + 800585e: 68fb ldr r3, [r7, #12] + 8005860: 601a str r2, [r3, #0] /* A save method is being used that requires each task to maintain its own exec return value. */ pxTopOfStack--; - 8005826: 68fb ldr r3, [r7, #12] - 8005828: 3b04 subs r3, #4 - 800582a: 60fb str r3, [r7, #12] + 8005862: 68fb ldr r3, [r7, #12] + 8005864: 3b04 subs r3, #4 + 8005866: 60fb str r3, [r7, #12] *pxTopOfStack = portINITIAL_EXC_RETURN; - 800582c: 68fb ldr r3, [r7, #12] - 800582e: f06f 0202 mvn.w r2, #2 - 8005832: 601a str r2, [r3, #0] + 8005868: 68fb ldr r3, [r7, #12] + 800586a: f06f 0202 mvn.w r2, #2 + 800586e: 601a str r2, [r3, #0] pxTopOfStack -= 8; /* R11, R10, R9, R8, R7, R6, R5 and R4. */ - 8005834: 68fb ldr r3, [r7, #12] - 8005836: 3b20 subs r3, #32 - 8005838: 60fb str r3, [r7, #12] + 8005870: 68fb ldr r3, [r7, #12] + 8005872: 3b20 subs r3, #32 + 8005874: 60fb str r3, [r7, #12] return pxTopOfStack; - 800583a: 68fb ldr r3, [r7, #12] + 8005876: 68fb ldr r3, [r7, #12] } - 800583c: 4618 mov r0, r3 - 800583e: 3714 adds r7, #20 - 8005840: 46bd mov sp, r7 - 8005842: f85d 7b04 ldr.w r7, [sp], #4 - 8005846: 4770 bx lr - 8005848: 0800584d .word 0x0800584d + 8005878: 4618 mov r0, r3 + 800587a: 3714 adds r7, #20 + 800587c: 46bd mov sp, r7 + 800587e: f85d 7b04 ldr.w r7, [sp], #4 + 8005882: 4770 bx lr + 8005884: 08005889 .word 0x08005889 -0800584c : +08005888 : /*-----------------------------------------------------------*/ static void prvTaskExitError( void ) { - 800584c: b480 push {r7} - 800584e: b085 sub sp, #20 - 8005850: af00 add r7, sp, #0 + 8005888: b480 push {r7} + 800588a: b085 sub sp, #20 + 800588c: af00 add r7, sp, #0 volatile uint32_t ulDummy = 0; - 8005852: 2300 movs r3, #0 - 8005854: 607b str r3, [r7, #4] + 800588e: 2300 movs r3, #0 + 8005890: 607b str r3, [r7, #4] its caller as there is nothing to return to. If a task wants to exit it should instead call vTaskDelete( NULL ). Artificially force an assert() to be triggered if configASSERT() is defined, then stop here so application writers can catch the error. */ configASSERT( uxCriticalNesting == ~0UL ); - 8005856: 4b12 ldr r3, [pc, #72] ; (80058a0 ) - 8005858: 681b ldr r3, [r3, #0] - 800585a: f1b3 3fff cmp.w r3, #4294967295 - 800585e: d00a beq.n 8005876 + 8005892: 4b12 ldr r3, [pc, #72] ; (80058dc ) + 8005894: 681b ldr r3, [r3, #0] + 8005896: f1b3 3fff cmp.w r3, #4294967295 + 800589a: d00a beq.n 80058b2 __asm volatile - 8005860: f04f 0350 mov.w r3, #80 ; 0x50 - 8005864: f383 8811 msr BASEPRI, r3 - 8005868: f3bf 8f6f isb sy - 800586c: f3bf 8f4f dsb sy - 8005870: 60fb str r3, [r7, #12] + 800589c: f04f 0350 mov.w r3, #80 ; 0x50 + 80058a0: f383 8811 msr BASEPRI, r3 + 80058a4: f3bf 8f6f isb sy + 80058a8: f3bf 8f4f dsb sy + 80058ac: 60fb str r3, [r7, #12] } - 8005872: bf00 nop - 8005874: e7fe b.n 8005874 + 80058ae: bf00 nop + 80058b0: e7fe b.n 80058b0 __asm volatile - 8005876: f04f 0350 mov.w r3, #80 ; 0x50 - 800587a: f383 8811 msr BASEPRI, r3 - 800587e: f3bf 8f6f isb sy - 8005882: f3bf 8f4f dsb sy - 8005886: 60bb str r3, [r7, #8] + 80058b2: f04f 0350 mov.w r3, #80 ; 0x50 + 80058b6: f383 8811 msr BASEPRI, r3 + 80058ba: f3bf 8f6f isb sy + 80058be: f3bf 8f4f dsb sy + 80058c2: 60bb str r3, [r7, #8] } - 8005888: bf00 nop + 80058c4: bf00 nop portDISABLE_INTERRUPTS(); while( ulDummy == 0 ) - 800588a: bf00 nop - 800588c: 687b ldr r3, [r7, #4] - 800588e: 2b00 cmp r3, #0 - 8005890: d0fc beq.n 800588c + 80058c6: bf00 nop + 80058c8: 687b ldr r3, [r7, #4] + 80058ca: 2b00 cmp r3, #0 + 80058cc: d0fc beq.n 80058c8 about code appearing after this function is called - making ulDummy volatile makes the compiler think the function could return and therefore not output an 'unreachable code' warning for code that appears after it. */ } } - 8005892: bf00 nop - 8005894: bf00 nop - 8005896: 3714 adds r7, #20 - 8005898: 46bd mov sp, r7 - 800589a: f85d 7b04 ldr.w r7, [sp], #4 - 800589e: 4770 bx lr - 80058a0: 2000000c .word 0x2000000c - ... + 80058ce: bf00 nop + 80058d0: bf00 nop + 80058d2: 3714 adds r7, #20 + 80058d4: 46bd mov sp, r7 + 80058d6: f85d 7b04 ldr.w r7, [sp], #4 + 80058da: 4770 bx lr + 80058dc: 2000000c .word 0x2000000c -080058b0 : +080058e0 : /*-----------------------------------------------------------*/ void vPortSVCHandler( void ) { __asm volatile ( - 80058b0: 4b07 ldr r3, [pc, #28] ; (80058d0 ) - 80058b2: 6819 ldr r1, [r3, #0] - 80058b4: 6808 ldr r0, [r1, #0] - 80058b6: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 80058ba: f380 8809 msr PSP, r0 - 80058be: f3bf 8f6f isb sy - 80058c2: f04f 0000 mov.w r0, #0 - 80058c6: f380 8811 msr BASEPRI, r0 - 80058ca: 4770 bx lr - 80058cc: f3af 8000 nop.w + 80058e0: 4b07 ldr r3, [pc, #28] ; (8005900 ) + 80058e2: 6819 ldr r1, [r3, #0] + 80058e4: 6808 ldr r0, [r1, #0] + 80058e6: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 80058ea: f380 8809 msr PSP, r0 + 80058ee: f3bf 8f6f isb sy + 80058f2: f04f 0000 mov.w r0, #0 + 80058f6: f380 8811 msr BASEPRI, r0 + 80058fa: 4770 bx lr + 80058fc: f3af 8000 nop.w -080058d0 : - 80058d0: 20000910 .word 0x20000910 +08005900 : + 8005900: 20000910 .word 0x20000910 " bx r14 \n" " \n" " .align 4 \n" "pxCurrentTCBConst2: .word pxCurrentTCB \n" ); } - 80058d4: bf00 nop - 80058d6: bf00 nop + 8005904: bf00 nop + 8005906: bf00 nop -080058d8 : +08005908 : { /* Start the first task. This also clears the bit that indicates the FPU is in use in case the FPU was used before the scheduler was started - which would otherwise result in the unnecessary leaving of space in the SVC stack for lazy saving of FPU registers. */ __asm volatile( - 80058d8: 4808 ldr r0, [pc, #32] ; (80058fc ) - 80058da: 6800 ldr r0, [r0, #0] - 80058dc: 6800 ldr r0, [r0, #0] - 80058de: f380 8808 msr MSP, r0 - 80058e2: f04f 0000 mov.w r0, #0 - 80058e6: f380 8814 msr CONTROL, r0 - 80058ea: b662 cpsie i - 80058ec: b661 cpsie f - 80058ee: f3bf 8f4f dsb sy - 80058f2: f3bf 8f6f isb sy - 80058f6: df00 svc 0 - 80058f8: bf00 nop + 8005908: 4808 ldr r0, [pc, #32] ; (800592c ) + 800590a: 6800 ldr r0, [r0, #0] + 800590c: 6800 ldr r0, [r0, #0] + 800590e: f380 8808 msr MSP, r0 + 8005912: f04f 0000 mov.w r0, #0 + 8005916: f380 8814 msr CONTROL, r0 + 800591a: b662 cpsie i + 800591c: b661 cpsie f + 800591e: f3bf 8f4f dsb sy + 8005922: f3bf 8f6f isb sy + 8005926: df00 svc 0 + 8005928: bf00 nop " dsb \n" " isb \n" " svc 0 \n" /* System call to start first task. */ " nop \n" ); } - 80058fa: bf00 nop - 80058fc: e000ed08 .word 0xe000ed08 + 800592a: bf00 nop + 800592c: e000ed08 .word 0xe000ed08 -08005900 : +08005930 : /* * See header file for description. */ BaseType_t xPortStartScheduler( void ) { - 8005900: b580 push {r7, lr} - 8005902: b086 sub sp, #24 - 8005904: af00 add r7, sp, #0 + 8005930: b580 push {r7, lr} + 8005932: b086 sub sp, #24 + 8005934: af00 add r7, sp, #0 configASSERT( configMAX_SYSCALL_INTERRUPT_PRIORITY ); /* This port can be used on all revisions of the Cortex-M7 core other than the r0p1 parts. r0p1 parts should use the port from the /source/portable/GCC/ARM_CM7/r0p1 directory. */ configASSERT( portCPUID != portCORTEX_M7_r0p1_ID ); - 8005906: 4b46 ldr r3, [pc, #280] ; (8005a20 ) - 8005908: 681b ldr r3, [r3, #0] - 800590a: 4a46 ldr r2, [pc, #280] ; (8005a24 ) - 800590c: 4293 cmp r3, r2 - 800590e: d10a bne.n 8005926 + 8005936: 4b46 ldr r3, [pc, #280] ; (8005a50 ) + 8005938: 681b ldr r3, [r3, #0] + 800593a: 4a46 ldr r2, [pc, #280] ; (8005a54 ) + 800593c: 4293 cmp r3, r2 + 800593e: d10a bne.n 8005956 __asm volatile - 8005910: f04f 0350 mov.w r3, #80 ; 0x50 - 8005914: f383 8811 msr BASEPRI, r3 - 8005918: f3bf 8f6f isb sy - 800591c: f3bf 8f4f dsb sy - 8005920: 613b str r3, [r7, #16] + 8005940: f04f 0350 mov.w r3, #80 ; 0x50 + 8005944: f383 8811 msr BASEPRI, r3 + 8005948: f3bf 8f6f isb sy + 800594c: f3bf 8f4f dsb sy + 8005950: 613b str r3, [r7, #16] } - 8005922: bf00 nop - 8005924: e7fe b.n 8005924 + 8005952: bf00 nop + 8005954: e7fe b.n 8005954 configASSERT( portCPUID != portCORTEX_M7_r0p0_ID ); - 8005926: 4b3e ldr r3, [pc, #248] ; (8005a20 ) - 8005928: 681b ldr r3, [r3, #0] - 800592a: 4a3f ldr r2, [pc, #252] ; (8005a28 ) - 800592c: 4293 cmp r3, r2 - 800592e: d10a bne.n 8005946 + 8005956: 4b3e ldr r3, [pc, #248] ; (8005a50 ) + 8005958: 681b ldr r3, [r3, #0] + 800595a: 4a3f ldr r2, [pc, #252] ; (8005a58 ) + 800595c: 4293 cmp r3, r2 + 800595e: d10a bne.n 8005976 __asm volatile - 8005930: f04f 0350 mov.w r3, #80 ; 0x50 - 8005934: f383 8811 msr BASEPRI, r3 - 8005938: f3bf 8f6f isb sy - 800593c: f3bf 8f4f dsb sy - 8005940: 60fb str r3, [r7, #12] + 8005960: f04f 0350 mov.w r3, #80 ; 0x50 + 8005964: f383 8811 msr BASEPRI, r3 + 8005968: f3bf 8f6f isb sy + 800596c: f3bf 8f4f dsb sy + 8005970: 60fb str r3, [r7, #12] } - 8005942: bf00 nop - 8005944: e7fe b.n 8005944 + 8005972: bf00 nop + 8005974: e7fe b.n 8005974 #if( configASSERT_DEFINED == 1 ) { volatile uint32_t ulOriginalPriority; volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER ); - 8005946: 4b39 ldr r3, [pc, #228] ; (8005a2c ) - 8005948: 617b str r3, [r7, #20] + 8005976: 4b39 ldr r3, [pc, #228] ; (8005a5c ) + 8005978: 617b str r3, [r7, #20] functions can be called. ISR safe functions are those that end in "FromISR". FreeRTOS maintains separate thread and ISR API functions to ensure interrupt entry is as fast and simple as possible. Save the interrupt priority value that is about to be clobbered. */ ulOriginalPriority = *pucFirstUserPriorityRegister; - 800594a: 697b ldr r3, [r7, #20] - 800594c: 781b ldrb r3, [r3, #0] - 800594e: b2db uxtb r3, r3 - 8005950: 607b str r3, [r7, #4] + 800597a: 697b ldr r3, [r7, #20] + 800597c: 781b ldrb r3, [r3, #0] + 800597e: b2db uxtb r3, r3 + 8005980: 607b str r3, [r7, #4] /* Determine the number of priority bits available. First write to all possible bits. */ *pucFirstUserPriorityRegister = portMAX_8_BIT_VALUE; - 8005952: 697b ldr r3, [r7, #20] - 8005954: 22ff movs r2, #255 ; 0xff - 8005956: 701a strb r2, [r3, #0] + 8005982: 697b ldr r3, [r7, #20] + 8005984: 22ff movs r2, #255 ; 0xff + 8005986: 701a strb r2, [r3, #0] /* Read the value back to see how many bits stuck. */ ucMaxPriorityValue = *pucFirstUserPriorityRegister; - 8005958: 697b ldr r3, [r7, #20] - 800595a: 781b ldrb r3, [r3, #0] - 800595c: b2db uxtb r3, r3 - 800595e: 70fb strb r3, [r7, #3] + 8005988: 697b ldr r3, [r7, #20] + 800598a: 781b ldrb r3, [r3, #0] + 800598c: b2db uxtb r3, r3 + 800598e: 70fb strb r3, [r7, #3] /* Use the same mask on the maximum system call priority. */ ucMaxSysCallPriority = configMAX_SYSCALL_INTERRUPT_PRIORITY & ucMaxPriorityValue; - 8005960: 78fb ldrb r3, [r7, #3] - 8005962: b2db uxtb r3, r3 - 8005964: f003 0350 and.w r3, r3, #80 ; 0x50 - 8005968: b2da uxtb r2, r3 - 800596a: 4b31 ldr r3, [pc, #196] ; (8005a30 ) - 800596c: 701a strb r2, [r3, #0] + 8005990: 78fb ldrb r3, [r7, #3] + 8005992: b2db uxtb r3, r3 + 8005994: f003 0350 and.w r3, r3, #80 ; 0x50 + 8005998: b2da uxtb r2, r3 + 800599a: 4b31 ldr r3, [pc, #196] ; (8005a60 ) + 800599c: 701a strb r2, [r3, #0] /* Calculate the maximum acceptable priority group value for the number of bits read back. */ ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS; - 800596e: 4b31 ldr r3, [pc, #196] ; (8005a34 ) - 8005970: 2207 movs r2, #7 - 8005972: 601a str r2, [r3, #0] + 800599e: 4b31 ldr r3, [pc, #196] ; (8005a64 ) + 80059a0: 2207 movs r2, #7 + 80059a2: 601a str r2, [r3, #0] while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE ) - 8005974: e009 b.n 800598a + 80059a4: e009 b.n 80059ba { ulMaxPRIGROUPValue--; - 8005976: 4b2f ldr r3, [pc, #188] ; (8005a34 ) - 8005978: 681b ldr r3, [r3, #0] - 800597a: 3b01 subs r3, #1 - 800597c: 4a2d ldr r2, [pc, #180] ; (8005a34 ) - 800597e: 6013 str r3, [r2, #0] + 80059a6: 4b2f ldr r3, [pc, #188] ; (8005a64 ) + 80059a8: 681b ldr r3, [r3, #0] + 80059aa: 3b01 subs r3, #1 + 80059ac: 4a2d ldr r2, [pc, #180] ; (8005a64 ) + 80059ae: 6013 str r3, [r2, #0] ucMaxPriorityValue <<= ( uint8_t ) 0x01; - 8005980: 78fb ldrb r3, [r7, #3] - 8005982: b2db uxtb r3, r3 - 8005984: 005b lsls r3, r3, #1 - 8005986: b2db uxtb r3, r3 - 8005988: 70fb strb r3, [r7, #3] + 80059b0: 78fb ldrb r3, [r7, #3] + 80059b2: b2db uxtb r3, r3 + 80059b4: 005b lsls r3, r3, #1 + 80059b6: b2db uxtb r3, r3 + 80059b8: 70fb strb r3, [r7, #3] while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE ) - 800598a: 78fb ldrb r3, [r7, #3] - 800598c: b2db uxtb r3, r3 - 800598e: f003 0380 and.w r3, r3, #128 ; 0x80 - 8005992: 2b80 cmp r3, #128 ; 0x80 - 8005994: d0ef beq.n 8005976 + 80059ba: 78fb ldrb r3, [r7, #3] + 80059bc: b2db uxtb r3, r3 + 80059be: f003 0380 and.w r3, r3, #128 ; 0x80 + 80059c2: 2b80 cmp r3, #128 ; 0x80 + 80059c4: d0ef beq.n 80059a6 #ifdef configPRIO_BITS { /* Check the FreeRTOS configuration that defines the number of priority bits matches the number of priority bits actually queried from the hardware. */ configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == configPRIO_BITS ); - 8005996: 4b27 ldr r3, [pc, #156] ; (8005a34 ) - 8005998: 681b ldr r3, [r3, #0] - 800599a: f1c3 0307 rsb r3, r3, #7 - 800599e: 2b04 cmp r3, #4 - 80059a0: d00a beq.n 80059b8 + 80059c6: 4b27 ldr r3, [pc, #156] ; (8005a64 ) + 80059c8: 681b ldr r3, [r3, #0] + 80059ca: f1c3 0307 rsb r3, r3, #7 + 80059ce: 2b04 cmp r3, #4 + 80059d0: d00a beq.n 80059e8 __asm volatile - 80059a2: f04f 0350 mov.w r3, #80 ; 0x50 - 80059a6: f383 8811 msr BASEPRI, r3 - 80059aa: f3bf 8f6f isb sy - 80059ae: f3bf 8f4f dsb sy - 80059b2: 60bb str r3, [r7, #8] + 80059d2: f04f 0350 mov.w r3, #80 ; 0x50 + 80059d6: f383 8811 msr BASEPRI, r3 + 80059da: f3bf 8f6f isb sy + 80059de: f3bf 8f4f dsb sy + 80059e2: 60bb str r3, [r7, #8] } - 80059b4: bf00 nop - 80059b6: e7fe b.n 80059b6 + 80059e4: bf00 nop + 80059e6: e7fe b.n 80059e6 } #endif /* Shift the priority group value back to its position within the AIRCR register. */ ulMaxPRIGROUPValue <<= portPRIGROUP_SHIFT; - 80059b8: 4b1e ldr r3, [pc, #120] ; (8005a34 ) - 80059ba: 681b ldr r3, [r3, #0] - 80059bc: 021b lsls r3, r3, #8 - 80059be: 4a1d ldr r2, [pc, #116] ; (8005a34 ) - 80059c0: 6013 str r3, [r2, #0] + 80059e8: 4b1e ldr r3, [pc, #120] ; (8005a64 ) + 80059ea: 681b ldr r3, [r3, #0] + 80059ec: 021b lsls r3, r3, #8 + 80059ee: 4a1d ldr r2, [pc, #116] ; (8005a64 ) + 80059f0: 6013 str r3, [r2, #0] ulMaxPRIGROUPValue &= portPRIORITY_GROUP_MASK; - 80059c2: 4b1c ldr r3, [pc, #112] ; (8005a34 ) - 80059c4: 681b ldr r3, [r3, #0] - 80059c6: f403 63e0 and.w r3, r3, #1792 ; 0x700 - 80059ca: 4a1a ldr r2, [pc, #104] ; (8005a34 ) - 80059cc: 6013 str r3, [r2, #0] + 80059f2: 4b1c ldr r3, [pc, #112] ; (8005a64 ) + 80059f4: 681b ldr r3, [r3, #0] + 80059f6: f403 63e0 and.w r3, r3, #1792 ; 0x700 + 80059fa: 4a1a ldr r2, [pc, #104] ; (8005a64 ) + 80059fc: 6013 str r3, [r2, #0] /* Restore the clobbered interrupt priority register to its original value. */ *pucFirstUserPriorityRegister = ulOriginalPriority; - 80059ce: 687b ldr r3, [r7, #4] - 80059d0: b2da uxtb r2, r3 - 80059d2: 697b ldr r3, [r7, #20] - 80059d4: 701a strb r2, [r3, #0] + 80059fe: 687b ldr r3, [r7, #4] + 8005a00: b2da uxtb r2, r3 + 8005a02: 697b ldr r3, [r7, #20] + 8005a04: 701a strb r2, [r3, #0] } #endif /* conifgASSERT_DEFINED */ /* Make PendSV and SysTick the lowest priority interrupts. */ portNVIC_SYSPRI2_REG |= portNVIC_PENDSV_PRI; - 80059d6: 4b18 ldr r3, [pc, #96] ; (8005a38 ) - 80059d8: 681b ldr r3, [r3, #0] - 80059da: 4a17 ldr r2, [pc, #92] ; (8005a38 ) - 80059dc: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 - 80059e0: 6013 str r3, [r2, #0] + 8005a06: 4b18 ldr r3, [pc, #96] ; (8005a68 ) + 8005a08: 681b ldr r3, [r3, #0] + 8005a0a: 4a17 ldr r2, [pc, #92] ; (8005a68 ) + 8005a0c: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 + 8005a10: 6013 str r3, [r2, #0] portNVIC_SYSPRI2_REG |= portNVIC_SYSTICK_PRI; - 80059e2: 4b15 ldr r3, [pc, #84] ; (8005a38 ) - 80059e4: 681b ldr r3, [r3, #0] - 80059e6: 4a14 ldr r2, [pc, #80] ; (8005a38 ) - 80059e8: f043 4370 orr.w r3, r3, #4026531840 ; 0xf0000000 - 80059ec: 6013 str r3, [r2, #0] + 8005a12: 4b15 ldr r3, [pc, #84] ; (8005a68 ) + 8005a14: 681b ldr r3, [r3, #0] + 8005a16: 4a14 ldr r2, [pc, #80] ; (8005a68 ) + 8005a18: f043 4370 orr.w r3, r3, #4026531840 ; 0xf0000000 + 8005a1c: 6013 str r3, [r2, #0] /* Start the timer that generates the tick ISR. Interrupts are disabled here already. */ vPortSetupTimerInterrupt(); - 80059ee: f000 f8dd bl 8005bac + 8005a1e: f000 f8dd bl 8005bdc /* Initialise the critical nesting count ready for the first task. */ uxCriticalNesting = 0; - 80059f2: 4b12 ldr r3, [pc, #72] ; (8005a3c ) - 80059f4: 2200 movs r2, #0 - 80059f6: 601a str r2, [r3, #0] + 8005a22: 4b12 ldr r3, [pc, #72] ; (8005a6c ) + 8005a24: 2200 movs r2, #0 + 8005a26: 601a str r2, [r3, #0] /* Ensure the VFP is enabled - it should be anyway. */ vPortEnableVFP(); - 80059f8: f000 f8fc bl 8005bf4 + 8005a28: f000 f8fc bl 8005c24 /* Lazy save always. */ *( portFPCCR ) |= portASPEN_AND_LSPEN_BITS; - 80059fc: 4b10 ldr r3, [pc, #64] ; (8005a40 ) - 80059fe: 681b ldr r3, [r3, #0] - 8005a00: 4a0f ldr r2, [pc, #60] ; (8005a40 ) - 8005a02: f043 4340 orr.w r3, r3, #3221225472 ; 0xc0000000 - 8005a06: 6013 str r3, [r2, #0] + 8005a2c: 4b10 ldr r3, [pc, #64] ; (8005a70 ) + 8005a2e: 681b ldr r3, [r3, #0] + 8005a30: 4a0f ldr r2, [pc, #60] ; (8005a70 ) + 8005a32: f043 4340 orr.w r3, r3, #3221225472 ; 0xc0000000 + 8005a36: 6013 str r3, [r2, #0] /* Start the first task. */ prvPortStartFirstTask(); - 8005a08: f7ff ff66 bl 80058d8 + 8005a38: f7ff ff66 bl 8005908 exit error function to prevent compiler warnings about a static function not being called in the case that the application writer overrides this functionality by defining configTASK_RETURN_ADDRESS. Call vTaskSwitchContext() so link time optimisation does not remove the symbol. */ vTaskSwitchContext(); - 8005a0c: f7ff f846 bl 8004a9c + 8005a3c: f7ff f84c bl 8004ad8 prvTaskExitError(); - 8005a10: f7ff ff1c bl 800584c + 8005a40: f7ff ff22 bl 8005888 /* Should not get here! */ return 0; - 8005a14: 2300 movs r3, #0 + 8005a44: 2300 movs r3, #0 } - 8005a16: 4618 mov r0, r3 - 8005a18: 3718 adds r7, #24 - 8005a1a: 46bd mov sp, r7 - 8005a1c: bd80 pop {r7, pc} - 8005a1e: bf00 nop - 8005a20: e000ed00 .word 0xe000ed00 - 8005a24: 410fc271 .word 0x410fc271 - 8005a28: 410fc270 .word 0x410fc270 - 8005a2c: e000e400 .word 0xe000e400 - 8005a30: 20000f3c .word 0x20000f3c - 8005a34: 20000f40 .word 0x20000f40 - 8005a38: e000ed20 .word 0xe000ed20 - 8005a3c: 2000000c .word 0x2000000c - 8005a40: e000ef34 .word 0xe000ef34 + 8005a46: 4618 mov r0, r3 + 8005a48: 3718 adds r7, #24 + 8005a4a: 46bd mov sp, r7 + 8005a4c: bd80 pop {r7, pc} + 8005a4e: bf00 nop + 8005a50: e000ed00 .word 0xe000ed00 + 8005a54: 410fc271 .word 0x410fc271 + 8005a58: 410fc270 .word 0x410fc270 + 8005a5c: e000e400 .word 0xe000e400 + 8005a60: 20000f3c .word 0x20000f3c + 8005a64: 20000f40 .word 0x20000f40 + 8005a68: e000ed20 .word 0xe000ed20 + 8005a6c: 2000000c .word 0x2000000c + 8005a70: e000ef34 .word 0xe000ef34 -08005a44 : +08005a74 : configASSERT( uxCriticalNesting == 1000UL ); } /*-----------------------------------------------------------*/ void vPortEnterCritical( void ) { - 8005a44: b480 push {r7} - 8005a46: b083 sub sp, #12 - 8005a48: af00 add r7, sp, #0 + 8005a74: b480 push {r7} + 8005a76: b083 sub sp, #12 + 8005a78: af00 add r7, sp, #0 __asm volatile - 8005a4a: f04f 0350 mov.w r3, #80 ; 0x50 - 8005a4e: f383 8811 msr BASEPRI, r3 - 8005a52: f3bf 8f6f isb sy - 8005a56: f3bf 8f4f dsb sy - 8005a5a: 607b str r3, [r7, #4] + 8005a7a: f04f 0350 mov.w r3, #80 ; 0x50 + 8005a7e: f383 8811 msr BASEPRI, r3 + 8005a82: f3bf 8f6f isb sy + 8005a86: f3bf 8f4f dsb sy + 8005a8a: 607b str r3, [r7, #4] } - 8005a5c: bf00 nop + 8005a8c: bf00 nop portDISABLE_INTERRUPTS(); uxCriticalNesting++; - 8005a5e: 4b0f ldr r3, [pc, #60] ; (8005a9c ) - 8005a60: 681b ldr r3, [r3, #0] - 8005a62: 3301 adds r3, #1 - 8005a64: 4a0d ldr r2, [pc, #52] ; (8005a9c ) - 8005a66: 6013 str r3, [r2, #0] + 8005a8e: 4b0f ldr r3, [pc, #60] ; (8005acc ) + 8005a90: 681b ldr r3, [r3, #0] + 8005a92: 3301 adds r3, #1 + 8005a94: 4a0d ldr r2, [pc, #52] ; (8005acc ) + 8005a96: 6013 str r3, [r2, #0] /* This is not the interrupt safe version of the enter critical function so assert() if it is being called from an interrupt context. Only API functions that end in "FromISR" can be used in an interrupt. Only assert if the critical nesting count is 1 to protect against recursive calls if the assert function also uses a critical section. */ if( uxCriticalNesting == 1 ) - 8005a68: 4b0c ldr r3, [pc, #48] ; (8005a9c ) - 8005a6a: 681b ldr r3, [r3, #0] - 8005a6c: 2b01 cmp r3, #1 - 8005a6e: d10f bne.n 8005a90 + 8005a98: 4b0c ldr r3, [pc, #48] ; (8005acc ) + 8005a9a: 681b ldr r3, [r3, #0] + 8005a9c: 2b01 cmp r3, #1 + 8005a9e: d10f bne.n 8005ac0 { configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 ); - 8005a70: 4b0b ldr r3, [pc, #44] ; (8005aa0 ) - 8005a72: 681b ldr r3, [r3, #0] - 8005a74: b2db uxtb r3, r3 - 8005a76: 2b00 cmp r3, #0 - 8005a78: d00a beq.n 8005a90 + 8005aa0: 4b0b ldr r3, [pc, #44] ; (8005ad0 ) + 8005aa2: 681b ldr r3, [r3, #0] + 8005aa4: b2db uxtb r3, r3 + 8005aa6: 2b00 cmp r3, #0 + 8005aa8: d00a beq.n 8005ac0 __asm volatile - 8005a7a: f04f 0350 mov.w r3, #80 ; 0x50 - 8005a7e: f383 8811 msr BASEPRI, r3 - 8005a82: f3bf 8f6f isb sy - 8005a86: f3bf 8f4f dsb sy - 8005a8a: 603b str r3, [r7, #0] + 8005aaa: f04f 0350 mov.w r3, #80 ; 0x50 + 8005aae: f383 8811 msr BASEPRI, r3 + 8005ab2: f3bf 8f6f isb sy + 8005ab6: f3bf 8f4f dsb sy + 8005aba: 603b str r3, [r7, #0] } - 8005a8c: bf00 nop - 8005a8e: e7fe b.n 8005a8e + 8005abc: bf00 nop + 8005abe: e7fe b.n 8005abe } } - 8005a90: bf00 nop - 8005a92: 370c adds r7, #12 - 8005a94: 46bd mov sp, r7 - 8005a96: f85d 7b04 ldr.w r7, [sp], #4 - 8005a9a: 4770 bx lr - 8005a9c: 2000000c .word 0x2000000c - 8005aa0: e000ed04 .word 0xe000ed04 + 8005ac0: bf00 nop + 8005ac2: 370c adds r7, #12 + 8005ac4: 46bd mov sp, r7 + 8005ac6: f85d 7b04 ldr.w r7, [sp], #4 + 8005aca: 4770 bx lr + 8005acc: 2000000c .word 0x2000000c + 8005ad0: e000ed04 .word 0xe000ed04 -08005aa4 : +08005ad4 : /*-----------------------------------------------------------*/ void vPortExitCritical( void ) { - 8005aa4: b480 push {r7} - 8005aa6: b083 sub sp, #12 - 8005aa8: af00 add r7, sp, #0 + 8005ad4: b480 push {r7} + 8005ad6: b083 sub sp, #12 + 8005ad8: af00 add r7, sp, #0 configASSERT( uxCriticalNesting ); - 8005aaa: 4b12 ldr r3, [pc, #72] ; (8005af4 ) - 8005aac: 681b ldr r3, [r3, #0] - 8005aae: 2b00 cmp r3, #0 - 8005ab0: d10a bne.n 8005ac8 + 8005ada: 4b12 ldr r3, [pc, #72] ; (8005b24 ) + 8005adc: 681b ldr r3, [r3, #0] + 8005ade: 2b00 cmp r3, #0 + 8005ae0: d10a bne.n 8005af8 __asm volatile - 8005ab2: f04f 0350 mov.w r3, #80 ; 0x50 - 8005ab6: f383 8811 msr BASEPRI, r3 - 8005aba: f3bf 8f6f isb sy - 8005abe: f3bf 8f4f dsb sy - 8005ac2: 607b str r3, [r7, #4] + 8005ae2: f04f 0350 mov.w r3, #80 ; 0x50 + 8005ae6: f383 8811 msr BASEPRI, r3 + 8005aea: f3bf 8f6f isb sy + 8005aee: f3bf 8f4f dsb sy + 8005af2: 607b str r3, [r7, #4] } - 8005ac4: bf00 nop - 8005ac6: e7fe b.n 8005ac6 + 8005af4: bf00 nop + 8005af6: e7fe b.n 8005af6 uxCriticalNesting--; - 8005ac8: 4b0a ldr r3, [pc, #40] ; (8005af4 ) - 8005aca: 681b ldr r3, [r3, #0] - 8005acc: 3b01 subs r3, #1 - 8005ace: 4a09 ldr r2, [pc, #36] ; (8005af4 ) - 8005ad0: 6013 str r3, [r2, #0] + 8005af8: 4b0a ldr r3, [pc, #40] ; (8005b24 ) + 8005afa: 681b ldr r3, [r3, #0] + 8005afc: 3b01 subs r3, #1 + 8005afe: 4a09 ldr r2, [pc, #36] ; (8005b24 ) + 8005b00: 6013 str r3, [r2, #0] if( uxCriticalNesting == 0 ) - 8005ad2: 4b08 ldr r3, [pc, #32] ; (8005af4 ) - 8005ad4: 681b ldr r3, [r3, #0] - 8005ad6: 2b00 cmp r3, #0 - 8005ad8: d105 bne.n 8005ae6 - 8005ada: 2300 movs r3, #0 - 8005adc: 603b str r3, [r7, #0] + 8005b02: 4b08 ldr r3, [pc, #32] ; (8005b24 ) + 8005b04: 681b ldr r3, [r3, #0] + 8005b06: 2b00 cmp r3, #0 + 8005b08: d105 bne.n 8005b16 + 8005b0a: 2300 movs r3, #0 + 8005b0c: 603b str r3, [r7, #0] __asm volatile - 8005ade: 683b ldr r3, [r7, #0] - 8005ae0: f383 8811 msr BASEPRI, r3 + 8005b0e: 683b ldr r3, [r7, #0] + 8005b10: f383 8811 msr BASEPRI, r3 } - 8005ae4: bf00 nop + 8005b14: bf00 nop { portENABLE_INTERRUPTS(); } } - 8005ae6: bf00 nop - 8005ae8: 370c adds r7, #12 - 8005aea: 46bd mov sp, r7 - 8005aec: f85d 7b04 ldr.w r7, [sp], #4 - 8005af0: 4770 bx lr - 8005af2: bf00 nop - 8005af4: 2000000c .word 0x2000000c + 8005b16: bf00 nop + 8005b18: 370c adds r7, #12 + 8005b1a: 46bd mov sp, r7 + 8005b1c: f85d 7b04 ldr.w r7, [sp], #4 + 8005b20: 4770 bx lr + 8005b22: bf00 nop + 8005b24: 2000000c .word 0x2000000c ... -08005b00 : +08005b30 : void xPortPendSVHandler( void ) { /* This is a naked function. */ __asm volatile - 8005b00: f3ef 8009 mrs r0, PSP - 8005b04: f3bf 8f6f isb sy - 8005b08: 4b15 ldr r3, [pc, #84] ; (8005b60 ) - 8005b0a: 681a ldr r2, [r3, #0] - 8005b0c: f01e 0f10 tst.w lr, #16 - 8005b10: bf08 it eq - 8005b12: ed20 8a10 vstmdbeq r0!, {s16-s31} - 8005b16: e920 4ff0 stmdb r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8005b1a: 6010 str r0, [r2, #0] - 8005b1c: e92d 0009 stmdb sp!, {r0, r3} - 8005b20: f04f 0050 mov.w r0, #80 ; 0x50 - 8005b24: f380 8811 msr BASEPRI, r0 - 8005b28: f3bf 8f4f dsb sy - 8005b2c: f3bf 8f6f isb sy - 8005b30: f7fe ffb4 bl 8004a9c - 8005b34: f04f 0000 mov.w r0, #0 - 8005b38: f380 8811 msr BASEPRI, r0 - 8005b3c: bc09 pop {r0, r3} - 8005b3e: 6819 ldr r1, [r3, #0] - 8005b40: 6808 ldr r0, [r1, #0] - 8005b42: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8005b46: f01e 0f10 tst.w lr, #16 - 8005b4a: bf08 it eq - 8005b4c: ecb0 8a10 vldmiaeq r0!, {s16-s31} - 8005b50: f380 8809 msr PSP, r0 - 8005b54: f3bf 8f6f isb sy - 8005b58: 4770 bx lr - 8005b5a: bf00 nop - 8005b5c: f3af 8000 nop.w + 8005b30: f3ef 8009 mrs r0, PSP + 8005b34: f3bf 8f6f isb sy + 8005b38: 4b15 ldr r3, [pc, #84] ; (8005b90 ) + 8005b3a: 681a ldr r2, [r3, #0] + 8005b3c: f01e 0f10 tst.w lr, #16 + 8005b40: bf08 it eq + 8005b42: ed20 8a10 vstmdbeq r0!, {s16-s31} + 8005b46: e920 4ff0 stmdb r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8005b4a: 6010 str r0, [r2, #0] + 8005b4c: e92d 0009 stmdb sp!, {r0, r3} + 8005b50: f04f 0050 mov.w r0, #80 ; 0x50 + 8005b54: f380 8811 msr BASEPRI, r0 + 8005b58: f3bf 8f4f dsb sy + 8005b5c: f3bf 8f6f isb sy + 8005b60: f7fe ffba bl 8004ad8 + 8005b64: f04f 0000 mov.w r0, #0 + 8005b68: f380 8811 msr BASEPRI, r0 + 8005b6c: bc09 pop {r0, r3} + 8005b6e: 6819 ldr r1, [r3, #0] + 8005b70: 6808 ldr r0, [r1, #0] + 8005b72: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8005b76: f01e 0f10 tst.w lr, #16 + 8005b7a: bf08 it eq + 8005b7c: ecb0 8a10 vldmiaeq r0!, {s16-s31} + 8005b80: f380 8809 msr PSP, r0 + 8005b84: f3bf 8f6f isb sy + 8005b88: 4770 bx lr + 8005b8a: bf00 nop + 8005b8c: f3af 8000 nop.w -08005b60 : - 8005b60: 20000910 .word 0x20000910 +08005b90 : + 8005b90: 20000910 .word 0x20000910 " \n" " .align 4 \n" "pxCurrentTCBConst: .word pxCurrentTCB \n" ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY) ); } - 8005b64: bf00 nop - 8005b66: bf00 nop + 8005b94: bf00 nop + 8005b96: bf00 nop -08005b68 : +08005b98 : /*-----------------------------------------------------------*/ void xPortSysTickHandler( void ) { - 8005b68: b580 push {r7, lr} - 8005b6a: b082 sub sp, #8 - 8005b6c: af00 add r7, sp, #0 + 8005b98: b580 push {r7, lr} + 8005b9a: b082 sub sp, #8 + 8005b9c: af00 add r7, sp, #0 __asm volatile - 8005b6e: f04f 0350 mov.w r3, #80 ; 0x50 - 8005b72: f383 8811 msr BASEPRI, r3 - 8005b76: f3bf 8f6f isb sy - 8005b7a: f3bf 8f4f dsb sy - 8005b7e: 607b str r3, [r7, #4] + 8005b9e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005ba2: f383 8811 msr BASEPRI, r3 + 8005ba6: f3bf 8f6f isb sy + 8005baa: f3bf 8f4f dsb sy + 8005bae: 607b str r3, [r7, #4] } - 8005b80: bf00 nop + 8005bb0: bf00 nop save and then restore the interrupt mask value as its value is already known. */ portDISABLE_INTERRUPTS(); { /* Increment the RTOS tick. */ if( xTaskIncrementTick() != pdFALSE ) - 8005b82: f7fe fed1 bl 8004928 - 8005b86: 4603 mov r3, r0 - 8005b88: 2b00 cmp r3, #0 - 8005b8a: d003 beq.n 8005b94 + 8005bb2: f7fe fed7 bl 8004964 + 8005bb6: 4603 mov r3, r0 + 8005bb8: 2b00 cmp r3, #0 + 8005bba: d003 beq.n 8005bc4 { /* A context switch is required. Context switching is performed in the PendSV interrupt. Pend the PendSV interrupt. */ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; - 8005b8c: 4b06 ldr r3, [pc, #24] ; (8005ba8 ) - 8005b8e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8005b92: 601a str r2, [r3, #0] - 8005b94: 2300 movs r3, #0 - 8005b96: 603b str r3, [r7, #0] + 8005bbc: 4b06 ldr r3, [pc, #24] ; (8005bd8 ) + 8005bbe: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8005bc2: 601a str r2, [r3, #0] + 8005bc4: 2300 movs r3, #0 + 8005bc6: 603b str r3, [r7, #0] __asm volatile - 8005b98: 683b ldr r3, [r7, #0] - 8005b9a: f383 8811 msr BASEPRI, r3 + 8005bc8: 683b ldr r3, [r7, #0] + 8005bca: f383 8811 msr BASEPRI, r3 } - 8005b9e: bf00 nop + 8005bce: bf00 nop } } portENABLE_INTERRUPTS(); } - 8005ba0: bf00 nop - 8005ba2: 3708 adds r7, #8 - 8005ba4: 46bd mov sp, r7 - 8005ba6: bd80 pop {r7, pc} - 8005ba8: e000ed04 .word 0xe000ed04 + 8005bd0: bf00 nop + 8005bd2: 3708 adds r7, #8 + 8005bd4: 46bd mov sp, r7 + 8005bd6: bd80 pop {r7, pc} + 8005bd8: e000ed04 .word 0xe000ed04 -08005bac : +08005bdc : /* * Setup the systick timer to generate the tick interrupts at the required * frequency. */ __attribute__(( weak )) void vPortSetupTimerInterrupt( void ) { - 8005bac: b480 push {r7} - 8005bae: af00 add r7, sp, #0 + 8005bdc: b480 push {r7} + 8005bde: af00 add r7, sp, #0 ulStoppedTimerCompensation = portMISSED_COUNTS_FACTOR / ( configCPU_CLOCK_HZ / configSYSTICK_CLOCK_HZ ); } #endif /* configUSE_TICKLESS_IDLE */ /* Stop and clear the SysTick. */ portNVIC_SYSTICK_CTRL_REG = 0UL; - 8005bb0: 4b0b ldr r3, [pc, #44] ; (8005be0 ) - 8005bb2: 2200 movs r2, #0 - 8005bb4: 601a str r2, [r3, #0] + 8005be0: 4b0b ldr r3, [pc, #44] ; (8005c10 ) + 8005be2: 2200 movs r2, #0 + 8005be4: 601a str r2, [r3, #0] portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL; - 8005bb6: 4b0b ldr r3, [pc, #44] ; (8005be4 ) - 8005bb8: 2200 movs r2, #0 - 8005bba: 601a str r2, [r3, #0] + 8005be6: 4b0b ldr r3, [pc, #44] ; (8005c14 ) + 8005be8: 2200 movs r2, #0 + 8005bea: 601a str r2, [r3, #0] /* Configure SysTick to interrupt at the requested rate. */ portNVIC_SYSTICK_LOAD_REG = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL; - 8005bbc: 4b0a ldr r3, [pc, #40] ; (8005be8 ) - 8005bbe: 681b ldr r3, [r3, #0] - 8005bc0: 4a0a ldr r2, [pc, #40] ; (8005bec ) - 8005bc2: fba2 2303 umull r2, r3, r2, r3 - 8005bc6: 099b lsrs r3, r3, #6 - 8005bc8: 4a09 ldr r2, [pc, #36] ; (8005bf0 ) - 8005bca: 3b01 subs r3, #1 - 8005bcc: 6013 str r3, [r2, #0] + 8005bec: 4b0a ldr r3, [pc, #40] ; (8005c18 ) + 8005bee: 681b ldr r3, [r3, #0] + 8005bf0: 4a0a ldr r2, [pc, #40] ; (8005c1c ) + 8005bf2: fba2 2303 umull r2, r3, r2, r3 + 8005bf6: 099b lsrs r3, r3, #6 + 8005bf8: 4a09 ldr r2, [pc, #36] ; (8005c20 ) + 8005bfa: 3b01 subs r3, #1 + 8005bfc: 6013 str r3, [r2, #0] portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT ); - 8005bce: 4b04 ldr r3, [pc, #16] ; (8005be0 ) - 8005bd0: 2207 movs r2, #7 - 8005bd2: 601a str r2, [r3, #0] + 8005bfe: 4b04 ldr r3, [pc, #16] ; (8005c10 ) + 8005c00: 2207 movs r2, #7 + 8005c02: 601a str r2, [r3, #0] } - 8005bd4: bf00 nop - 8005bd6: 46bd mov sp, r7 - 8005bd8: f85d 7b04 ldr.w r7, [sp], #4 - 8005bdc: 4770 bx lr - 8005bde: bf00 nop - 8005be0: e000e010 .word 0xe000e010 - 8005be4: e000e018 .word 0xe000e018 - 8005be8: 20000000 .word 0x20000000 - 8005bec: 10624dd3 .word 0x10624dd3 - 8005bf0: e000e014 .word 0xe000e014 + 8005c04: bf00 nop + 8005c06: 46bd mov sp, r7 + 8005c08: f85d 7b04 ldr.w r7, [sp], #4 + 8005c0c: 4770 bx lr + 8005c0e: bf00 nop + 8005c10: e000e010 .word 0xe000e010 + 8005c14: e000e018 .word 0xe000e018 + 8005c18: 20000000 .word 0x20000000 + 8005c1c: 10624dd3 .word 0x10624dd3 + 8005c20: e000e014 .word 0xe000e014 -08005bf4 : +08005c24 : /*-----------------------------------------------------------*/ /* This is a naked function. */ static void vPortEnableVFP( void ) { __asm volatile - 8005bf4: f8df 000c ldr.w r0, [pc, #12] ; 8005c04 - 8005bf8: 6801 ldr r1, [r0, #0] - 8005bfa: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 - 8005bfe: 6001 str r1, [r0, #0] - 8005c00: 4770 bx lr + 8005c24: f8df 000c ldr.w r0, [pc, #12] ; 8005c34 + 8005c28: 6801 ldr r1, [r0, #0] + 8005c2a: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 + 8005c2e: 6001 str r1, [r0, #0] + 8005c30: 4770 bx lr " \n" " orr r1, r1, #( 0xf << 20 ) \n" /* Enable CP10 and CP11 coprocessors, then save back. */ " str r1, [r0] \n" " bx r14 " ); } - 8005c02: bf00 nop - 8005c04: e000ed88 .word 0xe000ed88 + 8005c32: bf00 nop + 8005c34: e000ed88 .word 0xe000ed88 -08005c08 : +08005c38 : /*-----------------------------------------------------------*/ #if( configASSERT_DEFINED == 1 ) void vPortValidateInterruptPriority( void ) { - 8005c08: b480 push {r7} - 8005c0a: b085 sub sp, #20 - 8005c0c: af00 add r7, sp, #0 + 8005c38: b480 push {r7} + 8005c3a: b085 sub sp, #20 + 8005c3c: af00 add r7, sp, #0 uint32_t ulCurrentInterrupt; uint8_t ucCurrentPriority; /* Obtain the number of the currently executing interrupt. */ __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) :: "memory" ); - 8005c0e: f3ef 8305 mrs r3, IPSR - 8005c12: 60fb str r3, [r7, #12] + 8005c3e: f3ef 8305 mrs r3, IPSR + 8005c42: 60fb str r3, [r7, #12] /* Is the interrupt number a user defined interrupt? */ if( ulCurrentInterrupt >= portFIRST_USER_INTERRUPT_NUMBER ) - 8005c14: 68fb ldr r3, [r7, #12] - 8005c16: 2b0f cmp r3, #15 - 8005c18: d914 bls.n 8005c44 + 8005c44: 68fb ldr r3, [r7, #12] + 8005c46: 2b0f cmp r3, #15 + 8005c48: d914 bls.n 8005c74 { /* Look up the interrupt's priority. */ ucCurrentPriority = pcInterruptPriorityRegisters[ ulCurrentInterrupt ]; - 8005c1a: 4a17 ldr r2, [pc, #92] ; (8005c78 ) - 8005c1c: 68fb ldr r3, [r7, #12] - 8005c1e: 4413 add r3, r2 - 8005c20: 781b ldrb r3, [r3, #0] - 8005c22: 72fb strb r3, [r7, #11] + 8005c4a: 4a17 ldr r2, [pc, #92] ; (8005ca8 ) + 8005c4c: 68fb ldr r3, [r7, #12] + 8005c4e: 4413 add r3, r2 + 8005c50: 781b ldrb r3, [r3, #0] + 8005c52: 72fb strb r3, [r7, #11] interrupt entry is as fast and simple as possible. The following links provide detailed information: http://www.freertos.org/RTOS-Cortex-M3-M4.html http://www.freertos.org/FAQHelp.html */ configASSERT( ucCurrentPriority >= ucMaxSysCallPriority ); - 8005c24: 4b15 ldr r3, [pc, #84] ; (8005c7c ) - 8005c26: 781b ldrb r3, [r3, #0] - 8005c28: 7afa ldrb r2, [r7, #11] - 8005c2a: 429a cmp r2, r3 - 8005c2c: d20a bcs.n 8005c44 + 8005c54: 4b15 ldr r3, [pc, #84] ; (8005cac ) + 8005c56: 781b ldrb r3, [r3, #0] + 8005c58: 7afa ldrb r2, [r7, #11] + 8005c5a: 429a cmp r2, r3 + 8005c5c: d20a bcs.n 8005c74 __asm volatile - 8005c2e: f04f 0350 mov.w r3, #80 ; 0x50 - 8005c32: f383 8811 msr BASEPRI, r3 - 8005c36: f3bf 8f6f isb sy - 8005c3a: f3bf 8f4f dsb sy - 8005c3e: 607b str r3, [r7, #4] + 8005c5e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005c62: f383 8811 msr BASEPRI, r3 + 8005c66: f3bf 8f6f isb sy + 8005c6a: f3bf 8f4f dsb sy + 8005c6e: 607b str r3, [r7, #4] } - 8005c40: bf00 nop - 8005c42: e7fe b.n 8005c42 + 8005c70: bf00 nop + 8005c72: e7fe b.n 8005c72 configuration then the correct setting can be achieved on all Cortex-M devices by calling NVIC_SetPriorityGrouping( 0 ); before starting the scheduler. Note however that some vendor specific peripheral libraries assume a non-zero priority group setting, in which cases using a value of zero will result in unpredictable behaviour. */ configASSERT( ( portAIRCR_REG & portPRIORITY_GROUP_MASK ) <= ulMaxPRIGROUPValue ); - 8005c44: 4b0e ldr r3, [pc, #56] ; (8005c80 ) - 8005c46: 681b ldr r3, [r3, #0] - 8005c48: f403 62e0 and.w r2, r3, #1792 ; 0x700 - 8005c4c: 4b0d ldr r3, [pc, #52] ; (8005c84 ) - 8005c4e: 681b ldr r3, [r3, #0] - 8005c50: 429a cmp r2, r3 - 8005c52: d90a bls.n 8005c6a + 8005c74: 4b0e ldr r3, [pc, #56] ; (8005cb0 ) + 8005c76: 681b ldr r3, [r3, #0] + 8005c78: f403 62e0 and.w r2, r3, #1792 ; 0x700 + 8005c7c: 4b0d ldr r3, [pc, #52] ; (8005cb4 ) + 8005c7e: 681b ldr r3, [r3, #0] + 8005c80: 429a cmp r2, r3 + 8005c82: d90a bls.n 8005c9a __asm volatile - 8005c54: f04f 0350 mov.w r3, #80 ; 0x50 - 8005c58: f383 8811 msr BASEPRI, r3 - 8005c5c: f3bf 8f6f isb sy - 8005c60: f3bf 8f4f dsb sy - 8005c64: 603b str r3, [r7, #0] + 8005c84: f04f 0350 mov.w r3, #80 ; 0x50 + 8005c88: f383 8811 msr BASEPRI, r3 + 8005c8c: f3bf 8f6f isb sy + 8005c90: f3bf 8f4f dsb sy + 8005c94: 603b str r3, [r7, #0] } - 8005c66: bf00 nop - 8005c68: e7fe b.n 8005c68 + 8005c96: bf00 nop + 8005c98: e7fe b.n 8005c98 } - 8005c6a: bf00 nop - 8005c6c: 3714 adds r7, #20 - 8005c6e: 46bd mov sp, r7 - 8005c70: f85d 7b04 ldr.w r7, [sp], #4 - 8005c74: 4770 bx lr - 8005c76: bf00 nop - 8005c78: e000e3f0 .word 0xe000e3f0 - 8005c7c: 20000f3c .word 0x20000f3c - 8005c80: e000ed0c .word 0xe000ed0c - 8005c84: 20000f40 .word 0x20000f40 + 8005c9a: bf00 nop + 8005c9c: 3714 adds r7, #20 + 8005c9e: 46bd mov sp, r7 + 8005ca0: f85d 7b04 ldr.w r7, [sp], #4 + 8005ca4: 4770 bx lr + 8005ca6: bf00 nop + 8005ca8: e000e3f0 .word 0xe000e3f0 + 8005cac: 20000f3c .word 0x20000f3c + 8005cb0: e000ed0c .word 0xe000ed0c + 8005cb4: 20000f40 .word 0x20000f40 -08005c88 : +08005cb8 : static size_t xBlockAllocatedBit = 0; /*-----------------------------------------------------------*/ void *pvPortMalloc( size_t xWantedSize ) { - 8005c88: b580 push {r7, lr} - 8005c8a: b08a sub sp, #40 ; 0x28 - 8005c8c: af00 add r7, sp, #0 - 8005c8e: 6078 str r0, [r7, #4] + 8005cb8: b580 push {r7, lr} + 8005cba: b08a sub sp, #40 ; 0x28 + 8005cbc: af00 add r7, sp, #0 + 8005cbe: 6078 str r0, [r7, #4] BlockLink_t *pxBlock, *pxPreviousBlock, *pxNewBlockLink; void *pvReturn = NULL; - 8005c90: 2300 movs r3, #0 - 8005c92: 61fb str r3, [r7, #28] + 8005cc0: 2300 movs r3, #0 + 8005cc2: 61fb str r3, [r7, #28] vTaskSuspendAll(); - 8005c94: f7fe fd8c bl 80047b0 + 8005cc4: f7fe fd92 bl 80047ec { /* If this is the first call to malloc then the heap will require initialisation to setup the list of free blocks. */ if( pxEnd == NULL ) - 8005c98: 4b5b ldr r3, [pc, #364] ; (8005e08 ) - 8005c9a: 681b ldr r3, [r3, #0] - 8005c9c: 2b00 cmp r3, #0 - 8005c9e: d101 bne.n 8005ca4 + 8005cc8: 4b5b ldr r3, [pc, #364] ; (8005e38 ) + 8005cca: 681b ldr r3, [r3, #0] + 8005ccc: 2b00 cmp r3, #0 + 8005cce: d101 bne.n 8005cd4 { prvHeapInit(); - 8005ca0: f000 f920 bl 8005ee4 + 8005cd0: f000 f920 bl 8005f14 /* Check the requested block size is not so large that the top bit is set. The top bit of the block size member of the BlockLink_t structure is used to determine who owns the block - the application or the kernel, so it must be free. */ if( ( xWantedSize & xBlockAllocatedBit ) == 0 ) - 8005ca4: 4b59 ldr r3, [pc, #356] ; (8005e0c ) - 8005ca6: 681a ldr r2, [r3, #0] - 8005ca8: 687b ldr r3, [r7, #4] - 8005caa: 4013 ands r3, r2 - 8005cac: 2b00 cmp r3, #0 - 8005cae: f040 8093 bne.w 8005dd8 + 8005cd4: 4b59 ldr r3, [pc, #356] ; (8005e3c ) + 8005cd6: 681a ldr r2, [r3, #0] + 8005cd8: 687b ldr r3, [r7, #4] + 8005cda: 4013 ands r3, r2 + 8005cdc: 2b00 cmp r3, #0 + 8005cde: f040 8093 bne.w 8005e08 { /* The wanted size is increased so it can contain a BlockLink_t structure in addition to the requested amount of bytes. */ if( xWantedSize > 0 ) - 8005cb2: 687b ldr r3, [r7, #4] - 8005cb4: 2b00 cmp r3, #0 - 8005cb6: d01d beq.n 8005cf4 + 8005ce2: 687b ldr r3, [r7, #4] + 8005ce4: 2b00 cmp r3, #0 + 8005ce6: d01d beq.n 8005d24 { xWantedSize += xHeapStructSize; - 8005cb8: 2208 movs r2, #8 - 8005cba: 687b ldr r3, [r7, #4] - 8005cbc: 4413 add r3, r2 - 8005cbe: 607b str r3, [r7, #4] + 8005ce8: 2208 movs r2, #8 + 8005cea: 687b ldr r3, [r7, #4] + 8005cec: 4413 add r3, r2 + 8005cee: 607b str r3, [r7, #4] /* Ensure that blocks are always aligned to the required number of bytes. */ if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 ) - 8005cc0: 687b ldr r3, [r7, #4] - 8005cc2: f003 0307 and.w r3, r3, #7 - 8005cc6: 2b00 cmp r3, #0 - 8005cc8: d014 beq.n 8005cf4 + 8005cf0: 687b ldr r3, [r7, #4] + 8005cf2: f003 0307 and.w r3, r3, #7 + 8005cf6: 2b00 cmp r3, #0 + 8005cf8: d014 beq.n 8005d24 { /* Byte alignment required. */ xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ); - 8005cca: 687b ldr r3, [r7, #4] - 8005ccc: f023 0307 bic.w r3, r3, #7 - 8005cd0: 3308 adds r3, #8 - 8005cd2: 607b str r3, [r7, #4] + 8005cfa: 687b ldr r3, [r7, #4] + 8005cfc: f023 0307 bic.w r3, r3, #7 + 8005d00: 3308 adds r3, #8 + 8005d02: 607b str r3, [r7, #4] configASSERT( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) == 0 ); - 8005cd4: 687b ldr r3, [r7, #4] - 8005cd6: f003 0307 and.w r3, r3, #7 - 8005cda: 2b00 cmp r3, #0 - 8005cdc: d00a beq.n 8005cf4 + 8005d04: 687b ldr r3, [r7, #4] + 8005d06: f003 0307 and.w r3, r3, #7 + 8005d0a: 2b00 cmp r3, #0 + 8005d0c: d00a beq.n 8005d24 __asm volatile - 8005cde: f04f 0350 mov.w r3, #80 ; 0x50 - 8005ce2: f383 8811 msr BASEPRI, r3 - 8005ce6: f3bf 8f6f isb sy - 8005cea: f3bf 8f4f dsb sy - 8005cee: 617b str r3, [r7, #20] + 8005d0e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005d12: f383 8811 msr BASEPRI, r3 + 8005d16: f3bf 8f6f isb sy + 8005d1a: f3bf 8f4f dsb sy + 8005d1e: 617b str r3, [r7, #20] } - 8005cf0: bf00 nop - 8005cf2: e7fe b.n 8005cf2 + 8005d20: bf00 nop + 8005d22: e7fe b.n 8005d22 else { mtCOVERAGE_TEST_MARKER(); } if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) ) - 8005cf4: 687b ldr r3, [r7, #4] - 8005cf6: 2b00 cmp r3, #0 - 8005cf8: d06e beq.n 8005dd8 - 8005cfa: 4b45 ldr r3, [pc, #276] ; (8005e10 ) - 8005cfc: 681b ldr r3, [r3, #0] - 8005cfe: 687a ldr r2, [r7, #4] - 8005d00: 429a cmp r2, r3 - 8005d02: d869 bhi.n 8005dd8 + 8005d24: 687b ldr r3, [r7, #4] + 8005d26: 2b00 cmp r3, #0 + 8005d28: d06e beq.n 8005e08 + 8005d2a: 4b45 ldr r3, [pc, #276] ; (8005e40 ) + 8005d2c: 681b ldr r3, [r3, #0] + 8005d2e: 687a ldr r2, [r7, #4] + 8005d30: 429a cmp r2, r3 + 8005d32: d869 bhi.n 8005e08 { /* Traverse the list from the start (lowest address) block until one of adequate size is found. */ pxPreviousBlock = &xStart; - 8005d04: 4b43 ldr r3, [pc, #268] ; (8005e14 ) - 8005d06: 623b str r3, [r7, #32] + 8005d34: 4b43 ldr r3, [pc, #268] ; (8005e44 ) + 8005d36: 623b str r3, [r7, #32] pxBlock = xStart.pxNextFreeBlock; - 8005d08: 4b42 ldr r3, [pc, #264] ; (8005e14 ) - 8005d0a: 681b ldr r3, [r3, #0] - 8005d0c: 627b str r3, [r7, #36] ; 0x24 + 8005d38: 4b42 ldr r3, [pc, #264] ; (8005e44 ) + 8005d3a: 681b ldr r3, [r3, #0] + 8005d3c: 627b str r3, [r7, #36] ; 0x24 while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) - 8005d0e: e004 b.n 8005d1a + 8005d3e: e004 b.n 8005d4a { pxPreviousBlock = pxBlock; - 8005d10: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d12: 623b str r3, [r7, #32] + 8005d40: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d42: 623b str r3, [r7, #32] pxBlock = pxBlock->pxNextFreeBlock; - 8005d14: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d16: 681b ldr r3, [r3, #0] - 8005d18: 627b str r3, [r7, #36] ; 0x24 + 8005d44: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d46: 681b ldr r3, [r3, #0] + 8005d48: 627b str r3, [r7, #36] ; 0x24 while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) - 8005d1a: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d1c: 685b ldr r3, [r3, #4] - 8005d1e: 687a ldr r2, [r7, #4] - 8005d20: 429a cmp r2, r3 - 8005d22: d903 bls.n 8005d2c - 8005d24: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d26: 681b ldr r3, [r3, #0] - 8005d28: 2b00 cmp r3, #0 - 8005d2a: d1f1 bne.n 8005d10 + 8005d4a: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d4c: 685b ldr r3, [r3, #4] + 8005d4e: 687a ldr r2, [r7, #4] + 8005d50: 429a cmp r2, r3 + 8005d52: d903 bls.n 8005d5c + 8005d54: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d56: 681b ldr r3, [r3, #0] + 8005d58: 2b00 cmp r3, #0 + 8005d5a: d1f1 bne.n 8005d40 } /* If the end marker was reached then a block of adequate size was not found. */ if( pxBlock != pxEnd ) - 8005d2c: 4b36 ldr r3, [pc, #216] ; (8005e08 ) - 8005d2e: 681b ldr r3, [r3, #0] - 8005d30: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005d32: 429a cmp r2, r3 - 8005d34: d050 beq.n 8005dd8 + 8005d5c: 4b36 ldr r3, [pc, #216] ; (8005e38 ) + 8005d5e: 681b ldr r3, [r3, #0] + 8005d60: 6a7a ldr r2, [r7, #36] ; 0x24 + 8005d62: 429a cmp r2, r3 + 8005d64: d050 beq.n 8005e08 { /* Return the memory space pointed to - jumping over the BlockLink_t structure at its start. */ pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + xHeapStructSize ); - 8005d36: 6a3b ldr r3, [r7, #32] - 8005d38: 681b ldr r3, [r3, #0] - 8005d3a: 2208 movs r2, #8 - 8005d3c: 4413 add r3, r2 - 8005d3e: 61fb str r3, [r7, #28] + 8005d66: 6a3b ldr r3, [r7, #32] + 8005d68: 681b ldr r3, [r3, #0] + 8005d6a: 2208 movs r2, #8 + 8005d6c: 4413 add r3, r2 + 8005d6e: 61fb str r3, [r7, #28] /* This block is being returned for use so must be taken out of the list of free blocks. */ pxPreviousBlock->pxNextFreeBlock = pxBlock->pxNextFreeBlock; - 8005d40: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d42: 681a ldr r2, [r3, #0] - 8005d44: 6a3b ldr r3, [r7, #32] - 8005d46: 601a str r2, [r3, #0] + 8005d70: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d72: 681a ldr r2, [r3, #0] + 8005d74: 6a3b ldr r3, [r7, #32] + 8005d76: 601a str r2, [r3, #0] /* If the block is larger than required it can be split into two. */ if( ( pxBlock->xBlockSize - xWantedSize ) > heapMINIMUM_BLOCK_SIZE ) - 8005d48: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d4a: 685a ldr r2, [r3, #4] - 8005d4c: 687b ldr r3, [r7, #4] - 8005d4e: 1ad2 subs r2, r2, r3 - 8005d50: 2308 movs r3, #8 - 8005d52: 005b lsls r3, r3, #1 - 8005d54: 429a cmp r2, r3 - 8005d56: d91f bls.n 8005d98 + 8005d78: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005d7a: 685a ldr r2, [r3, #4] + 8005d7c: 687b ldr r3, [r7, #4] + 8005d7e: 1ad2 subs r2, r2, r3 + 8005d80: 2308 movs r3, #8 + 8005d82: 005b lsls r3, r3, #1 + 8005d84: 429a cmp r2, r3 + 8005d86: d91f bls.n 8005dc8 { /* This block is to be split into two. Create a new block following the number of bytes requested. The void cast is used to prevent byte alignment warnings from the compiler. */ pxNewBlockLink = ( void * ) ( ( ( uint8_t * ) pxBlock ) + xWantedSize ); - 8005d58: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005d5a: 687b ldr r3, [r7, #4] - 8005d5c: 4413 add r3, r2 - 8005d5e: 61bb str r3, [r7, #24] + 8005d88: 6a7a ldr r2, [r7, #36] ; 0x24 + 8005d8a: 687b ldr r3, [r7, #4] + 8005d8c: 4413 add r3, r2 + 8005d8e: 61bb str r3, [r7, #24] configASSERT( ( ( ( size_t ) pxNewBlockLink ) & portBYTE_ALIGNMENT_MASK ) == 0 ); - 8005d60: 69bb ldr r3, [r7, #24] - 8005d62: f003 0307 and.w r3, r3, #7 - 8005d66: 2b00 cmp r3, #0 - 8005d68: d00a beq.n 8005d80 + 8005d90: 69bb ldr r3, [r7, #24] + 8005d92: f003 0307 and.w r3, r3, #7 + 8005d96: 2b00 cmp r3, #0 + 8005d98: d00a beq.n 8005db0 __asm volatile - 8005d6a: f04f 0350 mov.w r3, #80 ; 0x50 - 8005d6e: f383 8811 msr BASEPRI, r3 - 8005d72: f3bf 8f6f isb sy - 8005d76: f3bf 8f4f dsb sy - 8005d7a: 613b str r3, [r7, #16] + 8005d9a: f04f 0350 mov.w r3, #80 ; 0x50 + 8005d9e: f383 8811 msr BASEPRI, r3 + 8005da2: f3bf 8f6f isb sy + 8005da6: f3bf 8f4f dsb sy + 8005daa: 613b str r3, [r7, #16] } - 8005d7c: bf00 nop - 8005d7e: e7fe b.n 8005d7e + 8005dac: bf00 nop + 8005dae: e7fe b.n 8005dae /* Calculate the sizes of two blocks split from the single block. */ pxNewBlockLink->xBlockSize = pxBlock->xBlockSize - xWantedSize; - 8005d80: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d82: 685a ldr r2, [r3, #4] - 8005d84: 687b ldr r3, [r7, #4] - 8005d86: 1ad2 subs r2, r2, r3 - 8005d88: 69bb ldr r3, [r7, #24] - 8005d8a: 605a str r2, [r3, #4] + 8005db0: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005db2: 685a ldr r2, [r3, #4] + 8005db4: 687b ldr r3, [r7, #4] + 8005db6: 1ad2 subs r2, r2, r3 + 8005db8: 69bb ldr r3, [r7, #24] + 8005dba: 605a str r2, [r3, #4] pxBlock->xBlockSize = xWantedSize; - 8005d8c: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d8e: 687a ldr r2, [r7, #4] - 8005d90: 605a str r2, [r3, #4] + 8005dbc: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005dbe: 687a ldr r2, [r7, #4] + 8005dc0: 605a str r2, [r3, #4] /* Insert the new block into the list of free blocks. */ prvInsertBlockIntoFreeList( pxNewBlockLink ); - 8005d92: 69b8 ldr r0, [r7, #24] - 8005d94: f000 f908 bl 8005fa8 + 8005dc2: 69b8 ldr r0, [r7, #24] + 8005dc4: f000 f908 bl 8005fd8 else { mtCOVERAGE_TEST_MARKER(); } xFreeBytesRemaining -= pxBlock->xBlockSize; - 8005d98: 4b1d ldr r3, [pc, #116] ; (8005e10 ) - 8005d9a: 681a ldr r2, [r3, #0] - 8005d9c: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005d9e: 685b ldr r3, [r3, #4] - 8005da0: 1ad3 subs r3, r2, r3 - 8005da2: 4a1b ldr r2, [pc, #108] ; (8005e10 ) - 8005da4: 6013 str r3, [r2, #0] + 8005dc8: 4b1d ldr r3, [pc, #116] ; (8005e40 ) + 8005dca: 681a ldr r2, [r3, #0] + 8005dcc: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005dce: 685b ldr r3, [r3, #4] + 8005dd0: 1ad3 subs r3, r2, r3 + 8005dd2: 4a1b ldr r2, [pc, #108] ; (8005e40 ) + 8005dd4: 6013 str r3, [r2, #0] if( xFreeBytesRemaining < xMinimumEverFreeBytesRemaining ) - 8005da6: 4b1a ldr r3, [pc, #104] ; (8005e10 ) - 8005da8: 681a ldr r2, [r3, #0] - 8005daa: 4b1b ldr r3, [pc, #108] ; (8005e18 ) - 8005dac: 681b ldr r3, [r3, #0] - 8005dae: 429a cmp r2, r3 - 8005db0: d203 bcs.n 8005dba + 8005dd6: 4b1a ldr r3, [pc, #104] ; (8005e40 ) + 8005dd8: 681a ldr r2, [r3, #0] + 8005dda: 4b1b ldr r3, [pc, #108] ; (8005e48 ) + 8005ddc: 681b ldr r3, [r3, #0] + 8005dde: 429a cmp r2, r3 + 8005de0: d203 bcs.n 8005dea { xMinimumEverFreeBytesRemaining = xFreeBytesRemaining; - 8005db2: 4b17 ldr r3, [pc, #92] ; (8005e10 ) - 8005db4: 681b ldr r3, [r3, #0] - 8005db6: 4a18 ldr r2, [pc, #96] ; (8005e18 ) - 8005db8: 6013 str r3, [r2, #0] + 8005de2: 4b17 ldr r3, [pc, #92] ; (8005e40 ) + 8005de4: 681b ldr r3, [r3, #0] + 8005de6: 4a18 ldr r2, [pc, #96] ; (8005e48 ) + 8005de8: 6013 str r3, [r2, #0] mtCOVERAGE_TEST_MARKER(); } /* The block is being returned - it is allocated and owned by the application and has no "next" block. */ pxBlock->xBlockSize |= xBlockAllocatedBit; - 8005dba: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005dbc: 685a ldr r2, [r3, #4] - 8005dbe: 4b13 ldr r3, [pc, #76] ; (8005e0c ) - 8005dc0: 681b ldr r3, [r3, #0] - 8005dc2: 431a orrs r2, r3 - 8005dc4: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005dc6: 605a str r2, [r3, #4] + 8005dea: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005dec: 685a ldr r2, [r3, #4] + 8005dee: 4b13 ldr r3, [pc, #76] ; (8005e3c ) + 8005df0: 681b ldr r3, [r3, #0] + 8005df2: 431a orrs r2, r3 + 8005df4: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005df6: 605a str r2, [r3, #4] pxBlock->pxNextFreeBlock = NULL; - 8005dc8: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005dca: 2200 movs r2, #0 - 8005dcc: 601a str r2, [r3, #0] + 8005df8: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005dfa: 2200 movs r2, #0 + 8005dfc: 601a str r2, [r3, #0] xNumberOfSuccessfulAllocations++; - 8005dce: 4b13 ldr r3, [pc, #76] ; (8005e1c ) - 8005dd0: 681b ldr r3, [r3, #0] - 8005dd2: 3301 adds r3, #1 - 8005dd4: 4a11 ldr r2, [pc, #68] ; (8005e1c ) - 8005dd6: 6013 str r3, [r2, #0] + 8005dfe: 4b13 ldr r3, [pc, #76] ; (8005e4c ) + 8005e00: 681b ldr r3, [r3, #0] + 8005e02: 3301 adds r3, #1 + 8005e04: 4a11 ldr r2, [pc, #68] ; (8005e4c ) + 8005e06: 6013 str r3, [r2, #0] mtCOVERAGE_TEST_MARKER(); } traceMALLOC( pvReturn, xWantedSize ); } ( void ) xTaskResumeAll(); - 8005dd8: f7fe fcf8 bl 80047cc + 8005e08: f7fe fcfe bl 8004808 mtCOVERAGE_TEST_MARKER(); } } #endif configASSERT( ( ( ( size_t ) pvReturn ) & ( size_t ) portBYTE_ALIGNMENT_MASK ) == 0 ); - 8005ddc: 69fb ldr r3, [r7, #28] - 8005dde: f003 0307 and.w r3, r3, #7 - 8005de2: 2b00 cmp r3, #0 - 8005de4: d00a beq.n 8005dfc + 8005e0c: 69fb ldr r3, [r7, #28] + 8005e0e: f003 0307 and.w r3, r3, #7 + 8005e12: 2b00 cmp r3, #0 + 8005e14: d00a beq.n 8005e2c __asm volatile - 8005de6: f04f 0350 mov.w r3, #80 ; 0x50 - 8005dea: f383 8811 msr BASEPRI, r3 - 8005dee: f3bf 8f6f isb sy - 8005df2: f3bf 8f4f dsb sy - 8005df6: 60fb str r3, [r7, #12] + 8005e16: f04f 0350 mov.w r3, #80 ; 0x50 + 8005e1a: f383 8811 msr BASEPRI, r3 + 8005e1e: f3bf 8f6f isb sy + 8005e22: f3bf 8f4f dsb sy + 8005e26: 60fb str r3, [r7, #12] } - 8005df8: bf00 nop - 8005dfa: e7fe b.n 8005dfa + 8005e28: bf00 nop + 8005e2a: e7fe b.n 8005e2a return pvReturn; - 8005dfc: 69fb ldr r3, [r7, #28] + 8005e2c: 69fb ldr r3, [r7, #28] } - 8005dfe: 4618 mov r0, r3 - 8005e00: 3728 adds r7, #40 ; 0x28 - 8005e02: 46bd mov sp, r7 - 8005e04: bd80 pop {r7, pc} - 8005e06: bf00 nop - 8005e08: 20004b4c .word 0x20004b4c - 8005e0c: 20004b60 .word 0x20004b60 - 8005e10: 20004b50 .word 0x20004b50 - 8005e14: 20004b44 .word 0x20004b44 - 8005e18: 20004b54 .word 0x20004b54 - 8005e1c: 20004b58 .word 0x20004b58 + 8005e2e: 4618 mov r0, r3 + 8005e30: 3728 adds r7, #40 ; 0x28 + 8005e32: 46bd mov sp, r7 + 8005e34: bd80 pop {r7, pc} + 8005e36: bf00 nop + 8005e38: 20004b4c .word 0x20004b4c + 8005e3c: 20004b60 .word 0x20004b60 + 8005e40: 20004b50 .word 0x20004b50 + 8005e44: 20004b44 .word 0x20004b44 + 8005e48: 20004b54 .word 0x20004b54 + 8005e4c: 20004b58 .word 0x20004b58 -08005e20 : +08005e50 : /*-----------------------------------------------------------*/ void vPortFree( void *pv ) { - 8005e20: b580 push {r7, lr} - 8005e22: b086 sub sp, #24 - 8005e24: af00 add r7, sp, #0 - 8005e26: 6078 str r0, [r7, #4] + 8005e50: b580 push {r7, lr} + 8005e52: b086 sub sp, #24 + 8005e54: af00 add r7, sp, #0 + 8005e56: 6078 str r0, [r7, #4] uint8_t *puc = ( uint8_t * ) pv; - 8005e28: 687b ldr r3, [r7, #4] - 8005e2a: 617b str r3, [r7, #20] + 8005e58: 687b ldr r3, [r7, #4] + 8005e5a: 617b str r3, [r7, #20] BlockLink_t *pxLink; if( pv != NULL ) - 8005e2c: 687b ldr r3, [r7, #4] - 8005e2e: 2b00 cmp r3, #0 - 8005e30: d04d beq.n 8005ece + 8005e5c: 687b ldr r3, [r7, #4] + 8005e5e: 2b00 cmp r3, #0 + 8005e60: d04d beq.n 8005efe { /* The memory being freed will have an BlockLink_t structure immediately before it. */ puc -= xHeapStructSize; - 8005e32: 2308 movs r3, #8 - 8005e34: 425b negs r3, r3 - 8005e36: 697a ldr r2, [r7, #20] - 8005e38: 4413 add r3, r2 - 8005e3a: 617b str r3, [r7, #20] + 8005e62: 2308 movs r3, #8 + 8005e64: 425b negs r3, r3 + 8005e66: 697a ldr r2, [r7, #20] + 8005e68: 4413 add r3, r2 + 8005e6a: 617b str r3, [r7, #20] /* This casting is to keep the compiler from issuing warnings. */ pxLink = ( void * ) puc; - 8005e3c: 697b ldr r3, [r7, #20] - 8005e3e: 613b str r3, [r7, #16] + 8005e6c: 697b ldr r3, [r7, #20] + 8005e6e: 613b str r3, [r7, #16] /* Check the block is actually allocated. */ configASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); - 8005e40: 693b ldr r3, [r7, #16] - 8005e42: 685a ldr r2, [r3, #4] - 8005e44: 4b24 ldr r3, [pc, #144] ; (8005ed8 ) - 8005e46: 681b ldr r3, [r3, #0] - 8005e48: 4013 ands r3, r2 - 8005e4a: 2b00 cmp r3, #0 - 8005e4c: d10a bne.n 8005e64 + 8005e70: 693b ldr r3, [r7, #16] + 8005e72: 685a ldr r2, [r3, #4] + 8005e74: 4b24 ldr r3, [pc, #144] ; (8005f08 ) + 8005e76: 681b ldr r3, [r3, #0] + 8005e78: 4013 ands r3, r2 + 8005e7a: 2b00 cmp r3, #0 + 8005e7c: d10a bne.n 8005e94 __asm volatile - 8005e4e: f04f 0350 mov.w r3, #80 ; 0x50 - 8005e52: f383 8811 msr BASEPRI, r3 - 8005e56: f3bf 8f6f isb sy - 8005e5a: f3bf 8f4f dsb sy - 8005e5e: 60fb str r3, [r7, #12] + 8005e7e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005e82: f383 8811 msr BASEPRI, r3 + 8005e86: f3bf 8f6f isb sy + 8005e8a: f3bf 8f4f dsb sy + 8005e8e: 60fb str r3, [r7, #12] } - 8005e60: bf00 nop - 8005e62: e7fe b.n 8005e62 + 8005e90: bf00 nop + 8005e92: e7fe b.n 8005e92 configASSERT( pxLink->pxNextFreeBlock == NULL ); - 8005e64: 693b ldr r3, [r7, #16] - 8005e66: 681b ldr r3, [r3, #0] - 8005e68: 2b00 cmp r3, #0 - 8005e6a: d00a beq.n 8005e82 + 8005e94: 693b ldr r3, [r7, #16] + 8005e96: 681b ldr r3, [r3, #0] + 8005e98: 2b00 cmp r3, #0 + 8005e9a: d00a beq.n 8005eb2 __asm volatile - 8005e6c: f04f 0350 mov.w r3, #80 ; 0x50 - 8005e70: f383 8811 msr BASEPRI, r3 - 8005e74: f3bf 8f6f isb sy - 8005e78: f3bf 8f4f dsb sy - 8005e7c: 60bb str r3, [r7, #8] + 8005e9c: f04f 0350 mov.w r3, #80 ; 0x50 + 8005ea0: f383 8811 msr BASEPRI, r3 + 8005ea4: f3bf 8f6f isb sy + 8005ea8: f3bf 8f4f dsb sy + 8005eac: 60bb str r3, [r7, #8] } - 8005e7e: bf00 nop - 8005e80: e7fe b.n 8005e80 + 8005eae: bf00 nop + 8005eb0: e7fe b.n 8005eb0 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) - 8005e82: 693b ldr r3, [r7, #16] - 8005e84: 685a ldr r2, [r3, #4] - 8005e86: 4b14 ldr r3, [pc, #80] ; (8005ed8 ) - 8005e88: 681b ldr r3, [r3, #0] - 8005e8a: 4013 ands r3, r2 - 8005e8c: 2b00 cmp r3, #0 - 8005e8e: d01e beq.n 8005ece + 8005eb2: 693b ldr r3, [r7, #16] + 8005eb4: 685a ldr r2, [r3, #4] + 8005eb6: 4b14 ldr r3, [pc, #80] ; (8005f08 ) + 8005eb8: 681b ldr r3, [r3, #0] + 8005eba: 4013 ands r3, r2 + 8005ebc: 2b00 cmp r3, #0 + 8005ebe: d01e beq.n 8005efe { if( pxLink->pxNextFreeBlock == NULL ) - 8005e90: 693b ldr r3, [r7, #16] - 8005e92: 681b ldr r3, [r3, #0] - 8005e94: 2b00 cmp r3, #0 - 8005e96: d11a bne.n 8005ece + 8005ec0: 693b ldr r3, [r7, #16] + 8005ec2: 681b ldr r3, [r3, #0] + 8005ec4: 2b00 cmp r3, #0 + 8005ec6: d11a bne.n 8005efe { /* The block is being returned to the heap - it is no longer allocated. */ pxLink->xBlockSize &= ~xBlockAllocatedBit; - 8005e98: 693b ldr r3, [r7, #16] - 8005e9a: 685a ldr r2, [r3, #4] - 8005e9c: 4b0e ldr r3, [pc, #56] ; (8005ed8 ) - 8005e9e: 681b ldr r3, [r3, #0] - 8005ea0: 43db mvns r3, r3 - 8005ea2: 401a ands r2, r3 - 8005ea4: 693b ldr r3, [r7, #16] - 8005ea6: 605a str r2, [r3, #4] + 8005ec8: 693b ldr r3, [r7, #16] + 8005eca: 685a ldr r2, [r3, #4] + 8005ecc: 4b0e ldr r3, [pc, #56] ; (8005f08 ) + 8005ece: 681b ldr r3, [r3, #0] + 8005ed0: 43db mvns r3, r3 + 8005ed2: 401a ands r2, r3 + 8005ed4: 693b ldr r3, [r7, #16] + 8005ed6: 605a str r2, [r3, #4] vTaskSuspendAll(); - 8005ea8: f7fe fc82 bl 80047b0 + 8005ed8: f7fe fc88 bl 80047ec { /* Add this block to the list of free blocks. */ xFreeBytesRemaining += pxLink->xBlockSize; - 8005eac: 693b ldr r3, [r7, #16] - 8005eae: 685a ldr r2, [r3, #4] - 8005eb0: 4b0a ldr r3, [pc, #40] ; (8005edc ) - 8005eb2: 681b ldr r3, [r3, #0] - 8005eb4: 4413 add r3, r2 - 8005eb6: 4a09 ldr r2, [pc, #36] ; (8005edc ) - 8005eb8: 6013 str r3, [r2, #0] + 8005edc: 693b ldr r3, [r7, #16] + 8005ede: 685a ldr r2, [r3, #4] + 8005ee0: 4b0a ldr r3, [pc, #40] ; (8005f0c ) + 8005ee2: 681b ldr r3, [r3, #0] + 8005ee4: 4413 add r3, r2 + 8005ee6: 4a09 ldr r2, [pc, #36] ; (8005f0c ) + 8005ee8: 6013 str r3, [r2, #0] traceFREE( pv, pxLink->xBlockSize ); prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); - 8005eba: 6938 ldr r0, [r7, #16] - 8005ebc: f000 f874 bl 8005fa8 + 8005eea: 6938 ldr r0, [r7, #16] + 8005eec: f000 f874 bl 8005fd8 xNumberOfSuccessfulFrees++; - 8005ec0: 4b07 ldr r3, [pc, #28] ; (8005ee0 ) - 8005ec2: 681b ldr r3, [r3, #0] - 8005ec4: 3301 adds r3, #1 - 8005ec6: 4a06 ldr r2, [pc, #24] ; (8005ee0 ) - 8005ec8: 6013 str r3, [r2, #0] + 8005ef0: 4b07 ldr r3, [pc, #28] ; (8005f10 ) + 8005ef2: 681b ldr r3, [r3, #0] + 8005ef4: 3301 adds r3, #1 + 8005ef6: 4a06 ldr r2, [pc, #24] ; (8005f10 ) + 8005ef8: 6013 str r3, [r2, #0] } ( void ) xTaskResumeAll(); - 8005eca: f7fe fc7f bl 80047cc + 8005efa: f7fe fc85 bl 8004808 else { mtCOVERAGE_TEST_MARKER(); } } } - 8005ece: bf00 nop - 8005ed0: 3718 adds r7, #24 - 8005ed2: 46bd mov sp, r7 - 8005ed4: bd80 pop {r7, pc} - 8005ed6: bf00 nop - 8005ed8: 20004b60 .word 0x20004b60 - 8005edc: 20004b50 .word 0x20004b50 - 8005ee0: 20004b5c .word 0x20004b5c + 8005efe: bf00 nop + 8005f00: 3718 adds r7, #24 + 8005f02: 46bd mov sp, r7 + 8005f04: bd80 pop {r7, pc} + 8005f06: bf00 nop + 8005f08: 20004b60 .word 0x20004b60 + 8005f0c: 20004b50 .word 0x20004b50 + 8005f10: 20004b5c .word 0x20004b5c -08005ee4 : +08005f14 : /* This just exists to keep the linker quiet. */ } /*-----------------------------------------------------------*/ static void prvHeapInit( void ) { - 8005ee4: b480 push {r7} - 8005ee6: b085 sub sp, #20 - 8005ee8: af00 add r7, sp, #0 + 8005f14: b480 push {r7} + 8005f16: b085 sub sp, #20 + 8005f18: af00 add r7, sp, #0 BlockLink_t *pxFirstFreeBlock; uint8_t *pucAlignedHeap; size_t uxAddress; size_t xTotalHeapSize = configTOTAL_HEAP_SIZE; - 8005eea: f44f 5370 mov.w r3, #15360 ; 0x3c00 - 8005eee: 60bb str r3, [r7, #8] + 8005f1a: f44f 5370 mov.w r3, #15360 ; 0x3c00 + 8005f1e: 60bb str r3, [r7, #8] /* Ensure the heap starts on a correctly aligned boundary. */ uxAddress = ( size_t ) ucHeap; - 8005ef0: 4b27 ldr r3, [pc, #156] ; (8005f90 ) - 8005ef2: 60fb str r3, [r7, #12] + 8005f20: 4b27 ldr r3, [pc, #156] ; (8005fc0 ) + 8005f22: 60fb str r3, [r7, #12] if( ( uxAddress & portBYTE_ALIGNMENT_MASK ) != 0 ) - 8005ef4: 68fb ldr r3, [r7, #12] - 8005ef6: f003 0307 and.w r3, r3, #7 - 8005efa: 2b00 cmp r3, #0 - 8005efc: d00c beq.n 8005f18 + 8005f24: 68fb ldr r3, [r7, #12] + 8005f26: f003 0307 and.w r3, r3, #7 + 8005f2a: 2b00 cmp r3, #0 + 8005f2c: d00c beq.n 8005f48 { uxAddress += ( portBYTE_ALIGNMENT - 1 ); - 8005efe: 68fb ldr r3, [r7, #12] - 8005f00: 3307 adds r3, #7 - 8005f02: 60fb str r3, [r7, #12] + 8005f2e: 68fb ldr r3, [r7, #12] + 8005f30: 3307 adds r3, #7 + 8005f32: 60fb str r3, [r7, #12] uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); - 8005f04: 68fb ldr r3, [r7, #12] - 8005f06: f023 0307 bic.w r3, r3, #7 - 8005f0a: 60fb str r3, [r7, #12] + 8005f34: 68fb ldr r3, [r7, #12] + 8005f36: f023 0307 bic.w r3, r3, #7 + 8005f3a: 60fb str r3, [r7, #12] xTotalHeapSize -= uxAddress - ( size_t ) ucHeap; - 8005f0c: 68ba ldr r2, [r7, #8] - 8005f0e: 68fb ldr r3, [r7, #12] - 8005f10: 1ad3 subs r3, r2, r3 - 8005f12: 4a1f ldr r2, [pc, #124] ; (8005f90 ) - 8005f14: 4413 add r3, r2 - 8005f16: 60bb str r3, [r7, #8] + 8005f3c: 68ba ldr r2, [r7, #8] + 8005f3e: 68fb ldr r3, [r7, #12] + 8005f40: 1ad3 subs r3, r2, r3 + 8005f42: 4a1f ldr r2, [pc, #124] ; (8005fc0 ) + 8005f44: 4413 add r3, r2 + 8005f46: 60bb str r3, [r7, #8] } pucAlignedHeap = ( uint8_t * ) uxAddress; - 8005f18: 68fb ldr r3, [r7, #12] - 8005f1a: 607b str r3, [r7, #4] + 8005f48: 68fb ldr r3, [r7, #12] + 8005f4a: 607b str r3, [r7, #4] /* xStart is used to hold a pointer to the first item in the list of free blocks. The void cast is used to prevent compiler warnings. */ xStart.pxNextFreeBlock = ( void * ) pucAlignedHeap; - 8005f1c: 4a1d ldr r2, [pc, #116] ; (8005f94 ) - 8005f1e: 687b ldr r3, [r7, #4] - 8005f20: 6013 str r3, [r2, #0] + 8005f4c: 4a1d ldr r2, [pc, #116] ; (8005fc4 ) + 8005f4e: 687b ldr r3, [r7, #4] + 8005f50: 6013 str r3, [r2, #0] xStart.xBlockSize = ( size_t ) 0; - 8005f22: 4b1c ldr r3, [pc, #112] ; (8005f94 ) - 8005f24: 2200 movs r2, #0 - 8005f26: 605a str r2, [r3, #4] + 8005f52: 4b1c ldr r3, [pc, #112] ; (8005fc4 ) + 8005f54: 2200 movs r2, #0 + 8005f56: 605a str r2, [r3, #4] /* pxEnd is used to mark the end of the list of free blocks and is inserted at the end of the heap space. */ uxAddress = ( ( size_t ) pucAlignedHeap ) + xTotalHeapSize; - 8005f28: 687b ldr r3, [r7, #4] - 8005f2a: 68ba ldr r2, [r7, #8] - 8005f2c: 4413 add r3, r2 - 8005f2e: 60fb str r3, [r7, #12] + 8005f58: 687b ldr r3, [r7, #4] + 8005f5a: 68ba ldr r2, [r7, #8] + 8005f5c: 4413 add r3, r2 + 8005f5e: 60fb str r3, [r7, #12] uxAddress -= xHeapStructSize; - 8005f30: 2208 movs r2, #8 - 8005f32: 68fb ldr r3, [r7, #12] - 8005f34: 1a9b subs r3, r3, r2 - 8005f36: 60fb str r3, [r7, #12] + 8005f60: 2208 movs r2, #8 + 8005f62: 68fb ldr r3, [r7, #12] + 8005f64: 1a9b subs r3, r3, r2 + 8005f66: 60fb str r3, [r7, #12] uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); - 8005f38: 68fb ldr r3, [r7, #12] - 8005f3a: f023 0307 bic.w r3, r3, #7 - 8005f3e: 60fb str r3, [r7, #12] + 8005f68: 68fb ldr r3, [r7, #12] + 8005f6a: f023 0307 bic.w r3, r3, #7 + 8005f6e: 60fb str r3, [r7, #12] pxEnd = ( void * ) uxAddress; - 8005f40: 68fb ldr r3, [r7, #12] - 8005f42: 4a15 ldr r2, [pc, #84] ; (8005f98 ) - 8005f44: 6013 str r3, [r2, #0] + 8005f70: 68fb ldr r3, [r7, #12] + 8005f72: 4a15 ldr r2, [pc, #84] ; (8005fc8 ) + 8005f74: 6013 str r3, [r2, #0] pxEnd->xBlockSize = 0; - 8005f46: 4b14 ldr r3, [pc, #80] ; (8005f98 ) - 8005f48: 681b ldr r3, [r3, #0] - 8005f4a: 2200 movs r2, #0 - 8005f4c: 605a str r2, [r3, #4] + 8005f76: 4b14 ldr r3, [pc, #80] ; (8005fc8 ) + 8005f78: 681b ldr r3, [r3, #0] + 8005f7a: 2200 movs r2, #0 + 8005f7c: 605a str r2, [r3, #4] pxEnd->pxNextFreeBlock = NULL; - 8005f4e: 4b12 ldr r3, [pc, #72] ; (8005f98 ) - 8005f50: 681b ldr r3, [r3, #0] - 8005f52: 2200 movs r2, #0 - 8005f54: 601a str r2, [r3, #0] + 8005f7e: 4b12 ldr r3, [pc, #72] ; (8005fc8 ) + 8005f80: 681b ldr r3, [r3, #0] + 8005f82: 2200 movs r2, #0 + 8005f84: 601a str r2, [r3, #0] /* To start with there is a single free block that is sized to take up the entire heap space, minus the space taken by pxEnd. */ pxFirstFreeBlock = ( void * ) pucAlignedHeap; - 8005f56: 687b ldr r3, [r7, #4] - 8005f58: 603b str r3, [r7, #0] + 8005f86: 687b ldr r3, [r7, #4] + 8005f88: 603b str r3, [r7, #0] pxFirstFreeBlock->xBlockSize = uxAddress - ( size_t ) pxFirstFreeBlock; - 8005f5a: 683b ldr r3, [r7, #0] - 8005f5c: 68fa ldr r2, [r7, #12] - 8005f5e: 1ad2 subs r2, r2, r3 - 8005f60: 683b ldr r3, [r7, #0] - 8005f62: 605a str r2, [r3, #4] + 8005f8a: 683b ldr r3, [r7, #0] + 8005f8c: 68fa ldr r2, [r7, #12] + 8005f8e: 1ad2 subs r2, r2, r3 + 8005f90: 683b ldr r3, [r7, #0] + 8005f92: 605a str r2, [r3, #4] pxFirstFreeBlock->pxNextFreeBlock = pxEnd; - 8005f64: 4b0c ldr r3, [pc, #48] ; (8005f98 ) - 8005f66: 681a ldr r2, [r3, #0] - 8005f68: 683b ldr r3, [r7, #0] - 8005f6a: 601a str r2, [r3, #0] + 8005f94: 4b0c ldr r3, [pc, #48] ; (8005fc8 ) + 8005f96: 681a ldr r2, [r3, #0] + 8005f98: 683b ldr r3, [r7, #0] + 8005f9a: 601a str r2, [r3, #0] /* Only one block exists - and it covers the entire usable heap space. */ xMinimumEverFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; - 8005f6c: 683b ldr r3, [r7, #0] - 8005f6e: 685b ldr r3, [r3, #4] - 8005f70: 4a0a ldr r2, [pc, #40] ; (8005f9c ) - 8005f72: 6013 str r3, [r2, #0] + 8005f9c: 683b ldr r3, [r7, #0] + 8005f9e: 685b ldr r3, [r3, #4] + 8005fa0: 4a0a ldr r2, [pc, #40] ; (8005fcc ) + 8005fa2: 6013 str r3, [r2, #0] xFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; - 8005f74: 683b ldr r3, [r7, #0] - 8005f76: 685b ldr r3, [r3, #4] - 8005f78: 4a09 ldr r2, [pc, #36] ; (8005fa0 ) - 8005f7a: 6013 str r3, [r2, #0] + 8005fa4: 683b ldr r3, [r7, #0] + 8005fa6: 685b ldr r3, [r3, #4] + 8005fa8: 4a09 ldr r2, [pc, #36] ; (8005fd0 ) + 8005faa: 6013 str r3, [r2, #0] /* Work out the position of the top bit in a size_t variable. */ xBlockAllocatedBit = ( ( size_t ) 1 ) << ( ( sizeof( size_t ) * heapBITS_PER_BYTE ) - 1 ); - 8005f7c: 4b09 ldr r3, [pc, #36] ; (8005fa4 ) - 8005f7e: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 - 8005f82: 601a str r2, [r3, #0] + 8005fac: 4b09 ldr r3, [pc, #36] ; (8005fd4 ) + 8005fae: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 + 8005fb2: 601a str r2, [r3, #0] } - 8005f84: bf00 nop - 8005f86: 3714 adds r7, #20 - 8005f88: 46bd mov sp, r7 - 8005f8a: f85d 7b04 ldr.w r7, [sp], #4 - 8005f8e: 4770 bx lr - 8005f90: 20000f44 .word 0x20000f44 - 8005f94: 20004b44 .word 0x20004b44 - 8005f98: 20004b4c .word 0x20004b4c - 8005f9c: 20004b54 .word 0x20004b54 - 8005fa0: 20004b50 .word 0x20004b50 - 8005fa4: 20004b60 .word 0x20004b60 + 8005fb4: bf00 nop + 8005fb6: 3714 adds r7, #20 + 8005fb8: 46bd mov sp, r7 + 8005fba: f85d 7b04 ldr.w r7, [sp], #4 + 8005fbe: 4770 bx lr + 8005fc0: 20000f44 .word 0x20000f44 + 8005fc4: 20004b44 .word 0x20004b44 + 8005fc8: 20004b4c .word 0x20004b4c + 8005fcc: 20004b54 .word 0x20004b54 + 8005fd0: 20004b50 .word 0x20004b50 + 8005fd4: 20004b60 .word 0x20004b60 -08005fa8 : +08005fd8 : /*-----------------------------------------------------------*/ static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ) { - 8005fa8: b480 push {r7} - 8005faa: b085 sub sp, #20 - 8005fac: af00 add r7, sp, #0 - 8005fae: 6078 str r0, [r7, #4] + 8005fd8: b480 push {r7} + 8005fda: b085 sub sp, #20 + 8005fdc: af00 add r7, sp, #0 + 8005fde: 6078 str r0, [r7, #4] BlockLink_t *pxIterator; uint8_t *puc; /* Iterate through the list until a block is found that has a higher address than the block being inserted. */ for( pxIterator = &xStart; pxIterator->pxNextFreeBlock < pxBlockToInsert; pxIterator = pxIterator->pxNextFreeBlock ) - 8005fb0: 4b28 ldr r3, [pc, #160] ; (8006054 ) - 8005fb2: 60fb str r3, [r7, #12] - 8005fb4: e002 b.n 8005fbc - 8005fb6: 68fb ldr r3, [r7, #12] - 8005fb8: 681b ldr r3, [r3, #0] - 8005fba: 60fb str r3, [r7, #12] - 8005fbc: 68fb ldr r3, [r7, #12] - 8005fbe: 681b ldr r3, [r3, #0] - 8005fc0: 687a ldr r2, [r7, #4] - 8005fc2: 429a cmp r2, r3 - 8005fc4: d8f7 bhi.n 8005fb6 + 8005fe0: 4b28 ldr r3, [pc, #160] ; (8006084 ) + 8005fe2: 60fb str r3, [r7, #12] + 8005fe4: e002 b.n 8005fec + 8005fe6: 68fb ldr r3, [r7, #12] + 8005fe8: 681b ldr r3, [r3, #0] + 8005fea: 60fb str r3, [r7, #12] + 8005fec: 68fb ldr r3, [r7, #12] + 8005fee: 681b ldr r3, [r3, #0] + 8005ff0: 687a ldr r2, [r7, #4] + 8005ff2: 429a cmp r2, r3 + 8005ff4: d8f7 bhi.n 8005fe6 /* Nothing to do here, just iterate to the right position. */ } /* Do the block being inserted, and the block it is being inserted after make a contiguous block of memory? */ puc = ( uint8_t * ) pxIterator; - 8005fc6: 68fb ldr r3, [r7, #12] - 8005fc8: 60bb str r3, [r7, #8] + 8005ff6: 68fb ldr r3, [r7, #12] + 8005ff8: 60bb str r3, [r7, #8] if( ( puc + pxIterator->xBlockSize ) == ( uint8_t * ) pxBlockToInsert ) - 8005fca: 68fb ldr r3, [r7, #12] - 8005fcc: 685b ldr r3, [r3, #4] - 8005fce: 68ba ldr r2, [r7, #8] - 8005fd0: 4413 add r3, r2 - 8005fd2: 687a ldr r2, [r7, #4] - 8005fd4: 429a cmp r2, r3 - 8005fd6: d108 bne.n 8005fea + 8005ffa: 68fb ldr r3, [r7, #12] + 8005ffc: 685b ldr r3, [r3, #4] + 8005ffe: 68ba ldr r2, [r7, #8] + 8006000: 4413 add r3, r2 + 8006002: 687a ldr r2, [r7, #4] + 8006004: 429a cmp r2, r3 + 8006006: d108 bne.n 800601a { pxIterator->xBlockSize += pxBlockToInsert->xBlockSize; - 8005fd8: 68fb ldr r3, [r7, #12] - 8005fda: 685a ldr r2, [r3, #4] - 8005fdc: 687b ldr r3, [r7, #4] - 8005fde: 685b ldr r3, [r3, #4] - 8005fe0: 441a add r2, r3 - 8005fe2: 68fb ldr r3, [r7, #12] - 8005fe4: 605a str r2, [r3, #4] + 8006008: 68fb ldr r3, [r7, #12] + 800600a: 685a ldr r2, [r3, #4] + 800600c: 687b ldr r3, [r7, #4] + 800600e: 685b ldr r3, [r3, #4] + 8006010: 441a add r2, r3 + 8006012: 68fb ldr r3, [r7, #12] + 8006014: 605a str r2, [r3, #4] pxBlockToInsert = pxIterator; - 8005fe6: 68fb ldr r3, [r7, #12] - 8005fe8: 607b str r3, [r7, #4] + 8006016: 68fb ldr r3, [r7, #12] + 8006018: 607b str r3, [r7, #4] mtCOVERAGE_TEST_MARKER(); } /* Do the block being inserted, and the block it is being inserted before make a contiguous block of memory? */ puc = ( uint8_t * ) pxBlockToInsert; - 8005fea: 687b ldr r3, [r7, #4] - 8005fec: 60bb str r3, [r7, #8] + 800601a: 687b ldr r3, [r7, #4] + 800601c: 60bb str r3, [r7, #8] if( ( puc + pxBlockToInsert->xBlockSize ) == ( uint8_t * ) pxIterator->pxNextFreeBlock ) - 8005fee: 687b ldr r3, [r7, #4] - 8005ff0: 685b ldr r3, [r3, #4] - 8005ff2: 68ba ldr r2, [r7, #8] - 8005ff4: 441a add r2, r3 - 8005ff6: 68fb ldr r3, [r7, #12] - 8005ff8: 681b ldr r3, [r3, #0] - 8005ffa: 429a cmp r2, r3 - 8005ffc: d118 bne.n 8006030 + 800601e: 687b ldr r3, [r7, #4] + 8006020: 685b ldr r3, [r3, #4] + 8006022: 68ba ldr r2, [r7, #8] + 8006024: 441a add r2, r3 + 8006026: 68fb ldr r3, [r7, #12] + 8006028: 681b ldr r3, [r3, #0] + 800602a: 429a cmp r2, r3 + 800602c: d118 bne.n 8006060 { if( pxIterator->pxNextFreeBlock != pxEnd ) - 8005ffe: 68fb ldr r3, [r7, #12] - 8006000: 681a ldr r2, [r3, #0] - 8006002: 4b15 ldr r3, [pc, #84] ; (8006058 ) - 8006004: 681b ldr r3, [r3, #0] - 8006006: 429a cmp r2, r3 - 8006008: d00d beq.n 8006026 + 800602e: 68fb ldr r3, [r7, #12] + 8006030: 681a ldr r2, [r3, #0] + 8006032: 4b15 ldr r3, [pc, #84] ; (8006088 ) + 8006034: 681b ldr r3, [r3, #0] + 8006036: 429a cmp r2, r3 + 8006038: d00d beq.n 8006056 { /* Form one big block from the two blocks. */ pxBlockToInsert->xBlockSize += pxIterator->pxNextFreeBlock->xBlockSize; - 800600a: 687b ldr r3, [r7, #4] - 800600c: 685a ldr r2, [r3, #4] - 800600e: 68fb ldr r3, [r7, #12] - 8006010: 681b ldr r3, [r3, #0] - 8006012: 685b ldr r3, [r3, #4] - 8006014: 441a add r2, r3 - 8006016: 687b ldr r3, [r7, #4] - 8006018: 605a str r2, [r3, #4] + 800603a: 687b ldr r3, [r7, #4] + 800603c: 685a ldr r2, [r3, #4] + 800603e: 68fb ldr r3, [r7, #12] + 8006040: 681b ldr r3, [r3, #0] + 8006042: 685b ldr r3, [r3, #4] + 8006044: 441a add r2, r3 + 8006046: 687b ldr r3, [r7, #4] + 8006048: 605a str r2, [r3, #4] pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock->pxNextFreeBlock; - 800601a: 68fb ldr r3, [r7, #12] - 800601c: 681b ldr r3, [r3, #0] - 800601e: 681a ldr r2, [r3, #0] - 8006020: 687b ldr r3, [r7, #4] - 8006022: 601a str r2, [r3, #0] - 8006024: e008 b.n 8006038 + 800604a: 68fb ldr r3, [r7, #12] + 800604c: 681b ldr r3, [r3, #0] + 800604e: 681a ldr r2, [r3, #0] + 8006050: 687b ldr r3, [r7, #4] + 8006052: 601a str r2, [r3, #0] + 8006054: e008 b.n 8006068 } else { pxBlockToInsert->pxNextFreeBlock = pxEnd; - 8006026: 4b0c ldr r3, [pc, #48] ; (8006058 ) - 8006028: 681a ldr r2, [r3, #0] - 800602a: 687b ldr r3, [r7, #4] - 800602c: 601a str r2, [r3, #0] - 800602e: e003 b.n 8006038 + 8006056: 4b0c ldr r3, [pc, #48] ; (8006088 ) + 8006058: 681a ldr r2, [r3, #0] + 800605a: 687b ldr r3, [r7, #4] + 800605c: 601a str r2, [r3, #0] + 800605e: e003 b.n 8006068 } } else { pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock; - 8006030: 68fb ldr r3, [r7, #12] - 8006032: 681a ldr r2, [r3, #0] - 8006034: 687b ldr r3, [r7, #4] - 8006036: 601a str r2, [r3, #0] + 8006060: 68fb ldr r3, [r7, #12] + 8006062: 681a ldr r2, [r3, #0] + 8006064: 687b ldr r3, [r7, #4] + 8006066: 601a str r2, [r3, #0] /* If the block being inserted plugged a gab, so was merged with the block before and the block after, then it's pxNextFreeBlock pointer will have already been set, and should not be set here as that would make it point to itself. */ if( pxIterator != pxBlockToInsert ) - 8006038: 68fa ldr r2, [r7, #12] - 800603a: 687b ldr r3, [r7, #4] - 800603c: 429a cmp r2, r3 - 800603e: d002 beq.n 8006046 + 8006068: 68fa ldr r2, [r7, #12] + 800606a: 687b ldr r3, [r7, #4] + 800606c: 429a cmp r2, r3 + 800606e: d002 beq.n 8006076 { pxIterator->pxNextFreeBlock = pxBlockToInsert; - 8006040: 68fb ldr r3, [r7, #12] - 8006042: 687a ldr r2, [r7, #4] - 8006044: 601a str r2, [r3, #0] + 8006070: 68fb ldr r3, [r7, #12] + 8006072: 687a ldr r2, [r7, #4] + 8006074: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } } - 8006046: bf00 nop - 8006048: 3714 adds r7, #20 - 800604a: 46bd mov sp, r7 - 800604c: f85d 7b04 ldr.w r7, [sp], #4 - 8006050: 4770 bx lr - 8006052: bf00 nop - 8006054: 20004b44 .word 0x20004b44 - 8006058: 20004b4c .word 0x20004b4c + 8006076: bf00 nop + 8006078: 3714 adds r7, #20 + 800607a: 46bd mov sp, r7 + 800607c: f85d 7b04 ldr.w r7, [sp], #4 + 8006080: 4770 bx lr + 8006082: bf00 nop + 8006084: 20004b44 .word 0x20004b44 + 8006088: 20004b4c .word 0x20004b4c -0800605c : - 800605c: 4402 add r2, r0 - 800605e: 4603 mov r3, r0 - 8006060: 4293 cmp r3, r2 - 8006062: d100 bne.n 8006066 - 8006064: 4770 bx lr - 8006066: f803 1b01 strb.w r1, [r3], #1 - 800606a: e7f9 b.n 8006060 +0800608c : + 800608c: 4402 add r2, r0 + 800608e: 4603 mov r3, r0 + 8006090: 4293 cmp r3, r2 + 8006092: d100 bne.n 8006096 + 8006094: 4770 bx lr + 8006096: f803 1b01 strb.w r1, [r3], #1 + 800609a: e7f9 b.n 8006090 -0800606c <_reclaim_reent>: - 800606c: 4b29 ldr r3, [pc, #164] ; (8006114 <_reclaim_reent+0xa8>) - 800606e: 681b ldr r3, [r3, #0] - 8006070: 4283 cmp r3, r0 - 8006072: b570 push {r4, r5, r6, lr} - 8006074: 4604 mov r4, r0 - 8006076: d04b beq.n 8006110 <_reclaim_reent+0xa4> - 8006078: 69c3 ldr r3, [r0, #28] - 800607a: b143 cbz r3, 800608e <_reclaim_reent+0x22> - 800607c: 68db ldr r3, [r3, #12] - 800607e: 2b00 cmp r3, #0 - 8006080: d144 bne.n 800610c <_reclaim_reent+0xa0> - 8006082: 69e3 ldr r3, [r4, #28] - 8006084: 6819 ldr r1, [r3, #0] - 8006086: b111 cbz r1, 800608e <_reclaim_reent+0x22> - 8006088: 4620 mov r0, r4 - 800608a: f000 f879 bl 8006180 <_free_r> - 800608e: 6961 ldr r1, [r4, #20] - 8006090: b111 cbz r1, 8006098 <_reclaim_reent+0x2c> - 8006092: 4620 mov r0, r4 - 8006094: f000 f874 bl 8006180 <_free_r> - 8006098: 69e1 ldr r1, [r4, #28] - 800609a: b111 cbz r1, 80060a2 <_reclaim_reent+0x36> - 800609c: 4620 mov r0, r4 - 800609e: f000 f86f bl 8006180 <_free_r> - 80060a2: 6b21 ldr r1, [r4, #48] ; 0x30 - 80060a4: b111 cbz r1, 80060ac <_reclaim_reent+0x40> - 80060a6: 4620 mov r0, r4 - 80060a8: f000 f86a bl 8006180 <_free_r> - 80060ac: 6b61 ldr r1, [r4, #52] ; 0x34 - 80060ae: b111 cbz r1, 80060b6 <_reclaim_reent+0x4a> - 80060b0: 4620 mov r0, r4 - 80060b2: f000 f865 bl 8006180 <_free_r> - 80060b6: 6ba1 ldr r1, [r4, #56] ; 0x38 - 80060b8: b111 cbz r1, 80060c0 <_reclaim_reent+0x54> - 80060ba: 4620 mov r0, r4 - 80060bc: f000 f860 bl 8006180 <_free_r> - 80060c0: 6ca1 ldr r1, [r4, #72] ; 0x48 - 80060c2: b111 cbz r1, 80060ca <_reclaim_reent+0x5e> - 80060c4: 4620 mov r0, r4 - 80060c6: f000 f85b bl 8006180 <_free_r> - 80060ca: 6c61 ldr r1, [r4, #68] ; 0x44 - 80060cc: b111 cbz r1, 80060d4 <_reclaim_reent+0x68> - 80060ce: 4620 mov r0, r4 - 80060d0: f000 f856 bl 8006180 <_free_r> - 80060d4: 6ae1 ldr r1, [r4, #44] ; 0x2c - 80060d6: b111 cbz r1, 80060de <_reclaim_reent+0x72> - 80060d8: 4620 mov r0, r4 - 80060da: f000 f851 bl 8006180 <_free_r> - 80060de: 6a23 ldr r3, [r4, #32] - 80060e0: b1b3 cbz r3, 8006110 <_reclaim_reent+0xa4> - 80060e2: 4620 mov r0, r4 - 80060e4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} - 80060e8: 4718 bx r3 - 80060ea: 5949 ldr r1, [r1, r5] - 80060ec: b941 cbnz r1, 8006100 <_reclaim_reent+0x94> - 80060ee: 3504 adds r5, #4 - 80060f0: 69e3 ldr r3, [r4, #28] - 80060f2: 2d80 cmp r5, #128 ; 0x80 - 80060f4: 68d9 ldr r1, [r3, #12] - 80060f6: d1f8 bne.n 80060ea <_reclaim_reent+0x7e> - 80060f8: 4620 mov r0, r4 - 80060fa: f000 f841 bl 8006180 <_free_r> - 80060fe: e7c0 b.n 8006082 <_reclaim_reent+0x16> - 8006100: 680e ldr r6, [r1, #0] - 8006102: 4620 mov r0, r4 - 8006104: f000 f83c bl 8006180 <_free_r> - 8006108: 4631 mov r1, r6 - 800610a: e7ef b.n 80060ec <_reclaim_reent+0x80> - 800610c: 2500 movs r5, #0 - 800610e: e7ef b.n 80060f0 <_reclaim_reent+0x84> - 8006110: bd70 pop {r4, r5, r6, pc} - 8006112: bf00 nop - 8006114: 2000005c .word 0x2000005c +0800609c <_reclaim_reent>: + 800609c: 4b29 ldr r3, [pc, #164] ; (8006144 <_reclaim_reent+0xa8>) + 800609e: 681b ldr r3, [r3, #0] + 80060a0: 4283 cmp r3, r0 + 80060a2: b570 push {r4, r5, r6, lr} + 80060a4: 4604 mov r4, r0 + 80060a6: d04b beq.n 8006140 <_reclaim_reent+0xa4> + 80060a8: 69c3 ldr r3, [r0, #28] + 80060aa: b143 cbz r3, 80060be <_reclaim_reent+0x22> + 80060ac: 68db ldr r3, [r3, #12] + 80060ae: 2b00 cmp r3, #0 + 80060b0: d144 bne.n 800613c <_reclaim_reent+0xa0> + 80060b2: 69e3 ldr r3, [r4, #28] + 80060b4: 6819 ldr r1, [r3, #0] + 80060b6: b111 cbz r1, 80060be <_reclaim_reent+0x22> + 80060b8: 4620 mov r0, r4 + 80060ba: f000 f879 bl 80061b0 <_free_r> + 80060be: 6961 ldr r1, [r4, #20] + 80060c0: b111 cbz r1, 80060c8 <_reclaim_reent+0x2c> + 80060c2: 4620 mov r0, r4 + 80060c4: f000 f874 bl 80061b0 <_free_r> + 80060c8: 69e1 ldr r1, [r4, #28] + 80060ca: b111 cbz r1, 80060d2 <_reclaim_reent+0x36> + 80060cc: 4620 mov r0, r4 + 80060ce: f000 f86f bl 80061b0 <_free_r> + 80060d2: 6b21 ldr r1, [r4, #48] ; 0x30 + 80060d4: b111 cbz r1, 80060dc <_reclaim_reent+0x40> + 80060d6: 4620 mov r0, r4 + 80060d8: f000 f86a bl 80061b0 <_free_r> + 80060dc: 6b61 ldr r1, [r4, #52] ; 0x34 + 80060de: b111 cbz r1, 80060e6 <_reclaim_reent+0x4a> + 80060e0: 4620 mov r0, r4 + 80060e2: f000 f865 bl 80061b0 <_free_r> + 80060e6: 6ba1 ldr r1, [r4, #56] ; 0x38 + 80060e8: b111 cbz r1, 80060f0 <_reclaim_reent+0x54> + 80060ea: 4620 mov r0, r4 + 80060ec: f000 f860 bl 80061b0 <_free_r> + 80060f0: 6ca1 ldr r1, [r4, #72] ; 0x48 + 80060f2: b111 cbz r1, 80060fa <_reclaim_reent+0x5e> + 80060f4: 4620 mov r0, r4 + 80060f6: f000 f85b bl 80061b0 <_free_r> + 80060fa: 6c61 ldr r1, [r4, #68] ; 0x44 + 80060fc: b111 cbz r1, 8006104 <_reclaim_reent+0x68> + 80060fe: 4620 mov r0, r4 + 8006100: f000 f856 bl 80061b0 <_free_r> + 8006104: 6ae1 ldr r1, [r4, #44] ; 0x2c + 8006106: b111 cbz r1, 800610e <_reclaim_reent+0x72> + 8006108: 4620 mov r0, r4 + 800610a: f000 f851 bl 80061b0 <_free_r> + 800610e: 6a23 ldr r3, [r4, #32] + 8006110: b1b3 cbz r3, 8006140 <_reclaim_reent+0xa4> + 8006112: 4620 mov r0, r4 + 8006114: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} + 8006118: 4718 bx r3 + 800611a: 5949 ldr r1, [r1, r5] + 800611c: b941 cbnz r1, 8006130 <_reclaim_reent+0x94> + 800611e: 3504 adds r5, #4 + 8006120: 69e3 ldr r3, [r4, #28] + 8006122: 2d80 cmp r5, #128 ; 0x80 + 8006124: 68d9 ldr r1, [r3, #12] + 8006126: d1f8 bne.n 800611a <_reclaim_reent+0x7e> + 8006128: 4620 mov r0, r4 + 800612a: f000 f841 bl 80061b0 <_free_r> + 800612e: e7c0 b.n 80060b2 <_reclaim_reent+0x16> + 8006130: 680e ldr r6, [r1, #0] + 8006132: 4620 mov r0, r4 + 8006134: f000 f83c bl 80061b0 <_free_r> + 8006138: 4631 mov r1, r6 + 800613a: e7ef b.n 800611c <_reclaim_reent+0x80> + 800613c: 2500 movs r5, #0 + 800613e: e7ef b.n 8006120 <_reclaim_reent+0x84> + 8006140: bd70 pop {r4, r5, r6, pc} + 8006142: bf00 nop + 8006144: 2000005c .word 0x2000005c -08006118 <__libc_init_array>: - 8006118: b570 push {r4, r5, r6, lr} - 800611a: 4d0d ldr r5, [pc, #52] ; (8006150 <__libc_init_array+0x38>) - 800611c: 4c0d ldr r4, [pc, #52] ; (8006154 <__libc_init_array+0x3c>) - 800611e: 1b64 subs r4, r4, r5 - 8006120: 10a4 asrs r4, r4, #2 - 8006122: 2600 movs r6, #0 - 8006124: 42a6 cmp r6, r4 - 8006126: d109 bne.n 800613c <__libc_init_array+0x24> - 8006128: 4d0b ldr r5, [pc, #44] ; (8006158 <__libc_init_array+0x40>) - 800612a: 4c0c ldr r4, [pc, #48] ; (800615c <__libc_init_array+0x44>) - 800612c: f000 f880 bl 8006230 <_init> - 8006130: 1b64 subs r4, r4, r5 - 8006132: 10a4 asrs r4, r4, #2 - 8006134: 2600 movs r6, #0 - 8006136: 42a6 cmp r6, r4 - 8006138: d105 bne.n 8006146 <__libc_init_array+0x2e> - 800613a: bd70 pop {r4, r5, r6, pc} - 800613c: f855 3b04 ldr.w r3, [r5], #4 - 8006140: 4798 blx r3 - 8006142: 3601 adds r6, #1 - 8006144: e7ee b.n 8006124 <__libc_init_array+0xc> - 8006146: f855 3b04 ldr.w r3, [r5], #4 - 800614a: 4798 blx r3 - 800614c: 3601 adds r6, #1 - 800614e: e7f2 b.n 8006136 <__libc_init_array+0x1e> - 8006150: 08006344 .word 0x08006344 - 8006154: 08006344 .word 0x08006344 - 8006158: 08006344 .word 0x08006344 - 800615c: 08006348 .word 0x08006348 +08006148 <__libc_init_array>: + 8006148: b570 push {r4, r5, r6, lr} + 800614a: 4d0d ldr r5, [pc, #52] ; (8006180 <__libc_init_array+0x38>) + 800614c: 4c0d ldr r4, [pc, #52] ; (8006184 <__libc_init_array+0x3c>) + 800614e: 1b64 subs r4, r4, r5 + 8006150: 10a4 asrs r4, r4, #2 + 8006152: 2600 movs r6, #0 + 8006154: 42a6 cmp r6, r4 + 8006156: d109 bne.n 800616c <__libc_init_array+0x24> + 8006158: 4d0b ldr r5, [pc, #44] ; (8006188 <__libc_init_array+0x40>) + 800615a: 4c0c ldr r4, [pc, #48] ; (800618c <__libc_init_array+0x44>) + 800615c: f000 f880 bl 8006260 <_init> + 8006160: 1b64 subs r4, r4, r5 + 8006162: 10a4 asrs r4, r4, #2 + 8006164: 2600 movs r6, #0 + 8006166: 42a6 cmp r6, r4 + 8006168: d105 bne.n 8006176 <__libc_init_array+0x2e> + 800616a: bd70 pop {r4, r5, r6, pc} + 800616c: f855 3b04 ldr.w r3, [r5], #4 + 8006170: 4798 blx r3 + 8006172: 3601 adds r6, #1 + 8006174: e7ee b.n 8006154 <__libc_init_array+0xc> + 8006176: f855 3b04 ldr.w r3, [r5], #4 + 800617a: 4798 blx r3 + 800617c: 3601 adds r6, #1 + 800617e: e7f2 b.n 8006166 <__libc_init_array+0x1e> + 8006180: 08006374 .word 0x08006374 + 8006184: 08006374 .word 0x08006374 + 8006188: 08006374 .word 0x08006374 + 800618c: 08006378 .word 0x08006378 -08006160 <__retarget_lock_acquire_recursive>: - 8006160: 4770 bx lr +08006190 <__retarget_lock_acquire_recursive>: + 8006190: 4770 bx lr -08006162 <__retarget_lock_release_recursive>: - 8006162: 4770 bx lr +08006192 <__retarget_lock_release_recursive>: + 8006192: 4770 bx lr -08006164 : - 8006164: 440a add r2, r1 - 8006166: 4291 cmp r1, r2 - 8006168: f100 33ff add.w r3, r0, #4294967295 - 800616c: d100 bne.n 8006170 - 800616e: 4770 bx lr - 8006170: b510 push {r4, lr} - 8006172: f811 4b01 ldrb.w r4, [r1], #1 - 8006176: f803 4f01 strb.w r4, [r3, #1]! - 800617a: 4291 cmp r1, r2 - 800617c: d1f9 bne.n 8006172 - 800617e: bd10 pop {r4, pc} +08006194 : + 8006194: 440a add r2, r1 + 8006196: 4291 cmp r1, r2 + 8006198: f100 33ff add.w r3, r0, #4294967295 + 800619c: d100 bne.n 80061a0 + 800619e: 4770 bx lr + 80061a0: b510 push {r4, lr} + 80061a2: f811 4b01 ldrb.w r4, [r1], #1 + 80061a6: f803 4f01 strb.w r4, [r3, #1]! + 80061aa: 4291 cmp r1, r2 + 80061ac: d1f9 bne.n 80061a2 + 80061ae: bd10 pop {r4, pc} -08006180 <_free_r>: - 8006180: b537 push {r0, r1, r2, r4, r5, lr} - 8006182: 2900 cmp r1, #0 - 8006184: d044 beq.n 8006210 <_free_r+0x90> - 8006186: f851 3c04 ldr.w r3, [r1, #-4] - 800618a: 9001 str r0, [sp, #4] - 800618c: 2b00 cmp r3, #0 - 800618e: f1a1 0404 sub.w r4, r1, #4 - 8006192: bfb8 it lt - 8006194: 18e4 addlt r4, r4, r3 - 8006196: f000 f83f bl 8006218 <__malloc_lock> - 800619a: 4a1e ldr r2, [pc, #120] ; (8006214 <_free_r+0x94>) - 800619c: 9801 ldr r0, [sp, #4] - 800619e: 6813 ldr r3, [r2, #0] - 80061a0: b933 cbnz r3, 80061b0 <_free_r+0x30> - 80061a2: 6063 str r3, [r4, #4] - 80061a4: 6014 str r4, [r2, #0] - 80061a6: b003 add sp, #12 - 80061a8: e8bd 4030 ldmia.w sp!, {r4, r5, lr} - 80061ac: f000 b83a b.w 8006224 <__malloc_unlock> - 80061b0: 42a3 cmp r3, r4 - 80061b2: d908 bls.n 80061c6 <_free_r+0x46> - 80061b4: 6825 ldr r5, [r4, #0] - 80061b6: 1961 adds r1, r4, r5 - 80061b8: 428b cmp r3, r1 - 80061ba: bf01 itttt eq - 80061bc: 6819 ldreq r1, [r3, #0] - 80061be: 685b ldreq r3, [r3, #4] - 80061c0: 1949 addeq r1, r1, r5 - 80061c2: 6021 streq r1, [r4, #0] - 80061c4: e7ed b.n 80061a2 <_free_r+0x22> - 80061c6: 461a mov r2, r3 - 80061c8: 685b ldr r3, [r3, #4] - 80061ca: b10b cbz r3, 80061d0 <_free_r+0x50> - 80061cc: 42a3 cmp r3, r4 - 80061ce: d9fa bls.n 80061c6 <_free_r+0x46> - 80061d0: 6811 ldr r1, [r2, #0] - 80061d2: 1855 adds r5, r2, r1 - 80061d4: 42a5 cmp r5, r4 - 80061d6: d10b bne.n 80061f0 <_free_r+0x70> - 80061d8: 6824 ldr r4, [r4, #0] - 80061da: 4421 add r1, r4 - 80061dc: 1854 adds r4, r2, r1 - 80061de: 42a3 cmp r3, r4 - 80061e0: 6011 str r1, [r2, #0] - 80061e2: d1e0 bne.n 80061a6 <_free_r+0x26> - 80061e4: 681c ldr r4, [r3, #0] - 80061e6: 685b ldr r3, [r3, #4] - 80061e8: 6053 str r3, [r2, #4] - 80061ea: 440c add r4, r1 - 80061ec: 6014 str r4, [r2, #0] - 80061ee: e7da b.n 80061a6 <_free_r+0x26> - 80061f0: d902 bls.n 80061f8 <_free_r+0x78> - 80061f2: 230c movs r3, #12 - 80061f4: 6003 str r3, [r0, #0] - 80061f6: e7d6 b.n 80061a6 <_free_r+0x26> - 80061f8: 6825 ldr r5, [r4, #0] - 80061fa: 1961 adds r1, r4, r5 - 80061fc: 428b cmp r3, r1 - 80061fe: bf04 itt eq - 8006200: 6819 ldreq r1, [r3, #0] - 8006202: 685b ldreq r3, [r3, #4] - 8006204: 6063 str r3, [r4, #4] - 8006206: bf04 itt eq - 8006208: 1949 addeq r1, r1, r5 - 800620a: 6021 streq r1, [r4, #0] - 800620c: 6054 str r4, [r2, #4] - 800620e: e7ca b.n 80061a6 <_free_r+0x26> - 8006210: b003 add sp, #12 - 8006212: bd30 pop {r4, r5, pc} - 8006214: 20004ca0 .word 0x20004ca0 +080061b0 <_free_r>: + 80061b0: b537 push {r0, r1, r2, r4, r5, lr} + 80061b2: 2900 cmp r1, #0 + 80061b4: d044 beq.n 8006240 <_free_r+0x90> + 80061b6: f851 3c04 ldr.w r3, [r1, #-4] + 80061ba: 9001 str r0, [sp, #4] + 80061bc: 2b00 cmp r3, #0 + 80061be: f1a1 0404 sub.w r4, r1, #4 + 80061c2: bfb8 it lt + 80061c4: 18e4 addlt r4, r4, r3 + 80061c6: f000 f83f bl 8006248 <__malloc_lock> + 80061ca: 4a1e ldr r2, [pc, #120] ; (8006244 <_free_r+0x94>) + 80061cc: 9801 ldr r0, [sp, #4] + 80061ce: 6813 ldr r3, [r2, #0] + 80061d0: b933 cbnz r3, 80061e0 <_free_r+0x30> + 80061d2: 6063 str r3, [r4, #4] + 80061d4: 6014 str r4, [r2, #0] + 80061d6: b003 add sp, #12 + 80061d8: e8bd 4030 ldmia.w sp!, {r4, r5, lr} + 80061dc: f000 b83a b.w 8006254 <__malloc_unlock> + 80061e0: 42a3 cmp r3, r4 + 80061e2: d908 bls.n 80061f6 <_free_r+0x46> + 80061e4: 6825 ldr r5, [r4, #0] + 80061e6: 1961 adds r1, r4, r5 + 80061e8: 428b cmp r3, r1 + 80061ea: bf01 itttt eq + 80061ec: 6819 ldreq r1, [r3, #0] + 80061ee: 685b ldreq r3, [r3, #4] + 80061f0: 1949 addeq r1, r1, r5 + 80061f2: 6021 streq r1, [r4, #0] + 80061f4: e7ed b.n 80061d2 <_free_r+0x22> + 80061f6: 461a mov r2, r3 + 80061f8: 685b ldr r3, [r3, #4] + 80061fa: b10b cbz r3, 8006200 <_free_r+0x50> + 80061fc: 42a3 cmp r3, r4 + 80061fe: d9fa bls.n 80061f6 <_free_r+0x46> + 8006200: 6811 ldr r1, [r2, #0] + 8006202: 1855 adds r5, r2, r1 + 8006204: 42a5 cmp r5, r4 + 8006206: d10b bne.n 8006220 <_free_r+0x70> + 8006208: 6824 ldr r4, [r4, #0] + 800620a: 4421 add r1, r4 + 800620c: 1854 adds r4, r2, r1 + 800620e: 42a3 cmp r3, r4 + 8006210: 6011 str r1, [r2, #0] + 8006212: d1e0 bne.n 80061d6 <_free_r+0x26> + 8006214: 681c ldr r4, [r3, #0] + 8006216: 685b ldr r3, [r3, #4] + 8006218: 6053 str r3, [r2, #4] + 800621a: 440c add r4, r1 + 800621c: 6014 str r4, [r2, #0] + 800621e: e7da b.n 80061d6 <_free_r+0x26> + 8006220: d902 bls.n 8006228 <_free_r+0x78> + 8006222: 230c movs r3, #12 + 8006224: 6003 str r3, [r0, #0] + 8006226: e7d6 b.n 80061d6 <_free_r+0x26> + 8006228: 6825 ldr r5, [r4, #0] + 800622a: 1961 adds r1, r4, r5 + 800622c: 428b cmp r3, r1 + 800622e: bf04 itt eq + 8006230: 6819 ldreq r1, [r3, #0] + 8006232: 685b ldreq r3, [r3, #4] + 8006234: 6063 str r3, [r4, #4] + 8006236: bf04 itt eq + 8006238: 1949 addeq r1, r1, r5 + 800623a: 6021 streq r1, [r4, #0] + 800623c: 6054 str r4, [r2, #4] + 800623e: e7ca b.n 80061d6 <_free_r+0x26> + 8006240: b003 add sp, #12 + 8006242: bd30 pop {r4, r5, pc} + 8006244: 20004ca0 .word 0x20004ca0 -08006218 <__malloc_lock>: - 8006218: 4801 ldr r0, [pc, #4] ; (8006220 <__malloc_lock+0x8>) - 800621a: f7ff bfa1 b.w 8006160 <__retarget_lock_acquire_recursive> - 800621e: bf00 nop - 8006220: 20004c9c .word 0x20004c9c +08006248 <__malloc_lock>: + 8006248: 4801 ldr r0, [pc, #4] ; (8006250 <__malloc_lock+0x8>) + 800624a: f7ff bfa1 b.w 8006190 <__retarget_lock_acquire_recursive> + 800624e: bf00 nop + 8006250: 20004c9c .word 0x20004c9c -08006224 <__malloc_unlock>: - 8006224: 4801 ldr r0, [pc, #4] ; (800622c <__malloc_unlock+0x8>) - 8006226: f7ff bf9c b.w 8006162 <__retarget_lock_release_recursive> - 800622a: bf00 nop - 800622c: 20004c9c .word 0x20004c9c +08006254 <__malloc_unlock>: + 8006254: 4801 ldr r0, [pc, #4] ; (800625c <__malloc_unlock+0x8>) + 8006256: f7ff bf9c b.w 8006192 <__retarget_lock_release_recursive> + 800625a: bf00 nop + 800625c: 20004c9c .word 0x20004c9c -08006230 <_init>: - 8006230: b5f8 push {r3, r4, r5, r6, r7, lr} - 8006232: bf00 nop - 8006234: bcf8 pop {r3, r4, r5, r6, r7} - 8006236: bc08 pop {r3} - 8006238: 469e mov lr, r3 - 800623a: 4770 bx lr +08006260 <_init>: + 8006260: b5f8 push {r3, r4, r5, r6, r7, lr} + 8006262: bf00 nop + 8006264: bcf8 pop {r3, r4, r5, r6, r7} + 8006266: bc08 pop {r3} + 8006268: 469e mov lr, r3 + 800626a: 4770 bx lr -0800623c <_fini>: - 800623c: b5f8 push {r3, r4, r5, r6, r7, lr} - 800623e: bf00 nop - 8006240: bcf8 pop {r3, r4, r5, r6, r7} - 8006242: bc08 pop {r3} - 8006244: 469e mov lr, r3 - 8006246: 4770 bx lr +0800626c <_fini>: + 800626c: b5f8 push {r3, r4, r5, r6, r7, lr} + 800626e: bf00 nop + 8006270: bcf8 pop {r3, r4, r5, r6, r7} + 8006272: bc08 pop {r3} + 8006274: 469e mov lr, r3 + 8006276: 4770 bx lr diff --git a/access_control_stm32/Debug/access_control_stm32.map b/access_control_stm32/Debug/access_control_stm32.map index e7d59a0..14b0785 100644 --- a/access_control_stm32/Debug/access_control_stm32.map +++ b/access_control_stm32/Debug/access_control_stm32.map @@ -208,9 +208,9 @@ Discarded input sections .debug_macro 0x0000000000000000 0x47 ./Core/Src/freertos.o .debug_macro 0x0000000000000000 0x295 ./Core/Src/freertos.o .debug_macro 0x0000000000000000 0x126 ./Core/Src/freertos.o - .debug_macro 0x0000000000000000 0x70 ./Core/Src/freertos.o + .debug_macro 0x0000000000000000 0x7c ./Core/Src/freertos.o .debug_line 0x0000000000000000 0x99e ./Core/Src/freertos.o - .debug_str 0x0000000000000000 0x97c4a ./Core/Src/freertos.o + .debug_str 0x0000000000000000 0x97c75 ./Core/Src/freertos.o .comment 0x0000000000000000 0x44 ./Core/Src/freertos.o .ARM.attributes 0x0000000000000000 0x34 ./Core/Src/freertos.o @@ -340,7 +340,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x47 ./Core/Src/main.o .debug_macro 0x0000000000000000 0x295 ./Core/Src/main.o .debug_macro 0x0000000000000000 0x126 ./Core/Src/main.o - .debug_macro 0x0000000000000000 0x70 ./Core/Src/main.o + .debug_macro 0x0000000000000000 0x7c ./Core/Src/main.o .debug_macro 0x0000000000000000 0x15a ./Core/Src/main.o .debug_macro 0x0000000000000000 0xc9 ./Core/Src/main.o .debug_macro 0x0000000000000000 0x1c ./Core/Src/main.o @@ -456,7 +456,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x47 ./Core/Src/stm32f4xx_hal_msp.o .debug_macro 0x0000000000000000 0x295 ./Core/Src/stm32f4xx_hal_msp.o .debug_macro 0x0000000000000000 0x126 ./Core/Src/stm32f4xx_hal_msp.o - .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f4xx_hal_msp.o + .debug_macro 0x0000000000000000 0x7c ./Core/Src/stm32f4xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f4xx_hal_timebase_tim.o .group 0x0000000000000000 0xc ./Core/Src/stm32f4xx_hal_timebase_tim.o .group 0x0000000000000000 0xc ./Core/Src/stm32f4xx_hal_timebase_tim.o @@ -640,7 +640,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x47 ./Core/Src/stm32f4xx_it.o .debug_macro 0x0000000000000000 0x295 ./Core/Src/stm32f4xx_it.o .debug_macro 0x0000000000000000 0x126 ./Core/Src/stm32f4xx_it.o - .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f4xx_it.o + .debug_macro 0x0000000000000000 0x7c ./Core/Src/stm32f4xx_it.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o @@ -4978,7 +4978,7 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000008000000 g_pfnVectors 0x0000000008000198 . = ALIGN (0x4) -.text 0x00000000080001a0 0x60a8 +.text 0x00000000080001a0 0x60d8 0x00000000080001a0 . = ALIGN (0x4) *(.text) .text 0x00000000080001a0 0x40 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o @@ -5003,597 +5003,596 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext .text.MX_USART2_UART_Init 0x0000000008000734 0x54 ./Core/Src/main.o .text.MX_GPIO_Init - 0x0000000008000788 0xf8 ./Core/Src/main.o + 0x0000000008000788 0x120 ./Core/Src/main.o .text.StartMainTask - 0x0000000008000880 0x120 ./Core/Src/main.o - 0x0000000008000880 StartMainTask + 0x00000000080008a8 0x120 ./Core/Src/main.o + 0x00000000080008a8 StartMainTask .text.startDoorHandleTask - 0x00000000080009a0 0x17c ./Core/Src/main.o - 0x00000000080009a0 startDoorHandleTask + 0x00000000080009c8 0x190 ./Core/Src/main.o + 0x00000000080009c8 startDoorHandleTask .text.StartStateSendTask - 0x0000000008000b1c 0x58 ./Core/Src/main.o - 0x0000000008000b1c StartStateSendTask + 0x0000000008000b58 0x58 ./Core/Src/main.o + 0x0000000008000b58 StartStateSendTask .text.StartADCReqTask - 0x0000000008000b74 0x1c ./Core/Src/main.o - 0x0000000008000b74 StartADCReqTask + 0x0000000008000bb0 0x1c ./Core/Src/main.o + 0x0000000008000bb0 StartADCReqTask .text.HAL_TIM_PeriodElapsedCallback - 0x0000000008000b90 0x24 ./Core/Src/main.o - 0x0000000008000b90 HAL_TIM_PeriodElapsedCallback + 0x0000000008000bcc 0x24 ./Core/Src/main.o + 0x0000000008000bcc HAL_TIM_PeriodElapsedCallback .text.Error_Handler - 0x0000000008000bb4 0xa ./Core/Src/main.o - 0x0000000008000bb4 Error_Handler - *fill* 0x0000000008000bbe 0x2 + 0x0000000008000bf0 0xa ./Core/Src/main.o + 0x0000000008000bf0 Error_Handler + *fill* 0x0000000008000bfa 0x2 .text.HAL_MspInit - 0x0000000008000bc0 0x58 ./Core/Src/stm32f4xx_hal_msp.o - 0x0000000008000bc0 HAL_MspInit + 0x0000000008000bfc 0x58 ./Core/Src/stm32f4xx_hal_msp.o + 0x0000000008000bfc HAL_MspInit .text.HAL_ADC_MspInit - 0x0000000008000c18 0x98 ./Core/Src/stm32f4xx_hal_msp.o - 0x0000000008000c18 HAL_ADC_MspInit + 0x0000000008000c54 0x98 ./Core/Src/stm32f4xx_hal_msp.o + 0x0000000008000c54 HAL_ADC_MspInit .text.HAL_UART_MspInit - 0x0000000008000cb0 0x90 ./Core/Src/stm32f4xx_hal_msp.o - 0x0000000008000cb0 HAL_UART_MspInit + 0x0000000008000cec 0x90 ./Core/Src/stm32f4xx_hal_msp.o + 0x0000000008000cec HAL_UART_MspInit .text.HAL_InitTick - 0x0000000008000d40 0xe4 ./Core/Src/stm32f4xx_hal_timebase_tim.o - 0x0000000008000d40 HAL_InitTick + 0x0000000008000d7c 0xe4 ./Core/Src/stm32f4xx_hal_timebase_tim.o + 0x0000000008000d7c HAL_InitTick .text.NMI_Handler - 0x0000000008000e24 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e24 NMI_Handler + 0x0000000008000e60 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e60 NMI_Handler .text.HardFault_Handler - 0x0000000008000e2a 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e2a HardFault_Handler + 0x0000000008000e66 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e66 HardFault_Handler .text.MemManage_Handler - 0x0000000008000e30 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e30 MemManage_Handler + 0x0000000008000e6c 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e6c MemManage_Handler .text.BusFault_Handler - 0x0000000008000e36 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e36 BusFault_Handler + 0x0000000008000e72 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e72 BusFault_Handler .text.UsageFault_Handler - 0x0000000008000e3c 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e3c UsageFault_Handler + 0x0000000008000e78 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e78 UsageFault_Handler .text.DebugMon_Handler - 0x0000000008000e42 0xe ./Core/Src/stm32f4xx_it.o - 0x0000000008000e42 DebugMon_Handler + 0x0000000008000e7e 0xe ./Core/Src/stm32f4xx_it.o + 0x0000000008000e7e DebugMon_Handler .text.ADC_IRQHandler - 0x0000000008000e50 0x14 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e50 ADC_IRQHandler + 0x0000000008000e8c 0x14 ./Core/Src/stm32f4xx_it.o + 0x0000000008000e8c ADC_IRQHandler .text.TIM1_UP_TIM10_IRQHandler - 0x0000000008000e64 0x14 ./Core/Src/stm32f4xx_it.o - 0x0000000008000e64 TIM1_UP_TIM10_IRQHandler + 0x0000000008000ea0 0x14 ./Core/Src/stm32f4xx_it.o + 0x0000000008000ea0 TIM1_UP_TIM10_IRQHandler .text.SystemInit - 0x0000000008000e78 0x24 ./Core/Src/system_stm32f4xx.o - 0x0000000008000e78 SystemInit + 0x0000000008000eb4 0x24 ./Core/Src/system_stm32f4xx.o + 0x0000000008000eb4 SystemInit .text.Reset_Handler - 0x0000000008000e9c 0x50 ./Core/Startup/startup_stm32f411retx.o - 0x0000000008000e9c Reset_Handler + 0x0000000008000ed8 0x50 ./Core/Startup/startup_stm32f411retx.o + 0x0000000008000ed8 Reset_Handler .text.Default_Handler - 0x0000000008000eec 0x2 ./Core/Startup/startup_stm32f411retx.o - 0x0000000008000eec RTC_Alarm_IRQHandler - 0x0000000008000eec EXTI2_IRQHandler - 0x0000000008000eec SPI4_IRQHandler - 0x0000000008000eec TIM1_CC_IRQHandler - 0x0000000008000eec DMA2_Stream5_IRQHandler - 0x0000000008000eec DMA1_Stream5_IRQHandler - 0x0000000008000eec PVD_IRQHandler - 0x0000000008000eec SDIO_IRQHandler - 0x0000000008000eec TAMP_STAMP_IRQHandler - 0x0000000008000eec EXTI3_IRQHandler - 0x0000000008000eec I2C3_ER_IRQHandler - 0x0000000008000eec EXTI0_IRQHandler - 0x0000000008000eec I2C2_EV_IRQHandler - 0x0000000008000eec DMA1_Stream2_IRQHandler - 0x0000000008000eec FPU_IRQHandler - 0x0000000008000eec DMA2_Stream2_IRQHandler - 0x0000000008000eec SPI1_IRQHandler - 0x0000000008000eec TIM1_BRK_TIM9_IRQHandler - 0x0000000008000eec DMA2_Stream3_IRQHandler - 0x0000000008000eec USART6_IRQHandler - 0x0000000008000eec DMA2_Stream0_IRQHandler - 0x0000000008000eec TIM4_IRQHandler - 0x0000000008000eec I2C1_EV_IRQHandler - 0x0000000008000eec DMA1_Stream6_IRQHandler - 0x0000000008000eec DMA1_Stream1_IRQHandler - 0x0000000008000eec TIM3_IRQHandler - 0x0000000008000eec RCC_IRQHandler - 0x0000000008000eec Default_Handler - 0x0000000008000eec EXTI15_10_IRQHandler - 0x0000000008000eec DMA1_Stream7_IRQHandler - 0x0000000008000eec SPI5_IRQHandler - 0x0000000008000eec TIM5_IRQHandler - 0x0000000008000eec DMA2_Stream7_IRQHandler - 0x0000000008000eec I2C3_EV_IRQHandler - 0x0000000008000eec EXTI9_5_IRQHandler - 0x0000000008000eec RTC_WKUP_IRQHandler - 0x0000000008000eec SPI2_IRQHandler - 0x0000000008000eec DMA1_Stream0_IRQHandler - 0x0000000008000eec EXTI4_IRQHandler - 0x0000000008000eec WWDG_IRQHandler - 0x0000000008000eec TIM2_IRQHandler - 0x0000000008000eec OTG_FS_WKUP_IRQHandler - 0x0000000008000eec TIM1_TRG_COM_TIM11_IRQHandler - 0x0000000008000eec EXTI1_IRQHandler - 0x0000000008000eec USART2_IRQHandler - 0x0000000008000eec I2C2_ER_IRQHandler - 0x0000000008000eec DMA2_Stream1_IRQHandler - 0x0000000008000eec FLASH_IRQHandler - 0x0000000008000eec DMA2_Stream4_IRQHandler - 0x0000000008000eec USART1_IRQHandler - 0x0000000008000eec OTG_FS_IRQHandler - 0x0000000008000eec SPI3_IRQHandler - 0x0000000008000eec DMA1_Stream4_IRQHandler - 0x0000000008000eec I2C1_ER_IRQHandler - 0x0000000008000eec DMA2_Stream6_IRQHandler - 0x0000000008000eec DMA1_Stream3_IRQHandler - *fill* 0x0000000008000eee 0x2 + 0x0000000008000f28 0x2 ./Core/Startup/startup_stm32f411retx.o + 0x0000000008000f28 RTC_Alarm_IRQHandler + 0x0000000008000f28 EXTI2_IRQHandler + 0x0000000008000f28 SPI4_IRQHandler + 0x0000000008000f28 TIM1_CC_IRQHandler + 0x0000000008000f28 DMA2_Stream5_IRQHandler + 0x0000000008000f28 DMA1_Stream5_IRQHandler + 0x0000000008000f28 PVD_IRQHandler + 0x0000000008000f28 SDIO_IRQHandler + 0x0000000008000f28 TAMP_STAMP_IRQHandler + 0x0000000008000f28 EXTI3_IRQHandler + 0x0000000008000f28 I2C3_ER_IRQHandler + 0x0000000008000f28 EXTI0_IRQHandler + 0x0000000008000f28 I2C2_EV_IRQHandler + 0x0000000008000f28 DMA1_Stream2_IRQHandler + 0x0000000008000f28 FPU_IRQHandler + 0x0000000008000f28 DMA2_Stream2_IRQHandler + 0x0000000008000f28 SPI1_IRQHandler + 0x0000000008000f28 TIM1_BRK_TIM9_IRQHandler + 0x0000000008000f28 DMA2_Stream3_IRQHandler + 0x0000000008000f28 USART6_IRQHandler + 0x0000000008000f28 DMA2_Stream0_IRQHandler + 0x0000000008000f28 TIM4_IRQHandler + 0x0000000008000f28 I2C1_EV_IRQHandler + 0x0000000008000f28 DMA1_Stream6_IRQHandler + 0x0000000008000f28 DMA1_Stream1_IRQHandler + 0x0000000008000f28 TIM3_IRQHandler + 0x0000000008000f28 RCC_IRQHandler + 0x0000000008000f28 Default_Handler + 0x0000000008000f28 EXTI15_10_IRQHandler + 0x0000000008000f28 DMA1_Stream7_IRQHandler + 0x0000000008000f28 SPI5_IRQHandler + 0x0000000008000f28 TIM5_IRQHandler + 0x0000000008000f28 DMA2_Stream7_IRQHandler + 0x0000000008000f28 I2C3_EV_IRQHandler + 0x0000000008000f28 EXTI9_5_IRQHandler + 0x0000000008000f28 RTC_WKUP_IRQHandler + 0x0000000008000f28 SPI2_IRQHandler + 0x0000000008000f28 DMA1_Stream0_IRQHandler + 0x0000000008000f28 EXTI4_IRQHandler + 0x0000000008000f28 WWDG_IRQHandler + 0x0000000008000f28 TIM2_IRQHandler + 0x0000000008000f28 OTG_FS_WKUP_IRQHandler + 0x0000000008000f28 TIM1_TRG_COM_TIM11_IRQHandler + 0x0000000008000f28 EXTI1_IRQHandler + 0x0000000008000f28 USART2_IRQHandler + 0x0000000008000f28 I2C2_ER_IRQHandler + 0x0000000008000f28 DMA2_Stream1_IRQHandler + 0x0000000008000f28 FLASH_IRQHandler + 0x0000000008000f28 DMA2_Stream4_IRQHandler + 0x0000000008000f28 USART1_IRQHandler + 0x0000000008000f28 OTG_FS_IRQHandler + 0x0000000008000f28 SPI3_IRQHandler + 0x0000000008000f28 DMA1_Stream4_IRQHandler + 0x0000000008000f28 I2C1_ER_IRQHandler + 0x0000000008000f28 DMA2_Stream6_IRQHandler + 0x0000000008000f28 DMA1_Stream3_IRQHandler + *fill* 0x0000000008000f2a 0x2 .text.HAL_Init - 0x0000000008000ef0 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000ef0 HAL_Init + 0x0000000008000f2c 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000f2c HAL_Init .text.HAL_IncTick - 0x0000000008000f34 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000f34 HAL_IncTick + 0x0000000008000f70 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000f70 HAL_IncTick .text.HAL_GetTick - 0x0000000008000f5c 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000f5c HAL_GetTick + 0x0000000008000f98 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000f98 HAL_GetTick .text.HAL_ADC_Init - 0x0000000008000f74 0x86 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x0000000008000f74 HAL_ADC_Init - *fill* 0x0000000008000ffa 0x2 + 0x0000000008000fb0 0x86 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x0000000008000fb0 HAL_ADC_Init + *fill* 0x0000000008001036 0x2 .text.HAL_ADC_Start_IT - 0x0000000008000ffc 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x0000000008000ffc HAL_ADC_Start_IT + 0x0000000008001038 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x0000000008001038 HAL_ADC_Start_IT .text.HAL_ADC_IRQHandler - 0x0000000008001178 0x220 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x0000000008001178 HAL_ADC_IRQHandler + 0x00000000080011b4 0x220 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x00000000080011b4 HAL_ADC_IRQHandler .text.HAL_ADC_GetValue - 0x0000000008001398 0x1a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x0000000008001398 HAL_ADC_GetValue + 0x00000000080013d4 0x1a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x00000000080013d4 HAL_ADC_GetValue .text.HAL_ADC_LevelOutOfWindowCallback - 0x00000000080013b2 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x00000000080013b2 HAL_ADC_LevelOutOfWindowCallback + 0x00000000080013ee 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x00000000080013ee HAL_ADC_LevelOutOfWindowCallback .text.HAL_ADC_ErrorCallback - 0x00000000080013c6 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x00000000080013c6 HAL_ADC_ErrorCallback - *fill* 0x00000000080013da 0x2 + 0x0000000008001402 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x0000000008001402 HAL_ADC_ErrorCallback + *fill* 0x0000000008001416 0x2 .text.HAL_ADC_ConfigChannel - 0x00000000080013dc 0x264 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - 0x00000000080013dc HAL_ADC_ConfigChannel + 0x0000000008001418 0x264 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x0000000008001418 HAL_ADC_ConfigChannel .text.ADC_Init - 0x0000000008001640 0x1f8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + 0x000000000800167c 0x1f8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o .text.HAL_ADCEx_InjectedConvCpltCallback - 0x0000000008001838 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o - 0x0000000008001838 HAL_ADCEx_InjectedConvCpltCallback + 0x0000000008001874 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o + 0x0000000008001874 HAL_ADCEx_InjectedConvCpltCallback .text.__NVIC_SetPriorityGrouping - 0x000000000800184c 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008001888 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x0000000008001894 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x00000000080018d0 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_EnableIRQ - 0x00000000080018b0 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x00000000080018ec 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_SetPriority - 0x00000000080018ec 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008001928 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.NVIC_EncodePriority - 0x0000000008001940 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x000000000800197c 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x00000000080019a6 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x00000000080019a6 HAL_NVIC_SetPriorityGrouping + 0x00000000080019e2 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x00000000080019e2 HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x00000000080019bc 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x00000000080019bc HAL_NVIC_SetPriority + 0x00000000080019f8 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x00000000080019f8 HAL_NVIC_SetPriority .text.HAL_NVIC_EnableIRQ - 0x00000000080019f4 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x00000000080019f4 HAL_NVIC_EnableIRQ + 0x0000000008001a30 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008001a30 HAL_NVIC_EnableIRQ .text.HAL_GPIO_Init - 0x0000000008001a10 0x308 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008001a10 HAL_GPIO_Init + 0x0000000008001a4c 0x308 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x0000000008001a4c HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x0000000008001d18 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008001d18 HAL_GPIO_ReadPin + 0x0000000008001d54 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x0000000008001d54 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x0000000008001d48 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008001d48 HAL_GPIO_WritePin - *fill* 0x0000000008001d7a 0x2 + 0x0000000008001d84 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x0000000008001d84 HAL_GPIO_WritePin + *fill* 0x0000000008001db6 0x2 .text.HAL_RCC_OscConfig - 0x0000000008001d7c 0x4f0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001d7c HAL_RCC_OscConfig + 0x0000000008001db8 0x4f0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001db8 HAL_RCC_OscConfig .text.HAL_RCC_ClockConfig - 0x000000000800226c 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x000000000800226c HAL_RCC_ClockConfig + 0x00000000080022a8 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x00000000080022a8 HAL_RCC_ClockConfig .text.HAL_RCC_GetSysClockFreq - 0x0000000008002438 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008002438 HAL_RCC_GetSysClockFreq + 0x0000000008002474 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008002474 HAL_RCC_GetSysClockFreq .text.HAL_RCC_GetHCLKFreq - 0x0000000008002644 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008002644 HAL_RCC_GetHCLKFreq + 0x0000000008002680 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008002680 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x000000000800265c 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x000000000800265c HAL_RCC_GetPCLK1Freq + 0x0000000008002698 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008002698 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x0000000008002684 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008002684 HAL_RCC_GetPCLK2Freq + 0x00000000080026c0 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x00000000080026c0 HAL_RCC_GetPCLK2Freq .text.HAL_RCC_GetClockConfig - 0x00000000080026ac 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x00000000080026ac HAL_RCC_GetClockConfig + 0x00000000080026e8 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x00000000080026e8 HAL_RCC_GetClockConfig .text.HAL_TIM_Base_Init - 0x0000000008002710 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002710 HAL_TIM_Base_Init + 0x000000000800274c 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x000000000800274c HAL_TIM_Base_Init .text.HAL_TIM_Base_MspInit - 0x00000000080027ae 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x00000000080027ae HAL_TIM_Base_MspInit - *fill* 0x00000000080027c2 0x2 + 0x00000000080027ea 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x00000000080027ea HAL_TIM_Base_MspInit + *fill* 0x00000000080027fe 0x2 .text.HAL_TIM_Base_Start_IT - 0x00000000080027c4 0xc4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x00000000080027c4 HAL_TIM_Base_Start_IT + 0x0000000008002800 0xc4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008002800 HAL_TIM_Base_Start_IT .text.HAL_TIM_IRQHandler - 0x0000000008002888 0x210 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002888 HAL_TIM_IRQHandler + 0x00000000080028c4 0x210 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x00000000080028c4 HAL_TIM_IRQHandler .text.HAL_TIM_OC_DelayElapsedCallback - 0x0000000008002a98 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002a98 HAL_TIM_OC_DelayElapsedCallback - .text.HAL_TIM_IC_CaptureCallback - 0x0000000008002aac 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002aac HAL_TIM_IC_CaptureCallback - .text.HAL_TIM_PWM_PulseFinishedCallback - 0x0000000008002ac0 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002ac0 HAL_TIM_PWM_PulseFinishedCallback - .text.HAL_TIM_TriggerCallback 0x0000000008002ad4 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002ad4 HAL_TIM_TriggerCallback + 0x0000000008002ad4 HAL_TIM_OC_DelayElapsedCallback + .text.HAL_TIM_IC_CaptureCallback + 0x0000000008002ae8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008002ae8 HAL_TIM_IC_CaptureCallback + .text.HAL_TIM_PWM_PulseFinishedCallback + 0x0000000008002afc 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008002afc HAL_TIM_PWM_PulseFinishedCallback + .text.HAL_TIM_TriggerCallback + 0x0000000008002b10 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008002b10 HAL_TIM_TriggerCallback .text.TIM_Base_SetConfig - 0x0000000008002ae8 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008002ae8 TIM_Base_SetConfig + 0x0000000008002b24 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008002b24 TIM_Base_SetConfig .text.HAL_TIMEx_CommutCallback - 0x0000000008002be8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x0000000008002be8 HAL_TIMEx_CommutCallback + 0x0000000008002c24 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x0000000008002c24 HAL_TIMEx_CommutCallback .text.HAL_TIMEx_BreakCallback - 0x0000000008002bfc 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x0000000008002bfc HAL_TIMEx_BreakCallback + 0x0000000008002c38 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x0000000008002c38 HAL_TIMEx_BreakCallback .text.HAL_UART_Init - 0x0000000008002c10 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0000000008002c10 HAL_UART_Init + 0x0000000008002c4c 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0000000008002c4c HAL_UART_Init .text.HAL_UART_Transmit - 0x0000000008002caa 0x124 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0000000008002caa HAL_UART_Transmit + 0x0000000008002ce6 0x124 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0000000008002ce6 HAL_UART_Transmit .text.HAL_UART_Receive - 0x0000000008002dce 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0000000008002dce HAL_UART_Receive + 0x0000000008002e0a 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0000000008002e0a HAL_UART_Receive .text.UART_WaitOnFlagUntilTimeout - 0x0000000008002f12 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - *fill* 0x0000000008002fee 0x2 + 0x0000000008002f4e 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + *fill* 0x000000000800302a 0x2 .text.UART_SetConfig - 0x0000000008002ff0 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x000000000800302c 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.__NVIC_SetPriority - 0x00000000080034d8 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008003514 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o .text.SysTick_Handler - 0x000000000800352c 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x000000000800352c SysTick_Handler + 0x0000000008003568 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008003568 SysTick_Handler .text.SVC_Setup - 0x000000000800354c 0x12 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - *fill* 0x000000000800355e 0x2 + 0x0000000008003588 0x12 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + *fill* 0x000000000800359a 0x2 .text.osKernelInitialize - 0x0000000008003560 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008003560 osKernelInitialize + 0x000000000800359c 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x000000000800359c osKernelInitialize .text.osKernelStart - 0x00000000080035a8 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x00000000080035a8 osKernelStart + 0x00000000080035e4 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x00000000080035e4 osKernelStart .text.osThreadNew - 0x00000000080035f4 0x124 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x00000000080035f4 osThreadNew - .text.osDelay 0x0000000008003718 0x36 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008003718 osDelay - *fill* 0x000000000800374e 0x2 + 0x0000000008003630 0x124 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008003630 osThreadNew + .text.osDelay 0x0000000008003754 0x36 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008003754 osDelay + *fill* 0x000000000800378a 0x2 .text.vApplicationGetIdleTaskMemory - 0x0000000008003750 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008003750 vApplicationGetIdleTaskMemory + 0x000000000800378c 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x000000000800378c vApplicationGetIdleTaskMemory .text.vApplicationGetTimerTaskMemory - 0x0000000008003784 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008003784 vApplicationGetTimerTaskMemory + 0x00000000080037c0 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x00000000080037c0 vApplicationGetTimerTaskMemory .text.vListInitialise - 0x00000000080037b8 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x00000000080037b8 vListInitialise + 0x00000000080037f4 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x00000000080037f4 vListInitialise .text.vListInitialiseItem - 0x00000000080037f8 0x1a ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x00000000080037f8 vListInitialiseItem + 0x0000000008003834 0x1a ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008003834 vListInitialiseItem .text.vListInsertEnd - 0x0000000008003812 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008003812 vListInsertEnd + 0x000000000800384e 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x000000000800384e vListInsertEnd .text.vListInsert - 0x000000000800385a 0x72 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x000000000800385a vListInsert + 0x0000000008003896 0x72 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008003896 vListInsert .text.uxListRemove - 0x00000000080038cc 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x00000000080038cc uxListRemove + 0x0000000008003908 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008003908 uxListRemove .text.xQueueGenericReset - 0x0000000008003920 0xd0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003920 xQueueGenericReset + 0x000000000800395c 0xd0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x000000000800395c xQueueGenericReset .text.xQueueGenericCreateStatic - 0x00000000080039f0 0xf0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x00000000080039f0 xQueueGenericCreateStatic + 0x0000000008003a2c 0xf0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003a2c xQueueGenericCreateStatic .text.prvInitialiseNewQueue - 0x0000000008003ae0 0x46 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - *fill* 0x0000000008003b26 0x2 + 0x0000000008003b1c 0x46 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + *fill* 0x0000000008003b62 0x2 .text.xQueueGenericSend - 0x0000000008003b28 0x1fc ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003b28 xQueueGenericSend + 0x0000000008003b64 0x1fc ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003b64 xQueueGenericSend .text.xQueueGenericSendFromISR - 0x0000000008003d24 0x136 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003d24 xQueueGenericSendFromISR - *fill* 0x0000000008003e5a 0x2 + 0x0000000008003d60 0x136 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003d60 xQueueGenericSendFromISR + *fill* 0x0000000008003e96 0x2 .text.xQueueReceive - 0x0000000008003e5c 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003e5c xQueueReceive + 0x0000000008003e98 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003e98 xQueueReceive .text.prvCopyDataToQueue - 0x000000000800401c 0xd4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008004058 0xd4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x00000000080040f0 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x000000000800412c 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x000000000800413c 0xa4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008004178 0xa4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x00000000080041e0 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x000000000800421c 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueFull - 0x000000000800420c 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008004248 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.vQueueAddToRegistry - 0x000000000800423c 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x000000000800423c vQueueAddToRegistry + 0x0000000008004278 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008004278 vQueueAddToRegistry .text.vQueueWaitForMessageRestricted - 0x0000000008004290 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008004290 vQueueWaitForMessageRestricted + 0x00000000080042cc 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080042cc vQueueWaitForMessageRestricted .text.xTaskCreateStatic - 0x00000000080042f8 0xba ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080042f8 xTaskCreateStatic + 0x0000000008004334 0xba ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004334 xTaskCreateStatic .text.xTaskCreate - 0x00000000080043b2 0x8a ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080043b2 xTaskCreate + 0x00000000080043ee 0x8a ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080043ee xTaskCreate .text.prvInitialiseNewTask - 0x000000000800443c 0x14c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004478 0x14c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x0000000008004588 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080045c4 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskDelay - 0x0000000008004668 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004668 vTaskDelay + 0x00000000080046a4 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080046a4 vTaskDelay .text.vTaskStartScheduler - 0x00000000080046d0 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080046d0 vTaskStartScheduler + 0x000000000800470c 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000000000800470c vTaskStartScheduler .text.vTaskSuspendAll - 0x00000000080047b0 0x1c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080047b0 vTaskSuspendAll + 0x00000000080047ec 0x1c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080047ec vTaskSuspendAll .text.xTaskResumeAll - 0x00000000080047cc 0x13c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080047cc xTaskResumeAll + 0x0000000008004808 0x13c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004808 xTaskResumeAll .text.xTaskGetTickCount - 0x0000000008004908 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004908 xTaskGetTickCount + 0x0000000008004944 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004944 xTaskGetTickCount .text.xTaskIncrementTick - 0x0000000008004928 0x174 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004928 xTaskIncrementTick + 0x0000000008004964 0x174 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004964 xTaskIncrementTick .text.vTaskSwitchContext - 0x0000000008004a9c 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004a9c vTaskSwitchContext + 0x0000000008004ad8 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004ad8 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x0000000008004b64 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004b64 vTaskPlaceOnEventList + 0x0000000008004ba0 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004ba0 vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted - 0x0000000008004bac 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004bac vTaskPlaceOnEventListRestricted + 0x0000000008004be8 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004be8 vTaskPlaceOnEventListRestricted .text.xTaskRemoveFromEventList - 0x0000000008004c04 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004c04 xTaskRemoveFromEventList + 0x0000000008004c40 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004c40 xTaskRemoveFromEventList .text.vTaskInternalSetTimeOutState - 0x0000000008004ccc 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004ccc vTaskInternalSetTimeOutState + 0x0000000008004d08 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004d08 vTaskInternalSetTimeOutState .text.xTaskCheckForTimeOut - 0x0000000008004cf8 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004cf8 xTaskCheckForTimeOut + 0x0000000008004d34 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004d34 xTaskCheckForTimeOut .text.vTaskMissedYield - 0x0000000008004dbc 0x18 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004dbc vTaskMissedYield + 0x0000000008004df8 0x18 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004df8 vTaskMissedYield .text.prvIdleTask - 0x0000000008004dd4 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004e10 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x0000000008004e04 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004e40 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvCheckTasksWaitingTermination - 0x0000000008004e84 0x5c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004ec0 0x5c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x0000000008004ee0 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004f1c 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvResetNextTaskUnblockTime - 0x0000000008004f48 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004f84 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskGetSchedulerState - 0x0000000008004f88 0x3c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004f88 xTaskGetSchedulerState + 0x0000000008004fc4 0x3c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004fc4 xTaskGetSchedulerState .text.xTaskPriorityDisinherit - 0x0000000008004fc4 0xdc ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004fc4 xTaskPriorityDisinherit + 0x0000000008005000 0xdc ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008005000 xTaskPriorityDisinherit .text.prvAddCurrentTaskToDelayedList - 0x00000000080050a0 0xa8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080050dc 0xa8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTimerCreateTimerTask - 0x0000000008005148 0x90 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - 0x0000000008005148 xTimerCreateTimerTask + 0x0000000008005184 0x90 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005184 xTimerCreateTimerTask .text.xTimerGenericCommand - 0x00000000080051d8 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - 0x00000000080051d8 xTimerGenericCommand + 0x0000000008005214 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005214 xTimerGenericCommand .text.prvProcessExpiredTimer - 0x0000000008005274 0x98 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080052b0 0x98 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvTimerTask - 0x000000000800530c 0x24 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005348 0x24 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvProcessTimerOrBlockTask - 0x0000000008005330 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x000000000800536c 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvGetNextExpireTime - 0x00000000080053cc 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005408 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvSampleTimeNow - 0x0000000008005414 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005450 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvInsertTimerInActiveList - 0x0000000008005454 0x84 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005490 0x84 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvProcessReceivedCommands - 0x00000000080054d8 0x1c4 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008005514 0x1c4 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvSwitchTimerLists - 0x000000000800569c 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080056d8 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvCheckForValidListAndQueue - 0x0000000008005764 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080057a0 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.pxPortInitialiseStack - 0x00000000080057e4 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x00000000080057e4 pxPortInitialiseStack + 0x0000000008005820 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005820 pxPortInitialiseStack .text.prvTaskExitError - 0x000000000800584c 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - *fill* 0x00000000080058a4 0xc + 0x0000000008005888 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .text.SVC_Handler - 0x00000000080058b0 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x00000000080058b0 SVC_Handler + 0x00000000080058e0 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x00000000080058e0 SVC_Handler .text.prvPortStartFirstTask - 0x00000000080058d8 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005908 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .text.xPortStartScheduler - 0x0000000008005900 0x144 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005900 xPortStartScheduler + 0x0000000008005930 0x144 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005930 xPortStartScheduler .text.vPortEnterCritical - 0x0000000008005a44 0x60 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005a44 vPortEnterCritical + 0x0000000008005a74 0x60 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005a74 vPortEnterCritical .text.vPortExitCritical - 0x0000000008005aa4 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005aa4 vPortExitCritical - *fill* 0x0000000008005af8 0x8 + 0x0000000008005ad4 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005ad4 vPortExitCritical + *fill* 0x0000000008005b28 0x8 .text.PendSV_Handler - 0x0000000008005b00 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005b00 PendSV_Handler + 0x0000000008005b30 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005b30 PendSV_Handler .text.xPortSysTickHandler - 0x0000000008005b68 0x44 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005b68 xPortSysTickHandler + 0x0000000008005b98 0x44 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005b98 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x0000000008005bac 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005bac vPortSetupTimerInterrupt + 0x0000000008005bdc 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005bdc vPortSetupTimerInterrupt .text.vPortEnableVFP - 0x0000000008005bf4 0x14 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005c24 0x14 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .text.vPortValidateInterruptPriority - 0x0000000008005c08 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005c08 vPortValidateInterruptPriority + 0x0000000008005c38 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005c38 vPortValidateInterruptPriority .text.pvPortMalloc - 0x0000000008005c88 0x198 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x0000000008005c88 pvPortMalloc + 0x0000000008005cb8 0x198 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0000000008005cb8 pvPortMalloc .text.vPortFree - 0x0000000008005e20 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x0000000008005e20 vPortFree + 0x0000000008005e50 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0000000008005e50 vPortFree .text.prvHeapInit - 0x0000000008005ee4 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0000000008005f14 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x0000000008005fa8 0xb4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.memset 0x000000000800605c 0x10 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memset.o) - 0x000000000800605c memset + 0x0000000008005fd8 0xb4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.memset 0x000000000800608c 0x10 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memset.o) + 0x000000000800608c memset .text._reclaim_reent - 0x000000000800606c 0xac C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-reent.o) - 0x000000000800606c _reclaim_reent + 0x000000000800609c 0xac C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-reent.o) + 0x000000000800609c _reclaim_reent .text.__libc_init_array - 0x0000000008006118 0x48 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-init.o) - 0x0000000008006118 __libc_init_array + 0x0000000008006148 0x48 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-init.o) + 0x0000000008006148 __libc_init_array .text.__retarget_lock_acquire_recursive - 0x0000000008006160 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) - 0x0000000008006160 __retarget_lock_acquire_recursive + 0x0000000008006190 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) + 0x0000000008006190 __retarget_lock_acquire_recursive .text.__retarget_lock_release_recursive - 0x0000000008006162 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) - 0x0000000008006162 __retarget_lock_release_recursive - .text.memcpy 0x0000000008006164 0x1c C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memcpy-stub.o) - 0x0000000008006164 memcpy - .text._free_r 0x0000000008006180 0x98 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-freer.o) - 0x0000000008006180 _free_r + 0x0000000008006192 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) + 0x0000000008006192 __retarget_lock_release_recursive + .text.memcpy 0x0000000008006194 0x1c C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memcpy-stub.o) + 0x0000000008006194 memcpy + .text._free_r 0x00000000080061b0 0x98 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-freer.o) + 0x00000000080061b0 _free_r .text.__malloc_lock - 0x0000000008006218 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) - 0x0000000008006218 __malloc_lock + 0x0000000008006248 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) + 0x0000000008006248 __malloc_lock .text.__malloc_unlock - 0x0000000008006224 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) - 0x0000000008006224 __malloc_unlock + 0x0000000008006254 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) + 0x0000000008006254 __malloc_unlock *(.glue_7) - .glue_7 0x0000000008006230 0x0 linker stubs + .glue_7 0x0000000008006260 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0000000008006230 0x0 linker stubs + .glue_7t 0x0000000008006260 0x0 linker stubs *(.eh_frame) - .eh_frame 0x0000000008006230 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .eh_frame 0x0000000008006260 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o *(.init) - .init 0x0000000008006230 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0000000008006230 _init - .init 0x0000000008006234 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o + .init 0x0000000008006260 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0000000008006260 _init + .init 0x0000000008006264 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o *(.fini) - .fini 0x000000000800623c 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o - 0x000000000800623c _fini - .fini 0x0000000008006240 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o - 0x0000000008006248 . = ALIGN (0x4) - 0x0000000008006248 _etext = . + .fini 0x000000000800626c 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o + 0x000000000800626c _fini + .fini 0x0000000008006270 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x0000000008006278 . = ALIGN (0x4) + 0x0000000008006278 _etext = . -.vfp11_veneer 0x0000000008006248 0x0 - .vfp11_veneer 0x0000000008006248 0x0 linker stubs +.vfp11_veneer 0x0000000008006278 0x0 + .vfp11_veneer 0x0000000008006278 0x0 linker stubs -.v4_bx 0x0000000008006248 0x0 - .v4_bx 0x0000000008006248 0x0 linker stubs +.v4_bx 0x0000000008006278 0x0 + .v4_bx 0x0000000008006278 0x0 linker stubs -.iplt 0x0000000008006248 0x0 - .iplt 0x0000000008006248 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.iplt 0x0000000008006278 0x0 + .iplt 0x0000000008006278 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.rodata 0x0000000008006248 0xf4 - 0x0000000008006248 . = ALIGN (0x4) +.rodata 0x0000000008006278 0xf4 + 0x0000000008006278 . = ALIGN (0x4) *(.rodata) - .rodata 0x0000000008006248 0x33 ./Core/Src/main.o - *fill* 0x000000000800627b 0x1 - .rodata 0x000000000800627c 0x5 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x0000000008006281 0x3 - .rodata 0x0000000008006284 0xd ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + .rodata 0x0000000008006278 0x33 ./Core/Src/main.o + *fill* 0x00000000080062ab 0x1 + .rodata 0x00000000080062ac 0x5 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x00000000080062b1 0x3 + .rodata 0x00000000080062b4 0xd ./Middlewares/Third_Party/FreeRTOS/Source/timers.o *(.rodata*) - *fill* 0x0000000008006291 0x3 + *fill* 0x00000000080062c1 0x3 .rodata.mainTask_attributes - 0x0000000008006294 0x24 ./Core/Src/main.o - 0x0000000008006294 mainTask_attributes + 0x00000000080062c4 0x24 ./Core/Src/main.o + 0x00000000080062c4 mainTask_attributes .rodata.doorHandler_attributes - 0x00000000080062b8 0x24 ./Core/Src/main.o - 0x00000000080062b8 doorHandler_attributes + 0x00000000080062e8 0x24 ./Core/Src/main.o + 0x00000000080062e8 doorHandler_attributes .rodata.StateSendTask_attributes - 0x00000000080062dc 0x24 ./Core/Src/main.o - 0x00000000080062dc StateSendTask_attributes + 0x000000000800630c 0x24 ./Core/Src/main.o + 0x000000000800630c StateSendTask_attributes .rodata.ADCReqTask_attributes - 0x0000000008006300 0x24 ./Core/Src/main.o - 0x0000000008006300 ADCReqTask_attributes + 0x0000000008006330 0x24 ./Core/Src/main.o + 0x0000000008006330 ADCReqTask_attributes .rodata.AHBPrescTable - 0x0000000008006324 0x10 ./Core/Src/system_stm32f4xx.o - 0x0000000008006324 AHBPrescTable + 0x0000000008006354 0x10 ./Core/Src/system_stm32f4xx.o + 0x0000000008006354 AHBPrescTable .rodata.APBPrescTable - 0x0000000008006334 0x8 ./Core/Src/system_stm32f4xx.o - 0x0000000008006334 APBPrescTable - 0x000000000800633c . = ALIGN (0x4) + 0x0000000008006364 0x8 ./Core/Src/system_stm32f4xx.o + 0x0000000008006364 APBPrescTable + 0x000000000800636c . = ALIGN (0x4) -.ARM.extab 0x000000000800633c 0x0 - 0x000000000800633c . = ALIGN (0x4) +.ARM.extab 0x000000000800636c 0x0 + 0x000000000800636c . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x000000000800633c . = ALIGN (0x4) + 0x000000000800636c . = ALIGN (0x4) -.ARM 0x000000000800633c 0x8 - 0x000000000800633c . = ALIGN (0x4) - 0x000000000800633c __exidx_start = . +.ARM 0x000000000800636c 0x8 + 0x000000000800636c . = ALIGN (0x4) + 0x000000000800636c __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x000000000800633c 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) - 0x0000000008006344 __exidx_end = . - 0x0000000008006344 . = ALIGN (0x4) + .ARM.exidx 0x000000000800636c 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + 0x0000000008006374 __exidx_end = . + 0x0000000008006374 . = ALIGN (0x4) -.rel.dyn 0x0000000008006344 0x0 - .rel.iplt 0x0000000008006344 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.rel.dyn 0x0000000008006374 0x0 + .rel.iplt 0x0000000008006374 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.preinit_array 0x0000000008006344 0x0 - 0x0000000008006344 . = ALIGN (0x4) - 0x0000000008006344 PROVIDE (__preinit_array_start = .) +.preinit_array 0x0000000008006374 0x0 + 0x0000000008006374 . = ALIGN (0x4) + 0x0000000008006374 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x0000000008006344 PROVIDE (__preinit_array_end = .) - 0x0000000008006344 . = ALIGN (0x4) + 0x0000000008006374 PROVIDE (__preinit_array_end = .) + 0x0000000008006374 . = ALIGN (0x4) -.init_array 0x0000000008006344 0x4 - 0x0000000008006344 . = ALIGN (0x4) - 0x0000000008006344 PROVIDE (__init_array_start = .) +.init_array 0x0000000008006374 0x4 + 0x0000000008006374 . = ALIGN (0x4) + 0x0000000008006374 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x0000000008006344 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o - 0x0000000008006348 PROVIDE (__init_array_end = .) - 0x0000000008006348 . = ALIGN (0x4) + .init_array 0x0000000008006374 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x0000000008006378 PROVIDE (__init_array_end = .) + 0x0000000008006378 . = ALIGN (0x4) -.fini_array 0x0000000008006348 0x4 - 0x0000000008006348 . = ALIGN (0x4) +.fini_array 0x0000000008006378 0x4 + 0x0000000008006378 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x0000000008006348 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .fini_array 0x0000000008006378 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x000000000800634c . = ALIGN (0x4) - 0x000000000800634c _sidata = LOADADDR (.data) + 0x000000000800637c . = ALIGN (0x4) + 0x000000000800637c _sidata = LOADADDR (.data) -.data 0x0000000020000000 0x60 load address 0x000000000800634c +.data 0x0000000020000000 0x60 load address 0x000000000800637c 0x0000000020000000 . = ALIGN (0x4) 0x0000000020000000 _sdata = . *(.data) @@ -5621,11 +5620,11 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000020000060 . = ALIGN (0x4) 0x0000000020000060 _edata = . -.igot.plt 0x0000000020000060 0x0 load address 0x00000000080063ac +.igot.plt 0x0000000020000060 0x0 load address 0x00000000080063dc .igot.plt 0x0000000020000060 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o 0x0000000020000060 . = ALIGN (0x4) -.bss 0x0000000020000060 0x4c44 load address 0x00000000080063ac +.bss 0x0000000020000060 0x4c44 load address 0x00000000080063dc 0x0000000020000060 _sbss = . 0x0000000020000060 __bss_start__ = _sbss *(.bss) @@ -5788,7 +5787,7 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000020004ca4 __bss_end__ = _ebss ._user_heap_stack - 0x0000000020004ca4 0x3004 load address 0x00000000080063ac + 0x0000000020004ca4 0x3004 load address 0x00000000080063dc 0x0000000020004ca8 . = ALIGN (0x8) *fill* 0x0000000020004ca4 0x4 [!provide] PROVIDE (end = .) @@ -6103,74 +6102,74 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext .debug_macro 0x0000000000003759 0x233 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .debug_macro 0x000000000000398c 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o -.debug_line 0x0000000000000000 0x17e68 - .debug_line 0x0000000000000000 0xdb5 ./Core/Src/main.o - .debug_line 0x0000000000000db5 0x826 ./Core/Src/stm32f4xx_hal_msp.o - .debug_line 0x00000000000015db 0x7fb ./Core/Src/stm32f4xx_hal_timebase_tim.o - .debug_line 0x0000000000001dd6 0x842 ./Core/Src/stm32f4xx_it.o - .debug_line 0x0000000000002618 0x80f ./Core/Src/system_stm32f4xx.o - .debug_line 0x0000000000002e27 0x7a ./Core/Startup/startup_stm32f411retx.o - .debug_line 0x0000000000002ea1 0xa75 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_line 0x0000000000003916 0x1219 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o - .debug_line 0x0000000000004b2f 0xf2c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o - .debug_line 0x0000000000005a5b 0xd24 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_line 0x000000000000677f 0xbad ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_line 0x000000000000732c 0xdee ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_line 0x000000000000811a 0x353b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_line 0x000000000000b655 0x1a0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_line 0x000000000000d062 0x2b17 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_line 0x000000000000fb79 0x2496 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - .debug_line 0x000000000001200f 0x797 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x00000000000127a6 0x1761 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x0000000000013f07 0x1e51 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x0000000000015d58 0xdfb ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x0000000000016b53 0x957 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - .debug_line 0x00000000000174aa 0x9be ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o +.debug_line 0x0000000000000000 0x17e7d + .debug_line 0x0000000000000000 0xdca ./Core/Src/main.o + .debug_line 0x0000000000000dca 0x826 ./Core/Src/stm32f4xx_hal_msp.o + .debug_line 0x00000000000015f0 0x7fb ./Core/Src/stm32f4xx_hal_timebase_tim.o + .debug_line 0x0000000000001deb 0x842 ./Core/Src/stm32f4xx_it.o + .debug_line 0x000000000000262d 0x80f ./Core/Src/system_stm32f4xx.o + .debug_line 0x0000000000002e3c 0x7a ./Core/Startup/startup_stm32f411retx.o + .debug_line 0x0000000000002eb6 0xa75 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_line 0x000000000000392b 0x1219 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + .debug_line 0x0000000000004b44 0xf2c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o + .debug_line 0x0000000000005a70 0xd24 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_line 0x0000000000006794 0xbad ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_line 0x0000000000007341 0xdee ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_line 0x000000000000812f 0x353b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_line 0x000000000000b66a 0x1a0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_line 0x000000000000d077 0x2b17 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_line 0x000000000000fb8e 0x2496 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + .debug_line 0x0000000000012024 0x797 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x00000000000127bb 0x1761 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x0000000000013f1c 0x1e51 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000000000015d6d 0xdfb ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x0000000000016b68 0x957 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + .debug_line 0x00000000000174bf 0x9be ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o -.debug_str 0x0000000000000000 0xa457b - .debug_str 0x0000000000000000 0x9b5a2 ./Core/Src/main.o - 0x9b9ce (size before relaxing) - .debug_str 0x000000000009b5a2 0x45a ./Core/Src/stm32f4xx_hal_msp.o - 0x92ecd (size before relaxing) - .debug_str 0x000000000009b9fc 0xf7 ./Core/Src/stm32f4xx_hal_timebase_tim.o +.debug_str 0x0000000000000000 0xa45a6 + .debug_str 0x0000000000000000 0x9b5cd ./Core/Src/main.o + 0x9b9f9 (size before relaxing) + .debug_str 0x000000000009b5cd 0x45a ./Core/Src/stm32f4xx_hal_msp.o + 0x92ef8 (size before relaxing) + .debug_str 0x000000000009ba27 0xf7 ./Core/Src/stm32f4xx_hal_timebase_tim.o 0x92cfc (size before relaxing) - .debug_str 0x000000000009baf3 0xd1 ./Core/Src/stm32f4xx_it.o - 0x92a9f (size before relaxing) - .debug_str 0x000000000009bbc4 0xdb ./Core/Src/system_stm32f4xx.o + .debug_str 0x000000000009bb1e 0xd1 ./Core/Src/stm32f4xx_it.o + 0x92aca (size before relaxing) + .debug_str 0x000000000009bbef 0xdb ./Core/Src/system_stm32f4xx.o 0x9236d (size before relaxing) - .debug_str 0x000000000009bc9f 0x34 ./Core/Startup/startup_stm32f411retx.o + .debug_str 0x000000000009bcca 0x34 ./Core/Startup/startup_stm32f411retx.o 0x65 (size before relaxing) - .debug_str 0x000000000009bcd3 0x5c7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_str 0x000000000009bcfe 0x5c7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o 0x92d99 (size before relaxing) - .debug_str 0x000000000009c29a 0x27d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o + .debug_str 0x000000000009c2c5 0x27d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o 0x92948 (size before relaxing) - .debug_str 0x000000000009c517 0x2df ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o + .debug_str 0x000000000009c542 0x2df ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o 0x9299c (size before relaxing) - .debug_str 0x000000000009c7f6 0x31d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_str 0x000000000009c821 0x31d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o 0x92aba (size before relaxing) - .debug_str 0x000000000009cb13 0x110 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_str 0x000000000009cb3e 0x110 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o 0x924e8 (size before relaxing) - .debug_str 0x000000000009cc23 0x1fd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_str 0x000000000009cc4e 0x1fd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o 0x927a1 (size before relaxing) - .debug_str 0x000000000009ce20 0xe3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_str 0x000000000009ce4b 0xe3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o 0x936d5 (size before relaxing) - .debug_str 0x000000000009dc5b 0x503 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_str 0x000000000009dc86 0x503 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o 0x92ef1 (size before relaxing) - .debug_str 0x000000000009e15e 0x5e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_str 0x000000000009e189 0x5e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o 0x92d2e (size before relaxing) - .debug_str 0x000000000009e742 0x32c9 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + .debug_str 0x000000000009e76d 0x32c9 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o 0x9d15a (size before relaxing) - .debug_str 0x00000000000a1a0b 0x20f ./Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_str 0x00000000000a1a36 0x20f ./Middlewares/Third_Party/FreeRTOS/Source/list.o 0xaa8a (size before relaxing) - .debug_str 0x00000000000a1c1a 0x892 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_str 0x00000000000a1c45 0x892 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o 0xc5ca (size before relaxing) - .debug_str 0x00000000000a24ac 0x1079 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_str 0x00000000000a24d7 0x1079 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o 0xd3cf (size before relaxing) - .debug_str 0x00000000000a3525 0x5af ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_str 0x00000000000a3550 0x5af ./Middlewares/Third_Party/FreeRTOS/Source/timers.o 0xce1b (size before relaxing) - .debug_str 0x00000000000a3ad4 0x783 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + .debug_str 0x00000000000a3aff 0x783 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o 0xa242 (size before relaxing) - .debug_str 0x00000000000a4257 0x324 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .debug_str 0x00000000000a4282 0x324 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o 0xb3cc (size before relaxing) .debug_frame 0x0000000000000000 0x5cd8 diff --git a/access_control_stm32/access_control_stm32.ioc b/access_control_stm32/access_control_stm32.ioc index 5e4b480..4cd1b36 100644 --- a/access_control_stm32/access_control_stm32.ioc +++ b/access_control_stm32/access_control_stm32.ioc @@ -29,21 +29,22 @@ Mcu.Name=STM32F411R(C-E)Tx Mcu.Package=LQFP64 Mcu.Pin0=PC13-ANTI_TAMP Mcu.Pin1=PC14-OSC32_IN -Mcu.Pin10=PA9 -Mcu.Pin11=PA13 -Mcu.Pin12=PA14 -Mcu.Pin13=PB3 -Mcu.Pin14=VP_FREERTOS_VS_CMSIS_V2 -Mcu.Pin15=VP_SYS_VS_tim1 +Mcu.Pin10=PA7 +Mcu.Pin11=PA9 +Mcu.Pin12=PA13 +Mcu.Pin13=PA14 +Mcu.Pin14=PB3 +Mcu.Pin15=VP_FREERTOS_VS_CMSIS_V2 +Mcu.Pin16=VP_SYS_VS_tim1 Mcu.Pin2=PC15-OSC32_OUT Mcu.Pin3=PH0 - OSC_IN Mcu.Pin4=PH1 - OSC_OUT -Mcu.Pin5=PA1 -Mcu.Pin6=PA2 -Mcu.Pin7=PA3 -Mcu.Pin8=PA5 -Mcu.Pin9=PA7 -Mcu.PinsNb=16 +Mcu.Pin5=PC0 +Mcu.Pin6=PA1 +Mcu.Pin7=PA2 +Mcu.Pin8=PA3 +Mcu.Pin9=PA5 +Mcu.PinsNb=17 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F411RETx @@ -106,6 +107,10 @@ PB3.GPIOParameters=GPIO_Label PB3.GPIO_Label=SWO PB3.Locked=true PB3.Signal=SYS_JTDO-SWO +PC0.GPIOParameters=GPIO_Label +PC0.GPIO_Label=ALARM +PC0.Locked=true +PC0.Signal=GPIO_Output PC13-ANTI_TAMP.GPIOParameters=GPIO_Label,GPIO_ModeDefaultEXTI PC13-ANTI_TAMP.GPIO_Label=B1 [Blue PushButton] PC13-ANTI_TAMP.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING