diff --git a/Core/Inc/main.h b/Core/Inc/main.h index 5de85cc..139eb6b 100644 --- a/Core/Inc/main.h +++ b/Core/Inc/main.h @@ -43,7 +43,7 @@ extern "C" { /* USER CODE BEGIN EC */ #define FW_VERSION_MAJOR 0x01 #define FW_VERSION_MINOR 0x00 -#define FW_VERSION_PATCH 0x05 +#define FW_VERSION_PATCH 0x06 /* USER CODE END EC */ /* Exported macro ------------------------------------------------------------*/ diff --git a/Core/Src/serial.c b/Core/Src/serial.c index 4d8e89d..7b06b7a 100644 --- a/Core/Src/serial.c +++ b/Core/Src/serial.c @@ -9,6 +9,7 @@ #include "psu_control.h" extern UART_HandleTypeDef huart3; +extern uint8_t config_initialized; static void send_state(void); static void CCS_SendResetReason(void); @@ -111,74 +112,80 @@ void CCS_SerialLoop(void) { (void)replug_watchdog_tick; (void)replug_watchdog1_tick; - switch(CCS_ConnectorState){ - case CCS_DISABLED: - RELAY_Write(RELAY_CP, 0); - CONN_SetState(Disabled); - if (CONN.chargingError == CONN_NO_ERROR){ - CCS_ConnectorState = CCS_UNPLUGGED; - } - break; - case CCS_UNPLUGGED: - RELAY_Write(RELAY_CP, 1); - CONN_SetState(Unplugged); - if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || (cp_state_buffer == EV_STATE_C_CONN_ACTIVE)){ - CCS_ConnectorState = CCS_AUTH_REQUIRED; - } - if (CONN.chargingError != CONN_NO_ERROR){ - log_printf(LOG_ERR, "Charging error %d, state -> disabled\n", CONN.chargingError); - CCS_ConnectorState = CCS_DISABLED; - } - - break; - case CCS_AUTH_REQUIRED: - RELAY_Write(RELAY_CP, 1); - CONN_SetState(AuthRequired); - if(CONN.connControl == CMD_START){ - log_printf(LOG_INFO, "Charging permitted, start charging\n"); - CCS_ConnectorState = CCS_CONNECTED; - } - if (cp_state_buffer == EV_STATE_A_IDLE){ - log_printf(LOG_INFO, "Car unplugged\n"); - CCS_ConnectorState = CCS_UNPLUGGED; - } - break; - case CCS_CONNECTED: - RELAY_Write(RELAY_CP, 1); - if(CCS_EvseState < Preparing) { - CONN_SetState(Preparing); - } else { - CONN_SetState(CCS_EvseState); - } - if (cp_state_buffer == EV_STATE_A_IDLE){ - log_printf(LOG_INFO, "Car unplugged\n"); - CCS_ConnectorState = CCS_UNPLUGGED; - } - if(REPLUG > 0){ - log_printf(LOG_INFO, "Replugging...\n"); - CCS_ConnectorState = CCS_REPLUGGING; - } - break; - case CCS_REPLUGGING: - RELAY_Write(RELAY_CP, 0); - CONN_SetState(Replugging); - if((HAL_GetTick() - replug_tick) > 1000){ - replug_tick = HAL_GetTick(); - if(REPLUG > 0){ - if (REPLUG != 0xFF) REPLUG--; - } else { - log_printf(LOG_INFO, "Replugging finished, but car unplugged\n"); + if (!config_initialized) { + // Keep connector in Unknown until host sends valid SET_CONFIG. + RELAY_Write(RELAY_CP, 1); + CONN_SetState(Unknown); + } else { + switch(CCS_ConnectorState){ + case CCS_DISABLED: + RELAY_Write(RELAY_CP, 0); + CONN_SetState(Disabled); + if (CONN.chargingError == CONN_NO_ERROR){ CCS_ConnectorState = CCS_UNPLUGGED; } - } - - if(REPLUG == 0){ - if(cp_state_buffer == EV_STATE_B_CONN_PREP){ - log_printf(LOG_INFO, "Replugging finished, car plugged, state -> auth required\n"); + break; + case CCS_UNPLUGGED: + RELAY_Write(RELAY_CP, 1); + CONN_SetState(Unplugged); + if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || (cp_state_buffer == EV_STATE_C_CONN_ACTIVE)){ CCS_ConnectorState = CCS_AUTH_REQUIRED; } - } - break; + if (CONN.chargingError != CONN_NO_ERROR){ + log_printf(LOG_ERR, "Charging error %d, state -> disabled\n", CONN.chargingError); + CCS_ConnectorState = CCS_DISABLED; + } + + break; + case CCS_AUTH_REQUIRED: + RELAY_Write(RELAY_CP, 1); + CONN_SetState(AuthRequired); + if(CONN.connControl == CMD_START){ + log_printf(LOG_INFO, "Charging permitted, start charging\n"); + CCS_ConnectorState = CCS_CONNECTED; + } + if (cp_state_buffer == EV_STATE_A_IDLE){ + log_printf(LOG_INFO, "Car unplugged\n"); + CCS_ConnectorState = CCS_UNPLUGGED; + } + break; + case CCS_CONNECTED: + RELAY_Write(RELAY_CP, 1); + if(CCS_EvseState < Preparing) { + CONN_SetState(Preparing); + } else { + CONN_SetState(CCS_EvseState); + } + if (cp_state_buffer == EV_STATE_A_IDLE){ + log_printf(LOG_INFO, "Car unplugged\n"); + CCS_ConnectorState = CCS_UNPLUGGED; + } + if(REPLUG > 0){ + log_printf(LOG_INFO, "Replugging...\n"); + CCS_ConnectorState = CCS_REPLUGGING; + } + break; + case CCS_REPLUGGING: + RELAY_Write(RELAY_CP, 0); + CONN_SetState(Replugging); + if((HAL_GetTick() - replug_tick) > 1000){ + replug_tick = HAL_GetTick(); + if(REPLUG > 0){ + if (REPLUG != 0xFF) REPLUG--; + } else { + log_printf(LOG_INFO, "Replugging finished, but car unplugged\n"); + CCS_ConnectorState = CCS_UNPLUGGED; + } + } + + if(REPLUG == 0){ + if(cp_state_buffer == EV_STATE_B_CONN_PREP){ + log_printf(LOG_INFO, "Replugging finished, car plugged, state -> auth required\n"); + CCS_ConnectorState = CCS_AUTH_REQUIRED; + } + } + break; + } } // If Everest timeout happened, keep safe-state and limit log frequency. diff --git a/Debug/CCSModuleSW30Web.bin b/Debug/CCSModuleSW30Web.bin index 36eb4df..e509ea2 100755 Binary files a/Debug/CCSModuleSW30Web.bin and b/Debug/CCSModuleSW30Web.bin differ diff --git a/Debug/CCSModuleSW30Web.list b/Debug/CCSModuleSW30Web.list index 3f5d406..6e617d5 100644 --- a/Debug/CCSModuleSW30Web.list +++ b/Debug/CCSModuleSW30Web.list @@ -5,47 +5,47 @@ Sections: Idx Name Size VMA LMA File off Algn 0 .isr_vector 000001e4 08008000 08008000 00001000 2**0 CONTENTS, ALLOC, LOAD, READONLY, DATA - 1 .text 0000be1c 080081e8 080081e8 000011e8 2**3 + 1 .text 0000be38 080081e8 080081e8 000011e8 2**3 CONTENTS, ALLOC, LOAD, READONLY, CODE - 2 .rodata 000004ac 08014004 08014004 0000d004 2**2 + 2 .rodata 000004ac 08014020 08014020 0000d020 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 3 .ARM.extab 00000000 080144b0 080144b0 0000e0d4 2**0 + 3 .ARM.extab 00000000 080144cc 080144cc 0000e0d4 2**0 CONTENTS - 4 .ARM 00000008 080144b0 080144b0 0000d4b0 2**2 + 4 .ARM 00000008 080144cc 080144cc 0000d4cc 2**2 CONTENTS, ALLOC, LOAD, READONLY, DATA - 5 .preinit_array 00000000 080144b8 080144b8 0000e0d4 2**0 + 5 .preinit_array 00000000 080144d4 080144d4 0000e0d4 2**0 CONTENTS, ALLOC, LOAD, DATA - 6 .init_array 00000004 080144b8 080144b8 0000d4b8 2**2 + 6 .init_array 00000004 080144d4 080144d4 0000d4d4 2**2 CONTENTS, ALLOC, LOAD, DATA - 7 .fini_array 00000004 080144bc 080144bc 0000d4bc 2**2 + 7 .fini_array 00000004 080144d8 080144d8 0000d4d8 2**2 CONTENTS, ALLOC, LOAD, DATA - 8 .data 000000d4 20000000 080144c0 0000e000 2**2 + 8 .data 000000d4 20000000 080144dc 0000e000 2**2 CONTENTS, ALLOC, LOAD, DATA - 9 .bss 000010f0 200000d8 08014594 0000e0d8 2**3 + 9 .bss 000010f0 200000d8 080145b0 0000e0d8 2**3 ALLOC - 10 ._user_heap_stack 00000600 200011c8 08014594 0000e1c8 2**0 + 10 ._user_heap_stack 00000600 200011c8 080145b0 0000e1c8 2**0 ALLOC 11 .ARM.attributes 00000029 00000000 00000000 0000e0d4 2**0 CONTENTS, READONLY - 12 .debug_info 0001bc8b 00000000 00000000 0000e0fd 2**0 + 12 .debug_info 0001bc9c 00000000 00000000 0000e0fd 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 13 .debug_abbrev 00005452 00000000 00000000 00029d88 2**0 + 13 .debug_abbrev 00005426 00000000 00000000 00029d99 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 14 .debug_aranges 000016c0 00000000 00000000 0002f1e0 2**3 + 14 .debug_aranges 000016c0 00000000 00000000 0002f1c0 2**3 CONTENTS, READONLY, DEBUGGING, OCTETS - 15 .debug_rnglists 00001178 00000000 00000000 000308a0 2**0 + 15 .debug_rnglists 00001178 00000000 00000000 00030880 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 16 .debug_macro 00026207 00000000 00000000 00031a18 2**0 + 16 .debug_macro 00026207 00000000 00000000 000319f8 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 17 .debug_line 000211d3 00000000 00000000 00057c1f 2**0 + 17 .debug_line 000211dc 00000000 00000000 00057bff 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 18 .debug_str 000c973b 00000000 00000000 00078df2 2**0 + 18 .debug_str 000c973b 00000000 00000000 00078ddb 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS - 19 .comment 00000043 00000000 00000000 0014252d 2**0 + 19 .comment 00000043 00000000 00000000 00142516 2**0 CONTENTS, READONLY - 20 .debug_frame 00006588 00000000 00000000 00142570 2**2 + 20 .debug_frame 00006588 00000000 00000000 0014255c 2**2 CONTENTS, READONLY, DEBUGGING, OCTETS - 21 .debug_line_str 00000063 00000000 00000000 00148af8 2**0 + 21 .debug_line_str 00000063 00000000 00000000 00148ae4 2**0 CONTENTS, READONLY, DEBUGGING, OCTETS Disassembly of section .text: @@ -64,7 +64,7 @@ Disassembly of section .text: 80081fe: bd10 pop {r4, pc} 8008200: 200000d8 .word 0x200000d8 8008204: 00000000 .word 0x00000000 - 8008208: 08013fec .word 0x08013fec + 8008208: 08014008 .word 0x08014008 0800820c : 800820c: b508 push {r3, lr} @@ -76,7 +76,7 @@ Disassembly of section .text: 800821a: bd08 pop {r3, pc} 800821c: 00000000 .word 0x00000000 8008220: 200000dc .word 0x200000dc - 8008224: 08013fec .word 0x08013fec + 8008224: 08014008 .word 0x08014008 08008228 <__aeabi_drsub>: 8008228: f081 4100 eor.w r1, r1, #2147483648 @ 0x80000000 @@ -1649,7 +1649,7 @@ void MX_ADC1_Init(void) 80093c6: 611a str r2, [r3, #16] if (HAL_ADC_Init(&hadc1) != HAL_OK) 80093c8: 480d ldr r0, [pc, #52] @ (8009400 ) - 80093ca: f004 faf5 bl 800d9b8 + 80093ca: f004 fb03 bl 800d9d4 80093ce: 4603 mov r3, r0 80093d0: 2b00 cmp r3, #0 80093d2: d001 beq.n 80093d8 @@ -1673,7 +1673,7 @@ void MX_ADC1_Init(void) 80093e4: 1d3b adds r3, r7, #4 80093e6: 4619 mov r1, r3 80093e8: 4805 ldr r0, [pc, #20] @ (8009400 ) - 80093ea: f004 fda9 bl 800df40 + 80093ea: f004 fdb7 bl 800df5c 80093ee: 4603 mov r3, r0 80093f0: 2b00 cmp r3, #0 80093f2: d001 beq.n 80093f8 @@ -1769,7 +1769,7 @@ void HAL_ADC_MspInit(ADC_HandleTypeDef* adcHandle) 8009478: f107 0318 add.w r3, r7, #24 800947c: 4619 mov r1, r3 800947e: 480a ldr r0, [pc, #40] @ (80094a8 ) - 8009480: f006 f8e2 bl 800f648 + 8009480: f006 f8f0 bl 800f664 GPIO_InitStruct.Pin = ADC_NTC1_Pin|ADC_NTC2_Pin; 8009484: 2303 movs r3, #3 @@ -1781,7 +1781,7 @@ void HAL_ADC_MspInit(ADC_HandleTypeDef* adcHandle) 800948c: f107 0318 add.w r3, r7, #24 8009490: 4619 mov r1, r3 8009492: 4806 ldr r0, [pc, #24] @ (80094ac ) - 8009494: f006 f8d8 bl 800f648 + 8009494: f006 f8e6 bl 800f664 /* USER CODE BEGIN ADC1_MspInit 1 */ @@ -1832,7 +1832,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 80094ee: 461a mov r2, r3 80094f0: f44f 7180 mov.w r1, #256 @ 0x100 80094f4: 4821 ldr r0, [pc, #132] @ (800957c ) - 80094f6: f006 fa42 bl 800f97e + 80094f6: f006 fa50 bl 800f99a break; 80094fa: e036 b.n 800956a case RELAY_AUX1: @@ -1841,7 +1841,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 80094fe: 461a mov r2, r3 8009500: f44f 7100 mov.w r1, #512 @ 0x200 8009504: 481d ldr r0, [pc, #116] @ (800957c ) - 8009506: f006 fa3a bl 800f97e + 8009506: f006 fa48 bl 800f99a break; 800950a: e02e b.n 800956a case RELAY3: @@ -1850,7 +1850,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800950e: 461a mov r2, r3 8009510: f44f 6180 mov.w r1, #1024 @ 0x400 8009514: 4819 ldr r0, [pc, #100] @ (800957c ) - 8009516: f006 fa32 bl 800f97e + 8009516: f006 fa40 bl 800f99a break; 800951a: e026 b.n 800956a case RELAY_DC: @@ -1859,7 +1859,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800951e: 461a mov r2, r3 8009520: f44f 6100 mov.w r1, #2048 @ 0x800 8009524: 4815 ldr r0, [pc, #84] @ (800957c ) - 8009526: f006 fa2a bl 800f97e + 8009526: f006 fa38 bl 800f99a break; 800952a: e01e b.n 800956a case RELAY_AC: @@ -1868,7 +1868,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800952e: 461a mov r2, r3 8009530: f44f 5180 mov.w r1, #4096 @ 0x1000 8009534: 4811 ldr r0, [pc, #68] @ (800957c ) - 8009536: f006 fa22 bl 800f97e + 8009536: f006 fa30 bl 800f99a break; 800953a: e016 b.n 800956a case RELAY_CP: @@ -1877,7 +1877,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800953e: 461a mov r2, r3 8009540: 2108 movs r1, #8 8009542: 480f ldr r0, [pc, #60] @ (8009580 ) - 8009544: f006 fa1b bl 800f97e + 8009544: f006 fa29 bl 800f99a break; 8009548: e00f b.n 800956a case RELAY_CC: @@ -1886,7 +1886,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800954c: 461a mov r2, r3 800954e: f44f 4100 mov.w r1, #32768 @ 0x8000 8009552: 480c ldr r0, [pc, #48] @ (8009584 ) - 8009554: f006 fa13 bl 800f97e + 8009554: f006 fa21 bl 800f99a break; 8009558: e007 b.n 800956a case RELAY_DC1: @@ -1895,7 +1895,7 @@ void RELAY_Write(relay_t num, uint8_t state){ 800955c: 461a mov r2, r3 800955e: 2108 movs r1, #8 8009560: 4809 ldr r0, [pc, #36] @ (8009588 ) - 8009562: f006 fa0c bl 800f97e + 8009562: f006 fa1a bl 800f99a break; 8009566: e000 b.n 800956a default: @@ -1968,49 +1968,49 @@ uint8_t IN_ReadInput(inputNum_t input_n){ return HAL_GPIO_ReadPin(IN_SW0_GPIO_Port, IN_SW0_Pin); 80095e4: 2102 movs r1, #2 80095e6: 4817 ldr r0, [pc, #92] @ (8009644 ) - 80095e8: f006 f9b2 bl 800f950 + 80095e8: f006 f9c0 bl 800f96c 80095ec: 4603 mov r3, r0 80095ee: e024 b.n 800963a case IN_SW1: return HAL_GPIO_ReadPin(IN_SW1_GPIO_Port, IN_SW1_Pin); 80095f0: 2104 movs r1, #4 80095f2: 4814 ldr r0, [pc, #80] @ (8009644 ) - 80095f4: f006 f9ac bl 800f950 + 80095f4: f006 f9ba bl 800f96c 80095f8: 4603 mov r3, r0 80095fa: e01e b.n 800963a case IN0: return HAL_GPIO_ReadPin(IN0_GPIO_Port, IN0_Pin); 80095fc: 2180 movs r1, #128 @ 0x80 80095fe: 4812 ldr r0, [pc, #72] @ (8009648 ) - 8009600: f006 f9a6 bl 800f950 + 8009600: f006 f9b4 bl 800f96c 8009604: 4603 mov r3, r0 8009606: e018 b.n 800963a case IN_ESTOP: return HAL_GPIO_ReadPin(IN_ESTOP_GPIO_Port, IN_ESTOP_Pin); 8009608: 2180 movs r1, #128 @ 0x80 800960a: 4810 ldr r0, [pc, #64] @ (800964c ) - 800960c: f006 f9a0 bl 800f950 + 800960c: f006 f9ae bl 800f96c 8009610: 4603 mov r3, r0 8009612: e012 b.n 800963a case IN_FB1: return HAL_GPIO_ReadPin(IN_FB1_GPIO_Port, IN_FB1_Pin); 8009614: 2110 movs r1, #16 8009616: 480e ldr r0, [pc, #56] @ (8009650 ) - 8009618: f006 f99a bl 800f950 + 8009618: f006 f9a8 bl 800f96c 800961c: 4603 mov r3, r0 800961e: e00c b.n 800963a case IN_CONT_FB_DC: return HAL_GPIO_ReadPin(IN_FB2_GPIO_Port, IN_FB2_Pin); 8009620: 2108 movs r1, #8 8009622: 480b ldr r0, [pc, #44] @ (8009650 ) - 8009624: f006 f994 bl 800f950 + 8009624: f006 f9a2 bl 800f96c 8009628: 4603 mov r3, r0 800962a: e006 b.n 800963a case ISO_IN: return HAL_GPIO_ReadPin(ISO_IN_GPIO_Port, ISO_IN_Pin); 800962c: 2102 movs r1, #2 800962e: 4806 ldr r0, [pc, #24] @ (8009648 ) - 8009630: f006 f98e bl 800f950 + 8009630: f006 f99c bl 800f96c 8009634: 4603 mov r3, r0 8009636: e000 b.n 800963a default: @@ -2039,7 +2039,7 @@ void Init_Peripheral(){ 8009656: af00 add r7, sp, #0 HAL_ADCEx_Calibration_Start(&hadc1); 8009658: 4815 ldr r0, [pc, #84] @ (80096b0 ) - 800965a: f004 fe05 bl 800e268 + 800965a: f004 fe13 bl 800e284 RELAY_Write(RELAY_AUX0, 0); 800965e: 2100 movs r1, #0 @@ -2076,10 +2076,10 @@ void Init_Peripheral(){ SMAFilter_Init(&conn_temp_adc_filter[0]); 800969e: 4805 ldr r0, [pc, #20] @ (80096b4 ) - 80096a0: f003 fb86 bl 800cdb0 + 80096a0: f003 fb94 bl 800cdcc SMAFilter_Init(&conn_temp_adc_filter[1]); 80096a4: 4804 ldr r0, [pc, #16] @ (80096b8 ) - 80096a6: f003 fb83 bl 800cdb0 + 80096a6: f003 fb91 bl 800cdcc } 80096aa: bf00 nop 80096ac: bd80 pop {r7, pc} @@ -2232,25 +2232,25 @@ int16_t CONN_ReadTemp(uint8_t ch){ // Начало конверсии HAL_ADC_Start(&hadc1); 80097b6: 4822 ldr r0, [pc, #136] @ (8009840 ) - 80097b8: f004 f9d6 bl 800db68 + 80097b8: f004 f9e4 bl 800db84 // Ожидание окончания конверсии HAL_ADC_PollForConversion(&hadc1, HAL_MAX_DELAY); 80097bc: f04f 31ff mov.w r1, #4294967295 80097c0: 481f ldr r0, [pc, #124] @ (8009840 ) - 80097c2: f004 faab bl 800dd1c + 80097c2: f004 fab9 bl 800dd38 // Получение значения uint32_t adcValue = HAL_ADC_GetValue(&hadc1); 80097c6: 481e ldr r0, [pc, #120] @ (8009840 ) - 80097c8: f004 fbae bl 800df28 + 80097c8: f004 fbbc bl 800df44 80097cc: 61f8 str r0, [r7, #28] // Остановка АЦП (по желанию) HAL_ADC_Stop(&hadc1); 80097ce: 481c ldr r0, [pc, #112] @ (8009840 ) - 80097d0: f004 fa78 bl 800dcc4 + 80097d0: f004 fa86 bl 800dce0 int32_t adc_filtered = SMAFilter_Update(&conn_temp_adc_filter[ch ? 1u : 0u], (int32_t)adcValue); 80097d4: 79fb ldrb r3, [r7, #7] @@ -2268,7 +2268,7 @@ int16_t CONN_ReadTemp(uint8_t ch){ 80097ec: 69fa ldr r2, [r7, #28] 80097ee: 4611 mov r1, r2 80097f0: 4618 mov r0, r3 - 80097f2: f003 fb02 bl 800cdfa + 80097f2: f003 fb10 bl 800ce16 80097f6: 61b8 str r0, [r7, #24] if((uint32_t)adc_filtered > 4000u) { 80097f8: 69bb ldr r3, [r7, #24] @@ -2348,7 +2348,7 @@ void ADC_Select_Channel(uint32_t ch) { 8009868: f107 030c add.w r3, r7, #12 800986c: 4619 mov r1, r3 800986e: 4806 ldr r0, [pc, #24] @ (8009888 ) - 8009870: f004 fb66 bl 800df40 + 8009870: f004 fb74 bl 800df5c 8009874: 4603 mov r3, r0 8009876: 2b00 cmp r3, #0 8009878: d001 beq.n 800987e @@ -2554,7 +2554,7 @@ void MX_CAN1_Init(void) 8009972: 775a strb r2, [r3, #29] if (HAL_CAN_Init(&hcan1) != HAL_OK) 8009974: 4804 ldr r0, [pc, #16] @ (8009988 ) - 8009976: f004 fd25 bl 800e3c4 + 8009976: f004 fd33 bl 800e3e0 800997a: 4603 mov r3, r0 800997c: 2b00 cmp r3, #0 800997e: d001 beq.n 8009984 @@ -2633,7 +2633,7 @@ void MX_CAN2_Init(void) 80099de: 775a strb r2, [r3, #29] if (HAL_CAN_Init(&hcan2) != HAL_OK) 80099e0: 4804 ldr r0, [pc, #16] @ (80099f4 ) - 80099e2: f004 fcef bl 800e3c4 + 80099e2: f004 fcfd bl 800e3e0 80099e6: 4603 mov r3, r0 80099e8: 2b00 cmp r3, #0 80099ea: d001 beq.n 80099f0 @@ -2732,7 +2732,7 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009a6a: f107 0320 add.w r3, r7, #32 8009a6e: 4619 mov r1, r3 8009a70: 484d ldr r0, [pc, #308] @ (8009ba8 ) - 8009a72: f005 fde9 bl 800f648 + 8009a72: f005 fdf7 bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_1; 8009a76: 2302 movs r3, #2 @@ -2747,7 +2747,7 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009a82: f107 0320 add.w r3, r7, #32 8009a86: 4619 mov r1, r3 8009a88: 4847 ldr r0, [pc, #284] @ (8009ba8 ) - 8009a8a: f005 fddd bl 800f648 + 8009a8a: f005 fdeb bl 800f664 __HAL_AFIO_REMAP_CAN1_3(); 8009a8e: 4b47 ldr r3, [pc, #284] @ (8009bac ) @@ -2771,10 +2771,10 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009ab2: 2200 movs r2, #0 8009ab4: 2100 movs r1, #0 8009ab6: 2014 movs r0, #20 - 8009ab8: f005 fc31 bl 800f31e + 8009ab8: f005 fc3f bl 800f33a HAL_NVIC_EnableIRQ(CAN1_RX0_IRQn); 8009abc: 2014 movs r0, #20 - 8009abe: f005 fc4a bl 800f356 + 8009abe: f005 fc58 bl 800f372 HAL_NVIC_EnableIRQ(CAN2_RX1_IRQn); /* USER CODE BEGIN CAN2_MspInit 1 */ @@ -2845,7 +2845,7 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009b34: f107 0320 add.w r3, r7, #32 8009b38: 4619 mov r1, r3 8009b3a: 481e ldr r0, [pc, #120] @ (8009bb4 ) - 8009b3c: f005 fd84 bl 800f648 + 8009b3c: f005 fd92 bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_6; 8009b40: 2340 movs r3, #64 @ 0x40 8009b42: 623b str r3, [r7, #32] @@ -2859,7 +2859,7 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009b4c: f107 0320 add.w r3, r7, #32 8009b50: 4619 mov r1, r3 8009b52: 4818 ldr r0, [pc, #96] @ (8009bb4 ) - 8009b54: f005 fd78 bl 800f648 + 8009b54: f005 fd86 bl 800f664 __HAL_AFIO_REMAP_CAN2_ENABLE(); 8009b58: 4b14 ldr r3, [pc, #80] @ (8009bac ) 8009b5a: 685b ldr r3, [r3, #4] @@ -2877,18 +2877,18 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) 8009b74: 2200 movs r2, #0 8009b76: 2100 movs r1, #0 8009b78: 203f movs r0, #63 @ 0x3f - 8009b7a: f005 fbd0 bl 800f31e + 8009b7a: f005 fbde bl 800f33a HAL_NVIC_EnableIRQ(CAN2_TX_IRQn); 8009b7e: 203f movs r0, #63 @ 0x3f - 8009b80: f005 fbe9 bl 800f356 + 8009b80: f005 fbf7 bl 800f372 HAL_NVIC_SetPriority(CAN2_RX1_IRQn, 0, 0); 8009b84: 2200 movs r2, #0 8009b86: 2100 movs r1, #0 8009b88: 2041 movs r0, #65 @ 0x41 - 8009b8a: f005 fbc8 bl 800f31e + 8009b8a: f005 fbd6 bl 800f33a HAL_NVIC_EnableIRQ(CAN2_RX1_IRQn); 8009b8e: 2041 movs r0, #65 @ 0x41 - 8009b90: f005 fbe1 bl 800f356 + 8009b90: f005 fbef bl 800f372 } 8009b94: bf00 nop 8009b96: 3738 adds r7, #56 @ 0x38 @@ -3008,7 +3008,7 @@ void CONN_Loop(){ 8009c46: 461a mov r2, r3 8009c48: 2100 movs r1, #0 8009c4a: 4805 ldr r0, [pc, #20] @ (8009c60 ) - 8009c4c: f009 f966 bl 8012f1c + 8009c4c: f009 f974 bl 8012f38 } 8009c50: bf00 nop @@ -3016,7 +3016,7 @@ void CONN_Loop(){ 8009c54: 200001d4 .word 0x200001d4 8009c58: 200001f4 .word 0x200001f4 8009c5c: 20000724 .word 0x20000724 - 8009c60: 08014004 .word 0x08014004 + 8009c60: 08014020 .word 0x08014020 08009c64 : @@ -3221,20 +3221,20 @@ void CONN_SetState(CONN_State_t state){ 8009dc2: bf00 nop 8009dc4: 200001f3 .word 0x200001f3 8009dc8: 200001d4 .word 0x200001d4 - 8009dcc: 08014018 .word 0x08014018 - 8009dd0: 0801402c .word 0x0801402c - 8009dd4: 08014044 .word 0x08014044 - 8009dd8: 0801405c .word 0x0801405c - 8009ddc: 08014074 .word 0x08014074 - 8009de0: 08014090 .word 0x08014090 - 8009de4: 080140b0 .word 0x080140b0 - 8009de8: 080140d0 .word 0x080140d0 - 8009dec: 080140f0 .word 0x080140f0 - 8009df0: 08014108 .word 0x08014108 - 8009df4: 08014120 .word 0x08014120 - 8009df8: 08014138 .word 0x08014138 - 8009dfc: 08014154 .word 0x08014154 - 8009e00: 0801416c .word 0x0801416c + 8009dcc: 08014034 .word 0x08014034 + 8009dd0: 08014048 .word 0x08014048 + 8009dd4: 08014060 .word 0x08014060 + 8009dd8: 08014078 .word 0x08014078 + 8009ddc: 08014090 .word 0x08014090 + 8009de0: 080140ac .word 0x080140ac + 8009de4: 080140cc .word 0x080140cc + 8009de8: 080140ec .word 0x080140ec + 8009dec: 0801410c .word 0x0801410c + 8009df0: 08014124 .word 0x08014124 + 8009df4: 0801413c .word 0x0801413c + 8009df8: 08014154 .word 0x08014154 + 8009dfc: 08014170 .word 0x08014170 + 8009e00: 08014188 .word 0x08014188 08009e04 : CP_State_t fake_cp_state = EV_STATE_ACQUIRING; @@ -3256,18 +3256,18 @@ static uint32_t CP_ReadAdcChannel(uint32_t ch) { 8009e12: f7ff fd1f bl 8009854 HAL_ADC_Start(&hadc1); 8009e16: 4809 ldr r0, [pc, #36] @ (8009e3c ) - 8009e18: f003 fea6 bl 800db68 + 8009e18: f003 feb4 bl 800db84 HAL_ADC_PollForConversion(&hadc1, 10); 8009e1c: 210a movs r1, #10 8009e1e: 4807 ldr r0, [pc, #28] @ (8009e3c ) - 8009e20: f003 ff7c bl 800dd1c + 8009e20: f003 ff8a bl 800dd38 adc = HAL_ADC_GetValue(&hadc1); 8009e24: 4805 ldr r0, [pc, #20] @ (8009e3c ) - 8009e26: f004 f87f bl 800df28 + 8009e26: f004 f88d bl 800df44 8009e2a: 60f8 str r0, [r7, #12] HAL_ADC_Stop(&hadc1); 8009e2c: 4803 ldr r0, [pc, #12] @ (8009e3c ) - 8009e2e: f003 ff49 bl 800dcc4 + 8009e2e: f003 ff57 bl 800dce0 return adc; 8009e32: 68fb ldr r3, [r7, #12] @@ -3665,11 +3665,11 @@ void CP_Init(void) { HAL_TIM_PWM_Start(&htim3, TIM_CHANNEL_2); 800a0da: 2104 movs r1, #4 800a0dc: 4804 ldr r0, [pc, #16] @ (800a0f0 ) - 800a0de: f006 ff79 bl 8010fd4 + 800a0de: f006 ff87 bl 8010ff0 HAL_TIM_OC_Start_IT(&htim3, TIM_CHANNEL_1); 800a0e2: 2100 movs r1, #0 800a0e4: 4802 ldr r0, [pc, #8] @ (800a0f0 ) - 800a0e6: f006 fe27 bl 8010d38 + 800a0e6: f006 fe35 bl 8010d54 } 800a0ea: bf00 nop 800a0ec: bd80 pop {r7, pc} @@ -3755,7 +3755,7 @@ CP_State_t CP_GetState(void) { 800a160: 681b ldr r3, [r3, #0] 800a162: 60fb str r3, [r7, #12] uint32_t now = HAL_GetTick(); - 800a164: f003 fbfa bl 800d95c + 800a164: f003 fc08 bl 800d978 800a168: 60b8 str r0, [r7, #8] if(fake_cp_state != EV_STATE_ACQUIRING) { @@ -3917,7 +3917,7 @@ void MX_CRC_Init(void) 800a254: 601a str r2, [r3, #0] if (HAL_CRC_Init(&hcrc) != HAL_OK) 800a256: 4805 ldr r0, [pc, #20] @ (800a26c ) - 800a258: f005 f897 bl 800f38a + 800a258: f005 f8a5 bl 800f3a6 800a25c: 4603 mov r3, r0 800a25e: 2b00 cmp r3, #0 800a260: d001 beq.n 800a266 @@ -4228,7 +4228,7 @@ void debug_buffer_send(void) 800a41c: 88f9 ldrh r1, [r7, #6] 800a41e: 2250 movs r2, #80 @ 0x50 800a420: 4618 mov r0, r3 - 800a422: f002 f9d7 bl 800c7d4 + 800a422: f002 f9e5 bl 800c7f0 800a426: e00b b.n 800a440 }else{ SC_SendPacket(&debug_buffer.buffer[debug_buffer.read_index], bytes_to_send, CMD_GET_LOG_CONTINUE); @@ -4241,7 +4241,7 @@ void debug_buffer_send(void) 800a436: 88f9 ldrh r1, [r7, #6] 800a438: 2251 movs r2, #81 @ 0x51 800a43a: 4618 mov r0, r3 - 800a43c: f002 f9ca bl 800c7d4 + 800a43c: f002 f9d8 bl 800c7f0 } debug_buffer.read_index = (debug_buffer.read_index + bytes_to_send) % DEBUG_BUFFER_SIZE; 800a440: 4b0d ldr r3, [pc, #52] @ (800a478 ) @@ -4306,7 +4306,7 @@ int log_printf(LogLevel_t level, const char *format, ...) 800a496: 69fa ldr r2, [r7, #28] 800a498: 217e movs r1, #126 @ 0x7e 800a49a: 4812 ldr r0, [pc, #72] @ (800a4e4 ) - 800a49c: f008 fdc2 bl 8013024 + 800a49c: f008 fdd0 bl 8013040 800a4a0: 60f8 str r0, [r7, #12] va_end(args); @@ -4441,14 +4441,14 @@ void MX_GPIO_Init(void) 800a574: 2200 movs r2, #0 800a576: 2138 movs r1, #56 @ 0x38 800a578: 485f ldr r0, [pc, #380] @ (800a6f8 ) - 800a57a: f005 fa00 bl 800f97e + 800a57a: f005 fa0e bl 800f99a /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOE, RELAY1_Pin|RELAY2_Pin|RELAY3_Pin|RELAY4_Pin 800a57e: 2200 movs r2, #0 800a580: f44f 51f8 mov.w r1, #7936 @ 0x1f00 800a584: 485d ldr r0, [pc, #372] @ (800a6fc ) - 800a586: f005 f9fa bl 800f97e + 800a586: f005 fa08 bl 800f99a |RELAY5_Pin, GPIO_PIN_RESET); /*Configure GPIO pin Output Level */ @@ -4456,21 +4456,21 @@ void MX_GPIO_Init(void) 800a58a: 2200 movs r2, #0 800a58c: f44f 4100 mov.w r1, #32768 @ 0x8000 800a590: 485b ldr r0, [pc, #364] @ (800a700 ) - 800a592: f005 f9f4 bl 800f97e + 800a592: f005 fa02 bl 800f99a /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOD, RELAY_DC_Pin|USART2_DIR_Pin, GPIO_PIN_RESET); 800a596: 2200 movs r2, #0 800a598: 2118 movs r1, #24 800a59a: 485a ldr r0, [pc, #360] @ (800a704 ) - 800a59c: f005 f9ef bl 800f97e + 800a59c: f005 f9fd bl 800f99a /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(EE_WP_GPIO_Port, EE_WP_Pin, GPIO_PIN_RESET); 800a5a0: 2200 movs r2, #0 800a5a2: 2180 movs r1, #128 @ 0x80 800a5a4: 4858 ldr r0, [pc, #352] @ (800a708 ) - 800a5a6: f005 f9ea bl 800f97e + 800a5a6: f005 f9f8 bl 800f99a /*Configure GPIO pins : RELAY_CP_Pin LOCK_A_Pin LOCK_B_Pin */ GPIO_InitStruct.Pin = RELAY_CP_Pin|LOCK_A_Pin|LOCK_B_Pin; @@ -4489,7 +4489,7 @@ void MX_GPIO_Init(void) 800a5ba: f107 0314 add.w r3, r7, #20 800a5be: 4619 mov r1, r3 800a5c0: 484d ldr r0, [pc, #308] @ (800a6f8 ) - 800a5c2: f005 f841 bl 800f648 + 800a5c2: f005 f84f bl 800f664 /*Configure GPIO pin : IN_SW0_Pin */ GPIO_InitStruct.Pin = IN_SW0_Pin; @@ -4505,7 +4505,7 @@ void MX_GPIO_Init(void) 800a5d2: f107 0314 add.w r3, r7, #20 800a5d6: 4619 mov r1, r3 800a5d8: 4849 ldr r0, [pc, #292] @ (800a700 ) - 800a5da: f005 f835 bl 800f648 + 800a5da: f005 f843 bl 800f664 /*Configure GPIO pin : IN_SW1_Pin */ GPIO_InitStruct.Pin = IN_SW1_Pin; @@ -4521,7 +4521,7 @@ void MX_GPIO_Init(void) 800a5ea: f107 0314 add.w r3, r7, #20 800a5ee: 4619 mov r1, r3 800a5f0: 4843 ldr r0, [pc, #268] @ (800a700 ) - 800a5f2: f005 f829 bl 800f648 + 800a5f2: f005 f837 bl 800f664 /*Configure GPIO pins : IN0_Pin AC_OK_Pin ISO_IN_Pin */ GPIO_InitStruct.Pin = IN0_Pin|AC_OK_Pin|ISO_IN_Pin; @@ -4537,7 +4537,7 @@ void MX_GPIO_Init(void) 800a604: f107 0314 add.w r3, r7, #20 800a608: 4619 mov r1, r3 800a60a: 483c ldr r0, [pc, #240] @ (800a6fc ) - 800a60c: f005 f81c bl 800f648 + 800a60c: f005 f82a bl 800f664 /*Configure GPIO pins : RELAY1_Pin RELAY2_Pin RELAY3_Pin RELAY4_Pin RELAY5_Pin */ @@ -4558,7 +4558,7 @@ void MX_GPIO_Init(void) 800a622: f107 0314 add.w r3, r7, #20 800a626: 4619 mov r1, r3 800a628: 4834 ldr r0, [pc, #208] @ (800a6fc ) - 800a62a: f005 f80d bl 800f648 + 800a62a: f005 f81b bl 800f664 /*Configure GPIO pin : RELAY_CC_Pin */ GPIO_InitStruct.Pin = RELAY_CC_Pin; @@ -4577,7 +4577,7 @@ void MX_GPIO_Init(void) 800a640: f107 0314 add.w r3, r7, #20 800a644: 4619 mov r1, r3 800a646: 482e ldr r0, [pc, #184] @ (800a700 ) - 800a648: f004 fffe bl 800f648 + 800a648: f005 f80c bl 800f664 /*Configure GPIO pins : RELAY_DC_Pin USART2_DIR_Pin */ GPIO_InitStruct.Pin = RELAY_DC_Pin|USART2_DIR_Pin; @@ -4596,7 +4596,7 @@ void MX_GPIO_Init(void) 800a65c: f107 0314 add.w r3, r7, #20 800a660: 4619 mov r1, r3 800a662: 4828 ldr r0, [pc, #160] @ (800a704 ) - 800a664: f004 fff0 bl 800f648 + 800a664: f004 fffe bl 800f664 /*Configure GPIO pin : IN_ESTOP_Pin */ GPIO_InitStruct.Pin = IN_ESTOP_Pin; @@ -4612,7 +4612,7 @@ void MX_GPIO_Init(void) 800a674: f107 0314 add.w r3, r7, #20 800a678: 4619 mov r1, r3 800a67a: 4822 ldr r0, [pc, #136] @ (800a704 ) - 800a67c: f004 ffe4 bl 800f648 + 800a67c: f004 fff2 bl 800f664 /*Configure GPIO pins : IN_FB2_Pin IN_FB1_Pin */ GPIO_InitStruct.Pin = IN_FB2_Pin|IN_FB1_Pin; @@ -4628,7 +4628,7 @@ void MX_GPIO_Init(void) 800a68c: f107 0314 add.w r3, r7, #20 800a690: 4619 mov r1, r3 800a692: 481d ldr r0, [pc, #116] @ (800a708 ) - 800a694: f004 ffd8 bl 800f648 + 800a694: f004 ffe6 bl 800f664 /*Configure GPIO pin : EE_WP_Pin */ GPIO_InitStruct.Pin = EE_WP_Pin; @@ -4647,7 +4647,7 @@ void MX_GPIO_Init(void) 800a6a8: f107 0314 add.w r3, r7, #20 800a6ac: 4619 mov r1, r3 800a6ae: 4816 ldr r0, [pc, #88] @ (800a708 ) - 800a6b0: f004 ffca bl 800f648 + 800a6b0: f004 ffd8 bl 800f664 /*Configure GPIO pins : PB8 PB9 */ GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9; @@ -4663,7 +4663,7 @@ void MX_GPIO_Init(void) 800a6c2: f107 0314 add.w r3, r7, #20 800a6c6: 4619 mov r1, r3 800a6c8: 480f ldr r0, [pc, #60] @ (800a708 ) - 800a6ca: f004 ffbd bl 800f648 + 800a6ca: f004 ffcb bl 800f664 /*Configure peripheral I/O remapping */ __HAL_AFIO_REMAP_I2C1_ENABLE(); @@ -4779,7 +4779,7 @@ void ED_Delay(uint32_t Delay) 800a778: af00 add r7, sp, #0 800a77a: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 800a77c: f003 f8ee bl 800d95c + 800a77c: f003 f8fc bl 800d978 800a780: 60b8 str r0, [r7, #8] uint32_t wait = Delay; 800a782: 687b ldr r3, [r7, #4] @@ -4809,9 +4809,9 @@ void ED_Delay(uint32_t Delay) LED_Task(); 800a7a4: f001 f810 bl 800b7c8 SC_Task(); - 800a7a8: f001 fe9a bl 800c4e0 + 800a7a8: f001 fea8 bl 800c4fc while ((HAL_GetTick() - tickstart) < wait){ - 800a7ac: f003 f8d6 bl 800d95c + 800a7ac: f003 f8e4 bl 800d978 800a7b0: 4602 mov r2, r0 800a7b2: 68bb ldr r3, [r7, #8] 800a7b4: 1ad3 subs r3, r2, r3 @@ -4863,12 +4863,12 @@ static void CAN1_MinimalReInit(void) 800a7ee: af00 add r7, sp, #0 HAL_CAN_Stop(&hcan1); 800a7f0: 480b ldr r0, [pc, #44] @ (800a820 ) - 800a7f2: f004 f807 bl 800e804 + 800a7f2: f004 f815 bl 800e820 MX_CAN1_Init(); 800a7f6: f7ff f895 bl 8009924 if (HAL_CAN_Start(&hcan1) != HAL_OK) { 800a7fa: 4809 ldr r0, [pc, #36] @ (800a820 ) - 800a7fc: f003 ffbe bl 800e77c + 800a7fc: f003 ffcc bl 800e798 800a800: 4603 mov r3, r0 800a802: 2b00 cmp r3, #0 800a804: d001 beq.n 800a80a @@ -4878,7 +4878,7 @@ static void CAN1_MinimalReInit(void) if (HAL_CAN_ActivateNotification(&hcan1, CAN_IT_RX_FIFO0_MSG_PENDING) != HAL_OK) { 800a80a: 2102 movs r1, #2 800a80c: 4804 ldr r0, [pc, #16] @ (800a820 ) - 800a80e: f004 fa66 bl 800ecde + 800a80e: f004 fa74 bl 800ecfa 800a812: 4603 mov r3, r0 800a814: 2b00 cmp r3, #0 800a816: d001 beq.n 800a81c @@ -4910,11 +4910,11 @@ int main(void) /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 800a82e: f003 f83d bl 800d8ac + 800a82e: f003 f84b bl 800d8c8 /* USER CODE BEGIN Init */ HAL_RCC_DeInit(); - 800a832: f005 f8c9 bl 800f9c8 + 800a832: f005 f8d7 bl 800f9e4 /* USER CODE END Init */ /* Configure the system clock */ @@ -4936,19 +4936,19 @@ int main(void) MX_RTC_Init(); 800a84a: f001 f85b bl 800b904 MX_TIM4_Init(); - 800a84e: f002 fce9 bl 800d224 + 800a84e: f002 fcf7 bl 800d240 MX_USART2_UART_Init(); - 800a852: f002 fe67 bl 800d524 + 800a852: f002 fe75 bl 800d540 MX_CRC_Init(); 800a856: f7ff fcf9 bl 800a24c MX_UART5_Init(); - 800a85a: f002 fe0f bl 800d47c + 800a85a: f002 fe1d bl 800d498 MX_USART1_UART_Init(); - 800a85e: f002 fe37 bl 800d4d0 + 800a85e: f002 fe45 bl 800d4ec MX_USART3_UART_Init(); - 800a862: f002 fe89 bl 800d578 + 800a862: f002 fe97 bl 800d594 MX_TIM3_Init(); - 800a866: f002 fc67 bl 800d138 + 800a866: f002 fc75 bl 800d154 /* USER CODE BEGIN 2 */ Init_Peripheral(); 800a86a: f7fe fef3 bl 8009654 @@ -4957,17 +4957,17 @@ int main(void) HAL_Delay(300); 800a872: f44f 7096 mov.w r0, #300 @ 0x12c - 800a876: f003 f87b bl 800d970 + 800a876: f003 f889 bl 800d98c CCS_Init(); - 800a87a: f001 facd bl 800be18 + 800a87a: f001 fadb bl 800be34 SC_Init(); - 800a87e: f001 fe1b bl 800c4b8 + 800a87e: f001 fe29 bl 800c4d4 log_printf(LOG_INFO, "CCS module start\n"); 800a882: 4921 ldr r1, [pc, #132] @ (800a908 ) 800a884: 2007 movs r0, #7 800a886: f7ff fdf9 bl 800a47c ReadVersion(); - 800a88a: f001 fdf1 bl 800c470 + 800a88a: f001 fdff bl 800c48c log_printf(LOG_INFO, "Serial number: %d\n", infoPacket.serialNumber); 800a88e: 4b1f ldr r3, [pc, #124] @ (800a90c ) 800a890: 881b ldrh r3, [r3, #0] @@ -5035,11 +5035,11 @@ int main(void) { 800a904: bf00 nop 800a906: e7e8 b.n 800a8da - 800a908: 080141b8 .word 0x080141b8 + 800a908: 080141d4 .word 0x080141d4 800a90c: 20000eb8 .word 0x20000eb8 - 800a910: 080141cc .word 0x080141cc - 800a914: 080141e0 .word 0x080141e0 - 800a918: 080141f4 .word 0x080141f4 + 800a910: 080141e8 .word 0x080141e8 + 800a914: 080141fc .word 0x080141fc + 800a918: 08014210 .word 0x08014210 0800a91c : /** @@ -5056,7 +5056,7 @@ void SystemClock_Config(void) 800a926: 2238 movs r2, #56 @ 0x38 800a928: 2100 movs r1, #0 800a92a: 4618 mov r0, r3 - 800a92c: f008 fb88 bl 8013040 + 800a92c: f008 fb96 bl 801305c RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; 800a930: f107 0324 add.w r3, r7, #36 @ 0x24 800a934: 2200 movs r2, #0 @@ -5070,7 +5070,7 @@ void SystemClock_Config(void) 800a942: 2220 movs r2, #32 800a944: 2100 movs r1, #0 800a946: 4618 mov r0, r3 - 800a948: f008 fb7a bl 8013040 + 800a948: f008 fb88 bl 801305c /** Initializes the RCC Oscillators according to the specified parameters * in the RCC_OscInitTypeDef structure. @@ -5114,7 +5114,7 @@ void SystemClock_Config(void) if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) 800a986: f107 0338 add.w r3, r7, #56 @ 0x38 800a98a: 4618 mov r0, r3 - 800a98c: f005 f8ec bl 800fb68 + 800a98c: f005 f8fa bl 800fb84 800a990: 4603 mov r3, r0 800a992: 2b00 cmp r3, #0 800a994: d001 beq.n 800a99a @@ -5146,7 +5146,7 @@ void SystemClock_Config(void) 800a9b0: f107 0324 add.w r3, r7, #36 @ 0x24 800a9b4: 2102 movs r1, #2 800a9b6: 4618 mov r0, r3 - 800a9b8: f005 fbec bl 8010194 + 800a9b8: f005 fbfa bl 80101b0 800a9bc: 4603 mov r3, r0 800a9be: 2b00 cmp r3, #0 800a9c0: d001 beq.n 800a9c6 @@ -5166,7 +5166,7 @@ void SystemClock_Config(void) if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK) 800a9d6: 1d3b adds r3, r7, #4 800a9d8: 4618 mov r0, r3 - 800a9da: f005 fdd1 bl 8010580 + 800a9da: f005 fddf bl 801059c 800a9de: 4603 mov r3, r0 800a9e0: 2b00 cmp r3, #0 800a9e2: d001 beq.n 800a9e8 @@ -5244,7 +5244,7 @@ void METER_CalculateEnergy() { } uint32_t currentTick = HAL_GetTick(); // Получаем текущее время в миллисекундах - 800aa30: f002 ff94 bl 800d95c + 800aa30: f002 ffa2 bl 800d978 800aa34: 60f8 str r0, [r7, #12] uint32_t elapsedTimeMs = currentTick - METER.lastTick; // Вычисляем время, прошедшее с последнего вызова в секундах 800aa36: 4b25 ldr r3, [pc, #148] @ (800aacc ) @@ -5353,7 +5353,7 @@ static void PSU_SwitchState(PSU_State_t state){ 800aae8: 79fb ldrb r3, [r7, #7] 800aaea: 71d3 strb r3, [r2, #7] PSU0.statetick = HAL_GetTick(); - 800aaec: f002 ff36 bl 800d95c + 800aaec: f002 ff44 bl 800d978 800aaf0: 4603 mov r3, r0 800aaf2: 4a03 ldr r2, [pc, #12] @ (800ab00 ) 800aaf4: 6113 str r3, [r2, #16] @@ -5371,7 +5371,7 @@ static uint32_t PSU_StateTime(void){ 800ab04: b580 push {r7, lr} 800ab06: af00 add r7, sp, #0 return HAL_GetTick() - PSU0.statetick; - 800ab08: f002 ff28 bl 800d95c + 800ab08: f002 ff36 bl 800d978 800ab0c: 4602 mov r2, r0 800ab0e: 4b02 ldr r3, [pc, #8] @ (800ab18 ) 800ab10: 691b ldr r3, [r3, #16] @@ -5398,7 +5398,7 @@ void HAL_CAN_RxFifo1MsgPendingCallback(CAN_HandleTypeDef *hcan){ 800ab26: 4a89 ldr r2, [pc, #548] @ (800ad4c ) 800ab28: 2101 movs r1, #1 800ab2a: 6878 ldr r0, [r7, #4] - 800ab2c: f003 ffb6 bl 800ea9c + 800ab2c: f003 ffc4 bl 800eab8 800ab30: 4603 mov r3, r0 800ab32: 2b00 cmp r3, #0 800ab34: f040 8104 bne.w 800ad40 @@ -5414,7 +5414,7 @@ void HAL_CAN_RxFifo1MsgPendingCallback(CAN_HandleTypeDef *hcan){ 800ab40: 2b00 cmp r3, #0 800ab42: f040 80fc bne.w 800ad3e can_lastpacket = HAL_GetTick(); - 800ab46: f002 ff09 bl 800d95c + 800ab46: f002 ff17 bl 800d978 800ab4a: 4603 mov r3, r0 800ab4c: 4a80 ldr r2, [pc, #512] @ (800ad50 ) 800ab4e: 6013 str r3, [r2, #0] @@ -5764,7 +5764,7 @@ void PSU_CAN_FilterInit(){ 800adae: 463b mov r3, r7 800adb0: 4619 mov r1, r3 800adb2: 4806 ldr r0, [pc, #24] @ (800adcc ) - 800adb4: f003 fc02 bl 800e5bc + 800adb4: f003 fc10 bl 800e5d8 800adb8: 4603 mov r3, r0 800adba: 2b00 cmp r3, #0 800adbc: d001 beq.n 800adc2 @@ -5788,29 +5788,29 @@ void PSU_Init(){ HAL_CAN_Stop(&hcan2); 800add4: 4813 ldr r0, [pc, #76] @ (800ae24 ) - 800add6: f003 fd15 bl 800e804 + 800add6: f003 fd23 bl 800e820 MX_CAN2_Init(); 800adda: f7fe fdd9 bl 8009990 PSU_CAN_FilterInit(); 800adde: f7ff ffcd bl 800ad7c HAL_CAN_Start(&hcan2); 800ade2: 4810 ldr r0, [pc, #64] @ (800ae24 ) - 800ade4: f003 fcca bl 800e77c + 800ade4: f003 fcd8 bl 800e798 HAL_CAN_ActivateNotification(&hcan2, CAN_IT_RX_FIFO1_MSG_PENDING /* | CAN_IT_ERROR | CAN_IT_BUSOFF | CAN_IT_LAST_ERROR_CODE | CAN_IT_TX_MAILBOX_EMPTY*/); 800ade8: 2110 movs r1, #16 800adea: 480e ldr r0, [pc, #56] @ (800ae24 ) - 800adec: f003 ff77 bl 800ecde + 800adec: f003 ff85 bl 800ecfa memset(&PSU0, 0, sizeof(PSU0)); 800adf0: 2224 movs r2, #36 @ 0x24 800adf2: 2100 movs r1, #0 800adf4: 480c ldr r0, [pc, #48] @ (800ae28 ) - 800adf6: f008 f923 bl 8013040 + 800adf6: f008 f931 bl 801305c PSU0.state = PSU_UNREADY; 800adfa: 4b0b ldr r3, [pc, #44] @ (800ae28 ) 800adfc: 2200 movs r2, #0 800adfe: 71da strb r2, [r3, #7] PSU0.statetick = HAL_GetTick(); - 800ae00: f002 fdac bl 800d95c + 800ae00: f002 fdba bl 800d978 800ae04: 4603 mov r3, r0 800ae06: 4a08 ldr r2, [pc, #32] @ (800ae28 ) 800ae08: 6113 str r3, [r2, #16] @@ -5851,7 +5851,7 @@ void PSU_Enable(uint8_t addr, uint8_t enable){ 800ae40: 2208 movs r2, #8 800ae42: 2100 movs r1, #0 800ae44: 4618 mov r0, r3 - 800ae46: f008 f8fb bl 8013040 + 800ae46: f008 f909 bl 801305c /* Для DC30 поддерживается только один модуль с адресом 0 */ if(addr != 0) return; 800ae4a: 79fb ldrb r3, [r7, #7] @@ -5914,7 +5914,7 @@ void PSU_SetVoltageCurrent(uint8_t addr, uint16_t voltage, uint16_t current){ 800aea2: 2208 movs r2, #8 800aea4: 2100 movs r1, #0 800aea6: 4618 mov r0, r3 - 800aea8: f008 f8ca bl 8013040 + 800aea8: f008 f8d8 bl 801305c if(addr != 0) return; 800aeac: 79fb ldrb r3, [r7, #7] @@ -6064,7 +6064,7 @@ void PSU_SendCmd(uint8_t source, uint8_t destination, uint8_t cmd, void *data){ 800af94: e01e b.n 800afd4 if (HAL_CAN_GetTxMailboxesFreeLevel(&hcan2) > 0){ 800af96: 4814 ldr r0, [pc, #80] @ (800afe8 ) - 800af98: f003 fd4c bl 800ea34 + 800af98: f003 fd5a bl 800ea50 800af9c: 4603 mov r3, r0 800af9e: 2b00 cmp r3, #0 800afa0: d00e beq.n 800afc0 @@ -6074,7 +6074,7 @@ void PSU_SendCmd(uint8_t source, uint8_t destination, uint8_t cmd, void *data){ 800afa6: f107 0110 add.w r1, r7, #16 800afaa: 683a ldr r2, [r7, #0] 800afac: 480e ldr r0, [pc, #56] @ (800afe8 ) - 800afae: f003 fc72 bl 800e896 + 800afae: f003 fc80 bl 800e8b2 800afb2: 4603 mov r3, r0 800afb4: f887 302e strb.w r3, [r7, #46] @ 0x2e @@ -6289,7 +6289,7 @@ void PSU_Task(void){ // Обновляем ONLINE/READY по таймауту if((HAL_GetTick() - can_lastpacket) > PSU_ONLINE_TIMEOUT){ - 800b130: f002 fc14 bl 800d95c + 800b130: f002 fc22 bl 800d978 800b134: 4602 mov r2, r0 800b136: 4bb4 ldr r3, [pc, #720] @ (800b408 ) 800b138: 681b ldr r3, [r3, #0] @@ -6379,7 +6379,7 @@ void PSU_Task(void){ 800b1b8: 2004 movs r0, #4 800b1ba: f7fe f979 bl 80094b0 psu_on_tick = HAL_GetTick(); - 800b1be: f002 fbcd bl 800d95c + 800b1be: f002 fbdb bl 800d978 800b1c2: 4603 mov r3, r0 800b1c4: 4a96 ldr r2, [pc, #600] @ (800b420 ) 800b1c6: 6013 str r3, [r2, #0] @@ -6390,7 +6390,7 @@ void PSU_Task(void){ 800b1ce: e010 b.n 800b1f2 }else{ if((HAL_GetTick() - psu_on_tick) > 1 * 60000){ - 800b1d0: f002 fbc4 bl 800d95c + 800b1d0: f002 fbd2 bl 800d978 800b1d4: 4602 mov r2, r0 800b1d6: 4b92 ldr r3, [pc, #584] @ (800b420 ) 800b1d8: 681b ldr r3, [r3, #0] @@ -6554,7 +6554,7 @@ void PSU_Task(void){ 800b2ec: 2b00 cmp r3, #0 800b2ee: d008 beq.n 800b302 dc_on_tick = HAL_GetTick(); - 800b2f0: f002 fb34 bl 800d95c + 800b2f0: f002 fb42 bl 800d978 800b2f4: 4603 mov r3, r0 800b2f6: 4a4b ldr r2, [pc, #300] @ (800b424 ) 800b2f8: 6013 str r3, [r2, #0] @@ -6665,7 +6665,7 @@ void PSU_Task(void){ 800b39a: 429c cmp r4, r3 800b39c: d017 beq.n 800b3ce if((HAL_GetTick() - cont_ok_tick) > 1000){ - 800b39e: f002 fadd bl 800d95c + 800b39e: f002 faeb bl 800d978 800b3a2: 4602 mov r2, r0 800b3a4: 4b22 ldr r3, [pc, #136] @ (800b430 ) 800b3a6: 681b ldr r3, [r3, #0] @@ -6694,7 +6694,7 @@ void PSU_Task(void){ break; 800b3cc: e08f b.n 800b4ee cont_ok_tick = HAL_GetTick(); - 800b3ce: f002 fac5 bl 800d95c + 800b3ce: f002 fad3 bl 800d978 800b3d2: 4603 mov r3, r0 800b3d4: 4a16 ldr r2, [pc, #88] @ (800b430 ) 800b3d6: 6013 str r3, [r2, #0] @@ -6737,8 +6737,8 @@ void PSU_Task(void){ 800b41c: 200001d4 .word 0x200001d4 800b420: 20000770 .word 0x20000770 800b424: 20000774 .word 0x20000774 - 800b428: 0801420c .word 0x0801420c - 800b42c: 0801421c .word 0x0801421c + 800b428: 08014228 .word 0x08014228 + 800b42c: 08014238 .word 0x08014238 800b430: 20000778 .word 0x20000778 case PSU_CONT_WAIT_ACK_OFF: @@ -6887,8 +6887,8 @@ void PSU_Task(void){ 800b502: bd98 pop {r3, r4, r7, pc} 800b504: 20000724 .word 0x20000724 800b508: 200001d4 .word 0x200001d4 - 800b50c: 0801421c .word 0x0801421c - 800b510: 0801423c .word 0x0801423c + 800b50c: 08014238 .word 0x08014238 + 800b510: 08014258 .word 0x08014258 0800b514 : .Th = 10, @@ -7254,15 +7254,15 @@ void LED_Init(){ HAL_TIM_PWM_Start(&htim4, TIM_CHANNEL_2); 800b79a: 2104 movs r1, #4 800b79c: 4809 ldr r0, [pc, #36] @ (800b7c4 ) - 800b79e: f005 fc19 bl 8010fd4 + 800b79e: f005 fc27 bl 8010ff0 HAL_TIM_PWM_Start(&htim4, TIM_CHANNEL_3); 800b7a2: 2108 movs r1, #8 800b7a4: 4807 ldr r0, [pc, #28] @ (800b7c4 ) - 800b7a6: f005 fc15 bl 8010fd4 + 800b7a6: f005 fc23 bl 8010ff0 HAL_TIM_PWM_Start(&htim4, TIM_CHANNEL_4); 800b7aa: 210c movs r1, #12 800b7ac: 4805 ldr r0, [pc, #20] @ (800b7c4 ) - 800b7ae: f005 fc11 bl 8010fd4 + 800b7ae: f005 fc1f bl 8010ff0 RGB_SetColor(&color); 800b7b2: 1d3b adds r3, r7, #4 800b7b4: 4618 mov r0, r3 @@ -7287,7 +7287,7 @@ void LED_Task(){ 800b7cc: af02 add r7, sp, #8 static uint32_t led_tick; if((HAL_GetTick() - led_tick) > 20){ - 800b7ce: f002 f8c5 bl 800d95c + 800b7ce: f002 f8d3 bl 800d978 800b7d2: 4602 mov r2, r0 800b7d4: 4b46 ldr r3, [pc, #280] @ (800b8f0 ) 800b7d6: 681b ldr r3, [r3, #0] @@ -7295,7 +7295,7 @@ void LED_Task(){ 800b7da: 2b14 cmp r3, #20 800b7dc: f240 8085 bls.w 800b8ea led_tick = HAL_GetTick(); - 800b7e0: f002 f8bc bl 800d95c + 800b7e0: f002 f8ca bl 800d978 800b7e4: 4603 mov r3, r0 800b7e6: 4a42 ldr r2, [pc, #264] @ (800b8f0 ) 800b7e8: 6013 str r3, [r2, #0] @@ -7501,7 +7501,7 @@ void MX_RTC_Init(void) 800b91c: 609a str r2, [r3, #8] if (HAL_RTC_Init(&hrtc) != HAL_OK) 800b91e: 4805 ldr r0, [pc, #20] @ (800b934 ) - 800b920: f005 f8b2 bl 8010a88 + 800b920: f005 f8c0 bl 8010aa4 800b924: 4603 mov r3, r0 800b926: 2b00 cmp r3, #0 800b928: d001 beq.n 800b92e @@ -7540,7 +7540,7 @@ void HAL_RTC_MspInit(RTC_HandleTypeDef* rtcHandle) /* USER CODE END RTC_MspInit 0 */ HAL_PWR_EnableBkUpAccess(); - 800b94e: f004 f82f bl 800f9b0 + 800b94e: f004 f83d bl 800f9cc /* Enable BKP CLK enable for backup registers */ __HAL_RCC_BKP_CLK_ENABLE(); 800b952: 4b0a ldr r3, [pc, #40] @ (800b97c ) @@ -7651,7 +7651,7 @@ void CCS_RxEventCallback(UART_HandleTypeDef *huart, uint16_t size) { 800b9d8: 887b ldrh r3, [r7, #2] 800b9da: 4619 mov r1, r3 800b9dc: 4805 ldr r0, [pc, #20] @ (800b9f4 ) - 800b9de: f000 fcd7 bl 800c390 + 800b9de: f000 fce5 bl 800c3ac 800b9e2: e000 b.n 800b9e6 return; 800b9e4: bf00 nop @@ -7675,25 +7675,25 @@ void CCS_SerialLoop(void) { static uint32_t last_state_sent = 0; if (!rx_armed && HAL_UART_GetState(&huart3) == HAL_UART_STATE_READY) { - 800b9fc: 4ba6 ldr r3, [pc, #664] @ (800bc98 ) + 800b9fc: 4baa ldr r3, [pc, #680] @ (800bca8 ) 800b9fe: 781b ldrb r3, [r3, #0] 800ba00: 2b00 cmp r3, #0 800ba02: d111 bne.n 800ba28 - 800ba04: 48a5 ldr r0, [pc, #660] @ (800bc9c ) - 800ba06: f006 fe8e bl 8012726 + 800ba04: 48a9 ldr r0, [pc, #676] @ (800bcac ) + 800ba06: f006 fe9c bl 8012742 800ba0a: 4603 mov r3, r0 800ba0c: 2b20 cmp r3, #32 800ba0e: d10b bne.n 800ba28 if (HAL_UARTEx_ReceiveToIdle_IT(&huart3, rx_buffer, sizeof(rx_buffer)) == HAL_OK) { 800ba10: f44f 7280 mov.w r2, #256 @ 0x100 - 800ba14: 49a2 ldr r1, [pc, #648] @ (800bca0 ) - 800ba16: 48a1 ldr r0, [pc, #644] @ (800bc9c ) - 800ba18: f006 fa66 bl 8011ee8 + 800ba14: 49a6 ldr r1, [pc, #664] @ (800bcb0 ) + 800ba16: 48a5 ldr r0, [pc, #660] @ (800bcac ) + 800ba18: f006 fa74 bl 8011f04 800ba1c: 4603 mov r3, r0 800ba1e: 2b00 cmp r3, #0 800ba20: d102 bne.n 800ba28 rx_armed = 1; - 800ba22: 4b9d ldr r3, [pc, #628] @ (800bc98 ) + 800ba22: 4ba1 ldr r3, [pc, #644] @ (800bca8 ) 800ba24: 2201 movs r2, #1 800ba26: 701a strb r2, [r3, #0] } @@ -7704,22553 +7704,22569 @@ void CCS_SerialLoop(void) { 800ba28: f7fe fb96 bl 800a158 800ba2c: 4603 mov r3, r0 800ba2e: 461a mov r2, r3 - 800ba30: 4b9c ldr r3, [pc, #624] @ (800bca4 ) + 800ba30: 4ba0 ldr r3, [pc, #640] @ (800bcb4 ) 800ba32: 701a strb r2, [r3, #0] if (CONN.connControl != CMD_NONE) { - 800ba34: 4b9c ldr r3, [pc, #624] @ (800bca8 ) + 800ba34: 4ba0 ldr r3, [pc, #640] @ (800bcb8 ) 800ba36: 781b ldrb r3, [r3, #0] 800ba38: 2b00 cmp r3, #0 800ba3a: d003 beq.n 800ba44 last_cmd = CONN.connControl; - 800ba3c: 4b9a ldr r3, [pc, #616] @ (800bca8 ) + 800ba3c: 4b9e ldr r3, [pc, #632] @ (800bcb8 ) 800ba3e: 781a ldrb r2, [r3, #0] - 800ba40: 4b9a ldr r3, [pc, #616] @ (800bcac ) + 800ba40: 4b9e ldr r3, [pc, #632] @ (800bcbc ) 800ba42: 701a strb r2, [r3, #0] } if((HAL_GetTick() - last_cmd_sent) > CMD_INTERVAL){ - 800ba44: f001 ff8a bl 800d95c + 800ba44: f001 ff98 bl 800d978 800ba48: 4602 mov r2, r0 - 800ba4a: 4b99 ldr r3, [pc, #612] @ (800bcb0 ) + 800ba4a: 4b9d ldr r3, [pc, #628] @ (800bcc0 ) 800ba4c: 681b ldr r3, [r3, #0] 800ba4e: 1ad3 subs r3, r2, r3 800ba50: 2b0a cmp r3, #10 800ba52: d953 bls.n 800bafc if ((HAL_GetTick() - last_state_sent) >= 200) { - 800ba54: f001 ff82 bl 800d95c + 800ba54: f001 ff90 bl 800d978 800ba58: 4602 mov r2, r0 - 800ba5a: 4b96 ldr r3, [pc, #600] @ (800bcb4 ) + 800ba5a: 4b9a ldr r3, [pc, #616] @ (800bcc4 ) 800ba5c: 681b ldr r3, [r3, #0] 800ba5e: 1ad3 subs r3, r2, r3 800ba60: 2bc7 cmp r3, #199 @ 0xc7 800ba62: d906 bls.n 800ba72 send_state(); - 800ba64: f000 fb0e bl 800c084 + 800ba64: f000 fb1c bl 800c0a0 last_state_sent = HAL_GetTick(); - 800ba68: f001 ff78 bl 800d95c + 800ba68: f001 ff86 bl 800d978 800ba6c: 4603 mov r3, r0 - 800ba6e: 4a91 ldr r2, [pc, #580] @ (800bcb4 ) + 800ba6e: 4a95 ldr r2, [pc, #596] @ (800bcc4 ) 800ba70: 6013 str r3, [r2, #0] } if (ESTOP) { - 800ba72: 4b91 ldr r3, [pc, #580] @ (800bcb8 ) + 800ba72: 4b95 ldr r3, [pc, #596] @ (800bcc8 ) 800ba74: 781b ldrb r3, [r3, #0] 800ba76: 2b00 cmp r3, #0 800ba78: d008 beq.n 800ba8c log_printf(LOG_ERR, "ESTOP triggered\n"); - 800ba7a: 4990 ldr r1, [pc, #576] @ (800bcbc ) + 800ba7a: 4994 ldr r1, [pc, #592] @ (800bccc ) 800ba7c: 2004 movs r0, #4 800ba7e: f7fe fcfd bl 800a47c CCS_SendEmergencyStop(); - 800ba82: f000 faa0 bl 800bfc6 + 800ba82: f000 faae bl 800bfe2 ESTOP = 0; - 800ba86: 4b8c ldr r3, [pc, #560] @ (800bcb8 ) + 800ba86: 4b90 ldr r3, [pc, #576] @ (800bcc8 ) 800ba88: 2200 movs r2, #0 800ba8a: 701a strb r2, [r3, #0] } if (((CONN.connControl == CMD_STOP) || - 800ba8c: 4b86 ldr r3, [pc, #536] @ (800bca8 ) + 800ba8c: 4b8a ldr r3, [pc, #552] @ (800bcb8 ) 800ba8e: 781b ldrb r3, [r3, #0] 800ba90: 2b01 cmp r3, #1 800ba92: d003 beq.n 800ba9c (CONN.chargingError != CONN_NO_ERROR)) && - 800ba94: 4b84 ldr r3, [pc, #528] @ (800bca8 ) + 800ba94: 4b88 ldr r3, [pc, #544] @ (800bcb8 ) 800ba96: 7f5b ldrb r3, [r3, #29] if (((CONN.connControl == CMD_STOP) || 800ba98: 2b00 cmp r3, #0 800ba9a: d013 beq.n 800bac4 ((HAL_GetTick() - last_stop_sent) > 1000)) { - 800ba9c: f001 ff5e bl 800d95c + 800ba9c: f001 ff6c bl 800d978 800baa0: 4602 mov r2, r0 - 800baa2: 4b87 ldr r3, [pc, #540] @ (800bcc0 ) + 800baa2: 4b8b ldr r3, [pc, #556] @ (800bcd0 ) 800baa4: 681b ldr r3, [r3, #0] 800baa6: 1ad3 subs r3, r2, r3 (CONN.chargingError != CONN_NO_ERROR)) && 800baa8: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 800baac: d90a bls.n 800bac4 last_stop_sent = HAL_GetTick(); - 800baae: f001 ff55 bl 800d95c + 800baae: f001 ff63 bl 800d978 800bab2: 4603 mov r3, r0 - 800bab4: 4a82 ldr r2, [pc, #520] @ (800bcc0 ) + 800bab4: 4a86 ldr r2, [pc, #536] @ (800bcd0 ) 800bab6: 6013 str r3, [r2, #0] log_printf(LOG_WARN, "Stopping charging...\n"); - 800bab8: 4982 ldr r1, [pc, #520] @ (800bcc4 ) + 800bab8: 4986 ldr r1, [pc, #536] @ (800bcd4 ) 800baba: 2005 movs r0, #5 800babc: f7fe fcde bl 800a47c CCS_SendEmergencyStop(); - 800bac0: f000 fa81 bl 800bfc6 + 800bac0: f000 fa8f bl 800bfe2 } if (((CCS_EvseState == FinishedEV) || (CCS_EvseState == FinishedEVSE)) && - 800bac4: 4b80 ldr r3, [pc, #512] @ (800bcc8 ) + 800bac4: 4b84 ldr r3, [pc, #528] @ (800bcd8 ) 800bac6: 781b ldrb r3, [r3, #0] 800bac8: 2b0c cmp r3, #12 800baca: d003 beq.n 800bad4 - 800bacc: 4b7e ldr r3, [pc, #504] @ (800bcc8 ) + 800bacc: 4b82 ldr r3, [pc, #520] @ (800bcd8 ) 800bace: 781b ldrb r3, [r3, #0] 800bad0: 2b0b cmp r3, #11 800bad2: d113 bne.n 800bafc ((HAL_GetTick() - last_stop_sent) > 1000)) { - 800bad4: f001 ff42 bl 800d95c + 800bad4: f001 ff50 bl 800d978 800bad8: 4602 mov r2, r0 - 800bada: 4b79 ldr r3, [pc, #484] @ (800bcc0 ) + 800bada: 4b7d ldr r3, [pc, #500] @ (800bcd0 ) 800badc: 681b ldr r3, [r3, #0] 800bade: 1ad3 subs r3, r2, r3 if (((CCS_EvseState == FinishedEV) || (CCS_EvseState == FinishedEVSE)) && 800bae0: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 800bae4: d90a bls.n 800bafc last_stop_sent = HAL_GetTick(); - 800bae6: f001 ff39 bl 800d95c + 800bae6: f001 ff47 bl 800d978 800baea: 4603 mov r3, r0 - 800baec: 4a74 ldr r2, [pc, #464] @ (800bcc0 ) + 800baec: 4a78 ldr r2, [pc, #480] @ (800bcd0 ) 800baee: 6013 str r3, [r2, #0] log_printf(LOG_WARN, "FinishedEV, stopping...\n"); - 800baf0: 4976 ldr r1, [pc, #472] @ (800bccc ) + 800baf0: 497a ldr r1, [pc, #488] @ (800bcdc ) 800baf2: 2005 movs r0, #5 800baf4: f7fe fcc2 bl 800a47c CCS_SendEmergencyStop(); - 800baf8: f000 fa65 bl 800bfc6 + 800baf8: f000 fa73 bl 800bfe2 } (void)replug_watchdog_tick; (void)replug_watchdog1_tick; - switch(CCS_ConnectorState){ - 800bafc: 4b74 ldr r3, [pc, #464] @ (800bcd0 ) + if (!config_initialized) { + 800bafc: 4b78 ldr r3, [pc, #480] @ (800bce0 ) 800bafe: 781b ldrb r3, [r3, #0] - 800bb00: 2b04 cmp r3, #4 - 800bb02: f200 80f8 bhi.w 800bcf6 - 800bb06: a201 add r2, pc, #4 @ (adr r2, 800bb0c ) - 800bb08: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800bb0c: 0800bb21 .word 0x0800bb21 - 800bb10: 0800bb41 .word 0x0800bb41 - 800bb14: 0800bb85 .word 0x0800bb85 - 800bb18: 0800bbc1 .word 0x0800bbc1 - 800bb1c: 0800bc11 .word 0x0800bc11 - case CCS_DISABLED: - RELAY_Write(RELAY_CP, 0); - 800bb20: 2100 movs r1, #0 - 800bb22: 2005 movs r0, #5 - 800bb24: f7fd fcc4 bl 80094b0 - CONN_SetState(Disabled); - 800bb28: 2002 movs r0, #2 - 800bb2a: f7fe f8c3 bl 8009cb4 - if (CONN.chargingError == CONN_NO_ERROR){ - 800bb2e: 4b5e ldr r3, [pc, #376] @ (800bca8 ) - 800bb30: 7f5b ldrb r3, [r3, #29] - 800bb32: 2b00 cmp r3, #0 - 800bb34: f040 80a7 bne.w 800bc86 - CCS_ConnectorState = CCS_UNPLUGGED; - 800bb38: 4b65 ldr r3, [pc, #404] @ (800bcd0 ) - 800bb3a: 2201 movs r2, #1 - 800bb3c: 701a strb r2, [r3, #0] - } - break; - 800bb3e: e0a2 b.n 800bc86 - case CCS_UNPLUGGED: - RELAY_Write(RELAY_CP, 1); - 800bb40: 2101 movs r1, #1 - 800bb42: 2005 movs r0, #5 - 800bb44: f7fd fcb4 bl 80094b0 - CONN_SetState(Unplugged); - 800bb48: 2001 movs r0, #1 - 800bb4a: f7fe f8b3 bl 8009cb4 - if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || (cp_state_buffer == EV_STATE_C_CONN_ACTIVE)){ - 800bb4e: 4b55 ldr r3, [pc, #340] @ (800bca4 ) - 800bb50: 781b ldrb r3, [r3, #0] - 800bb52: 2b01 cmp r3, #1 - 800bb54: d003 beq.n 800bb5e - 800bb56: 4b53 ldr r3, [pc, #332] @ (800bca4 ) - 800bb58: 781b ldrb r3, [r3, #0] - 800bb5a: 2b02 cmp r3, #2 - 800bb5c: d102 bne.n 800bb64 - CCS_ConnectorState = CCS_AUTH_REQUIRED; - 800bb5e: 4b5c ldr r3, [pc, #368] @ (800bcd0 ) - 800bb60: 2202 movs r2, #2 - 800bb62: 701a strb r2, [r3, #0] - } - if (CONN.chargingError != CONN_NO_ERROR){ - 800bb64: 4b50 ldr r3, [pc, #320] @ (800bca8 ) - 800bb66: 7f5b ldrb r3, [r3, #29] - 800bb68: 2b00 cmp r3, #0 - 800bb6a: f000 808e beq.w 800bc8a - log_printf(LOG_ERR, "Charging error %d, state -> disabled\n", CONN.chargingError); - 800bb6e: 4b4e ldr r3, [pc, #312] @ (800bca8 ) - 800bb70: 7f5b ldrb r3, [r3, #29] - 800bb72: 461a mov r2, r3 - 800bb74: 4957 ldr r1, [pc, #348] @ (800bcd4 ) - 800bb76: 2004 movs r0, #4 - 800bb78: f7fe fc80 bl 800a47c - CCS_ConnectorState = CCS_DISABLED; - 800bb7c: 4b54 ldr r3, [pc, #336] @ (800bcd0 ) - 800bb7e: 2200 movs r2, #0 - 800bb80: 701a strb r2, [r3, #0] - } - - break; - 800bb82: e082 b.n 800bc8a - case CCS_AUTH_REQUIRED: - RELAY_Write(RELAY_CP, 1); - 800bb84: 2101 movs r1, #1 - 800bb86: 2005 movs r0, #5 - 800bb88: f7fd fc92 bl 80094b0 - CONN_SetState(AuthRequired); - 800bb8c: 2004 movs r0, #4 - 800bb8e: f7fe f891 bl 8009cb4 - if(CONN.connControl == CMD_START){ - 800bb92: 4b45 ldr r3, [pc, #276] @ (800bca8 ) - 800bb94: 781b ldrb r3, [r3, #0] - 800bb96: 2b02 cmp r3, #2 - 800bb98: d106 bne.n 800bba8 - log_printf(LOG_INFO, "Charging permitted, start charging\n"); - 800bb9a: 494f ldr r1, [pc, #316] @ (800bcd8 ) - 800bb9c: 2007 movs r0, #7 - 800bb9e: f7fe fc6d bl 800a47c - CCS_ConnectorState = CCS_CONNECTED; - 800bba2: 4b4b ldr r3, [pc, #300] @ (800bcd0 ) - 800bba4: 2203 movs r2, #3 - 800bba6: 701a strb r2, [r3, #0] - } - if (cp_state_buffer == EV_STATE_A_IDLE){ - 800bba8: 4b3e ldr r3, [pc, #248] @ (800bca4 ) - 800bbaa: 781b ldrb r3, [r3, #0] - 800bbac: 2b00 cmp r3, #0 - 800bbae: d16e bne.n 800bc8e - log_printf(LOG_INFO, "Car unplugged\n"); - 800bbb0: 494a ldr r1, [pc, #296] @ (800bcdc ) - 800bbb2: 2007 movs r0, #7 - 800bbb4: f7fe fc62 bl 800a47c - CCS_ConnectorState = CCS_UNPLUGGED; - 800bbb8: 4b45 ldr r3, [pc, #276] @ (800bcd0 ) - 800bbba: 2201 movs r2, #1 - 800bbbc: 701a strb r2, [r3, #0] - } - break; - 800bbbe: e066 b.n 800bc8e - case CCS_CONNECTED: - RELAY_Write(RELAY_CP, 1); - 800bbc0: 2101 movs r1, #1 - 800bbc2: 2005 movs r0, #5 - 800bbc4: f7fd fc74 bl 80094b0 - if(CCS_EvseState < Preparing) { - 800bbc8: 4b3f ldr r3, [pc, #252] @ (800bcc8 ) - 800bbca: 781b ldrb r3, [r3, #0] - 800bbcc: 2b02 cmp r3, #2 - 800bbce: d803 bhi.n 800bbd8 - CONN_SetState(Preparing); - 800bbd0: 2003 movs r0, #3 - 800bbd2: f7fe f86f bl 8009cb4 - 800bbd6: e004 b.n 800bbe2 - } else { - CONN_SetState(CCS_EvseState); - 800bbd8: 4b3b ldr r3, [pc, #236] @ (800bcc8 ) - 800bbda: 781b ldrb r3, [r3, #0] - 800bbdc: 4618 mov r0, r3 - 800bbde: f7fe f869 bl 8009cb4 - } - if (cp_state_buffer == EV_STATE_A_IDLE){ - 800bbe2: 4b30 ldr r3, [pc, #192] @ (800bca4 ) - 800bbe4: 781b ldrb r3, [r3, #0] - 800bbe6: 2b00 cmp r3, #0 - 800bbe8: d106 bne.n 800bbf8 - log_printf(LOG_INFO, "Car unplugged\n"); - 800bbea: 493c ldr r1, [pc, #240] @ (800bcdc ) - 800bbec: 2007 movs r0, #7 - 800bbee: f7fe fc45 bl 800a47c - CCS_ConnectorState = CCS_UNPLUGGED; - 800bbf2: 4b37 ldr r3, [pc, #220] @ (800bcd0 ) - 800bbf4: 2201 movs r2, #1 - 800bbf6: 701a strb r2, [r3, #0] - } - if(REPLUG > 0){ - 800bbf8: 4b39 ldr r3, [pc, #228] @ (800bce0 ) - 800bbfa: 781b ldrb r3, [r3, #0] - 800bbfc: 2b00 cmp r3, #0 - 800bbfe: d048 beq.n 800bc92 - log_printf(LOG_INFO, "Replugging...\n"); - 800bc00: 4938 ldr r1, [pc, #224] @ (800bce4 ) - 800bc02: 2007 movs r0, #7 - 800bc04: f7fe fc3a bl 800a47c - CCS_ConnectorState = CCS_REPLUGGING; - 800bc08: 4b31 ldr r3, [pc, #196] @ (800bcd0 ) - 800bc0a: 2204 movs r2, #4 - 800bc0c: 701a strb r2, [r3, #0] - } - break; - 800bc0e: e040 b.n 800bc92 - case CCS_REPLUGGING: - RELAY_Write(RELAY_CP, 0); - 800bc10: 2100 movs r1, #0 - 800bc12: 2005 movs r0, #5 - 800bc14: f7fd fc4c bl 80094b0 - CONN_SetState(Replugging); - 800bc18: 200d movs r0, #13 - 800bc1a: f7fe f84b bl 8009cb4 - if((HAL_GetTick() - replug_tick) > 1000){ - 800bc1e: f001 fe9d bl 800d95c - 800bc22: 4602 mov r2, r0 - 800bc24: 4b30 ldr r3, [pc, #192] @ (800bce8 ) - 800bc26: 681b ldr r3, [r3, #0] - 800bc28: 1ad3 subs r3, r2, r3 - 800bc2a: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 - 800bc2e: d91a bls.n 800bc66 - replug_tick = HAL_GetTick(); - 800bc30: f001 fe94 bl 800d95c - 800bc34: 4603 mov r3, r0 - 800bc36: 4a2c ldr r2, [pc, #176] @ (800bce8 ) - 800bc38: 6013 str r3, [r2, #0] - if(REPLUG > 0){ - 800bc3a: 4b29 ldr r3, [pc, #164] @ (800bce0 ) - 800bc3c: 781b ldrb r3, [r3, #0] - 800bc3e: 2b00 cmp r3, #0 - 800bc40: d00a beq.n 800bc58 - if (REPLUG != 0xFF) REPLUG--; - 800bc42: 4b27 ldr r3, [pc, #156] @ (800bce0 ) - 800bc44: 781b ldrb r3, [r3, #0] - 800bc46: 2bff cmp r3, #255 @ 0xff - 800bc48: d00d beq.n 800bc66 - 800bc4a: 4b25 ldr r3, [pc, #148] @ (800bce0 ) - 800bc4c: 781b ldrb r3, [r3, #0] - 800bc4e: 3b01 subs r3, #1 - 800bc50: b2da uxtb r2, r3 - 800bc52: 4b23 ldr r3, [pc, #140] @ (800bce0 ) - 800bc54: 701a strb r2, [r3, #0] - 800bc56: e006 b.n 800bc66 - } else { - log_printf(LOG_INFO, "Replugging finished, but car unplugged\n"); - 800bc58: 4924 ldr r1, [pc, #144] @ (800bcec ) - 800bc5a: 2007 movs r0, #7 - 800bc5c: f7fe fc0e bl 800a47c + 800bb00: 2b00 cmp r3, #0 + 800bb02: d107 bne.n 800bb14 + // Keep connector in Unknown until host sends valid SET_CONFIG. + RELAY_Write(RELAY_CP, 1); + 800bb04: 2101 movs r1, #1 + 800bb06: 2005 movs r0, #5 + 800bb08: f7fd fcd2 bl 80094b0 + CONN_SetState(Unknown); + 800bb0c: 2000 movs r0, #0 + 800bb0e: f7fe f8d1 bl 8009cb4 + 800bb12: e0fe b.n 800bd12 + } else { + switch(CCS_ConnectorState){ + 800bb14: 4b73 ldr r3, [pc, #460] @ (800bce4 ) + 800bb16: 781b ldrb r3, [r3, #0] + 800bb18: 2b04 cmp r3, #4 + 800bb1a: f200 80fa bhi.w 800bd12 + 800bb1e: a201 add r2, pc, #4 @ (adr r2, 800bb24 ) + 800bb20: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800bb24: 0800bb39 .word 0x0800bb39 + 800bb28: 0800bb59 .word 0x0800bb59 + 800bb2c: 0800bb9d .word 0x0800bb9d + 800bb30: 0800bbdb .word 0x0800bbdb + 800bb34: 0800bc2b .word 0x0800bc2b + case CCS_DISABLED: + RELAY_Write(RELAY_CP, 0); + 800bb38: 2100 movs r1, #0 + 800bb3a: 2005 movs r0, #5 + 800bb3c: f7fd fcb8 bl 80094b0 + CONN_SetState(Disabled); + 800bb40: 2002 movs r0, #2 + 800bb42: f7fe f8b7 bl 8009cb4 + if (CONN.chargingError == CONN_NO_ERROR){ + 800bb46: 4b5c ldr r3, [pc, #368] @ (800bcb8 ) + 800bb48: 7f5b ldrb r3, [r3, #29] + 800bb4a: 2b00 cmp r3, #0 + 800bb4c: f040 80a8 bne.w 800bca0 CCS_ConnectorState = CCS_UNPLUGGED; - 800bc60: 4b1b ldr r3, [pc, #108] @ (800bcd0 ) - 800bc62: 2201 movs r2, #1 - 800bc64: 701a strb r2, [r3, #0] + 800bb50: 4b64 ldr r3, [pc, #400] @ (800bce4 ) + 800bb52: 2201 movs r2, #1 + 800bb54: 701a strb r2, [r3, #0] } - } - - if(REPLUG == 0){ - 800bc66: 4b1e ldr r3, [pc, #120] @ (800bce0 ) - 800bc68: 781b ldrb r3, [r3, #0] - 800bc6a: 2b00 cmp r3, #0 - 800bc6c: d142 bne.n 800bcf4 - if(cp_state_buffer == EV_STATE_B_CONN_PREP){ - 800bc6e: 4b0d ldr r3, [pc, #52] @ (800bca4 ) - 800bc70: 781b ldrb r3, [r3, #0] - 800bc72: 2b01 cmp r3, #1 - 800bc74: d13e bne.n 800bcf4 - log_printf(LOG_INFO, "Replugging finished, car plugged, state -> auth required\n"); - 800bc76: 491e ldr r1, [pc, #120] @ (800bcf0 ) - 800bc78: 2007 movs r0, #7 - 800bc7a: f7fe fbff bl 800a47c + break; + 800bb56: e0a3 b.n 800bca0 + case CCS_UNPLUGGED: + RELAY_Write(RELAY_CP, 1); + 800bb58: 2101 movs r1, #1 + 800bb5a: 2005 movs r0, #5 + 800bb5c: f7fd fca8 bl 80094b0 + CONN_SetState(Unplugged); + 800bb60: 2001 movs r0, #1 + 800bb62: f7fe f8a7 bl 8009cb4 + if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || (cp_state_buffer == EV_STATE_C_CONN_ACTIVE)){ + 800bb66: 4b53 ldr r3, [pc, #332] @ (800bcb4 ) + 800bb68: 781b ldrb r3, [r3, #0] + 800bb6a: 2b01 cmp r3, #1 + 800bb6c: d003 beq.n 800bb76 + 800bb6e: 4b51 ldr r3, [pc, #324] @ (800bcb4 ) + 800bb70: 781b ldrb r3, [r3, #0] + 800bb72: 2b02 cmp r3, #2 + 800bb74: d102 bne.n 800bb7c CCS_ConnectorState = CCS_AUTH_REQUIRED; - 800bc7e: 4b14 ldr r3, [pc, #80] @ (800bcd0 ) - 800bc80: 2202 movs r2, #2 - 800bc82: 701a strb r2, [r3, #0] + 800bb76: 4b5b ldr r3, [pc, #364] @ (800bce4 ) + 800bb78: 2202 movs r2, #2 + 800bb7a: 701a strb r2, [r3, #0] } - } - break; - 800bc84: e036 b.n 800bcf4 - break; - 800bc86: bf00 nop - 800bc88: e035 b.n 800bcf6 - break; - 800bc8a: bf00 nop - 800bc8c: e033 b.n 800bcf6 - break; - 800bc8e: bf00 nop - 800bc90: e031 b.n 800bcf6 - break; - 800bc92: bf00 nop - 800bc94: e02f b.n 800bcf6 - 800bc96: bf00 nop - 800bc98: 200009cc .word 0x200009cc - 800bc9c: 20001030 .word 0x20001030 - 800bca0: 200007cc .word 0x200007cc - 800bca4: 2000004f .word 0x2000004f - 800bca8: 200001d4 .word 0x200001d4 - 800bcac: 200007c8 .word 0x200007c8 - 800bcb0: 200007c0 .word 0x200007c0 - 800bcb4: 20000a30 .word 0x20000a30 - 800bcb8: 200009cd .word 0x200009cd - 800bcbc: 08014250 .word 0x08014250 - 800bcc0: 200007c4 .word 0x200007c4 - 800bcc4: 08014264 .word 0x08014264 - 800bcc8: 20000a2c .word 0x20000a2c - 800bccc: 0801427c .word 0x0801427c - 800bcd0: 20000050 .word 0x20000050 - 800bcd4: 08014298 .word 0x08014298 - 800bcd8: 080142c0 .word 0x080142c0 - 800bcdc: 080142e4 .word 0x080142e4 - 800bce0: 200009ce .word 0x200009ce - 800bce4: 080142f4 .word 0x080142f4 - 800bce8: 20000a34 .word 0x20000a34 - 800bcec: 08014304 .word 0x08014304 - 800bcf0: 0801432c .word 0x0801432c - break; - 800bcf4: bf00 nop + if (CONN.chargingError != CONN_NO_ERROR){ + 800bb7c: 4b4e ldr r3, [pc, #312] @ (800bcb8 ) + 800bb7e: 7f5b ldrb r3, [r3, #29] + 800bb80: 2b00 cmp r3, #0 + 800bb82: f000 808f beq.w 800bca4 + log_printf(LOG_ERR, "Charging error %d, state -> disabled\n", CONN.chargingError); + 800bb86: 4b4c ldr r3, [pc, #304] @ (800bcb8 ) + 800bb88: 7f5b ldrb r3, [r3, #29] + 800bb8a: 461a mov r2, r3 + 800bb8c: 4956 ldr r1, [pc, #344] @ (800bce8 ) + 800bb8e: 2004 movs r0, #4 + 800bb90: f7fe fc74 bl 800a47c + CCS_ConnectorState = CCS_DISABLED; + 800bb94: 4b53 ldr r3, [pc, #332] @ (800bce4 ) + 800bb96: 2200 movs r2, #0 + 800bb98: 701a strb r2, [r3, #0] + } + + break; + 800bb9a: e083 b.n 800bca4 + case CCS_AUTH_REQUIRED: + RELAY_Write(RELAY_CP, 1); + 800bb9c: 2101 movs r1, #1 + 800bb9e: 2005 movs r0, #5 + 800bba0: f7fd fc86 bl 80094b0 + CONN_SetState(AuthRequired); + 800bba4: 2004 movs r0, #4 + 800bba6: f7fe f885 bl 8009cb4 + if(CONN.connControl == CMD_START){ + 800bbaa: 4b43 ldr r3, [pc, #268] @ (800bcb8 ) + 800bbac: 781b ldrb r3, [r3, #0] + 800bbae: 2b02 cmp r3, #2 + 800bbb0: d106 bne.n 800bbc0 + log_printf(LOG_INFO, "Charging permitted, start charging\n"); + 800bbb2: 494e ldr r1, [pc, #312] @ (800bcec ) + 800bbb4: 2007 movs r0, #7 + 800bbb6: f7fe fc61 bl 800a47c + CCS_ConnectorState = CCS_CONNECTED; + 800bbba: 4b4a ldr r3, [pc, #296] @ (800bce4 ) + 800bbbc: 2203 movs r2, #3 + 800bbbe: 701a strb r2, [r3, #0] + } + if (cp_state_buffer == EV_STATE_A_IDLE){ + 800bbc0: 4b3c ldr r3, [pc, #240] @ (800bcb4 ) + 800bbc2: 781b ldrb r3, [r3, #0] + 800bbc4: 2b00 cmp r3, #0 + 800bbc6: f040 809f bne.w 800bd08 + log_printf(LOG_INFO, "Car unplugged\n"); + 800bbca: 4949 ldr r1, [pc, #292] @ (800bcf0 ) + 800bbcc: 2007 movs r0, #7 + 800bbce: f7fe fc55 bl 800a47c + CCS_ConnectorState = CCS_UNPLUGGED; + 800bbd2: 4b44 ldr r3, [pc, #272] @ (800bce4 ) + 800bbd4: 2201 movs r2, #1 + 800bbd6: 701a strb r2, [r3, #0] + } + break; + 800bbd8: e096 b.n 800bd08 + case CCS_CONNECTED: + RELAY_Write(RELAY_CP, 1); + 800bbda: 2101 movs r1, #1 + 800bbdc: 2005 movs r0, #5 + 800bbde: f7fd fc67 bl 80094b0 + if(CCS_EvseState < Preparing) { + 800bbe2: 4b3d ldr r3, [pc, #244] @ (800bcd8 ) + 800bbe4: 781b ldrb r3, [r3, #0] + 800bbe6: 2b02 cmp r3, #2 + 800bbe8: d803 bhi.n 800bbf2 + CONN_SetState(Preparing); + 800bbea: 2003 movs r0, #3 + 800bbec: f7fe f862 bl 8009cb4 + 800bbf0: e004 b.n 800bbfc + } else { + CONN_SetState(CCS_EvseState); + 800bbf2: 4b39 ldr r3, [pc, #228] @ (800bcd8 ) + 800bbf4: 781b ldrb r3, [r3, #0] + 800bbf6: 4618 mov r0, r3 + 800bbf8: f7fe f85c bl 8009cb4 + } + if (cp_state_buffer == EV_STATE_A_IDLE){ + 800bbfc: 4b2d ldr r3, [pc, #180] @ (800bcb4 ) + 800bbfe: 781b ldrb r3, [r3, #0] + 800bc00: 2b00 cmp r3, #0 + 800bc02: d106 bne.n 800bc12 + log_printf(LOG_INFO, "Car unplugged\n"); + 800bc04: 493a ldr r1, [pc, #232] @ (800bcf0 ) + 800bc06: 2007 movs r0, #7 + 800bc08: f7fe fc38 bl 800a47c + CCS_ConnectorState = CCS_UNPLUGGED; + 800bc0c: 4b35 ldr r3, [pc, #212] @ (800bce4 ) + 800bc0e: 2201 movs r2, #1 + 800bc10: 701a strb r2, [r3, #0] + } + if(REPLUG > 0){ + 800bc12: 4b38 ldr r3, [pc, #224] @ (800bcf4 ) + 800bc14: 781b ldrb r3, [r3, #0] + 800bc16: 2b00 cmp r3, #0 + 800bc18: d078 beq.n 800bd0c + log_printf(LOG_INFO, "Replugging...\n"); + 800bc1a: 4937 ldr r1, [pc, #220] @ (800bcf8 ) + 800bc1c: 2007 movs r0, #7 + 800bc1e: f7fe fc2d bl 800a47c + CCS_ConnectorState = CCS_REPLUGGING; + 800bc22: 4b30 ldr r3, [pc, #192] @ (800bce4 ) + 800bc24: 2204 movs r2, #4 + 800bc26: 701a strb r2, [r3, #0] + } + break; + 800bc28: e070 b.n 800bd0c + case CCS_REPLUGGING: + RELAY_Write(RELAY_CP, 0); + 800bc2a: 2100 movs r1, #0 + 800bc2c: 2005 movs r0, #5 + 800bc2e: f7fd fc3f bl 80094b0 + CONN_SetState(Replugging); + 800bc32: 200d movs r0, #13 + 800bc34: f7fe f83e bl 8009cb4 + if((HAL_GetTick() - replug_tick) > 1000){ + 800bc38: f001 fe9e bl 800d978 + 800bc3c: 4602 mov r2, r0 + 800bc3e: 4b2f ldr r3, [pc, #188] @ (800bcfc ) + 800bc40: 681b ldr r3, [r3, #0] + 800bc42: 1ad3 subs r3, r2, r3 + 800bc44: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 + 800bc48: d91a bls.n 800bc80 + replug_tick = HAL_GetTick(); + 800bc4a: f001 fe95 bl 800d978 + 800bc4e: 4603 mov r3, r0 + 800bc50: 4a2a ldr r2, [pc, #168] @ (800bcfc ) + 800bc52: 6013 str r3, [r2, #0] + if(REPLUG > 0){ + 800bc54: 4b27 ldr r3, [pc, #156] @ (800bcf4 ) + 800bc56: 781b ldrb r3, [r3, #0] + 800bc58: 2b00 cmp r3, #0 + 800bc5a: d00a beq.n 800bc72 + if (REPLUG != 0xFF) REPLUG--; + 800bc5c: 4b25 ldr r3, [pc, #148] @ (800bcf4 ) + 800bc5e: 781b ldrb r3, [r3, #0] + 800bc60: 2bff cmp r3, #255 @ 0xff + 800bc62: d00d beq.n 800bc80 + 800bc64: 4b23 ldr r3, [pc, #140] @ (800bcf4 ) + 800bc66: 781b ldrb r3, [r3, #0] + 800bc68: 3b01 subs r3, #1 + 800bc6a: b2da uxtb r2, r3 + 800bc6c: 4b21 ldr r3, [pc, #132] @ (800bcf4 ) + 800bc6e: 701a strb r2, [r3, #0] + 800bc70: e006 b.n 800bc80 + } else { + log_printf(LOG_INFO, "Replugging finished, but car unplugged\n"); + 800bc72: 4923 ldr r1, [pc, #140] @ (800bd00 ) + 800bc74: 2007 movs r0, #7 + 800bc76: f7fe fc01 bl 800a47c + CCS_ConnectorState = CCS_UNPLUGGED; + 800bc7a: 4b1a ldr r3, [pc, #104] @ (800bce4 ) + 800bc7c: 2201 movs r2, #1 + 800bc7e: 701a strb r2, [r3, #0] + } + } + + if(REPLUG == 0){ + 800bc80: 4b1c ldr r3, [pc, #112] @ (800bcf4 ) + 800bc82: 781b ldrb r3, [r3, #0] + 800bc84: 2b00 cmp r3, #0 + 800bc86: d143 bne.n 800bd10 + if(cp_state_buffer == EV_STATE_B_CONN_PREP){ + 800bc88: 4b0a ldr r3, [pc, #40] @ (800bcb4 ) + 800bc8a: 781b ldrb r3, [r3, #0] + 800bc8c: 2b01 cmp r3, #1 + 800bc8e: d13f bne.n 800bd10 + log_printf(LOG_INFO, "Replugging finished, car plugged, state -> auth required\n"); + 800bc90: 491c ldr r1, [pc, #112] @ (800bd04 ) + 800bc92: 2007 movs r0, #7 + 800bc94: f7fe fbf2 bl 800a47c + CCS_ConnectorState = CCS_AUTH_REQUIRED; + 800bc98: 4b12 ldr r3, [pc, #72] @ (800bce4 ) + 800bc9a: 2202 movs r2, #2 + 800bc9c: 701a strb r2, [r3, #0] + } + } + break; + 800bc9e: e037 b.n 800bd10 + break; + 800bca0: bf00 nop + 800bca2: e036 b.n 800bd12 + break; + 800bca4: bf00 nop + 800bca6: e034 b.n 800bd12 + 800bca8: 200009cc .word 0x200009cc + 800bcac: 20001030 .word 0x20001030 + 800bcb0: 200007cc .word 0x200007cc + 800bcb4: 2000004f .word 0x2000004f + 800bcb8: 200001d4 .word 0x200001d4 + 800bcbc: 200007c8 .word 0x200007c8 + 800bcc0: 200007c0 .word 0x200007c0 + 800bcc4: 20000a30 .word 0x20000a30 + 800bcc8: 200009cd .word 0x200009cd + 800bccc: 0801426c .word 0x0801426c + 800bcd0: 200007c4 .word 0x200007c4 + 800bcd4: 08014280 .word 0x08014280 + 800bcd8: 20000a2c .word 0x20000a2c + 800bcdc: 08014298 .word 0x08014298 + 800bce0: 20000ec2 .word 0x20000ec2 + 800bce4: 20000050 .word 0x20000050 + 800bce8: 080142b4 .word 0x080142b4 + 800bcec: 080142dc .word 0x080142dc + 800bcf0: 08014300 .word 0x08014300 + 800bcf4: 200009ce .word 0x200009ce + 800bcf8: 08014310 .word 0x08014310 + 800bcfc: 20000a34 .word 0x20000a34 + 800bd00: 08014320 .word 0x08014320 + 800bd04: 08014348 .word 0x08014348 + break; + 800bd08: bf00 nop + 800bd0a: e002 b.n 800bd12 + break; + 800bd0c: bf00 nop + 800bd0e: e000 b.n 800bd12 + break; + 800bd10: bf00 nop + } } // If Everest timeout happened, keep safe-state and limit log frequency. // The safe-state must remain until we receive a valid packet from the host. if (everest_timed_out) { - 800bcf6: 4b3f ldr r3, [pc, #252] @ (800bdf4 ) - 800bcf8: 781b ldrb r3, [r3, #0] - 800bcfa: 2b00 cmp r3, #0 - 800bcfc: d01f beq.n 800bd3e + 800bd12: 4b3f ldr r3, [pc, #252] @ (800be10 ) + 800bd14: 781b ldrb r3, [r3, #0] + 800bd16: 2b00 cmp r3, #0 + 800bd18: d01f beq.n 800bd5a if (last_everest_timeout_log_tick == 0 || - 800bcfe: 4b3e ldr r3, [pc, #248] @ (800bdf8 ) - 800bd00: 681b ldr r3, [r3, #0] - 800bd02: 2b00 cmp r3, #0 - 800bd04: d008 beq.n 800bd18 + 800bd1a: 4b3e ldr r3, [pc, #248] @ (800be14 ) + 800bd1c: 681b ldr r3, [r3, #0] + 800bd1e: 2b00 cmp r3, #0 + 800bd20: d008 beq.n 800bd34 (HAL_GetTick() - last_everest_timeout_log_tick) >= EVEREST_TIMEOUT_MS) { - 800bd06: f001 fe29 bl 800d95c - 800bd0a: 4602 mov r2, r0 - 800bd0c: 4b3a ldr r3, [pc, #232] @ (800bdf8 ) - 800bd0e: 681b ldr r3, [r3, #0] - 800bd10: 1ad3 subs r3, r2, r3 + 800bd22: f001 fe29 bl 800d978 + 800bd26: 4602 mov r2, r0 + 800bd28: 4b3a ldr r3, [pc, #232] @ (800be14 ) + 800bd2a: 681b ldr r3, [r3, #0] + 800bd2c: 1ad3 subs r3, r2, r3 if (last_everest_timeout_log_tick == 0 || - 800bd12: f5b3 6ffa cmp.w r3, #2000 @ 0x7d0 - 800bd16: d308 bcc.n 800bd2a + 800bd2e: f5b3 6ffa cmp.w r3, #2000 @ 0x7d0 + 800bd32: d308 bcc.n 800bd46 log_printf(LOG_ERR, "Everest timeout\n"); - 800bd18: 4938 ldr r1, [pc, #224] @ (800bdfc ) - 800bd1a: 2004 movs r0, #4 - 800bd1c: f7fe fbae bl 800a47c + 800bd34: 4938 ldr r1, [pc, #224] @ (800be18 ) + 800bd36: 2004 movs r0, #4 + 800bd38: f7fe fba0 bl 800a47c last_everest_timeout_log_tick = HAL_GetTick(); - 800bd20: f001 fe1c bl 800d95c - 800bd24: 4603 mov r3, r0 - 800bd26: 4a34 ldr r2, [pc, #208] @ (800bdf8 ) - 800bd28: 6013 str r3, [r2, #0] + 800bd3c: f001 fe1c bl 800d978 + 800bd40: 4603 mov r3, r0 + 800bd42: 4a34 ldr r2, [pc, #208] @ (800be14 ) + 800bd44: 6013 str r3, [r2, #0] } CONN.EnableOutput = 0; - 800bd2a: 4b35 ldr r3, [pc, #212] @ (800be00 ) - 800bd2c: 2200 movs r2, #0 - 800bd2e: 75da strb r2, [r3, #23] + 800bd46: 4b35 ldr r3, [pc, #212] @ (800be1c ) + 800bd48: 2200 movs r2, #0 + 800bd4a: 75da strb r2, [r3, #23] CCS_EvseState = Unknown; - 800bd30: 4b34 ldr r3, [pc, #208] @ (800be04 ) - 800bd32: 2200 movs r2, #0 - 800bd34: 701a strb r2, [r3, #0] + 800bd4c: 4b34 ldr r3, [pc, #208] @ (800be20 ) + 800bd4e: 2200 movs r2, #0 + 800bd50: 701a strb r2, [r3, #0] CP_SetDuty(100); - 800bd36: 2064 movs r0, #100 @ 0x64 - 800bd38: f7fe f9dc bl 800a0f4 - 800bd3c: e044 b.n 800bdc8 + 800bd52: 2064 movs r0, #100 @ 0x64 + 800bd54: f7fe f9ce bl 800a0f4 + 800bd58: e044 b.n 800bde4 } else if (last_host_seen > 0 && (HAL_GetTick() - last_host_seen) > EVEREST_TIMEOUT_MS) { - 800bd3e: 4b32 ldr r3, [pc, #200] @ (800be08 ) - 800bd40: 681b ldr r3, [r3, #0] - 800bd42: 2b00 cmp r3, #0 - 800bd44: d023 beq.n 800bd8e - 800bd46: f001 fe09 bl 800d95c - 800bd4a: 4602 mov r2, r0 - 800bd4c: 4b2e ldr r3, [pc, #184] @ (800be08 ) - 800bd4e: 681b ldr r3, [r3, #0] - 800bd50: 1ad3 subs r3, r2, r3 - 800bd52: f5b3 6ffa cmp.w r3, #2000 @ 0x7d0 - 800bd56: d91a bls.n 800bd8e + 800bd5a: 4b32 ldr r3, [pc, #200] @ (800be24 ) + 800bd5c: 681b ldr r3, [r3, #0] + 800bd5e: 2b00 cmp r3, #0 + 800bd60: d023 beq.n 800bdaa + 800bd62: f001 fe09 bl 800d978 + 800bd66: 4602 mov r2, r0 + 800bd68: 4b2e ldr r3, [pc, #184] @ (800be24 ) + 800bd6a: 681b ldr r3, [r3, #0] + 800bd6c: 1ad3 subs r3, r2, r3 + 800bd6e: f5b3 6ffa cmp.w r3, #2000 @ 0x7d0 + 800bd72: d91a bls.n 800bdaa log_printf(LOG_ERR, "Everest timeout\n"); - 800bd58: 4928 ldr r1, [pc, #160] @ (800bdfc ) - 800bd5a: 2004 movs r0, #4 - 800bd5c: f7fe fb8e bl 800a47c + 800bd74: 4928 ldr r1, [pc, #160] @ (800be18 ) + 800bd76: 2004 movs r0, #4 + 800bd78: f7fe fb80 bl 800a47c everest_timed_out = 1; - 800bd60: 4b24 ldr r3, [pc, #144] @ (800bdf4 ) - 800bd62: 2201 movs r2, #1 - 800bd64: 701a strb r2, [r3, #0] + 800bd7c: 4b24 ldr r3, [pc, #144] @ (800be10 ) + 800bd7e: 2201 movs r2, #1 + 800bd80: 701a strb r2, [r3, #0] last_host_seen = HAL_GetTick(); // reset after the first timeout - 800bd66: f001 fdf9 bl 800d95c - 800bd6a: 4603 mov r3, r0 - 800bd6c: 4a26 ldr r2, [pc, #152] @ (800be08 ) - 800bd6e: 6013 str r3, [r2, #0] + 800bd82: f001 fdf9 bl 800d978 + 800bd86: 4603 mov r3, r0 + 800bd88: 4a26 ldr r2, [pc, #152] @ (800be24 ) + 800bd8a: 6013 str r3, [r2, #0] last_everest_timeout_log_tick = HAL_GetTick(); - 800bd70: f001 fdf4 bl 800d95c - 800bd74: 4603 mov r3, r0 - 800bd76: 4a20 ldr r2, [pc, #128] @ (800bdf8 ) - 800bd78: 6013 str r3, [r2, #0] + 800bd8c: f001 fdf4 bl 800d978 + 800bd90: 4603 mov r3, r0 + 800bd92: 4a20 ldr r2, [pc, #128] @ (800be14 ) + 800bd94: 6013 str r3, [r2, #0] CONN.EnableOutput = 0; - 800bd7a: 4b21 ldr r3, [pc, #132] @ (800be00 ) - 800bd7c: 2200 movs r2, #0 - 800bd7e: 75da strb r2, [r3, #23] - CCS_EvseState = Unknown; - 800bd80: 4b20 ldr r3, [pc, #128] @ (800be04 ) - 800bd82: 2200 movs r2, #0 - 800bd84: 701a strb r2, [r3, #0] - CP_SetDuty(100); - 800bd86: 2064 movs r0, #100 @ 0x64 - 800bd88: f7fe f9b4 bl 800a0f4 - 800bd8c: e01c b.n 800bdc8 - } else { - if (last_cmd == CMD_STOP) { - 800bd8e: 4b1f ldr r3, [pc, #124] @ (800be0c ) - 800bd90: 781b ldrb r3, [r3, #0] - 800bd92: 2b01 cmp r3, #1 - 800bd94: d103 bne.n 800bd9e - CONN.EnableOutput = 0; - 800bd96: 4b1a ldr r3, [pc, #104] @ (800be00 ) + 800bd96: 4b21 ldr r3, [pc, #132] @ (800be1c ) 800bd98: 2200 movs r2, #0 800bd9a: 75da strb r2, [r3, #23] - 800bd9c: e014 b.n 800bdc8 + CCS_EvseState = Unknown; + 800bd9c: 4b20 ldr r3, [pc, #128] @ (800be20 ) + 800bd9e: 2200 movs r2, #0 + 800bda0: 701a strb r2, [r3, #0] + CP_SetDuty(100); + 800bda2: 2064 movs r0, #100 @ 0x64 + 800bda4: f7fe f9a6 bl 800a0f4 + 800bda8: e01c b.n 800bde4 + } else { + if (last_cmd == CMD_STOP) { + 800bdaa: 4b1f ldr r3, [pc, #124] @ (800be28 ) + 800bdac: 781b ldrb r3, [r3, #0] + 800bdae: 2b01 cmp r3, #1 + 800bdb0: d103 bne.n 800bdba + CONN.EnableOutput = 0; + 800bdb2: 4b1a ldr r3, [pc, #104] @ (800be1c ) + 800bdb4: 2200 movs r2, #0 + 800bdb6: 75da strb r2, [r3, #23] + 800bdb8: e014 b.n 800bde4 } else { CONN.EnableOutput = ev_enable_output ? 1 : 0; - 800bd9e: 4b1c ldr r3, [pc, #112] @ (800be10 ) - 800bda0: 781b ldrb r3, [r3, #0] - 800bda2: 2b00 cmp r3, #0 - 800bda4: bf14 ite ne - 800bda6: 2301 movne r3, #1 - 800bda8: 2300 moveq r3, #0 - 800bdaa: b2db uxtb r3, r3 - 800bdac: 461a mov r2, r3 - 800bdae: 4b14 ldr r3, [pc, #80] @ (800be00 ) - 800bdb0: 75da strb r2, [r3, #23] + 800bdba: 4b1c ldr r3, [pc, #112] @ (800be2c ) + 800bdbc: 781b ldrb r3, [r3, #0] + 800bdbe: 2b00 cmp r3, #0 + 800bdc0: bf14 ite ne + 800bdc2: 2301 movne r3, #1 + 800bdc4: 2300 moveq r3, #0 + 800bdc6: b2db uxtb r3, r3 + 800bdc8: 461a mov r2, r3 + 800bdca: 4b14 ldr r3, [pc, #80] @ (800be1c ) + 800bdcc: 75da strb r2, [r3, #23] if((CONN.EnableOutput == 0) && (CONN.connState == Preparing)){ - 800bdb2: 4b13 ldr r3, [pc, #76] @ (800be00 ) - 800bdb4: 7ddb ldrb r3, [r3, #23] - 800bdb6: 2b00 cmp r3, #0 - 800bdb8: d106 bne.n 800bdc8 - 800bdba: 4b11 ldr r3, [pc, #68] @ (800be00 ) - 800bdbc: 785b ldrb r3, [r3, #1] - 800bdbe: 2b03 cmp r3, #3 - 800bdc0: d102 bne.n 800bdc8 + 800bdce: 4b13 ldr r3, [pc, #76] @ (800be1c ) + 800bdd0: 7ddb ldrb r3, [r3, #23] + 800bdd2: 2b00 cmp r3, #0 + 800bdd4: d106 bne.n 800bde4 + 800bdd6: 4b11 ldr r3, [pc, #68] @ (800be1c ) + 800bdd8: 785b ldrb r3, [r3, #1] + 800bdda: 2b03 cmp r3, #3 + 800bddc: d102 bne.n 800bde4 CONN.EnableOutput = 0; - 800bdc2: 4b0f ldr r3, [pc, #60] @ (800be00 ) - 800bdc4: 2200 movs r2, #0 - 800bdc6: 75da strb r2, [r3, #23] + 800bdde: 4b0f ldr r3, [pc, #60] @ (800be1c ) + 800bde0: 2200 movs r2, #0 + 800bde2: 75da strb r2, [r3, #23] } } } if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || - 800bdc8: 4b12 ldr r3, [pc, #72] @ (800be14 ) - 800bdca: 781b ldrb r3, [r3, #0] - 800bdcc: 2b01 cmp r3, #1 - 800bdce: d007 beq.n 800bde0 + 800bde4: 4b12 ldr r3, [pc, #72] @ (800be30 ) + 800bde6: 781b ldrb r3, [r3, #0] + 800bde8: 2b01 cmp r3, #1 + 800bdea: d007 beq.n 800bdfc (cp_state_buffer == EV_STATE_C_CONN_ACTIVE) || - 800bdd0: 4b10 ldr r3, [pc, #64] @ (800be14 ) - 800bdd2: 781b ldrb r3, [r3, #0] + 800bdec: 4b10 ldr r3, [pc, #64] @ (800be30 ) + 800bdee: 781b ldrb r3, [r3, #0] if ((cp_state_buffer == EV_STATE_B_CONN_PREP) || - 800bdd4: 2b02 cmp r3, #2 - 800bdd6: d003 beq.n 800bde0 + 800bdf0: 2b02 cmp r3, #2 + 800bdf2: d003 beq.n 800bdfc (cp_state_buffer == EV_STATE_D_CONN_ACT_VENT)) { - 800bdd8: 4b0e ldr r3, [pc, #56] @ (800be14 ) - 800bdda: 781b ldrb r3, [r3, #0] + 800bdf4: 4b0e ldr r3, [pc, #56] @ (800be30 ) + 800bdf6: 781b ldrb r3, [r3, #0] (cp_state_buffer == EV_STATE_C_CONN_ACTIVE) || - 800bddc: 2b03 cmp r3, #3 - 800bdde: d103 bne.n 800bde8 + 800bdf8: 2b03 cmp r3, #3 + 800bdfa: d103 bne.n 800be04 CONN.EvConnected = 1; - 800bde0: 4b07 ldr r3, [pc, #28] @ (800be00 ) - 800bde2: 2201 movs r2, #1 - 800bde4: 779a strb r2, [r3, #30] - 800bde6: e003 b.n 800bdf0 + 800bdfc: 4b07 ldr r3, [pc, #28] @ (800be1c ) + 800bdfe: 2201 movs r2, #1 + 800be00: 779a strb r2, [r3, #30] + 800be02: e003 b.n 800be0c } else { CONN.EvConnected = 0; - 800bde8: 4b05 ldr r3, [pc, #20] @ (800be00 ) - 800bdea: 2200 movs r2, #0 - 800bdec: 779a strb r2, [r3, #30] + 800be04: 4b05 ldr r3, [pc, #20] @ (800be1c ) + 800be06: 2200 movs r2, #0 + 800be08: 779a strb r2, [r3, #30] } } - 800bdee: bf00 nop - 800bdf0: bf00 nop - 800bdf2: bd80 pop {r7, pc} - 800bdf4: 200009d8 .word 0x200009d8 - 800bdf8: 200009dc .word 0x200009dc - 800bdfc: 08014368 .word 0x08014368 - 800be00: 200001d4 .word 0x200001d4 - 800be04: 20000a2c .word 0x20000a2c - 800be08: 200009d4 .word 0x200009d4 - 800be0c: 200007c8 .word 0x200007c8 - 800be10: 200007c9 .word 0x200007c9 - 800be14: 2000004f .word 0x2000004f + 800be0a: bf00 nop + 800be0c: bf00 nop + 800be0e: bd80 pop {r7, pc} + 800be10: 200009d8 .word 0x200009d8 + 800be14: 200009dc .word 0x200009dc + 800be18: 08014384 .word 0x08014384 + 800be1c: 200001d4 .word 0x200001d4 + 800be20: 20000a2c .word 0x20000a2c + 800be24: 200009d4 .word 0x200009d4 + 800be28: 200007c8 .word 0x200007c8 + 800be2c: 200007c9 .word 0x200007c9 + 800be30: 2000004f .word 0x2000004f -0800be18 : +0800be34 : void CCS_Init(void){ - 800be18: b580 push {r7, lr} - 800be1a: af00 add r7, sp, #0 + 800be34: b580 push {r7, lr} + 800be36: af00 add r7, sp, #0 CP_Init(); - 800be1c: f7fe f948 bl 800a0b0 + 800be38: f7fe f93a bl 800a0b0 CP_SetDuty(100); - 800be20: 2064 movs r0, #100 @ 0x64 - 800be22: f7fe f967 bl 800a0f4 + 800be3c: 2064 movs r0, #100 @ 0x64 + 800be3e: f7fe f959 bl 800a0f4 CCS_MaxLoad.maxVoltage = PSU_MAX_VOLTAGE; // 1000V - 800be26: 4b0d ldr r3, [pc, #52] @ (800be5c ) - 800be28: f44f 727a mov.w r2, #1000 @ 0x3e8 - 800be2c: 801a strh r2, [r3, #0] + 800be42: 4b0d ldr r3, [pc, #52] @ (800be78 ) + 800be44: f44f 727a mov.w r2, #1000 @ 0x3e8 + 800be48: 801a strh r2, [r3, #0] CCS_MaxLoad.minVoltage = PSU_MIN_VOLTAGE; //150V - 800be2e: 4b0b ldr r3, [pc, #44] @ (800be5c ) - 800be30: 2296 movs r2, #150 @ 0x96 - 800be32: 805a strh r2, [r3, #2] + 800be4a: 4b0b ldr r3, [pc, #44] @ (800be78 ) + 800be4c: 2296 movs r2, #150 @ 0x96 + 800be4e: 805a strh r2, [r3, #2] CCS_MaxLoad.maxCurrent = PSU_MAX_CURRENT*10; //100A - 800be34: 4b09 ldr r3, [pc, #36] @ (800be5c ) - 800be36: f240 5232 movw r2, #1330 @ 0x532 - 800be3a: 809a strh r2, [r3, #4] + 800be50: 4b09 ldr r3, [pc, #36] @ (800be78 ) + 800be52: f240 5232 movw r2, #1330 @ 0x532 + 800be56: 809a strh r2, [r3, #4] CCS_MaxLoad.minCurrent = PSU_MIN_CURRENT*10; //1A - 800be3c: 4b07 ldr r3, [pc, #28] @ (800be5c ) - 800be3e: 220a movs r2, #10 - 800be40: 80da strh r2, [r3, #6] + 800be58: 4b07 ldr r3, [pc, #28] @ (800be78 ) + 800be5a: 220a movs r2, #10 + 800be5c: 80da strh r2, [r3, #6] CCS_MaxLoad.maxPower = PSU_MAX_POWER; //30000W - 800be42: 4b06 ldr r3, [pc, #24] @ (800be5c ) - 800be44: f247 5230 movw r2, #30000 @ 0x7530 - 800be48: 609a str r2, [r3, #8] + 800be5e: 4b06 ldr r3, [pc, #24] @ (800be78 ) + 800be60: f247 5230 movw r2, #30000 @ 0x7530 + 800be64: 609a str r2, [r3, #8] CCS_SendResetReason(); - 800be4a: f000 f8b3 bl 800bfb4 + 800be66: f000 f8b3 bl 800bfd0 log_printf(LOG_INFO, "CCS init\n"); - 800be4e: 4904 ldr r1, [pc, #16] @ (800be60 ) - 800be50: 2007 movs r0, #7 - 800be52: f7fe fb13 bl 800a47c + 800be6a: 4904 ldr r1, [pc, #16] @ (800be7c ) + 800be6c: 2007 movs r0, #7 + 800be6e: f7fe fb05 bl 800a47c } - 800be56: bf00 nop - 800be58: bd80 pop {r7, pc} - 800be5a: bf00 nop - 800be5c: 200007a8 .word 0x200007a8 - 800be60: 0801437c .word 0x0801437c + 800be72: bf00 nop + 800be74: bd80 pop {r7, pc} + 800be76: bf00 nop + 800be78: 200007a8 .word 0x200007a8 + 800be7c: 08014398 .word 0x08014398 -0800be64 : +0800be80 : static uint16_t crc16_ibm(const uint8_t* data, uint16_t length) { - 800be64: b480 push {r7} - 800be66: b085 sub sp, #20 - 800be68: af00 add r7, sp, #0 - 800be6a: 6078 str r0, [r7, #4] - 800be6c: 460b mov r3, r1 - 800be6e: 807b strh r3, [r7, #2] + 800be80: b480 push {r7} + 800be82: b085 sub sp, #20 + 800be84: af00 add r7, sp, #0 + 800be86: 6078 str r0, [r7, #4] + 800be88: 460b mov r3, r1 + 800be8a: 807b strh r3, [r7, #2] uint16_t crc = 0xFFFFu; - 800be70: f64f 73ff movw r3, #65535 @ 0xffff - 800be74: 81fb strh r3, [r7, #14] + 800be8c: f64f 73ff movw r3, #65535 @ 0xffff + 800be90: 81fb strh r3, [r7, #14] for (uint16_t i = 0; i < length; i++) { - 800be76: 2300 movs r3, #0 - 800be78: 81bb strh r3, [r7, #12] - 800be7a: e022 b.n 800bec2 + 800be92: 2300 movs r3, #0 + 800be94: 81bb strh r3, [r7, #12] + 800be96: e022 b.n 800bede crc ^= data[i]; - 800be7c: 89bb ldrh r3, [r7, #12] - 800be7e: 687a ldr r2, [r7, #4] - 800be80: 4413 add r3, r2 - 800be82: 781b ldrb r3, [r3, #0] - 800be84: 461a mov r2, r3 - 800be86: 89fb ldrh r3, [r7, #14] - 800be88: 4053 eors r3, r2 - 800be8a: 81fb strh r3, [r7, #14] - for (uint8_t j = 0; j < 8; j++) { - 800be8c: 2300 movs r3, #0 - 800be8e: 72fb strb r3, [r7, #11] - 800be90: e011 b.n 800beb6 - if (crc & 1u) { - 800be92: 89fb ldrh r3, [r7, #14] - 800be94: f003 0301 and.w r3, r3, #1 - 800be98: 2b00 cmp r3, #0 - 800be9a: d006 beq.n 800beaa - crc = (crc >> 1) ^ 0xA001u; - 800be9c: 89fb ldrh r3, [r7, #14] - 800be9e: 085b lsrs r3, r3, #1 - 800bea0: b29a uxth r2, r3 - 800bea2: 4b0d ldr r3, [pc, #52] @ (800bed8 ) + 800be98: 89bb ldrh r3, [r7, #12] + 800be9a: 687a ldr r2, [r7, #4] + 800be9c: 4413 add r3, r2 + 800be9e: 781b ldrb r3, [r3, #0] + 800bea0: 461a mov r2, r3 + 800bea2: 89fb ldrh r3, [r7, #14] 800bea4: 4053 eors r3, r2 800bea6: 81fb strh r3, [r7, #14] - 800bea8: e002 b.n 800beb0 + for (uint8_t j = 0; j < 8; j++) { + 800bea8: 2300 movs r3, #0 + 800beaa: 72fb strb r3, [r7, #11] + 800beac: e011 b.n 800bed2 + if (crc & 1u) { + 800beae: 89fb ldrh r3, [r7, #14] + 800beb0: f003 0301 and.w r3, r3, #1 + 800beb4: 2b00 cmp r3, #0 + 800beb6: d006 beq.n 800bec6 + crc = (crc >> 1) ^ 0xA001u; + 800beb8: 89fb ldrh r3, [r7, #14] + 800beba: 085b lsrs r3, r3, #1 + 800bebc: b29a uxth r2, r3 + 800bebe: 4b0d ldr r3, [pc, #52] @ (800bef4 ) + 800bec0: 4053 eors r3, r2 + 800bec2: 81fb strh r3, [r7, #14] + 800bec4: e002 b.n 800becc } else { crc >>= 1; - 800beaa: 89fb ldrh r3, [r7, #14] - 800beac: 085b lsrs r3, r3, #1 - 800beae: 81fb strh r3, [r7, #14] + 800bec6: 89fb ldrh r3, [r7, #14] + 800bec8: 085b lsrs r3, r3, #1 + 800beca: 81fb strh r3, [r7, #14] for (uint8_t j = 0; j < 8; j++) { - 800beb0: 7afb ldrb r3, [r7, #11] - 800beb2: 3301 adds r3, #1 - 800beb4: 72fb strb r3, [r7, #11] - 800beb6: 7afb ldrb r3, [r7, #11] - 800beb8: 2b07 cmp r3, #7 - 800beba: d9ea bls.n 800be92 + 800becc: 7afb ldrb r3, [r7, #11] + 800bece: 3301 adds r3, #1 + 800bed0: 72fb strb r3, [r7, #11] + 800bed2: 7afb ldrb r3, [r7, #11] + 800bed4: 2b07 cmp r3, #7 + 800bed6: d9ea bls.n 800beae for (uint16_t i = 0; i < length; i++) { - 800bebc: 89bb ldrh r3, [r7, #12] - 800bebe: 3301 adds r3, #1 - 800bec0: 81bb strh r3, [r7, #12] - 800bec2: 89ba ldrh r2, [r7, #12] - 800bec4: 887b ldrh r3, [r7, #2] - 800bec6: 429a cmp r2, r3 - 800bec8: d3d8 bcc.n 800be7c + 800bed8: 89bb ldrh r3, [r7, #12] + 800beda: 3301 adds r3, #1 + 800bedc: 81bb strh r3, [r7, #12] + 800bede: 89ba ldrh r2, [r7, #12] + 800bee0: 887b ldrh r3, [r7, #2] + 800bee2: 429a cmp r2, r3 + 800bee4: d3d8 bcc.n 800be98 } } } return crc; - 800beca: 89fb ldrh r3, [r7, #14] + 800bee6: 89fb ldrh r3, [r7, #14] } - 800becc: 4618 mov r0, r3 - 800bece: 3714 adds r7, #20 - 800bed0: 46bd mov sp, r7 - 800bed2: bc80 pop {r7} - 800bed4: 4770 bx lr - 800bed6: bf00 nop - 800bed8: ffffa001 .word 0xffffa001 + 800bee8: 4618 mov r0, r3 + 800beea: 3714 adds r7, #20 + 800beec: 46bd mov sp, r7 + 800beee: bc80 pop {r7} + 800bef0: 4770 bx lr + 800bef2: bf00 nop + 800bef4: ffffa001 .word 0xffffa001 -0800bedc : +0800bef8 : static uint16_t CCS_BuildPacket(uint8_t cmd, const void* payload, uint16_t payload_len, uint8_t* out, uint16_t out_max) { - 800bedc: b580 push {r7, lr} - 800bede: b086 sub sp, #24 - 800bee0: af00 add r7, sp, #0 - 800bee2: 60b9 str r1, [r7, #8] - 800bee4: 607b str r3, [r7, #4] - 800bee6: 4603 mov r3, r0 - 800bee8: 73fb strb r3, [r7, #15] - 800beea: 4613 mov r3, r2 - 800beec: 81bb strh r3, [r7, #12] + 800bef8: b580 push {r7, lr} + 800befa: b086 sub sp, #24 + 800befc: af00 add r7, sp, #0 + 800befe: 60b9 str r1, [r7, #8] + 800bf00: 607b str r3, [r7, #4] + 800bf02: 4603 mov r3, r0 + 800bf04: 73fb strb r3, [r7, #15] + 800bf06: 4613 mov r3, r2 + 800bf08: 81bb strh r3, [r7, #12] uint16_t total_len = (uint16_t)(1u + payload_len + 2u); - 800beee: 89bb ldrh r3, [r7, #12] - 800bef0: 3303 adds r3, #3 - 800bef2: 82fb strh r3, [r7, #22] + 800bf0a: 89bb ldrh r3, [r7, #12] + 800bf0c: 3303 adds r3, #3 + 800bf0e: 82fb strh r3, [r7, #22] if (total_len > out_max) return 0; - 800bef4: 8afa ldrh r2, [r7, #22] - 800bef6: 8c3b ldrh r3, [r7, #32] - 800bef8: 429a cmp r2, r3 - 800befa: d901 bls.n 800bf00 - 800befc: 2300 movs r3, #0 - 800befe: e029 b.n 800bf54 + 800bf10: 8afa ldrh r2, [r7, #22] + 800bf12: 8c3b ldrh r3, [r7, #32] + 800bf14: 429a cmp r2, r3 + 800bf16: d901 bls.n 800bf1c + 800bf18: 2300 movs r3, #0 + 800bf1a: e029 b.n 800bf70 out[0] = cmd; - 800bf00: 687b ldr r3, [r7, #4] - 800bf02: 7bfa ldrb r2, [r7, #15] - 800bf04: 701a strb r2, [r3, #0] + 800bf1c: 687b ldr r3, [r7, #4] + 800bf1e: 7bfa ldrb r2, [r7, #15] + 800bf20: 701a strb r2, [r3, #0] if (payload_len && payload != NULL) { - 800bf06: 89bb ldrh r3, [r7, #12] - 800bf08: 2b00 cmp r3, #0 - 800bf0a: d009 beq.n 800bf20 - 800bf0c: 68bb ldr r3, [r7, #8] - 800bf0e: 2b00 cmp r3, #0 - 800bf10: d006 beq.n 800bf20 + 800bf22: 89bb ldrh r3, [r7, #12] + 800bf24: 2b00 cmp r3, #0 + 800bf26: d009 beq.n 800bf3c + 800bf28: 68bb ldr r3, [r7, #8] + 800bf2a: 2b00 cmp r3, #0 + 800bf2c: d006 beq.n 800bf3c memcpy(&out[1], payload, payload_len); - 800bf12: 687b ldr r3, [r7, #4] - 800bf14: 3301 adds r3, #1 - 800bf16: 89ba ldrh r2, [r7, #12] - 800bf18: 68b9 ldr r1, [r7, #8] - 800bf1a: 4618 mov r0, r3 - 800bf1c: f007 f90b bl 8013136 + 800bf2e: 687b ldr r3, [r7, #4] + 800bf30: 3301 adds r3, #1 + 800bf32: 89ba ldrh r2, [r7, #12] + 800bf34: 68b9 ldr r1, [r7, #8] + 800bf36: 4618 mov r0, r3 + 800bf38: f007 f90b bl 8013152 } uint16_t crc = crc16_ibm(out, (uint16_t)(1u + payload_len)); - 800bf20: 89bb ldrh r3, [r7, #12] - 800bf22: 3301 adds r3, #1 - 800bf24: b29b uxth r3, r3 - 800bf26: 4619 mov r1, r3 - 800bf28: 6878 ldr r0, [r7, #4] - 800bf2a: f7ff ff9b bl 800be64 - 800bf2e: 4603 mov r3, r0 - 800bf30: 82bb strh r3, [r7, #20] + 800bf3c: 89bb ldrh r3, [r7, #12] + 800bf3e: 3301 adds r3, #1 + 800bf40: b29b uxth r3, r3 + 800bf42: 4619 mov r1, r3 + 800bf44: 6878 ldr r0, [r7, #4] + 800bf46: f7ff ff9b bl 800be80 + 800bf4a: 4603 mov r3, r0 + 800bf4c: 82bb strh r3, [r7, #20] out[1u + payload_len] = (uint8_t)(crc & 0xFFu); - 800bf32: 89bb ldrh r3, [r7, #12] - 800bf34: 3301 adds r3, #1 - 800bf36: 687a ldr r2, [r7, #4] - 800bf38: 4413 add r3, r2 - 800bf3a: 8aba ldrh r2, [r7, #20] - 800bf3c: b2d2 uxtb r2, r2 - 800bf3e: 701a strb r2, [r3, #0] + 800bf4e: 89bb ldrh r3, [r7, #12] + 800bf50: 3301 adds r3, #1 + 800bf52: 687a ldr r2, [r7, #4] + 800bf54: 4413 add r3, r2 + 800bf56: 8aba ldrh r2, [r7, #20] + 800bf58: b2d2 uxtb r2, r2 + 800bf5a: 701a strb r2, [r3, #0] out[1u + payload_len + 1u] = (uint8_t)((crc >> 8) & 0xFFu); - 800bf40: 8abb ldrh r3, [r7, #20] - 800bf42: 0a1b lsrs r3, r3, #8 - 800bf44: b299 uxth r1, r3 - 800bf46: 89bb ldrh r3, [r7, #12] - 800bf48: 3302 adds r3, #2 - 800bf4a: 687a ldr r2, [r7, #4] - 800bf4c: 4413 add r3, r2 - 800bf4e: b2ca uxtb r2, r1 - 800bf50: 701a strb r2, [r3, #0] + 800bf5c: 8abb ldrh r3, [r7, #20] + 800bf5e: 0a1b lsrs r3, r3, #8 + 800bf60: b299 uxth r1, r3 + 800bf62: 89bb ldrh r3, [r7, #12] + 800bf64: 3302 adds r3, #2 + 800bf66: 687a ldr r2, [r7, #4] + 800bf68: 4413 add r3, r2 + 800bf6a: b2ca uxtb r2, r1 + 800bf6c: 701a strb r2, [r3, #0] return total_len; - 800bf52: 8afb ldrh r3, [r7, #22] + 800bf6e: 8afb ldrh r3, [r7, #22] } - 800bf54: 4618 mov r0, r3 - 800bf56: 3718 adds r7, #24 - 800bf58: 46bd mov sp, r7 - 800bf5a: bd80 pop {r7, pc} + 800bf70: 4618 mov r0, r3 + 800bf72: 3718 adds r7, #24 + 800bf74: 46bd mov sp, r7 + 800bf76: bd80 pop {r7, pc} -0800bf5c : +0800bf78 : static void CCS_SendPacket(uint8_t cmd, const void* payload, uint16_t payload_len) { - 800bf5c: b580 push {r7, lr} - 800bf5e: b086 sub sp, #24 - 800bf60: af02 add r7, sp, #8 - 800bf62: 4603 mov r3, r0 - 800bf64: 6039 str r1, [r7, #0] - 800bf66: 71fb strb r3, [r7, #7] - 800bf68: 4613 mov r3, r2 - 800bf6a: 80bb strh r3, [r7, #4] - uint16_t len = CCS_BuildPacket(cmd, payload, payload_len, tx_buffer, sizeof(tx_buffer)); - 800bf6c: 88ba ldrh r2, [r7, #4] - 800bf6e: 79f8 ldrb r0, [r7, #7] - 800bf70: f44f 7380 mov.w r3, #256 @ 0x100 - 800bf74: 9300 str r3, [sp, #0] - 800bf76: 4b0c ldr r3, [pc, #48] @ (800bfa8 ) - 800bf78: 6839 ldr r1, [r7, #0] - 800bf7a: f7ff ffaf bl 800bedc + 800bf78: b580 push {r7, lr} + 800bf7a: b086 sub sp, #24 + 800bf7c: af02 add r7, sp, #8 800bf7e: 4603 mov r3, r0 - 800bf80: 81fb strh r3, [r7, #14] + 800bf80: 6039 str r1, [r7, #0] + 800bf82: 71fb strb r3, [r7, #7] + 800bf84: 4613 mov r3, r2 + 800bf86: 80bb strh r3, [r7, #4] + uint16_t len = CCS_BuildPacket(cmd, payload, payload_len, tx_buffer, sizeof(tx_buffer)); + 800bf88: 88ba ldrh r2, [r7, #4] + 800bf8a: 79f8 ldrb r0, [r7, #7] + 800bf8c: f44f 7380 mov.w r3, #256 @ 0x100 + 800bf90: 9300 str r3, [sp, #0] + 800bf92: 4b0c ldr r3, [pc, #48] @ (800bfc4 ) + 800bf94: 6839 ldr r1, [r7, #0] + 800bf96: f7ff ffaf bl 800bef8 + 800bf9a: 4603 mov r3, r0 + 800bf9c: 81fb strh r3, [r7, #14] if (len > 0) { - 800bf82: 89fb ldrh r3, [r7, #14] - 800bf84: 2b00 cmp r3, #0 - 800bf86: d006 beq.n 800bf96 + 800bf9e: 89fb ldrh r3, [r7, #14] + 800bfa0: 2b00 cmp r3, #0 + 800bfa2: d006 beq.n 800bfb2 HAL_UART_Transmit(&huart3, tx_buffer, len, 1000); - 800bf88: 89fa ldrh r2, [r7, #14] - 800bf8a: f44f 737a mov.w r3, #1000 @ 0x3e8 - 800bf8e: 4906 ldr r1, [pc, #24] @ (800bfa8 ) - 800bf90: 4806 ldr r0, [pc, #24] @ (800bfac ) - 800bf92: f005 fee9 bl 8011d68 + 800bfa4: 89fa ldrh r2, [r7, #14] + 800bfa6: f44f 737a mov.w r3, #1000 @ 0x3e8 + 800bfaa: 4906 ldr r1, [pc, #24] @ (800bfc4 ) + 800bfac: 4806 ldr r0, [pc, #24] @ (800bfc8 ) + 800bfae: f005 fee9 bl 8011d84 } last_cmd_sent = HAL_GetTick(); - 800bf96: f001 fce1 bl 800d95c - 800bf9a: 4603 mov r3, r0 - 800bf9c: 4a04 ldr r2, [pc, #16] @ (800bfb0 ) - 800bf9e: 6013 str r3, [r2, #0] + 800bfb2: f001 fce1 bl 800d978 + 800bfb6: 4603 mov r3, r0 + 800bfb8: 4a04 ldr r2, [pc, #16] @ (800bfcc ) + 800bfba: 6013 str r3, [r2, #0] } - 800bfa0: bf00 nop - 800bfa2: 3710 adds r7, #16 - 800bfa4: 46bd mov sp, r7 - 800bfa6: bd80 pop {r7, pc} - 800bfa8: 200008cc .word 0x200008cc - 800bfac: 20001030 .word 0x20001030 - 800bfb0: 200007c0 .word 0x200007c0 + 800bfbc: bf00 nop + 800bfbe: 3710 adds r7, #16 + 800bfc0: 46bd mov sp, r7 + 800bfc2: bd80 pop {r7, pc} + 800bfc4: 200008cc .word 0x200008cc + 800bfc8: 20001030 .word 0x20001030 + 800bfcc: 200007c0 .word 0x200007c0 -0800bfb4 : +0800bfd0 : static void CCS_SendResetReason(void) { - 800bfb4: b580 push {r7, lr} - 800bfb6: af00 add r7, sp, #0 + 800bfd0: b580 push {r7, lr} + 800bfd2: af00 add r7, sp, #0 CCS_SendPacket(CMD_M2E_RESET, NULL, 0); - 800bfb8: 2200 movs r2, #0 - 800bfba: 2100 movs r1, #0 - 800bfbc: 2052 movs r0, #82 @ 0x52 - 800bfbe: f7ff ffcd bl 800bf5c + 800bfd4: 2200 movs r2, #0 + 800bfd6: 2100 movs r1, #0 + 800bfd8: 2052 movs r0, #82 @ 0x52 + 800bfda: f7ff ffcd bl 800bf78 } - 800bfc2: bf00 nop - 800bfc4: bd80 pop {r7, pc} + 800bfde: bf00 nop + 800bfe0: bd80 pop {r7, pc} -0800bfc6 : +0800bfe2 : void CCS_SendEmergencyStop(void) { - 800bfc6: b580 push {r7, lr} - 800bfc8: af00 add r7, sp, #0 + 800bfe2: b580 push {r7, lr} + 800bfe4: af00 add r7, sp, #0 CCS_SendPacket(CMD_M2E_ESTOP, NULL, 0); - 800bfca: 2200 movs r2, #0 - 800bfcc: 2100 movs r1, #0 - 800bfce: 2053 movs r0, #83 @ 0x53 - 800bfd0: f7ff ffc4 bl 800bf5c + 800bfe6: 2200 movs r2, #0 + 800bfe8: 2100 movs r1, #0 + 800bfea: 2053 movs r0, #83 @ 0x53 + 800bfec: f7ff ffc4 bl 800bf78 } - 800bfd4: bf00 nop - 800bfd6: bd80 pop {r7, pc} + 800bff0: bf00 nop + 800bff2: bd80 pop {r7, pc} -0800bfd8 : +0800bff4 : void CCS_SendStart(void) { CCS_SendPacket(CMD_M2E_START, NULL, 0); } static void CCS_CalculateEnergy(void) { - 800bfd8: b580 push {r7, lr} - 800bfda: b082 sub sp, #8 - 800bfdc: af00 add r7, sp, #0 + 800bff4: b580 push {r7, lr} + 800bff6: b082 sub sp, #8 + 800bff8: af00 add r7, sp, #0 static uint32_t lastTick = 0; uint32_t currentTick = HAL_GetTick(); - 800bfde: f001 fcbd bl 800d95c - 800bfe2: 6078 str r0, [r7, #4] + 800bffa: f001 fcbd bl 800d978 + 800bffe: 6078 str r0, [r7, #4] uint32_t elapsedTimeMs = currentTick - lastTick; - 800bfe4: 4b1e ldr r3, [pc, #120] @ (800c060 ) - 800bfe6: 681b ldr r3, [r3, #0] - 800bfe8: 687a ldr r2, [r7, #4] - 800bfea: 1ad3 subs r3, r2, r3 - 800bfec: 603b str r3, [r7, #0] + 800c000: 4b1e ldr r3, [pc, #120] @ (800c07c ) + 800c002: 681b ldr r3, [r3, #0] + 800c004: 687a ldr r2, [r7, #4] + 800c006: 1ad3 subs r3, r2, r3 + 800c008: 603b str r3, [r7, #0] lastTick = currentTick; - 800bfee: 4a1c ldr r2, [pc, #112] @ (800c060 ) - 800bff0: 687b ldr r3, [r7, #4] - 800bff2: 6013 str r3, [r2, #0] + 800c00a: 4a1c ldr r2, [pc, #112] @ (800c07c ) + 800c00c: 687b ldr r3, [r7, #4] + 800c00e: 6013 str r3, [r2, #0] CCS_Power = CONN.MeasuredVoltage * CONN.MeasuredCurrent / 10; - 800bff4: 4b1b ldr r3, [pc, #108] @ (800c064 ) - 800bff6: f8b3 3013 ldrh.w r3, [r3, #19] - 800bffa: b29b uxth r3, r3 - 800bffc: 461a mov r2, r3 - 800bffe: 4b19 ldr r3, [pc, #100] @ (800c064 ) - 800c000: f8b3 3015 ldrh.w r3, [r3, #21] - 800c004: b29b uxth r3, r3 - 800c006: fb02 f303 mul.w r3, r2, r3 - 800c00a: 4a17 ldr r2, [pc, #92] @ (800c068 ) - 800c00c: fb82 1203 smull r1, r2, r2, r3 - 800c010: 1092 asrs r2, r2, #2 - 800c012: 17db asrs r3, r3, #31 - 800c014: 1ad3 subs r3, r2, r3 - 800c016: 461a mov r2, r3 - 800c018: 4b14 ldr r3, [pc, #80] @ (800c06c ) - 800c01a: 601a str r2, [r3, #0] - CCS_EnergyWs += (CCS_Power * elapsedTimeMs) / 1000; - 800c01c: 4b13 ldr r3, [pc, #76] @ (800c06c ) - 800c01e: 681b ldr r3, [r3, #0] - 800c020: 683a ldr r2, [r7, #0] + 800c010: 4b1b ldr r3, [pc, #108] @ (800c080 ) + 800c012: f8b3 3013 ldrh.w r3, [r3, #19] + 800c016: b29b uxth r3, r3 + 800c018: 461a mov r2, r3 + 800c01a: 4b19 ldr r3, [pc, #100] @ (800c080 ) + 800c01c: f8b3 3015 ldrh.w r3, [r3, #21] + 800c020: b29b uxth r3, r3 800c022: fb02 f303 mul.w r3, r2, r3 - 800c026: 4a12 ldr r2, [pc, #72] @ (800c070 ) - 800c028: fba2 2303 umull r2, r3, r2, r3 - 800c02c: 099a lsrs r2, r3, #6 - 800c02e: 4b11 ldr r3, [pc, #68] @ (800c074 ) - 800c030: 681b ldr r3, [r3, #0] - 800c032: 4413 add r3, r2 - 800c034: 4a0f ldr r2, [pc, #60] @ (800c074 ) - 800c036: 6013 str r3, [r2, #0] + 800c026: 4a17 ldr r2, [pc, #92] @ (800c084 ) + 800c028: fb82 1203 smull r1, r2, r2, r3 + 800c02c: 1092 asrs r2, r2, #2 + 800c02e: 17db asrs r3, r3, #31 + 800c030: 1ad3 subs r3, r2, r3 + 800c032: 461a mov r2, r3 + 800c034: 4b14 ldr r3, [pc, #80] @ (800c088 ) + 800c036: 601a str r2, [r3, #0] + CCS_EnergyWs += (CCS_Power * elapsedTimeMs) / 1000; + 800c038: 4b13 ldr r3, [pc, #76] @ (800c088 ) + 800c03a: 681b ldr r3, [r3, #0] + 800c03c: 683a ldr r2, [r7, #0] + 800c03e: fb02 f303 mul.w r3, r2, r3 + 800c042: 4a12 ldr r2, [pc, #72] @ (800c08c ) + 800c044: fba2 2303 umull r2, r3, r2, r3 + 800c048: 099a lsrs r2, r3, #6 + 800c04a: 4b11 ldr r3, [pc, #68] @ (800c090 ) + 800c04c: 681b ldr r3, [r3, #0] + 800c04e: 4413 add r3, r2 + 800c050: 4a0f ldr r2, [pc, #60] @ (800c090 ) + 800c052: 6013 str r3, [r2, #0] if(CCS_EvseState == Unplugged) { - 800c038: 4b0f ldr r3, [pc, #60] @ (800c078 ) - 800c03a: 781b ldrb r3, [r3, #0] - 800c03c: 2b01 cmp r3, #1 - 800c03e: d102 bne.n 800c046 + 800c054: 4b0f ldr r3, [pc, #60] @ (800c094 ) + 800c056: 781b ldrb r3, [r3, #0] + 800c058: 2b01 cmp r3, #1 + 800c05a: d102 bne.n 800c062 CCS_EnergyWs = 0; - 800c040: 4b0c ldr r3, [pc, #48] @ (800c074 ) - 800c042: 2200 movs r2, #0 - 800c044: 601a str r2, [r3, #0] + 800c05c: 4b0c ldr r3, [pc, #48] @ (800c090 ) + 800c05e: 2200 movs r2, #0 + 800c060: 601a str r2, [r3, #0] } CCS_Energy = CCS_EnergyWs / 3600; - 800c046: 4b0b ldr r3, [pc, #44] @ (800c074 ) - 800c048: 681b ldr r3, [r3, #0] - 800c04a: 4a0c ldr r2, [pc, #48] @ (800c07c ) - 800c04c: fba2 2303 umull r2, r3, r2, r3 - 800c050: 0adb lsrs r3, r3, #11 - 800c052: 4a0b ldr r2, [pc, #44] @ (800c080 ) - 800c054: 6013 str r3, [r2, #0] + 800c062: 4b0b ldr r3, [pc, #44] @ (800c090 ) + 800c064: 681b ldr r3, [r3, #0] + 800c066: 4a0c ldr r2, [pc, #48] @ (800c098 ) + 800c068: fba2 2303 umull r2, r3, r2, r3 + 800c06c: 0adb lsrs r3, r3, #11 + 800c06e: 4a0b ldr r2, [pc, #44] @ (800c09c ) + 800c070: 6013 str r3, [r2, #0] } - 800c056: bf00 nop - 800c058: 3708 adds r7, #8 - 800c05a: 46bd mov sp, r7 - 800c05c: bd80 pop {r7, pc} - 800c05e: bf00 nop - 800c060: 20000a38 .word 0x20000a38 - 800c064: 200001d4 .word 0x200001d4 - 800c068: 66666667 .word 0x66666667 - 800c06c: 200007b4 .word 0x200007b4 - 800c070: 10624dd3 .word 0x10624dd3 - 800c074: 200007b8 .word 0x200007b8 - 800c078: 20000a2c .word 0x20000a2c - 800c07c: 91a2b3c5 .word 0x91a2b3c5 - 800c080: 200007bc .word 0x200007bc + 800c072: bf00 nop + 800c074: 3708 adds r7, #8 + 800c076: 46bd mov sp, r7 + 800c078: bd80 pop {r7, pc} + 800c07a: bf00 nop + 800c07c: 20000a38 .word 0x20000a38 + 800c080: 200001d4 .word 0x200001d4 + 800c084: 66666667 .word 0x66666667 + 800c088: 200007b4 .word 0x200007b4 + 800c08c: 10624dd3 .word 0x10624dd3 + 800c090: 200007b8 .word 0x200007b8 + 800c094: 20000a2c .word 0x20000a2c + 800c098: 91a2b3c5 .word 0x91a2b3c5 + 800c09c: 200007bc .word 0x200007bc -0800c084 : +0800c0a0 : static void send_state(void) { - 800c084: b580 push {r7, lr} - 800c086: af00 add r7, sp, #0 + 800c0a0: b580 push {r7, lr} + 800c0a2: af00 add r7, sp, #0 CCS_CalculateEnergy(); - 800c088: f7ff ffa6 bl 800bfd8 + 800c0a4: f7ff ffa6 bl 800bff4 CCS_State.DutyCycle = CP_GetDuty(); - 800c08c: f7fe f85a bl 800a144 - 800c090: 4603 mov r3, r0 - 800c092: 461a mov r2, r3 - 800c094: 4b2a ldr r3, [pc, #168] @ (800c140 ) - 800c096: 701a strb r2, [r3, #0] + 800c0a8: f7fe f84c bl 800a144 + 800c0ac: 4603 mov r3, r0 + 800c0ae: 461a mov r2, r3 + 800c0b0: 4b2a ldr r3, [pc, #168] @ (800c15c ) + 800c0b2: 701a strb r2, [r3, #0] CCS_State.OutputEnabled = PSU0.CONT_enabled; - 800c098: 4b2a ldr r3, [pc, #168] @ (800c144 ) - 800c09a: 7ada ldrb r2, [r3, #11] - 800c09c: 4b28 ldr r3, [pc, #160] @ (800c140 ) - 800c09e: 705a strb r2, [r3, #1] + 800c0b4: 4b2a ldr r3, [pc, #168] @ (800c160 ) + 800c0b6: 7ada ldrb r2, [r3, #11] + 800c0b8: 4b28 ldr r3, [pc, #160] @ (800c15c ) + 800c0ba: 705a strb r2, [r3, #1] CCS_State.MeasuredVoltage = (uint16_t)CONN.MeasuredVoltage; - 800c0a0: 4b29 ldr r3, [pc, #164] @ (800c148 ) - 800c0a2: f8b3 3013 ldrh.w r3, [r3, #19] - 800c0a6: b29a uxth r2, r3 - 800c0a8: 4b25 ldr r3, [pc, #148] @ (800c140 ) - 800c0aa: 805a strh r2, [r3, #2] + 800c0bc: 4b29 ldr r3, [pc, #164] @ (800c164 ) + 800c0be: f8b3 3013 ldrh.w r3, [r3, #19] + 800c0c2: b29a uxth r2, r3 + 800c0c4: 4b25 ldr r3, [pc, #148] @ (800c15c ) + 800c0c6: 805a strh r2, [r3, #2] CCS_State.MeasuredCurrent = (uint16_t)CONN.MeasuredCurrent; - 800c0ac: 4b26 ldr r3, [pc, #152] @ (800c148 ) - 800c0ae: f8b3 3015 ldrh.w r3, [r3, #21] - 800c0b2: b29a uxth r2, r3 - 800c0b4: 4b22 ldr r3, [pc, #136] @ (800c140 ) - 800c0b6: 809a strh r2, [r3, #4] + 800c0c8: 4b26 ldr r3, [pc, #152] @ (800c164 ) + 800c0ca: f8b3 3015 ldrh.w r3, [r3, #21] + 800c0ce: b29a uxth r2, r3 + 800c0d0: 4b22 ldr r3, [pc, #136] @ (800c15c ) + 800c0d2: 809a strh r2, [r3, #4] CCS_State.Power = CCS_Power; - 800c0b8: 4b24 ldr r3, [pc, #144] @ (800c14c ) - 800c0ba: 681b ldr r3, [r3, #0] - 800c0bc: 4a20 ldr r2, [pc, #128] @ (800c140 ) - 800c0be: f8c2 3006 str.w r3, [r2, #6] + 800c0d4: 4b24 ldr r3, [pc, #144] @ (800c168 ) + 800c0d6: 681b ldr r3, [r3, #0] + 800c0d8: 4a20 ldr r2, [pc, #128] @ (800c15c ) + 800c0da: f8c2 3006 str.w r3, [r2, #6] CCS_State.Energy = CCS_Energy; - 800c0c2: 4b23 ldr r3, [pc, #140] @ (800c150 ) - 800c0c4: 681b ldr r3, [r3, #0] - 800c0c6: 4a1e ldr r2, [pc, #120] @ (800c140 ) - 800c0c8: f8c2 300a str.w r3, [r2, #10] + 800c0de: 4b23 ldr r3, [pc, #140] @ (800c16c ) + 800c0e0: 681b ldr r3, [r3, #0] + 800c0e2: 4a1e ldr r2, [pc, #120] @ (800c15c ) + 800c0e4: f8c2 300a str.w r3, [r2, #10] if(CCS_ConnectorState == CCS_CONNECTED){ - 800c0cc: 4b21 ldr r3, [pc, #132] @ (800c154 ) - 800c0ce: 781b ldrb r3, [r3, #0] - 800c0d0: 2b03 cmp r3, #3 - 800c0d2: d104 bne.n 800c0de + 800c0e8: 4b21 ldr r3, [pc, #132] @ (800c170 ) + 800c0ea: 781b ldrb r3, [r3, #0] + 800c0ec: 2b03 cmp r3, #3 + 800c0ee: d104 bne.n 800c0fa CCS_State.CpState = cp_state_buffer; - 800c0d4: 4b20 ldr r3, [pc, #128] @ (800c158 ) - 800c0d6: 781a ldrb r2, [r3, #0] - 800c0d8: 4b19 ldr r3, [pc, #100] @ (800c140 ) - 800c0da: 74da strb r2, [r3, #19] - 800c0dc: e002 b.n 800c0e4 + 800c0f0: 4b20 ldr r3, [pc, #128] @ (800c174 ) + 800c0f2: 781a ldrb r2, [r3, #0] + 800c0f4: 4b19 ldr r3, [pc, #100] @ (800c15c ) + 800c0f6: 74da strb r2, [r3, #19] + 800c0f8: e002 b.n 800c100 } else { CCS_State.CpState = EV_STATE_A_IDLE; - 800c0de: 4b18 ldr r3, [pc, #96] @ (800c140 ) - 800c0e0: 2200 movs r2, #0 - 800c0e2: 74da strb r2, [r3, #19] + 800c0fa: 4b18 ldr r3, [pc, #96] @ (800c15c ) + 800c0fc: 2200 movs r2, #0 + 800c0fe: 74da strb r2, [r3, #19] } CCS_State.MaxVoltage = CCS_MaxLoad.maxVoltage; - 800c0e4: 4b1d ldr r3, [pc, #116] @ (800c15c ) - 800c0e6: 881a ldrh r2, [r3, #0] - 800c0e8: 4b15 ldr r3, [pc, #84] @ (800c140 ) - 800c0ea: 829a strh r2, [r3, #20] + 800c100: 4b1d ldr r3, [pc, #116] @ (800c178 ) + 800c102: 881a ldrh r2, [r3, #0] + 800c104: 4b15 ldr r3, [pc, #84] @ (800c15c ) + 800c106: 829a strh r2, [r3, #20] CCS_State.MinVoltage = CCS_MaxLoad.minVoltage; - 800c0ec: 4b1b ldr r3, [pc, #108] @ (800c15c ) - 800c0ee: 885a ldrh r2, [r3, #2] - 800c0f0: 4b13 ldr r3, [pc, #76] @ (800c140 ) - 800c0f2: 82da strh r2, [r3, #22] + 800c108: 4b1b ldr r3, [pc, #108] @ (800c178 ) + 800c10a: 885a ldrh r2, [r3, #2] + 800c10c: 4b13 ldr r3, [pc, #76] @ (800c15c ) + 800c10e: 82da strh r2, [r3, #22] CCS_State.MaxCurrent = CCS_MaxLoad.maxCurrent; - 800c0f4: 4b19 ldr r3, [pc, #100] @ (800c15c ) - 800c0f6: 889a ldrh r2, [r3, #4] - 800c0f8: 4b11 ldr r3, [pc, #68] @ (800c140 ) - 800c0fa: 831a strh r2, [r3, #24] + 800c110: 4b19 ldr r3, [pc, #100] @ (800c178 ) + 800c112: 889a ldrh r2, [r3, #4] + 800c114: 4b11 ldr r3, [pc, #68] @ (800c15c ) + 800c116: 831a strh r2, [r3, #24] CCS_State.MinCurrent = CCS_MaxLoad.minCurrent; - 800c0fc: 4b17 ldr r3, [pc, #92] @ (800c15c ) - 800c0fe: 88da ldrh r2, [r3, #6] - 800c100: 4b0f ldr r3, [pc, #60] @ (800c140 ) - 800c102: 835a strh r2, [r3, #26] + 800c118: 4b17 ldr r3, [pc, #92] @ (800c178 ) + 800c11a: 88da ldrh r2, [r3, #6] + 800c11c: 4b0f ldr r3, [pc, #60] @ (800c15c ) + 800c11e: 835a strh r2, [r3, #26] CCS_State.MaxPower = CCS_MaxLoad.maxPower; - 800c104: 4b15 ldr r3, [pc, #84] @ (800c15c ) - 800c106: 689b ldr r3, [r3, #8] - 800c108: 4a0d ldr r2, [pc, #52] @ (800c140 ) - 800c10a: 61d3 str r3, [r2, #28] + 800c120: 4b15 ldr r3, [pc, #84] @ (800c178 ) + 800c122: 689b ldr r3, [r3, #8] + 800c124: 4a0d ldr r2, [pc, #52] @ (800c15c ) + 800c126: 61d3 str r3, [r2, #28] CCS_State.IsolationValid = isolation_enable; - 800c10c: 4b14 ldr r3, [pc, #80] @ (800c160 ) - 800c10e: 781a ldrb r2, [r3, #0] - 800c110: 4b0b ldr r3, [pc, #44] @ (800c140 ) - 800c112: 749a strb r2, [r3, #18] + 800c128: 4b14 ldr r3, [pc, #80] @ (800c17c ) + 800c12a: 781a ldrb r2, [r3, #0] + 800c12c: 4b0b ldr r3, [pc, #44] @ (800c15c ) + 800c12e: 749a strb r2, [r3, #18] CCS_State.IsolationResistance = 900000; - 800c114: 4a0a ldr r2, [pc, #40] @ (800c140 ) - 800c116: 2300 movs r3, #0 - 800c118: f043 437f orr.w r3, r3, #4278190080 @ 0xff000000 - 800c11c: f443 037f orr.w r3, r3, #16711680 @ 0xff0000 - 800c120: f443 433b orr.w r3, r3, #47872 @ 0xbb00 - 800c124: f043 03a0 orr.w r3, r3, #160 @ 0xa0 - 800c128: 81d3 strh r3, [r2, #14] - 800c12a: 2300 movs r3, #0 - 800c12c: f043 030d orr.w r3, r3, #13 - 800c130: 8213 strh r3, [r2, #16] + 800c130: 4a0a ldr r2, [pc, #40] @ (800c15c ) + 800c132: 2300 movs r3, #0 + 800c134: f043 437f orr.w r3, r3, #4278190080 @ 0xff000000 + 800c138: f443 037f orr.w r3, r3, #16711680 @ 0xff0000 + 800c13c: f443 433b orr.w r3, r3, #47872 @ 0xbb00 + 800c140: f043 03a0 orr.w r3, r3, #160 @ 0xa0 + 800c144: 81d3 strh r3, [r2, #14] + 800c146: 2300 movs r3, #0 + 800c148: f043 030d orr.w r3, r3, #13 + 800c14c: 8213 strh r3, [r2, #16] CCS_SendPacket(CMD_M2E_STATE, &CCS_State, sizeof(CCS_State)); - 800c132: 2220 movs r2, #32 - 800c134: 4902 ldr r1, [pc, #8] @ (800c140 ) - 800c136: 2050 movs r0, #80 @ 0x50 - 800c138: f7ff ff10 bl 800bf5c + 800c14e: 2220 movs r2, #32 + 800c150: 4902 ldr r1, [pc, #8] @ (800c15c ) + 800c152: 2050 movs r0, #80 @ 0x50 + 800c154: f7ff ff10 bl 800bf78 } - 800c13c: bf00 nop - 800c13e: bd80 pop {r7, pc} - 800c140: 200009e0 .word 0x200009e0 - 800c144: 20000724 .word 0x20000724 - 800c148: 200001d4 .word 0x200001d4 - 800c14c: 200007b4 .word 0x200007b4 - 800c150: 200007bc .word 0x200007bc - 800c154: 20000050 .word 0x20000050 - 800c158: 2000004f .word 0x2000004f - 800c15c: 200007a8 .word 0x200007a8 - 800c160: 200009d0 .word 0x200009d0 + 800c158: bf00 nop + 800c15a: bd80 pop {r7, pc} + 800c15c: 200009e0 .word 0x200009e0 + 800c160: 20000724 .word 0x20000724 + 800c164: 200001d4 .word 0x200001d4 + 800c168: 200007b4 .word 0x200007b4 + 800c16c: 200007bc .word 0x200007bc + 800c170: 20000050 .word 0x20000050 + 800c174: 2000004f .word 0x2000004f + 800c178: 200007a8 .word 0x200007a8 + 800c17c: 200009d0 .word 0x200009d0 -0800c164 : +0800c180 : static uint16_t expected_payload_len(uint8_t cmd) { - 800c164: b480 push {r7} - 800c166: b083 sub sp, #12 - 800c168: af00 add r7, sp, #0 - 800c16a: 4603 mov r3, r0 - 800c16c: 71fb strb r3, [r7, #7] + 800c180: b480 push {r7} + 800c182: b083 sub sp, #12 + 800c184: af00 add r7, sp, #0 + 800c186: 4603 mov r3, r0 + 800c188: 71fb strb r3, [r7, #7] switch (cmd) { - 800c16e: 79fb ldrb r3, [r7, #7] - 800c170: 3b40 subs r3, #64 @ 0x40 - 800c172: 2b09 cmp r3, #9 - 800c174: d82a bhi.n 800c1cc - 800c176: a201 add r2, pc, #4 @ (adr r2, 800c17c ) - 800c178: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800c17c: 0800c1a5 .word 0x0800c1a5 - 800c180: 0800c1a9 .word 0x0800c1a9 - 800c184: 0800c1ad .word 0x0800c1ad - 800c188: 0800c1b1 .word 0x0800c1b1 - 800c18c: 0800c1b5 .word 0x0800c1b5 - 800c190: 0800c1b9 .word 0x0800c1b9 - 800c194: 0800c1bd .word 0x0800c1bd + 800c18a: 79fb ldrb r3, [r7, #7] + 800c18c: 3b40 subs r3, #64 @ 0x40 + 800c18e: 2b09 cmp r3, #9 + 800c190: d82a bhi.n 800c1e8 + 800c192: a201 add r2, pc, #4 @ (adr r2, 800c198 ) + 800c194: f852 f023 ldr.w pc, [r2, r3, lsl #2] 800c198: 0800c1c1 .word 0x0800c1c1 800c19c: 0800c1c5 .word 0x0800c1c5 800c1a0: 0800c1c9 .word 0x0800c1c9 + 800c1a4: 0800c1cd .word 0x0800c1cd + 800c1a8: 0800c1d1 .word 0x0800c1d1 + 800c1ac: 0800c1d5 .word 0x0800c1d5 + 800c1b0: 0800c1d9 .word 0x0800c1d9 + 800c1b4: 0800c1dd .word 0x0800c1dd + 800c1b8: 0800c1e1 .word 0x0800c1e1 + 800c1bc: 0800c1e5 .word 0x0800c1e5 case CMD_E2M_PWM_DUTY: return sizeof(e2m_pwm_duty_t); - 800c1a4: 2301 movs r3, #1 - 800c1a6: e013 b.n 800c1d0 + 800c1c0: 2301 movs r3, #1 + 800c1c2: e013 b.n 800c1ec case CMD_E2M_ENABLE_OUTPUT: return sizeof(e2m_enable_output_t); - 800c1a8: 2301 movs r3, #1 - 800c1aa: e011 b.n 800c1d0 - case CMD_E2M_RESET: return sizeof(e2m_reset_t); - 800c1ac: 2301 movs r3, #1 - 800c1ae: e00f b.n 800c1d0 - case CMD_E2M_ENABLE: return sizeof(e2m_enable_t); - 800c1b0: 2301 movs r3, #1 - 800c1b2: e00d b.n 800c1d0 - case CMD_E2M_REPLUG: return sizeof(e2m_replug_t); - 800c1b4: 2301 movs r3, #1 - 800c1b6: e00b b.n 800c1d0 - case CMD_E2M_SET_OUTPUT_VOLTAGE: return sizeof(e2m_set_output_t); - 800c1b8: 2304 movs r3, #4 - 800c1ba: e009 b.n 800c1d0 - case CMD_E2M_ISOLATION_CONTROL: return sizeof(e2m_isolation_control_t); - 800c1bc: 2301 movs r3, #1 - 800c1be: e007 b.n 800c1d0 - case CMD_E2M_EV_INFO: return sizeof(CCS_EvInfo_t); - 800c1c0: 232c movs r3, #44 @ 0x2c - 800c1c2: e005 b.n 800c1d0 - case CMD_E2M_EVSE_STATE: return sizeof(CONN_State_t); 800c1c4: 2301 movs r3, #1 - 800c1c6: e003 b.n 800c1d0 + 800c1c6: e011 b.n 800c1ec + case CMD_E2M_RESET: return sizeof(e2m_reset_t); + 800c1c8: 2301 movs r3, #1 + 800c1ca: e00f b.n 800c1ec + case CMD_E2M_ENABLE: return sizeof(e2m_enable_t); + 800c1cc: 2301 movs r3, #1 + 800c1ce: e00d b.n 800c1ec + case CMD_E2M_REPLUG: return sizeof(e2m_replug_t); + 800c1d0: 2301 movs r3, #1 + 800c1d2: e00b b.n 800c1ec + case CMD_E2M_SET_OUTPUT_VOLTAGE: return sizeof(e2m_set_output_t); + 800c1d4: 2304 movs r3, #4 + 800c1d6: e009 b.n 800c1ec + case CMD_E2M_ISOLATION_CONTROL: return sizeof(e2m_isolation_control_t); + 800c1d8: 2301 movs r3, #1 + 800c1da: e007 b.n 800c1ec + case CMD_E2M_EV_INFO: return sizeof(CCS_EvInfo_t); + 800c1dc: 232c movs r3, #44 @ 0x2c + 800c1de: e005 b.n 800c1ec + case CMD_E2M_EVSE_STATE: return sizeof(CONN_State_t); + 800c1e0: 2301 movs r3, #1 + 800c1e2: e003 b.n 800c1ec case CMD_E2M_KEEP_ALIVE: return 0; - 800c1c8: 2300 movs r3, #0 - 800c1ca: e001 b.n 800c1d0 + 800c1e4: 2300 movs r3, #0 + 800c1e6: e001 b.n 800c1ec default: return 0xFFFFu; - 800c1cc: f64f 73ff movw r3, #65535 @ 0xffff + 800c1e8: f64f 73ff movw r3, #65535 @ 0xffff } } - 800c1d0: 4618 mov r0, r3 - 800c1d2: 370c adds r7, #12 - 800c1d4: 46bd mov sp, r7 - 800c1d6: bc80 pop {r7} - 800c1d8: 4770 bx lr - 800c1da: bf00 nop + 800c1ec: 4618 mov r0, r3 + 800c1ee: 370c adds r7, #12 + 800c1f0: 46bd mov sp, r7 + 800c1f2: bc80 pop {r7} + 800c1f4: 4770 bx lr + 800c1f6: bf00 nop -0800c1dc : +0800c1f8 : static void apply_command(uint8_t cmd, const uint8_t* payload, uint16_t payload_len) { - 800c1dc: b5f0 push {r4, r5, r6, r7, lr} - 800c1de: b08b sub sp, #44 @ 0x2c - 800c1e0: af00 add r7, sp, #0 - 800c1e2: 4603 mov r3, r0 - 800c1e4: 6039 str r1, [r7, #0] - 800c1e6: 71fb strb r3, [r7, #7] - 800c1e8: 4613 mov r3, r2 - 800c1ea: 80bb strh r3, [r7, #4] + 800c1f8: b5f0 push {r4, r5, r6, r7, lr} + 800c1fa: b08b sub sp, #44 @ 0x2c + 800c1fc: af00 add r7, sp, #0 + 800c1fe: 4603 mov r3, r0 + 800c200: 6039 str r1, [r7, #0] + 800c202: 71fb strb r3, [r7, #7] + 800c204: 4613 mov r3, r2 + 800c206: 80bb strh r3, [r7, #4] (void)payload_len; last_host_seen = HAL_GetTick(); - 800c1ec: f001 fbb6 bl 800d95c - 800c1f0: 4603 mov r3, r0 - 800c1f2: 4a5b ldr r2, [pc, #364] @ (800c360 ) - 800c1f4: 6013 str r3, [r2, #0] + 800c208: f001 fbb6 bl 800d978 + 800c20c: 4603 mov r3, r0 + 800c20e: 4a5b ldr r2, [pc, #364] @ (800c37c ) + 800c210: 6013 str r3, [r2, #0] everest_timed_out = 0; - 800c1f6: 4b5b ldr r3, [pc, #364] @ (800c364 ) - 800c1f8: 2200 movs r2, #0 - 800c1fa: 701a strb r2, [r3, #0] + 800c212: 4b5b ldr r3, [pc, #364] @ (800c380 ) + 800c214: 2200 movs r2, #0 + 800c216: 701a strb r2, [r3, #0] last_everest_timeout_log_tick = 0; - 800c1fc: 4b5a ldr r3, [pc, #360] @ (800c368 ) - 800c1fe: 2200 movs r2, #0 - 800c200: 601a str r2, [r3, #0] + 800c218: 4b5a ldr r3, [pc, #360] @ (800c384 ) + 800c21a: 2200 movs r2, #0 + 800c21c: 601a str r2, [r3, #0] switch (cmd) { - 800c202: 79fb ldrb r3, [r7, #7] - 800c204: 3b40 subs r3, #64 @ 0x40 - 800c206: 2b09 cmp r3, #9 - 800c208: f200 80a3 bhi.w 800c352 - 800c20c: a201 add r2, pc, #4 @ (adr r2, 800c214 ) - 800c20e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800c212: bf00 nop - 800c214: 0800c23d .word 0x0800c23d - 800c218: 0800c26b .word 0x0800c26b - 800c21c: 0800c285 .word 0x0800c285 - 800c220: 0800c2a7 .word 0x0800c2a7 - 800c224: 0800c33b .word 0x0800c33b - 800c228: 0800c2c1 .word 0x0800c2c1 - 800c22c: 0800c2df .word 0x0800c2df - 800c230: 0800c2ed .word 0x0800c2ed - 800c234: 0800c331 .word 0x0800c331 - 800c238: 0800c347 .word 0x0800c347 + 800c21e: 79fb ldrb r3, [r7, #7] + 800c220: 3b40 subs r3, #64 @ 0x40 + 800c222: 2b09 cmp r3, #9 + 800c224: f200 80a3 bhi.w 800c36e + 800c228: a201 add r2, pc, #4 @ (adr r2, 800c230 ) + 800c22a: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800c22e: bf00 nop + 800c230: 0800c259 .word 0x0800c259 + 800c234: 0800c287 .word 0x0800c287 + 800c238: 0800c2a1 .word 0x0800c2a1 + 800c23c: 0800c2c3 .word 0x0800c2c3 + 800c240: 0800c357 .word 0x0800c357 + 800c244: 0800c2dd .word 0x0800c2dd + 800c248: 0800c2fb .word 0x0800c2fb + 800c24c: 0800c309 .word 0x0800c309 + 800c250: 0800c34d .word 0x0800c34d + 800c254: 0800c363 .word 0x0800c363 case CMD_E2M_PWM_DUTY: { const e2m_pwm_duty_t* p = (const e2m_pwm_duty_t*)payload; - 800c23c: 683b ldr r3, [r7, #0] - 800c23e: 60fb str r3, [r7, #12] + 800c258: 683b ldr r3, [r7, #0] + 800c25a: 60fb str r3, [r7, #12] uint8_t duty = p->pwm_duty_percent; - 800c240: 68fb ldr r3, [r7, #12] - 800c242: 781b ldrb r3, [r3, #0] - 800c244: f887 3027 strb.w r3, [r7, #39] @ 0x27 + 800c25c: 68fb ldr r3, [r7, #12] + 800c25e: 781b ldrb r3, [r3, #0] + 800c260: f887 3027 strb.w r3, [r7, #39] @ 0x27 if (duty > 100) duty = 100; - 800c248: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 - 800c24c: 2b64 cmp r3, #100 @ 0x64 - 800c24e: d902 bls.n 800c256 - 800c250: 2364 movs r3, #100 @ 0x64 - 800c252: f887 3027 strb.w r3, [r7, #39] @ 0x27 + 800c264: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 + 800c268: 2b64 cmp r3, #100 @ 0x64 + 800c26a: d902 bls.n 800c272 + 800c26c: 2364 movs r3, #100 @ 0x64 + 800c26e: f887 3027 strb.w r3, [r7, #39] @ 0x27 pwm_duty_percent = duty; - 800c256: 4a45 ldr r2, [pc, #276] @ (800c36c ) - 800c258: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 - 800c25c: 7013 strb r3, [r2, #0] + 800c272: 4a45 ldr r2, [pc, #276] @ (800c388 ) + 800c274: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 + 800c278: 7013 strb r3, [r2, #0] CP_SetDuty(duty); - 800c25e: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 - 800c262: 4618 mov r0, r3 - 800c264: f7fd ff46 bl 800a0f4 + 800c27a: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 + 800c27e: 4618 mov r0, r3 + 800c280: f7fd ff38 bl 800a0f4 break; - 800c268: e076 b.n 800c358 + 800c284: e076 b.n 800c374 } case CMD_E2M_ENABLE_OUTPUT: { const e2m_enable_output_t* p = (const e2m_enable_output_t*)payload; - 800c26a: 683b ldr r3, [r7, #0] - 800c26c: 613b str r3, [r7, #16] + 800c286: 683b ldr r3, [r7, #0] + 800c288: 613b str r3, [r7, #16] ev_enable_output = (p->enable_output != 0); - 800c26e: 693b ldr r3, [r7, #16] - 800c270: 781b ldrb r3, [r3, #0] - 800c272: 2b00 cmp r3, #0 - 800c274: bf14 ite ne - 800c276: 2301 movne r3, #1 - 800c278: 2300 moveq r3, #0 - 800c27a: b2db uxtb r3, r3 - 800c27c: 461a mov r2, r3 - 800c27e: 4b3c ldr r3, [pc, #240] @ (800c370 ) - 800c280: 701a strb r2, [r3, #0] + 800c28a: 693b ldr r3, [r7, #16] + 800c28c: 781b ldrb r3, [r3, #0] + 800c28e: 2b00 cmp r3, #0 + 800c290: bf14 ite ne + 800c292: 2301 movne r3, #1 + 800c294: 2300 moveq r3, #0 + 800c296: b2db uxtb r3, r3 + 800c298: 461a mov r2, r3 + 800c29a: 4b3c ldr r3, [pc, #240] @ (800c38c ) + 800c29c: 701a strb r2, [r3, #0] break; - 800c282: e069 b.n 800c358 + 800c29e: e069 b.n 800c374 } case CMD_E2M_RESET: { const e2m_reset_t* p = (const e2m_reset_t*)payload; - 800c284: 683b ldr r3, [r7, #0] - 800c286: 617b str r3, [r7, #20] + 800c2a0: 683b ldr r3, [r7, #0] + 800c2a2: 617b str r3, [r7, #20] if (p->reset) { - 800c288: 697b ldr r3, [r7, #20] - 800c28a: 781b ldrb r3, [r3, #0] - 800c28c: 2b00 cmp r3, #0 - 800c28e: d062 beq.n 800c356 + 800c2a4: 697b ldr r3, [r7, #20] + 800c2a6: 781b ldrb r3, [r3, #0] + 800c2a8: 2b00 cmp r3, #0 + 800c2aa: d062 beq.n 800c372 log_printf(LOG_WARN, "Everest reset command\n"); - 800c290: 4938 ldr r1, [pc, #224] @ (800c374 ) - 800c292: 2005 movs r0, #5 - 800c294: f7fe f8f2 bl 800a47c + 800c2ac: 4938 ldr r1, [pc, #224] @ (800c390 ) + 800c2ae: 2005 movs r0, #5 + 800c2b0: f7fe f8e4 bl 800a47c CCS_SendResetReason(); - 800c298: f7ff fe8c bl 800bfb4 + 800c2b4: f7ff fe8c bl 800bfd0 HAL_Delay(10); - 800c29c: 200a movs r0, #10 - 800c29e: f001 fb67 bl 800d970 + 800c2b8: 200a movs r0, #10 + 800c2ba: f001 fb67 bl 800d98c NVIC_SystemReset(); - 800c2a2: f7ff fb6f bl 800b984 <__NVIC_SystemReset> + 800c2be: f7ff fb61 bl 800b984 <__NVIC_SystemReset> } break; } case CMD_E2M_ENABLE: { const e2m_enable_t* p = (const e2m_enable_t*)payload; - 800c2a6: 683b ldr r3, [r7, #0] - 800c2a8: 61bb str r3, [r7, #24] + 800c2c2: 683b ldr r3, [r7, #0] + 800c2c4: 61bb str r3, [r7, #24] enabled = (p->enable != 0); - 800c2aa: 69bb ldr r3, [r7, #24] - 800c2ac: 781b ldrb r3, [r3, #0] - 800c2ae: 2b00 cmp r3, #0 - 800c2b0: bf14 ite ne - 800c2b2: 2301 movne r3, #1 - 800c2b4: 2300 moveq r3, #0 - 800c2b6: b2db uxtb r3, r3 - 800c2b8: 461a mov r2, r3 - 800c2ba: 4b2f ldr r3, [pc, #188] @ (800c378 ) - 800c2bc: 701a strb r2, [r3, #0] + 800c2c6: 69bb ldr r3, [r7, #24] + 800c2c8: 781b ldrb r3, [r3, #0] + 800c2ca: 2b00 cmp r3, #0 + 800c2cc: bf14 ite ne + 800c2ce: 2301 movne r3, #1 + 800c2d0: 2300 moveq r3, #0 + 800c2d2: b2db uxtb r3, r3 + 800c2d4: 461a mov r2, r3 + 800c2d6: 4b2f ldr r3, [pc, #188] @ (800c394 ) + 800c2d8: 701a strb r2, [r3, #0] (void)enabled; break; - 800c2be: e04b b.n 800c358 + 800c2da: e04b b.n 800c374 } case CMD_E2M_SET_OUTPUT_VOLTAGE: { const e2m_set_output_t* p = (const e2m_set_output_t*)payload; - 800c2c0: 683b ldr r3, [r7, #0] - 800c2c2: 61fb str r3, [r7, #28] + 800c2dc: 683b ldr r3, [r7, #0] + 800c2de: 61fb str r3, [r7, #28] CONN.RequestedVoltage = p->voltage_V; - 800c2c4: 69fb ldr r3, [r7, #28] - 800c2c6: 881b ldrh r3, [r3, #0] - 800c2c8: b29a uxth r2, r3 - 800c2ca: 4b2c ldr r3, [pc, #176] @ (800c37c ) - 800c2cc: f8a3 200f strh.w r2, [r3, #15] + 800c2e0: 69fb ldr r3, [r7, #28] + 800c2e2: 881b ldrh r3, [r3, #0] + 800c2e4: b29a uxth r2, r3 + 800c2e6: 4b2c ldr r3, [pc, #176] @ (800c398 ) + 800c2e8: f8a3 200f strh.w r2, [r3, #15] CONN.WantedCurrent = p->current_0p1A; - 800c2d0: 69fb ldr r3, [r7, #28] - 800c2d2: 885b ldrh r3, [r3, #2] - 800c2d4: b29a uxth r2, r3 - 800c2d6: 4b29 ldr r3, [pc, #164] @ (800c37c ) - 800c2d8: f8a3 201b strh.w r2, [r3, #27] + 800c2ec: 69fb ldr r3, [r7, #28] + 800c2ee: 885b ldrh r3, [r3, #2] + 800c2f0: b29a uxth r2, r3 + 800c2f2: 4b29 ldr r3, [pc, #164] @ (800c398 ) + 800c2f4: f8a3 201b strh.w r2, [r3, #27] break; - 800c2dc: e03c b.n 800c358 + 800c2f8: e03c b.n 800c374 } case CMD_E2M_ISOLATION_CONTROL: { const e2m_isolation_control_t* p = (const e2m_isolation_control_t*)payload; - 800c2de: 683b ldr r3, [r7, #0] - 800c2e0: 623b str r3, [r7, #32] + 800c2fa: 683b ldr r3, [r7, #0] + 800c2fc: 623b str r3, [r7, #32] isolation_enable = p->command; - 800c2e2: 6a3b ldr r3, [r7, #32] - 800c2e4: 781a ldrb r2, [r3, #0] - 800c2e6: 4b26 ldr r3, [pc, #152] @ (800c380 ) - 800c2e8: 701a strb r2, [r3, #0] + 800c2fe: 6a3b ldr r3, [r7, #32] + 800c300: 781a ldrb r2, [r3, #0] + 800c302: 4b26 ldr r3, [pc, #152] @ (800c39c ) + 800c304: 701a strb r2, [r3, #0] break; - 800c2ea: e035 b.n 800c358 + 800c306: e035 b.n 800c374 } case CMD_E2M_EV_INFO: { memcpy(&CCS_EvInfo, payload, sizeof(CCS_EvInfo_t)); - 800c2ec: 4a25 ldr r2, [pc, #148] @ (800c384 ) - 800c2ee: 683b ldr r3, [r7, #0] - 800c2f0: 461c mov r4, r3 - 800c2f2: 4616 mov r6, r2 - 800c2f4: f104 0c20 add.w ip, r4, #32 - 800c2f8: 4635 mov r5, r6 - 800c2fa: 4623 mov r3, r4 - 800c2fc: 6818 ldr r0, [r3, #0] - 800c2fe: 6859 ldr r1, [r3, #4] - 800c300: 689a ldr r2, [r3, #8] - 800c302: 68db ldr r3, [r3, #12] - 800c304: c50f stmia r5!, {r0, r1, r2, r3} - 800c306: 3410 adds r4, #16 - 800c308: 3610 adds r6, #16 - 800c30a: 4564 cmp r4, ip - 800c30c: d1f4 bne.n 800c2f8 - 800c30e: 4633 mov r3, r6 - 800c310: 4622 mov r2, r4 - 800c312: 6810 ldr r0, [r2, #0] - 800c314: 6851 ldr r1, [r2, #4] - 800c316: 6892 ldr r2, [r2, #8] - 800c318: c307 stmia r3!, {r0, r1, r2} + 800c308: 4a25 ldr r2, [pc, #148] @ (800c3a0 ) + 800c30a: 683b ldr r3, [r7, #0] + 800c30c: 461c mov r4, r3 + 800c30e: 4616 mov r6, r2 + 800c310: f104 0c20 add.w ip, r4, #32 + 800c314: 4635 mov r5, r6 + 800c316: 4623 mov r3, r4 + 800c318: 6818 ldr r0, [r3, #0] + 800c31a: 6859 ldr r1, [r3, #4] + 800c31c: 689a ldr r2, [r3, #8] + 800c31e: 68db ldr r3, [r3, #12] + 800c320: c50f stmia r5!, {r0, r1, r2, r3} + 800c322: 3410 adds r4, #16 + 800c324: 3610 adds r6, #16 + 800c326: 4564 cmp r4, ip + 800c328: d1f4 bne.n 800c314 + 800c32a: 4633 mov r3, r6 + 800c32c: 4622 mov r2, r4 + 800c32e: 6810 ldr r0, [r2, #0] + 800c330: 6851 ldr r1, [r2, #4] + 800c332: 6892 ldr r2, [r2, #8] + 800c334: c307 stmia r3!, {r0, r1, r2} CONN.SOC = (uint8_t)(CCS_EvInfo.soc / 10); - 800c31a: 4b1a ldr r3, [pc, #104] @ (800c384 ) - 800c31c: 885b ldrh r3, [r3, #2] - 800c31e: 4a1a ldr r2, [pc, #104] @ (800c388 ) - 800c320: fba2 2303 umull r2, r3, r2, r3 - 800c324: 08db lsrs r3, r3, #3 - 800c326: b29b uxth r3, r3 - 800c328: b2da uxtb r2, r3 - 800c32a: 4b14 ldr r3, [pc, #80] @ (800c37c ) - 800c32c: 709a strb r2, [r3, #2] + 800c336: 4b1a ldr r3, [pc, #104] @ (800c3a0 ) + 800c338: 885b ldrh r3, [r3, #2] + 800c33a: 4a1a ldr r2, [pc, #104] @ (800c3a4 ) + 800c33c: fba2 2303 umull r2, r3, r2, r3 + 800c340: 08db lsrs r3, r3, #3 + 800c342: b29b uxth r3, r3 + 800c344: b2da uxtb r2, r3 + 800c346: 4b14 ldr r3, [pc, #80] @ (800c398 ) + 800c348: 709a strb r2, [r3, #2] break; - 800c32e: e013 b.n 800c358 + 800c34a: e013 b.n 800c374 } case CMD_E2M_EVSE_STATE: { CCS_EvseState = (CONN_State_t)payload[0]; - 800c330: 683b ldr r3, [r7, #0] - 800c332: 781a ldrb r2, [r3, #0] - 800c334: 4b15 ldr r3, [pc, #84] @ (800c38c ) - 800c336: 701a strb r2, [r3, #0] + 800c34c: 683b ldr r3, [r7, #0] + 800c34e: 781a ldrb r2, [r3, #0] + 800c350: 4b15 ldr r3, [pc, #84] @ (800c3a8 ) + 800c352: 701a strb r2, [r3, #0] break; - 800c338: e00e b.n 800c358 + 800c354: e00e b.n 800c374 } case CMD_E2M_REPLUG: { (void)payload; CP_SetDuty(pwm_duty_percent); - 800c33a: 4b0c ldr r3, [pc, #48] @ (800c36c ) - 800c33c: 781b ldrb r3, [r3, #0] - 800c33e: 4618 mov r0, r3 - 800c340: f7fd fed8 bl 800a0f4 + 800c356: 4b0c ldr r3, [pc, #48] @ (800c388 ) + 800c358: 781b ldrb r3, [r3, #0] + 800c35a: 4618 mov r0, r3 + 800c35c: f7fd feca bl 800a0f4 break; - 800c344: e008 b.n 800c358 + 800c360: e008 b.n 800c374 } case CMD_E2M_KEEP_ALIVE: { last_host_seen = HAL_GetTick(); - 800c346: f001 fb09 bl 800d95c - 800c34a: 4603 mov r3, r0 - 800c34c: 4a04 ldr r2, [pc, #16] @ (800c360 ) - 800c34e: 6013 str r3, [r2, #0] + 800c362: f001 fb09 bl 800d978 + 800c366: 4603 mov r3, r0 + 800c368: 4a04 ldr r2, [pc, #16] @ (800c37c ) + 800c36a: 6013 str r3, [r2, #0] break; - 800c350: e002 b.n 800c358 + 800c36c: e002 b.n 800c374 } default: break; - 800c352: bf00 nop - 800c354: e000 b.n 800c358 + 800c36e: bf00 nop + 800c370: e000 b.n 800c374 break; - 800c356: bf00 nop + 800c372: bf00 nop } } - 800c358: bf00 nop - 800c35a: 372c adds r7, #44 @ 0x2c - 800c35c: 46bd mov sp, r7 - 800c35e: bdf0 pop {r4, r5, r6, r7, pc} - 800c360: 200009d4 .word 0x200009d4 - 800c364: 200009d8 .word 0x200009d8 - 800c368: 200009dc .word 0x200009dc - 800c36c: 2000004e .word 0x2000004e - 800c370: 200007c9 .word 0x200007c9 - 800c374: 08014388 .word 0x08014388 - 800c378: 200009cf .word 0x200009cf - 800c37c: 200001d4 .word 0x200001d4 - 800c380: 200009d0 .word 0x200009d0 - 800c384: 20000a00 .word 0x20000a00 - 800c388: cccccccd .word 0xcccccccd - 800c38c: 20000a2c .word 0x20000a2c + 800c374: bf00 nop + 800c376: 372c adds r7, #44 @ 0x2c + 800c378: 46bd mov sp, r7 + 800c37a: bdf0 pop {r4, r5, r6, r7, pc} + 800c37c: 200009d4 .word 0x200009d4 + 800c380: 200009d8 .word 0x200009d8 + 800c384: 200009dc .word 0x200009dc + 800c388: 2000004e .word 0x2000004e + 800c38c: 200007c9 .word 0x200007c9 + 800c390: 080143a4 .word 0x080143a4 + 800c394: 200009cf .word 0x200009cf + 800c398: 200001d4 .word 0x200001d4 + 800c39c: 200009d0 .word 0x200009d0 + 800c3a0: 20000a00 .word 0x20000a00 + 800c3a4: cccccccd .word 0xcccccccd + 800c3a8: 20000a2c .word 0x20000a2c -0800c390 : +0800c3ac : static uint8_t process_received_packet(const uint8_t* packet, uint16_t packet_len) { - 800c390: b580 push {r7, lr} - 800c392: b086 sub sp, #24 - 800c394: af00 add r7, sp, #0 - 800c396: 6078 str r0, [r7, #4] - 800c398: 460b mov r3, r1 - 800c39a: 807b strh r3, [r7, #2] + 800c3ac: b580 push {r7, lr} + 800c3ae: b086 sub sp, #24 + 800c3b0: af00 add r7, sp, #0 + 800c3b2: 6078 str r0, [r7, #4] + 800c3b4: 460b mov r3, r1 + 800c3b6: 807b strh r3, [r7, #2] if (packet_len < 3) return 0; - 800c39c: 887b ldrh r3, [r7, #2] - 800c39e: 2b02 cmp r3, #2 - 800c3a0: d801 bhi.n 800c3a6 - 800c3a2: 2300 movs r3, #0 - 800c3a4: e05a b.n 800c45c + 800c3b8: 887b ldrh r3, [r7, #2] + 800c3ba: 2b02 cmp r3, #2 + 800c3bc: d801 bhi.n 800c3c2 + 800c3be: 2300 movs r3, #0 + 800c3c0: e05a b.n 800c478 uint8_t cmd = packet[0]; - 800c3a6: 687b ldr r3, [r7, #4] - 800c3a8: 781b ldrb r3, [r3, #0] - 800c3aa: 75fb strb r3, [r7, #23] + 800c3c2: 687b ldr r3, [r7, #4] + 800c3c4: 781b ldrb r3, [r3, #0] + 800c3c6: 75fb strb r3, [r7, #23] uint16_t payload_len = (uint16_t)(packet_len - 3); - 800c3ac: 887b ldrh r3, [r7, #2] - 800c3ae: 3b03 subs r3, #3 - 800c3b0: 82bb strh r3, [r7, #20] + 800c3c8: 887b ldrh r3, [r7, #2] + 800c3ca: 3b03 subs r3, #3 + 800c3cc: 82bb strh r3, [r7, #20] uint16_t received_crc = (uint16_t)packet[packet_len - 2u] | - 800c3b2: 887b ldrh r3, [r7, #2] - 800c3b4: 3b02 subs r3, #2 - 800c3b6: 687a ldr r2, [r7, #4] - 800c3b8: 4413 add r3, r2 - 800c3ba: 781b ldrb r3, [r3, #0] - 800c3bc: b21a sxth r2, r3 + 800c3ce: 887b ldrh r3, [r7, #2] + 800c3d0: 3b02 subs r3, #2 + 800c3d2: 687a ldr r2, [r7, #4] + 800c3d4: 4413 add r3, r2 + 800c3d6: 781b ldrb r3, [r3, #0] + 800c3d8: b21a sxth r2, r3 (uint16_t)packet[packet_len - 1u] << 8; - 800c3be: 887b ldrh r3, [r7, #2] - 800c3c0: 3b01 subs r3, #1 - 800c3c2: 6879 ldr r1, [r7, #4] - 800c3c4: 440b add r3, r1 - 800c3c6: 781b ldrb r3, [r3, #0] + 800c3da: 887b ldrh r3, [r7, #2] + 800c3dc: 3b01 subs r3, #1 + 800c3de: 6879 ldr r1, [r7, #4] + 800c3e0: 440b add r3, r1 + 800c3e2: 781b ldrb r3, [r3, #0] uint16_t received_crc = (uint16_t)packet[packet_len - 2u] | - 800c3c8: b21b sxth r3, r3 - 800c3ca: 021b lsls r3, r3, #8 - 800c3cc: b21b sxth r3, r3 - 800c3ce: 4313 orrs r3, r2 - 800c3d0: b21b sxth r3, r3 - 800c3d2: 827b strh r3, [r7, #18] + 800c3e4: b21b sxth r3, r3 + 800c3e6: 021b lsls r3, r3, #8 + 800c3e8: b21b sxth r3, r3 + 800c3ea: 4313 orrs r3, r2 + 800c3ec: b21b sxth r3, r3 + 800c3ee: 827b strh r3, [r7, #18] uint16_t calculated_crc = crc16_ibm(packet, (uint16_t)(1 + payload_len)); - 800c3d4: 8abb ldrh r3, [r7, #20] - 800c3d6: 3301 adds r3, #1 - 800c3d8: b29b uxth r3, r3 - 800c3da: 4619 mov r1, r3 - 800c3dc: 6878 ldr r0, [r7, #4] - 800c3de: f7ff fd41 bl 800be64 - 800c3e2: 4603 mov r3, r0 - 800c3e4: 823b strh r3, [r7, #16] + 800c3f0: 8abb ldrh r3, [r7, #20] + 800c3f2: 3301 adds r3, #1 + 800c3f4: b29b uxth r3, r3 + 800c3f6: 4619 mov r1, r3 + 800c3f8: 6878 ldr r0, [r7, #4] + 800c3fa: f7ff fd41 bl 800be80 + 800c3fe: 4603 mov r3, r0 + 800c400: 823b strh r3, [r7, #16] if (received_crc != calculated_crc) { - 800c3e6: 8a7a ldrh r2, [r7, #18] - 800c3e8: 8a3b ldrh r3, [r7, #16] - 800c3ea: 429a cmp r2, r3 - 800c3ec: d005 beq.n 800c3fa + 800c402: 8a7a ldrh r2, [r7, #18] + 800c404: 8a3b ldrh r3, [r7, #16] + 800c406: 429a cmp r2, r3 + 800c408: d005 beq.n 800c416 log_printf(LOG_ERR, "Packet CRC error\n"); - 800c3ee: 491d ldr r1, [pc, #116] @ (800c464 ) - 800c3f0: 2004 movs r0, #4 - 800c3f2: f7fe f843 bl 800a47c + 800c40a: 491d ldr r1, [pc, #116] @ (800c480 ) + 800c40c: 2004 movs r0, #4 + 800c40e: f7fe f835 bl 800a47c return 0; - 800c3f6: 2300 movs r3, #0 - 800c3f8: e030 b.n 800c45c + 800c412: 2300 movs r3, #0 + 800c414: e030 b.n 800c478 } uint16_t expected_len = expected_payload_len(cmd); - 800c3fa: 7dfb ldrb r3, [r7, #23] - 800c3fc: 4618 mov r0, r3 - 800c3fe: f7ff feb1 bl 800c164 - 800c402: 4603 mov r3, r0 - 800c404: 81fb strh r3, [r7, #14] + 800c416: 7dfb ldrb r3, [r7, #23] + 800c418: 4618 mov r0, r3 + 800c41a: f7ff feb1 bl 800c180 + 800c41e: 4603 mov r3, r0 + 800c420: 81fb strh r3, [r7, #14] if (expected_len == 0xFFFF) { - 800c406: 89fb ldrh r3, [r7, #14] - 800c408: f64f 72ff movw r2, #65535 @ 0xffff - 800c40c: 4293 cmp r3, r2 - 800c40e: d107 bne.n 800c420 + 800c422: 89fb ldrh r3, [r7, #14] + 800c424: f64f 72ff movw r2, #65535 @ 0xffff + 800c428: 4293 cmp r3, r2 + 800c42a: d107 bne.n 800c43c log_printf(LOG_WARN, "Unknown cmd 0x%02x\n", cmd); - 800c410: 7dfb ldrb r3, [r7, #23] - 800c412: 461a mov r2, r3 - 800c414: 4914 ldr r1, [pc, #80] @ (800c468 ) - 800c416: 2005 movs r0, #5 - 800c418: f7fe f830 bl 800a47c + 800c42c: 7dfb ldrb r3, [r7, #23] + 800c42e: 461a mov r2, r3 + 800c430: 4914 ldr r1, [pc, #80] @ (800c484 ) + 800c432: 2005 movs r0, #5 + 800c434: f7fe f822 bl 800a47c return 0; - 800c41c: 2300 movs r3, #0 - 800c41e: e01d b.n 800c45c + 800c438: 2300 movs r3, #0 + 800c43a: e01d b.n 800c478 } if (expected_len != payload_len) { - 800c420: 89fa ldrh r2, [r7, #14] - 800c422: 8abb ldrh r3, [r7, #20] - 800c424: 429a cmp r2, r3 - 800c426: d007 beq.n 800c438 + 800c43c: 89fa ldrh r2, [r7, #14] + 800c43e: 8abb ldrh r3, [r7, #20] + 800c440: 429a cmp r2, r3 + 800c442: d007 beq.n 800c454 log_printf(LOG_ERR, "Packet len mismatch cmd=0x%02x\n", cmd); - 800c428: 7dfb ldrb r3, [r7, #23] - 800c42a: 461a mov r2, r3 - 800c42c: 490f ldr r1, [pc, #60] @ (800c46c ) - 800c42e: 2004 movs r0, #4 - 800c430: f7fe f824 bl 800a47c + 800c444: 7dfb ldrb r3, [r7, #23] + 800c446: 461a mov r2, r3 + 800c448: 490f ldr r1, [pc, #60] @ (800c488 ) + 800c44a: 2004 movs r0, #4 + 800c44c: f7fe f816 bl 800a47c return 0; - 800c434: 2300 movs r3, #0 - 800c436: e011 b.n 800c45c + 800c450: 2300 movs r3, #0 + 800c452: e011 b.n 800c478 } if (payload_len > 0) { - 800c438: 8abb ldrh r3, [r7, #20] - 800c43a: 2b00 cmp r3, #0 - 800c43c: d007 beq.n 800c44e + 800c454: 8abb ldrh r3, [r7, #20] + 800c456: 2b00 cmp r3, #0 + 800c458: d007 beq.n 800c46a apply_command(cmd, &packet[1], payload_len); - 800c43e: 687b ldr r3, [r7, #4] - 800c440: 1c59 adds r1, r3, #1 - 800c442: 8aba ldrh r2, [r7, #20] - 800c444: 7dfb ldrb r3, [r7, #23] - 800c446: 4618 mov r0, r3 - 800c448: f7ff fec8 bl 800c1dc - 800c44c: e005 b.n 800c45a + 800c45a: 687b ldr r3, [r7, #4] + 800c45c: 1c59 adds r1, r3, #1 + 800c45e: 8aba ldrh r2, [r7, #20] + 800c460: 7dfb ldrb r3, [r7, #23] + 800c462: 4618 mov r0, r3 + 800c464: f7ff fec8 bl 800c1f8 + 800c468: e005 b.n 800c476 } else { apply_command(cmd, NULL, 0); - 800c44e: 7dfb ldrb r3, [r7, #23] - 800c450: 2200 movs r2, #0 - 800c452: 2100 movs r1, #0 - 800c454: 4618 mov r0, r3 - 800c456: f7ff fec1 bl 800c1dc + 800c46a: 7dfb ldrb r3, [r7, #23] + 800c46c: 2200 movs r2, #0 + 800c46e: 2100 movs r1, #0 + 800c470: 4618 mov r0, r3 + 800c472: f7ff fec1 bl 800c1f8 } return 1; - 800c45a: 2301 movs r3, #1 + 800c476: 2301 movs r3, #1 } - 800c45c: 4618 mov r0, r3 - 800c45e: 3718 adds r7, #24 - 800c460: 46bd mov sp, r7 - 800c462: bd80 pop {r7, pc} - 800c464: 080143a0 .word 0x080143a0 - 800c468: 080143b4 .word 0x080143b4 - 800c46c: 080143c8 .word 0x080143c8 + 800c478: 4618 mov r0, r3 + 800c47a: 3718 adds r7, #24 + 800c47c: 46bd mov sp, r7 + 800c47e: bd80 pop {r7, pc} + 800c480: 080143bc .word 0x080143bc + 800c484: 080143d0 .word 0x080143d0 + 800c488: 080143e4 .word 0x080143e4 -0800c470 : +0800c48c : .fw_version_major = 0, .fw_version_minor = 0, .fw_version_patch = 0, }; void ReadVersion(){ - 800c470: b480 push {r7} - 800c472: af00 add r7, sp, #0 + 800c48c: b480 push {r7} + 800c48e: af00 add r7, sp, #0 infoPacket.serialNumber = InfoBlock->serialNumber; - 800c474: 4b0e ldr r3, [pc, #56] @ (800c4b0 ) - 800c476: 681b ldr r3, [r3, #0] - 800c478: 681b ldr r3, [r3, #0] - 800c47a: b29a uxth r2, r3 - 800c47c: 4b0d ldr r3, [pc, #52] @ (800c4b4 ) - 800c47e: 801a strh r2, [r3, #0] + 800c490: 4b0e ldr r3, [pc, #56] @ (800c4cc ) + 800c492: 681b ldr r3, [r3, #0] + 800c494: 681b ldr r3, [r3, #0] + 800c496: b29a uxth r2, r3 + 800c498: 4b0d ldr r3, [pc, #52] @ (800c4d0 ) + 800c49a: 801a strh r2, [r3, #0] infoPacket.boardVersion = InfoBlock->boardVersion; - 800c480: 4b0b ldr r3, [pc, #44] @ (800c4b0 ) - 800c482: 681b ldr r3, [r3, #0] - 800c484: 795a ldrb r2, [r3, #5] - 800c486: 4b0b ldr r3, [pc, #44] @ (800c4b4 ) - 800c488: 709a strb r2, [r3, #2] + 800c49c: 4b0b ldr r3, [pc, #44] @ (800c4cc ) + 800c49e: 681b ldr r3, [r3, #0] + 800c4a0: 795a ldrb r2, [r3, #5] + 800c4a2: 4b0b ldr r3, [pc, #44] @ (800c4d0 ) + 800c4a4: 709a strb r2, [r3, #2] infoPacket.stationType = InfoBlock->stationType; - 800c48a: 4b09 ldr r3, [pc, #36] @ (800c4b0 ) - 800c48c: 681b ldr r3, [r3, #0] - 800c48e: 791a ldrb r2, [r3, #4] - 800c490: 4b08 ldr r3, [pc, #32] @ (800c4b4 ) - 800c492: 70da strb r2, [r3, #3] + 800c4a6: 4b09 ldr r3, [pc, #36] @ (800c4cc ) + 800c4a8: 681b ldr r3, [r3, #0] + 800c4aa: 791a ldrb r2, [r3, #4] + 800c4ac: 4b08 ldr r3, [pc, #32] @ (800c4d0 ) + 800c4ae: 70da strb r2, [r3, #3] infoPacket.fw_version_major = FW_VERSION_MAJOR; - 800c494: 4b07 ldr r3, [pc, #28] @ (800c4b4 ) - 800c496: 2201 movs r2, #1 - 800c498: 809a strh r2, [r3, #4] + 800c4b0: 4b07 ldr r3, [pc, #28] @ (800c4d0 ) + 800c4b2: 2201 movs r2, #1 + 800c4b4: 809a strh r2, [r3, #4] infoPacket.fw_version_minor = FW_VERSION_MINOR; - 800c49a: 4b06 ldr r3, [pc, #24] @ (800c4b4 ) - 800c49c: 2200 movs r2, #0 - 800c49e: 80da strh r2, [r3, #6] + 800c4b6: 4b06 ldr r3, [pc, #24] @ (800c4d0 ) + 800c4b8: 2200 movs r2, #0 + 800c4ba: 80da strh r2, [r3, #6] infoPacket.fw_version_patch = FW_VERSION_PATCH; - 800c4a0: 4b04 ldr r3, [pc, #16] @ (800c4b4 ) - 800c4a2: 2205 movs r2, #5 - 800c4a4: 811a strh r2, [r3, #8] + 800c4bc: 4b04 ldr r3, [pc, #16] @ (800c4d0 ) + 800c4be: 2206 movs r2, #6 + 800c4c0: 811a strh r2, [r3, #8] } - 800c4a6: bf00 nop - 800c4a8: 46bd mov sp, r7 - 800c4aa: bc80 pop {r7} - 800c4ac: 4770 bx lr - 800c4ae: bf00 nop - 800c4b0: 20000000 .word 0x20000000 - 800c4b4: 20000eb8 .word 0x20000eb8 + 800c4c2: bf00 nop + 800c4c4: 46bd mov sp, r7 + 800c4c6: bc80 pop {r7} + 800c4c8: 4770 bx lr + 800c4ca: bf00 nop + 800c4cc: 20000000 .word 0x20000000 + 800c4d0: 20000eb8 .word 0x20000eb8 -0800c4b8 : +0800c4d4 : // Внешняя функция обработки команд (определена в serial_handler.c) extern void SC_CommandHandler(ReceivedCommand_t* cmd); void SC_Init() { - 800c4b8: b580 push {r7, lr} - 800c4ba: af00 add r7, sp, #0 + 800c4d4: b580 push {r7, lr} + 800c4d6: af00 add r7, sp, #0 // Обнуляем структуру memset(&serial_control, 0, sizeof(SerialControl_t)); - 800c4bc: f44f 7204 mov.w r2, #528 @ 0x210 - 800c4c0: 2100 movs r1, #0 - 800c4c2: 4805 ldr r0, [pc, #20] @ (800c4d8 ) - 800c4c4: f006 fdbc bl 8013040 + 800c4d8: f44f 7204 mov.w r2, #528 @ 0x210 + 800c4dc: 2100 movs r1, #0 + 800c4de: 4805 ldr r0, [pc, #20] @ (800c4f4 ) + 800c4e0: f006 fdbc bl 801305c memset(&serial_iso, 0, sizeof(serial_iso)); - 800c4c8: f44f 7204 mov.w r2, #528 @ 0x210 - 800c4cc: 2100 movs r1, #0 - 800c4ce: 4803 ldr r0, [pc, #12] @ (800c4dc ) - 800c4d0: f006 fdb6 bl 8013040 + 800c4e4: f44f 7204 mov.w r2, #528 @ 0x210 + 800c4e8: 2100 movs r1, #0 + 800c4ea: 4803 ldr r0, [pc, #12] @ (800c4f8 ) + 800c4ec: f006 fdb6 bl 801305c } - 800c4d4: bf00 nop - 800c4d6: bd80 pop {r7, pc} - 800c4d8: 20000a3c .word 0x20000a3c - 800c4dc: 20000c4c .word 0x20000c4c + 800c4f0: bf00 nop + 800c4f2: bd80 pop {r7, pc} + 800c4f4: 20000a3c .word 0x20000a3c + 800c4f8: 20000c4c .word 0x20000c4c -0800c4e0 : +0800c4fc : void SC_Task() { - 800c4e0: b580 push {r7, lr} - 800c4e2: af00 add r7, sp, #0 + 800c4fc: b580 push {r7, lr} + 800c4fe: af00 add r7, sp, #0 // Запуск приема в режиме прерывания с ожиданием idle if((huart2.RxState == HAL_UART_STATE_READY) && (serial_control.command_ready == 0)) HAL_UARTEx_ReceiveToIdle_IT(&huart2, serial_control.rx_buffer, MAX_RX_BUFFER_SIZE - 1); - 800c4e4: 4b2a ldr r3, [pc, #168] @ (800c590 ) - 800c4e6: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 800c4ea: b2db uxtb r3, r3 - 800c4ec: 2b20 cmp r3, #32 - 800c4ee: d10a bne.n 800c506 - 800c4f0: 4b28 ldr r3, [pc, #160] @ (800c594 ) - 800c4f2: f893 3208 ldrb.w r3, [r3, #520] @ 0x208 - 800c4f6: b2db uxtb r3, r3 - 800c4f8: 2b00 cmp r3, #0 - 800c4fa: d104 bne.n 800c506 - 800c4fc: 22ff movs r2, #255 @ 0xff - 800c4fe: 4926 ldr r1, [pc, #152] @ (800c598 ) - 800c500: 4823 ldr r0, [pc, #140] @ (800c590 ) - 800c502: f005 fcf1 bl 8011ee8 + 800c500: 4b2a ldr r3, [pc, #168] @ (800c5ac ) + 800c502: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 800c506: b2db uxtb r3, r3 + 800c508: 2b20 cmp r3, #32 + 800c50a: d10a bne.n 800c522 + 800c50c: 4b28 ldr r3, [pc, #160] @ (800c5b0 ) + 800c50e: f893 3208 ldrb.w r3, [r3, #520] @ 0x208 + 800c512: b2db uxtb r3, r3 + 800c514: 2b00 cmp r3, #0 + 800c516: d104 bne.n 800c522 + 800c518: 22ff movs r2, #255 @ 0xff + 800c51a: 4926 ldr r1, [pc, #152] @ (800c5b4 ) + 800c51c: 4823 ldr r0, [pc, #140] @ (800c5ac ) + 800c51e: f005 fcf1 bl 8011f04 if((huart5.RxState == HAL_UART_STATE_READY)) HAL_UARTEx_ReceiveToIdle_IT(&huart5, serial_iso.rx_buffer, MAX_RX_BUFFER_SIZE - 1); - 800c506: 4b25 ldr r3, [pc, #148] @ (800c59c ) - 800c508: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 800c50c: b2db uxtb r3, r3 - 800c50e: 2b20 cmp r3, #32 - 800c510: d104 bne.n 800c51c - 800c512: 22ff movs r2, #255 @ 0xff - 800c514: 4922 ldr r1, [pc, #136] @ (800c5a0 ) - 800c516: 4821 ldr r0, [pc, #132] @ (800c59c ) - 800c518: f005 fce6 bl 8011ee8 + 800c522: 4b25 ldr r3, [pc, #148] @ (800c5b8 ) + 800c524: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 800c528: b2db uxtb r3, r3 + 800c52a: 2b20 cmp r3, #32 + 800c52c: d104 bne.n 800c538 + 800c52e: 22ff movs r2, #255 @ 0xff + 800c530: 4922 ldr r1, [pc, #136] @ (800c5bc ) + 800c532: 4821 ldr r0, [pc, #132] @ (800c5b8 ) + 800c534: f005 fce6 bl 8011f04 // Проверка таймаута отправки пакета (больше 100 мс) if (huart2.gState == HAL_UART_STATE_BUSY_TX && serial_control.tx_tick != 0) { - 800c51c: 4b1c ldr r3, [pc, #112] @ (800c590 ) - 800c51e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 800c522: b2db uxtb r3, r3 - 800c524: 2b21 cmp r3, #33 @ 0x21 - 800c526: d119 bne.n 800c55c - 800c528: 4b1a ldr r3, [pc, #104] @ (800c594 ) - 800c52a: f8d3 320c ldr.w r3, [r3, #524] @ 0x20c - 800c52e: 2b00 cmp r3, #0 - 800c530: d014 beq.n 800c55c + 800c538: 4b1c ldr r3, [pc, #112] @ (800c5ac ) + 800c53a: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 800c53e: b2db uxtb r3, r3 + 800c540: 2b21 cmp r3, #33 @ 0x21 + 800c542: d119 bne.n 800c578 + 800c544: 4b1a ldr r3, [pc, #104] @ (800c5b0 ) + 800c546: f8d3 320c ldr.w r3, [r3, #524] @ 0x20c + 800c54a: 2b00 cmp r3, #0 + 800c54c: d014 beq.n 800c578 if ((HAL_GetTick() - serial_control.tx_tick) > 100) { - 800c532: f001 fa13 bl 800d95c - 800c536: 4602 mov r2, r0 - 800c538: 4b16 ldr r3, [pc, #88] @ (800c594 ) - 800c53a: f8d3 320c ldr.w r3, [r3, #524] @ 0x20c - 800c53e: 1ad3 subs r3, r2, r3 - 800c540: 2b64 cmp r3, #100 @ 0x64 - 800c542: d90b bls.n 800c55c + 800c54e: f001 fa13 bl 800d978 + 800c552: 4602 mov r2, r0 + 800c554: 4b16 ldr r3, [pc, #88] @ (800c5b0 ) + 800c556: f8d3 320c ldr.w r3, [r3, #524] @ 0x20c + 800c55a: 1ad3 subs r3, r2, r3 + 800c55c: 2b64 cmp r3, #100 @ 0x64 + 800c55e: d90b bls.n 800c578 // Таймаут: принудительно сбрасываем передачу HAL_UART_Abort_IT(&huart2); - 800c544: 4812 ldr r0, [pc, #72] @ (800c590 ) - 800c546: f005 fd2d bl 8011fa4 + 800c560: 4812 ldr r0, [pc, #72] @ (800c5ac ) + 800c562: f005 fd2d bl 8011fc0 // Выключаем DIR при сбросе передачи HAL_GPIO_WritePin(USART2_DIR_GPIO_Port, USART2_DIR_Pin, GPIO_PIN_RESET); - 800c54a: 2200 movs r2, #0 - 800c54c: 2110 movs r1, #16 - 800c54e: 4815 ldr r0, [pc, #84] @ (800c5a4 ) - 800c550: f003 fa15 bl 800f97e + 800c566: 2200 movs r2, #0 + 800c568: 2110 movs r1, #16 + 800c56a: 4815 ldr r0, [pc, #84] @ (800c5c0 ) + 800c56c: f003 fa15 bl 800f99a serial_control.tx_tick = 0; // Сбрасываем tick - 800c554: 4b0f ldr r3, [pc, #60] @ (800c594 ) - 800c556: 2200 movs r2, #0 - 800c558: f8c3 220c str.w r2, [r3, #524] @ 0x20c + 800c570: 4b0f ldr r3, [pc, #60] @ (800c5b0 ) + 800c572: 2200 movs r2, #0 + 800c574: f8c3 220c str.w r2, [r3, #524] @ 0x20c } } // Проверка наличия принятой команды для обработки if (serial_control.command_ready && (huart2.gState != HAL_UART_STATE_BUSY_TX)) { - 800c55c: 4b0d ldr r3, [pc, #52] @ (800c594 ) - 800c55e: f893 3208 ldrb.w r3, [r3, #520] @ 0x208 - 800c562: b2db uxtb r3, r3 - 800c564: 2b00 cmp r3, #0 - 800c566: d011 beq.n 800c58c - 800c568: 4b09 ldr r3, [pc, #36] @ (800c590 ) - 800c56a: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 800c56e: b2db uxtb r3, r3 - 800c570: 2b21 cmp r3, #33 @ 0x21 - 800c572: d00b beq.n 800c58c + 800c578: 4b0d ldr r3, [pc, #52] @ (800c5b0 ) + 800c57a: f893 3208 ldrb.w r3, [r3, #520] @ 0x208 + 800c57e: b2db uxtb r3, r3 + 800c580: 2b00 cmp r3, #0 + 800c582: d011 beq.n 800c5a8 + 800c584: 4b09 ldr r3, [pc, #36] @ (800c5ac ) + 800c586: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 800c58a: b2db uxtb r3, r3 + 800c58c: 2b21 cmp r3, #33 @ 0x21 + 800c58e: d00b beq.n 800c5a8 // HAL_Delay(2); SC_CommandHandler(&serial_control.received_command); - 800c574: 480c ldr r0, [pc, #48] @ (800c5a8 ) - 800c576: f000 f9ed bl 800c954 + 800c590: 480c ldr r0, [pc, #48] @ (800c5c4 ) + 800c592: f000 f9ed bl 800c970 HAL_UARTEx_ReceiveToIdle_IT(&huart2, serial_control.rx_buffer, MAX_RX_BUFFER_SIZE - 1); - 800c57a: 22ff movs r2, #255 @ 0xff - 800c57c: 4906 ldr r1, [pc, #24] @ (800c598 ) - 800c57e: 4804 ldr r0, [pc, #16] @ (800c590 ) - 800c580: f005 fcb2 bl 8011ee8 + 800c596: 22ff movs r2, #255 @ 0xff + 800c598: 4906 ldr r1, [pc, #24] @ (800c5b4 ) + 800c59a: 4804 ldr r0, [pc, #16] @ (800c5ac ) + 800c59c: f005 fcb2 bl 8011f04 serial_control.command_ready = 0; // Сбрасываем флаг - 800c584: 4b03 ldr r3, [pc, #12] @ (800c594 ) - 800c586: 2200 movs r2, #0 - 800c588: f883 2208 strb.w r2, [r3, #520] @ 0x208 + 800c5a0: 4b03 ldr r3, [pc, #12] @ (800c5b0 ) + 800c5a2: 2200 movs r2, #0 + 800c5a4: f883 2208 strb.w r2, [r3, #520] @ 0x208 } } - 800c58c: bf00 nop - 800c58e: bd80 pop {r7, pc} - 800c590: 20000fe8 .word 0x20000fe8 - 800c594: 20000a3c .word 0x20000a3c - 800c598: 20000b3c .word 0x20000b3c - 800c59c: 20000f58 .word 0x20000f58 - 800c5a0: 20000d4c .word 0x20000d4c - 800c5a4: 40011400 .word 0x40011400 - 800c5a8: 20000c3c .word 0x20000c3c + 800c5a8: bf00 nop + 800c5aa: bd80 pop {r7, pc} + 800c5ac: 20000fe8 .word 0x20000fe8 + 800c5b0: 20000a3c .word 0x20000a3c + 800c5b4: 20000b3c .word 0x20000b3c + 800c5b8: 20000f58 .word 0x20000f58 + 800c5bc: 20000d4c .word 0x20000d4c + 800c5c0: 40011400 .word 0x40011400 + 800c5c4: 20000c3c .word 0x20000c3c -0800c5ac : +0800c5c8 : void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) { - 800c5ac: b580 push {r7, lr} - 800c5ae: b082 sub sp, #8 - 800c5b0: af00 add r7, sp, #0 - 800c5b2: 6078 str r0, [r7, #4] - 800c5b4: 460b mov r3, r1 - 800c5b6: 807b strh r3, [r7, #2] + 800c5c8: b580 push {r7, lr} + 800c5ca: b082 sub sp, #8 + 800c5cc: af00 add r7, sp, #0 + 800c5ce: 6078 str r0, [r7, #4] + 800c5d0: 460b mov r3, r1 + 800c5d2: 807b strh r3, [r7, #2] if (huart->Instance == huart2.Instance) { - 800c5b8: 687b ldr r3, [r7, #4] - 800c5ba: 681a ldr r2, [r3, #0] - 800c5bc: 4b22 ldr r3, [pc, #136] @ (800c648 ) - 800c5be: 681b ldr r3, [r3, #0] - 800c5c0: 429a cmp r2, r3 - 800c5c2: d116 bne.n 800c5f2 + 800c5d4: 687b ldr r3, [r7, #4] + 800c5d6: 681a ldr r2, [r3, #0] + 800c5d8: 4b22 ldr r3, [pc, #136] @ (800c664 ) + 800c5da: 681b ldr r3, [r3, #0] + 800c5dc: 429a cmp r2, r3 + 800c5de: d116 bne.n 800c60e if(!process_received_packet(&serial_control, serial_control.rx_buffer, Size)){ - 800c5c4: 887b ldrh r3, [r7, #2] - 800c5c6: 461a mov r2, r3 - 800c5c8: 4920 ldr r1, [pc, #128] @ (800c64c ) - 800c5ca: 4821 ldr r0, [pc, #132] @ (800c650 ) - 800c5cc: f000 f98e bl 800c8ec - 800c5d0: 4603 mov r3, r0 - 800c5d2: 2b00 cmp r3, #0 - 800c5d4: d104 bne.n 800c5e0 + 800c5e0: 887b ldrh r3, [r7, #2] + 800c5e2: 461a mov r2, r3 + 800c5e4: 4920 ldr r1, [pc, #128] @ (800c668 ) + 800c5e6: 4821 ldr r0, [pc, #132] @ (800c66c ) + 800c5e8: f000 f98e bl 800c908 + 800c5ec: 4603 mov r3, r0 + 800c5ee: 2b00 cmp r3, #0 + 800c5f0: d104 bne.n 800c5fc SC_SendPacket(NULL, 0, RESP_INVALID); - 800c5d6: 2214 movs r2, #20 - 800c5d8: 2100 movs r1, #0 - 800c5da: 2000 movs r0, #0 - 800c5dc: f000 f8fa bl 800c7d4 + 800c5f2: 2214 movs r2, #20 + 800c5f4: 2100 movs r1, #0 + 800c5f6: 2000 movs r0, #0 + 800c5f8: f000 f8fa bl 800c7f0 } g_sc_command_source = SC_SOURCE_UART2; - 800c5e0: 4b1c ldr r3, [pc, #112] @ (800c654 ) - 800c5e2: 2200 movs r2, #0 - 800c5e4: 701a strb r2, [r3, #0] + 800c5fc: 4b1c ldr r3, [pc, #112] @ (800c670 ) + 800c5fe: 2200 movs r2, #0 + 800c600: 701a strb r2, [r3, #0] HAL_UARTEx_ReceiveToIdle_IT(&huart2, serial_control.rx_buffer, MAX_RX_BUFFER_SIZE - 1); - 800c5e6: 22ff movs r2, #255 @ 0xff - 800c5e8: 4918 ldr r1, [pc, #96] @ (800c64c ) - 800c5ea: 4817 ldr r0, [pc, #92] @ (800c648 ) - 800c5ec: f005 fc7c bl 8011ee8 + 800c602: 22ff movs r2, #255 @ 0xff + 800c604: 4918 ldr r1, [pc, #96] @ (800c668 ) + 800c606: 4817 ldr r0, [pc, #92] @ (800c664 ) + 800c608: f005 fc7c bl 8011f04 } HAL_UARTEx_ReceiveToIdle_IT(&huart5, serial_iso.rx_buffer, MAX_RX_BUFFER_SIZE - 1); } else if (huart->Instance == huart3.Instance) { CCS_RxEventCallback(huart, Size); } } - 800c5f0: e025 b.n 800c63e + 800c60c: e025 b.n 800c65a } else if (huart->Instance == huart5.Instance) { - 800c5f2: 687b ldr r3, [r7, #4] - 800c5f4: 681a ldr r2, [r3, #0] - 800c5f6: 4b18 ldr r3, [pc, #96] @ (800c658 ) - 800c5f8: 681b ldr r3, [r3, #0] - 800c5fa: 429a cmp r2, r3 - 800c5fc: d114 bne.n 800c628 + 800c60e: 687b ldr r3, [r7, #4] + 800c610: 681a ldr r2, [r3, #0] + 800c612: 4b18 ldr r3, [pc, #96] @ (800c674 ) + 800c614: 681b ldr r3, [r3, #0] + 800c616: 429a cmp r2, r3 + 800c618: d114 bne.n 800c644 if (process_received_packet(&serial_iso, serial_iso.rx_buffer, Size)) { - 800c5fe: 887b ldrh r3, [r7, #2] - 800c600: 461a mov r2, r3 - 800c602: 4916 ldr r1, [pc, #88] @ (800c65c ) - 800c604: 4816 ldr r0, [pc, #88] @ (800c660 ) - 800c606: f000 f971 bl 800c8ec - 800c60a: 4603 mov r3, r0 - 800c60c: 2b00 cmp r3, #0 - 800c60e: d005 beq.n 800c61c + 800c61a: 887b ldrh r3, [r7, #2] + 800c61c: 461a mov r2, r3 + 800c61e: 4916 ldr r1, [pc, #88] @ (800c678 ) + 800c620: 4816 ldr r0, [pc, #88] @ (800c67c ) + 800c622: f000 f971 bl 800c908 + 800c626: 4603 mov r3, r0 + 800c628: 2b00 cmp r3, #0 + 800c62a: d005 beq.n 800c638 g_sc_command_source = SC_SOURCE_UART5; - 800c610: 4b10 ldr r3, [pc, #64] @ (800c654 ) - 800c612: 2201 movs r2, #1 - 800c614: 701a strb r2, [r3, #0] + 800c62c: 4b10 ldr r3, [pc, #64] @ (800c670 ) + 800c62e: 2201 movs r2, #1 + 800c630: 701a strb r2, [r3, #0] SC_CommandHandler((ReceivedCommand_t*)&serial_iso.received_command); - 800c616: 4813 ldr r0, [pc, #76] @ (800c664 ) - 800c618: f000 f99c bl 800c954 + 800c632: 4813 ldr r0, [pc, #76] @ (800c680 ) + 800c634: f000 f99c bl 800c970 HAL_UARTEx_ReceiveToIdle_IT(&huart5, serial_iso.rx_buffer, MAX_RX_BUFFER_SIZE - 1); - 800c61c: 22ff movs r2, #255 @ 0xff - 800c61e: 490f ldr r1, [pc, #60] @ (800c65c ) - 800c620: 480d ldr r0, [pc, #52] @ (800c658 ) - 800c622: f005 fc61 bl 8011ee8 + 800c638: 22ff movs r2, #255 @ 0xff + 800c63a: 490f ldr r1, [pc, #60] @ (800c678 ) + 800c63c: 480d ldr r0, [pc, #52] @ (800c674 ) + 800c63e: f005 fc61 bl 8011f04 } - 800c626: e00a b.n 800c63e + 800c642: e00a b.n 800c65a } else if (huart->Instance == huart3.Instance) { - 800c628: 687b ldr r3, [r7, #4] - 800c62a: 681a ldr r2, [r3, #0] - 800c62c: 4b0e ldr r3, [pc, #56] @ (800c668 ) - 800c62e: 681b ldr r3, [r3, #0] - 800c630: 429a cmp r2, r3 - 800c632: d104 bne.n 800c63e + 800c644: 687b ldr r3, [r7, #4] + 800c646: 681a ldr r2, [r3, #0] + 800c648: 4b0e ldr r3, [pc, #56] @ (800c684 ) + 800c64a: 681b ldr r3, [r3, #0] + 800c64c: 429a cmp r2, r3 + 800c64e: d104 bne.n 800c65a CCS_RxEventCallback(huart, Size); - 800c634: 887b ldrh r3, [r7, #2] - 800c636: 4619 mov r1, r3 - 800c638: 6878 ldr r0, [r7, #4] - 800c63a: f7ff f9b9 bl 800b9b0 + 800c650: 887b ldrh r3, [r7, #2] + 800c652: 4619 mov r1, r3 + 800c654: 6878 ldr r0, [r7, #4] + 800c656: f7ff f9ab bl 800b9b0 } - 800c63e: bf00 nop - 800c640: 3708 adds r7, #8 - 800c642: 46bd mov sp, r7 - 800c644: bd80 pop {r7, pc} - 800c646: bf00 nop - 800c648: 20000fe8 .word 0x20000fe8 - 800c64c: 20000b3c .word 0x20000b3c - 800c650: 20000a3c .word 0x20000a3c - 800c654: 20000e5c .word 0x20000e5c - 800c658: 20000f58 .word 0x20000f58 - 800c65c: 20000d4c .word 0x20000d4c - 800c660: 20000c4c .word 0x20000c4c - 800c664: 20000e4c .word 0x20000e4c - 800c668: 20001030 .word 0x20001030 + 800c65a: bf00 nop + 800c65c: 3708 adds r7, #8 + 800c65e: 46bd mov sp, r7 + 800c660: bd80 pop {r7, pc} + 800c662: bf00 nop + 800c664: 20000fe8 .word 0x20000fe8 + 800c668: 20000b3c .word 0x20000b3c + 800c66c: 20000a3c .word 0x20000a3c + 800c670: 20000e5c .word 0x20000e5c + 800c674: 20000f58 .word 0x20000f58 + 800c678: 20000d4c .word 0x20000d4c + 800c67c: 20000c4c .word 0x20000c4c + 800c680: 20000e4c .word 0x20000e4c + 800c684: 20001030 .word 0x20001030 -0800c66c : +0800c688 : void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) { - 800c66c: b580 push {r7, lr} - 800c66e: b082 sub sp, #8 - 800c670: af00 add r7, sp, #0 - 800c672: 6078 str r0, [r7, #4] + 800c688: b580 push {r7, lr} + 800c68a: b082 sub sp, #8 + 800c68c: af00 add r7, sp, #0 + 800c68e: 6078 str r0, [r7, #4] if (huart->Instance == huart2.Instance) { - 800c674: 687b ldr r3, [r7, #4] - 800c676: 681a ldr r2, [r3, #0] - 800c678: 4b08 ldr r3, [pc, #32] @ (800c69c ) - 800c67a: 681b ldr r3, [r3, #0] - 800c67c: 429a cmp r2, r3 - 800c67e: d108 bne.n 800c692 + 800c690: 687b ldr r3, [r7, #4] + 800c692: 681a ldr r2, [r3, #0] + 800c694: 4b08 ldr r3, [pc, #32] @ (800c6b8 ) + 800c696: 681b ldr r3, [r3, #0] + 800c698: 429a cmp r2, r3 + 800c69a: d108 bne.n 800c6ae HAL_GPIO_WritePin(USART2_DIR_GPIO_Port, USART2_DIR_Pin, GPIO_PIN_RESET); - 800c680: 2200 movs r2, #0 - 800c682: 2110 movs r1, #16 - 800c684: 4806 ldr r0, [pc, #24] @ (800c6a0 ) - 800c686: f003 f97a bl 800f97e + 800c69c: 2200 movs r2, #0 + 800c69e: 2110 movs r1, #16 + 800c6a0: 4806 ldr r0, [pc, #24] @ (800c6bc ) + 800c6a2: f003 f97a bl 800f99a serial_control.tx_tick = 0; - 800c68a: 4b06 ldr r3, [pc, #24] @ (800c6a4 ) - 800c68c: 2200 movs r2, #0 - 800c68e: f8c3 220c str.w r2, [r3, #524] @ 0x20c + 800c6a6: 4b06 ldr r3, [pc, #24] @ (800c6c0 ) + 800c6a8: 2200 movs r2, #0 + 800c6aa: f8c3 220c str.w r2, [r3, #524] @ 0x20c } } - 800c692: bf00 nop - 800c694: 3708 adds r7, #8 - 800c696: 46bd mov sp, r7 - 800c698: bd80 pop {r7, pc} - 800c69a: bf00 nop - 800c69c: 20000fe8 .word 0x20000fe8 - 800c6a0: 40011400 .word 0x40011400 - 800c6a4: 20000a3c .word 0x20000a3c + 800c6ae: bf00 nop + 800c6b0: 3708 adds r7, #8 + 800c6b2: 46bd mov sp, r7 + 800c6b4: bd80 pop {r7, pc} + 800c6b6: bf00 nop + 800c6b8: 20000fe8 .word 0x20000fe8 + 800c6bc: 40011400 .word 0x40011400 + 800c6c0: 20000a3c .word 0x20000a3c -0800c6a8 : +0800c6c4 : // Приватные функции реализации // Полностью программная реализация CRC-32 (полином CRC32_POLYNOMIAL, порядок little-endian) static uint32_t calculate_crc32(const uint8_t* data, uint16_t length) { - 800c6a8: b480 push {r7} - 800c6aa: b085 sub sp, #20 - 800c6ac: af00 add r7, sp, #0 - 800c6ae: 6078 str r0, [r7, #4] - 800c6b0: 460b mov r3, r1 - 800c6b2: 807b strh r3, [r7, #2] + 800c6c4: b480 push {r7} + 800c6c6: b085 sub sp, #20 + 800c6c8: af00 add r7, sp, #0 + 800c6ca: 6078 str r0, [r7, #4] + 800c6cc: 460b mov r3, r1 + 800c6ce: 807b strh r3, [r7, #2] uint32_t crc = 0xFFFFFFFFu; - 800c6b4: f04f 33ff mov.w r3, #4294967295 - 800c6b8: 60fb str r3, [r7, #12] + 800c6d0: f04f 33ff mov.w r3, #4294967295 + 800c6d4: 60fb str r3, [r7, #12] for (uint16_t i = 0; i < length; i++) { - 800c6ba: 2300 movs r3, #0 - 800c6bc: 817b strh r3, [r7, #10] - 800c6be: e021 b.n 800c704 + 800c6d6: 2300 movs r3, #0 + 800c6d8: 817b strh r3, [r7, #10] + 800c6da: e021 b.n 800c720 crc ^= data[i]; - 800c6c0: 897b ldrh r3, [r7, #10] - 800c6c2: 687a ldr r2, [r7, #4] - 800c6c4: 4413 add r3, r2 - 800c6c6: 781b ldrb r3, [r3, #0] - 800c6c8: 461a mov r2, r3 - 800c6ca: 68fb ldr r3, [r7, #12] - 800c6cc: 4053 eors r3, r2 - 800c6ce: 60fb str r3, [r7, #12] + 800c6dc: 897b ldrh r3, [r7, #10] + 800c6de: 687a ldr r2, [r7, #4] + 800c6e0: 4413 add r3, r2 + 800c6e2: 781b ldrb r3, [r3, #0] + 800c6e4: 461a mov r2, r3 + 800c6e6: 68fb ldr r3, [r7, #12] + 800c6e8: 4053 eors r3, r2 + 800c6ea: 60fb str r3, [r7, #12] for (uint8_t bit = 0; bit < 8; bit++) { - 800c6d0: 2300 movs r3, #0 - 800c6d2: 727b strb r3, [r7, #9] - 800c6d4: e010 b.n 800c6f8 + 800c6ec: 2300 movs r3, #0 + 800c6ee: 727b strb r3, [r7, #9] + 800c6f0: e010 b.n 800c714 if (crc & 0x1u) { - 800c6d6: 68fb ldr r3, [r7, #12] - 800c6d8: f003 0301 and.w r3, r3, #1 - 800c6dc: 2b00 cmp r3, #0 - 800c6de: d005 beq.n 800c6ec + 800c6f2: 68fb ldr r3, [r7, #12] + 800c6f4: f003 0301 and.w r3, r3, #1 + 800c6f8: 2b00 cmp r3, #0 + 800c6fa: d005 beq.n 800c708 crc = (crc >> 1) ^ CRC32_POLYNOMIAL; - 800c6e0: 68fb ldr r3, [r7, #12] - 800c6e2: 085a lsrs r2, r3, #1 - 800c6e4: 4b0d ldr r3, [pc, #52] @ (800c71c ) - 800c6e6: 4053 eors r3, r2 - 800c6e8: 60fb str r3, [r7, #12] - 800c6ea: e002 b.n 800c6f2 + 800c6fc: 68fb ldr r3, [r7, #12] + 800c6fe: 085a lsrs r2, r3, #1 + 800c700: 4b0d ldr r3, [pc, #52] @ (800c738 ) + 800c702: 4053 eors r3, r2 + 800c704: 60fb str r3, [r7, #12] + 800c706: e002 b.n 800c70e } else { crc >>= 1; - 800c6ec: 68fb ldr r3, [r7, #12] - 800c6ee: 085b lsrs r3, r3, #1 - 800c6f0: 60fb str r3, [r7, #12] + 800c708: 68fb ldr r3, [r7, #12] + 800c70a: 085b lsrs r3, r3, #1 + 800c70c: 60fb str r3, [r7, #12] for (uint8_t bit = 0; bit < 8; bit++) { - 800c6f2: 7a7b ldrb r3, [r7, #9] - 800c6f4: 3301 adds r3, #1 - 800c6f6: 727b strb r3, [r7, #9] - 800c6f8: 7a7b ldrb r3, [r7, #9] - 800c6fa: 2b07 cmp r3, #7 - 800c6fc: d9eb bls.n 800c6d6 + 800c70e: 7a7b ldrb r3, [r7, #9] + 800c710: 3301 adds r3, #1 + 800c712: 727b strb r3, [r7, #9] + 800c714: 7a7b ldrb r3, [r7, #9] + 800c716: 2b07 cmp r3, #7 + 800c718: d9eb bls.n 800c6f2 for (uint16_t i = 0; i < length; i++) { - 800c6fe: 897b ldrh r3, [r7, #10] - 800c700: 3301 adds r3, #1 - 800c702: 817b strh r3, [r7, #10] - 800c704: 897a ldrh r2, [r7, #10] - 800c706: 887b ldrh r3, [r7, #2] - 800c708: 429a cmp r2, r3 - 800c70a: d3d9 bcc.n 800c6c0 + 800c71a: 897b ldrh r3, [r7, #10] + 800c71c: 3301 adds r3, #1 + 800c71e: 817b strh r3, [r7, #10] + 800c720: 897a ldrh r2, [r7, #10] + 800c722: 887b ldrh r3, [r7, #2] + 800c724: 429a cmp r2, r3 + 800c726: d3d9 bcc.n 800c6dc } } } return crc ^ 0xFFFFFFFFu; - 800c70c: 68fb ldr r3, [r7, #12] - 800c70e: 43db mvns r3, r3 + 800c728: 68fb ldr r3, [r7, #12] + 800c72a: 43db mvns r3, r3 } - 800c710: 4618 mov r0, r3 - 800c712: 3714 adds r7, #20 - 800c714: 46bd mov sp, r7 - 800c716: bc80 pop {r7} - 800c718: 4770 bx lr - 800c71a: bf00 nop - 800c71c: edb88320 .word 0xedb88320 + 800c72c: 4618 mov r0, r3 + 800c72e: 3714 adds r7, #20 + 800c730: 46bd mov sp, r7 + 800c732: bc80 pop {r7} + 800c734: 4770 bx lr + 800c736: bf00 nop + 800c738: edb88320 .word 0xedb88320 -0800c720 : +0800c73c : static uint16_t encode_packet(const uint8_t* payload, uint16_t payload_len, uint8_t* output, uint8_t response_code) { - 800c720: b580 push {r7, lr} - 800c722: b088 sub sp, #32 - 800c724: af00 add r7, sp, #0 - 800c726: 60f8 str r0, [r7, #12] - 800c728: 607a str r2, [r7, #4] - 800c72a: 461a mov r2, r3 - 800c72c: 460b mov r3, r1 - 800c72e: 817b strh r3, [r7, #10] - 800c730: 4613 mov r3, r2 - 800c732: 727b strb r3, [r7, #9] + 800c73c: b580 push {r7, lr} + 800c73e: b088 sub sp, #32 + 800c740: af00 add r7, sp, #0 + 800c742: 60f8 str r0, [r7, #12] + 800c744: 607a str r2, [r7, #4] + 800c746: 461a mov r2, r3 + 800c748: 460b mov r3, r1 + 800c74a: 817b strh r3, [r7, #10] + 800c74c: 4613 mov r3, r2 + 800c74e: 727b strb r3, [r7, #9] uint16_t out_index = 0; - 800c734: 2300 movs r3, #0 - 800c736: 83fb strh r3, [r7, #30] + 800c750: 2300 movs r3, #0 + 800c752: 83fb strh r3, [r7, #30] output[out_index++] = response_code; - 800c738: 8bfb ldrh r3, [r7, #30] - 800c73a: 1c5a adds r2, r3, #1 - 800c73c: 83fa strh r2, [r7, #30] - 800c73e: 461a mov r2, r3 - 800c740: 687b ldr r3, [r7, #4] - 800c742: 4413 add r3, r2 - 800c744: 7a7a ldrb r2, [r7, #9] - 800c746: 701a strb r2, [r3, #0] + 800c754: 8bfb ldrh r3, [r7, #30] + 800c756: 1c5a adds r2, r3, #1 + 800c758: 83fa strh r2, [r7, #30] + 800c75a: 461a mov r2, r3 + 800c75c: 687b ldr r3, [r7, #4] + 800c75e: 4413 add r3, r2 + 800c760: 7a7a ldrb r2, [r7, #9] + 800c762: 701a strb r2, [r3, #0] if (payload != NULL) { - 800c748: 68fb ldr r3, [r7, #12] - 800c74a: 2b00 cmp r3, #0 - 800c74c: d019 beq.n 800c782 + 800c764: 68fb ldr r3, [r7, #12] + 800c766: 2b00 cmp r3, #0 + 800c768: d019 beq.n 800c79e // Просто копируем полезную нагрузку без какого‑либо экранирования for (uint16_t i = 0; i < payload_len; i++) { - 800c74e: 2300 movs r3, #0 - 800c750: 83bb strh r3, [r7, #28] - 800c752: e012 b.n 800c77a + 800c76a: 2300 movs r3, #0 + 800c76c: 83bb strh r3, [r7, #28] + 800c76e: e012 b.n 800c796 output[out_index++] = payload[i]; - 800c754: 8bbb ldrh r3, [r7, #28] - 800c756: 68fa ldr r2, [r7, #12] - 800c758: 441a add r2, r3 - 800c75a: 8bfb ldrh r3, [r7, #30] - 800c75c: 1c59 adds r1, r3, #1 - 800c75e: 83f9 strh r1, [r7, #30] - 800c760: 4619 mov r1, r3 - 800c762: 687b ldr r3, [r7, #4] - 800c764: 440b add r3, r1 - 800c766: 7812 ldrb r2, [r2, #0] - 800c768: 701a strb r2, [r3, #0] + 800c770: 8bbb ldrh r3, [r7, #28] + 800c772: 68fa ldr r2, [r7, #12] + 800c774: 441a add r2, r3 + 800c776: 8bfb ldrh r3, [r7, #30] + 800c778: 1c59 adds r1, r3, #1 + 800c77a: 83f9 strh r1, [r7, #30] + 800c77c: 4619 mov r1, r3 + 800c77e: 687b ldr r3, [r7, #4] + 800c780: 440b add r3, r1 + 800c782: 7812 ldrb r2, [r2, #0] + 800c784: 701a strb r2, [r3, #0] // Проверка переполнения if (out_index >= MAX_TX_BUFFER_SIZE - 5) { // 4 байта CRC + END_BYTE - 800c76a: 8bfb ldrh r3, [r7, #30] - 800c76c: 2bfa cmp r3, #250 @ 0xfa - 800c76e: d901 bls.n 800c774 + 800c786: 8bfb ldrh r3, [r7, #30] + 800c788: 2bfa cmp r3, #250 @ 0xfa + 800c78a: d901 bls.n 800c790 return 0; - 800c770: 2300 movs r3, #0 - 800c772: e02a b.n 800c7ca + 800c78c: 2300 movs r3, #0 + 800c78e: e02a b.n 800c7e6 for (uint16_t i = 0; i < payload_len; i++) { - 800c774: 8bbb ldrh r3, [r7, #28] - 800c776: 3301 adds r3, #1 - 800c778: 83bb strh r3, [r7, #28] - 800c77a: 8bba ldrh r2, [r7, #28] - 800c77c: 897b ldrh r3, [r7, #10] - 800c77e: 429a cmp r2, r3 - 800c780: d3e8 bcc.n 800c754 + 800c790: 8bbb ldrh r3, [r7, #28] + 800c792: 3301 adds r3, #1 + 800c794: 83bb strh r3, [r7, #28] + 800c796: 8bba ldrh r2, [r7, #28] + 800c798: 897b ldrh r3, [r7, #10] + 800c79a: 429a cmp r2, r3 + 800c79c: d3e8 bcc.n 800c770 } } } // Вычисляем CRC для всего содержимого (код ответа + полезная нагрузка) uint32_t crc = calculate_crc32(output, out_index); - 800c782: 8bfb ldrh r3, [r7, #30] - 800c784: 4619 mov r1, r3 - 800c786: 6878 ldr r0, [r7, #4] - 800c788: f7ff ff8e bl 800c6a8 - 800c78c: 4603 mov r3, r0 - 800c78e: 613b str r3, [r7, #16] + 800c79e: 8bfb ldrh r3, [r7, #30] + 800c7a0: 4619 mov r1, r3 + 800c7a2: 6878 ldr r0, [r7, #4] + 800c7a4: f7ff ff8e bl 800c6c4 + 800c7a8: 4603 mov r3, r0 + 800c7aa: 613b str r3, [r7, #16] uint8_t* crc_bytes = (uint8_t*)&crc; - 800c790: f107 0310 add.w r3, r7, #16 - 800c794: 617b str r3, [r7, #20] + 800c7ac: f107 0310 add.w r3, r7, #16 + 800c7b0: 617b str r3, [r7, #20] // Добавляем CRC без экранирования for (int i = 0; i < 4; i++) { - 800c796: 2300 movs r3, #0 - 800c798: 61bb str r3, [r7, #24] - 800c79a: e012 b.n 800c7c2 + 800c7b2: 2300 movs r3, #0 + 800c7b4: 61bb str r3, [r7, #24] + 800c7b6: e012 b.n 800c7de output[out_index++] = crc_bytes[i]; - 800c79c: 69bb ldr r3, [r7, #24] - 800c79e: 697a ldr r2, [r7, #20] - 800c7a0: 441a add r2, r3 - 800c7a2: 8bfb ldrh r3, [r7, #30] - 800c7a4: 1c59 adds r1, r3, #1 - 800c7a6: 83f9 strh r1, [r7, #30] - 800c7a8: 4619 mov r1, r3 - 800c7aa: 687b ldr r3, [r7, #4] - 800c7ac: 440b add r3, r1 - 800c7ae: 7812 ldrb r2, [r2, #0] - 800c7b0: 701a strb r2, [r3, #0] + 800c7b8: 69bb ldr r3, [r7, #24] + 800c7ba: 697a ldr r2, [r7, #20] + 800c7bc: 441a add r2, r3 + 800c7be: 8bfb ldrh r3, [r7, #30] + 800c7c0: 1c59 adds r1, r3, #1 + 800c7c2: 83f9 strh r1, [r7, #30] + 800c7c4: 4619 mov r1, r3 + 800c7c6: 687b ldr r3, [r7, #4] + 800c7c8: 440b add r3, r1 + 800c7ca: 7812 ldrb r2, [r2, #0] + 800c7cc: 701a strb r2, [r3, #0] if (out_index >= MAX_TX_BUFFER_SIZE - 1) { // место для END_BYTE - 800c7b2: 8bfb ldrh r3, [r7, #30] - 800c7b4: 2bfe cmp r3, #254 @ 0xfe - 800c7b6: d901 bls.n 800c7bc + 800c7ce: 8bfb ldrh r3, [r7, #30] + 800c7d0: 2bfe cmp r3, #254 @ 0xfe + 800c7d2: d901 bls.n 800c7d8 return 0; - 800c7b8: 2300 movs r3, #0 - 800c7ba: e006 b.n 800c7ca + 800c7d4: 2300 movs r3, #0 + 800c7d6: e006 b.n 800c7e6 for (int i = 0; i < 4; i++) { - 800c7bc: 69bb ldr r3, [r7, #24] - 800c7be: 3301 adds r3, #1 - 800c7c0: 61bb str r3, [r7, #24] - 800c7c2: 69bb ldr r3, [r7, #24] - 800c7c4: 2b03 cmp r3, #3 - 800c7c6: dde9 ble.n 800c79c + 800c7d8: 69bb ldr r3, [r7, #24] + 800c7da: 3301 adds r3, #1 + 800c7dc: 61bb str r3, [r7, #24] + 800c7de: 69bb ldr r3, [r7, #24] + 800c7e0: 2b03 cmp r3, #3 + 800c7e2: dde9 ble.n 800c7b8 } } return out_index; - 800c7c8: 8bfb ldrh r3, [r7, #30] + 800c7e4: 8bfb ldrh r3, [r7, #30] } - 800c7ca: 4618 mov r0, r3 - 800c7cc: 3720 adds r7, #32 - 800c7ce: 46bd mov sp, r7 - 800c7d0: bd80 pop {r7, pc} + 800c7e6: 4618 mov r0, r3 + 800c7e8: 3720 adds r7, #32 + 800c7ea: 46bd mov sp, r7 + 800c7ec: bd80 pop {r7, pc} ... -0800c7d4 : +0800c7f0 : void SC_SendPacket(const uint8_t* payload, uint16_t payload_len, uint8_t response_code) { - 800c7d4: b580 push {r7, lr} - 800c7d6: b084 sub sp, #16 - 800c7d8: af00 add r7, sp, #0 - 800c7da: 6078 str r0, [r7, #4] - 800c7dc: 460b mov r3, r1 - 800c7de: 807b strh r3, [r7, #2] - 800c7e0: 4613 mov r3, r2 - 800c7e2: 707b strb r3, [r7, #1] + 800c7f0: b580 push {r7, lr} + 800c7f2: b084 sub sp, #16 + 800c7f4: af00 add r7, sp, #0 + 800c7f6: 6078 str r0, [r7, #4] + 800c7f8: 460b mov r3, r1 + 800c7fa: 807b strh r3, [r7, #2] + 800c7fc: 4613 mov r3, r2 + 800c7fe: 707b strb r3, [r7, #1] uint16_t packet_len = encode_packet(payload, payload_len, serial_control.tx_buffer, response_code); - 800c7e4: 787b ldrb r3, [r7, #1] - 800c7e6: 8879 ldrh r1, [r7, #2] - 800c7e8: 4a15 ldr r2, [pc, #84] @ (800c840 ) - 800c7ea: 6878 ldr r0, [r7, #4] - 800c7ec: f7ff ff98 bl 800c720 - 800c7f0: 4603 mov r3, r0 - 800c7f2: 81fb strh r3, [r7, #14] + 800c800: 787b ldrb r3, [r7, #1] + 800c802: 8879 ldrh r1, [r7, #2] + 800c804: 4a15 ldr r2, [pc, #84] @ (800c85c ) + 800c806: 6878 ldr r0, [r7, #4] + 800c808: f7ff ff98 bl 800c73c + 800c80c: 4603 mov r3, r0 + 800c80e: 81fb strh r3, [r7, #14] if (packet_len > 0) { - 800c7f4: 89fb ldrh r3, [r7, #14] - 800c7f6: 2b00 cmp r3, #0 - 800c7f8: d01e beq.n 800c838 + 800c810: 89fb ldrh r3, [r7, #14] + 800c812: 2b00 cmp r3, #0 + 800c814: d01e beq.n 800c854 if (huart2.gState == HAL_UART_STATE_BUSY_TX) { - 800c7fa: 4b12 ldr r3, [pc, #72] @ (800c844 ) - 800c7fc: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 800c800: b2db uxtb r3, r3 - 800c802: 2b21 cmp r3, #33 @ 0x21 - 800c804: d107 bne.n 800c816 + 800c816: 4b12 ldr r3, [pc, #72] @ (800c860 ) + 800c818: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 800c81c: b2db uxtb r3, r3 + 800c81e: 2b21 cmp r3, #33 @ 0x21 + 800c820: d107 bne.n 800c832 HAL_UART_Abort_IT(&huart2); - 800c806: 480f ldr r0, [pc, #60] @ (800c844 ) - 800c808: f005 fbcc bl 8011fa4 + 800c822: 480f ldr r0, [pc, #60] @ (800c860 ) + 800c824: f005 fbcc bl 8011fc0 HAL_GPIO_WritePin(USART2_DIR_GPIO_Port, USART2_DIR_Pin, GPIO_PIN_RESET); - 800c80c: 2200 movs r2, #0 - 800c80e: 2110 movs r1, #16 - 800c810: 480d ldr r0, [pc, #52] @ (800c848 ) - 800c812: f003 f8b4 bl 800f97e + 800c828: 2200 movs r2, #0 + 800c82a: 2110 movs r1, #16 + 800c82c: 480d ldr r0, [pc, #52] @ (800c864 ) + 800c82e: f003 f8b4 bl 800f99a } HAL_GPIO_WritePin(USART2_DIR_GPIO_Port, USART2_DIR_Pin, GPIO_PIN_SET); - 800c816: 2201 movs r2, #1 - 800c818: 2110 movs r1, #16 - 800c81a: 480b ldr r0, [pc, #44] @ (800c848 ) - 800c81c: f003 f8af bl 800f97e + 800c832: 2201 movs r2, #1 + 800c834: 2110 movs r1, #16 + 800c836: 480b ldr r0, [pc, #44] @ (800c864 ) + 800c838: f003 f8af bl 800f99a HAL_UART_Transmit_IT(&huart2, serial_control.tx_buffer, packet_len); - 800c820: 89fb ldrh r3, [r7, #14] - 800c822: 461a mov r2, r3 - 800c824: 4906 ldr r1, [pc, #24] @ (800c840 ) - 800c826: 4807 ldr r0, [pc, #28] @ (800c844 ) - 800c828: f005 fb29 bl 8011e7e + 800c83c: 89fb ldrh r3, [r7, #14] + 800c83e: 461a mov r2, r3 + 800c840: 4906 ldr r1, [pc, #24] @ (800c85c ) + 800c842: 4807 ldr r0, [pc, #28] @ (800c860 ) + 800c844: f005 fb29 bl 8011e9a serial_control.tx_tick = HAL_GetTick(); - 800c82c: f001 f896 bl 800d95c - 800c830: 4603 mov r3, r0 - 800c832: 4a03 ldr r2, [pc, #12] @ (800c840 ) - 800c834: f8c2 320c str.w r3, [r2, #524] @ 0x20c + 800c848: f001 f896 bl 800d978 + 800c84c: 4603 mov r3, r0 + 800c84e: 4a03 ldr r2, [pc, #12] @ (800c85c ) + 800c850: f8c2 320c str.w r3, [r2, #524] @ 0x20c } } - 800c838: bf00 nop - 800c83a: 3710 adds r7, #16 - 800c83c: 46bd mov sp, r7 - 800c83e: bd80 pop {r7, pc} - 800c840: 20000a3c .word 0x20000a3c - 800c844: 20000fe8 .word 0x20000fe8 - 800c848: 40011400 .word 0x40011400 + 800c854: bf00 nop + 800c856: 3710 adds r7, #16 + 800c858: 46bd mov sp, r7 + 800c85a: bd80 pop {r7, pc} + 800c85c: 20000a3c .word 0x20000a3c + 800c860: 20000fe8 .word 0x20000fe8 + 800c864: 40011400 .word 0x40011400 -0800c84c : +0800c868 : static uint8_t parse_packet(const uint8_t* packet_data, uint16_t packet_len, ReceivedCommand_t* out_cmd) { - 800c84c: b580 push {r7, lr} - 800c84e: b088 sub sp, #32 - 800c850: af00 add r7, sp, #0 - 800c852: 60f8 str r0, [r7, #12] - 800c854: 460b mov r3, r1 - 800c856: 607a str r2, [r7, #4] - 800c858: 817b strh r3, [r7, #10] + 800c868: b580 push {r7, lr} + 800c86a: b088 sub sp, #32 + 800c86c: af00 add r7, sp, #0 + 800c86e: 60f8 str r0, [r7, #12] + 800c870: 460b mov r3, r1 + 800c872: 607a str r2, [r7, #4] + 800c874: 817b strh r3, [r7, #10] // }else{ // test_crc_invalid = 5; // } // Минимальный размер: 1 байт команды + 4 байта CRC if (packet_len < 5) return 0; - 800c85a: 897b ldrh r3, [r7, #10] - 800c85c: 2b04 cmp r3, #4 - 800c85e: d801 bhi.n 800c864 - 800c860: 2300 movs r3, #0 - 800c862: e03f b.n 800c8e4 + 800c876: 897b ldrh r3, [r7, #10] + 800c878: 2b04 cmp r3, #4 + 800c87a: d801 bhi.n 800c880 + 800c87c: 2300 movs r3, #0 + 800c87e: e03f b.n 800c900 if (packet_len > MAX_RX_BUFFER_SIZE) return 0; - 800c864: 897b ldrh r3, [r7, #10] - 800c866: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 800c86a: d901 bls.n 800c870 - 800c86c: 2300 movs r3, #0 - 800c86e: e039 b.n 800c8e4 + 800c880: 897b ldrh r3, [r7, #10] + 800c882: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 800c886: d901 bls.n 800c88c + 800c888: 2300 movs r3, #0 + 800c88a: e039 b.n 800c900 uint16_t payload_length = packet_len - 4; - 800c870: 897b ldrh r3, [r7, #10] - 800c872: 3b04 subs r3, #4 - 800c874: 83fb strh r3, [r7, #30] + 800c88c: 897b ldrh r3, [r7, #10] + 800c88e: 3b04 subs r3, #4 + 800c890: 83fb strh r3, [r7, #30] // Извлекаем принятую CRC (последние 4 байта, little-endian) uint32_t received_checksum = ((uint32_t)packet_data[payload_length] << 0) | - 800c876: 8bfb ldrh r3, [r7, #30] - 800c878: 68fa ldr r2, [r7, #12] - 800c87a: 4413 add r3, r2 - 800c87c: 781b ldrb r3, [r3, #0] - 800c87e: 4619 mov r1, r3 - ((uint32_t)packet_data[payload_length + 1] << 8) | - 800c880: 8bfb ldrh r3, [r7, #30] - 800c882: 3301 adds r3, #1 - 800c884: 68fa ldr r2, [r7, #12] - 800c886: 4413 add r3, r2 - 800c888: 781b ldrb r3, [r3, #0] - 800c88a: 021b lsls r3, r3, #8 - ((uint32_t)packet_data[payload_length] << 0) | - 800c88c: ea41 0203 orr.w r2, r1, r3 - ((uint32_t)packet_data[payload_length + 2] << 16) | - 800c890: 8bfb ldrh r3, [r7, #30] - 800c892: 3302 adds r3, #2 - 800c894: 68f9 ldr r1, [r7, #12] - 800c896: 440b add r3, r1 + 800c892: 8bfb ldrh r3, [r7, #30] + 800c894: 68fa ldr r2, [r7, #12] + 800c896: 4413 add r3, r2 800c898: 781b ldrb r3, [r3, #0] - 800c89a: 041b lsls r3, r3, #16 + 800c89a: 4619 mov r1, r3 ((uint32_t)packet_data[payload_length + 1] << 8) | - 800c89c: 431a orrs r2, r3 + 800c89c: 8bfb ldrh r3, [r7, #30] + 800c89e: 3301 adds r3, #1 + 800c8a0: 68fa ldr r2, [r7, #12] + 800c8a2: 4413 add r3, r2 + 800c8a4: 781b ldrb r3, [r3, #0] + 800c8a6: 021b lsls r3, r3, #8 + ((uint32_t)packet_data[payload_length] << 0) | + 800c8a8: ea41 0203 orr.w r2, r1, r3 + ((uint32_t)packet_data[payload_length + 2] << 16) | + 800c8ac: 8bfb ldrh r3, [r7, #30] + 800c8ae: 3302 adds r3, #2 + 800c8b0: 68f9 ldr r1, [r7, #12] + 800c8b2: 440b add r3, r1 + 800c8b4: 781b ldrb r3, [r3, #0] + 800c8b6: 041b lsls r3, r3, #16 + ((uint32_t)packet_data[payload_length + 1] << 8) | + 800c8b8: 431a orrs r2, r3 ((uint32_t)packet_data[payload_length + 3] << 24); - 800c89e: 8bfb ldrh r3, [r7, #30] - 800c8a0: 3303 adds r3, #3 - 800c8a2: 68f9 ldr r1, [r7, #12] - 800c8a4: 440b add r3, r1 - 800c8a6: 781b ldrb r3, [r3, #0] - 800c8a8: 061b lsls r3, r3, #24 + 800c8ba: 8bfb ldrh r3, [r7, #30] + 800c8bc: 3303 adds r3, #3 + 800c8be: 68f9 ldr r1, [r7, #12] + 800c8c0: 440b add r3, r1 + 800c8c2: 781b ldrb r3, [r3, #0] + 800c8c4: 061b lsls r3, r3, #24 uint32_t received_checksum = - 800c8aa: 4313 orrs r3, r2 - 800c8ac: 61bb str r3, [r7, #24] + 800c8c6: 4313 orrs r3, r2 + 800c8c8: 61bb str r3, [r7, #24] // Вычисляем CRC для полезной нагрузки uint32_t calculated_checksum = calculate_crc32(packet_data, payload_length); - 800c8ae: 8bfb ldrh r3, [r7, #30] - 800c8b0: 4619 mov r1, r3 - 800c8b2: 68f8 ldr r0, [r7, #12] - 800c8b4: f7ff fef8 bl 800c6a8 - 800c8b8: 6178 str r0, [r7, #20] + 800c8ca: 8bfb ldrh r3, [r7, #30] + 800c8cc: 4619 mov r1, r3 + 800c8ce: 68f8 ldr r0, [r7, #12] + 800c8d0: f7ff fef8 bl 800c6c4 + 800c8d4: 6178 str r0, [r7, #20] if (received_checksum != calculated_checksum) return 0; // CRC не совпадает - 800c8ba: 69ba ldr r2, [r7, #24] - 800c8bc: 697b ldr r3, [r7, #20] - 800c8be: 429a cmp r2, r3 - 800c8c0: d001 beq.n 800c8c6 - 800c8c2: 2300 movs r3, #0 - 800c8c4: e00e b.n 800c8e4 + 800c8d6: 69ba ldr r2, [r7, #24] + 800c8d8: 697b ldr r3, [r7, #20] + 800c8da: 429a cmp r2, r3 + 800c8dc: d001 beq.n 800c8e2 + 800c8de: 2300 movs r3, #0 + 800c8e0: e00e b.n 800c900 out_cmd->argument = (void *)&packet_data[1]; - 800c8c6: 68fb ldr r3, [r7, #12] - 800c8c8: 1c5a adds r2, r3, #1 - 800c8ca: 687b ldr r3, [r7, #4] - 800c8cc: 605a str r2, [r3, #4] + 800c8e2: 68fb ldr r3, [r7, #12] + 800c8e4: 1c5a adds r2, r3, #1 + 800c8e6: 687b ldr r3, [r7, #4] + 800c8e8: 605a str r2, [r3, #4] out_cmd->command = packet_data[0]; - 800c8ce: 68fb ldr r3, [r7, #12] - 800c8d0: 781a ldrb r2, [r3, #0] - 800c8d2: 687b ldr r3, [r7, #4] - 800c8d4: 701a strb r2, [r3, #0] + 800c8ea: 68fb ldr r3, [r7, #12] + 800c8ec: 781a ldrb r2, [r3, #0] + 800c8ee: 687b ldr r3, [r7, #4] + 800c8f0: 701a strb r2, [r3, #0] out_cmd->argument_length = (uint8_t)(payload_length - 1); - 800c8d6: 8bfb ldrh r3, [r7, #30] - 800c8d8: b2db uxtb r3, r3 - 800c8da: 3b01 subs r3, #1 - 800c8dc: b2da uxtb r2, r3 - 800c8de: 687b ldr r3, [r7, #4] - 800c8e0: 705a strb r2, [r3, #1] + 800c8f2: 8bfb ldrh r3, [r7, #30] + 800c8f4: b2db uxtb r3, r3 + 800c8f6: 3b01 subs r3, #1 + 800c8f8: b2da uxtb r2, r3 + 800c8fa: 687b ldr r3, [r7, #4] + 800c8fc: 705a strb r2, [r3, #1] return 1; - 800c8e2: 2301 movs r3, #1 + 800c8fe: 2301 movs r3, #1 } - 800c8e4: 4618 mov r0, r3 - 800c8e6: 3720 adds r7, #32 - 800c8e8: 46bd mov sp, r7 - 800c8ea: bd80 pop {r7, pc} + 800c900: 4618 mov r0, r3 + 800c902: 3720 adds r7, #32 + 800c904: 46bd mov sp, r7 + 800c906: bd80 pop {r7, pc} -0800c8ec : +0800c908 : static uint8_t process_received_packet(SerialControl_t *ctx, const uint8_t* packet_data, uint16_t packet_len) { - 800c8ec: b580 push {r7, lr} - 800c8ee: b084 sub sp, #16 - 800c8f0: af00 add r7, sp, #0 - 800c8f2: 60f8 str r0, [r7, #12] - 800c8f4: 60b9 str r1, [r7, #8] - 800c8f6: 4613 mov r3, r2 - 800c8f8: 80fb strh r3, [r7, #6] + 800c908: b580 push {r7, lr} + 800c90a: b084 sub sp, #16 + 800c90c: af00 add r7, sp, #0 + 800c90e: 60f8 str r0, [r7, #12] + 800c910: 60b9 str r1, [r7, #8] + 800c912: 4613 mov r3, r2 + 800c914: 80fb strh r3, [r7, #6] if (!parse_packet(packet_data, packet_len, (ReceivedCommand_t *)&ctx->received_command)) { - 800c8fa: 68fb ldr r3, [r7, #12] - 800c8fc: f503 7200 add.w r2, r3, #512 @ 0x200 - 800c900: 88fb ldrh r3, [r7, #6] - 800c902: 4619 mov r1, r3 - 800c904: 68b8 ldr r0, [r7, #8] - 800c906: f7ff ffa1 bl 800c84c - 800c90a: 4603 mov r3, r0 - 800c90c: 2b00 cmp r3, #0 - 800c90e: d101 bne.n 800c914 + 800c916: 68fb ldr r3, [r7, #12] + 800c918: f503 7200 add.w r2, r3, #512 @ 0x200 + 800c91c: 88fb ldrh r3, [r7, #6] + 800c91e: 4619 mov r1, r3 + 800c920: 68b8 ldr r0, [r7, #8] + 800c922: f7ff ffa1 bl 800c868 + 800c926: 4603 mov r3, r0 + 800c928: 2b00 cmp r3, #0 + 800c92a: d101 bne.n 800c930 return 0; - 800c910: 2300 movs r3, #0 - 800c912: e004 b.n 800c91e + 800c92c: 2300 movs r3, #0 + 800c92e: e004 b.n 800c93a } ctx->command_ready = 1; - 800c914: 68fb ldr r3, [r7, #12] - 800c916: 2201 movs r2, #1 - 800c918: f883 2208 strb.w r2, [r3, #520] @ 0x208 + 800c930: 68fb ldr r3, [r7, #12] + 800c932: 2201 movs r2, #1 + 800c934: f883 2208 strb.w r2, [r3, #520] @ 0x208 return 1; - 800c91c: 2301 movs r3, #1 + 800c938: 2301 movs r3, #1 } - 800c91e: 4618 mov r0, r3 - 800c920: 3710 adds r7, #16 - 800c922: 46bd mov sp, r7 - 800c924: bd80 pop {r7, pc} + 800c93a: 4618 mov r0, r3 + 800c93c: 3710 adds r7, #16 + 800c93e: 46bd mov sp, r7 + 800c940: bd80 pop {r7, pc} ... -0800c928 <__NVIC_SystemReset>: +0800c944 <__NVIC_SystemReset>: { - 800c928: b480 push {r7} - 800c92a: af00 add r7, sp, #0 + 800c944: b480 push {r7} + 800c946: af00 add r7, sp, #0 __ASM volatile ("dsb 0xF":::"memory"); - 800c92c: f3bf 8f4f dsb sy + 800c948: f3bf 8f4f dsb sy } - 800c930: bf00 nop + 800c94c: bf00 nop (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) | - 800c932: 4b06 ldr r3, [pc, #24] @ (800c94c <__NVIC_SystemReset+0x24>) - 800c934: 68db ldr r3, [r3, #12] - 800c936: f403 62e0 and.w r2, r3, #1792 @ 0x700 + 800c94e: 4b06 ldr r3, [pc, #24] @ (800c968 <__NVIC_SystemReset+0x24>) + 800c950: 68db ldr r3, [r3, #12] + 800c952: f403 62e0 and.w r2, r3, #1792 @ 0x700 SCB->AIRCR = (uint32_t)((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 800c93a: 4904 ldr r1, [pc, #16] @ (800c94c <__NVIC_SystemReset+0x24>) - 800c93c: 4b04 ldr r3, [pc, #16] @ (800c950 <__NVIC_SystemReset+0x28>) - 800c93e: 4313 orrs r3, r2 - 800c940: 60cb str r3, [r1, #12] + 800c956: 4904 ldr r1, [pc, #16] @ (800c968 <__NVIC_SystemReset+0x24>) + 800c958: 4b04 ldr r3, [pc, #16] @ (800c96c <__NVIC_SystemReset+0x28>) + 800c95a: 4313 orrs r3, r2 + 800c95c: 60cb str r3, [r1, #12] __ASM volatile ("dsb 0xF":::"memory"); - 800c942: f3bf 8f4f dsb sy + 800c95e: f3bf 8f4f dsb sy } - 800c946: bf00 nop + 800c962: bf00 nop __NOP(); - 800c948: bf00 nop - 800c94a: e7fd b.n 800c948 <__NVIC_SystemReset+0x20> - 800c94c: e000ed00 .word 0xe000ed00 - 800c950: 05fa0004 .word 0x05fa0004 + 800c964: bf00 nop + 800c966: e7fd b.n 800c964 <__NVIC_SystemReset+0x20> + 800c968: e000ed00 .word 0xe000ed00 + 800c96c: 05fa0004 .word 0x05fa0004 -0800c954 : +0800c970 : .chargerNumber = 00001, .unixTime = 1721651966, }; // Единая функция-обработчик всех команд со switch-case void SC_CommandHandler(ReceivedCommand_t* cmd) { - 800c954: b580 push {r7, lr} - 800c956: b084 sub sp, #16 - 800c958: af00 add r7, sp, #0 - 800c95a: 6078 str r0, [r7, #4] + 800c970: b580 push {r7, lr} + 800c972: b084 sub sp, #16 + 800c974: af00 add r7, sp, #0 + 800c976: 6078 str r0, [r7, #4] uint8_t response_code = RESP_FAILED; - 800c95c: 2313 movs r3, #19 - 800c95e: 73fb strb r3, [r7, #15] + 800c978: 2313 movs r3, #19 + 800c97a: 73fb strb r3, [r7, #15] switch (cmd->command) { - 800c960: 687b ldr r3, [r7, #4] - 800c962: 781b ldrb r3, [r3, #0] - 800c964: 2bc2 cmp r3, #194 @ 0xc2 - 800c966: f300 80cc bgt.w 800cb02 - 800c96a: 2bb0 cmp r3, #176 @ 0xb0 - 800c96c: da0f bge.n 800c98e - 800c96e: 2b60 cmp r3, #96 @ 0x60 - 800c970: d042 beq.n 800c9f8 - 800c972: 2b60 cmp r3, #96 @ 0x60 - 800c974: f300 80c5 bgt.w 800cb02 - 800c978: 2b50 cmp r3, #80 @ 0x50 - 800c97a: d043 beq.n 800ca04 - 800c97c: 2b50 cmp r3, #80 @ 0x50 - 800c97e: f300 80c0 bgt.w 800cb02 - 800c982: 2b01 cmp r3, #1 - 800c984: f000 80a6 beq.w 800cad4 - 800c988: 2b40 cmp r3, #64 @ 0x40 - 800c98a: d02d beq.n 800c9e8 - 800c98c: e0b9 b.n 800cb02 - 800c98e: 3bb0 subs r3, #176 @ 0xb0 - 800c990: 2b12 cmp r3, #18 - 800c992: f200 80b6 bhi.w 800cb02 - 800c996: a201 add r2, pc, #4 @ (adr r2, 800c99c ) - 800c998: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800c99c: 0800ca0b .word 0x0800ca0b - 800c9a0: 0800cb03 .word 0x0800cb03 - 800c9a4: 0800cb03 .word 0x0800cb03 - 800c9a8: 0800cb03 .word 0x0800cb03 - 800c9ac: 0800cb03 .word 0x0800cb03 - 800c9b0: 0800cab3 .word 0x0800cab3 - 800c9b4: 0800cb03 .word 0x0800cb03 - 800c9b8: 0800cb03 .word 0x0800cb03 - 800c9bc: 0800cb03 .word 0x0800cb03 - 800c9c0: 0800cb03 .word 0x0800cb03 - 800c9c4: 0800cb03 .word 0x0800cb03 - 800c9c8: 0800cb03 .word 0x0800cb03 - 800c9cc: 0800cb03 .word 0x0800cb03 - 800c9d0: 0800cb03 .word 0x0800cb03 - 800c9d4: 0800cb03 .word 0x0800cb03 - 800c9d8: 0800cb03 .word 0x0800cb03 - 800c9dc: 0800ca49 .word 0x0800ca49 - 800c9e0: 0800caad .word 0x0800caad - 800c9e4: 0800ca81 .word 0x0800ca81 + 800c97c: 687b ldr r3, [r7, #4] + 800c97e: 781b ldrb r3, [r3, #0] + 800c980: 2bc2 cmp r3, #194 @ 0xc2 + 800c982: f300 80cc bgt.w 800cb1e + 800c986: 2bb0 cmp r3, #176 @ 0xb0 + 800c988: da0f bge.n 800c9aa + 800c98a: 2b60 cmp r3, #96 @ 0x60 + 800c98c: d042 beq.n 800ca14 + 800c98e: 2b60 cmp r3, #96 @ 0x60 + 800c990: f300 80c5 bgt.w 800cb1e + 800c994: 2b50 cmp r3, #80 @ 0x50 + 800c996: d043 beq.n 800ca20 + 800c998: 2b50 cmp r3, #80 @ 0x50 + 800c99a: f300 80c0 bgt.w 800cb1e + 800c99e: 2b01 cmp r3, #1 + 800c9a0: f000 80a6 beq.w 800caf0 + 800c9a4: 2b40 cmp r3, #64 @ 0x40 + 800c9a6: d02d beq.n 800ca04 + 800c9a8: e0b9 b.n 800cb1e + 800c9aa: 3bb0 subs r3, #176 @ 0xb0 + 800c9ac: 2b12 cmp r3, #18 + 800c9ae: f200 80b6 bhi.w 800cb1e + 800c9b2: a201 add r2, pc, #4 @ (adr r2, 800c9b8 ) + 800c9b4: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800c9b8: 0800ca27 .word 0x0800ca27 + 800c9bc: 0800cb1f .word 0x0800cb1f + 800c9c0: 0800cb1f .word 0x0800cb1f + 800c9c4: 0800cb1f .word 0x0800cb1f + 800c9c8: 0800cb1f .word 0x0800cb1f + 800c9cc: 0800cacf .word 0x0800cacf + 800c9d0: 0800cb1f .word 0x0800cb1f + 800c9d4: 0800cb1f .word 0x0800cb1f + 800c9d8: 0800cb1f .word 0x0800cb1f + 800c9dc: 0800cb1f .word 0x0800cb1f + 800c9e0: 0800cb1f .word 0x0800cb1f + 800c9e4: 0800cb1f .word 0x0800cb1f + 800c9e8: 0800cb1f .word 0x0800cb1f + 800c9ec: 0800cb1f .word 0x0800cb1f + 800c9f0: 0800cb1f .word 0x0800cb1f + 800c9f4: 0800cb1f .word 0x0800cb1f + 800c9f8: 0800ca65 .word 0x0800ca65 + 800c9fc: 0800cac9 .word 0x0800cac9 + 800ca00: 0800ca9d .word 0x0800ca9d // Команды БЕЗ аргументов case CMD_GET_STATUS: // Логика получения информации monitoring_data_callback(); - 800c9e8: f000 f8b2 bl 800cb50 + 800ca04: f000 f8b2 bl 800cb6c // Отправляем с нормальным приоритетом SC_SendPacket((uint8_t*)&statusPacket, sizeof(statusPacket), CMD_GET_STATUS); - 800c9ec: 2240 movs r2, #64 @ 0x40 - 800c9ee: 2158 movs r1, #88 @ 0x58 - 800c9f0: 484b ldr r0, [pc, #300] @ (800cb20 ) - 800c9f2: f7ff feef bl 800c7d4 + 800ca08: 2240 movs r2, #64 @ 0x40 + 800ca0a: 2158 movs r1, #88 @ 0x58 + 800ca0c: 484b ldr r0, [pc, #300] @ (800cb3c ) + 800ca0e: f7ff feef bl 800c7f0 return; // Специальный ответ уже отправлен - 800c9f6: e08f b.n 800cb18 + 800ca12: e08f b.n 800cb34 case CMD_GET_INFO: SC_SendPacket((uint8_t*)&infoPacket, sizeof(infoPacket), CMD_GET_INFO); - 800c9f8: 2260 movs r2, #96 @ 0x60 - 800c9fa: 210a movs r1, #10 - 800c9fc: 4849 ldr r0, [pc, #292] @ (800cb24 ) - 800c9fe: f7ff fee9 bl 800c7d4 + 800ca14: 2260 movs r2, #96 @ 0x60 + 800ca16: 210a movs r1, #10 + 800ca18: 4849 ldr r0, [pc, #292] @ (800cb40 ) + 800ca1a: f7ff fee9 bl 800c7f0 return; - 800ca02: e089 b.n 800cb18 + 800ca1e: e089 b.n 800cb34 case CMD_GET_LOG: debug_buffer_send(); - 800ca04: f7fd fcd8 bl 800a3b8 + 800ca20: f7fd fcca bl 800a3b8 return; // Ответ формируется внутри debug_buffer_send - 800ca08: e086 b.n 800cb18 + 800ca24: e086 b.n 800cb34 // Команды С аргументами case CMD_SET_CONFIG: if (cmd->argument_length == sizeof(ConfigBlock_t)) { - 800ca0a: 687b ldr r3, [r7, #4] - 800ca0c: 785b ldrb r3, [r3, #1] - 800ca0e: 2b0b cmp r3, #11 - 800ca10: d117 bne.n 800ca42 + 800ca26: 687b ldr r3, [r7, #4] + 800ca28: 785b ldrb r3, [r3, #1] + 800ca2a: 2b0b cmp r3, #11 + 800ca2c: d117 bne.n 800ca5e memcpy(&config, cmd->argument, sizeof(ConfigBlock_t)); - 800ca12: 687b ldr r3, [r7, #4] - 800ca14: 685a ldr r2, [r3, #4] - 800ca16: 4b44 ldr r3, [pc, #272] @ (800cb28 ) - 800ca18: 6810 ldr r0, [r2, #0] - 800ca1a: 6851 ldr r1, [r2, #4] - 800ca1c: c303 stmia r3!, {r0, r1} - 800ca1e: 8911 ldrh r1, [r2, #8] - 800ca20: 7a92 ldrb r2, [r2, #10] - 800ca22: 8019 strh r1, [r3, #0] - 800ca24: 709a strb r2, [r3, #2] + 800ca2e: 687b ldr r3, [r7, #4] + 800ca30: 685a ldr r2, [r3, #4] + 800ca32: 4b44 ldr r3, [pc, #272] @ (800cb44 ) + 800ca34: 6810 ldr r0, [r2, #0] + 800ca36: 6851 ldr r1, [r2, #4] + 800ca38: c303 stmia r3!, {r0, r1} + 800ca3a: 8911 ldrh r1, [r2, #8] + 800ca3c: 7a92 ldrb r2, [r2, #10] + 800ca3e: 8019 strh r1, [r3, #0] + 800ca40: 709a strb r2, [r3, #2] config_initialized = 1; - 800ca26: 4b41 ldr r3, [pc, #260] @ (800cb2c ) - 800ca28: 2201 movs r2, #1 - 800ca2a: 701a strb r2, [r3, #0] + 800ca42: 4b41 ldr r3, [pc, #260] @ (800cb48 ) + 800ca44: 2201 movs r2, #1 + 800ca46: 701a strb r2, [r3, #0] log_printf(LOG_INFO, "Set Config: %s %d\n", config.location, config.chargerNumber); - 800ca2c: 4b3e ldr r3, [pc, #248] @ (800cb28 ) - 800ca2e: f8d3 3003 ldr.w r3, [r3, #3] - 800ca32: 4a3d ldr r2, [pc, #244] @ (800cb28 ) - 800ca34: 493e ldr r1, [pc, #248] @ (800cb30 ) - 800ca36: 2007 movs r0, #7 - 800ca38: f7fd fd20 bl 800a47c + 800ca48: 4b3e ldr r3, [pc, #248] @ (800cb44 ) + 800ca4a: f8d3 3003 ldr.w r3, [r3, #3] + 800ca4e: 4a3d ldr r2, [pc, #244] @ (800cb44 ) + 800ca50: 493e ldr r1, [pc, #248] @ (800cb4c ) + 800ca52: 2007 movs r0, #7 + 800ca54: f7fd fd12 bl 800a47c response_code = RESP_SUCCESS; - 800ca3c: 2312 movs r3, #18 - 800ca3e: 73fb strb r3, [r7, #15] + 800ca58: 2312 movs r3, #18 + 800ca5a: 73fb strb r3, [r7, #15] break; - 800ca40: e062 b.n 800cb08 + 800ca5c: e062 b.n 800cb24 } response_code = RESP_FAILED; - 800ca42: 2313 movs r3, #19 - 800ca44: 73fb strb r3, [r7, #15] + 800ca5e: 2313 movs r3, #19 + 800ca60: 73fb strb r3, [r7, #15] break; - 800ca46: e05f b.n 800cb08 + 800ca62: e05f b.n 800cb24 case CMD_SET_POWER_LIMIT: if (cmd->argument_length == 1) { - 800ca48: 687b ldr r3, [r7, #4] - 800ca4a: 785b ldrb r3, [r3, #1] - 800ca4c: 2b01 cmp r3, #1 - 800ca4e: d114 bne.n 800ca7a + 800ca64: 687b ldr r3, [r7, #4] + 800ca66: 785b ldrb r3, [r3, #1] + 800ca68: 2b01 cmp r3, #1 + 800ca6a: d114 bne.n 800ca96 PSU0.power_limit = ((uint8_t*)cmd->argument)[0] * 1000; - 800ca50: 687b ldr r3, [r7, #4] - 800ca52: 685b ldr r3, [r3, #4] - 800ca54: 781b ldrb r3, [r3, #0] - 800ca56: 461a mov r2, r3 - 800ca58: f44f 737a mov.w r3, #1000 @ 0x3e8 - 800ca5c: fb02 f303 mul.w r3, r2, r3 - 800ca60: 461a mov r2, r3 - 800ca62: 4b34 ldr r3, [pc, #208] @ (800cb34 ) - 800ca64: 615a str r2, [r3, #20] + 800ca6c: 687b ldr r3, [r7, #4] + 800ca6e: 685b ldr r3, [r3, #4] + 800ca70: 781b ldrb r3, [r3, #0] + 800ca72: 461a mov r2, r3 + 800ca74: f44f 737a mov.w r3, #1000 @ 0x3e8 + 800ca78: fb02 f303 mul.w r3, r2, r3 + 800ca7c: 461a mov r2, r3 + 800ca7e: 4b34 ldr r3, [pc, #208] @ (800cb50 ) + 800ca80: 615a str r2, [r3, #20] log_printf(LOG_INFO, "Power limit: %d\n", PSU0.power_limit); - 800ca66: 4b33 ldr r3, [pc, #204] @ (800cb34 ) - 800ca68: 695b ldr r3, [r3, #20] - 800ca6a: 461a mov r2, r3 - 800ca6c: 4932 ldr r1, [pc, #200] @ (800cb38 ) - 800ca6e: 2007 movs r0, #7 - 800ca70: f7fd fd04 bl 800a47c + 800ca82: 4b33 ldr r3, [pc, #204] @ (800cb50 ) + 800ca84: 695b ldr r3, [r3, #20] + 800ca86: 461a mov r2, r3 + 800ca88: 4932 ldr r1, [pc, #200] @ (800cb54 ) + 800ca8a: 2007 movs r0, #7 + 800ca8c: f7fd fcf6 bl 800a47c //CONN.connState = (((uint8_t*)cmd->argument)[0])/4; response_code = RESP_SUCCESS; - 800ca74: 2312 movs r3, #18 - 800ca76: 73fb strb r3, [r7, #15] + 800ca90: 2312 movs r3, #18 + 800ca92: 73fb strb r3, [r7, #15] break; - 800ca78: e046 b.n 800cb08 + 800ca94: e046 b.n 800cb24 } response_code = RESP_FAILED; - 800ca7a: 2313 movs r3, #19 - 800ca7c: 73fb strb r3, [r7, #15] + 800ca96: 2313 movs r3, #19 + 800ca98: 73fb strb r3, [r7, #15] break; - 800ca7e: e043 b.n 800cb08 + 800ca9a: e043 b.n 800cb24 case CMD_CHARGE_PERMIT: if (cmd->argument_length == 1) { - 800ca80: 687b ldr r3, [r7, #4] - 800ca82: 785b ldrb r3, [r3, #1] - 800ca84: 2b01 cmp r3, #1 - 800ca86: d10e bne.n 800caa6 + 800ca9c: 687b ldr r3, [r7, #4] + 800ca9e: 785b ldrb r3, [r3, #1] + 800caa0: 2b01 cmp r3, #1 + 800caa2: d10e bne.n 800cac2 CONN.connControl = ((uint8_t*)cmd->argument)[0]; - 800ca88: 687b ldr r3, [r7, #4] - 800ca8a: 685b ldr r3, [r3, #4] - 800ca8c: 781a ldrb r2, [r3, #0] - 800ca8e: 4b2b ldr r3, [pc, #172] @ (800cb3c ) - 800ca90: 701a strb r2, [r3, #0] + 800caa4: 687b ldr r3, [r7, #4] + 800caa6: 685b ldr r3, [r3, #4] + 800caa8: 781a ldrb r2, [r3, #0] + 800caaa: 4b2b ldr r3, [pc, #172] @ (800cb58 ) + 800caac: 701a strb r2, [r3, #0] log_printf(LOG_INFO, "Charge permit: %d\n", CONN.connControl); - 800ca92: 4b2a ldr r3, [pc, #168] @ (800cb3c ) - 800ca94: 781b ldrb r3, [r3, #0] - 800ca96: 461a mov r2, r3 - 800ca98: 4929 ldr r1, [pc, #164] @ (800cb40 ) - 800ca9a: 2007 movs r0, #7 - 800ca9c: f7fd fcee bl 800a47c + 800caae: 4b2a ldr r3, [pc, #168] @ (800cb58 ) + 800cab0: 781b ldrb r3, [r3, #0] + 800cab2: 461a mov r2, r3 + 800cab4: 4929 ldr r1, [pc, #164] @ (800cb5c ) + 800cab6: 2007 movs r0, #7 + 800cab8: f7fd fce0 bl 800a47c response_code = RESP_SUCCESS; - 800caa0: 2312 movs r3, #18 - 800caa2: 73fb strb r3, [r7, #15] + 800cabc: 2312 movs r3, #18 + 800cabe: 73fb strb r3, [r7, #15] break; - 800caa4: e030 b.n 800cb08 + 800cac0: e030 b.n 800cb24 } response_code = RESP_FAILED; - 800caa6: 2313 movs r3, #19 - 800caa8: 73fb strb r3, [r7, #15] + 800cac2: 2313 movs r3, #19 + 800cac4: 73fb strb r3, [r7, #15] break; - 800caaa: e02d b.n 800cb08 + 800cac6: e02d b.n 800cb24 // memcpy(&PSU_TestMode, cmd->argument, sizeof(PSU_TestMode_t)); // log_printf(LOG_INFO, "Test PSU: %d %d %d\n", PSU_TestMode.enable, PSU_TestMode.voltage, PSU_TestMode.current); // response_code = RESP_SUCCESS; // break; // } response_code = RESP_FAILED; - 800caac: 2313 movs r3, #19 - 800caae: 73fb strb r3, [r7, #15] + 800cac8: 2313 movs r3, #19 + 800caca: 73fb strb r3, [r7, #15] break; - 800cab0: e02a b.n 800cb08 + 800cacc: e02a b.n 800cb24 case CMD_DEVICE_RESET: // 2. Отправляем SUCCESS (хост может успеть получить его перед ребутом) SC_SendPacket(NULL, 0, RESP_SUCCESS); - 800cab2: 2212 movs r2, #18 - 800cab4: 2100 movs r1, #0 - 800cab6: 2000 movs r0, #0 - 800cab8: f7ff fe8c bl 800c7d4 + 800cace: 2212 movs r2, #18 + 800cad0: 2100 movs r1, #0 + 800cad2: 2000 movs r0, #0 + 800cad4: f7ff fe8c bl 800c7f0 while(huart2.gState == HAL_UART_STATE_BUSY_TX); // Ожидание завершения передачи - 800cabc: bf00 nop - 800cabe: 4b21 ldr r3, [pc, #132] @ (800cb44 ) - 800cac0: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 800cac4: b2db uxtb r3, r3 - 800cac6: 2b21 cmp r3, #33 @ 0x21 - 800cac8: d0f9 beq.n 800cabe + 800cad8: bf00 nop + 800cada: 4b21 ldr r3, [pc, #132] @ (800cb60 ) + 800cadc: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 800cae0: b2db uxtb r3, r3 + 800cae2: 2b21 cmp r3, #33 @ 0x21 + 800cae4: d0f9 beq.n 800cada HAL_Delay(10); - 800caca: 200a movs r0, #10 - 800cacc: f000 ff50 bl 800d970 + 800cae6: 200a movs r0, #10 + 800cae8: f000 ff50 bl 800d98c // 3. Выполняем программный сброс NVIC_SystemReset(); - 800cad0: f7ff ff2a bl 800c928 <__NVIC_SystemReset> + 800caec: f7ff ff2a bl 800c944 <__NVIC_SystemReset> return; // Сюда код уже не дойдет, но для компилятора нxужно case CMD_ISOLATION_STATUS: if (cmd->argument_length == sizeof(IsolationStatusPacket_t)) { - 800cad4: 687b ldr r3, [r7, #4] - 800cad6: 785b ldrb r3, [r3, #1] - 800cad8: 2b09 cmp r3, #9 - 800cada: d10f bne.n 800cafc + 800caf0: 687b ldr r3, [r7, #4] + 800caf2: 785b ldrb r3, [r3, #1] + 800caf4: 2b09 cmp r3, #9 + 800caf6: d10f bne.n 800cb18 memcpy(&ISO, cmd->argument, sizeof(IsolationStatusPacket_t)); - 800cadc: 687b ldr r3, [r7, #4] - 800cade: 685a ldr r2, [r3, #4] - 800cae0: 4b19 ldr r3, [pc, #100] @ (800cb48 ) - 800cae2: 6810 ldr r0, [r2, #0] - 800cae4: 6851 ldr r1, [r2, #4] - 800cae6: c303 stmia r3!, {r0, r1} - 800cae8: 7a12 ldrb r2, [r2, #8] - 800caea: 701a strb r2, [r3, #0] + 800caf8: 687b ldr r3, [r7, #4] + 800cafa: 685a ldr r2, [r3, #4] + 800cafc: 4b19 ldr r3, [pc, #100] @ (800cb64 ) + 800cafe: 6810 ldr r0, [r2, #0] + 800cb00: 6851 ldr r1, [r2, #4] + 800cb02: c303 stmia r3!, {r0, r1} + 800cb04: 7a12 ldrb r2, [r2, #8] + 800cb06: 701a strb r2, [r3, #0] // Для однонаправленного UART5 ответ не нужен if (g_sc_command_source == SC_SOURCE_UART5) { - 800caec: 4b17 ldr r3, [pc, #92] @ (800cb4c ) - 800caee: 781b ldrb r3, [r3, #0] - 800caf0: b2db uxtb r3, r3 - 800caf2: 2b01 cmp r3, #1 - 800caf4: d00f beq.n 800cb16 + 800cb08: 4b17 ldr r3, [pc, #92] @ (800cb68 ) + 800cb0a: 781b ldrb r3, [r3, #0] + 800cb0c: b2db uxtb r3, r3 + 800cb0e: 2b01 cmp r3, #1 + 800cb10: d00f beq.n 800cb32 return; } response_code = RESP_SUCCESS; - 800caf6: 2312 movs r3, #18 - 800caf8: 73fb strb r3, [r7, #15] + 800cb12: 2312 movs r3, #18 + 800cb14: 73fb strb r3, [r7, #15] break; - 800cafa: e005 b.n 800cb08 + 800cb16: e005 b.n 800cb24 } response_code = RESP_FAILED; - 800cafc: 2313 movs r3, #19 - 800cafe: 73fb strb r3, [r7, #15] + 800cb18: 2313 movs r3, #19 + 800cb1a: 73fb strb r3, [r7, #15] break; - 800cb00: e002 b.n 800cb08 + 800cb1c: e002 b.n 800cb24 default: // Неизвестная команда response_code = RESP_FAILED; - 800cb02: 2313 movs r3, #19 - 800cb04: 73fb strb r3, [r7, #15] + 800cb1e: 2313 movs r3, #19 + 800cb20: 73fb strb r3, [r7, #15] break; - 800cb06: bf00 nop + 800cb22: bf00 nop } // Отправляем финальный ответ (для команд без собственного ответа) SC_SendPacket(NULL, 0, response_code); - 800cb08: 7bfb ldrb r3, [r7, #15] - 800cb0a: 461a mov r2, r3 - 800cb0c: 2100 movs r1, #0 - 800cb0e: 2000 movs r0, #0 - 800cb10: f7ff fe60 bl 800c7d4 - 800cb14: e000 b.n 800cb18 + 800cb24: 7bfb ldrb r3, [r7, #15] + 800cb26: 461a mov r2, r3 + 800cb28: 2100 movs r1, #0 + 800cb2a: 2000 movs r0, #0 + 800cb2c: f7ff fe60 bl 800c7f0 + 800cb30: e000 b.n 800cb34 return; - 800cb16: bf00 nop + 800cb32: bf00 nop } - 800cb18: 3710 adds r7, #16 - 800cb1a: 46bd mov sp, r7 - 800cb1c: bd80 pop {r7, pc} - 800cb1e: bf00 nop - 800cb20: 20000e60 .word 0x20000e60 - 800cb24: 20000eb8 .word 0x20000eb8 - 800cb28: 20000060 .word 0x20000060 - 800cb2c: 20000ec2 .word 0x20000ec2 - 800cb30: 080143e8 .word 0x080143e8 - 800cb34: 20000724 .word 0x20000724 - 800cb38: 080143fc .word 0x080143fc - 800cb3c: 200001d4 .word 0x200001d4 - 800cb40: 08014410 .word 0x08014410 - 800cb44: 20000fe8 .word 0x20000fe8 - 800cb48: 20000054 .word 0x20000054 - 800cb4c: 20000e5c .word 0x20000e5c + 800cb34: 3710 adds r7, #16 + 800cb36: 46bd mov sp, r7 + 800cb38: bd80 pop {r7, pc} + 800cb3a: bf00 nop + 800cb3c: 20000e60 .word 0x20000e60 + 800cb40: 20000eb8 .word 0x20000eb8 + 800cb44: 20000060 .word 0x20000060 + 800cb48: 20000ec2 .word 0x20000ec2 + 800cb4c: 08014404 .word 0x08014404 + 800cb50: 20000724 .word 0x20000724 + 800cb54: 08014418 .word 0x08014418 + 800cb58: 200001d4 .word 0x200001d4 + 800cb5c: 0801442c .word 0x0801442c + 800cb60: 20000fe8 .word 0x20000fe8 + 800cb64: 20000054 .word 0x20000054 + 800cb68: 20000e5c .word 0x20000e5c -0800cb50 : +0800cb6c : // Колбэк для заполнения данных мониторинга void monitoring_data_callback() { - 800cb50: b580 push {r7, lr} - 800cb52: af00 add r7, sp, #0 + 800cb6c: b580 push {r7, lr} + 800cb6e: af00 add r7, sp, #0 // Информация о зарядной сессии statusPacket.SOC = CONN.SOC; - 800cb54: 4b8f ldr r3, [pc, #572] @ (800cd94 ) - 800cb56: 789a ldrb r2, [r3, #2] - 800cb58: 4b8f ldr r3, [pc, #572] @ (800cd98 ) - 800cb5a: 709a strb r2, [r3, #2] + 800cb70: 4b8f ldr r3, [pc, #572] @ (800cdb0 ) + 800cb72: 789a ldrb r2, [r3, #2] + 800cb74: 4b8f ldr r3, [pc, #572] @ (800cdb4 ) + 800cb76: 709a strb r2, [r3, #2] statusPacket.Energy = CONN.Energy; - 800cb5c: 4b8d ldr r3, [pc, #564] @ (800cd94 ) - 800cb5e: f8d3 3007 ldr.w r3, [r3, #7] - 800cb62: 4a8d ldr r2, [pc, #564] @ (800cd98 ) - 800cb64: f8c2 3003 str.w r3, [r2, #3] + 800cb78: 4b8d ldr r3, [pc, #564] @ (800cdb0 ) + 800cb7a: f8d3 3007 ldr.w r3, [r3, #7] + 800cb7e: 4a8d ldr r2, [pc, #564] @ (800cdb4 ) + 800cb80: f8c2 3003 str.w r3, [r2, #3] statusPacket.RequestedVoltage = CONN.RequestedVoltage; - 800cb68: 4b8a ldr r3, [pc, #552] @ (800cd94 ) - 800cb6a: f8b3 300f ldrh.w r3, [r3, #15] - 800cb6e: b29a uxth r2, r3 - 800cb70: 4b89 ldr r3, [pc, #548] @ (800cd98 ) - 800cb72: f8a3 2007 strh.w r2, [r3, #7] - statusPacket.RequestedCurrent = CONN.WantedCurrent; - 800cb76: 4b87 ldr r3, [pc, #540] @ (800cd94 ) - 800cb78: f8b3 301b ldrh.w r3, [r3, #27] - 800cb7c: b29a uxth r2, r3 - 800cb7e: 4b86 ldr r3, [pc, #536] @ (800cd98 ) - 800cb80: f8a3 2009 strh.w r2, [r3, #9] - statusPacket.MeasuredVoltage = CONN.MeasuredVoltage; - 800cb84: 4b83 ldr r3, [pc, #524] @ (800cd94 ) - 800cb86: f8b3 3013 ldrh.w r3, [r3, #19] + 800cb84: 4b8a ldr r3, [pc, #552] @ (800cdb0 ) + 800cb86: f8b3 300f ldrh.w r3, [r3, #15] 800cb8a: b29a uxth r2, r3 - 800cb8c: 4b82 ldr r3, [pc, #520] @ (800cd98 ) - 800cb8e: f8a3 200b strh.w r2, [r3, #11] - statusPacket.MeasuredCurrent = CONN.MeasuredCurrent; - 800cb92: 4b80 ldr r3, [pc, #512] @ (800cd94 ) - 800cb94: f8b3 3015 ldrh.w r3, [r3, #21] + 800cb8c: 4b89 ldr r3, [pc, #548] @ (800cdb4 ) + 800cb8e: f8a3 2007 strh.w r2, [r3, #7] + statusPacket.RequestedCurrent = CONN.WantedCurrent; + 800cb92: 4b87 ldr r3, [pc, #540] @ (800cdb0 ) + 800cb94: f8b3 301b ldrh.w r3, [r3, #27] 800cb98: b29a uxth r2, r3 - 800cb9a: 4b7f ldr r3, [pc, #508] @ (800cd98 ) - 800cb9c: f8a3 200d strh.w r2, [r3, #13] + 800cb9a: 4b86 ldr r3, [pc, #536] @ (800cdb4 ) + 800cb9c: f8a3 2009 strh.w r2, [r3, #9] + statusPacket.MeasuredVoltage = CONN.MeasuredVoltage; + 800cba0: 4b83 ldr r3, [pc, #524] @ (800cdb0 ) + 800cba2: f8b3 3013 ldrh.w r3, [r3, #19] + 800cba6: b29a uxth r2, r3 + 800cba8: 4b82 ldr r3, [pc, #520] @ (800cdb4 ) + 800cbaa: f8a3 200b strh.w r2, [r3, #11] + statusPacket.MeasuredCurrent = CONN.MeasuredCurrent; + 800cbae: 4b80 ldr r3, [pc, #512] @ (800cdb0 ) + 800cbb0: f8b3 3015 ldrh.w r3, [r3, #21] + 800cbb4: b29a uxth r2, r3 + 800cbb6: 4b7f ldr r3, [pc, #508] @ (800cdb4 ) + 800cbb8: f8a3 200d strh.w r2, [r3, #13] statusPacket.outputEnabled = CONN.outputEnabled; - 800cba0: 4b7c ldr r3, [pc, #496] @ (800cd94 ) - 800cba2: 7e1a ldrb r2, [r3, #24] - 800cba4: 4b7c ldr r3, [pc, #496] @ (800cd98 ) - 800cba6: 73da strb r2, [r3, #15] + 800cbbc: 4b7c ldr r3, [pc, #496] @ (800cdb0 ) + 800cbbe: 7e1a ldrb r2, [r3, #24] + 800cbc0: 4b7c ldr r3, [pc, #496] @ (800cdb4 ) + 800cbc2: 73da strb r2, [r3, #15] statusPacket.chargingError = CONN.chargingError; - 800cba8: 4b7a ldr r3, [pc, #488] @ (800cd94 ) - 800cbaa: 7f5a ldrb r2, [r3, #29] - 800cbac: 4b7a ldr r3, [pc, #488] @ (800cd98 ) - 800cbae: 705a strb r2, [r3, #1] + 800cbc4: 4b7a ldr r3, [pc, #488] @ (800cdb0 ) + 800cbc6: 7f5a ldrb r2, [r3, #29] + 800cbc8: 4b7a ldr r3, [pc, #488] @ (800cdb4 ) + 800cbca: 705a strb r2, [r3, #1] statusPacket.connState = CONN.connState; - 800cbb0: 4b78 ldr r3, [pc, #480] @ (800cd94 ) - 800cbb2: 785a ldrb r2, [r3, #1] - 800cbb4: 4b78 ldr r3, [pc, #480] @ (800cd98 ) - 800cbb6: 701a strb r2, [r3, #0] + 800cbcc: 4b78 ldr r3, [pc, #480] @ (800cdb0 ) + 800cbce: 785a ldrb r2, [r3, #1] + 800cbd0: 4b78 ldr r3, [pc, #480] @ (800cdb4 ) + 800cbd2: 701a strb r2, [r3, #0] statusPacket.chargingElapsedTimeMin = 0; - 800cbb8: 4b77 ldr r3, [pc, #476] @ (800cd98 ) - 800cbba: 2200 movs r2, #0 - 800cbbc: 741a strb r2, [r3, #16] - 800cbbe: 2200 movs r2, #0 - 800cbc0: 745a strb r2, [r3, #17] + 800cbd4: 4b77 ldr r3, [pc, #476] @ (800cdb4 ) + 800cbd6: 2200 movs r2, #0 + 800cbd8: 741a strb r2, [r3, #16] + 800cbda: 2200 movs r2, #0 + 800cbdc: 745a strb r2, [r3, #17] statusPacket.chargingElapsedTimeSec = 0; - 800cbc2: 4b75 ldr r3, [pc, #468] @ (800cd98 ) - 800cbc4: 2200 movs r2, #0 - 800cbc6: 749a strb r2, [r3, #18] + 800cbde: 4b75 ldr r3, [pc, #468] @ (800cdb4 ) + 800cbe0: 2200 movs r2, #0 + 800cbe2: 749a strb r2, [r3, #18] statusPacket.estimatedRemainingChargingTime = 0; - 800cbc8: 4b73 ldr r3, [pc, #460] @ (800cd98 ) - 800cbca: 2200 movs r2, #0 - 800cbcc: 74da strb r2, [r3, #19] - 800cbce: 2200 movs r2, #0 - 800cbd0: 751a strb r2, [r3, #20] + 800cbe4: 4b73 ldr r3, [pc, #460] @ (800cdb4 ) + 800cbe6: 2200 movs r2, #0 + 800cbe8: 74da strb r2, [r3, #19] + 800cbea: 2200 movs r2, #0 + 800cbec: 751a strb r2, [r3, #20] // состояние зарядной станции statusPacket.relayAC = RELAY_Read(RELAY_AC); - 800cbd2: 2004 movs r0, #4 - 800cbd4: f7fc fcdc bl 8009590 - 800cbd8: 4603 mov r3, r0 - 800cbda: f003 0301 and.w r3, r3, #1 - 800cbde: b2d9 uxtb r1, r3 - 800cbe0: 4a6d ldr r2, [pc, #436] @ (800cd98 ) - 800cbe2: 7d53 ldrb r3, [r2, #21] - 800cbe4: f361 0300 bfi r3, r1, #0, #1 - 800cbe8: 7553 strb r3, [r2, #21] + 800cbee: 2004 movs r0, #4 + 800cbf0: f7fc fcce bl 8009590 + 800cbf4: 4603 mov r3, r0 + 800cbf6: f003 0301 and.w r3, r3, #1 + 800cbfa: b2d9 uxtb r1, r3 + 800cbfc: 4a6d ldr r2, [pc, #436] @ (800cdb4 ) + 800cbfe: 7d53 ldrb r3, [r2, #21] + 800cc00: f361 0300 bfi r3, r1, #0, #1 + 800cc04: 7553 strb r3, [r2, #21] statusPacket.relayDC = RELAY_Read(RELAY_DC); - 800cbea: 2003 movs r0, #3 - 800cbec: f7fc fcd0 bl 8009590 - 800cbf0: 4603 mov r3, r0 - 800cbf2: f003 0301 and.w r3, r3, #1 - 800cbf6: b2d9 uxtb r1, r3 - 800cbf8: 4a67 ldr r2, [pc, #412] @ (800cd98 ) - 800cbfa: 7d53 ldrb r3, [r2, #21] - 800cbfc: f361 0341 bfi r3, r1, #1, #1 - 800cc00: 7553 strb r3, [r2, #21] + 800cc06: 2003 movs r0, #3 + 800cc08: f7fc fcc2 bl 8009590 + 800cc0c: 4603 mov r3, r0 + 800cc0e: f003 0301 and.w r3, r3, #1 + 800cc12: b2d9 uxtb r1, r3 + 800cc14: 4a67 ldr r2, [pc, #412] @ (800cdb4 ) + 800cc16: 7d53 ldrb r3, [r2, #21] + 800cc18: f361 0341 bfi r3, r1, #1, #1 + 800cc1c: 7553 strb r3, [r2, #21] statusPacket.relayAUX = RELAY_Read(RELAY_AUX0); - 800cc02: 2000 movs r0, #0 - 800cc04: f7fc fcc4 bl 8009590 - 800cc08: 4603 mov r3, r0 - 800cc0a: f003 0301 and.w r3, r3, #1 - 800cc0e: b2d9 uxtb r1, r3 - 800cc10: 4a61 ldr r2, [pc, #388] @ (800cd98 ) - 800cc12: 7d53 ldrb r3, [r2, #21] - 800cc14: f361 0382 bfi r3, r1, #2, #1 - 800cc18: 7553 strb r3, [r2, #21] + 800cc1e: 2000 movs r0, #0 + 800cc20: f7fc fcb6 bl 8009590 + 800cc24: 4603 mov r3, r0 + 800cc26: f003 0301 and.w r3, r3, #1 + 800cc2a: b2d9 uxtb r1, r3 + 800cc2c: 4a61 ldr r2, [pc, #388] @ (800cdb4 ) + 800cc2e: 7d53 ldrb r3, [r2, #21] + 800cc30: f361 0382 bfi r3, r1, #2, #1 + 800cc34: 7553 strb r3, [r2, #21] statusPacket.lockState = 0; - 800cc1a: 4a5f ldr r2, [pc, #380] @ (800cd98 ) - 800cc1c: 7d53 ldrb r3, [r2, #21] - 800cc1e: f023 0308 bic.w r3, r3, #8 - 800cc22: 7553 strb r3, [r2, #21] - statusPacket.stopButton = !IN_ReadInput(IN_ESTOP); - 800cc24: 2003 movs r0, #3 - 800cc26: f7fc fcc3 bl 80095b0 - 800cc2a: 4603 mov r3, r0 - 800cc2c: 2b00 cmp r3, #0 - 800cc2e: bf0c ite eq - 800cc30: 2301 moveq r3, #1 - 800cc32: 2300 movne r3, #0 - 800cc34: b2d9 uxtb r1, r3 - 800cc36: 4a58 ldr r2, [pc, #352] @ (800cd98 ) + 800cc36: 4a5f ldr r2, [pc, #380] @ (800cdb4 ) 800cc38: 7d53 ldrb r3, [r2, #21] - 800cc3a: f361 1304 bfi r3, r1, #4, #1 + 800cc3a: f023 0308 bic.w r3, r3, #8 800cc3e: 7553 strb r3, [r2, #21] + statusPacket.stopButton = !IN_ReadInput(IN_ESTOP); + 800cc40: 2003 movs r0, #3 + 800cc42: f7fc fcb5 bl 80095b0 + 800cc46: 4603 mov r3, r0 + 800cc48: 2b00 cmp r3, #0 + 800cc4a: bf0c ite eq + 800cc4c: 2301 moveq r3, #1 + 800cc4e: 2300 movne r3, #0 + 800cc50: b2d9 uxtb r1, r3 + 800cc52: 4a58 ldr r2, [pc, #352] @ (800cdb4 ) + 800cc54: 7d53 ldrb r3, [r2, #21] + 800cc56: f361 1304 bfi r3, r1, #4, #1 + 800cc5a: 7553 strb r3, [r2, #21] statusPacket.logAvailable = (debug_buffer_available()>0)?1:0; - 800cc40: f7fd fba6 bl 800a390 - 800cc44: 4603 mov r3, r0 - 800cc46: 2b00 cmp r3, #0 - 800cc48: bf14 ite ne - 800cc4a: 2301 movne r3, #1 - 800cc4c: 2300 moveq r3, #0 - 800cc4e: b2d9 uxtb r1, r3 - 800cc50: 4a51 ldr r2, [pc, #324] @ (800cd98 ) - 800cc52: 7d53 ldrb r3, [r2, #21] - 800cc54: f361 1345 bfi r3, r1, #5, #1 - 800cc58: 7553 strb r3, [r2, #21] + 800cc5c: f7fd fb98 bl 800a390 + 800cc60: 4603 mov r3, r0 + 800cc62: 2b00 cmp r3, #0 + 800cc64: bf14 ite ne + 800cc66: 2301 movne r3, #1 + 800cc68: 2300 moveq r3, #0 + 800cc6a: b2d9 uxtb r1, r3 + 800cc6c: 4a51 ldr r2, [pc, #324] @ (800cdb4 ) + 800cc6e: 7d53 ldrb r3, [r2, #21] + 800cc70: f361 1345 bfi r3, r1, #5, #1 + 800cc74: 7553 strb r3, [r2, #21] statusPacket.evInfoAvailable = 0; - 800cc5a: 4a4f ldr r2, [pc, #316] @ (800cd98 ) - 800cc5c: 7d53 ldrb r3, [r2, #21] - 800cc5e: f023 0340 bic.w r3, r3, #64 @ 0x40 - 800cc62: 7553 strb r3, [r2, #21] + 800cc76: 4a4f ldr r2, [pc, #316] @ (800cdb4 ) + 800cc78: 7d53 ldrb r3, [r2, #21] + 800cc7a: f023 0340 bic.w r3, r3, #64 @ 0x40 + 800cc7e: 7553 strb r3, [r2, #21] statusPacket.psuOnline = PSU0.online; - 800cc64: 4b4d ldr r3, [pc, #308] @ (800cd9c ) - 800cc66: 7a1b ldrb r3, [r3, #8] - 800cc68: f003 0301 and.w r3, r3, #1 - 800cc6c: b2d9 uxtb r1, r3 - 800cc6e: 4a4a ldr r2, [pc, #296] @ (800cd98 ) - 800cc70: 7d53 ldrb r3, [r2, #21] - 800cc72: f361 13c7 bfi r3, r1, #7, #1 - 800cc76: 7553 strb r3, [r2, #21] + 800cc80: 4b4d ldr r3, [pc, #308] @ (800cdb8 ) + 800cc82: 7a1b ldrb r3, [r3, #8] + 800cc84: f003 0301 and.w r3, r3, #1 + 800cc88: b2d9 uxtb r1, r3 + 800cc8a: 4a4a ldr r2, [pc, #296] @ (800cdb4 ) + 800cc8c: 7d53 ldrb r3, [r2, #21] + 800cc8e: f361 13c7 bfi r3, r1, #7, #1 + 800cc92: 7553 strb r3, [r2, #21] statusPacket.tempConnector0 = CONN_ReadTemp(0); // температура коннектора - 800cc78: 2000 movs r0, #0 - 800cc7a: f7fc fd8b bl 8009794 - 800cc7e: 4603 mov r3, r0 - 800cc80: b25a sxtb r2, r3 - 800cc82: 4b45 ldr r3, [pc, #276] @ (800cd98 ) - 800cc84: 765a strb r2, [r3, #25] + 800cc94: 2000 movs r0, #0 + 800cc96: f7fc fd7d bl 8009794 + 800cc9a: 4603 mov r3, r0 + 800cc9c: b25a sxtb r2, r3 + 800cc9e: 4b45 ldr r3, [pc, #276] @ (800cdb4 ) + 800cca0: 765a strb r2, [r3, #25] statusPacket.tempConnector1 = CONN_ReadTemp(1); - 800cc86: 2001 movs r0, #1 - 800cc88: f7fc fd84 bl 8009794 - 800cc8c: 4603 mov r3, r0 - 800cc8e: b25a sxtb r2, r3 - 800cc90: 4b41 ldr r3, [pc, #260] @ (800cd98 ) - 800cc92: 769a strb r2, [r3, #26] + 800cca2: 2001 movs r0, #1 + 800cca4: f7fc fd76 bl 8009794 + 800cca8: 4603 mov r3, r0 + 800ccaa: b25a sxtb r2, r3 + 800ccac: 4b41 ldr r3, [pc, #260] @ (800cdb4 ) + 800ccae: 769a strb r2, [r3, #26] statusPacket.tempAmbient = PSU0.tempAmbient; // температура окружающего воздуха - 800cc94: 4b41 ldr r3, [pc, #260] @ (800cd9c ) - 800cc96: 69db ldr r3, [r3, #28] - 800cc98: b25a sxtb r2, r3 - 800cc9a: 4b3f ldr r3, [pc, #252] @ (800cd98 ) - 800cc9c: 76da strb r2, [r3, #27] + 800ccb0: 4b41 ldr r3, [pc, #260] @ (800cdb8 ) + 800ccb2: 69db ldr r3, [r3, #28] + 800ccb4: b25a sxtb r2, r3 + 800ccb6: 4b3f ldr r3, [pc, #252] @ (800cdb4 ) + 800ccb8: 76da strb r2, [r3, #27] statusPacket.tempBatteryMax = 0; - 800cc9e: 4b3e ldr r3, [pc, #248] @ (800cd98 ) - 800cca0: 2200 movs r2, #0 - 800cca2: 771a strb r2, [r3, #28] + 800ccba: 4b3e ldr r3, [pc, #248] @ (800cdb4 ) + 800ccbc: 2200 movs r2, #0 + 800ccbe: 771a strb r2, [r3, #28] statusPacket.tempBatteryMin = 0; - 800cca4: 4b3c ldr r3, [pc, #240] @ (800cd98 ) - 800cca6: 2200 movs r2, #0 - 800cca8: 775a strb r2, [r3, #29] + 800ccc0: 4b3c ldr r3, [pc, #240] @ (800cdb4 ) + 800ccc2: 2200 movs r2, #0 + 800ccc4: 775a strb r2, [r3, #29] statusPacket.highestVoltageOfBatteryCell = 0; - 800ccaa: 4b3b ldr r3, [pc, #236] @ (800cd98 ) - 800ccac: 2200 movs r2, #0 - 800ccae: 779a strb r2, [r3, #30] - 800ccb0: 2200 movs r2, #0 - 800ccb2: 77da strb r2, [r3, #31] + 800ccc6: 4b3b ldr r3, [pc, #236] @ (800cdb4 ) + 800ccc8: 2200 movs r2, #0 + 800ccca: 779a strb r2, [r3, #30] + 800cccc: 2200 movs r2, #0 + 800ccce: 77da strb r2, [r3, #31] statusPacket.batteryStatus = 0; - 800ccb4: 4b38 ldr r3, [pc, #224] @ (800cd98 ) - 800ccb6: 2200 movs r2, #0 - 800ccb8: f883 2020 strb.w r2, [r3, #32] + 800ccd0: 4b38 ldr r3, [pc, #224] @ (800cdb4 ) + 800ccd2: 2200 movs r2, #0 + 800ccd4: f883 2020 strb.w r2, [r3, #32] statusPacket.phaseVoltageAB = PSU_06.VAB; - 800ccbc: 4b38 ldr r3, [pc, #224] @ (800cda0 ) - 800ccbe: 689b ldr r3, [r3, #8] - 800ccc0: b29a uxth r2, r3 - 800ccc2: 4b35 ldr r3, [pc, #212] @ (800cd98 ) - 800ccc4: f8a3 2021 strh.w r2, [r3, #33] @ 0x21 + 800ccd8: 4b38 ldr r3, [pc, #224] @ (800cdbc ) + 800ccda: 689b ldr r3, [r3, #8] + 800ccdc: b29a uxth r2, r3 + 800ccde: 4b35 ldr r3, [pc, #212] @ (800cdb4 ) + 800cce0: f8a3 2021 strh.w r2, [r3, #33] @ 0x21 statusPacket.phaseVoltageBC = PSU_06.VBC; - 800ccc8: 4b35 ldr r3, [pc, #212] @ (800cda0 ) - 800ccca: 68db ldr r3, [r3, #12] - 800cccc: b29a uxth r2, r3 - 800ccce: 4b32 ldr r3, [pc, #200] @ (800cd98 ) - 800ccd0: f8a3 2023 strh.w r2, [r3, #35] @ 0x23 + 800cce4: 4b35 ldr r3, [pc, #212] @ (800cdbc ) + 800cce6: 68db ldr r3, [r3, #12] + 800cce8: b29a uxth r2, r3 + 800ccea: 4b32 ldr r3, [pc, #200] @ (800cdb4 ) + 800ccec: f8a3 2023 strh.w r2, [r3, #35] @ 0x23 statusPacket.phaseVoltageCA = PSU_06.VCA; - 800ccd4: 4b32 ldr r3, [pc, #200] @ (800cda0 ) - 800ccd6: 691b ldr r3, [r3, #16] - 800ccd8: b29a uxth r2, r3 - 800ccda: 4b2f ldr r3, [pc, #188] @ (800cd98 ) - 800ccdc: f8a3 2025 strh.w r2, [r3, #37] @ 0x25 + 800ccf0: 4b32 ldr r3, [pc, #200] @ (800cdbc ) + 800ccf2: 691b ldr r3, [r3, #16] + 800ccf4: b29a uxth r2, r3 + 800ccf6: 4b2f ldr r3, [pc, #188] @ (800cdb4 ) + 800ccf8: f8a3 2025 strh.w r2, [r3, #37] @ 0x25 // GBT TODO memset(statusPacket.VIN, 0, sizeof(statusPacket.VIN)); - 800cce0: 2211 movs r2, #17 - 800cce2: 2100 movs r1, #0 - 800cce4: 482f ldr r0, [pc, #188] @ (800cda4 ) - 800cce6: f006 f9ab bl 8013040 + 800ccfc: 2211 movs r2, #17 + 800ccfe: 2100 movs r1, #0 + 800cd00: 482f ldr r0, [pc, #188] @ (800cdc0 ) + 800cd02: f006 f9ab bl 801305c // GBT TODO statusPacket.batteryType = 0; - 800ccea: 4b2b ldr r3, [pc, #172] @ (800cd98 ) - 800ccec: 2200 movs r2, #0 - 800ccee: f883 2038 strb.w r2, [r3, #56] @ 0x38 - statusPacket.batteryCapacity = 0; - 800ccf2: 4b29 ldr r3, [pc, #164] @ (800cd98 ) - 800ccf4: 2200 movs r2, #0 - 800ccf6: f883 2039 strb.w r2, [r3, #57] @ 0x39 - 800ccfa: 2200 movs r2, #0 - 800ccfc: f883 203a strb.w r2, [r3, #58] @ 0x3a - statusPacket.batteryVoltage = 0; - 800cd00: 4b25 ldr r3, [pc, #148] @ (800cd98 ) - 800cd02: 2200 movs r2, #0 - 800cd04: f883 203b strb.w r2, [r3, #59] @ 0x3b + 800cd06: 4b2b ldr r3, [pc, #172] @ (800cdb4 ) 800cd08: 2200 movs r2, #0 - 800cd0a: f883 203c strb.w r2, [r3, #60] @ 0x3c + 800cd0a: f883 2038 strb.w r2, [r3, #56] @ 0x38 + statusPacket.batteryCapacity = 0; + 800cd0e: 4b29 ldr r3, [pc, #164] @ (800cdb4 ) + 800cd10: 2200 movs r2, #0 + 800cd12: f883 2039 strb.w r2, [r3, #57] @ 0x39 + 800cd16: 2200 movs r2, #0 + 800cd18: f883 203a strb.w r2, [r3, #58] @ 0x3a + statusPacket.batteryVoltage = 0; + 800cd1c: 4b25 ldr r3, [pc, #148] @ (800cdb4 ) + 800cd1e: 2200 movs r2, #0 + 800cd20: f883 203b strb.w r2, [r3, #59] @ 0x3b + 800cd24: 2200 movs r2, #0 + 800cd26: f883 203c strb.w r2, [r3, #60] @ 0x3c memset(statusPacket.batteryVendor, 0, sizeof(statusPacket.batteryVendor)); - 800cd0e: 2204 movs r2, #4 - 800cd10: 2100 movs r1, #0 - 800cd12: 4825 ldr r0, [pc, #148] @ (800cda8 ) - 800cd14: f006 f994 bl 8013040 + 800cd2a: 2204 movs r2, #4 + 800cd2c: 2100 movs r1, #0 + 800cd2e: 4825 ldr r0, [pc, #148] @ (800cdc4 ) + 800cd30: f006 f994 bl 801305c statusPacket.batterySN = 0; - 800cd18: 4b1f ldr r3, [pc, #124] @ (800cd98 ) - 800cd1a: 2200 movs r2, #0 - 800cd1c: f883 2041 strb.w r2, [r3, #65] @ 0x41 - 800cd20: 2200 movs r2, #0 - 800cd22: f883 2042 strb.w r2, [r3, #66] @ 0x42 - 800cd26: 2200 movs r2, #0 - 800cd28: f883 2043 strb.w r2, [r3, #67] @ 0x43 - 800cd2c: 2200 movs r2, #0 - 800cd2e: f883 2044 strb.w r2, [r3, #68] @ 0x44 - statusPacket.batteryManuD = 0; - 800cd32: 4b19 ldr r3, [pc, #100] @ (800cd98 ) - 800cd34: 2200 movs r2, #0 - 800cd36: f883 2047 strb.w r2, [r3, #71] @ 0x47 - statusPacket.batteryManuM = 0; - 800cd3a: 4b17 ldr r3, [pc, #92] @ (800cd98 ) + 800cd34: 4b1f ldr r3, [pc, #124] @ (800cdb4 ) + 800cd36: 2200 movs r2, #0 + 800cd38: f883 2041 strb.w r2, [r3, #65] @ 0x41 800cd3c: 2200 movs r2, #0 - 800cd3e: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 800cd3e: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 800cd42: 2200 movs r2, #0 + 800cd44: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 800cd48: 2200 movs r2, #0 + 800cd4a: f883 2044 strb.w r2, [r3, #68] @ 0x44 + statusPacket.batteryManuD = 0; + 800cd4e: 4b19 ldr r3, [pc, #100] @ (800cdb4 ) + 800cd50: 2200 movs r2, #0 + 800cd52: f883 2047 strb.w r2, [r3, #71] @ 0x47 + statusPacket.batteryManuM = 0; + 800cd56: 4b17 ldr r3, [pc, #92] @ (800cdb4 ) + 800cd58: 2200 movs r2, #0 + 800cd5a: f883 2046 strb.w r2, [r3, #70] @ 0x46 statusPacket.batteryManuY = 0; - 800cd42: 4b15 ldr r3, [pc, #84] @ (800cd98 ) - 800cd44: 2200 movs r2, #0 - 800cd46: f883 2045 strb.w r2, [r3, #69] @ 0x45 + 800cd5e: 4b15 ldr r3, [pc, #84] @ (800cdb4 ) + 800cd60: 2200 movs r2, #0 + 800cd62: f883 2045 strb.w r2, [r3, #69] @ 0x45 statusPacket.batteryCycleCount = 0; - 800cd4a: 4b13 ldr r3, [pc, #76] @ (800cd98 ) - 800cd4c: 2200 movs r2, #0 - 800cd4e: f883 2048 strb.w r2, [r3, #72] @ 0x48 - 800cd52: 2200 movs r2, #0 - 800cd54: f883 2049 strb.w r2, [r3, #73] @ 0x49 + 800cd66: 4b13 ldr r3, [pc, #76] @ (800cdb4 ) + 800cd68: 2200 movs r2, #0 + 800cd6a: f883 2048 strb.w r2, [r3, #72] @ 0x48 + 800cd6e: 2200 movs r2, #0 + 800cd70: f883 2049 strb.w r2, [r3, #73] @ 0x49 statusPacket.ownAuto = 0; - 800cd58: 4b0f ldr r3, [pc, #60] @ (800cd98 ) - 800cd5a: 2200 movs r2, #0 - 800cd5c: f883 204a strb.w r2, [r3, #74] @ 0x4a + 800cd74: 4b0f ldr r3, [pc, #60] @ (800cdb4 ) + 800cd76: 2200 movs r2, #0 + 800cd78: f883 204a strb.w r2, [r3, #74] @ 0x4a memset(statusPacket.EV_SW_VER, 0, sizeof(statusPacket.EV_SW_VER)); - 800cd60: 2208 movs r2, #8 - 800cd62: 2100 movs r1, #0 - 800cd64: 4811 ldr r0, [pc, #68] @ (800cdac ) - 800cd66: f006 f96b bl 8013040 + 800cd7c: 2208 movs r2, #8 + 800cd7e: 2100 movs r1, #0 + 800cd80: 4811 ldr r0, [pc, #68] @ (800cdc8 ) + 800cd82: f006 f96b bl 801305c statusPacket.testMode = 0; - 800cd6a: 4b0b ldr r3, [pc, #44] @ (800cd98 ) - 800cd6c: 2200 movs r2, #0 - 800cd6e: f883 2053 strb.w r2, [r3, #83] @ 0x53 - statusPacket.testVoltage = 0; - 800cd72: 4b09 ldr r3, [pc, #36] @ (800cd98 ) - 800cd74: 2200 movs r2, #0 - 800cd76: f883 2054 strb.w r2, [r3, #84] @ 0x54 - 800cd7a: 2200 movs r2, #0 - 800cd7c: f883 2055 strb.w r2, [r3, #85] @ 0x55 - statusPacket.testCurrent = 0; - 800cd80: 4b05 ldr r3, [pc, #20] @ (800cd98 ) - 800cd82: 2200 movs r2, #0 - 800cd84: f883 2056 strb.w r2, [r3, #86] @ 0x56 + 800cd86: 4b0b ldr r3, [pc, #44] @ (800cdb4 ) 800cd88: 2200 movs r2, #0 - 800cd8a: f883 2057 strb.w r2, [r3, #87] @ 0x57 + 800cd8a: f883 2053 strb.w r2, [r3, #83] @ 0x53 + statusPacket.testVoltage = 0; + 800cd8e: 4b09 ldr r3, [pc, #36] @ (800cdb4 ) + 800cd90: 2200 movs r2, #0 + 800cd92: f883 2054 strb.w r2, [r3, #84] @ 0x54 + 800cd96: 2200 movs r2, #0 + 800cd98: f883 2055 strb.w r2, [r3, #85] @ 0x55 + statusPacket.testCurrent = 0; + 800cd9c: 4b05 ldr r3, [pc, #20] @ (800cdb4 ) + 800cd9e: 2200 movs r2, #0 + 800cda0: f883 2056 strb.w r2, [r3, #86] @ 0x56 + 800cda4: 2200 movs r2, #0 + 800cda6: f883 2057 strb.w r2, [r3, #87] @ 0x57 // В debug.c есть CONN_SetState, предполагаем наличие CONN_GetState() // Если такой функции нет, закомментируйте следующую строку: // statusPacket.connState = CONN_GetState(); } - 800cd8e: bf00 nop - 800cd90: bd80 pop {r7, pc} - 800cd92: bf00 nop - 800cd94: 200001d4 .word 0x200001d4 - 800cd98: 20000e60 .word 0x20000e60 - 800cd9c: 20000724 .word 0x20000724 - 800cda0: 200006f8 .word 0x200006f8 - 800cda4: 20000e87 .word 0x20000e87 - 800cda8: 20000e9d .word 0x20000e9d - 800cdac: 20000eab .word 0x20000eab + 800cdaa: bf00 nop + 800cdac: bd80 pop {r7, pc} + 800cdae: bf00 nop + 800cdb0: 200001d4 .word 0x200001d4 + 800cdb4: 20000e60 .word 0x20000e60 + 800cdb8: 20000724 .word 0x20000724 + 800cdbc: 200006f8 .word 0x200006f8 + 800cdc0: 20000e87 .word 0x20000e87 + 800cdc4: 20000e9d .word 0x20000e9d + 800cdc8: 20000eab .word 0x20000eab -0800cdb0 : +0800cdcc : #include "sma_filter.h" void SMAFilter_Init(SMAFilter_t* f) { - 800cdb0: b480 push {r7} - 800cdb2: b085 sub sp, #20 - 800cdb4: af00 add r7, sp, #0 - 800cdb6: 6078 str r0, [r7, #4] + 800cdcc: b480 push {r7} + 800cdce: b085 sub sp, #20 + 800cdd0: af00 add r7, sp, #0 + 800cdd2: 6078 str r0, [r7, #4] if (f == 0) return; - 800cdb8: 687b ldr r3, [r7, #4] - 800cdba: 2b00 cmp r3, #0 - 800cdbc: d018 beq.n 800cdf0 + 800cdd4: 687b ldr r3, [r7, #4] + 800cdd6: 2b00 cmp r3, #0 + 800cdd8: d018 beq.n 800ce0c f->sum = 0; - 800cdbe: 687b ldr r3, [r7, #4] - 800cdc0: 2200 movs r2, #0 - 800cdc2: 601a str r2, [r3, #0] + 800cdda: 687b ldr r3, [r7, #4] + 800cddc: 2200 movs r2, #0 + 800cdde: 601a str r2, [r3, #0] f->idx = 0; - 800cdc4: 687b ldr r3, [r7, #4] - 800cdc6: 2200 movs r2, #0 - 800cdc8: 809a strh r2, [r3, #4] + 800cde0: 687b ldr r3, [r7, #4] + 800cde2: 2200 movs r2, #0 + 800cde4: 809a strh r2, [r3, #4] f->count = 0; - 800cdca: 687b ldr r3, [r7, #4] - 800cdcc: 2200 movs r2, #0 - 800cdce: 80da strh r2, [r3, #6] + 800cde6: 687b ldr r3, [r7, #4] + 800cde8: 2200 movs r2, #0 + 800cdea: 80da strh r2, [r3, #6] for (uint16_t i = 0; i < SMA_FILTER_WINDOW; i++) { - 800cdd0: 2300 movs r3, #0 - 800cdd2: 81fb strh r3, [r7, #14] - 800cdd4: e008 b.n 800cde8 + 800cdec: 2300 movs r3, #0 + 800cdee: 81fb strh r3, [r7, #14] + 800cdf0: e008 b.n 800ce04 f->buffer[i] = 0; - 800cdd6: 89fa ldrh r2, [r7, #14] - 800cdd8: 687b ldr r3, [r7, #4] - 800cdda: 3202 adds r2, #2 - 800cddc: 2100 movs r1, #0 - 800cdde: f843 1022 str.w r1, [r3, r2, lsl #2] + 800cdf2: 89fa ldrh r2, [r7, #14] + 800cdf4: 687b ldr r3, [r7, #4] + 800cdf6: 3202 adds r2, #2 + 800cdf8: 2100 movs r1, #0 + 800cdfa: f843 1022 str.w r1, [r3, r2, lsl #2] for (uint16_t i = 0; i < SMA_FILTER_WINDOW; i++) { - 800cde2: 89fb ldrh r3, [r7, #14] - 800cde4: 3301 adds r3, #1 - 800cde6: 81fb strh r3, [r7, #14] - 800cde8: 89fb ldrh r3, [r7, #14] - 800cdea: 2b07 cmp r3, #7 - 800cdec: d9f3 bls.n 800cdd6 - 800cdee: e000 b.n 800cdf2 + 800cdfe: 89fb ldrh r3, [r7, #14] + 800ce00: 3301 adds r3, #1 + 800ce02: 81fb strh r3, [r7, #14] + 800ce04: 89fb ldrh r3, [r7, #14] + 800ce06: 2b07 cmp r3, #7 + 800ce08: d9f3 bls.n 800cdf2 + 800ce0a: e000 b.n 800ce0e if (f == 0) return; - 800cdf0: bf00 nop + 800ce0c: bf00 nop } } - 800cdf2: 3714 adds r7, #20 - 800cdf4: 46bd mov sp, r7 - 800cdf6: bc80 pop {r7} - 800cdf8: 4770 bx lr + 800ce0e: 3714 adds r7, #20 + 800ce10: 46bd mov sp, r7 + 800ce12: bc80 pop {r7} + 800ce14: 4770 bx lr -0800cdfa : +0800ce16 : int32_t SMAFilter_Update(SMAFilter_t* f, int32_t x) { - 800cdfa: b480 push {r7} - 800cdfc: b085 sub sp, #20 - 800cdfe: af00 add r7, sp, #0 - 800ce00: 6078 str r0, [r7, #4] - 800ce02: 6039 str r1, [r7, #0] + 800ce16: b480 push {r7} + 800ce18: b085 sub sp, #20 + 800ce1a: af00 add r7, sp, #0 + 800ce1c: 6078 str r0, [r7, #4] + 800ce1e: 6039 str r1, [r7, #0] if (f == 0) return x; - 800ce04: 687b ldr r3, [r7, #4] - 800ce06: 2b00 cmp r3, #0 - 800ce08: d101 bne.n 800ce0e - 800ce0a: 683b ldr r3, [r7, #0] - 800ce0c: e056 b.n 800cebc + 800ce20: 687b ldr r3, [r7, #4] + 800ce22: 2b00 cmp r3, #0 + 800ce24: d101 bne.n 800ce2a + 800ce26: 683b ldr r3, [r7, #0] + 800ce28: e056 b.n 800ced8 // Пока окно не заполнено полностью, делим по фактическому count. if (f->count < SMA_FILTER_WINDOW) { - 800ce0e: 687b ldr r3, [r7, #4] - 800ce10: 88db ldrh r3, [r3, #6] - 800ce12: 2b07 cmp r3, #7 - 800ce14: d827 bhi.n 800ce66 + 800ce2a: 687b ldr r3, [r7, #4] + 800ce2c: 88db ldrh r3, [r3, #6] + 800ce2e: 2b07 cmp r3, #7 + 800ce30: d827 bhi.n 800ce82 f->buffer[f->idx] = x; - 800ce16: 687b ldr r3, [r7, #4] - 800ce18: 889b ldrh r3, [r3, #4] - 800ce1a: 461a mov r2, r3 - 800ce1c: 687b ldr r3, [r7, #4] - 800ce1e: 3202 adds r2, #2 - 800ce20: 6839 ldr r1, [r7, #0] - 800ce22: f843 1022 str.w r1, [r3, r2, lsl #2] - f->sum += x; - 800ce26: 687b ldr r3, [r7, #4] - 800ce28: 681a ldr r2, [r3, #0] - 800ce2a: 683b ldr r3, [r7, #0] - 800ce2c: 441a add r2, r3 - 800ce2e: 687b ldr r3, [r7, #4] - 800ce30: 601a str r2, [r3, #0] - f->idx++; 800ce32: 687b ldr r3, [r7, #4] 800ce34: 889b ldrh r3, [r3, #4] - 800ce36: 3301 adds r3, #1 - 800ce38: b29a uxth r2, r3 - 800ce3a: 687b ldr r3, [r7, #4] - 800ce3c: 809a strh r2, [r3, #4] + 800ce36: 461a mov r2, r3 + 800ce38: 687b ldr r3, [r7, #4] + 800ce3a: 3202 adds r2, #2 + 800ce3c: 6839 ldr r1, [r7, #0] + 800ce3e: f843 1022 str.w r1, [r3, r2, lsl #2] + f->sum += x; + 800ce42: 687b ldr r3, [r7, #4] + 800ce44: 681a ldr r2, [r3, #0] + 800ce46: 683b ldr r3, [r7, #0] + 800ce48: 441a add r2, r3 + 800ce4a: 687b ldr r3, [r7, #4] + 800ce4c: 601a str r2, [r3, #0] + f->idx++; + 800ce4e: 687b ldr r3, [r7, #4] + 800ce50: 889b ldrh r3, [r3, #4] + 800ce52: 3301 adds r3, #1 + 800ce54: b29a uxth r2, r3 + 800ce56: 687b ldr r3, [r7, #4] + 800ce58: 809a strh r2, [r3, #4] if (f->idx >= SMA_FILTER_WINDOW) f->idx = 0; - 800ce3e: 687b ldr r3, [r7, #4] - 800ce40: 889b ldrh r3, [r3, #4] - 800ce42: 2b07 cmp r3, #7 - 800ce44: d902 bls.n 800ce4c - 800ce46: 687b ldr r3, [r7, #4] - 800ce48: 2200 movs r2, #0 - 800ce4a: 809a strh r2, [r3, #4] + 800ce5a: 687b ldr r3, [r7, #4] + 800ce5c: 889b ldrh r3, [r3, #4] + 800ce5e: 2b07 cmp r3, #7 + 800ce60: d902 bls.n 800ce68 + 800ce62: 687b ldr r3, [r7, #4] + 800ce64: 2200 movs r2, #0 + 800ce66: 809a strh r2, [r3, #4] f->count++; - 800ce4c: 687b ldr r3, [r7, #4] - 800ce4e: 88db ldrh r3, [r3, #6] - 800ce50: 3301 adds r3, #1 - 800ce52: b29a uxth r2, r3 - 800ce54: 687b ldr r3, [r7, #4] - 800ce56: 80da strh r2, [r3, #6] + 800ce68: 687b ldr r3, [r7, #4] + 800ce6a: 88db ldrh r3, [r3, #6] + 800ce6c: 3301 adds r3, #1 + 800ce6e: b29a uxth r2, r3 + 800ce70: 687b ldr r3, [r7, #4] + 800ce72: 80da strh r2, [r3, #6] return (int32_t)(f->sum / (int32_t)f->count); - 800ce58: 687b ldr r3, [r7, #4] - 800ce5a: 681b ldr r3, [r3, #0] - 800ce5c: 687a ldr r2, [r7, #4] - 800ce5e: 88d2 ldrh r2, [r2, #6] - 800ce60: fb93 f3f2 sdiv r3, r3, r2 - 800ce64: e02a b.n 800cebc + 800ce74: 687b ldr r3, [r7, #4] + 800ce76: 681b ldr r3, [r3, #0] + 800ce78: 687a ldr r2, [r7, #4] + 800ce7a: 88d2 ldrh r2, [r2, #6] + 800ce7c: fb93 f3f2 sdiv r3, r3, r2 + 800ce80: e02a b.n 800ced8 } // Окно заполнено: "вычитаем старое + добавляем новое". int32_t old = f->buffer[f->idx]; - 800ce66: 687b ldr r3, [r7, #4] - 800ce68: 889b ldrh r3, [r3, #4] - 800ce6a: 461a mov r2, r3 - 800ce6c: 687b ldr r3, [r7, #4] - 800ce6e: 3202 adds r2, #2 - 800ce70: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800ce74: 60fb str r3, [r7, #12] + 800ce82: 687b ldr r3, [r7, #4] + 800ce84: 889b ldrh r3, [r3, #4] + 800ce86: 461a mov r2, r3 + 800ce88: 687b ldr r3, [r7, #4] + 800ce8a: 3202 adds r2, #2 + 800ce8c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800ce90: 60fb str r3, [r7, #12] f->buffer[f->idx] = x; - 800ce76: 687b ldr r3, [r7, #4] - 800ce78: 889b ldrh r3, [r3, #4] - 800ce7a: 461a mov r2, r3 - 800ce7c: 687b ldr r3, [r7, #4] - 800ce7e: 3202 adds r2, #2 - 800ce80: 6839 ldr r1, [r7, #0] - 800ce82: f843 1022 str.w r1, [r3, r2, lsl #2] - f->sum += (x - old); - 800ce86: 687b ldr r3, [r7, #4] - 800ce88: 681a ldr r2, [r3, #0] - 800ce8a: 6839 ldr r1, [r7, #0] - 800ce8c: 68fb ldr r3, [r7, #12] - 800ce8e: 1acb subs r3, r1, r3 - 800ce90: 441a add r2, r3 800ce92: 687b ldr r3, [r7, #4] - 800ce94: 601a str r2, [r3, #0] + 800ce94: 889b ldrh r3, [r3, #4] + 800ce96: 461a mov r2, r3 + 800ce98: 687b ldr r3, [r7, #4] + 800ce9a: 3202 adds r2, #2 + 800ce9c: 6839 ldr r1, [r7, #0] + 800ce9e: f843 1022 str.w r1, [r3, r2, lsl #2] + f->sum += (x - old); + 800cea2: 687b ldr r3, [r7, #4] + 800cea4: 681a ldr r2, [r3, #0] + 800cea6: 6839 ldr r1, [r7, #0] + 800cea8: 68fb ldr r3, [r7, #12] + 800ceaa: 1acb subs r3, r1, r3 + 800ceac: 441a add r2, r3 + 800ceae: 687b ldr r3, [r7, #4] + 800ceb0: 601a str r2, [r3, #0] f->idx++; - 800ce96: 687b ldr r3, [r7, #4] - 800ce98: 889b ldrh r3, [r3, #4] - 800ce9a: 3301 adds r3, #1 - 800ce9c: b29a uxth r2, r3 - 800ce9e: 687b ldr r3, [r7, #4] - 800cea0: 809a strh r2, [r3, #4] + 800ceb2: 687b ldr r3, [r7, #4] + 800ceb4: 889b ldrh r3, [r3, #4] + 800ceb6: 3301 adds r3, #1 + 800ceb8: b29a uxth r2, r3 + 800ceba: 687b ldr r3, [r7, #4] + 800cebc: 809a strh r2, [r3, #4] if (f->idx >= SMA_FILTER_WINDOW) f->idx = 0; - 800cea2: 687b ldr r3, [r7, #4] - 800cea4: 889b ldrh r3, [r3, #4] - 800cea6: 2b07 cmp r3, #7 - 800cea8: d902 bls.n 800ceb0 - 800ceaa: 687b ldr r3, [r7, #4] - 800ceac: 2200 movs r2, #0 - 800ceae: 809a strh r2, [r3, #4] + 800cebe: 687b ldr r3, [r7, #4] + 800cec0: 889b ldrh r3, [r3, #4] + 800cec2: 2b07 cmp r3, #7 + 800cec4: d902 bls.n 800cecc + 800cec6: 687b ldr r3, [r7, #4] + 800cec8: 2200 movs r2, #0 + 800ceca: 809a strh r2, [r3, #4] return (int32_t)(f->sum / (int32_t)SMA_FILTER_WINDOW); - 800ceb0: 687b ldr r3, [r7, #4] - 800ceb2: 681b ldr r3, [r3, #0] - 800ceb4: 2b00 cmp r3, #0 - 800ceb6: da00 bge.n 800ceba - 800ceb8: 3307 adds r3, #7 - 800ceba: 10db asrs r3, r3, #3 + 800cecc: 687b ldr r3, [r7, #4] + 800cece: 681b ldr r3, [r3, #0] + 800ced0: 2b00 cmp r3, #0 + 800ced2: da00 bge.n 800ced6 + 800ced4: 3307 adds r3, #7 + 800ced6: 10db asrs r3, r3, #3 } - 800cebc: 4618 mov r0, r3 - 800cebe: 3714 adds r7, #20 - 800cec0: 46bd mov sp, r7 - 800cec2: bc80 pop {r7} - 800cec4: 4770 bx lr + 800ced8: 4618 mov r0, r3 + 800ceda: 3714 adds r7, #20 + 800cedc: 46bd mov sp, r7 + 800cede: bc80 pop {r7} + 800cee0: 4770 bx lr ... -0800cec8 : +0800cee4 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 800cec8: b480 push {r7} - 800ceca: b085 sub sp, #20 - 800cecc: af00 add r7, sp, #0 + 800cee4: b480 push {r7} + 800cee6: b085 sub sp, #20 + 800cee8: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_AFIO_CLK_ENABLE(); - 800cece: 4b15 ldr r3, [pc, #84] @ (800cf24 ) - 800ced0: 699b ldr r3, [r3, #24] - 800ced2: 4a14 ldr r2, [pc, #80] @ (800cf24 ) - 800ced4: f043 0301 orr.w r3, r3, #1 - 800ced8: 6193 str r3, [r2, #24] - 800ceda: 4b12 ldr r3, [pc, #72] @ (800cf24 ) - 800cedc: 699b ldr r3, [r3, #24] - 800cede: f003 0301 and.w r3, r3, #1 - 800cee2: 60bb str r3, [r7, #8] - 800cee4: 68bb ldr r3, [r7, #8] + 800ceea: 4b15 ldr r3, [pc, #84] @ (800cf40 ) + 800ceec: 699b ldr r3, [r3, #24] + 800ceee: 4a14 ldr r2, [pc, #80] @ (800cf40 ) + 800cef0: f043 0301 orr.w r3, r3, #1 + 800cef4: 6193 str r3, [r2, #24] + 800cef6: 4b12 ldr r3, [pc, #72] @ (800cf40 ) + 800cef8: 699b ldr r3, [r3, #24] + 800cefa: f003 0301 and.w r3, r3, #1 + 800cefe: 60bb str r3, [r7, #8] + 800cf00: 68bb ldr r3, [r7, #8] __HAL_RCC_PWR_CLK_ENABLE(); - 800cee6: 4b0f ldr r3, [pc, #60] @ (800cf24 ) - 800cee8: 69db ldr r3, [r3, #28] - 800ceea: 4a0e ldr r2, [pc, #56] @ (800cf24 ) - 800ceec: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 800cef0: 61d3 str r3, [r2, #28] - 800cef2: 4b0c ldr r3, [pc, #48] @ (800cf24 ) - 800cef4: 69db ldr r3, [r3, #28] - 800cef6: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800cefa: 607b str r3, [r7, #4] - 800cefc: 687b ldr r3, [r7, #4] + 800cf02: 4b0f ldr r3, [pc, #60] @ (800cf40 ) + 800cf04: 69db ldr r3, [r3, #28] + 800cf06: 4a0e ldr r2, [pc, #56] @ (800cf40 ) + 800cf08: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 800cf0c: 61d3 str r3, [r2, #28] + 800cf0e: 4b0c ldr r3, [pc, #48] @ (800cf40 ) + 800cf10: 69db ldr r3, [r3, #28] + 800cf12: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800cf16: 607b str r3, [r7, #4] + 800cf18: 687b ldr r3, [r7, #4] /* System interrupt init*/ /** NOJTAG: JTAG-DP Disabled and SW-DP Enabled */ __HAL_AFIO_REMAP_SWJ_NOJTAG(); - 800cefe: 4b0a ldr r3, [pc, #40] @ (800cf28 ) - 800cf00: 685b ldr r3, [r3, #4] - 800cf02: 60fb str r3, [r7, #12] - 800cf04: 68fb ldr r3, [r7, #12] - 800cf06: f023 63e0 bic.w r3, r3, #117440512 @ 0x7000000 - 800cf0a: 60fb str r3, [r7, #12] - 800cf0c: 68fb ldr r3, [r7, #12] - 800cf0e: f043 7300 orr.w r3, r3, #33554432 @ 0x2000000 - 800cf12: 60fb str r3, [r7, #12] - 800cf14: 4a04 ldr r2, [pc, #16] @ (800cf28 ) - 800cf16: 68fb ldr r3, [r7, #12] - 800cf18: 6053 str r3, [r2, #4] + 800cf1a: 4b0a ldr r3, [pc, #40] @ (800cf44 ) + 800cf1c: 685b ldr r3, [r3, #4] + 800cf1e: 60fb str r3, [r7, #12] + 800cf20: 68fb ldr r3, [r7, #12] + 800cf22: f023 63e0 bic.w r3, r3, #117440512 @ 0x7000000 + 800cf26: 60fb str r3, [r7, #12] + 800cf28: 68fb ldr r3, [r7, #12] + 800cf2a: f043 7300 orr.w r3, r3, #33554432 @ 0x2000000 + 800cf2e: 60fb str r3, [r7, #12] + 800cf30: 4a04 ldr r2, [pc, #16] @ (800cf44 ) + 800cf32: 68fb ldr r3, [r7, #12] + 800cf34: 6053 str r3, [r2, #4] /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 800cf1a: bf00 nop - 800cf1c: 3714 adds r7, #20 - 800cf1e: 46bd mov sp, r7 - 800cf20: bc80 pop {r7} - 800cf22: 4770 bx lr - 800cf24: 40021000 .word 0x40021000 - 800cf28: 40010000 .word 0x40010000 + 800cf36: bf00 nop + 800cf38: 3714 adds r7, #20 + 800cf3a: 46bd mov sp, r7 + 800cf3c: bc80 pop {r7} + 800cf3e: 4770 bx lr + 800cf40: 40021000 .word 0x40021000 + 800cf44: 40010000 .word 0x40010000 -0800cf2c : +0800cf48 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 800cf2c: b480 push {r7} - 800cf2e: af00 add r7, sp, #0 + 800cf48: b480 push {r7} + 800cf4a: 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) - 800cf30: bf00 nop - 800cf32: e7fd b.n 800cf30 + 800cf4c: bf00 nop + 800cf4e: e7fd b.n 800cf4c -0800cf34 : +0800cf50 : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 800cf34: b480 push {r7} - 800cf36: af00 add r7, sp, #0 + 800cf50: b480 push {r7} + 800cf52: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 800cf38: bf00 nop - 800cf3a: e7fd b.n 800cf38 + 800cf54: bf00 nop + 800cf56: e7fd b.n 800cf54 -0800cf3c : +0800cf58 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 800cf3c: b480 push {r7} - 800cf3e: af00 add r7, sp, #0 + 800cf58: b480 push {r7} + 800cf5a: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 800cf40: bf00 nop - 800cf42: e7fd b.n 800cf40 + 800cf5c: bf00 nop + 800cf5e: e7fd b.n 800cf5c -0800cf44 : +0800cf60 : /** * @brief This function handles Prefetch fault, memory access fault. */ void BusFault_Handler(void) { - 800cf44: b480 push {r7} - 800cf46: af00 add r7, sp, #0 + 800cf60: b480 push {r7} + 800cf62: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 800cf48: bf00 nop - 800cf4a: e7fd b.n 800cf48 + 800cf64: bf00 nop + 800cf66: e7fd b.n 800cf64 -0800cf4c : +0800cf68 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 800cf4c: b480 push {r7} - 800cf4e: af00 add r7, sp, #0 + 800cf68: b480 push {r7} + 800cf6a: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 800cf50: bf00 nop - 800cf52: e7fd b.n 800cf50 + 800cf6c: bf00 nop + 800cf6e: e7fd b.n 800cf6c -0800cf54 : +0800cf70 : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 800cf54: b480 push {r7} - 800cf56: af00 add r7, sp, #0 + 800cf70: b480 push {r7} + 800cf72: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 800cf58: bf00 nop - 800cf5a: 46bd mov sp, r7 - 800cf5c: bc80 pop {r7} - 800cf5e: 4770 bx lr + 800cf74: bf00 nop + 800cf76: 46bd mov sp, r7 + 800cf78: bc80 pop {r7} + 800cf7a: 4770 bx lr -0800cf60 : +0800cf7c : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 800cf60: b480 push {r7} - 800cf62: af00 add r7, sp, #0 + 800cf7c: b480 push {r7} + 800cf7e: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 800cf64: bf00 nop - 800cf66: 46bd mov sp, r7 - 800cf68: bc80 pop {r7} - 800cf6a: 4770 bx lr + 800cf80: bf00 nop + 800cf82: 46bd mov sp, r7 + 800cf84: bc80 pop {r7} + 800cf86: 4770 bx lr -0800cf6c : +0800cf88 : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 800cf6c: b480 push {r7} - 800cf6e: af00 add r7, sp, #0 + 800cf88: b480 push {r7} + 800cf8a: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 800cf70: bf00 nop - 800cf72: 46bd mov sp, r7 - 800cf74: bc80 pop {r7} - 800cf76: 4770 bx lr + 800cf8c: bf00 nop + 800cf8e: 46bd mov sp, r7 + 800cf90: bc80 pop {r7} + 800cf92: 4770 bx lr -0800cf78 : +0800cf94 : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 800cf78: b580 push {r7, lr} - 800cf7a: af00 add r7, sp, #0 + 800cf94: b580 push {r7, lr} + 800cf96: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 800cf7c: f000 fcdc bl 800d938 + 800cf98: f000 fcdc bl 800d954 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 800cf80: bf00 nop - 800cf82: bd80 pop {r7, pc} + 800cf9c: bf00 nop + 800cf9e: bd80 pop {r7, pc} -0800cf84 : +0800cfa0 : /** * @brief This function handles CAN1 RX0 interrupt. */ void CAN1_RX0_IRQHandler(void) { - 800cf84: b580 push {r7, lr} - 800cf86: af00 add r7, sp, #0 + 800cfa0: b580 push {r7, lr} + 800cfa2: af00 add r7, sp, #0 /* USER CODE BEGIN CAN1_RX0_IRQn 0 */ /* USER CODE END CAN1_RX0_IRQn 0 */ HAL_CAN_IRQHandler(&hcan1); - 800cf88: 4802 ldr r0, [pc, #8] @ (800cf94 ) - 800cf8a: f001 fecd bl 800ed28 + 800cfa4: 4802 ldr r0, [pc, #8] @ (800cfb0 ) + 800cfa6: f001 fecd bl 800ed44 /* USER CODE BEGIN CAN1_RX0_IRQn 1 */ /* USER CODE END CAN1_RX0_IRQn 1 */ } - 800cf8e: bf00 nop - 800cf90: bd80 pop {r7, pc} - 800cf92: bf00 nop - 800cf94: 20000180 .word 0x20000180 + 800cfaa: bf00 nop + 800cfac: bd80 pop {r7, pc} + 800cfae: bf00 nop + 800cfb0: 20000180 .word 0x20000180 -0800cf98 : +0800cfb4 : /** * @brief This function handles TIM3 global interrupt. */ void TIM3_IRQHandler(void) { - 800cf98: b580 push {r7, lr} - 800cf9a: af00 add r7, sp, #0 + 800cfb4: b580 push {r7, lr} + 800cfb6: af00 add r7, sp, #0 /* USER CODE BEGIN TIM3_IRQn 0 */ /* USER CODE END TIM3_IRQn 0 */ HAL_TIM_IRQHandler(&htim3); - 800cf9c: 4802 ldr r0, [pc, #8] @ (800cfa8 ) - 800cf9e: f004 f8c3 bl 8011128 + 800cfb8: 4802 ldr r0, [pc, #8] @ (800cfc4 ) + 800cfba: f004 f8c3 bl 8011144 /* USER CODE BEGIN TIM3_IRQn 1 */ /* USER CODE END TIM3_IRQn 1 */ } - 800cfa2: bf00 nop - 800cfa4: bd80 pop {r7, pc} - 800cfa6: bf00 nop - 800cfa8: 20000ec8 .word 0x20000ec8 + 800cfbe: bf00 nop + 800cfc0: bd80 pop {r7, pc} + 800cfc2: bf00 nop + 800cfc4: 20000ec8 .word 0x20000ec8 -0800cfac : +0800cfc8 : /** * @brief This function handles USART1 global interrupt. */ void USART1_IRQHandler(void) { - 800cfac: b580 push {r7, lr} - 800cfae: af00 add r7, sp, #0 + 800cfc8: b580 push {r7, lr} + 800cfca: af00 add r7, sp, #0 /* USER CODE BEGIN USART1_IRQn 0 */ /* USER CODE END USART1_IRQn 0 */ HAL_UART_IRQHandler(&huart1); - 800cfb0: 4802 ldr r0, [pc, #8] @ (800cfbc ) - 800cfb2: f005 f90b bl 80121cc + 800cfcc: 4802 ldr r0, [pc, #8] @ (800cfd8 ) + 800cfce: f005 f90b bl 80121e8 /* USER CODE BEGIN USART1_IRQn 1 */ /* USER CODE END USART1_IRQn 1 */ } - 800cfb6: bf00 nop - 800cfb8: bd80 pop {r7, pc} - 800cfba: bf00 nop - 800cfbc: 20000fa0 .word 0x20000fa0 + 800cfd2: bf00 nop + 800cfd4: bd80 pop {r7, pc} + 800cfd6: bf00 nop + 800cfd8: 20000fa0 .word 0x20000fa0 -0800cfc0 : +0800cfdc : /** * @brief This function handles USART2 global interrupt. */ void USART2_IRQHandler(void) { - 800cfc0: b580 push {r7, lr} - 800cfc2: af00 add r7, sp, #0 + 800cfdc: b580 push {r7, lr} + 800cfde: af00 add r7, sp, #0 /* USER CODE BEGIN USART2_IRQn 0 */ /* USER CODE END USART2_IRQn 0 */ HAL_UART_IRQHandler(&huart2); - 800cfc4: 4802 ldr r0, [pc, #8] @ (800cfd0 ) - 800cfc6: f005 f901 bl 80121cc + 800cfe0: 4802 ldr r0, [pc, #8] @ (800cfec ) + 800cfe2: f005 f901 bl 80121e8 /* USER CODE BEGIN USART2_IRQn 1 */ /* USER CODE END USART2_IRQn 1 */ } - 800cfca: bf00 nop - 800cfcc: bd80 pop {r7, pc} - 800cfce: bf00 nop - 800cfd0: 20000fe8 .word 0x20000fe8 + 800cfe6: bf00 nop + 800cfe8: bd80 pop {r7, pc} + 800cfea: bf00 nop + 800cfec: 20000fe8 .word 0x20000fe8 -0800cfd4 : +0800cff0 : /** * @brief This function handles USART3 global interrupt. */ void USART3_IRQHandler(void) { - 800cfd4: b580 push {r7, lr} - 800cfd6: af00 add r7, sp, #0 + 800cff0: b580 push {r7, lr} + 800cff2: af00 add r7, sp, #0 /* USER CODE BEGIN USART3_IRQn 0 */ /* USER CODE END USART3_IRQn 0 */ HAL_UART_IRQHandler(&huart3); - 800cfd8: 4802 ldr r0, [pc, #8] @ (800cfe4 ) - 800cfda: f005 f8f7 bl 80121cc + 800cff4: 4802 ldr r0, [pc, #8] @ (800d000 ) + 800cff6: f005 f8f7 bl 80121e8 /* USER CODE BEGIN USART3_IRQn 1 */ /* USER CODE END USART3_IRQn 1 */ } - 800cfde: bf00 nop - 800cfe0: bd80 pop {r7, pc} - 800cfe2: bf00 nop - 800cfe4: 20001030 .word 0x20001030 + 800cffa: bf00 nop + 800cffc: bd80 pop {r7, pc} + 800cffe: bf00 nop + 800d000: 20001030 .word 0x20001030 -0800cfe8 : +0800d004 : /** * @brief This function handles UART5 global interrupt. */ void UART5_IRQHandler(void) { - 800cfe8: b580 push {r7, lr} - 800cfea: af00 add r7, sp, #0 + 800d004: b580 push {r7, lr} + 800d006: af00 add r7, sp, #0 /* USER CODE BEGIN UART5_IRQn 0 */ /* USER CODE END UART5_IRQn 0 */ HAL_UART_IRQHandler(&huart5); - 800cfec: 4802 ldr r0, [pc, #8] @ (800cff8 ) - 800cfee: f005 f8ed bl 80121cc + 800d008: 4802 ldr r0, [pc, #8] @ (800d014 ) + 800d00a: f005 f8ed bl 80121e8 /* USER CODE BEGIN UART5_IRQn 1 */ /* USER CODE END UART5_IRQn 1 */ } - 800cff2: bf00 nop - 800cff4: bd80 pop {r7, pc} - 800cff6: bf00 nop - 800cff8: 20000f58 .word 0x20000f58 + 800d00e: bf00 nop + 800d010: bd80 pop {r7, pc} + 800d012: bf00 nop + 800d014: 20000f58 .word 0x20000f58 -0800cffc : +0800d018 : /** * @brief This function handles CAN2 TX interrupt. */ void CAN2_TX_IRQHandler(void) { - 800cffc: b580 push {r7, lr} - 800cffe: af00 add r7, sp, #0 + 800d018: b580 push {r7, lr} + 800d01a: af00 add r7, sp, #0 /* USER CODE BEGIN CAN2_TX_IRQn 0 */ /* USER CODE END CAN2_TX_IRQn 0 */ HAL_CAN_IRQHandler(&hcan2); - 800d000: 4802 ldr r0, [pc, #8] @ (800d00c ) - 800d002: f001 fe91 bl 800ed28 + 800d01c: 4802 ldr r0, [pc, #8] @ (800d028 ) + 800d01e: f001 fe91 bl 800ed44 /* USER CODE BEGIN CAN2_TX_IRQn 1 */ /* USER CODE END CAN2_TX_IRQn 1 */ } - 800d006: bf00 nop - 800d008: bd80 pop {r7, pc} - 800d00a: bf00 nop - 800d00c: 200001a8 .word 0x200001a8 + 800d022: bf00 nop + 800d024: bd80 pop {r7, pc} + 800d026: bf00 nop + 800d028: 200001a8 .word 0x200001a8 -0800d010 : +0800d02c : /** * @brief This function handles CAN2 RX1 interrupt. */ void CAN2_RX1_IRQHandler(void) { - 800d010: b580 push {r7, lr} - 800d012: af00 add r7, sp, #0 + 800d02c: b580 push {r7, lr} + 800d02e: af00 add r7, sp, #0 /* USER CODE BEGIN CAN2_RX1_IRQn 0 */ /* USER CODE END CAN2_RX1_IRQn 0 */ HAL_CAN_IRQHandler(&hcan2); - 800d014: 4802 ldr r0, [pc, #8] @ (800d020 ) - 800d016: f001 fe87 bl 800ed28 + 800d030: 4802 ldr r0, [pc, #8] @ (800d03c ) + 800d032: f001 fe87 bl 800ed44 /* USER CODE BEGIN CAN2_RX1_IRQn 1 */ /* USER CODE END CAN2_RX1_IRQn 1 */ } - 800d01a: bf00 nop - 800d01c: bd80 pop {r7, pc} - 800d01e: bf00 nop - 800d020: 200001a8 .word 0x200001a8 + 800d036: bf00 nop + 800d038: bd80 pop {r7, pc} + 800d03a: bf00 nop + 800d03c: 200001a8 .word 0x200001a8 -0800d024 <_read>: +0800d040 <_read>: _kill(status, -1); while (1) {} /* Make sure we hang here */ } __attribute__((weak)) int _read(int file, char *ptr, int len) { - 800d024: b580 push {r7, lr} - 800d026: b086 sub sp, #24 - 800d028: af00 add r7, sp, #0 - 800d02a: 60f8 str r0, [r7, #12] - 800d02c: 60b9 str r1, [r7, #8] - 800d02e: 607a str r2, [r7, #4] + 800d040: b580 push {r7, lr} + 800d042: b086 sub sp, #24 + 800d044: af00 add r7, sp, #0 + 800d046: 60f8 str r0, [r7, #12] + 800d048: 60b9 str r1, [r7, #8] + 800d04a: 607a str r2, [r7, #4] (void)file; int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) - 800d030: 2300 movs r3, #0 - 800d032: 617b str r3, [r7, #20] - 800d034: e00a b.n 800d04c <_read+0x28> + 800d04c: 2300 movs r3, #0 + 800d04e: 617b str r3, [r7, #20] + 800d050: e00a b.n 800d068 <_read+0x28> { *ptr++ = __io_getchar(); - 800d036: f3af 8000 nop.w - 800d03a: 4601 mov r1, r0 - 800d03c: 68bb ldr r3, [r7, #8] - 800d03e: 1c5a adds r2, r3, #1 - 800d040: 60ba str r2, [r7, #8] - 800d042: b2ca uxtb r2, r1 - 800d044: 701a strb r2, [r3, #0] + 800d052: f3af 8000 nop.w + 800d056: 4601 mov r1, r0 + 800d058: 68bb ldr r3, [r7, #8] + 800d05a: 1c5a adds r2, r3, #1 + 800d05c: 60ba str r2, [r7, #8] + 800d05e: b2ca uxtb r2, r1 + 800d060: 701a strb r2, [r3, #0] for (DataIdx = 0; DataIdx < len; DataIdx++) - 800d046: 697b ldr r3, [r7, #20] - 800d048: 3301 adds r3, #1 - 800d04a: 617b str r3, [r7, #20] - 800d04c: 697a ldr r2, [r7, #20] - 800d04e: 687b ldr r3, [r7, #4] - 800d050: 429a cmp r2, r3 - 800d052: dbf0 blt.n 800d036 <_read+0x12> + 800d062: 697b ldr r3, [r7, #20] + 800d064: 3301 adds r3, #1 + 800d066: 617b str r3, [r7, #20] + 800d068: 697a ldr r2, [r7, #20] + 800d06a: 687b ldr r3, [r7, #4] + 800d06c: 429a cmp r2, r3 + 800d06e: dbf0 blt.n 800d052 <_read+0x12> } return len; - 800d054: 687b ldr r3, [r7, #4] + 800d070: 687b ldr r3, [r7, #4] } - 800d056: 4618 mov r0, r3 - 800d058: 3718 adds r7, #24 - 800d05a: 46bd mov sp, r7 - 800d05c: bd80 pop {r7, pc} + 800d072: 4618 mov r0, r3 + 800d074: 3718 adds r7, #24 + 800d076: 46bd mov sp, r7 + 800d078: bd80 pop {r7, pc} -0800d05e <_close>: +0800d07a <_close>: } return len; } int _close(int file) { - 800d05e: b480 push {r7} - 800d060: b083 sub sp, #12 - 800d062: af00 add r7, sp, #0 - 800d064: 6078 str r0, [r7, #4] + 800d07a: b480 push {r7} + 800d07c: b083 sub sp, #12 + 800d07e: af00 add r7, sp, #0 + 800d080: 6078 str r0, [r7, #4] (void)file; return -1; - 800d066: f04f 33ff mov.w r3, #4294967295 + 800d082: f04f 33ff mov.w r3, #4294967295 } - 800d06a: 4618 mov r0, r3 - 800d06c: 370c adds r7, #12 - 800d06e: 46bd mov sp, r7 - 800d070: bc80 pop {r7} - 800d072: 4770 bx lr + 800d086: 4618 mov r0, r3 + 800d088: 370c adds r7, #12 + 800d08a: 46bd mov sp, r7 + 800d08c: bc80 pop {r7} + 800d08e: 4770 bx lr -0800d074 <_fstat>: +0800d090 <_fstat>: int _fstat(int file, struct stat *st) { - 800d074: b480 push {r7} - 800d076: b083 sub sp, #12 - 800d078: af00 add r7, sp, #0 - 800d07a: 6078 str r0, [r7, #4] - 800d07c: 6039 str r1, [r7, #0] + 800d090: b480 push {r7} + 800d092: b083 sub sp, #12 + 800d094: af00 add r7, sp, #0 + 800d096: 6078 str r0, [r7, #4] + 800d098: 6039 str r1, [r7, #0] (void)file; st->st_mode = S_IFCHR; - 800d07e: 683b ldr r3, [r7, #0] - 800d080: f44f 5200 mov.w r2, #8192 @ 0x2000 - 800d084: 605a str r2, [r3, #4] + 800d09a: 683b ldr r3, [r7, #0] + 800d09c: f44f 5200 mov.w r2, #8192 @ 0x2000 + 800d0a0: 605a str r2, [r3, #4] return 0; - 800d086: 2300 movs r3, #0 + 800d0a2: 2300 movs r3, #0 } - 800d088: 4618 mov r0, r3 - 800d08a: 370c adds r7, #12 - 800d08c: 46bd mov sp, r7 - 800d08e: bc80 pop {r7} - 800d090: 4770 bx lr + 800d0a4: 4618 mov r0, r3 + 800d0a6: 370c adds r7, #12 + 800d0a8: 46bd mov sp, r7 + 800d0aa: bc80 pop {r7} + 800d0ac: 4770 bx lr -0800d092 <_isatty>: +0800d0ae <_isatty>: int _isatty(int file) { - 800d092: b480 push {r7} - 800d094: b083 sub sp, #12 - 800d096: af00 add r7, sp, #0 - 800d098: 6078 str r0, [r7, #4] + 800d0ae: b480 push {r7} + 800d0b0: b083 sub sp, #12 + 800d0b2: af00 add r7, sp, #0 + 800d0b4: 6078 str r0, [r7, #4] (void)file; return 1; - 800d09a: 2301 movs r3, #1 + 800d0b6: 2301 movs r3, #1 } - 800d09c: 4618 mov r0, r3 - 800d09e: 370c adds r7, #12 - 800d0a0: 46bd mov sp, r7 - 800d0a2: bc80 pop {r7} - 800d0a4: 4770 bx lr + 800d0b8: 4618 mov r0, r3 + 800d0ba: 370c adds r7, #12 + 800d0bc: 46bd mov sp, r7 + 800d0be: bc80 pop {r7} + 800d0c0: 4770 bx lr -0800d0a6 <_lseek>: +0800d0c2 <_lseek>: int _lseek(int file, int ptr, int dir) { - 800d0a6: b480 push {r7} - 800d0a8: b085 sub sp, #20 - 800d0aa: af00 add r7, sp, #0 - 800d0ac: 60f8 str r0, [r7, #12] - 800d0ae: 60b9 str r1, [r7, #8] - 800d0b0: 607a str r2, [r7, #4] + 800d0c2: b480 push {r7} + 800d0c4: b085 sub sp, #20 + 800d0c6: af00 add r7, sp, #0 + 800d0c8: 60f8 str r0, [r7, #12] + 800d0ca: 60b9 str r1, [r7, #8] + 800d0cc: 607a str r2, [r7, #4] (void)file; (void)ptr; (void)dir; return 0; - 800d0b2: 2300 movs r3, #0 + 800d0ce: 2300 movs r3, #0 } - 800d0b4: 4618 mov r0, r3 - 800d0b6: 3714 adds r7, #20 - 800d0b8: 46bd mov sp, r7 - 800d0ba: bc80 pop {r7} - 800d0bc: 4770 bx lr + 800d0d0: 4618 mov r0, r3 + 800d0d2: 3714 adds r7, #20 + 800d0d4: 46bd mov sp, r7 + 800d0d6: bc80 pop {r7} + 800d0d8: 4770 bx lr ... -0800d0c0 <_sbrk>: +0800d0dc <_sbrk>: * * @param incr Memory size * @return Pointer to allocated memory */ void *_sbrk(ptrdiff_t incr) { - 800d0c0: b580 push {r7, lr} - 800d0c2: b086 sub sp, #24 - 800d0c4: af00 add r7, sp, #0 - 800d0c6: 6078 str r0, [r7, #4] + 800d0dc: b580 push {r7, lr} + 800d0de: b086 sub sp, #24 + 800d0e0: af00 add r7, sp, #0 + 800d0e2: 6078 str r0, [r7, #4] extern uint8_t _end; /* Symbol defined in the linker script */ extern uint8_t _estack; /* Symbol defined in the linker script */ extern uint32_t _Min_Stack_Size; /* Symbol defined in the linker script */ const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size; - 800d0c8: 4a14 ldr r2, [pc, #80] @ (800d11c <_sbrk+0x5c>) - 800d0ca: 4b15 ldr r3, [pc, #84] @ (800d120 <_sbrk+0x60>) - 800d0cc: 1ad3 subs r3, r2, r3 - 800d0ce: 617b str r3, [r7, #20] + 800d0e4: 4a14 ldr r2, [pc, #80] @ (800d138 <_sbrk+0x5c>) + 800d0e6: 4b15 ldr r3, [pc, #84] @ (800d13c <_sbrk+0x60>) + 800d0e8: 1ad3 subs r3, r2, r3 + 800d0ea: 617b str r3, [r7, #20] const uint8_t *max_heap = (uint8_t *)stack_limit; - 800d0d0: 697b ldr r3, [r7, #20] - 800d0d2: 613b str r3, [r7, #16] + 800d0ec: 697b ldr r3, [r7, #20] + 800d0ee: 613b str r3, [r7, #16] uint8_t *prev_heap_end; /* Initialize heap end at first call */ if (NULL == __sbrk_heap_end) - 800d0d4: 4b13 ldr r3, [pc, #76] @ (800d124 <_sbrk+0x64>) - 800d0d6: 681b ldr r3, [r3, #0] - 800d0d8: 2b00 cmp r3, #0 - 800d0da: d102 bne.n 800d0e2 <_sbrk+0x22> + 800d0f0: 4b13 ldr r3, [pc, #76] @ (800d140 <_sbrk+0x64>) + 800d0f2: 681b ldr r3, [r3, #0] + 800d0f4: 2b00 cmp r3, #0 + 800d0f6: d102 bne.n 800d0fe <_sbrk+0x22> { __sbrk_heap_end = &_end; - 800d0dc: 4b11 ldr r3, [pc, #68] @ (800d124 <_sbrk+0x64>) - 800d0de: 4a12 ldr r2, [pc, #72] @ (800d128 <_sbrk+0x68>) - 800d0e0: 601a str r2, [r3, #0] + 800d0f8: 4b11 ldr r3, [pc, #68] @ (800d140 <_sbrk+0x64>) + 800d0fa: 4a12 ldr r2, [pc, #72] @ (800d144 <_sbrk+0x68>) + 800d0fc: 601a str r2, [r3, #0] } /* Protect heap from growing into the reserved MSP stack */ if (__sbrk_heap_end + incr > max_heap) - 800d0e2: 4b10 ldr r3, [pc, #64] @ (800d124 <_sbrk+0x64>) - 800d0e4: 681a ldr r2, [r3, #0] - 800d0e6: 687b ldr r3, [r7, #4] - 800d0e8: 4413 add r3, r2 - 800d0ea: 693a ldr r2, [r7, #16] - 800d0ec: 429a cmp r2, r3 - 800d0ee: d207 bcs.n 800d100 <_sbrk+0x40> + 800d0fe: 4b10 ldr r3, [pc, #64] @ (800d140 <_sbrk+0x64>) + 800d100: 681a ldr r2, [r3, #0] + 800d102: 687b ldr r3, [r7, #4] + 800d104: 4413 add r3, r2 + 800d106: 693a ldr r2, [r7, #16] + 800d108: 429a cmp r2, r3 + 800d10a: d207 bcs.n 800d11c <_sbrk+0x40> { errno = ENOMEM; - 800d0f0: f005 fff4 bl 80130dc <__errno> - 800d0f4: 4603 mov r3, r0 - 800d0f6: 220c movs r2, #12 - 800d0f8: 601a str r2, [r3, #0] + 800d10c: f005 fff4 bl 80130f8 <__errno> + 800d110: 4603 mov r3, r0 + 800d112: 220c movs r2, #12 + 800d114: 601a str r2, [r3, #0] return (void *)-1; - 800d0fa: f04f 33ff mov.w r3, #4294967295 - 800d0fe: e009 b.n 800d114 <_sbrk+0x54> + 800d116: f04f 33ff mov.w r3, #4294967295 + 800d11a: e009 b.n 800d130 <_sbrk+0x54> } prev_heap_end = __sbrk_heap_end; - 800d100: 4b08 ldr r3, [pc, #32] @ (800d124 <_sbrk+0x64>) - 800d102: 681b ldr r3, [r3, #0] - 800d104: 60fb str r3, [r7, #12] + 800d11c: 4b08 ldr r3, [pc, #32] @ (800d140 <_sbrk+0x64>) + 800d11e: 681b ldr r3, [r3, #0] + 800d120: 60fb str r3, [r7, #12] __sbrk_heap_end += incr; - 800d106: 4b07 ldr r3, [pc, #28] @ (800d124 <_sbrk+0x64>) - 800d108: 681a ldr r2, [r3, #0] - 800d10a: 687b ldr r3, [r7, #4] - 800d10c: 4413 add r3, r2 - 800d10e: 4a05 ldr r2, [pc, #20] @ (800d124 <_sbrk+0x64>) - 800d110: 6013 str r3, [r2, #0] + 800d122: 4b07 ldr r3, [pc, #28] @ (800d140 <_sbrk+0x64>) + 800d124: 681a ldr r2, [r3, #0] + 800d126: 687b ldr r3, [r7, #4] + 800d128: 4413 add r3, r2 + 800d12a: 4a05 ldr r2, [pc, #20] @ (800d140 <_sbrk+0x64>) + 800d12c: 6013 str r3, [r2, #0] return (void *)prev_heap_end; - 800d112: 68fb ldr r3, [r7, #12] + 800d12e: 68fb ldr r3, [r7, #12] } - 800d114: 4618 mov r0, r3 - 800d116: 3718 adds r7, #24 - 800d118: 46bd mov sp, r7 - 800d11a: bd80 pop {r7, pc} - 800d11c: 20010000 .word 0x20010000 - 800d120: 00000400 .word 0x00000400 - 800d124: 20000ec4 .word 0x20000ec4 - 800d128: 200011c8 .word 0x200011c8 + 800d130: 4618 mov r0, r3 + 800d132: 3718 adds r7, #24 + 800d134: 46bd mov sp, r7 + 800d136: bd80 pop {r7, pc} + 800d138: 20010000 .word 0x20010000 + 800d13c: 00000400 .word 0x00000400 + 800d140: 20000ec4 .word 0x20000ec4 + 800d144: 200011c8 .word 0x200011c8 -0800d12c : +0800d148 : * @note This function should be used only after reset. * @param None * @retval None */ void SystemInit (void) { - 800d12c: b480 push {r7} - 800d12e: af00 add r7, sp, #0 + 800d148: b480 push {r7} + 800d14a: af00 add r7, sp, #0 /* Configure the Vector Table location -------------------------------------*/ #if defined(USER_VECT_TAB_ADDRESS) SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */ #endif /* USER_VECT_TAB_ADDRESS */ } - 800d130: bf00 nop - 800d132: 46bd mov sp, r7 - 800d134: bc80 pop {r7} - 800d136: 4770 bx lr + 800d14c: bf00 nop + 800d14e: 46bd mov sp, r7 + 800d150: bc80 pop {r7} + 800d152: 4770 bx lr -0800d138 : +0800d154 : TIM_HandleTypeDef htim3; TIM_HandleTypeDef htim4; /* TIM3 init function */ void MX_TIM3_Init(void) { - 800d138: b580 push {r7, lr} - 800d13a: b08e sub sp, #56 @ 0x38 - 800d13c: af00 add r7, sp, #0 + 800d154: b580 push {r7, lr} + 800d156: b08e sub sp, #56 @ 0x38 + 800d158: af00 add r7, sp, #0 /* USER CODE BEGIN TIM3_Init 0 */ /* USER CODE END TIM3_Init 0 */ TIM_ClockConfigTypeDef sClockSourceConfig = {0}; - 800d13e: f107 0328 add.w r3, r7, #40 @ 0x28 - 800d142: 2200 movs r2, #0 - 800d144: 601a str r2, [r3, #0] - 800d146: 605a str r2, [r3, #4] - 800d148: 609a str r2, [r3, #8] - 800d14a: 60da str r2, [r3, #12] + 800d15a: f107 0328 add.w r3, r7, #40 @ 0x28 + 800d15e: 2200 movs r2, #0 + 800d160: 601a str r2, [r3, #0] + 800d162: 605a str r2, [r3, #4] + 800d164: 609a str r2, [r3, #8] + 800d166: 60da str r2, [r3, #12] TIM_MasterConfigTypeDef sMasterConfig = {0}; - 800d14c: f107 0320 add.w r3, r7, #32 - 800d150: 2200 movs r2, #0 - 800d152: 601a str r2, [r3, #0] - 800d154: 605a str r2, [r3, #4] + 800d168: f107 0320 add.w r3, r7, #32 + 800d16c: 2200 movs r2, #0 + 800d16e: 601a str r2, [r3, #0] + 800d170: 605a str r2, [r3, #4] TIM_OC_InitTypeDef sConfigOC = {0}; - 800d156: 1d3b adds r3, r7, #4 - 800d158: 2200 movs r2, #0 - 800d15a: 601a str r2, [r3, #0] - 800d15c: 605a str r2, [r3, #4] - 800d15e: 609a str r2, [r3, #8] - 800d160: 60da str r2, [r3, #12] - 800d162: 611a str r2, [r3, #16] - 800d164: 615a str r2, [r3, #20] - 800d166: 619a str r2, [r3, #24] + 800d172: 1d3b adds r3, r7, #4 + 800d174: 2200 movs r2, #0 + 800d176: 601a str r2, [r3, #0] + 800d178: 605a str r2, [r3, #4] + 800d17a: 609a str r2, [r3, #8] + 800d17c: 60da str r2, [r3, #12] + 800d17e: 611a str r2, [r3, #16] + 800d180: 615a str r2, [r3, #20] + 800d182: 619a str r2, [r3, #24] /* USER CODE BEGIN TIM3_Init 1 */ /* USER CODE END TIM3_Init 1 */ htim3.Instance = TIM3; - 800d168: 4b2c ldr r3, [pc, #176] @ (800d21c ) - 800d16a: 4a2d ldr r2, [pc, #180] @ (800d220 ) - 800d16c: 601a str r2, [r3, #0] + 800d184: 4b2c ldr r3, [pc, #176] @ (800d238 ) + 800d186: 4a2d ldr r2, [pc, #180] @ (800d23c ) + 800d188: 601a str r2, [r3, #0] htim3.Init.Prescaler = 0; - 800d16e: 4b2b ldr r3, [pc, #172] @ (800d21c ) - 800d170: 2200 movs r2, #0 - 800d172: 605a str r2, [r3, #4] + 800d18a: 4b2b ldr r3, [pc, #172] @ (800d238 ) + 800d18c: 2200 movs r2, #0 + 800d18e: 605a str r2, [r3, #4] htim3.Init.CounterMode = TIM_COUNTERMODE_UP; - 800d174: 4b29 ldr r3, [pc, #164] @ (800d21c ) - 800d176: 2200 movs r2, #0 - 800d178: 609a str r2, [r3, #8] + 800d190: 4b29 ldr r3, [pc, #164] @ (800d238 ) + 800d192: 2200 movs r2, #0 + 800d194: 609a str r2, [r3, #8] htim3.Init.Period = 65535; - 800d17a: 4b28 ldr r3, [pc, #160] @ (800d21c ) - 800d17c: f64f 72ff movw r2, #65535 @ 0xffff - 800d180: 60da str r2, [r3, #12] + 800d196: 4b28 ldr r3, [pc, #160] @ (800d238 ) + 800d198: f64f 72ff movw r2, #65535 @ 0xffff + 800d19c: 60da str r2, [r3, #12] htim3.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 800d182: 4b26 ldr r3, [pc, #152] @ (800d21c ) - 800d184: 2200 movs r2, #0 - 800d186: 611a str r2, [r3, #16] + 800d19e: 4b26 ldr r3, [pc, #152] @ (800d238 ) + 800d1a0: 2200 movs r2, #0 + 800d1a2: 611a str r2, [r3, #16] htim3.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 800d188: 4b24 ldr r3, [pc, #144] @ (800d21c ) - 800d18a: 2200 movs r2, #0 - 800d18c: 619a str r2, [r3, #24] + 800d1a4: 4b24 ldr r3, [pc, #144] @ (800d238 ) + 800d1a6: 2200 movs r2, #0 + 800d1a8: 619a str r2, [r3, #24] if (HAL_TIM_Base_Init(&htim3) != HAL_OK) - 800d18e: 4823 ldr r0, [pc, #140] @ (800d21c ) - 800d190: f003 fd83 bl 8010c9a - 800d194: 4603 mov r3, r0 - 800d196: 2b00 cmp r3, #0 - 800d198: d001 beq.n 800d19e - { - Error_Handler(); - 800d19a: f7fd fc2f bl 800a9fc - } - sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; - 800d19e: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800d1a2: 62bb str r3, [r7, #40] @ 0x28 - if (HAL_TIM_ConfigClockSource(&htim3, &sClockSourceConfig) != HAL_OK) - 800d1a4: f107 0328 add.w r3, r7, #40 @ 0x28 - 800d1a8: 4619 mov r1, r3 - 800d1aa: 481c ldr r0, [pc, #112] @ (800d21c ) - 800d1ac: f004 f96e bl 801148c + 800d1aa: 4823 ldr r0, [pc, #140] @ (800d238 ) + 800d1ac: f003 fd83 bl 8010cb6 800d1b0: 4603 mov r3, r0 800d1b2: 2b00 cmp r3, #0 - 800d1b4: d001 beq.n 800d1ba + 800d1b4: d001 beq.n 800d1ba { Error_Handler(); 800d1b6: f7fd fc21 bl 800a9fc } - if (HAL_TIM_PWM_Init(&htim3) != HAL_OK) - 800d1ba: 4818 ldr r0, [pc, #96] @ (800d21c ) - 800d1bc: f003 feb2 bl 8010f24 - 800d1c0: 4603 mov r3, r0 - 800d1c2: 2b00 cmp r3, #0 - 800d1c4: d001 beq.n 800d1ca + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + 800d1ba: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800d1be: 62bb str r3, [r7, #40] @ 0x28 + if (HAL_TIM_ConfigClockSource(&htim3, &sClockSourceConfig) != HAL_OK) + 800d1c0: f107 0328 add.w r3, r7, #40 @ 0x28 + 800d1c4: 4619 mov r1, r3 + 800d1c6: 481c ldr r0, [pc, #112] @ (800d238 ) + 800d1c8: f004 f96e bl 80114a8 + 800d1cc: 4603 mov r3, r0 + 800d1ce: 2b00 cmp r3, #0 + 800d1d0: d001 beq.n 800d1d6 { Error_Handler(); - 800d1c6: f7fd fc19 bl 800a9fc + 800d1d2: f7fd fc13 bl 800a9fc + } + if (HAL_TIM_PWM_Init(&htim3) != HAL_OK) + 800d1d6: 4818 ldr r0, [pc, #96] @ (800d238 ) + 800d1d8: f003 feb2 bl 8010f40 + 800d1dc: 4603 mov r3, r0 + 800d1de: 2b00 cmp r3, #0 + 800d1e0: d001 beq.n 800d1e6 + { + Error_Handler(); + 800d1e2: f7fd fc0b bl 800a9fc } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 800d1ca: 2300 movs r3, #0 - 800d1cc: 623b str r3, [r7, #32] + 800d1e6: 2300 movs r3, #0 + 800d1e8: 623b str r3, [r7, #32] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 800d1ce: 2300 movs r3, #0 - 800d1d0: 627b str r3, [r7, #36] @ 0x24 + 800d1ea: 2300 movs r3, #0 + 800d1ec: 627b str r3, [r7, #36] @ 0x24 if (HAL_TIMEx_MasterConfigSynchronization(&htim3, &sMasterConfig) != HAL_OK) - 800d1d2: f107 0320 add.w r3, r7, #32 - 800d1d6: 4619 mov r1, r3 - 800d1d8: 4810 ldr r0, [pc, #64] @ (800d21c ) - 800d1da: f004 fcfd bl 8011bd8 - 800d1de: 4603 mov r3, r0 - 800d1e0: 2b00 cmp r3, #0 - 800d1e2: d001 beq.n 800d1e8 + 800d1ee: f107 0320 add.w r3, r7, #32 + 800d1f2: 4619 mov r1, r3 + 800d1f4: 4810 ldr r0, [pc, #64] @ (800d238 ) + 800d1f6: f004 fcfd bl 8011bf4 + 800d1fa: 4603 mov r3, r0 + 800d1fc: 2b00 cmp r3, #0 + 800d1fe: d001 beq.n 800d204 { Error_Handler(); - 800d1e4: f7fd fc0a bl 800a9fc + 800d200: f7fd fbfc bl 800a9fc } sConfigOC.OCMode = TIM_OCMODE_PWM1; - 800d1e8: 2360 movs r3, #96 @ 0x60 - 800d1ea: 607b str r3, [r7, #4] + 800d204: 2360 movs r3, #96 @ 0x60 + 800d206: 607b str r3, [r7, #4] sConfigOC.Pulse = 0; - 800d1ec: 2300 movs r3, #0 - 800d1ee: 60bb str r3, [r7, #8] + 800d208: 2300 movs r3, #0 + 800d20a: 60bb str r3, [r7, #8] sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; - 800d1f0: 2300 movs r3, #0 - 800d1f2: 60fb str r3, [r7, #12] + 800d20c: 2300 movs r3, #0 + 800d20e: 60fb str r3, [r7, #12] sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; - 800d1f4: 2300 movs r3, #0 - 800d1f6: 617b str r3, [r7, #20] + 800d210: 2300 movs r3, #0 + 800d212: 617b str r3, [r7, #20] if (HAL_TIM_PWM_ConfigChannel(&htim3, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) - 800d1f8: 1d3b adds r3, r7, #4 - 800d1fa: 2204 movs r2, #4 - 800d1fc: 4619 mov r1, r3 - 800d1fe: 4807 ldr r0, [pc, #28] @ (800d21c ) - 800d200: f004 f882 bl 8011308 - 800d204: 4603 mov r3, r0 - 800d206: 2b00 cmp r3, #0 - 800d208: d001 beq.n 800d20e + 800d214: 1d3b adds r3, r7, #4 + 800d216: 2204 movs r2, #4 + 800d218: 4619 mov r1, r3 + 800d21a: 4807 ldr r0, [pc, #28] @ (800d238 ) + 800d21c: f004 f882 bl 8011324 + 800d220: 4603 mov r3, r0 + 800d222: 2b00 cmp r3, #0 + 800d224: d001 beq.n 800d22a { Error_Handler(); - 800d20a: f7fd fbf7 bl 800a9fc + 800d226: f7fd fbe9 bl 800a9fc } /* USER CODE BEGIN TIM3_Init 2 */ /* USER CODE END TIM3_Init 2 */ HAL_TIM_MspPostInit(&htim3); - 800d20e: 4803 ldr r0, [pc, #12] @ (800d21c ) - 800d210: f000 f8ce bl 800d3b0 + 800d22a: 4803 ldr r0, [pc, #12] @ (800d238 ) + 800d22c: f000 f8ce bl 800d3cc } - 800d214: bf00 nop - 800d216: 3738 adds r7, #56 @ 0x38 - 800d218: 46bd mov sp, r7 - 800d21a: bd80 pop {r7, pc} - 800d21c: 20000ec8 .word 0x20000ec8 - 800d220: 40000400 .word 0x40000400 + 800d230: bf00 nop + 800d232: 3738 adds r7, #56 @ 0x38 + 800d234: 46bd mov sp, r7 + 800d236: bd80 pop {r7, pc} + 800d238: 20000ec8 .word 0x20000ec8 + 800d23c: 40000400 .word 0x40000400 -0800d224 : +0800d240 : /* TIM4 init function */ void MX_TIM4_Init(void) { - 800d224: b580 push {r7, lr} - 800d226: b08e sub sp, #56 @ 0x38 - 800d228: af00 add r7, sp, #0 + 800d240: b580 push {r7, lr} + 800d242: b08e sub sp, #56 @ 0x38 + 800d244: af00 add r7, sp, #0 /* USER CODE BEGIN TIM4_Init 0 */ /* USER CODE END TIM4_Init 0 */ TIM_ClockConfigTypeDef sClockSourceConfig = {0}; - 800d22a: f107 0328 add.w r3, r7, #40 @ 0x28 - 800d22e: 2200 movs r2, #0 - 800d230: 601a str r2, [r3, #0] - 800d232: 605a str r2, [r3, #4] - 800d234: 609a str r2, [r3, #8] - 800d236: 60da str r2, [r3, #12] + 800d246: f107 0328 add.w r3, r7, #40 @ 0x28 + 800d24a: 2200 movs r2, #0 + 800d24c: 601a str r2, [r3, #0] + 800d24e: 605a str r2, [r3, #4] + 800d250: 609a str r2, [r3, #8] + 800d252: 60da str r2, [r3, #12] TIM_MasterConfigTypeDef sMasterConfig = {0}; - 800d238: f107 0320 add.w r3, r7, #32 - 800d23c: 2200 movs r2, #0 - 800d23e: 601a str r2, [r3, #0] - 800d240: 605a str r2, [r3, #4] + 800d254: f107 0320 add.w r3, r7, #32 + 800d258: 2200 movs r2, #0 + 800d25a: 601a str r2, [r3, #0] + 800d25c: 605a str r2, [r3, #4] TIM_OC_InitTypeDef sConfigOC = {0}; - 800d242: 1d3b adds r3, r7, #4 - 800d244: 2200 movs r2, #0 - 800d246: 601a str r2, [r3, #0] - 800d248: 605a str r2, [r3, #4] - 800d24a: 609a str r2, [r3, #8] - 800d24c: 60da str r2, [r3, #12] - 800d24e: 611a str r2, [r3, #16] - 800d250: 615a str r2, [r3, #20] - 800d252: 619a str r2, [r3, #24] + 800d25e: 1d3b adds r3, r7, #4 + 800d260: 2200 movs r2, #0 + 800d262: 601a str r2, [r3, #0] + 800d264: 605a str r2, [r3, #4] + 800d266: 609a str r2, [r3, #8] + 800d268: 60da str r2, [r3, #12] + 800d26a: 611a str r2, [r3, #16] + 800d26c: 615a str r2, [r3, #20] + 800d26e: 619a str r2, [r3, #24] /* USER CODE BEGIN TIM4_Init 1 */ /* USER CODE END TIM4_Init 1 */ htim4.Instance = TIM4; - 800d254: 4b37 ldr r3, [pc, #220] @ (800d334 ) - 800d256: 4a38 ldr r2, [pc, #224] @ (800d338 ) - 800d258: 601a str r2, [r3, #0] + 800d270: 4b37 ldr r3, [pc, #220] @ (800d350 ) + 800d272: 4a38 ldr r2, [pc, #224] @ (800d354 ) + 800d274: 601a str r2, [r3, #0] htim4.Init.Prescaler = 720; - 800d25a: 4b36 ldr r3, [pc, #216] @ (800d334 ) - 800d25c: f44f 7234 mov.w r2, #720 @ 0x2d0 - 800d260: 605a str r2, [r3, #4] + 800d276: 4b36 ldr r3, [pc, #216] @ (800d350 ) + 800d278: f44f 7234 mov.w r2, #720 @ 0x2d0 + 800d27c: 605a str r2, [r3, #4] htim4.Init.CounterMode = TIM_COUNTERMODE_UP; - 800d262: 4b34 ldr r3, [pc, #208] @ (800d334 ) - 800d264: 2200 movs r2, #0 - 800d266: 609a str r2, [r3, #8] + 800d27e: 4b34 ldr r3, [pc, #208] @ (800d350 ) + 800d280: 2200 movs r2, #0 + 800d282: 609a str r2, [r3, #8] htim4.Init.Period = 100; - 800d268: 4b32 ldr r3, [pc, #200] @ (800d334 ) - 800d26a: 2264 movs r2, #100 @ 0x64 - 800d26c: 60da str r2, [r3, #12] + 800d284: 4b32 ldr r3, [pc, #200] @ (800d350 ) + 800d286: 2264 movs r2, #100 @ 0x64 + 800d288: 60da str r2, [r3, #12] htim4.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 800d26e: 4b31 ldr r3, [pc, #196] @ (800d334 ) - 800d270: 2200 movs r2, #0 - 800d272: 611a str r2, [r3, #16] + 800d28a: 4b31 ldr r3, [pc, #196] @ (800d350 ) + 800d28c: 2200 movs r2, #0 + 800d28e: 611a str r2, [r3, #16] htim4.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 800d274: 4b2f ldr r3, [pc, #188] @ (800d334 ) - 800d276: 2200 movs r2, #0 - 800d278: 619a str r2, [r3, #24] + 800d290: 4b2f ldr r3, [pc, #188] @ (800d350 ) + 800d292: 2200 movs r2, #0 + 800d294: 619a str r2, [r3, #24] if (HAL_TIM_Base_Init(&htim4) != HAL_OK) - 800d27a: 482e ldr r0, [pc, #184] @ (800d334 ) - 800d27c: f003 fd0d bl 8010c9a - 800d280: 4603 mov r3, r0 - 800d282: 2b00 cmp r3, #0 - 800d284: d001 beq.n 800d28a - { - Error_Handler(); - 800d286: f7fd fbb9 bl 800a9fc - } - sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; - 800d28a: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800d28e: 62bb str r3, [r7, #40] @ 0x28 - if (HAL_TIM_ConfigClockSource(&htim4, &sClockSourceConfig) != HAL_OK) - 800d290: f107 0328 add.w r3, r7, #40 @ 0x28 - 800d294: 4619 mov r1, r3 - 800d296: 4827 ldr r0, [pc, #156] @ (800d334 ) - 800d298: f004 f8f8 bl 801148c + 800d296: 482e ldr r0, [pc, #184] @ (800d350 ) + 800d298: f003 fd0d bl 8010cb6 800d29c: 4603 mov r3, r0 800d29e: 2b00 cmp r3, #0 - 800d2a0: d001 beq.n 800d2a6 + 800d2a0: d001 beq.n 800d2a6 { Error_Handler(); 800d2a2: f7fd fbab bl 800a9fc } - if (HAL_TIM_PWM_Init(&htim4) != HAL_OK) - 800d2a6: 4823 ldr r0, [pc, #140] @ (800d334 ) - 800d2a8: f003 fe3c bl 8010f24 - 800d2ac: 4603 mov r3, r0 - 800d2ae: 2b00 cmp r3, #0 - 800d2b0: d001 beq.n 800d2b6 + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + 800d2a6: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800d2aa: 62bb str r3, [r7, #40] @ 0x28 + if (HAL_TIM_ConfigClockSource(&htim4, &sClockSourceConfig) != HAL_OK) + 800d2ac: f107 0328 add.w r3, r7, #40 @ 0x28 + 800d2b0: 4619 mov r1, r3 + 800d2b2: 4827 ldr r0, [pc, #156] @ (800d350 ) + 800d2b4: f004 f8f8 bl 80114a8 + 800d2b8: 4603 mov r3, r0 + 800d2ba: 2b00 cmp r3, #0 + 800d2bc: d001 beq.n 800d2c2 { Error_Handler(); - 800d2b2: f7fd fba3 bl 800a9fc + 800d2be: f7fd fb9d bl 800a9fc + } + if (HAL_TIM_PWM_Init(&htim4) != HAL_OK) + 800d2c2: 4823 ldr r0, [pc, #140] @ (800d350 ) + 800d2c4: f003 fe3c bl 8010f40 + 800d2c8: 4603 mov r3, r0 + 800d2ca: 2b00 cmp r3, #0 + 800d2cc: d001 beq.n 800d2d2 + { + Error_Handler(); + 800d2ce: f7fd fb95 bl 800a9fc } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 800d2b6: 2300 movs r3, #0 - 800d2b8: 623b str r3, [r7, #32] + 800d2d2: 2300 movs r3, #0 + 800d2d4: 623b str r3, [r7, #32] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 800d2ba: 2300 movs r3, #0 - 800d2bc: 627b str r3, [r7, #36] @ 0x24 + 800d2d6: 2300 movs r3, #0 + 800d2d8: 627b str r3, [r7, #36] @ 0x24 if (HAL_TIMEx_MasterConfigSynchronization(&htim4, &sMasterConfig) != HAL_OK) - 800d2be: f107 0320 add.w r3, r7, #32 - 800d2c2: 4619 mov r1, r3 - 800d2c4: 481b ldr r0, [pc, #108] @ (800d334 ) - 800d2c6: f004 fc87 bl 8011bd8 - 800d2ca: 4603 mov r3, r0 - 800d2cc: 2b00 cmp r3, #0 - 800d2ce: d001 beq.n 800d2d4 + 800d2da: f107 0320 add.w r3, r7, #32 + 800d2de: 4619 mov r1, r3 + 800d2e0: 481b ldr r0, [pc, #108] @ (800d350 ) + 800d2e2: f004 fc87 bl 8011bf4 + 800d2e6: 4603 mov r3, r0 + 800d2e8: 2b00 cmp r3, #0 + 800d2ea: d001 beq.n 800d2f0 { Error_Handler(); - 800d2d0: f7fd fb94 bl 800a9fc + 800d2ec: f7fd fb86 bl 800a9fc } sConfigOC.OCMode = TIM_OCMODE_PWM1; - 800d2d4: 2360 movs r3, #96 @ 0x60 - 800d2d6: 607b str r3, [r7, #4] + 800d2f0: 2360 movs r3, #96 @ 0x60 + 800d2f2: 607b str r3, [r7, #4] sConfigOC.Pulse = 0; - 800d2d8: 2300 movs r3, #0 - 800d2da: 60bb str r3, [r7, #8] + 800d2f4: 2300 movs r3, #0 + 800d2f6: 60bb str r3, [r7, #8] sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; - 800d2dc: 2300 movs r3, #0 - 800d2de: 60fb str r3, [r7, #12] + 800d2f8: 2300 movs r3, #0 + 800d2fa: 60fb str r3, [r7, #12] sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; - 800d2e0: 2300 movs r3, #0 - 800d2e2: 617b str r3, [r7, #20] + 800d2fc: 2300 movs r3, #0 + 800d2fe: 617b str r3, [r7, #20] if (HAL_TIM_PWM_ConfigChannel(&htim4, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) - 800d2e4: 1d3b adds r3, r7, #4 - 800d2e6: 2204 movs r2, #4 - 800d2e8: 4619 mov r1, r3 - 800d2ea: 4812 ldr r0, [pc, #72] @ (800d334 ) - 800d2ec: f004 f80c bl 8011308 - 800d2f0: 4603 mov r3, r0 - 800d2f2: 2b00 cmp r3, #0 - 800d2f4: d001 beq.n 800d2fa + 800d300: 1d3b adds r3, r7, #4 + 800d302: 2204 movs r2, #4 + 800d304: 4619 mov r1, r3 + 800d306: 4812 ldr r0, [pc, #72] @ (800d350 ) + 800d308: f004 f80c bl 8011324 + 800d30c: 4603 mov r3, r0 + 800d30e: 2b00 cmp r3, #0 + 800d310: d001 beq.n 800d316 { Error_Handler(); - 800d2f6: f7fd fb81 bl 800a9fc + 800d312: f7fd fb73 bl 800a9fc } if (HAL_TIM_PWM_ConfigChannel(&htim4, &sConfigOC, TIM_CHANNEL_3) != HAL_OK) - 800d2fa: 1d3b adds r3, r7, #4 - 800d2fc: 2208 movs r2, #8 - 800d2fe: 4619 mov r1, r3 - 800d300: 480c ldr r0, [pc, #48] @ (800d334 ) - 800d302: f004 f801 bl 8011308 - 800d306: 4603 mov r3, r0 - 800d308: 2b00 cmp r3, #0 - 800d30a: d001 beq.n 800d310 + 800d316: 1d3b adds r3, r7, #4 + 800d318: 2208 movs r2, #8 + 800d31a: 4619 mov r1, r3 + 800d31c: 480c ldr r0, [pc, #48] @ (800d350 ) + 800d31e: f004 f801 bl 8011324 + 800d322: 4603 mov r3, r0 + 800d324: 2b00 cmp r3, #0 + 800d326: d001 beq.n 800d32c { Error_Handler(); - 800d30c: f7fd fb76 bl 800a9fc + 800d328: f7fd fb68 bl 800a9fc } if (HAL_TIM_PWM_ConfigChannel(&htim4, &sConfigOC, TIM_CHANNEL_4) != HAL_OK) - 800d310: 1d3b adds r3, r7, #4 - 800d312: 220c movs r2, #12 - 800d314: 4619 mov r1, r3 - 800d316: 4807 ldr r0, [pc, #28] @ (800d334 ) - 800d318: f003 fff6 bl 8011308 - 800d31c: 4603 mov r3, r0 - 800d31e: 2b00 cmp r3, #0 - 800d320: d001 beq.n 800d326 + 800d32c: 1d3b adds r3, r7, #4 + 800d32e: 220c movs r2, #12 + 800d330: 4619 mov r1, r3 + 800d332: 4807 ldr r0, [pc, #28] @ (800d350 ) + 800d334: f003 fff6 bl 8011324 + 800d338: 4603 mov r3, r0 + 800d33a: 2b00 cmp r3, #0 + 800d33c: d001 beq.n 800d342 { Error_Handler(); - 800d322: f7fd fb6b bl 800a9fc + 800d33e: f7fd fb5d bl 800a9fc } /* USER CODE BEGIN TIM4_Init 2 */ /* USER CODE END TIM4_Init 2 */ HAL_TIM_MspPostInit(&htim4); - 800d326: 4803 ldr r0, [pc, #12] @ (800d334 ) - 800d328: f000 f842 bl 800d3b0 + 800d342: 4803 ldr r0, [pc, #12] @ (800d350 ) + 800d344: f000 f842 bl 800d3cc } - 800d32c: bf00 nop - 800d32e: 3738 adds r7, #56 @ 0x38 - 800d330: 46bd mov sp, r7 - 800d332: bd80 pop {r7, pc} - 800d334: 20000f10 .word 0x20000f10 - 800d338: 40000800 .word 0x40000800 + 800d348: bf00 nop + 800d34a: 3738 adds r7, #56 @ 0x38 + 800d34c: 46bd mov sp, r7 + 800d34e: bd80 pop {r7, pc} + 800d350: 20000f10 .word 0x20000f10 + 800d354: 40000800 .word 0x40000800 -0800d33c : +0800d358 : void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) { - 800d33c: b580 push {r7, lr} - 800d33e: b084 sub sp, #16 - 800d340: af00 add r7, sp, #0 - 800d342: 6078 str r0, [r7, #4] + 800d358: b580 push {r7, lr} + 800d35a: b084 sub sp, #16 + 800d35c: af00 add r7, sp, #0 + 800d35e: 6078 str r0, [r7, #4] if(tim_baseHandle->Instance==TIM3) - 800d344: 687b ldr r3, [r7, #4] - 800d346: 681b ldr r3, [r3, #0] - 800d348: 4a16 ldr r2, [pc, #88] @ (800d3a4 ) - 800d34a: 4293 cmp r3, r2 - 800d34c: d114 bne.n 800d378 + 800d360: 687b ldr r3, [r7, #4] + 800d362: 681b ldr r3, [r3, #0] + 800d364: 4a16 ldr r2, [pc, #88] @ (800d3c0 ) + 800d366: 4293 cmp r3, r2 + 800d368: d114 bne.n 800d394 { /* USER CODE BEGIN TIM3_MspInit 0 */ /* USER CODE END TIM3_MspInit 0 */ /* TIM3 clock enable */ __HAL_RCC_TIM3_CLK_ENABLE(); - 800d34e: 4b16 ldr r3, [pc, #88] @ (800d3a8 ) - 800d350: 69db ldr r3, [r3, #28] - 800d352: 4a15 ldr r2, [pc, #84] @ (800d3a8 ) - 800d354: f043 0302 orr.w r3, r3, #2 - 800d358: 61d3 str r3, [r2, #28] - 800d35a: 4b13 ldr r3, [pc, #76] @ (800d3a8 ) - 800d35c: 69db ldr r3, [r3, #28] - 800d35e: f003 0302 and.w r3, r3, #2 - 800d362: 60fb str r3, [r7, #12] - 800d364: 68fb ldr r3, [r7, #12] + 800d36a: 4b16 ldr r3, [pc, #88] @ (800d3c4 ) + 800d36c: 69db ldr r3, [r3, #28] + 800d36e: 4a15 ldr r2, [pc, #84] @ (800d3c4 ) + 800d370: f043 0302 orr.w r3, r3, #2 + 800d374: 61d3 str r3, [r2, #28] + 800d376: 4b13 ldr r3, [pc, #76] @ (800d3c4 ) + 800d378: 69db ldr r3, [r3, #28] + 800d37a: f003 0302 and.w r3, r3, #2 + 800d37e: 60fb str r3, [r7, #12] + 800d380: 68fb ldr r3, [r7, #12] /* TIM3 interrupt Init */ HAL_NVIC_SetPriority(TIM3_IRQn, 0, 0); - 800d366: 2200 movs r2, #0 - 800d368: 2100 movs r1, #0 - 800d36a: 201d movs r0, #29 - 800d36c: f001 ffd7 bl 800f31e + 800d382: 2200 movs r2, #0 + 800d384: 2100 movs r1, #0 + 800d386: 201d movs r0, #29 + 800d388: f001 ffd7 bl 800f33a HAL_NVIC_EnableIRQ(TIM3_IRQn); - 800d370: 201d movs r0, #29 - 800d372: f001 fff0 bl 800f356 + 800d38c: 201d movs r0, #29 + 800d38e: f001 fff0 bl 800f372 __HAL_RCC_TIM4_CLK_ENABLE(); /* USER CODE BEGIN TIM4_MspInit 1 */ /* USER CODE END TIM4_MspInit 1 */ } } - 800d376: e010 b.n 800d39a + 800d392: e010 b.n 800d3b6 else if(tim_baseHandle->Instance==TIM4) - 800d378: 687b ldr r3, [r7, #4] - 800d37a: 681b ldr r3, [r3, #0] - 800d37c: 4a0b ldr r2, [pc, #44] @ (800d3ac ) - 800d37e: 4293 cmp r3, r2 - 800d380: d10b bne.n 800d39a + 800d394: 687b ldr r3, [r7, #4] + 800d396: 681b ldr r3, [r3, #0] + 800d398: 4a0b ldr r2, [pc, #44] @ (800d3c8 ) + 800d39a: 4293 cmp r3, r2 + 800d39c: d10b bne.n 800d3b6 __HAL_RCC_TIM4_CLK_ENABLE(); - 800d382: 4b09 ldr r3, [pc, #36] @ (800d3a8 ) - 800d384: 69db ldr r3, [r3, #28] - 800d386: 4a08 ldr r2, [pc, #32] @ (800d3a8 ) - 800d388: f043 0304 orr.w r3, r3, #4 - 800d38c: 61d3 str r3, [r2, #28] - 800d38e: 4b06 ldr r3, [pc, #24] @ (800d3a8 ) - 800d390: 69db ldr r3, [r3, #28] - 800d392: f003 0304 and.w r3, r3, #4 - 800d396: 60bb str r3, [r7, #8] - 800d398: 68bb ldr r3, [r7, #8] + 800d39e: 4b09 ldr r3, [pc, #36] @ (800d3c4 ) + 800d3a0: 69db ldr r3, [r3, #28] + 800d3a2: 4a08 ldr r2, [pc, #32] @ (800d3c4 ) + 800d3a4: f043 0304 orr.w r3, r3, #4 + 800d3a8: 61d3 str r3, [r2, #28] + 800d3aa: 4b06 ldr r3, [pc, #24] @ (800d3c4 ) + 800d3ac: 69db ldr r3, [r3, #28] + 800d3ae: f003 0304 and.w r3, r3, #4 + 800d3b2: 60bb str r3, [r7, #8] + 800d3b4: 68bb ldr r3, [r7, #8] } - 800d39a: bf00 nop - 800d39c: 3710 adds r7, #16 - 800d39e: 46bd mov sp, r7 - 800d3a0: bd80 pop {r7, pc} - 800d3a2: bf00 nop - 800d3a4: 40000400 .word 0x40000400 - 800d3a8: 40021000 .word 0x40021000 - 800d3ac: 40000800 .word 0x40000800 + 800d3b6: bf00 nop + 800d3b8: 3710 adds r7, #16 + 800d3ba: 46bd mov sp, r7 + 800d3bc: bd80 pop {r7, pc} + 800d3be: bf00 nop + 800d3c0: 40000400 .word 0x40000400 + 800d3c4: 40021000 .word 0x40021000 + 800d3c8: 40000800 .word 0x40000800 -0800d3b0 : +0800d3cc : void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) { - 800d3b0: b580 push {r7, lr} - 800d3b2: b08a sub sp, #40 @ 0x28 - 800d3b4: af00 add r7, sp, #0 - 800d3b6: 6078 str r0, [r7, #4] + 800d3cc: b580 push {r7, lr} + 800d3ce: b08a sub sp, #40 @ 0x28 + 800d3d0: af00 add r7, sp, #0 + 800d3d2: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800d3b8: f107 0314 add.w r3, r7, #20 - 800d3bc: 2200 movs r2, #0 - 800d3be: 601a str r2, [r3, #0] - 800d3c0: 605a str r2, [r3, #4] - 800d3c2: 609a str r2, [r3, #8] - 800d3c4: 60da str r2, [r3, #12] + 800d3d4: f107 0314 add.w r3, r7, #20 + 800d3d8: 2200 movs r2, #0 + 800d3da: 601a str r2, [r3, #0] + 800d3dc: 605a str r2, [r3, #4] + 800d3de: 609a str r2, [r3, #8] + 800d3e0: 60da str r2, [r3, #12] if(timHandle->Instance==TIM3) - 800d3c6: 687b ldr r3, [r7, #4] - 800d3c8: 681b ldr r3, [r3, #0] - 800d3ca: 4a26 ldr r2, [pc, #152] @ (800d464 ) - 800d3cc: 4293 cmp r3, r2 - 800d3ce: d118 bne.n 800d402 + 800d3e2: 687b ldr r3, [r7, #4] + 800d3e4: 681b ldr r3, [r3, #0] + 800d3e6: 4a26 ldr r2, [pc, #152] @ (800d480 ) + 800d3e8: 4293 cmp r3, r2 + 800d3ea: d118 bne.n 800d41e { /* USER CODE BEGIN TIM3_MspPostInit 0 */ /* USER CODE END TIM3_MspPostInit 0 */ __HAL_RCC_GPIOA_CLK_ENABLE(); - 800d3d0: 4b25 ldr r3, [pc, #148] @ (800d468 ) - 800d3d2: 699b ldr r3, [r3, #24] - 800d3d4: 4a24 ldr r2, [pc, #144] @ (800d468 ) - 800d3d6: f043 0304 orr.w r3, r3, #4 - 800d3da: 6193 str r3, [r2, #24] - 800d3dc: 4b22 ldr r3, [pc, #136] @ (800d468 ) - 800d3de: 699b ldr r3, [r3, #24] - 800d3e0: f003 0304 and.w r3, r3, #4 - 800d3e4: 613b str r3, [r7, #16] - 800d3e6: 693b ldr r3, [r7, #16] + 800d3ec: 4b25 ldr r3, [pc, #148] @ (800d484 ) + 800d3ee: 699b ldr r3, [r3, #24] + 800d3f0: 4a24 ldr r2, [pc, #144] @ (800d484 ) + 800d3f2: f043 0304 orr.w r3, r3, #4 + 800d3f6: 6193 str r3, [r2, #24] + 800d3f8: 4b22 ldr r3, [pc, #136] @ (800d484 ) + 800d3fa: 699b ldr r3, [r3, #24] + 800d3fc: f003 0304 and.w r3, r3, #4 + 800d400: 613b str r3, [r7, #16] + 800d402: 693b ldr r3, [r7, #16] /**TIM3 GPIO Configuration PA7 ------> TIM3_CH2 */ GPIO_InitStruct.Pin = CP_PWM_Pin; - 800d3e8: 2380 movs r3, #128 @ 0x80 - 800d3ea: 617b str r3, [r7, #20] + 800d404: 2380 movs r3, #128 @ 0x80 + 800d406: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d3ec: 2302 movs r3, #2 - 800d3ee: 61bb str r3, [r7, #24] + 800d408: 2302 movs r3, #2 + 800d40a: 61bb str r3, [r7, #24] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 800d3f0: 2302 movs r3, #2 - 800d3f2: 623b str r3, [r7, #32] + 800d40c: 2302 movs r3, #2 + 800d40e: 623b str r3, [r7, #32] HAL_GPIO_Init(CP_PWM_GPIO_Port, &GPIO_InitStruct); - 800d3f4: f107 0314 add.w r3, r7, #20 - 800d3f8: 4619 mov r1, r3 - 800d3fa: 481c ldr r0, [pc, #112] @ (800d46c ) - 800d3fc: f002 f924 bl 800f648 + 800d410: f107 0314 add.w r3, r7, #20 + 800d414: 4619 mov r1, r3 + 800d416: 481c ldr r0, [pc, #112] @ (800d488 ) + 800d418: f002 f924 bl 800f664 /* USER CODE BEGIN TIM4_MspPostInit 1 */ /* USER CODE END TIM4_MspPostInit 1 */ } } - 800d400: e02b b.n 800d45a + 800d41c: e02b b.n 800d476 else if(timHandle->Instance==TIM4) - 800d402: 687b ldr r3, [r7, #4] - 800d404: 681b ldr r3, [r3, #0] - 800d406: 4a1a ldr r2, [pc, #104] @ (800d470 ) - 800d408: 4293 cmp r3, r2 - 800d40a: d126 bne.n 800d45a + 800d41e: 687b ldr r3, [r7, #4] + 800d420: 681b ldr r3, [r3, #0] + 800d422: 4a1a ldr r2, [pc, #104] @ (800d48c ) + 800d424: 4293 cmp r3, r2 + 800d426: d126 bne.n 800d476 __HAL_RCC_GPIOD_CLK_ENABLE(); - 800d40c: 4b16 ldr r3, [pc, #88] @ (800d468 ) - 800d40e: 699b ldr r3, [r3, #24] - 800d410: 4a15 ldr r2, [pc, #84] @ (800d468 ) - 800d412: f043 0320 orr.w r3, r3, #32 - 800d416: 6193 str r3, [r2, #24] - 800d418: 4b13 ldr r3, [pc, #76] @ (800d468 ) - 800d41a: 699b ldr r3, [r3, #24] - 800d41c: f003 0320 and.w r3, r3, #32 - 800d420: 60fb str r3, [r7, #12] - 800d422: 68fb ldr r3, [r7, #12] + 800d428: 4b16 ldr r3, [pc, #88] @ (800d484 ) + 800d42a: 699b ldr r3, [r3, #24] + 800d42c: 4a15 ldr r2, [pc, #84] @ (800d484 ) + 800d42e: f043 0320 orr.w r3, r3, #32 + 800d432: 6193 str r3, [r2, #24] + 800d434: 4b13 ldr r3, [pc, #76] @ (800d484 ) + 800d436: 699b ldr r3, [r3, #24] + 800d438: f003 0320 and.w r3, r3, #32 + 800d43c: 60fb str r3, [r7, #12] + 800d43e: 68fb ldr r3, [r7, #12] GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15; - 800d424: f44f 4360 mov.w r3, #57344 @ 0xe000 - 800d428: 617b str r3, [r7, #20] + 800d440: f44f 4360 mov.w r3, #57344 @ 0xe000 + 800d444: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d42a: 2302 movs r3, #2 - 800d42c: 61bb str r3, [r7, #24] + 800d446: 2302 movs r3, #2 + 800d448: 61bb str r3, [r7, #24] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 800d42e: 2302 movs r3, #2 - 800d430: 623b str r3, [r7, #32] + 800d44a: 2302 movs r3, #2 + 800d44c: 623b str r3, [r7, #32] HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800d432: f107 0314 add.w r3, r7, #20 - 800d436: 4619 mov r1, r3 - 800d438: 480e ldr r0, [pc, #56] @ (800d474 ) - 800d43a: f002 f905 bl 800f648 + 800d44e: f107 0314 add.w r3, r7, #20 + 800d452: 4619 mov r1, r3 + 800d454: 480e ldr r0, [pc, #56] @ (800d490 ) + 800d456: f002 f905 bl 800f664 __HAL_AFIO_REMAP_TIM4_ENABLE(); - 800d43e: 4b0e ldr r3, [pc, #56] @ (800d478 ) - 800d440: 685b ldr r3, [r3, #4] - 800d442: 627b str r3, [r7, #36] @ 0x24 - 800d444: 6a7b ldr r3, [r7, #36] @ 0x24 - 800d446: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 - 800d44a: 627b str r3, [r7, #36] @ 0x24 - 800d44c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800d44e: f443 5380 orr.w r3, r3, #4096 @ 0x1000 - 800d452: 627b str r3, [r7, #36] @ 0x24 - 800d454: 4a08 ldr r2, [pc, #32] @ (800d478 ) - 800d456: 6a7b ldr r3, [r7, #36] @ 0x24 - 800d458: 6053 str r3, [r2, #4] + 800d45a: 4b0e ldr r3, [pc, #56] @ (800d494 ) + 800d45c: 685b ldr r3, [r3, #4] + 800d45e: 627b str r3, [r7, #36] @ 0x24 + 800d460: 6a7b ldr r3, [r7, #36] @ 0x24 + 800d462: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 + 800d466: 627b str r3, [r7, #36] @ 0x24 + 800d468: 6a7b ldr r3, [r7, #36] @ 0x24 + 800d46a: f443 5380 orr.w r3, r3, #4096 @ 0x1000 + 800d46e: 627b str r3, [r7, #36] @ 0x24 + 800d470: 4a08 ldr r2, [pc, #32] @ (800d494 ) + 800d472: 6a7b ldr r3, [r7, #36] @ 0x24 + 800d474: 6053 str r3, [r2, #4] } - 800d45a: bf00 nop - 800d45c: 3728 adds r7, #40 @ 0x28 - 800d45e: 46bd mov sp, r7 - 800d460: bd80 pop {r7, pc} - 800d462: bf00 nop - 800d464: 40000400 .word 0x40000400 - 800d468: 40021000 .word 0x40021000 - 800d46c: 40010800 .word 0x40010800 - 800d470: 40000800 .word 0x40000800 - 800d474: 40011400 .word 0x40011400 - 800d478: 40010000 .word 0x40010000 + 800d476: bf00 nop + 800d478: 3728 adds r7, #40 @ 0x28 + 800d47a: 46bd mov sp, r7 + 800d47c: bd80 pop {r7, pc} + 800d47e: bf00 nop + 800d480: 40000400 .word 0x40000400 + 800d484: 40021000 .word 0x40021000 + 800d488: 40010800 .word 0x40010800 + 800d48c: 40000800 .word 0x40000800 + 800d490: 40011400 .word 0x40011400 + 800d494: 40010000 .word 0x40010000 -0800d47c : +0800d498 : UART_HandleTypeDef huart2; UART_HandleTypeDef huart3; /* UART5 init function */ void MX_UART5_Init(void) { - 800d47c: b580 push {r7, lr} - 800d47e: af00 add r7, sp, #0 + 800d498: b580 push {r7, lr} + 800d49a: af00 add r7, sp, #0 /* USER CODE END UART5_Init 0 */ /* USER CODE BEGIN UART5_Init 1 */ /* USER CODE END UART5_Init 1 */ huart5.Instance = UART5; - 800d480: 4b11 ldr r3, [pc, #68] @ (800d4c8 ) - 800d482: 4a12 ldr r2, [pc, #72] @ (800d4cc ) - 800d484: 601a str r2, [r3, #0] + 800d49c: 4b11 ldr r3, [pc, #68] @ (800d4e4 ) + 800d49e: 4a12 ldr r2, [pc, #72] @ (800d4e8 ) + 800d4a0: 601a str r2, [r3, #0] huart5.Init.BaudRate = 9600; - 800d486: 4b10 ldr r3, [pc, #64] @ (800d4c8 ) - 800d488: f44f 5216 mov.w r2, #9600 @ 0x2580 - 800d48c: 605a str r2, [r3, #4] + 800d4a2: 4b10 ldr r3, [pc, #64] @ (800d4e4 ) + 800d4a4: f44f 5216 mov.w r2, #9600 @ 0x2580 + 800d4a8: 605a str r2, [r3, #4] huart5.Init.WordLength = UART_WORDLENGTH_8B; - 800d48e: 4b0e ldr r3, [pc, #56] @ (800d4c8 ) - 800d490: 2200 movs r2, #0 - 800d492: 609a str r2, [r3, #8] + 800d4aa: 4b0e ldr r3, [pc, #56] @ (800d4e4 ) + 800d4ac: 2200 movs r2, #0 + 800d4ae: 609a str r2, [r3, #8] huart5.Init.StopBits = UART_STOPBITS_1; - 800d494: 4b0c ldr r3, [pc, #48] @ (800d4c8 ) - 800d496: 2200 movs r2, #0 - 800d498: 60da str r2, [r3, #12] + 800d4b0: 4b0c ldr r3, [pc, #48] @ (800d4e4 ) + 800d4b2: 2200 movs r2, #0 + 800d4b4: 60da str r2, [r3, #12] huart5.Init.Parity = UART_PARITY_NONE; - 800d49a: 4b0b ldr r3, [pc, #44] @ (800d4c8 ) - 800d49c: 2200 movs r2, #0 - 800d49e: 611a str r2, [r3, #16] + 800d4b6: 4b0b ldr r3, [pc, #44] @ (800d4e4 ) + 800d4b8: 2200 movs r2, #0 + 800d4ba: 611a str r2, [r3, #16] huart5.Init.Mode = UART_MODE_TX_RX; - 800d4a0: 4b09 ldr r3, [pc, #36] @ (800d4c8 ) - 800d4a2: 220c movs r2, #12 - 800d4a4: 615a str r2, [r3, #20] + 800d4bc: 4b09 ldr r3, [pc, #36] @ (800d4e4 ) + 800d4be: 220c movs r2, #12 + 800d4c0: 615a str r2, [r3, #20] huart5.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800d4a6: 4b08 ldr r3, [pc, #32] @ (800d4c8 ) - 800d4a8: 2200 movs r2, #0 - 800d4aa: 619a str r2, [r3, #24] + 800d4c2: 4b08 ldr r3, [pc, #32] @ (800d4e4 ) + 800d4c4: 2200 movs r2, #0 + 800d4c6: 619a str r2, [r3, #24] huart5.Init.OverSampling = UART_OVERSAMPLING_16; - 800d4ac: 4b06 ldr r3, [pc, #24] @ (800d4c8 ) - 800d4ae: 2200 movs r2, #0 - 800d4b0: 61da str r2, [r3, #28] + 800d4c8: 4b06 ldr r3, [pc, #24] @ (800d4e4 ) + 800d4ca: 2200 movs r2, #0 + 800d4cc: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart5) != HAL_OK) - 800d4b2: 4805 ldr r0, [pc, #20] @ (800d4c8 ) - 800d4b4: f004 fc08 bl 8011cc8 - 800d4b8: 4603 mov r3, r0 - 800d4ba: 2b00 cmp r3, #0 - 800d4bc: d001 beq.n 800d4c2 + 800d4ce: 4805 ldr r0, [pc, #20] @ (800d4e4 ) + 800d4d0: f004 fc08 bl 8011ce4 + 800d4d4: 4603 mov r3, r0 + 800d4d6: 2b00 cmp r3, #0 + 800d4d8: d001 beq.n 800d4de { Error_Handler(); - 800d4be: f7fd fa9d bl 800a9fc + 800d4da: f7fd fa8f bl 800a9fc } /* USER CODE BEGIN UART5_Init 2 */ /* USER CODE END UART5_Init 2 */ } - 800d4c2: bf00 nop - 800d4c4: bd80 pop {r7, pc} - 800d4c6: bf00 nop - 800d4c8: 20000f58 .word 0x20000f58 - 800d4cc: 40005000 .word 0x40005000 + 800d4de: bf00 nop + 800d4e0: bd80 pop {r7, pc} + 800d4e2: bf00 nop + 800d4e4: 20000f58 .word 0x20000f58 + 800d4e8: 40005000 .word 0x40005000 -0800d4d0 : +0800d4ec : /* USART1 init function */ void MX_USART1_UART_Init(void) { - 800d4d0: b580 push {r7, lr} - 800d4d2: af00 add r7, sp, #0 + 800d4ec: b580 push {r7, lr} + 800d4ee: af00 add r7, sp, #0 /* USER CODE END USART1_Init 0 */ /* USER CODE BEGIN USART1_Init 1 */ /* USER CODE END USART1_Init 1 */ huart1.Instance = USART1; - 800d4d4: 4b11 ldr r3, [pc, #68] @ (800d51c ) - 800d4d6: 4a12 ldr r2, [pc, #72] @ (800d520 ) - 800d4d8: 601a str r2, [r3, #0] + 800d4f0: 4b11 ldr r3, [pc, #68] @ (800d538 ) + 800d4f2: 4a12 ldr r2, [pc, #72] @ (800d53c ) + 800d4f4: 601a str r2, [r3, #0] huart1.Init.BaudRate = 115200; - 800d4da: 4b10 ldr r3, [pc, #64] @ (800d51c ) - 800d4dc: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 800d4e0: 605a str r2, [r3, #4] + 800d4f6: 4b10 ldr r3, [pc, #64] @ (800d538 ) + 800d4f8: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 800d4fc: 605a str r2, [r3, #4] huart1.Init.WordLength = UART_WORDLENGTH_8B; - 800d4e2: 4b0e ldr r3, [pc, #56] @ (800d51c ) - 800d4e4: 2200 movs r2, #0 - 800d4e6: 609a str r2, [r3, #8] + 800d4fe: 4b0e ldr r3, [pc, #56] @ (800d538 ) + 800d500: 2200 movs r2, #0 + 800d502: 609a str r2, [r3, #8] huart1.Init.StopBits = UART_STOPBITS_1; - 800d4e8: 4b0c ldr r3, [pc, #48] @ (800d51c ) - 800d4ea: 2200 movs r2, #0 - 800d4ec: 60da str r2, [r3, #12] + 800d504: 4b0c ldr r3, [pc, #48] @ (800d538 ) + 800d506: 2200 movs r2, #0 + 800d508: 60da str r2, [r3, #12] huart1.Init.Parity = UART_PARITY_NONE; - 800d4ee: 4b0b ldr r3, [pc, #44] @ (800d51c ) - 800d4f0: 2200 movs r2, #0 - 800d4f2: 611a str r2, [r3, #16] + 800d50a: 4b0b ldr r3, [pc, #44] @ (800d538 ) + 800d50c: 2200 movs r2, #0 + 800d50e: 611a str r2, [r3, #16] huart1.Init.Mode = UART_MODE_TX_RX; - 800d4f4: 4b09 ldr r3, [pc, #36] @ (800d51c ) - 800d4f6: 220c movs r2, #12 - 800d4f8: 615a str r2, [r3, #20] + 800d510: 4b09 ldr r3, [pc, #36] @ (800d538 ) + 800d512: 220c movs r2, #12 + 800d514: 615a str r2, [r3, #20] huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800d4fa: 4b08 ldr r3, [pc, #32] @ (800d51c ) - 800d4fc: 2200 movs r2, #0 - 800d4fe: 619a str r2, [r3, #24] + 800d516: 4b08 ldr r3, [pc, #32] @ (800d538 ) + 800d518: 2200 movs r2, #0 + 800d51a: 619a str r2, [r3, #24] huart1.Init.OverSampling = UART_OVERSAMPLING_16; - 800d500: 4b06 ldr r3, [pc, #24] @ (800d51c ) - 800d502: 2200 movs r2, #0 - 800d504: 61da str r2, [r3, #28] + 800d51c: 4b06 ldr r3, [pc, #24] @ (800d538 ) + 800d51e: 2200 movs r2, #0 + 800d520: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart1) != HAL_OK) - 800d506: 4805 ldr r0, [pc, #20] @ (800d51c ) - 800d508: f004 fbde bl 8011cc8 - 800d50c: 4603 mov r3, r0 - 800d50e: 2b00 cmp r3, #0 - 800d510: d001 beq.n 800d516 + 800d522: 4805 ldr r0, [pc, #20] @ (800d538 ) + 800d524: f004 fbde bl 8011ce4 + 800d528: 4603 mov r3, r0 + 800d52a: 2b00 cmp r3, #0 + 800d52c: d001 beq.n 800d532 { Error_Handler(); - 800d512: f7fd fa73 bl 800a9fc + 800d52e: f7fd fa65 bl 800a9fc } /* USER CODE BEGIN USART1_Init 2 */ /* USER CODE END USART1_Init 2 */ } - 800d516: bf00 nop - 800d518: bd80 pop {r7, pc} - 800d51a: bf00 nop - 800d51c: 20000fa0 .word 0x20000fa0 - 800d520: 40013800 .word 0x40013800 + 800d532: bf00 nop + 800d534: bd80 pop {r7, pc} + 800d536: bf00 nop + 800d538: 20000fa0 .word 0x20000fa0 + 800d53c: 40013800 .word 0x40013800 -0800d524 : +0800d540 : /* USART2 init function */ void MX_USART2_UART_Init(void) { - 800d524: b580 push {r7, lr} - 800d526: af00 add r7, sp, #0 + 800d540: b580 push {r7, lr} + 800d542: af00 add r7, sp, #0 /* USER CODE END USART2_Init 0 */ /* USER CODE BEGIN USART2_Init 1 */ /* USER CODE END USART2_Init 1 */ huart2.Instance = USART2; - 800d528: 4b11 ldr r3, [pc, #68] @ (800d570 ) - 800d52a: 4a12 ldr r2, [pc, #72] @ (800d574 ) - 800d52c: 601a str r2, [r3, #0] + 800d544: 4b11 ldr r3, [pc, #68] @ (800d58c ) + 800d546: 4a12 ldr r2, [pc, #72] @ (800d590 ) + 800d548: 601a str r2, [r3, #0] huart2.Init.BaudRate = 115200; - 800d52e: 4b10 ldr r3, [pc, #64] @ (800d570 ) - 800d530: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 800d534: 605a str r2, [r3, #4] + 800d54a: 4b10 ldr r3, [pc, #64] @ (800d58c ) + 800d54c: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 800d550: 605a str r2, [r3, #4] huart2.Init.WordLength = UART_WORDLENGTH_8B; - 800d536: 4b0e ldr r3, [pc, #56] @ (800d570 ) - 800d538: 2200 movs r2, #0 - 800d53a: 609a str r2, [r3, #8] + 800d552: 4b0e ldr r3, [pc, #56] @ (800d58c ) + 800d554: 2200 movs r2, #0 + 800d556: 609a str r2, [r3, #8] huart2.Init.StopBits = UART_STOPBITS_1; - 800d53c: 4b0c ldr r3, [pc, #48] @ (800d570 ) - 800d53e: 2200 movs r2, #0 - 800d540: 60da str r2, [r3, #12] + 800d558: 4b0c ldr r3, [pc, #48] @ (800d58c ) + 800d55a: 2200 movs r2, #0 + 800d55c: 60da str r2, [r3, #12] huart2.Init.Parity = UART_PARITY_NONE; - 800d542: 4b0b ldr r3, [pc, #44] @ (800d570 ) - 800d544: 2200 movs r2, #0 - 800d546: 611a str r2, [r3, #16] + 800d55e: 4b0b ldr r3, [pc, #44] @ (800d58c ) + 800d560: 2200 movs r2, #0 + 800d562: 611a str r2, [r3, #16] huart2.Init.Mode = UART_MODE_TX_RX; - 800d548: 4b09 ldr r3, [pc, #36] @ (800d570 ) - 800d54a: 220c movs r2, #12 - 800d54c: 615a str r2, [r3, #20] + 800d564: 4b09 ldr r3, [pc, #36] @ (800d58c ) + 800d566: 220c movs r2, #12 + 800d568: 615a str r2, [r3, #20] huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800d54e: 4b08 ldr r3, [pc, #32] @ (800d570 ) - 800d550: 2200 movs r2, #0 - 800d552: 619a str r2, [r3, #24] + 800d56a: 4b08 ldr r3, [pc, #32] @ (800d58c ) + 800d56c: 2200 movs r2, #0 + 800d56e: 619a str r2, [r3, #24] huart2.Init.OverSampling = UART_OVERSAMPLING_16; - 800d554: 4b06 ldr r3, [pc, #24] @ (800d570 ) - 800d556: 2200 movs r2, #0 - 800d558: 61da str r2, [r3, #28] + 800d570: 4b06 ldr r3, [pc, #24] @ (800d58c ) + 800d572: 2200 movs r2, #0 + 800d574: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart2) != HAL_OK) - 800d55a: 4805 ldr r0, [pc, #20] @ (800d570 ) - 800d55c: f004 fbb4 bl 8011cc8 - 800d560: 4603 mov r3, r0 - 800d562: 2b00 cmp r3, #0 - 800d564: d001 beq.n 800d56a + 800d576: 4805 ldr r0, [pc, #20] @ (800d58c ) + 800d578: f004 fbb4 bl 8011ce4 + 800d57c: 4603 mov r3, r0 + 800d57e: 2b00 cmp r3, #0 + 800d580: d001 beq.n 800d586 { Error_Handler(); - 800d566: f7fd fa49 bl 800a9fc + 800d582: f7fd fa3b bl 800a9fc } /* USER CODE BEGIN USART2_Init 2 */ /* USER CODE END USART2_Init 2 */ } - 800d56a: bf00 nop - 800d56c: bd80 pop {r7, pc} - 800d56e: bf00 nop - 800d570: 20000fe8 .word 0x20000fe8 - 800d574: 40004400 .word 0x40004400 + 800d586: bf00 nop + 800d588: bd80 pop {r7, pc} + 800d58a: bf00 nop + 800d58c: 20000fe8 .word 0x20000fe8 + 800d590: 40004400 .word 0x40004400 -0800d578 : +0800d594 : /* USART3 init function */ void MX_USART3_UART_Init(void) { - 800d578: b580 push {r7, lr} - 800d57a: af00 add r7, sp, #0 + 800d594: b580 push {r7, lr} + 800d596: af00 add r7, sp, #0 /* USER CODE END USART3_Init 0 */ /* USER CODE BEGIN USART3_Init 1 */ /* USER CODE END USART3_Init 1 */ huart3.Instance = USART3; - 800d57c: 4b11 ldr r3, [pc, #68] @ (800d5c4 ) - 800d57e: 4a12 ldr r2, [pc, #72] @ (800d5c8 ) - 800d580: 601a str r2, [r3, #0] + 800d598: 4b11 ldr r3, [pc, #68] @ (800d5e0 ) + 800d59a: 4a12 ldr r2, [pc, #72] @ (800d5e4 ) + 800d59c: 601a str r2, [r3, #0] huart3.Init.BaudRate = 115200; - 800d582: 4b10 ldr r3, [pc, #64] @ (800d5c4 ) - 800d584: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 800d588: 605a str r2, [r3, #4] + 800d59e: 4b10 ldr r3, [pc, #64] @ (800d5e0 ) + 800d5a0: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 800d5a4: 605a str r2, [r3, #4] huart3.Init.WordLength = UART_WORDLENGTH_8B; - 800d58a: 4b0e ldr r3, [pc, #56] @ (800d5c4 ) - 800d58c: 2200 movs r2, #0 - 800d58e: 609a str r2, [r3, #8] + 800d5a6: 4b0e ldr r3, [pc, #56] @ (800d5e0 ) + 800d5a8: 2200 movs r2, #0 + 800d5aa: 609a str r2, [r3, #8] huart3.Init.StopBits = UART_STOPBITS_1; - 800d590: 4b0c ldr r3, [pc, #48] @ (800d5c4 ) - 800d592: 2200 movs r2, #0 - 800d594: 60da str r2, [r3, #12] + 800d5ac: 4b0c ldr r3, [pc, #48] @ (800d5e0 ) + 800d5ae: 2200 movs r2, #0 + 800d5b0: 60da str r2, [r3, #12] huart3.Init.Parity = UART_PARITY_NONE; - 800d596: 4b0b ldr r3, [pc, #44] @ (800d5c4 ) - 800d598: 2200 movs r2, #0 - 800d59a: 611a str r2, [r3, #16] + 800d5b2: 4b0b ldr r3, [pc, #44] @ (800d5e0 ) + 800d5b4: 2200 movs r2, #0 + 800d5b6: 611a str r2, [r3, #16] huart3.Init.Mode = UART_MODE_TX_RX; - 800d59c: 4b09 ldr r3, [pc, #36] @ (800d5c4 ) - 800d59e: 220c movs r2, #12 - 800d5a0: 615a str r2, [r3, #20] + 800d5b8: 4b09 ldr r3, [pc, #36] @ (800d5e0 ) + 800d5ba: 220c movs r2, #12 + 800d5bc: 615a str r2, [r3, #20] huart3.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 800d5a2: 4b08 ldr r3, [pc, #32] @ (800d5c4 ) - 800d5a4: 2200 movs r2, #0 - 800d5a6: 619a str r2, [r3, #24] + 800d5be: 4b08 ldr r3, [pc, #32] @ (800d5e0 ) + 800d5c0: 2200 movs r2, #0 + 800d5c2: 619a str r2, [r3, #24] huart3.Init.OverSampling = UART_OVERSAMPLING_16; - 800d5a8: 4b06 ldr r3, [pc, #24] @ (800d5c4 ) - 800d5aa: 2200 movs r2, #0 - 800d5ac: 61da str r2, [r3, #28] + 800d5c4: 4b06 ldr r3, [pc, #24] @ (800d5e0 ) + 800d5c6: 2200 movs r2, #0 + 800d5c8: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart3) != HAL_OK) - 800d5ae: 4805 ldr r0, [pc, #20] @ (800d5c4 ) - 800d5b0: f004 fb8a bl 8011cc8 - 800d5b4: 4603 mov r3, r0 - 800d5b6: 2b00 cmp r3, #0 - 800d5b8: d001 beq.n 800d5be + 800d5ca: 4805 ldr r0, [pc, #20] @ (800d5e0 ) + 800d5cc: f004 fb8a bl 8011ce4 + 800d5d0: 4603 mov r3, r0 + 800d5d2: 2b00 cmp r3, #0 + 800d5d4: d001 beq.n 800d5da { Error_Handler(); - 800d5ba: f7fd fa1f bl 800a9fc + 800d5d6: f7fd fa11 bl 800a9fc } /* USER CODE BEGIN USART3_Init 2 */ /* USER CODE END USART3_Init 2 */ } - 800d5be: bf00 nop - 800d5c0: bd80 pop {r7, pc} - 800d5c2: bf00 nop - 800d5c4: 20001030 .word 0x20001030 - 800d5c8: 40004800 .word 0x40004800 + 800d5da: bf00 nop + 800d5dc: bd80 pop {r7, pc} + 800d5de: bf00 nop + 800d5e0: 20001030 .word 0x20001030 + 800d5e4: 40004800 .word 0x40004800 -0800d5cc : +0800d5e8 : void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle) { - 800d5cc: b580 push {r7, lr} - 800d5ce: b092 sub sp, #72 @ 0x48 - 800d5d0: af00 add r7, sp, #0 - 800d5d2: 6078 str r0, [r7, #4] + 800d5e8: b580 push {r7, lr} + 800d5ea: b092 sub sp, #72 @ 0x48 + 800d5ec: af00 add r7, sp, #0 + 800d5ee: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800d5d4: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d5d8: 2200 movs r2, #0 - 800d5da: 601a str r2, [r3, #0] - 800d5dc: 605a str r2, [r3, #4] - 800d5de: 609a str r2, [r3, #8] - 800d5e0: 60da str r2, [r3, #12] + 800d5f0: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d5f4: 2200 movs r2, #0 + 800d5f6: 601a str r2, [r3, #0] + 800d5f8: 605a str r2, [r3, #4] + 800d5fa: 609a str r2, [r3, #8] + 800d5fc: 60da str r2, [r3, #12] if(uartHandle->Instance==UART5) - 800d5e2: 687b ldr r3, [r7, #4] - 800d5e4: 681b ldr r3, [r3, #0] - 800d5e6: 4a95 ldr r2, [pc, #596] @ (800d83c ) - 800d5e8: 4293 cmp r3, r2 - 800d5ea: d145 bne.n 800d678 + 800d5fe: 687b ldr r3, [r7, #4] + 800d600: 681b ldr r3, [r3, #0] + 800d602: 4a95 ldr r2, [pc, #596] @ (800d858 ) + 800d604: 4293 cmp r3, r2 + 800d606: d145 bne.n 800d694 { /* USER CODE BEGIN UART5_MspInit 0 */ /* USER CODE END UART5_MspInit 0 */ /* UART5 clock enable */ __HAL_RCC_UART5_CLK_ENABLE(); - 800d5ec: 4b94 ldr r3, [pc, #592] @ (800d840 ) - 800d5ee: 69db ldr r3, [r3, #28] - 800d5f0: 4a93 ldr r2, [pc, #588] @ (800d840 ) - 800d5f2: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 - 800d5f6: 61d3 str r3, [r2, #28] - 800d5f8: 4b91 ldr r3, [pc, #580] @ (800d840 ) - 800d5fa: 69db ldr r3, [r3, #28] - 800d5fc: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 800d600: 62fb str r3, [r7, #44] @ 0x2c - 800d602: 6afb ldr r3, [r7, #44] @ 0x2c + 800d608: 4b94 ldr r3, [pc, #592] @ (800d85c ) + 800d60a: 69db ldr r3, [r3, #28] + 800d60c: 4a93 ldr r2, [pc, #588] @ (800d85c ) + 800d60e: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 + 800d612: 61d3 str r3, [r2, #28] + 800d614: 4b91 ldr r3, [pc, #580] @ (800d85c ) + 800d616: 69db ldr r3, [r3, #28] + 800d618: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 800d61c: 62fb str r3, [r7, #44] @ 0x2c + 800d61e: 6afb ldr r3, [r7, #44] @ 0x2c __HAL_RCC_GPIOC_CLK_ENABLE(); - 800d604: 4b8e ldr r3, [pc, #568] @ (800d840 ) - 800d606: 699b ldr r3, [r3, #24] - 800d608: 4a8d ldr r2, [pc, #564] @ (800d840 ) - 800d60a: f043 0310 orr.w r3, r3, #16 - 800d60e: 6193 str r3, [r2, #24] - 800d610: 4b8b ldr r3, [pc, #556] @ (800d840 ) - 800d612: 699b ldr r3, [r3, #24] - 800d614: f003 0310 and.w r3, r3, #16 - 800d618: 62bb str r3, [r7, #40] @ 0x28 - 800d61a: 6abb ldr r3, [r7, #40] @ 0x28 + 800d620: 4b8e ldr r3, [pc, #568] @ (800d85c ) + 800d622: 699b ldr r3, [r3, #24] + 800d624: 4a8d ldr r2, [pc, #564] @ (800d85c ) + 800d626: f043 0310 orr.w r3, r3, #16 + 800d62a: 6193 str r3, [r2, #24] + 800d62c: 4b8b ldr r3, [pc, #556] @ (800d85c ) + 800d62e: 699b ldr r3, [r3, #24] + 800d630: f003 0310 and.w r3, r3, #16 + 800d634: 62bb str r3, [r7, #40] @ 0x28 + 800d636: 6abb ldr r3, [r7, #40] @ 0x28 __HAL_RCC_GPIOD_CLK_ENABLE(); - 800d61c: 4b88 ldr r3, [pc, #544] @ (800d840 ) - 800d61e: 699b ldr r3, [r3, #24] - 800d620: 4a87 ldr r2, [pc, #540] @ (800d840 ) - 800d622: f043 0320 orr.w r3, r3, #32 - 800d626: 6193 str r3, [r2, #24] - 800d628: 4b85 ldr r3, [pc, #532] @ (800d840 ) - 800d62a: 699b ldr r3, [r3, #24] - 800d62c: f003 0320 and.w r3, r3, #32 - 800d630: 627b str r3, [r7, #36] @ 0x24 - 800d632: 6a7b ldr r3, [r7, #36] @ 0x24 + 800d638: 4b88 ldr r3, [pc, #544] @ (800d85c ) + 800d63a: 699b ldr r3, [r3, #24] + 800d63c: 4a87 ldr r2, [pc, #540] @ (800d85c ) + 800d63e: f043 0320 orr.w r3, r3, #32 + 800d642: 6193 str r3, [r2, #24] + 800d644: 4b85 ldr r3, [pc, #532] @ (800d85c ) + 800d646: 699b ldr r3, [r3, #24] + 800d648: f003 0320 and.w r3, r3, #32 + 800d64c: 627b str r3, [r7, #36] @ 0x24 + 800d64e: 6a7b ldr r3, [r7, #36] @ 0x24 /**UART5 GPIO Configuration PC12 ------> UART5_TX PD2 ------> UART5_RX */ GPIO_InitStruct.Pin = GPIO_PIN_12; - 800d634: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800d638: 633b str r3, [r7, #48] @ 0x30 + 800d650: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800d654: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d63a: 2302 movs r3, #2 - 800d63c: 637b str r3, [r7, #52] @ 0x34 + 800d656: 2302 movs r3, #2 + 800d658: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800d63e: 2303 movs r3, #3 - 800d640: 63fb str r3, [r7, #60] @ 0x3c + 800d65a: 2303 movs r3, #3 + 800d65c: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); - 800d642: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d646: 4619 mov r1, r3 - 800d648: 487e ldr r0, [pc, #504] @ (800d844 ) - 800d64a: f001 fffd bl 800f648 + 800d65e: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d662: 4619 mov r1, r3 + 800d664: 487e ldr r0, [pc, #504] @ (800d860 ) + 800d666: f001 fffd bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_2; - 800d64e: 2304 movs r3, #4 - 800d650: 633b str r3, [r7, #48] @ 0x30 + 800d66a: 2304 movs r3, #4 + 800d66c: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800d652: 2300 movs r3, #0 - 800d654: 637b str r3, [r7, #52] @ 0x34 + 800d66e: 2300 movs r3, #0 + 800d670: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800d656: 2300 movs r3, #0 - 800d658: 63bb str r3, [r7, #56] @ 0x38 + 800d672: 2300 movs r3, #0 + 800d674: 63bb str r3, [r7, #56] @ 0x38 HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800d65a: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d65e: 4619 mov r1, r3 - 800d660: 4879 ldr r0, [pc, #484] @ (800d848 ) - 800d662: f001 fff1 bl 800f648 + 800d676: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d67a: 4619 mov r1, r3 + 800d67c: 4879 ldr r0, [pc, #484] @ (800d864 ) + 800d67e: f001 fff1 bl 800f664 /* UART5 interrupt Init */ HAL_NVIC_SetPriority(UART5_IRQn, 0, 0); - 800d666: 2200 movs r2, #0 - 800d668: 2100 movs r1, #0 - 800d66a: 2035 movs r0, #53 @ 0x35 - 800d66c: f001 fe57 bl 800f31e + 800d682: 2200 movs r2, #0 + 800d684: 2100 movs r1, #0 + 800d686: 2035 movs r0, #53 @ 0x35 + 800d688: f001 fe57 bl 800f33a HAL_NVIC_EnableIRQ(UART5_IRQn); - 800d670: 2035 movs r0, #53 @ 0x35 - 800d672: f001 fe70 bl 800f356 + 800d68c: 2035 movs r0, #53 @ 0x35 + 800d68e: f001 fe70 bl 800f372 HAL_NVIC_EnableIRQ(USART3_IRQn); /* USER CODE BEGIN USART3_MspInit 1 */ /* USER CODE END USART3_MspInit 1 */ } } - 800d676: e0dc b.n 800d832 + 800d692: e0dc b.n 800d84e else if(uartHandle->Instance==USART1) - 800d678: 687b ldr r3, [r7, #4] - 800d67a: 681b ldr r3, [r3, #0] - 800d67c: 4a73 ldr r2, [pc, #460] @ (800d84c ) - 800d67e: 4293 cmp r3, r2 - 800d680: d13a bne.n 800d6f8 + 800d694: 687b ldr r3, [r7, #4] + 800d696: 681b ldr r3, [r3, #0] + 800d698: 4a73 ldr r2, [pc, #460] @ (800d868 ) + 800d69a: 4293 cmp r3, r2 + 800d69c: d13a bne.n 800d714 __HAL_RCC_USART1_CLK_ENABLE(); - 800d682: 4b6f ldr r3, [pc, #444] @ (800d840 ) - 800d684: 699b ldr r3, [r3, #24] - 800d686: 4a6e ldr r2, [pc, #440] @ (800d840 ) - 800d688: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 800d68c: 6193 str r3, [r2, #24] - 800d68e: 4b6c ldr r3, [pc, #432] @ (800d840 ) - 800d690: 699b ldr r3, [r3, #24] - 800d692: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 800d696: 623b str r3, [r7, #32] - 800d698: 6a3b ldr r3, [r7, #32] + 800d69e: 4b6f ldr r3, [pc, #444] @ (800d85c ) + 800d6a0: 699b ldr r3, [r3, #24] + 800d6a2: 4a6e ldr r2, [pc, #440] @ (800d85c ) + 800d6a4: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 800d6a8: 6193 str r3, [r2, #24] + 800d6aa: 4b6c ldr r3, [pc, #432] @ (800d85c ) + 800d6ac: 699b ldr r3, [r3, #24] + 800d6ae: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 800d6b2: 623b str r3, [r7, #32] + 800d6b4: 6a3b ldr r3, [r7, #32] __HAL_RCC_GPIOA_CLK_ENABLE(); - 800d69a: 4b69 ldr r3, [pc, #420] @ (800d840 ) - 800d69c: 699b ldr r3, [r3, #24] - 800d69e: 4a68 ldr r2, [pc, #416] @ (800d840 ) - 800d6a0: f043 0304 orr.w r3, r3, #4 - 800d6a4: 6193 str r3, [r2, #24] - 800d6a6: 4b66 ldr r3, [pc, #408] @ (800d840 ) - 800d6a8: 699b ldr r3, [r3, #24] - 800d6aa: f003 0304 and.w r3, r3, #4 - 800d6ae: 61fb str r3, [r7, #28] - 800d6b0: 69fb ldr r3, [r7, #28] + 800d6b6: 4b69 ldr r3, [pc, #420] @ (800d85c ) + 800d6b8: 699b ldr r3, [r3, #24] + 800d6ba: 4a68 ldr r2, [pc, #416] @ (800d85c ) + 800d6bc: f043 0304 orr.w r3, r3, #4 + 800d6c0: 6193 str r3, [r2, #24] + 800d6c2: 4b66 ldr r3, [pc, #408] @ (800d85c ) + 800d6c4: 699b ldr r3, [r3, #24] + 800d6c6: f003 0304 and.w r3, r3, #4 + 800d6ca: 61fb str r3, [r7, #28] + 800d6cc: 69fb ldr r3, [r7, #28] GPIO_InitStruct.Pin = GPIO_PIN_9; - 800d6b2: f44f 7300 mov.w r3, #512 @ 0x200 - 800d6b6: 633b str r3, [r7, #48] @ 0x30 + 800d6ce: f44f 7300 mov.w r3, #512 @ 0x200 + 800d6d2: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d6b8: 2302 movs r3, #2 - 800d6ba: 637b str r3, [r7, #52] @ 0x34 + 800d6d4: 2302 movs r3, #2 + 800d6d6: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800d6bc: 2303 movs r3, #3 - 800d6be: 63fb str r3, [r7, #60] @ 0x3c + 800d6d8: 2303 movs r3, #3 + 800d6da: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800d6c0: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d6c4: 4619 mov r1, r3 - 800d6c6: 4862 ldr r0, [pc, #392] @ (800d850 ) - 800d6c8: f001 ffbe bl 800f648 + 800d6dc: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d6e0: 4619 mov r1, r3 + 800d6e2: 4862 ldr r0, [pc, #392] @ (800d86c ) + 800d6e4: f001 ffbe bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_10; - 800d6cc: f44f 6380 mov.w r3, #1024 @ 0x400 - 800d6d0: 633b str r3, [r7, #48] @ 0x30 + 800d6e8: f44f 6380 mov.w r3, #1024 @ 0x400 + 800d6ec: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800d6d2: 2300 movs r3, #0 - 800d6d4: 637b str r3, [r7, #52] @ 0x34 + 800d6ee: 2300 movs r3, #0 + 800d6f0: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800d6d6: 2300 movs r3, #0 - 800d6d8: 63bb str r3, [r7, #56] @ 0x38 + 800d6f2: 2300 movs r3, #0 + 800d6f4: 63bb str r3, [r7, #56] @ 0x38 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800d6da: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d6de: 4619 mov r1, r3 - 800d6e0: 485b ldr r0, [pc, #364] @ (800d850 ) - 800d6e2: f001 ffb1 bl 800f648 + 800d6f6: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d6fa: 4619 mov r1, r3 + 800d6fc: 485b ldr r0, [pc, #364] @ (800d86c ) + 800d6fe: f001 ffb1 bl 800f664 HAL_NVIC_SetPriority(USART1_IRQn, 0, 0); - 800d6e6: 2200 movs r2, #0 - 800d6e8: 2100 movs r1, #0 - 800d6ea: 2025 movs r0, #37 @ 0x25 - 800d6ec: f001 fe17 bl 800f31e + 800d702: 2200 movs r2, #0 + 800d704: 2100 movs r1, #0 + 800d706: 2025 movs r0, #37 @ 0x25 + 800d708: f001 fe17 bl 800f33a HAL_NVIC_EnableIRQ(USART1_IRQn); - 800d6f0: 2025 movs r0, #37 @ 0x25 - 800d6f2: f001 fe30 bl 800f356 + 800d70c: 2025 movs r0, #37 @ 0x25 + 800d70e: f001 fe30 bl 800f372 } - 800d6f6: e09c b.n 800d832 + 800d712: e09c b.n 800d84e else if(uartHandle->Instance==USART2) - 800d6f8: 687b ldr r3, [r7, #4] - 800d6fa: 681b ldr r3, [r3, #0] - 800d6fc: 4a55 ldr r2, [pc, #340] @ (800d854 ) - 800d6fe: 4293 cmp r3, r2 - 800d700: d146 bne.n 800d790 + 800d714: 687b ldr r3, [r7, #4] + 800d716: 681b ldr r3, [r3, #0] + 800d718: 4a55 ldr r2, [pc, #340] @ (800d870 ) + 800d71a: 4293 cmp r3, r2 + 800d71c: d146 bne.n 800d7ac __HAL_RCC_USART2_CLK_ENABLE(); - 800d702: 4b4f ldr r3, [pc, #316] @ (800d840 ) - 800d704: 69db ldr r3, [r3, #28] - 800d706: 4a4e ldr r2, [pc, #312] @ (800d840 ) - 800d708: f443 3300 orr.w r3, r3, #131072 @ 0x20000 - 800d70c: 61d3 str r3, [r2, #28] - 800d70e: 4b4c ldr r3, [pc, #304] @ (800d840 ) - 800d710: 69db ldr r3, [r3, #28] - 800d712: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800d716: 61bb str r3, [r7, #24] - 800d718: 69bb ldr r3, [r7, #24] + 800d71e: 4b4f ldr r3, [pc, #316] @ (800d85c ) + 800d720: 69db ldr r3, [r3, #28] + 800d722: 4a4e ldr r2, [pc, #312] @ (800d85c ) + 800d724: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 800d728: 61d3 str r3, [r2, #28] + 800d72a: 4b4c ldr r3, [pc, #304] @ (800d85c ) + 800d72c: 69db ldr r3, [r3, #28] + 800d72e: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800d732: 61bb str r3, [r7, #24] + 800d734: 69bb ldr r3, [r7, #24] __HAL_RCC_GPIOD_CLK_ENABLE(); - 800d71a: 4b49 ldr r3, [pc, #292] @ (800d840 ) - 800d71c: 699b ldr r3, [r3, #24] - 800d71e: 4a48 ldr r2, [pc, #288] @ (800d840 ) - 800d720: f043 0320 orr.w r3, r3, #32 - 800d724: 6193 str r3, [r2, #24] - 800d726: 4b46 ldr r3, [pc, #280] @ (800d840 ) - 800d728: 699b ldr r3, [r3, #24] - 800d72a: f003 0320 and.w r3, r3, #32 - 800d72e: 617b str r3, [r7, #20] - 800d730: 697b ldr r3, [r7, #20] + 800d736: 4b49 ldr r3, [pc, #292] @ (800d85c ) + 800d738: 699b ldr r3, [r3, #24] + 800d73a: 4a48 ldr r2, [pc, #288] @ (800d85c ) + 800d73c: f043 0320 orr.w r3, r3, #32 + 800d740: 6193 str r3, [r2, #24] + 800d742: 4b46 ldr r3, [pc, #280] @ (800d85c ) + 800d744: 699b ldr r3, [r3, #24] + 800d746: f003 0320 and.w r3, r3, #32 + 800d74a: 617b str r3, [r7, #20] + 800d74c: 697b ldr r3, [r7, #20] GPIO_InitStruct.Pin = GPIO_PIN_5; - 800d732: 2320 movs r3, #32 - 800d734: 633b str r3, [r7, #48] @ 0x30 + 800d74e: 2320 movs r3, #32 + 800d750: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d736: 2302 movs r3, #2 - 800d738: 637b str r3, [r7, #52] @ 0x34 + 800d752: 2302 movs r3, #2 + 800d754: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800d73a: 2303 movs r3, #3 - 800d73c: 63fb str r3, [r7, #60] @ 0x3c + 800d756: 2303 movs r3, #3 + 800d758: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800d73e: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d742: 4619 mov r1, r3 - 800d744: 4840 ldr r0, [pc, #256] @ (800d848 ) - 800d746: f001 ff7f bl 800f648 + 800d75a: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d75e: 4619 mov r1, r3 + 800d760: 4840 ldr r0, [pc, #256] @ (800d864 ) + 800d762: f001 ff7f bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_6; - 800d74a: 2340 movs r3, #64 @ 0x40 - 800d74c: 633b str r3, [r7, #48] @ 0x30 + 800d766: 2340 movs r3, #64 @ 0x40 + 800d768: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800d74e: 2300 movs r3, #0 - 800d750: 637b str r3, [r7, #52] @ 0x34 + 800d76a: 2300 movs r3, #0 + 800d76c: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800d752: 2300 movs r3, #0 - 800d754: 63bb str r3, [r7, #56] @ 0x38 + 800d76e: 2300 movs r3, #0 + 800d770: 63bb str r3, [r7, #56] @ 0x38 HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800d756: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d75a: 4619 mov r1, r3 - 800d75c: 483a ldr r0, [pc, #232] @ (800d848 ) - 800d75e: f001 ff73 bl 800f648 + 800d772: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d776: 4619 mov r1, r3 + 800d778: 483a ldr r0, [pc, #232] @ (800d864 ) + 800d77a: f001 ff73 bl 800f664 __HAL_AFIO_REMAP_USART2_ENABLE(); - 800d762: 4b3d ldr r3, [pc, #244] @ (800d858 ) - 800d764: 685b ldr r3, [r3, #4] - 800d766: 643b str r3, [r7, #64] @ 0x40 - 800d768: 6c3b ldr r3, [r7, #64] @ 0x40 - 800d76a: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 - 800d76e: 643b str r3, [r7, #64] @ 0x40 - 800d770: 6c3b ldr r3, [r7, #64] @ 0x40 - 800d772: f043 0308 orr.w r3, r3, #8 - 800d776: 643b str r3, [r7, #64] @ 0x40 - 800d778: 4a37 ldr r2, [pc, #220] @ (800d858 ) - 800d77a: 6c3b ldr r3, [r7, #64] @ 0x40 - 800d77c: 6053 str r3, [r2, #4] + 800d77e: 4b3d ldr r3, [pc, #244] @ (800d874 ) + 800d780: 685b ldr r3, [r3, #4] + 800d782: 643b str r3, [r7, #64] @ 0x40 + 800d784: 6c3b ldr r3, [r7, #64] @ 0x40 + 800d786: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 + 800d78a: 643b str r3, [r7, #64] @ 0x40 + 800d78c: 6c3b ldr r3, [r7, #64] @ 0x40 + 800d78e: f043 0308 orr.w r3, r3, #8 + 800d792: 643b str r3, [r7, #64] @ 0x40 + 800d794: 4a37 ldr r2, [pc, #220] @ (800d874 ) + 800d796: 6c3b ldr r3, [r7, #64] @ 0x40 + 800d798: 6053 str r3, [r2, #4] HAL_NVIC_SetPriority(USART2_IRQn, 0, 0); - 800d77e: 2200 movs r2, #0 - 800d780: 2100 movs r1, #0 - 800d782: 2026 movs r0, #38 @ 0x26 - 800d784: f001 fdcb bl 800f31e + 800d79a: 2200 movs r2, #0 + 800d79c: 2100 movs r1, #0 + 800d79e: 2026 movs r0, #38 @ 0x26 + 800d7a0: f001 fdcb bl 800f33a HAL_NVIC_EnableIRQ(USART2_IRQn); - 800d788: 2026 movs r0, #38 @ 0x26 - 800d78a: f001 fde4 bl 800f356 + 800d7a4: 2026 movs r0, #38 @ 0x26 + 800d7a6: f001 fde4 bl 800f372 } - 800d78e: e050 b.n 800d832 + 800d7aa: e050 b.n 800d84e else if(uartHandle->Instance==USART3) - 800d790: 687b ldr r3, [r7, #4] - 800d792: 681b ldr r3, [r3, #0] - 800d794: 4a31 ldr r2, [pc, #196] @ (800d85c ) - 800d796: 4293 cmp r3, r2 - 800d798: d14b bne.n 800d832 + 800d7ac: 687b ldr r3, [r7, #4] + 800d7ae: 681b ldr r3, [r3, #0] + 800d7b0: 4a31 ldr r2, [pc, #196] @ (800d878 ) + 800d7b2: 4293 cmp r3, r2 + 800d7b4: d14b bne.n 800d84e __HAL_RCC_USART3_CLK_ENABLE(); - 800d79a: 4b29 ldr r3, [pc, #164] @ (800d840 ) - 800d79c: 69db ldr r3, [r3, #28] - 800d79e: 4a28 ldr r2, [pc, #160] @ (800d840 ) - 800d7a0: f443 2380 orr.w r3, r3, #262144 @ 0x40000 - 800d7a4: 61d3 str r3, [r2, #28] - 800d7a6: 4b26 ldr r3, [pc, #152] @ (800d840 ) - 800d7a8: 69db ldr r3, [r3, #28] - 800d7aa: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 800d7ae: 613b str r3, [r7, #16] - 800d7b0: 693b ldr r3, [r7, #16] + 800d7b6: 4b29 ldr r3, [pc, #164] @ (800d85c ) + 800d7b8: 69db ldr r3, [r3, #28] + 800d7ba: 4a28 ldr r2, [pc, #160] @ (800d85c ) + 800d7bc: f443 2380 orr.w r3, r3, #262144 @ 0x40000 + 800d7c0: 61d3 str r3, [r2, #28] + 800d7c2: 4b26 ldr r3, [pc, #152] @ (800d85c ) + 800d7c4: 69db ldr r3, [r3, #28] + 800d7c6: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 800d7ca: 613b str r3, [r7, #16] + 800d7cc: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOC_CLK_ENABLE(); - 800d7b2: 4b23 ldr r3, [pc, #140] @ (800d840 ) - 800d7b4: 699b ldr r3, [r3, #24] - 800d7b6: 4a22 ldr r2, [pc, #136] @ (800d840 ) - 800d7b8: f043 0310 orr.w r3, r3, #16 - 800d7bc: 6193 str r3, [r2, #24] - 800d7be: 4b20 ldr r3, [pc, #128] @ (800d840 ) - 800d7c0: 699b ldr r3, [r3, #24] - 800d7c2: f003 0310 and.w r3, r3, #16 - 800d7c6: 60fb str r3, [r7, #12] - 800d7c8: 68fb ldr r3, [r7, #12] + 800d7ce: 4b23 ldr r3, [pc, #140] @ (800d85c ) + 800d7d0: 699b ldr r3, [r3, #24] + 800d7d2: 4a22 ldr r2, [pc, #136] @ (800d85c ) + 800d7d4: f043 0310 orr.w r3, r3, #16 + 800d7d8: 6193 str r3, [r2, #24] + 800d7da: 4b20 ldr r3, [pc, #128] @ (800d85c ) + 800d7dc: 699b ldr r3, [r3, #24] + 800d7de: f003 0310 and.w r3, r3, #16 + 800d7e2: 60fb str r3, [r7, #12] + 800d7e4: 68fb ldr r3, [r7, #12] GPIO_InitStruct.Pin = GPIO_PIN_10; - 800d7ca: f44f 6380 mov.w r3, #1024 @ 0x400 - 800d7ce: 633b str r3, [r7, #48] @ 0x30 + 800d7e6: f44f 6380 mov.w r3, #1024 @ 0x400 + 800d7ea: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800d7d0: 2302 movs r3, #2 - 800d7d2: 637b str r3, [r7, #52] @ 0x34 + 800d7ec: 2302 movs r3, #2 + 800d7ee: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800d7d4: 2303 movs r3, #3 - 800d7d6: 63fb str r3, [r7, #60] @ 0x3c + 800d7f0: 2303 movs r3, #3 + 800d7f2: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); - 800d7d8: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d7dc: 4619 mov r1, r3 - 800d7de: 4819 ldr r0, [pc, #100] @ (800d844 ) - 800d7e0: f001 ff32 bl 800f648 + 800d7f4: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d7f8: 4619 mov r1, r3 + 800d7fa: 4819 ldr r0, [pc, #100] @ (800d860 ) + 800d7fc: f001 ff32 bl 800f664 GPIO_InitStruct.Pin = GPIO_PIN_11; - 800d7e4: f44f 6300 mov.w r3, #2048 @ 0x800 - 800d7e8: 633b str r3, [r7, #48] @ 0x30 + 800d800: f44f 6300 mov.w r3, #2048 @ 0x800 + 800d804: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 800d7ea: 2300 movs r3, #0 - 800d7ec: 637b str r3, [r7, #52] @ 0x34 + 800d806: 2300 movs r3, #0 + 800d808: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800d7ee: 2300 movs r3, #0 - 800d7f0: 63bb str r3, [r7, #56] @ 0x38 + 800d80a: 2300 movs r3, #0 + 800d80c: 63bb str r3, [r7, #56] @ 0x38 HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); - 800d7f2: f107 0330 add.w r3, r7, #48 @ 0x30 - 800d7f6: 4619 mov r1, r3 - 800d7f8: 4812 ldr r0, [pc, #72] @ (800d844 ) - 800d7fa: f001 ff25 bl 800f648 + 800d80e: f107 0330 add.w r3, r7, #48 @ 0x30 + 800d812: 4619 mov r1, r3 + 800d814: 4812 ldr r0, [pc, #72] @ (800d860 ) + 800d816: f001 ff25 bl 800f664 __HAL_AFIO_REMAP_USART3_PARTIAL(); - 800d7fe: 4b16 ldr r3, [pc, #88] @ (800d858 ) - 800d800: 685b ldr r3, [r3, #4] - 800d802: 647b str r3, [r7, #68] @ 0x44 - 800d804: 6c7b ldr r3, [r7, #68] @ 0x44 - 800d806: f023 0330 bic.w r3, r3, #48 @ 0x30 - 800d80a: 647b str r3, [r7, #68] @ 0x44 - 800d80c: 6c7b ldr r3, [r7, #68] @ 0x44 - 800d80e: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 - 800d812: 647b str r3, [r7, #68] @ 0x44 - 800d814: 6c7b ldr r3, [r7, #68] @ 0x44 - 800d816: f043 0310 orr.w r3, r3, #16 - 800d81a: 647b str r3, [r7, #68] @ 0x44 - 800d81c: 4a0e ldr r2, [pc, #56] @ (800d858 ) - 800d81e: 6c7b ldr r3, [r7, #68] @ 0x44 - 800d820: 6053 str r3, [r2, #4] + 800d81a: 4b16 ldr r3, [pc, #88] @ (800d874 ) + 800d81c: 685b ldr r3, [r3, #4] + 800d81e: 647b str r3, [r7, #68] @ 0x44 + 800d820: 6c7b ldr r3, [r7, #68] @ 0x44 + 800d822: f023 0330 bic.w r3, r3, #48 @ 0x30 + 800d826: 647b str r3, [r7, #68] @ 0x44 + 800d828: 6c7b ldr r3, [r7, #68] @ 0x44 + 800d82a: f043 63e0 orr.w r3, r3, #117440512 @ 0x7000000 + 800d82e: 647b str r3, [r7, #68] @ 0x44 + 800d830: 6c7b ldr r3, [r7, #68] @ 0x44 + 800d832: f043 0310 orr.w r3, r3, #16 + 800d836: 647b str r3, [r7, #68] @ 0x44 + 800d838: 4a0e ldr r2, [pc, #56] @ (800d874 ) + 800d83a: 6c7b ldr r3, [r7, #68] @ 0x44 + 800d83c: 6053 str r3, [r2, #4] HAL_NVIC_SetPriority(USART3_IRQn, 0, 0); - 800d822: 2200 movs r2, #0 - 800d824: 2100 movs r1, #0 - 800d826: 2027 movs r0, #39 @ 0x27 - 800d828: f001 fd79 bl 800f31e + 800d83e: 2200 movs r2, #0 + 800d840: 2100 movs r1, #0 + 800d842: 2027 movs r0, #39 @ 0x27 + 800d844: f001 fd79 bl 800f33a HAL_NVIC_EnableIRQ(USART3_IRQn); - 800d82c: 2027 movs r0, #39 @ 0x27 - 800d82e: f001 fd92 bl 800f356 + 800d848: 2027 movs r0, #39 @ 0x27 + 800d84a: f001 fd92 bl 800f372 } - 800d832: bf00 nop - 800d834: 3748 adds r7, #72 @ 0x48 - 800d836: 46bd mov sp, r7 - 800d838: bd80 pop {r7, pc} - 800d83a: bf00 nop - 800d83c: 40005000 .word 0x40005000 - 800d840: 40021000 .word 0x40021000 - 800d844: 40011000 .word 0x40011000 - 800d848: 40011400 .word 0x40011400 - 800d84c: 40013800 .word 0x40013800 - 800d850: 40010800 .word 0x40010800 - 800d854: 40004400 .word 0x40004400 - 800d858: 40010000 .word 0x40010000 - 800d85c: 40004800 .word 0x40004800 + 800d84e: bf00 nop + 800d850: 3748 adds r7, #72 @ 0x48 + 800d852: 46bd mov sp, r7 + 800d854: bd80 pop {r7, pc} + 800d856: bf00 nop + 800d858: 40005000 .word 0x40005000 + 800d85c: 40021000 .word 0x40021000 + 800d860: 40011000 .word 0x40011000 + 800d864: 40011400 .word 0x40011400 + 800d868: 40013800 .word 0x40013800 + 800d86c: 40010800 .word 0x40010800 + 800d870: 40004400 .word 0x40004400 + 800d874: 40010000 .word 0x40010000 + 800d878: 40004800 .word 0x40004800 -0800d860 : +0800d87c : .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: /* Call the clock system initialization function.*/ bl SystemInit - 800d860: f7ff fc64 bl 800d12c + 800d87c: f7ff fc64 bl 800d148 /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 800d864: 480b ldr r0, [pc, #44] @ (800d894 ) + 800d880: 480b ldr r0, [pc, #44] @ (800d8b0 ) ldr r1, =_edata - 800d866: 490c ldr r1, [pc, #48] @ (800d898 ) + 800d882: 490c ldr r1, [pc, #48] @ (800d8b4 ) ldr r2, =_sidata - 800d868: 4a0c ldr r2, [pc, #48] @ (800d89c ) + 800d884: 4a0c ldr r2, [pc, #48] @ (800d8b8 ) movs r3, #0 - 800d86a: 2300 movs r3, #0 + 800d886: 2300 movs r3, #0 b LoopCopyDataInit - 800d86c: e002 b.n 800d874 + 800d888: e002 b.n 800d890 -0800d86e : +0800d88a : CopyDataInit: ldr r4, [r2, r3] - 800d86e: 58d4 ldr r4, [r2, r3] + 800d88a: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 800d870: 50c4 str r4, [r0, r3] + 800d88c: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 800d872: 3304 adds r3, #4 + 800d88e: 3304 adds r3, #4 -0800d874 : +0800d890 : LoopCopyDataInit: adds r4, r0, r3 - 800d874: 18c4 adds r4, r0, r3 + 800d890: 18c4 adds r4, r0, r3 cmp r4, r1 - 800d876: 428c cmp r4, r1 + 800d892: 428c cmp r4, r1 bcc CopyDataInit - 800d878: d3f9 bcc.n 800d86e + 800d894: d3f9 bcc.n 800d88a /* Zero fill the bss segment. */ ldr r2, =_sbss - 800d87a: 4a09 ldr r2, [pc, #36] @ (800d8a0 ) + 800d896: 4a09 ldr r2, [pc, #36] @ (800d8bc ) ldr r4, =_ebss - 800d87c: 4c09 ldr r4, [pc, #36] @ (800d8a4 ) + 800d898: 4c09 ldr r4, [pc, #36] @ (800d8c0 ) movs r3, #0 - 800d87e: 2300 movs r3, #0 + 800d89a: 2300 movs r3, #0 b LoopFillZerobss - 800d880: e001 b.n 800d886 + 800d89c: e001 b.n 800d8a2 -0800d882 : +0800d89e : FillZerobss: str r3, [r2] - 800d882: 6013 str r3, [r2, #0] + 800d89e: 6013 str r3, [r2, #0] adds r2, r2, #4 - 800d884: 3204 adds r2, #4 + 800d8a0: 3204 adds r2, #4 -0800d886 : +0800d8a2 : LoopFillZerobss: cmp r2, r4 - 800d886: 42a2 cmp r2, r4 + 800d8a2: 42a2 cmp r2, r4 bcc FillZerobss - 800d888: d3fb bcc.n 800d882 + 800d8a4: d3fb bcc.n 800d89e /* Call static constructors */ bl __libc_init_array - 800d88a: f005 fc2d bl 80130e8 <__libc_init_array> + 800d8a6: f005 fc2d bl 8013104 <__libc_init_array> /* Call the application's entry point.*/ bl main - 800d88e: f7fc ffc9 bl 800a824
+ 800d8aa: f7fc ffbb bl 800a824
bx lr - 800d892: 4770 bx lr + 800d8ae: 4770 bx lr ldr r0, =_sdata - 800d894: 20000000 .word 0x20000000 + 800d8b0: 20000000 .word 0x20000000 ldr r1, =_edata - 800d898: 200000d4 .word 0x200000d4 + 800d8b4: 200000d4 .word 0x200000d4 ldr r2, =_sidata - 800d89c: 080144c0 .word 0x080144c0 + 800d8b8: 080144dc .word 0x080144dc ldr r2, =_sbss - 800d8a0: 200000d8 .word 0x200000d8 + 800d8bc: 200000d8 .word 0x200000d8 ldr r4, =_ebss - 800d8a4: 200011c8 .word 0x200011c8 + 800d8c0: 200011c8 .word 0x200011c8 -0800d8a8 : +0800d8c4 : * @retval : None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 800d8a8: e7fe b.n 800d8a8 + 800d8c4: e7fe b.n 800d8c4 ... -0800d8ac : +0800d8c8 : * 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) { - 800d8ac: b580 push {r7, lr} - 800d8ae: af00 add r7, sp, #0 + 800d8c8: b580 push {r7, lr} + 800d8ca: af00 add r7, sp, #0 defined(STM32F102x6) || defined(STM32F102xB) || \ defined(STM32F103x6) || defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F103xG) || \ defined(STM32F105xC) || defined(STM32F107xC) /* Prefetch buffer is not available on value line devices */ __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 800d8b0: 4b08 ldr r3, [pc, #32] @ (800d8d4 ) - 800d8b2: 681b ldr r3, [r3, #0] - 800d8b4: 4a07 ldr r2, [pc, #28] @ (800d8d4 ) - 800d8b6: f043 0310 orr.w r3, r3, #16 - 800d8ba: 6013 str r3, [r2, #0] + 800d8cc: 4b08 ldr r3, [pc, #32] @ (800d8f0 ) + 800d8ce: 681b ldr r3, [r3, #0] + 800d8d0: 4a07 ldr r2, [pc, #28] @ (800d8f0 ) + 800d8d2: f043 0310 orr.w r3, r3, #16 + 800d8d6: 6013 str r3, [r2, #0] #endif #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 800d8bc: 2003 movs r0, #3 - 800d8be: f001 fd23 bl 800f308 + 800d8d8: 2003 movs r0, #3 + 800d8da: f001 fd23 bl 800f324 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 800d8c2: 200f movs r0, #15 - 800d8c4: f000 f808 bl 800d8d8 + 800d8de: 200f movs r0, #15 + 800d8e0: f000 f808 bl 800d8f4 /* Init the low level hardware */ HAL_MspInit(); - 800d8c8: f7ff fafe bl 800cec8 + 800d8e4: f7ff fafe bl 800cee4 /* Return function status */ return HAL_OK; - 800d8cc: 2300 movs r3, #0 + 800d8e8: 2300 movs r3, #0 } - 800d8ce: 4618 mov r0, r3 - 800d8d0: bd80 pop {r7, pc} - 800d8d2: bf00 nop - 800d8d4: 40022000 .word 0x40022000 + 800d8ea: 4618 mov r0, r3 + 800d8ec: bd80 pop {r7, pc} + 800d8ee: bf00 nop + 800d8f0: 40022000 .word 0x40022000 -0800d8d8 : +0800d8f4 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 800d8d8: b580 push {r7, lr} - 800d8da: b082 sub sp, #8 - 800d8dc: af00 add r7, sp, #0 - 800d8de: 6078 str r0, [r7, #4] + 800d8f4: b580 push {r7, lr} + 800d8f6: b082 sub sp, #8 + 800d8f8: af00 add r7, sp, #0 + 800d8fa: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 800d8e0: 4b12 ldr r3, [pc, #72] @ (800d92c ) - 800d8e2: 681a ldr r2, [r3, #0] - 800d8e4: 4b12 ldr r3, [pc, #72] @ (800d930 ) - 800d8e6: 781b ldrb r3, [r3, #0] - 800d8e8: 4619 mov r1, r3 - 800d8ea: f44f 737a mov.w r3, #1000 @ 0x3e8 - 800d8ee: fbb3 f3f1 udiv r3, r3, r1 - 800d8f2: fbb2 f3f3 udiv r3, r2, r3 - 800d8f6: 4618 mov r0, r3 - 800d8f8: f001 fd3b bl 800f372 - 800d8fc: 4603 mov r3, r0 - 800d8fe: 2b00 cmp r3, #0 - 800d900: d001 beq.n 800d906 + 800d8fc: 4b12 ldr r3, [pc, #72] @ (800d948 ) + 800d8fe: 681a ldr r2, [r3, #0] + 800d900: 4b12 ldr r3, [pc, #72] @ (800d94c ) + 800d902: 781b ldrb r3, [r3, #0] + 800d904: 4619 mov r1, r3 + 800d906: f44f 737a mov.w r3, #1000 @ 0x3e8 + 800d90a: fbb3 f3f1 udiv r3, r3, r1 + 800d90e: fbb2 f3f3 udiv r3, r2, r3 + 800d912: 4618 mov r0, r3 + 800d914: f001 fd3b bl 800f38e + 800d918: 4603 mov r3, r0 + 800d91a: 2b00 cmp r3, #0 + 800d91c: d001 beq.n 800d922 { return HAL_ERROR; - 800d902: 2301 movs r3, #1 - 800d904: e00e b.n 800d924 + 800d91e: 2301 movs r3, #1 + 800d920: e00e b.n 800d940 } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 800d906: 687b ldr r3, [r7, #4] - 800d908: 2b0f cmp r3, #15 - 800d90a: d80a bhi.n 800d922 + 800d922: 687b ldr r3, [r7, #4] + 800d924: 2b0f cmp r3, #15 + 800d926: d80a bhi.n 800d93e { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 800d90c: 2200 movs r2, #0 - 800d90e: 6879 ldr r1, [r7, #4] - 800d910: f04f 30ff mov.w r0, #4294967295 - 800d914: f001 fd03 bl 800f31e + 800d928: 2200 movs r2, #0 + 800d92a: 6879 ldr r1, [r7, #4] + 800d92c: f04f 30ff mov.w r0, #4294967295 + 800d930: f001 fd03 bl 800f33a uwTickPrio = TickPriority; - 800d918: 4a06 ldr r2, [pc, #24] @ (800d934 ) - 800d91a: 687b ldr r3, [r7, #4] - 800d91c: 6013 str r3, [r2, #0] + 800d934: 4a06 ldr r2, [pc, #24] @ (800d950 ) + 800d936: 687b ldr r3, [r7, #4] + 800d938: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 800d91e: 2300 movs r3, #0 - 800d920: e000 b.n 800d924 + 800d93a: 2300 movs r3, #0 + 800d93c: e000 b.n 800d940 return HAL_ERROR; - 800d922: 2301 movs r3, #1 + 800d93e: 2301 movs r3, #1 } - 800d924: 4618 mov r0, r3 - 800d926: 3708 adds r7, #8 - 800d928: 46bd mov sp, r7 - 800d92a: bd80 pop {r7, pc} - 800d92c: 2000006c .word 0x2000006c - 800d930: 20000074 .word 0x20000074 - 800d934: 20000070 .word 0x20000070 + 800d940: 4618 mov r0, r3 + 800d942: 3708 adds r7, #8 + 800d944: 46bd mov sp, r7 + 800d946: bd80 pop {r7, pc} + 800d948: 2000006c .word 0x2000006c + 800d94c: 20000074 .word 0x20000074 + 800d950: 20000070 .word 0x20000070 -0800d938 : +0800d954 : * @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) { - 800d938: b480 push {r7} - 800d93a: af00 add r7, sp, #0 + 800d954: b480 push {r7} + 800d956: af00 add r7, sp, #0 uwTick += uwTickFreq; - 800d93c: 4b05 ldr r3, [pc, #20] @ (800d954 ) - 800d93e: 781b ldrb r3, [r3, #0] - 800d940: 461a mov r2, r3 - 800d942: 4b05 ldr r3, [pc, #20] @ (800d958 ) - 800d944: 681b ldr r3, [r3, #0] - 800d946: 4413 add r3, r2 - 800d948: 4a03 ldr r2, [pc, #12] @ (800d958 ) - 800d94a: 6013 str r3, [r2, #0] + 800d958: 4b05 ldr r3, [pc, #20] @ (800d970 ) + 800d95a: 781b ldrb r3, [r3, #0] + 800d95c: 461a mov r2, r3 + 800d95e: 4b05 ldr r3, [pc, #20] @ (800d974 ) + 800d960: 681b ldr r3, [r3, #0] + 800d962: 4413 add r3, r2 + 800d964: 4a03 ldr r2, [pc, #12] @ (800d974 ) + 800d966: 6013 str r3, [r2, #0] } - 800d94c: bf00 nop - 800d94e: 46bd mov sp, r7 - 800d950: bc80 pop {r7} - 800d952: 4770 bx lr - 800d954: 20000074 .word 0x20000074 - 800d958: 20001078 .word 0x20001078 + 800d968: bf00 nop + 800d96a: 46bd mov sp, r7 + 800d96c: bc80 pop {r7} + 800d96e: 4770 bx lr + 800d970: 20000074 .word 0x20000074 + 800d974: 20001078 .word 0x20001078 -0800d95c : +0800d978 : * @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) { - 800d95c: b480 push {r7} - 800d95e: af00 add r7, sp, #0 + 800d978: b480 push {r7} + 800d97a: af00 add r7, sp, #0 return uwTick; - 800d960: 4b02 ldr r3, [pc, #8] @ (800d96c ) - 800d962: 681b ldr r3, [r3, #0] + 800d97c: 4b02 ldr r3, [pc, #8] @ (800d988 ) + 800d97e: 681b ldr r3, [r3, #0] } - 800d964: 4618 mov r0, r3 - 800d966: 46bd mov sp, r7 - 800d968: bc80 pop {r7} - 800d96a: 4770 bx lr - 800d96c: 20001078 .word 0x20001078 + 800d980: 4618 mov r0, r3 + 800d982: 46bd mov sp, r7 + 800d984: bc80 pop {r7} + 800d986: 4770 bx lr + 800d988: 20001078 .word 0x20001078 -0800d970 : +0800d98c : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 800d970: b580 push {r7, lr} - 800d972: b084 sub sp, #16 - 800d974: af00 add r7, sp, #0 - 800d976: 6078 str r0, [r7, #4] + 800d98c: b580 push {r7, lr} + 800d98e: b084 sub sp, #16 + 800d990: af00 add r7, sp, #0 + 800d992: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 800d978: f7ff fff0 bl 800d95c - 800d97c: 60b8 str r0, [r7, #8] + 800d994: f7ff fff0 bl 800d978 + 800d998: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 800d97e: 687b ldr r3, [r7, #4] - 800d980: 60fb str r3, [r7, #12] + 800d99a: 687b ldr r3, [r7, #4] + 800d99c: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 800d982: 68fb ldr r3, [r7, #12] - 800d984: f1b3 3fff cmp.w r3, #4294967295 - 800d988: d005 beq.n 800d996 + 800d99e: 68fb ldr r3, [r7, #12] + 800d9a0: f1b3 3fff cmp.w r3, #4294967295 + 800d9a4: d005 beq.n 800d9b2 { wait += (uint32_t)(uwTickFreq); - 800d98a: 4b0a ldr r3, [pc, #40] @ (800d9b4 ) - 800d98c: 781b ldrb r3, [r3, #0] - 800d98e: 461a mov r2, r3 - 800d990: 68fb ldr r3, [r7, #12] - 800d992: 4413 add r3, r2 - 800d994: 60fb str r3, [r7, #12] + 800d9a6: 4b0a ldr r3, [pc, #40] @ (800d9d0 ) + 800d9a8: 781b ldrb r3, [r3, #0] + 800d9aa: 461a mov r2, r3 + 800d9ac: 68fb ldr r3, [r7, #12] + 800d9ae: 4413 add r3, r2 + 800d9b0: 60fb str r3, [r7, #12] } while ((HAL_GetTick() - tickstart) < wait) - 800d996: bf00 nop - 800d998: f7ff ffe0 bl 800d95c - 800d99c: 4602 mov r2, r0 - 800d99e: 68bb ldr r3, [r7, #8] - 800d9a0: 1ad3 subs r3, r2, r3 - 800d9a2: 68fa ldr r2, [r7, #12] - 800d9a4: 429a cmp r2, r3 - 800d9a6: d8f7 bhi.n 800d998 + 800d9b2: bf00 nop + 800d9b4: f7ff ffe0 bl 800d978 + 800d9b8: 4602 mov r2, r0 + 800d9ba: 68bb ldr r3, [r7, #8] + 800d9bc: 1ad3 subs r3, r2, r3 + 800d9be: 68fa ldr r2, [r7, #12] + 800d9c0: 429a cmp r2, r3 + 800d9c2: d8f7 bhi.n 800d9b4 { } } - 800d9a8: bf00 nop - 800d9aa: bf00 nop - 800d9ac: 3710 adds r7, #16 - 800d9ae: 46bd mov sp, r7 - 800d9b0: bd80 pop {r7, pc} - 800d9b2: bf00 nop - 800d9b4: 20000074 .word 0x20000074 + 800d9c4: bf00 nop + 800d9c6: bf00 nop + 800d9c8: 3710 adds r7, #16 + 800d9ca: 46bd mov sp, r7 + 800d9cc: bd80 pop {r7, pc} + 800d9ce: bf00 nop + 800d9d0: 20000074 .word 0x20000074 -0800d9b8 : +0800d9d4 : * of structure "ADC_InitTypeDef". * @param hadc: ADC handle * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_Init(ADC_HandleTypeDef* hadc) { - 800d9b8: b580 push {r7, lr} - 800d9ba: b086 sub sp, #24 - 800d9bc: af00 add r7, sp, #0 - 800d9be: 6078 str r0, [r7, #4] + 800d9d4: b580 push {r7, lr} + 800d9d6: b086 sub sp, #24 + 800d9d8: af00 add r7, sp, #0 + 800d9da: 6078 str r0, [r7, #4] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 800d9c0: 2300 movs r3, #0 - 800d9c2: 75fb strb r3, [r7, #23] + 800d9dc: 2300 movs r3, #0 + 800d9de: 75fb strb r3, [r7, #23] uint32_t tmp_cr1 = 0U; - 800d9c4: 2300 movs r3, #0 - 800d9c6: 613b str r3, [r7, #16] + 800d9e0: 2300 movs r3, #0 + 800d9e2: 613b str r3, [r7, #16] uint32_t tmp_cr2 = 0U; - 800d9c8: 2300 movs r3, #0 - 800d9ca: 60bb str r3, [r7, #8] + 800d9e4: 2300 movs r3, #0 + 800d9e6: 60bb str r3, [r7, #8] uint32_t tmp_sqr1 = 0U; - 800d9cc: 2300 movs r3, #0 - 800d9ce: 60fb str r3, [r7, #12] + 800d9e8: 2300 movs r3, #0 + 800d9ea: 60fb str r3, [r7, #12] /* Check ADC handle */ if(hadc == NULL) - 800d9d0: 687b ldr r3, [r7, #4] - 800d9d2: 2b00 cmp r3, #0 - 800d9d4: d101 bne.n 800d9da + 800d9ec: 687b ldr r3, [r7, #4] + 800d9ee: 2b00 cmp r3, #0 + 800d9f0: d101 bne.n 800d9f6 { return HAL_ERROR; - 800d9d6: 2301 movs r3, #1 - 800d9d8: e0be b.n 800db58 + 800d9f2: 2301 movs r3, #1 + 800d9f4: e0be b.n 800db74 assert_param(IS_ADC_DATA_ALIGN(hadc->Init.DataAlign)); assert_param(IS_ADC_SCAN_MODE(hadc->Init.ScanConvMode)); assert_param(IS_FUNCTIONAL_STATE(hadc->Init.ContinuousConvMode)); assert_param(IS_ADC_EXTTRIG(hadc->Init.ExternalTrigConv)); if(hadc->Init.ScanConvMode != ADC_SCAN_DISABLE) - 800d9da: 687b ldr r3, [r7, #4] - 800d9dc: 689b ldr r3, [r3, #8] - 800d9de: 2b00 cmp r3, #0 + 800d9f6: 687b ldr r3, [r7, #4] + 800d9f8: 689b ldr r3, [r3, #8] + 800d9fa: 2b00 cmp r3, #0 /* Refer to header of this file for more details on clock enabling */ /* procedure. */ /* Actions performed only if ADC is coming from state reset: */ /* - Initialization of ADC MSP */ if (hadc->State == HAL_ADC_STATE_RESET) - 800d9e0: 687b ldr r3, [r7, #4] - 800d9e2: 6a9b ldr r3, [r3, #40] @ 0x28 - 800d9e4: 2b00 cmp r3, #0 - 800d9e6: d109 bne.n 800d9fc + 800d9fc: 687b ldr r3, [r7, #4] + 800d9fe: 6a9b ldr r3, [r3, #40] @ 0x28 + 800da00: 2b00 cmp r3, #0 + 800da02: d109 bne.n 800da18 { /* Initialize ADC error code */ ADC_CLEAR_ERRORCODE(hadc); - 800d9e8: 687b ldr r3, [r7, #4] - 800d9ea: 2200 movs r2, #0 - 800d9ec: 62da str r2, [r3, #44] @ 0x2c + 800da04: 687b ldr r3, [r7, #4] + 800da06: 2200 movs r2, #0 + 800da08: 62da str r2, [r3, #44] @ 0x2c /* Allocate lock resource and initialize it */ hadc->Lock = HAL_UNLOCKED; - 800d9ee: 687b ldr r3, [r7, #4] - 800d9f0: 2200 movs r2, #0 - 800d9f2: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800da0a: 687b ldr r3, [r7, #4] + 800da0c: 2200 movs r2, #0 + 800da0e: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Init the low level hardware */ hadc->MspInitCallback(hadc); #else /* Init the low level hardware */ HAL_ADC_MspInit(hadc); - 800d9f6: 6878 ldr r0, [r7, #4] - 800d9f8: f7fb fd06 bl 8009408 + 800da12: 6878 ldr r0, [r7, #4] + 800da14: f7fb fcf8 bl 8009408 /* Stop potential conversion on going, on regular and injected groups */ /* Disable ADC peripheral */ /* Note: In case of ADC already enabled, precaution to not launch an */ /* unwanted conversion while modifying register CR2 by writing 1 to */ /* bit ADON. */ tmp_hal_status = ADC_ConversionStop_Disable(hadc); - 800d9fc: 6878 ldr r0, [r7, #4] - 800d9fe: f000 fbf1 bl 800e1e4 - 800da02: 4603 mov r3, r0 - 800da04: 75fb strb r3, [r7, #23] + 800da18: 6878 ldr r0, [r7, #4] + 800da1a: f000 fbf1 bl 800e200 + 800da1e: 4603 mov r3, r0 + 800da20: 75fb strb r3, [r7, #23] /* Configuration of ADC parameters if previous preliminary actions are */ /* correctly completed. */ if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL) && - 800da06: 687b ldr r3, [r7, #4] - 800da08: 6a9b ldr r3, [r3, #40] @ 0x28 - 800da0a: f003 0310 and.w r3, r3, #16 - 800da0e: 2b00 cmp r3, #0 - 800da10: f040 8099 bne.w 800db46 - 800da14: 7dfb ldrb r3, [r7, #23] - 800da16: 2b00 cmp r3, #0 - 800da18: f040 8095 bne.w 800db46 + 800da22: 687b ldr r3, [r7, #4] + 800da24: 6a9b ldr r3, [r3, #40] @ 0x28 + 800da26: f003 0310 and.w r3, r3, #16 + 800da2a: 2b00 cmp r3, #0 + 800da2c: f040 8099 bne.w 800db62 + 800da30: 7dfb ldrb r3, [r7, #23] + 800da32: 2b00 cmp r3, #0 + 800da34: f040 8095 bne.w 800db62 (tmp_hal_status == HAL_OK) ) { /* Set ADC state */ ADC_STATE_CLR_SET(hadc->State, - 800da1c: 687b ldr r3, [r7, #4] - 800da1e: 6a9b ldr r3, [r3, #40] @ 0x28 - 800da20: f423 5388 bic.w r3, r3, #4352 @ 0x1100 - 800da24: f023 0302 bic.w r3, r3, #2 - 800da28: f043 0202 orr.w r2, r3, #2 - 800da2c: 687b ldr r3, [r7, #4] - 800da2e: 629a str r2, [r3, #40] @ 0x28 + 800da38: 687b ldr r3, [r7, #4] + 800da3a: 6a9b ldr r3, [r3, #40] @ 0x28 + 800da3c: f423 5388 bic.w r3, r3, #4352 @ 0x1100 + 800da40: f023 0302 bic.w r3, r3, #2 + 800da44: f043 0202 orr.w r2, r3, #2 + 800da48: 687b ldr r3, [r7, #4] + 800da4a: 629a str r2, [r3, #40] @ 0x28 /* - continuous conversion mode */ /* Note: External trigger polarity (ADC_CR2_EXTTRIG) is set into */ /* HAL_ADC_Start_xxx functions because if set in this function, */ /* a conversion on injected group would start a conversion also on */ /* regular group after ADC enabling. */ tmp_cr2 |= (hadc->Init.DataAlign | - 800da30: 687b ldr r3, [r7, #4] - 800da32: 685a ldr r2, [r3, #4] + 800da4c: 687b ldr r3, [r7, #4] + 800da4e: 685a ldr r2, [r3, #4] ADC_CFGR_EXTSEL(hadc, hadc->Init.ExternalTrigConv) | - 800da34: 687b ldr r3, [r7, #4] - 800da36: 69db ldr r3, [r3, #28] + 800da50: 687b ldr r3, [r7, #4] + 800da52: 69db ldr r3, [r3, #28] tmp_cr2 |= (hadc->Init.DataAlign | - 800da38: 431a orrs r2, r3 + 800da54: 431a orrs r2, r3 ADC_CR2_CONTINUOUS((uint32_t)hadc->Init.ContinuousConvMode) ); - 800da3a: 687b ldr r3, [r7, #4] - 800da3c: 7b1b ldrb r3, [r3, #12] - 800da3e: 005b lsls r3, r3, #1 + 800da56: 687b ldr r3, [r7, #4] + 800da58: 7b1b ldrb r3, [r3, #12] + 800da5a: 005b lsls r3, r3, #1 ADC_CFGR_EXTSEL(hadc, hadc->Init.ExternalTrigConv) | - 800da40: 4313 orrs r3, r2 + 800da5c: 4313 orrs r3, r2 tmp_cr2 |= (hadc->Init.DataAlign | - 800da42: 68ba ldr r2, [r7, #8] - 800da44: 4313 orrs r3, r2 - 800da46: 60bb str r3, [r7, #8] + 800da5e: 68ba ldr r2, [r7, #8] + 800da60: 4313 orrs r3, r2 + 800da62: 60bb str r3, [r7, #8] /* Configuration of ADC: */ /* - scan mode */ /* - discontinuous mode disable/enable */ /* - discontinuous mode number of conversions */ tmp_cr1 |= (ADC_CR1_SCAN_SET(hadc->Init.ScanConvMode)); - 800da48: 687b ldr r3, [r7, #4] - 800da4a: 689b ldr r3, [r3, #8] - 800da4c: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 800da50: d003 beq.n 800da5a - 800da52: 687b ldr r3, [r7, #4] - 800da54: 689b ldr r3, [r3, #8] - 800da56: 2b01 cmp r3, #1 - 800da58: d102 bne.n 800da60 - 800da5a: f44f 7380 mov.w r3, #256 @ 0x100 - 800da5e: e000 b.n 800da62 - 800da60: 2300 movs r3, #0 - 800da62: 693a ldr r2, [r7, #16] - 800da64: 4313 orrs r3, r2 - 800da66: 613b str r3, [r7, #16] + 800da64: 687b ldr r3, [r7, #4] + 800da66: 689b ldr r3, [r3, #8] + 800da68: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 800da6c: d003 beq.n 800da76 + 800da6e: 687b ldr r3, [r7, #4] + 800da70: 689b ldr r3, [r3, #8] + 800da72: 2b01 cmp r3, #1 + 800da74: d102 bne.n 800da7c + 800da76: f44f 7380 mov.w r3, #256 @ 0x100 + 800da7a: e000 b.n 800da7e + 800da7c: 2300 movs r3, #0 + 800da7e: 693a ldr r2, [r7, #16] + 800da80: 4313 orrs r3, r2 + 800da82: 613b str r3, [r7, #16] /* Enable discontinuous mode only if continuous mode is disabled */ /* Note: If parameter "Init.ScanConvMode" is set to disable, parameter */ /* discontinuous is set anyway, but will have no effect on ADC HW. */ if (hadc->Init.DiscontinuousConvMode == ENABLE) - 800da68: 687b ldr r3, [r7, #4] - 800da6a: 7d1b ldrb r3, [r3, #20] - 800da6c: 2b01 cmp r3, #1 - 800da6e: d119 bne.n 800daa4 + 800da84: 687b ldr r3, [r7, #4] + 800da86: 7d1b ldrb r3, [r3, #20] + 800da88: 2b01 cmp r3, #1 + 800da8a: d119 bne.n 800dac0 { if (hadc->Init.ContinuousConvMode == DISABLE) - 800da70: 687b ldr r3, [r7, #4] - 800da72: 7b1b ldrb r3, [r3, #12] - 800da74: 2b00 cmp r3, #0 - 800da76: d109 bne.n 800da8c + 800da8c: 687b ldr r3, [r7, #4] + 800da8e: 7b1b ldrb r3, [r3, #12] + 800da90: 2b00 cmp r3, #0 + 800da92: d109 bne.n 800daa8 { /* Enable the selected ADC regular discontinuous mode */ /* Set the number of channels to be converted in discontinuous mode */ SET_BIT(tmp_cr1, ADC_CR1_DISCEN | - 800da78: 687b ldr r3, [r7, #4] - 800da7a: 699b ldr r3, [r3, #24] - 800da7c: 3b01 subs r3, #1 - 800da7e: 035a lsls r2, r3, #13 - 800da80: 693b ldr r3, [r7, #16] - 800da82: 4313 orrs r3, r2 - 800da84: f443 6300 orr.w r3, r3, #2048 @ 0x800 - 800da88: 613b str r3, [r7, #16] - 800da8a: e00b b.n 800daa4 + 800da94: 687b ldr r3, [r7, #4] + 800da96: 699b ldr r3, [r3, #24] + 800da98: 3b01 subs r3, #1 + 800da9a: 035a lsls r2, r3, #13 + 800da9c: 693b ldr r3, [r7, #16] + 800da9e: 4313 orrs r3, r2 + 800daa0: f443 6300 orr.w r3, r3, #2048 @ 0x800 + 800daa4: 613b str r3, [r7, #16] + 800daa6: e00b b.n 800dac0 { /* ADC regular group settings continuous and sequencer discontinuous*/ /* cannot be enabled simultaneously. */ /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_CONFIG); - 800da8c: 687b ldr r3, [r7, #4] - 800da8e: 6a9b ldr r3, [r3, #40] @ 0x28 - 800da90: f043 0220 orr.w r2, r3, #32 - 800da94: 687b ldr r3, [r7, #4] - 800da96: 629a str r2, [r3, #40] @ 0x28 + 800daa8: 687b ldr r3, [r7, #4] + 800daaa: 6a9b ldr r3, [r3, #40] @ 0x28 + 800daac: f043 0220 orr.w r2, r3, #32 + 800dab0: 687b ldr r3, [r7, #4] + 800dab2: 629a str r2, [r3, #40] @ 0x28 /* Set ADC error code to ADC IP internal error */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_INTERNAL); - 800da98: 687b ldr r3, [r7, #4] - 800da9a: 6adb ldr r3, [r3, #44] @ 0x2c - 800da9c: f043 0201 orr.w r2, r3, #1 - 800daa0: 687b ldr r3, [r7, #4] - 800daa2: 62da str r2, [r3, #44] @ 0x2c + 800dab4: 687b ldr r3, [r7, #4] + 800dab6: 6adb ldr r3, [r3, #44] @ 0x2c + 800dab8: f043 0201 orr.w r2, r3, #1 + 800dabc: 687b ldr r3, [r7, #4] + 800dabe: 62da str r2, [r3, #44] @ 0x2c } } /* Update ADC configuration register CR1 with previous settings */ MODIFY_REG(hadc->Instance->CR1, - 800daa4: 687b ldr r3, [r7, #4] - 800daa6: 681b ldr r3, [r3, #0] - 800daa8: 685b ldr r3, [r3, #4] - 800daaa: f423 4169 bic.w r1, r3, #59648 @ 0xe900 - 800daae: 687b ldr r3, [r7, #4] - 800dab0: 681b ldr r3, [r3, #0] - 800dab2: 693a ldr r2, [r7, #16] - 800dab4: 430a orrs r2, r1 - 800dab6: 605a str r2, [r3, #4] + 800dac0: 687b ldr r3, [r7, #4] + 800dac2: 681b ldr r3, [r3, #0] + 800dac4: 685b ldr r3, [r3, #4] + 800dac6: f423 4169 bic.w r1, r3, #59648 @ 0xe900 + 800daca: 687b ldr r3, [r7, #4] + 800dacc: 681b ldr r3, [r3, #0] + 800dace: 693a ldr r2, [r7, #16] + 800dad0: 430a orrs r2, r1 + 800dad2: 605a str r2, [r3, #4] ADC_CR1_DISCEN | ADC_CR1_DISCNUM , tmp_cr1 ); /* Update ADC configuration register CR2 with previous settings */ MODIFY_REG(hadc->Instance->CR2, - 800dab8: 687b ldr r3, [r7, #4] - 800daba: 681b ldr r3, [r3, #0] - 800dabc: 689a ldr r2, [r3, #8] - 800dabe: 4b28 ldr r3, [pc, #160] @ (800db60 ) - 800dac0: 4013 ands r3, r2 - 800dac2: 687a ldr r2, [r7, #4] - 800dac4: 6812 ldr r2, [r2, #0] - 800dac6: 68b9 ldr r1, [r7, #8] - 800dac8: 430b orrs r3, r1 - 800daca: 6093 str r3, [r2, #8] + 800dad4: 687b ldr r3, [r7, #4] + 800dad6: 681b ldr r3, [r3, #0] + 800dad8: 689a ldr r2, [r3, #8] + 800dada: 4b28 ldr r3, [pc, #160] @ (800db7c ) + 800dadc: 4013 ands r3, r2 + 800dade: 687a ldr r2, [r7, #4] + 800dae0: 6812 ldr r2, [r2, #0] + 800dae2: 68b9 ldr r1, [r7, #8] + 800dae4: 430b orrs r3, r1 + 800dae6: 6093 str r3, [r2, #8] /* Note: Scan mode is present by hardware on this device and, if */ /* disabled, discards automatically nb of conversions. Anyway, nb of */ /* conversions is forced to 0x00 for alignment over all STM32 devices. */ /* - if scan mode is enabled, regular channels sequence length is set to */ /* parameter "NbrOfConversion" */ if (ADC_CR1_SCAN_SET(hadc->Init.ScanConvMode) == ADC_SCAN_ENABLE) - 800dacc: 687b ldr r3, [r7, #4] - 800dace: 689b ldr r3, [r3, #8] - 800dad0: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 800dad4: d003 beq.n 800dade - 800dad6: 687b ldr r3, [r7, #4] - 800dad8: 689b ldr r3, [r3, #8] - 800dada: 2b01 cmp r3, #1 - 800dadc: d104 bne.n 800dae8 + 800dae8: 687b ldr r3, [r7, #4] + 800daea: 689b ldr r3, [r3, #8] + 800daec: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 800daf0: d003 beq.n 800dafa + 800daf2: 687b ldr r3, [r7, #4] + 800daf4: 689b ldr r3, [r3, #8] + 800daf6: 2b01 cmp r3, #1 + 800daf8: d104 bne.n 800db04 { tmp_sqr1 = ADC_SQR1_L_SHIFT(hadc->Init.NbrOfConversion); - 800dade: 687b ldr r3, [r7, #4] - 800dae0: 691b ldr r3, [r3, #16] - 800dae2: 3b01 subs r3, #1 - 800dae4: 051b lsls r3, r3, #20 - 800dae6: 60fb str r3, [r7, #12] + 800dafa: 687b ldr r3, [r7, #4] + 800dafc: 691b ldr r3, [r3, #16] + 800dafe: 3b01 subs r3, #1 + 800db00: 051b lsls r3, r3, #20 + 800db02: 60fb str r3, [r7, #12] } MODIFY_REG(hadc->Instance->SQR1, - 800dae8: 687b ldr r3, [r7, #4] - 800daea: 681b ldr r3, [r3, #0] - 800daec: 6adb ldr r3, [r3, #44] @ 0x2c - 800daee: f423 0170 bic.w r1, r3, #15728640 @ 0xf00000 - 800daf2: 687b ldr r3, [r7, #4] - 800daf4: 681b ldr r3, [r3, #0] - 800daf6: 68fa ldr r2, [r7, #12] - 800daf8: 430a orrs r2, r1 - 800dafa: 62da str r2, [r3, #44] @ 0x2c + 800db04: 687b ldr r3, [r7, #4] + 800db06: 681b ldr r3, [r3, #0] + 800db08: 6adb ldr r3, [r3, #44] @ 0x2c + 800db0a: f423 0170 bic.w r1, r3, #15728640 @ 0xf00000 + 800db0e: 687b ldr r3, [r7, #4] + 800db10: 681b ldr r3, [r3, #0] + 800db12: 68fa ldr r2, [r7, #12] + 800db14: 430a orrs r2, r1 + 800db16: 62da str r2, [r3, #44] @ 0x2c /* ensure of no potential problem of ADC core IP clocking. */ /* Check through register CR2 (excluding bits set in other functions: */ /* execution control bits (ADON, JSWSTART, SWSTART), regular group bits */ /* (DMA), injected group bits (JEXTTRIG and JEXTSEL), channel internal */ /* measurement path bit (TSVREFE). */ if (READ_BIT(hadc->Instance->CR2, ~(ADC_CR2_ADON | ADC_CR2_DMA | - 800dafc: 687b ldr r3, [r7, #4] - 800dafe: 681b ldr r3, [r3, #0] - 800db00: 689a ldr r2, [r3, #8] - 800db02: 4b18 ldr r3, [pc, #96] @ (800db64 ) - 800db04: 4013 ands r3, r2 - 800db06: 68ba ldr r2, [r7, #8] - 800db08: 429a cmp r2, r3 - 800db0a: d10b bne.n 800db24 + 800db18: 687b ldr r3, [r7, #4] + 800db1a: 681b ldr r3, [r3, #0] + 800db1c: 689a ldr r2, [r3, #8] + 800db1e: 4b18 ldr r3, [pc, #96] @ (800db80 ) + 800db20: 4013 ands r3, r2 + 800db22: 68ba ldr r2, [r7, #8] + 800db24: 429a cmp r2, r3 + 800db26: d10b bne.n 800db40 ADC_CR2_JEXTTRIG | ADC_CR2_JEXTSEL | ADC_CR2_TSVREFE )) == tmp_cr2) { /* Set ADC error code to none */ ADC_CLEAR_ERRORCODE(hadc); - 800db0c: 687b ldr r3, [r7, #4] - 800db0e: 2200 movs r2, #0 - 800db10: 62da str r2, [r3, #44] @ 0x2c + 800db28: 687b ldr r3, [r7, #4] + 800db2a: 2200 movs r2, #0 + 800db2c: 62da str r2, [r3, #44] @ 0x2c /* Set the ADC state */ ADC_STATE_CLR_SET(hadc->State, - 800db12: 687b ldr r3, [r7, #4] - 800db14: 6a9b ldr r3, [r3, #40] @ 0x28 - 800db16: f023 0303 bic.w r3, r3, #3 - 800db1a: f043 0201 orr.w r2, r3, #1 - 800db1e: 687b ldr r3, [r7, #4] - 800db20: 629a str r2, [r3, #40] @ 0x28 + 800db2e: 687b ldr r3, [r7, #4] + 800db30: 6a9b ldr r3, [r3, #40] @ 0x28 + 800db32: f023 0303 bic.w r3, r3, #3 + 800db36: f043 0201 orr.w r2, r3, #1 + 800db3a: 687b ldr r3, [r7, #4] + 800db3c: 629a str r2, [r3, #40] @ 0x28 if (READ_BIT(hadc->Instance->CR2, ~(ADC_CR2_ADON | ADC_CR2_DMA | - 800db22: e018 b.n 800db56 + 800db3e: e018 b.n 800db72 HAL_ADC_STATE_READY); } else { /* Update ADC state machine to error */ ADC_STATE_CLR_SET(hadc->State, - 800db24: 687b ldr r3, [r7, #4] - 800db26: 6a9b ldr r3, [r3, #40] @ 0x28 - 800db28: f023 0312 bic.w r3, r3, #18 - 800db2c: f043 0210 orr.w r2, r3, #16 - 800db30: 687b ldr r3, [r7, #4] - 800db32: 629a str r2, [r3, #40] @ 0x28 + 800db40: 687b ldr r3, [r7, #4] + 800db42: 6a9b ldr r3, [r3, #40] @ 0x28 + 800db44: f023 0312 bic.w r3, r3, #18 + 800db48: f043 0210 orr.w r2, r3, #16 + 800db4c: 687b ldr r3, [r7, #4] + 800db4e: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_BUSY_INTERNAL, HAL_ADC_STATE_ERROR_INTERNAL); /* Set ADC error code to ADC IP internal error */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_INTERNAL); - 800db34: 687b ldr r3, [r7, #4] - 800db36: 6adb ldr r3, [r3, #44] @ 0x2c - 800db38: f043 0201 orr.w r2, r3, #1 - 800db3c: 687b ldr r3, [r7, #4] - 800db3e: 62da str r2, [r3, #44] @ 0x2c + 800db50: 687b ldr r3, [r7, #4] + 800db52: 6adb ldr r3, [r3, #44] @ 0x2c + 800db54: f043 0201 orr.w r2, r3, #1 + 800db58: 687b ldr r3, [r7, #4] + 800db5a: 62da str r2, [r3, #44] @ 0x2c tmp_hal_status = HAL_ERROR; - 800db40: 2301 movs r3, #1 - 800db42: 75fb strb r3, [r7, #23] + 800db5c: 2301 movs r3, #1 + 800db5e: 75fb strb r3, [r7, #23] if (READ_BIT(hadc->Instance->CR2, ~(ADC_CR2_ADON | ADC_CR2_DMA | - 800db44: e007 b.n 800db56 + 800db60: e007 b.n 800db72 } else { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL); - 800db46: 687b ldr r3, [r7, #4] - 800db48: 6a9b ldr r3, [r3, #40] @ 0x28 - 800db4a: f043 0210 orr.w r2, r3, #16 - 800db4e: 687b ldr r3, [r7, #4] - 800db50: 629a str r2, [r3, #40] @ 0x28 + 800db62: 687b ldr r3, [r7, #4] + 800db64: 6a9b ldr r3, [r3, #40] @ 0x28 + 800db66: f043 0210 orr.w r2, r3, #16 + 800db6a: 687b ldr r3, [r7, #4] + 800db6c: 629a str r2, [r3, #40] @ 0x28 tmp_hal_status = HAL_ERROR; - 800db52: 2301 movs r3, #1 - 800db54: 75fb strb r3, [r7, #23] + 800db6e: 2301 movs r3, #1 + 800db70: 75fb strb r3, [r7, #23] } /* Return function status */ return tmp_hal_status; - 800db56: 7dfb ldrb r3, [r7, #23] + 800db72: 7dfb ldrb r3, [r7, #23] } - 800db58: 4618 mov r0, r3 - 800db5a: 3718 adds r7, #24 - 800db5c: 46bd mov sp, r7 - 800db5e: bd80 pop {r7, pc} - 800db60: ffe1f7fd .word 0xffe1f7fd - 800db64: ff1f0efe .word 0xff1f0efe + 800db74: 4618 mov r0, r3 + 800db76: 3718 adds r7, #24 + 800db78: 46bd mov sp, r7 + 800db7a: bd80 pop {r7, pc} + 800db7c: ffe1f7fd .word 0xffe1f7fd + 800db80: ff1f0efe .word 0xff1f0efe -0800db68 : +0800db84 : * Interruptions enabled in this function: None. * @param hadc: ADC handle * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_Start(ADC_HandleTypeDef* hadc) { - 800db68: b580 push {r7, lr} - 800db6a: b084 sub sp, #16 - 800db6c: af00 add r7, sp, #0 - 800db6e: 6078 str r0, [r7, #4] + 800db84: b580 push {r7, lr} + 800db86: b084 sub sp, #16 + 800db88: af00 add r7, sp, #0 + 800db8a: 6078 str r0, [r7, #4] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 800db70: 2300 movs r3, #0 - 800db72: 73fb strb r3, [r7, #15] + 800db8c: 2300 movs r3, #0 + 800db8e: 73fb strb r3, [r7, #15] /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance)); /* Process locked */ __HAL_LOCK(hadc); - 800db74: 687b ldr r3, [r7, #4] - 800db76: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 - 800db7a: 2b01 cmp r3, #1 - 800db7c: d101 bne.n 800db82 - 800db7e: 2302 movs r3, #2 - 800db80: e098 b.n 800dcb4 - 800db82: 687b ldr r3, [r7, #4] - 800db84: 2201 movs r2, #1 - 800db86: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800db90: 687b ldr r3, [r7, #4] + 800db92: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 + 800db96: 2b01 cmp r3, #1 + 800db98: d101 bne.n 800db9e + 800db9a: 2302 movs r3, #2 + 800db9c: e098 b.n 800dcd0 + 800db9e: 687b ldr r3, [r7, #4] + 800dba0: 2201 movs r2, #1 + 800dba2: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Enable the ADC peripheral */ tmp_hal_status = ADC_Enable(hadc); - 800db8a: 6878 ldr r0, [r7, #4] - 800db8c: f000 fad0 bl 800e130 - 800db90: 4603 mov r3, r0 - 800db92: 73fb strb r3, [r7, #15] + 800dba6: 6878 ldr r0, [r7, #4] + 800dba8: f000 fad0 bl 800e14c + 800dbac: 4603 mov r3, r0 + 800dbae: 73fb strb r3, [r7, #15] /* Start conversion if ADC is effectively enabled */ if (tmp_hal_status == HAL_OK) - 800db94: 7bfb ldrb r3, [r7, #15] - 800db96: 2b00 cmp r3, #0 - 800db98: f040 8087 bne.w 800dcaa + 800dbb0: 7bfb ldrb r3, [r7, #15] + 800dbb2: 2b00 cmp r3, #0 + 800dbb4: f040 8087 bne.w 800dcc6 { /* Set ADC state */ /* - Clear state bitfield related to regular group conversion results */ /* - Set state bitfield related to regular operation */ ADC_STATE_CLR_SET(hadc->State, - 800db9c: 687b ldr r3, [r7, #4] - 800db9e: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dba0: f423 7340 bic.w r3, r3, #768 @ 0x300 - 800dba4: f023 0301 bic.w r3, r3, #1 - 800dba8: f443 7280 orr.w r2, r3, #256 @ 0x100 - 800dbac: 687b ldr r3, [r7, #4] - 800dbae: 629a str r2, [r3, #40] @ 0x28 + 800dbb8: 687b ldr r3, [r7, #4] + 800dbba: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dbbc: f423 7340 bic.w r3, r3, #768 @ 0x300 + 800dbc0: f023 0301 bic.w r3, r3, #1 + 800dbc4: f443 7280 orr.w r2, r3, #256 @ 0x100 + 800dbc8: 687b ldr r3, [r7, #4] + 800dbca: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_REG_BUSY); /* Set group injected state (from auto-injection) and multimode state */ /* for all cases of multimode: independent mode, multimode ADC master */ /* or multimode ADC slave (for devices with several ADCs): */ if (ADC_NONMULTIMODE_OR_MULTIMODEMASTER(hadc)) - 800dbb0: 687b ldr r3, [r7, #4] - 800dbb2: 681b ldr r3, [r3, #0] - 800dbb4: 4a41 ldr r2, [pc, #260] @ (800dcbc ) - 800dbb6: 4293 cmp r3, r2 - 800dbb8: d105 bne.n 800dbc6 - 800dbba: 4b41 ldr r3, [pc, #260] @ (800dcc0 ) - 800dbbc: 685b ldr r3, [r3, #4] - 800dbbe: f403 2370 and.w r3, r3, #983040 @ 0xf0000 - 800dbc2: 2b00 cmp r3, #0 - 800dbc4: d115 bne.n 800dbf2 + 800dbcc: 687b ldr r3, [r7, #4] + 800dbce: 681b ldr r3, [r3, #0] + 800dbd0: 4a41 ldr r2, [pc, #260] @ (800dcd8 ) + 800dbd2: 4293 cmp r3, r2 + 800dbd4: d105 bne.n 800dbe2 + 800dbd6: 4b41 ldr r3, [pc, #260] @ (800dcdc ) + 800dbd8: 685b ldr r3, [r3, #4] + 800dbda: f403 2370 and.w r3, r3, #983040 @ 0xf0000 + 800dbde: 2b00 cmp r3, #0 + 800dbe0: d115 bne.n 800dc0e { /* Set ADC state (ADC independent or master) */ CLEAR_BIT(hadc->State, HAL_ADC_STATE_MULTIMODE_SLAVE); - 800dbc6: 687b ldr r3, [r7, #4] - 800dbc8: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dbca: f423 1280 bic.w r2, r3, #1048576 @ 0x100000 - 800dbce: 687b ldr r3, [r7, #4] - 800dbd0: 629a str r2, [r3, #40] @ 0x28 + 800dbe2: 687b ldr r3, [r7, #4] + 800dbe4: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dbe6: f423 1280 bic.w r2, r3, #1048576 @ 0x100000 + 800dbea: 687b ldr r3, [r7, #4] + 800dbec: 629a str r2, [r3, #40] @ 0x28 /* If conversions on group regular are also triggering group injected, */ /* update ADC state. */ if (READ_BIT(hadc->Instance->CR1, ADC_CR1_JAUTO) != RESET) - 800dbd2: 687b ldr r3, [r7, #4] - 800dbd4: 681b ldr r3, [r3, #0] - 800dbd6: 685b ldr r3, [r3, #4] - 800dbd8: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800dbdc: 2b00 cmp r3, #0 - 800dbde: d026 beq.n 800dc2e + 800dbee: 687b ldr r3, [r7, #4] + 800dbf0: 681b ldr r3, [r3, #0] + 800dbf2: 685b ldr r3, [r3, #4] + 800dbf4: f403 6380 and.w r3, r3, #1024 @ 0x400 + 800dbf8: 2b00 cmp r3, #0 + 800dbfa: d026 beq.n 800dc4a { ADC_STATE_CLR_SET(hadc->State, HAL_ADC_STATE_INJ_EOC, HAL_ADC_STATE_INJ_BUSY); - 800dbe0: 687b ldr r3, [r7, #4] - 800dbe2: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dbe4: f423 5340 bic.w r3, r3, #12288 @ 0x3000 - 800dbe8: f443 5280 orr.w r2, r3, #4096 @ 0x1000 - 800dbec: 687b ldr r3, [r7, #4] - 800dbee: 629a str r2, [r3, #40] @ 0x28 + 800dbfc: 687b ldr r3, [r7, #4] + 800dbfe: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dc00: f423 5340 bic.w r3, r3, #12288 @ 0x3000 + 800dc04: f443 5280 orr.w r2, r3, #4096 @ 0x1000 + 800dc08: 687b ldr r3, [r7, #4] + 800dc0a: 629a str r2, [r3, #40] @ 0x28 if (READ_BIT(hadc->Instance->CR1, ADC_CR1_JAUTO) != RESET) - 800dbf0: e01d b.n 800dc2e + 800dc0c: e01d b.n 800dc4a } } else { /* Set ADC state (ADC slave) */ SET_BIT(hadc->State, HAL_ADC_STATE_MULTIMODE_SLAVE); - 800dbf2: 687b ldr r3, [r7, #4] - 800dbf4: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dbf6: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 - 800dbfa: 687b ldr r3, [r7, #4] - 800dbfc: 629a str r2, [r3, #40] @ 0x28 + 800dc0e: 687b ldr r3, [r7, #4] + 800dc10: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dc12: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 + 800dc16: 687b ldr r3, [r7, #4] + 800dc18: 629a str r2, [r3, #40] @ 0x28 /* If conversions on group regular are also triggering group injected, */ /* update ADC state. */ if (ADC_MULTIMODE_AUTO_INJECTED(hadc)) - 800dbfe: 687b ldr r3, [r7, #4] - 800dc00: 681b ldr r3, [r3, #0] - 800dc02: 4a2f ldr r2, [pc, #188] @ (800dcc0 ) - 800dc04: 4293 cmp r3, r2 - 800dc06: d004 beq.n 800dc12 - 800dc08: 687b ldr r3, [r7, #4] - 800dc0a: 681b ldr r3, [r3, #0] - 800dc0c: 4a2b ldr r2, [pc, #172] @ (800dcbc ) - 800dc0e: 4293 cmp r3, r2 - 800dc10: d10d bne.n 800dc2e - 800dc12: 4b2b ldr r3, [pc, #172] @ (800dcc0 ) - 800dc14: 685b ldr r3, [r3, #4] - 800dc16: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800dc1a: 2b00 cmp r3, #0 - 800dc1c: d007 beq.n 800dc2e + 800dc1a: 687b ldr r3, [r7, #4] + 800dc1c: 681b ldr r3, [r3, #0] + 800dc1e: 4a2f ldr r2, [pc, #188] @ (800dcdc ) + 800dc20: 4293 cmp r3, r2 + 800dc22: d004 beq.n 800dc2e + 800dc24: 687b ldr r3, [r7, #4] + 800dc26: 681b ldr r3, [r3, #0] + 800dc28: 4a2b ldr r2, [pc, #172] @ (800dcd8 ) + 800dc2a: 4293 cmp r3, r2 + 800dc2c: d10d bne.n 800dc4a + 800dc2e: 4b2b ldr r3, [pc, #172] @ (800dcdc ) + 800dc30: 685b ldr r3, [r3, #4] + 800dc32: f403 6380 and.w r3, r3, #1024 @ 0x400 + 800dc36: 2b00 cmp r3, #0 + 800dc38: d007 beq.n 800dc4a { ADC_STATE_CLR_SET(hadc->State, HAL_ADC_STATE_INJ_EOC, HAL_ADC_STATE_INJ_BUSY); - 800dc1e: 687b ldr r3, [r7, #4] - 800dc20: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dc22: f423 5340 bic.w r3, r3, #12288 @ 0x3000 - 800dc26: f443 5280 orr.w r2, r3, #4096 @ 0x1000 - 800dc2a: 687b ldr r3, [r7, #4] - 800dc2c: 629a str r2, [r3, #40] @ 0x28 + 800dc3a: 687b ldr r3, [r7, #4] + 800dc3c: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dc3e: f423 5340 bic.w r3, r3, #12288 @ 0x3000 + 800dc42: f443 5280 orr.w r2, r3, #4096 @ 0x1000 + 800dc46: 687b ldr r3, [r7, #4] + 800dc48: 629a str r2, [r3, #40] @ 0x28 } } /* State machine update: Check if an injected conversion is ongoing */ if (HAL_IS_BIT_SET(hadc->State, HAL_ADC_STATE_INJ_BUSY)) - 800dc2e: 687b ldr r3, [r7, #4] - 800dc30: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dc32: f403 5380 and.w r3, r3, #4096 @ 0x1000 - 800dc36: 2b00 cmp r3, #0 - 800dc38: d006 beq.n 800dc48 + 800dc4a: 687b ldr r3, [r7, #4] + 800dc4c: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dc4e: f403 5380 and.w r3, r3, #4096 @ 0x1000 + 800dc52: 2b00 cmp r3, #0 + 800dc54: d006 beq.n 800dc64 { /* Reset ADC error code fields related to conversions on group regular */ CLEAR_BIT(hadc->ErrorCode, (HAL_ADC_ERROR_OVR | HAL_ADC_ERROR_DMA)); - 800dc3a: 687b ldr r3, [r7, #4] - 800dc3c: 6adb ldr r3, [r3, #44] @ 0x2c - 800dc3e: f023 0206 bic.w r2, r3, #6 - 800dc42: 687b ldr r3, [r7, #4] - 800dc44: 62da str r2, [r3, #44] @ 0x2c - 800dc46: e002 b.n 800dc4e + 800dc56: 687b ldr r3, [r7, #4] + 800dc58: 6adb ldr r3, [r3, #44] @ 0x2c + 800dc5a: f023 0206 bic.w r2, r3, #6 + 800dc5e: 687b ldr r3, [r7, #4] + 800dc60: 62da str r2, [r3, #44] @ 0x2c + 800dc62: e002 b.n 800dc6a } else { /* Reset ADC all error code fields */ ADC_CLEAR_ERRORCODE(hadc); - 800dc48: 687b ldr r3, [r7, #4] - 800dc4a: 2200 movs r2, #0 - 800dc4c: 62da str r2, [r3, #44] @ 0x2c + 800dc64: 687b ldr r3, [r7, #4] + 800dc66: 2200 movs r2, #0 + 800dc68: 62da str r2, [r3, #44] @ 0x2c } /* Process unlocked */ /* Unlock before starting ADC conversions: in case of potential */ /* interruption, to let the process to ADC IRQ Handler. */ __HAL_UNLOCK(hadc); - 800dc4e: 687b ldr r3, [r7, #4] - 800dc50: 2200 movs r2, #0 - 800dc52: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800dc6a: 687b ldr r3, [r7, #4] + 800dc6c: 2200 movs r2, #0 + 800dc6e: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Clear regular group conversion flag */ /* (To ensure of no unknown state from potential previous ADC operations) */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_EOC); - 800dc56: 687b ldr r3, [r7, #4] - 800dc58: 681b ldr r3, [r3, #0] - 800dc5a: f06f 0202 mvn.w r2, #2 - 800dc5e: 601a str r2, [r3, #0] + 800dc72: 687b ldr r3, [r7, #4] + 800dc74: 681b ldr r3, [r3, #0] + 800dc76: f06f 0202 mvn.w r2, #2 + 800dc7a: 601a str r2, [r3, #0] /* - if ADC is slave, ADC is enabled only (conversion is not started). */ /* - if ADC is master, ADC is enabled and conversion is started. */ /* If ADC is master, ADC is enabled and conversion is started. */ /* Note: Alternate trigger for single conversion could be to force an */ /* additional set of bit ADON "hadc->Instance->CR2 |= ADC_CR2_ADON;"*/ if (ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 800dc60: 687b ldr r3, [r7, #4] - 800dc62: 681b ldr r3, [r3, #0] - 800dc64: 689b ldr r3, [r3, #8] - 800dc66: f403 2360 and.w r3, r3, #917504 @ 0xe0000 - 800dc6a: f5b3 2f60 cmp.w r3, #917504 @ 0xe0000 - 800dc6e: d113 bne.n 800dc98 + 800dc7c: 687b ldr r3, [r7, #4] + 800dc7e: 681b ldr r3, [r3, #0] + 800dc80: 689b ldr r3, [r3, #8] + 800dc82: f403 2360 and.w r3, r3, #917504 @ 0xe0000 + 800dc86: f5b3 2f60 cmp.w r3, #917504 @ 0xe0000 + 800dc8a: d113 bne.n 800dcb4 ADC_NONMULTIMODE_OR_MULTIMODEMASTER(hadc) ) - 800dc70: 687b ldr r3, [r7, #4] - 800dc72: 681b ldr r3, [r3, #0] + 800dc8c: 687b ldr r3, [r7, #4] + 800dc8e: 681b ldr r3, [r3, #0] if (ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 800dc74: 4a11 ldr r2, [pc, #68] @ (800dcbc ) - 800dc76: 4293 cmp r3, r2 - 800dc78: d105 bne.n 800dc86 + 800dc90: 4a11 ldr r2, [pc, #68] @ (800dcd8 ) + 800dc92: 4293 cmp r3, r2 + 800dc94: d105 bne.n 800dca2 ADC_NONMULTIMODE_OR_MULTIMODEMASTER(hadc) ) - 800dc7a: 4b11 ldr r3, [pc, #68] @ (800dcc0 ) - 800dc7c: 685b ldr r3, [r3, #4] - 800dc7e: f403 2370 and.w r3, r3, #983040 @ 0xf0000 + 800dc96: 4b11 ldr r3, [pc, #68] @ (800dcdc ) + 800dc98: 685b ldr r3, [r3, #4] + 800dc9a: f403 2370 and.w r3, r3, #983040 @ 0xf0000 if (ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 800dc82: 2b00 cmp r3, #0 - 800dc84: d108 bne.n 800dc98 + 800dc9e: 2b00 cmp r3, #0 + 800dca0: d108 bne.n 800dcb4 { /* Start ADC conversion on regular group with SW start */ SET_BIT(hadc->Instance->CR2, (ADC_CR2_SWSTART | ADC_CR2_EXTTRIG)); - 800dc86: 687b ldr r3, [r7, #4] - 800dc88: 681b ldr r3, [r3, #0] - 800dc8a: 689a ldr r2, [r3, #8] - 800dc8c: 687b ldr r3, [r7, #4] - 800dc8e: 681b ldr r3, [r3, #0] - 800dc90: f442 02a0 orr.w r2, r2, #5242880 @ 0x500000 - 800dc94: 609a str r2, [r3, #8] - 800dc96: e00c b.n 800dcb2 + 800dca2: 687b ldr r3, [r7, #4] + 800dca4: 681b ldr r3, [r3, #0] + 800dca6: 689a ldr r2, [r3, #8] + 800dca8: 687b ldr r3, [r7, #4] + 800dcaa: 681b ldr r3, [r3, #0] + 800dcac: f442 02a0 orr.w r2, r2, #5242880 @ 0x500000 + 800dcb0: 609a str r2, [r3, #8] + 800dcb2: e00c b.n 800dcce } else { /* Start ADC conversion on regular group with external trigger */ SET_BIT(hadc->Instance->CR2, ADC_CR2_EXTTRIG); - 800dc98: 687b ldr r3, [r7, #4] - 800dc9a: 681b ldr r3, [r3, #0] - 800dc9c: 689a ldr r2, [r3, #8] - 800dc9e: 687b ldr r3, [r7, #4] - 800dca0: 681b ldr r3, [r3, #0] - 800dca2: f442 1280 orr.w r2, r2, #1048576 @ 0x100000 - 800dca6: 609a str r2, [r3, #8] - 800dca8: e003 b.n 800dcb2 + 800dcb4: 687b ldr r3, [r7, #4] + 800dcb6: 681b ldr r3, [r3, #0] + 800dcb8: 689a ldr r2, [r3, #8] + 800dcba: 687b ldr r3, [r7, #4] + 800dcbc: 681b ldr r3, [r3, #0] + 800dcbe: f442 1280 orr.w r2, r2, #1048576 @ 0x100000 + 800dcc2: 609a str r2, [r3, #8] + 800dcc4: e003 b.n 800dcce } } else { /* Process unlocked */ __HAL_UNLOCK(hadc); - 800dcaa: 687b ldr r3, [r7, #4] - 800dcac: 2200 movs r2, #0 - 800dcae: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800dcc6: 687b ldr r3, [r7, #4] + 800dcc8: 2200 movs r2, #0 + 800dcca: f883 2024 strb.w r2, [r3, #36] @ 0x24 } /* Return function status */ return tmp_hal_status; - 800dcb2: 7bfb ldrb r3, [r7, #15] + 800dcce: 7bfb ldrb r3, [r7, #15] } - 800dcb4: 4618 mov r0, r3 - 800dcb6: 3710 adds r7, #16 - 800dcb8: 46bd mov sp, r7 - 800dcba: bd80 pop {r7, pc} - 800dcbc: 40012800 .word 0x40012800 - 800dcc0: 40012400 .word 0x40012400 + 800dcd0: 4618 mov r0, r3 + 800dcd2: 3710 adds r7, #16 + 800dcd4: 46bd mov sp, r7 + 800dcd6: bd80 pop {r7, pc} + 800dcd8: 40012800 .word 0x40012800 + 800dcdc: 40012400 .word 0x40012400 -0800dcc4 : +0800dce0 : * should be preliminarily stopped using HAL_ADCEx_InjectedStop function. * @param hadc: ADC handle * @retval HAL status. */ HAL_StatusTypeDef HAL_ADC_Stop(ADC_HandleTypeDef* hadc) { - 800dcc4: b580 push {r7, lr} - 800dcc6: b084 sub sp, #16 - 800dcc8: af00 add r7, sp, #0 - 800dcca: 6078 str r0, [r7, #4] + 800dce0: b580 push {r7, lr} + 800dce2: b084 sub sp, #16 + 800dce4: af00 add r7, sp, #0 + 800dce6: 6078 str r0, [r7, #4] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 800dccc: 2300 movs r3, #0 - 800dcce: 73fb strb r3, [r7, #15] + 800dce8: 2300 movs r3, #0 + 800dcea: 73fb strb r3, [r7, #15] /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance)); /* Process locked */ __HAL_LOCK(hadc); - 800dcd0: 687b ldr r3, [r7, #4] - 800dcd2: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 - 800dcd6: 2b01 cmp r3, #1 - 800dcd8: d101 bne.n 800dcde - 800dcda: 2302 movs r3, #2 - 800dcdc: e01a b.n 800dd14 - 800dcde: 687b ldr r3, [r7, #4] - 800dce0: 2201 movs r2, #1 - 800dce2: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800dcec: 687b ldr r3, [r7, #4] + 800dcee: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 + 800dcf2: 2b01 cmp r3, #1 + 800dcf4: d101 bne.n 800dcfa + 800dcf6: 2302 movs r3, #2 + 800dcf8: e01a b.n 800dd30 + 800dcfa: 687b ldr r3, [r7, #4] + 800dcfc: 2201 movs r2, #1 + 800dcfe: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Stop potential conversion on going, on regular and injected groups */ /* Disable ADC peripheral */ tmp_hal_status = ADC_ConversionStop_Disable(hadc); - 800dce6: 6878 ldr r0, [r7, #4] - 800dce8: f000 fa7c bl 800e1e4 - 800dcec: 4603 mov r3, r0 - 800dcee: 73fb strb r3, [r7, #15] + 800dd02: 6878 ldr r0, [r7, #4] + 800dd04: f000 fa7c bl 800e200 + 800dd08: 4603 mov r3, r0 + 800dd0a: 73fb strb r3, [r7, #15] /* Check if ADC is effectively disabled */ if (tmp_hal_status == HAL_OK) - 800dcf0: 7bfb ldrb r3, [r7, #15] - 800dcf2: 2b00 cmp r3, #0 - 800dcf4: d109 bne.n 800dd0a + 800dd0c: 7bfb ldrb r3, [r7, #15] + 800dd0e: 2b00 cmp r3, #0 + 800dd10: d109 bne.n 800dd26 { /* Set ADC state */ ADC_STATE_CLR_SET(hadc->State, - 800dcf6: 687b ldr r3, [r7, #4] - 800dcf8: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dcfa: f423 5388 bic.w r3, r3, #4352 @ 0x1100 - 800dcfe: f023 0301 bic.w r3, r3, #1 - 800dd02: f043 0201 orr.w r2, r3, #1 - 800dd06: 687b ldr r3, [r7, #4] - 800dd08: 629a str r2, [r3, #40] @ 0x28 + 800dd12: 687b ldr r3, [r7, #4] + 800dd14: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dd16: f423 5388 bic.w r3, r3, #4352 @ 0x1100 + 800dd1a: f023 0301 bic.w r3, r3, #1 + 800dd1e: f043 0201 orr.w r2, r3, #1 + 800dd22: 687b ldr r3, [r7, #4] + 800dd24: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_REG_BUSY | HAL_ADC_STATE_INJ_BUSY, HAL_ADC_STATE_READY); } /* Process unlocked */ __HAL_UNLOCK(hadc); - 800dd0a: 687b ldr r3, [r7, #4] - 800dd0c: 2200 movs r2, #0 - 800dd0e: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800dd26: 687b ldr r3, [r7, #4] + 800dd28: 2200 movs r2, #0 + 800dd2a: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Return function status */ return tmp_hal_status; - 800dd12: 7bfb ldrb r3, [r7, #15] + 800dd2e: 7bfb ldrb r3, [r7, #15] } - 800dd14: 4618 mov r0, r3 - 800dd16: 3710 adds r7, #16 - 800dd18: 46bd mov sp, r7 - 800dd1a: bd80 pop {r7, pc} + 800dd30: 4618 mov r0, r3 + 800dd32: 3710 adds r7, #16 + 800dd34: 46bd mov sp, r7 + 800dd36: bd80 pop {r7, pc} -0800dd1c : +0800dd38 : * @param hadc: ADC handle * @param Timeout: Timeout value in millisecond. * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef* hadc, uint32_t Timeout) { - 800dd1c: b590 push {r4, r7, lr} - 800dd1e: b087 sub sp, #28 - 800dd20: af00 add r7, sp, #0 - 800dd22: 6078 str r0, [r7, #4] - 800dd24: 6039 str r1, [r7, #0] + 800dd38: b590 push {r4, r7, lr} + 800dd3a: b087 sub sp, #28 + 800dd3c: af00 add r7, sp, #0 + 800dd3e: 6078 str r0, [r7, #4] + 800dd40: 6039 str r1, [r7, #0] uint32_t tickstart = 0U; - 800dd26: 2300 movs r3, #0 - 800dd28: 617b str r3, [r7, #20] + 800dd42: 2300 movs r3, #0 + 800dd44: 617b str r3, [r7, #20] /* Variables for polling in case of scan mode enabled and polling for each */ /* conversion. */ __IO uint32_t Conversion_Timeout_CPU_cycles = 0U; - 800dd2a: 2300 movs r3, #0 - 800dd2c: 60fb str r3, [r7, #12] + 800dd46: 2300 movs r3, #0 + 800dd48: 60fb str r3, [r7, #12] uint32_t Conversion_Timeout_CPU_cycles_max = 0U; - 800dd2e: 2300 movs r3, #0 - 800dd30: 613b str r3, [r7, #16] + 800dd4a: 2300 movs r3, #0 + 800dd4c: 613b str r3, [r7, #16] /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance)); /* Get tick count */ tickstart = HAL_GetTick(); - 800dd32: f7ff fe13 bl 800d95c - 800dd36: 6178 str r0, [r7, #20] + 800dd4e: f7ff fe13 bl 800d978 + 800dd52: 6178 str r0, [r7, #20] /* Verification that ADC configuration is compliant with polling for */ /* each conversion: */ /* Particular case is ADC configured in DMA mode */ if (HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_DMA)) - 800dd38: 687b ldr r3, [r7, #4] - 800dd3a: 681b ldr r3, [r3, #0] - 800dd3c: 689b ldr r3, [r3, #8] - 800dd3e: f403 7380 and.w r3, r3, #256 @ 0x100 - 800dd42: 2b00 cmp r3, #0 - 800dd44: d00b beq.n 800dd5e + 800dd54: 687b ldr r3, [r7, #4] + 800dd56: 681b ldr r3, [r3, #0] + 800dd58: 689b ldr r3, [r3, #8] + 800dd5a: f403 7380 and.w r3, r3, #256 @ 0x100 + 800dd5e: 2b00 cmp r3, #0 + 800dd60: d00b beq.n 800dd7a { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_CONFIG); - 800dd46: 687b ldr r3, [r7, #4] - 800dd48: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dd4a: f043 0220 orr.w r2, r3, #32 - 800dd4e: 687b ldr r3, [r7, #4] - 800dd50: 629a str r2, [r3, #40] @ 0x28 + 800dd62: 687b ldr r3, [r7, #4] + 800dd64: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dd66: f043 0220 orr.w r2, r3, #32 + 800dd6a: 687b ldr r3, [r7, #4] + 800dd6c: 629a str r2, [r3, #40] @ 0x28 /* Process unlocked */ __HAL_UNLOCK(hadc); - 800dd52: 687b ldr r3, [r7, #4] - 800dd54: 2200 movs r2, #0 - 800dd56: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800dd6e: 687b ldr r3, [r7, #4] + 800dd70: 2200 movs r2, #0 + 800dd72: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800dd5a: 2301 movs r3, #1 - 800dd5c: e0d3 b.n 800df06 + 800dd76: 2301 movs r3, #1 + 800dd78: e0d3 b.n 800df22 /* from ADC conversion time (selected sampling time + conversion time of */ /* 12.5 ADC clock cycles) and APB2/ADC clock prescalers (depending on */ /* settings, conversion time range can be from 28 to 32256 CPU cycles). */ /* As flag EOC is not set after each conversion, no timeout status can */ /* be set. */ if (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_SCAN) && - 800dd5e: 687b ldr r3, [r7, #4] - 800dd60: 681b ldr r3, [r3, #0] - 800dd62: 685b ldr r3, [r3, #4] - 800dd64: f403 7380 and.w r3, r3, #256 @ 0x100 - 800dd68: 2b00 cmp r3, #0 - 800dd6a: d131 bne.n 800ddd0 + 800dd7a: 687b ldr r3, [r7, #4] + 800dd7c: 681b ldr r3, [r3, #0] + 800dd7e: 685b ldr r3, [r3, #4] + 800dd80: f403 7380 and.w r3, r3, #256 @ 0x100 + 800dd84: 2b00 cmp r3, #0 + 800dd86: d131 bne.n 800ddec HAL_IS_BIT_CLR(hadc->Instance->SQR1, ADC_SQR1_L) ) - 800dd6c: 687b ldr r3, [r7, #4] - 800dd6e: 681b ldr r3, [r3, #0] - 800dd70: 6adb ldr r3, [r3, #44] @ 0x2c - 800dd72: f403 0370 and.w r3, r3, #15728640 @ 0xf00000 + 800dd88: 687b ldr r3, [r7, #4] + 800dd8a: 681b ldr r3, [r3, #0] + 800dd8c: 6adb ldr r3, [r3, #44] @ 0x2c + 800dd8e: f403 0370 and.w r3, r3, #15728640 @ 0xf00000 if (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_SCAN) && - 800dd76: 2b00 cmp r3, #0 - 800dd78: d12a bne.n 800ddd0 + 800dd92: 2b00 cmp r3, #0 + 800dd94: d12a bne.n 800ddec { /* Wait until End of Conversion flag is raised */ while(HAL_IS_BIT_CLR(hadc->Instance->SR, ADC_FLAG_EOC)) - 800dd7a: e021 b.n 800ddc0 + 800dd96: e021 b.n 800dddc { /* Check if timeout is disabled (set to infinite wait) */ if(Timeout != HAL_MAX_DELAY) - 800dd7c: 683b ldr r3, [r7, #0] - 800dd7e: f1b3 3fff cmp.w r3, #4294967295 - 800dd82: d01d beq.n 800ddc0 + 800dd98: 683b ldr r3, [r7, #0] + 800dd9a: f1b3 3fff cmp.w r3, #4294967295 + 800dd9e: d01d beq.n 800dddc { if((Timeout == 0U) || ((HAL_GetTick() - tickstart ) > Timeout)) - 800dd84: 683b ldr r3, [r7, #0] - 800dd86: 2b00 cmp r3, #0 - 800dd88: d007 beq.n 800dd9a - 800dd8a: f7ff fde7 bl 800d95c - 800dd8e: 4602 mov r2, r0 - 800dd90: 697b ldr r3, [r7, #20] - 800dd92: 1ad3 subs r3, r2, r3 - 800dd94: 683a ldr r2, [r7, #0] - 800dd96: 429a cmp r2, r3 - 800dd98: d212 bcs.n 800ddc0 + 800dda0: 683b ldr r3, [r7, #0] + 800dda2: 2b00 cmp r3, #0 + 800dda4: d007 beq.n 800ddb6 + 800dda6: f7ff fde7 bl 800d978 + 800ddaa: 4602 mov r2, r0 + 800ddac: 697b ldr r3, [r7, #20] + 800ddae: 1ad3 subs r3, r2, r3 + 800ddb0: 683a ldr r2, [r7, #0] + 800ddb2: 429a cmp r2, r3 + 800ddb4: d212 bcs.n 800dddc { /* New check to avoid false timeout detection in case of preemption */ if(HAL_IS_BIT_CLR(hadc->Instance->SR, ADC_FLAG_EOC)) - 800dd9a: 687b ldr r3, [r7, #4] - 800dd9c: 681b ldr r3, [r3, #0] - 800dd9e: 681b ldr r3, [r3, #0] - 800dda0: f003 0302 and.w r3, r3, #2 - 800dda4: 2b00 cmp r3, #0 - 800dda6: d10b bne.n 800ddc0 + 800ddb6: 687b ldr r3, [r7, #4] + 800ddb8: 681b ldr r3, [r3, #0] + 800ddba: 681b ldr r3, [r3, #0] + 800ddbc: f003 0302 and.w r3, r3, #2 + 800ddc0: 2b00 cmp r3, #0 + 800ddc2: d10b bne.n 800dddc { /* Update ADC state machine to timeout */ SET_BIT(hadc->State, HAL_ADC_STATE_TIMEOUT); - 800dda8: 687b ldr r3, [r7, #4] - 800ddaa: 6a9b ldr r3, [r3, #40] @ 0x28 - 800ddac: f043 0204 orr.w r2, r3, #4 - 800ddb0: 687b ldr r3, [r7, #4] - 800ddb2: 629a str r2, [r3, #40] @ 0x28 + 800ddc4: 687b ldr r3, [r7, #4] + 800ddc6: 6a9b ldr r3, [r3, #40] @ 0x28 + 800ddc8: f043 0204 orr.w r2, r3, #4 + 800ddcc: 687b ldr r3, [r7, #4] + 800ddce: 629a str r2, [r3, #40] @ 0x28 /* Process unlocked */ __HAL_UNLOCK(hadc); - 800ddb4: 687b ldr r3, [r7, #4] - 800ddb6: 2200 movs r2, #0 - 800ddb8: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800ddd0: 687b ldr r3, [r7, #4] + 800ddd2: 2200 movs r2, #0 + 800ddd4: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_TIMEOUT; - 800ddbc: 2303 movs r3, #3 - 800ddbe: e0a2 b.n 800df06 + 800ddd8: 2303 movs r3, #3 + 800ddda: e0a2 b.n 800df22 while(HAL_IS_BIT_CLR(hadc->Instance->SR, ADC_FLAG_EOC)) - 800ddc0: 687b ldr r3, [r7, #4] - 800ddc2: 681b ldr r3, [r3, #0] - 800ddc4: 681b ldr r3, [r3, #0] - 800ddc6: f003 0302 and.w r3, r3, #2 - 800ddca: 2b00 cmp r3, #0 - 800ddcc: d0d6 beq.n 800dd7c + 800dddc: 687b ldr r3, [r7, #4] + 800ddde: 681b ldr r3, [r3, #0] + 800dde0: 681b ldr r3, [r3, #0] + 800dde2: f003 0302 and.w r3, r3, #2 + 800dde6: 2b00 cmp r3, #0 + 800dde8: d0d6 beq.n 800dd98 if (HAL_IS_BIT_CLR(hadc->Instance->CR1, ADC_CR1_SCAN) && - 800ddce: e070 b.n 800deb2 + 800ddea: e070 b.n 800dece /* Replace polling by wait for maximum conversion time */ /* - Computation of CPU clock cycles corresponding to ADC clock cycles */ /* and ADC maximum conversion cycles on all channels. */ /* - Wait for the expected ADC clock cycles delay */ Conversion_Timeout_CPU_cycles_max = ((SystemCoreClock / HAL_RCCEx_GetPeriphCLKFreq(RCC_PERIPHCLK_ADC)) - 800ddd0: 4b4f ldr r3, [pc, #316] @ (800df10 ) - 800ddd2: 681c ldr r4, [r3, #0] - 800ddd4: 2002 movs r0, #2 - 800ddd6: f002 fd05 bl 80107e4 - 800ddda: 4603 mov r3, r0 - 800dddc: fbb4 f2f3 udiv r2, r4, r3 + 800ddec: 4b4f ldr r3, [pc, #316] @ (800df2c ) + 800ddee: 681c ldr r4, [r3, #0] + 800ddf0: 2002 movs r0, #2 + 800ddf2: f002 fd05 bl 8010800 + 800ddf6: 4603 mov r3, r0 + 800ddf8: fbb4 f2f3 udiv r2, r4, r3 * ADC_CONVCYCLES_MAX_RANGE(hadc) ); - 800dde0: 687b ldr r3, [r7, #4] - 800dde2: 681b ldr r3, [r3, #0] - 800dde4: 6919 ldr r1, [r3, #16] - 800dde6: 4b4b ldr r3, [pc, #300] @ (800df14 ) - 800dde8: 400b ands r3, r1 - 800ddea: 2b00 cmp r3, #0 - 800ddec: d118 bne.n 800de20 - 800ddee: 687b ldr r3, [r7, #4] - 800ddf0: 681b ldr r3, [r3, #0] - 800ddf2: 68d9 ldr r1, [r3, #12] - 800ddf4: 4b48 ldr r3, [pc, #288] @ (800df18 ) - 800ddf6: 400b ands r3, r1 - 800ddf8: 2b00 cmp r3, #0 - 800ddfa: d111 bne.n 800de20 800ddfc: 687b ldr r3, [r7, #4] 800ddfe: 681b ldr r3, [r3, #0] 800de00: 6919 ldr r1, [r3, #16] - 800de02: 4b46 ldr r3, [pc, #280] @ (800df1c ) + 800de02: 4b4b ldr r3, [pc, #300] @ (800df30 ) 800de04: 400b ands r3, r1 800de06: 2b00 cmp r3, #0 - 800de08: d108 bne.n 800de1c + 800de08: d118 bne.n 800de3c 800de0a: 687b ldr r3, [r7, #4] 800de0c: 681b ldr r3, [r3, #0] 800de0e: 68d9 ldr r1, [r3, #12] - 800de10: 4b43 ldr r3, [pc, #268] @ (800df20 ) + 800de10: 4b48 ldr r3, [pc, #288] @ (800df34 ) 800de12: 400b ands r3, r1 800de14: 2b00 cmp r3, #0 - 800de16: d101 bne.n 800de1c - 800de18: 2314 movs r3, #20 - 800de1a: e020 b.n 800de5e - 800de1c: 2329 movs r3, #41 @ 0x29 - 800de1e: e01e b.n 800de5e - 800de20: 687b ldr r3, [r7, #4] - 800de22: 681b ldr r3, [r3, #0] - 800de24: 6919 ldr r1, [r3, #16] - 800de26: 4b3d ldr r3, [pc, #244] @ (800df1c ) - 800de28: 400b ands r3, r1 - 800de2a: 2b00 cmp r3, #0 - 800de2c: d106 bne.n 800de3c - 800de2e: 687b ldr r3, [r7, #4] - 800de30: 681b ldr r3, [r3, #0] - 800de32: 68d9 ldr r1, [r3, #12] - 800de34: 4b3a ldr r3, [pc, #232] @ (800df20 ) - 800de36: 400b ands r3, r1 - 800de38: 2b00 cmp r3, #0 - 800de3a: d00d beq.n 800de58 + 800de16: d111 bne.n 800de3c + 800de18: 687b ldr r3, [r7, #4] + 800de1a: 681b ldr r3, [r3, #0] + 800de1c: 6919 ldr r1, [r3, #16] + 800de1e: 4b46 ldr r3, [pc, #280] @ (800df38 ) + 800de20: 400b ands r3, r1 + 800de22: 2b00 cmp r3, #0 + 800de24: d108 bne.n 800de38 + 800de26: 687b ldr r3, [r7, #4] + 800de28: 681b ldr r3, [r3, #0] + 800de2a: 68d9 ldr r1, [r3, #12] + 800de2c: 4b43 ldr r3, [pc, #268] @ (800df3c ) + 800de2e: 400b ands r3, r1 + 800de30: 2b00 cmp r3, #0 + 800de32: d101 bne.n 800de38 + 800de34: 2314 movs r3, #20 + 800de36: e020 b.n 800de7a + 800de38: 2329 movs r3, #41 @ 0x29 + 800de3a: e01e b.n 800de7a 800de3c: 687b ldr r3, [r7, #4] 800de3e: 681b ldr r3, [r3, #0] 800de40: 6919 ldr r1, [r3, #16] - 800de42: 4b38 ldr r3, [pc, #224] @ (800df24 ) + 800de42: 4b3d ldr r3, [pc, #244] @ (800df38 ) 800de44: 400b ands r3, r1 800de46: 2b00 cmp r3, #0 - 800de48: d108 bne.n 800de5c + 800de48: d106 bne.n 800de58 800de4a: 687b ldr r3, [r7, #4] 800de4c: 681b ldr r3, [r3, #0] 800de4e: 68d9 ldr r1, [r3, #12] - 800de50: 4b34 ldr r3, [pc, #208] @ (800df24 ) + 800de50: 4b3a ldr r3, [pc, #232] @ (800df3c ) 800de52: 400b ands r3, r1 800de54: 2b00 cmp r3, #0 - 800de56: d101 bne.n 800de5c - 800de58: 2354 movs r3, #84 @ 0x54 - 800de5a: e000 b.n 800de5e - 800de5c: 23fc movs r3, #252 @ 0xfc + 800de56: d00d beq.n 800de74 + 800de58: 687b ldr r3, [r7, #4] + 800de5a: 681b ldr r3, [r3, #0] + 800de5c: 6919 ldr r1, [r3, #16] + 800de5e: 4b38 ldr r3, [pc, #224] @ (800df40 ) + 800de60: 400b ands r3, r1 + 800de62: 2b00 cmp r3, #0 + 800de64: d108 bne.n 800de78 + 800de66: 687b ldr r3, [r7, #4] + 800de68: 681b ldr r3, [r3, #0] + 800de6a: 68d9 ldr r1, [r3, #12] + 800de6c: 4b34 ldr r3, [pc, #208] @ (800df40 ) + 800de6e: 400b ands r3, r1 + 800de70: 2b00 cmp r3, #0 + 800de72: d101 bne.n 800de78 + 800de74: 2354 movs r3, #84 @ 0x54 + 800de76: e000 b.n 800de7a + 800de78: 23fc movs r3, #252 @ 0xfc Conversion_Timeout_CPU_cycles_max = ((SystemCoreClock - 800de5e: fb02 f303 mul.w r3, r2, r3 - 800de62: 613b str r3, [r7, #16] + 800de7a: fb02 f303 mul.w r3, r2, r3 + 800de7e: 613b str r3, [r7, #16] while(Conversion_Timeout_CPU_cycles < Conversion_Timeout_CPU_cycles_max) - 800de64: e021 b.n 800deaa + 800de80: e021 b.n 800dec6 { /* Check if timeout is disabled (set to infinite wait) */ if(Timeout != HAL_MAX_DELAY) - 800de66: 683b ldr r3, [r7, #0] - 800de68: f1b3 3fff cmp.w r3, #4294967295 - 800de6c: d01a beq.n 800dea4 + 800de82: 683b ldr r3, [r7, #0] + 800de84: f1b3 3fff cmp.w r3, #4294967295 + 800de88: d01a beq.n 800dec0 { if((Timeout == 0U) || ((HAL_GetTick() - tickstart) > Timeout)) - 800de6e: 683b ldr r3, [r7, #0] - 800de70: 2b00 cmp r3, #0 - 800de72: d007 beq.n 800de84 - 800de74: f7ff fd72 bl 800d95c - 800de78: 4602 mov r2, r0 - 800de7a: 697b ldr r3, [r7, #20] - 800de7c: 1ad3 subs r3, r2, r3 - 800de7e: 683a ldr r2, [r7, #0] - 800de80: 429a cmp r2, r3 - 800de82: d20f bcs.n 800dea4 + 800de8a: 683b ldr r3, [r7, #0] + 800de8c: 2b00 cmp r3, #0 + 800de8e: d007 beq.n 800dea0 + 800de90: f7ff fd72 bl 800d978 + 800de94: 4602 mov r2, r0 + 800de96: 697b ldr r3, [r7, #20] + 800de98: 1ad3 subs r3, r2, r3 + 800de9a: 683a ldr r2, [r7, #0] + 800de9c: 429a cmp r2, r3 + 800de9e: d20f bcs.n 800dec0 { /* New check to avoid false timeout detection in case of preemption */ if(Conversion_Timeout_CPU_cycles < Conversion_Timeout_CPU_cycles_max) - 800de84: 68fb ldr r3, [r7, #12] - 800de86: 693a ldr r2, [r7, #16] - 800de88: 429a cmp r2, r3 - 800de8a: d90b bls.n 800dea4 + 800dea0: 68fb ldr r3, [r7, #12] + 800dea2: 693a ldr r2, [r7, #16] + 800dea4: 429a cmp r2, r3 + 800dea6: d90b bls.n 800dec0 { /* Update ADC state machine to timeout */ SET_BIT(hadc->State, HAL_ADC_STATE_TIMEOUT); - 800de8c: 687b ldr r3, [r7, #4] - 800de8e: 6a9b ldr r3, [r3, #40] @ 0x28 - 800de90: f043 0204 orr.w r2, r3, #4 - 800de94: 687b ldr r3, [r7, #4] - 800de96: 629a str r2, [r3, #40] @ 0x28 + 800dea8: 687b ldr r3, [r7, #4] + 800deaa: 6a9b ldr r3, [r3, #40] @ 0x28 + 800deac: f043 0204 orr.w r2, r3, #4 + 800deb0: 687b ldr r3, [r7, #4] + 800deb2: 629a str r2, [r3, #40] @ 0x28 /* Process unlocked */ __HAL_UNLOCK(hadc); - 800de98: 687b ldr r3, [r7, #4] - 800de9a: 2200 movs r2, #0 - 800de9c: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800deb4: 687b ldr r3, [r7, #4] + 800deb6: 2200 movs r2, #0 + 800deb8: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_TIMEOUT; - 800dea0: 2303 movs r3, #3 - 800dea2: e030 b.n 800df06 + 800debc: 2303 movs r3, #3 + 800debe: e030 b.n 800df22 } } } Conversion_Timeout_CPU_cycles ++; - 800dea4: 68fb ldr r3, [r7, #12] - 800dea6: 3301 adds r3, #1 - 800dea8: 60fb str r3, [r7, #12] + 800dec0: 68fb ldr r3, [r7, #12] + 800dec2: 3301 adds r3, #1 + 800dec4: 60fb str r3, [r7, #12] while(Conversion_Timeout_CPU_cycles < Conversion_Timeout_CPU_cycles_max) - 800deaa: 68fb ldr r3, [r7, #12] - 800deac: 693a ldr r2, [r7, #16] - 800deae: 429a cmp r2, r3 - 800deb0: d8d9 bhi.n 800de66 + 800dec6: 68fb ldr r3, [r7, #12] + 800dec8: 693a ldr r2, [r7, #16] + 800deca: 429a cmp r2, r3 + 800decc: d8d9 bhi.n 800de82 } } /* Clear regular group conversion flag */ __HAL_ADC_CLEAR_FLAG(hadc, ADC_FLAG_STRT | ADC_FLAG_EOC); - 800deb2: 687b ldr r3, [r7, #4] - 800deb4: 681b ldr r3, [r3, #0] - 800deb6: f06f 0212 mvn.w r2, #18 - 800deba: 601a str r2, [r3, #0] + 800dece: 687b ldr r3, [r7, #4] + 800ded0: 681b ldr r3, [r3, #0] + 800ded2: f06f 0212 mvn.w r2, #18 + 800ded6: 601a str r2, [r3, #0] /* Update ADC state machine */ SET_BIT(hadc->State, HAL_ADC_STATE_REG_EOC); - 800debc: 687b ldr r3, [r7, #4] - 800debe: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dec0: f443 7200 orr.w r2, r3, #512 @ 0x200 - 800dec4: 687b ldr r3, [r7, #4] - 800dec6: 629a str r2, [r3, #40] @ 0x28 + 800ded8: 687b ldr r3, [r7, #4] + 800deda: 6a9b ldr r3, [r3, #40] @ 0x28 + 800dedc: f443 7200 orr.w r2, r3, #512 @ 0x200 + 800dee0: 687b ldr r3, [r7, #4] + 800dee2: 629a str r2, [r3, #40] @ 0x28 /* Determine whether any further conversion upcoming on group regular */ /* by external trigger, continuous mode or scan sequence on going. */ /* Note: On STM32F1 devices, in case of sequencer enabled */ /* (several ranks selected), end of conversion flag is raised */ /* at the end of the sequence. */ if(ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 800dec8: 687b ldr r3, [r7, #4] - 800deca: 681b ldr r3, [r3, #0] - 800decc: 689b ldr r3, [r3, #8] - 800dece: f403 2360 and.w r3, r3, #917504 @ 0xe0000 - 800ded2: f5b3 2f60 cmp.w r3, #917504 @ 0xe0000 - 800ded6: d115 bne.n 800df04 + 800dee4: 687b ldr r3, [r7, #4] + 800dee6: 681b ldr r3, [r3, #0] + 800dee8: 689b ldr r3, [r3, #8] + 800deea: f403 2360 and.w r3, r3, #917504 @ 0xe0000 + 800deee: f5b3 2f60 cmp.w r3, #917504 @ 0xe0000 + 800def2: d115 bne.n 800df20 (hadc->Init.ContinuousConvMode == DISABLE) ) - 800ded8: 687b ldr r3, [r7, #4] - 800deda: 7b1b ldrb r3, [r3, #12] + 800def4: 687b ldr r3, [r7, #4] + 800def6: 7b1b ldrb r3, [r3, #12] if(ADC_IS_SOFTWARE_START_REGULAR(hadc) && - 800dedc: 2b00 cmp r3, #0 - 800dede: d111 bne.n 800df04 + 800def8: 2b00 cmp r3, #0 + 800defa: d111 bne.n 800df20 { /* Set ADC state */ CLEAR_BIT(hadc->State, HAL_ADC_STATE_REG_BUSY); - 800dee0: 687b ldr r3, [r7, #4] - 800dee2: 6a9b ldr r3, [r3, #40] @ 0x28 - 800dee4: f423 7280 bic.w r2, r3, #256 @ 0x100 - 800dee8: 687b ldr r3, [r7, #4] - 800deea: 629a str r2, [r3, #40] @ 0x28 + 800defc: 687b ldr r3, [r7, #4] + 800defe: 6a9b ldr r3, [r3, #40] @ 0x28 + 800df00: f423 7280 bic.w r2, r3, #256 @ 0x100 + 800df04: 687b ldr r3, [r7, #4] + 800df06: 629a str r2, [r3, #40] @ 0x28 if (HAL_IS_BIT_CLR(hadc->State, HAL_ADC_STATE_INJ_BUSY)) - 800deec: 687b ldr r3, [r7, #4] - 800deee: 6a9b ldr r3, [r3, #40] @ 0x28 - 800def0: f403 5380 and.w r3, r3, #4096 @ 0x1000 - 800def4: 2b00 cmp r3, #0 - 800def6: d105 bne.n 800df04 + 800df08: 687b ldr r3, [r7, #4] + 800df0a: 6a9b ldr r3, [r3, #40] @ 0x28 + 800df0c: f403 5380 and.w r3, r3, #4096 @ 0x1000 + 800df10: 2b00 cmp r3, #0 + 800df12: d105 bne.n 800df20 { SET_BIT(hadc->State, HAL_ADC_STATE_READY); - 800def8: 687b ldr r3, [r7, #4] - 800defa: 6a9b ldr r3, [r3, #40] @ 0x28 - 800defc: f043 0201 orr.w r2, r3, #1 - 800df00: 687b ldr r3, [r7, #4] - 800df02: 629a str r2, [r3, #40] @ 0x28 + 800df14: 687b ldr r3, [r7, #4] + 800df16: 6a9b ldr r3, [r3, #40] @ 0x28 + 800df18: f043 0201 orr.w r2, r3, #1 + 800df1c: 687b ldr r3, [r7, #4] + 800df1e: 629a str r2, [r3, #40] @ 0x28 } } /* Return ADC state */ return HAL_OK; - 800df04: 2300 movs r3, #0 + 800df20: 2300 movs r3, #0 } - 800df06: 4618 mov r0, r3 - 800df08: 371c adds r7, #28 - 800df0a: 46bd mov sp, r7 - 800df0c: bd90 pop {r4, r7, pc} - 800df0e: bf00 nop - 800df10: 2000006c .word 0x2000006c - 800df14: 24924924 .word 0x24924924 - 800df18: 00924924 .word 0x00924924 - 800df1c: 12492492 .word 0x12492492 - 800df20: 00492492 .word 0x00492492 - 800df24: 00249249 .word 0x00249249 + 800df22: 4618 mov r0, r3 + 800df24: 371c adds r7, #28 + 800df26: 46bd mov sp, r7 + 800df28: bd90 pop {r4, r7, pc} + 800df2a: bf00 nop + 800df2c: 2000006c .word 0x2000006c + 800df30: 24924924 .word 0x24924924 + 800df34: 00924924 .word 0x00924924 + 800df38: 12492492 .word 0x12492492 + 800df3c: 00492492 .word 0x00492492 + 800df40: 00249249 .word 0x00249249 -0800df28 : +0800df44 : * or @ref __HAL_ADC_CLEAR_FLAG(&hadc, ADC_FLAG_EOS). * @param hadc: ADC handle * @retval ADC group regular conversion data */ uint32_t HAL_ADC_GetValue(ADC_HandleTypeDef* hadc) { - 800df28: b480 push {r7} - 800df2a: b083 sub sp, #12 - 800df2c: af00 add r7, sp, #0 - 800df2e: 6078 str r0, [r7, #4] + 800df44: b480 push {r7} + 800df46: b083 sub sp, #12 + 800df48: af00 add r7, sp, #0 + 800df4a: 6078 str r0, [r7, #4] /* Note: EOC flag is not cleared here by software because automatically */ /* cleared by hardware when reading register DR. */ /* Return ADC converted value */ return hadc->Instance->DR; - 800df30: 687b ldr r3, [r7, #4] - 800df32: 681b ldr r3, [r3, #0] - 800df34: 6cdb ldr r3, [r3, #76] @ 0x4c + 800df4c: 687b ldr r3, [r7, #4] + 800df4e: 681b ldr r3, [r3, #0] + 800df50: 6cdb ldr r3, [r3, #76] @ 0x4c } - 800df36: 4618 mov r0, r3 - 800df38: 370c adds r7, #12 - 800df3a: 46bd mov sp, r7 - 800df3c: bc80 pop {r7} - 800df3e: 4770 bx lr + 800df52: 4618 mov r0, r3 + 800df54: 370c adds r7, #12 + 800df56: 46bd mov sp, r7 + 800df58: bc80 pop {r7} + 800df5a: 4770 bx lr -0800df40 : +0800df5c : * @param hadc: ADC handle * @param sConfig: Structure of ADC channel for regular group. * @retval HAL status */ HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef* hadc, ADC_ChannelConfTypeDef* sConfig) { - 800df40: b480 push {r7} - 800df42: b085 sub sp, #20 - 800df44: af00 add r7, sp, #0 - 800df46: 6078 str r0, [r7, #4] - 800df48: 6039 str r1, [r7, #0] + 800df5c: b480 push {r7} + 800df5e: b085 sub sp, #20 + 800df60: af00 add r7, sp, #0 + 800df62: 6078 str r0, [r7, #4] + 800df64: 6039 str r1, [r7, #0] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 800df4a: 2300 movs r3, #0 - 800df4c: 73fb strb r3, [r7, #15] + 800df66: 2300 movs r3, #0 + 800df68: 73fb strb r3, [r7, #15] __IO uint32_t wait_loop_index = 0U; - 800df4e: 2300 movs r3, #0 - 800df50: 60bb str r3, [r7, #8] + 800df6a: 2300 movs r3, #0 + 800df6c: 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); - 800df52: 687b ldr r3, [r7, #4] - 800df54: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 - 800df58: 2b01 cmp r3, #1 - 800df5a: d101 bne.n 800df60 - 800df5c: 2302 movs r3, #2 - 800df5e: e0dc b.n 800e11a - 800df60: 687b ldr r3, [r7, #4] - 800df62: 2201 movs r2, #1 - 800df64: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800df6e: 687b ldr r3, [r7, #4] + 800df70: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 + 800df74: 2b01 cmp r3, #1 + 800df76: d101 bne.n 800df7c + 800df78: 2302 movs r3, #2 + 800df7a: e0dc b.n 800e136 + 800df7c: 687b ldr r3, [r7, #4] + 800df7e: 2201 movs r2, #1 + 800df80: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Regular sequence configuration */ /* For Rank 1 to 6 */ if (sConfig->Rank < 7U) - 800df68: 683b ldr r3, [r7, #0] - 800df6a: 685b ldr r3, [r3, #4] - 800df6c: 2b06 cmp r3, #6 - 800df6e: d81c bhi.n 800dfaa + 800df84: 683b ldr r3, [r7, #0] + 800df86: 685b ldr r3, [r3, #4] + 800df88: 2b06 cmp r3, #6 + 800df8a: d81c bhi.n 800dfc6 { MODIFY_REG(hadc->Instance->SQR3 , - 800df70: 687b ldr r3, [r7, #4] - 800df72: 681b ldr r3, [r3, #0] - 800df74: 6b59 ldr r1, [r3, #52] @ 0x34 - 800df76: 683b ldr r3, [r7, #0] - 800df78: 685a ldr r2, [r3, #4] - 800df7a: 4613 mov r3, r2 - 800df7c: 009b lsls r3, r3, #2 - 800df7e: 4413 add r3, r2 - 800df80: 3b05 subs r3, #5 - 800df82: 221f movs r2, #31 - 800df84: fa02 f303 lsl.w r3, r2, r3 - 800df88: 43db mvns r3, r3 - 800df8a: 4019 ands r1, r3 - 800df8c: 683b ldr r3, [r7, #0] - 800df8e: 6818 ldr r0, [r3, #0] - 800df90: 683b ldr r3, [r7, #0] - 800df92: 685a ldr r2, [r3, #4] - 800df94: 4613 mov r3, r2 - 800df96: 009b lsls r3, r3, #2 - 800df98: 4413 add r3, r2 - 800df9a: 3b05 subs r3, #5 - 800df9c: fa00 f203 lsl.w r2, r0, r3 - 800dfa0: 687b ldr r3, [r7, #4] - 800dfa2: 681b ldr r3, [r3, #0] - 800dfa4: 430a orrs r2, r1 - 800dfa6: 635a str r2, [r3, #52] @ 0x34 - 800dfa8: e03c b.n 800e024 + 800df8c: 687b ldr r3, [r7, #4] + 800df8e: 681b ldr r3, [r3, #0] + 800df90: 6b59 ldr r1, [r3, #52] @ 0x34 + 800df92: 683b ldr r3, [r7, #0] + 800df94: 685a ldr r2, [r3, #4] + 800df96: 4613 mov r3, r2 + 800df98: 009b lsls r3, r3, #2 + 800df9a: 4413 add r3, r2 + 800df9c: 3b05 subs r3, #5 + 800df9e: 221f movs r2, #31 + 800dfa0: fa02 f303 lsl.w r3, r2, r3 + 800dfa4: 43db mvns r3, r3 + 800dfa6: 4019 ands r1, r3 + 800dfa8: 683b ldr r3, [r7, #0] + 800dfaa: 6818 ldr r0, [r3, #0] + 800dfac: 683b ldr r3, [r7, #0] + 800dfae: 685a ldr r2, [r3, #4] + 800dfb0: 4613 mov r3, r2 + 800dfb2: 009b lsls r3, r3, #2 + 800dfb4: 4413 add r3, r2 + 800dfb6: 3b05 subs r3, #5 + 800dfb8: fa00 f203 lsl.w r2, r0, r3 + 800dfbc: 687b ldr r3, [r7, #4] + 800dfbe: 681b ldr r3, [r3, #0] + 800dfc0: 430a orrs r2, r1 + 800dfc2: 635a str r2, [r3, #52] @ 0x34 + 800dfc4: e03c b.n 800e040 ADC_SQR3_RK(ADC_SQR3_SQ1, sConfig->Rank) , ADC_SQR3_RK(sConfig->Channel, sConfig->Rank) ); } /* For Rank 7 to 12 */ else if (sConfig->Rank < 13U) - 800dfaa: 683b ldr r3, [r7, #0] - 800dfac: 685b ldr r3, [r3, #4] - 800dfae: 2b0c cmp r3, #12 - 800dfb0: d81c bhi.n 800dfec + 800dfc6: 683b ldr r3, [r7, #0] + 800dfc8: 685b ldr r3, [r3, #4] + 800dfca: 2b0c cmp r3, #12 + 800dfcc: d81c bhi.n 800e008 { MODIFY_REG(hadc->Instance->SQR2 , - 800dfb2: 687b ldr r3, [r7, #4] - 800dfb4: 681b ldr r3, [r3, #0] - 800dfb6: 6b19 ldr r1, [r3, #48] @ 0x30 - 800dfb8: 683b ldr r3, [r7, #0] - 800dfba: 685a ldr r2, [r3, #4] - 800dfbc: 4613 mov r3, r2 - 800dfbe: 009b lsls r3, r3, #2 - 800dfc0: 4413 add r3, r2 - 800dfc2: 3b23 subs r3, #35 @ 0x23 - 800dfc4: 221f movs r2, #31 - 800dfc6: fa02 f303 lsl.w r3, r2, r3 - 800dfca: 43db mvns r3, r3 - 800dfcc: 4019 ands r1, r3 - 800dfce: 683b ldr r3, [r7, #0] - 800dfd0: 6818 ldr r0, [r3, #0] - 800dfd2: 683b ldr r3, [r7, #0] - 800dfd4: 685a ldr r2, [r3, #4] - 800dfd6: 4613 mov r3, r2 - 800dfd8: 009b lsls r3, r3, #2 - 800dfda: 4413 add r3, r2 - 800dfdc: 3b23 subs r3, #35 @ 0x23 - 800dfde: fa00 f203 lsl.w r2, r0, r3 - 800dfe2: 687b ldr r3, [r7, #4] - 800dfe4: 681b ldr r3, [r3, #0] - 800dfe6: 430a orrs r2, r1 - 800dfe8: 631a str r2, [r3, #48] @ 0x30 - 800dfea: e01b b.n 800e024 + 800dfce: 687b ldr r3, [r7, #4] + 800dfd0: 681b ldr r3, [r3, #0] + 800dfd2: 6b19 ldr r1, [r3, #48] @ 0x30 + 800dfd4: 683b ldr r3, [r7, #0] + 800dfd6: 685a ldr r2, [r3, #4] + 800dfd8: 4613 mov r3, r2 + 800dfda: 009b lsls r3, r3, #2 + 800dfdc: 4413 add r3, r2 + 800dfde: 3b23 subs r3, #35 @ 0x23 + 800dfe0: 221f movs r2, #31 + 800dfe2: fa02 f303 lsl.w r3, r2, r3 + 800dfe6: 43db mvns r3, r3 + 800dfe8: 4019 ands r1, r3 + 800dfea: 683b ldr r3, [r7, #0] + 800dfec: 6818 ldr r0, [r3, #0] + 800dfee: 683b ldr r3, [r7, #0] + 800dff0: 685a ldr r2, [r3, #4] + 800dff2: 4613 mov r3, r2 + 800dff4: 009b lsls r3, r3, #2 + 800dff6: 4413 add r3, r2 + 800dff8: 3b23 subs r3, #35 @ 0x23 + 800dffa: fa00 f203 lsl.w r2, r0, r3 + 800dffe: 687b ldr r3, [r7, #4] + 800e000: 681b ldr r3, [r3, #0] + 800e002: 430a orrs r2, r1 + 800e004: 631a str r2, [r3, #48] @ 0x30 + 800e006: e01b b.n 800e040 ADC_SQR2_RK(sConfig->Channel, sConfig->Rank) ); } /* For Rank 13 to 16 */ else { MODIFY_REG(hadc->Instance->SQR1 , - 800dfec: 687b ldr r3, [r7, #4] - 800dfee: 681b ldr r3, [r3, #0] - 800dff0: 6ad9 ldr r1, [r3, #44] @ 0x2c - 800dff2: 683b ldr r3, [r7, #0] - 800dff4: 685a ldr r2, [r3, #4] - 800dff6: 4613 mov r3, r2 - 800dff8: 009b lsls r3, r3, #2 - 800dffa: 4413 add r3, r2 - 800dffc: 3b41 subs r3, #65 @ 0x41 - 800dffe: 221f movs r2, #31 - 800e000: fa02 f303 lsl.w r3, r2, r3 - 800e004: 43db mvns r3, r3 - 800e006: 4019 ands r1, r3 - 800e008: 683b ldr r3, [r7, #0] - 800e00a: 6818 ldr r0, [r3, #0] - 800e00c: 683b ldr r3, [r7, #0] - 800e00e: 685a ldr r2, [r3, #4] - 800e010: 4613 mov r3, r2 - 800e012: 009b lsls r3, r3, #2 - 800e014: 4413 add r3, r2 - 800e016: 3b41 subs r3, #65 @ 0x41 - 800e018: fa00 f203 lsl.w r2, r0, r3 - 800e01c: 687b ldr r3, [r7, #4] - 800e01e: 681b ldr r3, [r3, #0] - 800e020: 430a orrs r2, r1 - 800e022: 62da str r2, [r3, #44] @ 0x2c + 800e008: 687b ldr r3, [r7, #4] + 800e00a: 681b ldr r3, [r3, #0] + 800e00c: 6ad9 ldr r1, [r3, #44] @ 0x2c + 800e00e: 683b ldr r3, [r7, #0] + 800e010: 685a ldr r2, [r3, #4] + 800e012: 4613 mov r3, r2 + 800e014: 009b lsls r3, r3, #2 + 800e016: 4413 add r3, r2 + 800e018: 3b41 subs r3, #65 @ 0x41 + 800e01a: 221f movs r2, #31 + 800e01c: fa02 f303 lsl.w r3, r2, r3 + 800e020: 43db mvns r3, r3 + 800e022: 4019 ands r1, r3 + 800e024: 683b ldr r3, [r7, #0] + 800e026: 6818 ldr r0, [r3, #0] + 800e028: 683b ldr r3, [r7, #0] + 800e02a: 685a ldr r2, [r3, #4] + 800e02c: 4613 mov r3, r2 + 800e02e: 009b lsls r3, r3, #2 + 800e030: 4413 add r3, r2 + 800e032: 3b41 subs r3, #65 @ 0x41 + 800e034: fa00 f203 lsl.w r2, r0, r3 + 800e038: 687b ldr r3, [r7, #4] + 800e03a: 681b ldr r3, [r3, #0] + 800e03c: 430a orrs r2, r1 + 800e03e: 62da str r2, [r3, #44] @ 0x2c } /* Channel sampling time configuration */ /* For channels 10 to 17 */ if (sConfig->Channel >= ADC_CHANNEL_10) - 800e024: 683b ldr r3, [r7, #0] - 800e026: 681b ldr r3, [r3, #0] - 800e028: 2b09 cmp r3, #9 - 800e02a: d91c bls.n 800e066 + 800e040: 683b ldr r3, [r7, #0] + 800e042: 681b ldr r3, [r3, #0] + 800e044: 2b09 cmp r3, #9 + 800e046: d91c bls.n 800e082 { MODIFY_REG(hadc->Instance->SMPR1 , - 800e02c: 687b ldr r3, [r7, #4] - 800e02e: 681b ldr r3, [r3, #0] - 800e030: 68d9 ldr r1, [r3, #12] - 800e032: 683b ldr r3, [r7, #0] - 800e034: 681a ldr r2, [r3, #0] - 800e036: 4613 mov r3, r2 - 800e038: 005b lsls r3, r3, #1 - 800e03a: 4413 add r3, r2 - 800e03c: 3b1e subs r3, #30 - 800e03e: 2207 movs r2, #7 - 800e040: fa02 f303 lsl.w r3, r2, r3 - 800e044: 43db mvns r3, r3 - 800e046: 4019 ands r1, r3 - 800e048: 683b ldr r3, [r7, #0] - 800e04a: 6898 ldr r0, [r3, #8] - 800e04c: 683b ldr r3, [r7, #0] - 800e04e: 681a ldr r2, [r3, #0] - 800e050: 4613 mov r3, r2 - 800e052: 005b lsls r3, r3, #1 - 800e054: 4413 add r3, r2 - 800e056: 3b1e subs r3, #30 - 800e058: fa00 f203 lsl.w r2, r0, r3 - 800e05c: 687b ldr r3, [r7, #4] - 800e05e: 681b ldr r3, [r3, #0] - 800e060: 430a orrs r2, r1 - 800e062: 60da str r2, [r3, #12] - 800e064: e019 b.n 800e09a + 800e048: 687b ldr r3, [r7, #4] + 800e04a: 681b ldr r3, [r3, #0] + 800e04c: 68d9 ldr r1, [r3, #12] + 800e04e: 683b ldr r3, [r7, #0] + 800e050: 681a ldr r2, [r3, #0] + 800e052: 4613 mov r3, r2 + 800e054: 005b lsls r3, r3, #1 + 800e056: 4413 add r3, r2 + 800e058: 3b1e subs r3, #30 + 800e05a: 2207 movs r2, #7 + 800e05c: fa02 f303 lsl.w r3, r2, r3 + 800e060: 43db mvns r3, r3 + 800e062: 4019 ands r1, r3 + 800e064: 683b ldr r3, [r7, #0] + 800e066: 6898 ldr r0, [r3, #8] + 800e068: 683b ldr r3, [r7, #0] + 800e06a: 681a ldr r2, [r3, #0] + 800e06c: 4613 mov r3, r2 + 800e06e: 005b lsls r3, r3, #1 + 800e070: 4413 add r3, r2 + 800e072: 3b1e subs r3, #30 + 800e074: fa00 f203 lsl.w r2, r0, r3 + 800e078: 687b ldr r3, [r7, #4] + 800e07a: 681b ldr r3, [r3, #0] + 800e07c: 430a orrs r2, r1 + 800e07e: 60da str r2, [r3, #12] + 800e080: e019 b.n 800e0b6 ADC_SMPR1(ADC_SMPR1_SMP10, sConfig->Channel) , ADC_SMPR1(sConfig->SamplingTime, sConfig->Channel) ); } else /* For channels 0 to 9 */ { MODIFY_REG(hadc->Instance->SMPR2 , - 800e066: 687b ldr r3, [r7, #4] - 800e068: 681b ldr r3, [r3, #0] - 800e06a: 6919 ldr r1, [r3, #16] - 800e06c: 683b ldr r3, [r7, #0] - 800e06e: 681a ldr r2, [r3, #0] - 800e070: 4613 mov r3, r2 - 800e072: 005b lsls r3, r3, #1 - 800e074: 4413 add r3, r2 - 800e076: 2207 movs r2, #7 - 800e078: fa02 f303 lsl.w r3, r2, r3 - 800e07c: 43db mvns r3, r3 - 800e07e: 4019 ands r1, r3 - 800e080: 683b ldr r3, [r7, #0] - 800e082: 6898 ldr r0, [r3, #8] - 800e084: 683b ldr r3, [r7, #0] - 800e086: 681a ldr r2, [r3, #0] - 800e088: 4613 mov r3, r2 - 800e08a: 005b lsls r3, r3, #1 - 800e08c: 4413 add r3, r2 - 800e08e: fa00 f203 lsl.w r2, r0, r3 - 800e092: 687b ldr r3, [r7, #4] - 800e094: 681b ldr r3, [r3, #0] - 800e096: 430a orrs r2, r1 - 800e098: 611a str r2, [r3, #16] + 800e082: 687b ldr r3, [r7, #4] + 800e084: 681b ldr r3, [r3, #0] + 800e086: 6919 ldr r1, [r3, #16] + 800e088: 683b ldr r3, [r7, #0] + 800e08a: 681a ldr r2, [r3, #0] + 800e08c: 4613 mov r3, r2 + 800e08e: 005b lsls r3, r3, #1 + 800e090: 4413 add r3, r2 + 800e092: 2207 movs r2, #7 + 800e094: fa02 f303 lsl.w r3, r2, r3 + 800e098: 43db mvns r3, r3 + 800e09a: 4019 ands r1, r3 + 800e09c: 683b ldr r3, [r7, #0] + 800e09e: 6898 ldr r0, [r3, #8] + 800e0a0: 683b ldr r3, [r7, #0] + 800e0a2: 681a ldr r2, [r3, #0] + 800e0a4: 4613 mov r3, r2 + 800e0a6: 005b lsls r3, r3, #1 + 800e0a8: 4413 add r3, r2 + 800e0aa: fa00 f203 lsl.w r2, r0, r3 + 800e0ae: 687b ldr r3, [r7, #4] + 800e0b0: 681b ldr r3, [r3, #0] + 800e0b2: 430a orrs r2, r1 + 800e0b4: 611a str r2, [r3, #16] ADC_SMPR2(sConfig->SamplingTime, sConfig->Channel) ); } /* If ADC1 Channel_16 or Channel_17 is selected, enable Temperature sensor */ /* and VREFINT measurement path. */ if ((sConfig->Channel == ADC_CHANNEL_TEMPSENSOR) || - 800e09a: 683b ldr r3, [r7, #0] - 800e09c: 681b ldr r3, [r3, #0] - 800e09e: 2b10 cmp r3, #16 - 800e0a0: d003 beq.n 800e0aa + 800e0b6: 683b ldr r3, [r7, #0] + 800e0b8: 681b ldr r3, [r3, #0] + 800e0ba: 2b10 cmp r3, #16 + 800e0bc: d003 beq.n 800e0c6 (sConfig->Channel == ADC_CHANNEL_VREFINT) ) - 800e0a2: 683b ldr r3, [r7, #0] - 800e0a4: 681b ldr r3, [r3, #0] + 800e0be: 683b ldr r3, [r7, #0] + 800e0c0: 681b ldr r3, [r3, #0] if ((sConfig->Channel == ADC_CHANNEL_TEMPSENSOR) || - 800e0a6: 2b11 cmp r3, #17 - 800e0a8: d132 bne.n 800e110 + 800e0c2: 2b11 cmp r3, #17 + 800e0c4: d132 bne.n 800e12c { /* For STM32F1 devices with several ADC: Only ADC1 can access internal */ /* measurement channels (VrefInt/TempSensor). If these channels are */ /* intended to be set on other ADC instances, an error is reported. */ if (hadc->Instance == ADC1) - 800e0aa: 687b ldr r3, [r7, #4] - 800e0ac: 681b ldr r3, [r3, #0] - 800e0ae: 4a1d ldr r2, [pc, #116] @ (800e124 ) - 800e0b0: 4293 cmp r3, r2 - 800e0b2: d125 bne.n 800e100 + 800e0c6: 687b ldr r3, [r7, #4] + 800e0c8: 681b ldr r3, [r3, #0] + 800e0ca: 4a1d ldr r2, [pc, #116] @ (800e140 ) + 800e0cc: 4293 cmp r3, r2 + 800e0ce: d125 bne.n 800e11c { if (READ_BIT(hadc->Instance->CR2, ADC_CR2_TSVREFE) == RESET) - 800e0b4: 687b ldr r3, [r7, #4] - 800e0b6: 681b ldr r3, [r3, #0] - 800e0b8: 689b ldr r3, [r3, #8] - 800e0ba: f403 0300 and.w r3, r3, #8388608 @ 0x800000 - 800e0be: 2b00 cmp r3, #0 - 800e0c0: d126 bne.n 800e110 + 800e0d0: 687b ldr r3, [r7, #4] + 800e0d2: 681b ldr r3, [r3, #0] + 800e0d4: 689b ldr r3, [r3, #8] + 800e0d6: f403 0300 and.w r3, r3, #8388608 @ 0x800000 + 800e0da: 2b00 cmp r3, #0 + 800e0dc: d126 bne.n 800e12c { SET_BIT(hadc->Instance->CR2, ADC_CR2_TSVREFE); - 800e0c2: 687b ldr r3, [r7, #4] - 800e0c4: 681b ldr r3, [r3, #0] - 800e0c6: 689a ldr r2, [r3, #8] - 800e0c8: 687b ldr r3, [r7, #4] - 800e0ca: 681b ldr r3, [r3, #0] - 800e0cc: f442 0200 orr.w r2, r2, #8388608 @ 0x800000 - 800e0d0: 609a str r2, [r3, #8] + 800e0de: 687b ldr r3, [r7, #4] + 800e0e0: 681b ldr r3, [r3, #0] + 800e0e2: 689a ldr r2, [r3, #8] + 800e0e4: 687b ldr r3, [r7, #4] + 800e0e6: 681b ldr r3, [r3, #0] + 800e0e8: f442 0200 orr.w r2, r2, #8388608 @ 0x800000 + 800e0ec: 609a str r2, [r3, #8] if (sConfig->Channel == ADC_CHANNEL_TEMPSENSOR) - 800e0d2: 683b ldr r3, [r7, #0] - 800e0d4: 681b ldr r3, [r3, #0] - 800e0d6: 2b10 cmp r3, #16 - 800e0d8: d11a bne.n 800e110 + 800e0ee: 683b ldr r3, [r7, #0] + 800e0f0: 681b ldr r3, [r3, #0] + 800e0f2: 2b10 cmp r3, #16 + 800e0f4: d11a bne.n 800e12c { /* Delay for temperature sensor stabilization time */ /* Compute number of CPU cycles to wait for */ wait_loop_index = (ADC_TEMPSENSOR_DELAY_US * (SystemCoreClock / 1000000U)); - 800e0da: 4b13 ldr r3, [pc, #76] @ (800e128 ) - 800e0dc: 681b ldr r3, [r3, #0] - 800e0de: 4a13 ldr r2, [pc, #76] @ (800e12c ) - 800e0e0: fba2 2303 umull r2, r3, r2, r3 - 800e0e4: 0c9a lsrs r2, r3, #18 - 800e0e6: 4613 mov r3, r2 - 800e0e8: 009b lsls r3, r3, #2 - 800e0ea: 4413 add r3, r2 - 800e0ec: 005b lsls r3, r3, #1 - 800e0ee: 60bb str r3, [r7, #8] + 800e0f6: 4b13 ldr r3, [pc, #76] @ (800e144 ) + 800e0f8: 681b ldr r3, [r3, #0] + 800e0fa: 4a13 ldr r2, [pc, #76] @ (800e148 ) + 800e0fc: fba2 2303 umull r2, r3, r2, r3 + 800e100: 0c9a lsrs r2, r3, #18 + 800e102: 4613 mov r3, r2 + 800e104: 009b lsls r3, r3, #2 + 800e106: 4413 add r3, r2 + 800e108: 005b lsls r3, r3, #1 + 800e10a: 60bb str r3, [r7, #8] while(wait_loop_index != 0U) - 800e0f0: e002 b.n 800e0f8 + 800e10c: e002 b.n 800e114 { wait_loop_index--; - 800e0f2: 68bb ldr r3, [r7, #8] - 800e0f4: 3b01 subs r3, #1 - 800e0f6: 60bb str r3, [r7, #8] + 800e10e: 68bb ldr r3, [r7, #8] + 800e110: 3b01 subs r3, #1 + 800e112: 60bb str r3, [r7, #8] while(wait_loop_index != 0U) - 800e0f8: 68bb ldr r3, [r7, #8] - 800e0fa: 2b00 cmp r3, #0 - 800e0fc: d1f9 bne.n 800e0f2 - 800e0fe: e007 b.n 800e110 + 800e114: 68bb ldr r3, [r7, #8] + 800e116: 2b00 cmp r3, #0 + 800e118: d1f9 bne.n 800e10e + 800e11a: e007 b.n 800e12c } } else { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_CONFIG); - 800e100: 687b ldr r3, [r7, #4] - 800e102: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e104: f043 0220 orr.w r2, r3, #32 - 800e108: 687b ldr r3, [r7, #4] - 800e10a: 629a str r2, [r3, #40] @ 0x28 + 800e11c: 687b ldr r3, [r7, #4] + 800e11e: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e120: f043 0220 orr.w r2, r3, #32 + 800e124: 687b ldr r3, [r7, #4] + 800e126: 629a str r2, [r3, #40] @ 0x28 tmp_hal_status = HAL_ERROR; - 800e10c: 2301 movs r3, #1 - 800e10e: 73fb strb r3, [r7, #15] + 800e128: 2301 movs r3, #1 + 800e12a: 73fb strb r3, [r7, #15] } } /* Process unlocked */ __HAL_UNLOCK(hadc); - 800e110: 687b ldr r3, [r7, #4] - 800e112: 2200 movs r2, #0 - 800e114: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e12c: 687b ldr r3, [r7, #4] + 800e12e: 2200 movs r2, #0 + 800e130: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Return function status */ return tmp_hal_status; - 800e118: 7bfb ldrb r3, [r7, #15] + 800e134: 7bfb ldrb r3, [r7, #15] } - 800e11a: 4618 mov r0, r3 - 800e11c: 3714 adds r7, #20 - 800e11e: 46bd mov sp, r7 - 800e120: bc80 pop {r7} - 800e122: 4770 bx lr - 800e124: 40012400 .word 0x40012400 - 800e128: 2000006c .word 0x2000006c - 800e12c: 431bde83 .word 0x431bde83 + 800e136: 4618 mov r0, r3 + 800e138: 3714 adds r7, #20 + 800e13a: 46bd mov sp, r7 + 800e13c: bc80 pop {r7} + 800e13e: 4770 bx lr + 800e140: 40012400 .word 0x40012400 + 800e144: 2000006c .word 0x2000006c + 800e148: 431bde83 .word 0x431bde83 -0800e130 : +0800e14c : * and voltage regulator must be enabled (done into HAL_ADC_Init()). * @param hadc: ADC handle * @retval HAL status. */ HAL_StatusTypeDef ADC_Enable(ADC_HandleTypeDef* hadc) { - 800e130: b580 push {r7, lr} - 800e132: b084 sub sp, #16 - 800e134: af00 add r7, sp, #0 - 800e136: 6078 str r0, [r7, #4] + 800e14c: b580 push {r7, lr} + 800e14e: b084 sub sp, #16 + 800e150: af00 add r7, sp, #0 + 800e152: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 800e138: 2300 movs r3, #0 - 800e13a: 60fb str r3, [r7, #12] + 800e154: 2300 movs r3, #0 + 800e156: 60fb str r3, [r7, #12] __IO uint32_t wait_loop_index = 0U; - 800e13c: 2300 movs r3, #0 - 800e13e: 60bb str r3, [r7, #8] + 800e158: 2300 movs r3, #0 + 800e15a: 60bb str r3, [r7, #8] /* ADC enable and wait for ADC ready (in case of ADC is disabled or */ /* enabling phase not yet completed: flag ADC ready not yet set). */ /* Timeout implemented to not be stuck if ADC cannot be enabled (possible */ /* causes: ADC clock not running, ...). */ if (ADC_IS_ENABLE(hadc) == RESET) - 800e140: 687b ldr r3, [r7, #4] - 800e142: 681b ldr r3, [r3, #0] - 800e144: 689b ldr r3, [r3, #8] - 800e146: f003 0301 and.w r3, r3, #1 - 800e14a: 2b01 cmp r3, #1 - 800e14c: d040 beq.n 800e1d0 + 800e15c: 687b ldr r3, [r7, #4] + 800e15e: 681b ldr r3, [r3, #0] + 800e160: 689b ldr r3, [r3, #8] + 800e162: f003 0301 and.w r3, r3, #1 + 800e166: 2b01 cmp r3, #1 + 800e168: d040 beq.n 800e1ec { /* Enable the Peripheral */ __HAL_ADC_ENABLE(hadc); - 800e14e: 687b ldr r3, [r7, #4] - 800e150: 681b ldr r3, [r3, #0] - 800e152: 689a ldr r2, [r3, #8] - 800e154: 687b ldr r3, [r7, #4] - 800e156: 681b ldr r3, [r3, #0] - 800e158: f042 0201 orr.w r2, r2, #1 - 800e15c: 609a str r2, [r3, #8] + 800e16a: 687b ldr r3, [r7, #4] + 800e16c: 681b ldr r3, [r3, #0] + 800e16e: 689a ldr r2, [r3, #8] + 800e170: 687b ldr r3, [r7, #4] + 800e172: 681b ldr r3, [r3, #0] + 800e174: f042 0201 orr.w r2, r2, #1 + 800e178: 609a str r2, [r3, #8] /* Delay for ADC stabilization time */ /* Compute number of CPU cycles to wait for */ wait_loop_index = (ADC_STAB_DELAY_US * (SystemCoreClock / 1000000U)); - 800e15e: 4b1f ldr r3, [pc, #124] @ (800e1dc ) - 800e160: 681b ldr r3, [r3, #0] - 800e162: 4a1f ldr r2, [pc, #124] @ (800e1e0 ) - 800e164: fba2 2303 umull r2, r3, r2, r3 - 800e168: 0c9b lsrs r3, r3, #18 - 800e16a: 60bb str r3, [r7, #8] + 800e17a: 4b1f ldr r3, [pc, #124] @ (800e1f8 ) + 800e17c: 681b ldr r3, [r3, #0] + 800e17e: 4a1f ldr r2, [pc, #124] @ (800e1fc ) + 800e180: fba2 2303 umull r2, r3, r2, r3 + 800e184: 0c9b lsrs r3, r3, #18 + 800e186: 60bb str r3, [r7, #8] while(wait_loop_index != 0U) - 800e16c: e002 b.n 800e174 + 800e188: e002 b.n 800e190 { wait_loop_index--; - 800e16e: 68bb ldr r3, [r7, #8] - 800e170: 3b01 subs r3, #1 - 800e172: 60bb str r3, [r7, #8] + 800e18a: 68bb ldr r3, [r7, #8] + 800e18c: 3b01 subs r3, #1 + 800e18e: 60bb str r3, [r7, #8] while(wait_loop_index != 0U) - 800e174: 68bb ldr r3, [r7, #8] - 800e176: 2b00 cmp r3, #0 - 800e178: d1f9 bne.n 800e16e + 800e190: 68bb ldr r3, [r7, #8] + 800e192: 2b00 cmp r3, #0 + 800e194: d1f9 bne.n 800e18a } /* Get tick count */ tickstart = HAL_GetTick(); - 800e17a: f7ff fbef bl 800d95c - 800e17e: 60f8 str r0, [r7, #12] + 800e196: f7ff fbef bl 800d978 + 800e19a: 60f8 str r0, [r7, #12] /* Wait for ADC effectively enabled */ while(ADC_IS_ENABLE(hadc) == RESET) - 800e180: e01f b.n 800e1c2 + 800e19c: e01f b.n 800e1de { if((HAL_GetTick() - tickstart) > ADC_ENABLE_TIMEOUT) - 800e182: f7ff fbeb bl 800d95c - 800e186: 4602 mov r2, r0 - 800e188: 68fb ldr r3, [r7, #12] - 800e18a: 1ad3 subs r3, r2, r3 - 800e18c: 2b02 cmp r3, #2 - 800e18e: d918 bls.n 800e1c2 + 800e19e: f7ff fbeb bl 800d978 + 800e1a2: 4602 mov r2, r0 + 800e1a4: 68fb ldr r3, [r7, #12] + 800e1a6: 1ad3 subs r3, r2, r3 + 800e1a8: 2b02 cmp r3, #2 + 800e1aa: d918 bls.n 800e1de { /* New check to avoid false timeout detection in case of preemption */ if(ADC_IS_ENABLE(hadc) == RESET) - 800e190: 687b ldr r3, [r7, #4] - 800e192: 681b ldr r3, [r3, #0] - 800e194: 689b ldr r3, [r3, #8] - 800e196: f003 0301 and.w r3, r3, #1 - 800e19a: 2b01 cmp r3, #1 - 800e19c: d011 beq.n 800e1c2 + 800e1ac: 687b ldr r3, [r7, #4] + 800e1ae: 681b ldr r3, [r3, #0] + 800e1b0: 689b ldr r3, [r3, #8] + 800e1b2: f003 0301 and.w r3, r3, #1 + 800e1b6: 2b01 cmp r3, #1 + 800e1b8: d011 beq.n 800e1de { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL); - 800e19e: 687b ldr r3, [r7, #4] - 800e1a0: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e1a2: f043 0210 orr.w r2, r3, #16 - 800e1a6: 687b ldr r3, [r7, #4] - 800e1a8: 629a str r2, [r3, #40] @ 0x28 + 800e1ba: 687b ldr r3, [r7, #4] + 800e1bc: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e1be: f043 0210 orr.w r2, r3, #16 + 800e1c2: 687b ldr r3, [r7, #4] + 800e1c4: 629a str r2, [r3, #40] @ 0x28 /* Set ADC error code to ADC IP internal error */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_INTERNAL); - 800e1aa: 687b ldr r3, [r7, #4] - 800e1ac: 6adb ldr r3, [r3, #44] @ 0x2c - 800e1ae: f043 0201 orr.w r2, r3, #1 - 800e1b2: 687b ldr r3, [r7, #4] - 800e1b4: 62da str r2, [r3, #44] @ 0x2c + 800e1c6: 687b ldr r3, [r7, #4] + 800e1c8: 6adb ldr r3, [r3, #44] @ 0x2c + 800e1ca: f043 0201 orr.w r2, r3, #1 + 800e1ce: 687b ldr r3, [r7, #4] + 800e1d0: 62da str r2, [r3, #44] @ 0x2c /* Process unlocked */ __HAL_UNLOCK(hadc); - 800e1b6: 687b ldr r3, [r7, #4] - 800e1b8: 2200 movs r2, #0 - 800e1ba: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e1d2: 687b ldr r3, [r7, #4] + 800e1d4: 2200 movs r2, #0 + 800e1d6: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e1be: 2301 movs r3, #1 - 800e1c0: e007 b.n 800e1d2 + 800e1da: 2301 movs r3, #1 + 800e1dc: e007 b.n 800e1ee while(ADC_IS_ENABLE(hadc) == RESET) - 800e1c2: 687b ldr r3, [r7, #4] - 800e1c4: 681b ldr r3, [r3, #0] - 800e1c6: 689b ldr r3, [r3, #8] - 800e1c8: f003 0301 and.w r3, r3, #1 - 800e1cc: 2b01 cmp r3, #1 - 800e1ce: d1d8 bne.n 800e182 + 800e1de: 687b ldr r3, [r7, #4] + 800e1e0: 681b ldr r3, [r3, #0] + 800e1e2: 689b ldr r3, [r3, #8] + 800e1e4: f003 0301 and.w r3, r3, #1 + 800e1e8: 2b01 cmp r3, #1 + 800e1ea: d1d8 bne.n 800e19e } } } /* Return HAL status */ return HAL_OK; - 800e1d0: 2300 movs r3, #0 + 800e1ec: 2300 movs r3, #0 } - 800e1d2: 4618 mov r0, r3 - 800e1d4: 3710 adds r7, #16 - 800e1d6: 46bd mov sp, r7 - 800e1d8: bd80 pop {r7, pc} - 800e1da: bf00 nop - 800e1dc: 2000006c .word 0x2000006c - 800e1e0: 431bde83 .word 0x431bde83 + 800e1ee: 4618 mov r0, r3 + 800e1f0: 3710 adds r7, #16 + 800e1f2: 46bd mov sp, r7 + 800e1f4: bd80 pop {r7, pc} + 800e1f6: bf00 nop + 800e1f8: 2000006c .word 0x2000006c + 800e1fc: 431bde83 .word 0x431bde83 -0800e1e4 : +0800e200 : * stopped to disable the ADC. * @param hadc: ADC handle * @retval HAL status. */ HAL_StatusTypeDef ADC_ConversionStop_Disable(ADC_HandleTypeDef* hadc) { - 800e1e4: b580 push {r7, lr} - 800e1e6: b084 sub sp, #16 - 800e1e8: af00 add r7, sp, #0 - 800e1ea: 6078 str r0, [r7, #4] + 800e200: b580 push {r7, lr} + 800e202: b084 sub sp, #16 + 800e204: af00 add r7, sp, #0 + 800e206: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 800e1ec: 2300 movs r3, #0 - 800e1ee: 60fb str r3, [r7, #12] + 800e208: 2300 movs r3, #0 + 800e20a: 60fb str r3, [r7, #12] /* Verification if ADC is not already disabled */ if (ADC_IS_ENABLE(hadc) != RESET) - 800e1f0: 687b ldr r3, [r7, #4] - 800e1f2: 681b ldr r3, [r3, #0] - 800e1f4: 689b ldr r3, [r3, #8] - 800e1f6: f003 0301 and.w r3, r3, #1 - 800e1fa: 2b01 cmp r3, #1 - 800e1fc: d12e bne.n 800e25c + 800e20c: 687b ldr r3, [r7, #4] + 800e20e: 681b ldr r3, [r3, #0] + 800e210: 689b ldr r3, [r3, #8] + 800e212: f003 0301 and.w r3, r3, #1 + 800e216: 2b01 cmp r3, #1 + 800e218: d12e bne.n 800e278 { /* Disable the ADC peripheral */ __HAL_ADC_DISABLE(hadc); - 800e1fe: 687b ldr r3, [r7, #4] - 800e200: 681b ldr r3, [r3, #0] - 800e202: 689a ldr r2, [r3, #8] - 800e204: 687b ldr r3, [r7, #4] - 800e206: 681b ldr r3, [r3, #0] - 800e208: f022 0201 bic.w r2, r2, #1 - 800e20c: 609a str r2, [r3, #8] + 800e21a: 687b ldr r3, [r7, #4] + 800e21c: 681b ldr r3, [r3, #0] + 800e21e: 689a ldr r2, [r3, #8] + 800e220: 687b ldr r3, [r7, #4] + 800e222: 681b ldr r3, [r3, #0] + 800e224: f022 0201 bic.w r2, r2, #1 + 800e228: 609a str r2, [r3, #8] /* Get tick count */ tickstart = HAL_GetTick(); - 800e20e: f7ff fba5 bl 800d95c - 800e212: 60f8 str r0, [r7, #12] + 800e22a: f7ff fba5 bl 800d978 + 800e22e: 60f8 str r0, [r7, #12] /* Wait for ADC effectively disabled */ while(ADC_IS_ENABLE(hadc) != RESET) - 800e214: e01b b.n 800e24e + 800e230: e01b b.n 800e26a { if((HAL_GetTick() - tickstart) > ADC_DISABLE_TIMEOUT) - 800e216: f7ff fba1 bl 800d95c - 800e21a: 4602 mov r2, r0 - 800e21c: 68fb ldr r3, [r7, #12] - 800e21e: 1ad3 subs r3, r2, r3 - 800e220: 2b02 cmp r3, #2 - 800e222: d914 bls.n 800e24e + 800e232: f7ff fba1 bl 800d978 + 800e236: 4602 mov r2, r0 + 800e238: 68fb ldr r3, [r7, #12] + 800e23a: 1ad3 subs r3, r2, r3 + 800e23c: 2b02 cmp r3, #2 + 800e23e: d914 bls.n 800e26a { /* New check to avoid false timeout detection in case of preemption */ if(ADC_IS_ENABLE(hadc) != RESET) - 800e224: 687b ldr r3, [r7, #4] - 800e226: 681b ldr r3, [r3, #0] - 800e228: 689b ldr r3, [r3, #8] - 800e22a: f003 0301 and.w r3, r3, #1 - 800e22e: 2b01 cmp r3, #1 - 800e230: d10d bne.n 800e24e + 800e240: 687b ldr r3, [r7, #4] + 800e242: 681b ldr r3, [r3, #0] + 800e244: 689b ldr r3, [r3, #8] + 800e246: f003 0301 and.w r3, r3, #1 + 800e24a: 2b01 cmp r3, #1 + 800e24c: d10d bne.n 800e26a { /* Update ADC state machine to error */ SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_INTERNAL); - 800e232: 687b ldr r3, [r7, #4] - 800e234: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e236: f043 0210 orr.w r2, r3, #16 - 800e23a: 687b ldr r3, [r7, #4] - 800e23c: 629a str r2, [r3, #40] @ 0x28 + 800e24e: 687b ldr r3, [r7, #4] + 800e250: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e252: f043 0210 orr.w r2, r3, #16 + 800e256: 687b ldr r3, [r7, #4] + 800e258: 629a str r2, [r3, #40] @ 0x28 /* Set ADC error code to ADC IP internal error */ SET_BIT(hadc->ErrorCode, HAL_ADC_ERROR_INTERNAL); - 800e23e: 687b ldr r3, [r7, #4] - 800e240: 6adb ldr r3, [r3, #44] @ 0x2c - 800e242: f043 0201 orr.w r2, r3, #1 - 800e246: 687b ldr r3, [r7, #4] - 800e248: 62da str r2, [r3, #44] @ 0x2c + 800e25a: 687b ldr r3, [r7, #4] + 800e25c: 6adb ldr r3, [r3, #44] @ 0x2c + 800e25e: f043 0201 orr.w r2, r3, #1 + 800e262: 687b ldr r3, [r7, #4] + 800e264: 62da str r2, [r3, #44] @ 0x2c return HAL_ERROR; - 800e24a: 2301 movs r3, #1 - 800e24c: e007 b.n 800e25e + 800e266: 2301 movs r3, #1 + 800e268: e007 b.n 800e27a while(ADC_IS_ENABLE(hadc) != RESET) - 800e24e: 687b ldr r3, [r7, #4] - 800e250: 681b ldr r3, [r3, #0] - 800e252: 689b ldr r3, [r3, #8] - 800e254: f003 0301 and.w r3, r3, #1 - 800e258: 2b01 cmp r3, #1 - 800e25a: d0dc beq.n 800e216 + 800e26a: 687b ldr r3, [r7, #4] + 800e26c: 681b ldr r3, [r3, #0] + 800e26e: 689b ldr r3, [r3, #8] + 800e270: f003 0301 and.w r3, r3, #1 + 800e274: 2b01 cmp r3, #1 + 800e276: d0dc beq.n 800e232 } } } /* Return HAL status */ return HAL_OK; - 800e25c: 2300 movs r3, #0 + 800e278: 2300 movs r3, #0 } - 800e25e: 4618 mov r0, r3 - 800e260: 3710 adds r7, #16 - 800e262: 46bd mov sp, r7 - 800e264: bd80 pop {r7, pc} + 800e27a: 4618 mov r0, r3 + 800e27c: 3710 adds r7, #16 + 800e27e: 46bd mov sp, r7 + 800e280: bd80 pop {r7, pc} ... -0800e268 : +0800e284 : * the completion of this function. * @param hadc: ADC handle * @retval HAL status */ HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef* hadc) { - 800e268: b590 push {r4, r7, lr} - 800e26a: b087 sub sp, #28 - 800e26c: af00 add r7, sp, #0 - 800e26e: 6078 str r0, [r7, #4] + 800e284: b590 push {r4, r7, lr} + 800e286: b087 sub sp, #28 + 800e288: af00 add r7, sp, #0 + 800e28a: 6078 str r0, [r7, #4] HAL_StatusTypeDef tmp_hal_status = HAL_OK; - 800e270: 2300 movs r3, #0 - 800e272: 75fb strb r3, [r7, #23] + 800e28c: 2300 movs r3, #0 + 800e28e: 75fb strb r3, [r7, #23] uint32_t tickstart; __IO uint32_t wait_loop_index = 0U; - 800e274: 2300 movs r3, #0 - 800e276: 60fb str r3, [r7, #12] + 800e290: 2300 movs r3, #0 + 800e292: 60fb str r3, [r7, #12] /* Check the parameters */ assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance)); /* Process locked */ __HAL_LOCK(hadc); - 800e278: 687b ldr r3, [r7, #4] - 800e27a: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 - 800e27e: 2b01 cmp r3, #1 - 800e280: d101 bne.n 800e286 - 800e282: 2302 movs r3, #2 - 800e284: e097 b.n 800e3b6 - 800e286: 687b ldr r3, [r7, #4] - 800e288: 2201 movs r2, #1 - 800e28a: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e294: 687b ldr r3, [r7, #4] + 800e296: f893 3024 ldrb.w r3, [r3, #36] @ 0x24 + 800e29a: 2b01 cmp r3, #1 + 800e29c: d101 bne.n 800e2a2 + 800e29e: 2302 movs r3, #2 + 800e2a0: e097 b.n 800e3d2 + 800e2a2: 687b ldr r3, [r7, #4] + 800e2a4: 2201 movs r2, #1 + 800e2a6: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* 1. Disable ADC peripheral */ tmp_hal_status = ADC_ConversionStop_Disable(hadc); - 800e28e: 6878 ldr r0, [r7, #4] - 800e290: f7ff ffa8 bl 800e1e4 - 800e294: 4603 mov r3, r0 - 800e296: 75fb strb r3, [r7, #23] + 800e2aa: 6878 ldr r0, [r7, #4] + 800e2ac: f7ff ffa8 bl 800e200 + 800e2b0: 4603 mov r3, r0 + 800e2b2: 75fb strb r3, [r7, #23] /* 2. Calibration prerequisite delay before starting the calibration. */ /* - ADC must be enabled for at least two ADC clock cycles */ tmp_hal_status = ADC_Enable(hadc); - 800e298: 6878 ldr r0, [r7, #4] - 800e29a: f7ff ff49 bl 800e130 - 800e29e: 4603 mov r3, r0 - 800e2a0: 75fb strb r3, [r7, #23] + 800e2b4: 6878 ldr r0, [r7, #4] + 800e2b6: f7ff ff49 bl 800e14c + 800e2ba: 4603 mov r3, r0 + 800e2bc: 75fb strb r3, [r7, #23] /* Check if ADC is effectively enabled */ if (tmp_hal_status == HAL_OK) - 800e2a2: 7dfb ldrb r3, [r7, #23] - 800e2a4: 2b00 cmp r3, #0 - 800e2a6: f040 8081 bne.w 800e3ac + 800e2be: 7dfb ldrb r3, [r7, #23] + 800e2c0: 2b00 cmp r3, #0 + 800e2c2: f040 8081 bne.w 800e3c8 { /* Set ADC state */ ADC_STATE_CLR_SET(hadc->State, - 800e2aa: 687b ldr r3, [r7, #4] - 800e2ac: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e2ae: f423 5388 bic.w r3, r3, #4352 @ 0x1100 - 800e2b2: f023 0302 bic.w r3, r3, #2 - 800e2b6: f043 0202 orr.w r2, r3, #2 - 800e2ba: 687b ldr r3, [r7, #4] - 800e2bc: 629a str r2, [r3, #40] @ 0x28 + 800e2c6: 687b ldr r3, [r7, #4] + 800e2c8: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e2ca: f423 5388 bic.w r3, r3, #4352 @ 0x1100 + 800e2ce: f023 0302 bic.w r3, r3, #2 + 800e2d2: f043 0202 orr.w r2, r3, #2 + 800e2d6: 687b ldr r3, [r7, #4] + 800e2d8: 629a str r2, [r3, #40] @ 0x28 /* Hardware prerequisite: delay before starting the calibration. */ /* - Computation of CPU clock cycles corresponding to ADC clock cycles. */ /* - Wait for the expected ADC clock cycles delay */ wait_loop_index = ((SystemCoreClock / HAL_RCCEx_GetPeriphCLKFreq(RCC_PERIPHCLK_ADC)) - 800e2be: 4b40 ldr r3, [pc, #256] @ (800e3c0 ) - 800e2c0: 681c ldr r4, [r3, #0] - 800e2c2: 2002 movs r0, #2 - 800e2c4: f002 fa8e bl 80107e4 - 800e2c8: 4603 mov r3, r0 - 800e2ca: fbb4 f3f3 udiv r3, r4, r3 + 800e2da: 4b40 ldr r3, [pc, #256] @ (800e3dc ) + 800e2dc: 681c ldr r4, [r3, #0] + 800e2de: 2002 movs r0, #2 + 800e2e0: f002 fa8e bl 8010800 + 800e2e4: 4603 mov r3, r0 + 800e2e6: fbb4 f3f3 udiv r3, r4, r3 * ADC_PRECALIBRATION_DELAY_ADCCLOCKCYCLES ); - 800e2ce: 005b lsls r3, r3, #1 + 800e2ea: 005b lsls r3, r3, #1 wait_loop_index = ((SystemCoreClock - 800e2d0: 60fb str r3, [r7, #12] + 800e2ec: 60fb str r3, [r7, #12] while(wait_loop_index != 0U) - 800e2d2: e002 b.n 800e2da + 800e2ee: e002 b.n 800e2f6 { wait_loop_index--; - 800e2d4: 68fb ldr r3, [r7, #12] - 800e2d6: 3b01 subs r3, #1 - 800e2d8: 60fb str r3, [r7, #12] + 800e2f0: 68fb ldr r3, [r7, #12] + 800e2f2: 3b01 subs r3, #1 + 800e2f4: 60fb str r3, [r7, #12] while(wait_loop_index != 0U) - 800e2da: 68fb ldr r3, [r7, #12] - 800e2dc: 2b00 cmp r3, #0 - 800e2de: d1f9 bne.n 800e2d4 + 800e2f6: 68fb ldr r3, [r7, #12] + 800e2f8: 2b00 cmp r3, #0 + 800e2fa: d1f9 bne.n 800e2f0 } /* 3. Resets ADC calibration registers */ SET_BIT(hadc->Instance->CR2, ADC_CR2_RSTCAL); - 800e2e0: 687b ldr r3, [r7, #4] - 800e2e2: 681b ldr r3, [r3, #0] - 800e2e4: 689a ldr r2, [r3, #8] - 800e2e6: 687b ldr r3, [r7, #4] - 800e2e8: 681b ldr r3, [r3, #0] - 800e2ea: f042 0208 orr.w r2, r2, #8 - 800e2ee: 609a str r2, [r3, #8] + 800e2fc: 687b ldr r3, [r7, #4] + 800e2fe: 681b ldr r3, [r3, #0] + 800e300: 689a ldr r2, [r3, #8] + 800e302: 687b ldr r3, [r7, #4] + 800e304: 681b ldr r3, [r3, #0] + 800e306: f042 0208 orr.w r2, r2, #8 + 800e30a: 609a str r2, [r3, #8] tickstart = HAL_GetTick(); - 800e2f0: f7ff fb34 bl 800d95c - 800e2f4: 6138 str r0, [r7, #16] + 800e30c: f7ff fb34 bl 800d978 + 800e310: 6138 str r0, [r7, #16] /* Wait for calibration reset completion */ while(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_RSTCAL)) - 800e2f6: e01b b.n 800e330 + 800e312: e01b b.n 800e34c { if((HAL_GetTick() - tickstart) > ADC_CALIBRATION_TIMEOUT) - 800e2f8: f7ff fb30 bl 800d95c - 800e2fc: 4602 mov r2, r0 - 800e2fe: 693b ldr r3, [r7, #16] - 800e300: 1ad3 subs r3, r2, r3 - 800e302: 2b0a cmp r3, #10 - 800e304: d914 bls.n 800e330 + 800e314: f7ff fb30 bl 800d978 + 800e318: 4602 mov r2, r0 + 800e31a: 693b ldr r3, [r7, #16] + 800e31c: 1ad3 subs r3, r2, r3 + 800e31e: 2b0a cmp r3, #10 + 800e320: d914 bls.n 800e34c { /* New check to avoid false timeout detection in case of preemption */ if(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_RSTCAL)) - 800e306: 687b ldr r3, [r7, #4] - 800e308: 681b ldr r3, [r3, #0] - 800e30a: 689b ldr r3, [r3, #8] - 800e30c: f003 0308 and.w r3, r3, #8 - 800e310: 2b00 cmp r3, #0 - 800e312: d00d beq.n 800e330 + 800e322: 687b ldr r3, [r7, #4] + 800e324: 681b ldr r3, [r3, #0] + 800e326: 689b ldr r3, [r3, #8] + 800e328: f003 0308 and.w r3, r3, #8 + 800e32c: 2b00 cmp r3, #0 + 800e32e: d00d beq.n 800e34c { /* Update ADC state machine to error */ ADC_STATE_CLR_SET(hadc->State, - 800e314: 687b ldr r3, [r7, #4] - 800e316: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e318: f023 0312 bic.w r3, r3, #18 - 800e31c: f043 0210 orr.w r2, r3, #16 - 800e320: 687b ldr r3, [r7, #4] - 800e322: 629a str r2, [r3, #40] @ 0x28 + 800e330: 687b ldr r3, [r7, #4] + 800e332: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e334: f023 0312 bic.w r3, r3, #18 + 800e338: f043 0210 orr.w r2, r3, #16 + 800e33c: 687b ldr r3, [r7, #4] + 800e33e: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_BUSY_INTERNAL, HAL_ADC_STATE_ERROR_INTERNAL); /* Process unlocked */ __HAL_UNLOCK(hadc); - 800e324: 687b ldr r3, [r7, #4] - 800e326: 2200 movs r2, #0 - 800e328: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e340: 687b ldr r3, [r7, #4] + 800e342: 2200 movs r2, #0 + 800e344: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e32c: 2301 movs r3, #1 - 800e32e: e042 b.n 800e3b6 + 800e348: 2301 movs r3, #1 + 800e34a: e042 b.n 800e3d2 while(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_RSTCAL)) - 800e330: 687b ldr r3, [r7, #4] - 800e332: 681b ldr r3, [r3, #0] - 800e334: 689b ldr r3, [r3, #8] - 800e336: f003 0308 and.w r3, r3, #8 - 800e33a: 2b00 cmp r3, #0 - 800e33c: d1dc bne.n 800e2f8 + 800e34c: 687b ldr r3, [r7, #4] + 800e34e: 681b ldr r3, [r3, #0] + 800e350: 689b ldr r3, [r3, #8] + 800e352: f003 0308 and.w r3, r3, #8 + 800e356: 2b00 cmp r3, #0 + 800e358: d1dc bne.n 800e314 } } } /* 4. Start ADC calibration */ SET_BIT(hadc->Instance->CR2, ADC_CR2_CAL); - 800e33e: 687b ldr r3, [r7, #4] - 800e340: 681b ldr r3, [r3, #0] - 800e342: 689a ldr r2, [r3, #8] - 800e344: 687b ldr r3, [r7, #4] - 800e346: 681b ldr r3, [r3, #0] - 800e348: f042 0204 orr.w r2, r2, #4 - 800e34c: 609a str r2, [r3, #8] + 800e35a: 687b ldr r3, [r7, #4] + 800e35c: 681b ldr r3, [r3, #0] + 800e35e: 689a ldr r2, [r3, #8] + 800e360: 687b ldr r3, [r7, #4] + 800e362: 681b ldr r3, [r3, #0] + 800e364: f042 0204 orr.w r2, r2, #4 + 800e368: 609a str r2, [r3, #8] tickstart = HAL_GetTick(); - 800e34e: f7ff fb05 bl 800d95c - 800e352: 6138 str r0, [r7, #16] + 800e36a: f7ff fb05 bl 800d978 + 800e36e: 6138 str r0, [r7, #16] /* Wait for calibration completion */ while(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_CAL)) - 800e354: e01b b.n 800e38e + 800e370: e01b b.n 800e3aa { if((HAL_GetTick() - tickstart) > ADC_CALIBRATION_TIMEOUT) - 800e356: f7ff fb01 bl 800d95c - 800e35a: 4602 mov r2, r0 - 800e35c: 693b ldr r3, [r7, #16] - 800e35e: 1ad3 subs r3, r2, r3 - 800e360: 2b0a cmp r3, #10 - 800e362: d914 bls.n 800e38e + 800e372: f7ff fb01 bl 800d978 + 800e376: 4602 mov r2, r0 + 800e378: 693b ldr r3, [r7, #16] + 800e37a: 1ad3 subs r3, r2, r3 + 800e37c: 2b0a cmp r3, #10 + 800e37e: d914 bls.n 800e3aa { /* New check to avoid false timeout detection in case of preemption */ if(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_CAL)) - 800e364: 687b ldr r3, [r7, #4] - 800e366: 681b ldr r3, [r3, #0] - 800e368: 689b ldr r3, [r3, #8] - 800e36a: f003 0304 and.w r3, r3, #4 - 800e36e: 2b00 cmp r3, #0 - 800e370: d00d beq.n 800e38e + 800e380: 687b ldr r3, [r7, #4] + 800e382: 681b ldr r3, [r3, #0] + 800e384: 689b ldr r3, [r3, #8] + 800e386: f003 0304 and.w r3, r3, #4 + 800e38a: 2b00 cmp r3, #0 + 800e38c: d00d beq.n 800e3aa { /* Update ADC state machine to error */ ADC_STATE_CLR_SET(hadc->State, - 800e372: 687b ldr r3, [r7, #4] - 800e374: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e376: f023 0312 bic.w r3, r3, #18 - 800e37a: f043 0210 orr.w r2, r3, #16 - 800e37e: 687b ldr r3, [r7, #4] - 800e380: 629a str r2, [r3, #40] @ 0x28 + 800e38e: 687b ldr r3, [r7, #4] + 800e390: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e392: f023 0312 bic.w r3, r3, #18 + 800e396: f043 0210 orr.w r2, r3, #16 + 800e39a: 687b ldr r3, [r7, #4] + 800e39c: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_BUSY_INTERNAL, HAL_ADC_STATE_ERROR_INTERNAL); /* Process unlocked */ __HAL_UNLOCK(hadc); - 800e382: 687b ldr r3, [r7, #4] - 800e384: 2200 movs r2, #0 - 800e386: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e39e: 687b ldr r3, [r7, #4] + 800e3a0: 2200 movs r2, #0 + 800e3a2: f883 2024 strb.w r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e38a: 2301 movs r3, #1 - 800e38c: e013 b.n 800e3b6 + 800e3a6: 2301 movs r3, #1 + 800e3a8: e013 b.n 800e3d2 while(HAL_IS_BIT_SET(hadc->Instance->CR2, ADC_CR2_CAL)) - 800e38e: 687b ldr r3, [r7, #4] - 800e390: 681b ldr r3, [r3, #0] - 800e392: 689b ldr r3, [r3, #8] - 800e394: f003 0304 and.w r3, r3, #4 - 800e398: 2b00 cmp r3, #0 - 800e39a: d1dc bne.n 800e356 + 800e3aa: 687b ldr r3, [r7, #4] + 800e3ac: 681b ldr r3, [r3, #0] + 800e3ae: 689b ldr r3, [r3, #8] + 800e3b0: f003 0304 and.w r3, r3, #4 + 800e3b4: 2b00 cmp r3, #0 + 800e3b6: d1dc bne.n 800e372 } } } /* Set ADC state */ ADC_STATE_CLR_SET(hadc->State, - 800e39c: 687b ldr r3, [r7, #4] - 800e39e: 6a9b ldr r3, [r3, #40] @ 0x28 - 800e3a0: f023 0303 bic.w r3, r3, #3 - 800e3a4: f043 0201 orr.w r2, r3, #1 - 800e3a8: 687b ldr r3, [r7, #4] - 800e3aa: 629a str r2, [r3, #40] @ 0x28 + 800e3b8: 687b ldr r3, [r7, #4] + 800e3ba: 6a9b ldr r3, [r3, #40] @ 0x28 + 800e3bc: f023 0303 bic.w r3, r3, #3 + 800e3c0: f043 0201 orr.w r2, r3, #1 + 800e3c4: 687b ldr r3, [r7, #4] + 800e3c6: 629a str r2, [r3, #40] @ 0x28 HAL_ADC_STATE_BUSY_INTERNAL, HAL_ADC_STATE_READY); } /* Process unlocked */ __HAL_UNLOCK(hadc); - 800e3ac: 687b ldr r3, [r7, #4] - 800e3ae: 2200 movs r2, #0 - 800e3b0: f883 2024 strb.w r2, [r3, #36] @ 0x24 + 800e3c8: 687b ldr r3, [r7, #4] + 800e3ca: 2200 movs r2, #0 + 800e3cc: f883 2024 strb.w r2, [r3, #36] @ 0x24 /* Return function status */ return tmp_hal_status; - 800e3b4: 7dfb ldrb r3, [r7, #23] + 800e3d0: 7dfb ldrb r3, [r7, #23] } - 800e3b6: 4618 mov r0, r3 - 800e3b8: 371c adds r7, #28 - 800e3ba: 46bd mov sp, r7 - 800e3bc: bd90 pop {r4, r7, pc} - 800e3be: bf00 nop - 800e3c0: 2000006c .word 0x2000006c + 800e3d2: 4618 mov r0, r3 + 800e3d4: 371c adds r7, #28 + 800e3d6: 46bd mov sp, r7 + 800e3d8: bd90 pop {r4, r7, pc} + 800e3da: bf00 nop + 800e3dc: 2000006c .word 0x2000006c -0800e3c4 : +0800e3e0 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_Init(CAN_HandleTypeDef *hcan) { - 800e3c4: b580 push {r7, lr} - 800e3c6: b084 sub sp, #16 - 800e3c8: af00 add r7, sp, #0 - 800e3ca: 6078 str r0, [r7, #4] + 800e3e0: b580 push {r7, lr} + 800e3e2: b084 sub sp, #16 + 800e3e4: af00 add r7, sp, #0 + 800e3e6: 6078 str r0, [r7, #4] uint32_t tickstart; /* Check CAN handle */ if (hcan == NULL) - 800e3cc: 687b ldr r3, [r7, #4] - 800e3ce: 2b00 cmp r3, #0 - 800e3d0: d101 bne.n 800e3d6 + 800e3e8: 687b ldr r3, [r7, #4] + 800e3ea: 2b00 cmp r3, #0 + 800e3ec: d101 bne.n 800e3f2 { return HAL_ERROR; - 800e3d2: 2301 movs r3, #1 - 800e3d4: e0ed b.n 800e5b2 + 800e3ee: 2301 movs r3, #1 + 800e3f0: e0ed b.n 800e5ce /* Init the low level hardware: CLOCK, NVIC */ hcan->MspInitCallback(hcan); } #else if (hcan->State == HAL_CAN_STATE_RESET) - 800e3d6: 687b ldr r3, [r7, #4] - 800e3d8: f893 3020 ldrb.w r3, [r3, #32] - 800e3dc: b2db uxtb r3, r3 - 800e3de: 2b00 cmp r3, #0 - 800e3e0: d102 bne.n 800e3e8 + 800e3f2: 687b ldr r3, [r7, #4] + 800e3f4: f893 3020 ldrb.w r3, [r3, #32] + 800e3f8: b2db uxtb r3, r3 + 800e3fa: 2b00 cmp r3, #0 + 800e3fc: d102 bne.n 800e404 { /* Init the low level hardware: CLOCK, NVIC */ HAL_CAN_MspInit(hcan); - 800e3e2: 6878 ldr r0, [r7, #4] - 800e3e4: f7fb fb0a bl 80099fc + 800e3fe: 6878 ldr r0, [r7, #4] + 800e400: f7fb fafc bl 80099fc } #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ /* Request initialisation */ SET_BIT(hcan->Instance->MCR, CAN_MCR_INRQ); - 800e3e8: 687b ldr r3, [r7, #4] - 800e3ea: 681b ldr r3, [r3, #0] - 800e3ec: 681a ldr r2, [r3, #0] - 800e3ee: 687b ldr r3, [r7, #4] - 800e3f0: 681b ldr r3, [r3, #0] - 800e3f2: f042 0201 orr.w r2, r2, #1 - 800e3f6: 601a str r2, [r3, #0] + 800e404: 687b ldr r3, [r7, #4] + 800e406: 681b ldr r3, [r3, #0] + 800e408: 681a ldr r2, [r3, #0] + 800e40a: 687b ldr r3, [r7, #4] + 800e40c: 681b ldr r3, [r3, #0] + 800e40e: f042 0201 orr.w r2, r2, #1 + 800e412: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800e3f8: f7ff fab0 bl 800d95c - 800e3fc: 60f8 str r0, [r7, #12] + 800e414: f7ff fab0 bl 800d978 + 800e418: 60f8 str r0, [r7, #12] /* Wait initialisation acknowledge */ while ((hcan->Instance->MSR & CAN_MSR_INAK) == 0U) - 800e3fe: e012 b.n 800e426 + 800e41a: e012 b.n 800e442 { if ((HAL_GetTick() - tickstart) > CAN_TIMEOUT_VALUE) - 800e400: f7ff faac bl 800d95c - 800e404: 4602 mov r2, r0 - 800e406: 68fb ldr r3, [r7, #12] - 800e408: 1ad3 subs r3, r2, r3 - 800e40a: 2b0a cmp r3, #10 - 800e40c: d90b bls.n 800e426 + 800e41c: f7ff faac bl 800d978 + 800e420: 4602 mov r2, r0 + 800e422: 68fb ldr r3, [r7, #12] + 800e424: 1ad3 subs r3, r2, r3 + 800e426: 2b0a cmp r3, #10 + 800e428: d90b bls.n 800e442 { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_TIMEOUT; - 800e40e: 687b ldr r3, [r7, #4] - 800e410: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e412: f443 3200 orr.w r2, r3, #131072 @ 0x20000 - 800e416: 687b ldr r3, [r7, #4] - 800e418: 625a str r2, [r3, #36] @ 0x24 + 800e42a: 687b ldr r3, [r7, #4] + 800e42c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e42e: f443 3200 orr.w r2, r3, #131072 @ 0x20000 + 800e432: 687b ldr r3, [r7, #4] + 800e434: 625a str r2, [r3, #36] @ 0x24 /* Change CAN state */ hcan->State = HAL_CAN_STATE_ERROR; - 800e41a: 687b ldr r3, [r7, #4] - 800e41c: 2205 movs r2, #5 - 800e41e: f883 2020 strb.w r2, [r3, #32] + 800e436: 687b ldr r3, [r7, #4] + 800e438: 2205 movs r2, #5 + 800e43a: f883 2020 strb.w r2, [r3, #32] return HAL_ERROR; - 800e422: 2301 movs r3, #1 - 800e424: e0c5 b.n 800e5b2 + 800e43e: 2301 movs r3, #1 + 800e440: e0c5 b.n 800e5ce while ((hcan->Instance->MSR & CAN_MSR_INAK) == 0U) - 800e426: 687b ldr r3, [r7, #4] - 800e428: 681b ldr r3, [r3, #0] - 800e42a: 685b ldr r3, [r3, #4] - 800e42c: f003 0301 and.w r3, r3, #1 - 800e430: 2b00 cmp r3, #0 - 800e432: d0e5 beq.n 800e400 + 800e442: 687b ldr r3, [r7, #4] + 800e444: 681b ldr r3, [r3, #0] + 800e446: 685b ldr r3, [r3, #4] + 800e448: f003 0301 and.w r3, r3, #1 + 800e44c: 2b00 cmp r3, #0 + 800e44e: d0e5 beq.n 800e41c } } /* Exit from sleep mode */ CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_SLEEP); - 800e434: 687b ldr r3, [r7, #4] - 800e436: 681b ldr r3, [r3, #0] - 800e438: 681a ldr r2, [r3, #0] - 800e43a: 687b ldr r3, [r7, #4] - 800e43c: 681b ldr r3, [r3, #0] - 800e43e: f022 0202 bic.w r2, r2, #2 - 800e442: 601a str r2, [r3, #0] + 800e450: 687b ldr r3, [r7, #4] + 800e452: 681b ldr r3, [r3, #0] + 800e454: 681a ldr r2, [r3, #0] + 800e456: 687b ldr r3, [r7, #4] + 800e458: 681b ldr r3, [r3, #0] + 800e45a: f022 0202 bic.w r2, r2, #2 + 800e45e: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800e444: f7ff fa8a bl 800d95c - 800e448: 60f8 str r0, [r7, #12] + 800e460: f7ff fa8a bl 800d978 + 800e464: 60f8 str r0, [r7, #12] /* Check Sleep mode leave acknowledge */ while ((hcan->Instance->MSR & CAN_MSR_SLAK) != 0U) - 800e44a: e012 b.n 800e472 + 800e466: e012 b.n 800e48e { if ((HAL_GetTick() - tickstart) > CAN_TIMEOUT_VALUE) - 800e44c: f7ff fa86 bl 800d95c - 800e450: 4602 mov r2, r0 - 800e452: 68fb ldr r3, [r7, #12] - 800e454: 1ad3 subs r3, r2, r3 - 800e456: 2b0a cmp r3, #10 - 800e458: d90b bls.n 800e472 + 800e468: f7ff fa86 bl 800d978 + 800e46c: 4602 mov r2, r0 + 800e46e: 68fb ldr r3, [r7, #12] + 800e470: 1ad3 subs r3, r2, r3 + 800e472: 2b0a cmp r3, #10 + 800e474: d90b bls.n 800e48e { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_TIMEOUT; - 800e45a: 687b ldr r3, [r7, #4] - 800e45c: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e45e: f443 3200 orr.w r2, r3, #131072 @ 0x20000 - 800e462: 687b ldr r3, [r7, #4] - 800e464: 625a str r2, [r3, #36] @ 0x24 + 800e476: 687b ldr r3, [r7, #4] + 800e478: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e47a: f443 3200 orr.w r2, r3, #131072 @ 0x20000 + 800e47e: 687b ldr r3, [r7, #4] + 800e480: 625a str r2, [r3, #36] @ 0x24 /* Change CAN state */ hcan->State = HAL_CAN_STATE_ERROR; - 800e466: 687b ldr r3, [r7, #4] - 800e468: 2205 movs r2, #5 - 800e46a: f883 2020 strb.w r2, [r3, #32] + 800e482: 687b ldr r3, [r7, #4] + 800e484: 2205 movs r2, #5 + 800e486: f883 2020 strb.w r2, [r3, #32] return HAL_ERROR; - 800e46e: 2301 movs r3, #1 - 800e470: e09f b.n 800e5b2 + 800e48a: 2301 movs r3, #1 + 800e48c: e09f b.n 800e5ce while ((hcan->Instance->MSR & CAN_MSR_SLAK) != 0U) - 800e472: 687b ldr r3, [r7, #4] - 800e474: 681b ldr r3, [r3, #0] - 800e476: 685b ldr r3, [r3, #4] - 800e478: f003 0302 and.w r3, r3, #2 - 800e47c: 2b00 cmp r3, #0 - 800e47e: d1e5 bne.n 800e44c + 800e48e: 687b ldr r3, [r7, #4] + 800e490: 681b ldr r3, [r3, #0] + 800e492: 685b ldr r3, [r3, #4] + 800e494: f003 0302 and.w r3, r3, #2 + 800e498: 2b00 cmp r3, #0 + 800e49a: d1e5 bne.n 800e468 } } /* Set the time triggered communication mode */ if (hcan->Init.TimeTriggeredMode == ENABLE) - 800e480: 687b ldr r3, [r7, #4] - 800e482: 7e1b ldrb r3, [r3, #24] - 800e484: 2b01 cmp r3, #1 - 800e486: d108 bne.n 800e49a + 800e49c: 687b ldr r3, [r7, #4] + 800e49e: 7e1b ldrb r3, [r3, #24] + 800e4a0: 2b01 cmp r3, #1 + 800e4a2: d108 bne.n 800e4b6 { SET_BIT(hcan->Instance->MCR, CAN_MCR_TTCM); - 800e488: 687b ldr r3, [r7, #4] - 800e48a: 681b ldr r3, [r3, #0] - 800e48c: 681a ldr r2, [r3, #0] - 800e48e: 687b ldr r3, [r7, #4] - 800e490: 681b ldr r3, [r3, #0] - 800e492: f042 0280 orr.w r2, r2, #128 @ 0x80 - 800e496: 601a str r2, [r3, #0] - 800e498: e007 b.n 800e4aa + 800e4a4: 687b ldr r3, [r7, #4] + 800e4a6: 681b ldr r3, [r3, #0] + 800e4a8: 681a ldr r2, [r3, #0] + 800e4aa: 687b ldr r3, [r7, #4] + 800e4ac: 681b ldr r3, [r3, #0] + 800e4ae: f042 0280 orr.w r2, r2, #128 @ 0x80 + 800e4b2: 601a str r2, [r3, #0] + 800e4b4: e007 b.n 800e4c6 } else { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_TTCM); - 800e49a: 687b ldr r3, [r7, #4] - 800e49c: 681b ldr r3, [r3, #0] - 800e49e: 681a ldr r2, [r3, #0] - 800e4a0: 687b ldr r3, [r7, #4] - 800e4a2: 681b ldr r3, [r3, #0] - 800e4a4: f022 0280 bic.w r2, r2, #128 @ 0x80 - 800e4a8: 601a str r2, [r3, #0] + 800e4b6: 687b ldr r3, [r7, #4] + 800e4b8: 681b ldr r3, [r3, #0] + 800e4ba: 681a ldr r2, [r3, #0] + 800e4bc: 687b ldr r3, [r7, #4] + 800e4be: 681b ldr r3, [r3, #0] + 800e4c0: f022 0280 bic.w r2, r2, #128 @ 0x80 + 800e4c4: 601a str r2, [r3, #0] } /* Set the automatic bus-off management */ if (hcan->Init.AutoBusOff == ENABLE) - 800e4aa: 687b ldr r3, [r7, #4] - 800e4ac: 7e5b ldrb r3, [r3, #25] - 800e4ae: 2b01 cmp r3, #1 - 800e4b0: d108 bne.n 800e4c4 + 800e4c6: 687b ldr r3, [r7, #4] + 800e4c8: 7e5b ldrb r3, [r3, #25] + 800e4ca: 2b01 cmp r3, #1 + 800e4cc: d108 bne.n 800e4e0 { SET_BIT(hcan->Instance->MCR, CAN_MCR_ABOM); - 800e4b2: 687b ldr r3, [r7, #4] - 800e4b4: 681b ldr r3, [r3, #0] - 800e4b6: 681a ldr r2, [r3, #0] - 800e4b8: 687b ldr r3, [r7, #4] - 800e4ba: 681b ldr r3, [r3, #0] - 800e4bc: f042 0240 orr.w r2, r2, #64 @ 0x40 - 800e4c0: 601a str r2, [r3, #0] - 800e4c2: e007 b.n 800e4d4 + 800e4ce: 687b ldr r3, [r7, #4] + 800e4d0: 681b ldr r3, [r3, #0] + 800e4d2: 681a ldr r2, [r3, #0] + 800e4d4: 687b ldr r3, [r7, #4] + 800e4d6: 681b ldr r3, [r3, #0] + 800e4d8: f042 0240 orr.w r2, r2, #64 @ 0x40 + 800e4dc: 601a str r2, [r3, #0] + 800e4de: e007 b.n 800e4f0 } else { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_ABOM); - 800e4c4: 687b ldr r3, [r7, #4] - 800e4c6: 681b ldr r3, [r3, #0] - 800e4c8: 681a ldr r2, [r3, #0] - 800e4ca: 687b ldr r3, [r7, #4] - 800e4cc: 681b ldr r3, [r3, #0] - 800e4ce: f022 0240 bic.w r2, r2, #64 @ 0x40 - 800e4d2: 601a str r2, [r3, #0] + 800e4e0: 687b ldr r3, [r7, #4] + 800e4e2: 681b ldr r3, [r3, #0] + 800e4e4: 681a ldr r2, [r3, #0] + 800e4e6: 687b ldr r3, [r7, #4] + 800e4e8: 681b ldr r3, [r3, #0] + 800e4ea: f022 0240 bic.w r2, r2, #64 @ 0x40 + 800e4ee: 601a str r2, [r3, #0] } /* Set the automatic wake-up mode */ if (hcan->Init.AutoWakeUp == ENABLE) - 800e4d4: 687b ldr r3, [r7, #4] - 800e4d6: 7e9b ldrb r3, [r3, #26] - 800e4d8: 2b01 cmp r3, #1 - 800e4da: d108 bne.n 800e4ee + 800e4f0: 687b ldr r3, [r7, #4] + 800e4f2: 7e9b ldrb r3, [r3, #26] + 800e4f4: 2b01 cmp r3, #1 + 800e4f6: d108 bne.n 800e50a { SET_BIT(hcan->Instance->MCR, CAN_MCR_AWUM); - 800e4dc: 687b ldr r3, [r7, #4] - 800e4de: 681b ldr r3, [r3, #0] - 800e4e0: 681a ldr r2, [r3, #0] - 800e4e2: 687b ldr r3, [r7, #4] - 800e4e4: 681b ldr r3, [r3, #0] - 800e4e6: f042 0220 orr.w r2, r2, #32 - 800e4ea: 601a str r2, [r3, #0] - 800e4ec: e007 b.n 800e4fe + 800e4f8: 687b ldr r3, [r7, #4] + 800e4fa: 681b ldr r3, [r3, #0] + 800e4fc: 681a ldr r2, [r3, #0] + 800e4fe: 687b ldr r3, [r7, #4] + 800e500: 681b ldr r3, [r3, #0] + 800e502: f042 0220 orr.w r2, r2, #32 + 800e506: 601a str r2, [r3, #0] + 800e508: e007 b.n 800e51a } else { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_AWUM); - 800e4ee: 687b ldr r3, [r7, #4] - 800e4f0: 681b ldr r3, [r3, #0] - 800e4f2: 681a ldr r2, [r3, #0] - 800e4f4: 687b ldr r3, [r7, #4] - 800e4f6: 681b ldr r3, [r3, #0] - 800e4f8: f022 0220 bic.w r2, r2, #32 - 800e4fc: 601a str r2, [r3, #0] + 800e50a: 687b ldr r3, [r7, #4] + 800e50c: 681b ldr r3, [r3, #0] + 800e50e: 681a ldr r2, [r3, #0] + 800e510: 687b ldr r3, [r7, #4] + 800e512: 681b ldr r3, [r3, #0] + 800e514: f022 0220 bic.w r2, r2, #32 + 800e518: 601a str r2, [r3, #0] } /* Set the automatic retransmission */ if (hcan->Init.AutoRetransmission == ENABLE) - 800e4fe: 687b ldr r3, [r7, #4] - 800e500: 7edb ldrb r3, [r3, #27] - 800e502: 2b01 cmp r3, #1 - 800e504: d108 bne.n 800e518 + 800e51a: 687b ldr r3, [r7, #4] + 800e51c: 7edb ldrb r3, [r3, #27] + 800e51e: 2b01 cmp r3, #1 + 800e520: d108 bne.n 800e534 { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_NART); - 800e506: 687b ldr r3, [r7, #4] - 800e508: 681b ldr r3, [r3, #0] - 800e50a: 681a ldr r2, [r3, #0] - 800e50c: 687b ldr r3, [r7, #4] - 800e50e: 681b ldr r3, [r3, #0] - 800e510: f022 0210 bic.w r2, r2, #16 - 800e514: 601a str r2, [r3, #0] - 800e516: e007 b.n 800e528 + 800e522: 687b ldr r3, [r7, #4] + 800e524: 681b ldr r3, [r3, #0] + 800e526: 681a ldr r2, [r3, #0] + 800e528: 687b ldr r3, [r7, #4] + 800e52a: 681b ldr r3, [r3, #0] + 800e52c: f022 0210 bic.w r2, r2, #16 + 800e530: 601a str r2, [r3, #0] + 800e532: e007 b.n 800e544 } else { SET_BIT(hcan->Instance->MCR, CAN_MCR_NART); - 800e518: 687b ldr r3, [r7, #4] - 800e51a: 681b ldr r3, [r3, #0] - 800e51c: 681a ldr r2, [r3, #0] - 800e51e: 687b ldr r3, [r7, #4] - 800e520: 681b ldr r3, [r3, #0] - 800e522: f042 0210 orr.w r2, r2, #16 - 800e526: 601a str r2, [r3, #0] + 800e534: 687b ldr r3, [r7, #4] + 800e536: 681b ldr r3, [r3, #0] + 800e538: 681a ldr r2, [r3, #0] + 800e53a: 687b ldr r3, [r7, #4] + 800e53c: 681b ldr r3, [r3, #0] + 800e53e: f042 0210 orr.w r2, r2, #16 + 800e542: 601a str r2, [r3, #0] } /* Set the receive FIFO locked mode */ if (hcan->Init.ReceiveFifoLocked == ENABLE) - 800e528: 687b ldr r3, [r7, #4] - 800e52a: 7f1b ldrb r3, [r3, #28] - 800e52c: 2b01 cmp r3, #1 - 800e52e: d108 bne.n 800e542 + 800e544: 687b ldr r3, [r7, #4] + 800e546: 7f1b ldrb r3, [r3, #28] + 800e548: 2b01 cmp r3, #1 + 800e54a: d108 bne.n 800e55e { SET_BIT(hcan->Instance->MCR, CAN_MCR_RFLM); - 800e530: 687b ldr r3, [r7, #4] - 800e532: 681b ldr r3, [r3, #0] - 800e534: 681a ldr r2, [r3, #0] - 800e536: 687b ldr r3, [r7, #4] - 800e538: 681b ldr r3, [r3, #0] - 800e53a: f042 0208 orr.w r2, r2, #8 - 800e53e: 601a str r2, [r3, #0] - 800e540: e007 b.n 800e552 + 800e54c: 687b ldr r3, [r7, #4] + 800e54e: 681b ldr r3, [r3, #0] + 800e550: 681a ldr r2, [r3, #0] + 800e552: 687b ldr r3, [r7, #4] + 800e554: 681b ldr r3, [r3, #0] + 800e556: f042 0208 orr.w r2, r2, #8 + 800e55a: 601a str r2, [r3, #0] + 800e55c: e007 b.n 800e56e } else { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_RFLM); - 800e542: 687b ldr r3, [r7, #4] - 800e544: 681b ldr r3, [r3, #0] - 800e546: 681a ldr r2, [r3, #0] - 800e548: 687b ldr r3, [r7, #4] - 800e54a: 681b ldr r3, [r3, #0] - 800e54c: f022 0208 bic.w r2, r2, #8 - 800e550: 601a str r2, [r3, #0] + 800e55e: 687b ldr r3, [r7, #4] + 800e560: 681b ldr r3, [r3, #0] + 800e562: 681a ldr r2, [r3, #0] + 800e564: 687b ldr r3, [r7, #4] + 800e566: 681b ldr r3, [r3, #0] + 800e568: f022 0208 bic.w r2, r2, #8 + 800e56c: 601a str r2, [r3, #0] } /* Set the transmit FIFO priority */ if (hcan->Init.TransmitFifoPriority == ENABLE) - 800e552: 687b ldr r3, [r7, #4] - 800e554: 7f5b ldrb r3, [r3, #29] - 800e556: 2b01 cmp r3, #1 - 800e558: d108 bne.n 800e56c + 800e56e: 687b ldr r3, [r7, #4] + 800e570: 7f5b ldrb r3, [r3, #29] + 800e572: 2b01 cmp r3, #1 + 800e574: d108 bne.n 800e588 { SET_BIT(hcan->Instance->MCR, CAN_MCR_TXFP); - 800e55a: 687b ldr r3, [r7, #4] - 800e55c: 681b ldr r3, [r3, #0] - 800e55e: 681a ldr r2, [r3, #0] - 800e560: 687b ldr r3, [r7, #4] - 800e562: 681b ldr r3, [r3, #0] - 800e564: f042 0204 orr.w r2, r2, #4 - 800e568: 601a str r2, [r3, #0] - 800e56a: e007 b.n 800e57c + 800e576: 687b ldr r3, [r7, #4] + 800e578: 681b ldr r3, [r3, #0] + 800e57a: 681a ldr r2, [r3, #0] + 800e57c: 687b ldr r3, [r7, #4] + 800e57e: 681b ldr r3, [r3, #0] + 800e580: f042 0204 orr.w r2, r2, #4 + 800e584: 601a str r2, [r3, #0] + 800e586: e007 b.n 800e598 } else { CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_TXFP); - 800e56c: 687b ldr r3, [r7, #4] - 800e56e: 681b ldr r3, [r3, #0] - 800e570: 681a ldr r2, [r3, #0] - 800e572: 687b ldr r3, [r7, #4] - 800e574: 681b ldr r3, [r3, #0] - 800e576: f022 0204 bic.w r2, r2, #4 - 800e57a: 601a str r2, [r3, #0] + 800e588: 687b ldr r3, [r7, #4] + 800e58a: 681b ldr r3, [r3, #0] + 800e58c: 681a ldr r2, [r3, #0] + 800e58e: 687b ldr r3, [r7, #4] + 800e590: 681b ldr r3, [r3, #0] + 800e592: f022 0204 bic.w r2, r2, #4 + 800e596: 601a str r2, [r3, #0] } /* Set the bit timing register */ WRITE_REG(hcan->Instance->BTR, (uint32_t)(hcan->Init.Mode | - 800e57c: 687b ldr r3, [r7, #4] - 800e57e: 689a ldr r2, [r3, #8] - 800e580: 687b ldr r3, [r7, #4] - 800e582: 68db ldr r3, [r3, #12] - 800e584: 431a orrs r2, r3 - 800e586: 687b ldr r3, [r7, #4] - 800e588: 691b ldr r3, [r3, #16] - 800e58a: 431a orrs r2, r3 - 800e58c: 687b ldr r3, [r7, #4] - 800e58e: 695b ldr r3, [r3, #20] - 800e590: ea42 0103 orr.w r1, r2, r3 - 800e594: 687b ldr r3, [r7, #4] - 800e596: 685b ldr r3, [r3, #4] - 800e598: 1e5a subs r2, r3, #1 - 800e59a: 687b ldr r3, [r7, #4] - 800e59c: 681b ldr r3, [r3, #0] - 800e59e: 430a orrs r2, r1 - 800e5a0: 61da str r2, [r3, #28] + 800e598: 687b ldr r3, [r7, #4] + 800e59a: 689a ldr r2, [r3, #8] + 800e59c: 687b ldr r3, [r7, #4] + 800e59e: 68db ldr r3, [r3, #12] + 800e5a0: 431a orrs r2, r3 + 800e5a2: 687b ldr r3, [r7, #4] + 800e5a4: 691b ldr r3, [r3, #16] + 800e5a6: 431a orrs r2, r3 + 800e5a8: 687b ldr r3, [r7, #4] + 800e5aa: 695b ldr r3, [r3, #20] + 800e5ac: ea42 0103 orr.w r1, r2, r3 + 800e5b0: 687b ldr r3, [r7, #4] + 800e5b2: 685b ldr r3, [r3, #4] + 800e5b4: 1e5a subs r2, r3, #1 + 800e5b6: 687b ldr r3, [r7, #4] + 800e5b8: 681b ldr r3, [r3, #0] + 800e5ba: 430a orrs r2, r1 + 800e5bc: 61da str r2, [r3, #28] hcan->Init.TimeSeg1 | hcan->Init.TimeSeg2 | (hcan->Init.Prescaler - 1U))); /* Initialize the error code */ hcan->ErrorCode = HAL_CAN_ERROR_NONE; - 800e5a2: 687b ldr r3, [r7, #4] - 800e5a4: 2200 movs r2, #0 - 800e5a6: 625a str r2, [r3, #36] @ 0x24 + 800e5be: 687b ldr r3, [r7, #4] + 800e5c0: 2200 movs r2, #0 + 800e5c2: 625a str r2, [r3, #36] @ 0x24 /* Initialize the CAN state */ hcan->State = HAL_CAN_STATE_READY; - 800e5a8: 687b ldr r3, [r7, #4] - 800e5aa: 2201 movs r2, #1 - 800e5ac: f883 2020 strb.w r2, [r3, #32] + 800e5c4: 687b ldr r3, [r7, #4] + 800e5c6: 2201 movs r2, #1 + 800e5c8: f883 2020 strb.w r2, [r3, #32] /* Return function status */ return HAL_OK; - 800e5b0: 2300 movs r3, #0 + 800e5cc: 2300 movs r3, #0 } - 800e5b2: 4618 mov r0, r3 - 800e5b4: 3710 adds r7, #16 - 800e5b6: 46bd mov sp, r7 - 800e5b8: bd80 pop {r7, pc} + 800e5ce: 4618 mov r0, r3 + 800e5d0: 3710 adds r7, #16 + 800e5d2: 46bd mov sp, r7 + 800e5d4: bd80 pop {r7, pc} ... -0800e5bc : +0800e5d8 : * @param sFilterConfig pointer to a CAN_FilterTypeDef structure that * contains the filter configuration information. * @retval None */ HAL_StatusTypeDef HAL_CAN_ConfigFilter(CAN_HandleTypeDef *hcan, const CAN_FilterTypeDef *sFilterConfig) { - 800e5bc: b480 push {r7} - 800e5be: b087 sub sp, #28 - 800e5c0: af00 add r7, sp, #0 - 800e5c2: 6078 str r0, [r7, #4] - 800e5c4: 6039 str r1, [r7, #0] + 800e5d8: b480 push {r7} + 800e5da: b087 sub sp, #28 + 800e5dc: af00 add r7, sp, #0 + 800e5de: 6078 str r0, [r7, #4] + 800e5e0: 6039 str r1, [r7, #0] uint32_t filternbrbitpos; CAN_TypeDef *can_ip = hcan->Instance; - 800e5c6: 687b ldr r3, [r7, #4] - 800e5c8: 681b ldr r3, [r3, #0] - 800e5ca: 617b str r3, [r7, #20] + 800e5e2: 687b ldr r3, [r7, #4] + 800e5e4: 681b ldr r3, [r3, #0] + 800e5e6: 617b str r3, [r7, #20] HAL_CAN_StateTypeDef state = hcan->State; - 800e5cc: 687b ldr r3, [r7, #4] - 800e5ce: f893 3020 ldrb.w r3, [r3, #32] - 800e5d2: 74fb strb r3, [r7, #19] + 800e5e8: 687b ldr r3, [r7, #4] + 800e5ea: f893 3020 ldrb.w r3, [r3, #32] + 800e5ee: 74fb strb r3, [r7, #19] if ((state == HAL_CAN_STATE_READY) || - 800e5d4: 7cfb ldrb r3, [r7, #19] - 800e5d6: 2b01 cmp r3, #1 - 800e5d8: d003 beq.n 800e5e2 - 800e5da: 7cfb ldrb r3, [r7, #19] - 800e5dc: 2b02 cmp r3, #2 - 800e5de: f040 80be bne.w 800e75e + 800e5f0: 7cfb ldrb r3, [r7, #19] + 800e5f2: 2b01 cmp r3, #1 + 800e5f4: d003 beq.n 800e5fe + 800e5f6: 7cfb ldrb r3, [r7, #19] + 800e5f8: 2b02 cmp r3, #2 + 800e5fa: f040 80be bne.w 800e77a assert_param(IS_CAN_FILTER_ACTIVATION(sFilterConfig->FilterActivation)); #if defined(CAN2) /* CAN1 and CAN2 are dual instances with 28 common filters banks */ /* Select master instance to access the filter banks */ can_ip = CAN1; - 800e5e2: 4b65 ldr r3, [pc, #404] @ (800e778 ) - 800e5e4: 617b str r3, [r7, #20] + 800e5fe: 4b65 ldr r3, [pc, #404] @ (800e794 ) + 800e600: 617b str r3, [r7, #20] /* Check the parameters */ assert_param(IS_CAN_FILTER_BANK_SINGLE(sFilterConfig->FilterBank)); #endif /* CAN3 */ /* Initialisation mode for the filter */ SET_BIT(can_ip->FMR, CAN_FMR_FINIT); - 800e5e6: 697b ldr r3, [r7, #20] - 800e5e8: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 - 800e5ec: f043 0201 orr.w r2, r3, #1 - 800e5f0: 697b ldr r3, [r7, #20] - 800e5f2: f8c3 2200 str.w r2, [r3, #512] @ 0x200 + 800e602: 697b ldr r3, [r7, #20] + 800e604: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 + 800e608: f043 0201 orr.w r2, r3, #1 + 800e60c: 697b ldr r3, [r7, #20] + 800e60e: f8c3 2200 str.w r2, [r3, #512] @ 0x200 #if defined(CAN2) /* Select the start filter number of CAN2 slave instance */ CLEAR_BIT(can_ip->FMR, CAN_FMR_CAN2SB); - 800e5f6: 697b ldr r3, [r7, #20] - 800e5f8: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 - 800e5fc: f423 527c bic.w r2, r3, #16128 @ 0x3f00 - 800e600: 697b ldr r3, [r7, #20] - 800e602: f8c3 2200 str.w r2, [r3, #512] @ 0x200 + 800e612: 697b ldr r3, [r7, #20] + 800e614: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 + 800e618: f423 527c bic.w r2, r3, #16128 @ 0x3f00 + 800e61c: 697b ldr r3, [r7, #20] + 800e61e: f8c3 2200 str.w r2, [r3, #512] @ 0x200 SET_BIT(can_ip->FMR, sFilterConfig->SlaveStartFilterBank << CAN_FMR_CAN2SB_Pos); - 800e606: 697b ldr r3, [r7, #20] - 800e608: f8d3 2200 ldr.w r2, [r3, #512] @ 0x200 - 800e60c: 683b ldr r3, [r7, #0] - 800e60e: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e610: 021b lsls r3, r3, #8 - 800e612: 431a orrs r2, r3 - 800e614: 697b ldr r3, [r7, #20] - 800e616: f8c3 2200 str.w r2, [r3, #512] @ 0x200 + 800e622: 697b ldr r3, [r7, #20] + 800e624: f8d3 2200 ldr.w r2, [r3, #512] @ 0x200 + 800e628: 683b ldr r3, [r7, #0] + 800e62a: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e62c: 021b lsls r3, r3, #8 + 800e62e: 431a orrs r2, r3 + 800e630: 697b ldr r3, [r7, #20] + 800e632: f8c3 2200 str.w r2, [r3, #512] @ 0x200 #endif /* CAN3 */ /* Convert filter number into bit position */ filternbrbitpos = (uint32_t)1 << (sFilterConfig->FilterBank & 0x1FU); - 800e61a: 683b ldr r3, [r7, #0] - 800e61c: 695b ldr r3, [r3, #20] - 800e61e: f003 031f and.w r3, r3, #31 - 800e622: 2201 movs r2, #1 - 800e624: fa02 f303 lsl.w r3, r2, r3 - 800e628: 60fb str r3, [r7, #12] + 800e636: 683b ldr r3, [r7, #0] + 800e638: 695b ldr r3, [r3, #20] + 800e63a: f003 031f and.w r3, r3, #31 + 800e63e: 2201 movs r2, #1 + 800e640: fa02 f303 lsl.w r3, r2, r3 + 800e644: 60fb str r3, [r7, #12] /* Filter Deactivation */ CLEAR_BIT(can_ip->FA1R, filternbrbitpos); - 800e62a: 697b ldr r3, [r7, #20] - 800e62c: f8d3 221c ldr.w r2, [r3, #540] @ 0x21c - 800e630: 68fb ldr r3, [r7, #12] - 800e632: 43db mvns r3, r3 - 800e634: 401a ands r2, r3 - 800e636: 697b ldr r3, [r7, #20] - 800e638: f8c3 221c str.w r2, [r3, #540] @ 0x21c + 800e646: 697b ldr r3, [r7, #20] + 800e648: f8d3 221c ldr.w r2, [r3, #540] @ 0x21c + 800e64c: 68fb ldr r3, [r7, #12] + 800e64e: 43db mvns r3, r3 + 800e650: 401a ands r2, r3 + 800e652: 697b ldr r3, [r7, #20] + 800e654: f8c3 221c str.w r2, [r3, #540] @ 0x21c /* Filter Scale */ if (sFilterConfig->FilterScale == CAN_FILTERSCALE_16BIT) - 800e63c: 683b ldr r3, [r7, #0] - 800e63e: 69db ldr r3, [r3, #28] - 800e640: 2b00 cmp r3, #0 - 800e642: d123 bne.n 800e68c + 800e658: 683b ldr r3, [r7, #0] + 800e65a: 69db ldr r3, [r3, #28] + 800e65c: 2b00 cmp r3, #0 + 800e65e: d123 bne.n 800e6a8 { /* 16-bit scale for the filter */ CLEAR_BIT(can_ip->FS1R, filternbrbitpos); - 800e644: 697b ldr r3, [r7, #20] - 800e646: f8d3 220c ldr.w r2, [r3, #524] @ 0x20c - 800e64a: 68fb ldr r3, [r7, #12] - 800e64c: 43db mvns r3, r3 - 800e64e: 401a ands r2, r3 - 800e650: 697b ldr r3, [r7, #20] - 800e652: f8c3 220c str.w r2, [r3, #524] @ 0x20c + 800e660: 697b ldr r3, [r7, #20] + 800e662: f8d3 220c ldr.w r2, [r3, #524] @ 0x20c + 800e666: 68fb ldr r3, [r7, #12] + 800e668: 43db mvns r3, r3 + 800e66a: 401a ands r2, r3 + 800e66c: 697b ldr r3, [r7, #20] + 800e66e: f8c3 220c str.w r2, [r3, #524] @ 0x20c /* First 16-bit identifier and First 16-bit mask */ /* Or First 16-bit identifier and Second 16-bit identifier */ can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdLow) << 16U) | - 800e656: 683b ldr r3, [r7, #0] - 800e658: 68db ldr r3, [r3, #12] - 800e65a: 0419 lsls r1, r3, #16 + 800e672: 683b ldr r3, [r7, #0] + 800e674: 68db ldr r3, [r3, #12] + 800e676: 0419 lsls r1, r3, #16 (0x0000FFFFU & (uint32_t)sFilterConfig->FilterIdLow); - 800e65c: 683b ldr r3, [r7, #0] - 800e65e: 685b ldr r3, [r3, #4] - 800e660: b29b uxth r3, r3 + 800e678: 683b ldr r3, [r7, #0] + 800e67a: 685b ldr r3, [r3, #4] + 800e67c: b29b uxth r3, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = - 800e662: 683a ldr r2, [r7, #0] - 800e664: 6952 ldr r2, [r2, #20] + 800e67e: 683a ldr r2, [r7, #0] + 800e680: 6952 ldr r2, [r2, #20] ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdLow) << 16U) | - 800e666: 4319 orrs r1, r3 + 800e682: 4319 orrs r1, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = - 800e668: 697b ldr r3, [r7, #20] - 800e66a: 3248 adds r2, #72 @ 0x48 - 800e66c: f843 1032 str.w r1, [r3, r2, lsl #3] + 800e684: 697b ldr r3, [r7, #20] + 800e686: 3248 adds r2, #72 @ 0x48 + 800e688: f843 1032 str.w r1, [r3, r2, lsl #3] /* Second 16-bit identifier and Second 16-bit mask */ /* Or Third 16-bit identifier and Fourth 16-bit identifier */ can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdHigh) << 16U) | - 800e670: 683b ldr r3, [r7, #0] - 800e672: 689b ldr r3, [r3, #8] - 800e674: 0419 lsls r1, r3, #16 + 800e68c: 683b ldr r3, [r7, #0] + 800e68e: 689b ldr r3, [r3, #8] + 800e690: 0419 lsls r1, r3, #16 (0x0000FFFFU & (uint32_t)sFilterConfig->FilterIdHigh); - 800e676: 683b ldr r3, [r7, #0] - 800e678: 681b ldr r3, [r3, #0] - 800e67a: b29a uxth r2, r3 + 800e692: 683b ldr r3, [r7, #0] + 800e694: 681b ldr r3, [r3, #0] + 800e696: b29a uxth r2, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = - 800e67c: 683b ldr r3, [r7, #0] - 800e67e: 695b ldr r3, [r3, #20] + 800e698: 683b ldr r3, [r7, #0] + 800e69a: 695b ldr r3, [r3, #20] ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdHigh) << 16U) | - 800e680: 430a orrs r2, r1 + 800e69c: 430a orrs r2, r1 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = - 800e682: 6979 ldr r1, [r7, #20] - 800e684: 3348 adds r3, #72 @ 0x48 - 800e686: 00db lsls r3, r3, #3 - 800e688: 440b add r3, r1 - 800e68a: 605a str r2, [r3, #4] + 800e69e: 6979 ldr r1, [r7, #20] + 800e6a0: 3348 adds r3, #72 @ 0x48 + 800e6a2: 00db lsls r3, r3, #3 + 800e6a4: 440b add r3, r1 + 800e6a6: 605a str r2, [r3, #4] } if (sFilterConfig->FilterScale == CAN_FILTERSCALE_32BIT) - 800e68c: 683b ldr r3, [r7, #0] - 800e68e: 69db ldr r3, [r3, #28] - 800e690: 2b01 cmp r3, #1 - 800e692: d122 bne.n 800e6da + 800e6a8: 683b ldr r3, [r7, #0] + 800e6aa: 69db ldr r3, [r3, #28] + 800e6ac: 2b01 cmp r3, #1 + 800e6ae: d122 bne.n 800e6f6 { /* 32-bit scale for the filter */ SET_BIT(can_ip->FS1R, filternbrbitpos); - 800e694: 697b ldr r3, [r7, #20] - 800e696: f8d3 220c ldr.w r2, [r3, #524] @ 0x20c - 800e69a: 68fb ldr r3, [r7, #12] - 800e69c: 431a orrs r2, r3 - 800e69e: 697b ldr r3, [r7, #20] - 800e6a0: f8c3 220c str.w r2, [r3, #524] @ 0x20c + 800e6b0: 697b ldr r3, [r7, #20] + 800e6b2: f8d3 220c ldr.w r2, [r3, #524] @ 0x20c + 800e6b6: 68fb ldr r3, [r7, #12] + 800e6b8: 431a orrs r2, r3 + 800e6ba: 697b ldr r3, [r7, #20] + 800e6bc: f8c3 220c str.w r2, [r3, #524] @ 0x20c /* 32-bit identifier or First 32-bit identifier */ can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterIdHigh) << 16U) | - 800e6a4: 683b ldr r3, [r7, #0] - 800e6a6: 681b ldr r3, [r3, #0] - 800e6a8: 0419 lsls r1, r3, #16 + 800e6c0: 683b ldr r3, [r7, #0] + 800e6c2: 681b ldr r3, [r3, #0] + 800e6c4: 0419 lsls r1, r3, #16 (0x0000FFFFU & (uint32_t)sFilterConfig->FilterIdLow); - 800e6aa: 683b ldr r3, [r7, #0] - 800e6ac: 685b ldr r3, [r3, #4] - 800e6ae: b29b uxth r3, r3 + 800e6c6: 683b ldr r3, [r7, #0] + 800e6c8: 685b ldr r3, [r3, #4] + 800e6ca: b29b uxth r3, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = - 800e6b0: 683a ldr r2, [r7, #0] - 800e6b2: 6952 ldr r2, [r2, #20] + 800e6cc: 683a ldr r2, [r7, #0] + 800e6ce: 6952 ldr r2, [r2, #20] ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterIdHigh) << 16U) | - 800e6b4: 4319 orrs r1, r3 + 800e6d0: 4319 orrs r1, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR1 = - 800e6b6: 697b ldr r3, [r7, #20] - 800e6b8: 3248 adds r2, #72 @ 0x48 - 800e6ba: f843 1032 str.w r1, [r3, r2, lsl #3] + 800e6d2: 697b ldr r3, [r7, #20] + 800e6d4: 3248 adds r2, #72 @ 0x48 + 800e6d6: f843 1032 str.w r1, [r3, r2, lsl #3] /* 32-bit mask or Second 32-bit identifier */ can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdHigh) << 16U) | - 800e6be: 683b ldr r3, [r7, #0] - 800e6c0: 689b ldr r3, [r3, #8] - 800e6c2: 0419 lsls r1, r3, #16 + 800e6da: 683b ldr r3, [r7, #0] + 800e6dc: 689b ldr r3, [r3, #8] + 800e6de: 0419 lsls r1, r3, #16 (0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdLow); - 800e6c4: 683b ldr r3, [r7, #0] - 800e6c6: 68db ldr r3, [r3, #12] - 800e6c8: b29a uxth r2, r3 + 800e6e0: 683b ldr r3, [r7, #0] + 800e6e2: 68db ldr r3, [r3, #12] + 800e6e4: b29a uxth r2, r3 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = - 800e6ca: 683b ldr r3, [r7, #0] - 800e6cc: 695b ldr r3, [r3, #20] + 800e6e6: 683b ldr r3, [r7, #0] + 800e6e8: 695b ldr r3, [r3, #20] ((0x0000FFFFU & (uint32_t)sFilterConfig->FilterMaskIdHigh) << 16U) | - 800e6ce: 430a orrs r2, r1 + 800e6ea: 430a orrs r2, r1 can_ip->sFilterRegister[sFilterConfig->FilterBank].FR2 = - 800e6d0: 6979 ldr r1, [r7, #20] - 800e6d2: 3348 adds r3, #72 @ 0x48 - 800e6d4: 00db lsls r3, r3, #3 - 800e6d6: 440b add r3, r1 - 800e6d8: 605a str r2, [r3, #4] + 800e6ec: 6979 ldr r1, [r7, #20] + 800e6ee: 3348 adds r3, #72 @ 0x48 + 800e6f0: 00db lsls r3, r3, #3 + 800e6f2: 440b add r3, r1 + 800e6f4: 605a str r2, [r3, #4] } /* Filter Mode */ if (sFilterConfig->FilterMode == CAN_FILTERMODE_IDMASK) - 800e6da: 683b ldr r3, [r7, #0] - 800e6dc: 699b ldr r3, [r3, #24] - 800e6de: 2b00 cmp r3, #0 - 800e6e0: d109 bne.n 800e6f6 + 800e6f6: 683b ldr r3, [r7, #0] + 800e6f8: 699b ldr r3, [r3, #24] + 800e6fa: 2b00 cmp r3, #0 + 800e6fc: d109 bne.n 800e712 { /* Id/Mask mode for the filter*/ CLEAR_BIT(can_ip->FM1R, filternbrbitpos); - 800e6e2: 697b ldr r3, [r7, #20] - 800e6e4: f8d3 2204 ldr.w r2, [r3, #516] @ 0x204 - 800e6e8: 68fb ldr r3, [r7, #12] - 800e6ea: 43db mvns r3, r3 - 800e6ec: 401a ands r2, r3 - 800e6ee: 697b ldr r3, [r7, #20] - 800e6f0: f8c3 2204 str.w r2, [r3, #516] @ 0x204 - 800e6f4: e007 b.n 800e706 + 800e6fe: 697b ldr r3, [r7, #20] + 800e700: f8d3 2204 ldr.w r2, [r3, #516] @ 0x204 + 800e704: 68fb ldr r3, [r7, #12] + 800e706: 43db mvns r3, r3 + 800e708: 401a ands r2, r3 + 800e70a: 697b ldr r3, [r7, #20] + 800e70c: f8c3 2204 str.w r2, [r3, #516] @ 0x204 + 800e710: e007 b.n 800e722 } else /* CAN_FilterInitStruct->CAN_FilterMode == CAN_FilterMode_IdList */ { /* Identifier list mode for the filter*/ SET_BIT(can_ip->FM1R, filternbrbitpos); - 800e6f6: 697b ldr r3, [r7, #20] - 800e6f8: f8d3 2204 ldr.w r2, [r3, #516] @ 0x204 - 800e6fc: 68fb ldr r3, [r7, #12] - 800e6fe: 431a orrs r2, r3 - 800e700: 697b ldr r3, [r7, #20] - 800e702: f8c3 2204 str.w r2, [r3, #516] @ 0x204 + 800e712: 697b ldr r3, [r7, #20] + 800e714: f8d3 2204 ldr.w r2, [r3, #516] @ 0x204 + 800e718: 68fb ldr r3, [r7, #12] + 800e71a: 431a orrs r2, r3 + 800e71c: 697b ldr r3, [r7, #20] + 800e71e: f8c3 2204 str.w r2, [r3, #516] @ 0x204 } /* Filter FIFO assignment */ if (sFilterConfig->FilterFIFOAssignment == CAN_FILTER_FIFO0) - 800e706: 683b ldr r3, [r7, #0] - 800e708: 691b ldr r3, [r3, #16] - 800e70a: 2b00 cmp r3, #0 - 800e70c: d109 bne.n 800e722 + 800e722: 683b ldr r3, [r7, #0] + 800e724: 691b ldr r3, [r3, #16] + 800e726: 2b00 cmp r3, #0 + 800e728: d109 bne.n 800e73e { /* FIFO 0 assignation for the filter */ CLEAR_BIT(can_ip->FFA1R, filternbrbitpos); - 800e70e: 697b ldr r3, [r7, #20] - 800e710: f8d3 2214 ldr.w r2, [r3, #532] @ 0x214 - 800e714: 68fb ldr r3, [r7, #12] - 800e716: 43db mvns r3, r3 - 800e718: 401a ands r2, r3 - 800e71a: 697b ldr r3, [r7, #20] - 800e71c: f8c3 2214 str.w r2, [r3, #532] @ 0x214 - 800e720: e007 b.n 800e732 + 800e72a: 697b ldr r3, [r7, #20] + 800e72c: f8d3 2214 ldr.w r2, [r3, #532] @ 0x214 + 800e730: 68fb ldr r3, [r7, #12] + 800e732: 43db mvns r3, r3 + 800e734: 401a ands r2, r3 + 800e736: 697b ldr r3, [r7, #20] + 800e738: f8c3 2214 str.w r2, [r3, #532] @ 0x214 + 800e73c: e007 b.n 800e74e } else { /* FIFO 1 assignation for the filter */ SET_BIT(can_ip->FFA1R, filternbrbitpos); - 800e722: 697b ldr r3, [r7, #20] - 800e724: f8d3 2214 ldr.w r2, [r3, #532] @ 0x214 - 800e728: 68fb ldr r3, [r7, #12] - 800e72a: 431a orrs r2, r3 - 800e72c: 697b ldr r3, [r7, #20] - 800e72e: f8c3 2214 str.w r2, [r3, #532] @ 0x214 + 800e73e: 697b ldr r3, [r7, #20] + 800e740: f8d3 2214 ldr.w r2, [r3, #532] @ 0x214 + 800e744: 68fb ldr r3, [r7, #12] + 800e746: 431a orrs r2, r3 + 800e748: 697b ldr r3, [r7, #20] + 800e74a: f8c3 2214 str.w r2, [r3, #532] @ 0x214 } /* Filter activation */ if (sFilterConfig->FilterActivation == CAN_FILTER_ENABLE) - 800e732: 683b ldr r3, [r7, #0] - 800e734: 6a1b ldr r3, [r3, #32] - 800e736: 2b01 cmp r3, #1 - 800e738: d107 bne.n 800e74a + 800e74e: 683b ldr r3, [r7, #0] + 800e750: 6a1b ldr r3, [r3, #32] + 800e752: 2b01 cmp r3, #1 + 800e754: d107 bne.n 800e766 { SET_BIT(can_ip->FA1R, filternbrbitpos); - 800e73a: 697b ldr r3, [r7, #20] - 800e73c: f8d3 221c ldr.w r2, [r3, #540] @ 0x21c - 800e740: 68fb ldr r3, [r7, #12] - 800e742: 431a orrs r2, r3 - 800e744: 697b ldr r3, [r7, #20] - 800e746: f8c3 221c str.w r2, [r3, #540] @ 0x21c + 800e756: 697b ldr r3, [r7, #20] + 800e758: f8d3 221c ldr.w r2, [r3, #540] @ 0x21c + 800e75c: 68fb ldr r3, [r7, #12] + 800e75e: 431a orrs r2, r3 + 800e760: 697b ldr r3, [r7, #20] + 800e762: f8c3 221c str.w r2, [r3, #540] @ 0x21c } /* Leave the initialisation mode for the filter */ CLEAR_BIT(can_ip->FMR, CAN_FMR_FINIT); - 800e74a: 697b ldr r3, [r7, #20] - 800e74c: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 - 800e750: f023 0201 bic.w r2, r3, #1 - 800e754: 697b ldr r3, [r7, #20] - 800e756: f8c3 2200 str.w r2, [r3, #512] @ 0x200 + 800e766: 697b ldr r3, [r7, #20] + 800e768: f8d3 3200 ldr.w r3, [r3, #512] @ 0x200 + 800e76c: f023 0201 bic.w r2, r3, #1 + 800e770: 697b ldr r3, [r7, #20] + 800e772: f8c3 2200 str.w r2, [r3, #512] @ 0x200 /* Return function status */ return HAL_OK; - 800e75a: 2300 movs r3, #0 - 800e75c: e006 b.n 800e76c + 800e776: 2300 movs r3, #0 + 800e778: e006 b.n 800e788 } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_INITIALIZED; - 800e75e: 687b ldr r3, [r7, #4] - 800e760: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e762: f443 2280 orr.w r2, r3, #262144 @ 0x40000 - 800e766: 687b ldr r3, [r7, #4] - 800e768: 625a str r2, [r3, #36] @ 0x24 + 800e77a: 687b ldr r3, [r7, #4] + 800e77c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e77e: f443 2280 orr.w r2, r3, #262144 @ 0x40000 + 800e782: 687b ldr r3, [r7, #4] + 800e784: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e76a: 2301 movs r3, #1 + 800e786: 2301 movs r3, #1 } } - 800e76c: 4618 mov r0, r3 - 800e76e: 371c adds r7, #28 - 800e770: 46bd mov sp, r7 - 800e772: bc80 pop {r7} - 800e774: 4770 bx lr - 800e776: bf00 nop - 800e778: 40006400 .word 0x40006400 + 800e788: 4618 mov r0, r3 + 800e78a: 371c adds r7, #28 + 800e78c: 46bd mov sp, r7 + 800e78e: bc80 pop {r7} + 800e790: 4770 bx lr + 800e792: bf00 nop + 800e794: 40006400 .word 0x40006400 -0800e77c : +0800e798 : * @param hcan pointer to an CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_Start(CAN_HandleTypeDef *hcan) { - 800e77c: b580 push {r7, lr} - 800e77e: b084 sub sp, #16 - 800e780: af00 add r7, sp, #0 - 800e782: 6078 str r0, [r7, #4] + 800e798: b580 push {r7, lr} + 800e79a: b084 sub sp, #16 + 800e79c: af00 add r7, sp, #0 + 800e79e: 6078 str r0, [r7, #4] uint32_t tickstart; if (hcan->State == HAL_CAN_STATE_READY) - 800e784: 687b ldr r3, [r7, #4] - 800e786: f893 3020 ldrb.w r3, [r3, #32] - 800e78a: b2db uxtb r3, r3 - 800e78c: 2b01 cmp r3, #1 - 800e78e: d12e bne.n 800e7ee + 800e7a0: 687b ldr r3, [r7, #4] + 800e7a2: f893 3020 ldrb.w r3, [r3, #32] + 800e7a6: b2db uxtb r3, r3 + 800e7a8: 2b01 cmp r3, #1 + 800e7aa: d12e bne.n 800e80a { /* Change CAN peripheral state */ hcan->State = HAL_CAN_STATE_LISTENING; - 800e790: 687b ldr r3, [r7, #4] - 800e792: 2202 movs r2, #2 - 800e794: f883 2020 strb.w r2, [r3, #32] + 800e7ac: 687b ldr r3, [r7, #4] + 800e7ae: 2202 movs r2, #2 + 800e7b0: f883 2020 strb.w r2, [r3, #32] /* Request leave initialisation */ CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_INRQ); - 800e798: 687b ldr r3, [r7, #4] - 800e79a: 681b ldr r3, [r3, #0] - 800e79c: 681a ldr r2, [r3, #0] - 800e79e: 687b ldr r3, [r7, #4] - 800e7a0: 681b ldr r3, [r3, #0] - 800e7a2: f022 0201 bic.w r2, r2, #1 - 800e7a6: 601a str r2, [r3, #0] + 800e7b4: 687b ldr r3, [r7, #4] + 800e7b6: 681b ldr r3, [r3, #0] + 800e7b8: 681a ldr r2, [r3, #0] + 800e7ba: 687b ldr r3, [r7, #4] + 800e7bc: 681b ldr r3, [r3, #0] + 800e7be: f022 0201 bic.w r2, r2, #1 + 800e7c2: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800e7a8: f7ff f8d8 bl 800d95c - 800e7ac: 60f8 str r0, [r7, #12] + 800e7c4: f7ff f8d8 bl 800d978 + 800e7c8: 60f8 str r0, [r7, #12] /* Wait the acknowledge */ while ((hcan->Instance->MSR & CAN_MSR_INAK) != 0U) - 800e7ae: e012 b.n 800e7d6 + 800e7ca: e012 b.n 800e7f2 { /* Check for the Timeout */ if ((HAL_GetTick() - tickstart) > CAN_TIMEOUT_VALUE) - 800e7b0: f7ff f8d4 bl 800d95c - 800e7b4: 4602 mov r2, r0 - 800e7b6: 68fb ldr r3, [r7, #12] - 800e7b8: 1ad3 subs r3, r2, r3 - 800e7ba: 2b0a cmp r3, #10 - 800e7bc: d90b bls.n 800e7d6 + 800e7cc: f7ff f8d4 bl 800d978 + 800e7d0: 4602 mov r2, r0 + 800e7d2: 68fb ldr r3, [r7, #12] + 800e7d4: 1ad3 subs r3, r2, r3 + 800e7d6: 2b0a cmp r3, #10 + 800e7d8: d90b bls.n 800e7f2 { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_TIMEOUT; - 800e7be: 687b ldr r3, [r7, #4] - 800e7c0: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e7c2: f443 3200 orr.w r2, r3, #131072 @ 0x20000 - 800e7c6: 687b ldr r3, [r7, #4] - 800e7c8: 625a str r2, [r3, #36] @ 0x24 + 800e7da: 687b ldr r3, [r7, #4] + 800e7dc: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e7de: f443 3200 orr.w r2, r3, #131072 @ 0x20000 + 800e7e2: 687b ldr r3, [r7, #4] + 800e7e4: 625a str r2, [r3, #36] @ 0x24 /* Change CAN state */ hcan->State = HAL_CAN_STATE_ERROR; - 800e7ca: 687b ldr r3, [r7, #4] - 800e7cc: 2205 movs r2, #5 - 800e7ce: f883 2020 strb.w r2, [r3, #32] + 800e7e6: 687b ldr r3, [r7, #4] + 800e7e8: 2205 movs r2, #5 + 800e7ea: f883 2020 strb.w r2, [r3, #32] return HAL_ERROR; - 800e7d2: 2301 movs r3, #1 - 800e7d4: e012 b.n 800e7fc + 800e7ee: 2301 movs r3, #1 + 800e7f0: e012 b.n 800e818 while ((hcan->Instance->MSR & CAN_MSR_INAK) != 0U) - 800e7d6: 687b ldr r3, [r7, #4] - 800e7d8: 681b ldr r3, [r3, #0] - 800e7da: 685b ldr r3, [r3, #4] - 800e7dc: f003 0301 and.w r3, r3, #1 - 800e7e0: 2b00 cmp r3, #0 - 800e7e2: d1e5 bne.n 800e7b0 + 800e7f2: 687b ldr r3, [r7, #4] + 800e7f4: 681b ldr r3, [r3, #0] + 800e7f6: 685b ldr r3, [r3, #4] + 800e7f8: f003 0301 and.w r3, r3, #1 + 800e7fc: 2b00 cmp r3, #0 + 800e7fe: d1e5 bne.n 800e7cc } } /* Reset the CAN ErrorCode */ hcan->ErrorCode = HAL_CAN_ERROR_NONE; - 800e7e4: 687b ldr r3, [r7, #4] - 800e7e6: 2200 movs r2, #0 - 800e7e8: 625a str r2, [r3, #36] @ 0x24 + 800e800: 687b ldr r3, [r7, #4] + 800e802: 2200 movs r2, #0 + 800e804: 625a str r2, [r3, #36] @ 0x24 /* Return function status */ return HAL_OK; - 800e7ea: 2300 movs r3, #0 - 800e7ec: e006 b.n 800e7fc + 800e806: 2300 movs r3, #0 + 800e808: e006 b.n 800e818 } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_READY; - 800e7ee: 687b ldr r3, [r7, #4] - 800e7f0: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e7f2: f443 2200 orr.w r2, r3, #524288 @ 0x80000 - 800e7f6: 687b ldr r3, [r7, #4] - 800e7f8: 625a str r2, [r3, #36] @ 0x24 + 800e80a: 687b ldr r3, [r7, #4] + 800e80c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e80e: f443 2200 orr.w r2, r3, #524288 @ 0x80000 + 800e812: 687b ldr r3, [r7, #4] + 800e814: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e7fa: 2301 movs r3, #1 + 800e816: 2301 movs r3, #1 } } - 800e7fc: 4618 mov r0, r3 - 800e7fe: 3710 adds r7, #16 - 800e800: 46bd mov sp, r7 - 800e802: bd80 pop {r7, pc} + 800e818: 4618 mov r0, r3 + 800e81a: 3710 adds r7, #16 + 800e81c: 46bd mov sp, r7 + 800e81e: bd80 pop {r7, pc} -0800e804 : +0800e820 : * @param hcan pointer to an CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_Stop(CAN_HandleTypeDef *hcan) { - 800e804: b580 push {r7, lr} - 800e806: b084 sub sp, #16 - 800e808: af00 add r7, sp, #0 - 800e80a: 6078 str r0, [r7, #4] + 800e820: b580 push {r7, lr} + 800e822: b084 sub sp, #16 + 800e824: af00 add r7, sp, #0 + 800e826: 6078 str r0, [r7, #4] uint32_t tickstart; if (hcan->State == HAL_CAN_STATE_LISTENING) - 800e80c: 687b ldr r3, [r7, #4] - 800e80e: f893 3020 ldrb.w r3, [r3, #32] - 800e812: b2db uxtb r3, r3 - 800e814: 2b02 cmp r3, #2 - 800e816: d133 bne.n 800e880 + 800e828: 687b ldr r3, [r7, #4] + 800e82a: f893 3020 ldrb.w r3, [r3, #32] + 800e82e: b2db uxtb r3, r3 + 800e830: 2b02 cmp r3, #2 + 800e832: d133 bne.n 800e89c { /* Request initialisation */ SET_BIT(hcan->Instance->MCR, CAN_MCR_INRQ); - 800e818: 687b ldr r3, [r7, #4] - 800e81a: 681b ldr r3, [r3, #0] - 800e81c: 681a ldr r2, [r3, #0] - 800e81e: 687b ldr r3, [r7, #4] - 800e820: 681b ldr r3, [r3, #0] - 800e822: f042 0201 orr.w r2, r2, #1 - 800e826: 601a str r2, [r3, #0] + 800e834: 687b ldr r3, [r7, #4] + 800e836: 681b ldr r3, [r3, #0] + 800e838: 681a ldr r2, [r3, #0] + 800e83a: 687b ldr r3, [r7, #4] + 800e83c: 681b ldr r3, [r3, #0] + 800e83e: f042 0201 orr.w r2, r2, #1 + 800e842: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800e828: f7ff f898 bl 800d95c - 800e82c: 60f8 str r0, [r7, #12] + 800e844: f7ff f898 bl 800d978 + 800e848: 60f8 str r0, [r7, #12] /* Wait the acknowledge */ while ((hcan->Instance->MSR & CAN_MSR_INAK) == 0U) - 800e82e: e012 b.n 800e856 + 800e84a: e012 b.n 800e872 { /* Check for the Timeout */ if ((HAL_GetTick() - tickstart) > CAN_TIMEOUT_VALUE) - 800e830: f7ff f894 bl 800d95c - 800e834: 4602 mov r2, r0 - 800e836: 68fb ldr r3, [r7, #12] - 800e838: 1ad3 subs r3, r2, r3 - 800e83a: 2b0a cmp r3, #10 - 800e83c: d90b bls.n 800e856 + 800e84c: f7ff f894 bl 800d978 + 800e850: 4602 mov r2, r0 + 800e852: 68fb ldr r3, [r7, #12] + 800e854: 1ad3 subs r3, r2, r3 + 800e856: 2b0a cmp r3, #10 + 800e858: d90b bls.n 800e872 { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_TIMEOUT; - 800e83e: 687b ldr r3, [r7, #4] - 800e840: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e842: f443 3200 orr.w r2, r3, #131072 @ 0x20000 - 800e846: 687b ldr r3, [r7, #4] - 800e848: 625a str r2, [r3, #36] @ 0x24 + 800e85a: 687b ldr r3, [r7, #4] + 800e85c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e85e: f443 3200 orr.w r2, r3, #131072 @ 0x20000 + 800e862: 687b ldr r3, [r7, #4] + 800e864: 625a str r2, [r3, #36] @ 0x24 /* Change CAN state */ hcan->State = HAL_CAN_STATE_ERROR; - 800e84a: 687b ldr r3, [r7, #4] - 800e84c: 2205 movs r2, #5 - 800e84e: f883 2020 strb.w r2, [r3, #32] + 800e866: 687b ldr r3, [r7, #4] + 800e868: 2205 movs r2, #5 + 800e86a: f883 2020 strb.w r2, [r3, #32] return HAL_ERROR; - 800e852: 2301 movs r3, #1 - 800e854: e01b b.n 800e88e + 800e86e: 2301 movs r3, #1 + 800e870: e01b b.n 800e8aa while ((hcan->Instance->MSR & CAN_MSR_INAK) == 0U) - 800e856: 687b ldr r3, [r7, #4] - 800e858: 681b ldr r3, [r3, #0] - 800e85a: 685b ldr r3, [r3, #4] - 800e85c: f003 0301 and.w r3, r3, #1 - 800e860: 2b00 cmp r3, #0 - 800e862: d0e5 beq.n 800e830 + 800e872: 687b ldr r3, [r7, #4] + 800e874: 681b ldr r3, [r3, #0] + 800e876: 685b ldr r3, [r3, #4] + 800e878: f003 0301 and.w r3, r3, #1 + 800e87c: 2b00 cmp r3, #0 + 800e87e: d0e5 beq.n 800e84c } } /* Exit from sleep mode */ CLEAR_BIT(hcan->Instance->MCR, CAN_MCR_SLEEP); - 800e864: 687b ldr r3, [r7, #4] - 800e866: 681b ldr r3, [r3, #0] - 800e868: 681a ldr r2, [r3, #0] - 800e86a: 687b ldr r3, [r7, #4] - 800e86c: 681b ldr r3, [r3, #0] - 800e86e: f022 0202 bic.w r2, r2, #2 - 800e872: 601a str r2, [r3, #0] + 800e880: 687b ldr r3, [r7, #4] + 800e882: 681b ldr r3, [r3, #0] + 800e884: 681a ldr r2, [r3, #0] + 800e886: 687b ldr r3, [r7, #4] + 800e888: 681b ldr r3, [r3, #0] + 800e88a: f022 0202 bic.w r2, r2, #2 + 800e88e: 601a str r2, [r3, #0] /* Change CAN peripheral state */ hcan->State = HAL_CAN_STATE_READY; - 800e874: 687b ldr r3, [r7, #4] - 800e876: 2201 movs r2, #1 - 800e878: f883 2020 strb.w r2, [r3, #32] + 800e890: 687b ldr r3, [r7, #4] + 800e892: 2201 movs r2, #1 + 800e894: f883 2020 strb.w r2, [r3, #32] /* Return function status */ return HAL_OK; - 800e87c: 2300 movs r3, #0 - 800e87e: e006 b.n 800e88e + 800e898: 2300 movs r3, #0 + 800e89a: e006 b.n 800e8aa } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_STARTED; - 800e880: 687b ldr r3, [r7, #4] - 800e882: 6a5b ldr r3, [r3, #36] @ 0x24 - 800e884: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 - 800e888: 687b ldr r3, [r7, #4] - 800e88a: 625a str r2, [r3, #36] @ 0x24 + 800e89c: 687b ldr r3, [r7, #4] + 800e89e: 6a5b ldr r3, [r3, #36] @ 0x24 + 800e8a0: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 + 800e8a4: 687b ldr r3, [r7, #4] + 800e8a6: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800e88c: 2301 movs r3, #1 + 800e8a8: 2301 movs r3, #1 } } - 800e88e: 4618 mov r0, r3 - 800e890: 3710 adds r7, #16 - 800e892: 46bd mov sp, r7 - 800e894: bd80 pop {r7, pc} + 800e8aa: 4618 mov r0, r3 + 800e8ac: 3710 adds r7, #16 + 800e8ae: 46bd mov sp, r7 + 800e8b0: bd80 pop {r7, pc} -0800e896 : +0800e8b2 : * This parameter can be a value of @arg CAN_Tx_Mailboxes. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_AddTxMessage(CAN_HandleTypeDef *hcan, const CAN_TxHeaderTypeDef *pHeader, const uint8_t aData[], uint32_t *pTxMailbox) { - 800e896: b480 push {r7} - 800e898: b089 sub sp, #36 @ 0x24 - 800e89a: af00 add r7, sp, #0 - 800e89c: 60f8 str r0, [r7, #12] - 800e89e: 60b9 str r1, [r7, #8] - 800e8a0: 607a str r2, [r7, #4] - 800e8a2: 603b str r3, [r7, #0] + 800e8b2: b480 push {r7} + 800e8b4: b089 sub sp, #36 @ 0x24 + 800e8b6: af00 add r7, sp, #0 + 800e8b8: 60f8 str r0, [r7, #12] + 800e8ba: 60b9 str r1, [r7, #8] + 800e8bc: 607a str r2, [r7, #4] + 800e8be: 603b str r3, [r7, #0] uint32_t transmitmailbox; HAL_CAN_StateTypeDef state = hcan->State; - 800e8a4: 68fb ldr r3, [r7, #12] - 800e8a6: f893 3020 ldrb.w r3, [r3, #32] - 800e8aa: 77fb strb r3, [r7, #31] + 800e8c0: 68fb ldr r3, [r7, #12] + 800e8c2: f893 3020 ldrb.w r3, [r3, #32] + 800e8c6: 77fb strb r3, [r7, #31] uint32_t tsr = READ_REG(hcan->Instance->TSR); - 800e8ac: 68fb ldr r3, [r7, #12] - 800e8ae: 681b ldr r3, [r3, #0] - 800e8b0: 689b ldr r3, [r3, #8] - 800e8b2: 61bb str r3, [r7, #24] + 800e8c8: 68fb ldr r3, [r7, #12] + 800e8ca: 681b ldr r3, [r3, #0] + 800e8cc: 689b ldr r3, [r3, #8] + 800e8ce: 61bb str r3, [r7, #24] { assert_param(IS_CAN_EXTID(pHeader->ExtId)); } assert_param(IS_FUNCTIONAL_STATE(pHeader->TransmitGlobalTime)); if ((state == HAL_CAN_STATE_READY) || - 800e8b4: 7ffb ldrb r3, [r7, #31] - 800e8b6: 2b01 cmp r3, #1 - 800e8b8: d003 beq.n 800e8c2 - 800e8ba: 7ffb ldrb r3, [r7, #31] - 800e8bc: 2b02 cmp r3, #2 - 800e8be: f040 80ad bne.w 800ea1c + 800e8d0: 7ffb ldrb r3, [r7, #31] + 800e8d2: 2b01 cmp r3, #1 + 800e8d4: d003 beq.n 800e8de + 800e8d6: 7ffb ldrb r3, [r7, #31] + 800e8d8: 2b02 cmp r3, #2 + 800e8da: f040 80ad bne.w 800ea38 (state == HAL_CAN_STATE_LISTENING)) { /* Check that all the Tx mailboxes are not full */ if (((tsr & CAN_TSR_TME0) != 0U) || - 800e8c2: 69bb ldr r3, [r7, #24] - 800e8c4: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 - 800e8c8: 2b00 cmp r3, #0 - 800e8ca: d10a bne.n 800e8e2 + 800e8de: 69bb ldr r3, [r7, #24] + 800e8e0: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 + 800e8e4: 2b00 cmp r3, #0 + 800e8e6: d10a bne.n 800e8fe ((tsr & CAN_TSR_TME1) != 0U) || - 800e8cc: 69bb ldr r3, [r7, #24] - 800e8ce: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 800e8e8: 69bb ldr r3, [r7, #24] + 800e8ea: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 if (((tsr & CAN_TSR_TME0) != 0U) || - 800e8d2: 2b00 cmp r3, #0 - 800e8d4: d105 bne.n 800e8e2 + 800e8ee: 2b00 cmp r3, #0 + 800e8f0: d105 bne.n 800e8fe ((tsr & CAN_TSR_TME2) != 0U)) - 800e8d6: 69bb ldr r3, [r7, #24] - 800e8d8: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800e8f2: 69bb ldr r3, [r7, #24] + 800e8f4: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 ((tsr & CAN_TSR_TME1) != 0U) || - 800e8dc: 2b00 cmp r3, #0 - 800e8de: f000 8095 beq.w 800ea0c + 800e8f8: 2b00 cmp r3, #0 + 800e8fa: f000 8095 beq.w 800ea28 { /* Select an empty transmit mailbox */ transmitmailbox = (tsr & CAN_TSR_CODE) >> CAN_TSR_CODE_Pos; - 800e8e2: 69bb ldr r3, [r7, #24] - 800e8e4: 0e1b lsrs r3, r3, #24 - 800e8e6: f003 0303 and.w r3, r3, #3 - 800e8ea: 617b str r3, [r7, #20] + 800e8fe: 69bb ldr r3, [r7, #24] + 800e900: 0e1b lsrs r3, r3, #24 + 800e902: f003 0303 and.w r3, r3, #3 + 800e906: 617b str r3, [r7, #20] /* Store the Tx mailbox */ *pTxMailbox = (uint32_t)1 << transmitmailbox; - 800e8ec: 2201 movs r2, #1 - 800e8ee: 697b ldr r3, [r7, #20] - 800e8f0: 409a lsls r2, r3 - 800e8f2: 683b ldr r3, [r7, #0] - 800e8f4: 601a str r2, [r3, #0] + 800e908: 2201 movs r2, #1 + 800e90a: 697b ldr r3, [r7, #20] + 800e90c: 409a lsls r2, r3 + 800e90e: 683b ldr r3, [r7, #0] + 800e910: 601a str r2, [r3, #0] /* Set up the Id */ if (pHeader->IDE == CAN_ID_STD) - 800e8f6: 68bb ldr r3, [r7, #8] - 800e8f8: 689b ldr r3, [r3, #8] - 800e8fa: 2b00 cmp r3, #0 - 800e8fc: d10d bne.n 800e91a + 800e912: 68bb ldr r3, [r7, #8] + 800e914: 689b ldr r3, [r3, #8] + 800e916: 2b00 cmp r3, #0 + 800e918: d10d bne.n 800e936 { hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->StdId << CAN_TI0R_STID_Pos) | - 800e8fe: 68bb ldr r3, [r7, #8] - 800e900: 681b ldr r3, [r3, #0] - 800e902: 055a lsls r2, r3, #21 + 800e91a: 68bb ldr r3, [r7, #8] + 800e91c: 681b ldr r3, [r3, #0] + 800e91e: 055a lsls r2, r3, #21 pHeader->RTR); - 800e904: 68bb ldr r3, [r7, #8] - 800e906: 68db ldr r3, [r3, #12] + 800e920: 68bb ldr r3, [r7, #8] + 800e922: 68db ldr r3, [r3, #12] hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->StdId << CAN_TI0R_STID_Pos) | - 800e908: 68f9 ldr r1, [r7, #12] - 800e90a: 6809 ldr r1, [r1, #0] - 800e90c: 431a orrs r2, r3 - 800e90e: 697b ldr r3, [r7, #20] - 800e910: 3318 adds r3, #24 - 800e912: 011b lsls r3, r3, #4 - 800e914: 440b add r3, r1 - 800e916: 601a str r2, [r3, #0] - 800e918: e00f b.n 800e93a + 800e924: 68f9 ldr r1, [r7, #12] + 800e926: 6809 ldr r1, [r1, #0] + 800e928: 431a orrs r2, r3 + 800e92a: 697b ldr r3, [r7, #20] + 800e92c: 3318 adds r3, #24 + 800e92e: 011b lsls r3, r3, #4 + 800e930: 440b add r3, r1 + 800e932: 601a str r2, [r3, #0] + 800e934: e00f b.n 800e956 } else { hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->ExtId << CAN_TI0R_EXID_Pos) | - 800e91a: 68bb ldr r3, [r7, #8] - 800e91c: 685b ldr r3, [r3, #4] - 800e91e: 00da lsls r2, r3, #3 + 800e936: 68bb ldr r3, [r7, #8] + 800e938: 685b ldr r3, [r3, #4] + 800e93a: 00da lsls r2, r3, #3 pHeader->IDE | - 800e920: 68bb ldr r3, [r7, #8] - 800e922: 689b ldr r3, [r3, #8] + 800e93c: 68bb ldr r3, [r7, #8] + 800e93e: 689b ldr r3, [r3, #8] hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->ExtId << CAN_TI0R_EXID_Pos) | - 800e924: 431a orrs r2, r3 + 800e940: 431a orrs r2, r3 pHeader->RTR); - 800e926: 68bb ldr r3, [r7, #8] - 800e928: 68db ldr r3, [r3, #12] + 800e942: 68bb ldr r3, [r7, #8] + 800e944: 68db ldr r3, [r3, #12] hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->ExtId << CAN_TI0R_EXID_Pos) | - 800e92a: 68f9 ldr r1, [r7, #12] - 800e92c: 6809 ldr r1, [r1, #0] + 800e946: 68f9 ldr r1, [r7, #12] + 800e948: 6809 ldr r1, [r1, #0] pHeader->IDE | - 800e92e: 431a orrs r2, r3 + 800e94a: 431a orrs r2, r3 hcan->Instance->sTxMailBox[transmitmailbox].TIR = ((pHeader->ExtId << CAN_TI0R_EXID_Pos) | - 800e930: 697b ldr r3, [r7, #20] - 800e932: 3318 adds r3, #24 - 800e934: 011b lsls r3, r3, #4 - 800e936: 440b add r3, r1 - 800e938: 601a str r2, [r3, #0] + 800e94c: 697b ldr r3, [r7, #20] + 800e94e: 3318 adds r3, #24 + 800e950: 011b lsls r3, r3, #4 + 800e952: 440b add r3, r1 + 800e954: 601a str r2, [r3, #0] } /* Set up the DLC */ hcan->Instance->sTxMailBox[transmitmailbox].TDTR = (pHeader->DLC); - 800e93a: 68fb ldr r3, [r7, #12] - 800e93c: 6819 ldr r1, [r3, #0] - 800e93e: 68bb ldr r3, [r7, #8] - 800e940: 691a ldr r2, [r3, #16] - 800e942: 697b ldr r3, [r7, #20] - 800e944: 3318 adds r3, #24 - 800e946: 011b lsls r3, r3, #4 - 800e948: 440b add r3, r1 - 800e94a: 3304 adds r3, #4 - 800e94c: 601a str r2, [r3, #0] + 800e956: 68fb ldr r3, [r7, #12] + 800e958: 6819 ldr r1, [r3, #0] + 800e95a: 68bb ldr r3, [r7, #8] + 800e95c: 691a ldr r2, [r3, #16] + 800e95e: 697b ldr r3, [r7, #20] + 800e960: 3318 adds r3, #24 + 800e962: 011b lsls r3, r3, #4 + 800e964: 440b add r3, r1 + 800e966: 3304 adds r3, #4 + 800e968: 601a str r2, [r3, #0] /* Set up the Transmit Global Time mode */ if (pHeader->TransmitGlobalTime == ENABLE) - 800e94e: 68bb ldr r3, [r7, #8] - 800e950: 7d1b ldrb r3, [r3, #20] - 800e952: 2b01 cmp r3, #1 - 800e954: d111 bne.n 800e97a + 800e96a: 68bb ldr r3, [r7, #8] + 800e96c: 7d1b ldrb r3, [r3, #20] + 800e96e: 2b01 cmp r3, #1 + 800e970: d111 bne.n 800e996 { SET_BIT(hcan->Instance->sTxMailBox[transmitmailbox].TDTR, CAN_TDT0R_TGT); - 800e956: 68fb ldr r3, [r7, #12] - 800e958: 681a ldr r2, [r3, #0] - 800e95a: 697b ldr r3, [r7, #20] - 800e95c: 3318 adds r3, #24 - 800e95e: 011b lsls r3, r3, #4 - 800e960: 4413 add r3, r2 - 800e962: 3304 adds r3, #4 - 800e964: 681b ldr r3, [r3, #0] - 800e966: 68fa ldr r2, [r7, #12] - 800e968: 6811 ldr r1, [r2, #0] - 800e96a: f443 7280 orr.w r2, r3, #256 @ 0x100 - 800e96e: 697b ldr r3, [r7, #20] - 800e970: 3318 adds r3, #24 - 800e972: 011b lsls r3, r3, #4 - 800e974: 440b add r3, r1 - 800e976: 3304 adds r3, #4 - 800e978: 601a str r2, [r3, #0] + 800e972: 68fb ldr r3, [r7, #12] + 800e974: 681a ldr r2, [r3, #0] + 800e976: 697b ldr r3, [r7, #20] + 800e978: 3318 adds r3, #24 + 800e97a: 011b lsls r3, r3, #4 + 800e97c: 4413 add r3, r2 + 800e97e: 3304 adds r3, #4 + 800e980: 681b ldr r3, [r3, #0] + 800e982: 68fa ldr r2, [r7, #12] + 800e984: 6811 ldr r1, [r2, #0] + 800e986: f443 7280 orr.w r2, r3, #256 @ 0x100 + 800e98a: 697b ldr r3, [r7, #20] + 800e98c: 3318 adds r3, #24 + 800e98e: 011b lsls r3, r3, #4 + 800e990: 440b add r3, r1 + 800e992: 3304 adds r3, #4 + 800e994: 601a str r2, [r3, #0] } /* Set up the data field */ WRITE_REG(hcan->Instance->sTxMailBox[transmitmailbox].TDHR, - 800e97a: 687b ldr r3, [r7, #4] - 800e97c: 3307 adds r3, #7 - 800e97e: 781b ldrb r3, [r3, #0] - 800e980: 061a lsls r2, r3, #24 - 800e982: 687b ldr r3, [r7, #4] - 800e984: 3306 adds r3, #6 - 800e986: 781b ldrb r3, [r3, #0] - 800e988: 041b lsls r3, r3, #16 - 800e98a: 431a orrs r2, r3 - 800e98c: 687b ldr r3, [r7, #4] - 800e98e: 3305 adds r3, #5 - 800e990: 781b ldrb r3, [r3, #0] - 800e992: 021b lsls r3, r3, #8 - 800e994: 4313 orrs r3, r2 - 800e996: 687a ldr r2, [r7, #4] - 800e998: 3204 adds r2, #4 - 800e99a: 7812 ldrb r2, [r2, #0] - 800e99c: 4610 mov r0, r2 - 800e99e: 68fa ldr r2, [r7, #12] - 800e9a0: 6811 ldr r1, [r2, #0] - 800e9a2: ea43 0200 orr.w r2, r3, r0 - 800e9a6: 697b ldr r3, [r7, #20] - 800e9a8: 011b lsls r3, r3, #4 - 800e9aa: 440b add r3, r1 - 800e9ac: f503 73c6 add.w r3, r3, #396 @ 0x18c - 800e9b0: 601a str r2, [r3, #0] + 800e996: 687b ldr r3, [r7, #4] + 800e998: 3307 adds r3, #7 + 800e99a: 781b ldrb r3, [r3, #0] + 800e99c: 061a lsls r2, r3, #24 + 800e99e: 687b ldr r3, [r7, #4] + 800e9a0: 3306 adds r3, #6 + 800e9a2: 781b ldrb r3, [r3, #0] + 800e9a4: 041b lsls r3, r3, #16 + 800e9a6: 431a orrs r2, r3 + 800e9a8: 687b ldr r3, [r7, #4] + 800e9aa: 3305 adds r3, #5 + 800e9ac: 781b ldrb r3, [r3, #0] + 800e9ae: 021b lsls r3, r3, #8 + 800e9b0: 4313 orrs r3, r2 + 800e9b2: 687a ldr r2, [r7, #4] + 800e9b4: 3204 adds r2, #4 + 800e9b6: 7812 ldrb r2, [r2, #0] + 800e9b8: 4610 mov r0, r2 + 800e9ba: 68fa ldr r2, [r7, #12] + 800e9bc: 6811 ldr r1, [r2, #0] + 800e9be: ea43 0200 orr.w r2, r3, r0 + 800e9c2: 697b ldr r3, [r7, #20] + 800e9c4: 011b lsls r3, r3, #4 + 800e9c6: 440b add r3, r1 + 800e9c8: f503 73c6 add.w r3, r3, #396 @ 0x18c + 800e9cc: 601a str r2, [r3, #0] ((uint32_t)aData[7] << CAN_TDH0R_DATA7_Pos) | ((uint32_t)aData[6] << CAN_TDH0R_DATA6_Pos) | ((uint32_t)aData[5] << CAN_TDH0R_DATA5_Pos) | ((uint32_t)aData[4] << CAN_TDH0R_DATA4_Pos)); WRITE_REG(hcan->Instance->sTxMailBox[transmitmailbox].TDLR, - 800e9b2: 687b ldr r3, [r7, #4] - 800e9b4: 3303 adds r3, #3 - 800e9b6: 781b ldrb r3, [r3, #0] - 800e9b8: 061a lsls r2, r3, #24 - 800e9ba: 687b ldr r3, [r7, #4] - 800e9bc: 3302 adds r3, #2 - 800e9be: 781b ldrb r3, [r3, #0] - 800e9c0: 041b lsls r3, r3, #16 - 800e9c2: 431a orrs r2, r3 - 800e9c4: 687b ldr r3, [r7, #4] - 800e9c6: 3301 adds r3, #1 - 800e9c8: 781b ldrb r3, [r3, #0] - 800e9ca: 021b lsls r3, r3, #8 - 800e9cc: 4313 orrs r3, r2 - 800e9ce: 687a ldr r2, [r7, #4] - 800e9d0: 7812 ldrb r2, [r2, #0] - 800e9d2: 4610 mov r0, r2 - 800e9d4: 68fa ldr r2, [r7, #12] - 800e9d6: 6811 ldr r1, [r2, #0] - 800e9d8: ea43 0200 orr.w r2, r3, r0 - 800e9dc: 697b ldr r3, [r7, #20] - 800e9de: 011b lsls r3, r3, #4 - 800e9e0: 440b add r3, r1 - 800e9e2: f503 73c4 add.w r3, r3, #392 @ 0x188 - 800e9e6: 601a str r2, [r3, #0] + 800e9ce: 687b ldr r3, [r7, #4] + 800e9d0: 3303 adds r3, #3 + 800e9d2: 781b ldrb r3, [r3, #0] + 800e9d4: 061a lsls r2, r3, #24 + 800e9d6: 687b ldr r3, [r7, #4] + 800e9d8: 3302 adds r3, #2 + 800e9da: 781b ldrb r3, [r3, #0] + 800e9dc: 041b lsls r3, r3, #16 + 800e9de: 431a orrs r2, r3 + 800e9e0: 687b ldr r3, [r7, #4] + 800e9e2: 3301 adds r3, #1 + 800e9e4: 781b ldrb r3, [r3, #0] + 800e9e6: 021b lsls r3, r3, #8 + 800e9e8: 4313 orrs r3, r2 + 800e9ea: 687a ldr r2, [r7, #4] + 800e9ec: 7812 ldrb r2, [r2, #0] + 800e9ee: 4610 mov r0, r2 + 800e9f0: 68fa ldr r2, [r7, #12] + 800e9f2: 6811 ldr r1, [r2, #0] + 800e9f4: ea43 0200 orr.w r2, r3, r0 + 800e9f8: 697b ldr r3, [r7, #20] + 800e9fa: 011b lsls r3, r3, #4 + 800e9fc: 440b add r3, r1 + 800e9fe: f503 73c4 add.w r3, r3, #392 @ 0x188 + 800ea02: 601a str r2, [r3, #0] ((uint32_t)aData[2] << CAN_TDL0R_DATA2_Pos) | ((uint32_t)aData[1] << CAN_TDL0R_DATA1_Pos) | ((uint32_t)aData[0] << CAN_TDL0R_DATA0_Pos)); /* Request transmission */ SET_BIT(hcan->Instance->sTxMailBox[transmitmailbox].TIR, CAN_TI0R_TXRQ); - 800e9e8: 68fb ldr r3, [r7, #12] - 800e9ea: 681a ldr r2, [r3, #0] - 800e9ec: 697b ldr r3, [r7, #20] - 800e9ee: 3318 adds r3, #24 - 800e9f0: 011b lsls r3, r3, #4 - 800e9f2: 4413 add r3, r2 - 800e9f4: 681b ldr r3, [r3, #0] - 800e9f6: 68fa ldr r2, [r7, #12] - 800e9f8: 6811 ldr r1, [r2, #0] - 800e9fa: f043 0201 orr.w r2, r3, #1 - 800e9fe: 697b ldr r3, [r7, #20] - 800ea00: 3318 adds r3, #24 - 800ea02: 011b lsls r3, r3, #4 - 800ea04: 440b add r3, r1 - 800ea06: 601a str r2, [r3, #0] + 800ea04: 68fb ldr r3, [r7, #12] + 800ea06: 681a ldr r2, [r3, #0] + 800ea08: 697b ldr r3, [r7, #20] + 800ea0a: 3318 adds r3, #24 + 800ea0c: 011b lsls r3, r3, #4 + 800ea0e: 4413 add r3, r2 + 800ea10: 681b ldr r3, [r3, #0] + 800ea12: 68fa ldr r2, [r7, #12] + 800ea14: 6811 ldr r1, [r2, #0] + 800ea16: f043 0201 orr.w r2, r3, #1 + 800ea1a: 697b ldr r3, [r7, #20] + 800ea1c: 3318 adds r3, #24 + 800ea1e: 011b lsls r3, r3, #4 + 800ea20: 440b add r3, r1 + 800ea22: 601a str r2, [r3, #0] /* Return function status */ return HAL_OK; - 800ea08: 2300 movs r3, #0 - 800ea0a: e00e b.n 800ea2a + 800ea24: 2300 movs r3, #0 + 800ea26: e00e b.n 800ea46 } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_PARAM; - 800ea0c: 68fb ldr r3, [r7, #12] - 800ea0e: 6a5b ldr r3, [r3, #36] @ 0x24 - 800ea10: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 - 800ea14: 68fb ldr r3, [r7, #12] - 800ea16: 625a str r2, [r3, #36] @ 0x24 + 800ea28: 68fb ldr r3, [r7, #12] + 800ea2a: 6a5b ldr r3, [r3, #36] @ 0x24 + 800ea2c: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 + 800ea30: 68fb ldr r3, [r7, #12] + 800ea32: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800ea18: 2301 movs r3, #1 - 800ea1a: e006 b.n 800ea2a + 800ea34: 2301 movs r3, #1 + 800ea36: e006 b.n 800ea46 } } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_INITIALIZED; - 800ea1c: 68fb ldr r3, [r7, #12] - 800ea1e: 6a5b ldr r3, [r3, #36] @ 0x24 - 800ea20: f443 2280 orr.w r2, r3, #262144 @ 0x40000 - 800ea24: 68fb ldr r3, [r7, #12] - 800ea26: 625a str r2, [r3, #36] @ 0x24 + 800ea38: 68fb ldr r3, [r7, #12] + 800ea3a: 6a5b ldr r3, [r3, #36] @ 0x24 + 800ea3c: f443 2280 orr.w r2, r3, #262144 @ 0x40000 + 800ea40: 68fb ldr r3, [r7, #12] + 800ea42: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800ea28: 2301 movs r3, #1 + 800ea44: 2301 movs r3, #1 } } - 800ea2a: 4618 mov r0, r3 - 800ea2c: 3724 adds r7, #36 @ 0x24 - 800ea2e: 46bd mov sp, r7 - 800ea30: bc80 pop {r7} - 800ea32: 4770 bx lr + 800ea46: 4618 mov r0, r3 + 800ea48: 3724 adds r7, #36 @ 0x24 + 800ea4a: 46bd mov sp, r7 + 800ea4c: bc80 pop {r7} + 800ea4e: 4770 bx lr -0800ea34 : +0800ea50 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval Number of free Tx Mailboxes. */ uint32_t HAL_CAN_GetTxMailboxesFreeLevel(const CAN_HandleTypeDef *hcan) { - 800ea34: b480 push {r7} - 800ea36: b085 sub sp, #20 - 800ea38: af00 add r7, sp, #0 - 800ea3a: 6078 str r0, [r7, #4] + 800ea50: b480 push {r7} + 800ea52: b085 sub sp, #20 + 800ea54: af00 add r7, sp, #0 + 800ea56: 6078 str r0, [r7, #4] uint32_t freelevel = 0U; - 800ea3c: 2300 movs r3, #0 - 800ea3e: 60fb str r3, [r7, #12] + 800ea58: 2300 movs r3, #0 + 800ea5a: 60fb str r3, [r7, #12] HAL_CAN_StateTypeDef state = hcan->State; - 800ea40: 687b ldr r3, [r7, #4] - 800ea42: f893 3020 ldrb.w r3, [r3, #32] - 800ea46: 72fb strb r3, [r7, #11] + 800ea5c: 687b ldr r3, [r7, #4] + 800ea5e: f893 3020 ldrb.w r3, [r3, #32] + 800ea62: 72fb strb r3, [r7, #11] if ((state == HAL_CAN_STATE_READY) || - 800ea48: 7afb ldrb r3, [r7, #11] - 800ea4a: 2b01 cmp r3, #1 - 800ea4c: d002 beq.n 800ea54 - 800ea4e: 7afb ldrb r3, [r7, #11] - 800ea50: 2b02 cmp r3, #2 - 800ea52: d11d bne.n 800ea90 + 800ea64: 7afb ldrb r3, [r7, #11] + 800ea66: 2b01 cmp r3, #1 + 800ea68: d002 beq.n 800ea70 + 800ea6a: 7afb ldrb r3, [r7, #11] + 800ea6c: 2b02 cmp r3, #2 + 800ea6e: d11d bne.n 800eaac (state == HAL_CAN_STATE_LISTENING)) { /* Check Tx Mailbox 0 status */ if ((hcan->Instance->TSR & CAN_TSR_TME0) != 0U) - 800ea54: 687b ldr r3, [r7, #4] - 800ea56: 681b ldr r3, [r3, #0] - 800ea58: 689b ldr r3, [r3, #8] - 800ea5a: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 - 800ea5e: 2b00 cmp r3, #0 - 800ea60: d002 beq.n 800ea68 + 800ea70: 687b ldr r3, [r7, #4] + 800ea72: 681b ldr r3, [r3, #0] + 800ea74: 689b ldr r3, [r3, #8] + 800ea76: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 + 800ea7a: 2b00 cmp r3, #0 + 800ea7c: d002 beq.n 800ea84 { freelevel++; - 800ea62: 68fb ldr r3, [r7, #12] - 800ea64: 3301 adds r3, #1 - 800ea66: 60fb str r3, [r7, #12] + 800ea7e: 68fb ldr r3, [r7, #12] + 800ea80: 3301 adds r3, #1 + 800ea82: 60fb str r3, [r7, #12] } /* Check Tx Mailbox 1 status */ if ((hcan->Instance->TSR & CAN_TSR_TME1) != 0U) - 800ea68: 687b ldr r3, [r7, #4] - 800ea6a: 681b ldr r3, [r3, #0] - 800ea6c: 689b ldr r3, [r3, #8] - 800ea6e: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 800ea72: 2b00 cmp r3, #0 - 800ea74: d002 beq.n 800ea7c + 800ea84: 687b ldr r3, [r7, #4] + 800ea86: 681b ldr r3, [r3, #0] + 800ea88: 689b ldr r3, [r3, #8] + 800ea8a: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 800ea8e: 2b00 cmp r3, #0 + 800ea90: d002 beq.n 800ea98 { freelevel++; - 800ea76: 68fb ldr r3, [r7, #12] - 800ea78: 3301 adds r3, #1 - 800ea7a: 60fb str r3, [r7, #12] + 800ea92: 68fb ldr r3, [r7, #12] + 800ea94: 3301 adds r3, #1 + 800ea96: 60fb str r3, [r7, #12] } /* Check Tx Mailbox 2 status */ if ((hcan->Instance->TSR & CAN_TSR_TME2) != 0U) - 800ea7c: 687b ldr r3, [r7, #4] - 800ea7e: 681b ldr r3, [r3, #0] - 800ea80: 689b ldr r3, [r3, #8] - 800ea82: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800ea86: 2b00 cmp r3, #0 - 800ea88: d002 beq.n 800ea90 + 800ea98: 687b ldr r3, [r7, #4] + 800ea9a: 681b ldr r3, [r3, #0] + 800ea9c: 689b ldr r3, [r3, #8] + 800ea9e: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800eaa2: 2b00 cmp r3, #0 + 800eaa4: d002 beq.n 800eaac { freelevel++; - 800ea8a: 68fb ldr r3, [r7, #12] - 800ea8c: 3301 adds r3, #1 - 800ea8e: 60fb str r3, [r7, #12] + 800eaa6: 68fb ldr r3, [r7, #12] + 800eaa8: 3301 adds r3, #1 + 800eaaa: 60fb str r3, [r7, #12] } } /* Return Tx Mailboxes free level */ return freelevel; - 800ea90: 68fb ldr r3, [r7, #12] + 800eaac: 68fb ldr r3, [r7, #12] } - 800ea92: 4618 mov r0, r3 - 800ea94: 3714 adds r7, #20 - 800ea96: 46bd mov sp, r7 - 800ea98: bc80 pop {r7} - 800ea9a: 4770 bx lr + 800eaae: 4618 mov r0, r3 + 800eab0: 3714 adds r7, #20 + 800eab2: 46bd mov sp, r7 + 800eab4: bc80 pop {r7} + 800eab6: 4770 bx lr -0800ea9c : +0800eab8 : * @param aData array where the payload of the Rx frame will be stored. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_GetRxMessage(CAN_HandleTypeDef *hcan, uint32_t RxFifo, CAN_RxHeaderTypeDef *pHeader, uint8_t aData[]) { - 800ea9c: b480 push {r7} - 800ea9e: b087 sub sp, #28 - 800eaa0: af00 add r7, sp, #0 - 800eaa2: 60f8 str r0, [r7, #12] - 800eaa4: 60b9 str r1, [r7, #8] - 800eaa6: 607a str r2, [r7, #4] - 800eaa8: 603b str r3, [r7, #0] + 800eab8: b480 push {r7} + 800eaba: b087 sub sp, #28 + 800eabc: af00 add r7, sp, #0 + 800eabe: 60f8 str r0, [r7, #12] + 800eac0: 60b9 str r1, [r7, #8] + 800eac2: 607a str r2, [r7, #4] + 800eac4: 603b str r3, [r7, #0] HAL_CAN_StateTypeDef state = hcan->State; - 800eaaa: 68fb ldr r3, [r7, #12] - 800eaac: f893 3020 ldrb.w r3, [r3, #32] - 800eab0: 75fb strb r3, [r7, #23] + 800eac6: 68fb ldr r3, [r7, #12] + 800eac8: f893 3020 ldrb.w r3, [r3, #32] + 800eacc: 75fb strb r3, [r7, #23] assert_param(IS_CAN_RX_FIFO(RxFifo)); if ((state == HAL_CAN_STATE_READY) || - 800eab2: 7dfb ldrb r3, [r7, #23] - 800eab4: 2b01 cmp r3, #1 - 800eab6: d003 beq.n 800eac0 - 800eab8: 7dfb ldrb r3, [r7, #23] - 800eaba: 2b02 cmp r3, #2 - 800eabc: f040 8103 bne.w 800ecc6 + 800eace: 7dfb ldrb r3, [r7, #23] + 800ead0: 2b01 cmp r3, #1 + 800ead2: d003 beq.n 800eadc + 800ead4: 7dfb ldrb r3, [r7, #23] + 800ead6: 2b02 cmp r3, #2 + 800ead8: f040 8103 bne.w 800ece2 (state == HAL_CAN_STATE_LISTENING)) { /* Check the Rx FIFO */ if (RxFifo == CAN_RX_FIFO0) /* Rx element is assigned to Rx FIFO 0 */ - 800eac0: 68bb ldr r3, [r7, #8] - 800eac2: 2b00 cmp r3, #0 - 800eac4: d10e bne.n 800eae4 + 800eadc: 68bb ldr r3, [r7, #8] + 800eade: 2b00 cmp r3, #0 + 800eae0: d10e bne.n 800eb00 { /* Check that the Rx FIFO 0 is not empty */ if ((hcan->Instance->RF0R & CAN_RF0R_FMP0) == 0U) - 800eac6: 68fb ldr r3, [r7, #12] - 800eac8: 681b ldr r3, [r3, #0] - 800eaca: 68db ldr r3, [r3, #12] - 800eacc: f003 0303 and.w r3, r3, #3 - 800ead0: 2b00 cmp r3, #0 - 800ead2: d116 bne.n 800eb02 + 800eae2: 68fb ldr r3, [r7, #12] + 800eae4: 681b ldr r3, [r3, #0] + 800eae6: 68db ldr r3, [r3, #12] + 800eae8: f003 0303 and.w r3, r3, #3 + 800eaec: 2b00 cmp r3, #0 + 800eaee: d116 bne.n 800eb1e { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_PARAM; - 800ead4: 68fb ldr r3, [r7, #12] - 800ead6: 6a5b ldr r3, [r3, #36] @ 0x24 - 800ead8: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 - 800eadc: 68fb ldr r3, [r7, #12] - 800eade: 625a str r2, [r3, #36] @ 0x24 + 800eaf0: 68fb ldr r3, [r7, #12] + 800eaf2: 6a5b ldr r3, [r3, #36] @ 0x24 + 800eaf4: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 + 800eaf8: 68fb ldr r3, [r7, #12] + 800eafa: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800eae0: 2301 movs r3, #1 - 800eae2: e0f7 b.n 800ecd4 + 800eafc: 2301 movs r3, #1 + 800eafe: e0f7 b.n 800ecf0 } } else /* Rx element is assigned to Rx FIFO 1 */ { /* Check that the Rx FIFO 1 is not empty */ if ((hcan->Instance->RF1R & CAN_RF1R_FMP1) == 0U) - 800eae4: 68fb ldr r3, [r7, #12] - 800eae6: 681b ldr r3, [r3, #0] - 800eae8: 691b ldr r3, [r3, #16] - 800eaea: f003 0303 and.w r3, r3, #3 - 800eaee: 2b00 cmp r3, #0 - 800eaf0: d107 bne.n 800eb02 + 800eb00: 68fb ldr r3, [r7, #12] + 800eb02: 681b ldr r3, [r3, #0] + 800eb04: 691b ldr r3, [r3, #16] + 800eb06: f003 0303 and.w r3, r3, #3 + 800eb0a: 2b00 cmp r3, #0 + 800eb0c: d107 bne.n 800eb1e { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_PARAM; - 800eaf2: 68fb ldr r3, [r7, #12] - 800eaf4: 6a5b ldr r3, [r3, #36] @ 0x24 - 800eaf6: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 - 800eafa: 68fb ldr r3, [r7, #12] - 800eafc: 625a str r2, [r3, #36] @ 0x24 + 800eb0e: 68fb ldr r3, [r7, #12] + 800eb10: 6a5b ldr r3, [r3, #36] @ 0x24 + 800eb12: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 + 800eb16: 68fb ldr r3, [r7, #12] + 800eb18: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800eafe: 2301 movs r3, #1 - 800eb00: e0e8 b.n 800ecd4 + 800eb1a: 2301 movs r3, #1 + 800eb1c: e0e8 b.n 800ecf0 } } /* Get the header */ pHeader->IDE = CAN_RI0R_IDE & hcan->Instance->sFIFOMailBox[RxFifo].RIR; - 800eb02: 68fb ldr r3, [r7, #12] - 800eb04: 681a ldr r2, [r3, #0] - 800eb06: 68bb ldr r3, [r7, #8] - 800eb08: 331b adds r3, #27 - 800eb0a: 011b lsls r3, r3, #4 - 800eb0c: 4413 add r3, r2 - 800eb0e: 681b ldr r3, [r3, #0] - 800eb10: f003 0204 and.w r2, r3, #4 - 800eb14: 687b ldr r3, [r7, #4] - 800eb16: 609a str r2, [r3, #8] + 800eb1e: 68fb ldr r3, [r7, #12] + 800eb20: 681a ldr r2, [r3, #0] + 800eb22: 68bb ldr r3, [r7, #8] + 800eb24: 331b adds r3, #27 + 800eb26: 011b lsls r3, r3, #4 + 800eb28: 4413 add r3, r2 + 800eb2a: 681b ldr r3, [r3, #0] + 800eb2c: f003 0204 and.w r2, r3, #4 + 800eb30: 687b ldr r3, [r7, #4] + 800eb32: 609a str r2, [r3, #8] if (pHeader->IDE == CAN_ID_STD) - 800eb18: 687b ldr r3, [r7, #4] - 800eb1a: 689b ldr r3, [r3, #8] - 800eb1c: 2b00 cmp r3, #0 - 800eb1e: d10c bne.n 800eb3a + 800eb34: 687b ldr r3, [r7, #4] + 800eb36: 689b ldr r3, [r3, #8] + 800eb38: 2b00 cmp r3, #0 + 800eb3a: d10c bne.n 800eb56 { pHeader->StdId = (CAN_RI0R_STID & hcan->Instance->sFIFOMailBox[RxFifo].RIR) >> CAN_TI0R_STID_Pos; - 800eb20: 68fb ldr r3, [r7, #12] - 800eb22: 681a ldr r2, [r3, #0] - 800eb24: 68bb ldr r3, [r7, #8] - 800eb26: 331b adds r3, #27 - 800eb28: 011b lsls r3, r3, #4 - 800eb2a: 4413 add r3, r2 - 800eb2c: 681b ldr r3, [r3, #0] - 800eb2e: 0d5b lsrs r3, r3, #21 - 800eb30: f3c3 020a ubfx r2, r3, #0, #11 - 800eb34: 687b ldr r3, [r7, #4] - 800eb36: 601a str r2, [r3, #0] - 800eb38: e00b b.n 800eb52 + 800eb3c: 68fb ldr r3, [r7, #12] + 800eb3e: 681a ldr r2, [r3, #0] + 800eb40: 68bb ldr r3, [r7, #8] + 800eb42: 331b adds r3, #27 + 800eb44: 011b lsls r3, r3, #4 + 800eb46: 4413 add r3, r2 + 800eb48: 681b ldr r3, [r3, #0] + 800eb4a: 0d5b lsrs r3, r3, #21 + 800eb4c: f3c3 020a ubfx r2, r3, #0, #11 + 800eb50: 687b ldr r3, [r7, #4] + 800eb52: 601a str r2, [r3, #0] + 800eb54: e00b b.n 800eb6e } else { pHeader->ExtId = ((CAN_RI0R_EXID | CAN_RI0R_STID) & hcan->Instance->sFIFOMailBox[RxFifo].RIR) >> CAN_RI0R_EXID_Pos; - 800eb3a: 68fb ldr r3, [r7, #12] - 800eb3c: 681a ldr r2, [r3, #0] - 800eb3e: 68bb ldr r3, [r7, #8] - 800eb40: 331b adds r3, #27 - 800eb42: 011b lsls r3, r3, #4 - 800eb44: 4413 add r3, r2 - 800eb46: 681b ldr r3, [r3, #0] - 800eb48: 08db lsrs r3, r3, #3 - 800eb4a: f023 4260 bic.w r2, r3, #3758096384 @ 0xe0000000 + 800eb56: 68fb ldr r3, [r7, #12] + 800eb58: 681a ldr r2, [r3, #0] + 800eb5a: 68bb ldr r3, [r7, #8] + 800eb5c: 331b adds r3, #27 + 800eb5e: 011b lsls r3, r3, #4 + 800eb60: 4413 add r3, r2 + 800eb62: 681b ldr r3, [r3, #0] + 800eb64: 08db lsrs r3, r3, #3 + 800eb66: f023 4260 bic.w r2, r3, #3758096384 @ 0xe0000000 pHeader->ExtId = ((CAN_RI0R_EXID | CAN_RI0R_STID) & - 800eb4e: 687b ldr r3, [r7, #4] - 800eb50: 605a str r2, [r3, #4] + 800eb6a: 687b ldr r3, [r7, #4] + 800eb6c: 605a str r2, [r3, #4] } pHeader->RTR = (CAN_RI0R_RTR & hcan->Instance->sFIFOMailBox[RxFifo].RIR); - 800eb52: 68fb ldr r3, [r7, #12] - 800eb54: 681a ldr r2, [r3, #0] - 800eb56: 68bb ldr r3, [r7, #8] - 800eb58: 331b adds r3, #27 - 800eb5a: 011b lsls r3, r3, #4 - 800eb5c: 4413 add r3, r2 - 800eb5e: 681b ldr r3, [r3, #0] - 800eb60: f003 0202 and.w r2, r3, #2 - 800eb64: 687b ldr r3, [r7, #4] - 800eb66: 60da str r2, [r3, #12] + 800eb6e: 68fb ldr r3, [r7, #12] + 800eb70: 681a ldr r2, [r3, #0] + 800eb72: 68bb ldr r3, [r7, #8] + 800eb74: 331b adds r3, #27 + 800eb76: 011b lsls r3, r3, #4 + 800eb78: 4413 add r3, r2 + 800eb7a: 681b ldr r3, [r3, #0] + 800eb7c: f003 0202 and.w r2, r3, #2 + 800eb80: 687b ldr r3, [r7, #4] + 800eb82: 60da str r2, [r3, #12] if (((CAN_RDT0R_DLC & hcan->Instance->sFIFOMailBox[RxFifo].RDTR) >> CAN_RDT0R_DLC_Pos) >= 8U) - 800eb68: 68fb ldr r3, [r7, #12] - 800eb6a: 681a ldr r2, [r3, #0] - 800eb6c: 68bb ldr r3, [r7, #8] - 800eb6e: 331b adds r3, #27 - 800eb70: 011b lsls r3, r3, #4 - 800eb72: 4413 add r3, r2 - 800eb74: 3304 adds r3, #4 - 800eb76: 681b ldr r3, [r3, #0] - 800eb78: f003 0308 and.w r3, r3, #8 - 800eb7c: 2b00 cmp r3, #0 - 800eb7e: d003 beq.n 800eb88 + 800eb84: 68fb ldr r3, [r7, #12] + 800eb86: 681a ldr r2, [r3, #0] + 800eb88: 68bb ldr r3, [r7, #8] + 800eb8a: 331b adds r3, #27 + 800eb8c: 011b lsls r3, r3, #4 + 800eb8e: 4413 add r3, r2 + 800eb90: 3304 adds r3, #4 + 800eb92: 681b ldr r3, [r3, #0] + 800eb94: f003 0308 and.w r3, r3, #8 + 800eb98: 2b00 cmp r3, #0 + 800eb9a: d003 beq.n 800eba4 { /* Truncate DLC to 8 if received field is over range */ pHeader->DLC = 8U; - 800eb80: 687b ldr r3, [r7, #4] - 800eb82: 2208 movs r2, #8 - 800eb84: 611a str r2, [r3, #16] - 800eb86: e00b b.n 800eba0 + 800eb9c: 687b ldr r3, [r7, #4] + 800eb9e: 2208 movs r2, #8 + 800eba0: 611a str r2, [r3, #16] + 800eba2: e00b b.n 800ebbc } else { pHeader->DLC = (CAN_RDT0R_DLC & hcan->Instance->sFIFOMailBox[RxFifo].RDTR) >> CAN_RDT0R_DLC_Pos; - 800eb88: 68fb ldr r3, [r7, #12] - 800eb8a: 681a ldr r2, [r3, #0] - 800eb8c: 68bb ldr r3, [r7, #8] - 800eb8e: 331b adds r3, #27 - 800eb90: 011b lsls r3, r3, #4 - 800eb92: 4413 add r3, r2 - 800eb94: 3304 adds r3, #4 - 800eb96: 681b ldr r3, [r3, #0] - 800eb98: f003 020f and.w r2, r3, #15 - 800eb9c: 687b ldr r3, [r7, #4] - 800eb9e: 611a str r2, [r3, #16] + 800eba4: 68fb ldr r3, [r7, #12] + 800eba6: 681a ldr r2, [r3, #0] + 800eba8: 68bb ldr r3, [r7, #8] + 800ebaa: 331b adds r3, #27 + 800ebac: 011b lsls r3, r3, #4 + 800ebae: 4413 add r3, r2 + 800ebb0: 3304 adds r3, #4 + 800ebb2: 681b ldr r3, [r3, #0] + 800ebb4: f003 020f and.w r2, r3, #15 + 800ebb8: 687b ldr r3, [r7, #4] + 800ebba: 611a str r2, [r3, #16] } pHeader->FilterMatchIndex = (CAN_RDT0R_FMI & hcan->Instance->sFIFOMailBox[RxFifo].RDTR) >> CAN_RDT0R_FMI_Pos; - 800eba0: 68fb ldr r3, [r7, #12] - 800eba2: 681a ldr r2, [r3, #0] - 800eba4: 68bb ldr r3, [r7, #8] - 800eba6: 331b adds r3, #27 - 800eba8: 011b lsls r3, r3, #4 - 800ebaa: 4413 add r3, r2 - 800ebac: 3304 adds r3, #4 - 800ebae: 681b ldr r3, [r3, #0] - 800ebb0: 0a1b lsrs r3, r3, #8 - 800ebb2: b2da uxtb r2, r3 - 800ebb4: 687b ldr r3, [r7, #4] - 800ebb6: 619a str r2, [r3, #24] + 800ebbc: 68fb ldr r3, [r7, #12] + 800ebbe: 681a ldr r2, [r3, #0] + 800ebc0: 68bb ldr r3, [r7, #8] + 800ebc2: 331b adds r3, #27 + 800ebc4: 011b lsls r3, r3, #4 + 800ebc6: 4413 add r3, r2 + 800ebc8: 3304 adds r3, #4 + 800ebca: 681b ldr r3, [r3, #0] + 800ebcc: 0a1b lsrs r3, r3, #8 + 800ebce: b2da uxtb r2, r3 + 800ebd0: 687b ldr r3, [r7, #4] + 800ebd2: 619a str r2, [r3, #24] pHeader->Timestamp = (CAN_RDT0R_TIME & hcan->Instance->sFIFOMailBox[RxFifo].RDTR) >> CAN_RDT0R_TIME_Pos; - 800ebb8: 68fb ldr r3, [r7, #12] - 800ebba: 681a ldr r2, [r3, #0] - 800ebbc: 68bb ldr r3, [r7, #8] - 800ebbe: 331b adds r3, #27 - 800ebc0: 011b lsls r3, r3, #4 - 800ebc2: 4413 add r3, r2 - 800ebc4: 3304 adds r3, #4 - 800ebc6: 681b ldr r3, [r3, #0] - 800ebc8: 0c1b lsrs r3, r3, #16 - 800ebca: b29a uxth r2, r3 - 800ebcc: 687b ldr r3, [r7, #4] - 800ebce: 615a str r2, [r3, #20] + 800ebd4: 68fb ldr r3, [r7, #12] + 800ebd6: 681a ldr r2, [r3, #0] + 800ebd8: 68bb ldr r3, [r7, #8] + 800ebda: 331b adds r3, #27 + 800ebdc: 011b lsls r3, r3, #4 + 800ebde: 4413 add r3, r2 + 800ebe0: 3304 adds r3, #4 + 800ebe2: 681b ldr r3, [r3, #0] + 800ebe4: 0c1b lsrs r3, r3, #16 + 800ebe6: b29a uxth r2, r3 + 800ebe8: 687b ldr r3, [r7, #4] + 800ebea: 615a str r2, [r3, #20] /* Get the data */ aData[0] = (uint8_t)((CAN_RDL0R_DATA0 & hcan->Instance->sFIFOMailBox[RxFifo].RDLR) >> CAN_RDL0R_DATA0_Pos); - 800ebd0: 68fb ldr r3, [r7, #12] - 800ebd2: 681a ldr r2, [r3, #0] - 800ebd4: 68bb ldr r3, [r7, #8] - 800ebd6: 011b lsls r3, r3, #4 - 800ebd8: 4413 add r3, r2 - 800ebda: f503 73dc add.w r3, r3, #440 @ 0x1b8 - 800ebde: 681b ldr r3, [r3, #0] - 800ebe0: b2da uxtb r2, r3 - 800ebe2: 683b ldr r3, [r7, #0] - 800ebe4: 701a strb r2, [r3, #0] + 800ebec: 68fb ldr r3, [r7, #12] + 800ebee: 681a ldr r2, [r3, #0] + 800ebf0: 68bb ldr r3, [r7, #8] + 800ebf2: 011b lsls r3, r3, #4 + 800ebf4: 4413 add r3, r2 + 800ebf6: f503 73dc add.w r3, r3, #440 @ 0x1b8 + 800ebfa: 681b ldr r3, [r3, #0] + 800ebfc: b2da uxtb r2, r3 + 800ebfe: 683b ldr r3, [r7, #0] + 800ec00: 701a strb r2, [r3, #0] aData[1] = (uint8_t)((CAN_RDL0R_DATA1 & hcan->Instance->sFIFOMailBox[RxFifo].RDLR) >> CAN_RDL0R_DATA1_Pos); - 800ebe6: 68fb ldr r3, [r7, #12] - 800ebe8: 681a ldr r2, [r3, #0] - 800ebea: 68bb ldr r3, [r7, #8] - 800ebec: 011b lsls r3, r3, #4 - 800ebee: 4413 add r3, r2 - 800ebf0: f503 73dc add.w r3, r3, #440 @ 0x1b8 - 800ebf4: 681b ldr r3, [r3, #0] - 800ebf6: 0a1a lsrs r2, r3, #8 - 800ebf8: 683b ldr r3, [r7, #0] - 800ebfa: 3301 adds r3, #1 - 800ebfc: b2d2 uxtb r2, r2 - 800ebfe: 701a strb r2, [r3, #0] + 800ec02: 68fb ldr r3, [r7, #12] + 800ec04: 681a ldr r2, [r3, #0] + 800ec06: 68bb ldr r3, [r7, #8] + 800ec08: 011b lsls r3, r3, #4 + 800ec0a: 4413 add r3, r2 + 800ec0c: f503 73dc add.w r3, r3, #440 @ 0x1b8 + 800ec10: 681b ldr r3, [r3, #0] + 800ec12: 0a1a lsrs r2, r3, #8 + 800ec14: 683b ldr r3, [r7, #0] + 800ec16: 3301 adds r3, #1 + 800ec18: b2d2 uxtb r2, r2 + 800ec1a: 701a strb r2, [r3, #0] aData[2] = (uint8_t)((CAN_RDL0R_DATA2 & hcan->Instance->sFIFOMailBox[RxFifo].RDLR) >> CAN_RDL0R_DATA2_Pos); - 800ec00: 68fb ldr r3, [r7, #12] - 800ec02: 681a ldr r2, [r3, #0] - 800ec04: 68bb ldr r3, [r7, #8] - 800ec06: 011b lsls r3, r3, #4 - 800ec08: 4413 add r3, r2 - 800ec0a: f503 73dc add.w r3, r3, #440 @ 0x1b8 - 800ec0e: 681b ldr r3, [r3, #0] - 800ec10: 0c1a lsrs r2, r3, #16 - 800ec12: 683b ldr r3, [r7, #0] - 800ec14: 3302 adds r3, #2 - 800ec16: b2d2 uxtb r2, r2 - 800ec18: 701a strb r2, [r3, #0] + 800ec1c: 68fb ldr r3, [r7, #12] + 800ec1e: 681a ldr r2, [r3, #0] + 800ec20: 68bb ldr r3, [r7, #8] + 800ec22: 011b lsls r3, r3, #4 + 800ec24: 4413 add r3, r2 + 800ec26: f503 73dc add.w r3, r3, #440 @ 0x1b8 + 800ec2a: 681b ldr r3, [r3, #0] + 800ec2c: 0c1a lsrs r2, r3, #16 + 800ec2e: 683b ldr r3, [r7, #0] + 800ec30: 3302 adds r3, #2 + 800ec32: b2d2 uxtb r2, r2 + 800ec34: 701a strb r2, [r3, #0] aData[3] = (uint8_t)((CAN_RDL0R_DATA3 & hcan->Instance->sFIFOMailBox[RxFifo].RDLR) >> CAN_RDL0R_DATA3_Pos); - 800ec1a: 68fb ldr r3, [r7, #12] - 800ec1c: 681a ldr r2, [r3, #0] - 800ec1e: 68bb ldr r3, [r7, #8] - 800ec20: 011b lsls r3, r3, #4 - 800ec22: 4413 add r3, r2 - 800ec24: f503 73dc add.w r3, r3, #440 @ 0x1b8 - 800ec28: 681b ldr r3, [r3, #0] - 800ec2a: 0e1a lsrs r2, r3, #24 - 800ec2c: 683b ldr r3, [r7, #0] - 800ec2e: 3303 adds r3, #3 - 800ec30: b2d2 uxtb r2, r2 - 800ec32: 701a strb r2, [r3, #0] + 800ec36: 68fb ldr r3, [r7, #12] + 800ec38: 681a ldr r2, [r3, #0] + 800ec3a: 68bb ldr r3, [r7, #8] + 800ec3c: 011b lsls r3, r3, #4 + 800ec3e: 4413 add r3, r2 + 800ec40: f503 73dc add.w r3, r3, #440 @ 0x1b8 + 800ec44: 681b ldr r3, [r3, #0] + 800ec46: 0e1a lsrs r2, r3, #24 + 800ec48: 683b ldr r3, [r7, #0] + 800ec4a: 3303 adds r3, #3 + 800ec4c: b2d2 uxtb r2, r2 + 800ec4e: 701a strb r2, [r3, #0] aData[4] = (uint8_t)((CAN_RDH0R_DATA4 & hcan->Instance->sFIFOMailBox[RxFifo].RDHR) >> CAN_RDH0R_DATA4_Pos); - 800ec34: 68fb ldr r3, [r7, #12] - 800ec36: 681a ldr r2, [r3, #0] - 800ec38: 68bb ldr r3, [r7, #8] - 800ec3a: 011b lsls r3, r3, #4 - 800ec3c: 4413 add r3, r2 - 800ec3e: f503 73de add.w r3, r3, #444 @ 0x1bc - 800ec42: 681a ldr r2, [r3, #0] - 800ec44: 683b ldr r3, [r7, #0] - 800ec46: 3304 adds r3, #4 - 800ec48: b2d2 uxtb r2, r2 - 800ec4a: 701a strb r2, [r3, #0] + 800ec50: 68fb ldr r3, [r7, #12] + 800ec52: 681a ldr r2, [r3, #0] + 800ec54: 68bb ldr r3, [r7, #8] + 800ec56: 011b lsls r3, r3, #4 + 800ec58: 4413 add r3, r2 + 800ec5a: f503 73de add.w r3, r3, #444 @ 0x1bc + 800ec5e: 681a ldr r2, [r3, #0] + 800ec60: 683b ldr r3, [r7, #0] + 800ec62: 3304 adds r3, #4 + 800ec64: b2d2 uxtb r2, r2 + 800ec66: 701a strb r2, [r3, #0] aData[5] = (uint8_t)((CAN_RDH0R_DATA5 & hcan->Instance->sFIFOMailBox[RxFifo].RDHR) >> CAN_RDH0R_DATA5_Pos); - 800ec4c: 68fb ldr r3, [r7, #12] - 800ec4e: 681a ldr r2, [r3, #0] - 800ec50: 68bb ldr r3, [r7, #8] - 800ec52: 011b lsls r3, r3, #4 - 800ec54: 4413 add r3, r2 - 800ec56: f503 73de add.w r3, r3, #444 @ 0x1bc - 800ec5a: 681b ldr r3, [r3, #0] - 800ec5c: 0a1a lsrs r2, r3, #8 - 800ec5e: 683b ldr r3, [r7, #0] - 800ec60: 3305 adds r3, #5 - 800ec62: b2d2 uxtb r2, r2 - 800ec64: 701a strb r2, [r3, #0] + 800ec68: 68fb ldr r3, [r7, #12] + 800ec6a: 681a ldr r2, [r3, #0] + 800ec6c: 68bb ldr r3, [r7, #8] + 800ec6e: 011b lsls r3, r3, #4 + 800ec70: 4413 add r3, r2 + 800ec72: f503 73de add.w r3, r3, #444 @ 0x1bc + 800ec76: 681b ldr r3, [r3, #0] + 800ec78: 0a1a lsrs r2, r3, #8 + 800ec7a: 683b ldr r3, [r7, #0] + 800ec7c: 3305 adds r3, #5 + 800ec7e: b2d2 uxtb r2, r2 + 800ec80: 701a strb r2, [r3, #0] aData[6] = (uint8_t)((CAN_RDH0R_DATA6 & hcan->Instance->sFIFOMailBox[RxFifo].RDHR) >> CAN_RDH0R_DATA6_Pos); - 800ec66: 68fb ldr r3, [r7, #12] - 800ec68: 681a ldr r2, [r3, #0] - 800ec6a: 68bb ldr r3, [r7, #8] - 800ec6c: 011b lsls r3, r3, #4 - 800ec6e: 4413 add r3, r2 - 800ec70: f503 73de add.w r3, r3, #444 @ 0x1bc - 800ec74: 681b ldr r3, [r3, #0] - 800ec76: 0c1a lsrs r2, r3, #16 - 800ec78: 683b ldr r3, [r7, #0] - 800ec7a: 3306 adds r3, #6 - 800ec7c: b2d2 uxtb r2, r2 - 800ec7e: 701a strb r2, [r3, #0] + 800ec82: 68fb ldr r3, [r7, #12] + 800ec84: 681a ldr r2, [r3, #0] + 800ec86: 68bb ldr r3, [r7, #8] + 800ec88: 011b lsls r3, r3, #4 + 800ec8a: 4413 add r3, r2 + 800ec8c: f503 73de add.w r3, r3, #444 @ 0x1bc + 800ec90: 681b ldr r3, [r3, #0] + 800ec92: 0c1a lsrs r2, r3, #16 + 800ec94: 683b ldr r3, [r7, #0] + 800ec96: 3306 adds r3, #6 + 800ec98: b2d2 uxtb r2, r2 + 800ec9a: 701a strb r2, [r3, #0] aData[7] = (uint8_t)((CAN_RDH0R_DATA7 & hcan->Instance->sFIFOMailBox[RxFifo].RDHR) >> CAN_RDH0R_DATA7_Pos); - 800ec80: 68fb ldr r3, [r7, #12] - 800ec82: 681a ldr r2, [r3, #0] - 800ec84: 68bb ldr r3, [r7, #8] - 800ec86: 011b lsls r3, r3, #4 - 800ec88: 4413 add r3, r2 - 800ec8a: f503 73de add.w r3, r3, #444 @ 0x1bc - 800ec8e: 681b ldr r3, [r3, #0] - 800ec90: 0e1a lsrs r2, r3, #24 - 800ec92: 683b ldr r3, [r7, #0] - 800ec94: 3307 adds r3, #7 - 800ec96: b2d2 uxtb r2, r2 - 800ec98: 701a strb r2, [r3, #0] + 800ec9c: 68fb ldr r3, [r7, #12] + 800ec9e: 681a ldr r2, [r3, #0] + 800eca0: 68bb ldr r3, [r7, #8] + 800eca2: 011b lsls r3, r3, #4 + 800eca4: 4413 add r3, r2 + 800eca6: f503 73de add.w r3, r3, #444 @ 0x1bc + 800ecaa: 681b ldr r3, [r3, #0] + 800ecac: 0e1a lsrs r2, r3, #24 + 800ecae: 683b ldr r3, [r7, #0] + 800ecb0: 3307 adds r3, #7 + 800ecb2: b2d2 uxtb r2, r2 + 800ecb4: 701a strb r2, [r3, #0] /* Release the FIFO */ if (RxFifo == CAN_RX_FIFO0) /* Rx element is assigned to Rx FIFO 0 */ - 800ec9a: 68bb ldr r3, [r7, #8] - 800ec9c: 2b00 cmp r3, #0 - 800ec9e: d108 bne.n 800ecb2 + 800ecb6: 68bb ldr r3, [r7, #8] + 800ecb8: 2b00 cmp r3, #0 + 800ecba: d108 bne.n 800ecce { /* Release RX FIFO 0 */ SET_BIT(hcan->Instance->RF0R, CAN_RF0R_RFOM0); - 800eca0: 68fb ldr r3, [r7, #12] - 800eca2: 681b ldr r3, [r3, #0] - 800eca4: 68da ldr r2, [r3, #12] - 800eca6: 68fb ldr r3, [r7, #12] - 800eca8: 681b ldr r3, [r3, #0] - 800ecaa: f042 0220 orr.w r2, r2, #32 - 800ecae: 60da str r2, [r3, #12] - 800ecb0: e007 b.n 800ecc2 + 800ecbc: 68fb ldr r3, [r7, #12] + 800ecbe: 681b ldr r3, [r3, #0] + 800ecc0: 68da ldr r2, [r3, #12] + 800ecc2: 68fb ldr r3, [r7, #12] + 800ecc4: 681b ldr r3, [r3, #0] + 800ecc6: f042 0220 orr.w r2, r2, #32 + 800ecca: 60da str r2, [r3, #12] + 800eccc: e007 b.n 800ecde } else /* Rx element is assigned to Rx FIFO 1 */ { /* Release RX FIFO 1 */ SET_BIT(hcan->Instance->RF1R, CAN_RF1R_RFOM1); - 800ecb2: 68fb ldr r3, [r7, #12] - 800ecb4: 681b ldr r3, [r3, #0] - 800ecb6: 691a ldr r2, [r3, #16] - 800ecb8: 68fb ldr r3, [r7, #12] - 800ecba: 681b ldr r3, [r3, #0] - 800ecbc: f042 0220 orr.w r2, r2, #32 - 800ecc0: 611a str r2, [r3, #16] + 800ecce: 68fb ldr r3, [r7, #12] + 800ecd0: 681b ldr r3, [r3, #0] + 800ecd2: 691a ldr r2, [r3, #16] + 800ecd4: 68fb ldr r3, [r7, #12] + 800ecd6: 681b ldr r3, [r3, #0] + 800ecd8: f042 0220 orr.w r2, r2, #32 + 800ecdc: 611a str r2, [r3, #16] } /* Return function status */ return HAL_OK; - 800ecc2: 2300 movs r3, #0 - 800ecc4: e006 b.n 800ecd4 + 800ecde: 2300 movs r3, #0 + 800ece0: e006 b.n 800ecf0 } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_INITIALIZED; - 800ecc6: 68fb ldr r3, [r7, #12] - 800ecc8: 6a5b ldr r3, [r3, #36] @ 0x24 - 800ecca: f443 2280 orr.w r2, r3, #262144 @ 0x40000 - 800ecce: 68fb ldr r3, [r7, #12] - 800ecd0: 625a str r2, [r3, #36] @ 0x24 + 800ece2: 68fb ldr r3, [r7, #12] + 800ece4: 6a5b ldr r3, [r3, #36] @ 0x24 + 800ece6: f443 2280 orr.w r2, r3, #262144 @ 0x40000 + 800ecea: 68fb ldr r3, [r7, #12] + 800ecec: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800ecd2: 2301 movs r3, #1 + 800ecee: 2301 movs r3, #1 } } - 800ecd4: 4618 mov r0, r3 - 800ecd6: 371c adds r7, #28 - 800ecd8: 46bd mov sp, r7 - 800ecda: bc80 pop {r7} - 800ecdc: 4770 bx lr + 800ecf0: 4618 mov r0, r3 + 800ecf2: 371c adds r7, #28 + 800ecf4: 46bd mov sp, r7 + 800ecf6: bc80 pop {r7} + 800ecf8: 4770 bx lr -0800ecde : +0800ecfa : * @param ActiveITs indicates which interrupts will be enabled. * This parameter can be any combination of @arg CAN_Interrupts. * @retval HAL status */ HAL_StatusTypeDef HAL_CAN_ActivateNotification(CAN_HandleTypeDef *hcan, uint32_t ActiveITs) { - 800ecde: b480 push {r7} - 800ece0: b085 sub sp, #20 - 800ece2: af00 add r7, sp, #0 - 800ece4: 6078 str r0, [r7, #4] - 800ece6: 6039 str r1, [r7, #0] + 800ecfa: b480 push {r7} + 800ecfc: b085 sub sp, #20 + 800ecfe: af00 add r7, sp, #0 + 800ed00: 6078 str r0, [r7, #4] + 800ed02: 6039 str r1, [r7, #0] HAL_CAN_StateTypeDef state = hcan->State; - 800ece8: 687b ldr r3, [r7, #4] - 800ecea: f893 3020 ldrb.w r3, [r3, #32] - 800ecee: 73fb strb r3, [r7, #15] + 800ed04: 687b ldr r3, [r7, #4] + 800ed06: f893 3020 ldrb.w r3, [r3, #32] + 800ed0a: 73fb strb r3, [r7, #15] /* Check function parameters */ assert_param(IS_CAN_IT(ActiveITs)); if ((state == HAL_CAN_STATE_READY) || - 800ecf0: 7bfb ldrb r3, [r7, #15] - 800ecf2: 2b01 cmp r3, #1 - 800ecf4: d002 beq.n 800ecfc - 800ecf6: 7bfb ldrb r3, [r7, #15] - 800ecf8: 2b02 cmp r3, #2 - 800ecfa: d109 bne.n 800ed10 + 800ed0c: 7bfb ldrb r3, [r7, #15] + 800ed0e: 2b01 cmp r3, #1 + 800ed10: d002 beq.n 800ed18 + 800ed12: 7bfb ldrb r3, [r7, #15] + 800ed14: 2b02 cmp r3, #2 + 800ed16: d109 bne.n 800ed2c (state == HAL_CAN_STATE_LISTENING)) { /* Enable the selected interrupts */ __HAL_CAN_ENABLE_IT(hcan, ActiveITs); - 800ecfc: 687b ldr r3, [r7, #4] - 800ecfe: 681b ldr r3, [r3, #0] - 800ed00: 6959 ldr r1, [r3, #20] - 800ed02: 687b ldr r3, [r7, #4] - 800ed04: 681b ldr r3, [r3, #0] - 800ed06: 683a ldr r2, [r7, #0] - 800ed08: 430a orrs r2, r1 - 800ed0a: 615a str r2, [r3, #20] + 800ed18: 687b ldr r3, [r7, #4] + 800ed1a: 681b ldr r3, [r3, #0] + 800ed1c: 6959 ldr r1, [r3, #20] + 800ed1e: 687b ldr r3, [r7, #4] + 800ed20: 681b ldr r3, [r3, #0] + 800ed22: 683a ldr r2, [r7, #0] + 800ed24: 430a orrs r2, r1 + 800ed26: 615a str r2, [r3, #20] /* Return function status */ return HAL_OK; - 800ed0c: 2300 movs r3, #0 - 800ed0e: e006 b.n 800ed1e + 800ed28: 2300 movs r3, #0 + 800ed2a: e006 b.n 800ed3a } else { /* Update error code */ hcan->ErrorCode |= HAL_CAN_ERROR_NOT_INITIALIZED; - 800ed10: 687b ldr r3, [r7, #4] - 800ed12: 6a5b ldr r3, [r3, #36] @ 0x24 - 800ed14: f443 2280 orr.w r2, r3, #262144 @ 0x40000 - 800ed18: 687b ldr r3, [r7, #4] - 800ed1a: 625a str r2, [r3, #36] @ 0x24 + 800ed2c: 687b ldr r3, [r7, #4] + 800ed2e: 6a5b ldr r3, [r3, #36] @ 0x24 + 800ed30: f443 2280 orr.w r2, r3, #262144 @ 0x40000 + 800ed34: 687b ldr r3, [r7, #4] + 800ed36: 625a str r2, [r3, #36] @ 0x24 return HAL_ERROR; - 800ed1c: 2301 movs r3, #1 + 800ed38: 2301 movs r3, #1 } } - 800ed1e: 4618 mov r0, r3 - 800ed20: 3714 adds r7, #20 - 800ed22: 46bd mov sp, r7 - 800ed24: bc80 pop {r7} - 800ed26: 4770 bx lr + 800ed3a: 4618 mov r0, r3 + 800ed3c: 3714 adds r7, #20 + 800ed3e: 46bd mov sp, r7 + 800ed40: bc80 pop {r7} + 800ed42: 4770 bx lr -0800ed28 : +0800ed44 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ void HAL_CAN_IRQHandler(CAN_HandleTypeDef *hcan) { - 800ed28: b580 push {r7, lr} - 800ed2a: b08a sub sp, #40 @ 0x28 - 800ed2c: af00 add r7, sp, #0 - 800ed2e: 6078 str r0, [r7, #4] + 800ed44: b580 push {r7, lr} + 800ed46: b08a sub sp, #40 @ 0x28 + 800ed48: af00 add r7, sp, #0 + 800ed4a: 6078 str r0, [r7, #4] uint32_t errorcode = HAL_CAN_ERROR_NONE; - 800ed30: 2300 movs r3, #0 - 800ed32: 627b str r3, [r7, #36] @ 0x24 + 800ed4c: 2300 movs r3, #0 + 800ed4e: 627b str r3, [r7, #36] @ 0x24 uint32_t interrupts = READ_REG(hcan->Instance->IER); - 800ed34: 687b ldr r3, [r7, #4] - 800ed36: 681b ldr r3, [r3, #0] - 800ed38: 695b ldr r3, [r3, #20] - 800ed3a: 623b str r3, [r7, #32] + 800ed50: 687b ldr r3, [r7, #4] + 800ed52: 681b ldr r3, [r3, #0] + 800ed54: 695b ldr r3, [r3, #20] + 800ed56: 623b str r3, [r7, #32] uint32_t msrflags = READ_REG(hcan->Instance->MSR); - 800ed3c: 687b ldr r3, [r7, #4] - 800ed3e: 681b ldr r3, [r3, #0] - 800ed40: 685b ldr r3, [r3, #4] - 800ed42: 61fb str r3, [r7, #28] + 800ed58: 687b ldr r3, [r7, #4] + 800ed5a: 681b ldr r3, [r3, #0] + 800ed5c: 685b ldr r3, [r3, #4] + 800ed5e: 61fb str r3, [r7, #28] uint32_t tsrflags = READ_REG(hcan->Instance->TSR); - 800ed44: 687b ldr r3, [r7, #4] - 800ed46: 681b ldr r3, [r3, #0] - 800ed48: 689b ldr r3, [r3, #8] - 800ed4a: 61bb str r3, [r7, #24] + 800ed60: 687b ldr r3, [r7, #4] + 800ed62: 681b ldr r3, [r3, #0] + 800ed64: 689b ldr r3, [r3, #8] + 800ed66: 61bb str r3, [r7, #24] uint32_t rf0rflags = READ_REG(hcan->Instance->RF0R); - 800ed4c: 687b ldr r3, [r7, #4] - 800ed4e: 681b ldr r3, [r3, #0] - 800ed50: 68db ldr r3, [r3, #12] - 800ed52: 617b str r3, [r7, #20] + 800ed68: 687b ldr r3, [r7, #4] + 800ed6a: 681b ldr r3, [r3, #0] + 800ed6c: 68db ldr r3, [r3, #12] + 800ed6e: 617b str r3, [r7, #20] uint32_t rf1rflags = READ_REG(hcan->Instance->RF1R); - 800ed54: 687b ldr r3, [r7, #4] - 800ed56: 681b ldr r3, [r3, #0] - 800ed58: 691b ldr r3, [r3, #16] - 800ed5a: 613b str r3, [r7, #16] + 800ed70: 687b ldr r3, [r7, #4] + 800ed72: 681b ldr r3, [r3, #0] + 800ed74: 691b ldr r3, [r3, #16] + 800ed76: 613b str r3, [r7, #16] uint32_t esrflags = READ_REG(hcan->Instance->ESR); - 800ed5c: 687b ldr r3, [r7, #4] - 800ed5e: 681b ldr r3, [r3, #0] - 800ed60: 699b ldr r3, [r3, #24] - 800ed62: 60fb str r3, [r7, #12] + 800ed78: 687b ldr r3, [r7, #4] + 800ed7a: 681b ldr r3, [r3, #0] + 800ed7c: 699b ldr r3, [r3, #24] + 800ed7e: 60fb str r3, [r7, #12] /* Transmit Mailbox empty interrupt management *****************************/ if ((interrupts & CAN_IT_TX_MAILBOX_EMPTY) != 0U) - 800ed64: 6a3b ldr r3, [r7, #32] - 800ed66: f003 0301 and.w r3, r3, #1 - 800ed6a: 2b00 cmp r3, #0 - 800ed6c: d07c beq.n 800ee68 + 800ed80: 6a3b ldr r3, [r7, #32] + 800ed82: f003 0301 and.w r3, r3, #1 + 800ed86: 2b00 cmp r3, #0 + 800ed88: d07c beq.n 800ee84 { /* Transmit Mailbox 0 management *****************************************/ if ((tsrflags & CAN_TSR_RQCP0) != 0U) - 800ed6e: 69bb ldr r3, [r7, #24] - 800ed70: f003 0301 and.w r3, r3, #1 - 800ed74: 2b00 cmp r3, #0 - 800ed76: d023 beq.n 800edc0 + 800ed8a: 69bb ldr r3, [r7, #24] + 800ed8c: f003 0301 and.w r3, r3, #1 + 800ed90: 2b00 cmp r3, #0 + 800ed92: d023 beq.n 800eddc { /* Clear the Transmission Complete flag (and TXOK0,ALST0,TERR0 bits) */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_RQCP0); - 800ed78: 687b ldr r3, [r7, #4] - 800ed7a: 681b ldr r3, [r3, #0] - 800ed7c: 2201 movs r2, #1 - 800ed7e: 609a str r2, [r3, #8] + 800ed94: 687b ldr r3, [r7, #4] + 800ed96: 681b ldr r3, [r3, #0] + 800ed98: 2201 movs r2, #1 + 800ed9a: 609a str r2, [r3, #8] if ((tsrflags & CAN_TSR_TXOK0) != 0U) - 800ed80: 69bb ldr r3, [r7, #24] - 800ed82: f003 0302 and.w r3, r3, #2 - 800ed86: 2b00 cmp r3, #0 - 800ed88: d003 beq.n 800ed92 + 800ed9c: 69bb ldr r3, [r7, #24] + 800ed9e: f003 0302 and.w r3, r3, #2 + 800eda2: 2b00 cmp r3, #0 + 800eda4: d003 beq.n 800edae #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox0CompleteCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox0CompleteCallback(hcan); - 800ed8a: 6878 ldr r0, [r7, #4] - 800ed8c: f000 f983 bl 800f096 - 800ed90: e016 b.n 800edc0 + 800eda6: 6878 ldr r0, [r7, #4] + 800eda8: f000 f983 bl 800f0b2 + 800edac: e016 b.n 800eddc #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } else { if ((tsrflags & CAN_TSR_ALST0) != 0U) - 800ed92: 69bb ldr r3, [r7, #24] - 800ed94: f003 0304 and.w r3, r3, #4 - 800ed98: 2b00 cmp r3, #0 - 800ed9a: d004 beq.n 800eda6 + 800edae: 69bb ldr r3, [r7, #24] + 800edb0: f003 0304 and.w r3, r3, #4 + 800edb4: 2b00 cmp r3, #0 + 800edb6: d004 beq.n 800edc2 { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_ALST0; - 800ed9c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ed9e: f443 6300 orr.w r3, r3, #2048 @ 0x800 - 800eda2: 627b str r3, [r7, #36] @ 0x24 - 800eda4: e00c b.n 800edc0 + 800edb8: 6a7b ldr r3, [r7, #36] @ 0x24 + 800edba: f443 6300 orr.w r3, r3, #2048 @ 0x800 + 800edbe: 627b str r3, [r7, #36] @ 0x24 + 800edc0: e00c b.n 800eddc } else if ((tsrflags & CAN_TSR_TERR0) != 0U) - 800eda6: 69bb ldr r3, [r7, #24] - 800eda8: f003 0308 and.w r3, r3, #8 - 800edac: 2b00 cmp r3, #0 - 800edae: d004 beq.n 800edba + 800edc2: 69bb ldr r3, [r7, #24] + 800edc4: f003 0308 and.w r3, r3, #8 + 800edc8: 2b00 cmp r3, #0 + 800edca: d004 beq.n 800edd6 { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_TERR0; - 800edb0: 6a7b ldr r3, [r7, #36] @ 0x24 - 800edb2: f443 5380 orr.w r3, r3, #4096 @ 0x1000 - 800edb6: 627b str r3, [r7, #36] @ 0x24 - 800edb8: e002 b.n 800edc0 + 800edcc: 6a7b ldr r3, [r7, #36] @ 0x24 + 800edce: f443 5380 orr.w r3, r3, #4096 @ 0x1000 + 800edd2: 627b str r3, [r7, #36] @ 0x24 + 800edd4: e002 b.n 800eddc #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox0AbortCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox0AbortCallback(hcan); - 800edba: 6878 ldr r0, [r7, #4] - 800edbc: f000 f986 bl 800f0cc + 800edd6: 6878 ldr r0, [r7, #4] + 800edd8: f000 f986 bl 800f0e8 } } } /* Transmit Mailbox 1 management *****************************************/ if ((tsrflags & CAN_TSR_RQCP1) != 0U) - 800edc0: 69bb ldr r3, [r7, #24] - 800edc2: f403 7380 and.w r3, r3, #256 @ 0x100 - 800edc6: 2b00 cmp r3, #0 - 800edc8: d024 beq.n 800ee14 + 800eddc: 69bb ldr r3, [r7, #24] + 800edde: f403 7380 and.w r3, r3, #256 @ 0x100 + 800ede2: 2b00 cmp r3, #0 + 800ede4: d024 beq.n 800ee30 { /* Clear the Transmission Complete flag (and TXOK1,ALST1,TERR1 bits) */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_RQCP1); - 800edca: 687b ldr r3, [r7, #4] - 800edcc: 681b ldr r3, [r3, #0] - 800edce: f44f 7280 mov.w r2, #256 @ 0x100 - 800edd2: 609a str r2, [r3, #8] + 800ede6: 687b ldr r3, [r7, #4] + 800ede8: 681b ldr r3, [r3, #0] + 800edea: f44f 7280 mov.w r2, #256 @ 0x100 + 800edee: 609a str r2, [r3, #8] if ((tsrflags & CAN_TSR_TXOK1) != 0U) - 800edd4: 69bb ldr r3, [r7, #24] - 800edd6: f403 7300 and.w r3, r3, #512 @ 0x200 - 800edda: 2b00 cmp r3, #0 - 800eddc: d003 beq.n 800ede6 + 800edf0: 69bb ldr r3, [r7, #24] + 800edf2: f403 7300 and.w r3, r3, #512 @ 0x200 + 800edf6: 2b00 cmp r3, #0 + 800edf8: d003 beq.n 800ee02 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox1CompleteCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox1CompleteCallback(hcan); - 800edde: 6878 ldr r0, [r7, #4] - 800ede0: f000 f962 bl 800f0a8 - 800ede4: e016 b.n 800ee14 + 800edfa: 6878 ldr r0, [r7, #4] + 800edfc: f000 f962 bl 800f0c4 + 800ee00: e016 b.n 800ee30 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } else { if ((tsrflags & CAN_TSR_ALST1) != 0U) - 800ede6: 69bb ldr r3, [r7, #24] - 800ede8: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800edec: 2b00 cmp r3, #0 - 800edee: d004 beq.n 800edfa + 800ee02: 69bb ldr r3, [r7, #24] + 800ee04: f403 6380 and.w r3, r3, #1024 @ 0x400 + 800ee08: 2b00 cmp r3, #0 + 800ee0a: d004 beq.n 800ee16 { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_ALST1; - 800edf0: 6a7b ldr r3, [r7, #36] @ 0x24 - 800edf2: f443 5300 orr.w r3, r3, #8192 @ 0x2000 - 800edf6: 627b str r3, [r7, #36] @ 0x24 - 800edf8: e00c b.n 800ee14 + 800ee0c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800ee0e: f443 5300 orr.w r3, r3, #8192 @ 0x2000 + 800ee12: 627b str r3, [r7, #36] @ 0x24 + 800ee14: e00c b.n 800ee30 } else if ((tsrflags & CAN_TSR_TERR1) != 0U) - 800edfa: 69bb ldr r3, [r7, #24] - 800edfc: f403 6300 and.w r3, r3, #2048 @ 0x800 - 800ee00: 2b00 cmp r3, #0 - 800ee02: d004 beq.n 800ee0e + 800ee16: 69bb ldr r3, [r7, #24] + 800ee18: f403 6300 and.w r3, r3, #2048 @ 0x800 + 800ee1c: 2b00 cmp r3, #0 + 800ee1e: d004 beq.n 800ee2a { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_TERR1; - 800ee04: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ee06: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 800ee0a: 627b str r3, [r7, #36] @ 0x24 - 800ee0c: e002 b.n 800ee14 + 800ee20: 6a7b ldr r3, [r7, #36] @ 0x24 + 800ee22: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 800ee26: 627b str r3, [r7, #36] @ 0x24 + 800ee28: e002 b.n 800ee30 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox1AbortCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox1AbortCallback(hcan); - 800ee0e: 6878 ldr r0, [r7, #4] - 800ee10: f000 f965 bl 800f0de + 800ee2a: 6878 ldr r0, [r7, #4] + 800ee2c: f000 f965 bl 800f0fa } } } /* Transmit Mailbox 2 management *****************************************/ if ((tsrflags & CAN_TSR_RQCP2) != 0U) - 800ee14: 69bb ldr r3, [r7, #24] - 800ee16: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800ee1a: 2b00 cmp r3, #0 - 800ee1c: d024 beq.n 800ee68 + 800ee30: 69bb ldr r3, [r7, #24] + 800ee32: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800ee36: 2b00 cmp r3, #0 + 800ee38: d024 beq.n 800ee84 { /* Clear the Transmission Complete flag (and TXOK2,ALST2,TERR2 bits) */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_RQCP2); - 800ee1e: 687b ldr r3, [r7, #4] - 800ee20: 681b ldr r3, [r3, #0] - 800ee22: f44f 3280 mov.w r2, #65536 @ 0x10000 - 800ee26: 609a str r2, [r3, #8] + 800ee3a: 687b ldr r3, [r7, #4] + 800ee3c: 681b ldr r3, [r3, #0] + 800ee3e: f44f 3280 mov.w r2, #65536 @ 0x10000 + 800ee42: 609a str r2, [r3, #8] if ((tsrflags & CAN_TSR_TXOK2) != 0U) - 800ee28: 69bb ldr r3, [r7, #24] - 800ee2a: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800ee2e: 2b00 cmp r3, #0 - 800ee30: d003 beq.n 800ee3a + 800ee44: 69bb ldr r3, [r7, #24] + 800ee46: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800ee4a: 2b00 cmp r3, #0 + 800ee4c: d003 beq.n 800ee56 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox2CompleteCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox2CompleteCallback(hcan); - 800ee32: 6878 ldr r0, [r7, #4] - 800ee34: f000 f941 bl 800f0ba - 800ee38: e016 b.n 800ee68 + 800ee4e: 6878 ldr r0, [r7, #4] + 800ee50: f000 f941 bl 800f0d6 + 800ee54: e016 b.n 800ee84 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } else { if ((tsrflags & CAN_TSR_ALST2) != 0U) - 800ee3a: 69bb ldr r3, [r7, #24] - 800ee3c: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 800ee40: 2b00 cmp r3, #0 - 800ee42: d004 beq.n 800ee4e + 800ee56: 69bb ldr r3, [r7, #24] + 800ee58: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 800ee5c: 2b00 cmp r3, #0 + 800ee5e: d004 beq.n 800ee6a { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_ALST2; - 800ee44: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ee46: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 800ee4a: 627b str r3, [r7, #36] @ 0x24 - 800ee4c: e00c b.n 800ee68 + 800ee60: 6a7b ldr r3, [r7, #36] @ 0x24 + 800ee62: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 800ee66: 627b str r3, [r7, #36] @ 0x24 + 800ee68: e00c b.n 800ee84 } else if ((tsrflags & CAN_TSR_TERR2) != 0U) - 800ee4e: 69bb ldr r3, [r7, #24] - 800ee50: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 800ee54: 2b00 cmp r3, #0 - 800ee56: d004 beq.n 800ee62 + 800ee6a: 69bb ldr r3, [r7, #24] + 800ee6c: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 800ee70: 2b00 cmp r3, #0 + 800ee72: d004 beq.n 800ee7e { /* Update error code */ errorcode |= HAL_CAN_ERROR_TX_TERR2; - 800ee58: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ee5a: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 800ee5e: 627b str r3, [r7, #36] @ 0x24 - 800ee60: e002 b.n 800ee68 + 800ee74: 6a7b ldr r3, [r7, #36] @ 0x24 + 800ee76: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 800ee7a: 627b str r3, [r7, #36] @ 0x24 + 800ee7c: e002 b.n 800ee84 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->TxMailbox2AbortCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_TxMailbox2AbortCallback(hcan); - 800ee62: 6878 ldr r0, [r7, #4] - 800ee64: f000 f944 bl 800f0f0 + 800ee7e: 6878 ldr r0, [r7, #4] + 800ee80: f000 f944 bl 800f10c } } } /* Receive FIFO 0 overrun interrupt management *****************************/ if ((interrupts & CAN_IT_RX_FIFO0_OVERRUN) != 0U) - 800ee68: 6a3b ldr r3, [r7, #32] - 800ee6a: f003 0308 and.w r3, r3, #8 - 800ee6e: 2b00 cmp r3, #0 - 800ee70: d00c beq.n 800ee8c + 800ee84: 6a3b ldr r3, [r7, #32] + 800ee86: f003 0308 and.w r3, r3, #8 + 800ee8a: 2b00 cmp r3, #0 + 800ee8c: d00c beq.n 800eea8 { if ((rf0rflags & CAN_RF0R_FOVR0) != 0U) - 800ee72: 697b ldr r3, [r7, #20] - 800ee74: f003 0310 and.w r3, r3, #16 - 800ee78: 2b00 cmp r3, #0 - 800ee7a: d007 beq.n 800ee8c + 800ee8e: 697b ldr r3, [r7, #20] + 800ee90: f003 0310 and.w r3, r3, #16 + 800ee94: 2b00 cmp r3, #0 + 800ee96: d007 beq.n 800eea8 { /* Set CAN error code to Rx Fifo 0 overrun error */ errorcode |= HAL_CAN_ERROR_RX_FOV0; - 800ee7c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ee7e: f443 7300 orr.w r3, r3, #512 @ 0x200 - 800ee82: 627b str r3, [r7, #36] @ 0x24 + 800ee98: 6a7b ldr r3, [r7, #36] @ 0x24 + 800ee9a: f443 7300 orr.w r3, r3, #512 @ 0x200 + 800ee9e: 627b str r3, [r7, #36] @ 0x24 /* Clear FIFO0 Overrun Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_FOV0); - 800ee84: 687b ldr r3, [r7, #4] - 800ee86: 681b ldr r3, [r3, #0] - 800ee88: 2210 movs r2, #16 - 800ee8a: 60da str r2, [r3, #12] + 800eea0: 687b ldr r3, [r7, #4] + 800eea2: 681b ldr r3, [r3, #0] + 800eea4: 2210 movs r2, #16 + 800eea6: 60da str r2, [r3, #12] } } /* Receive FIFO 0 full interrupt management ********************************/ if ((interrupts & CAN_IT_RX_FIFO0_FULL) != 0U) - 800ee8c: 6a3b ldr r3, [r7, #32] - 800ee8e: f003 0304 and.w r3, r3, #4 - 800ee92: 2b00 cmp r3, #0 - 800ee94: d00b beq.n 800eeae + 800eea8: 6a3b ldr r3, [r7, #32] + 800eeaa: f003 0304 and.w r3, r3, #4 + 800eeae: 2b00 cmp r3, #0 + 800eeb0: d00b beq.n 800eeca { if ((rf0rflags & CAN_RF0R_FULL0) != 0U) - 800ee96: 697b ldr r3, [r7, #20] - 800ee98: f003 0308 and.w r3, r3, #8 - 800ee9c: 2b00 cmp r3, #0 - 800ee9e: d006 beq.n 800eeae + 800eeb2: 697b ldr r3, [r7, #20] + 800eeb4: f003 0308 and.w r3, r3, #8 + 800eeb8: 2b00 cmp r3, #0 + 800eeba: d006 beq.n 800eeca { /* Clear FIFO 0 full Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_FF0); - 800eea0: 687b ldr r3, [r7, #4] - 800eea2: 681b ldr r3, [r3, #0] - 800eea4: 2208 movs r2, #8 - 800eea6: 60da str r2, [r3, #12] + 800eebc: 687b ldr r3, [r7, #4] + 800eebe: 681b ldr r3, [r3, #0] + 800eec0: 2208 movs r2, #8 + 800eec2: 60da str r2, [r3, #12] #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->RxFifo0FullCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_RxFifo0FullCallback(hcan); - 800eea8: 6878 ldr r0, [r7, #4] - 800eeaa: f000 f933 bl 800f114 + 800eec4: 6878 ldr r0, [r7, #4] + 800eec6: f000 f933 bl 800f130 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* Receive FIFO 0 message pending interrupt management *********************/ if ((interrupts & CAN_IT_RX_FIFO0_MSG_PENDING) != 0U) - 800eeae: 6a3b ldr r3, [r7, #32] - 800eeb0: f003 0302 and.w r3, r3, #2 - 800eeb4: 2b00 cmp r3, #0 - 800eeb6: d009 beq.n 800eecc + 800eeca: 6a3b ldr r3, [r7, #32] + 800eecc: f003 0302 and.w r3, r3, #2 + 800eed0: 2b00 cmp r3, #0 + 800eed2: d009 beq.n 800eee8 { /* Check if message is still pending */ if ((hcan->Instance->RF0R & CAN_RF0R_FMP0) != 0U) - 800eeb8: 687b ldr r3, [r7, #4] - 800eeba: 681b ldr r3, [r3, #0] - 800eebc: 68db ldr r3, [r3, #12] - 800eebe: f003 0303 and.w r3, r3, #3 - 800eec2: 2b00 cmp r3, #0 - 800eec4: d002 beq.n 800eecc + 800eed4: 687b ldr r3, [r7, #4] + 800eed6: 681b ldr r3, [r3, #0] + 800eed8: 68db ldr r3, [r3, #12] + 800eeda: f003 0303 and.w r3, r3, #3 + 800eede: 2b00 cmp r3, #0 + 800eee0: d002 beq.n 800eee8 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->RxFifo0MsgPendingCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_RxFifo0MsgPendingCallback(hcan); - 800eec6: 6878 ldr r0, [r7, #4] - 800eec8: f000 f91b bl 800f102 + 800eee2: 6878 ldr r0, [r7, #4] + 800eee4: f000 f91b bl 800f11e #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* Receive FIFO 1 overrun interrupt management *****************************/ if ((interrupts & CAN_IT_RX_FIFO1_OVERRUN) != 0U) - 800eecc: 6a3b ldr r3, [r7, #32] - 800eece: f003 0340 and.w r3, r3, #64 @ 0x40 - 800eed2: 2b00 cmp r3, #0 - 800eed4: d00c beq.n 800eef0 + 800eee8: 6a3b ldr r3, [r7, #32] + 800eeea: f003 0340 and.w r3, r3, #64 @ 0x40 + 800eeee: 2b00 cmp r3, #0 + 800eef0: d00c beq.n 800ef0c { if ((rf1rflags & CAN_RF1R_FOVR1) != 0U) - 800eed6: 693b ldr r3, [r7, #16] - 800eed8: f003 0310 and.w r3, r3, #16 - 800eedc: 2b00 cmp r3, #0 - 800eede: d007 beq.n 800eef0 + 800eef2: 693b ldr r3, [r7, #16] + 800eef4: f003 0310 and.w r3, r3, #16 + 800eef8: 2b00 cmp r3, #0 + 800eefa: d007 beq.n 800ef0c { /* Set CAN error code to Rx Fifo 1 overrun error */ errorcode |= HAL_CAN_ERROR_RX_FOV1; - 800eee0: 6a7b ldr r3, [r7, #36] @ 0x24 - 800eee2: f443 6380 orr.w r3, r3, #1024 @ 0x400 - 800eee6: 627b str r3, [r7, #36] @ 0x24 + 800eefc: 6a7b ldr r3, [r7, #36] @ 0x24 + 800eefe: f443 6380 orr.w r3, r3, #1024 @ 0x400 + 800ef02: 627b str r3, [r7, #36] @ 0x24 /* Clear FIFO1 Overrun Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_FOV1); - 800eee8: 687b ldr r3, [r7, #4] - 800eeea: 681b ldr r3, [r3, #0] - 800eeec: 2210 movs r2, #16 - 800eeee: 611a str r2, [r3, #16] + 800ef04: 687b ldr r3, [r7, #4] + 800ef06: 681b ldr r3, [r3, #0] + 800ef08: 2210 movs r2, #16 + 800ef0a: 611a str r2, [r3, #16] } } /* Receive FIFO 1 full interrupt management ********************************/ if ((interrupts & CAN_IT_RX_FIFO1_FULL) != 0U) - 800eef0: 6a3b ldr r3, [r7, #32] - 800eef2: f003 0320 and.w r3, r3, #32 - 800eef6: 2b00 cmp r3, #0 - 800eef8: d00b beq.n 800ef12 + 800ef0c: 6a3b ldr r3, [r7, #32] + 800ef0e: f003 0320 and.w r3, r3, #32 + 800ef12: 2b00 cmp r3, #0 + 800ef14: d00b beq.n 800ef2e { if ((rf1rflags & CAN_RF1R_FULL1) != 0U) - 800eefa: 693b ldr r3, [r7, #16] - 800eefc: f003 0308 and.w r3, r3, #8 - 800ef00: 2b00 cmp r3, #0 - 800ef02: d006 beq.n 800ef12 + 800ef16: 693b ldr r3, [r7, #16] + 800ef18: f003 0308 and.w r3, r3, #8 + 800ef1c: 2b00 cmp r3, #0 + 800ef1e: d006 beq.n 800ef2e { /* Clear FIFO 1 full Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_FF1); - 800ef04: 687b ldr r3, [r7, #4] - 800ef06: 681b ldr r3, [r3, #0] - 800ef08: 2208 movs r2, #8 - 800ef0a: 611a str r2, [r3, #16] + 800ef20: 687b ldr r3, [r7, #4] + 800ef22: 681b ldr r3, [r3, #0] + 800ef24: 2208 movs r2, #8 + 800ef26: 611a str r2, [r3, #16] #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->RxFifo1FullCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_RxFifo1FullCallback(hcan); - 800ef0c: 6878 ldr r0, [r7, #4] - 800ef0e: f000 f90a bl 800f126 + 800ef28: 6878 ldr r0, [r7, #4] + 800ef2a: f000 f90a bl 800f142 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* Receive FIFO 1 message pending interrupt management *********************/ if ((interrupts & CAN_IT_RX_FIFO1_MSG_PENDING) != 0U) - 800ef12: 6a3b ldr r3, [r7, #32] - 800ef14: f003 0310 and.w r3, r3, #16 - 800ef18: 2b00 cmp r3, #0 - 800ef1a: d009 beq.n 800ef30 + 800ef2e: 6a3b ldr r3, [r7, #32] + 800ef30: f003 0310 and.w r3, r3, #16 + 800ef34: 2b00 cmp r3, #0 + 800ef36: d009 beq.n 800ef4c { /* Check if message is still pending */ if ((hcan->Instance->RF1R & CAN_RF1R_FMP1) != 0U) - 800ef1c: 687b ldr r3, [r7, #4] - 800ef1e: 681b ldr r3, [r3, #0] - 800ef20: 691b ldr r3, [r3, #16] - 800ef22: f003 0303 and.w r3, r3, #3 - 800ef26: 2b00 cmp r3, #0 - 800ef28: d002 beq.n 800ef30 + 800ef38: 687b ldr r3, [r7, #4] + 800ef3a: 681b ldr r3, [r3, #0] + 800ef3c: 691b ldr r3, [r3, #16] + 800ef3e: f003 0303 and.w r3, r3, #3 + 800ef42: 2b00 cmp r3, #0 + 800ef44: d002 beq.n 800ef4c #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->RxFifo1MsgPendingCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_RxFifo1MsgPendingCallback(hcan); - 800ef2a: 6878 ldr r0, [r7, #4] - 800ef2c: f7fb fdf6 bl 800ab1c + 800ef46: 6878 ldr r0, [r7, #4] + 800ef48: f7fb fde8 bl 800ab1c #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* Sleep interrupt management *********************************************/ if ((interrupts & CAN_IT_SLEEP_ACK) != 0U) - 800ef30: 6a3b ldr r3, [r7, #32] - 800ef32: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800ef36: 2b00 cmp r3, #0 - 800ef38: d00b beq.n 800ef52 + 800ef4c: 6a3b ldr r3, [r7, #32] + 800ef4e: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800ef52: 2b00 cmp r3, #0 + 800ef54: d00b beq.n 800ef6e { if ((msrflags & CAN_MSR_SLAKI) != 0U) - 800ef3a: 69fb ldr r3, [r7, #28] - 800ef3c: f003 0310 and.w r3, r3, #16 - 800ef40: 2b00 cmp r3, #0 - 800ef42: d006 beq.n 800ef52 + 800ef56: 69fb ldr r3, [r7, #28] + 800ef58: f003 0310 and.w r3, r3, #16 + 800ef5c: 2b00 cmp r3, #0 + 800ef5e: d006 beq.n 800ef6e { /* Clear Sleep interrupt Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_SLAKI); - 800ef44: 687b ldr r3, [r7, #4] - 800ef46: 681b ldr r3, [r3, #0] - 800ef48: 2210 movs r2, #16 - 800ef4a: 605a str r2, [r3, #4] + 800ef60: 687b ldr r3, [r7, #4] + 800ef62: 681b ldr r3, [r3, #0] + 800ef64: 2210 movs r2, #16 + 800ef66: 605a str r2, [r3, #4] #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->SleepCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_SleepCallback(hcan); - 800ef4c: 6878 ldr r0, [r7, #4] - 800ef4e: f000 f8f3 bl 800f138 + 800ef68: 6878 ldr r0, [r7, #4] + 800ef6a: f000 f8f3 bl 800f154 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* WakeUp interrupt management *********************************************/ if ((interrupts & CAN_IT_WAKEUP) != 0U) - 800ef52: 6a3b ldr r3, [r7, #32] - 800ef54: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800ef58: 2b00 cmp r3, #0 - 800ef5a: d00b beq.n 800ef74 + 800ef6e: 6a3b ldr r3, [r7, #32] + 800ef70: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800ef74: 2b00 cmp r3, #0 + 800ef76: d00b beq.n 800ef90 { if ((msrflags & CAN_MSR_WKUI) != 0U) - 800ef5c: 69fb ldr r3, [r7, #28] - 800ef5e: f003 0308 and.w r3, r3, #8 - 800ef62: 2b00 cmp r3, #0 - 800ef64: d006 beq.n 800ef74 + 800ef78: 69fb ldr r3, [r7, #28] + 800ef7a: f003 0308 and.w r3, r3, #8 + 800ef7e: 2b00 cmp r3, #0 + 800ef80: d006 beq.n 800ef90 { /* Clear WakeUp Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_WKU); - 800ef66: 687b ldr r3, [r7, #4] - 800ef68: 681b ldr r3, [r3, #0] - 800ef6a: 2208 movs r2, #8 - 800ef6c: 605a str r2, [r3, #4] + 800ef82: 687b ldr r3, [r7, #4] + 800ef84: 681b ldr r3, [r3, #0] + 800ef86: 2208 movs r2, #8 + 800ef88: 605a str r2, [r3, #4] #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->WakeUpFromRxMsgCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_WakeUpFromRxMsgCallback(hcan); - 800ef6e: 6878 ldr r0, [r7, #4] - 800ef70: f000 f8eb bl 800f14a + 800ef8a: 6878 ldr r0, [r7, #4] + 800ef8c: f000 f8eb bl 800f166 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } /* Error interrupts management *********************************************/ if ((interrupts & CAN_IT_ERROR) != 0U) - 800ef74: 6a3b ldr r3, [r7, #32] - 800ef76: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 800ef7a: 2b00 cmp r3, #0 - 800ef7c: d07b beq.n 800f076 + 800ef90: 6a3b ldr r3, [r7, #32] + 800ef92: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 800ef96: 2b00 cmp r3, #0 + 800ef98: d07b beq.n 800f092 { if ((msrflags & CAN_MSR_ERRI) != 0U) - 800ef7e: 69fb ldr r3, [r7, #28] - 800ef80: f003 0304 and.w r3, r3, #4 - 800ef84: 2b00 cmp r3, #0 - 800ef86: d072 beq.n 800f06e + 800ef9a: 69fb ldr r3, [r7, #28] + 800ef9c: f003 0304 and.w r3, r3, #4 + 800efa0: 2b00 cmp r3, #0 + 800efa2: d072 beq.n 800f08a { /* Check Error Warning Flag */ if (((interrupts & CAN_IT_ERROR_WARNING) != 0U) && - 800ef88: 6a3b ldr r3, [r7, #32] - 800ef8a: f403 7380 and.w r3, r3, #256 @ 0x100 - 800ef8e: 2b00 cmp r3, #0 - 800ef90: d008 beq.n 800efa4 + 800efa4: 6a3b ldr r3, [r7, #32] + 800efa6: f403 7380 and.w r3, r3, #256 @ 0x100 + 800efaa: 2b00 cmp r3, #0 + 800efac: d008 beq.n 800efc0 ((esrflags & CAN_ESR_EWGF) != 0U)) - 800ef92: 68fb ldr r3, [r7, #12] - 800ef94: f003 0301 and.w r3, r3, #1 + 800efae: 68fb ldr r3, [r7, #12] + 800efb0: f003 0301 and.w r3, r3, #1 if (((interrupts & CAN_IT_ERROR_WARNING) != 0U) && - 800ef98: 2b00 cmp r3, #0 - 800ef9a: d003 beq.n 800efa4 + 800efb4: 2b00 cmp r3, #0 + 800efb6: d003 beq.n 800efc0 { /* Set CAN error code to Error Warning */ errorcode |= HAL_CAN_ERROR_EWG; - 800ef9c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800ef9e: f043 0301 orr.w r3, r3, #1 - 800efa2: 627b str r3, [r7, #36] @ 0x24 + 800efb8: 6a7b ldr r3, [r7, #36] @ 0x24 + 800efba: f043 0301 orr.w r3, r3, #1 + 800efbe: 627b str r3, [r7, #36] @ 0x24 /* No need for clear of Error Warning Flag as read-only */ } /* Check Error Passive Flag */ if (((interrupts & CAN_IT_ERROR_PASSIVE) != 0U) && - 800efa4: 6a3b ldr r3, [r7, #32] - 800efa6: f403 7300 and.w r3, r3, #512 @ 0x200 - 800efaa: 2b00 cmp r3, #0 - 800efac: d008 beq.n 800efc0 + 800efc0: 6a3b ldr r3, [r7, #32] + 800efc2: f403 7300 and.w r3, r3, #512 @ 0x200 + 800efc6: 2b00 cmp r3, #0 + 800efc8: d008 beq.n 800efdc ((esrflags & CAN_ESR_EPVF) != 0U)) - 800efae: 68fb ldr r3, [r7, #12] - 800efb0: f003 0302 and.w r3, r3, #2 + 800efca: 68fb ldr r3, [r7, #12] + 800efcc: f003 0302 and.w r3, r3, #2 if (((interrupts & CAN_IT_ERROR_PASSIVE) != 0U) && - 800efb4: 2b00 cmp r3, #0 - 800efb6: d003 beq.n 800efc0 + 800efd0: 2b00 cmp r3, #0 + 800efd2: d003 beq.n 800efdc { /* Set CAN error code to Error Passive */ errorcode |= HAL_CAN_ERROR_EPV; - 800efb8: 6a7b ldr r3, [r7, #36] @ 0x24 - 800efba: f043 0302 orr.w r3, r3, #2 - 800efbe: 627b str r3, [r7, #36] @ 0x24 + 800efd4: 6a7b ldr r3, [r7, #36] @ 0x24 + 800efd6: f043 0302 orr.w r3, r3, #2 + 800efda: 627b str r3, [r7, #36] @ 0x24 /* No need for clear of Error Passive Flag as read-only */ } /* Check Bus-off Flag */ if (((interrupts & CAN_IT_BUSOFF) != 0U) && - 800efc0: 6a3b ldr r3, [r7, #32] - 800efc2: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800efc6: 2b00 cmp r3, #0 - 800efc8: d008 beq.n 800efdc + 800efdc: 6a3b ldr r3, [r7, #32] + 800efde: f403 6380 and.w r3, r3, #1024 @ 0x400 + 800efe2: 2b00 cmp r3, #0 + 800efe4: d008 beq.n 800eff8 ((esrflags & CAN_ESR_BOFF) != 0U)) - 800efca: 68fb ldr r3, [r7, #12] - 800efcc: f003 0304 and.w r3, r3, #4 + 800efe6: 68fb ldr r3, [r7, #12] + 800efe8: f003 0304 and.w r3, r3, #4 if (((interrupts & CAN_IT_BUSOFF) != 0U) && - 800efd0: 2b00 cmp r3, #0 - 800efd2: d003 beq.n 800efdc + 800efec: 2b00 cmp r3, #0 + 800efee: d003 beq.n 800eff8 { /* Set CAN error code to Bus-Off */ errorcode |= HAL_CAN_ERROR_BOF; - 800efd4: 6a7b ldr r3, [r7, #36] @ 0x24 - 800efd6: f043 0304 orr.w r3, r3, #4 - 800efda: 627b str r3, [r7, #36] @ 0x24 + 800eff0: 6a7b ldr r3, [r7, #36] @ 0x24 + 800eff2: f043 0304 orr.w r3, r3, #4 + 800eff6: 627b str r3, [r7, #36] @ 0x24 /* No need for clear of Error Bus-Off as read-only */ } /* Check Last Error Code Flag */ if (((interrupts & CAN_IT_LAST_ERROR_CODE) != 0U) && - 800efdc: 6a3b ldr r3, [r7, #32] - 800efde: f403 6300 and.w r3, r3, #2048 @ 0x800 - 800efe2: 2b00 cmp r3, #0 - 800efe4: d043 beq.n 800f06e + 800eff8: 6a3b ldr r3, [r7, #32] + 800effa: f403 6300 and.w r3, r3, #2048 @ 0x800 + 800effe: 2b00 cmp r3, #0 + 800f000: d043 beq.n 800f08a ((esrflags & CAN_ESR_LEC) != 0U)) - 800efe6: 68fb ldr r3, [r7, #12] - 800efe8: f003 0370 and.w r3, r3, #112 @ 0x70 + 800f002: 68fb ldr r3, [r7, #12] + 800f004: f003 0370 and.w r3, r3, #112 @ 0x70 if (((interrupts & CAN_IT_LAST_ERROR_CODE) != 0U) && - 800efec: 2b00 cmp r3, #0 - 800efee: d03e beq.n 800f06e + 800f008: 2b00 cmp r3, #0 + 800f00a: d03e beq.n 800f08a { switch (esrflags & CAN_ESR_LEC) - 800eff0: 68fb ldr r3, [r7, #12] - 800eff2: f003 0370 and.w r3, r3, #112 @ 0x70 - 800eff6: 2b60 cmp r3, #96 @ 0x60 - 800eff8: d02b beq.n 800f052 - 800effa: 2b60 cmp r3, #96 @ 0x60 - 800effc: d82e bhi.n 800f05c - 800effe: 2b50 cmp r3, #80 @ 0x50 - 800f000: d022 beq.n 800f048 - 800f002: 2b50 cmp r3, #80 @ 0x50 - 800f004: d82a bhi.n 800f05c - 800f006: 2b40 cmp r3, #64 @ 0x40 - 800f008: d019 beq.n 800f03e - 800f00a: 2b40 cmp r3, #64 @ 0x40 - 800f00c: d826 bhi.n 800f05c - 800f00e: 2b30 cmp r3, #48 @ 0x30 - 800f010: d010 beq.n 800f034 - 800f012: 2b30 cmp r3, #48 @ 0x30 - 800f014: d822 bhi.n 800f05c - 800f016: 2b10 cmp r3, #16 - 800f018: d002 beq.n 800f020 - 800f01a: 2b20 cmp r3, #32 - 800f01c: d005 beq.n 800f02a + 800f00c: 68fb ldr r3, [r7, #12] + 800f00e: f003 0370 and.w r3, r3, #112 @ 0x70 + 800f012: 2b60 cmp r3, #96 @ 0x60 + 800f014: d02b beq.n 800f06e + 800f016: 2b60 cmp r3, #96 @ 0x60 + 800f018: d82e bhi.n 800f078 + 800f01a: 2b50 cmp r3, #80 @ 0x50 + 800f01c: d022 beq.n 800f064 + 800f01e: 2b50 cmp r3, #80 @ 0x50 + 800f020: d82a bhi.n 800f078 + 800f022: 2b40 cmp r3, #64 @ 0x40 + 800f024: d019 beq.n 800f05a + 800f026: 2b40 cmp r3, #64 @ 0x40 + 800f028: d826 bhi.n 800f078 + 800f02a: 2b30 cmp r3, #48 @ 0x30 + 800f02c: d010 beq.n 800f050 + 800f02e: 2b30 cmp r3, #48 @ 0x30 + 800f030: d822 bhi.n 800f078 + 800f032: 2b10 cmp r3, #16 + 800f034: d002 beq.n 800f03c + 800f036: 2b20 cmp r3, #32 + 800f038: d005 beq.n 800f046 case (CAN_ESR_LEC_2 | CAN_ESR_LEC_1): /* Set CAN error code to CRC error */ errorcode |= HAL_CAN_ERROR_CRC; break; default: break; - 800f01e: e01d b.n 800f05c + 800f03a: e01d b.n 800f078 errorcode |= HAL_CAN_ERROR_STF; - 800f020: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f022: f043 0308 orr.w r3, r3, #8 - 800f026: 627b str r3, [r7, #36] @ 0x24 + 800f03c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f03e: f043 0308 orr.w r3, r3, #8 + 800f042: 627b str r3, [r7, #36] @ 0x24 break; - 800f028: e019 b.n 800f05e + 800f044: e019 b.n 800f07a errorcode |= HAL_CAN_ERROR_FOR; - 800f02a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f02c: f043 0310 orr.w r3, r3, #16 - 800f030: 627b str r3, [r7, #36] @ 0x24 + 800f046: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f048: f043 0310 orr.w r3, r3, #16 + 800f04c: 627b str r3, [r7, #36] @ 0x24 break; - 800f032: e014 b.n 800f05e + 800f04e: e014 b.n 800f07a errorcode |= HAL_CAN_ERROR_ACK; - 800f034: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f036: f043 0320 orr.w r3, r3, #32 - 800f03a: 627b str r3, [r7, #36] @ 0x24 + 800f050: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f052: f043 0320 orr.w r3, r3, #32 + 800f056: 627b str r3, [r7, #36] @ 0x24 break; - 800f03c: e00f b.n 800f05e + 800f058: e00f b.n 800f07a errorcode |= HAL_CAN_ERROR_BR; - 800f03e: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f040: f043 0340 orr.w r3, r3, #64 @ 0x40 - 800f044: 627b str r3, [r7, #36] @ 0x24 + 800f05a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f05c: f043 0340 orr.w r3, r3, #64 @ 0x40 + 800f060: 627b str r3, [r7, #36] @ 0x24 break; - 800f046: e00a b.n 800f05e + 800f062: e00a b.n 800f07a errorcode |= HAL_CAN_ERROR_BD; - 800f048: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f04a: f043 0380 orr.w r3, r3, #128 @ 0x80 - 800f04e: 627b str r3, [r7, #36] @ 0x24 + 800f064: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f066: f043 0380 orr.w r3, r3, #128 @ 0x80 + 800f06a: 627b str r3, [r7, #36] @ 0x24 break; - 800f050: e005 b.n 800f05e + 800f06c: e005 b.n 800f07a errorcode |= HAL_CAN_ERROR_CRC; - 800f052: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f054: f443 7380 orr.w r3, r3, #256 @ 0x100 - 800f058: 627b str r3, [r7, #36] @ 0x24 + 800f06e: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f070: f443 7380 orr.w r3, r3, #256 @ 0x100 + 800f074: 627b str r3, [r7, #36] @ 0x24 break; - 800f05a: e000 b.n 800f05e + 800f076: e000 b.n 800f07a break; - 800f05c: bf00 nop + 800f078: bf00 nop } /* Clear Last error code Flag */ CLEAR_BIT(hcan->Instance->ESR, CAN_ESR_LEC); - 800f05e: 687b ldr r3, [r7, #4] - 800f060: 681b ldr r3, [r3, #0] - 800f062: 699a ldr r2, [r3, #24] - 800f064: 687b ldr r3, [r7, #4] - 800f066: 681b ldr r3, [r3, #0] - 800f068: f022 0270 bic.w r2, r2, #112 @ 0x70 - 800f06c: 619a str r2, [r3, #24] + 800f07a: 687b ldr r3, [r7, #4] + 800f07c: 681b ldr r3, [r3, #0] + 800f07e: 699a ldr r2, [r3, #24] + 800f080: 687b ldr r3, [r7, #4] + 800f082: 681b ldr r3, [r3, #0] + 800f084: f022 0270 bic.w r2, r2, #112 @ 0x70 + 800f088: 619a str r2, [r3, #24] } } /* Clear ERRI Flag */ __HAL_CAN_CLEAR_FLAG(hcan, CAN_FLAG_ERRI); - 800f06e: 687b ldr r3, [r7, #4] - 800f070: 681b ldr r3, [r3, #0] - 800f072: 2204 movs r2, #4 - 800f074: 605a str r2, [r3, #4] + 800f08a: 687b ldr r3, [r7, #4] + 800f08c: 681b ldr r3, [r3, #0] + 800f08e: 2204 movs r2, #4 + 800f090: 605a str r2, [r3, #4] } /* Call the Error call Back in case of Errors */ if (errorcode != HAL_CAN_ERROR_NONE) - 800f076: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f078: 2b00 cmp r3, #0 - 800f07a: d008 beq.n 800f08e + 800f092: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f094: 2b00 cmp r3, #0 + 800f096: d008 beq.n 800f0aa { /* Update error code in handle */ hcan->ErrorCode |= errorcode; - 800f07c: 687b ldr r3, [r7, #4] - 800f07e: 6a5a ldr r2, [r3, #36] @ 0x24 - 800f080: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f082: 431a orrs r2, r3 - 800f084: 687b ldr r3, [r7, #4] - 800f086: 625a str r2, [r3, #36] @ 0x24 + 800f098: 687b ldr r3, [r7, #4] + 800f09a: 6a5a ldr r2, [r3, #36] @ 0x24 + 800f09c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f09e: 431a orrs r2, r3 + 800f0a0: 687b ldr r3, [r7, #4] + 800f0a2: 625a str r2, [r3, #36] @ 0x24 #if USE_HAL_CAN_REGISTER_CALLBACKS == 1 /* Call registered callback*/ hcan->ErrorCallback(hcan); #else /* Call weak (surcharged) callback */ HAL_CAN_ErrorCallback(hcan); - 800f088: 6878 ldr r0, [r7, #4] - 800f08a: f000 f867 bl 800f15c + 800f0a4: 6878 ldr r0, [r7, #4] + 800f0a6: f000 f867 bl 800f178 #endif /* USE_HAL_CAN_REGISTER_CALLBACKS */ } } - 800f08e: bf00 nop - 800f090: 3728 adds r7, #40 @ 0x28 - 800f092: 46bd mov sp, r7 - 800f094: bd80 pop {r7, pc} + 800f0aa: bf00 nop + 800f0ac: 3728 adds r7, #40 @ 0x28 + 800f0ae: 46bd mov sp, r7 + 800f0b0: bd80 pop {r7, pc} -0800f096 : +0800f0b2 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox0CompleteCallback(CAN_HandleTypeDef *hcan) { - 800f096: b480 push {r7} - 800f098: b083 sub sp, #12 - 800f09a: af00 add r7, sp, #0 - 800f09c: 6078 str r0, [r7, #4] + 800f0b2: b480 push {r7} + 800f0b4: b083 sub sp, #12 + 800f0b6: af00 add r7, sp, #0 + 800f0b8: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox0CompleteCallback could be implemented in the user file */ } - 800f09e: bf00 nop - 800f0a0: 370c adds r7, #12 - 800f0a2: 46bd mov sp, r7 - 800f0a4: bc80 pop {r7} - 800f0a6: 4770 bx lr + 800f0ba: bf00 nop + 800f0bc: 370c adds r7, #12 + 800f0be: 46bd mov sp, r7 + 800f0c0: bc80 pop {r7} + 800f0c2: 4770 bx lr -0800f0a8 : +0800f0c4 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox1CompleteCallback(CAN_HandleTypeDef *hcan) { - 800f0a8: b480 push {r7} - 800f0aa: b083 sub sp, #12 - 800f0ac: af00 add r7, sp, #0 - 800f0ae: 6078 str r0, [r7, #4] + 800f0c4: b480 push {r7} + 800f0c6: b083 sub sp, #12 + 800f0c8: af00 add r7, sp, #0 + 800f0ca: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox1CompleteCallback could be implemented in the user file */ } - 800f0b0: bf00 nop - 800f0b2: 370c adds r7, #12 - 800f0b4: 46bd mov sp, r7 - 800f0b6: bc80 pop {r7} - 800f0b8: 4770 bx lr + 800f0cc: bf00 nop + 800f0ce: 370c adds r7, #12 + 800f0d0: 46bd mov sp, r7 + 800f0d2: bc80 pop {r7} + 800f0d4: 4770 bx lr -0800f0ba : +0800f0d6 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox2CompleteCallback(CAN_HandleTypeDef *hcan) { - 800f0ba: b480 push {r7} - 800f0bc: b083 sub sp, #12 - 800f0be: af00 add r7, sp, #0 - 800f0c0: 6078 str r0, [r7, #4] + 800f0d6: b480 push {r7} + 800f0d8: b083 sub sp, #12 + 800f0da: af00 add r7, sp, #0 + 800f0dc: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox2CompleteCallback could be implemented in the user file */ } - 800f0c2: bf00 nop - 800f0c4: 370c adds r7, #12 - 800f0c6: 46bd mov sp, r7 - 800f0c8: bc80 pop {r7} - 800f0ca: 4770 bx lr + 800f0de: bf00 nop + 800f0e0: 370c adds r7, #12 + 800f0e2: 46bd mov sp, r7 + 800f0e4: bc80 pop {r7} + 800f0e6: 4770 bx lr -0800f0cc : +0800f0e8 : * @param hcan pointer to an CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox0AbortCallback(CAN_HandleTypeDef *hcan) { - 800f0cc: b480 push {r7} - 800f0ce: b083 sub sp, #12 - 800f0d0: af00 add r7, sp, #0 - 800f0d2: 6078 str r0, [r7, #4] + 800f0e8: b480 push {r7} + 800f0ea: b083 sub sp, #12 + 800f0ec: af00 add r7, sp, #0 + 800f0ee: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox0AbortCallback could be implemented in the user file */ } - 800f0d4: bf00 nop - 800f0d6: 370c adds r7, #12 - 800f0d8: 46bd mov sp, r7 - 800f0da: bc80 pop {r7} - 800f0dc: 4770 bx lr + 800f0f0: bf00 nop + 800f0f2: 370c adds r7, #12 + 800f0f4: 46bd mov sp, r7 + 800f0f6: bc80 pop {r7} + 800f0f8: 4770 bx lr -0800f0de : +0800f0fa : * @param hcan pointer to an CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox1AbortCallback(CAN_HandleTypeDef *hcan) { - 800f0de: b480 push {r7} - 800f0e0: b083 sub sp, #12 - 800f0e2: af00 add r7, sp, #0 - 800f0e4: 6078 str r0, [r7, #4] + 800f0fa: b480 push {r7} + 800f0fc: b083 sub sp, #12 + 800f0fe: af00 add r7, sp, #0 + 800f100: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox1AbortCallback could be implemented in the user file */ } - 800f0e6: bf00 nop - 800f0e8: 370c adds r7, #12 - 800f0ea: 46bd mov sp, r7 - 800f0ec: bc80 pop {r7} - 800f0ee: 4770 bx lr + 800f102: bf00 nop + 800f104: 370c adds r7, #12 + 800f106: 46bd mov sp, r7 + 800f108: bc80 pop {r7} + 800f10a: 4770 bx lr -0800f0f0 : +0800f10c : * @param hcan pointer to an CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_TxMailbox2AbortCallback(CAN_HandleTypeDef *hcan) { - 800f0f0: b480 push {r7} - 800f0f2: b083 sub sp, #12 - 800f0f4: af00 add r7, sp, #0 - 800f0f6: 6078 str r0, [r7, #4] + 800f10c: b480 push {r7} + 800f10e: b083 sub sp, #12 + 800f110: af00 add r7, sp, #0 + 800f112: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_TxMailbox2AbortCallback could be implemented in the user file */ } - 800f0f8: bf00 nop - 800f0fa: 370c adds r7, #12 - 800f0fc: 46bd mov sp, r7 - 800f0fe: bc80 pop {r7} - 800f100: 4770 bx lr + 800f114: bf00 nop + 800f116: 370c adds r7, #12 + 800f118: 46bd mov sp, r7 + 800f11a: bc80 pop {r7} + 800f11c: 4770 bx lr -0800f102 : +0800f11e : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan) { - 800f102: b480 push {r7} - 800f104: b083 sub sp, #12 - 800f106: af00 add r7, sp, #0 - 800f108: 6078 str r0, [r7, #4] + 800f11e: b480 push {r7} + 800f120: b083 sub sp, #12 + 800f122: af00 add r7, sp, #0 + 800f124: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_RxFifo0MsgPendingCallback could be implemented in the user file */ } - 800f10a: bf00 nop - 800f10c: 370c adds r7, #12 - 800f10e: 46bd mov sp, r7 - 800f110: bc80 pop {r7} - 800f112: 4770 bx lr + 800f126: bf00 nop + 800f128: 370c adds r7, #12 + 800f12a: 46bd mov sp, r7 + 800f12c: bc80 pop {r7} + 800f12e: 4770 bx lr -0800f114 : +0800f130 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_RxFifo0FullCallback(CAN_HandleTypeDef *hcan) { - 800f114: b480 push {r7} - 800f116: b083 sub sp, #12 - 800f118: af00 add r7, sp, #0 - 800f11a: 6078 str r0, [r7, #4] + 800f130: b480 push {r7} + 800f132: b083 sub sp, #12 + 800f134: af00 add r7, sp, #0 + 800f136: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_RxFifo0FullCallback could be implemented in the user file */ } - 800f11c: bf00 nop - 800f11e: 370c adds r7, #12 - 800f120: 46bd mov sp, r7 - 800f122: bc80 pop {r7} - 800f124: 4770 bx lr + 800f138: bf00 nop + 800f13a: 370c adds r7, #12 + 800f13c: 46bd mov sp, r7 + 800f13e: bc80 pop {r7} + 800f140: 4770 bx lr -0800f126 : +0800f142 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_RxFifo1FullCallback(CAN_HandleTypeDef *hcan) { - 800f126: b480 push {r7} - 800f128: b083 sub sp, #12 - 800f12a: af00 add r7, sp, #0 - 800f12c: 6078 str r0, [r7, #4] + 800f142: b480 push {r7} + 800f144: b083 sub sp, #12 + 800f146: af00 add r7, sp, #0 + 800f148: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_RxFifo1FullCallback could be implemented in the user file */ } - 800f12e: bf00 nop - 800f130: 370c adds r7, #12 - 800f132: 46bd mov sp, r7 - 800f134: bc80 pop {r7} - 800f136: 4770 bx lr + 800f14a: bf00 nop + 800f14c: 370c adds r7, #12 + 800f14e: 46bd mov sp, r7 + 800f150: bc80 pop {r7} + 800f152: 4770 bx lr -0800f138 : +0800f154 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_SleepCallback(CAN_HandleTypeDef *hcan) { - 800f138: b480 push {r7} - 800f13a: b083 sub sp, #12 - 800f13c: af00 add r7, sp, #0 - 800f13e: 6078 str r0, [r7, #4] + 800f154: b480 push {r7} + 800f156: b083 sub sp, #12 + 800f158: af00 add r7, sp, #0 + 800f15a: 6078 str r0, [r7, #4] UNUSED(hcan); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_SleepCallback could be implemented in the user file */ } - 800f140: bf00 nop - 800f142: 370c adds r7, #12 - 800f144: 46bd mov sp, r7 - 800f146: bc80 pop {r7} - 800f148: 4770 bx lr + 800f15c: bf00 nop + 800f15e: 370c adds r7, #12 + 800f160: 46bd mov sp, r7 + 800f162: bc80 pop {r7} + 800f164: 4770 bx lr -0800f14a : +0800f166 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_WakeUpFromRxMsgCallback(CAN_HandleTypeDef *hcan) { - 800f14a: b480 push {r7} - 800f14c: b083 sub sp, #12 - 800f14e: af00 add r7, sp, #0 - 800f150: 6078 str r0, [r7, #4] + 800f166: b480 push {r7} + 800f168: b083 sub sp, #12 + 800f16a: af00 add r7, sp, #0 + 800f16c: 6078 str r0, [r7, #4] /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_WakeUpFromRxMsgCallback could be implemented in the user file */ } - 800f152: bf00 nop - 800f154: 370c adds r7, #12 - 800f156: 46bd mov sp, r7 - 800f158: bc80 pop {r7} - 800f15a: 4770 bx lr + 800f16e: bf00 nop + 800f170: 370c adds r7, #12 + 800f172: 46bd mov sp, r7 + 800f174: bc80 pop {r7} + 800f176: 4770 bx lr -0800f15c : +0800f178 : * @param hcan pointer to a CAN_HandleTypeDef structure that contains * the configuration information for the specified CAN. * @retval None */ __weak void HAL_CAN_ErrorCallback(CAN_HandleTypeDef *hcan) { - 800f15c: b480 push {r7} - 800f15e: b083 sub sp, #12 - 800f160: af00 add r7, sp, #0 - 800f162: 6078 str r0, [r7, #4] + 800f178: b480 push {r7} + 800f17a: b083 sub sp, #12 + 800f17c: af00 add r7, sp, #0 + 800f17e: 6078 str r0, [r7, #4] UNUSED(hcan); /* NOTE : This function Should not be modified, when the callback is needed, the HAL_CAN_ErrorCallback could be implemented in the user file */ } - 800f164: bf00 nop - 800f166: 370c adds r7, #12 - 800f168: 46bd mov sp, r7 - 800f16a: bc80 pop {r7} - 800f16c: 4770 bx lr + 800f180: bf00 nop + 800f182: 370c adds r7, #12 + 800f184: 46bd mov sp, r7 + 800f186: bc80 pop {r7} + 800f188: 4770 bx lr ... -0800f170 <__NVIC_SetPriorityGrouping>: +0800f18c <__NVIC_SetPriorityGrouping>: { - 800f170: b480 push {r7} - 800f172: b085 sub sp, #20 - 800f174: af00 add r7, sp, #0 - 800f176: 6078 str r0, [r7, #4] + 800f18c: b480 push {r7} + 800f18e: b085 sub sp, #20 + 800f190: af00 add r7, sp, #0 + 800f192: 6078 str r0, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 800f178: 687b ldr r3, [r7, #4] - 800f17a: f003 0307 and.w r3, r3, #7 - 800f17e: 60fb str r3, [r7, #12] + 800f194: 687b ldr r3, [r7, #4] + 800f196: f003 0307 and.w r3, r3, #7 + 800f19a: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 800f180: 4b0c ldr r3, [pc, #48] @ (800f1b4 <__NVIC_SetPriorityGrouping+0x44>) - 800f182: 68db ldr r3, [r3, #12] - 800f184: 60bb str r3, [r7, #8] - reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 800f186: 68ba ldr r2, [r7, #8] - 800f188: f64f 03ff movw r3, #63743 @ 0xf8ff - 800f18c: 4013 ands r3, r2 - 800f18e: 60bb str r3, [r7, #8] - (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ - 800f190: 68fb ldr r3, [r7, #12] - 800f192: 021a lsls r2, r3, #8 - ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 800f194: 68bb ldr r3, [r7, #8] - 800f196: 4313 orrs r3, r2 - reg_value = (reg_value | - 800f198: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 - 800f19c: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 800f19c: 4b0c ldr r3, [pc, #48] @ (800f1d0 <__NVIC_SetPriorityGrouping+0x44>) + 800f19e: 68db ldr r3, [r3, #12] 800f1a0: 60bb str r3, [r7, #8] + reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ + 800f1a2: 68ba ldr r2, [r7, #8] + 800f1a4: f64f 03ff movw r3, #63743 @ 0xf8ff + 800f1a8: 4013 ands r3, r2 + 800f1aa: 60bb str r3, [r7, #8] + (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ + 800f1ac: 68fb ldr r3, [r7, #12] + 800f1ae: 021a lsls r2, r3, #8 + ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | + 800f1b0: 68bb ldr r3, [r7, #8] + 800f1b2: 4313 orrs r3, r2 + reg_value = (reg_value | + 800f1b4: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 + 800f1b8: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 800f1bc: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 800f1a2: 4a04 ldr r2, [pc, #16] @ (800f1b4 <__NVIC_SetPriorityGrouping+0x44>) - 800f1a4: 68bb ldr r3, [r7, #8] - 800f1a6: 60d3 str r3, [r2, #12] + 800f1be: 4a04 ldr r2, [pc, #16] @ (800f1d0 <__NVIC_SetPriorityGrouping+0x44>) + 800f1c0: 68bb ldr r3, [r7, #8] + 800f1c2: 60d3 str r3, [r2, #12] } - 800f1a8: bf00 nop - 800f1aa: 3714 adds r7, #20 - 800f1ac: 46bd mov sp, r7 - 800f1ae: bc80 pop {r7} - 800f1b0: 4770 bx lr - 800f1b2: bf00 nop - 800f1b4: e000ed00 .word 0xe000ed00 - -0800f1b8 <__NVIC_GetPriorityGrouping>: -{ - 800f1b8: b480 push {r7} - 800f1ba: af00 add r7, sp, #0 - return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 800f1bc: 4b04 ldr r3, [pc, #16] @ (800f1d0 <__NVIC_GetPriorityGrouping+0x18>) - 800f1be: 68db ldr r3, [r3, #12] - 800f1c0: 0a1b lsrs r3, r3, #8 - 800f1c2: f003 0307 and.w r3, r3, #7 -} - 800f1c6: 4618 mov r0, r3 + 800f1c4: bf00 nop + 800f1c6: 3714 adds r7, #20 800f1c8: 46bd mov sp, r7 800f1ca: bc80 pop {r7} 800f1cc: 4770 bx lr 800f1ce: bf00 nop 800f1d0: e000ed00 .word 0xe000ed00 -0800f1d4 <__NVIC_EnableIRQ>: +0800f1d4 <__NVIC_GetPriorityGrouping>: { 800f1d4: b480 push {r7} - 800f1d6: b083 sub sp, #12 - 800f1d8: af00 add r7, sp, #0 - 800f1da: 4603 mov r3, r0 - 800f1dc: 71fb strb r3, [r7, #7] + 800f1d6: af00 add r7, sp, #0 + return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); + 800f1d8: 4b04 ldr r3, [pc, #16] @ (800f1ec <__NVIC_GetPriorityGrouping+0x18>) + 800f1da: 68db ldr r3, [r3, #12] + 800f1dc: 0a1b lsrs r3, r3, #8 + 800f1de: f003 0307 and.w r3, r3, #7 +} + 800f1e2: 4618 mov r0, r3 + 800f1e4: 46bd mov sp, r7 + 800f1e6: bc80 pop {r7} + 800f1e8: 4770 bx lr + 800f1ea: bf00 nop + 800f1ec: e000ed00 .word 0xe000ed00 + +0800f1f0 <__NVIC_EnableIRQ>: +{ + 800f1f0: b480 push {r7} + 800f1f2: b083 sub sp, #12 + 800f1f4: af00 add r7, sp, #0 + 800f1f6: 4603 mov r3, r0 + 800f1f8: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 800f1de: f997 3007 ldrsb.w r3, [r7, #7] - 800f1e2: 2b00 cmp r3, #0 - 800f1e4: db0b blt.n 800f1fe <__NVIC_EnableIRQ+0x2a> + 800f1fa: f997 3007 ldrsb.w r3, [r7, #7] + 800f1fe: 2b00 cmp r3, #0 + 800f200: db0b blt.n 800f21a <__NVIC_EnableIRQ+0x2a> NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 800f1e6: 79fb ldrb r3, [r7, #7] - 800f1e8: f003 021f and.w r2, r3, #31 - 800f1ec: 4906 ldr r1, [pc, #24] @ (800f208 <__NVIC_EnableIRQ+0x34>) - 800f1ee: f997 3007 ldrsb.w r3, [r7, #7] - 800f1f2: 095b lsrs r3, r3, #5 - 800f1f4: 2001 movs r0, #1 - 800f1f6: fa00 f202 lsl.w r2, r0, r2 - 800f1fa: f841 2023 str.w r2, [r1, r3, lsl #2] + 800f202: 79fb ldrb r3, [r7, #7] + 800f204: f003 021f and.w r2, r3, #31 + 800f208: 4906 ldr r1, [pc, #24] @ (800f224 <__NVIC_EnableIRQ+0x34>) + 800f20a: f997 3007 ldrsb.w r3, [r7, #7] + 800f20e: 095b lsrs r3, r3, #5 + 800f210: 2001 movs r0, #1 + 800f212: fa00 f202 lsl.w r2, r0, r2 + 800f216: f841 2023 str.w r2, [r1, r3, lsl #2] } - 800f1fe: bf00 nop - 800f200: 370c adds r7, #12 - 800f202: 46bd mov sp, r7 - 800f204: bc80 pop {r7} - 800f206: 4770 bx lr - 800f208: e000e100 .word 0xe000e100 + 800f21a: bf00 nop + 800f21c: 370c adds r7, #12 + 800f21e: 46bd mov sp, r7 + 800f220: bc80 pop {r7} + 800f222: 4770 bx lr + 800f224: e000e100 .word 0xe000e100 -0800f20c <__NVIC_SetPriority>: +0800f228 <__NVIC_SetPriority>: { - 800f20c: b480 push {r7} - 800f20e: b083 sub sp, #12 - 800f210: af00 add r7, sp, #0 - 800f212: 4603 mov r3, r0 - 800f214: 6039 str r1, [r7, #0] - 800f216: 71fb strb r3, [r7, #7] + 800f228: b480 push {r7} + 800f22a: b083 sub sp, #12 + 800f22c: af00 add r7, sp, #0 + 800f22e: 4603 mov r3, r0 + 800f230: 6039 str r1, [r7, #0] + 800f232: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 800f218: f997 3007 ldrsb.w r3, [r7, #7] - 800f21c: 2b00 cmp r3, #0 - 800f21e: db0a blt.n 800f236 <__NVIC_SetPriority+0x2a> + 800f234: f997 3007 ldrsb.w r3, [r7, #7] + 800f238: 2b00 cmp r3, #0 + 800f23a: db0a blt.n 800f252 <__NVIC_SetPriority+0x2a> NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 800f220: 683b ldr r3, [r7, #0] - 800f222: b2da uxtb r2, r3 - 800f224: 490c ldr r1, [pc, #48] @ (800f258 <__NVIC_SetPriority+0x4c>) - 800f226: f997 3007 ldrsb.w r3, [r7, #7] - 800f22a: 0112 lsls r2, r2, #4 - 800f22c: b2d2 uxtb r2, r2 - 800f22e: 440b add r3, r1 - 800f230: f883 2300 strb.w r2, [r3, #768] @ 0x300 + 800f23c: 683b ldr r3, [r7, #0] + 800f23e: b2da uxtb r2, r3 + 800f240: 490c ldr r1, [pc, #48] @ (800f274 <__NVIC_SetPriority+0x4c>) + 800f242: f997 3007 ldrsb.w r3, [r7, #7] + 800f246: 0112 lsls r2, r2, #4 + 800f248: b2d2 uxtb r2, r2 + 800f24a: 440b add r3, r1 + 800f24c: f883 2300 strb.w r2, [r3, #768] @ 0x300 } - 800f234: e00a b.n 800f24c <__NVIC_SetPriority+0x40> + 800f250: e00a b.n 800f268 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 800f236: 683b ldr r3, [r7, #0] - 800f238: b2da uxtb r2, r3 - 800f23a: 4908 ldr r1, [pc, #32] @ (800f25c <__NVIC_SetPriority+0x50>) - 800f23c: 79fb ldrb r3, [r7, #7] - 800f23e: f003 030f and.w r3, r3, #15 - 800f242: 3b04 subs r3, #4 - 800f244: 0112 lsls r2, r2, #4 - 800f246: b2d2 uxtb r2, r2 - 800f248: 440b add r3, r1 - 800f24a: 761a strb r2, [r3, #24] + 800f252: 683b ldr r3, [r7, #0] + 800f254: b2da uxtb r2, r3 + 800f256: 4908 ldr r1, [pc, #32] @ (800f278 <__NVIC_SetPriority+0x50>) + 800f258: 79fb ldrb r3, [r7, #7] + 800f25a: f003 030f and.w r3, r3, #15 + 800f25e: 3b04 subs r3, #4 + 800f260: 0112 lsls r2, r2, #4 + 800f262: b2d2 uxtb r2, r2 + 800f264: 440b add r3, r1 + 800f266: 761a strb r2, [r3, #24] } - 800f24c: bf00 nop - 800f24e: 370c adds r7, #12 - 800f250: 46bd mov sp, r7 - 800f252: bc80 pop {r7} - 800f254: 4770 bx lr - 800f256: bf00 nop - 800f258: e000e100 .word 0xe000e100 - 800f25c: e000ed00 .word 0xe000ed00 + 800f268: bf00 nop + 800f26a: 370c adds r7, #12 + 800f26c: 46bd mov sp, r7 + 800f26e: bc80 pop {r7} + 800f270: 4770 bx lr + 800f272: bf00 nop + 800f274: e000e100 .word 0xe000e100 + 800f278: e000ed00 .word 0xe000ed00 -0800f260 : +0800f27c : { - 800f260: b480 push {r7} - 800f262: b089 sub sp, #36 @ 0x24 - 800f264: af00 add r7, sp, #0 - 800f266: 60f8 str r0, [r7, #12] - 800f268: 60b9 str r1, [r7, #8] - 800f26a: 607a str r2, [r7, #4] + 800f27c: b480 push {r7} + 800f27e: b089 sub sp, #36 @ 0x24 + 800f280: af00 add r7, sp, #0 + 800f282: 60f8 str r0, [r7, #12] + 800f284: 60b9 str r1, [r7, #8] + 800f286: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 800f26c: 68fb ldr r3, [r7, #12] - 800f26e: f003 0307 and.w r3, r3, #7 - 800f272: 61fb str r3, [r7, #28] + 800f288: 68fb ldr r3, [r7, #12] + 800f28a: f003 0307 and.w r3, r3, #7 + 800f28e: 61fb str r3, [r7, #28] PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 800f274: 69fb ldr r3, [r7, #28] - 800f276: f1c3 0307 rsb r3, r3, #7 - 800f27a: 2b04 cmp r3, #4 - 800f27c: bf28 it cs - 800f27e: 2304 movcs r3, #4 - 800f280: 61bb str r3, [r7, #24] + 800f290: 69fb ldr r3, [r7, #28] + 800f292: f1c3 0307 rsb r3, r3, #7 + 800f296: 2b04 cmp r3, #4 + 800f298: bf28 it cs + 800f29a: 2304 movcs r3, #4 + 800f29c: 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)); - 800f282: 69fb ldr r3, [r7, #28] - 800f284: 3304 adds r3, #4 - 800f286: 2b06 cmp r3, #6 - 800f288: d902 bls.n 800f290 - 800f28a: 69fb ldr r3, [r7, #28] - 800f28c: 3b03 subs r3, #3 - 800f28e: e000 b.n 800f292 - 800f290: 2300 movs r3, #0 - 800f292: 617b str r3, [r7, #20] + 800f29e: 69fb ldr r3, [r7, #28] + 800f2a0: 3304 adds r3, #4 + 800f2a2: 2b06 cmp r3, #6 + 800f2a4: d902 bls.n 800f2ac + 800f2a6: 69fb ldr r3, [r7, #28] + 800f2a8: 3b03 subs r3, #3 + 800f2aa: e000 b.n 800f2ae + 800f2ac: 2300 movs r3, #0 + 800f2ae: 617b str r3, [r7, #20] ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 800f294: f04f 32ff mov.w r2, #4294967295 - 800f298: 69bb ldr r3, [r7, #24] - 800f29a: fa02 f303 lsl.w r3, r2, r3 - 800f29e: 43da mvns r2, r3 - 800f2a0: 68bb ldr r3, [r7, #8] - 800f2a2: 401a ands r2, r3 - 800f2a4: 697b ldr r3, [r7, #20] - 800f2a6: 409a lsls r2, r3 + 800f2b0: f04f 32ff mov.w r2, #4294967295 + 800f2b4: 69bb ldr r3, [r7, #24] + 800f2b6: fa02 f303 lsl.w r3, r2, r3 + 800f2ba: 43da mvns r2, r3 + 800f2bc: 68bb ldr r3, [r7, #8] + 800f2be: 401a ands r2, r3 + 800f2c0: 697b ldr r3, [r7, #20] + 800f2c2: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 800f2a8: f04f 31ff mov.w r1, #4294967295 - 800f2ac: 697b ldr r3, [r7, #20] - 800f2ae: fa01 f303 lsl.w r3, r1, r3 - 800f2b2: 43d9 mvns r1, r3 - 800f2b4: 687b ldr r3, [r7, #4] - 800f2b6: 400b ands r3, r1 + 800f2c4: f04f 31ff mov.w r1, #4294967295 + 800f2c8: 697b ldr r3, [r7, #20] + 800f2ca: fa01 f303 lsl.w r3, r1, r3 + 800f2ce: 43d9 mvns r1, r3 + 800f2d0: 687b ldr r3, [r7, #4] + 800f2d2: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 800f2b8: 4313 orrs r3, r2 + 800f2d4: 4313 orrs r3, r2 } - 800f2ba: 4618 mov r0, r3 - 800f2bc: 3724 adds r7, #36 @ 0x24 - 800f2be: 46bd mov sp, r7 - 800f2c0: bc80 pop {r7} - 800f2c2: 4770 bx lr + 800f2d6: 4618 mov r0, r3 + 800f2d8: 3724 adds r7, #36 @ 0x24 + 800f2da: 46bd mov sp, r7 + 800f2dc: bc80 pop {r7} + 800f2de: 4770 bx lr -0800f2c4 : +0800f2e0 : \note When the variable __Vendor_SysTickConfig is set to 1, then the function SysTick_Config is not included. In this case, the file device.h must contain a vendor-specific implementation of this function. */ __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks) { - 800f2c4: b580 push {r7, lr} - 800f2c6: b082 sub sp, #8 - 800f2c8: af00 add r7, sp, #0 - 800f2ca: 6078 str r0, [r7, #4] + 800f2e0: b580 push {r7, lr} + 800f2e2: b082 sub sp, #8 + 800f2e4: af00 add r7, sp, #0 + 800f2e6: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 800f2cc: 687b ldr r3, [r7, #4] - 800f2ce: 3b01 subs r3, #1 - 800f2d0: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 - 800f2d4: d301 bcc.n 800f2da + 800f2e8: 687b ldr r3, [r7, #4] + 800f2ea: 3b01 subs r3, #1 + 800f2ec: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 + 800f2f0: d301 bcc.n 800f2f6 { return (1UL); /* Reload value impossible */ - 800f2d6: 2301 movs r3, #1 - 800f2d8: e00f b.n 800f2fa + 800f2f2: 2301 movs r3, #1 + 800f2f4: e00f b.n 800f316 } SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 800f2da: 4a0a ldr r2, [pc, #40] @ (800f304 ) - 800f2dc: 687b ldr r3, [r7, #4] - 800f2de: 3b01 subs r3, #1 - 800f2e0: 6053 str r3, [r2, #4] + 800f2f6: 4a0a ldr r2, [pc, #40] @ (800f320 ) + 800f2f8: 687b ldr r3, [r7, #4] + 800f2fa: 3b01 subs r3, #1 + 800f2fc: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 800f2e2: 210f movs r1, #15 - 800f2e4: f04f 30ff mov.w r0, #4294967295 - 800f2e8: f7ff ff90 bl 800f20c <__NVIC_SetPriority> + 800f2fe: 210f movs r1, #15 + 800f300: f04f 30ff mov.w r0, #4294967295 + 800f304: f7ff ff90 bl 800f228 <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 800f2ec: 4b05 ldr r3, [pc, #20] @ (800f304 ) - 800f2ee: 2200 movs r2, #0 - 800f2f0: 609a str r2, [r3, #8] + 800f308: 4b05 ldr r3, [pc, #20] @ (800f320 ) + 800f30a: 2200 movs r2, #0 + 800f30c: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 800f2f2: 4b04 ldr r3, [pc, #16] @ (800f304 ) - 800f2f4: 2207 movs r2, #7 - 800f2f6: 601a str r2, [r3, #0] + 800f30e: 4b04 ldr r3, [pc, #16] @ (800f320 ) + 800f310: 2207 movs r2, #7 + 800f312: 601a str r2, [r3, #0] SysTick_CTRL_TICKINT_Msk | SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ return (0UL); /* Function successful */ - 800f2f8: 2300 movs r3, #0 + 800f314: 2300 movs r3, #0 } - 800f2fa: 4618 mov r0, r3 - 800f2fc: 3708 adds r7, #8 - 800f2fe: 46bd mov sp, r7 - 800f300: bd80 pop {r7, pc} - 800f302: bf00 nop - 800f304: e000e010 .word 0xe000e010 + 800f316: 4618 mov r0, r3 + 800f318: 3708 adds r7, #8 + 800f31a: 46bd mov sp, r7 + 800f31c: bd80 pop {r7, pc} + 800f31e: bf00 nop + 800f320: e000e010 .word 0xe000e010 -0800f308 : +0800f324 : * @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) { - 800f308: b580 push {r7, lr} - 800f30a: b082 sub sp, #8 - 800f30c: af00 add r7, sp, #0 - 800f30e: 6078 str r0, [r7, #4] + 800f324: b580 push {r7, lr} + 800f326: b082 sub sp, #8 + 800f328: af00 add r7, sp, #0 + 800f32a: 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); - 800f310: 6878 ldr r0, [r7, #4] - 800f312: f7ff ff2d bl 800f170 <__NVIC_SetPriorityGrouping> + 800f32c: 6878 ldr r0, [r7, #4] + 800f32e: f7ff ff2d bl 800f18c <__NVIC_SetPriorityGrouping> } - 800f316: bf00 nop - 800f318: 3708 adds r7, #8 - 800f31a: 46bd mov sp, r7 - 800f31c: bd80 pop {r7, pc} + 800f332: bf00 nop + 800f334: 3708 adds r7, #8 + 800f336: 46bd mov sp, r7 + 800f338: bd80 pop {r7, pc} -0800f31e : +0800f33a : * 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) { - 800f31e: b580 push {r7, lr} - 800f320: b086 sub sp, #24 - 800f322: af00 add r7, sp, #0 - 800f324: 4603 mov r3, r0 - 800f326: 60b9 str r1, [r7, #8] - 800f328: 607a str r2, [r7, #4] - 800f32a: 73fb strb r3, [r7, #15] + 800f33a: b580 push {r7, lr} + 800f33c: b086 sub sp, #24 + 800f33e: af00 add r7, sp, #0 + 800f340: 4603 mov r3, r0 + 800f342: 60b9 str r1, [r7, #8] + 800f344: 607a str r2, [r7, #4] + 800f346: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 800f32c: 2300 movs r3, #0 - 800f32e: 617b str r3, [r7, #20] + 800f348: 2300 movs r3, #0 + 800f34a: 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(); - 800f330: f7ff ff42 bl 800f1b8 <__NVIC_GetPriorityGrouping> - 800f334: 6178 str r0, [r7, #20] + 800f34c: f7ff ff42 bl 800f1d4 <__NVIC_GetPriorityGrouping> + 800f350: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 800f336: 687a ldr r2, [r7, #4] - 800f338: 68b9 ldr r1, [r7, #8] - 800f33a: 6978 ldr r0, [r7, #20] - 800f33c: f7ff ff90 bl 800f260 - 800f340: 4602 mov r2, r0 - 800f342: f997 300f ldrsb.w r3, [r7, #15] - 800f346: 4611 mov r1, r2 - 800f348: 4618 mov r0, r3 - 800f34a: f7ff ff5f bl 800f20c <__NVIC_SetPriority> + 800f352: 687a ldr r2, [r7, #4] + 800f354: 68b9 ldr r1, [r7, #8] + 800f356: 6978 ldr r0, [r7, #20] + 800f358: f7ff ff90 bl 800f27c + 800f35c: 4602 mov r2, r0 + 800f35e: f997 300f ldrsb.w r3, [r7, #15] + 800f362: 4611 mov r1, r2 + 800f364: 4618 mov r0, r3 + 800f366: f7ff ff5f bl 800f228 <__NVIC_SetPriority> } - 800f34e: bf00 nop - 800f350: 3718 adds r7, #24 - 800f352: 46bd mov sp, r7 - 800f354: bd80 pop {r7, pc} + 800f36a: bf00 nop + 800f36c: 3718 adds r7, #24 + 800f36e: 46bd mov sp, r7 + 800f370: bd80 pop {r7, pc} -0800f356 : +0800f372 : * This parameter can be an enumerator of IRQn_Type enumeration * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f10xxx.h)) * @retval None */ void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) { - 800f356: b580 push {r7, lr} - 800f358: b082 sub sp, #8 - 800f35a: af00 add r7, sp, #0 - 800f35c: 4603 mov r3, r0 - 800f35e: 71fb strb r3, [r7, #7] + 800f372: b580 push {r7, lr} + 800f374: b082 sub sp, #8 + 800f376: af00 add r7, sp, #0 + 800f378: 4603 mov r3, r0 + 800f37a: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 800f360: f997 3007 ldrsb.w r3, [r7, #7] - 800f364: 4618 mov r0, r3 - 800f366: f7ff ff35 bl 800f1d4 <__NVIC_EnableIRQ> + 800f37c: f997 3007 ldrsb.w r3, [r7, #7] + 800f380: 4618 mov r0, r3 + 800f382: f7ff ff35 bl 800f1f0 <__NVIC_EnableIRQ> } - 800f36a: bf00 nop - 800f36c: 3708 adds r7, #8 - 800f36e: 46bd mov sp, r7 - 800f370: bd80 pop {r7, pc} + 800f386: bf00 nop + 800f388: 3708 adds r7, #8 + 800f38a: 46bd mov sp, r7 + 800f38c: bd80 pop {r7, pc} -0800f372 : +0800f38e : * @param TicksNumb: Specifies the ticks Number of ticks between two interrupts. * @retval status: - 0 Function succeeded. * - 1 Function failed. */ uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb) { - 800f372: b580 push {r7, lr} - 800f374: b082 sub sp, #8 - 800f376: af00 add r7, sp, #0 - 800f378: 6078 str r0, [r7, #4] + 800f38e: b580 push {r7, lr} + 800f390: b082 sub sp, #8 + 800f392: af00 add r7, sp, #0 + 800f394: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 800f37a: 6878 ldr r0, [r7, #4] - 800f37c: f7ff ffa2 bl 800f2c4 - 800f380: 4603 mov r3, r0 + 800f396: 6878 ldr r0, [r7, #4] + 800f398: f7ff ffa2 bl 800f2e0 + 800f39c: 4603 mov r3, r0 } - 800f382: 4618 mov r0, r3 - 800f384: 3708 adds r7, #8 - 800f386: 46bd mov sp, r7 - 800f388: bd80 pop {r7, pc} + 800f39e: 4618 mov r0, r3 + 800f3a0: 3708 adds r7, #8 + 800f3a2: 46bd mov sp, r7 + 800f3a4: bd80 pop {r7, pc} -0800f38a : +0800f3a6 : * parameters in the CRC_InitTypeDef and create the associated handle. * @param hcrc CRC handle * @retval HAL status */ HAL_StatusTypeDef HAL_CRC_Init(CRC_HandleTypeDef *hcrc) { - 800f38a: b580 push {r7, lr} - 800f38c: b082 sub sp, #8 - 800f38e: af00 add r7, sp, #0 - 800f390: 6078 str r0, [r7, #4] + 800f3a6: b580 push {r7, lr} + 800f3a8: b082 sub sp, #8 + 800f3aa: af00 add r7, sp, #0 + 800f3ac: 6078 str r0, [r7, #4] /* Check the CRC handle allocation */ if (hcrc == NULL) - 800f392: 687b ldr r3, [r7, #4] - 800f394: 2b00 cmp r3, #0 - 800f396: d101 bne.n 800f39c + 800f3ae: 687b ldr r3, [r7, #4] + 800f3b0: 2b00 cmp r3, #0 + 800f3b2: d101 bne.n 800f3b8 { return HAL_ERROR; - 800f398: 2301 movs r3, #1 - 800f39a: e00e b.n 800f3ba + 800f3b4: 2301 movs r3, #1 + 800f3b6: e00e b.n 800f3d6 } /* Check the parameters */ assert_param(IS_CRC_ALL_INSTANCE(hcrc->Instance)); if (hcrc->State == HAL_CRC_STATE_RESET) - 800f39c: 687b ldr r3, [r7, #4] - 800f39e: 795b ldrb r3, [r3, #5] - 800f3a0: b2db uxtb r3, r3 - 800f3a2: 2b00 cmp r3, #0 - 800f3a4: d105 bne.n 800f3b2 + 800f3b8: 687b ldr r3, [r7, #4] + 800f3ba: 795b ldrb r3, [r3, #5] + 800f3bc: b2db uxtb r3, r3 + 800f3be: 2b00 cmp r3, #0 + 800f3c0: d105 bne.n 800f3ce { /* Allocate lock resource and initialize it */ hcrc->Lock = HAL_UNLOCKED; - 800f3a6: 687b ldr r3, [r7, #4] - 800f3a8: 2200 movs r2, #0 - 800f3aa: 711a strb r2, [r3, #4] + 800f3c2: 687b ldr r3, [r7, #4] + 800f3c4: 2200 movs r2, #0 + 800f3c6: 711a strb r2, [r3, #4] /* Init the low level hardware */ HAL_CRC_MspInit(hcrc); - 800f3ac: 6878 ldr r0, [r7, #4] - 800f3ae: f7fa ff61 bl 800a274 + 800f3c8: 6878 ldr r0, [r7, #4] + 800f3ca: f7fa ff53 bl 800a274 } /* Change CRC peripheral state */ hcrc->State = HAL_CRC_STATE_READY; - 800f3b2: 687b ldr r3, [r7, #4] - 800f3b4: 2201 movs r2, #1 - 800f3b6: 715a strb r2, [r3, #5] + 800f3ce: 687b ldr r3, [r7, #4] + 800f3d0: 2201 movs r2, #1 + 800f3d2: 715a strb r2, [r3, #5] /* Return function status */ return HAL_OK; - 800f3b8: 2300 movs r3, #0 + 800f3d4: 2300 movs r3, #0 } - 800f3ba: 4618 mov r0, r3 - 800f3bc: 3708 adds r7, #8 - 800f3be: 46bd mov sp, r7 - 800f3c0: bd80 pop {r7, pc} + 800f3d6: 4618 mov r0, r3 + 800f3d8: 3708 adds r7, #8 + 800f3da: 46bd mov sp, r7 + 800f3dc: bd80 pop {r7, pc} -0800f3c2 : +0800f3de : * @param hdma: pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Channel. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) { - 800f3c2: b480 push {r7} - 800f3c4: b085 sub sp, #20 - 800f3c6: af00 add r7, sp, #0 - 800f3c8: 6078 str r0, [r7, #4] + 800f3de: b480 push {r7} + 800f3e0: b085 sub sp, #20 + 800f3e2: af00 add r7, sp, #0 + 800f3e4: 6078 str r0, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 800f3ca: 2300 movs r3, #0 - 800f3cc: 73fb strb r3, [r7, #15] + 800f3e6: 2300 movs r3, #0 + 800f3e8: 73fb strb r3, [r7, #15] if(hdma->State != HAL_DMA_STATE_BUSY) - 800f3ce: 687b ldr r3, [r7, #4] - 800f3d0: f893 3021 ldrb.w r3, [r3, #33] @ 0x21 - 800f3d4: b2db uxtb r3, r3 - 800f3d6: 2b02 cmp r3, #2 - 800f3d8: d008 beq.n 800f3ec + 800f3ea: 687b ldr r3, [r7, #4] + 800f3ec: f893 3021 ldrb.w r3, [r3, #33] @ 0x21 + 800f3f0: b2db uxtb r3, r3 + 800f3f2: 2b02 cmp r3, #2 + 800f3f4: d008 beq.n 800f408 { /* no transfer ongoing */ hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 800f3da: 687b ldr r3, [r7, #4] - 800f3dc: 2204 movs r2, #4 - 800f3de: 639a str r2, [r3, #56] @ 0x38 + 800f3f6: 687b ldr r3, [r7, #4] + 800f3f8: 2204 movs r2, #4 + 800f3fa: 639a str r2, [r3, #56] @ 0x38 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800f3e0: 687b ldr r3, [r7, #4] - 800f3e2: 2200 movs r2, #0 - 800f3e4: f883 2020 strb.w r2, [r3, #32] + 800f3fc: 687b ldr r3, [r7, #4] + 800f3fe: 2200 movs r2, #0 + 800f400: f883 2020 strb.w r2, [r3, #32] return HAL_ERROR; - 800f3e8: 2301 movs r3, #1 - 800f3ea: e020 b.n 800f42e + 800f404: 2301 movs r3, #1 + 800f406: e020 b.n 800f44a } else { /* Disable DMA IT */ __HAL_DMA_DISABLE_IT(hdma, (DMA_IT_TC | DMA_IT_HT | DMA_IT_TE)); - 800f3ec: 687b ldr r3, [r7, #4] - 800f3ee: 681b ldr r3, [r3, #0] - 800f3f0: 681a ldr r2, [r3, #0] - 800f3f2: 687b ldr r3, [r7, #4] - 800f3f4: 681b ldr r3, [r3, #0] - 800f3f6: f022 020e bic.w r2, r2, #14 - 800f3fa: 601a str r2, [r3, #0] + 800f408: 687b ldr r3, [r7, #4] + 800f40a: 681b ldr r3, [r3, #0] + 800f40c: 681a ldr r2, [r3, #0] + 800f40e: 687b ldr r3, [r7, #4] + 800f410: 681b ldr r3, [r3, #0] + 800f412: f022 020e bic.w r2, r2, #14 + 800f416: 601a str r2, [r3, #0] /* Disable the channel */ __HAL_DMA_DISABLE(hdma); - 800f3fc: 687b ldr r3, [r7, #4] - 800f3fe: 681b ldr r3, [r3, #0] - 800f400: 681a ldr r2, [r3, #0] - 800f402: 687b ldr r3, [r7, #4] - 800f404: 681b ldr r3, [r3, #0] - 800f406: f022 0201 bic.w r2, r2, #1 - 800f40a: 601a str r2, [r3, #0] + 800f418: 687b ldr r3, [r7, #4] + 800f41a: 681b ldr r3, [r3, #0] + 800f41c: 681a ldr r2, [r3, #0] + 800f41e: 687b ldr r3, [r7, #4] + 800f420: 681b ldr r3, [r3, #0] + 800f422: f022 0201 bic.w r2, r2, #1 + 800f426: 601a str r2, [r3, #0] /* Clear all flags */ hdma->DmaBaseAddress->IFCR = (DMA_ISR_GIF1 << hdma->ChannelIndex); - 800f40c: 687b ldr r3, [r7, #4] - 800f40e: 6c1a ldr r2, [r3, #64] @ 0x40 - 800f410: 687b ldr r3, [r7, #4] - 800f412: 6bdb ldr r3, [r3, #60] @ 0x3c - 800f414: 2101 movs r1, #1 - 800f416: fa01 f202 lsl.w r2, r1, r2 - 800f41a: 605a str r2, [r3, #4] + 800f428: 687b ldr r3, [r7, #4] + 800f42a: 6c1a ldr r2, [r3, #64] @ 0x40 + 800f42c: 687b ldr r3, [r7, #4] + 800f42e: 6bdb ldr r3, [r3, #60] @ 0x3c + 800f430: 2101 movs r1, #1 + 800f432: fa01 f202 lsl.w r2, r1, r2 + 800f436: 605a str r2, [r3, #4] } /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 800f41c: 687b ldr r3, [r7, #4] - 800f41e: 2201 movs r2, #1 - 800f420: f883 2021 strb.w r2, [r3, #33] @ 0x21 + 800f438: 687b ldr r3, [r7, #4] + 800f43a: 2201 movs r2, #1 + 800f43c: f883 2021 strb.w r2, [r3, #33] @ 0x21 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800f424: 687b ldr r3, [r7, #4] - 800f426: 2200 movs r2, #0 - 800f428: f883 2020 strb.w r2, [r3, #32] + 800f440: 687b ldr r3, [r7, #4] + 800f442: 2200 movs r2, #0 + 800f444: f883 2020 strb.w r2, [r3, #32] return status; - 800f42c: 7bfb ldrb r3, [r7, #15] + 800f448: 7bfb ldrb r3, [r7, #15] } - 800f42e: 4618 mov r0, r3 - 800f430: 3714 adds r7, #20 - 800f432: 46bd mov sp, r7 - 800f434: bc80 pop {r7} - 800f436: 4770 bx lr + 800f44a: 4618 mov r0, r3 + 800f44c: 3714 adds r7, #20 + 800f44e: 46bd mov sp, r7 + 800f450: bc80 pop {r7} + 800f452: 4770 bx lr -0800f438 : +0800f454 : * @param hdma : pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Channel. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) { - 800f438: b580 push {r7, lr} - 800f43a: b084 sub sp, #16 - 800f43c: af00 add r7, sp, #0 - 800f43e: 6078 str r0, [r7, #4] + 800f454: b580 push {r7, lr} + 800f456: b084 sub sp, #16 + 800f458: af00 add r7, sp, #0 + 800f45a: 6078 str r0, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 800f440: 2300 movs r3, #0 - 800f442: 73fb strb r3, [r7, #15] + 800f45c: 2300 movs r3, #0 + 800f45e: 73fb strb r3, [r7, #15] if(HAL_DMA_STATE_BUSY != hdma->State) - 800f444: 687b ldr r3, [r7, #4] - 800f446: f893 3021 ldrb.w r3, [r3, #33] @ 0x21 - 800f44a: b2db uxtb r3, r3 - 800f44c: 2b02 cmp r3, #2 - 800f44e: d005 beq.n 800f45c + 800f460: 687b ldr r3, [r7, #4] + 800f462: f893 3021 ldrb.w r3, [r3, #33] @ 0x21 + 800f466: b2db uxtb r3, r3 + 800f468: 2b02 cmp r3, #2 + 800f46a: d005 beq.n 800f478 { /* no transfer ongoing */ hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 800f450: 687b ldr r3, [r7, #4] - 800f452: 2204 movs r2, #4 - 800f454: 639a str r2, [r3, #56] @ 0x38 + 800f46c: 687b ldr r3, [r7, #4] + 800f46e: 2204 movs r2, #4 + 800f470: 639a str r2, [r3, #56] @ 0x38 status = HAL_ERROR; - 800f456: 2301 movs r3, #1 - 800f458: 73fb strb r3, [r7, #15] - 800f45a: e0d6 b.n 800f60a + 800f472: 2301 movs r3, #1 + 800f474: 73fb strb r3, [r7, #15] + 800f476: e0d6 b.n 800f626 } else { /* Disable DMA IT */ __HAL_DMA_DISABLE_IT(hdma, (DMA_IT_TC | DMA_IT_HT | DMA_IT_TE)); - 800f45c: 687b ldr r3, [r7, #4] - 800f45e: 681b ldr r3, [r3, #0] - 800f460: 681a ldr r2, [r3, #0] - 800f462: 687b ldr r3, [r7, #4] - 800f464: 681b ldr r3, [r3, #0] - 800f466: f022 020e bic.w r2, r2, #14 - 800f46a: 601a str r2, [r3, #0] + 800f478: 687b ldr r3, [r7, #4] + 800f47a: 681b ldr r3, [r3, #0] + 800f47c: 681a ldr r2, [r3, #0] + 800f47e: 687b ldr r3, [r7, #4] + 800f480: 681b ldr r3, [r3, #0] + 800f482: f022 020e bic.w r2, r2, #14 + 800f486: 601a str r2, [r3, #0] /* Disable the channel */ __HAL_DMA_DISABLE(hdma); - 800f46c: 687b ldr r3, [r7, #4] - 800f46e: 681b ldr r3, [r3, #0] - 800f470: 681a ldr r2, [r3, #0] - 800f472: 687b ldr r3, [r7, #4] - 800f474: 681b ldr r3, [r3, #0] - 800f476: f022 0201 bic.w r2, r2, #1 - 800f47a: 601a str r2, [r3, #0] + 800f488: 687b ldr r3, [r7, #4] + 800f48a: 681b ldr r3, [r3, #0] + 800f48c: 681a ldr r2, [r3, #0] + 800f48e: 687b ldr r3, [r7, #4] + 800f490: 681b ldr r3, [r3, #0] + 800f492: f022 0201 bic.w r2, r2, #1 + 800f496: 601a str r2, [r3, #0] /* Clear all flags */ __HAL_DMA_CLEAR_FLAG(hdma, __HAL_DMA_GET_GI_FLAG_INDEX(hdma)); - 800f47c: 687b ldr r3, [r7, #4] - 800f47e: 681b ldr r3, [r3, #0] - 800f480: 461a mov r2, r3 - 800f482: 4b64 ldr r3, [pc, #400] @ (800f614 ) - 800f484: 429a cmp r2, r3 - 800f486: d958 bls.n 800f53a - 800f488: 687b ldr r3, [r7, #4] - 800f48a: 681b ldr r3, [r3, #0] - 800f48c: 4a62 ldr r2, [pc, #392] @ (800f618 ) - 800f48e: 4293 cmp r3, r2 - 800f490: d04f beq.n 800f532 - 800f492: 687b ldr r3, [r7, #4] - 800f494: 681b ldr r3, [r3, #0] - 800f496: 4a61 ldr r2, [pc, #388] @ (800f61c ) - 800f498: 4293 cmp r3, r2 - 800f49a: d048 beq.n 800f52e - 800f49c: 687b ldr r3, [r7, #4] - 800f49e: 681b ldr r3, [r3, #0] - 800f4a0: 4a5f ldr r2, [pc, #380] @ (800f620 ) - 800f4a2: 4293 cmp r3, r2 - 800f4a4: d040 beq.n 800f528 - 800f4a6: 687b ldr r3, [r7, #4] - 800f4a8: 681b ldr r3, [r3, #0] - 800f4aa: 4a5e ldr r2, [pc, #376] @ (800f624 ) - 800f4ac: 4293 cmp r3, r2 - 800f4ae: d038 beq.n 800f522 - 800f4b0: 687b ldr r3, [r7, #4] - 800f4b2: 681b ldr r3, [r3, #0] - 800f4b4: 4a5c ldr r2, [pc, #368] @ (800f628 ) - 800f4b6: 4293 cmp r3, r2 - 800f4b8: d030 beq.n 800f51c - 800f4ba: 687b ldr r3, [r7, #4] - 800f4bc: 681b ldr r3, [r3, #0] - 800f4be: 4a5b ldr r2, [pc, #364] @ (800f62c ) - 800f4c0: 4293 cmp r3, r2 - 800f4c2: d028 beq.n 800f516 - 800f4c4: 687b ldr r3, [r7, #4] - 800f4c6: 681b ldr r3, [r3, #0] - 800f4c8: 4a52 ldr r2, [pc, #328] @ (800f614 ) - 800f4ca: 4293 cmp r3, r2 - 800f4cc: d020 beq.n 800f510 - 800f4ce: 687b ldr r3, [r7, #4] - 800f4d0: 681b ldr r3, [r3, #0] - 800f4d2: 4a57 ldr r2, [pc, #348] @ (800f630 ) - 800f4d4: 4293 cmp r3, r2 - 800f4d6: d019 beq.n 800f50c - 800f4d8: 687b ldr r3, [r7, #4] - 800f4da: 681b ldr r3, [r3, #0] - 800f4dc: 4a55 ldr r2, [pc, #340] @ (800f634 ) - 800f4de: 4293 cmp r3, r2 - 800f4e0: d012 beq.n 800f508 - 800f4e2: 687b ldr r3, [r7, #4] - 800f4e4: 681b ldr r3, [r3, #0] - 800f4e6: 4a54 ldr r2, [pc, #336] @ (800f638 ) - 800f4e8: 4293 cmp r3, r2 - 800f4ea: d00a beq.n 800f502 - 800f4ec: 687b ldr r3, [r7, #4] - 800f4ee: 681b ldr r3, [r3, #0] - 800f4f0: 4a52 ldr r2, [pc, #328] @ (800f63c ) - 800f4f2: 4293 cmp r3, r2 - 800f4f4: d102 bne.n 800f4fc - 800f4f6: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800f4fa: e01b b.n 800f534 - 800f4fc: f44f 3380 mov.w r3, #65536 @ 0x10000 - 800f500: e018 b.n 800f534 - 800f502: f44f 7380 mov.w r3, #256 @ 0x100 - 800f506: e015 b.n 800f534 - 800f508: 2310 movs r3, #16 - 800f50a: e013 b.n 800f534 - 800f50c: 2301 movs r3, #1 - 800f50e: e011 b.n 800f534 - 800f510: f04f 7380 mov.w r3, #16777216 @ 0x1000000 - 800f514: e00e b.n 800f534 - 800f516: f44f 1380 mov.w r3, #1048576 @ 0x100000 - 800f51a: e00b b.n 800f534 - 800f51c: f44f 3380 mov.w r3, #65536 @ 0x10000 - 800f520: e008 b.n 800f534 - 800f522: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800f526: e005 b.n 800f534 - 800f528: f44f 7380 mov.w r3, #256 @ 0x100 - 800f52c: e002 b.n 800f534 - 800f52e: 2310 movs r3, #16 - 800f530: e000 b.n 800f534 - 800f532: 2301 movs r3, #1 - 800f534: 4a42 ldr r2, [pc, #264] @ (800f640 ) - 800f536: 6053 str r3, [r2, #4] - 800f538: e057 b.n 800f5ea - 800f53a: 687b ldr r3, [r7, #4] - 800f53c: 681b ldr r3, [r3, #0] - 800f53e: 4a36 ldr r2, [pc, #216] @ (800f618 ) - 800f540: 4293 cmp r3, r2 - 800f542: d04f beq.n 800f5e4 - 800f544: 687b ldr r3, [r7, #4] - 800f546: 681b ldr r3, [r3, #0] - 800f548: 4a34 ldr r2, [pc, #208] @ (800f61c ) - 800f54a: 4293 cmp r3, r2 - 800f54c: d048 beq.n 800f5e0 - 800f54e: 687b ldr r3, [r7, #4] - 800f550: 681b ldr r3, [r3, #0] - 800f552: 4a33 ldr r2, [pc, #204] @ (800f620 ) - 800f554: 4293 cmp r3, r2 - 800f556: d040 beq.n 800f5da - 800f558: 687b ldr r3, [r7, #4] - 800f55a: 681b ldr r3, [r3, #0] - 800f55c: 4a31 ldr r2, [pc, #196] @ (800f624 ) - 800f55e: 4293 cmp r3, r2 - 800f560: d038 beq.n 800f5d4 - 800f562: 687b ldr r3, [r7, #4] - 800f564: 681b ldr r3, [r3, #0] - 800f566: 4a30 ldr r2, [pc, #192] @ (800f628 ) - 800f568: 4293 cmp r3, r2 - 800f56a: d030 beq.n 800f5ce - 800f56c: 687b ldr r3, [r7, #4] - 800f56e: 681b ldr r3, [r3, #0] - 800f570: 4a2e ldr r2, [pc, #184] @ (800f62c ) - 800f572: 4293 cmp r3, r2 - 800f574: d028 beq.n 800f5c8 - 800f576: 687b ldr r3, [r7, #4] - 800f578: 681b ldr r3, [r3, #0] - 800f57a: 4a26 ldr r2, [pc, #152] @ (800f614 ) - 800f57c: 4293 cmp r3, r2 - 800f57e: d020 beq.n 800f5c2 - 800f580: 687b ldr r3, [r7, #4] - 800f582: 681b ldr r3, [r3, #0] - 800f584: 4a2a ldr r2, [pc, #168] @ (800f630 ) - 800f586: 4293 cmp r3, r2 - 800f588: d019 beq.n 800f5be - 800f58a: 687b ldr r3, [r7, #4] - 800f58c: 681b ldr r3, [r3, #0] - 800f58e: 4a29 ldr r2, [pc, #164] @ (800f634 ) - 800f590: 4293 cmp r3, r2 - 800f592: d012 beq.n 800f5ba - 800f594: 687b ldr r3, [r7, #4] - 800f596: 681b ldr r3, [r3, #0] - 800f598: 4a27 ldr r2, [pc, #156] @ (800f638 ) - 800f59a: 4293 cmp r3, r2 - 800f59c: d00a beq.n 800f5b4 - 800f59e: 687b ldr r3, [r7, #4] - 800f5a0: 681b ldr r3, [r3, #0] - 800f5a2: 4a26 ldr r2, [pc, #152] @ (800f63c ) - 800f5a4: 4293 cmp r3, r2 - 800f5a6: d102 bne.n 800f5ae - 800f5a8: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800f5ac: e01b b.n 800f5e6 - 800f5ae: f44f 3380 mov.w r3, #65536 @ 0x10000 - 800f5b2: e018 b.n 800f5e6 - 800f5b4: f44f 7380 mov.w r3, #256 @ 0x100 - 800f5b8: e015 b.n 800f5e6 - 800f5ba: 2310 movs r3, #16 - 800f5bc: e013 b.n 800f5e6 - 800f5be: 2301 movs r3, #1 - 800f5c0: e011 b.n 800f5e6 - 800f5c2: f04f 7380 mov.w r3, #16777216 @ 0x1000000 - 800f5c6: e00e b.n 800f5e6 - 800f5c8: f44f 1380 mov.w r3, #1048576 @ 0x100000 - 800f5cc: e00b b.n 800f5e6 - 800f5ce: f44f 3380 mov.w r3, #65536 @ 0x10000 - 800f5d2: e008 b.n 800f5e6 - 800f5d4: f44f 5380 mov.w r3, #4096 @ 0x1000 - 800f5d8: e005 b.n 800f5e6 - 800f5da: f44f 7380 mov.w r3, #256 @ 0x100 - 800f5de: e002 b.n 800f5e6 - 800f5e0: 2310 movs r3, #16 - 800f5e2: e000 b.n 800f5e6 - 800f5e4: 2301 movs r3, #1 - 800f5e6: 4a17 ldr r2, [pc, #92] @ (800f644 ) - 800f5e8: 6053 str r3, [r2, #4] + 800f498: 687b ldr r3, [r7, #4] + 800f49a: 681b ldr r3, [r3, #0] + 800f49c: 461a mov r2, r3 + 800f49e: 4b64 ldr r3, [pc, #400] @ (800f630 ) + 800f4a0: 429a cmp r2, r3 + 800f4a2: d958 bls.n 800f556 + 800f4a4: 687b ldr r3, [r7, #4] + 800f4a6: 681b ldr r3, [r3, #0] + 800f4a8: 4a62 ldr r2, [pc, #392] @ (800f634 ) + 800f4aa: 4293 cmp r3, r2 + 800f4ac: d04f beq.n 800f54e + 800f4ae: 687b ldr r3, [r7, #4] + 800f4b0: 681b ldr r3, [r3, #0] + 800f4b2: 4a61 ldr r2, [pc, #388] @ (800f638 ) + 800f4b4: 4293 cmp r3, r2 + 800f4b6: d048 beq.n 800f54a + 800f4b8: 687b ldr r3, [r7, #4] + 800f4ba: 681b ldr r3, [r3, #0] + 800f4bc: 4a5f ldr r2, [pc, #380] @ (800f63c ) + 800f4be: 4293 cmp r3, r2 + 800f4c0: d040 beq.n 800f544 + 800f4c2: 687b ldr r3, [r7, #4] + 800f4c4: 681b ldr r3, [r3, #0] + 800f4c6: 4a5e ldr r2, [pc, #376] @ (800f640 ) + 800f4c8: 4293 cmp r3, r2 + 800f4ca: d038 beq.n 800f53e + 800f4cc: 687b ldr r3, [r7, #4] + 800f4ce: 681b ldr r3, [r3, #0] + 800f4d0: 4a5c ldr r2, [pc, #368] @ (800f644 ) + 800f4d2: 4293 cmp r3, r2 + 800f4d4: d030 beq.n 800f538 + 800f4d6: 687b ldr r3, [r7, #4] + 800f4d8: 681b ldr r3, [r3, #0] + 800f4da: 4a5b ldr r2, [pc, #364] @ (800f648 ) + 800f4dc: 4293 cmp r3, r2 + 800f4de: d028 beq.n 800f532 + 800f4e0: 687b ldr r3, [r7, #4] + 800f4e2: 681b ldr r3, [r3, #0] + 800f4e4: 4a52 ldr r2, [pc, #328] @ (800f630 ) + 800f4e6: 4293 cmp r3, r2 + 800f4e8: d020 beq.n 800f52c + 800f4ea: 687b ldr r3, [r7, #4] + 800f4ec: 681b ldr r3, [r3, #0] + 800f4ee: 4a57 ldr r2, [pc, #348] @ (800f64c ) + 800f4f0: 4293 cmp r3, r2 + 800f4f2: d019 beq.n 800f528 + 800f4f4: 687b ldr r3, [r7, #4] + 800f4f6: 681b ldr r3, [r3, #0] + 800f4f8: 4a55 ldr r2, [pc, #340] @ (800f650 ) + 800f4fa: 4293 cmp r3, r2 + 800f4fc: d012 beq.n 800f524 + 800f4fe: 687b ldr r3, [r7, #4] + 800f500: 681b ldr r3, [r3, #0] + 800f502: 4a54 ldr r2, [pc, #336] @ (800f654 ) + 800f504: 4293 cmp r3, r2 + 800f506: d00a beq.n 800f51e + 800f508: 687b ldr r3, [r7, #4] + 800f50a: 681b ldr r3, [r3, #0] + 800f50c: 4a52 ldr r2, [pc, #328] @ (800f658 ) + 800f50e: 4293 cmp r3, r2 + 800f510: d102 bne.n 800f518 + 800f512: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800f516: e01b b.n 800f550 + 800f518: f44f 3380 mov.w r3, #65536 @ 0x10000 + 800f51c: e018 b.n 800f550 + 800f51e: f44f 7380 mov.w r3, #256 @ 0x100 + 800f522: e015 b.n 800f550 + 800f524: 2310 movs r3, #16 + 800f526: e013 b.n 800f550 + 800f528: 2301 movs r3, #1 + 800f52a: e011 b.n 800f550 + 800f52c: f04f 7380 mov.w r3, #16777216 @ 0x1000000 + 800f530: e00e b.n 800f550 + 800f532: f44f 1380 mov.w r3, #1048576 @ 0x100000 + 800f536: e00b b.n 800f550 + 800f538: f44f 3380 mov.w r3, #65536 @ 0x10000 + 800f53c: e008 b.n 800f550 + 800f53e: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800f542: e005 b.n 800f550 + 800f544: f44f 7380 mov.w r3, #256 @ 0x100 + 800f548: e002 b.n 800f550 + 800f54a: 2310 movs r3, #16 + 800f54c: e000 b.n 800f550 + 800f54e: 2301 movs r3, #1 + 800f550: 4a42 ldr r2, [pc, #264] @ (800f65c ) + 800f552: 6053 str r3, [r2, #4] + 800f554: e057 b.n 800f606 + 800f556: 687b ldr r3, [r7, #4] + 800f558: 681b ldr r3, [r3, #0] + 800f55a: 4a36 ldr r2, [pc, #216] @ (800f634 ) + 800f55c: 4293 cmp r3, r2 + 800f55e: d04f beq.n 800f600 + 800f560: 687b ldr r3, [r7, #4] + 800f562: 681b ldr r3, [r3, #0] + 800f564: 4a34 ldr r2, [pc, #208] @ (800f638 ) + 800f566: 4293 cmp r3, r2 + 800f568: d048 beq.n 800f5fc + 800f56a: 687b ldr r3, [r7, #4] + 800f56c: 681b ldr r3, [r3, #0] + 800f56e: 4a33 ldr r2, [pc, #204] @ (800f63c ) + 800f570: 4293 cmp r3, r2 + 800f572: d040 beq.n 800f5f6 + 800f574: 687b ldr r3, [r7, #4] + 800f576: 681b ldr r3, [r3, #0] + 800f578: 4a31 ldr r2, [pc, #196] @ (800f640 ) + 800f57a: 4293 cmp r3, r2 + 800f57c: d038 beq.n 800f5f0 + 800f57e: 687b ldr r3, [r7, #4] + 800f580: 681b ldr r3, [r3, #0] + 800f582: 4a30 ldr r2, [pc, #192] @ (800f644 ) + 800f584: 4293 cmp r3, r2 + 800f586: d030 beq.n 800f5ea + 800f588: 687b ldr r3, [r7, #4] + 800f58a: 681b ldr r3, [r3, #0] + 800f58c: 4a2e ldr r2, [pc, #184] @ (800f648 ) + 800f58e: 4293 cmp r3, r2 + 800f590: d028 beq.n 800f5e4 + 800f592: 687b ldr r3, [r7, #4] + 800f594: 681b ldr r3, [r3, #0] + 800f596: 4a26 ldr r2, [pc, #152] @ (800f630 ) + 800f598: 4293 cmp r3, r2 + 800f59a: d020 beq.n 800f5de + 800f59c: 687b ldr r3, [r7, #4] + 800f59e: 681b ldr r3, [r3, #0] + 800f5a0: 4a2a ldr r2, [pc, #168] @ (800f64c ) + 800f5a2: 4293 cmp r3, r2 + 800f5a4: d019 beq.n 800f5da + 800f5a6: 687b ldr r3, [r7, #4] + 800f5a8: 681b ldr r3, [r3, #0] + 800f5aa: 4a29 ldr r2, [pc, #164] @ (800f650 ) + 800f5ac: 4293 cmp r3, r2 + 800f5ae: d012 beq.n 800f5d6 + 800f5b0: 687b ldr r3, [r7, #4] + 800f5b2: 681b ldr r3, [r3, #0] + 800f5b4: 4a27 ldr r2, [pc, #156] @ (800f654 ) + 800f5b6: 4293 cmp r3, r2 + 800f5b8: d00a beq.n 800f5d0 + 800f5ba: 687b ldr r3, [r7, #4] + 800f5bc: 681b ldr r3, [r3, #0] + 800f5be: 4a26 ldr r2, [pc, #152] @ (800f658 ) + 800f5c0: 4293 cmp r3, r2 + 800f5c2: d102 bne.n 800f5ca + 800f5c4: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800f5c8: e01b b.n 800f602 + 800f5ca: f44f 3380 mov.w r3, #65536 @ 0x10000 + 800f5ce: e018 b.n 800f602 + 800f5d0: f44f 7380 mov.w r3, #256 @ 0x100 + 800f5d4: e015 b.n 800f602 + 800f5d6: 2310 movs r3, #16 + 800f5d8: e013 b.n 800f602 + 800f5da: 2301 movs r3, #1 + 800f5dc: e011 b.n 800f602 + 800f5de: f04f 7380 mov.w r3, #16777216 @ 0x1000000 + 800f5e2: e00e b.n 800f602 + 800f5e4: f44f 1380 mov.w r3, #1048576 @ 0x100000 + 800f5e8: e00b b.n 800f602 + 800f5ea: f44f 3380 mov.w r3, #65536 @ 0x10000 + 800f5ee: e008 b.n 800f602 + 800f5f0: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800f5f4: e005 b.n 800f602 + 800f5f6: f44f 7380 mov.w r3, #256 @ 0x100 + 800f5fa: e002 b.n 800f602 + 800f5fc: 2310 movs r3, #16 + 800f5fe: e000 b.n 800f602 + 800f600: 2301 movs r3, #1 + 800f602: 4a17 ldr r2, [pc, #92] @ (800f660 ) + 800f604: 6053 str r3, [r2, #4] /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 800f5ea: 687b ldr r3, [r7, #4] - 800f5ec: 2201 movs r2, #1 - 800f5ee: f883 2021 strb.w r2, [r3, #33] @ 0x21 + 800f606: 687b ldr r3, [r7, #4] + 800f608: 2201 movs r2, #1 + 800f60a: f883 2021 strb.w r2, [r3, #33] @ 0x21 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800f5f2: 687b ldr r3, [r7, #4] - 800f5f4: 2200 movs r2, #0 - 800f5f6: f883 2020 strb.w r2, [r3, #32] + 800f60e: 687b ldr r3, [r7, #4] + 800f610: 2200 movs r2, #0 + 800f612: f883 2020 strb.w r2, [r3, #32] /* Call User Abort callback */ if(hdma->XferAbortCallback != NULL) - 800f5fa: 687b ldr r3, [r7, #4] - 800f5fc: 6b5b ldr r3, [r3, #52] @ 0x34 - 800f5fe: 2b00 cmp r3, #0 - 800f600: d003 beq.n 800f60a + 800f616: 687b ldr r3, [r7, #4] + 800f618: 6b5b ldr r3, [r3, #52] @ 0x34 + 800f61a: 2b00 cmp r3, #0 + 800f61c: d003 beq.n 800f626 { hdma->XferAbortCallback(hdma); - 800f602: 687b ldr r3, [r7, #4] - 800f604: 6b5b ldr r3, [r3, #52] @ 0x34 - 800f606: 6878 ldr r0, [r7, #4] - 800f608: 4798 blx r3 + 800f61e: 687b ldr r3, [r7, #4] + 800f620: 6b5b ldr r3, [r3, #52] @ 0x34 + 800f622: 6878 ldr r0, [r7, #4] + 800f624: 4798 blx r3 } } return status; - 800f60a: 7bfb ldrb r3, [r7, #15] + 800f626: 7bfb ldrb r3, [r7, #15] } - 800f60c: 4618 mov r0, r3 - 800f60e: 3710 adds r7, #16 - 800f610: 46bd mov sp, r7 - 800f612: bd80 pop {r7, pc} - 800f614: 40020080 .word 0x40020080 - 800f618: 40020008 .word 0x40020008 - 800f61c: 4002001c .word 0x4002001c - 800f620: 40020030 .word 0x40020030 - 800f624: 40020044 .word 0x40020044 - 800f628: 40020058 .word 0x40020058 - 800f62c: 4002006c .word 0x4002006c - 800f630: 40020408 .word 0x40020408 - 800f634: 4002041c .word 0x4002041c - 800f638: 40020430 .word 0x40020430 - 800f63c: 40020444 .word 0x40020444 - 800f640: 40020400 .word 0x40020400 - 800f644: 40020000 .word 0x40020000 + 800f628: 4618 mov r0, r3 + 800f62a: 3710 adds r7, #16 + 800f62c: 46bd mov sp, r7 + 800f62e: bd80 pop {r7, pc} + 800f630: 40020080 .word 0x40020080 + 800f634: 40020008 .word 0x40020008 + 800f638: 4002001c .word 0x4002001c + 800f63c: 40020030 .word 0x40020030 + 800f640: 40020044 .word 0x40020044 + 800f644: 40020058 .word 0x40020058 + 800f648: 4002006c .word 0x4002006c + 800f64c: 40020408 .word 0x40020408 + 800f650: 4002041c .word 0x4002041c + 800f654: 40020430 .word 0x40020430 + 800f658: 40020444 .word 0x40020444 + 800f65c: 40020400 .word 0x40020400 + 800f660: 40020000 .word 0x40020000 -0800f648 : +0800f664 : * @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) { - 800f648: b480 push {r7} - 800f64a: b08b sub sp, #44 @ 0x2c - 800f64c: af00 add r7, sp, #0 - 800f64e: 6078 str r0, [r7, #4] - 800f650: 6039 str r1, [r7, #0] + 800f664: b480 push {r7} + 800f666: b08b sub sp, #44 @ 0x2c + 800f668: af00 add r7, sp, #0 + 800f66a: 6078 str r0, [r7, #4] + 800f66c: 6039 str r1, [r7, #0] uint32_t position = 0x00u; - 800f652: 2300 movs r3, #0 - 800f654: 627b str r3, [r7, #36] @ 0x24 + 800f66e: 2300 movs r3, #0 + 800f670: 627b str r3, [r7, #36] @ 0x24 uint32_t ioposition; uint32_t iocurrent; uint32_t temp; uint32_t config = 0x00u; - 800f656: 2300 movs r3, #0 - 800f658: 623b str r3, [r7, #32] + 800f672: 2300 movs r3, #0 + 800f674: 623b str r3, [r7, #32] assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_GPIO_PIN(GPIO_Init->Pin)); assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); /* Configure the port pins */ while (((GPIO_Init->Pin) >> position) != 0x00u) - 800f65a: e169 b.n 800f930 + 800f676: e169 b.n 800f94c { /* Get the IO position */ ioposition = (0x01uL << position); - 800f65c: 2201 movs r2, #1 - 800f65e: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f660: fa02 f303 lsl.w r3, r2, r3 - 800f664: 61fb str r3, [r7, #28] + 800f678: 2201 movs r2, #1 + 800f67a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f67c: fa02 f303 lsl.w r3, r2, r3 + 800f680: 61fb str r3, [r7, #28] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 800f666: 683b ldr r3, [r7, #0] - 800f668: 681b ldr r3, [r3, #0] - 800f66a: 69fa ldr r2, [r7, #28] - 800f66c: 4013 ands r3, r2 - 800f66e: 61bb str r3, [r7, #24] + 800f682: 683b ldr r3, [r7, #0] + 800f684: 681b ldr r3, [r3, #0] + 800f686: 69fa ldr r2, [r7, #28] + 800f688: 4013 ands r3, r2 + 800f68a: 61bb str r3, [r7, #24] if (iocurrent == ioposition) - 800f670: 69ba ldr r2, [r7, #24] - 800f672: 69fb ldr r3, [r7, #28] - 800f674: 429a cmp r2, r3 - 800f676: f040 8158 bne.w 800f92a + 800f68c: 69ba ldr r2, [r7, #24] + 800f68e: 69fb ldr r3, [r7, #28] + 800f690: 429a cmp r2, r3 + 800f692: f040 8158 bne.w 800f946 { /* Check the Alternate function parameters */ assert_param(IS_GPIO_AF_INSTANCE(GPIOx)); /* Based on the required mode, filling config variable with MODEy[1:0] and CNFy[3:2] corresponding bits */ switch (GPIO_Init->Mode) - 800f67a: 683b ldr r3, [r7, #0] - 800f67c: 685b ldr r3, [r3, #4] - 800f67e: 4a9a ldr r2, [pc, #616] @ (800f8e8 ) - 800f680: 4293 cmp r3, r2 - 800f682: d05e beq.n 800f742 - 800f684: 4a98 ldr r2, [pc, #608] @ (800f8e8 ) - 800f686: 4293 cmp r3, r2 - 800f688: d875 bhi.n 800f776 - 800f68a: 4a98 ldr r2, [pc, #608] @ (800f8ec ) - 800f68c: 4293 cmp r3, r2 - 800f68e: d058 beq.n 800f742 - 800f690: 4a96 ldr r2, [pc, #600] @ (800f8ec ) - 800f692: 4293 cmp r3, r2 - 800f694: d86f bhi.n 800f776 - 800f696: 4a96 ldr r2, [pc, #600] @ (800f8f0 ) - 800f698: 4293 cmp r3, r2 - 800f69a: d052 beq.n 800f742 - 800f69c: 4a94 ldr r2, [pc, #592] @ (800f8f0 ) - 800f69e: 4293 cmp r3, r2 - 800f6a0: d869 bhi.n 800f776 - 800f6a2: 4a94 ldr r2, [pc, #592] @ (800f8f4 ) - 800f6a4: 4293 cmp r3, r2 - 800f6a6: d04c beq.n 800f742 - 800f6a8: 4a92 ldr r2, [pc, #584] @ (800f8f4 ) - 800f6aa: 4293 cmp r3, r2 - 800f6ac: d863 bhi.n 800f776 - 800f6ae: 4a92 ldr r2, [pc, #584] @ (800f8f8 ) - 800f6b0: 4293 cmp r3, r2 - 800f6b2: d046 beq.n 800f742 - 800f6b4: 4a90 ldr r2, [pc, #576] @ (800f8f8 ) - 800f6b6: 4293 cmp r3, r2 - 800f6b8: d85d bhi.n 800f776 - 800f6ba: 2b12 cmp r3, #18 - 800f6bc: d82a bhi.n 800f714 - 800f6be: 2b12 cmp r3, #18 - 800f6c0: d859 bhi.n 800f776 - 800f6c2: a201 add r2, pc, #4 @ (adr r2, 800f6c8 ) - 800f6c4: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800f6c8: 0800f743 .word 0x0800f743 - 800f6cc: 0800f71d .word 0x0800f71d - 800f6d0: 0800f72f .word 0x0800f72f - 800f6d4: 0800f771 .word 0x0800f771 - 800f6d8: 0800f777 .word 0x0800f777 - 800f6dc: 0800f777 .word 0x0800f777 - 800f6e0: 0800f777 .word 0x0800f777 - 800f6e4: 0800f777 .word 0x0800f777 - 800f6e8: 0800f777 .word 0x0800f777 - 800f6ec: 0800f777 .word 0x0800f777 - 800f6f0: 0800f777 .word 0x0800f777 - 800f6f4: 0800f777 .word 0x0800f777 - 800f6f8: 0800f777 .word 0x0800f777 - 800f6fc: 0800f777 .word 0x0800f777 - 800f700: 0800f777 .word 0x0800f777 - 800f704: 0800f777 .word 0x0800f777 - 800f708: 0800f777 .word 0x0800f777 - 800f70c: 0800f725 .word 0x0800f725 - 800f710: 0800f739 .word 0x0800f739 - 800f714: 4a79 ldr r2, [pc, #484] @ (800f8fc ) - 800f716: 4293 cmp r3, r2 - 800f718: d013 beq.n 800f742 + 800f696: 683b ldr r3, [r7, #0] + 800f698: 685b ldr r3, [r3, #4] + 800f69a: 4a9a ldr r2, [pc, #616] @ (800f904 ) + 800f69c: 4293 cmp r3, r2 + 800f69e: d05e beq.n 800f75e + 800f6a0: 4a98 ldr r2, [pc, #608] @ (800f904 ) + 800f6a2: 4293 cmp r3, r2 + 800f6a4: d875 bhi.n 800f792 + 800f6a6: 4a98 ldr r2, [pc, #608] @ (800f908 ) + 800f6a8: 4293 cmp r3, r2 + 800f6aa: d058 beq.n 800f75e + 800f6ac: 4a96 ldr r2, [pc, #600] @ (800f908 ) + 800f6ae: 4293 cmp r3, r2 + 800f6b0: d86f bhi.n 800f792 + 800f6b2: 4a96 ldr r2, [pc, #600] @ (800f90c ) + 800f6b4: 4293 cmp r3, r2 + 800f6b6: d052 beq.n 800f75e + 800f6b8: 4a94 ldr r2, [pc, #592] @ (800f90c ) + 800f6ba: 4293 cmp r3, r2 + 800f6bc: d869 bhi.n 800f792 + 800f6be: 4a94 ldr r2, [pc, #592] @ (800f910 ) + 800f6c0: 4293 cmp r3, r2 + 800f6c2: d04c beq.n 800f75e + 800f6c4: 4a92 ldr r2, [pc, #584] @ (800f910 ) + 800f6c6: 4293 cmp r3, r2 + 800f6c8: d863 bhi.n 800f792 + 800f6ca: 4a92 ldr r2, [pc, #584] @ (800f914 ) + 800f6cc: 4293 cmp r3, r2 + 800f6ce: d046 beq.n 800f75e + 800f6d0: 4a90 ldr r2, [pc, #576] @ (800f914 ) + 800f6d2: 4293 cmp r3, r2 + 800f6d4: d85d bhi.n 800f792 + 800f6d6: 2b12 cmp r3, #18 + 800f6d8: d82a bhi.n 800f730 + 800f6da: 2b12 cmp r3, #18 + 800f6dc: d859 bhi.n 800f792 + 800f6de: a201 add r2, pc, #4 @ (adr r2, 800f6e4 ) + 800f6e0: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800f6e4: 0800f75f .word 0x0800f75f + 800f6e8: 0800f739 .word 0x0800f739 + 800f6ec: 0800f74b .word 0x0800f74b + 800f6f0: 0800f78d .word 0x0800f78d + 800f6f4: 0800f793 .word 0x0800f793 + 800f6f8: 0800f793 .word 0x0800f793 + 800f6fc: 0800f793 .word 0x0800f793 + 800f700: 0800f793 .word 0x0800f793 + 800f704: 0800f793 .word 0x0800f793 + 800f708: 0800f793 .word 0x0800f793 + 800f70c: 0800f793 .word 0x0800f793 + 800f710: 0800f793 .word 0x0800f793 + 800f714: 0800f793 .word 0x0800f793 + 800f718: 0800f793 .word 0x0800f793 + 800f71c: 0800f793 .word 0x0800f793 + 800f720: 0800f793 .word 0x0800f793 + 800f724: 0800f793 .word 0x0800f793 + 800f728: 0800f741 .word 0x0800f741 + 800f72c: 0800f755 .word 0x0800f755 + 800f730: 4a79 ldr r2, [pc, #484] @ (800f918 ) + 800f732: 4293 cmp r3, r2 + 800f734: d013 beq.n 800f75e config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; break; /* Parameters are checked with assert_param */ default: break; - 800f71a: e02c b.n 800f776 + 800f736: e02c b.n 800f792 config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_PP; - 800f71c: 683b ldr r3, [r7, #0] - 800f71e: 68db ldr r3, [r3, #12] - 800f720: 623b str r3, [r7, #32] - break; - 800f722: e029 b.n 800f778 - config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_OD; - 800f724: 683b ldr r3, [r7, #0] - 800f726: 68db ldr r3, [r3, #12] - 800f728: 3304 adds r3, #4 - 800f72a: 623b str r3, [r7, #32] - break; - 800f72c: e024 b.n 800f778 - config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_PP; - 800f72e: 683b ldr r3, [r7, #0] - 800f730: 68db ldr r3, [r3, #12] - 800f732: 3308 adds r3, #8 - 800f734: 623b str r3, [r7, #32] - break; - 800f736: e01f b.n 800f778 - config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_OD; 800f738: 683b ldr r3, [r7, #0] 800f73a: 68db ldr r3, [r3, #12] - 800f73c: 330c adds r3, #12 - 800f73e: 623b str r3, [r7, #32] + 800f73c: 623b str r3, [r7, #32] break; - 800f740: e01a b.n 800f778 - if (GPIO_Init->Pull == GPIO_NOPULL) - 800f742: 683b ldr r3, [r7, #0] - 800f744: 689b ldr r3, [r3, #8] - 800f746: 2b00 cmp r3, #0 - 800f748: d102 bne.n 800f750 - config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_FLOATING; - 800f74a: 2304 movs r3, #4 - 800f74c: 623b str r3, [r7, #32] + 800f73e: e029 b.n 800f794 + config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_OD; + 800f740: 683b ldr r3, [r7, #0] + 800f742: 68db ldr r3, [r3, #12] + 800f744: 3304 adds r3, #4 + 800f746: 623b str r3, [r7, #32] break; - 800f74e: e013 b.n 800f778 - else if (GPIO_Init->Pull == GPIO_PULLUP) - 800f750: 683b ldr r3, [r7, #0] - 800f752: 689b ldr r3, [r3, #8] - 800f754: 2b01 cmp r3, #1 - 800f756: d105 bne.n 800f764 - config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 800f758: 2308 movs r3, #8 + 800f748: e024 b.n 800f794 + config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_PP; + 800f74a: 683b ldr r3, [r7, #0] + 800f74c: 68db ldr r3, [r3, #12] + 800f74e: 3308 adds r3, #8 + 800f750: 623b str r3, [r7, #32] + break; + 800f752: e01f b.n 800f794 + config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_OD; + 800f754: 683b ldr r3, [r7, #0] + 800f756: 68db ldr r3, [r3, #12] + 800f758: 330c adds r3, #12 800f75a: 623b str r3, [r7, #32] - GPIOx->BSRR = ioposition; - 800f75c: 687b ldr r3, [r7, #4] - 800f75e: 69fa ldr r2, [r7, #28] - 800f760: 611a str r2, [r3, #16] break; - 800f762: e009 b.n 800f778 + 800f75c: e01a b.n 800f794 + if (GPIO_Init->Pull == GPIO_NOPULL) + 800f75e: 683b ldr r3, [r7, #0] + 800f760: 689b ldr r3, [r3, #8] + 800f762: 2b00 cmp r3, #0 + 800f764: d102 bne.n 800f76c + config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_FLOATING; + 800f766: 2304 movs r3, #4 + 800f768: 623b str r3, [r7, #32] + break; + 800f76a: e013 b.n 800f794 + else if (GPIO_Init->Pull == GPIO_PULLUP) + 800f76c: 683b ldr r3, [r7, #0] + 800f76e: 689b ldr r3, [r3, #8] + 800f770: 2b01 cmp r3, #1 + 800f772: d105 bne.n 800f780 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 800f764: 2308 movs r3, #8 - 800f766: 623b str r3, [r7, #32] + 800f774: 2308 movs r3, #8 + 800f776: 623b str r3, [r7, #32] + GPIOx->BSRR = ioposition; + 800f778: 687b ldr r3, [r7, #4] + 800f77a: 69fa ldr r2, [r7, #28] + 800f77c: 611a str r2, [r3, #16] + break; + 800f77e: e009 b.n 800f794 + config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; + 800f780: 2308 movs r3, #8 + 800f782: 623b str r3, [r7, #32] GPIOx->BRR = ioposition; - 800f768: 687b ldr r3, [r7, #4] - 800f76a: 69fa ldr r2, [r7, #28] - 800f76c: 615a str r2, [r3, #20] + 800f784: 687b ldr r3, [r7, #4] + 800f786: 69fa ldr r2, [r7, #28] + 800f788: 615a str r2, [r3, #20] break; - 800f76e: e003 b.n 800f778 + 800f78a: e003 b.n 800f794 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; - 800f770: 2300 movs r3, #0 - 800f772: 623b str r3, [r7, #32] + 800f78c: 2300 movs r3, #0 + 800f78e: 623b str r3, [r7, #32] break; - 800f774: e000 b.n 800f778 + 800f790: e000 b.n 800f794 break; - 800f776: bf00 nop + 800f792: bf00 nop } /* Check if the current bit belongs to first half or last half of the pin count number in order to address CRH or CRL register*/ configregister = (iocurrent < GPIO_PIN_8) ? &GPIOx->CRL : &GPIOx->CRH; - 800f778: 69bb ldr r3, [r7, #24] - 800f77a: 2bff cmp r3, #255 @ 0xff - 800f77c: d801 bhi.n 800f782 - 800f77e: 687b ldr r3, [r7, #4] - 800f780: e001 b.n 800f786 - 800f782: 687b ldr r3, [r7, #4] - 800f784: 3304 adds r3, #4 - 800f786: 617b str r3, [r7, #20] + 800f794: 69bb ldr r3, [r7, #24] + 800f796: 2bff cmp r3, #255 @ 0xff + 800f798: d801 bhi.n 800f79e + 800f79a: 687b ldr r3, [r7, #4] + 800f79c: e001 b.n 800f7a2 + 800f79e: 687b ldr r3, [r7, #4] + 800f7a0: 3304 adds r3, #4 + 800f7a2: 617b str r3, [r7, #20] registeroffset = (iocurrent < GPIO_PIN_8) ? (position << 2u) : ((position - 8u) << 2u); - 800f788: 69bb ldr r3, [r7, #24] - 800f78a: 2bff cmp r3, #255 @ 0xff - 800f78c: d802 bhi.n 800f794 - 800f78e: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f790: 009b lsls r3, r3, #2 - 800f792: e002 b.n 800f79a - 800f794: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f796: 3b08 subs r3, #8 - 800f798: 009b lsls r3, r3, #2 - 800f79a: 613b str r3, [r7, #16] + 800f7a4: 69bb ldr r3, [r7, #24] + 800f7a6: 2bff cmp r3, #255 @ 0xff + 800f7a8: d802 bhi.n 800f7b0 + 800f7aa: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f7ac: 009b lsls r3, r3, #2 + 800f7ae: e002 b.n 800f7b6 + 800f7b0: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f7b2: 3b08 subs r3, #8 + 800f7b4: 009b lsls r3, r3, #2 + 800f7b6: 613b str r3, [r7, #16] /* Apply the new configuration of the pin to the register */ MODIFY_REG((*configregister), ((GPIO_CRL_MODE0 | GPIO_CRL_CNF0) << registeroffset), (config << registeroffset)); - 800f79c: 697b ldr r3, [r7, #20] - 800f79e: 681a ldr r2, [r3, #0] - 800f7a0: 210f movs r1, #15 - 800f7a2: 693b ldr r3, [r7, #16] - 800f7a4: fa01 f303 lsl.w r3, r1, r3 - 800f7a8: 43db mvns r3, r3 - 800f7aa: 401a ands r2, r3 - 800f7ac: 6a39 ldr r1, [r7, #32] - 800f7ae: 693b ldr r3, [r7, #16] - 800f7b0: fa01 f303 lsl.w r3, r1, r3 - 800f7b4: 431a orrs r2, r3 - 800f7b6: 697b ldr r3, [r7, #20] - 800f7b8: 601a str r2, [r3, #0] + 800f7b8: 697b ldr r3, [r7, #20] + 800f7ba: 681a ldr r2, [r3, #0] + 800f7bc: 210f movs r1, #15 + 800f7be: 693b ldr r3, [r7, #16] + 800f7c0: fa01 f303 lsl.w r3, r1, r3 + 800f7c4: 43db mvns r3, r3 + 800f7c6: 401a ands r2, r3 + 800f7c8: 6a39 ldr r1, [r7, #32] + 800f7ca: 693b ldr r3, [r7, #16] + 800f7cc: fa01 f303 lsl.w r3, r1, r3 + 800f7d0: 431a orrs r2, r3 + 800f7d2: 697b ldr r3, [r7, #20] + 800f7d4: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if ((GPIO_Init->Mode & EXTI_MODE) == EXTI_MODE) - 800f7ba: 683b ldr r3, [r7, #0] - 800f7bc: 685b ldr r3, [r3, #4] - 800f7be: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800f7c2: 2b00 cmp r3, #0 - 800f7c4: f000 80b1 beq.w 800f92a + 800f7d6: 683b ldr r3, [r7, #0] + 800f7d8: 685b ldr r3, [r3, #4] + 800f7da: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800f7de: 2b00 cmp r3, #0 + 800f7e0: f000 80b1 beq.w 800f946 { /* Enable AFIO Clock */ __HAL_RCC_AFIO_CLK_ENABLE(); - 800f7c8: 4b4d ldr r3, [pc, #308] @ (800f900 ) - 800f7ca: 699b ldr r3, [r3, #24] - 800f7cc: 4a4c ldr r2, [pc, #304] @ (800f900 ) - 800f7ce: f043 0301 orr.w r3, r3, #1 - 800f7d2: 6193 str r3, [r2, #24] - 800f7d4: 4b4a ldr r3, [pc, #296] @ (800f900 ) - 800f7d6: 699b ldr r3, [r3, #24] - 800f7d8: f003 0301 and.w r3, r3, #1 - 800f7dc: 60bb str r3, [r7, #8] - 800f7de: 68bb ldr r3, [r7, #8] + 800f7e4: 4b4d ldr r3, [pc, #308] @ (800f91c ) + 800f7e6: 699b ldr r3, [r3, #24] + 800f7e8: 4a4c ldr r2, [pc, #304] @ (800f91c ) + 800f7ea: f043 0301 orr.w r3, r3, #1 + 800f7ee: 6193 str r3, [r2, #24] + 800f7f0: 4b4a ldr r3, [pc, #296] @ (800f91c ) + 800f7f2: 699b ldr r3, [r3, #24] + 800f7f4: f003 0301 and.w r3, r3, #1 + 800f7f8: 60bb str r3, [r7, #8] + 800f7fa: 68bb ldr r3, [r7, #8] temp = AFIO->EXTICR[position >> 2u]; - 800f7e0: 4a48 ldr r2, [pc, #288] @ (800f904 ) - 800f7e2: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f7e4: 089b lsrs r3, r3, #2 - 800f7e6: 3302 adds r3, #2 - 800f7e8: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 800f7ec: 60fb str r3, [r7, #12] + 800f7fc: 4a48 ldr r2, [pc, #288] @ (800f920 ) + 800f7fe: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f800: 089b lsrs r3, r3, #2 + 800f802: 3302 adds r3, #2 + 800f804: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 800f808: 60fb str r3, [r7, #12] CLEAR_BIT(temp, (0x0Fu) << (4u * (position & 0x03u))); - 800f7ee: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f7f0: f003 0303 and.w r3, r3, #3 - 800f7f4: 009b lsls r3, r3, #2 - 800f7f6: 220f movs r2, #15 - 800f7f8: fa02 f303 lsl.w r3, r2, r3 - 800f7fc: 43db mvns r3, r3 - 800f7fe: 68fa ldr r2, [r7, #12] - 800f800: 4013 ands r3, r2 - 800f802: 60fb str r3, [r7, #12] + 800f80a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f80c: f003 0303 and.w r3, r3, #3 + 800f810: 009b lsls r3, r3, #2 + 800f812: 220f movs r2, #15 + 800f814: fa02 f303 lsl.w r3, r2, r3 + 800f818: 43db mvns r3, r3 + 800f81a: 68fa ldr r2, [r7, #12] + 800f81c: 4013 ands r3, r2 + 800f81e: 60fb str r3, [r7, #12] SET_BIT(temp, (GPIO_GET_INDEX(GPIOx)) << (4u * (position & 0x03u))); - 800f804: 687b ldr r3, [r7, #4] - 800f806: 4a40 ldr r2, [pc, #256] @ (800f908 ) - 800f808: 4293 cmp r3, r2 - 800f80a: d013 beq.n 800f834 - 800f80c: 687b ldr r3, [r7, #4] - 800f80e: 4a3f ldr r2, [pc, #252] @ (800f90c ) - 800f810: 4293 cmp r3, r2 - 800f812: d00d beq.n 800f830 - 800f814: 687b ldr r3, [r7, #4] - 800f816: 4a3e ldr r2, [pc, #248] @ (800f910 ) - 800f818: 4293 cmp r3, r2 - 800f81a: d007 beq.n 800f82c - 800f81c: 687b ldr r3, [r7, #4] - 800f81e: 4a3d ldr r2, [pc, #244] @ (800f914 ) - 800f820: 4293 cmp r3, r2 - 800f822: d101 bne.n 800f828 - 800f824: 2303 movs r3, #3 - 800f826: e006 b.n 800f836 - 800f828: 2304 movs r3, #4 - 800f82a: e004 b.n 800f836 - 800f82c: 2302 movs r3, #2 - 800f82e: e002 b.n 800f836 - 800f830: 2301 movs r3, #1 - 800f832: e000 b.n 800f836 - 800f834: 2300 movs r3, #0 - 800f836: 6a7a ldr r2, [r7, #36] @ 0x24 - 800f838: f002 0203 and.w r2, r2, #3 - 800f83c: 0092 lsls r2, r2, #2 - 800f83e: 4093 lsls r3, r2 - 800f840: 68fa ldr r2, [r7, #12] - 800f842: 4313 orrs r3, r2 - 800f844: 60fb str r3, [r7, #12] + 800f820: 687b ldr r3, [r7, #4] + 800f822: 4a40 ldr r2, [pc, #256] @ (800f924 ) + 800f824: 4293 cmp r3, r2 + 800f826: d013 beq.n 800f850 + 800f828: 687b ldr r3, [r7, #4] + 800f82a: 4a3f ldr r2, [pc, #252] @ (800f928 ) + 800f82c: 4293 cmp r3, r2 + 800f82e: d00d beq.n 800f84c + 800f830: 687b ldr r3, [r7, #4] + 800f832: 4a3e ldr r2, [pc, #248] @ (800f92c ) + 800f834: 4293 cmp r3, r2 + 800f836: d007 beq.n 800f848 + 800f838: 687b ldr r3, [r7, #4] + 800f83a: 4a3d ldr r2, [pc, #244] @ (800f930 ) + 800f83c: 4293 cmp r3, r2 + 800f83e: d101 bne.n 800f844 + 800f840: 2303 movs r3, #3 + 800f842: e006 b.n 800f852 + 800f844: 2304 movs r3, #4 + 800f846: e004 b.n 800f852 + 800f848: 2302 movs r3, #2 + 800f84a: e002 b.n 800f852 + 800f84c: 2301 movs r3, #1 + 800f84e: e000 b.n 800f852 + 800f850: 2300 movs r3, #0 + 800f852: 6a7a ldr r2, [r7, #36] @ 0x24 + 800f854: f002 0203 and.w r2, r2, #3 + 800f858: 0092 lsls r2, r2, #2 + 800f85a: 4093 lsls r3, r2 + 800f85c: 68fa ldr r2, [r7, #12] + 800f85e: 4313 orrs r3, r2 + 800f860: 60fb str r3, [r7, #12] AFIO->EXTICR[position >> 2u] = temp; - 800f846: 492f ldr r1, [pc, #188] @ (800f904 ) - 800f848: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f84a: 089b lsrs r3, r3, #2 - 800f84c: 3302 adds r3, #2 - 800f84e: 68fa ldr r2, [r7, #12] - 800f850: f841 2023 str.w r2, [r1, r3, lsl #2] + 800f862: 492f ldr r1, [pc, #188] @ (800f920 ) + 800f864: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f866: 089b lsrs r3, r3, #2 + 800f868: 3302 adds r3, #2 + 800f86a: 68fa ldr r2, [r7, #12] + 800f86c: f841 2023 str.w r2, [r1, r3, lsl #2] /* Enable or disable the rising trigger */ if ((GPIO_Init->Mode & RISING_EDGE) == RISING_EDGE) - 800f854: 683b ldr r3, [r7, #0] - 800f856: 685b ldr r3, [r3, #4] - 800f858: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 800f85c: 2b00 cmp r3, #0 - 800f85e: d006 beq.n 800f86e + 800f870: 683b ldr r3, [r7, #0] + 800f872: 685b ldr r3, [r3, #4] + 800f874: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 800f878: 2b00 cmp r3, #0 + 800f87a: d006 beq.n 800f88a { SET_BIT(EXTI->RTSR, iocurrent); - 800f860: 4b2d ldr r3, [pc, #180] @ (800f918 ) - 800f862: 689a ldr r2, [r3, #8] - 800f864: 492c ldr r1, [pc, #176] @ (800f918 ) - 800f866: 69bb ldr r3, [r7, #24] - 800f868: 4313 orrs r3, r2 - 800f86a: 608b str r3, [r1, #8] - 800f86c: e006 b.n 800f87c + 800f87c: 4b2d ldr r3, [pc, #180] @ (800f934 ) + 800f87e: 689a ldr r2, [r3, #8] + 800f880: 492c ldr r1, [pc, #176] @ (800f934 ) + 800f882: 69bb ldr r3, [r7, #24] + 800f884: 4313 orrs r3, r2 + 800f886: 608b str r3, [r1, #8] + 800f888: e006 b.n 800f898 } else { CLEAR_BIT(EXTI->RTSR, iocurrent); - 800f86e: 4b2a ldr r3, [pc, #168] @ (800f918 ) - 800f870: 689a ldr r2, [r3, #8] - 800f872: 69bb ldr r3, [r7, #24] - 800f874: 43db mvns r3, r3 - 800f876: 4928 ldr r1, [pc, #160] @ (800f918 ) - 800f878: 4013 ands r3, r2 - 800f87a: 608b str r3, [r1, #8] + 800f88a: 4b2a ldr r3, [pc, #168] @ (800f934 ) + 800f88c: 689a ldr r2, [r3, #8] + 800f88e: 69bb ldr r3, [r7, #24] + 800f890: 43db mvns r3, r3 + 800f892: 4928 ldr r1, [pc, #160] @ (800f934 ) + 800f894: 4013 ands r3, r2 + 800f896: 608b str r3, [r1, #8] } /* Enable or disable the falling trigger */ if ((GPIO_Init->Mode & FALLING_EDGE) == FALLING_EDGE) - 800f87c: 683b ldr r3, [r7, #0] - 800f87e: 685b ldr r3, [r3, #4] - 800f880: f403 1300 and.w r3, r3, #2097152 @ 0x200000 - 800f884: 2b00 cmp r3, #0 - 800f886: d006 beq.n 800f896 + 800f898: 683b ldr r3, [r7, #0] + 800f89a: 685b ldr r3, [r3, #4] + 800f89c: f403 1300 and.w r3, r3, #2097152 @ 0x200000 + 800f8a0: 2b00 cmp r3, #0 + 800f8a2: d006 beq.n 800f8b2 { SET_BIT(EXTI->FTSR, iocurrent); - 800f888: 4b23 ldr r3, [pc, #140] @ (800f918 ) - 800f88a: 68da ldr r2, [r3, #12] - 800f88c: 4922 ldr r1, [pc, #136] @ (800f918 ) - 800f88e: 69bb ldr r3, [r7, #24] - 800f890: 4313 orrs r3, r2 - 800f892: 60cb str r3, [r1, #12] - 800f894: e006 b.n 800f8a4 + 800f8a4: 4b23 ldr r3, [pc, #140] @ (800f934 ) + 800f8a6: 68da ldr r2, [r3, #12] + 800f8a8: 4922 ldr r1, [pc, #136] @ (800f934 ) + 800f8aa: 69bb ldr r3, [r7, #24] + 800f8ac: 4313 orrs r3, r2 + 800f8ae: 60cb str r3, [r1, #12] + 800f8b0: e006 b.n 800f8c0 } else { CLEAR_BIT(EXTI->FTSR, iocurrent); - 800f896: 4b20 ldr r3, [pc, #128] @ (800f918 ) - 800f898: 68da ldr r2, [r3, #12] - 800f89a: 69bb ldr r3, [r7, #24] - 800f89c: 43db mvns r3, r3 - 800f89e: 491e ldr r1, [pc, #120] @ (800f918 ) - 800f8a0: 4013 ands r3, r2 - 800f8a2: 60cb str r3, [r1, #12] + 800f8b2: 4b20 ldr r3, [pc, #128] @ (800f934 ) + 800f8b4: 68da ldr r2, [r3, #12] + 800f8b6: 69bb ldr r3, [r7, #24] + 800f8b8: 43db mvns r3, r3 + 800f8ba: 491e ldr r1, [pc, #120] @ (800f934 ) + 800f8bc: 4013 ands r3, r2 + 800f8be: 60cb str r3, [r1, #12] } /* Configure the event mask */ if ((GPIO_Init->Mode & GPIO_MODE_EVT) == GPIO_MODE_EVT) - 800f8a4: 683b ldr r3, [r7, #0] - 800f8a6: 685b ldr r3, [r3, #4] - 800f8a8: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800f8ac: 2b00 cmp r3, #0 - 800f8ae: d006 beq.n 800f8be + 800f8c0: 683b ldr r3, [r7, #0] + 800f8c2: 685b ldr r3, [r3, #4] + 800f8c4: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800f8c8: 2b00 cmp r3, #0 + 800f8ca: d006 beq.n 800f8da { SET_BIT(EXTI->EMR, iocurrent); - 800f8b0: 4b19 ldr r3, [pc, #100] @ (800f918 ) - 800f8b2: 685a ldr r2, [r3, #4] - 800f8b4: 4918 ldr r1, [pc, #96] @ (800f918 ) - 800f8b6: 69bb ldr r3, [r7, #24] - 800f8b8: 4313 orrs r3, r2 - 800f8ba: 604b str r3, [r1, #4] - 800f8bc: e006 b.n 800f8cc + 800f8cc: 4b19 ldr r3, [pc, #100] @ (800f934 ) + 800f8ce: 685a ldr r2, [r3, #4] + 800f8d0: 4918 ldr r1, [pc, #96] @ (800f934 ) + 800f8d2: 69bb ldr r3, [r7, #24] + 800f8d4: 4313 orrs r3, r2 + 800f8d6: 604b str r3, [r1, #4] + 800f8d8: e006 b.n 800f8e8 } else { CLEAR_BIT(EXTI->EMR, iocurrent); - 800f8be: 4b16 ldr r3, [pc, #88] @ (800f918 ) - 800f8c0: 685a ldr r2, [r3, #4] - 800f8c2: 69bb ldr r3, [r7, #24] - 800f8c4: 43db mvns r3, r3 - 800f8c6: 4914 ldr r1, [pc, #80] @ (800f918 ) - 800f8c8: 4013 ands r3, r2 - 800f8ca: 604b str r3, [r1, #4] + 800f8da: 4b16 ldr r3, [pc, #88] @ (800f934 ) + 800f8dc: 685a ldr r2, [r3, #4] + 800f8de: 69bb ldr r3, [r7, #24] + 800f8e0: 43db mvns r3, r3 + 800f8e2: 4914 ldr r1, [pc, #80] @ (800f934 ) + 800f8e4: 4013 ands r3, r2 + 800f8e6: 604b str r3, [r1, #4] } /* Configure the interrupt mask */ if ((GPIO_Init->Mode & GPIO_MODE_IT) == GPIO_MODE_IT) - 800f8cc: 683b ldr r3, [r7, #0] - 800f8ce: 685b ldr r3, [r3, #4] - 800f8d0: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800f8d4: 2b00 cmp r3, #0 - 800f8d6: d021 beq.n 800f91c + 800f8e8: 683b ldr r3, [r7, #0] + 800f8ea: 685b ldr r3, [r3, #4] + 800f8ec: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800f8f0: 2b00 cmp r3, #0 + 800f8f2: d021 beq.n 800f938 { SET_BIT(EXTI->IMR, iocurrent); - 800f8d8: 4b0f ldr r3, [pc, #60] @ (800f918 ) - 800f8da: 681a ldr r2, [r3, #0] - 800f8dc: 490e ldr r1, [pc, #56] @ (800f918 ) - 800f8de: 69bb ldr r3, [r7, #24] - 800f8e0: 4313 orrs r3, r2 - 800f8e2: 600b str r3, [r1, #0] - 800f8e4: e021 b.n 800f92a - 800f8e6: bf00 nop - 800f8e8: 10320000 .word 0x10320000 - 800f8ec: 10310000 .word 0x10310000 - 800f8f0: 10220000 .word 0x10220000 - 800f8f4: 10210000 .word 0x10210000 - 800f8f8: 10120000 .word 0x10120000 - 800f8fc: 10110000 .word 0x10110000 - 800f900: 40021000 .word 0x40021000 - 800f904: 40010000 .word 0x40010000 - 800f908: 40010800 .word 0x40010800 - 800f90c: 40010c00 .word 0x40010c00 - 800f910: 40011000 .word 0x40011000 - 800f914: 40011400 .word 0x40011400 - 800f918: 40010400 .word 0x40010400 + 800f8f4: 4b0f ldr r3, [pc, #60] @ (800f934 ) + 800f8f6: 681a ldr r2, [r3, #0] + 800f8f8: 490e ldr r1, [pc, #56] @ (800f934 ) + 800f8fa: 69bb ldr r3, [r7, #24] + 800f8fc: 4313 orrs r3, r2 + 800f8fe: 600b str r3, [r1, #0] + 800f900: e021 b.n 800f946 + 800f902: bf00 nop + 800f904: 10320000 .word 0x10320000 + 800f908: 10310000 .word 0x10310000 + 800f90c: 10220000 .word 0x10220000 + 800f910: 10210000 .word 0x10210000 + 800f914: 10120000 .word 0x10120000 + 800f918: 10110000 .word 0x10110000 + 800f91c: 40021000 .word 0x40021000 + 800f920: 40010000 .word 0x40010000 + 800f924: 40010800 .word 0x40010800 + 800f928: 40010c00 .word 0x40010c00 + 800f92c: 40011000 .word 0x40011000 + 800f930: 40011400 .word 0x40011400 + 800f934: 40010400 .word 0x40010400 } else { CLEAR_BIT(EXTI->IMR, iocurrent); - 800f91c: 4b0b ldr r3, [pc, #44] @ (800f94c ) - 800f91e: 681a ldr r2, [r3, #0] - 800f920: 69bb ldr r3, [r7, #24] - 800f922: 43db mvns r3, r3 - 800f924: 4909 ldr r1, [pc, #36] @ (800f94c ) - 800f926: 4013 ands r3, r2 - 800f928: 600b str r3, [r1, #0] + 800f938: 4b0b ldr r3, [pc, #44] @ (800f968 ) + 800f93a: 681a ldr r2, [r3, #0] + 800f93c: 69bb ldr r3, [r7, #24] + 800f93e: 43db mvns r3, r3 + 800f940: 4909 ldr r1, [pc, #36] @ (800f968 ) + 800f942: 4013 ands r3, r2 + 800f944: 600b str r3, [r1, #0] } } } position++; - 800f92a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f92c: 3301 adds r3, #1 - 800f92e: 627b str r3, [r7, #36] @ 0x24 + 800f946: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f948: 3301 adds r3, #1 + 800f94a: 627b str r3, [r7, #36] @ 0x24 while (((GPIO_Init->Pin) >> position) != 0x00u) - 800f930: 683b ldr r3, [r7, #0] - 800f932: 681a ldr r2, [r3, #0] - 800f934: 6a7b ldr r3, [r7, #36] @ 0x24 - 800f936: fa22 f303 lsr.w r3, r2, r3 - 800f93a: 2b00 cmp r3, #0 - 800f93c: f47f ae8e bne.w 800f65c + 800f94c: 683b ldr r3, [r7, #0] + 800f94e: 681a ldr r2, [r3, #0] + 800f950: 6a7b ldr r3, [r7, #36] @ 0x24 + 800f952: fa22 f303 lsr.w r3, r2, r3 + 800f956: 2b00 cmp r3, #0 + 800f958: f47f ae8e bne.w 800f678 } } - 800f940: bf00 nop - 800f942: bf00 nop - 800f944: 372c adds r7, #44 @ 0x2c - 800f946: 46bd mov sp, r7 - 800f948: bc80 pop {r7} - 800f94a: 4770 bx lr - 800f94c: 40010400 .word 0x40010400 + 800f95c: bf00 nop + 800f95e: bf00 nop + 800f960: 372c adds r7, #44 @ 0x2c + 800f962: 46bd mov sp, r7 + 800f964: bc80 pop {r7} + 800f966: 4770 bx lr + 800f968: 40010400 .word 0x40010400 -0800f950 : +0800f96c : * @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) { - 800f950: b480 push {r7} - 800f952: b085 sub sp, #20 - 800f954: af00 add r7, sp, #0 - 800f956: 6078 str r0, [r7, #4] - 800f958: 460b mov r3, r1 - 800f95a: 807b strh r3, [r7, #2] + 800f96c: b480 push {r7} + 800f96e: b085 sub sp, #20 + 800f970: af00 add r7, sp, #0 + 800f972: 6078 str r0, [r7, #4] + 800f974: 460b mov r3, r1 + 800f976: 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) - 800f95c: 687b ldr r3, [r7, #4] - 800f95e: 689a ldr r2, [r3, #8] - 800f960: 887b ldrh r3, [r7, #2] - 800f962: 4013 ands r3, r2 - 800f964: 2b00 cmp r3, #0 - 800f966: d002 beq.n 800f96e + 800f978: 687b ldr r3, [r7, #4] + 800f97a: 689a ldr r2, [r3, #8] + 800f97c: 887b ldrh r3, [r7, #2] + 800f97e: 4013 ands r3, r2 + 800f980: 2b00 cmp r3, #0 + 800f982: d002 beq.n 800f98a { bitstatus = GPIO_PIN_SET; - 800f968: 2301 movs r3, #1 - 800f96a: 73fb strb r3, [r7, #15] - 800f96c: e001 b.n 800f972 + 800f984: 2301 movs r3, #1 + 800f986: 73fb strb r3, [r7, #15] + 800f988: e001 b.n 800f98e } else { bitstatus = GPIO_PIN_RESET; - 800f96e: 2300 movs r3, #0 - 800f970: 73fb strb r3, [r7, #15] + 800f98a: 2300 movs r3, #0 + 800f98c: 73fb strb r3, [r7, #15] } return bitstatus; - 800f972: 7bfb ldrb r3, [r7, #15] + 800f98e: 7bfb ldrb r3, [r7, #15] } - 800f974: 4618 mov r0, r3 - 800f976: 3714 adds r7, #20 - 800f978: 46bd mov sp, r7 - 800f97a: bc80 pop {r7} - 800f97c: 4770 bx lr + 800f990: 4618 mov r0, r3 + 800f992: 3714 adds r7, #20 + 800f994: 46bd mov sp, r7 + 800f996: bc80 pop {r7} + 800f998: 4770 bx lr -0800f97e : +0800f99a : * @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) { - 800f97e: b480 push {r7} - 800f980: b083 sub sp, #12 - 800f982: af00 add r7, sp, #0 - 800f984: 6078 str r0, [r7, #4] - 800f986: 460b mov r3, r1 - 800f988: 807b strh r3, [r7, #2] - 800f98a: 4613 mov r3, r2 - 800f98c: 707b strb r3, [r7, #1] + 800f99a: b480 push {r7} + 800f99c: b083 sub sp, #12 + 800f99e: af00 add r7, sp, #0 + 800f9a0: 6078 str r0, [r7, #4] + 800f9a2: 460b mov r3, r1 + 800f9a4: 807b strh r3, [r7, #2] + 800f9a6: 4613 mov r3, r2 + 800f9a8: 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) - 800f98e: 787b ldrb r3, [r7, #1] - 800f990: 2b00 cmp r3, #0 - 800f992: d003 beq.n 800f99c + 800f9aa: 787b ldrb r3, [r7, #1] + 800f9ac: 2b00 cmp r3, #0 + 800f9ae: d003 beq.n 800f9b8 { GPIOx->BSRR = GPIO_Pin; - 800f994: 887a ldrh r2, [r7, #2] - 800f996: 687b ldr r3, [r7, #4] - 800f998: 611a str r2, [r3, #16] + 800f9b0: 887a ldrh r2, [r7, #2] + 800f9b2: 687b ldr r3, [r7, #4] + 800f9b4: 611a str r2, [r3, #16] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; } } - 800f99a: e003 b.n 800f9a4 + 800f9b6: e003 b.n 800f9c0 GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; - 800f99c: 887b ldrh r3, [r7, #2] - 800f99e: 041a lsls r2, r3, #16 - 800f9a0: 687b ldr r3, [r7, #4] - 800f9a2: 611a str r2, [r3, #16] + 800f9b8: 887b ldrh r3, [r7, #2] + 800f9ba: 041a lsls r2, r3, #16 + 800f9bc: 687b ldr r3, [r7, #4] + 800f9be: 611a str r2, [r3, #16] } - 800f9a4: bf00 nop - 800f9a6: 370c adds r7, #12 - 800f9a8: 46bd mov sp, r7 - 800f9aa: bc80 pop {r7} - 800f9ac: 4770 bx lr + 800f9c0: bf00 nop + 800f9c2: 370c adds r7, #12 + 800f9c4: 46bd mov sp, r7 + 800f9c6: bc80 pop {r7} + 800f9c8: 4770 bx lr ... -0800f9b0 : +0800f9cc : * @note If the HSE divided by 128 is used as the RTC clock, the * Backup Domain Access should be kept enabled. * @retval None */ void HAL_PWR_EnableBkUpAccess(void) { - 800f9b0: b480 push {r7} - 800f9b2: af00 add r7, sp, #0 + 800f9cc: b480 push {r7} + 800f9ce: af00 add r7, sp, #0 /* Enable access to RTC and backup registers */ *(__IO uint32_t *) CR_DBP_BB = (uint32_t)ENABLE; - 800f9b4: 4b03 ldr r3, [pc, #12] @ (800f9c4 ) - 800f9b6: 2201 movs r2, #1 - 800f9b8: 601a str r2, [r3, #0] + 800f9d0: 4b03 ldr r3, [pc, #12] @ (800f9e0 ) + 800f9d2: 2201 movs r2, #1 + 800f9d4: 601a str r2, [r3, #0] } - 800f9ba: bf00 nop - 800f9bc: 46bd mov sp, r7 - 800f9be: bc80 pop {r7} - 800f9c0: 4770 bx lr - 800f9c2: bf00 nop - 800f9c4: 420e0020 .word 0x420e0020 + 800f9d6: bf00 nop + 800f9d8: 46bd mov sp, r7 + 800f9da: bc80 pop {r7} + 800f9dc: 4770 bx lr + 800f9de: bf00 nop + 800f9e0: 420e0020 .word 0x420e0020 -0800f9c8 : +0800f9e4 : * - Peripheral clocks * - LSI, LSE and RTC clocks * @retval HAL_StatusTypeDef */ HAL_StatusTypeDef HAL_RCC_DeInit(void) { - 800f9c8: b580 push {r7, lr} - 800f9ca: b082 sub sp, #8 - 800f9cc: af00 add r7, sp, #0 + 800f9e4: b580 push {r7, lr} + 800f9e6: b082 sub sp, #8 + 800f9e8: af00 add r7, sp, #0 uint32_t tickstart; /* Get Start Tick */ tickstart = HAL_GetTick(); - 800f9ce: f7fd ffc5 bl 800d95c - 800f9d2: 6078 str r0, [r7, #4] + 800f9ea: f7fd ffc5 bl 800d978 + 800f9ee: 6078 str r0, [r7, #4] /* Set HSION bit */ SET_BIT(RCC->CR, RCC_CR_HSION); - 800f9d4: 4b60 ldr r3, [pc, #384] @ (800fb58 ) - 800f9d6: 681b ldr r3, [r3, #0] - 800f9d8: 4a5f ldr r2, [pc, #380] @ (800fb58 ) - 800f9da: f043 0301 orr.w r3, r3, #1 - 800f9de: 6013 str r3, [r2, #0] + 800f9f0: 4b60 ldr r3, [pc, #384] @ (800fb74 ) + 800f9f2: 681b ldr r3, [r3, #0] + 800f9f4: 4a5f ldr r2, [pc, #380] @ (800fb74 ) + 800f9f6: f043 0301 orr.w r3, r3, #1 + 800f9fa: 6013 str r3, [r2, #0] /* Wait till HSI is ready */ while (READ_BIT(RCC->CR, RCC_CR_HSIRDY) == RESET) - 800f9e0: e008 b.n 800f9f4 + 800f9fc: e008 b.n 800fa10 { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 800f9e2: f7fd ffbb bl 800d95c - 800f9e6: 4602 mov r2, r0 - 800f9e8: 687b ldr r3, [r7, #4] - 800f9ea: 1ad3 subs r3, r2, r3 - 800f9ec: 2b02 cmp r3, #2 - 800f9ee: d901 bls.n 800f9f4 + 800f9fe: f7fd ffbb bl 800d978 + 800fa02: 4602 mov r2, r0 + 800fa04: 687b ldr r3, [r7, #4] + 800fa06: 1ad3 subs r3, r2, r3 + 800fa08: 2b02 cmp r3, #2 + 800fa0a: d901 bls.n 800fa10 { return HAL_TIMEOUT; - 800f9f0: 2303 movs r3, #3 - 800f9f2: e0ac b.n 800fb4e + 800fa0c: 2303 movs r3, #3 + 800fa0e: e0ac b.n 800fb6a while (READ_BIT(RCC->CR, RCC_CR_HSIRDY) == RESET) - 800f9f4: 4b58 ldr r3, [pc, #352] @ (800fb58 ) - 800f9f6: 681b ldr r3, [r3, #0] - 800f9f8: f003 0302 and.w r3, r3, #2 - 800f9fc: 2b00 cmp r3, #0 - 800f9fe: d0f0 beq.n 800f9e2 + 800fa10: 4b58 ldr r3, [pc, #352] @ (800fb74 ) + 800fa12: 681b ldr r3, [r3, #0] + 800fa14: f003 0302 and.w r3, r3, #2 + 800fa18: 2b00 cmp r3, #0 + 800fa1a: d0f0 beq.n 800f9fe } } /* Set HSITRIM bits to the reset value */ MODIFY_REG(RCC->CR, RCC_CR_HSITRIM, (0x10U << RCC_CR_HSITRIM_Pos)); - 800fa00: 4b55 ldr r3, [pc, #340] @ (800fb58 ) - 800fa02: 681b ldr r3, [r3, #0] - 800fa04: f023 03f8 bic.w r3, r3, #248 @ 0xf8 - 800fa08: 4a53 ldr r2, [pc, #332] @ (800fb58 ) - 800fa0a: f043 0380 orr.w r3, r3, #128 @ 0x80 - 800fa0e: 6013 str r3, [r2, #0] + 800fa1c: 4b55 ldr r3, [pc, #340] @ (800fb74 ) + 800fa1e: 681b ldr r3, [r3, #0] + 800fa20: f023 03f8 bic.w r3, r3, #248 @ 0xf8 + 800fa24: 4a53 ldr r2, [pc, #332] @ (800fb74 ) + 800fa26: f043 0380 orr.w r3, r3, #128 @ 0x80 + 800fa2a: 6013 str r3, [r2, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fa10: f7fd ffa4 bl 800d95c - 800fa14: 6078 str r0, [r7, #4] + 800fa2c: f7fd ffa4 bl 800d978 + 800fa30: 6078 str r0, [r7, #4] /* Reset CFGR register */ CLEAR_REG(RCC->CFGR); - 800fa16: 4b50 ldr r3, [pc, #320] @ (800fb58 ) - 800fa18: 2200 movs r2, #0 - 800fa1a: 605a str r2, [r3, #4] + 800fa32: 4b50 ldr r3, [pc, #320] @ (800fb74 ) + 800fa34: 2200 movs r2, #0 + 800fa36: 605a str r2, [r3, #4] /* Wait till clock switch is ready */ while (READ_BIT(RCC->CFGR, RCC_CFGR_SWS) != RESET) - 800fa1c: e00a b.n 800fa34 + 800fa38: e00a b.n 800fa50 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 800fa1e: f7fd ff9d bl 800d95c - 800fa22: 4602 mov r2, r0 - 800fa24: 687b ldr r3, [r7, #4] - 800fa26: 1ad3 subs r3, r2, r3 - 800fa28: f241 3288 movw r2, #5000 @ 0x1388 - 800fa2c: 4293 cmp r3, r2 - 800fa2e: d901 bls.n 800fa34 + 800fa3a: f7fd ff9d bl 800d978 + 800fa3e: 4602 mov r2, r0 + 800fa40: 687b ldr r3, [r7, #4] + 800fa42: 1ad3 subs r3, r2, r3 + 800fa44: f241 3288 movw r2, #5000 @ 0x1388 + 800fa48: 4293 cmp r3, r2 + 800fa4a: d901 bls.n 800fa50 { return HAL_TIMEOUT; - 800fa30: 2303 movs r3, #3 - 800fa32: e08c b.n 800fb4e + 800fa4c: 2303 movs r3, #3 + 800fa4e: e08c b.n 800fb6a while (READ_BIT(RCC->CFGR, RCC_CFGR_SWS) != RESET) - 800fa34: 4b48 ldr r3, [pc, #288] @ (800fb58 ) - 800fa36: 685b ldr r3, [r3, #4] - 800fa38: f003 030c and.w r3, r3, #12 - 800fa3c: 2b00 cmp r3, #0 - 800fa3e: d1ee bne.n 800fa1e + 800fa50: 4b48 ldr r3, [pc, #288] @ (800fb74 ) + 800fa52: 685b ldr r3, [r3, #4] + 800fa54: f003 030c and.w r3, r3, #12 + 800fa58: 2b00 cmp r3, #0 + 800fa5a: d1ee bne.n 800fa3a } } /* Update the SystemCoreClock global variable */ SystemCoreClock = HSI_VALUE; - 800fa40: 4b46 ldr r3, [pc, #280] @ (800fb5c ) - 800fa42: 4a47 ldr r2, [pc, #284] @ (800fb60 ) - 800fa44: 601a str r2, [r3, #0] + 800fa5c: 4b46 ldr r3, [pc, #280] @ (800fb78 ) + 800fa5e: 4a47 ldr r2, [pc, #284] @ (800fb7c ) + 800fa60: 601a str r2, [r3, #0] /* Adapt Systick interrupt period */ if (HAL_InitTick(uwTickPrio) != HAL_OK) - 800fa46: 4b47 ldr r3, [pc, #284] @ (800fb64 ) - 800fa48: 681b ldr r3, [r3, #0] - 800fa4a: 4618 mov r0, r3 - 800fa4c: f7fd ff44 bl 800d8d8 - 800fa50: 4603 mov r3, r0 - 800fa52: 2b00 cmp r3, #0 - 800fa54: d001 beq.n 800fa5a + 800fa62: 4b47 ldr r3, [pc, #284] @ (800fb80 ) + 800fa64: 681b ldr r3, [r3, #0] + 800fa66: 4618 mov r0, r3 + 800fa68: f7fd ff44 bl 800d8f4 + 800fa6c: 4603 mov r3, r0 + 800fa6e: 2b00 cmp r3, #0 + 800fa70: d001 beq.n 800fa76 { return HAL_ERROR; - 800fa56: 2301 movs r3, #1 - 800fa58: e079 b.n 800fb4e + 800fa72: 2301 movs r3, #1 + 800fa74: e079 b.n 800fb6a } /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fa5a: f7fd ff7f bl 800d95c - 800fa5e: 6078 str r0, [r7, #4] + 800fa76: f7fd ff7f bl 800d978 + 800fa7a: 6078 str r0, [r7, #4] /* Second step is to clear PLLON bit */ CLEAR_BIT(RCC->CR, RCC_CR_PLLON); - 800fa60: 4b3d ldr r3, [pc, #244] @ (800fb58 ) - 800fa62: 681b ldr r3, [r3, #0] - 800fa64: 4a3c ldr r2, [pc, #240] @ (800fb58 ) - 800fa66: f023 7380 bic.w r3, r3, #16777216 @ 0x1000000 - 800fa6a: 6013 str r3, [r2, #0] + 800fa7c: 4b3d ldr r3, [pc, #244] @ (800fb74 ) + 800fa7e: 681b ldr r3, [r3, #0] + 800fa80: 4a3c ldr r2, [pc, #240] @ (800fb74 ) + 800fa82: f023 7380 bic.w r3, r3, #16777216 @ 0x1000000 + 800fa86: 6013 str r3, [r2, #0] /* Wait till PLL is disabled */ while (READ_BIT(RCC->CR, RCC_CR_PLLRDY) != RESET) - 800fa6c: e008 b.n 800fa80 + 800fa88: e008 b.n 800fa9c { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800fa6e: f7fd ff75 bl 800d95c - 800fa72: 4602 mov r2, r0 - 800fa74: 687b ldr r3, [r7, #4] - 800fa76: 1ad3 subs r3, r2, r3 - 800fa78: 2b02 cmp r3, #2 - 800fa7a: d901 bls.n 800fa80 + 800fa8a: f7fd ff75 bl 800d978 + 800fa8e: 4602 mov r2, r0 + 800fa90: 687b ldr r3, [r7, #4] + 800fa92: 1ad3 subs r3, r2, r3 + 800fa94: 2b02 cmp r3, #2 + 800fa96: d901 bls.n 800fa9c { return HAL_TIMEOUT; - 800fa7c: 2303 movs r3, #3 - 800fa7e: e066 b.n 800fb4e + 800fa98: 2303 movs r3, #3 + 800fa9a: e066 b.n 800fb6a while (READ_BIT(RCC->CR, RCC_CR_PLLRDY) != RESET) - 800fa80: 4b35 ldr r3, [pc, #212] @ (800fb58 ) - 800fa82: 681b ldr r3, [r3, #0] - 800fa84: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 800fa88: 2b00 cmp r3, #0 - 800fa8a: d1f0 bne.n 800fa6e + 800fa9c: 4b35 ldr r3, [pc, #212] @ (800fb74 ) + 800fa9e: 681b ldr r3, [r3, #0] + 800faa0: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 800faa4: 2b00 cmp r3, #0 + 800faa6: d1f0 bne.n 800fa8a } } /* Ensure to reset PLLSRC and PLLMUL bits */ CLEAR_REG(RCC->CFGR); - 800fa8c: 4b32 ldr r3, [pc, #200] @ (800fb58 ) - 800fa8e: 2200 movs r2, #0 - 800fa90: 605a str r2, [r3, #4] + 800faa8: 4b32 ldr r3, [pc, #200] @ (800fb74 ) + 800faaa: 2200 movs r2, #0 + 800faac: 605a str r2, [r3, #4] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fa92: f7fd ff63 bl 800d95c - 800fa96: 6078 str r0, [r7, #4] + 800faae: f7fd ff63 bl 800d978 + 800fab2: 6078 str r0, [r7, #4] /* Reset HSEON & CSSON bits */ CLEAR_BIT(RCC->CR, RCC_CR_HSEON | RCC_CR_CSSON); - 800fa98: 4b2f ldr r3, [pc, #188] @ (800fb58 ) - 800fa9a: 681b ldr r3, [r3, #0] - 800fa9c: 4a2e ldr r2, [pc, #184] @ (800fb58 ) - 800fa9e: f423 2310 bic.w r3, r3, #589824 @ 0x90000 - 800faa2: 6013 str r3, [r2, #0] + 800fab4: 4b2f ldr r3, [pc, #188] @ (800fb74 ) + 800fab6: 681b ldr r3, [r3, #0] + 800fab8: 4a2e ldr r2, [pc, #184] @ (800fb74 ) + 800faba: f423 2310 bic.w r3, r3, #589824 @ 0x90000 + 800fabe: 6013 str r3, [r2, #0] /* Wait till HSE is disabled */ while (READ_BIT(RCC->CR, RCC_CR_HSERDY) != RESET) - 800faa4: e008 b.n 800fab8 + 800fac0: e008 b.n 800fad4 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 800faa6: f7fd ff59 bl 800d95c - 800faaa: 4602 mov r2, r0 - 800faac: 687b ldr r3, [r7, #4] - 800faae: 1ad3 subs r3, r2, r3 - 800fab0: 2b64 cmp r3, #100 @ 0x64 - 800fab2: d901 bls.n 800fab8 + 800fac2: f7fd ff59 bl 800d978 + 800fac6: 4602 mov r2, r0 + 800fac8: 687b ldr r3, [r7, #4] + 800faca: 1ad3 subs r3, r2, r3 + 800facc: 2b64 cmp r3, #100 @ 0x64 + 800face: d901 bls.n 800fad4 { return HAL_TIMEOUT; - 800fab4: 2303 movs r3, #3 - 800fab6: e04a b.n 800fb4e + 800fad0: 2303 movs r3, #3 + 800fad2: e04a b.n 800fb6a while (READ_BIT(RCC->CR, RCC_CR_HSERDY) != RESET) - 800fab8: 4b27 ldr r3, [pc, #156] @ (800fb58 ) - 800faba: 681b ldr r3, [r3, #0] - 800fabc: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800fac0: 2b00 cmp r3, #0 - 800fac2: d1f0 bne.n 800faa6 + 800fad4: 4b27 ldr r3, [pc, #156] @ (800fb74 ) + 800fad6: 681b ldr r3, [r3, #0] + 800fad8: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800fadc: 2b00 cmp r3, #0 + 800fade: d1f0 bne.n 800fac2 } } /* Reset HSEBYP bit */ CLEAR_BIT(RCC->CR, RCC_CR_HSEBYP); - 800fac4: 4b24 ldr r3, [pc, #144] @ (800fb58 ) - 800fac6: 681b ldr r3, [r3, #0] - 800fac8: 4a23 ldr r2, [pc, #140] @ (800fb58 ) - 800faca: f423 2380 bic.w r3, r3, #262144 @ 0x40000 - 800face: 6013 str r3, [r2, #0] + 800fae0: 4b24 ldr r3, [pc, #144] @ (800fb74 ) + 800fae2: 681b ldr r3, [r3, #0] + 800fae4: 4a23 ldr r2, [pc, #140] @ (800fb74 ) + 800fae6: f423 2380 bic.w r3, r3, #262144 @ 0x40000 + 800faea: 6013 str r3, [r2, #0] #if defined(RCC_PLL2_SUPPORT) /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fad0: f7fd ff44 bl 800d95c - 800fad4: 6078 str r0, [r7, #4] + 800faec: f7fd ff44 bl 800d978 + 800faf0: 6078 str r0, [r7, #4] /* Clear PLL2ON bit */ CLEAR_BIT(RCC->CR, RCC_CR_PLL2ON); - 800fad6: 4b20 ldr r3, [pc, #128] @ (800fb58 ) - 800fad8: 681b ldr r3, [r3, #0] - 800fada: 4a1f ldr r2, [pc, #124] @ (800fb58 ) - 800fadc: f023 6380 bic.w r3, r3, #67108864 @ 0x4000000 - 800fae0: 6013 str r3, [r2, #0] + 800faf2: 4b20 ldr r3, [pc, #128] @ (800fb74 ) + 800faf4: 681b ldr r3, [r3, #0] + 800faf6: 4a1f ldr r2, [pc, #124] @ (800fb74 ) + 800faf8: f023 6380 bic.w r3, r3, #67108864 @ 0x4000000 + 800fafc: 6013 str r3, [r2, #0] /* Wait till PLL2 is disabled */ while (READ_BIT(RCC->CR, RCC_CR_PLL2RDY) != RESET) - 800fae2: e008 b.n 800faf6 + 800fafe: e008 b.n 800fb12 { if ((HAL_GetTick() - tickstart) > PLL2_TIMEOUT_VALUE) - 800fae4: f7fd ff3a bl 800d95c - 800fae8: 4602 mov r2, r0 - 800faea: 687b ldr r3, [r7, #4] - 800faec: 1ad3 subs r3, r2, r3 - 800faee: 2b64 cmp r3, #100 @ 0x64 - 800faf0: d901 bls.n 800faf6 + 800fb00: f7fd ff3a bl 800d978 + 800fb04: 4602 mov r2, r0 + 800fb06: 687b ldr r3, [r7, #4] + 800fb08: 1ad3 subs r3, r2, r3 + 800fb0a: 2b64 cmp r3, #100 @ 0x64 + 800fb0c: d901 bls.n 800fb12 { return HAL_TIMEOUT; - 800faf2: 2303 movs r3, #3 - 800faf4: e02b b.n 800fb4e + 800fb0e: 2303 movs r3, #3 + 800fb10: e02b b.n 800fb6a while (READ_BIT(RCC->CR, RCC_CR_PLL2RDY) != RESET) - 800faf6: 4b18 ldr r3, [pc, #96] @ (800fb58 ) - 800faf8: 681b ldr r3, [r3, #0] - 800fafa: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 800fafe: 2b00 cmp r3, #0 - 800fb00: d1f0 bne.n 800fae4 + 800fb12: 4b18 ldr r3, [pc, #96] @ (800fb74 ) + 800fb14: 681b ldr r3, [r3, #0] + 800fb16: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 800fb1a: 2b00 cmp r3, #0 + 800fb1c: d1f0 bne.n 800fb00 } #endif /* RCC_PLL2_SUPPORT */ #if defined(RCC_PLLI2S_SUPPORT) /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fb02: f7fd ff2b bl 800d95c - 800fb06: 6078 str r0, [r7, #4] + 800fb1e: f7fd ff2b bl 800d978 + 800fb22: 6078 str r0, [r7, #4] /* Clear PLL3ON bit */ CLEAR_BIT(RCC->CR, RCC_CR_PLL3ON); - 800fb08: 4b13 ldr r3, [pc, #76] @ (800fb58 ) - 800fb0a: 681b ldr r3, [r3, #0] - 800fb0c: 4a12 ldr r2, [pc, #72] @ (800fb58 ) - 800fb0e: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 - 800fb12: 6013 str r3, [r2, #0] + 800fb24: 4b13 ldr r3, [pc, #76] @ (800fb74 ) + 800fb26: 681b ldr r3, [r3, #0] + 800fb28: 4a12 ldr r2, [pc, #72] @ (800fb74 ) + 800fb2a: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 + 800fb2e: 6013 str r3, [r2, #0] /* Wait till PLL3 is disabled */ while (READ_BIT(RCC->CR, RCC_CR_PLL3RDY) != RESET) - 800fb14: e008 b.n 800fb28 + 800fb30: e008 b.n 800fb44 { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 800fb16: f7fd ff21 bl 800d95c - 800fb1a: 4602 mov r2, r0 - 800fb1c: 687b ldr r3, [r7, #4] - 800fb1e: 1ad3 subs r3, r2, r3 - 800fb20: 2b64 cmp r3, #100 @ 0x64 - 800fb22: d901 bls.n 800fb28 + 800fb32: f7fd ff21 bl 800d978 + 800fb36: 4602 mov r2, r0 + 800fb38: 687b ldr r3, [r7, #4] + 800fb3a: 1ad3 subs r3, r2, r3 + 800fb3c: 2b64 cmp r3, #100 @ 0x64 + 800fb3e: d901 bls.n 800fb44 { return HAL_TIMEOUT; - 800fb24: 2303 movs r3, #3 - 800fb26: e012 b.n 800fb4e + 800fb40: 2303 movs r3, #3 + 800fb42: e012 b.n 800fb6a while (READ_BIT(RCC->CR, RCC_CR_PLL3RDY) != RESET) - 800fb28: 4b0b ldr r3, [pc, #44] @ (800fb58 ) - 800fb2a: 681b ldr r3, [r3, #0] - 800fb2c: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 800fb30: 2b00 cmp r3, #0 - 800fb32: d1f0 bne.n 800fb16 + 800fb44: 4b0b ldr r3, [pc, #44] @ (800fb74 ) + 800fb46: 681b ldr r3, [r3, #0] + 800fb48: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 800fb4c: 2b00 cmp r3, #0 + 800fb4e: d1f0 bne.n 800fb32 } #endif /* RCC_PLLI2S_SUPPORT */ #if defined(RCC_CFGR2_PREDIV1) /* Reset CFGR2 register */ CLEAR_REG(RCC->CFGR2); - 800fb34: 4b08 ldr r3, [pc, #32] @ (800fb58 ) - 800fb36: 2200 movs r2, #0 - 800fb38: 62da str r2, [r3, #44] @ 0x2c + 800fb50: 4b08 ldr r3, [pc, #32] @ (800fb74 ) + 800fb52: 2200 movs r2, #0 + 800fb54: 62da str r2, [r3, #44] @ 0x2c #endif /* RCC_CFGR2_PREDIV1 */ /* Reset all CSR flags */ SET_BIT(RCC->CSR, RCC_CSR_RMVF); - 800fb3a: 4b07 ldr r3, [pc, #28] @ (800fb58 ) - 800fb3c: 6a5b ldr r3, [r3, #36] @ 0x24 - 800fb3e: 4a06 ldr r2, [pc, #24] @ (800fb58 ) - 800fb40: f043 7380 orr.w r3, r3, #16777216 @ 0x1000000 - 800fb44: 6253 str r3, [r2, #36] @ 0x24 + 800fb56: 4b07 ldr r3, [pc, #28] @ (800fb74 ) + 800fb58: 6a5b ldr r3, [r3, #36] @ 0x24 + 800fb5a: 4a06 ldr r2, [pc, #24] @ (800fb74 ) + 800fb5c: f043 7380 orr.w r3, r3, #16777216 @ 0x1000000 + 800fb60: 6253 str r3, [r2, #36] @ 0x24 /* Disable all interrupts */ CLEAR_REG(RCC->CIR); - 800fb46: 4b04 ldr r3, [pc, #16] @ (800fb58 ) - 800fb48: 2200 movs r2, #0 - 800fb4a: 609a str r2, [r3, #8] + 800fb62: 4b04 ldr r3, [pc, #16] @ (800fb74 ) + 800fb64: 2200 movs r2, #0 + 800fb66: 609a str r2, [r3, #8] return HAL_OK; - 800fb4c: 2300 movs r3, #0 + 800fb68: 2300 movs r3, #0 } - 800fb4e: 4618 mov r0, r3 - 800fb50: 3708 adds r7, #8 - 800fb52: 46bd mov sp, r7 - 800fb54: bd80 pop {r7, pc} - 800fb56: bf00 nop - 800fb58: 40021000 .word 0x40021000 - 800fb5c: 2000006c .word 0x2000006c - 800fb60: 007a1200 .word 0x007a1200 - 800fb64: 20000070 .word 0x20000070 + 800fb6a: 4618 mov r0, r3 + 800fb6c: 3708 adds r7, #8 + 800fb6e: 46bd mov sp, r7 + 800fb70: bd80 pop {r7, pc} + 800fb72: bf00 nop + 800fb74: 40021000 .word 0x40021000 + 800fb78: 2000006c .word 0x2000006c + 800fb7c: 007a1200 .word 0x007a1200 + 800fb80: 20000070 .word 0x20000070 -0800fb68 : +0800fb84 : * supported by this macro. User should request a transition to HSE Off * first and then HSE On or HSE Bypass. * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) { - 800fb68: b580 push {r7, lr} - 800fb6a: b086 sub sp, #24 - 800fb6c: af00 add r7, sp, #0 - 800fb6e: 6078 str r0, [r7, #4] + 800fb84: b580 push {r7, lr} + 800fb86: b086 sub sp, #24 + 800fb88: af00 add r7, sp, #0 + 800fb8a: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 800fb70: 687b ldr r3, [r7, #4] - 800fb72: 2b00 cmp r3, #0 - 800fb74: d101 bne.n 800fb7a + 800fb8c: 687b ldr r3, [r7, #4] + 800fb8e: 2b00 cmp r3, #0 + 800fb90: d101 bne.n 800fb96 { return HAL_ERROR; - 800fb76: 2301 movs r3, #1 - 800fb78: e304 b.n 8010184 + 800fb92: 2301 movs r3, #1 + 800fb94: e304 b.n 80101a0 /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 800fb7a: 687b ldr r3, [r7, #4] - 800fb7c: 681b ldr r3, [r3, #0] - 800fb7e: f003 0301 and.w r3, r3, #1 - 800fb82: 2b00 cmp r3, #0 - 800fb84: f000 8087 beq.w 800fc96 + 800fb96: 687b ldr r3, [r7, #4] + 800fb98: 681b ldr r3, [r3, #0] + 800fb9a: f003 0301 and.w r3, r3, #1 + 800fb9e: 2b00 cmp r3, #0 + 800fba0: f000 8087 beq.w 800fcb2 { /* Check the parameters */ assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); /* When the HSE is used as system clock or clock source for PLL in these cases it is not allowed to be disabled */ if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSE) - 800fb88: 4b92 ldr r3, [pc, #584] @ (800fdd4 ) - 800fb8a: 685b ldr r3, [r3, #4] - 800fb8c: f003 030c and.w r3, r3, #12 - 800fb90: 2b04 cmp r3, #4 - 800fb92: d00c beq.n 800fbae + 800fba4: 4b92 ldr r3, [pc, #584] @ (800fdf0 ) + 800fba6: 685b ldr r3, [r3, #4] + 800fba8: f003 030c and.w r3, r3, #12 + 800fbac: 2b04 cmp r3, #4 + 800fbae: d00c beq.n 800fbca || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE))) - 800fb94: 4b8f ldr r3, [pc, #572] @ (800fdd4 ) - 800fb96: 685b ldr r3, [r3, #4] - 800fb98: f003 030c and.w r3, r3, #12 - 800fb9c: 2b08 cmp r3, #8 - 800fb9e: d112 bne.n 800fbc6 - 800fba0: 4b8c ldr r3, [pc, #560] @ (800fdd4 ) - 800fba2: 685b ldr r3, [r3, #4] - 800fba4: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800fba8: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 800fbac: d10b bne.n 800fbc6 + 800fbb0: 4b8f ldr r3, [pc, #572] @ (800fdf0 ) + 800fbb2: 685b ldr r3, [r3, #4] + 800fbb4: f003 030c and.w r3, r3, #12 + 800fbb8: 2b08 cmp r3, #8 + 800fbba: d112 bne.n 800fbe2 + 800fbbc: 4b8c ldr r3, [pc, #560] @ (800fdf0 ) + 800fbbe: 685b ldr r3, [r3, #4] + 800fbc0: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800fbc4: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 800fbc8: d10b bne.n 800fbe2 { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 800fbae: 4b89 ldr r3, [pc, #548] @ (800fdd4 ) - 800fbb0: 681b ldr r3, [r3, #0] - 800fbb2: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800fbb6: 2b00 cmp r3, #0 - 800fbb8: d06c beq.n 800fc94 - 800fbba: 687b ldr r3, [r7, #4] - 800fbbc: 689b ldr r3, [r3, #8] - 800fbbe: 2b00 cmp r3, #0 - 800fbc0: d168 bne.n 800fc94 + 800fbca: 4b89 ldr r3, [pc, #548] @ (800fdf0 ) + 800fbcc: 681b ldr r3, [r3, #0] + 800fbce: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800fbd2: 2b00 cmp r3, #0 + 800fbd4: d06c beq.n 800fcb0 + 800fbd6: 687b ldr r3, [r7, #4] + 800fbd8: 689b ldr r3, [r3, #8] + 800fbda: 2b00 cmp r3, #0 + 800fbdc: d168 bne.n 800fcb0 { return HAL_ERROR; - 800fbc2: 2301 movs r3, #1 - 800fbc4: e2de b.n 8010184 + 800fbde: 2301 movs r3, #1 + 800fbe0: e2de b.n 80101a0 } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 800fbc6: 687b ldr r3, [r7, #4] - 800fbc8: 689b ldr r3, [r3, #8] - 800fbca: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 800fbce: d106 bne.n 800fbde - 800fbd0: 4b80 ldr r3, [pc, #512] @ (800fdd4 ) - 800fbd2: 681b ldr r3, [r3, #0] - 800fbd4: 4a7f ldr r2, [pc, #508] @ (800fdd4 ) - 800fbd6: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 800fbda: 6013 str r3, [r2, #0] - 800fbdc: e02e b.n 800fc3c - 800fbde: 687b ldr r3, [r7, #4] - 800fbe0: 689b ldr r3, [r3, #8] - 800fbe2: 2b00 cmp r3, #0 - 800fbe4: d10c bne.n 800fc00 - 800fbe6: 4b7b ldr r3, [pc, #492] @ (800fdd4 ) - 800fbe8: 681b ldr r3, [r3, #0] - 800fbea: 4a7a ldr r2, [pc, #488] @ (800fdd4 ) - 800fbec: f423 3380 bic.w r3, r3, #65536 @ 0x10000 - 800fbf0: 6013 str r3, [r2, #0] - 800fbf2: 4b78 ldr r3, [pc, #480] @ (800fdd4 ) - 800fbf4: 681b ldr r3, [r3, #0] - 800fbf6: 4a77 ldr r2, [pc, #476] @ (800fdd4 ) - 800fbf8: f423 2380 bic.w r3, r3, #262144 @ 0x40000 - 800fbfc: 6013 str r3, [r2, #0] - 800fbfe: e01d b.n 800fc3c - 800fc00: 687b ldr r3, [r7, #4] - 800fc02: 689b ldr r3, [r3, #8] - 800fc04: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 - 800fc08: d10c bne.n 800fc24 - 800fc0a: 4b72 ldr r3, [pc, #456] @ (800fdd4 ) - 800fc0c: 681b ldr r3, [r3, #0] - 800fc0e: 4a71 ldr r2, [pc, #452] @ (800fdd4 ) - 800fc10: f443 2380 orr.w r3, r3, #262144 @ 0x40000 - 800fc14: 6013 str r3, [r2, #0] - 800fc16: 4b6f ldr r3, [pc, #444] @ (800fdd4 ) - 800fc18: 681b ldr r3, [r3, #0] - 800fc1a: 4a6e ldr r2, [pc, #440] @ (800fdd4 ) - 800fc1c: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 800fc20: 6013 str r3, [r2, #0] - 800fc22: e00b b.n 800fc3c - 800fc24: 4b6b ldr r3, [pc, #428] @ (800fdd4 ) - 800fc26: 681b ldr r3, [r3, #0] - 800fc28: 4a6a ldr r2, [pc, #424] @ (800fdd4 ) - 800fc2a: f423 3380 bic.w r3, r3, #65536 @ 0x10000 - 800fc2e: 6013 str r3, [r2, #0] - 800fc30: 4b68 ldr r3, [pc, #416] @ (800fdd4 ) - 800fc32: 681b ldr r3, [r3, #0] - 800fc34: 4a67 ldr r2, [pc, #412] @ (800fdd4 ) - 800fc36: f423 2380 bic.w r3, r3, #262144 @ 0x40000 - 800fc3a: 6013 str r3, [r2, #0] + 800fbe2: 687b ldr r3, [r7, #4] + 800fbe4: 689b ldr r3, [r3, #8] + 800fbe6: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 800fbea: d106 bne.n 800fbfa + 800fbec: 4b80 ldr r3, [pc, #512] @ (800fdf0 ) + 800fbee: 681b ldr r3, [r3, #0] + 800fbf0: 4a7f ldr r2, [pc, #508] @ (800fdf0 ) + 800fbf2: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 800fbf6: 6013 str r3, [r2, #0] + 800fbf8: e02e b.n 800fc58 + 800fbfa: 687b ldr r3, [r7, #4] + 800fbfc: 689b ldr r3, [r3, #8] + 800fbfe: 2b00 cmp r3, #0 + 800fc00: d10c bne.n 800fc1c + 800fc02: 4b7b ldr r3, [pc, #492] @ (800fdf0 ) + 800fc04: 681b ldr r3, [r3, #0] + 800fc06: 4a7a ldr r2, [pc, #488] @ (800fdf0 ) + 800fc08: f423 3380 bic.w r3, r3, #65536 @ 0x10000 + 800fc0c: 6013 str r3, [r2, #0] + 800fc0e: 4b78 ldr r3, [pc, #480] @ (800fdf0 ) + 800fc10: 681b ldr r3, [r3, #0] + 800fc12: 4a77 ldr r2, [pc, #476] @ (800fdf0 ) + 800fc14: f423 2380 bic.w r3, r3, #262144 @ 0x40000 + 800fc18: 6013 str r3, [r2, #0] + 800fc1a: e01d b.n 800fc58 + 800fc1c: 687b ldr r3, [r7, #4] + 800fc1e: 689b ldr r3, [r3, #8] + 800fc20: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 + 800fc24: d10c bne.n 800fc40 + 800fc26: 4b72 ldr r3, [pc, #456] @ (800fdf0 ) + 800fc28: 681b ldr r3, [r3, #0] + 800fc2a: 4a71 ldr r2, [pc, #452] @ (800fdf0 ) + 800fc2c: f443 2380 orr.w r3, r3, #262144 @ 0x40000 + 800fc30: 6013 str r3, [r2, #0] + 800fc32: 4b6f ldr r3, [pc, #444] @ (800fdf0 ) + 800fc34: 681b ldr r3, [r3, #0] + 800fc36: 4a6e ldr r2, [pc, #440] @ (800fdf0 ) + 800fc38: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 800fc3c: 6013 str r3, [r2, #0] + 800fc3e: e00b b.n 800fc58 + 800fc40: 4b6b ldr r3, [pc, #428] @ (800fdf0 ) + 800fc42: 681b ldr r3, [r3, #0] + 800fc44: 4a6a ldr r2, [pc, #424] @ (800fdf0 ) + 800fc46: f423 3380 bic.w r3, r3, #65536 @ 0x10000 + 800fc4a: 6013 str r3, [r2, #0] + 800fc4c: 4b68 ldr r3, [pc, #416] @ (800fdf0 ) + 800fc4e: 681b ldr r3, [r3, #0] + 800fc50: 4a67 ldr r2, [pc, #412] @ (800fdf0 ) + 800fc52: f423 2380 bic.w r3, r3, #262144 @ 0x40000 + 800fc56: 6013 str r3, [r2, #0] /* Check the HSE State */ if (RCC_OscInitStruct->HSEState != RCC_HSE_OFF) - 800fc3c: 687b ldr r3, [r7, #4] - 800fc3e: 689b ldr r3, [r3, #8] - 800fc40: 2b00 cmp r3, #0 - 800fc42: d013 beq.n 800fc6c + 800fc58: 687b ldr r3, [r7, #4] + 800fc5a: 689b ldr r3, [r3, #8] + 800fc5c: 2b00 cmp r3, #0 + 800fc5e: d013 beq.n 800fc88 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fc44: f7fd fe8a bl 800d95c - 800fc48: 6138 str r0, [r7, #16] + 800fc60: f7fd fe8a bl 800d978 + 800fc64: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800fc4a: e008 b.n 800fc5e + 800fc66: e008 b.n 800fc7a { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 800fc4c: f7fd fe86 bl 800d95c - 800fc50: 4602 mov r2, r0 - 800fc52: 693b ldr r3, [r7, #16] - 800fc54: 1ad3 subs r3, r2, r3 - 800fc56: 2b64 cmp r3, #100 @ 0x64 - 800fc58: d901 bls.n 800fc5e + 800fc68: f7fd fe86 bl 800d978 + 800fc6c: 4602 mov r2, r0 + 800fc6e: 693b ldr r3, [r7, #16] + 800fc70: 1ad3 subs r3, r2, r3 + 800fc72: 2b64 cmp r3, #100 @ 0x64 + 800fc74: d901 bls.n 800fc7a { return HAL_TIMEOUT; - 800fc5a: 2303 movs r3, #3 - 800fc5c: e292 b.n 8010184 + 800fc76: 2303 movs r3, #3 + 800fc78: e292 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800fc5e: 4b5d ldr r3, [pc, #372] @ (800fdd4 ) - 800fc60: 681b ldr r3, [r3, #0] - 800fc62: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800fc66: 2b00 cmp r3, #0 - 800fc68: d0f0 beq.n 800fc4c - 800fc6a: e014 b.n 800fc96 + 800fc7a: 4b5d ldr r3, [pc, #372] @ (800fdf0 ) + 800fc7c: 681b ldr r3, [r3, #0] + 800fc7e: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800fc82: 2b00 cmp r3, #0 + 800fc84: d0f0 beq.n 800fc68 + 800fc86: e014 b.n 800fcb2 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fc6c: f7fd fe76 bl 800d95c - 800fc70: 6138 str r0, [r7, #16] + 800fc88: f7fd fe76 bl 800d978 + 800fc8c: 6138 str r0, [r7, #16] /* Wait till HSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 800fc72: e008 b.n 800fc86 + 800fc8e: e008 b.n 800fca2 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 800fc74: f7fd fe72 bl 800d95c - 800fc78: 4602 mov r2, r0 - 800fc7a: 693b ldr r3, [r7, #16] - 800fc7c: 1ad3 subs r3, r2, r3 - 800fc7e: 2b64 cmp r3, #100 @ 0x64 - 800fc80: d901 bls.n 800fc86 + 800fc90: f7fd fe72 bl 800d978 + 800fc94: 4602 mov r2, r0 + 800fc96: 693b ldr r3, [r7, #16] + 800fc98: 1ad3 subs r3, r2, r3 + 800fc9a: 2b64 cmp r3, #100 @ 0x64 + 800fc9c: d901 bls.n 800fca2 { return HAL_TIMEOUT; - 800fc82: 2303 movs r3, #3 - 800fc84: e27e b.n 8010184 + 800fc9e: 2303 movs r3, #3 + 800fca0: e27e b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 800fc86: 4b53 ldr r3, [pc, #332] @ (800fdd4 ) - 800fc88: 681b ldr r3, [r3, #0] - 800fc8a: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 800fc8e: 2b00 cmp r3, #0 - 800fc90: d1f0 bne.n 800fc74 - 800fc92: e000 b.n 800fc96 + 800fca2: 4b53 ldr r3, [pc, #332] @ (800fdf0 ) + 800fca4: 681b ldr r3, [r3, #0] + 800fca6: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 800fcaa: 2b00 cmp r3, #0 + 800fcac: d1f0 bne.n 800fc90 + 800fcae: e000 b.n 800fcb2 if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 800fc94: bf00 nop + 800fcb0: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 800fc96: 687b ldr r3, [r7, #4] - 800fc98: 681b ldr r3, [r3, #0] - 800fc9a: f003 0302 and.w r3, r3, #2 - 800fc9e: 2b00 cmp r3, #0 - 800fca0: d063 beq.n 800fd6a + 800fcb2: 687b ldr r3, [r7, #4] + 800fcb4: 681b ldr r3, [r3, #0] + 800fcb6: f003 0302 and.w r3, r3, #2 + 800fcba: 2b00 cmp r3, #0 + 800fcbc: d063 beq.n 800fd86 /* Check the parameters */ assert_param(IS_RCC_HSI(RCC_OscInitStruct->HSIState)); assert_param(IS_RCC_CALIBRATION_VALUE(RCC_OscInitStruct->HSICalibrationValue)); /* Check if HSI is used as system clock or as PLL source when PLL is selected as system clock */ if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_HSI) - 800fca2: 4b4c ldr r3, [pc, #304] @ (800fdd4 ) - 800fca4: 685b ldr r3, [r3, #4] - 800fca6: f003 030c and.w r3, r3, #12 - 800fcaa: 2b00 cmp r3, #0 - 800fcac: d00b beq.n 800fcc6 + 800fcbe: 4b4c ldr r3, [pc, #304] @ (800fdf0 ) + 800fcc0: 685b ldr r3, [r3, #4] + 800fcc2: f003 030c and.w r3, r3, #12 + 800fcc6: 2b00 cmp r3, #0 + 800fcc8: d00b beq.n 800fce2 || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI_DIV2))) - 800fcae: 4b49 ldr r3, [pc, #292] @ (800fdd4 ) - 800fcb0: 685b ldr r3, [r3, #4] - 800fcb2: f003 030c and.w r3, r3, #12 - 800fcb6: 2b08 cmp r3, #8 - 800fcb8: d11c bne.n 800fcf4 - 800fcba: 4b46 ldr r3, [pc, #280] @ (800fdd4 ) - 800fcbc: 685b ldr r3, [r3, #4] - 800fcbe: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800fcc2: 2b00 cmp r3, #0 - 800fcc4: d116 bne.n 800fcf4 + 800fcca: 4b49 ldr r3, [pc, #292] @ (800fdf0 ) + 800fccc: 685b ldr r3, [r3, #4] + 800fcce: f003 030c and.w r3, r3, #12 + 800fcd2: 2b08 cmp r3, #8 + 800fcd4: d11c bne.n 800fd10 + 800fcd6: 4b46 ldr r3, [pc, #280] @ (800fdf0 ) + 800fcd8: 685b ldr r3, [r3, #4] + 800fcda: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800fcde: 2b00 cmp r3, #0 + 800fce0: d116 bne.n 800fd10 { /* 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)) - 800fcc6: 4b43 ldr r3, [pc, #268] @ (800fdd4 ) - 800fcc8: 681b ldr r3, [r3, #0] - 800fcca: f003 0302 and.w r3, r3, #2 - 800fcce: 2b00 cmp r3, #0 - 800fcd0: d005 beq.n 800fcde - 800fcd2: 687b ldr r3, [r7, #4] - 800fcd4: 695b ldr r3, [r3, #20] - 800fcd6: 2b01 cmp r3, #1 - 800fcd8: d001 beq.n 800fcde + 800fce2: 4b43 ldr r3, [pc, #268] @ (800fdf0 ) + 800fce4: 681b ldr r3, [r3, #0] + 800fce6: f003 0302 and.w r3, r3, #2 + 800fcea: 2b00 cmp r3, #0 + 800fcec: d005 beq.n 800fcfa + 800fcee: 687b ldr r3, [r7, #4] + 800fcf0: 695b ldr r3, [r3, #20] + 800fcf2: 2b01 cmp r3, #1 + 800fcf4: d001 beq.n 800fcfa { return HAL_ERROR; - 800fcda: 2301 movs r3, #1 - 800fcdc: e252 b.n 8010184 + 800fcf6: 2301 movs r3, #1 + 800fcf8: e252 b.n 80101a0 } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 800fcde: 4b3d ldr r3, [pc, #244] @ (800fdd4 ) - 800fce0: 681b ldr r3, [r3, #0] - 800fce2: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 800fce6: 687b ldr r3, [r7, #4] - 800fce8: 699b ldr r3, [r3, #24] - 800fcea: 00db lsls r3, r3, #3 - 800fcec: 4939 ldr r1, [pc, #228] @ (800fdd4 ) - 800fcee: 4313 orrs r3, r2 - 800fcf0: 600b str r3, [r1, #0] + 800fcfa: 4b3d ldr r3, [pc, #244] @ (800fdf0 ) + 800fcfc: 681b ldr r3, [r3, #0] + 800fcfe: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 800fd02: 687b ldr r3, [r7, #4] + 800fd04: 699b ldr r3, [r3, #24] + 800fd06: 00db lsls r3, r3, #3 + 800fd08: 4939 ldr r1, [pc, #228] @ (800fdf0 ) + 800fd0a: 4313 orrs r3, r2 + 800fd0c: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 800fcf2: e03a b.n 800fd6a + 800fd0e: e03a b.n 800fd86 } } else { /* Check the HSI State */ if (RCC_OscInitStruct->HSIState != RCC_HSI_OFF) - 800fcf4: 687b ldr r3, [r7, #4] - 800fcf6: 695b ldr r3, [r3, #20] - 800fcf8: 2b00 cmp r3, #0 - 800fcfa: d020 beq.n 800fd3e + 800fd10: 687b ldr r3, [r7, #4] + 800fd12: 695b ldr r3, [r3, #20] + 800fd14: 2b00 cmp r3, #0 + 800fd16: d020 beq.n 800fd5a { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 800fcfc: 4b36 ldr r3, [pc, #216] @ (800fdd8 ) - 800fcfe: 2201 movs r2, #1 - 800fd00: 601a str r2, [r3, #0] + 800fd18: 4b36 ldr r3, [pc, #216] @ (800fdf4 ) + 800fd1a: 2201 movs r2, #1 + 800fd1c: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fd02: f7fd fe2b bl 800d95c - 800fd06: 6138 str r0, [r7, #16] + 800fd1e: f7fd fe2b bl 800d978 + 800fd22: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800fd08: e008 b.n 800fd1c + 800fd24: e008 b.n 800fd38 { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 800fd0a: f7fd fe27 bl 800d95c - 800fd0e: 4602 mov r2, r0 - 800fd10: 693b ldr r3, [r7, #16] - 800fd12: 1ad3 subs r3, r2, r3 - 800fd14: 2b02 cmp r3, #2 - 800fd16: d901 bls.n 800fd1c + 800fd26: f7fd fe27 bl 800d978 + 800fd2a: 4602 mov r2, r0 + 800fd2c: 693b ldr r3, [r7, #16] + 800fd2e: 1ad3 subs r3, r2, r3 + 800fd30: 2b02 cmp r3, #2 + 800fd32: d901 bls.n 800fd38 { return HAL_TIMEOUT; - 800fd18: 2303 movs r3, #3 - 800fd1a: e233 b.n 8010184 + 800fd34: 2303 movs r3, #3 + 800fd36: e233 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800fd1c: 4b2d ldr r3, [pc, #180] @ (800fdd4 ) - 800fd1e: 681b ldr r3, [r3, #0] - 800fd20: f003 0302 and.w r3, r3, #2 - 800fd24: 2b00 cmp r3, #0 - 800fd26: d0f0 beq.n 800fd0a + 800fd38: 4b2d ldr r3, [pc, #180] @ (800fdf0 ) + 800fd3a: 681b ldr r3, [r3, #0] + 800fd3c: f003 0302 and.w r3, r3, #2 + 800fd40: 2b00 cmp r3, #0 + 800fd42: d0f0 beq.n 800fd26 } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 800fd28: 4b2a ldr r3, [pc, #168] @ (800fdd4 ) - 800fd2a: 681b ldr r3, [r3, #0] - 800fd2c: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 800fd30: 687b ldr r3, [r7, #4] - 800fd32: 699b ldr r3, [r3, #24] - 800fd34: 00db lsls r3, r3, #3 - 800fd36: 4927 ldr r1, [pc, #156] @ (800fdd4 ) - 800fd38: 4313 orrs r3, r2 - 800fd3a: 600b str r3, [r1, #0] - 800fd3c: e015 b.n 800fd6a + 800fd44: 4b2a ldr r3, [pc, #168] @ (800fdf0 ) + 800fd46: 681b ldr r3, [r3, #0] + 800fd48: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 800fd4c: 687b ldr r3, [r7, #4] + 800fd4e: 699b ldr r3, [r3, #24] + 800fd50: 00db lsls r3, r3, #3 + 800fd52: 4927 ldr r1, [pc, #156] @ (800fdf0 ) + 800fd54: 4313 orrs r3, r2 + 800fd56: 600b str r3, [r1, #0] + 800fd58: e015 b.n 800fd86 } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 800fd3e: 4b26 ldr r3, [pc, #152] @ (800fdd8 ) - 800fd40: 2200 movs r2, #0 - 800fd42: 601a str r2, [r3, #0] + 800fd5a: 4b26 ldr r3, [pc, #152] @ (800fdf4 ) + 800fd5c: 2200 movs r2, #0 + 800fd5e: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fd44: f7fd fe0a bl 800d95c - 800fd48: 6138 str r0, [r7, #16] + 800fd60: f7fd fe0a bl 800d978 + 800fd64: 6138 str r0, [r7, #16] /* Wait till HSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800fd4a: e008 b.n 800fd5e + 800fd66: e008 b.n 800fd7a { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 800fd4c: f7fd fe06 bl 800d95c - 800fd50: 4602 mov r2, r0 - 800fd52: 693b ldr r3, [r7, #16] - 800fd54: 1ad3 subs r3, r2, r3 - 800fd56: 2b02 cmp r3, #2 - 800fd58: d901 bls.n 800fd5e + 800fd68: f7fd fe06 bl 800d978 + 800fd6c: 4602 mov r2, r0 + 800fd6e: 693b ldr r3, [r7, #16] + 800fd70: 1ad3 subs r3, r2, r3 + 800fd72: 2b02 cmp r3, #2 + 800fd74: d901 bls.n 800fd7a { return HAL_TIMEOUT; - 800fd5a: 2303 movs r3, #3 - 800fd5c: e212 b.n 8010184 + 800fd76: 2303 movs r3, #3 + 800fd78: e212 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800fd5e: 4b1d ldr r3, [pc, #116] @ (800fdd4 ) - 800fd60: 681b ldr r3, [r3, #0] - 800fd62: f003 0302 and.w r3, r3, #2 - 800fd66: 2b00 cmp r3, #0 - 800fd68: d1f0 bne.n 800fd4c + 800fd7a: 4b1d ldr r3, [pc, #116] @ (800fdf0 ) + 800fd7c: 681b ldr r3, [r3, #0] + 800fd7e: f003 0302 and.w r3, r3, #2 + 800fd82: 2b00 cmp r3, #0 + 800fd84: d1f0 bne.n 800fd68 } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 800fd6a: 687b ldr r3, [r7, #4] - 800fd6c: 681b ldr r3, [r3, #0] - 800fd6e: f003 0308 and.w r3, r3, #8 - 800fd72: 2b00 cmp r3, #0 - 800fd74: d03a beq.n 800fdec + 800fd86: 687b ldr r3, [r7, #4] + 800fd88: 681b ldr r3, [r3, #0] + 800fd8a: f003 0308 and.w r3, r3, #8 + 800fd8e: 2b00 cmp r3, #0 + 800fd90: d03a beq.n 800fe08 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if (RCC_OscInitStruct->LSIState != RCC_LSI_OFF) - 800fd76: 687b ldr r3, [r7, #4] - 800fd78: 69db ldr r3, [r3, #28] - 800fd7a: 2b00 cmp r3, #0 - 800fd7c: d019 beq.n 800fdb2 + 800fd92: 687b ldr r3, [r7, #4] + 800fd94: 69db ldr r3, [r3, #28] + 800fd96: 2b00 cmp r3, #0 + 800fd98: d019 beq.n 800fdce { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 800fd7e: 4b17 ldr r3, [pc, #92] @ (800fddc ) - 800fd80: 2201 movs r2, #1 - 800fd82: 601a str r2, [r3, #0] + 800fd9a: 4b17 ldr r3, [pc, #92] @ (800fdf8 ) + 800fd9c: 2201 movs r2, #1 + 800fd9e: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fd84: f7fd fdea bl 800d95c - 800fd88: 6138 str r0, [r7, #16] + 800fda0: f7fd fdea bl 800d978 + 800fda4: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 800fd8a: e008 b.n 800fd9e + 800fda6: e008 b.n 800fdba { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 800fd8c: f7fd fde6 bl 800d95c - 800fd90: 4602 mov r2, r0 - 800fd92: 693b ldr r3, [r7, #16] - 800fd94: 1ad3 subs r3, r2, r3 - 800fd96: 2b02 cmp r3, #2 - 800fd98: d901 bls.n 800fd9e + 800fda8: f7fd fde6 bl 800d978 + 800fdac: 4602 mov r2, r0 + 800fdae: 693b ldr r3, [r7, #16] + 800fdb0: 1ad3 subs r3, r2, r3 + 800fdb2: 2b02 cmp r3, #2 + 800fdb4: d901 bls.n 800fdba { return HAL_TIMEOUT; - 800fd9a: 2303 movs r3, #3 - 800fd9c: e1f2 b.n 8010184 + 800fdb6: 2303 movs r3, #3 + 800fdb8: e1f2 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 800fd9e: 4b0d ldr r3, [pc, #52] @ (800fdd4 ) - 800fda0: 6a5b ldr r3, [r3, #36] @ 0x24 - 800fda2: f003 0302 and.w r3, r3, #2 - 800fda6: 2b00 cmp r3, #0 - 800fda8: d0f0 beq.n 800fd8c + 800fdba: 4b0d ldr r3, [pc, #52] @ (800fdf0 ) + 800fdbc: 6a5b ldr r3, [r3, #36] @ 0x24 + 800fdbe: f003 0302 and.w r3, r3, #2 + 800fdc2: 2b00 cmp r3, #0 + 800fdc4: d0f0 beq.n 800fda8 } } /* To have a fully stabilized clock in the specified range, a software delay of 1ms should be added.*/ RCC_Delay(1); - 800fdaa: 2001 movs r0, #1 - 800fdac: f000 fbca bl 8010544 - 800fdb0: e01c b.n 800fdec + 800fdc6: 2001 movs r0, #1 + 800fdc8: f000 fbca bl 8010560 + 800fdcc: e01c b.n 800fe08 } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 800fdb2: 4b0a ldr r3, [pc, #40] @ (800fddc ) - 800fdb4: 2200 movs r2, #0 - 800fdb6: 601a str r2, [r3, #0] + 800fdce: 4b0a ldr r3, [pc, #40] @ (800fdf8 ) + 800fdd0: 2200 movs r2, #0 + 800fdd2: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fdb8: f7fd fdd0 bl 800d95c - 800fdbc: 6138 str r0, [r7, #16] + 800fdd4: f7fd fdd0 bl 800d978 + 800fdd8: 6138 str r0, [r7, #16] /* Wait till LSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 800fdbe: e00f b.n 800fde0 + 800fdda: e00f b.n 800fdfc { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 800fdc0: f7fd fdcc bl 800d95c - 800fdc4: 4602 mov r2, r0 - 800fdc6: 693b ldr r3, [r7, #16] - 800fdc8: 1ad3 subs r3, r2, r3 - 800fdca: 2b02 cmp r3, #2 - 800fdcc: d908 bls.n 800fde0 + 800fddc: f7fd fdcc bl 800d978 + 800fde0: 4602 mov r2, r0 + 800fde2: 693b ldr r3, [r7, #16] + 800fde4: 1ad3 subs r3, r2, r3 + 800fde6: 2b02 cmp r3, #2 + 800fde8: d908 bls.n 800fdfc { return HAL_TIMEOUT; - 800fdce: 2303 movs r3, #3 - 800fdd0: e1d8 b.n 8010184 - 800fdd2: bf00 nop - 800fdd4: 40021000 .word 0x40021000 - 800fdd8: 42420000 .word 0x42420000 - 800fddc: 42420480 .word 0x42420480 + 800fdea: 2303 movs r3, #3 + 800fdec: e1d8 b.n 80101a0 + 800fdee: bf00 nop + 800fdf0: 40021000 .word 0x40021000 + 800fdf4: 42420000 .word 0x42420000 + 800fdf8: 42420480 .word 0x42420480 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 800fde0: 4b9b ldr r3, [pc, #620] @ (8010050 ) - 800fde2: 6a5b ldr r3, [r3, #36] @ 0x24 - 800fde4: f003 0302 and.w r3, r3, #2 - 800fde8: 2b00 cmp r3, #0 - 800fdea: d1e9 bne.n 800fdc0 + 800fdfc: 4b9b ldr r3, [pc, #620] @ (801006c ) + 800fdfe: 6a5b ldr r3, [r3, #36] @ 0x24 + 800fe00: f003 0302 and.w r3, r3, #2 + 800fe04: 2b00 cmp r3, #0 + 800fe06: d1e9 bne.n 800fddc } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 800fdec: 687b ldr r3, [r7, #4] - 800fdee: 681b ldr r3, [r3, #0] - 800fdf0: f003 0304 and.w r3, r3, #4 - 800fdf4: 2b00 cmp r3, #0 - 800fdf6: f000 80a6 beq.w 800ff46 + 800fe08: 687b ldr r3, [r7, #4] + 800fe0a: 681b ldr r3, [r3, #0] + 800fe0c: f003 0304 and.w r3, r3, #4 + 800fe10: 2b00 cmp r3, #0 + 800fe12: f000 80a6 beq.w 800ff62 { FlagStatus pwrclkchanged = RESET; - 800fdfa: 2300 movs r3, #0 - 800fdfc: 75fb strb r3, [r7, #23] + 800fe16: 2300 movs r3, #0 + 800fe18: 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()) - 800fdfe: 4b94 ldr r3, [pc, #592] @ (8010050 ) - 800fe00: 69db ldr r3, [r3, #28] - 800fe02: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800fe06: 2b00 cmp r3, #0 - 800fe08: d10d bne.n 800fe26 + 800fe1a: 4b94 ldr r3, [pc, #592] @ (801006c ) + 800fe1c: 69db ldr r3, [r3, #28] + 800fe1e: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800fe22: 2b00 cmp r3, #0 + 800fe24: d10d bne.n 800fe42 { __HAL_RCC_PWR_CLK_ENABLE(); - 800fe0a: 4b91 ldr r3, [pc, #580] @ (8010050 ) - 800fe0c: 69db ldr r3, [r3, #28] - 800fe0e: 4a90 ldr r2, [pc, #576] @ (8010050 ) - 800fe10: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 800fe14: 61d3 str r3, [r2, #28] - 800fe16: 4b8e ldr r3, [pc, #568] @ (8010050 ) - 800fe18: 69db ldr r3, [r3, #28] - 800fe1a: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800fe1e: 60bb str r3, [r7, #8] - 800fe20: 68bb ldr r3, [r7, #8] + 800fe26: 4b91 ldr r3, [pc, #580] @ (801006c ) + 800fe28: 69db ldr r3, [r3, #28] + 800fe2a: 4a90 ldr r2, [pc, #576] @ (801006c ) + 800fe2c: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 800fe30: 61d3 str r3, [r2, #28] + 800fe32: 4b8e ldr r3, [pc, #568] @ (801006c ) + 800fe34: 69db ldr r3, [r3, #28] + 800fe36: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800fe3a: 60bb str r3, [r7, #8] + 800fe3c: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 800fe22: 2301 movs r3, #1 - 800fe24: 75fb strb r3, [r7, #23] + 800fe3e: 2301 movs r3, #1 + 800fe40: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800fe26: 4b8b ldr r3, [pc, #556] @ (8010054 ) - 800fe28: 681b ldr r3, [r3, #0] - 800fe2a: f403 7380 and.w r3, r3, #256 @ 0x100 - 800fe2e: 2b00 cmp r3, #0 - 800fe30: d118 bne.n 800fe64 + 800fe42: 4b8b ldr r3, [pc, #556] @ (8010070 ) + 800fe44: 681b ldr r3, [r3, #0] + 800fe46: f403 7380 and.w r3, r3, #256 @ 0x100 + 800fe4a: 2b00 cmp r3, #0 + 800fe4c: d118 bne.n 800fe80 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 800fe32: 4b88 ldr r3, [pc, #544] @ (8010054 ) - 800fe34: 681b ldr r3, [r3, #0] - 800fe36: 4a87 ldr r2, [pc, #540] @ (8010054 ) - 800fe38: f443 7380 orr.w r3, r3, #256 @ 0x100 - 800fe3c: 6013 str r3, [r2, #0] + 800fe4e: 4b88 ldr r3, [pc, #544] @ (8010070 ) + 800fe50: 681b ldr r3, [r3, #0] + 800fe52: 4a87 ldr r2, [pc, #540] @ (8010070 ) + 800fe54: f443 7380 orr.w r3, r3, #256 @ 0x100 + 800fe58: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 800fe3e: f7fd fd8d bl 800d95c - 800fe42: 6138 str r0, [r7, #16] + 800fe5a: f7fd fd8d bl 800d978 + 800fe5e: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800fe44: e008 b.n 800fe58 + 800fe60: e008 b.n 800fe74 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 800fe46: f7fd fd89 bl 800d95c - 800fe4a: 4602 mov r2, r0 - 800fe4c: 693b ldr r3, [r7, #16] - 800fe4e: 1ad3 subs r3, r2, r3 - 800fe50: 2b64 cmp r3, #100 @ 0x64 - 800fe52: d901 bls.n 800fe58 + 800fe62: f7fd fd89 bl 800d978 + 800fe66: 4602 mov r2, r0 + 800fe68: 693b ldr r3, [r7, #16] + 800fe6a: 1ad3 subs r3, r2, r3 + 800fe6c: 2b64 cmp r3, #100 @ 0x64 + 800fe6e: d901 bls.n 800fe74 { return HAL_TIMEOUT; - 800fe54: 2303 movs r3, #3 - 800fe56: e195 b.n 8010184 + 800fe70: 2303 movs r3, #3 + 800fe72: e195 b.n 80101a0 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800fe58: 4b7e ldr r3, [pc, #504] @ (8010054 ) - 800fe5a: 681b ldr r3, [r3, #0] - 800fe5c: f403 7380 and.w r3, r3, #256 @ 0x100 - 800fe60: 2b00 cmp r3, #0 - 800fe62: d0f0 beq.n 800fe46 + 800fe74: 4b7e ldr r3, [pc, #504] @ (8010070 ) + 800fe76: 681b ldr r3, [r3, #0] + 800fe78: f403 7380 and.w r3, r3, #256 @ 0x100 + 800fe7c: 2b00 cmp r3, #0 + 800fe7e: d0f0 beq.n 800fe62 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 800fe64: 687b ldr r3, [r7, #4] - 800fe66: 691b ldr r3, [r3, #16] - 800fe68: 2b01 cmp r3, #1 - 800fe6a: d106 bne.n 800fe7a - 800fe6c: 4b78 ldr r3, [pc, #480] @ (8010050 ) - 800fe6e: 6a1b ldr r3, [r3, #32] - 800fe70: 4a77 ldr r2, [pc, #476] @ (8010050 ) - 800fe72: f043 0301 orr.w r3, r3, #1 - 800fe76: 6213 str r3, [r2, #32] - 800fe78: e02d b.n 800fed6 - 800fe7a: 687b ldr r3, [r7, #4] - 800fe7c: 691b ldr r3, [r3, #16] - 800fe7e: 2b00 cmp r3, #0 - 800fe80: d10c bne.n 800fe9c - 800fe82: 4b73 ldr r3, [pc, #460] @ (8010050 ) - 800fe84: 6a1b ldr r3, [r3, #32] - 800fe86: 4a72 ldr r2, [pc, #456] @ (8010050 ) - 800fe88: f023 0301 bic.w r3, r3, #1 - 800fe8c: 6213 str r3, [r2, #32] - 800fe8e: 4b70 ldr r3, [pc, #448] @ (8010050 ) - 800fe90: 6a1b ldr r3, [r3, #32] - 800fe92: 4a6f ldr r2, [pc, #444] @ (8010050 ) - 800fe94: f023 0304 bic.w r3, r3, #4 - 800fe98: 6213 str r3, [r2, #32] - 800fe9a: e01c b.n 800fed6 - 800fe9c: 687b ldr r3, [r7, #4] - 800fe9e: 691b ldr r3, [r3, #16] - 800fea0: 2b05 cmp r3, #5 - 800fea2: d10c bne.n 800febe - 800fea4: 4b6a ldr r3, [pc, #424] @ (8010050 ) - 800fea6: 6a1b ldr r3, [r3, #32] - 800fea8: 4a69 ldr r2, [pc, #420] @ (8010050 ) - 800feaa: f043 0304 orr.w r3, r3, #4 - 800feae: 6213 str r3, [r2, #32] - 800feb0: 4b67 ldr r3, [pc, #412] @ (8010050 ) - 800feb2: 6a1b ldr r3, [r3, #32] - 800feb4: 4a66 ldr r2, [pc, #408] @ (8010050 ) - 800feb6: f043 0301 orr.w r3, r3, #1 - 800feba: 6213 str r3, [r2, #32] - 800febc: e00b b.n 800fed6 - 800febe: 4b64 ldr r3, [pc, #400] @ (8010050 ) - 800fec0: 6a1b ldr r3, [r3, #32] - 800fec2: 4a63 ldr r2, [pc, #396] @ (8010050 ) - 800fec4: f023 0301 bic.w r3, r3, #1 - 800fec8: 6213 str r3, [r2, #32] - 800feca: 4b61 ldr r3, [pc, #388] @ (8010050 ) - 800fecc: 6a1b ldr r3, [r3, #32] - 800fece: 4a60 ldr r2, [pc, #384] @ (8010050 ) - 800fed0: f023 0304 bic.w r3, r3, #4 - 800fed4: 6213 str r3, [r2, #32] + 800fe80: 687b ldr r3, [r7, #4] + 800fe82: 691b ldr r3, [r3, #16] + 800fe84: 2b01 cmp r3, #1 + 800fe86: d106 bne.n 800fe96 + 800fe88: 4b78 ldr r3, [pc, #480] @ (801006c ) + 800fe8a: 6a1b ldr r3, [r3, #32] + 800fe8c: 4a77 ldr r2, [pc, #476] @ (801006c ) + 800fe8e: f043 0301 orr.w r3, r3, #1 + 800fe92: 6213 str r3, [r2, #32] + 800fe94: e02d b.n 800fef2 + 800fe96: 687b ldr r3, [r7, #4] + 800fe98: 691b ldr r3, [r3, #16] + 800fe9a: 2b00 cmp r3, #0 + 800fe9c: d10c bne.n 800feb8 + 800fe9e: 4b73 ldr r3, [pc, #460] @ (801006c ) + 800fea0: 6a1b ldr r3, [r3, #32] + 800fea2: 4a72 ldr r2, [pc, #456] @ (801006c ) + 800fea4: f023 0301 bic.w r3, r3, #1 + 800fea8: 6213 str r3, [r2, #32] + 800feaa: 4b70 ldr r3, [pc, #448] @ (801006c ) + 800feac: 6a1b ldr r3, [r3, #32] + 800feae: 4a6f ldr r2, [pc, #444] @ (801006c ) + 800feb0: f023 0304 bic.w r3, r3, #4 + 800feb4: 6213 str r3, [r2, #32] + 800feb6: e01c b.n 800fef2 + 800feb8: 687b ldr r3, [r7, #4] + 800feba: 691b ldr r3, [r3, #16] + 800febc: 2b05 cmp r3, #5 + 800febe: d10c bne.n 800feda + 800fec0: 4b6a ldr r3, [pc, #424] @ (801006c ) + 800fec2: 6a1b ldr r3, [r3, #32] + 800fec4: 4a69 ldr r2, [pc, #420] @ (801006c ) + 800fec6: f043 0304 orr.w r3, r3, #4 + 800feca: 6213 str r3, [r2, #32] + 800fecc: 4b67 ldr r3, [pc, #412] @ (801006c ) + 800fece: 6a1b ldr r3, [r3, #32] + 800fed0: 4a66 ldr r2, [pc, #408] @ (801006c ) + 800fed2: f043 0301 orr.w r3, r3, #1 + 800fed6: 6213 str r3, [r2, #32] + 800fed8: e00b b.n 800fef2 + 800feda: 4b64 ldr r3, [pc, #400] @ (801006c ) + 800fedc: 6a1b ldr r3, [r3, #32] + 800fede: 4a63 ldr r2, [pc, #396] @ (801006c ) + 800fee0: f023 0301 bic.w r3, r3, #1 + 800fee4: 6213 str r3, [r2, #32] + 800fee6: 4b61 ldr r3, [pc, #388] @ (801006c ) + 800fee8: 6a1b ldr r3, [r3, #32] + 800feea: 4a60 ldr r2, [pc, #384] @ (801006c ) + 800feec: f023 0304 bic.w r3, r3, #4 + 800fef0: 6213 str r3, [r2, #32] /* Check the LSE State */ if (RCC_OscInitStruct->LSEState != RCC_LSE_OFF) - 800fed6: 687b ldr r3, [r7, #4] - 800fed8: 691b ldr r3, [r3, #16] - 800feda: 2b00 cmp r3, #0 - 800fedc: d015 beq.n 800ff0a + 800fef2: 687b ldr r3, [r7, #4] + 800fef4: 691b ldr r3, [r3, #16] + 800fef6: 2b00 cmp r3, #0 + 800fef8: d015 beq.n 800ff26 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fede: f7fd fd3d bl 800d95c - 800fee2: 6138 str r0, [r7, #16] + 800fefa: f7fd fd3d bl 800d978 + 800fefe: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 800fee4: e00a b.n 800fefc + 800ff00: e00a b.n 800ff18 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 800fee6: f7fd fd39 bl 800d95c - 800feea: 4602 mov r2, r0 - 800feec: 693b ldr r3, [r7, #16] - 800feee: 1ad3 subs r3, r2, r3 - 800fef0: f241 3288 movw r2, #5000 @ 0x1388 - 800fef4: 4293 cmp r3, r2 - 800fef6: d901 bls.n 800fefc + 800ff02: f7fd fd39 bl 800d978 + 800ff06: 4602 mov r2, r0 + 800ff08: 693b ldr r3, [r7, #16] + 800ff0a: 1ad3 subs r3, r2, r3 + 800ff0c: f241 3288 movw r2, #5000 @ 0x1388 + 800ff10: 4293 cmp r3, r2 + 800ff12: d901 bls.n 800ff18 { return HAL_TIMEOUT; - 800fef8: 2303 movs r3, #3 - 800fefa: e143 b.n 8010184 + 800ff14: 2303 movs r3, #3 + 800ff16: e143 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 800fefc: 4b54 ldr r3, [pc, #336] @ (8010050 ) - 800fefe: 6a1b ldr r3, [r3, #32] - 800ff00: f003 0302 and.w r3, r3, #2 - 800ff04: 2b00 cmp r3, #0 - 800ff06: d0ee beq.n 800fee6 - 800ff08: e014 b.n 800ff34 + 800ff18: 4b54 ldr r3, [pc, #336] @ (801006c ) + 800ff1a: 6a1b ldr r3, [r3, #32] + 800ff1c: f003 0302 and.w r3, r3, #2 + 800ff20: 2b00 cmp r3, #0 + 800ff22: d0ee beq.n 800ff02 + 800ff24: e014 b.n 800ff50 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800ff0a: f7fd fd27 bl 800d95c - 800ff0e: 6138 str r0, [r7, #16] + 800ff26: f7fd fd27 bl 800d978 + 800ff2a: 6138 str r0, [r7, #16] /* Wait till LSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 800ff10: e00a b.n 800ff28 + 800ff2c: e00a b.n 800ff44 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 800ff12: f7fd fd23 bl 800d95c - 800ff16: 4602 mov r2, r0 - 800ff18: 693b ldr r3, [r7, #16] - 800ff1a: 1ad3 subs r3, r2, r3 - 800ff1c: f241 3288 movw r2, #5000 @ 0x1388 - 800ff20: 4293 cmp r3, r2 - 800ff22: d901 bls.n 800ff28 + 800ff2e: f7fd fd23 bl 800d978 + 800ff32: 4602 mov r2, r0 + 800ff34: 693b ldr r3, [r7, #16] + 800ff36: 1ad3 subs r3, r2, r3 + 800ff38: f241 3288 movw r2, #5000 @ 0x1388 + 800ff3c: 4293 cmp r3, r2 + 800ff3e: d901 bls.n 800ff44 { return HAL_TIMEOUT; - 800ff24: 2303 movs r3, #3 - 800ff26: e12d b.n 8010184 + 800ff40: 2303 movs r3, #3 + 800ff42: e12d b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 800ff28: 4b49 ldr r3, [pc, #292] @ (8010050 ) - 800ff2a: 6a1b ldr r3, [r3, #32] - 800ff2c: f003 0302 and.w r3, r3, #2 - 800ff30: 2b00 cmp r3, #0 - 800ff32: d1ee bne.n 800ff12 + 800ff44: 4b49 ldr r3, [pc, #292] @ (801006c ) + 800ff46: 6a1b ldr r3, [r3, #32] + 800ff48: f003 0302 and.w r3, r3, #2 + 800ff4c: 2b00 cmp r3, #0 + 800ff4e: d1ee bne.n 800ff2e } } } /* Require to disable power clock if necessary */ if (pwrclkchanged == SET) - 800ff34: 7dfb ldrb r3, [r7, #23] - 800ff36: 2b01 cmp r3, #1 - 800ff38: d105 bne.n 800ff46 + 800ff50: 7dfb ldrb r3, [r7, #23] + 800ff52: 2b01 cmp r3, #1 + 800ff54: d105 bne.n 800ff62 { __HAL_RCC_PWR_CLK_DISABLE(); - 800ff3a: 4b45 ldr r3, [pc, #276] @ (8010050 ) - 800ff3c: 69db ldr r3, [r3, #28] - 800ff3e: 4a44 ldr r2, [pc, #272] @ (8010050 ) - 800ff40: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 - 800ff44: 61d3 str r3, [r2, #28] + 800ff56: 4b45 ldr r3, [pc, #276] @ (801006c ) + 800ff58: 69db ldr r3, [r3, #28] + 800ff5a: 4a44 ldr r2, [pc, #272] @ (801006c ) + 800ff5c: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 + 800ff60: 61d3 str r3, [r2, #28] #if defined(RCC_CR_PLL2ON) /*-------------------------------- PLL2 Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL2(RCC_OscInitStruct->PLL2.PLL2State)); if ((RCC_OscInitStruct->PLL2.PLL2State) != RCC_PLL2_NONE) - 800ff46: 687b ldr r3, [r7, #4] - 800ff48: 6adb ldr r3, [r3, #44] @ 0x2c - 800ff4a: 2b00 cmp r3, #0 - 800ff4c: f000 808c beq.w 8010068 + 800ff62: 687b ldr r3, [r7, #4] + 800ff64: 6adb ldr r3, [r3, #44] @ 0x2c + 800ff66: 2b00 cmp r3, #0 + 800ff68: f000 808c beq.w 8010084 { /* This bit can not be cleared if the PLL2 clock is used indirectly as system clock (i.e. it is used as PLL clock entry that is used as system clock). */ if ((__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE) && \ - 800ff50: 4b3f ldr r3, [pc, #252] @ (8010050 ) - 800ff52: 685b ldr r3, [r3, #4] - 800ff54: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 800ff58: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 800ff5c: d10e bne.n 800ff7c + 800ff6c: 4b3f ldr r3, [pc, #252] @ (801006c ) + 800ff6e: 685b ldr r3, [r3, #4] + 800ff70: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800ff74: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 800ff78: d10e bne.n 800ff98 (__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && \ - 800ff5e: 4b3c ldr r3, [pc, #240] @ (8010050 ) - 800ff60: 685b ldr r3, [r3, #4] - 800ff62: f003 030c and.w r3, r3, #12 + 800ff7a: 4b3c ldr r3, [pc, #240] @ (801006c ) + 800ff7c: 685b ldr r3, [r3, #4] + 800ff7e: f003 030c and.w r3, r3, #12 if ((__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE) && \ - 800ff66: 2b08 cmp r3, #8 - 800ff68: d108 bne.n 800ff7c + 800ff82: 2b08 cmp r3, #8 + 800ff84: d108 bne.n 800ff98 ((READ_BIT(RCC->CFGR2, RCC_CFGR2_PREDIV1SRC)) == RCC_CFGR2_PREDIV1SRC_PLL2)) - 800ff6a: 4b39 ldr r3, [pc, #228] @ (8010050 ) - 800ff6c: 6adb ldr r3, [r3, #44] @ 0x2c - 800ff6e: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 800ff86: 4b39 ldr r3, [pc, #228] @ (801006c ) + 800ff88: 6adb ldr r3, [r3, #44] @ 0x2c + 800ff8a: f403 3380 and.w r3, r3, #65536 @ 0x10000 (__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && \ - 800ff72: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 800ff76: d101 bne.n 800ff7c + 800ff8e: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 800ff92: d101 bne.n 800ff98 { return HAL_ERROR; - 800ff78: 2301 movs r3, #1 - 800ff7a: e103 b.n 8010184 + 800ff94: 2301 movs r3, #1 + 800ff96: e103 b.n 80101a0 } else { if ((RCC_OscInitStruct->PLL2.PLL2State) == RCC_PLL2_ON) - 800ff7c: 687b ldr r3, [r7, #4] - 800ff7e: 6adb ldr r3, [r3, #44] @ 0x2c - 800ff80: 2b02 cmp r3, #2 - 800ff82: d14e bne.n 8010022 + 800ff98: 687b ldr r3, [r7, #4] + 800ff9a: 6adb ldr r3, [r3, #44] @ 0x2c + 800ff9c: 2b02 cmp r3, #2 + 800ff9e: d14e bne.n 801003e assert_param(IS_RCC_PLL2_MUL(RCC_OscInitStruct->PLL2.PLL2MUL)); assert_param(IS_RCC_HSE_PREDIV2(RCC_OscInitStruct->PLL2.HSEPrediv2Value)); /* Prediv2 can be written only when the PLLI2S is disabled. */ /* Return an error only if new value is different from the programmed value */ if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL3ON) && \ - 800ff84: 4b32 ldr r3, [pc, #200] @ (8010050 ) - 800ff86: 681b ldr r3, [r3, #0] - 800ff88: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 800ff8c: 2b00 cmp r3, #0 - 800ff8e: d009 beq.n 800ffa4 + 800ffa0: 4b32 ldr r3, [pc, #200] @ (801006c ) + 800ffa2: 681b ldr r3, [r3, #0] + 800ffa4: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800ffa8: 2b00 cmp r3, #0 + 800ffaa: d009 beq.n 800ffc0 (__HAL_RCC_HSE_GET_PREDIV2() != RCC_OscInitStruct->PLL2.HSEPrediv2Value)) - 800ff90: 4b2f ldr r3, [pc, #188] @ (8010050 ) - 800ff92: 6adb ldr r3, [r3, #44] @ 0x2c - 800ff94: f003 02f0 and.w r2, r3, #240 @ 0xf0 - 800ff98: 687b ldr r3, [r7, #4] - 800ff9a: 6b5b ldr r3, [r3, #52] @ 0x34 + 800ffac: 4b2f ldr r3, [pc, #188] @ (801006c ) + 800ffae: 6adb ldr r3, [r3, #44] @ 0x2c + 800ffb0: f003 02f0 and.w r2, r3, #240 @ 0xf0 + 800ffb4: 687b ldr r3, [r7, #4] + 800ffb6: 6b5b ldr r3, [r3, #52] @ 0x34 if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL3ON) && \ - 800ff9c: 429a cmp r2, r3 - 800ff9e: d001 beq.n 800ffa4 + 800ffb8: 429a cmp r2, r3 + 800ffba: d001 beq.n 800ffc0 { return HAL_ERROR; - 800ffa0: 2301 movs r3, #1 - 800ffa2: e0ef b.n 8010184 + 800ffbc: 2301 movs r3, #1 + 800ffbe: e0ef b.n 80101a0 } /* Disable the main PLL2. */ __HAL_RCC_PLL2_DISABLE(); - 800ffa4: 4b2c ldr r3, [pc, #176] @ (8010058 ) - 800ffa6: 2200 movs r2, #0 - 800ffa8: 601a str r2, [r3, #0] + 800ffc0: 4b2c ldr r3, [pc, #176] @ (8010074 ) + 800ffc2: 2200 movs r2, #0 + 800ffc4: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800ffaa: f7fd fcd7 bl 800d95c - 800ffae: 6138 str r0, [r7, #16] + 800ffc6: f7fd fcd7 bl 800d978 + 800ffca: 6138 str r0, [r7, #16] /* Wait till PLL2 is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) != RESET) - 800ffb0: e008 b.n 800ffc4 + 800ffcc: e008 b.n 800ffe0 { if ((HAL_GetTick() - tickstart) > PLL2_TIMEOUT_VALUE) - 800ffb2: f7fd fcd3 bl 800d95c - 800ffb6: 4602 mov r2, r0 - 800ffb8: 693b ldr r3, [r7, #16] - 800ffba: 1ad3 subs r3, r2, r3 - 800ffbc: 2b64 cmp r3, #100 @ 0x64 - 800ffbe: d901 bls.n 800ffc4 + 800ffce: f7fd fcd3 bl 800d978 + 800ffd2: 4602 mov r2, r0 + 800ffd4: 693b ldr r3, [r7, #16] + 800ffd6: 1ad3 subs r3, r2, r3 + 800ffd8: 2b64 cmp r3, #100 @ 0x64 + 800ffda: d901 bls.n 800ffe0 { return HAL_TIMEOUT; - 800ffc0: 2303 movs r3, #3 - 800ffc2: e0df b.n 8010184 + 800ffdc: 2303 movs r3, #3 + 800ffde: e0df b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) != RESET) - 800ffc4: 4b22 ldr r3, [pc, #136] @ (8010050 ) - 800ffc6: 681b ldr r3, [r3, #0] - 800ffc8: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 800ffcc: 2b00 cmp r3, #0 - 800ffce: d1f0 bne.n 800ffb2 + 800ffe0: 4b22 ldr r3, [pc, #136] @ (801006c ) + 800ffe2: 681b ldr r3, [r3, #0] + 800ffe4: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 800ffe8: 2b00 cmp r3, #0 + 800ffea: d1f0 bne.n 800ffce } } /* Configure the HSE prediv2 factor --------------------------------*/ __HAL_RCC_HSE_PREDIV2_CONFIG(RCC_OscInitStruct->PLL2.HSEPrediv2Value); - 800ffd0: 4b1f ldr r3, [pc, #124] @ (8010050 ) - 800ffd2: 6adb ldr r3, [r3, #44] @ 0x2c - 800ffd4: f023 02f0 bic.w r2, r3, #240 @ 0xf0 - 800ffd8: 687b ldr r3, [r7, #4] - 800ffda: 6b5b ldr r3, [r3, #52] @ 0x34 - 800ffdc: 491c ldr r1, [pc, #112] @ (8010050 ) - 800ffde: 4313 orrs r3, r2 - 800ffe0: 62cb str r3, [r1, #44] @ 0x2c + 800ffec: 4b1f ldr r3, [pc, #124] @ (801006c ) + 800ffee: 6adb ldr r3, [r3, #44] @ 0x2c + 800fff0: f023 02f0 bic.w r2, r3, #240 @ 0xf0 + 800fff4: 687b ldr r3, [r7, #4] + 800fff6: 6b5b ldr r3, [r3, #52] @ 0x34 + 800fff8: 491c ldr r1, [pc, #112] @ (801006c ) + 800fffa: 4313 orrs r3, r2 + 800fffc: 62cb str r3, [r1, #44] @ 0x2c /* Configure the main PLL2 multiplication factors. */ __HAL_RCC_PLL2_CONFIG(RCC_OscInitStruct->PLL2.PLL2MUL); - 800ffe2: 4b1b ldr r3, [pc, #108] @ (8010050 ) - 800ffe4: 6adb ldr r3, [r3, #44] @ 0x2c - 800ffe6: f423 6270 bic.w r2, r3, #3840 @ 0xf00 - 800ffea: 687b ldr r3, [r7, #4] - 800ffec: 6b1b ldr r3, [r3, #48] @ 0x30 - 800ffee: 4918 ldr r1, [pc, #96] @ (8010050 ) - 800fff0: 4313 orrs r3, r2 - 800fff2: 62cb str r3, [r1, #44] @ 0x2c + 800fffe: 4b1b ldr r3, [pc, #108] @ (801006c ) + 8010000: 6adb ldr r3, [r3, #44] @ 0x2c + 8010002: f423 6270 bic.w r2, r3, #3840 @ 0xf00 + 8010006: 687b ldr r3, [r7, #4] + 8010008: 6b1b ldr r3, [r3, #48] @ 0x30 + 801000a: 4918 ldr r1, [pc, #96] @ (801006c ) + 801000c: 4313 orrs r3, r2 + 801000e: 62cb str r3, [r1, #44] @ 0x2c /* Enable the main PLL2. */ __HAL_RCC_PLL2_ENABLE(); - 800fff4: 4b18 ldr r3, [pc, #96] @ (8010058 ) - 800fff6: 2201 movs r2, #1 - 800fff8: 601a str r2, [r3, #0] + 8010010: 4b18 ldr r3, [pc, #96] @ (8010074 ) + 8010012: 2201 movs r2, #1 + 8010014: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800fffa: f7fd fcaf bl 800d95c - 800fffe: 6138 str r0, [r7, #16] + 8010016: f7fd fcaf bl 800d978 + 801001a: 6138 str r0, [r7, #16] /* Wait till PLL2 is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) == RESET) - 8010000: e008 b.n 8010014 + 801001c: e008 b.n 8010030 { if ((HAL_GetTick() - tickstart) > PLL2_TIMEOUT_VALUE) - 8010002: f7fd fcab bl 800d95c - 8010006: 4602 mov r2, r0 - 8010008: 693b ldr r3, [r7, #16] - 801000a: 1ad3 subs r3, r2, r3 - 801000c: 2b64 cmp r3, #100 @ 0x64 - 801000e: d901 bls.n 8010014 + 801001e: f7fd fcab bl 800d978 + 8010022: 4602 mov r2, r0 + 8010024: 693b ldr r3, [r7, #16] + 8010026: 1ad3 subs r3, r2, r3 + 8010028: 2b64 cmp r3, #100 @ 0x64 + 801002a: d901 bls.n 8010030 { return HAL_TIMEOUT; - 8010010: 2303 movs r3, #3 - 8010012: e0b7 b.n 8010184 + 801002c: 2303 movs r3, #3 + 801002e: e0b7 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) == RESET) - 8010014: 4b0e ldr r3, [pc, #56] @ (8010050 ) - 8010016: 681b ldr r3, [r3, #0] - 8010018: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 801001c: 2b00 cmp r3, #0 - 801001e: d0f0 beq.n 8010002 - 8010020: e022 b.n 8010068 + 8010030: 4b0e ldr r3, [pc, #56] @ (801006c ) + 8010032: 681b ldr r3, [r3, #0] + 8010034: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 8010038: 2b00 cmp r3, #0 + 801003a: d0f0 beq.n 801001e + 801003c: e022 b.n 8010084 } } else { /* Set PREDIV1 source to HSE */ CLEAR_BIT(RCC->CFGR2, RCC_CFGR2_PREDIV1SRC); - 8010022: 4b0b ldr r3, [pc, #44] @ (8010050 ) - 8010024: 6adb ldr r3, [r3, #44] @ 0x2c - 8010026: 4a0a ldr r2, [pc, #40] @ (8010050 ) - 8010028: f423 3380 bic.w r3, r3, #65536 @ 0x10000 - 801002c: 62d3 str r3, [r2, #44] @ 0x2c + 801003e: 4b0b ldr r3, [pc, #44] @ (801006c ) + 8010040: 6adb ldr r3, [r3, #44] @ 0x2c + 8010042: 4a0a ldr r2, [pc, #40] @ (801006c ) + 8010044: f423 3380 bic.w r3, r3, #65536 @ 0x10000 + 8010048: 62d3 str r3, [r2, #44] @ 0x2c /* Disable the main PLL2. */ __HAL_RCC_PLL2_DISABLE(); - 801002e: 4b0a ldr r3, [pc, #40] @ (8010058 ) - 8010030: 2200 movs r2, #0 - 8010032: 601a str r2, [r3, #0] + 801004a: 4b0a ldr r3, [pc, #40] @ (8010074 ) + 801004c: 2200 movs r2, #0 + 801004e: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8010034: f7fd fc92 bl 800d95c - 8010038: 6138 str r0, [r7, #16] + 8010050: f7fd fc92 bl 800d978 + 8010054: 6138 str r0, [r7, #16] /* Wait till PLL2 is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) != RESET) - 801003a: e00f b.n 801005c + 8010056: e00f b.n 8010078 { if ((HAL_GetTick() - tickstart) > PLL2_TIMEOUT_VALUE) - 801003c: f7fd fc8e bl 800d95c - 8010040: 4602 mov r2, r0 - 8010042: 693b ldr r3, [r7, #16] - 8010044: 1ad3 subs r3, r2, r3 - 8010046: 2b64 cmp r3, #100 @ 0x64 - 8010048: d908 bls.n 801005c + 8010058: f7fd fc8e bl 800d978 + 801005c: 4602 mov r2, r0 + 801005e: 693b ldr r3, [r7, #16] + 8010060: 1ad3 subs r3, r2, r3 + 8010062: 2b64 cmp r3, #100 @ 0x64 + 8010064: d908 bls.n 8010078 { return HAL_TIMEOUT; - 801004a: 2303 movs r3, #3 - 801004c: e09a b.n 8010184 - 801004e: bf00 nop - 8010050: 40021000 .word 0x40021000 - 8010054: 40007000 .word 0x40007000 - 8010058: 42420068 .word 0x42420068 + 8010066: 2303 movs r3, #3 + 8010068: e09a b.n 80101a0 + 801006a: bf00 nop + 801006c: 40021000 .word 0x40021000 + 8010070: 40007000 .word 0x40007000 + 8010074: 42420068 .word 0x42420068 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLL2RDY) != RESET) - 801005c: 4b4b ldr r3, [pc, #300] @ (801018c ) - 801005e: 681b ldr r3, [r3, #0] - 8010060: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 8010064: 2b00 cmp r3, #0 - 8010066: d1e9 bne.n 801003c + 8010078: 4b4b ldr r3, [pc, #300] @ (80101a8 ) + 801007a: 681b ldr r3, [r3, #0] + 801007c: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 8010080: 2b00 cmp r3, #0 + 8010082: d1e9 bne.n 8010058 #endif /* RCC_CR_PLL2ON */ /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 8010068: 687b ldr r3, [r7, #4] - 801006a: 6a1b ldr r3, [r3, #32] - 801006c: 2b00 cmp r3, #0 - 801006e: f000 8088 beq.w 8010182 + 8010084: 687b ldr r3, [r7, #4] + 8010086: 6a1b ldr r3, [r3, #32] + 8010088: 2b00 cmp r3, #0 + 801008a: f000 8088 beq.w 801019e { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 8010072: 4b46 ldr r3, [pc, #280] @ (801018c ) - 8010074: 685b ldr r3, [r3, #4] - 8010076: f003 030c and.w r3, r3, #12 - 801007a: 2b08 cmp r3, #8 - 801007c: d068 beq.n 8010150 + 801008e: 4b46 ldr r3, [pc, #280] @ (80101a8 ) + 8010090: 685b ldr r3, [r3, #4] + 8010092: f003 030c and.w r3, r3, #12 + 8010096: 2b08 cmp r3, #8 + 8010098: d068 beq.n 801016c { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 801007e: 687b ldr r3, [r7, #4] - 8010080: 6a1b ldr r3, [r3, #32] - 8010082: 2b02 cmp r3, #2 - 8010084: d14d bne.n 8010122 + 801009a: 687b ldr r3, [r7, #4] + 801009c: 6a1b ldr r3, [r3, #32] + 801009e: 2b02 cmp r3, #2 + 80100a0: d14d bne.n 801013e /* Check the parameters */ assert_param(IS_RCC_PLLSOURCE(RCC_OscInitStruct->PLL.PLLSource)); assert_param(IS_RCC_PLL_MUL(RCC_OscInitStruct->PLL.PLLMUL)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 8010086: 4b42 ldr r3, [pc, #264] @ (8010190 ) - 8010088: 2200 movs r2, #0 - 801008a: 601a str r2, [r3, #0] + 80100a2: 4b42 ldr r3, [pc, #264] @ (80101ac ) + 80100a4: 2200 movs r2, #0 + 80100a6: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 801008c: f7fd fc66 bl 800d95c - 8010090: 6138 str r0, [r7, #16] + 80100a8: f7fd fc66 bl 800d978 + 80100ac: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8010092: e008 b.n 80100a6 + 80100ae: e008 b.n 80100c2 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8010094: f7fd fc62 bl 800d95c - 8010098: 4602 mov r2, r0 - 801009a: 693b ldr r3, [r7, #16] - 801009c: 1ad3 subs r3, r2, r3 - 801009e: 2b02 cmp r3, #2 - 80100a0: d901 bls.n 80100a6 + 80100b0: f7fd fc62 bl 800d978 + 80100b4: 4602 mov r2, r0 + 80100b6: 693b ldr r3, [r7, #16] + 80100b8: 1ad3 subs r3, r2, r3 + 80100ba: 2b02 cmp r3, #2 + 80100bc: d901 bls.n 80100c2 { return HAL_TIMEOUT; - 80100a2: 2303 movs r3, #3 - 80100a4: e06e b.n 8010184 + 80100be: 2303 movs r3, #3 + 80100c0: e06e b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80100a6: 4b39 ldr r3, [pc, #228] @ (801018c ) - 80100a8: 681b ldr r3, [r3, #0] - 80100aa: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 80100ae: 2b00 cmp r3, #0 - 80100b0: d1f0 bne.n 8010094 + 80100c2: 4b39 ldr r3, [pc, #228] @ (80101a8 ) + 80100c4: 681b ldr r3, [r3, #0] + 80100c6: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 80100ca: 2b00 cmp r3, #0 + 80100cc: d1f0 bne.n 80100b0 } } /* Configure the HSE prediv factor --------------------------------*/ /* It can be written only when the PLL is disabled. Not used in PLL source is different than HSE */ if (RCC_OscInitStruct->PLL.PLLSource == RCC_PLLSOURCE_HSE) - 80100b2: 687b ldr r3, [r7, #4] - 80100b4: 6a5b ldr r3, [r3, #36] @ 0x24 - 80100b6: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 80100ba: d10f bne.n 80100dc + 80100ce: 687b ldr r3, [r7, #4] + 80100d0: 6a5b ldr r3, [r3, #36] @ 0x24 + 80100d2: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 80100d6: d10f bne.n 80100f8 assert_param(IS_RCC_HSE_PREDIV(RCC_OscInitStruct->HSEPredivValue)); #if defined(RCC_CFGR2_PREDIV1SRC) assert_param(IS_RCC_PREDIV1_SOURCE(RCC_OscInitStruct->Prediv1Source)); /* Set PREDIV1 source */ SET_BIT(RCC->CFGR2, RCC_OscInitStruct->Prediv1Source); - 80100bc: 4b33 ldr r3, [pc, #204] @ (801018c ) - 80100be: 6ada ldr r2, [r3, #44] @ 0x2c - 80100c0: 687b ldr r3, [r7, #4] - 80100c2: 685b ldr r3, [r3, #4] - 80100c4: 4931 ldr r1, [pc, #196] @ (801018c ) - 80100c6: 4313 orrs r3, r2 - 80100c8: 62cb str r3, [r1, #44] @ 0x2c + 80100d8: 4b33 ldr r3, [pc, #204] @ (80101a8 ) + 80100da: 6ada ldr r2, [r3, #44] @ 0x2c + 80100dc: 687b ldr r3, [r7, #4] + 80100de: 685b ldr r3, [r3, #4] + 80100e0: 4931 ldr r1, [pc, #196] @ (80101a8 ) + 80100e2: 4313 orrs r3, r2 + 80100e4: 62cb str r3, [r1, #44] @ 0x2c #endif /* RCC_CFGR2_PREDIV1SRC */ /* Set PREDIV1 Value */ __HAL_RCC_HSE_PREDIV_CONFIG(RCC_OscInitStruct->HSEPredivValue); - 80100ca: 4b30 ldr r3, [pc, #192] @ (801018c ) - 80100cc: 6adb ldr r3, [r3, #44] @ 0x2c - 80100ce: f023 020f bic.w r2, r3, #15 - 80100d2: 687b ldr r3, [r7, #4] - 80100d4: 68db ldr r3, [r3, #12] - 80100d6: 492d ldr r1, [pc, #180] @ (801018c ) - 80100d8: 4313 orrs r3, r2 - 80100da: 62cb str r3, [r1, #44] @ 0x2c + 80100e6: 4b30 ldr r3, [pc, #192] @ (80101a8 ) + 80100e8: 6adb ldr r3, [r3, #44] @ 0x2c + 80100ea: f023 020f bic.w r2, r3, #15 + 80100ee: 687b ldr r3, [r7, #4] + 80100f0: 68db ldr r3, [r3, #12] + 80100f2: 492d ldr r1, [pc, #180] @ (80101a8 ) + 80100f4: 4313 orrs r3, r2 + 80100f6: 62cb str r3, [r1, #44] @ 0x2c } /* Configure the main PLL clock source and multiplication factors. */ __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 80100dc: 4b2b ldr r3, [pc, #172] @ (801018c ) - 80100de: 685b ldr r3, [r3, #4] - 80100e0: f423 1274 bic.w r2, r3, #3997696 @ 0x3d0000 - 80100e4: 687b ldr r3, [r7, #4] - 80100e6: 6a59 ldr r1, [r3, #36] @ 0x24 - 80100e8: 687b ldr r3, [r7, #4] - 80100ea: 6a9b ldr r3, [r3, #40] @ 0x28 - 80100ec: 430b orrs r3, r1 - 80100ee: 4927 ldr r1, [pc, #156] @ (801018c ) - 80100f0: 4313 orrs r3, r2 - 80100f2: 604b str r3, [r1, #4] + 80100f8: 4b2b ldr r3, [pc, #172] @ (80101a8 ) + 80100fa: 685b ldr r3, [r3, #4] + 80100fc: f423 1274 bic.w r2, r3, #3997696 @ 0x3d0000 + 8010100: 687b ldr r3, [r7, #4] + 8010102: 6a59 ldr r1, [r3, #36] @ 0x24 + 8010104: 687b ldr r3, [r7, #4] + 8010106: 6a9b ldr r3, [r3, #40] @ 0x28 + 8010108: 430b orrs r3, r1 + 801010a: 4927 ldr r1, [pc, #156] @ (80101a8 ) + 801010c: 4313 orrs r3, r2 + 801010e: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLMUL); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 80100f4: 4b26 ldr r3, [pc, #152] @ (8010190 ) - 80100f6: 2201 movs r2, #1 - 80100f8: 601a str r2, [r3, #0] + 8010110: 4b26 ldr r3, [pc, #152] @ (80101ac ) + 8010112: 2201 movs r2, #1 + 8010114: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80100fa: f7fd fc2f bl 800d95c - 80100fe: 6138 str r0, [r7, #16] + 8010116: f7fd fc2f bl 800d978 + 801011a: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8010100: e008 b.n 8010114 + 801011c: e008 b.n 8010130 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8010102: f7fd fc2b bl 800d95c - 8010106: 4602 mov r2, r0 - 8010108: 693b ldr r3, [r7, #16] - 801010a: 1ad3 subs r3, r2, r3 - 801010c: 2b02 cmp r3, #2 - 801010e: d901 bls.n 8010114 + 801011e: f7fd fc2b bl 800d978 + 8010122: 4602 mov r2, r0 + 8010124: 693b ldr r3, [r7, #16] + 8010126: 1ad3 subs r3, r2, r3 + 8010128: 2b02 cmp r3, #2 + 801012a: d901 bls.n 8010130 { return HAL_TIMEOUT; - 8010110: 2303 movs r3, #3 - 8010112: e037 b.n 8010184 + 801012c: 2303 movs r3, #3 + 801012e: e037 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8010114: 4b1d ldr r3, [pc, #116] @ (801018c ) - 8010116: 681b ldr r3, [r3, #0] - 8010118: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 801011c: 2b00 cmp r3, #0 - 801011e: d0f0 beq.n 8010102 - 8010120: e02f b.n 8010182 + 8010130: 4b1d ldr r3, [pc, #116] @ (80101a8 ) + 8010132: 681b ldr r3, [r3, #0] + 8010134: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8010138: 2b00 cmp r3, #0 + 801013a: d0f0 beq.n 801011e + 801013c: e02f b.n 801019e } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 8010122: 4b1b ldr r3, [pc, #108] @ (8010190 ) - 8010124: 2200 movs r2, #0 - 8010126: 601a str r2, [r3, #0] + 801013e: 4b1b ldr r3, [pc, #108] @ (80101ac ) + 8010140: 2200 movs r2, #0 + 8010142: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8010128: f7fd fc18 bl 800d95c - 801012c: 6138 str r0, [r7, #16] + 8010144: f7fd fc18 bl 800d978 + 8010148: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 801012e: e008 b.n 8010142 + 801014a: e008 b.n 801015e { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 8010130: f7fd fc14 bl 800d95c - 8010134: 4602 mov r2, r0 - 8010136: 693b ldr r3, [r7, #16] - 8010138: 1ad3 subs r3, r2, r3 - 801013a: 2b02 cmp r3, #2 - 801013c: d901 bls.n 8010142 + 801014c: f7fd fc14 bl 800d978 + 8010150: 4602 mov r2, r0 + 8010152: 693b ldr r3, [r7, #16] + 8010154: 1ad3 subs r3, r2, r3 + 8010156: 2b02 cmp r3, #2 + 8010158: d901 bls.n 801015e { return HAL_TIMEOUT; - 801013e: 2303 movs r3, #3 - 8010140: e020 b.n 8010184 + 801015a: 2303 movs r3, #3 + 801015c: e020 b.n 80101a0 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8010142: 4b12 ldr r3, [pc, #72] @ (801018c ) - 8010144: 681b ldr r3, [r3, #0] - 8010146: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 801014a: 2b00 cmp r3, #0 - 801014c: d1f0 bne.n 8010130 - 801014e: e018 b.n 8010182 + 801015e: 4b12 ldr r3, [pc, #72] @ (80101a8 ) + 8010160: 681b ldr r3, [r3, #0] + 8010162: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8010166: 2b00 cmp r3, #0 + 8010168: d1f0 bne.n 801014c + 801016a: e018 b.n 801019e } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 8010150: 687b ldr r3, [r7, #4] - 8010152: 6a1b ldr r3, [r3, #32] - 8010154: 2b01 cmp r3, #1 - 8010156: d101 bne.n 801015c + 801016c: 687b ldr r3, [r7, #4] + 801016e: 6a1b ldr r3, [r3, #32] + 8010170: 2b01 cmp r3, #1 + 8010172: d101 bne.n 8010178 { return HAL_ERROR; - 8010158: 2301 movs r3, #1 - 801015a: e013 b.n 8010184 + 8010174: 2301 movs r3, #1 + 8010176: e013 b.n 80101a0 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->CFGR; - 801015c: 4b0b ldr r3, [pc, #44] @ (801018c ) - 801015e: 685b ldr r3, [r3, #4] - 8010160: 60fb str r3, [r7, #12] + 8010178: 4b0b ldr r3, [pc, #44] @ (80101a8 ) + 801017a: 685b ldr r3, [r3, #4] + 801017c: 60fb str r3, [r7, #12] if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8010162: 68fb ldr r3, [r7, #12] - 8010164: f403 3280 and.w r2, r3, #65536 @ 0x10000 - 8010168: 687b ldr r3, [r7, #4] - 801016a: 6a5b ldr r3, [r3, #36] @ 0x24 - 801016c: 429a cmp r2, r3 - 801016e: d106 bne.n 801017e + 801017e: 68fb ldr r3, [r7, #12] + 8010180: f403 3280 and.w r2, r3, #65536 @ 0x10000 + 8010184: 687b ldr r3, [r7, #4] + 8010186: 6a5b ldr r3, [r3, #36] @ 0x24 + 8010188: 429a cmp r2, r3 + 801018a: d106 bne.n 801019a (READ_BIT(pll_config, RCC_CFGR_PLLMULL) != RCC_OscInitStruct->PLL.PLLMUL)) - 8010170: 68fb ldr r3, [r7, #12] - 8010172: f403 1270 and.w r2, r3, #3932160 @ 0x3c0000 - 8010176: 687b ldr r3, [r7, #4] - 8010178: 6a9b ldr r3, [r3, #40] @ 0x28 + 801018c: 68fb ldr r3, [r7, #12] + 801018e: f403 1270 and.w r2, r3, #3932160 @ 0x3c0000 + 8010192: 687b ldr r3, [r7, #4] + 8010194: 6a9b ldr r3, [r3, #40] @ 0x28 if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 801017a: 429a cmp r2, r3 - 801017c: d001 beq.n 8010182 + 8010196: 429a cmp r2, r3 + 8010198: d001 beq.n 801019e { return HAL_ERROR; - 801017e: 2301 movs r3, #1 - 8010180: e000 b.n 8010184 + 801019a: 2301 movs r3, #1 + 801019c: e000 b.n 80101a0 } } } } return HAL_OK; - 8010182: 2300 movs r3, #0 + 801019e: 2300 movs r3, #0 } - 8010184: 4618 mov r0, r3 - 8010186: 3718 adds r7, #24 - 8010188: 46bd mov sp, r7 - 801018a: bd80 pop {r7, pc} - 801018c: 40021000 .word 0x40021000 - 8010190: 42420060 .word 0x42420060 + 80101a0: 4618 mov r0, r3 + 80101a2: 3718 adds r7, #24 + 80101a4: 46bd mov sp, r7 + 80101a6: bd80 pop {r7, pc} + 80101a8: 40021000 .word 0x40021000 + 80101ac: 42420060 .word 0x42420060 -08010194 : +080101b0 : * You can use @ref HAL_RCC_GetClockConfig() function to know which clock is * currently used as system clock source. * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 8010194: b580 push {r7, lr} - 8010196: b084 sub sp, #16 - 8010198: af00 add r7, sp, #0 - 801019a: 6078 str r0, [r7, #4] - 801019c: 6039 str r1, [r7, #0] + 80101b0: b580 push {r7, lr} + 80101b2: b084 sub sp, #16 + 80101b4: af00 add r7, sp, #0 + 80101b6: 6078 str r0, [r7, #4] + 80101b8: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 801019e: 687b ldr r3, [r7, #4] - 80101a0: 2b00 cmp r3, #0 - 80101a2: d101 bne.n 80101a8 + 80101ba: 687b ldr r3, [r7, #4] + 80101bc: 2b00 cmp r3, #0 + 80101be: d101 bne.n 80101c4 { return HAL_ERROR; - 80101a4: 2301 movs r3, #1 - 80101a6: e0d0 b.n 801034a + 80101c0: 2301 movs r3, #1 + 80101c2: e0d0 b.n 8010366 must be correctly programmed according to the frequency of the CPU clock (HCLK) of the device. */ #if defined(FLASH_ACR_LATENCY) /* Increasing the number of wait states because of higher CPU frequency */ if (FLatency > __HAL_FLASH_GET_LATENCY()) - 80101a8: 4b6a ldr r3, [pc, #424] @ (8010354 ) - 80101aa: 681b ldr r3, [r3, #0] - 80101ac: f003 0307 and.w r3, r3, #7 - 80101b0: 683a ldr r2, [r7, #0] - 80101b2: 429a cmp r2, r3 - 80101b4: d910 bls.n 80101d8 + 80101c4: 4b6a ldr r3, [pc, #424] @ (8010370 ) + 80101c6: 681b ldr r3, [r3, #0] + 80101c8: f003 0307 and.w r3, r3, #7 + 80101cc: 683a ldr r2, [r7, #0] + 80101ce: 429a cmp r2, r3 + 80101d0: d910 bls.n 80101f4 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80101b6: 4b67 ldr r3, [pc, #412] @ (8010354 ) - 80101b8: 681b ldr r3, [r3, #0] - 80101ba: f023 0207 bic.w r2, r3, #7 - 80101be: 4965 ldr r1, [pc, #404] @ (8010354 ) - 80101c0: 683b ldr r3, [r7, #0] - 80101c2: 4313 orrs r3, r2 - 80101c4: 600b str r3, [r1, #0] + 80101d2: 4b67 ldr r3, [pc, #412] @ (8010370 ) + 80101d4: 681b ldr r3, [r3, #0] + 80101d6: f023 0207 bic.w r2, r3, #7 + 80101da: 4965 ldr r1, [pc, #404] @ (8010370 ) + 80101dc: 683b ldr r3, [r7, #0] + 80101de: 4313 orrs r3, r2 + 80101e0: 600b str r3, [r1, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 80101c6: 4b63 ldr r3, [pc, #396] @ (8010354 ) - 80101c8: 681b ldr r3, [r3, #0] - 80101ca: f003 0307 and.w r3, r3, #7 - 80101ce: 683a ldr r2, [r7, #0] - 80101d0: 429a cmp r2, r3 - 80101d2: d001 beq.n 80101d8 + 80101e2: 4b63 ldr r3, [pc, #396] @ (8010370 ) + 80101e4: 681b ldr r3, [r3, #0] + 80101e6: f003 0307 and.w r3, r3, #7 + 80101ea: 683a ldr r2, [r7, #0] + 80101ec: 429a cmp r2, r3 + 80101ee: d001 beq.n 80101f4 { return HAL_ERROR; - 80101d4: 2301 movs r3, #1 - 80101d6: e0b8 b.n 801034a + 80101f0: 2301 movs r3, #1 + 80101f2: e0b8 b.n 8010366 } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 80101d8: 687b ldr r3, [r7, #4] - 80101da: 681b ldr r3, [r3, #0] - 80101dc: f003 0302 and.w r3, r3, #2 - 80101e0: 2b00 cmp r3, #0 - 80101e2: d020 beq.n 8010226 + 80101f4: 687b ldr r3, [r7, #4] + 80101f6: 681b ldr r3, [r3, #0] + 80101f8: f003 0302 and.w r3, r3, #2 + 80101fc: 2b00 cmp r3, #0 + 80101fe: d020 beq.n 8010242 { /* 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) - 80101e4: 687b ldr r3, [r7, #4] - 80101e6: 681b ldr r3, [r3, #0] - 80101e8: f003 0304 and.w r3, r3, #4 - 80101ec: 2b00 cmp r3, #0 - 80101ee: d005 beq.n 80101fc + 8010200: 687b ldr r3, [r7, #4] + 8010202: 681b ldr r3, [r3, #0] + 8010204: f003 0304 and.w r3, r3, #4 + 8010208: 2b00 cmp r3, #0 + 801020a: d005 beq.n 8010218 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 80101f0: 4b59 ldr r3, [pc, #356] @ (8010358 ) - 80101f2: 685b ldr r3, [r3, #4] - 80101f4: 4a58 ldr r2, [pc, #352] @ (8010358 ) - 80101f6: f443 63e0 orr.w r3, r3, #1792 @ 0x700 - 80101fa: 6053 str r3, [r2, #4] + 801020c: 4b59 ldr r3, [pc, #356] @ (8010374 ) + 801020e: 685b ldr r3, [r3, #4] + 8010210: 4a58 ldr r2, [pc, #352] @ (8010374 ) + 8010212: f443 63e0 orr.w r3, r3, #1792 @ 0x700 + 8010216: 6053 str r3, [r2, #4] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80101fc: 687b ldr r3, [r7, #4] - 80101fe: 681b ldr r3, [r3, #0] - 8010200: f003 0308 and.w r3, r3, #8 - 8010204: 2b00 cmp r3, #0 - 8010206: d005 beq.n 8010214 + 8010218: 687b ldr r3, [r7, #4] + 801021a: 681b ldr r3, [r3, #0] + 801021c: f003 0308 and.w r3, r3, #8 + 8010220: 2b00 cmp r3, #0 + 8010222: d005 beq.n 8010230 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 8010208: 4b53 ldr r3, [pc, #332] @ (8010358 ) - 801020a: 685b ldr r3, [r3, #4] - 801020c: 4a52 ldr r2, [pc, #328] @ (8010358 ) - 801020e: f443 5360 orr.w r3, r3, #14336 @ 0x3800 - 8010212: 6053 str r3, [r2, #4] + 8010224: 4b53 ldr r3, [pc, #332] @ (8010374 ) + 8010226: 685b ldr r3, [r3, #4] + 8010228: 4a52 ldr r2, [pc, #328] @ (8010374 ) + 801022a: f443 5360 orr.w r3, r3, #14336 @ 0x3800 + 801022e: 6053 str r3, [r2, #4] } /* Set the new HCLK clock divider */ assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 8010214: 4b50 ldr r3, [pc, #320] @ (8010358 ) - 8010216: 685b ldr r3, [r3, #4] - 8010218: f023 02f0 bic.w r2, r3, #240 @ 0xf0 - 801021c: 687b ldr r3, [r7, #4] - 801021e: 689b ldr r3, [r3, #8] - 8010220: 494d ldr r1, [pc, #308] @ (8010358 ) - 8010222: 4313 orrs r3, r2 - 8010224: 604b str r3, [r1, #4] + 8010230: 4b50 ldr r3, [pc, #320] @ (8010374 ) + 8010232: 685b ldr r3, [r3, #4] + 8010234: f023 02f0 bic.w r2, r3, #240 @ 0xf0 + 8010238: 687b ldr r3, [r7, #4] + 801023a: 689b ldr r3, [r3, #8] + 801023c: 494d ldr r1, [pc, #308] @ (8010374 ) + 801023e: 4313 orrs r3, r2 + 8010240: 604b str r3, [r1, #4] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 8010226: 687b ldr r3, [r7, #4] - 8010228: 681b ldr r3, [r3, #0] - 801022a: f003 0301 and.w r3, r3, #1 - 801022e: 2b00 cmp r3, #0 - 8010230: d040 beq.n 80102b4 + 8010242: 687b ldr r3, [r7, #4] + 8010244: 681b ldr r3, [r3, #0] + 8010246: f003 0301 and.w r3, r3, #1 + 801024a: 2b00 cmp r3, #0 + 801024c: d040 beq.n 80102d0 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8010232: 687b ldr r3, [r7, #4] - 8010234: 685b ldr r3, [r3, #4] - 8010236: 2b01 cmp r3, #1 - 8010238: d107 bne.n 801024a + 801024e: 687b ldr r3, [r7, #4] + 8010250: 685b ldr r3, [r3, #4] + 8010252: 2b01 cmp r3, #1 + 8010254: d107 bne.n 8010266 { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 801023a: 4b47 ldr r3, [pc, #284] @ (8010358 ) - 801023c: 681b ldr r3, [r3, #0] - 801023e: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8010242: 2b00 cmp r3, #0 - 8010244: d115 bne.n 8010272 + 8010256: 4b47 ldr r3, [pc, #284] @ (8010374 ) + 8010258: 681b ldr r3, [r3, #0] + 801025a: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 801025e: 2b00 cmp r3, #0 + 8010260: d115 bne.n 801028e { return HAL_ERROR; - 8010246: 2301 movs r3, #1 - 8010248: e07f b.n 801034a + 8010262: 2301 movs r3, #1 + 8010264: e07f b.n 8010366 } } /* PLL is selected as System Clock Source */ else if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 801024a: 687b ldr r3, [r7, #4] - 801024c: 685b ldr r3, [r3, #4] - 801024e: 2b02 cmp r3, #2 - 8010250: d107 bne.n 8010262 + 8010266: 687b ldr r3, [r7, #4] + 8010268: 685b ldr r3, [r3, #4] + 801026a: 2b02 cmp r3, #2 + 801026c: d107 bne.n 801027e { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 8010252: 4b41 ldr r3, [pc, #260] @ (8010358 ) - 8010254: 681b ldr r3, [r3, #0] - 8010256: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 801025a: 2b00 cmp r3, #0 - 801025c: d109 bne.n 8010272 + 801026e: 4b41 ldr r3, [pc, #260] @ (8010374 ) + 8010270: 681b ldr r3, [r3, #0] + 8010272: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8010276: 2b00 cmp r3, #0 + 8010278: d109 bne.n 801028e { return HAL_ERROR; - 801025e: 2301 movs r3, #1 - 8010260: e073 b.n 801034a + 801027a: 2301 movs r3, #1 + 801027c: e073 b.n 8010366 } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8010262: 4b3d ldr r3, [pc, #244] @ (8010358 ) - 8010264: 681b ldr r3, [r3, #0] - 8010266: f003 0302 and.w r3, r3, #2 - 801026a: 2b00 cmp r3, #0 - 801026c: d101 bne.n 8010272 + 801027e: 4b3d ldr r3, [pc, #244] @ (8010374 ) + 8010280: 681b ldr r3, [r3, #0] + 8010282: f003 0302 and.w r3, r3, #2 + 8010286: 2b00 cmp r3, #0 + 8010288: d101 bne.n 801028e { return HAL_ERROR; - 801026e: 2301 movs r3, #1 - 8010270: e06b b.n 801034a + 801028a: 2301 movs r3, #1 + 801028c: e06b b.n 8010366 } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 8010272: 4b39 ldr r3, [pc, #228] @ (8010358 ) - 8010274: 685b ldr r3, [r3, #4] - 8010276: f023 0203 bic.w r2, r3, #3 - 801027a: 687b ldr r3, [r7, #4] - 801027c: 685b ldr r3, [r3, #4] - 801027e: 4936 ldr r1, [pc, #216] @ (8010358 ) - 8010280: 4313 orrs r3, r2 - 8010282: 604b str r3, [r1, #4] + 801028e: 4b39 ldr r3, [pc, #228] @ (8010374 ) + 8010290: 685b ldr r3, [r3, #4] + 8010292: f023 0203 bic.w r2, r3, #3 + 8010296: 687b ldr r3, [r7, #4] + 8010298: 685b ldr r3, [r3, #4] + 801029a: 4936 ldr r1, [pc, #216] @ (8010374 ) + 801029c: 4313 orrs r3, r2 + 801029e: 604b str r3, [r1, #4] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8010284: f7fd fb6a bl 800d95c - 8010288: 60f8 str r0, [r7, #12] + 80102a0: f7fd fb6a bl 800d978 + 80102a4: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 801028a: e00a b.n 80102a2 + 80102a6: e00a b.n 80102be { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 801028c: f7fd fb66 bl 800d95c - 8010290: 4602 mov r2, r0 - 8010292: 68fb ldr r3, [r7, #12] - 8010294: 1ad3 subs r3, r2, r3 - 8010296: f241 3288 movw r2, #5000 @ 0x1388 - 801029a: 4293 cmp r3, r2 - 801029c: d901 bls.n 80102a2 + 80102a8: f7fd fb66 bl 800d978 + 80102ac: 4602 mov r2, r0 + 80102ae: 68fb ldr r3, [r7, #12] + 80102b0: 1ad3 subs r3, r2, r3 + 80102b2: f241 3288 movw r2, #5000 @ 0x1388 + 80102b6: 4293 cmp r3, r2 + 80102b8: d901 bls.n 80102be { return HAL_TIMEOUT; - 801029e: 2303 movs r3, #3 - 80102a0: e053 b.n 801034a + 80102ba: 2303 movs r3, #3 + 80102bc: e053 b.n 8010366 while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 80102a2: 4b2d ldr r3, [pc, #180] @ (8010358 ) - 80102a4: 685b ldr r3, [r3, #4] - 80102a6: f003 020c and.w r2, r3, #12 - 80102aa: 687b ldr r3, [r7, #4] - 80102ac: 685b ldr r3, [r3, #4] - 80102ae: 009b lsls r3, r3, #2 - 80102b0: 429a cmp r2, r3 - 80102b2: d1eb bne.n 801028c + 80102be: 4b2d ldr r3, [pc, #180] @ (8010374 ) + 80102c0: 685b ldr r3, [r3, #4] + 80102c2: f003 020c and.w r2, r3, #12 + 80102c6: 687b ldr r3, [r7, #4] + 80102c8: 685b ldr r3, [r3, #4] + 80102ca: 009b lsls r3, r3, #2 + 80102cc: 429a cmp r2, r3 + 80102ce: d1eb bne.n 80102a8 } } #if defined(FLASH_ACR_LATENCY) /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 80102b4: 4b27 ldr r3, [pc, #156] @ (8010354 ) - 80102b6: 681b ldr r3, [r3, #0] - 80102b8: f003 0307 and.w r3, r3, #7 - 80102bc: 683a ldr r2, [r7, #0] - 80102be: 429a cmp r2, r3 - 80102c0: d210 bcs.n 80102e4 + 80102d0: 4b27 ldr r3, [pc, #156] @ (8010370 ) + 80102d2: 681b ldr r3, [r3, #0] + 80102d4: f003 0307 and.w r3, r3, #7 + 80102d8: 683a ldr r2, [r7, #0] + 80102da: 429a cmp r2, r3 + 80102dc: d210 bcs.n 8010300 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80102c2: 4b24 ldr r3, [pc, #144] @ (8010354 ) - 80102c4: 681b ldr r3, [r3, #0] - 80102c6: f023 0207 bic.w r2, r3, #7 - 80102ca: 4922 ldr r1, [pc, #136] @ (8010354 ) - 80102cc: 683b ldr r3, [r7, #0] - 80102ce: 4313 orrs r3, r2 - 80102d0: 600b str r3, [r1, #0] + 80102de: 4b24 ldr r3, [pc, #144] @ (8010370 ) + 80102e0: 681b ldr r3, [r3, #0] + 80102e2: f023 0207 bic.w r2, r3, #7 + 80102e6: 4922 ldr r1, [pc, #136] @ (8010370 ) + 80102e8: 683b ldr r3, [r7, #0] + 80102ea: 4313 orrs r3, r2 + 80102ec: 600b str r3, [r1, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 80102d2: 4b20 ldr r3, [pc, #128] @ (8010354 ) - 80102d4: 681b ldr r3, [r3, #0] - 80102d6: f003 0307 and.w r3, r3, #7 - 80102da: 683a ldr r2, [r7, #0] - 80102dc: 429a cmp r2, r3 - 80102de: d001 beq.n 80102e4 + 80102ee: 4b20 ldr r3, [pc, #128] @ (8010370 ) + 80102f0: 681b ldr r3, [r3, #0] + 80102f2: f003 0307 and.w r3, r3, #7 + 80102f6: 683a ldr r2, [r7, #0] + 80102f8: 429a cmp r2, r3 + 80102fa: d001 beq.n 8010300 { return HAL_ERROR; - 80102e0: 2301 movs r3, #1 - 80102e2: e032 b.n 801034a + 80102fc: 2301 movs r3, #1 + 80102fe: e032 b.n 8010366 } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80102e4: 687b ldr r3, [r7, #4] - 80102e6: 681b ldr r3, [r3, #0] - 80102e8: f003 0304 and.w r3, r3, #4 - 80102ec: 2b00 cmp r3, #0 - 80102ee: d008 beq.n 8010302 + 8010300: 687b ldr r3, [r7, #4] + 8010302: 681b ldr r3, [r3, #0] + 8010304: f003 0304 and.w r3, r3, #4 + 8010308: 2b00 cmp r3, #0 + 801030a: d008 beq.n 801031e { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80102f0: 4b19 ldr r3, [pc, #100] @ (8010358 ) - 80102f2: 685b ldr r3, [r3, #4] - 80102f4: f423 62e0 bic.w r2, r3, #1792 @ 0x700 - 80102f8: 687b ldr r3, [r7, #4] - 80102fa: 68db ldr r3, [r3, #12] - 80102fc: 4916 ldr r1, [pc, #88] @ (8010358 ) - 80102fe: 4313 orrs r3, r2 - 8010300: 604b str r3, [r1, #4] + 801030c: 4b19 ldr r3, [pc, #100] @ (8010374 ) + 801030e: 685b ldr r3, [r3, #4] + 8010310: f423 62e0 bic.w r2, r3, #1792 @ 0x700 + 8010314: 687b ldr r3, [r7, #4] + 8010316: 68db ldr r3, [r3, #12] + 8010318: 4916 ldr r1, [pc, #88] @ (8010374 ) + 801031a: 4313 orrs r3, r2 + 801031c: 604b str r3, [r1, #4] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8010302: 687b ldr r3, [r7, #4] - 8010304: 681b ldr r3, [r3, #0] - 8010306: f003 0308 and.w r3, r3, #8 - 801030a: 2b00 cmp r3, #0 - 801030c: d009 beq.n 8010322 + 801031e: 687b ldr r3, [r7, #4] + 8010320: 681b ldr r3, [r3, #0] + 8010322: f003 0308 and.w r3, r3, #8 + 8010326: 2b00 cmp r3, #0 + 8010328: d009 beq.n 801033e { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); - 801030e: 4b12 ldr r3, [pc, #72] @ (8010358 ) - 8010310: 685b ldr r3, [r3, #4] - 8010312: f423 5260 bic.w r2, r3, #14336 @ 0x3800 - 8010316: 687b ldr r3, [r7, #4] - 8010318: 691b ldr r3, [r3, #16] - 801031a: 00db lsls r3, r3, #3 - 801031c: 490e ldr r1, [pc, #56] @ (8010358 ) - 801031e: 4313 orrs r3, r2 - 8010320: 604b str r3, [r1, #4] + 801032a: 4b12 ldr r3, [pc, #72] @ (8010374 ) + 801032c: 685b ldr r3, [r3, #4] + 801032e: f423 5260 bic.w r2, r3, #14336 @ 0x3800 + 8010332: 687b ldr r3, [r7, #4] + 8010334: 691b ldr r3, [r3, #16] + 8010336: 00db lsls r3, r3, #3 + 8010338: 490e ldr r1, [pc, #56] @ (8010374 ) + 801033a: 4313 orrs r3, r2 + 801033c: 604b str r3, [r1, #4] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 8010322: f000 f821 bl 8010368 - 8010326: 4602 mov r2, r0 - 8010328: 4b0b ldr r3, [pc, #44] @ (8010358 ) - 801032a: 685b ldr r3, [r3, #4] - 801032c: 091b lsrs r3, r3, #4 - 801032e: f003 030f and.w r3, r3, #15 - 8010332: 490a ldr r1, [pc, #40] @ (801035c ) - 8010334: 5ccb ldrb r3, [r1, r3] - 8010336: fa22 f303 lsr.w r3, r2, r3 - 801033a: 4a09 ldr r2, [pc, #36] @ (8010360 ) - 801033c: 6013 str r3, [r2, #0] + 801033e: f000 f821 bl 8010384 + 8010342: 4602 mov r2, r0 + 8010344: 4b0b ldr r3, [pc, #44] @ (8010374 ) + 8010346: 685b ldr r3, [r3, #4] + 8010348: 091b lsrs r3, r3, #4 + 801034a: f003 030f and.w r3, r3, #15 + 801034e: 490a ldr r1, [pc, #40] @ (8010378 ) + 8010350: 5ccb ldrb r3, [r1, r3] + 8010352: fa22 f303 lsr.w r3, r2, r3 + 8010356: 4a09 ldr r2, [pc, #36] @ (801037c ) + 8010358: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings*/ HAL_InitTick(uwTickPrio); - 801033e: 4b09 ldr r3, [pc, #36] @ (8010364 ) - 8010340: 681b ldr r3, [r3, #0] - 8010342: 4618 mov r0, r3 - 8010344: f7fd fac8 bl 800d8d8 + 801035a: 4b09 ldr r3, [pc, #36] @ (8010380 ) + 801035c: 681b ldr r3, [r3, #0] + 801035e: 4618 mov r0, r3 + 8010360: f7fd fac8 bl 800d8f4 return HAL_OK; - 8010348: 2300 movs r3, #0 + 8010364: 2300 movs r3, #0 } - 801034a: 4618 mov r0, r3 - 801034c: 3710 adds r7, #16 - 801034e: 46bd mov sp, r7 - 8010350: bd80 pop {r7, pc} - 8010352: bf00 nop - 8010354: 40022000 .word 0x40022000 - 8010358: 40021000 .word 0x40021000 - 801035c: 08014424 .word 0x08014424 - 8010360: 2000006c .word 0x2000006c - 8010364: 20000070 .word 0x20000070 + 8010366: 4618 mov r0, r3 + 8010368: 3710 adds r7, #16 + 801036a: 46bd mov sp, r7 + 801036c: bd80 pop {r7, pc} + 801036e: bf00 nop + 8010370: 40022000 .word 0x40022000 + 8010374: 40021000 .word 0x40021000 + 8010378: 08014440 .word 0x08014440 + 801037c: 2000006c .word 0x2000006c + 8010380: 20000070 .word 0x20000070 -08010368 : +08010384 : * right SYSCLK value. Otherwise, any configuration based on this function will be incorrect. * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 8010368: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 801036c: b08e sub sp, #56 @ 0x38 - 801036e: af00 add r7, sp, #0 + 8010384: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8010388: b08e sub sp, #56 @ 0x38 + 801038a: af00 add r7, sp, #0 #else static const uint8_t aPredivFactorTable[2U] = {1, 2}; #endif /*RCC_CFGR2_PREDIV1*/ #endif uint32_t tmpreg = 0U, prediv = 0U, pllclk = 0U, pllmul = 0U; - 8010370: 2300 movs r3, #0 - 8010372: 62fb str r3, [r7, #44] @ 0x2c - 8010374: 2300 movs r3, #0 - 8010376: 62bb str r3, [r7, #40] @ 0x28 - 8010378: 2300 movs r3, #0 - 801037a: 637b str r3, [r7, #52] @ 0x34 - 801037c: 2300 movs r3, #0 - 801037e: 627b str r3, [r7, #36] @ 0x24 + 801038c: 2300 movs r3, #0 + 801038e: 62fb str r3, [r7, #44] @ 0x2c + 8010390: 2300 movs r3, #0 + 8010392: 62bb str r3, [r7, #40] @ 0x28 + 8010394: 2300 movs r3, #0 + 8010396: 637b str r3, [r7, #52] @ 0x34 + 8010398: 2300 movs r3, #0 + 801039a: 627b str r3, [r7, #36] @ 0x24 uint32_t sysclockfreq = 0U; - 8010380: 2300 movs r3, #0 - 8010382: 633b str r3, [r7, #48] @ 0x30 + 801039c: 2300 movs r3, #0 + 801039e: 633b str r3, [r7, #48] @ 0x30 #if defined(RCC_CFGR2_PREDIV1SRC) uint32_t prediv2 = 0U, pll2mul = 0U; - 8010384: 2300 movs r3, #0 - 8010386: 623b str r3, [r7, #32] - 8010388: 2300 movs r3, #0 - 801038a: 61fb str r3, [r7, #28] + 80103a0: 2300 movs r3, #0 + 80103a2: 623b str r3, [r7, #32] + 80103a4: 2300 movs r3, #0 + 80103a6: 61fb str r3, [r7, #28] #endif /*RCC_CFGR2_PREDIV1SRC*/ tmpreg = RCC->CFGR; - 801038c: 4b4e ldr r3, [pc, #312] @ (80104c8 ) - 801038e: 685b ldr r3, [r3, #4] - 8010390: 62fb str r3, [r7, #44] @ 0x2c + 80103a8: 4b4e ldr r3, [pc, #312] @ (80104e4 ) + 80103aa: 685b ldr r3, [r3, #4] + 80103ac: 62fb str r3, [r7, #44] @ 0x2c /* Get SYSCLK source -------------------------------------------------------*/ switch (tmpreg & RCC_CFGR_SWS) - 8010392: 6afb ldr r3, [r7, #44] @ 0x2c - 8010394: f003 030c and.w r3, r3, #12 - 8010398: 2b04 cmp r3, #4 - 801039a: d002 beq.n 80103a2 - 801039c: 2b08 cmp r3, #8 - 801039e: d003 beq.n 80103a8 - 80103a0: e089 b.n 80104b6 + 80103ae: 6afb ldr r3, [r7, #44] @ 0x2c + 80103b0: f003 030c and.w r3, r3, #12 + 80103b4: 2b04 cmp r3, #4 + 80103b6: d002 beq.n 80103be + 80103b8: 2b08 cmp r3, #8 + 80103ba: d003 beq.n 80103c4 + 80103bc: e089 b.n 80104d2 { case RCC_SYSCLKSOURCE_STATUS_HSE: /* HSE used as system clock */ { sysclockfreq = HSE_VALUE; - 80103a2: 4b4a ldr r3, [pc, #296] @ (80104cc ) - 80103a4: 633b str r3, [r7, #48] @ 0x30 + 80103be: 4b4a ldr r3, [pc, #296] @ (80104e8 ) + 80103c0: 633b str r3, [r7, #48] @ 0x30 break; - 80103a6: e089 b.n 80104bc + 80103c2: e089 b.n 80104d8 } case RCC_SYSCLKSOURCE_STATUS_PLLCLK: /* PLL used as system clock */ { pllmul = aPLLMULFactorTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMULL) >> RCC_CFGR_PLLMULL_Pos]; - 80103a8: 6afb ldr r3, [r7, #44] @ 0x2c - 80103aa: 0c9b lsrs r3, r3, #18 - 80103ac: f003 020f and.w r2, r3, #15 - 80103b0: 4b47 ldr r3, [pc, #284] @ (80104d0 ) - 80103b2: 5c9b ldrb r3, [r3, r2] - 80103b4: 627b str r3, [r7, #36] @ 0x24 + 80103c4: 6afb ldr r3, [r7, #44] @ 0x2c + 80103c6: 0c9b lsrs r3, r3, #18 + 80103c8: f003 020f and.w r2, r3, #15 + 80103cc: 4b47 ldr r3, [pc, #284] @ (80104ec ) + 80103ce: 5c9b ldrb r3, [r3, r2] + 80103d0: 627b str r3, [r7, #36] @ 0x24 if ((tmpreg & RCC_CFGR_PLLSRC) != RCC_PLLSOURCE_HSI_DIV2) - 80103b6: 6afb ldr r3, [r7, #44] @ 0x2c - 80103b8: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 80103bc: 2b00 cmp r3, #0 - 80103be: d072 beq.n 80104a6 + 80103d2: 6afb ldr r3, [r7, #44] @ 0x2c + 80103d4: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 80103d8: 2b00 cmp r3, #0 + 80103da: d072 beq.n 80104c2 { #if defined(RCC_CFGR2_PREDIV1) prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR2 & RCC_CFGR2_PREDIV1) >> RCC_CFGR2_PREDIV1_Pos]; - 80103c0: 4b41 ldr r3, [pc, #260] @ (80104c8 ) - 80103c2: 6adb ldr r3, [r3, #44] @ 0x2c - 80103c4: f003 020f and.w r2, r3, #15 - 80103c8: 4b42 ldr r3, [pc, #264] @ (80104d4 ) - 80103ca: 5c9b ldrb r3, [r3, r2] - 80103cc: 62bb str r3, [r7, #40] @ 0x28 + 80103dc: 4b41 ldr r3, [pc, #260] @ (80104e4 ) + 80103de: 6adb ldr r3, [r3, #44] @ 0x2c + 80103e0: f003 020f and.w r2, r3, #15 + 80103e4: 4b42 ldr r3, [pc, #264] @ (80104f0 ) + 80103e6: 5c9b ldrb r3, [r3, r2] + 80103e8: 62bb str r3, [r7, #40] @ 0x28 #else prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR & RCC_CFGR_PLLXTPRE) >> RCC_CFGR_PLLXTPRE_Pos]; #endif /*RCC_CFGR2_PREDIV1*/ #if defined(RCC_CFGR2_PREDIV1SRC) if (HAL_IS_BIT_SET(RCC->CFGR2, RCC_CFGR2_PREDIV1SRC)) - 80103ce: 4b3e ldr r3, [pc, #248] @ (80104c8 ) - 80103d0: 6adb ldr r3, [r3, #44] @ 0x2c - 80103d2: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 80103d6: 2b00 cmp r3, #0 - 80103d8: d053 beq.n 8010482 + 80103ea: 4b3e ldr r3, [pc, #248] @ (80104e4 ) + 80103ec: 6adb ldr r3, [r3, #44] @ 0x2c + 80103ee: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 80103f2: 2b00 cmp r3, #0 + 80103f4: d053 beq.n 801049e { /* PLL2 selected as Prediv1 source */ /* PLLCLK = PLL2CLK / PREDIV1 * PLLMUL with PLL2CLK = HSE/PREDIV2 * PLL2MUL */ prediv2 = ((RCC->CFGR2 & RCC_CFGR2_PREDIV2) >> RCC_CFGR2_PREDIV2_Pos) + 1; - 80103da: 4b3b ldr r3, [pc, #236] @ (80104c8 ) - 80103dc: 6adb ldr r3, [r3, #44] @ 0x2c - 80103de: 091b lsrs r3, r3, #4 - 80103e0: f003 030f and.w r3, r3, #15 - 80103e4: 3301 adds r3, #1 - 80103e6: 623b str r3, [r7, #32] + 80103f6: 4b3b ldr r3, [pc, #236] @ (80104e4 ) + 80103f8: 6adb ldr r3, [r3, #44] @ 0x2c + 80103fa: 091b lsrs r3, r3, #4 + 80103fc: f003 030f and.w r3, r3, #15 + 8010400: 3301 adds r3, #1 + 8010402: 623b str r3, [r7, #32] pll2mul = ((RCC->CFGR2 & RCC_CFGR2_PLL2MUL) >> RCC_CFGR2_PLL2MUL_Pos) + 2; - 80103e8: 4b37 ldr r3, [pc, #220] @ (80104c8 ) - 80103ea: 6adb ldr r3, [r3, #44] @ 0x2c - 80103ec: 0a1b lsrs r3, r3, #8 - 80103ee: f003 030f and.w r3, r3, #15 - 80103f2: 3302 adds r3, #2 - 80103f4: 61fb str r3, [r7, #28] + 8010404: 4b37 ldr r3, [pc, #220] @ (80104e4 ) + 8010406: 6adb ldr r3, [r3, #44] @ 0x2c + 8010408: 0a1b lsrs r3, r3, #8 + 801040a: f003 030f and.w r3, r3, #15 + 801040e: 3302 adds r3, #2 + 8010410: 61fb str r3, [r7, #28] pllclk = (uint32_t)(((uint64_t)HSE_VALUE * (uint64_t)pll2mul * (uint64_t)pllmul) / ((uint64_t)prediv2 * (uint64_t)prediv)); - 80103f6: 69fb ldr r3, [r7, #28] - 80103f8: 2200 movs r2, #0 - 80103fa: 469a mov sl, r3 - 80103fc: 4693 mov fp, r2 - 80103fe: 6a7b ldr r3, [r7, #36] @ 0x24 - 8010400: 2200 movs r2, #0 - 8010402: 613b str r3, [r7, #16] - 8010404: 617a str r2, [r7, #20] - 8010406: 693b ldr r3, [r7, #16] - 8010408: fb03 f20b mul.w r2, r3, fp - 801040c: 697b ldr r3, [r7, #20] - 801040e: fb0a f303 mul.w r3, sl, r3 - 8010412: 4413 add r3, r2 - 8010414: 693a ldr r2, [r7, #16] - 8010416: fbaa 0102 umull r0, r1, sl, r2 - 801041a: 440b add r3, r1 - 801041c: 4619 mov r1, r3 - 801041e: 4b2b ldr r3, [pc, #172] @ (80104cc ) - 8010420: fb03 f201 mul.w r2, r3, r1 - 8010424: 2300 movs r3, #0 - 8010426: fb00 f303 mul.w r3, r0, r3 - 801042a: 4413 add r3, r2 - 801042c: 4a27 ldr r2, [pc, #156] @ (80104cc ) - 801042e: fba0 4502 umull r4, r5, r0, r2 - 8010432: 442b add r3, r5 - 8010434: 461d mov r5, r3 - 8010436: 6a3b ldr r3, [r7, #32] - 8010438: 2200 movs r2, #0 - 801043a: 60bb str r3, [r7, #8] - 801043c: 60fa str r2, [r7, #12] - 801043e: 6abb ldr r3, [r7, #40] @ 0x28 - 8010440: 2200 movs r2, #0 - 8010442: 603b str r3, [r7, #0] - 8010444: 607a str r2, [r7, #4] - 8010446: e9d7 0102 ldrd r0, r1, [r7, #8] - 801044a: 460b mov r3, r1 - 801044c: e9d7 ab00 ldrd sl, fp, [r7] - 8010450: 4652 mov r2, sl - 8010452: fb02 f203 mul.w r2, r2, r3 - 8010456: 465b mov r3, fp - 8010458: 4684 mov ip, r0 - 801045a: fb0c f303 mul.w r3, ip, r3 - 801045e: 4413 add r3, r2 - 8010460: 4602 mov r2, r0 - 8010462: 4651 mov r1, sl - 8010464: fba2 8901 umull r8, r9, r2, r1 - 8010468: 444b add r3, r9 - 801046a: 4699 mov r9, r3 - 801046c: 4642 mov r2, r8 - 801046e: 464b mov r3, r9 - 8010470: 4620 mov r0, r4 - 8010472: 4629 mov r1, r5 - 8010474: f7f8 fdf0 bl 8009058 <__aeabi_uldivmod> - 8010478: 4602 mov r2, r0 - 801047a: 460b mov r3, r1 - 801047c: 4613 mov r3, r2 - 801047e: 637b str r3, [r7, #52] @ 0x34 - 8010480: e007 b.n 8010492 + 8010412: 69fb ldr r3, [r7, #28] + 8010414: 2200 movs r2, #0 + 8010416: 469a mov sl, r3 + 8010418: 4693 mov fp, r2 + 801041a: 6a7b ldr r3, [r7, #36] @ 0x24 + 801041c: 2200 movs r2, #0 + 801041e: 613b str r3, [r7, #16] + 8010420: 617a str r2, [r7, #20] + 8010422: 693b ldr r3, [r7, #16] + 8010424: fb03 f20b mul.w r2, r3, fp + 8010428: 697b ldr r3, [r7, #20] + 801042a: fb0a f303 mul.w r3, sl, r3 + 801042e: 4413 add r3, r2 + 8010430: 693a ldr r2, [r7, #16] + 8010432: fbaa 0102 umull r0, r1, sl, r2 + 8010436: 440b add r3, r1 + 8010438: 4619 mov r1, r3 + 801043a: 4b2b ldr r3, [pc, #172] @ (80104e8 ) + 801043c: fb03 f201 mul.w r2, r3, r1 + 8010440: 2300 movs r3, #0 + 8010442: fb00 f303 mul.w r3, r0, r3 + 8010446: 4413 add r3, r2 + 8010448: 4a27 ldr r2, [pc, #156] @ (80104e8 ) + 801044a: fba0 4502 umull r4, r5, r0, r2 + 801044e: 442b add r3, r5 + 8010450: 461d mov r5, r3 + 8010452: 6a3b ldr r3, [r7, #32] + 8010454: 2200 movs r2, #0 + 8010456: 60bb str r3, [r7, #8] + 8010458: 60fa str r2, [r7, #12] + 801045a: 6abb ldr r3, [r7, #40] @ 0x28 + 801045c: 2200 movs r2, #0 + 801045e: 603b str r3, [r7, #0] + 8010460: 607a str r2, [r7, #4] + 8010462: e9d7 0102 ldrd r0, r1, [r7, #8] + 8010466: 460b mov r3, r1 + 8010468: e9d7 ab00 ldrd sl, fp, [r7] + 801046c: 4652 mov r2, sl + 801046e: fb02 f203 mul.w r2, r2, r3 + 8010472: 465b mov r3, fp + 8010474: 4684 mov ip, r0 + 8010476: fb0c f303 mul.w r3, ip, r3 + 801047a: 4413 add r3, r2 + 801047c: 4602 mov r2, r0 + 801047e: 4651 mov r1, sl + 8010480: fba2 8901 umull r8, r9, r2, r1 + 8010484: 444b add r3, r9 + 8010486: 4699 mov r9, r3 + 8010488: 4642 mov r2, r8 + 801048a: 464b mov r3, r9 + 801048c: 4620 mov r0, r4 + 801048e: 4629 mov r1, r5 + 8010490: f7f8 fde2 bl 8009058 <__aeabi_uldivmod> + 8010494: 4602 mov r2, r0 + 8010496: 460b mov r3, r1 + 8010498: 4613 mov r3, r2 + 801049a: 637b str r3, [r7, #52] @ 0x34 + 801049c: e007 b.n 80104ae } else { /* HSE used as PLL clock source : PLLCLK = HSE/PREDIV1 * PLLMUL */ pllclk = (uint32_t)((HSE_VALUE * pllmul) / prediv); - 8010482: 6a7b ldr r3, [r7, #36] @ 0x24 - 8010484: 4a11 ldr r2, [pc, #68] @ (80104cc ) - 8010486: fb03 f202 mul.w r2, r3, r2 - 801048a: 6abb ldr r3, [r7, #40] @ 0x28 - 801048c: fbb2 f3f3 udiv r3, r2, r3 - 8010490: 637b str r3, [r7, #52] @ 0x34 + 801049e: 6a7b ldr r3, [r7, #36] @ 0x24 + 80104a0: 4a11 ldr r2, [pc, #68] @ (80104e8 ) + 80104a2: fb03 f202 mul.w r2, r3, r2 + 80104a6: 6abb ldr r3, [r7, #40] @ 0x28 + 80104a8: fbb2 f3f3 udiv r3, r2, r3 + 80104ac: 637b str r3, [r7, #52] @ 0x34 } /* If PLLMUL was set to 13 means that it was to cover the case PLLMUL 6.5 (avoid using float) */ /* In this case need to divide pllclk by 2 */ if (pllmul == aPLLMULFactorTable[(uint32_t)(RCC_CFGR_PLLMULL6_5) >> RCC_CFGR_PLLMULL_Pos]) - 8010492: 4b0f ldr r3, [pc, #60] @ (80104d0 ) - 8010494: 7b5b ldrb r3, [r3, #13] - 8010496: 461a mov r2, r3 - 8010498: 6a7b ldr r3, [r7, #36] @ 0x24 - 801049a: 4293 cmp r3, r2 - 801049c: d108 bne.n 80104b0 + 80104ae: 4b0f ldr r3, [pc, #60] @ (80104ec ) + 80104b0: 7b5b ldrb r3, [r3, #13] + 80104b2: 461a mov r2, r3 + 80104b4: 6a7b ldr r3, [r7, #36] @ 0x24 + 80104b6: 4293 cmp r3, r2 + 80104b8: d108 bne.n 80104cc { pllclk = pllclk / 2; - 801049e: 6b7b ldr r3, [r7, #52] @ 0x34 - 80104a0: 085b lsrs r3, r3, #1 - 80104a2: 637b str r3, [r7, #52] @ 0x34 - 80104a4: e004 b.n 80104b0 + 80104ba: 6b7b ldr r3, [r7, #52] @ 0x34 + 80104bc: 085b lsrs r3, r3, #1 + 80104be: 637b str r3, [r7, #52] @ 0x34 + 80104c0: e004 b.n 80104cc #endif /*RCC_CFGR2_PREDIV1SRC*/ } else { /* HSI used as PLL clock source : PLLCLK = HSI/2 * PLLMUL */ pllclk = (uint32_t)((HSI_VALUE >> 1) * pllmul); - 80104a6: 6a7b ldr r3, [r7, #36] @ 0x24 - 80104a8: 4a0b ldr r2, [pc, #44] @ (80104d8 ) - 80104aa: fb02 f303 mul.w r3, r2, r3 - 80104ae: 637b str r3, [r7, #52] @ 0x34 + 80104c2: 6a7b ldr r3, [r7, #36] @ 0x24 + 80104c4: 4a0b ldr r2, [pc, #44] @ (80104f4 ) + 80104c6: fb02 f303 mul.w r3, r2, r3 + 80104ca: 637b str r3, [r7, #52] @ 0x34 } sysclockfreq = pllclk; - 80104b0: 6b7b ldr r3, [r7, #52] @ 0x34 - 80104b2: 633b str r3, [r7, #48] @ 0x30 + 80104cc: 6b7b ldr r3, [r7, #52] @ 0x34 + 80104ce: 633b str r3, [r7, #48] @ 0x30 break; - 80104b4: e002 b.n 80104bc + 80104d0: e002 b.n 80104d8 } case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ default: /* HSI used as system clock */ { sysclockfreq = HSI_VALUE; - 80104b6: 4b09 ldr r3, [pc, #36] @ (80104dc ) - 80104b8: 633b str r3, [r7, #48] @ 0x30 + 80104d2: 4b09 ldr r3, [pc, #36] @ (80104f8 ) + 80104d4: 633b str r3, [r7, #48] @ 0x30 break; - 80104ba: bf00 nop + 80104d6: bf00 nop } } return sysclockfreq; - 80104bc: 6b3b ldr r3, [r7, #48] @ 0x30 + 80104d8: 6b3b ldr r3, [r7, #48] @ 0x30 } - 80104be: 4618 mov r0, r3 - 80104c0: 3738 adds r7, #56 @ 0x38 - 80104c2: 46bd mov sp, r7 - 80104c4: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 80104c8: 40021000 .word 0x40021000 - 80104cc: 017d7840 .word 0x017d7840 - 80104d0: 0801443c .word 0x0801443c - 80104d4: 0801444c .word 0x0801444c - 80104d8: 003d0900 .word 0x003d0900 - 80104dc: 007a1200 .word 0x007a1200 + 80104da: 4618 mov r0, r3 + 80104dc: 3738 adds r7, #56 @ 0x38 + 80104de: 46bd mov sp, r7 + 80104e0: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 80104e4: 40021000 .word 0x40021000 + 80104e8: 017d7840 .word 0x017d7840 + 80104ec: 08014458 .word 0x08014458 + 80104f0: 08014468 .word 0x08014468 + 80104f4: 003d0900 .word 0x003d0900 + 80104f8: 007a1200 .word 0x007a1200 -080104e0 : +080104fc : * @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) { - 80104e0: b480 push {r7} - 80104e2: af00 add r7, sp, #0 + 80104fc: b480 push {r7} + 80104fe: af00 add r7, sp, #0 return SystemCoreClock; - 80104e4: 4b02 ldr r3, [pc, #8] @ (80104f0 ) - 80104e6: 681b ldr r3, [r3, #0] + 8010500: 4b02 ldr r3, [pc, #8] @ (801050c ) + 8010502: 681b ldr r3, [r3, #0] } - 80104e8: 4618 mov r0, r3 - 80104ea: 46bd mov sp, r7 - 80104ec: bc80 pop {r7} - 80104ee: 4770 bx lr - 80104f0: 2000006c .word 0x2000006c + 8010504: 4618 mov r0, r3 + 8010506: 46bd mov sp, r7 + 8010508: bc80 pop {r7} + 801050a: 4770 bx lr + 801050c: 2000006c .word 0x2000006c -080104f4 : +08010510 : * @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) { - 80104f4: b580 push {r7, lr} - 80104f6: af00 add r7, sp, #0 + 8010510: b580 push {r7, lr} + 8010512: 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]); - 80104f8: f7ff fff2 bl 80104e0 - 80104fc: 4602 mov r2, r0 - 80104fe: 4b05 ldr r3, [pc, #20] @ (8010514 ) - 8010500: 685b ldr r3, [r3, #4] - 8010502: 0a1b lsrs r3, r3, #8 - 8010504: f003 0307 and.w r3, r3, #7 - 8010508: 4903 ldr r1, [pc, #12] @ (8010518 ) - 801050a: 5ccb ldrb r3, [r1, r3] - 801050c: fa22 f303 lsr.w r3, r2, r3 + 8010514: f7ff fff2 bl 80104fc + 8010518: 4602 mov r2, r0 + 801051a: 4b05 ldr r3, [pc, #20] @ (8010530 ) + 801051c: 685b ldr r3, [r3, #4] + 801051e: 0a1b lsrs r3, r3, #8 + 8010520: f003 0307 and.w r3, r3, #7 + 8010524: 4903 ldr r1, [pc, #12] @ (8010534 ) + 8010526: 5ccb ldrb r3, [r1, r3] + 8010528: fa22 f303 lsr.w r3, r2, r3 } - 8010510: 4618 mov r0, r3 - 8010512: bd80 pop {r7, pc} - 8010514: 40021000 .word 0x40021000 - 8010518: 08014434 .word 0x08014434 + 801052c: 4618 mov r0, r3 + 801052e: bd80 pop {r7, pc} + 8010530: 40021000 .word 0x40021000 + 8010534: 08014450 .word 0x08014450 -0801051c : +08010538 : * @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) { - 801051c: b580 push {r7, lr} - 801051e: af00 add r7, sp, #0 + 8010538: b580 push {r7, lr} + 801053a: 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]); - 8010520: f7ff ffde bl 80104e0 - 8010524: 4602 mov r2, r0 - 8010526: 4b05 ldr r3, [pc, #20] @ (801053c ) - 8010528: 685b ldr r3, [r3, #4] - 801052a: 0adb lsrs r3, r3, #11 - 801052c: f003 0307 and.w r3, r3, #7 - 8010530: 4903 ldr r1, [pc, #12] @ (8010540 ) - 8010532: 5ccb ldrb r3, [r1, r3] - 8010534: fa22 f303 lsr.w r3, r2, r3 + 801053c: f7ff ffde bl 80104fc + 8010540: 4602 mov r2, r0 + 8010542: 4b05 ldr r3, [pc, #20] @ (8010558 ) + 8010544: 685b ldr r3, [r3, #4] + 8010546: 0adb lsrs r3, r3, #11 + 8010548: f003 0307 and.w r3, r3, #7 + 801054c: 4903 ldr r1, [pc, #12] @ (801055c ) + 801054e: 5ccb ldrb r3, [r1, r3] + 8010550: fa22 f303 lsr.w r3, r2, r3 } - 8010538: 4618 mov r0, r3 - 801053a: bd80 pop {r7, pc} - 801053c: 40021000 .word 0x40021000 - 8010540: 08014434 .word 0x08014434 + 8010554: 4618 mov r0, r3 + 8010556: bd80 pop {r7, pc} + 8010558: 40021000 .word 0x40021000 + 801055c: 08014450 .word 0x08014450 -08010544 : +08010560 : * @brief This function provides delay (in milliseconds) based on CPU cycles method. * @param mdelay: specifies the delay time length, in milliseconds. * @retval None */ static void RCC_Delay(uint32_t mdelay) { - 8010544: b480 push {r7} - 8010546: b085 sub sp, #20 - 8010548: af00 add r7, sp, #0 - 801054a: 6078 str r0, [r7, #4] + 8010560: b480 push {r7} + 8010562: b085 sub sp, #20 + 8010564: af00 add r7, sp, #0 + 8010566: 6078 str r0, [r7, #4] __IO uint32_t Delay = mdelay * (SystemCoreClock / 8U / 1000U); - 801054c: 4b0a ldr r3, [pc, #40] @ (8010578 ) - 801054e: 681b ldr r3, [r3, #0] - 8010550: 4a0a ldr r2, [pc, #40] @ (801057c ) - 8010552: fba2 2303 umull r2, r3, r2, r3 - 8010556: 0a5b lsrs r3, r3, #9 - 8010558: 687a ldr r2, [r7, #4] - 801055a: fb02 f303 mul.w r3, r2, r3 - 801055e: 60fb str r3, [r7, #12] + 8010568: 4b0a ldr r3, [pc, #40] @ (8010594 ) + 801056a: 681b ldr r3, [r3, #0] + 801056c: 4a0a ldr r2, [pc, #40] @ (8010598 ) + 801056e: fba2 2303 umull r2, r3, r2, r3 + 8010572: 0a5b lsrs r3, r3, #9 + 8010574: 687a ldr r2, [r7, #4] + 8010576: fb02 f303 mul.w r3, r2, r3 + 801057a: 60fb str r3, [r7, #12] do { __NOP(); - 8010560: bf00 nop + 801057c: bf00 nop } while (Delay --); - 8010562: 68fb ldr r3, [r7, #12] - 8010564: 1e5a subs r2, r3, #1 - 8010566: 60fa str r2, [r7, #12] - 8010568: 2b00 cmp r3, #0 - 801056a: d1f9 bne.n 8010560 + 801057e: 68fb ldr r3, [r7, #12] + 8010580: 1e5a subs r2, r3, #1 + 8010582: 60fa str r2, [r7, #12] + 8010584: 2b00 cmp r3, #0 + 8010586: d1f9 bne.n 801057c } - 801056c: bf00 nop - 801056e: bf00 nop - 8010570: 3714 adds r7, #20 - 8010572: 46bd mov sp, r7 - 8010574: bc80 pop {r7} - 8010576: 4770 bx lr - 8010578: 2000006c .word 0x2000006c - 801057c: 10624dd3 .word 0x10624dd3 + 8010588: bf00 nop + 801058a: bf00 nop + 801058c: 3714 adds r7, #20 + 801058e: 46bd mov sp, r7 + 8010590: bc80 pop {r7} + 8010592: 4770 bx lr + 8010594: 2000006c .word 0x2000006c + 8010598: 10624dd3 .word 0x10624dd3 -08010580 : +0801059c : * manually disable it. * * @retval HAL status */ HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit) { - 8010580: b580 push {r7, lr} - 8010582: b088 sub sp, #32 - 8010584: af00 add r7, sp, #0 - 8010586: 6078 str r0, [r7, #4] + 801059c: b580 push {r7, lr} + 801059e: b088 sub sp, #32 + 80105a0: af00 add r7, sp, #0 + 80105a2: 6078 str r0, [r7, #4] uint32_t tickstart = 0U, temp_reg = 0U; - 8010588: 2300 movs r3, #0 - 801058a: 617b str r3, [r7, #20] - 801058c: 2300 movs r3, #0 - 801058e: 613b str r3, [r7, #16] + 80105a4: 2300 movs r3, #0 + 80105a6: 617b str r3, [r7, #20] + 80105a8: 2300 movs r3, #0 + 80105aa: 613b str r3, [r7, #16] #if defined(STM32F105xC) || defined(STM32F107xC) uint32_t pllactive = 0U; - 8010590: 2300 movs r3, #0 - 8010592: 61fb str r3, [r7, #28] + 80105ac: 2300 movs r3, #0 + 80105ae: 61fb str r3, [r7, #28] /* Check the parameters */ assert_param(IS_RCC_PERIPHCLOCK(PeriphClkInit->PeriphClockSelection)); /*------------------------------- RTC/LCD Configuration ------------------------*/ if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == RCC_PERIPHCLK_RTC)) - 8010594: 687b ldr r3, [r7, #4] - 8010596: 681b ldr r3, [r3, #0] - 8010598: f003 0301 and.w r3, r3, #1 - 801059c: 2b00 cmp r3, #0 - 801059e: d07d beq.n 801069c + 80105b0: 687b ldr r3, [r7, #4] + 80105b2: 681b ldr r3, [r3, #0] + 80105b4: f003 0301 and.w r3, r3, #1 + 80105b8: 2b00 cmp r3, #0 + 80105ba: d07d beq.n 80106b8 { FlagStatus pwrclkchanged = RESET; - 80105a0: 2300 movs r3, #0 - 80105a2: 76fb strb r3, [r7, #27] + 80105bc: 2300 movs r3, #0 + 80105be: 76fb strb r3, [r7, #27] assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection)); /* As soon as function is called to change RTC clock source, activation of the power domain is done. */ /* Requires to enable write access to Backup Domain of necessary */ if (__HAL_RCC_PWR_IS_CLK_DISABLED()) - 80105a4: 4b8b ldr r3, [pc, #556] @ (80107d4 ) - 80105a6: 69db ldr r3, [r3, #28] - 80105a8: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80105ac: 2b00 cmp r3, #0 - 80105ae: d10d bne.n 80105cc + 80105c0: 4b8b ldr r3, [pc, #556] @ (80107f0 ) + 80105c2: 69db ldr r3, [r3, #28] + 80105c4: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80105c8: 2b00 cmp r3, #0 + 80105ca: d10d bne.n 80105e8 { __HAL_RCC_PWR_CLK_ENABLE(); - 80105b0: 4b88 ldr r3, [pc, #544] @ (80107d4 ) - 80105b2: 69db ldr r3, [r3, #28] - 80105b4: 4a87 ldr r2, [pc, #540] @ (80107d4 ) - 80105b6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80105ba: 61d3 str r3, [r2, #28] - 80105bc: 4b85 ldr r3, [pc, #532] @ (80107d4 ) - 80105be: 69db ldr r3, [r3, #28] - 80105c0: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80105c4: 60fb str r3, [r7, #12] - 80105c6: 68fb ldr r3, [r7, #12] + 80105cc: 4b88 ldr r3, [pc, #544] @ (80107f0 ) + 80105ce: 69db ldr r3, [r3, #28] + 80105d0: 4a87 ldr r2, [pc, #540] @ (80107f0 ) + 80105d2: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80105d6: 61d3 str r3, [r2, #28] + 80105d8: 4b85 ldr r3, [pc, #532] @ (80107f0 ) + 80105da: 69db ldr r3, [r3, #28] + 80105dc: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80105e0: 60fb str r3, [r7, #12] + 80105e2: 68fb ldr r3, [r7, #12] pwrclkchanged = SET; - 80105c8: 2301 movs r3, #1 - 80105ca: 76fb strb r3, [r7, #27] + 80105e4: 2301 movs r3, #1 + 80105e6: 76fb strb r3, [r7, #27] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80105cc: 4b82 ldr r3, [pc, #520] @ (80107d8 ) - 80105ce: 681b ldr r3, [r3, #0] - 80105d0: f403 7380 and.w r3, r3, #256 @ 0x100 - 80105d4: 2b00 cmp r3, #0 - 80105d6: d118 bne.n 801060a + 80105e8: 4b82 ldr r3, [pc, #520] @ (80107f4 ) + 80105ea: 681b ldr r3, [r3, #0] + 80105ec: f403 7380 and.w r3, r3, #256 @ 0x100 + 80105f0: 2b00 cmp r3, #0 + 80105f2: d118 bne.n 8010626 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 80105d8: 4b7f ldr r3, [pc, #508] @ (80107d8 ) - 80105da: 681b ldr r3, [r3, #0] - 80105dc: 4a7e ldr r2, [pc, #504] @ (80107d8 ) - 80105de: f443 7380 orr.w r3, r3, #256 @ 0x100 - 80105e2: 6013 str r3, [r2, #0] + 80105f4: 4b7f ldr r3, [pc, #508] @ (80107f4 ) + 80105f6: 681b ldr r3, [r3, #0] + 80105f8: 4a7e ldr r2, [pc, #504] @ (80107f4 ) + 80105fa: f443 7380 orr.w r3, r3, #256 @ 0x100 + 80105fe: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 80105e4: f7fd f9ba bl 800d95c - 80105e8: 6178 str r0, [r7, #20] + 8010600: f7fd f9ba bl 800d978 + 8010604: 6178 str r0, [r7, #20] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80105ea: e008 b.n 80105fe + 8010606: e008 b.n 801061a { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 80105ec: f7fd f9b6 bl 800d95c - 80105f0: 4602 mov r2, r0 - 80105f2: 697b ldr r3, [r7, #20] - 80105f4: 1ad3 subs r3, r2, r3 - 80105f6: 2b64 cmp r3, #100 @ 0x64 - 80105f8: d901 bls.n 80105fe + 8010608: f7fd f9b6 bl 800d978 + 801060c: 4602 mov r2, r0 + 801060e: 697b ldr r3, [r7, #20] + 8010610: 1ad3 subs r3, r2, r3 + 8010612: 2b64 cmp r3, #100 @ 0x64 + 8010614: d901 bls.n 801061a { return HAL_TIMEOUT; - 80105fa: 2303 movs r3, #3 - 80105fc: e0e5 b.n 80107ca + 8010616: 2303 movs r3, #3 + 8010618: e0e5 b.n 80107e6 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 80105fe: 4b76 ldr r3, [pc, #472] @ (80107d8 ) - 8010600: 681b ldr r3, [r3, #0] - 8010602: f403 7380 and.w r3, r3, #256 @ 0x100 - 8010606: 2b00 cmp r3, #0 - 8010608: d0f0 beq.n 80105ec + 801061a: 4b76 ldr r3, [pc, #472] @ (80107f4 ) + 801061c: 681b ldr r3, [r3, #0] + 801061e: f403 7380 and.w r3, r3, #256 @ 0x100 + 8010622: 2b00 cmp r3, #0 + 8010624: d0f0 beq.n 8010608 } } } /* Reset the Backup domain only if the RTC Clock source selection is modified from reset value */ temp_reg = (RCC->BDCR & RCC_BDCR_RTCSEL); - 801060a: 4b72 ldr r3, [pc, #456] @ (80107d4 ) - 801060c: 6a1b ldr r3, [r3, #32] - 801060e: f403 7340 and.w r3, r3, #768 @ 0x300 - 8010612: 613b str r3, [r7, #16] + 8010626: 4b72 ldr r3, [pc, #456] @ (80107f0 ) + 8010628: 6a1b ldr r3, [r3, #32] + 801062a: f403 7340 and.w r3, r3, #768 @ 0x300 + 801062e: 613b str r3, [r7, #16] if ((temp_reg != 0x00000000U) && (temp_reg != (PeriphClkInit->RTCClockSelection & RCC_BDCR_RTCSEL))) - 8010614: 693b ldr r3, [r7, #16] - 8010616: 2b00 cmp r3, #0 - 8010618: d02e beq.n 8010678 - 801061a: 687b ldr r3, [r7, #4] - 801061c: 685b ldr r3, [r3, #4] - 801061e: f403 7340 and.w r3, r3, #768 @ 0x300 - 8010622: 693a ldr r2, [r7, #16] - 8010624: 429a cmp r2, r3 - 8010626: d027 beq.n 8010678 + 8010630: 693b ldr r3, [r7, #16] + 8010632: 2b00 cmp r3, #0 + 8010634: d02e beq.n 8010694 + 8010636: 687b ldr r3, [r7, #4] + 8010638: 685b ldr r3, [r3, #4] + 801063a: f403 7340 and.w r3, r3, #768 @ 0x300 + 801063e: 693a ldr r2, [r7, #16] + 8010640: 429a cmp r2, r3 + 8010642: d027 beq.n 8010694 { /* Store the content of BDCR register before the reset of Backup Domain */ temp_reg = (RCC->BDCR & ~(RCC_BDCR_RTCSEL)); - 8010628: 4b6a ldr r3, [pc, #424] @ (80107d4 ) - 801062a: 6a1b ldr r3, [r3, #32] - 801062c: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8010630: 613b str r3, [r7, #16] + 8010644: 4b6a ldr r3, [pc, #424] @ (80107f0 ) + 8010646: 6a1b ldr r3, [r3, #32] + 8010648: f423 7340 bic.w r3, r3, #768 @ 0x300 + 801064c: 613b str r3, [r7, #16] /* RTC Clock selection can be changed only if the Backup Domain is reset */ __HAL_RCC_BACKUPRESET_FORCE(); - 8010632: 4b6a ldr r3, [pc, #424] @ (80107dc ) - 8010634: 2201 movs r2, #1 - 8010636: 601a str r2, [r3, #0] + 801064e: 4b6a ldr r3, [pc, #424] @ (80107f8 ) + 8010650: 2201 movs r2, #1 + 8010652: 601a str r2, [r3, #0] __HAL_RCC_BACKUPRESET_RELEASE(); - 8010638: 4b68 ldr r3, [pc, #416] @ (80107dc ) - 801063a: 2200 movs r2, #0 - 801063c: 601a str r2, [r3, #0] + 8010654: 4b68 ldr r3, [pc, #416] @ (80107f8 ) + 8010656: 2200 movs r2, #0 + 8010658: 601a str r2, [r3, #0] /* Restore the Content of BDCR register */ RCC->BDCR = temp_reg; - 801063e: 4a65 ldr r2, [pc, #404] @ (80107d4 ) - 8010640: 693b ldr r3, [r7, #16] - 8010642: 6213 str r3, [r2, #32] + 801065a: 4a65 ldr r2, [pc, #404] @ (80107f0 ) + 801065c: 693b ldr r3, [r7, #16] + 801065e: 6213 str r3, [r2, #32] /* Wait for LSERDY if LSE was enabled */ if (HAL_IS_BIT_SET(temp_reg, RCC_BDCR_LSEON)) - 8010644: 693b ldr r3, [r7, #16] - 8010646: f003 0301 and.w r3, r3, #1 - 801064a: 2b00 cmp r3, #0 - 801064c: d014 beq.n 8010678 + 8010660: 693b ldr r3, [r7, #16] + 8010662: f003 0301 and.w r3, r3, #1 + 8010666: 2b00 cmp r3, #0 + 8010668: d014 beq.n 8010694 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 801064e: f7fd f985 bl 800d95c - 8010652: 6178 str r0, [r7, #20] + 801066a: f7fd f985 bl 800d978 + 801066e: 6178 str r0, [r7, #20] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8010654: e00a b.n 801066c + 8010670: e00a b.n 8010688 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 8010656: f7fd f981 bl 800d95c - 801065a: 4602 mov r2, r0 - 801065c: 697b ldr r3, [r7, #20] - 801065e: 1ad3 subs r3, r2, r3 - 8010660: f241 3288 movw r2, #5000 @ 0x1388 - 8010664: 4293 cmp r3, r2 - 8010666: d901 bls.n 801066c + 8010672: f7fd f981 bl 800d978 + 8010676: 4602 mov r2, r0 + 8010678: 697b ldr r3, [r7, #20] + 801067a: 1ad3 subs r3, r2, r3 + 801067c: f241 3288 movw r2, #5000 @ 0x1388 + 8010680: 4293 cmp r3, r2 + 8010682: d901 bls.n 8010688 { return HAL_TIMEOUT; - 8010668: 2303 movs r3, #3 - 801066a: e0ae b.n 80107ca + 8010684: 2303 movs r3, #3 + 8010686: e0ae b.n 80107e6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 801066c: 4b59 ldr r3, [pc, #356] @ (80107d4 ) - 801066e: 6a1b ldr r3, [r3, #32] - 8010670: f003 0302 and.w r3, r3, #2 - 8010674: 2b00 cmp r3, #0 - 8010676: d0ee beq.n 8010656 + 8010688: 4b59 ldr r3, [pc, #356] @ (80107f0 ) + 801068a: 6a1b ldr r3, [r3, #32] + 801068c: f003 0302 and.w r3, r3, #2 + 8010690: 2b00 cmp r3, #0 + 8010692: d0ee beq.n 8010672 } } } } __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); - 8010678: 4b56 ldr r3, [pc, #344] @ (80107d4 ) - 801067a: 6a1b ldr r3, [r3, #32] - 801067c: f423 7240 bic.w r2, r3, #768 @ 0x300 - 8010680: 687b ldr r3, [r7, #4] - 8010682: 685b ldr r3, [r3, #4] - 8010684: 4953 ldr r1, [pc, #332] @ (80107d4 ) - 8010686: 4313 orrs r3, r2 - 8010688: 620b str r3, [r1, #32] + 8010694: 4b56 ldr r3, [pc, #344] @ (80107f0 ) + 8010696: 6a1b ldr r3, [r3, #32] + 8010698: f423 7240 bic.w r2, r3, #768 @ 0x300 + 801069c: 687b ldr r3, [r7, #4] + 801069e: 685b ldr r3, [r3, #4] + 80106a0: 4953 ldr r1, [pc, #332] @ (80107f0 ) + 80106a2: 4313 orrs r3, r2 + 80106a4: 620b str r3, [r1, #32] /* Require to disable power clock if necessary */ if (pwrclkchanged == SET) - 801068a: 7efb ldrb r3, [r7, #27] - 801068c: 2b01 cmp r3, #1 - 801068e: d105 bne.n 801069c + 80106a6: 7efb ldrb r3, [r7, #27] + 80106a8: 2b01 cmp r3, #1 + 80106aa: d105 bne.n 80106b8 { __HAL_RCC_PWR_CLK_DISABLE(); - 8010690: 4b50 ldr r3, [pc, #320] @ (80107d4 ) - 8010692: 69db ldr r3, [r3, #28] - 8010694: 4a4f ldr r2, [pc, #316] @ (80107d4 ) - 8010696: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 - 801069a: 61d3 str r3, [r2, #28] + 80106ac: 4b50 ldr r3, [pc, #320] @ (80107f0 ) + 80106ae: 69db ldr r3, [r3, #28] + 80106b0: 4a4f ldr r2, [pc, #316] @ (80107f0 ) + 80106b2: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 + 80106b6: 61d3 str r3, [r2, #28] } } /*------------------------------ ADC clock Configuration ------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_ADC) == RCC_PERIPHCLK_ADC) - 801069c: 687b ldr r3, [r7, #4] - 801069e: 681b ldr r3, [r3, #0] - 80106a0: f003 0302 and.w r3, r3, #2 - 80106a4: 2b00 cmp r3, #0 - 80106a6: d008 beq.n 80106ba + 80106b8: 687b ldr r3, [r7, #4] + 80106ba: 681b ldr r3, [r3, #0] + 80106bc: f003 0302 and.w r3, r3, #2 + 80106c0: 2b00 cmp r3, #0 + 80106c2: d008 beq.n 80106d6 { /* Check the parameters */ assert_param(IS_RCC_ADCPLLCLK_DIV(PeriphClkInit->AdcClockSelection)); /* Configure the ADC clock source */ __HAL_RCC_ADC_CONFIG(PeriphClkInit->AdcClockSelection); - 80106a8: 4b4a ldr r3, [pc, #296] @ (80107d4 ) - 80106aa: 685b ldr r3, [r3, #4] - 80106ac: f423 4240 bic.w r2, r3, #49152 @ 0xc000 - 80106b0: 687b ldr r3, [r7, #4] - 80106b2: 689b ldr r3, [r3, #8] - 80106b4: 4947 ldr r1, [pc, #284] @ (80107d4 ) - 80106b6: 4313 orrs r3, r2 - 80106b8: 604b str r3, [r1, #4] + 80106c4: 4b4a ldr r3, [pc, #296] @ (80107f0 ) + 80106c6: 685b ldr r3, [r3, #4] + 80106c8: f423 4240 bic.w r2, r3, #49152 @ 0xc000 + 80106cc: 687b ldr r3, [r7, #4] + 80106ce: 689b ldr r3, [r3, #8] + 80106d0: 4947 ldr r1, [pc, #284] @ (80107f0 ) + 80106d2: 4313 orrs r3, r2 + 80106d4: 604b str r3, [r1, #4] } #if defined(STM32F105xC) || defined(STM32F107xC) /*------------------------------ I2S2 Configuration ------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S2) == RCC_PERIPHCLK_I2S2) - 80106ba: 687b ldr r3, [r7, #4] - 80106bc: 681b ldr r3, [r3, #0] - 80106be: f003 0304 and.w r3, r3, #4 - 80106c2: 2b00 cmp r3, #0 - 80106c4: d008 beq.n 80106d8 + 80106d6: 687b ldr r3, [r7, #4] + 80106d8: 681b ldr r3, [r3, #0] + 80106da: f003 0304 and.w r3, r3, #4 + 80106de: 2b00 cmp r3, #0 + 80106e0: d008 beq.n 80106f4 { /* Check the parameters */ assert_param(IS_RCC_I2S2CLKSOURCE(PeriphClkInit->I2s2ClockSelection)); /* Configure the I2S2 clock source */ __HAL_RCC_I2S2_CONFIG(PeriphClkInit->I2s2ClockSelection); - 80106c6: 4b43 ldr r3, [pc, #268] @ (80107d4 ) - 80106c8: 6adb ldr r3, [r3, #44] @ 0x2c - 80106ca: f423 3200 bic.w r2, r3, #131072 @ 0x20000 - 80106ce: 687b ldr r3, [r7, #4] - 80106d0: 68db ldr r3, [r3, #12] - 80106d2: 4940 ldr r1, [pc, #256] @ (80107d4 ) - 80106d4: 4313 orrs r3, r2 - 80106d6: 62cb str r3, [r1, #44] @ 0x2c + 80106e2: 4b43 ldr r3, [pc, #268] @ (80107f0 ) + 80106e4: 6adb ldr r3, [r3, #44] @ 0x2c + 80106e6: f423 3200 bic.w r2, r3, #131072 @ 0x20000 + 80106ea: 687b ldr r3, [r7, #4] + 80106ec: 68db ldr r3, [r3, #12] + 80106ee: 4940 ldr r1, [pc, #256] @ (80107f0 ) + 80106f0: 4313 orrs r3, r2 + 80106f2: 62cb str r3, [r1, #44] @ 0x2c } /*------------------------------ I2S3 Configuration ------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S3) == RCC_PERIPHCLK_I2S3) - 80106d8: 687b ldr r3, [r7, #4] - 80106da: 681b ldr r3, [r3, #0] - 80106dc: f003 0308 and.w r3, r3, #8 - 80106e0: 2b00 cmp r3, #0 - 80106e2: d008 beq.n 80106f6 + 80106f4: 687b ldr r3, [r7, #4] + 80106f6: 681b ldr r3, [r3, #0] + 80106f8: f003 0308 and.w r3, r3, #8 + 80106fc: 2b00 cmp r3, #0 + 80106fe: d008 beq.n 8010712 { /* Check the parameters */ assert_param(IS_RCC_I2S3CLKSOURCE(PeriphClkInit->I2s3ClockSelection)); /* Configure the I2S3 clock source */ __HAL_RCC_I2S3_CONFIG(PeriphClkInit->I2s3ClockSelection); - 80106e4: 4b3b ldr r3, [pc, #236] @ (80107d4 ) - 80106e6: 6adb ldr r3, [r3, #44] @ 0x2c - 80106e8: f423 2280 bic.w r2, r3, #262144 @ 0x40000 - 80106ec: 687b ldr r3, [r7, #4] - 80106ee: 691b ldr r3, [r3, #16] - 80106f0: 4938 ldr r1, [pc, #224] @ (80107d4 ) - 80106f2: 4313 orrs r3, r2 - 80106f4: 62cb str r3, [r1, #44] @ 0x2c + 8010700: 4b3b ldr r3, [pc, #236] @ (80107f0 ) + 8010702: 6adb ldr r3, [r3, #44] @ 0x2c + 8010704: f423 2280 bic.w r2, r3, #262144 @ 0x40000 + 8010708: 687b ldr r3, [r7, #4] + 801070a: 691b ldr r3, [r3, #16] + 801070c: 4938 ldr r1, [pc, #224] @ (80107f0 ) + 801070e: 4313 orrs r3, r2 + 8010710: 62cb str r3, [r1, #44] @ 0x2c } /*------------------------------ PLL I2S Configuration ----------------------*/ /* Check that PLLI2S need to be enabled */ if (HAL_IS_BIT_SET(RCC->CFGR2, RCC_CFGR2_I2S2SRC) || HAL_IS_BIT_SET(RCC->CFGR2, RCC_CFGR2_I2S3SRC)) - 80106f6: 4b37 ldr r3, [pc, #220] @ (80107d4 ) - 80106f8: 6adb ldr r3, [r3, #44] @ 0x2c - 80106fa: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 80106fe: 2b00 cmp r3, #0 - 8010700: d105 bne.n 801070e - 8010702: 4b34 ldr r3, [pc, #208] @ (80107d4 ) - 8010704: 6adb ldr r3, [r3, #44] @ 0x2c - 8010706: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 801070a: 2b00 cmp r3, #0 - 801070c: d001 beq.n 8010712 + 8010712: 4b37 ldr r3, [pc, #220] @ (80107f0 ) + 8010714: 6adb ldr r3, [r3, #44] @ 0x2c + 8010716: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 801071a: 2b00 cmp r3, #0 + 801071c: d105 bne.n 801072a + 801071e: 4b34 ldr r3, [pc, #208] @ (80107f0 ) + 8010720: 6adb ldr r3, [r3, #44] @ 0x2c + 8010722: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 8010726: 2b00 cmp r3, #0 + 8010728: d001 beq.n 801072e { /* Update flag to indicate that PLL I2S should be active */ pllactive = 1; - 801070e: 2301 movs r3, #1 - 8010710: 61fb str r3, [r7, #28] + 801072a: 2301 movs r3, #1 + 801072c: 61fb str r3, [r7, #28] } /* Check if PLL I2S need to be enabled */ if (pllactive == 1) - 8010712: 69fb ldr r3, [r7, #28] - 8010714: 2b01 cmp r3, #1 - 8010716: d148 bne.n 80107aa + 801072e: 69fb ldr r3, [r7, #28] + 8010730: 2b01 cmp r3, #1 + 8010732: d148 bne.n 80107c6 { /* Enable PLL I2S only if not active */ if (HAL_IS_BIT_CLR(RCC->CR, RCC_CR_PLL3ON)) - 8010718: 4b2e ldr r3, [pc, #184] @ (80107d4 ) - 801071a: 681b ldr r3, [r3, #0] - 801071c: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8010720: 2b00 cmp r3, #0 - 8010722: d138 bne.n 8010796 + 8010734: 4b2e ldr r3, [pc, #184] @ (80107f0 ) + 8010736: 681b ldr r3, [r3, #0] + 8010738: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 801073c: 2b00 cmp r3, #0 + 801073e: d138 bne.n 80107b2 assert_param(IS_RCC_PLLI2S_MUL(PeriphClkInit->PLLI2S.PLLI2SMUL)); assert_param(IS_RCC_HSE_PREDIV2(PeriphClkInit->PLLI2S.HSEPrediv2Value)); /* Prediv2 can be written only when the PLL2 is disabled. */ /* Return an error only if new value is different from the programmed value */ if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL2ON) && \ - 8010724: 4b2b ldr r3, [pc, #172] @ (80107d4 ) - 8010726: 681b ldr r3, [r3, #0] - 8010728: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 - 801072c: 2b00 cmp r3, #0 - 801072e: d009 beq.n 8010744 + 8010740: 4b2b ldr r3, [pc, #172] @ (80107f0 ) + 8010742: 681b ldr r3, [r3, #0] + 8010744: f003 6380 and.w r3, r3, #67108864 @ 0x4000000 + 8010748: 2b00 cmp r3, #0 + 801074a: d009 beq.n 8010760 (__HAL_RCC_HSE_GET_PREDIV2() != PeriphClkInit->PLLI2S.HSEPrediv2Value)) - 8010730: 4b28 ldr r3, [pc, #160] @ (80107d4 ) - 8010732: 6adb ldr r3, [r3, #44] @ 0x2c - 8010734: f003 02f0 and.w r2, r3, #240 @ 0xf0 - 8010738: 687b ldr r3, [r7, #4] - 801073a: 699b ldr r3, [r3, #24] + 801074c: 4b28 ldr r3, [pc, #160] @ (80107f0 ) + 801074e: 6adb ldr r3, [r3, #44] @ 0x2c + 8010750: f003 02f0 and.w r2, r3, #240 @ 0xf0 + 8010754: 687b ldr r3, [r7, #4] + 8010756: 699b ldr r3, [r3, #24] if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL2ON) && \ - 801073c: 429a cmp r2, r3 - 801073e: d001 beq.n 8010744 + 8010758: 429a cmp r2, r3 + 801075a: d001 beq.n 8010760 { return HAL_ERROR; - 8010740: 2301 movs r3, #1 - 8010742: e042 b.n 80107ca + 801075c: 2301 movs r3, #1 + 801075e: e042 b.n 80107e6 } /* Configure the HSE prediv2 factor --------------------------------*/ __HAL_RCC_HSE_PREDIV2_CONFIG(PeriphClkInit->PLLI2S.HSEPrediv2Value); - 8010744: 4b23 ldr r3, [pc, #140] @ (80107d4 ) - 8010746: 6adb ldr r3, [r3, #44] @ 0x2c - 8010748: f023 02f0 bic.w r2, r3, #240 @ 0xf0 - 801074c: 687b ldr r3, [r7, #4] - 801074e: 699b ldr r3, [r3, #24] - 8010750: 4920 ldr r1, [pc, #128] @ (80107d4 ) - 8010752: 4313 orrs r3, r2 - 8010754: 62cb str r3, [r1, #44] @ 0x2c + 8010760: 4b23 ldr r3, [pc, #140] @ (80107f0 ) + 8010762: 6adb ldr r3, [r3, #44] @ 0x2c + 8010764: f023 02f0 bic.w r2, r3, #240 @ 0xf0 + 8010768: 687b ldr r3, [r7, #4] + 801076a: 699b ldr r3, [r3, #24] + 801076c: 4920 ldr r1, [pc, #128] @ (80107f0 ) + 801076e: 4313 orrs r3, r2 + 8010770: 62cb str r3, [r1, #44] @ 0x2c /* Configure the main PLLI2S multiplication factors. */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SMUL); - 8010756: 4b1f ldr r3, [pc, #124] @ (80107d4 ) - 8010758: 6adb ldr r3, [r3, #44] @ 0x2c - 801075a: f423 4270 bic.w r2, r3, #61440 @ 0xf000 - 801075e: 687b ldr r3, [r7, #4] - 8010760: 695b ldr r3, [r3, #20] - 8010762: 491c ldr r1, [pc, #112] @ (80107d4 ) - 8010764: 4313 orrs r3, r2 - 8010766: 62cb str r3, [r1, #44] @ 0x2c + 8010772: 4b1f ldr r3, [pc, #124] @ (80107f0 ) + 8010774: 6adb ldr r3, [r3, #44] @ 0x2c + 8010776: f423 4270 bic.w r2, r3, #61440 @ 0xf000 + 801077a: 687b ldr r3, [r7, #4] + 801077c: 695b ldr r3, [r3, #20] + 801077e: 491c ldr r1, [pc, #112] @ (80107f0 ) + 8010780: 4313 orrs r3, r2 + 8010782: 62cb str r3, [r1, #44] @ 0x2c /* Enable the main PLLI2S. */ __HAL_RCC_PLLI2S_ENABLE(); - 8010768: 4b1d ldr r3, [pc, #116] @ (80107e0 ) - 801076a: 2201 movs r2, #1 - 801076c: 601a str r2, [r3, #0] + 8010784: 4b1d ldr r3, [pc, #116] @ (80107fc ) + 8010786: 2201 movs r2, #1 + 8010788: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 801076e: f7fd f8f5 bl 800d95c - 8010772: 6178 str r0, [r7, #20] + 801078a: f7fd f8f5 bl 800d978 + 801078e: 6178 str r0, [r7, #20] /* Wait till PLLI2S is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 8010774: e008 b.n 8010788 + 8010790: e008 b.n 80107a4 { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 8010776: f7fd f8f1 bl 800d95c - 801077a: 4602 mov r2, r0 - 801077c: 697b ldr r3, [r7, #20] - 801077e: 1ad3 subs r3, r2, r3 - 8010780: 2b64 cmp r3, #100 @ 0x64 - 8010782: d901 bls.n 8010788 + 8010792: f7fd f8f1 bl 800d978 + 8010796: 4602 mov r2, r0 + 8010798: 697b ldr r3, [r7, #20] + 801079a: 1ad3 subs r3, r2, r3 + 801079c: 2b64 cmp r3, #100 @ 0x64 + 801079e: d901 bls.n 80107a4 { return HAL_TIMEOUT; - 8010784: 2303 movs r3, #3 - 8010786: e020 b.n 80107ca + 80107a0: 2303 movs r3, #3 + 80107a2: e020 b.n 80107e6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 8010788: 4b12 ldr r3, [pc, #72] @ (80107d4 ) - 801078a: 681b ldr r3, [r3, #0] - 801078c: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 8010790: 2b00 cmp r3, #0 - 8010792: d0f0 beq.n 8010776 - 8010794: e009 b.n 80107aa + 80107a4: 4b12 ldr r3, [pc, #72] @ (80107f0 ) + 80107a6: 681b ldr r3, [r3, #0] + 80107a8: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 80107ac: 2b00 cmp r3, #0 + 80107ae: d0f0 beq.n 8010792 + 80107b0: e009 b.n 80107c6 } } else { /* Return an error only if user wants to change the PLLI2SMUL whereas PLLI2S is active */ if (READ_BIT(RCC->CFGR2, RCC_CFGR2_PLL3MUL) != PeriphClkInit->PLLI2S.PLLI2SMUL) - 8010796: 4b0f ldr r3, [pc, #60] @ (80107d4 ) - 8010798: 6adb ldr r3, [r3, #44] @ 0x2c - 801079a: f403 4270 and.w r2, r3, #61440 @ 0xf000 - 801079e: 687b ldr r3, [r7, #4] - 80107a0: 695b ldr r3, [r3, #20] - 80107a2: 429a cmp r2, r3 - 80107a4: d001 beq.n 80107aa + 80107b2: 4b0f ldr r3, [pc, #60] @ (80107f0 ) + 80107b4: 6adb ldr r3, [r3, #44] @ 0x2c + 80107b6: f403 4270 and.w r2, r3, #61440 @ 0xf000 + 80107ba: 687b ldr r3, [r7, #4] + 80107bc: 695b ldr r3, [r3, #20] + 80107be: 429a cmp r2, r3 + 80107c0: d001 beq.n 80107c6 { return HAL_ERROR; - 80107a6: 2301 movs r3, #1 - 80107a8: e00f b.n 80107ca + 80107c2: 2301 movs r3, #1 + 80107c4: e00f b.n 80107e6 #if defined(STM32F102x6) || defined(STM32F102xB) || defined(STM32F103x6)\ || defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F103xG)\ || defined(STM32F105xC) || defined(STM32F107xC) /*------------------------------ USB clock Configuration ------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_USB) == RCC_PERIPHCLK_USB) - 80107aa: 687b ldr r3, [r7, #4] - 80107ac: 681b ldr r3, [r3, #0] - 80107ae: f003 0310 and.w r3, r3, #16 - 80107b2: 2b00 cmp r3, #0 - 80107b4: d008 beq.n 80107c8 + 80107c6: 687b ldr r3, [r7, #4] + 80107c8: 681b ldr r3, [r3, #0] + 80107ca: f003 0310 and.w r3, r3, #16 + 80107ce: 2b00 cmp r3, #0 + 80107d0: d008 beq.n 80107e4 { /* Check the parameters */ assert_param(IS_RCC_USBPLLCLK_DIV(PeriphClkInit->UsbClockSelection)); /* Configure the USB clock source */ __HAL_RCC_USB_CONFIG(PeriphClkInit->UsbClockSelection); - 80107b6: 4b07 ldr r3, [pc, #28] @ (80107d4 ) - 80107b8: 685b ldr r3, [r3, #4] - 80107ba: f423 0280 bic.w r2, r3, #4194304 @ 0x400000 - 80107be: 687b ldr r3, [r7, #4] - 80107c0: 69db ldr r3, [r3, #28] - 80107c2: 4904 ldr r1, [pc, #16] @ (80107d4 ) - 80107c4: 4313 orrs r3, r2 - 80107c6: 604b str r3, [r1, #4] + 80107d2: 4b07 ldr r3, [pc, #28] @ (80107f0 ) + 80107d4: 685b ldr r3, [r3, #4] + 80107d6: f423 0280 bic.w r2, r3, #4194304 @ 0x400000 + 80107da: 687b ldr r3, [r7, #4] + 80107dc: 69db ldr r3, [r3, #28] + 80107de: 4904 ldr r1, [pc, #16] @ (80107f0 ) + 80107e0: 4313 orrs r3, r2 + 80107e2: 604b str r3, [r1, #4] } #endif /* STM32F102x6 || STM32F102xB || STM32F103x6 || STM32F103xB || STM32F103xE || STM32F103xG || STM32F105xC || STM32F107xC */ return HAL_OK; - 80107c8: 2300 movs r3, #0 + 80107e4: 2300 movs r3, #0 } - 80107ca: 4618 mov r0, r3 - 80107cc: 3720 adds r7, #32 - 80107ce: 46bd mov sp, r7 - 80107d0: bd80 pop {r7, pc} - 80107d2: bf00 nop - 80107d4: 40021000 .word 0x40021000 - 80107d8: 40007000 .word 0x40007000 - 80107dc: 42420440 .word 0x42420440 - 80107e0: 42420070 .word 0x42420070 + 80107e6: 4618 mov r0, r3 + 80107e8: 3720 adds r7, #32 + 80107ea: 46bd mov sp, r7 + 80107ec: bd80 pop {r7, pc} + 80107ee: bf00 nop + 80107f0: 40021000 .word 0x40021000 + 80107f4: 40007000 .word 0x40007000 + 80107f8: 42420440 .word 0x42420440 + 80107fc: 42420070 .word 0x42420070 -080107e4 : +08010800 : * @arg @ref RCC_PERIPHCLK_USB USB peripheral clock @endif * @retval Frequency in Hz (0: means that no available frequency for the peripheral) */ uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t PeriphClk) { - 80107e4: b580 push {r7, lr} - 80107e6: b08a sub sp, #40 @ 0x28 - 80107e8: af00 add r7, sp, #0 - 80107ea: 6078 str r0, [r7, #4] + 8010800: b580 push {r7, lr} + 8010802: b08a sub sp, #40 @ 0x28 + 8010804: af00 add r7, sp, #0 + 8010806: 6078 str r0, [r7, #4] #if defined(STM32F105xC) || defined(STM32F107xC) static const uint8_t aPLLMULFactorTable[14U] = {0, 0, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 13}; static const uint8_t aPredivFactorTable[16U] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; uint32_t prediv1 = 0U, pllclk = 0U, pllmul = 0U; - 80107ec: 2300 movs r3, #0 - 80107ee: 61fb str r3, [r7, #28] - 80107f0: 2300 movs r3, #0 - 80107f2: 627b str r3, [r7, #36] @ 0x24 - 80107f4: 2300 movs r3, #0 - 80107f6: 61bb str r3, [r7, #24] + 8010808: 2300 movs r3, #0 + 801080a: 61fb str r3, [r7, #28] + 801080c: 2300 movs r3, #0 + 801080e: 627b str r3, [r7, #36] @ 0x24 + 8010810: 2300 movs r3, #0 + 8010812: 61bb str r3, [r7, #24] uint32_t pll2mul = 0U, pll3mul = 0U, prediv2 = 0U; - 80107f8: 2300 movs r3, #0 - 80107fa: 617b str r3, [r7, #20] - 80107fc: 2300 movs r3, #0 - 80107fe: 613b str r3, [r7, #16] - 8010800: 2300 movs r3, #0 - 8010802: 60fb str r3, [r7, #12] + 8010814: 2300 movs r3, #0 + 8010816: 617b str r3, [r7, #20] + 8010818: 2300 movs r3, #0 + 801081a: 613b str r3, [r7, #16] + 801081c: 2300 movs r3, #0 + 801081e: 60fb str r3, [r7, #12] static const uint8_t aPLLMULFactorTable[16U] = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16}; static const uint8_t aPredivFactorTable[2U] = {1, 2}; uint32_t prediv1 = 0U, pllclk = 0U, pllmul = 0U; #endif /* STM32F102x6 || STM32F102xB || STM32F103x6 || STM32F103xB || STM32F103xE || STM32F103xG */ uint32_t temp_reg = 0U, frequency = 0U; - 8010804: 2300 movs r3, #0 - 8010806: 60bb str r3, [r7, #8] - 8010808: 2300 movs r3, #0 - 801080a: 623b str r3, [r7, #32] + 8010820: 2300 movs r3, #0 + 8010822: 60bb str r3, [r7, #8] + 8010824: 2300 movs r3, #0 + 8010826: 623b str r3, [r7, #32] /* Check the parameters */ assert_param(IS_RCC_PERIPHCLOCK(PeriphClk)); switch (PeriphClk) - 801080c: 687b ldr r3, [r7, #4] - 801080e: 3b01 subs r3, #1 - 8010810: 2b0f cmp r3, #15 - 8010812: f200 811d bhi.w 8010a50 - 8010816: a201 add r2, pc, #4 @ (adr r2, 801081c ) - 8010818: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 801081c: 080109d1 .word 0x080109d1 - 8010820: 08010a35 .word 0x08010a35 - 8010824: 08010a51 .word 0x08010a51 - 8010828: 0801092f .word 0x0801092f - 801082c: 08010a51 .word 0x08010a51 - 8010830: 08010a51 .word 0x08010a51 - 8010834: 08010a51 .word 0x08010a51 - 8010838: 08010981 .word 0x08010981 + 8010828: 687b ldr r3, [r7, #4] + 801082a: 3b01 subs r3, #1 + 801082c: 2b0f cmp r3, #15 + 801082e: f200 811d bhi.w 8010a6c + 8010832: a201 add r2, pc, #4 @ (adr r2, 8010838 ) + 8010834: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8010838: 080109ed .word 0x080109ed 801083c: 08010a51 .word 0x08010a51 - 8010840: 08010a51 .word 0x08010a51 - 8010844: 08010a51 .word 0x08010a51 - 8010848: 08010a51 .word 0x08010a51 - 801084c: 08010a51 .word 0x08010a51 - 8010850: 08010a51 .word 0x08010a51 - 8010854: 08010a51 .word 0x08010a51 - 8010858: 0801085d .word 0x0801085d + 8010840: 08010a6d .word 0x08010a6d + 8010844: 0801094b .word 0x0801094b + 8010848: 08010a6d .word 0x08010a6d + 801084c: 08010a6d .word 0x08010a6d + 8010850: 08010a6d .word 0x08010a6d + 8010854: 0801099d .word 0x0801099d + 8010858: 08010a6d .word 0x08010a6d + 801085c: 08010a6d .word 0x08010a6d + 8010860: 08010a6d .word 0x08010a6d + 8010864: 08010a6d .word 0x08010a6d + 8010868: 08010a6d .word 0x08010a6d + 801086c: 08010a6d .word 0x08010a6d + 8010870: 08010a6d .word 0x08010a6d + 8010874: 08010879 .word 0x08010879 || defined(STM32F103xB) || defined(STM32F103xE) || defined(STM32F103xG)\ || defined(STM32F105xC) || defined(STM32F107xC) case RCC_PERIPHCLK_USB: { /* Get RCC configuration ------------------------------------------------------*/ temp_reg = RCC->CFGR; - 801085c: 4b83 ldr r3, [pc, #524] @ (8010a6c ) - 801085e: 685b ldr r3, [r3, #4] - 8010860: 60bb str r3, [r7, #8] + 8010878: 4b83 ldr r3, [pc, #524] @ (8010a88 ) + 801087a: 685b ldr r3, [r3, #4] + 801087c: 60bb str r3, [r7, #8] /* Check if PLL is enabled */ if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLLON)) - 8010862: 4b82 ldr r3, [pc, #520] @ (8010a6c ) - 8010864: 681b ldr r3, [r3, #0] - 8010866: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 801086a: 2b00 cmp r3, #0 - 801086c: f000 80f2 beq.w 8010a54 + 801087e: 4b82 ldr r3, [pc, #520] @ (8010a88 ) + 8010880: 681b ldr r3, [r3, #0] + 8010882: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 8010886: 2b00 cmp r3, #0 + 8010888: f000 80f2 beq.w 8010a70 { pllmul = aPLLMULFactorTable[(uint32_t)(temp_reg & RCC_CFGR_PLLMULL) >> RCC_CFGR_PLLMULL_Pos]; - 8010870: 68bb ldr r3, [r7, #8] - 8010872: 0c9b lsrs r3, r3, #18 - 8010874: f003 030f and.w r3, r3, #15 - 8010878: 4a7d ldr r2, [pc, #500] @ (8010a70 ) - 801087a: 5cd3 ldrb r3, [r2, r3] - 801087c: 61bb str r3, [r7, #24] + 801088c: 68bb ldr r3, [r7, #8] + 801088e: 0c9b lsrs r3, r3, #18 + 8010890: f003 030f and.w r3, r3, #15 + 8010894: 4a7d ldr r2, [pc, #500] @ (8010a8c ) + 8010896: 5cd3 ldrb r3, [r2, r3] + 8010898: 61bb str r3, [r7, #24] if ((temp_reg & RCC_CFGR_PLLSRC) != RCC_PLLSOURCE_HSI_DIV2) - 801087e: 68bb ldr r3, [r7, #8] - 8010880: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 8010884: 2b00 cmp r3, #0 - 8010886: d03b beq.n 8010900 + 801089a: 68bb ldr r3, [r7, #8] + 801089c: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 80108a0: 2b00 cmp r3, #0 + 80108a2: d03b beq.n 801091c { #if defined(STM32F105xC) || defined(STM32F107xC) || defined(STM32F100xB)\ || defined(STM32F100xE) prediv1 = aPredivFactorTable[(uint32_t)(RCC->CFGR2 & RCC_CFGR2_PREDIV1) >> RCC_CFGR2_PREDIV1_Pos]; - 8010888: 4b78 ldr r3, [pc, #480] @ (8010a6c ) - 801088a: 6adb ldr r3, [r3, #44] @ 0x2c - 801088c: f003 030f and.w r3, r3, #15 - 8010890: 4a78 ldr r2, [pc, #480] @ (8010a74 ) - 8010892: 5cd3 ldrb r3, [r2, r3] - 8010894: 61fb str r3, [r7, #28] + 80108a4: 4b78 ldr r3, [pc, #480] @ (8010a88 ) + 80108a6: 6adb ldr r3, [r3, #44] @ 0x2c + 80108a8: f003 030f and.w r3, r3, #15 + 80108ac: 4a78 ldr r2, [pc, #480] @ (8010a90 ) + 80108ae: 5cd3 ldrb r3, [r2, r3] + 80108b0: 61fb str r3, [r7, #28] #else prediv1 = aPredivFactorTable[(uint32_t)(RCC->CFGR & RCC_CFGR_PLLXTPRE) >> RCC_CFGR_PLLXTPRE_Pos]; #endif /* STM32F105xC || STM32F107xC || STM32F100xB || STM32F100xE */ #if defined(STM32F105xC) || defined(STM32F107xC) if (HAL_IS_BIT_SET(RCC->CFGR2, RCC_CFGR2_PREDIV1SRC)) - 8010896: 4b75 ldr r3, [pc, #468] @ (8010a6c ) - 8010898: 6adb ldr r3, [r3, #44] @ 0x2c - 801089a: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 801089e: 2b00 cmp r3, #0 - 80108a0: d01c beq.n 80108dc + 80108b2: 4b75 ldr r3, [pc, #468] @ (8010a88 ) + 80108b4: 6adb ldr r3, [r3, #44] @ 0x2c + 80108b6: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 80108ba: 2b00 cmp r3, #0 + 80108bc: d01c beq.n 80108f8 { /* PLL2 selected as Prediv1 source */ /* PLLCLK = PLL2CLK / PREDIV1 * PLLMUL with PLL2CLK = HSE/PREDIV2 * PLL2MUL */ prediv2 = ((RCC->CFGR2 & RCC_CFGR2_PREDIV2) >> RCC_CFGR2_PREDIV2_Pos) + 1; - 80108a2: 4b72 ldr r3, [pc, #456] @ (8010a6c ) - 80108a4: 6adb ldr r3, [r3, #44] @ 0x2c - 80108a6: 091b lsrs r3, r3, #4 - 80108a8: f003 030f and.w r3, r3, #15 - 80108ac: 3301 adds r3, #1 - 80108ae: 60fb str r3, [r7, #12] + 80108be: 4b72 ldr r3, [pc, #456] @ (8010a88 ) + 80108c0: 6adb ldr r3, [r3, #44] @ 0x2c + 80108c2: 091b lsrs r3, r3, #4 + 80108c4: f003 030f and.w r3, r3, #15 + 80108c8: 3301 adds r3, #1 + 80108ca: 60fb str r3, [r7, #12] pll2mul = ((RCC->CFGR2 & RCC_CFGR2_PLL2MUL) >> RCC_CFGR2_PLL2MUL_Pos) + 2; - 80108b0: 4b6e ldr r3, [pc, #440] @ (8010a6c ) - 80108b2: 6adb ldr r3, [r3, #44] @ 0x2c - 80108b4: 0a1b lsrs r3, r3, #8 - 80108b6: f003 030f and.w r3, r3, #15 - 80108ba: 3302 adds r3, #2 - 80108bc: 617b str r3, [r7, #20] + 80108cc: 4b6e ldr r3, [pc, #440] @ (8010a88 ) + 80108ce: 6adb ldr r3, [r3, #44] @ 0x2c + 80108d0: 0a1b lsrs r3, r3, #8 + 80108d2: f003 030f and.w r3, r3, #15 + 80108d6: 3302 adds r3, #2 + 80108d8: 617b str r3, [r7, #20] pllclk = (uint32_t)((((HSE_VALUE / prediv2) * pll2mul) / prediv1) * pllmul); - 80108be: 4a6e ldr r2, [pc, #440] @ (8010a78 ) - 80108c0: 68fb ldr r3, [r7, #12] - 80108c2: fbb2 f3f3 udiv r3, r2, r3 - 80108c6: 697a ldr r2, [r7, #20] - 80108c8: fb03 f202 mul.w r2, r3, r2 - 80108cc: 69fb ldr r3, [r7, #28] - 80108ce: fbb2 f2f3 udiv r2, r2, r3 - 80108d2: 69bb ldr r3, [r7, #24] - 80108d4: fb02 f303 mul.w r3, r2, r3 - 80108d8: 627b str r3, [r7, #36] @ 0x24 - 80108da: e007 b.n 80108ec + 80108da: 4a6e ldr r2, [pc, #440] @ (8010a94 ) + 80108dc: 68fb ldr r3, [r7, #12] + 80108de: fbb2 f3f3 udiv r3, r2, r3 + 80108e2: 697a ldr r2, [r7, #20] + 80108e4: fb03 f202 mul.w r2, r3, r2 + 80108e8: 69fb ldr r3, [r7, #28] + 80108ea: fbb2 f2f3 udiv r2, r2, r3 + 80108ee: 69bb ldr r3, [r7, #24] + 80108f0: fb02 f303 mul.w r3, r2, r3 + 80108f4: 627b str r3, [r7, #36] @ 0x24 + 80108f6: e007 b.n 8010908 } else { /* HSE used as PLL clock source : PLLCLK = HSE/PREDIV1 * PLLMUL */ pllclk = (uint32_t)((HSE_VALUE / prediv1) * pllmul); - 80108dc: 4a66 ldr r2, [pc, #408] @ (8010a78 ) - 80108de: 69fb ldr r3, [r7, #28] - 80108e0: fbb2 f2f3 udiv r2, r2, r3 - 80108e4: 69bb ldr r3, [r7, #24] - 80108e6: fb02 f303 mul.w r3, r2, r3 - 80108ea: 627b str r3, [r7, #36] @ 0x24 + 80108f8: 4a66 ldr r2, [pc, #408] @ (8010a94 ) + 80108fa: 69fb ldr r3, [r7, #28] + 80108fc: fbb2 f2f3 udiv r2, r2, r3 + 8010900: 69bb ldr r3, [r7, #24] + 8010902: fb02 f303 mul.w r3, r2, r3 + 8010906: 627b str r3, [r7, #36] @ 0x24 } /* If PLLMUL was set to 13 means that it was to cover the case PLLMUL 6.5 (avoid using float) */ /* In this case need to divide pllclk by 2 */ if (pllmul == aPLLMULFactorTable[(uint32_t)(RCC_CFGR_PLLMULL6_5) >> RCC_CFGR_PLLMULL_Pos]) - 80108ec: 4b60 ldr r3, [pc, #384] @ (8010a70 ) - 80108ee: 7b5b ldrb r3, [r3, #13] - 80108f0: 461a mov r2, r3 - 80108f2: 69bb ldr r3, [r7, #24] - 80108f4: 4293 cmp r3, r2 - 80108f6: d108 bne.n 801090a + 8010908: 4b60 ldr r3, [pc, #384] @ (8010a8c ) + 801090a: 7b5b ldrb r3, [r3, #13] + 801090c: 461a mov r2, r3 + 801090e: 69bb ldr r3, [r7, #24] + 8010910: 4293 cmp r3, r2 + 8010912: d108 bne.n 8010926 { pllclk = pllclk / 2; - 80108f8: 6a7b ldr r3, [r7, #36] @ 0x24 - 80108fa: 085b lsrs r3, r3, #1 - 80108fc: 627b str r3, [r7, #36] @ 0x24 - 80108fe: e004 b.n 801090a + 8010914: 6a7b ldr r3, [r7, #36] @ 0x24 + 8010916: 085b lsrs r3, r3, #1 + 8010918: 627b str r3, [r7, #36] @ 0x24 + 801091a: e004 b.n 8010926 #endif /* STM32F105xC || STM32F107xC */ } else { /* HSI used as PLL clock source : PLLCLK = HSI/2 * PLLMUL */ pllclk = (uint32_t)((HSI_VALUE >> 1) * pllmul); - 8010900: 69bb ldr r3, [r7, #24] - 8010902: 4a5e ldr r2, [pc, #376] @ (8010a7c ) - 8010904: fb02 f303 mul.w r3, r2, r3 - 8010908: 627b str r3, [r7, #36] @ 0x24 + 801091c: 69bb ldr r3, [r7, #24] + 801091e: 4a5e ldr r2, [pc, #376] @ (8010a98 ) + 8010920: fb02 f303 mul.w r3, r2, r3 + 8010924: 627b str r3, [r7, #36] @ 0x24 } /* Calcul of the USB frequency*/ #if defined(STM32F105xC) || defined(STM32F107xC) /* USBCLK = PLLVCO = (2 x PLLCLK) / USB prescaler */ if (__HAL_RCC_GET_USB_SOURCE() == RCC_USBCLKSOURCE_PLL_DIV2) - 801090a: 4b58 ldr r3, [pc, #352] @ (8010a6c ) - 801090c: 685b ldr r3, [r3, #4] - 801090e: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8010912: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8010916: d102 bne.n 801091e + 8010926: 4b58 ldr r3, [pc, #352] @ (8010a88 ) + 8010928: 685b ldr r3, [r3, #4] + 801092a: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 801092e: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 8010932: d102 bne.n 801093a { /* Prescaler of 2 selected for USB */ frequency = pllclk; - 8010918: 6a7b ldr r3, [r7, #36] @ 0x24 - 801091a: 623b str r3, [r7, #32] + 8010934: 6a7b ldr r3, [r7, #36] @ 0x24 + 8010936: 623b str r3, [r7, #32] /* Prescaler of 1.5 selected for USB */ frequency = (pllclk * 2) / 3; } #endif } break; - 801091c: e09a b.n 8010a54 + 8010938: e09a b.n 8010a70 frequency = (2 * pllclk) / 3; - 801091e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8010920: 005b lsls r3, r3, #1 - 8010922: 4a57 ldr r2, [pc, #348] @ (8010a80 ) - 8010924: fba2 2303 umull r2, r3, r2, r3 - 8010928: 085b lsrs r3, r3, #1 - 801092a: 623b str r3, [r7, #32] + 801093a: 6a7b ldr r3, [r7, #36] @ 0x24 + 801093c: 005b lsls r3, r3, #1 + 801093e: 4a57 ldr r2, [pc, #348] @ (8010a9c ) + 8010940: fba2 2303 umull r2, r3, r2, r3 + 8010944: 085b lsrs r3, r3, #1 + 8010946: 623b str r3, [r7, #32] break; - 801092c: e092 b.n 8010a54 + 8010948: e092 b.n 8010a70 { #if defined(STM32F103xE) || defined(STM32F103xG) /* SYSCLK used as source clock for I2S2 */ frequency = HAL_RCC_GetSysClockFreq(); #else if (__HAL_RCC_GET_I2S2_SOURCE() == RCC_I2S2CLKSOURCE_SYSCLK) - 801092e: 4b4f ldr r3, [pc, #316] @ (8010a6c ) - 8010930: 6adb ldr r3, [r3, #44] @ 0x2c - 8010932: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8010936: 2b00 cmp r3, #0 - 8010938: d103 bne.n 8010942 + 801094a: 4b4f ldr r3, [pc, #316] @ (8010a88 ) + 801094c: 6adb ldr r3, [r3, #44] @ 0x2c + 801094e: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8010952: 2b00 cmp r3, #0 + 8010954: d103 bne.n 801095e { /* SYSCLK used as source clock for I2S2 */ frequency = HAL_RCC_GetSysClockFreq(); - 801093a: f7ff fd15 bl 8010368 - 801093e: 6238 str r0, [r7, #32] + 8010956: f7ff fd15 bl 8010384 + 801095a: 6238 str r0, [r7, #32] pll3mul = ((RCC->CFGR2 & RCC_CFGR2_PLL3MUL) >> RCC_CFGR2_PLL3MUL_Pos) + 2; frequency = (uint32_t)(2 * ((HSE_VALUE / prediv2) * pll3mul)); } } #endif /* STM32F103xE || STM32F103xG */ break; - 8010940: e08a b.n 8010a58 + 801095c: e08a b.n 8010a74 if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL3ON)) - 8010942: 4b4a ldr r3, [pc, #296] @ (8010a6c ) - 8010944: 681b ldr r3, [r3, #0] - 8010946: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 801094a: 2b00 cmp r3, #0 - 801094c: f000 8084 beq.w 8010a58 + 801095e: 4b4a ldr r3, [pc, #296] @ (8010a88 ) + 8010960: 681b ldr r3, [r3, #0] + 8010962: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8010966: 2b00 cmp r3, #0 + 8010968: f000 8084 beq.w 8010a74 prediv2 = ((RCC->CFGR2 & RCC_CFGR2_PREDIV2) >> RCC_CFGR2_PREDIV2_Pos) + 1; - 8010950: 4b46 ldr r3, [pc, #280] @ (8010a6c ) - 8010952: 6adb ldr r3, [r3, #44] @ 0x2c - 8010954: 091b lsrs r3, r3, #4 - 8010956: f003 030f and.w r3, r3, #15 - 801095a: 3301 adds r3, #1 - 801095c: 60fb str r3, [r7, #12] + 801096c: 4b46 ldr r3, [pc, #280] @ (8010a88 ) + 801096e: 6adb ldr r3, [r3, #44] @ 0x2c + 8010970: 091b lsrs r3, r3, #4 + 8010972: f003 030f and.w r3, r3, #15 + 8010976: 3301 adds r3, #1 + 8010978: 60fb str r3, [r7, #12] pll3mul = ((RCC->CFGR2 & RCC_CFGR2_PLL3MUL) >> RCC_CFGR2_PLL3MUL_Pos) + 2; - 801095e: 4b43 ldr r3, [pc, #268] @ (8010a6c ) - 8010960: 6adb ldr r3, [r3, #44] @ 0x2c - 8010962: 0b1b lsrs r3, r3, #12 - 8010964: f003 030f and.w r3, r3, #15 - 8010968: 3302 adds r3, #2 - 801096a: 613b str r3, [r7, #16] + 801097a: 4b43 ldr r3, [pc, #268] @ (8010a88 ) + 801097c: 6adb ldr r3, [r3, #44] @ 0x2c + 801097e: 0b1b lsrs r3, r3, #12 + 8010980: f003 030f and.w r3, r3, #15 + 8010984: 3302 adds r3, #2 + 8010986: 613b str r3, [r7, #16] frequency = (uint32_t)(2 * ((HSE_VALUE / prediv2) * pll3mul)); - 801096c: 4a42 ldr r2, [pc, #264] @ (8010a78 ) - 801096e: 68fb ldr r3, [r7, #12] - 8010970: fbb2 f3f3 udiv r3, r2, r3 - 8010974: 693a ldr r2, [r7, #16] - 8010976: fb02 f303 mul.w r3, r2, r3 - 801097a: 005b lsls r3, r3, #1 - 801097c: 623b str r3, [r7, #32] + 8010988: 4a42 ldr r2, [pc, #264] @ (8010a94 ) + 801098a: 68fb ldr r3, [r7, #12] + 801098c: fbb2 f3f3 udiv r3, r2, r3 + 8010990: 693a ldr r2, [r7, #16] + 8010992: fb02 f303 mul.w r3, r2, r3 + 8010996: 005b lsls r3, r3, #1 + 8010998: 623b str r3, [r7, #32] break; - 801097e: e06b b.n 8010a58 + 801099a: e06b b.n 8010a74 { #if defined(STM32F103xE) || defined(STM32F103xG) /* SYSCLK used as source clock for I2S3 */ frequency = HAL_RCC_GetSysClockFreq(); #else if (__HAL_RCC_GET_I2S3_SOURCE() == RCC_I2S3CLKSOURCE_SYSCLK) - 8010980: 4b3a ldr r3, [pc, #232] @ (8010a6c ) - 8010982: 6adb ldr r3, [r3, #44] @ 0x2c - 8010984: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 8010988: 2b00 cmp r3, #0 - 801098a: d103 bne.n 8010994 + 801099c: 4b3a ldr r3, [pc, #232] @ (8010a88 ) + 801099e: 6adb ldr r3, [r3, #44] @ 0x2c + 80109a0: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 80109a4: 2b00 cmp r3, #0 + 80109a6: d103 bne.n 80109b0 { /* SYSCLK used as source clock for I2S3 */ frequency = HAL_RCC_GetSysClockFreq(); - 801098c: f7ff fcec bl 8010368 - 8010990: 6238 str r0, [r7, #32] + 80109a8: f7ff fcec bl 8010384 + 80109ac: 6238 str r0, [r7, #32] pll3mul = ((RCC->CFGR2 & RCC_CFGR2_PLL3MUL) >> RCC_CFGR2_PLL3MUL_Pos) + 2; frequency = (uint32_t)(2 * ((HSE_VALUE / prediv2) * pll3mul)); } } #endif /* STM32F103xE || STM32F103xG */ break; - 8010992: e063 b.n 8010a5c + 80109ae: e063 b.n 8010a78 if (HAL_IS_BIT_SET(RCC->CR, RCC_CR_PLL3ON)) - 8010994: 4b35 ldr r3, [pc, #212] @ (8010a6c ) - 8010996: 681b ldr r3, [r3, #0] - 8010998: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 801099c: 2b00 cmp r3, #0 - 801099e: d05d beq.n 8010a5c + 80109b0: 4b35 ldr r3, [pc, #212] @ (8010a88 ) + 80109b2: 681b ldr r3, [r3, #0] + 80109b4: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80109b8: 2b00 cmp r3, #0 + 80109ba: d05d beq.n 8010a78 prediv2 = ((RCC->CFGR2 & RCC_CFGR2_PREDIV2) >> RCC_CFGR2_PREDIV2_Pos) + 1; - 80109a0: 4b32 ldr r3, [pc, #200] @ (8010a6c ) - 80109a2: 6adb ldr r3, [r3, #44] @ 0x2c - 80109a4: 091b lsrs r3, r3, #4 - 80109a6: f003 030f and.w r3, r3, #15 - 80109aa: 3301 adds r3, #1 - 80109ac: 60fb str r3, [r7, #12] + 80109bc: 4b32 ldr r3, [pc, #200] @ (8010a88 ) + 80109be: 6adb ldr r3, [r3, #44] @ 0x2c + 80109c0: 091b lsrs r3, r3, #4 + 80109c2: f003 030f and.w r3, r3, #15 + 80109c6: 3301 adds r3, #1 + 80109c8: 60fb str r3, [r7, #12] pll3mul = ((RCC->CFGR2 & RCC_CFGR2_PLL3MUL) >> RCC_CFGR2_PLL3MUL_Pos) + 2; - 80109ae: 4b2f ldr r3, [pc, #188] @ (8010a6c ) - 80109b0: 6adb ldr r3, [r3, #44] @ 0x2c - 80109b2: 0b1b lsrs r3, r3, #12 - 80109b4: f003 030f and.w r3, r3, #15 - 80109b8: 3302 adds r3, #2 - 80109ba: 613b str r3, [r7, #16] + 80109ca: 4b2f ldr r3, [pc, #188] @ (8010a88 ) + 80109cc: 6adb ldr r3, [r3, #44] @ 0x2c + 80109ce: 0b1b lsrs r3, r3, #12 + 80109d0: f003 030f and.w r3, r3, #15 + 80109d4: 3302 adds r3, #2 + 80109d6: 613b str r3, [r7, #16] frequency = (uint32_t)(2 * ((HSE_VALUE / prediv2) * pll3mul)); - 80109bc: 4a2e ldr r2, [pc, #184] @ (8010a78 ) - 80109be: 68fb ldr r3, [r7, #12] - 80109c0: fbb2 f3f3 udiv r3, r2, r3 - 80109c4: 693a ldr r2, [r7, #16] - 80109c6: fb02 f303 mul.w r3, r2, r3 - 80109ca: 005b lsls r3, r3, #1 - 80109cc: 623b str r3, [r7, #32] + 80109d8: 4a2e ldr r2, [pc, #184] @ (8010a94 ) + 80109da: 68fb ldr r3, [r7, #12] + 80109dc: fbb2 f3f3 udiv r3, r2, r3 + 80109e0: 693a ldr r2, [r7, #16] + 80109e2: fb02 f303 mul.w r3, r2, r3 + 80109e6: 005b lsls r3, r3, #1 + 80109e8: 623b str r3, [r7, #32] break; - 80109ce: e045 b.n 8010a5c + 80109ea: e045 b.n 8010a78 } #endif /* STM32F103xE || STM32F103xG || STM32F105xC || STM32F107xC */ case RCC_PERIPHCLK_RTC: { /* Get RCC BDCR configuration ------------------------------------------------------*/ temp_reg = RCC->BDCR; - 80109d0: 4b26 ldr r3, [pc, #152] @ (8010a6c ) - 80109d2: 6a1b ldr r3, [r3, #32] - 80109d4: 60bb str r3, [r7, #8] + 80109ec: 4b26 ldr r3, [pc, #152] @ (8010a88 ) + 80109ee: 6a1b ldr r3, [r3, #32] + 80109f0: 60bb str r3, [r7, #8] /* Check if LSE is ready if RTC clock selection is LSE */ if (((temp_reg & RCC_BDCR_RTCSEL) == RCC_RTCCLKSOURCE_LSE) && (HAL_IS_BIT_SET(temp_reg, RCC_BDCR_LSERDY))) - 80109d6: 68bb ldr r3, [r7, #8] - 80109d8: f403 7340 and.w r3, r3, #768 @ 0x300 - 80109dc: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 80109e0: d108 bne.n 80109f4 - 80109e2: 68bb ldr r3, [r7, #8] - 80109e4: f003 0302 and.w r3, r3, #2 - 80109e8: 2b00 cmp r3, #0 - 80109ea: d003 beq.n 80109f4 + 80109f2: 68bb ldr r3, [r7, #8] + 80109f4: f403 7340 and.w r3, r3, #768 @ 0x300 + 80109f8: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 80109fc: d108 bne.n 8010a10 + 80109fe: 68bb ldr r3, [r7, #8] + 8010a00: f003 0302 and.w r3, r3, #2 + 8010a04: 2b00 cmp r3, #0 + 8010a06: d003 beq.n 8010a10 { frequency = LSE_VALUE; - 80109ec: f44f 4300 mov.w r3, #32768 @ 0x8000 - 80109f0: 623b str r3, [r7, #32] - 80109f2: e01e b.n 8010a32 + 8010a08: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8010a0c: 623b str r3, [r7, #32] + 8010a0e: e01e b.n 8010a4e } /* Check if LSI is ready if RTC clock selection is LSI */ else if (((temp_reg & RCC_BDCR_RTCSEL) == RCC_RTCCLKSOURCE_LSI) && (HAL_IS_BIT_SET(RCC->CSR, RCC_CSR_LSIRDY))) - 80109f4: 68bb ldr r3, [r7, #8] - 80109f6: f403 7340 and.w r3, r3, #768 @ 0x300 - 80109fa: f5b3 7f00 cmp.w r3, #512 @ 0x200 - 80109fe: d109 bne.n 8010a14 - 8010a00: 4b1a ldr r3, [pc, #104] @ (8010a6c ) - 8010a02: 6a5b ldr r3, [r3, #36] @ 0x24 - 8010a04: f003 0302 and.w r3, r3, #2 - 8010a08: 2b00 cmp r3, #0 - 8010a0a: d003 beq.n 8010a14 + 8010a10: 68bb ldr r3, [r7, #8] + 8010a12: f403 7340 and.w r3, r3, #768 @ 0x300 + 8010a16: f5b3 7f00 cmp.w r3, #512 @ 0x200 + 8010a1a: d109 bne.n 8010a30 + 8010a1c: 4b1a ldr r3, [pc, #104] @ (8010a88 ) + 8010a1e: 6a5b ldr r3, [r3, #36] @ 0x24 + 8010a20: f003 0302 and.w r3, r3, #2 + 8010a24: 2b00 cmp r3, #0 + 8010a26: d003 beq.n 8010a30 { frequency = LSI_VALUE; - 8010a0c: f649 4340 movw r3, #40000 @ 0x9c40 - 8010a10: 623b str r3, [r7, #32] - 8010a12: e00e b.n 8010a32 + 8010a28: f649 4340 movw r3, #40000 @ 0x9c40 + 8010a2c: 623b str r3, [r7, #32] + 8010a2e: e00e b.n 8010a4e } else if (((temp_reg & RCC_BDCR_RTCSEL) == RCC_RTCCLKSOURCE_HSE_DIV128) && (HAL_IS_BIT_SET(RCC->CR, RCC_CR_HSERDY))) - 8010a14: 68bb ldr r3, [r7, #8] - 8010a16: f403 7340 and.w r3, r3, #768 @ 0x300 - 8010a1a: f5b3 7f40 cmp.w r3, #768 @ 0x300 - 8010a1e: d11f bne.n 8010a60 - 8010a20: 4b12 ldr r3, [pc, #72] @ (8010a6c ) - 8010a22: 681b ldr r3, [r3, #0] - 8010a24: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8010a28: 2b00 cmp r3, #0 - 8010a2a: d019 beq.n 8010a60 + 8010a30: 68bb ldr r3, [r7, #8] + 8010a32: f403 7340 and.w r3, r3, #768 @ 0x300 + 8010a36: f5b3 7f40 cmp.w r3, #768 @ 0x300 + 8010a3a: d11f bne.n 8010a7c + 8010a3c: 4b12 ldr r3, [pc, #72] @ (8010a88 ) + 8010a3e: 681b ldr r3, [r3, #0] + 8010a40: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8010a44: 2b00 cmp r3, #0 + 8010a46: d019 beq.n 8010a7c { frequency = HSE_VALUE / 128U; - 8010a2c: 4b15 ldr r3, [pc, #84] @ (8010a84 ) - 8010a2e: 623b str r3, [r7, #32] + 8010a48: 4b15 ldr r3, [pc, #84] @ (8010aa0 ) + 8010a4a: 623b str r3, [r7, #32] /* Clock not enabled for RTC*/ else { /* nothing to do: frequency already initialized to 0U */ } break; - 8010a30: e016 b.n 8010a60 - 8010a32: e015 b.n 8010a60 + 8010a4c: e016 b.n 8010a7c + 8010a4e: e015 b.n 8010a7c } case RCC_PERIPHCLK_ADC: { frequency = HAL_RCC_GetPCLK2Freq() / (((__HAL_RCC_GET_ADC_SOURCE() >> RCC_CFGR_ADCPRE_Pos) + 1) * 2); - 8010a34: f7ff fd72 bl 801051c - 8010a38: 4602 mov r2, r0 - 8010a3a: 4b0c ldr r3, [pc, #48] @ (8010a6c ) - 8010a3c: 685b ldr r3, [r3, #4] - 8010a3e: 0b9b lsrs r3, r3, #14 - 8010a40: f003 0303 and.w r3, r3, #3 - 8010a44: 3301 adds r3, #1 - 8010a46: 005b lsls r3, r3, #1 - 8010a48: fbb2 f3f3 udiv r3, r2, r3 - 8010a4c: 623b str r3, [r7, #32] + 8010a50: f7ff fd72 bl 8010538 + 8010a54: 4602 mov r2, r0 + 8010a56: 4b0c ldr r3, [pc, #48] @ (8010a88 ) + 8010a58: 685b ldr r3, [r3, #4] + 8010a5a: 0b9b lsrs r3, r3, #14 + 8010a5c: f003 0303 and.w r3, r3, #3 + 8010a60: 3301 adds r3, #1 + 8010a62: 005b lsls r3, r3, #1 + 8010a64: fbb2 f3f3 udiv r3, r2, r3 + 8010a68: 623b str r3, [r7, #32] break; - 8010a4e: e008 b.n 8010a62 + 8010a6a: e008 b.n 8010a7e } default: { break; - 8010a50: bf00 nop - 8010a52: e006 b.n 8010a62 + 8010a6c: bf00 nop + 8010a6e: e006 b.n 8010a7e break; - 8010a54: bf00 nop - 8010a56: e004 b.n 8010a62 + 8010a70: bf00 nop + 8010a72: e004 b.n 8010a7e break; - 8010a58: bf00 nop - 8010a5a: e002 b.n 8010a62 + 8010a74: bf00 nop + 8010a76: e002 b.n 8010a7e break; - 8010a5c: bf00 nop - 8010a5e: e000 b.n 8010a62 + 8010a78: bf00 nop + 8010a7a: e000 b.n 8010a7e break; - 8010a60: bf00 nop + 8010a7c: bf00 nop } } return (frequency); - 8010a62: 6a3b ldr r3, [r7, #32] + 8010a7e: 6a3b ldr r3, [r7, #32] } - 8010a64: 4618 mov r0, r3 - 8010a66: 3728 adds r7, #40 @ 0x28 - 8010a68: 46bd mov sp, r7 - 8010a6a: bd80 pop {r7, pc} - 8010a6c: 40021000 .word 0x40021000 - 8010a70: 0801445c .word 0x0801445c - 8010a74: 0801446c .word 0x0801446c - 8010a78: 017d7840 .word 0x017d7840 - 8010a7c: 003d0900 .word 0x003d0900 - 8010a80: aaaaaaab .word 0xaaaaaaab - 8010a84: 0002faf0 .word 0x0002faf0 + 8010a80: 4618 mov r0, r3 + 8010a82: 3728 adds r7, #40 @ 0x28 + 8010a84: 46bd mov sp, r7 + 8010a86: bd80 pop {r7, pc} + 8010a88: 40021000 .word 0x40021000 + 8010a8c: 08014478 .word 0x08014478 + 8010a90: 08014488 .word 0x08014488 + 8010a94: 017d7840 .word 0x017d7840 + 8010a98: 003d0900 .word 0x003d0900 + 8010a9c: aaaaaaab .word 0xaaaaaaab + 8010aa0: 0002faf0 .word 0x0002faf0 -08010a88 : +08010aa4 : * @param hrtc pointer to a RTC_HandleTypeDef structure that contains * the configuration information for RTC. * @retval HAL status */ HAL_StatusTypeDef HAL_RTC_Init(RTC_HandleTypeDef *hrtc) { - 8010a88: b580 push {r7, lr} - 8010a8a: b084 sub sp, #16 - 8010a8c: af00 add r7, sp, #0 - 8010a8e: 6078 str r0, [r7, #4] + 8010aa4: b580 push {r7, lr} + 8010aa6: b084 sub sp, #16 + 8010aa8: af00 add r7, sp, #0 + 8010aaa: 6078 str r0, [r7, #4] uint32_t prescaler = 0U; - 8010a90: 2300 movs r3, #0 - 8010a92: 60fb str r3, [r7, #12] + 8010aac: 2300 movs r3, #0 + 8010aae: 60fb str r3, [r7, #12] /* Check input parameters */ if (hrtc == NULL) - 8010a94: 687b ldr r3, [r7, #4] - 8010a96: 2b00 cmp r3, #0 - 8010a98: d101 bne.n 8010a9e + 8010ab0: 687b ldr r3, [r7, #4] + 8010ab2: 2b00 cmp r3, #0 + 8010ab4: d101 bne.n 8010aba { return HAL_ERROR; - 8010a9a: 2301 movs r3, #1 - 8010a9c: e07a b.n 8010b94 + 8010ab6: 2301 movs r3, #1 + 8010ab8: e07a b.n 8010bb0 { hrtc->MspDeInitCallback = HAL_RTC_MspDeInit; } } #else if (hrtc->State == HAL_RTC_STATE_RESET) - 8010a9e: 687b ldr r3, [r7, #4] - 8010aa0: 7c5b ldrb r3, [r3, #17] - 8010aa2: b2db uxtb r3, r3 - 8010aa4: 2b00 cmp r3, #0 - 8010aa6: d105 bne.n 8010ab4 + 8010aba: 687b ldr r3, [r7, #4] + 8010abc: 7c5b ldrb r3, [r3, #17] + 8010abe: b2db uxtb r3, r3 + 8010ac0: 2b00 cmp r3, #0 + 8010ac2: d105 bne.n 8010ad0 { /* Allocate lock resource and initialize it */ hrtc->Lock = HAL_UNLOCKED; - 8010aa8: 687b ldr r3, [r7, #4] - 8010aaa: 2200 movs r2, #0 - 8010aac: 741a strb r2, [r3, #16] + 8010ac4: 687b ldr r3, [r7, #4] + 8010ac6: 2200 movs r2, #0 + 8010ac8: 741a strb r2, [r3, #16] /* Initialize RTC MSP */ HAL_RTC_MspInit(hrtc); - 8010aae: 6878 ldr r0, [r7, #4] - 8010ab0: f7fa ff44 bl 800b93c + 8010aca: 6878 ldr r0, [r7, #4] + 8010acc: f7fa ff36 bl 800b93c } #endif /* (USE_HAL_RTC_REGISTER_CALLBACKS) */ /* Set RTC state */ hrtc->State = HAL_RTC_STATE_BUSY; - 8010ab4: 687b ldr r3, [r7, #4] - 8010ab6: 2202 movs r2, #2 - 8010ab8: 745a strb r2, [r3, #17] + 8010ad0: 687b ldr r3, [r7, #4] + 8010ad2: 2202 movs r2, #2 + 8010ad4: 745a strb r2, [r3, #17] /* Waiting for synchro */ if (HAL_RTC_WaitForSynchro(hrtc) != HAL_OK) - 8010aba: 6878 ldr r0, [r7, #4] - 8010abc: f000 f870 bl 8010ba0 - 8010ac0: 4603 mov r3, r0 - 8010ac2: 2b00 cmp r3, #0 - 8010ac4: d004 beq.n 8010ad0 + 8010ad6: 6878 ldr r0, [r7, #4] + 8010ad8: f000 f870 bl 8010bbc + 8010adc: 4603 mov r3, r0 + 8010ade: 2b00 cmp r3, #0 + 8010ae0: d004 beq.n 8010aec { /* Set RTC state */ hrtc->State = HAL_RTC_STATE_ERROR; - 8010ac6: 687b ldr r3, [r7, #4] - 8010ac8: 2204 movs r2, #4 - 8010aca: 745a strb r2, [r3, #17] + 8010ae2: 687b ldr r3, [r7, #4] + 8010ae4: 2204 movs r2, #4 + 8010ae6: 745a strb r2, [r3, #17] return HAL_ERROR; - 8010acc: 2301 movs r3, #1 - 8010ace: e061 b.n 8010b94 + 8010ae8: 2301 movs r3, #1 + 8010aea: e061 b.n 8010bb0 } /* Set Initialization mode */ if (RTC_EnterInitMode(hrtc) != HAL_OK) - 8010ad0: 6878 ldr r0, [r7, #4] - 8010ad2: f000 f892 bl 8010bfa - 8010ad6: 4603 mov r3, r0 - 8010ad8: 2b00 cmp r3, #0 - 8010ada: d004 beq.n 8010ae6 + 8010aec: 6878 ldr r0, [r7, #4] + 8010aee: f000 f892 bl 8010c16 + 8010af2: 4603 mov r3, r0 + 8010af4: 2b00 cmp r3, #0 + 8010af6: d004 beq.n 8010b02 { /* Set RTC state */ hrtc->State = HAL_RTC_STATE_ERROR; - 8010adc: 687b ldr r3, [r7, #4] - 8010ade: 2204 movs r2, #4 - 8010ae0: 745a strb r2, [r3, #17] + 8010af8: 687b ldr r3, [r7, #4] + 8010afa: 2204 movs r2, #4 + 8010afc: 745a strb r2, [r3, #17] return HAL_ERROR; - 8010ae2: 2301 movs r3, #1 - 8010ae4: e056 b.n 8010b94 + 8010afe: 2301 movs r3, #1 + 8010b00: e056 b.n 8010bb0 } else { /* Clear Flags Bits */ CLEAR_BIT(hrtc->Instance->CRL, (RTC_FLAG_OW | RTC_FLAG_ALRAF | RTC_FLAG_SEC)); - 8010ae6: 687b ldr r3, [r7, #4] - 8010ae8: 681b ldr r3, [r3, #0] - 8010aea: 685a ldr r2, [r3, #4] - 8010aec: 687b ldr r3, [r7, #4] - 8010aee: 681b ldr r3, [r3, #0] - 8010af0: f022 0207 bic.w r2, r2, #7 - 8010af4: 605a str r2, [r3, #4] + 8010b02: 687b ldr r3, [r7, #4] + 8010b04: 681b ldr r3, [r3, #0] + 8010b06: 685a ldr r2, [r3, #4] + 8010b08: 687b ldr r3, [r7, #4] + 8010b0a: 681b ldr r3, [r3, #0] + 8010b0c: f022 0207 bic.w r2, r2, #7 + 8010b10: 605a str r2, [r3, #4] if (hrtc->Init.OutPut != RTC_OUTPUTSOURCE_NONE) - 8010af6: 687b ldr r3, [r7, #4] - 8010af8: 689b ldr r3, [r3, #8] - 8010afa: 2b00 cmp r3, #0 - 8010afc: d005 beq.n 8010b0a + 8010b12: 687b ldr r3, [r7, #4] + 8010b14: 689b ldr r3, [r3, #8] + 8010b16: 2b00 cmp r3, #0 + 8010b18: d005 beq.n 8010b26 { /* Disable the selected Tamper pin */ CLEAR_BIT(BKP->CR, BKP_CR_TPE); - 8010afe: 4b27 ldr r3, [pc, #156] @ (8010b9c ) - 8010b00: 6b1b ldr r3, [r3, #48] @ 0x30 - 8010b02: 4a26 ldr r2, [pc, #152] @ (8010b9c ) - 8010b04: f023 0301 bic.w r3, r3, #1 - 8010b08: 6313 str r3, [r2, #48] @ 0x30 + 8010b1a: 4b27 ldr r3, [pc, #156] @ (8010bb8 ) + 8010b1c: 6b1b ldr r3, [r3, #48] @ 0x30 + 8010b1e: 4a26 ldr r2, [pc, #152] @ (8010bb8 ) + 8010b20: f023 0301 bic.w r3, r3, #1 + 8010b24: 6313 str r3, [r2, #48] @ 0x30 } /* Set the signal which will be routed to RTC Tamper pin*/ MODIFY_REG(BKP->RTCCR, (BKP_RTCCR_CCO | BKP_RTCCR_ASOE | BKP_RTCCR_ASOS), hrtc->Init.OutPut); - 8010b0a: 4b24 ldr r3, [pc, #144] @ (8010b9c ) - 8010b0c: 6adb ldr r3, [r3, #44] @ 0x2c - 8010b0e: f423 7260 bic.w r2, r3, #896 @ 0x380 - 8010b12: 687b ldr r3, [r7, #4] - 8010b14: 689b ldr r3, [r3, #8] - 8010b16: 4921 ldr r1, [pc, #132] @ (8010b9c ) - 8010b18: 4313 orrs r3, r2 - 8010b1a: 62cb str r3, [r1, #44] @ 0x2c + 8010b26: 4b24 ldr r3, [pc, #144] @ (8010bb8 ) + 8010b28: 6adb ldr r3, [r3, #44] @ 0x2c + 8010b2a: f423 7260 bic.w r2, r3, #896 @ 0x380 + 8010b2e: 687b ldr r3, [r7, #4] + 8010b30: 689b ldr r3, [r3, #8] + 8010b32: 4921 ldr r1, [pc, #132] @ (8010bb8 ) + 8010b34: 4313 orrs r3, r2 + 8010b36: 62cb str r3, [r1, #44] @ 0x2c if (hrtc->Init.AsynchPrediv != RTC_AUTO_1_SECOND) - 8010b1c: 687b ldr r3, [r7, #4] - 8010b1e: 685b ldr r3, [r3, #4] - 8010b20: f1b3 3fff cmp.w r3, #4294967295 - 8010b24: d003 beq.n 8010b2e + 8010b38: 687b ldr r3, [r7, #4] + 8010b3a: 685b ldr r3, [r3, #4] + 8010b3c: f1b3 3fff cmp.w r3, #4294967295 + 8010b40: d003 beq.n 8010b4a { /* RTC Prescaler provided directly by end-user*/ prescaler = hrtc->Init.AsynchPrediv; - 8010b26: 687b ldr r3, [r7, #4] - 8010b28: 685b ldr r3, [r3, #4] - 8010b2a: 60fb str r3, [r7, #12] - 8010b2c: e00e b.n 8010b4c + 8010b42: 687b ldr r3, [r7, #4] + 8010b44: 685b ldr r3, [r3, #4] + 8010b46: 60fb str r3, [r7, #12] + 8010b48: e00e b.n 8010b68 } else { /* RTC Prescaler will be automatically calculated to get 1 second timebase */ /* Get the RTCCLK frequency */ prescaler = HAL_RCCEx_GetPeriphCLKFreq(RCC_PERIPHCLK_RTC); - 8010b2e: 2001 movs r0, #1 - 8010b30: f7ff fe58 bl 80107e4 - 8010b34: 60f8 str r0, [r7, #12] + 8010b4a: 2001 movs r0, #1 + 8010b4c: f7ff fe58 bl 8010800 + 8010b50: 60f8 str r0, [r7, #12] /* Check that RTC clock is enabled*/ if (prescaler == 0U) - 8010b36: 68fb ldr r3, [r7, #12] - 8010b38: 2b00 cmp r3, #0 - 8010b3a: d104 bne.n 8010b46 + 8010b52: 68fb ldr r3, [r7, #12] + 8010b54: 2b00 cmp r3, #0 + 8010b56: d104 bne.n 8010b62 { /* Should not happen. Frequency is not available*/ hrtc->State = HAL_RTC_STATE_ERROR; - 8010b3c: 687b ldr r3, [r7, #4] - 8010b3e: 2204 movs r2, #4 - 8010b40: 745a strb r2, [r3, #17] + 8010b58: 687b ldr r3, [r7, #4] + 8010b5a: 2204 movs r2, #4 + 8010b5c: 745a strb r2, [r3, #17] return HAL_ERROR; - 8010b42: 2301 movs r3, #1 - 8010b44: e026 b.n 8010b94 + 8010b5e: 2301 movs r3, #1 + 8010b60: e026 b.n 8010bb0 } else { /* RTC period = RTCCLK/(RTC_PR + 1) */ prescaler = prescaler - 1U; - 8010b46: 68fb ldr r3, [r7, #12] - 8010b48: 3b01 subs r3, #1 - 8010b4a: 60fb str r3, [r7, #12] + 8010b62: 68fb ldr r3, [r7, #12] + 8010b64: 3b01 subs r3, #1 + 8010b66: 60fb str r3, [r7, #12] } } /* Configure the RTC_PRLH / RTC_PRLL */ WRITE_REG(hrtc->Instance->PRLH, ((prescaler >> 16U) & RTC_PRLH_PRL)); - 8010b4c: 68fb ldr r3, [r7, #12] - 8010b4e: 0c1a lsrs r2, r3, #16 - 8010b50: 687b ldr r3, [r7, #4] - 8010b52: 681b ldr r3, [r3, #0] - 8010b54: f002 020f and.w r2, r2, #15 - 8010b58: 609a str r2, [r3, #8] + 8010b68: 68fb ldr r3, [r7, #12] + 8010b6a: 0c1a lsrs r2, r3, #16 + 8010b6c: 687b ldr r3, [r7, #4] + 8010b6e: 681b ldr r3, [r3, #0] + 8010b70: f002 020f and.w r2, r2, #15 + 8010b74: 609a str r2, [r3, #8] WRITE_REG(hrtc->Instance->PRLL, (prescaler & RTC_PRLL_PRL)); - 8010b5a: 687b ldr r3, [r7, #4] - 8010b5c: 681b ldr r3, [r3, #0] - 8010b5e: 68fa ldr r2, [r7, #12] - 8010b60: b292 uxth r2, r2 - 8010b62: 60da str r2, [r3, #12] + 8010b76: 687b ldr r3, [r7, #4] + 8010b78: 681b ldr r3, [r3, #0] + 8010b7a: 68fa ldr r2, [r7, #12] + 8010b7c: b292 uxth r2, r2 + 8010b7e: 60da str r2, [r3, #12] /* Wait for synchro */ if (RTC_ExitInitMode(hrtc) != HAL_OK) - 8010b64: 6878 ldr r0, [r7, #4] - 8010b66: f000 f870 bl 8010c4a - 8010b6a: 4603 mov r3, r0 - 8010b6c: 2b00 cmp r3, #0 - 8010b6e: d004 beq.n 8010b7a + 8010b80: 6878 ldr r0, [r7, #4] + 8010b82: f000 f870 bl 8010c66 + 8010b86: 4603 mov r3, r0 + 8010b88: 2b00 cmp r3, #0 + 8010b8a: d004 beq.n 8010b96 { hrtc->State = HAL_RTC_STATE_ERROR; - 8010b70: 687b ldr r3, [r7, #4] - 8010b72: 2204 movs r2, #4 - 8010b74: 745a strb r2, [r3, #17] + 8010b8c: 687b ldr r3, [r7, #4] + 8010b8e: 2204 movs r2, #4 + 8010b90: 745a strb r2, [r3, #17] return HAL_ERROR; - 8010b76: 2301 movs r3, #1 - 8010b78: e00c b.n 8010b94 + 8010b92: 2301 movs r3, #1 + 8010b94: e00c b.n 8010bb0 } /* Initialize date to 1st of January 2000 */ hrtc->DateToUpdate.Year = 0x00U; - 8010b7a: 687b ldr r3, [r7, #4] - 8010b7c: 2200 movs r2, #0 - 8010b7e: 73da strb r2, [r3, #15] + 8010b96: 687b ldr r3, [r7, #4] + 8010b98: 2200 movs r2, #0 + 8010b9a: 73da strb r2, [r3, #15] hrtc->DateToUpdate.Month = RTC_MONTH_JANUARY; - 8010b80: 687b ldr r3, [r7, #4] - 8010b82: 2201 movs r2, #1 - 8010b84: 735a strb r2, [r3, #13] + 8010b9c: 687b ldr r3, [r7, #4] + 8010b9e: 2201 movs r2, #1 + 8010ba0: 735a strb r2, [r3, #13] hrtc->DateToUpdate.Date = 0x01U; - 8010b86: 687b ldr r3, [r7, #4] - 8010b88: 2201 movs r2, #1 - 8010b8a: 739a strb r2, [r3, #14] + 8010ba2: 687b ldr r3, [r7, #4] + 8010ba4: 2201 movs r2, #1 + 8010ba6: 739a strb r2, [r3, #14] /* Set RTC state */ hrtc->State = HAL_RTC_STATE_READY; - 8010b8c: 687b ldr r3, [r7, #4] - 8010b8e: 2201 movs r2, #1 - 8010b90: 745a strb r2, [r3, #17] + 8010ba8: 687b ldr r3, [r7, #4] + 8010baa: 2201 movs r2, #1 + 8010bac: 745a strb r2, [r3, #17] return HAL_OK; - 8010b92: 2300 movs r3, #0 + 8010bae: 2300 movs r3, #0 } } - 8010b94: 4618 mov r0, r3 - 8010b96: 3710 adds r7, #16 - 8010b98: 46bd mov sp, r7 - 8010b9a: bd80 pop {r7, pc} - 8010b9c: 40006c00 .word 0x40006c00 + 8010bb0: 4618 mov r0, r3 + 8010bb2: 3710 adds r7, #16 + 8010bb4: 46bd mov sp, r7 + 8010bb6: bd80 pop {r7, pc} + 8010bb8: 40006c00 .word 0x40006c00 -08010ba0 : +08010bbc : * @param hrtc pointer to a RTC_HandleTypeDef structure that contains * the configuration information for RTC. * @retval HAL status */ HAL_StatusTypeDef HAL_RTC_WaitForSynchro(RTC_HandleTypeDef *hrtc) { - 8010ba0: b580 push {r7, lr} - 8010ba2: b084 sub sp, #16 - 8010ba4: af00 add r7, sp, #0 - 8010ba6: 6078 str r0, [r7, #4] + 8010bbc: b580 push {r7, lr} + 8010bbe: b084 sub sp, #16 + 8010bc0: af00 add r7, sp, #0 + 8010bc2: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 8010ba8: 2300 movs r3, #0 - 8010baa: 60fb str r3, [r7, #12] + 8010bc4: 2300 movs r3, #0 + 8010bc6: 60fb str r3, [r7, #12] /* Check input parameters */ if (hrtc == NULL) - 8010bac: 687b ldr r3, [r7, #4] - 8010bae: 2b00 cmp r3, #0 - 8010bb0: d101 bne.n 8010bb6 + 8010bc8: 687b ldr r3, [r7, #4] + 8010bca: 2b00 cmp r3, #0 + 8010bcc: d101 bne.n 8010bd2 { return HAL_ERROR; - 8010bb2: 2301 movs r3, #1 - 8010bb4: e01d b.n 8010bf2 + 8010bce: 2301 movs r3, #1 + 8010bd0: e01d b.n 8010c0e } /* Clear RSF flag */ CLEAR_BIT(hrtc->Instance->CRL, RTC_FLAG_RSF); - 8010bb6: 687b ldr r3, [r7, #4] - 8010bb8: 681b ldr r3, [r3, #0] - 8010bba: 685a ldr r2, [r3, #4] - 8010bbc: 687b ldr r3, [r7, #4] - 8010bbe: 681b ldr r3, [r3, #0] - 8010bc0: f022 0208 bic.w r2, r2, #8 - 8010bc4: 605a str r2, [r3, #4] + 8010bd2: 687b ldr r3, [r7, #4] + 8010bd4: 681b ldr r3, [r3, #0] + 8010bd6: 685a ldr r2, [r3, #4] + 8010bd8: 687b ldr r3, [r7, #4] + 8010bda: 681b ldr r3, [r3, #0] + 8010bdc: f022 0208 bic.w r2, r2, #8 + 8010be0: 605a str r2, [r3, #4] tickstart = HAL_GetTick(); - 8010bc6: f7fc fec9 bl 800d95c - 8010bca: 60f8 str r0, [r7, #12] + 8010be2: f7fc fec9 bl 800d978 + 8010be6: 60f8 str r0, [r7, #12] /* Wait the registers to be synchronised */ while ((hrtc->Instance->CRL & RTC_FLAG_RSF) == (uint32_t)RESET) - 8010bcc: e009 b.n 8010be2 + 8010be8: e009 b.n 8010bfe { if ((HAL_GetTick() - tickstart) > RTC_TIMEOUT_VALUE) - 8010bce: f7fc fec5 bl 800d95c - 8010bd2: 4602 mov r2, r0 - 8010bd4: 68fb ldr r3, [r7, #12] - 8010bd6: 1ad3 subs r3, r2, r3 - 8010bd8: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 - 8010bdc: d901 bls.n 8010be2 + 8010bea: f7fc fec5 bl 800d978 + 8010bee: 4602 mov r2, r0 + 8010bf0: 68fb ldr r3, [r7, #12] + 8010bf2: 1ad3 subs r3, r2, r3 + 8010bf4: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 + 8010bf8: d901 bls.n 8010bfe { return HAL_TIMEOUT; - 8010bde: 2303 movs r3, #3 - 8010be0: e007 b.n 8010bf2 + 8010bfa: 2303 movs r3, #3 + 8010bfc: e007 b.n 8010c0e while ((hrtc->Instance->CRL & RTC_FLAG_RSF) == (uint32_t)RESET) - 8010be2: 687b ldr r3, [r7, #4] - 8010be4: 681b ldr r3, [r3, #0] - 8010be6: 685b ldr r3, [r3, #4] - 8010be8: f003 0308 and.w r3, r3, #8 - 8010bec: 2b00 cmp r3, #0 - 8010bee: d0ee beq.n 8010bce + 8010bfe: 687b ldr r3, [r7, #4] + 8010c00: 681b ldr r3, [r3, #0] + 8010c02: 685b ldr r3, [r3, #4] + 8010c04: f003 0308 and.w r3, r3, #8 + 8010c08: 2b00 cmp r3, #0 + 8010c0a: d0ee beq.n 8010bea } } return HAL_OK; - 8010bf0: 2300 movs r3, #0 + 8010c0c: 2300 movs r3, #0 } - 8010bf2: 4618 mov r0, r3 - 8010bf4: 3710 adds r7, #16 - 8010bf6: 46bd mov sp, r7 - 8010bf8: bd80 pop {r7, pc} + 8010c0e: 4618 mov r0, r3 + 8010c10: 3710 adds r7, #16 + 8010c12: 46bd mov sp, r7 + 8010c14: bd80 pop {r7, pc} -08010bfa : +08010c16 : * @param hrtc pointer to a RTC_HandleTypeDef structure that contains * the configuration information for RTC. * @retval HAL status */ static HAL_StatusTypeDef RTC_EnterInitMode(RTC_HandleTypeDef *hrtc) { - 8010bfa: b580 push {r7, lr} - 8010bfc: b084 sub sp, #16 - 8010bfe: af00 add r7, sp, #0 - 8010c00: 6078 str r0, [r7, #4] + 8010c16: b580 push {r7, lr} + 8010c18: b084 sub sp, #16 + 8010c1a: af00 add r7, sp, #0 + 8010c1c: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 8010c02: 2300 movs r3, #0 - 8010c04: 60fb str r3, [r7, #12] + 8010c1e: 2300 movs r3, #0 + 8010c20: 60fb str r3, [r7, #12] tickstart = HAL_GetTick(); - 8010c06: f7fc fea9 bl 800d95c - 8010c0a: 60f8 str r0, [r7, #12] + 8010c22: f7fc fea9 bl 800d978 + 8010c26: 60f8 str r0, [r7, #12] /* Wait till RTC is in INIT state and if Time out is reached exit */ while ((hrtc->Instance->CRL & RTC_CRL_RTOFF) == (uint32_t)RESET) - 8010c0c: e009 b.n 8010c22 + 8010c28: e009 b.n 8010c3e { if ((HAL_GetTick() - tickstart) > RTC_TIMEOUT_VALUE) - 8010c0e: f7fc fea5 bl 800d95c - 8010c12: 4602 mov r2, r0 - 8010c14: 68fb ldr r3, [r7, #12] - 8010c16: 1ad3 subs r3, r2, r3 - 8010c18: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 - 8010c1c: d901 bls.n 8010c22 + 8010c2a: f7fc fea5 bl 800d978 + 8010c2e: 4602 mov r2, r0 + 8010c30: 68fb ldr r3, [r7, #12] + 8010c32: 1ad3 subs r3, r2, r3 + 8010c34: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 + 8010c38: d901 bls.n 8010c3e { return HAL_TIMEOUT; - 8010c1e: 2303 movs r3, #3 - 8010c20: e00f b.n 8010c42 + 8010c3a: 2303 movs r3, #3 + 8010c3c: e00f b.n 8010c5e while ((hrtc->Instance->CRL & RTC_CRL_RTOFF) == (uint32_t)RESET) - 8010c22: 687b ldr r3, [r7, #4] - 8010c24: 681b ldr r3, [r3, #0] - 8010c26: 685b ldr r3, [r3, #4] - 8010c28: f003 0320 and.w r3, r3, #32 - 8010c2c: 2b00 cmp r3, #0 - 8010c2e: d0ee beq.n 8010c0e + 8010c3e: 687b ldr r3, [r7, #4] + 8010c40: 681b ldr r3, [r3, #0] + 8010c42: 685b ldr r3, [r3, #4] + 8010c44: f003 0320 and.w r3, r3, #32 + 8010c48: 2b00 cmp r3, #0 + 8010c4a: d0ee beq.n 8010c2a } } /* Disable the write protection for RTC registers */ __HAL_RTC_WRITEPROTECTION_DISABLE(hrtc); - 8010c30: 687b ldr r3, [r7, #4] - 8010c32: 681b ldr r3, [r3, #0] - 8010c34: 685a ldr r2, [r3, #4] - 8010c36: 687b ldr r3, [r7, #4] - 8010c38: 681b ldr r3, [r3, #0] - 8010c3a: f042 0210 orr.w r2, r2, #16 - 8010c3e: 605a str r2, [r3, #4] + 8010c4c: 687b ldr r3, [r7, #4] + 8010c4e: 681b ldr r3, [r3, #0] + 8010c50: 685a ldr r2, [r3, #4] + 8010c52: 687b ldr r3, [r7, #4] + 8010c54: 681b ldr r3, [r3, #0] + 8010c56: f042 0210 orr.w r2, r2, #16 + 8010c5a: 605a str r2, [r3, #4] return HAL_OK; - 8010c40: 2300 movs r3, #0 + 8010c5c: 2300 movs r3, #0 } - 8010c42: 4618 mov r0, r3 - 8010c44: 3710 adds r7, #16 - 8010c46: 46bd mov sp, r7 - 8010c48: bd80 pop {r7, pc} + 8010c5e: 4618 mov r0, r3 + 8010c60: 3710 adds r7, #16 + 8010c62: 46bd mov sp, r7 + 8010c64: bd80 pop {r7, pc} -08010c4a : +08010c66 : * @param hrtc pointer to a RTC_HandleTypeDef structure that contains * the configuration information for RTC. * @retval HAL status */ static HAL_StatusTypeDef RTC_ExitInitMode(RTC_HandleTypeDef *hrtc) { - 8010c4a: b580 push {r7, lr} - 8010c4c: b084 sub sp, #16 - 8010c4e: af00 add r7, sp, #0 - 8010c50: 6078 str r0, [r7, #4] + 8010c66: b580 push {r7, lr} + 8010c68: b084 sub sp, #16 + 8010c6a: af00 add r7, sp, #0 + 8010c6c: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 8010c52: 2300 movs r3, #0 - 8010c54: 60fb str r3, [r7, #12] + 8010c6e: 2300 movs r3, #0 + 8010c70: 60fb str r3, [r7, #12] /* Disable the write protection for RTC registers */ __HAL_RTC_WRITEPROTECTION_ENABLE(hrtc); - 8010c56: 687b ldr r3, [r7, #4] - 8010c58: 681b ldr r3, [r3, #0] - 8010c5a: 685a ldr r2, [r3, #4] - 8010c5c: 687b ldr r3, [r7, #4] - 8010c5e: 681b ldr r3, [r3, #0] - 8010c60: f022 0210 bic.w r2, r2, #16 - 8010c64: 605a str r2, [r3, #4] + 8010c72: 687b ldr r3, [r7, #4] + 8010c74: 681b ldr r3, [r3, #0] + 8010c76: 685a ldr r2, [r3, #4] + 8010c78: 687b ldr r3, [r7, #4] + 8010c7a: 681b ldr r3, [r3, #0] + 8010c7c: f022 0210 bic.w r2, r2, #16 + 8010c80: 605a str r2, [r3, #4] tickstart = HAL_GetTick(); - 8010c66: f7fc fe79 bl 800d95c - 8010c6a: 60f8 str r0, [r7, #12] + 8010c82: f7fc fe79 bl 800d978 + 8010c86: 60f8 str r0, [r7, #12] /* Wait till RTC is in INIT state and if Time out is reached exit */ while ((hrtc->Instance->CRL & RTC_CRL_RTOFF) == (uint32_t)RESET) - 8010c6c: e009 b.n 8010c82 + 8010c88: e009 b.n 8010c9e { if ((HAL_GetTick() - tickstart) > RTC_TIMEOUT_VALUE) - 8010c6e: f7fc fe75 bl 800d95c - 8010c72: 4602 mov r2, r0 - 8010c74: 68fb ldr r3, [r7, #12] - 8010c76: 1ad3 subs r3, r2, r3 - 8010c78: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 - 8010c7c: d901 bls.n 8010c82 + 8010c8a: f7fc fe75 bl 800d978 + 8010c8e: 4602 mov r2, r0 + 8010c90: 68fb ldr r3, [r7, #12] + 8010c92: 1ad3 subs r3, r2, r3 + 8010c94: f5b3 7f7a cmp.w r3, #1000 @ 0x3e8 + 8010c98: d901 bls.n 8010c9e { return HAL_TIMEOUT; - 8010c7e: 2303 movs r3, #3 - 8010c80: e007 b.n 8010c92 + 8010c9a: 2303 movs r3, #3 + 8010c9c: e007 b.n 8010cae while ((hrtc->Instance->CRL & RTC_CRL_RTOFF) == (uint32_t)RESET) - 8010c82: 687b ldr r3, [r7, #4] - 8010c84: 681b ldr r3, [r3, #0] - 8010c86: 685b ldr r3, [r3, #4] - 8010c88: f003 0320 and.w r3, r3, #32 - 8010c8c: 2b00 cmp r3, #0 - 8010c8e: d0ee beq.n 8010c6e + 8010c9e: 687b ldr r3, [r7, #4] + 8010ca0: 681b ldr r3, [r3, #0] + 8010ca2: 685b ldr r3, [r3, #4] + 8010ca4: f003 0320 and.w r3, r3, #32 + 8010ca8: 2b00 cmp r3, #0 + 8010caa: d0ee beq.n 8010c8a } } return HAL_OK; - 8010c90: 2300 movs r3, #0 + 8010cac: 2300 movs r3, #0 } - 8010c92: 4618 mov r0, r3 - 8010c94: 3710 adds r7, #16 - 8010c96: 46bd mov sp, r7 - 8010c98: bd80 pop {r7, pc} + 8010cae: 4618 mov r0, r3 + 8010cb0: 3710 adds r7, #16 + 8010cb2: 46bd mov sp, r7 + 8010cb4: bd80 pop {r7, pc} -08010c9a : +08010cb6 : * 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) { - 8010c9a: b580 push {r7, lr} - 8010c9c: b082 sub sp, #8 - 8010c9e: af00 add r7, sp, #0 - 8010ca0: 6078 str r0, [r7, #4] + 8010cb6: b580 push {r7, lr} + 8010cb8: b082 sub sp, #8 + 8010cba: af00 add r7, sp, #0 + 8010cbc: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 8010ca2: 687b ldr r3, [r7, #4] - 8010ca4: 2b00 cmp r3, #0 - 8010ca6: d101 bne.n 8010cac + 8010cbe: 687b ldr r3, [r7, #4] + 8010cc0: 2b00 cmp r3, #0 + 8010cc2: d101 bne.n 8010cc8 { return HAL_ERROR; - 8010ca8: 2301 movs r3, #1 - 8010caa: e041 b.n 8010d30 + 8010cc4: 2301 movs r3, #1 + 8010cc6: e041 b.n 8010d4c assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); assert_param(IS_TIM_PERIOD(htim->Init.Period)); assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); if (htim->State == HAL_TIM_STATE_RESET) - 8010cac: 687b ldr r3, [r7, #4] - 8010cae: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 8010cb2: b2db uxtb r3, r3 - 8010cb4: 2b00 cmp r3, #0 - 8010cb6: d106 bne.n 8010cc6 + 8010cc8: 687b ldr r3, [r7, #4] + 8010cca: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 8010cce: b2db uxtb r3, r3 + 8010cd0: 2b00 cmp r3, #0 + 8010cd2: d106 bne.n 8010ce2 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 8010cb8: 687b ldr r3, [r7, #4] - 8010cba: 2200 movs r2, #0 - 8010cbc: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8010cd4: 687b ldr r3, [r7, #4] + 8010cd6: 2200 movs r2, #0 + 8010cd8: 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); - 8010cc0: 6878 ldr r0, [r7, #4] - 8010cc2: f7fc fb3b bl 800d33c + 8010cdc: 6878 ldr r0, [r7, #4] + 8010cde: f7fc fb3b bl 800d358 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8010cc6: 687b ldr r3, [r7, #4] - 8010cc8: 2202 movs r2, #2 - 8010cca: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8010ce2: 687b ldr r3, [r7, #4] + 8010ce4: 2202 movs r2, #2 + 8010ce6: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Set the Time Base configuration */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 8010cce: 687b ldr r3, [r7, #4] - 8010cd0: 681a ldr r2, [r3, #0] - 8010cd2: 687b ldr r3, [r7, #4] - 8010cd4: 3304 adds r3, #4 - 8010cd6: 4619 mov r1, r3 - 8010cd8: 4610 mov r0, r2 - 8010cda: f000 fcc3 bl 8011664 + 8010cea: 687b ldr r3, [r7, #4] + 8010cec: 681a ldr r2, [r3, #0] + 8010cee: 687b ldr r3, [r7, #4] + 8010cf0: 3304 adds r3, #4 + 8010cf2: 4619 mov r1, r3 + 8010cf4: 4610 mov r0, r2 + 8010cf6: f000 fcc3 bl 8011680 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 8010cde: 687b ldr r3, [r7, #4] - 8010ce0: 2201 movs r2, #1 - 8010ce2: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 8010cfa: 687b ldr r3, [r7, #4] + 8010cfc: 2201 movs r2, #1 + 8010cfe: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8010ce6: 687b ldr r3, [r7, #4] - 8010ce8: 2201 movs r2, #1 - 8010cea: f883 203e strb.w r2, [r3, #62] @ 0x3e - 8010cee: 687b ldr r3, [r7, #4] - 8010cf0: 2201 movs r2, #1 - 8010cf2: f883 203f strb.w r2, [r3, #63] @ 0x3f - 8010cf6: 687b ldr r3, [r7, #4] - 8010cf8: 2201 movs r2, #1 - 8010cfa: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 8010cfe: 687b ldr r3, [r7, #4] - 8010d00: 2201 movs r2, #1 - 8010d02: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8010d02: 687b ldr r3, [r7, #4] + 8010d04: 2201 movs r2, #1 + 8010d06: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8010d0a: 687b ldr r3, [r7, #4] + 8010d0c: 2201 movs r2, #1 + 8010d0e: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8010d12: 687b ldr r3, [r7, #4] + 8010d14: 2201 movs r2, #1 + 8010d16: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8010d1a: 687b ldr r3, [r7, #4] + 8010d1c: 2201 movs r2, #1 + 8010d1e: f883 2041 strb.w r2, [r3, #65] @ 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8010d06: 687b ldr r3, [r7, #4] - 8010d08: 2201 movs r2, #1 - 8010d0a: f883 2042 strb.w r2, [r3, #66] @ 0x42 - 8010d0e: 687b ldr r3, [r7, #4] - 8010d10: 2201 movs r2, #1 - 8010d12: f883 2043 strb.w r2, [r3, #67] @ 0x43 - 8010d16: 687b ldr r3, [r7, #4] - 8010d18: 2201 movs r2, #1 - 8010d1a: f883 2044 strb.w r2, [r3, #68] @ 0x44 - 8010d1e: 687b ldr r3, [r7, #4] - 8010d20: 2201 movs r2, #1 - 8010d22: f883 2045 strb.w r2, [r3, #69] @ 0x45 + 8010d22: 687b ldr r3, [r7, #4] + 8010d24: 2201 movs r2, #1 + 8010d26: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8010d2a: 687b ldr r3, [r7, #4] + 8010d2c: 2201 movs r2, #1 + 8010d2e: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 8010d32: 687b ldr r3, [r7, #4] + 8010d34: 2201 movs r2, #1 + 8010d36: f883 2044 strb.w r2, [r3, #68] @ 0x44 + 8010d3a: 687b ldr r3, [r7, #4] + 8010d3c: 2201 movs r2, #1 + 8010d3e: f883 2045 strb.w r2, [r3, #69] @ 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8010d26: 687b ldr r3, [r7, #4] - 8010d28: 2201 movs r2, #1 - 8010d2a: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8010d42: 687b ldr r3, [r7, #4] + 8010d44: 2201 movs r2, #1 + 8010d46: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 8010d2e: 2300 movs r3, #0 + 8010d4a: 2300 movs r3, #0 } - 8010d30: 4618 mov r0, r3 - 8010d32: 3708 adds r7, #8 - 8010d34: 46bd mov sp, r7 - 8010d36: bd80 pop {r7, pc} + 8010d4c: 4618 mov r0, r3 + 8010d4e: 3708 adds r7, #8 + 8010d50: 46bd mov sp, r7 + 8010d52: bd80 pop {r7, pc} -08010d38 : +08010d54 : * @arg TIM_CHANNEL_3: TIM Channel 3 selected * @arg TIM_CHANNEL_4: TIM Channel 4 selected * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_OC_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel) { - 8010d38: b580 push {r7, lr} - 8010d3a: b084 sub sp, #16 - 8010d3c: af00 add r7, sp, #0 - 8010d3e: 6078 str r0, [r7, #4] - 8010d40: 6039 str r1, [r7, #0] + 8010d54: b580 push {r7, lr} + 8010d56: b084 sub sp, #16 + 8010d58: af00 add r7, sp, #0 + 8010d5a: 6078 str r0, [r7, #4] + 8010d5c: 6039 str r1, [r7, #0] HAL_StatusTypeDef status = HAL_OK; - 8010d42: 2300 movs r3, #0 - 8010d44: 73fb strb r3, [r7, #15] + 8010d5e: 2300 movs r3, #0 + 8010d60: 73fb strb r3, [r7, #15] /* Check the parameters */ assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); /* Check the TIM channel state */ if (TIM_CHANNEL_STATE_GET(htim, Channel) != HAL_TIM_CHANNEL_STATE_READY) - 8010d46: 683b ldr r3, [r7, #0] - 8010d48: 2b00 cmp r3, #0 - 8010d4a: d109 bne.n 8010d60 - 8010d4c: 687b ldr r3, [r7, #4] - 8010d4e: f893 303e ldrb.w r3, [r3, #62] @ 0x3e - 8010d52: b2db uxtb r3, r3 - 8010d54: 2b01 cmp r3, #1 - 8010d56: bf14 ite ne - 8010d58: 2301 movne r3, #1 - 8010d5a: 2300 moveq r3, #0 - 8010d5c: b2db uxtb r3, r3 - 8010d5e: e022 b.n 8010da6 - 8010d60: 683b ldr r3, [r7, #0] - 8010d62: 2b04 cmp r3, #4 - 8010d64: d109 bne.n 8010d7a - 8010d66: 687b ldr r3, [r7, #4] - 8010d68: f893 303f ldrb.w r3, [r3, #63] @ 0x3f - 8010d6c: b2db uxtb r3, r3 - 8010d6e: 2b01 cmp r3, #1 - 8010d70: bf14 ite ne - 8010d72: 2301 movne r3, #1 - 8010d74: 2300 moveq r3, #0 - 8010d76: b2db uxtb r3, r3 - 8010d78: e015 b.n 8010da6 - 8010d7a: 683b ldr r3, [r7, #0] - 8010d7c: 2b08 cmp r3, #8 - 8010d7e: d109 bne.n 8010d94 - 8010d80: 687b ldr r3, [r7, #4] - 8010d82: f893 3040 ldrb.w r3, [r3, #64] @ 0x40 - 8010d86: b2db uxtb r3, r3 - 8010d88: 2b01 cmp r3, #1 - 8010d8a: bf14 ite ne - 8010d8c: 2301 movne r3, #1 - 8010d8e: 2300 moveq r3, #0 - 8010d90: b2db uxtb r3, r3 - 8010d92: e008 b.n 8010da6 - 8010d94: 687b ldr r3, [r7, #4] - 8010d96: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8010d9a: b2db uxtb r3, r3 - 8010d9c: 2b01 cmp r3, #1 - 8010d9e: bf14 ite ne - 8010da0: 2301 movne r3, #1 - 8010da2: 2300 moveq r3, #0 - 8010da4: b2db uxtb r3, r3 - 8010da6: 2b00 cmp r3, #0 - 8010da8: d001 beq.n 8010dae + 8010d62: 683b ldr r3, [r7, #0] + 8010d64: 2b00 cmp r3, #0 + 8010d66: d109 bne.n 8010d7c + 8010d68: 687b ldr r3, [r7, #4] + 8010d6a: f893 303e ldrb.w r3, [r3, #62] @ 0x3e + 8010d6e: b2db uxtb r3, r3 + 8010d70: 2b01 cmp r3, #1 + 8010d72: bf14 ite ne + 8010d74: 2301 movne r3, #1 + 8010d76: 2300 moveq r3, #0 + 8010d78: b2db uxtb r3, r3 + 8010d7a: e022 b.n 8010dc2 + 8010d7c: 683b ldr r3, [r7, #0] + 8010d7e: 2b04 cmp r3, #4 + 8010d80: d109 bne.n 8010d96 + 8010d82: 687b ldr r3, [r7, #4] + 8010d84: f893 303f ldrb.w r3, [r3, #63] @ 0x3f + 8010d88: b2db uxtb r3, r3 + 8010d8a: 2b01 cmp r3, #1 + 8010d8c: bf14 ite ne + 8010d8e: 2301 movne r3, #1 + 8010d90: 2300 moveq r3, #0 + 8010d92: b2db uxtb r3, r3 + 8010d94: e015 b.n 8010dc2 + 8010d96: 683b ldr r3, [r7, #0] + 8010d98: 2b08 cmp r3, #8 + 8010d9a: d109 bne.n 8010db0 + 8010d9c: 687b ldr r3, [r7, #4] + 8010d9e: f893 3040 ldrb.w r3, [r3, #64] @ 0x40 + 8010da2: b2db uxtb r3, r3 + 8010da4: 2b01 cmp r3, #1 + 8010da6: bf14 ite ne + 8010da8: 2301 movne r3, #1 + 8010daa: 2300 moveq r3, #0 + 8010dac: b2db uxtb r3, r3 + 8010dae: e008 b.n 8010dc2 + 8010db0: 687b ldr r3, [r7, #4] + 8010db2: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8010db6: b2db uxtb r3, r3 + 8010db8: 2b01 cmp r3, #1 + 8010dba: bf14 ite ne + 8010dbc: 2301 movne r3, #1 + 8010dbe: 2300 moveq r3, #0 + 8010dc0: b2db uxtb r3, r3 + 8010dc2: 2b00 cmp r3, #0 + 8010dc4: d001 beq.n 8010dca { return HAL_ERROR; - 8010daa: 2301 movs r3, #1 - 8010dac: e0ae b.n 8010f0c + 8010dc6: 2301 movs r3, #1 + 8010dc8: e0ae b.n 8010f28 } /* Set the TIM channel state */ TIM_CHANNEL_STATE_SET(htim, Channel, HAL_TIM_CHANNEL_STATE_BUSY); - 8010dae: 683b ldr r3, [r7, #0] - 8010db0: 2b00 cmp r3, #0 - 8010db2: d104 bne.n 8010dbe - 8010db4: 687b ldr r3, [r7, #4] - 8010db6: 2202 movs r2, #2 - 8010db8: f883 203e strb.w r2, [r3, #62] @ 0x3e - 8010dbc: e013 b.n 8010de6 - 8010dbe: 683b ldr r3, [r7, #0] - 8010dc0: 2b04 cmp r3, #4 - 8010dc2: d104 bne.n 8010dce - 8010dc4: 687b ldr r3, [r7, #4] - 8010dc6: 2202 movs r2, #2 - 8010dc8: f883 203f strb.w r2, [r3, #63] @ 0x3f - 8010dcc: e00b b.n 8010de6 - 8010dce: 683b ldr r3, [r7, #0] - 8010dd0: 2b08 cmp r3, #8 - 8010dd2: d104 bne.n 8010dde - 8010dd4: 687b ldr r3, [r7, #4] - 8010dd6: 2202 movs r2, #2 - 8010dd8: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 8010ddc: e003 b.n 8010de6 - 8010dde: 687b ldr r3, [r7, #4] - 8010de0: 2202 movs r2, #2 - 8010de2: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8010dca: 683b ldr r3, [r7, #0] + 8010dcc: 2b00 cmp r3, #0 + 8010dce: d104 bne.n 8010dda + 8010dd0: 687b ldr r3, [r7, #4] + 8010dd2: 2202 movs r2, #2 + 8010dd4: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8010dd8: e013 b.n 8010e02 + 8010dda: 683b ldr r3, [r7, #0] + 8010ddc: 2b04 cmp r3, #4 + 8010dde: d104 bne.n 8010dea + 8010de0: 687b ldr r3, [r7, #4] + 8010de2: 2202 movs r2, #2 + 8010de4: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8010de8: e00b b.n 8010e02 + 8010dea: 683b ldr r3, [r7, #0] + 8010dec: 2b08 cmp r3, #8 + 8010dee: d104 bne.n 8010dfa + 8010df0: 687b ldr r3, [r7, #4] + 8010df2: 2202 movs r2, #2 + 8010df4: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8010df8: e003 b.n 8010e02 + 8010dfa: 687b ldr r3, [r7, #4] + 8010dfc: 2202 movs r2, #2 + 8010dfe: f883 2041 strb.w r2, [r3, #65] @ 0x41 switch (Channel) - 8010de6: 683b ldr r3, [r7, #0] - 8010de8: 2b0c cmp r3, #12 - 8010dea: d841 bhi.n 8010e70 - 8010dec: a201 add r2, pc, #4 @ (adr r2, 8010df4 ) - 8010dee: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8010df2: bf00 nop - 8010df4: 08010e29 .word 0x08010e29 - 8010df8: 08010e71 .word 0x08010e71 - 8010dfc: 08010e71 .word 0x08010e71 - 8010e00: 08010e71 .word 0x08010e71 - 8010e04: 08010e3b .word 0x08010e3b - 8010e08: 08010e71 .word 0x08010e71 - 8010e0c: 08010e71 .word 0x08010e71 - 8010e10: 08010e71 .word 0x08010e71 - 8010e14: 08010e4d .word 0x08010e4d - 8010e18: 08010e71 .word 0x08010e71 - 8010e1c: 08010e71 .word 0x08010e71 - 8010e20: 08010e71 .word 0x08010e71 - 8010e24: 08010e5f .word 0x08010e5f + 8010e02: 683b ldr r3, [r7, #0] + 8010e04: 2b0c cmp r3, #12 + 8010e06: d841 bhi.n 8010e8c + 8010e08: a201 add r2, pc, #4 @ (adr r2, 8010e10 ) + 8010e0a: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8010e0e: bf00 nop + 8010e10: 08010e45 .word 0x08010e45 + 8010e14: 08010e8d .word 0x08010e8d + 8010e18: 08010e8d .word 0x08010e8d + 8010e1c: 08010e8d .word 0x08010e8d + 8010e20: 08010e57 .word 0x08010e57 + 8010e24: 08010e8d .word 0x08010e8d + 8010e28: 08010e8d .word 0x08010e8d + 8010e2c: 08010e8d .word 0x08010e8d + 8010e30: 08010e69 .word 0x08010e69 + 8010e34: 08010e8d .word 0x08010e8d + 8010e38: 08010e8d .word 0x08010e8d + 8010e3c: 08010e8d .word 0x08010e8d + 8010e40: 08010e7b .word 0x08010e7b { case TIM_CHANNEL_1: { /* Enable the TIM Capture/Compare 1 interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC1); - 8010e28: 687b ldr r3, [r7, #4] - 8010e2a: 681b ldr r3, [r3, #0] - 8010e2c: 68da ldr r2, [r3, #12] - 8010e2e: 687b ldr r3, [r7, #4] - 8010e30: 681b ldr r3, [r3, #0] - 8010e32: f042 0202 orr.w r2, r2, #2 - 8010e36: 60da str r2, [r3, #12] + 8010e44: 687b ldr r3, [r7, #4] + 8010e46: 681b ldr r3, [r3, #0] + 8010e48: 68da ldr r2, [r3, #12] + 8010e4a: 687b ldr r3, [r7, #4] + 8010e4c: 681b ldr r3, [r3, #0] + 8010e4e: f042 0202 orr.w r2, r2, #2 + 8010e52: 60da str r2, [r3, #12] break; - 8010e38: e01d b.n 8010e76 + 8010e54: e01d b.n 8010e92 } case TIM_CHANNEL_2: { /* Enable the TIM Capture/Compare 2 interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC2); - 8010e3a: 687b ldr r3, [r7, #4] - 8010e3c: 681b ldr r3, [r3, #0] - 8010e3e: 68da ldr r2, [r3, #12] - 8010e40: 687b ldr r3, [r7, #4] - 8010e42: 681b ldr r3, [r3, #0] - 8010e44: f042 0204 orr.w r2, r2, #4 - 8010e48: 60da str r2, [r3, #12] + 8010e56: 687b ldr r3, [r7, #4] + 8010e58: 681b ldr r3, [r3, #0] + 8010e5a: 68da ldr r2, [r3, #12] + 8010e5c: 687b ldr r3, [r7, #4] + 8010e5e: 681b ldr r3, [r3, #0] + 8010e60: f042 0204 orr.w r2, r2, #4 + 8010e64: 60da str r2, [r3, #12] break; - 8010e4a: e014 b.n 8010e76 + 8010e66: e014 b.n 8010e92 } case TIM_CHANNEL_3: { /* Enable the TIM Capture/Compare 3 interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC3); - 8010e4c: 687b ldr r3, [r7, #4] - 8010e4e: 681b ldr r3, [r3, #0] - 8010e50: 68da ldr r2, [r3, #12] - 8010e52: 687b ldr r3, [r7, #4] - 8010e54: 681b ldr r3, [r3, #0] - 8010e56: f042 0208 orr.w r2, r2, #8 - 8010e5a: 60da str r2, [r3, #12] + 8010e68: 687b ldr r3, [r7, #4] + 8010e6a: 681b ldr r3, [r3, #0] + 8010e6c: 68da ldr r2, [r3, #12] + 8010e6e: 687b ldr r3, [r7, #4] + 8010e70: 681b ldr r3, [r3, #0] + 8010e72: f042 0208 orr.w r2, r2, #8 + 8010e76: 60da str r2, [r3, #12] break; - 8010e5c: e00b b.n 8010e76 + 8010e78: e00b b.n 8010e92 } case TIM_CHANNEL_4: { /* Enable the TIM Capture/Compare 4 interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_CC4); - 8010e5e: 687b ldr r3, [r7, #4] - 8010e60: 681b ldr r3, [r3, #0] - 8010e62: 68da ldr r2, [r3, #12] - 8010e64: 687b ldr r3, [r7, #4] - 8010e66: 681b ldr r3, [r3, #0] - 8010e68: f042 0210 orr.w r2, r2, #16 - 8010e6c: 60da str r2, [r3, #12] + 8010e7a: 687b ldr r3, [r7, #4] + 8010e7c: 681b ldr r3, [r3, #0] + 8010e7e: 68da ldr r2, [r3, #12] + 8010e80: 687b ldr r3, [r7, #4] + 8010e82: 681b ldr r3, [r3, #0] + 8010e84: f042 0210 orr.w r2, r2, #16 + 8010e88: 60da str r2, [r3, #12] break; - 8010e6e: e002 b.n 8010e76 + 8010e8a: e002 b.n 8010e92 } default: status = HAL_ERROR; - 8010e70: 2301 movs r3, #1 - 8010e72: 73fb strb r3, [r7, #15] + 8010e8c: 2301 movs r3, #1 + 8010e8e: 73fb strb r3, [r7, #15] break; - 8010e74: bf00 nop + 8010e90: bf00 nop } if (status == HAL_OK) - 8010e76: 7bfb ldrb r3, [r7, #15] - 8010e78: 2b00 cmp r3, #0 - 8010e7a: d146 bne.n 8010f0a + 8010e92: 7bfb ldrb r3, [r7, #15] + 8010e94: 2b00 cmp r3, #0 + 8010e96: d146 bne.n 8010f26 { /* Enable the Output compare channel */ TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); - 8010e7c: 687b ldr r3, [r7, #4] - 8010e7e: 681b ldr r3, [r3, #0] - 8010e80: 2201 movs r2, #1 - 8010e82: 6839 ldr r1, [r7, #0] - 8010e84: 4618 mov r0, r3 - 8010e86: f000 fe83 bl 8011b90 + 8010e98: 687b ldr r3, [r7, #4] + 8010e9a: 681b ldr r3, [r3, #0] + 8010e9c: 2201 movs r2, #1 + 8010e9e: 6839 ldr r1, [r7, #0] + 8010ea0: 4618 mov r0, r3 + 8010ea2: f000 fe83 bl 8011bac if (IS_TIM_BREAK_INSTANCE(htim->Instance) != RESET) - 8010e8a: 687b ldr r3, [r7, #4] - 8010e8c: 681b ldr r3, [r3, #0] - 8010e8e: 4a21 ldr r2, [pc, #132] @ (8010f14 ) - 8010e90: 4293 cmp r3, r2 - 8010e92: d107 bne.n 8010ea4 + 8010ea6: 687b ldr r3, [r7, #4] + 8010ea8: 681b ldr r3, [r3, #0] + 8010eaa: 4a21 ldr r2, [pc, #132] @ (8010f30 ) + 8010eac: 4293 cmp r3, r2 + 8010eae: d107 bne.n 8010ec0 { /* Enable the main output */ __HAL_TIM_MOE_ENABLE(htim); - 8010e94: 687b ldr r3, [r7, #4] - 8010e96: 681b ldr r3, [r3, #0] - 8010e98: 6c5a ldr r2, [r3, #68] @ 0x44 - 8010e9a: 687b ldr r3, [r7, #4] - 8010e9c: 681b ldr r3, [r3, #0] - 8010e9e: f442 4200 orr.w r2, r2, #32768 @ 0x8000 - 8010ea2: 645a str r2, [r3, #68] @ 0x44 + 8010eb0: 687b ldr r3, [r7, #4] + 8010eb2: 681b ldr r3, [r3, #0] + 8010eb4: 6c5a ldr r2, [r3, #68] @ 0x44 + 8010eb6: 687b ldr r3, [r7, #4] + 8010eb8: 681b ldr r3, [r3, #0] + 8010eba: f442 4200 orr.w r2, r2, #32768 @ 0x8000 + 8010ebe: 645a str r2, [r3, #68] @ 0x44 } /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 8010ea4: 687b ldr r3, [r7, #4] - 8010ea6: 681b ldr r3, [r3, #0] - 8010ea8: 4a1a ldr r2, [pc, #104] @ (8010f14 ) - 8010eaa: 4293 cmp r3, r2 - 8010eac: d013 beq.n 8010ed6 - 8010eae: 687b ldr r3, [r7, #4] - 8010eb0: 681b ldr r3, [r3, #0] - 8010eb2: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8010eb6: d00e beq.n 8010ed6 - 8010eb8: 687b ldr r3, [r7, #4] - 8010eba: 681b ldr r3, [r3, #0] - 8010ebc: 4a16 ldr r2, [pc, #88] @ (8010f18 ) - 8010ebe: 4293 cmp r3, r2 - 8010ec0: d009 beq.n 8010ed6 - 8010ec2: 687b ldr r3, [r7, #4] - 8010ec4: 681b ldr r3, [r3, #0] - 8010ec6: 4a15 ldr r2, [pc, #84] @ (8010f1c ) - 8010ec8: 4293 cmp r3, r2 - 8010eca: d004 beq.n 8010ed6 - 8010ecc: 687b ldr r3, [r7, #4] - 8010ece: 681b ldr r3, [r3, #0] - 8010ed0: 4a13 ldr r2, [pc, #76] @ (8010f20 ) - 8010ed2: 4293 cmp r3, r2 - 8010ed4: d111 bne.n 8010efa - { - tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; - 8010ed6: 687b ldr r3, [r7, #4] - 8010ed8: 681b ldr r3, [r3, #0] - 8010eda: 689b ldr r3, [r3, #8] - 8010edc: f003 0307 and.w r3, r3, #7 - 8010ee0: 60bb str r3, [r7, #8] - if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 8010ee2: 68bb ldr r3, [r7, #8] - 8010ee4: 2b06 cmp r3, #6 - 8010ee6: d010 beq.n 8010f0a - { - __HAL_TIM_ENABLE(htim); + 8010ec0: 687b ldr r3, [r7, #4] + 8010ec2: 681b ldr r3, [r3, #0] + 8010ec4: 4a1a ldr r2, [pc, #104] @ (8010f30 ) + 8010ec6: 4293 cmp r3, r2 + 8010ec8: d013 beq.n 8010ef2 + 8010eca: 687b ldr r3, [r7, #4] + 8010ecc: 681b ldr r3, [r3, #0] + 8010ece: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8010ed2: d00e beq.n 8010ef2 + 8010ed4: 687b ldr r3, [r7, #4] + 8010ed6: 681b ldr r3, [r3, #0] + 8010ed8: 4a16 ldr r2, [pc, #88] @ (8010f34 ) + 8010eda: 4293 cmp r3, r2 + 8010edc: d009 beq.n 8010ef2 + 8010ede: 687b ldr r3, [r7, #4] + 8010ee0: 681b ldr r3, [r3, #0] + 8010ee2: 4a15 ldr r2, [pc, #84] @ (8010f38 ) + 8010ee4: 4293 cmp r3, r2 + 8010ee6: d004 beq.n 8010ef2 8010ee8: 687b ldr r3, [r7, #4] 8010eea: 681b ldr r3, [r3, #0] - 8010eec: 681a ldr r2, [r3, #0] - 8010eee: 687b ldr r3, [r7, #4] - 8010ef0: 681b ldr r3, [r3, #0] - 8010ef2: f042 0201 orr.w r2, r2, #1 - 8010ef6: 601a str r2, [r3, #0] + 8010eec: 4a13 ldr r2, [pc, #76] @ (8010f3c ) + 8010eee: 4293 cmp r3, r2 + 8010ef0: d111 bne.n 8010f16 + { + tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; + 8010ef2: 687b ldr r3, [r7, #4] + 8010ef4: 681b ldr r3, [r3, #0] + 8010ef6: 689b ldr r3, [r3, #8] + 8010ef8: f003 0307 and.w r3, r3, #7 + 8010efc: 60bb str r3, [r7, #8] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 8010ef8: e007 b.n 8010f0a + 8010efe: 68bb ldr r3, [r7, #8] + 8010f00: 2b06 cmp r3, #6 + 8010f02: d010 beq.n 8010f26 + { + __HAL_TIM_ENABLE(htim); + 8010f04: 687b ldr r3, [r7, #4] + 8010f06: 681b ldr r3, [r3, #0] + 8010f08: 681a ldr r2, [r3, #0] + 8010f0a: 687b ldr r3, [r7, #4] + 8010f0c: 681b ldr r3, [r3, #0] + 8010f0e: f042 0201 orr.w r2, r2, #1 + 8010f12: 601a str r2, [r3, #0] + if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) + 8010f14: e007 b.n 8010f26 } } else { __HAL_TIM_ENABLE(htim); - 8010efa: 687b ldr r3, [r7, #4] - 8010efc: 681b ldr r3, [r3, #0] - 8010efe: 681a ldr r2, [r3, #0] - 8010f00: 687b ldr r3, [r7, #4] - 8010f02: 681b ldr r3, [r3, #0] - 8010f04: f042 0201 orr.w r2, r2, #1 - 8010f08: 601a str r2, [r3, #0] + 8010f16: 687b ldr r3, [r7, #4] + 8010f18: 681b ldr r3, [r3, #0] + 8010f1a: 681a ldr r2, [r3, #0] + 8010f1c: 687b ldr r3, [r7, #4] + 8010f1e: 681b ldr r3, [r3, #0] + 8010f20: f042 0201 orr.w r2, r2, #1 + 8010f24: 601a str r2, [r3, #0] } } /* Return function status */ return status; - 8010f0a: 7bfb ldrb r3, [r7, #15] + 8010f26: 7bfb ldrb r3, [r7, #15] } - 8010f0c: 4618 mov r0, r3 - 8010f0e: 3710 adds r7, #16 - 8010f10: 46bd mov sp, r7 - 8010f12: bd80 pop {r7, pc} - 8010f14: 40012c00 .word 0x40012c00 - 8010f18: 40000400 .word 0x40000400 - 8010f1c: 40000800 .word 0x40000800 - 8010f20: 40000c00 .word 0x40000c00 + 8010f28: 4618 mov r0, r3 + 8010f2a: 3710 adds r7, #16 + 8010f2c: 46bd mov sp, r7 + 8010f2e: bd80 pop {r7, pc} + 8010f30: 40012c00 .word 0x40012c00 + 8010f34: 40000400 .word 0x40000400 + 8010f38: 40000800 .word 0x40000800 + 8010f3c: 40000c00 .word 0x40000c00 -08010f24 : +08010f40 : * Ex: call @ref HAL_TIM_PWM_DeInit() before HAL_TIM_PWM_Init() * @param htim TIM PWM handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_PWM_Init(TIM_HandleTypeDef *htim) { - 8010f24: b580 push {r7, lr} - 8010f26: b082 sub sp, #8 - 8010f28: af00 add r7, sp, #0 - 8010f2a: 6078 str r0, [r7, #4] + 8010f40: b580 push {r7, lr} + 8010f42: b082 sub sp, #8 + 8010f44: af00 add r7, sp, #0 + 8010f46: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 8010f2c: 687b ldr r3, [r7, #4] - 8010f2e: 2b00 cmp r3, #0 - 8010f30: d101 bne.n 8010f36 + 8010f48: 687b ldr r3, [r7, #4] + 8010f4a: 2b00 cmp r3, #0 + 8010f4c: d101 bne.n 8010f52 { return HAL_ERROR; - 8010f32: 2301 movs r3, #1 - 8010f34: e041 b.n 8010fba + 8010f4e: 2301 movs r3, #1 + 8010f50: e041 b.n 8010fd6 assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); assert_param(IS_TIM_PERIOD(htim->Init.Period)); assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); if (htim->State == HAL_TIM_STATE_RESET) - 8010f36: 687b ldr r3, [r7, #4] - 8010f38: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 8010f3c: b2db uxtb r3, r3 - 8010f3e: 2b00 cmp r3, #0 - 8010f40: d106 bne.n 8010f50 + 8010f52: 687b ldr r3, [r7, #4] + 8010f54: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 8010f58: b2db uxtb r3, r3 + 8010f5a: 2b00 cmp r3, #0 + 8010f5c: d106 bne.n 8010f6c { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 8010f42: 687b ldr r3, [r7, #4] - 8010f44: 2200 movs r2, #0 - 8010f46: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8010f5e: 687b ldr r3, [r7, #4] + 8010f60: 2200 movs r2, #0 + 8010f62: f883 203c strb.w r2, [r3, #60] @ 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->PWM_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ HAL_TIM_PWM_MspInit(htim); - 8010f4a: 6878 ldr r0, [r7, #4] - 8010f4c: f000 f839 bl 8010fc2 + 8010f66: 6878 ldr r0, [r7, #4] + 8010f68: f000 f839 bl 8010fde #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8010f50: 687b ldr r3, [r7, #4] - 8010f52: 2202 movs r2, #2 - 8010f54: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8010f6c: 687b ldr r3, [r7, #4] + 8010f6e: 2202 movs r2, #2 + 8010f70: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Init the base time for the PWM */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 8010f58: 687b ldr r3, [r7, #4] - 8010f5a: 681a ldr r2, [r3, #0] - 8010f5c: 687b ldr r3, [r7, #4] - 8010f5e: 3304 adds r3, #4 - 8010f60: 4619 mov r1, r3 - 8010f62: 4610 mov r0, r2 - 8010f64: f000 fb7e bl 8011664 + 8010f74: 687b ldr r3, [r7, #4] + 8010f76: 681a ldr r2, [r3, #0] + 8010f78: 687b ldr r3, [r7, #4] + 8010f7a: 3304 adds r3, #4 + 8010f7c: 4619 mov r1, r3 + 8010f7e: 4610 mov r0, r2 + 8010f80: f000 fb7e bl 8011680 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 8010f68: 687b ldr r3, [r7, #4] - 8010f6a: 2201 movs r2, #1 - 8010f6c: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 8010f84: 687b ldr r3, [r7, #4] + 8010f86: 2201 movs r2, #1 + 8010f88: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8010f70: 687b ldr r3, [r7, #4] - 8010f72: 2201 movs r2, #1 - 8010f74: f883 203e strb.w r2, [r3, #62] @ 0x3e - 8010f78: 687b ldr r3, [r7, #4] - 8010f7a: 2201 movs r2, #1 - 8010f7c: f883 203f strb.w r2, [r3, #63] @ 0x3f - 8010f80: 687b ldr r3, [r7, #4] - 8010f82: 2201 movs r2, #1 - 8010f84: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 8010f88: 687b ldr r3, [r7, #4] - 8010f8a: 2201 movs r2, #1 - 8010f8c: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8010f8c: 687b ldr r3, [r7, #4] + 8010f8e: 2201 movs r2, #1 + 8010f90: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8010f94: 687b ldr r3, [r7, #4] + 8010f96: 2201 movs r2, #1 + 8010f98: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8010f9c: 687b ldr r3, [r7, #4] + 8010f9e: 2201 movs r2, #1 + 8010fa0: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8010fa4: 687b ldr r3, [r7, #4] + 8010fa6: 2201 movs r2, #1 + 8010fa8: f883 2041 strb.w r2, [r3, #65] @ 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8010f90: 687b ldr r3, [r7, #4] - 8010f92: 2201 movs r2, #1 - 8010f94: f883 2042 strb.w r2, [r3, #66] @ 0x42 - 8010f98: 687b ldr r3, [r7, #4] - 8010f9a: 2201 movs r2, #1 - 8010f9c: f883 2043 strb.w r2, [r3, #67] @ 0x43 - 8010fa0: 687b ldr r3, [r7, #4] - 8010fa2: 2201 movs r2, #1 - 8010fa4: f883 2044 strb.w r2, [r3, #68] @ 0x44 - 8010fa8: 687b ldr r3, [r7, #4] - 8010faa: 2201 movs r2, #1 - 8010fac: f883 2045 strb.w r2, [r3, #69] @ 0x45 + 8010fac: 687b ldr r3, [r7, #4] + 8010fae: 2201 movs r2, #1 + 8010fb0: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8010fb4: 687b ldr r3, [r7, #4] + 8010fb6: 2201 movs r2, #1 + 8010fb8: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 8010fbc: 687b ldr r3, [r7, #4] + 8010fbe: 2201 movs r2, #1 + 8010fc0: f883 2044 strb.w r2, [r3, #68] @ 0x44 + 8010fc4: 687b ldr r3, [r7, #4] + 8010fc6: 2201 movs r2, #1 + 8010fc8: f883 2045 strb.w r2, [r3, #69] @ 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8010fb0: 687b ldr r3, [r7, #4] - 8010fb2: 2201 movs r2, #1 - 8010fb4: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8010fcc: 687b ldr r3, [r7, #4] + 8010fce: 2201 movs r2, #1 + 8010fd0: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 8010fb8: 2300 movs r3, #0 + 8010fd4: 2300 movs r3, #0 } - 8010fba: 4618 mov r0, r3 - 8010fbc: 3708 adds r7, #8 - 8010fbe: 46bd mov sp, r7 - 8010fc0: bd80 pop {r7, pc} + 8010fd6: 4618 mov r0, r3 + 8010fd8: 3708 adds r7, #8 + 8010fda: 46bd mov sp, r7 + 8010fdc: bd80 pop {r7, pc} -08010fc2 : +08010fde : * @brief Initializes the TIM PWM MSP. * @param htim TIM PWM handle * @retval None */ __weak void HAL_TIM_PWM_MspInit(TIM_HandleTypeDef *htim) { - 8010fc2: b480 push {r7} - 8010fc4: b083 sub sp, #12 - 8010fc6: af00 add r7, sp, #0 - 8010fc8: 6078 str r0, [r7, #4] + 8010fde: b480 push {r7} + 8010fe0: b083 sub sp, #12 + 8010fe2: af00 add r7, sp, #0 + 8010fe4: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_PWM_MspInit could be implemented in the user file */ } - 8010fca: bf00 nop - 8010fcc: 370c adds r7, #12 - 8010fce: 46bd mov sp, r7 - 8010fd0: bc80 pop {r7} - 8010fd2: 4770 bx lr + 8010fe6: bf00 nop + 8010fe8: 370c adds r7, #12 + 8010fea: 46bd mov sp, r7 + 8010fec: bc80 pop {r7} + 8010fee: 4770 bx lr -08010fd4 : +08010ff0 : * @arg TIM_CHANNEL_3: TIM Channel 3 selected * @arg TIM_CHANNEL_4: TIM Channel 4 selected * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_PWM_Start(TIM_HandleTypeDef *htim, uint32_t Channel) { - 8010fd4: b580 push {r7, lr} - 8010fd6: b084 sub sp, #16 - 8010fd8: af00 add r7, sp, #0 - 8010fda: 6078 str r0, [r7, #4] - 8010fdc: 6039 str r1, [r7, #0] + 8010ff0: b580 push {r7, lr} + 8010ff2: b084 sub sp, #16 + 8010ff4: af00 add r7, sp, #0 + 8010ff6: 6078 str r0, [r7, #4] + 8010ff8: 6039 str r1, [r7, #0] /* Check the parameters */ assert_param(IS_TIM_CCX_INSTANCE(htim->Instance, Channel)); /* Check the TIM channel state */ if (TIM_CHANNEL_STATE_GET(htim, Channel) != HAL_TIM_CHANNEL_STATE_READY) - 8010fde: 683b ldr r3, [r7, #0] - 8010fe0: 2b00 cmp r3, #0 - 8010fe2: d109 bne.n 8010ff8 - 8010fe4: 687b ldr r3, [r7, #4] - 8010fe6: f893 303e ldrb.w r3, [r3, #62] @ 0x3e - 8010fea: b2db uxtb r3, r3 - 8010fec: 2b01 cmp r3, #1 - 8010fee: bf14 ite ne - 8010ff0: 2301 movne r3, #1 - 8010ff2: 2300 moveq r3, #0 - 8010ff4: b2db uxtb r3, r3 - 8010ff6: e022 b.n 801103e - 8010ff8: 683b ldr r3, [r7, #0] - 8010ffa: 2b04 cmp r3, #4 - 8010ffc: d109 bne.n 8011012 - 8010ffe: 687b ldr r3, [r7, #4] - 8011000: f893 303f ldrb.w r3, [r3, #63] @ 0x3f - 8011004: b2db uxtb r3, r3 - 8011006: 2b01 cmp r3, #1 - 8011008: bf14 ite ne - 801100a: 2301 movne r3, #1 - 801100c: 2300 moveq r3, #0 - 801100e: b2db uxtb r3, r3 - 8011010: e015 b.n 801103e - 8011012: 683b ldr r3, [r7, #0] - 8011014: 2b08 cmp r3, #8 - 8011016: d109 bne.n 801102c - 8011018: 687b ldr r3, [r7, #4] - 801101a: f893 3040 ldrb.w r3, [r3, #64] @ 0x40 - 801101e: b2db uxtb r3, r3 - 8011020: 2b01 cmp r3, #1 - 8011022: bf14 ite ne - 8011024: 2301 movne r3, #1 - 8011026: 2300 moveq r3, #0 - 8011028: b2db uxtb r3, r3 - 801102a: e008 b.n 801103e - 801102c: 687b ldr r3, [r7, #4] - 801102e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8011032: b2db uxtb r3, r3 - 8011034: 2b01 cmp r3, #1 - 8011036: bf14 ite ne - 8011038: 2301 movne r3, #1 - 801103a: 2300 moveq r3, #0 - 801103c: b2db uxtb r3, r3 - 801103e: 2b00 cmp r3, #0 - 8011040: d001 beq.n 8011046 + 8010ffa: 683b ldr r3, [r7, #0] + 8010ffc: 2b00 cmp r3, #0 + 8010ffe: d109 bne.n 8011014 + 8011000: 687b ldr r3, [r7, #4] + 8011002: f893 303e ldrb.w r3, [r3, #62] @ 0x3e + 8011006: b2db uxtb r3, r3 + 8011008: 2b01 cmp r3, #1 + 801100a: bf14 ite ne + 801100c: 2301 movne r3, #1 + 801100e: 2300 moveq r3, #0 + 8011010: b2db uxtb r3, r3 + 8011012: e022 b.n 801105a + 8011014: 683b ldr r3, [r7, #0] + 8011016: 2b04 cmp r3, #4 + 8011018: d109 bne.n 801102e + 801101a: 687b ldr r3, [r7, #4] + 801101c: f893 303f ldrb.w r3, [r3, #63] @ 0x3f + 8011020: b2db uxtb r3, r3 + 8011022: 2b01 cmp r3, #1 + 8011024: bf14 ite ne + 8011026: 2301 movne r3, #1 + 8011028: 2300 moveq r3, #0 + 801102a: b2db uxtb r3, r3 + 801102c: e015 b.n 801105a + 801102e: 683b ldr r3, [r7, #0] + 8011030: 2b08 cmp r3, #8 + 8011032: d109 bne.n 8011048 + 8011034: 687b ldr r3, [r7, #4] + 8011036: f893 3040 ldrb.w r3, [r3, #64] @ 0x40 + 801103a: b2db uxtb r3, r3 + 801103c: 2b01 cmp r3, #1 + 801103e: bf14 ite ne + 8011040: 2301 movne r3, #1 + 8011042: 2300 moveq r3, #0 + 8011044: b2db uxtb r3, r3 + 8011046: e008 b.n 801105a + 8011048: 687b ldr r3, [r7, #4] + 801104a: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 801104e: b2db uxtb r3, r3 + 8011050: 2b01 cmp r3, #1 + 8011052: bf14 ite ne + 8011054: 2301 movne r3, #1 + 8011056: 2300 moveq r3, #0 + 8011058: b2db uxtb r3, r3 + 801105a: 2b00 cmp r3, #0 + 801105c: d001 beq.n 8011062 { return HAL_ERROR; - 8011042: 2301 movs r3, #1 - 8011044: e063 b.n 801110e + 801105e: 2301 movs r3, #1 + 8011060: e063 b.n 801112a } /* Set the TIM channel state */ TIM_CHANNEL_STATE_SET(htim, Channel, HAL_TIM_CHANNEL_STATE_BUSY); - 8011046: 683b ldr r3, [r7, #0] - 8011048: 2b00 cmp r3, #0 - 801104a: d104 bne.n 8011056 - 801104c: 687b ldr r3, [r7, #4] - 801104e: 2202 movs r2, #2 - 8011050: f883 203e strb.w r2, [r3, #62] @ 0x3e - 8011054: e013 b.n 801107e - 8011056: 683b ldr r3, [r7, #0] - 8011058: 2b04 cmp r3, #4 - 801105a: d104 bne.n 8011066 - 801105c: 687b ldr r3, [r7, #4] - 801105e: 2202 movs r2, #2 - 8011060: f883 203f strb.w r2, [r3, #63] @ 0x3f - 8011064: e00b b.n 801107e - 8011066: 683b ldr r3, [r7, #0] - 8011068: 2b08 cmp r3, #8 - 801106a: d104 bne.n 8011076 - 801106c: 687b ldr r3, [r7, #4] - 801106e: 2202 movs r2, #2 - 8011070: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 8011074: e003 b.n 801107e - 8011076: 687b ldr r3, [r7, #4] - 8011078: 2202 movs r2, #2 - 801107a: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011062: 683b ldr r3, [r7, #0] + 8011064: 2b00 cmp r3, #0 + 8011066: d104 bne.n 8011072 + 8011068: 687b ldr r3, [r7, #4] + 801106a: 2202 movs r2, #2 + 801106c: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8011070: e013 b.n 801109a + 8011072: 683b ldr r3, [r7, #0] + 8011074: 2b04 cmp r3, #4 + 8011076: d104 bne.n 8011082 + 8011078: 687b ldr r3, [r7, #4] + 801107a: 2202 movs r2, #2 + 801107c: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8011080: e00b b.n 801109a + 8011082: 683b ldr r3, [r7, #0] + 8011084: 2b08 cmp r3, #8 + 8011086: d104 bne.n 8011092 + 8011088: 687b ldr r3, [r7, #4] + 801108a: 2202 movs r2, #2 + 801108c: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8011090: e003 b.n 801109a + 8011092: 687b ldr r3, [r7, #4] + 8011094: 2202 movs r2, #2 + 8011096: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Enable the Capture compare channel */ TIM_CCxChannelCmd(htim->Instance, Channel, TIM_CCx_ENABLE); - 801107e: 687b ldr r3, [r7, #4] - 8011080: 681b ldr r3, [r3, #0] - 8011082: 2201 movs r2, #1 - 8011084: 6839 ldr r1, [r7, #0] - 8011086: 4618 mov r0, r3 - 8011088: f000 fd82 bl 8011b90 + 801109a: 687b ldr r3, [r7, #4] + 801109c: 681b ldr r3, [r3, #0] + 801109e: 2201 movs r2, #1 + 80110a0: 6839 ldr r1, [r7, #0] + 80110a2: 4618 mov r0, r3 + 80110a4: f000 fd82 bl 8011bac if (IS_TIM_BREAK_INSTANCE(htim->Instance) != RESET) - 801108c: 687b ldr r3, [r7, #4] - 801108e: 681b ldr r3, [r3, #0] - 8011090: 4a21 ldr r2, [pc, #132] @ (8011118 ) - 8011092: 4293 cmp r3, r2 - 8011094: d107 bne.n 80110a6 + 80110a8: 687b ldr r3, [r7, #4] + 80110aa: 681b ldr r3, [r3, #0] + 80110ac: 4a21 ldr r2, [pc, #132] @ (8011134 ) + 80110ae: 4293 cmp r3, r2 + 80110b0: d107 bne.n 80110c2 { /* Enable the main output */ __HAL_TIM_MOE_ENABLE(htim); - 8011096: 687b ldr r3, [r7, #4] - 8011098: 681b ldr r3, [r3, #0] - 801109a: 6c5a ldr r2, [r3, #68] @ 0x44 - 801109c: 687b ldr r3, [r7, #4] - 801109e: 681b ldr r3, [r3, #0] - 80110a0: f442 4200 orr.w r2, r2, #32768 @ 0x8000 - 80110a4: 645a str r2, [r3, #68] @ 0x44 + 80110b2: 687b ldr r3, [r7, #4] + 80110b4: 681b ldr r3, [r3, #0] + 80110b6: 6c5a ldr r2, [r3, #68] @ 0x44 + 80110b8: 687b ldr r3, [r7, #4] + 80110ba: 681b ldr r3, [r3, #0] + 80110bc: f442 4200 orr.w r2, r2, #32768 @ 0x8000 + 80110c0: 645a str r2, [r3, #68] @ 0x44 } /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 80110a6: 687b ldr r3, [r7, #4] - 80110a8: 681b ldr r3, [r3, #0] - 80110aa: 4a1b ldr r2, [pc, #108] @ (8011118 ) - 80110ac: 4293 cmp r3, r2 - 80110ae: d013 beq.n 80110d8 - 80110b0: 687b ldr r3, [r7, #4] - 80110b2: 681b ldr r3, [r3, #0] - 80110b4: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 80110b8: d00e beq.n 80110d8 - 80110ba: 687b ldr r3, [r7, #4] - 80110bc: 681b ldr r3, [r3, #0] - 80110be: 4a17 ldr r2, [pc, #92] @ (801111c ) - 80110c0: 4293 cmp r3, r2 - 80110c2: d009 beq.n 80110d8 - 80110c4: 687b ldr r3, [r7, #4] - 80110c6: 681b ldr r3, [r3, #0] - 80110c8: 4a15 ldr r2, [pc, #84] @ (8011120 ) - 80110ca: 4293 cmp r3, r2 - 80110cc: d004 beq.n 80110d8 - 80110ce: 687b ldr r3, [r7, #4] - 80110d0: 681b ldr r3, [r3, #0] - 80110d2: 4a14 ldr r2, [pc, #80] @ (8011124 ) - 80110d4: 4293 cmp r3, r2 - 80110d6: d111 bne.n 80110fc - { - tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; - 80110d8: 687b ldr r3, [r7, #4] - 80110da: 681b ldr r3, [r3, #0] - 80110dc: 689b ldr r3, [r3, #8] - 80110de: f003 0307 and.w r3, r3, #7 - 80110e2: 60fb str r3, [r7, #12] - if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 80110e4: 68fb ldr r3, [r7, #12] - 80110e6: 2b06 cmp r3, #6 - 80110e8: d010 beq.n 801110c - { - __HAL_TIM_ENABLE(htim); + 80110c2: 687b ldr r3, [r7, #4] + 80110c4: 681b ldr r3, [r3, #0] + 80110c6: 4a1b ldr r2, [pc, #108] @ (8011134 ) + 80110c8: 4293 cmp r3, r2 + 80110ca: d013 beq.n 80110f4 + 80110cc: 687b ldr r3, [r7, #4] + 80110ce: 681b ldr r3, [r3, #0] + 80110d0: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80110d4: d00e beq.n 80110f4 + 80110d6: 687b ldr r3, [r7, #4] + 80110d8: 681b ldr r3, [r3, #0] + 80110da: 4a17 ldr r2, [pc, #92] @ (8011138 ) + 80110dc: 4293 cmp r3, r2 + 80110de: d009 beq.n 80110f4 + 80110e0: 687b ldr r3, [r7, #4] + 80110e2: 681b ldr r3, [r3, #0] + 80110e4: 4a15 ldr r2, [pc, #84] @ (801113c ) + 80110e6: 4293 cmp r3, r2 + 80110e8: d004 beq.n 80110f4 80110ea: 687b ldr r3, [r7, #4] 80110ec: 681b ldr r3, [r3, #0] - 80110ee: 681a ldr r2, [r3, #0] - 80110f0: 687b ldr r3, [r7, #4] - 80110f2: 681b ldr r3, [r3, #0] - 80110f4: f042 0201 orr.w r2, r2, #1 - 80110f8: 601a str r2, [r3, #0] + 80110ee: 4a14 ldr r2, [pc, #80] @ (8011140 ) + 80110f0: 4293 cmp r3, r2 + 80110f2: d111 bne.n 8011118 + { + tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; + 80110f4: 687b ldr r3, [r7, #4] + 80110f6: 681b ldr r3, [r3, #0] + 80110f8: 689b ldr r3, [r3, #8] + 80110fa: f003 0307 and.w r3, r3, #7 + 80110fe: 60fb str r3, [r7, #12] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 80110fa: e007 b.n 801110c + 8011100: 68fb ldr r3, [r7, #12] + 8011102: 2b06 cmp r3, #6 + 8011104: d010 beq.n 8011128 + { + __HAL_TIM_ENABLE(htim); + 8011106: 687b ldr r3, [r7, #4] + 8011108: 681b ldr r3, [r3, #0] + 801110a: 681a ldr r2, [r3, #0] + 801110c: 687b ldr r3, [r7, #4] + 801110e: 681b ldr r3, [r3, #0] + 8011110: f042 0201 orr.w r2, r2, #1 + 8011114: 601a str r2, [r3, #0] + if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) + 8011116: e007 b.n 8011128 } } else { __HAL_TIM_ENABLE(htim); - 80110fc: 687b ldr r3, [r7, #4] - 80110fe: 681b ldr r3, [r3, #0] - 8011100: 681a ldr r2, [r3, #0] - 8011102: 687b ldr r3, [r7, #4] - 8011104: 681b ldr r3, [r3, #0] - 8011106: f042 0201 orr.w r2, r2, #1 - 801110a: 601a str r2, [r3, #0] + 8011118: 687b ldr r3, [r7, #4] + 801111a: 681b ldr r3, [r3, #0] + 801111c: 681a ldr r2, [r3, #0] + 801111e: 687b ldr r3, [r7, #4] + 8011120: 681b ldr r3, [r3, #0] + 8011122: f042 0201 orr.w r2, r2, #1 + 8011126: 601a str r2, [r3, #0] } /* Return function status */ return HAL_OK; - 801110c: 2300 movs r3, #0 + 8011128: 2300 movs r3, #0 } - 801110e: 4618 mov r0, r3 - 8011110: 3710 adds r7, #16 - 8011112: 46bd mov sp, r7 - 8011114: bd80 pop {r7, pc} - 8011116: bf00 nop - 8011118: 40012c00 .word 0x40012c00 - 801111c: 40000400 .word 0x40000400 - 8011120: 40000800 .word 0x40000800 - 8011124: 40000c00 .word 0x40000c00 + 801112a: 4618 mov r0, r3 + 801112c: 3710 adds r7, #16 + 801112e: 46bd mov sp, r7 + 8011130: bd80 pop {r7, pc} + 8011132: bf00 nop + 8011134: 40012c00 .word 0x40012c00 + 8011138: 40000400 .word 0x40000400 + 801113c: 40000800 .word 0x40000800 + 8011140: 40000c00 .word 0x40000c00 -08011128 : +08011144 : * @brief This function handles TIM interrupts requests. * @param htim TIM handle * @retval None */ void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) { - 8011128: b580 push {r7, lr} - 801112a: b084 sub sp, #16 - 801112c: af00 add r7, sp, #0 - 801112e: 6078 str r0, [r7, #4] + 8011144: b580 push {r7, lr} + 8011146: b084 sub sp, #16 + 8011148: af00 add r7, sp, #0 + 801114a: 6078 str r0, [r7, #4] uint32_t itsource = htim->Instance->DIER; - 8011130: 687b ldr r3, [r7, #4] - 8011132: 681b ldr r3, [r3, #0] - 8011134: 68db ldr r3, [r3, #12] - 8011136: 60fb str r3, [r7, #12] + 801114c: 687b ldr r3, [r7, #4] + 801114e: 681b ldr r3, [r3, #0] + 8011150: 68db ldr r3, [r3, #12] + 8011152: 60fb str r3, [r7, #12] uint32_t itflag = htim->Instance->SR; - 8011138: 687b ldr r3, [r7, #4] - 801113a: 681b ldr r3, [r3, #0] - 801113c: 691b ldr r3, [r3, #16] - 801113e: 60bb str r3, [r7, #8] + 8011154: 687b ldr r3, [r7, #4] + 8011156: 681b ldr r3, [r3, #0] + 8011158: 691b ldr r3, [r3, #16] + 801115a: 60bb str r3, [r7, #8] /* Capture compare 1 event */ if ((itflag & (TIM_FLAG_CC1)) == (TIM_FLAG_CC1)) - 8011140: 68bb ldr r3, [r7, #8] - 8011142: f003 0302 and.w r3, r3, #2 - 8011146: 2b00 cmp r3, #0 - 8011148: d020 beq.n 801118c + 801115c: 68bb ldr r3, [r7, #8] + 801115e: f003 0302 and.w r3, r3, #2 + 8011162: 2b00 cmp r3, #0 + 8011164: d020 beq.n 80111a8 { if ((itsource & (TIM_IT_CC1)) == (TIM_IT_CC1)) - 801114a: 68fb ldr r3, [r7, #12] - 801114c: f003 0302 and.w r3, r3, #2 - 8011150: 2b00 cmp r3, #0 - 8011152: d01b beq.n 801118c + 8011166: 68fb ldr r3, [r7, #12] + 8011168: f003 0302 and.w r3, r3, #2 + 801116c: 2b00 cmp r3, #0 + 801116e: d01b beq.n 80111a8 { { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_CC1); - 8011154: 687b ldr r3, [r7, #4] - 8011156: 681b ldr r3, [r3, #0] - 8011158: f06f 0202 mvn.w r2, #2 - 801115c: 611a str r2, [r3, #16] + 8011170: 687b ldr r3, [r7, #4] + 8011172: 681b ldr r3, [r3, #0] + 8011174: f06f 0202 mvn.w r2, #2 + 8011178: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; - 801115e: 687b ldr r3, [r7, #4] - 8011160: 2201 movs r2, #1 - 8011162: 771a strb r2, [r3, #28] + 801117a: 687b ldr r3, [r7, #4] + 801117c: 2201 movs r2, #1 + 801117e: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) - 8011164: 687b ldr r3, [r7, #4] - 8011166: 681b ldr r3, [r3, #0] - 8011168: 699b ldr r3, [r3, #24] - 801116a: f003 0303 and.w r3, r3, #3 - 801116e: 2b00 cmp r3, #0 - 8011170: d003 beq.n 801117a + 8011180: 687b ldr r3, [r7, #4] + 8011182: 681b ldr r3, [r3, #0] + 8011184: 699b ldr r3, [r3, #24] + 8011186: f003 0303 and.w r3, r3, #3 + 801118a: 2b00 cmp r3, #0 + 801118c: d003 beq.n 8011196 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8011172: 6878 ldr r0, [r7, #4] - 8011174: f000 fa5a bl 801162c - 8011178: e005 b.n 8011186 + 801118e: 6878 ldr r0, [r7, #4] + 8011190: f000 fa5a bl 8011648 + 8011194: e005 b.n 80111a2 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 801117a: 6878 ldr r0, [r7, #4] - 801117c: f7f9 f83e bl 800a1fc + 8011196: 6878 ldr r0, [r7, #4] + 8011198: f7f9 f830 bl 800a1fc HAL_TIM_PWM_PulseFinishedCallback(htim); - 8011180: 6878 ldr r0, [r7, #4] - 8011182: f000 fa5c bl 801163e + 801119c: 6878 ldr r0, [r7, #4] + 801119e: f000 fa5c bl 801165a #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8011186: 687b ldr r3, [r7, #4] - 8011188: 2200 movs r2, #0 - 801118a: 771a strb r2, [r3, #28] + 80111a2: 687b ldr r3, [r7, #4] + 80111a4: 2200 movs r2, #0 + 80111a6: 771a strb r2, [r3, #28] } } } /* Capture compare 2 event */ if ((itflag & (TIM_FLAG_CC2)) == (TIM_FLAG_CC2)) - 801118c: 68bb ldr r3, [r7, #8] - 801118e: f003 0304 and.w r3, r3, #4 - 8011192: 2b00 cmp r3, #0 - 8011194: d020 beq.n 80111d8 + 80111a8: 68bb ldr r3, [r7, #8] + 80111aa: f003 0304 and.w r3, r3, #4 + 80111ae: 2b00 cmp r3, #0 + 80111b0: d020 beq.n 80111f4 { if ((itsource & (TIM_IT_CC2)) == (TIM_IT_CC2)) - 8011196: 68fb ldr r3, [r7, #12] - 8011198: f003 0304 and.w r3, r3, #4 - 801119c: 2b00 cmp r3, #0 - 801119e: d01b beq.n 80111d8 + 80111b2: 68fb ldr r3, [r7, #12] + 80111b4: f003 0304 and.w r3, r3, #4 + 80111b8: 2b00 cmp r3, #0 + 80111ba: d01b beq.n 80111f4 { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_CC2); - 80111a0: 687b ldr r3, [r7, #4] - 80111a2: 681b ldr r3, [r3, #0] - 80111a4: f06f 0204 mvn.w r2, #4 - 80111a8: 611a str r2, [r3, #16] + 80111bc: 687b ldr r3, [r7, #4] + 80111be: 681b ldr r3, [r3, #0] + 80111c0: f06f 0204 mvn.w r2, #4 + 80111c4: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; - 80111aa: 687b ldr r3, [r7, #4] - 80111ac: 2202 movs r2, #2 - 80111ae: 771a strb r2, [r3, #28] + 80111c6: 687b ldr r3, [r7, #4] + 80111c8: 2202 movs r2, #2 + 80111ca: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) - 80111b0: 687b ldr r3, [r7, #4] - 80111b2: 681b ldr r3, [r3, #0] - 80111b4: 699b ldr r3, [r3, #24] - 80111b6: f403 7340 and.w r3, r3, #768 @ 0x300 - 80111ba: 2b00 cmp r3, #0 - 80111bc: d003 beq.n 80111c6 + 80111cc: 687b ldr r3, [r7, #4] + 80111ce: 681b ldr r3, [r3, #0] + 80111d0: 699b ldr r3, [r3, #24] + 80111d2: f403 7340 and.w r3, r3, #768 @ 0x300 + 80111d6: 2b00 cmp r3, #0 + 80111d8: d003 beq.n 80111e2 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 80111be: 6878 ldr r0, [r7, #4] - 80111c0: f000 fa34 bl 801162c - 80111c4: e005 b.n 80111d2 + 80111da: 6878 ldr r0, [r7, #4] + 80111dc: f000 fa34 bl 8011648 + 80111e0: e005 b.n 80111ee { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 80111c6: 6878 ldr r0, [r7, #4] - 80111c8: f7f9 f818 bl 800a1fc + 80111e2: 6878 ldr r0, [r7, #4] + 80111e4: f7f9 f80a bl 800a1fc HAL_TIM_PWM_PulseFinishedCallback(htim); - 80111cc: 6878 ldr r0, [r7, #4] - 80111ce: f000 fa36 bl 801163e + 80111e8: 6878 ldr r0, [r7, #4] + 80111ea: f000 fa36 bl 801165a #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 80111d2: 687b ldr r3, [r7, #4] - 80111d4: 2200 movs r2, #0 - 80111d6: 771a strb r2, [r3, #28] + 80111ee: 687b ldr r3, [r7, #4] + 80111f0: 2200 movs r2, #0 + 80111f2: 771a strb r2, [r3, #28] } } /* Capture compare 3 event */ if ((itflag & (TIM_FLAG_CC3)) == (TIM_FLAG_CC3)) - 80111d8: 68bb ldr r3, [r7, #8] - 80111da: f003 0308 and.w r3, r3, #8 - 80111de: 2b00 cmp r3, #0 - 80111e0: d020 beq.n 8011224 + 80111f4: 68bb ldr r3, [r7, #8] + 80111f6: f003 0308 and.w r3, r3, #8 + 80111fa: 2b00 cmp r3, #0 + 80111fc: d020 beq.n 8011240 { if ((itsource & (TIM_IT_CC3)) == (TIM_IT_CC3)) - 80111e2: 68fb ldr r3, [r7, #12] - 80111e4: f003 0308 and.w r3, r3, #8 - 80111e8: 2b00 cmp r3, #0 - 80111ea: d01b beq.n 8011224 + 80111fe: 68fb ldr r3, [r7, #12] + 8011200: f003 0308 and.w r3, r3, #8 + 8011204: 2b00 cmp r3, #0 + 8011206: d01b beq.n 8011240 { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_CC3); - 80111ec: 687b ldr r3, [r7, #4] - 80111ee: 681b ldr r3, [r3, #0] - 80111f0: f06f 0208 mvn.w r2, #8 - 80111f4: 611a str r2, [r3, #16] + 8011208: 687b ldr r3, [r7, #4] + 801120a: 681b ldr r3, [r3, #0] + 801120c: f06f 0208 mvn.w r2, #8 + 8011210: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; - 80111f6: 687b ldr r3, [r7, #4] - 80111f8: 2204 movs r2, #4 - 80111fa: 771a strb r2, [r3, #28] + 8011212: 687b ldr r3, [r7, #4] + 8011214: 2204 movs r2, #4 + 8011216: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) - 80111fc: 687b ldr r3, [r7, #4] - 80111fe: 681b ldr r3, [r3, #0] - 8011200: 69db ldr r3, [r3, #28] - 8011202: f003 0303 and.w r3, r3, #3 - 8011206: 2b00 cmp r3, #0 - 8011208: d003 beq.n 8011212 + 8011218: 687b ldr r3, [r7, #4] + 801121a: 681b ldr r3, [r3, #0] + 801121c: 69db ldr r3, [r3, #28] + 801121e: f003 0303 and.w r3, r3, #3 + 8011222: 2b00 cmp r3, #0 + 8011224: d003 beq.n 801122e { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 801120a: 6878 ldr r0, [r7, #4] - 801120c: f000 fa0e bl 801162c - 8011210: e005 b.n 801121e + 8011226: 6878 ldr r0, [r7, #4] + 8011228: f000 fa0e bl 8011648 + 801122c: e005 b.n 801123a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8011212: 6878 ldr r0, [r7, #4] - 8011214: f7f8 fff2 bl 800a1fc + 801122e: 6878 ldr r0, [r7, #4] + 8011230: f7f8 ffe4 bl 800a1fc HAL_TIM_PWM_PulseFinishedCallback(htim); - 8011218: 6878 ldr r0, [r7, #4] - 801121a: f000 fa10 bl 801163e + 8011234: 6878 ldr r0, [r7, #4] + 8011236: f000 fa10 bl 801165a #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 801121e: 687b ldr r3, [r7, #4] - 8011220: 2200 movs r2, #0 - 8011222: 771a strb r2, [r3, #28] + 801123a: 687b ldr r3, [r7, #4] + 801123c: 2200 movs r2, #0 + 801123e: 771a strb r2, [r3, #28] } } /* Capture compare 4 event */ if ((itflag & (TIM_FLAG_CC4)) == (TIM_FLAG_CC4)) - 8011224: 68bb ldr r3, [r7, #8] - 8011226: f003 0310 and.w r3, r3, #16 - 801122a: 2b00 cmp r3, #0 - 801122c: d020 beq.n 8011270 + 8011240: 68bb ldr r3, [r7, #8] + 8011242: f003 0310 and.w r3, r3, #16 + 8011246: 2b00 cmp r3, #0 + 8011248: d020 beq.n 801128c { if ((itsource & (TIM_IT_CC4)) == (TIM_IT_CC4)) - 801122e: 68fb ldr r3, [r7, #12] - 8011230: f003 0310 and.w r3, r3, #16 - 8011234: 2b00 cmp r3, #0 - 8011236: d01b beq.n 8011270 + 801124a: 68fb ldr r3, [r7, #12] + 801124c: f003 0310 and.w r3, r3, #16 + 8011250: 2b00 cmp r3, #0 + 8011252: d01b beq.n 801128c { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_CC4); - 8011238: 687b ldr r3, [r7, #4] - 801123a: 681b ldr r3, [r3, #0] - 801123c: f06f 0210 mvn.w r2, #16 - 8011240: 611a str r2, [r3, #16] + 8011254: 687b ldr r3, [r7, #4] + 8011256: 681b ldr r3, [r3, #0] + 8011258: f06f 0210 mvn.w r2, #16 + 801125c: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; - 8011242: 687b ldr r3, [r7, #4] - 8011244: 2208 movs r2, #8 - 8011246: 771a strb r2, [r3, #28] + 801125e: 687b ldr r3, [r7, #4] + 8011260: 2208 movs r2, #8 + 8011262: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) - 8011248: 687b ldr r3, [r7, #4] - 801124a: 681b ldr r3, [r3, #0] - 801124c: 69db ldr r3, [r3, #28] - 801124e: f403 7340 and.w r3, r3, #768 @ 0x300 - 8011252: 2b00 cmp r3, #0 - 8011254: d003 beq.n 801125e + 8011264: 687b ldr r3, [r7, #4] + 8011266: 681b ldr r3, [r3, #0] + 8011268: 69db ldr r3, [r3, #28] + 801126a: f403 7340 and.w r3, r3, #768 @ 0x300 + 801126e: 2b00 cmp r3, #0 + 8011270: d003 beq.n 801127a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8011256: 6878 ldr r0, [r7, #4] - 8011258: f000 f9e8 bl 801162c - 801125c: e005 b.n 801126a + 8011272: 6878 ldr r0, [r7, #4] + 8011274: f000 f9e8 bl 8011648 + 8011278: e005 b.n 8011286 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 801125e: 6878 ldr r0, [r7, #4] - 8011260: f7f8 ffcc bl 800a1fc + 801127a: 6878 ldr r0, [r7, #4] + 801127c: f7f8 ffbe bl 800a1fc HAL_TIM_PWM_PulseFinishedCallback(htim); - 8011264: 6878 ldr r0, [r7, #4] - 8011266: f000 f9ea bl 801163e + 8011280: 6878 ldr r0, [r7, #4] + 8011282: f000 f9ea bl 801165a #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 801126a: 687b ldr r3, [r7, #4] - 801126c: 2200 movs r2, #0 - 801126e: 771a strb r2, [r3, #28] + 8011286: 687b ldr r3, [r7, #4] + 8011288: 2200 movs r2, #0 + 801128a: 771a strb r2, [r3, #28] } } /* TIM Update event */ if ((itflag & (TIM_FLAG_UPDATE)) == (TIM_FLAG_UPDATE)) - 8011270: 68bb ldr r3, [r7, #8] - 8011272: f003 0301 and.w r3, r3, #1 - 8011276: 2b00 cmp r3, #0 - 8011278: d00c beq.n 8011294 + 801128c: 68bb ldr r3, [r7, #8] + 801128e: f003 0301 and.w r3, r3, #1 + 8011292: 2b00 cmp r3, #0 + 8011294: d00c beq.n 80112b0 { if ((itsource & (TIM_IT_UPDATE)) == (TIM_IT_UPDATE)) - 801127a: 68fb ldr r3, [r7, #12] - 801127c: f003 0301 and.w r3, r3, #1 - 8011280: 2b00 cmp r3, #0 - 8011282: d007 beq.n 8011294 + 8011296: 68fb ldr r3, [r7, #12] + 8011298: f003 0301 and.w r3, r3, #1 + 801129c: 2b00 cmp r3, #0 + 801129e: d007 beq.n 80112b0 { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_UPDATE); - 8011284: 687b ldr r3, [r7, #4] - 8011286: 681b ldr r3, [r3, #0] - 8011288: f06f 0201 mvn.w r2, #1 - 801128c: 611a str r2, [r3, #16] + 80112a0: 687b ldr r3, [r7, #4] + 80112a2: 681b ldr r3, [r3, #0] + 80112a4: f06f 0201 mvn.w r2, #1 + 80112a8: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->PeriodElapsedCallback(htim); #else HAL_TIM_PeriodElapsedCallback(htim); - 801128e: 6878 ldr r0, [r7, #4] - 8011290: f000 f9c3 bl 801161a + 80112aa: 6878 ldr r0, [r7, #4] + 80112ac: f000 f9c3 bl 8011636 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Break input event */ if ((itflag & (TIM_FLAG_BREAK)) == (TIM_FLAG_BREAK)) - 8011294: 68bb ldr r3, [r7, #8] - 8011296: f003 0380 and.w r3, r3, #128 @ 0x80 - 801129a: 2b00 cmp r3, #0 - 801129c: d00c beq.n 80112b8 + 80112b0: 68bb ldr r3, [r7, #8] + 80112b2: f003 0380 and.w r3, r3, #128 @ 0x80 + 80112b6: 2b00 cmp r3, #0 + 80112b8: d00c beq.n 80112d4 { if ((itsource & (TIM_IT_BREAK)) == (TIM_IT_BREAK)) - 801129e: 68fb ldr r3, [r7, #12] - 80112a0: f003 0380 and.w r3, r3, #128 @ 0x80 - 80112a4: 2b00 cmp r3, #0 - 80112a6: d007 beq.n 80112b8 + 80112ba: 68fb ldr r3, [r7, #12] + 80112bc: f003 0380 and.w r3, r3, #128 @ 0x80 + 80112c0: 2b00 cmp r3, #0 + 80112c2: d007 beq.n 80112d4 { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_BREAK); - 80112a8: 687b ldr r3, [r7, #4] - 80112aa: 681b ldr r3, [r3, #0] - 80112ac: f06f 0280 mvn.w r2, #128 @ 0x80 - 80112b0: 611a str r2, [r3, #16] + 80112c4: 687b ldr r3, [r7, #4] + 80112c6: 681b ldr r3, [r3, #0] + 80112c8: f06f 0280 mvn.w r2, #128 @ 0x80 + 80112cc: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->BreakCallback(htim); #else HAL_TIMEx_BreakCallback(htim); - 80112b2: 6878 ldr r0, [r7, #4] - 80112b4: f000 fcff bl 8011cb6 + 80112ce: 6878 ldr r0, [r7, #4] + 80112d0: f000 fcff bl 8011cd2 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Trigger detection event */ if ((itflag & (TIM_FLAG_TRIGGER)) == (TIM_FLAG_TRIGGER)) - 80112b8: 68bb ldr r3, [r7, #8] - 80112ba: f003 0340 and.w r3, r3, #64 @ 0x40 - 80112be: 2b00 cmp r3, #0 - 80112c0: d00c beq.n 80112dc + 80112d4: 68bb ldr r3, [r7, #8] + 80112d6: f003 0340 and.w r3, r3, #64 @ 0x40 + 80112da: 2b00 cmp r3, #0 + 80112dc: d00c beq.n 80112f8 { if ((itsource & (TIM_IT_TRIGGER)) == (TIM_IT_TRIGGER)) - 80112c2: 68fb ldr r3, [r7, #12] - 80112c4: f003 0340 and.w r3, r3, #64 @ 0x40 - 80112c8: 2b00 cmp r3, #0 - 80112ca: d007 beq.n 80112dc + 80112de: 68fb ldr r3, [r7, #12] + 80112e0: f003 0340 and.w r3, r3, #64 @ 0x40 + 80112e4: 2b00 cmp r3, #0 + 80112e6: d007 beq.n 80112f8 { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_TRIGGER); - 80112cc: 687b ldr r3, [r7, #4] - 80112ce: 681b ldr r3, [r3, #0] - 80112d0: f06f 0240 mvn.w r2, #64 @ 0x40 - 80112d4: 611a str r2, [r3, #16] + 80112e8: 687b ldr r3, [r7, #4] + 80112ea: 681b ldr r3, [r3, #0] + 80112ec: f06f 0240 mvn.w r2, #64 @ 0x40 + 80112f0: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->TriggerCallback(htim); #else HAL_TIM_TriggerCallback(htim); - 80112d6: 6878 ldr r0, [r7, #4] - 80112d8: f000 f9ba bl 8011650 + 80112f2: 6878 ldr r0, [r7, #4] + 80112f4: f000 f9ba bl 801166c #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM commutation event */ if ((itflag & (TIM_FLAG_COM)) == (TIM_FLAG_COM)) - 80112dc: 68bb ldr r3, [r7, #8] - 80112de: f003 0320 and.w r3, r3, #32 - 80112e2: 2b00 cmp r3, #0 - 80112e4: d00c beq.n 8011300 + 80112f8: 68bb ldr r3, [r7, #8] + 80112fa: f003 0320 and.w r3, r3, #32 + 80112fe: 2b00 cmp r3, #0 + 8011300: d00c beq.n 801131c { if ((itsource & (TIM_IT_COM)) == (TIM_IT_COM)) - 80112e6: 68fb ldr r3, [r7, #12] - 80112e8: f003 0320 and.w r3, r3, #32 - 80112ec: 2b00 cmp r3, #0 - 80112ee: d007 beq.n 8011300 + 8011302: 68fb ldr r3, [r7, #12] + 8011304: f003 0320 and.w r3, r3, #32 + 8011308: 2b00 cmp r3, #0 + 801130a: d007 beq.n 801131c { __HAL_TIM_CLEAR_FLAG(htim, TIM_FLAG_COM); - 80112f0: 687b ldr r3, [r7, #4] - 80112f2: 681b ldr r3, [r3, #0] - 80112f4: f06f 0220 mvn.w r2, #32 - 80112f8: 611a str r2, [r3, #16] + 801130c: 687b ldr r3, [r7, #4] + 801130e: 681b ldr r3, [r3, #0] + 8011310: f06f 0220 mvn.w r2, #32 + 8011314: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->CommutationCallback(htim); #else HAL_TIMEx_CommutCallback(htim); - 80112fa: 6878 ldr r0, [r7, #4] - 80112fc: f000 fcd2 bl 8011ca4 + 8011316: 6878 ldr r0, [r7, #4] + 8011318: f000 fcd2 bl 8011cc0 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } } - 8011300: bf00 nop - 8011302: 3710 adds r7, #16 - 8011304: 46bd mov sp, r7 - 8011306: bd80 pop {r7, pc} + 801131c: bf00 nop + 801131e: 3710 adds r7, #16 + 8011320: 46bd mov sp, r7 + 8011322: bd80 pop {r7, pc} -08011308 : +08011324 : * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_PWM_ConfigChannel(TIM_HandleTypeDef *htim, const TIM_OC_InitTypeDef *sConfig, uint32_t Channel) { - 8011308: b580 push {r7, lr} - 801130a: b086 sub sp, #24 - 801130c: af00 add r7, sp, #0 - 801130e: 60f8 str r0, [r7, #12] - 8011310: 60b9 str r1, [r7, #8] - 8011312: 607a str r2, [r7, #4] + 8011324: b580 push {r7, lr} + 8011326: b086 sub sp, #24 + 8011328: af00 add r7, sp, #0 + 801132a: 60f8 str r0, [r7, #12] + 801132c: 60b9 str r1, [r7, #8] + 801132e: 607a str r2, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 8011314: 2300 movs r3, #0 - 8011316: 75fb strb r3, [r7, #23] + 8011330: 2300 movs r3, #0 + 8011332: 75fb strb r3, [r7, #23] assert_param(IS_TIM_PWM_MODE(sConfig->OCMode)); assert_param(IS_TIM_OC_POLARITY(sConfig->OCPolarity)); assert_param(IS_TIM_FAST_STATE(sConfig->OCFastMode)); /* Process Locked */ __HAL_LOCK(htim); - 8011318: 68fb ldr r3, [r7, #12] - 801131a: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 801131e: 2b01 cmp r3, #1 - 8011320: d101 bne.n 8011326 - 8011322: 2302 movs r3, #2 - 8011324: e0ae b.n 8011484 - 8011326: 68fb ldr r3, [r7, #12] - 8011328: 2201 movs r2, #1 - 801132a: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8011334: 68fb ldr r3, [r7, #12] + 8011336: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 801133a: 2b01 cmp r3, #1 + 801133c: d101 bne.n 8011342 + 801133e: 2302 movs r3, #2 + 8011340: e0ae b.n 80114a0 + 8011342: 68fb ldr r3, [r7, #12] + 8011344: 2201 movs r2, #1 + 8011346: f883 203c strb.w r2, [r3, #60] @ 0x3c switch (Channel) - 801132e: 687b ldr r3, [r7, #4] - 8011330: 2b0c cmp r3, #12 - 8011332: f200 809f bhi.w 8011474 - 8011336: a201 add r2, pc, #4 @ (adr r2, 801133c ) - 8011338: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 801133c: 08011371 .word 0x08011371 - 8011340: 08011475 .word 0x08011475 - 8011344: 08011475 .word 0x08011475 - 8011348: 08011475 .word 0x08011475 - 801134c: 080113b1 .word 0x080113b1 - 8011350: 08011475 .word 0x08011475 - 8011354: 08011475 .word 0x08011475 - 8011358: 08011475 .word 0x08011475 - 801135c: 080113f3 .word 0x080113f3 - 8011360: 08011475 .word 0x08011475 - 8011364: 08011475 .word 0x08011475 - 8011368: 08011475 .word 0x08011475 - 801136c: 08011433 .word 0x08011433 + 801134a: 687b ldr r3, [r7, #4] + 801134c: 2b0c cmp r3, #12 + 801134e: f200 809f bhi.w 8011490 + 8011352: a201 add r2, pc, #4 @ (adr r2, 8011358 ) + 8011354: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8011358: 0801138d .word 0x0801138d + 801135c: 08011491 .word 0x08011491 + 8011360: 08011491 .word 0x08011491 + 8011364: 08011491 .word 0x08011491 + 8011368: 080113cd .word 0x080113cd + 801136c: 08011491 .word 0x08011491 + 8011370: 08011491 .word 0x08011491 + 8011374: 08011491 .word 0x08011491 + 8011378: 0801140f .word 0x0801140f + 801137c: 08011491 .word 0x08011491 + 8011380: 08011491 .word 0x08011491 + 8011384: 08011491 .word 0x08011491 + 8011388: 0801144f .word 0x0801144f { /* Check the parameters */ assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); /* Configure the Channel 1 in PWM mode */ TIM_OC1_SetConfig(htim->Instance, sConfig); - 8011370: 68fb ldr r3, [r7, #12] - 8011372: 681b ldr r3, [r3, #0] - 8011374: 68b9 ldr r1, [r7, #8] - 8011376: 4618 mov r0, r3 - 8011378: f000 f9ec bl 8011754 + 801138c: 68fb ldr r3, [r7, #12] + 801138e: 681b ldr r3, [r3, #0] + 8011390: 68b9 ldr r1, [r7, #8] + 8011392: 4618 mov r0, r3 + 8011394: f000 f9ec bl 8011770 /* Set the Preload enable bit for channel1 */ htim->Instance->CCMR1 |= TIM_CCMR1_OC1PE; - 801137c: 68fb ldr r3, [r7, #12] - 801137e: 681b ldr r3, [r3, #0] - 8011380: 699a ldr r2, [r3, #24] - 8011382: 68fb ldr r3, [r7, #12] - 8011384: 681b ldr r3, [r3, #0] - 8011386: f042 0208 orr.w r2, r2, #8 - 801138a: 619a str r2, [r3, #24] + 8011398: 68fb ldr r3, [r7, #12] + 801139a: 681b ldr r3, [r3, #0] + 801139c: 699a ldr r2, [r3, #24] + 801139e: 68fb ldr r3, [r7, #12] + 80113a0: 681b ldr r3, [r3, #0] + 80113a2: f042 0208 orr.w r2, r2, #8 + 80113a6: 619a str r2, [r3, #24] /* Configure the Output Fast mode */ htim->Instance->CCMR1 &= ~TIM_CCMR1_OC1FE; - 801138c: 68fb ldr r3, [r7, #12] - 801138e: 681b ldr r3, [r3, #0] - 8011390: 699a ldr r2, [r3, #24] - 8011392: 68fb ldr r3, [r7, #12] - 8011394: 681b ldr r3, [r3, #0] - 8011396: f022 0204 bic.w r2, r2, #4 - 801139a: 619a str r2, [r3, #24] + 80113a8: 68fb ldr r3, [r7, #12] + 80113aa: 681b ldr r3, [r3, #0] + 80113ac: 699a ldr r2, [r3, #24] + 80113ae: 68fb ldr r3, [r7, #12] + 80113b0: 681b ldr r3, [r3, #0] + 80113b2: f022 0204 bic.w r2, r2, #4 + 80113b6: 619a str r2, [r3, #24] htim->Instance->CCMR1 |= sConfig->OCFastMode; - 801139c: 68fb ldr r3, [r7, #12] - 801139e: 681b ldr r3, [r3, #0] - 80113a0: 6999 ldr r1, [r3, #24] - 80113a2: 68bb ldr r3, [r7, #8] - 80113a4: 691a ldr r2, [r3, #16] - 80113a6: 68fb ldr r3, [r7, #12] - 80113a8: 681b ldr r3, [r3, #0] - 80113aa: 430a orrs r2, r1 - 80113ac: 619a str r2, [r3, #24] + 80113b8: 68fb ldr r3, [r7, #12] + 80113ba: 681b ldr r3, [r3, #0] + 80113bc: 6999 ldr r1, [r3, #24] + 80113be: 68bb ldr r3, [r7, #8] + 80113c0: 691a ldr r2, [r3, #16] + 80113c2: 68fb ldr r3, [r7, #12] + 80113c4: 681b ldr r3, [r3, #0] + 80113c6: 430a orrs r2, r1 + 80113c8: 619a str r2, [r3, #24] break; - 80113ae: e064 b.n 801147a + 80113ca: e064 b.n 8011496 { /* Check the parameters */ assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); /* Configure the Channel 2 in PWM mode */ TIM_OC2_SetConfig(htim->Instance, sConfig); - 80113b0: 68fb ldr r3, [r7, #12] - 80113b2: 681b ldr r3, [r3, #0] - 80113b4: 68b9 ldr r1, [r7, #8] - 80113b6: 4618 mov r0, r3 - 80113b8: f000 fa32 bl 8011820 + 80113cc: 68fb ldr r3, [r7, #12] + 80113ce: 681b ldr r3, [r3, #0] + 80113d0: 68b9 ldr r1, [r7, #8] + 80113d2: 4618 mov r0, r3 + 80113d4: f000 fa32 bl 801183c /* Set the Preload enable bit for channel2 */ htim->Instance->CCMR1 |= TIM_CCMR1_OC2PE; - 80113bc: 68fb ldr r3, [r7, #12] - 80113be: 681b ldr r3, [r3, #0] - 80113c0: 699a ldr r2, [r3, #24] - 80113c2: 68fb ldr r3, [r7, #12] - 80113c4: 681b ldr r3, [r3, #0] - 80113c6: f442 6200 orr.w r2, r2, #2048 @ 0x800 - 80113ca: 619a str r2, [r3, #24] + 80113d8: 68fb ldr r3, [r7, #12] + 80113da: 681b ldr r3, [r3, #0] + 80113dc: 699a ldr r2, [r3, #24] + 80113de: 68fb ldr r3, [r7, #12] + 80113e0: 681b ldr r3, [r3, #0] + 80113e2: f442 6200 orr.w r2, r2, #2048 @ 0x800 + 80113e6: 619a str r2, [r3, #24] /* Configure the Output Fast mode */ htim->Instance->CCMR1 &= ~TIM_CCMR1_OC2FE; - 80113cc: 68fb ldr r3, [r7, #12] - 80113ce: 681b ldr r3, [r3, #0] - 80113d0: 699a ldr r2, [r3, #24] - 80113d2: 68fb ldr r3, [r7, #12] - 80113d4: 681b ldr r3, [r3, #0] - 80113d6: f422 6280 bic.w r2, r2, #1024 @ 0x400 - 80113da: 619a str r2, [r3, #24] - htim->Instance->CCMR1 |= sConfig->OCFastMode << 8U; - 80113dc: 68fb ldr r3, [r7, #12] - 80113de: 681b ldr r3, [r3, #0] - 80113e0: 6999 ldr r1, [r3, #24] - 80113e2: 68bb ldr r3, [r7, #8] - 80113e4: 691b ldr r3, [r3, #16] - 80113e6: 021a lsls r2, r3, #8 80113e8: 68fb ldr r3, [r7, #12] 80113ea: 681b ldr r3, [r3, #0] - 80113ec: 430a orrs r2, r1 - 80113ee: 619a str r2, [r3, #24] + 80113ec: 699a ldr r2, [r3, #24] + 80113ee: 68fb ldr r3, [r7, #12] + 80113f0: 681b ldr r3, [r3, #0] + 80113f2: f422 6280 bic.w r2, r2, #1024 @ 0x400 + 80113f6: 619a str r2, [r3, #24] + htim->Instance->CCMR1 |= sConfig->OCFastMode << 8U; + 80113f8: 68fb ldr r3, [r7, #12] + 80113fa: 681b ldr r3, [r3, #0] + 80113fc: 6999 ldr r1, [r3, #24] + 80113fe: 68bb ldr r3, [r7, #8] + 8011400: 691b ldr r3, [r3, #16] + 8011402: 021a lsls r2, r3, #8 + 8011404: 68fb ldr r3, [r7, #12] + 8011406: 681b ldr r3, [r3, #0] + 8011408: 430a orrs r2, r1 + 801140a: 619a str r2, [r3, #24] break; - 80113f0: e043 b.n 801147a + 801140c: e043 b.n 8011496 { /* Check the parameters */ assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); /* Configure the Channel 3 in PWM mode */ TIM_OC3_SetConfig(htim->Instance, sConfig); - 80113f2: 68fb ldr r3, [r7, #12] - 80113f4: 681b ldr r3, [r3, #0] - 80113f6: 68b9 ldr r1, [r7, #8] - 80113f8: 4618 mov r0, r3 - 80113fa: f000 fa7b bl 80118f4 + 801140e: 68fb ldr r3, [r7, #12] + 8011410: 681b ldr r3, [r3, #0] + 8011412: 68b9 ldr r1, [r7, #8] + 8011414: 4618 mov r0, r3 + 8011416: f000 fa7b bl 8011910 /* Set the Preload enable bit for channel3 */ htim->Instance->CCMR2 |= TIM_CCMR2_OC3PE; - 80113fe: 68fb ldr r3, [r7, #12] - 8011400: 681b ldr r3, [r3, #0] - 8011402: 69da ldr r2, [r3, #28] - 8011404: 68fb ldr r3, [r7, #12] - 8011406: 681b ldr r3, [r3, #0] - 8011408: f042 0208 orr.w r2, r2, #8 - 801140c: 61da str r2, [r3, #28] + 801141a: 68fb ldr r3, [r7, #12] + 801141c: 681b ldr r3, [r3, #0] + 801141e: 69da ldr r2, [r3, #28] + 8011420: 68fb ldr r3, [r7, #12] + 8011422: 681b ldr r3, [r3, #0] + 8011424: f042 0208 orr.w r2, r2, #8 + 8011428: 61da str r2, [r3, #28] /* Configure the Output Fast mode */ htim->Instance->CCMR2 &= ~TIM_CCMR2_OC3FE; - 801140e: 68fb ldr r3, [r7, #12] - 8011410: 681b ldr r3, [r3, #0] - 8011412: 69da ldr r2, [r3, #28] - 8011414: 68fb ldr r3, [r7, #12] - 8011416: 681b ldr r3, [r3, #0] - 8011418: f022 0204 bic.w r2, r2, #4 - 801141c: 61da str r2, [r3, #28] + 801142a: 68fb ldr r3, [r7, #12] + 801142c: 681b ldr r3, [r3, #0] + 801142e: 69da ldr r2, [r3, #28] + 8011430: 68fb ldr r3, [r7, #12] + 8011432: 681b ldr r3, [r3, #0] + 8011434: f022 0204 bic.w r2, r2, #4 + 8011438: 61da str r2, [r3, #28] htim->Instance->CCMR2 |= sConfig->OCFastMode; - 801141e: 68fb ldr r3, [r7, #12] - 8011420: 681b ldr r3, [r3, #0] - 8011422: 69d9 ldr r1, [r3, #28] - 8011424: 68bb ldr r3, [r7, #8] - 8011426: 691a ldr r2, [r3, #16] - 8011428: 68fb ldr r3, [r7, #12] - 801142a: 681b ldr r3, [r3, #0] - 801142c: 430a orrs r2, r1 - 801142e: 61da str r2, [r3, #28] + 801143a: 68fb ldr r3, [r7, #12] + 801143c: 681b ldr r3, [r3, #0] + 801143e: 69d9 ldr r1, [r3, #28] + 8011440: 68bb ldr r3, [r7, #8] + 8011442: 691a ldr r2, [r3, #16] + 8011444: 68fb ldr r3, [r7, #12] + 8011446: 681b ldr r3, [r3, #0] + 8011448: 430a orrs r2, r1 + 801144a: 61da str r2, [r3, #28] break; - 8011430: e023 b.n 801147a + 801144c: e023 b.n 8011496 { /* Check the parameters */ assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); /* Configure the Channel 4 in PWM mode */ TIM_OC4_SetConfig(htim->Instance, sConfig); - 8011432: 68fb ldr r3, [r7, #12] - 8011434: 681b ldr r3, [r3, #0] - 8011436: 68b9 ldr r1, [r7, #8] - 8011438: 4618 mov r0, r3 - 801143a: f000 fac5 bl 80119c8 + 801144e: 68fb ldr r3, [r7, #12] + 8011450: 681b ldr r3, [r3, #0] + 8011452: 68b9 ldr r1, [r7, #8] + 8011454: 4618 mov r0, r3 + 8011456: f000 fac5 bl 80119e4 /* Set the Preload enable bit for channel4 */ htim->Instance->CCMR2 |= TIM_CCMR2_OC4PE; - 801143e: 68fb ldr r3, [r7, #12] - 8011440: 681b ldr r3, [r3, #0] - 8011442: 69da ldr r2, [r3, #28] - 8011444: 68fb ldr r3, [r7, #12] - 8011446: 681b ldr r3, [r3, #0] - 8011448: f442 6200 orr.w r2, r2, #2048 @ 0x800 - 801144c: 61da str r2, [r3, #28] + 801145a: 68fb ldr r3, [r7, #12] + 801145c: 681b ldr r3, [r3, #0] + 801145e: 69da ldr r2, [r3, #28] + 8011460: 68fb ldr r3, [r7, #12] + 8011462: 681b ldr r3, [r3, #0] + 8011464: f442 6200 orr.w r2, r2, #2048 @ 0x800 + 8011468: 61da str r2, [r3, #28] /* Configure the Output Fast mode */ htim->Instance->CCMR2 &= ~TIM_CCMR2_OC4FE; - 801144e: 68fb ldr r3, [r7, #12] - 8011450: 681b ldr r3, [r3, #0] - 8011452: 69da ldr r2, [r3, #28] - 8011454: 68fb ldr r3, [r7, #12] - 8011456: 681b ldr r3, [r3, #0] - 8011458: f422 6280 bic.w r2, r2, #1024 @ 0x400 - 801145c: 61da str r2, [r3, #28] - htim->Instance->CCMR2 |= sConfig->OCFastMode << 8U; - 801145e: 68fb ldr r3, [r7, #12] - 8011460: 681b ldr r3, [r3, #0] - 8011462: 69d9 ldr r1, [r3, #28] - 8011464: 68bb ldr r3, [r7, #8] - 8011466: 691b ldr r3, [r3, #16] - 8011468: 021a lsls r2, r3, #8 801146a: 68fb ldr r3, [r7, #12] 801146c: 681b ldr r3, [r3, #0] - 801146e: 430a orrs r2, r1 - 8011470: 61da str r2, [r3, #28] + 801146e: 69da ldr r2, [r3, #28] + 8011470: 68fb ldr r3, [r7, #12] + 8011472: 681b ldr r3, [r3, #0] + 8011474: f422 6280 bic.w r2, r2, #1024 @ 0x400 + 8011478: 61da str r2, [r3, #28] + htim->Instance->CCMR2 |= sConfig->OCFastMode << 8U; + 801147a: 68fb ldr r3, [r7, #12] + 801147c: 681b ldr r3, [r3, #0] + 801147e: 69d9 ldr r1, [r3, #28] + 8011480: 68bb ldr r3, [r7, #8] + 8011482: 691b ldr r3, [r3, #16] + 8011484: 021a lsls r2, r3, #8 + 8011486: 68fb ldr r3, [r7, #12] + 8011488: 681b ldr r3, [r3, #0] + 801148a: 430a orrs r2, r1 + 801148c: 61da str r2, [r3, #28] break; - 8011472: e002 b.n 801147a + 801148e: e002 b.n 8011496 } default: status = HAL_ERROR; - 8011474: 2301 movs r3, #1 - 8011476: 75fb strb r3, [r7, #23] + 8011490: 2301 movs r3, #1 + 8011492: 75fb strb r3, [r7, #23] break; - 8011478: bf00 nop + 8011494: bf00 nop } __HAL_UNLOCK(htim); - 801147a: 68fb ldr r3, [r7, #12] - 801147c: 2200 movs r2, #0 - 801147e: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8011496: 68fb ldr r3, [r7, #12] + 8011498: 2200 movs r2, #0 + 801149a: f883 203c strb.w r2, [r3, #60] @ 0x3c return status; - 8011482: 7dfb ldrb r3, [r7, #23] + 801149e: 7dfb ldrb r3, [r7, #23] } - 8011484: 4618 mov r0, r3 - 8011486: 3718 adds r7, #24 - 8011488: 46bd mov sp, r7 - 801148a: bd80 pop {r7, pc} + 80114a0: 4618 mov r0, r3 + 80114a2: 3718 adds r7, #24 + 80114a4: 46bd mov sp, r7 + 80114a6: bd80 pop {r7, pc} -0801148c : +080114a8 : * @param sClockSourceConfig pointer to a TIM_ClockConfigTypeDef structure that * contains the clock source information for the TIM peripheral. * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_ConfigClockSource(TIM_HandleTypeDef *htim, const TIM_ClockConfigTypeDef *sClockSourceConfig) { - 801148c: b580 push {r7, lr} - 801148e: b084 sub sp, #16 - 8011490: af00 add r7, sp, #0 - 8011492: 6078 str r0, [r7, #4] - 8011494: 6039 str r1, [r7, #0] + 80114a8: b580 push {r7, lr} + 80114aa: b084 sub sp, #16 + 80114ac: af00 add r7, sp, #0 + 80114ae: 6078 str r0, [r7, #4] + 80114b0: 6039 str r1, [r7, #0] HAL_StatusTypeDef status = HAL_OK; - 8011496: 2300 movs r3, #0 - 8011498: 73fb strb r3, [r7, #15] + 80114b2: 2300 movs r3, #0 + 80114b4: 73fb strb r3, [r7, #15] uint32_t tmpsmcr; /* Process Locked */ __HAL_LOCK(htim); - 801149a: 687b ldr r3, [r7, #4] - 801149c: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 80114a0: 2b01 cmp r3, #1 - 80114a2: d101 bne.n 80114a8 - 80114a4: 2302 movs r3, #2 - 80114a6: e0b4 b.n 8011612 - 80114a8: 687b ldr r3, [r7, #4] - 80114aa: 2201 movs r2, #1 - 80114ac: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80114b6: 687b ldr r3, [r7, #4] + 80114b8: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 80114bc: 2b01 cmp r3, #1 + 80114be: d101 bne.n 80114c4 + 80114c0: 2302 movs r3, #2 + 80114c2: e0b4 b.n 801162e + 80114c4: 687b ldr r3, [r7, #4] + 80114c6: 2201 movs r2, #1 + 80114c8: f883 203c strb.w r2, [r3, #60] @ 0x3c htim->State = HAL_TIM_STATE_BUSY; - 80114b0: 687b ldr r3, [r7, #4] - 80114b2: 2202 movs r2, #2 - 80114b4: f883 203d strb.w r2, [r3, #61] @ 0x3d + 80114cc: 687b ldr r3, [r7, #4] + 80114ce: 2202 movs r2, #2 + 80114d0: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Check the parameters */ assert_param(IS_TIM_CLOCKSOURCE(sClockSourceConfig->ClockSource)); /* Reset the SMS, TS, ECE, ETPS and ETRF bits */ tmpsmcr = htim->Instance->SMCR; - 80114b8: 687b ldr r3, [r7, #4] - 80114ba: 681b ldr r3, [r3, #0] - 80114bc: 689b ldr r3, [r3, #8] - 80114be: 60bb str r3, [r7, #8] + 80114d4: 687b ldr r3, [r7, #4] + 80114d6: 681b ldr r3, [r3, #0] + 80114d8: 689b ldr r3, [r3, #8] + 80114da: 60bb str r3, [r7, #8] tmpsmcr &= ~(TIM_SMCR_SMS | TIM_SMCR_TS); - 80114c0: 68bb ldr r3, [r7, #8] - 80114c2: f023 0377 bic.w r3, r3, #119 @ 0x77 - 80114c6: 60bb str r3, [r7, #8] + 80114dc: 68bb ldr r3, [r7, #8] + 80114de: f023 0377 bic.w r3, r3, #119 @ 0x77 + 80114e2: 60bb str r3, [r7, #8] tmpsmcr &= ~(TIM_SMCR_ETF | TIM_SMCR_ETPS | TIM_SMCR_ECE | TIM_SMCR_ETP); - 80114c8: 68bb ldr r3, [r7, #8] - 80114ca: f423 437f bic.w r3, r3, #65280 @ 0xff00 - 80114ce: 60bb str r3, [r7, #8] + 80114e4: 68bb ldr r3, [r7, #8] + 80114e6: f423 437f bic.w r3, r3, #65280 @ 0xff00 + 80114ea: 60bb str r3, [r7, #8] htim->Instance->SMCR = tmpsmcr; - 80114d0: 687b ldr r3, [r7, #4] - 80114d2: 681b ldr r3, [r3, #0] - 80114d4: 68ba ldr r2, [r7, #8] - 80114d6: 609a str r2, [r3, #8] + 80114ec: 687b ldr r3, [r7, #4] + 80114ee: 681b ldr r3, [r3, #0] + 80114f0: 68ba ldr r2, [r7, #8] + 80114f2: 609a str r2, [r3, #8] switch (sClockSourceConfig->ClockSource) - 80114d8: 683b ldr r3, [r7, #0] - 80114da: 681b ldr r3, [r3, #0] - 80114dc: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 80114e0: d03e beq.n 8011560 - 80114e2: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 80114e6: f200 8087 bhi.w 80115f8 - 80114ea: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 80114ee: f000 8086 beq.w 80115fe - 80114f2: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 80114f6: d87f bhi.n 80115f8 - 80114f8: 2b70 cmp r3, #112 @ 0x70 - 80114fa: d01a beq.n 8011532 - 80114fc: 2b70 cmp r3, #112 @ 0x70 - 80114fe: d87b bhi.n 80115f8 - 8011500: 2b60 cmp r3, #96 @ 0x60 - 8011502: d050 beq.n 80115a6 - 8011504: 2b60 cmp r3, #96 @ 0x60 - 8011506: d877 bhi.n 80115f8 - 8011508: 2b50 cmp r3, #80 @ 0x50 - 801150a: d03c beq.n 8011586 - 801150c: 2b50 cmp r3, #80 @ 0x50 - 801150e: d873 bhi.n 80115f8 - 8011510: 2b40 cmp r3, #64 @ 0x40 - 8011512: d058 beq.n 80115c6 - 8011514: 2b40 cmp r3, #64 @ 0x40 - 8011516: d86f bhi.n 80115f8 - 8011518: 2b30 cmp r3, #48 @ 0x30 - 801151a: d064 beq.n 80115e6 - 801151c: 2b30 cmp r3, #48 @ 0x30 - 801151e: d86b bhi.n 80115f8 - 8011520: 2b20 cmp r3, #32 - 8011522: d060 beq.n 80115e6 - 8011524: 2b20 cmp r3, #32 - 8011526: d867 bhi.n 80115f8 - 8011528: 2b00 cmp r3, #0 - 801152a: d05c beq.n 80115e6 - 801152c: 2b10 cmp r3, #16 - 801152e: d05a beq.n 80115e6 - 8011530: e062 b.n 80115f8 + 80114f4: 683b ldr r3, [r7, #0] + 80114f6: 681b ldr r3, [r3, #0] + 80114f8: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 80114fc: d03e beq.n 801157c + 80114fe: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 8011502: f200 8087 bhi.w 8011614 + 8011506: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 801150a: f000 8086 beq.w 801161a + 801150e: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8011512: d87f bhi.n 8011614 + 8011514: 2b70 cmp r3, #112 @ 0x70 + 8011516: d01a beq.n 801154e + 8011518: 2b70 cmp r3, #112 @ 0x70 + 801151a: d87b bhi.n 8011614 + 801151c: 2b60 cmp r3, #96 @ 0x60 + 801151e: d050 beq.n 80115c2 + 8011520: 2b60 cmp r3, #96 @ 0x60 + 8011522: d877 bhi.n 8011614 + 8011524: 2b50 cmp r3, #80 @ 0x50 + 8011526: d03c beq.n 80115a2 + 8011528: 2b50 cmp r3, #80 @ 0x50 + 801152a: d873 bhi.n 8011614 + 801152c: 2b40 cmp r3, #64 @ 0x40 + 801152e: d058 beq.n 80115e2 + 8011530: 2b40 cmp r3, #64 @ 0x40 + 8011532: d86f bhi.n 8011614 + 8011534: 2b30 cmp r3, #48 @ 0x30 + 8011536: d064 beq.n 8011602 + 8011538: 2b30 cmp r3, #48 @ 0x30 + 801153a: d86b bhi.n 8011614 + 801153c: 2b20 cmp r3, #32 + 801153e: d060 beq.n 8011602 + 8011540: 2b20 cmp r3, #32 + 8011542: d867 bhi.n 8011614 + 8011544: 2b00 cmp r3, #0 + 8011546: d05c beq.n 8011602 + 8011548: 2b10 cmp r3, #16 + 801154a: d05a beq.n 8011602 + 801154c: e062 b.n 8011614 assert_param(IS_TIM_CLOCKPRESCALER(sClockSourceConfig->ClockPrescaler)); assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); /* Configure the ETR Clock source */ TIM_ETR_SetConfig(htim->Instance, - 8011532: 687b ldr r3, [r7, #4] - 8011534: 6818 ldr r0, [r3, #0] + 801154e: 687b ldr r3, [r7, #4] + 8011550: 6818 ldr r0, [r3, #0] sClockSourceConfig->ClockPrescaler, - 8011536: 683b ldr r3, [r7, #0] - 8011538: 6899 ldr r1, [r3, #8] + 8011552: 683b ldr r3, [r7, #0] + 8011554: 6899 ldr r1, [r3, #8] sClockSourceConfig->ClockPolarity, - 801153a: 683b ldr r3, [r7, #0] - 801153c: 685a ldr r2, [r3, #4] + 8011556: 683b ldr r3, [r7, #0] + 8011558: 685a ldr r2, [r3, #4] sClockSourceConfig->ClockFilter); - 801153e: 683b ldr r3, [r7, #0] - 8011540: 68db ldr r3, [r3, #12] + 801155a: 683b ldr r3, [r7, #0] + 801155c: 68db ldr r3, [r3, #12] TIM_ETR_SetConfig(htim->Instance, - 8011542: f000 fb06 bl 8011b52 + 801155e: f000 fb06 bl 8011b6e /* Select the External clock mode1 and the ETRF trigger */ tmpsmcr = htim->Instance->SMCR; - 8011546: 687b ldr r3, [r7, #4] - 8011548: 681b ldr r3, [r3, #0] - 801154a: 689b ldr r3, [r3, #8] - 801154c: 60bb str r3, [r7, #8] + 8011562: 687b ldr r3, [r7, #4] + 8011564: 681b ldr r3, [r3, #0] + 8011566: 689b ldr r3, [r3, #8] + 8011568: 60bb str r3, [r7, #8] tmpsmcr |= (TIM_SLAVEMODE_EXTERNAL1 | TIM_CLOCKSOURCE_ETRMODE1); - 801154e: 68bb ldr r3, [r7, #8] - 8011550: f043 0377 orr.w r3, r3, #119 @ 0x77 - 8011554: 60bb str r3, [r7, #8] + 801156a: 68bb ldr r3, [r7, #8] + 801156c: f043 0377 orr.w r3, r3, #119 @ 0x77 + 8011570: 60bb str r3, [r7, #8] /* Write to TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 8011556: 687b ldr r3, [r7, #4] - 8011558: 681b ldr r3, [r3, #0] - 801155a: 68ba ldr r2, [r7, #8] - 801155c: 609a str r2, [r3, #8] + 8011572: 687b ldr r3, [r7, #4] + 8011574: 681b ldr r3, [r3, #0] + 8011576: 68ba ldr r2, [r7, #8] + 8011578: 609a str r2, [r3, #8] break; - 801155e: e04f b.n 8011600 + 801157a: e04f b.n 801161c assert_param(IS_TIM_CLOCKPRESCALER(sClockSourceConfig->ClockPrescaler)); assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); /* Configure the ETR Clock source */ TIM_ETR_SetConfig(htim->Instance, - 8011560: 687b ldr r3, [r7, #4] - 8011562: 6818 ldr r0, [r3, #0] + 801157c: 687b ldr r3, [r7, #4] + 801157e: 6818 ldr r0, [r3, #0] sClockSourceConfig->ClockPrescaler, - 8011564: 683b ldr r3, [r7, #0] - 8011566: 6899 ldr r1, [r3, #8] + 8011580: 683b ldr r3, [r7, #0] + 8011582: 6899 ldr r1, [r3, #8] sClockSourceConfig->ClockPolarity, - 8011568: 683b ldr r3, [r7, #0] - 801156a: 685a ldr r2, [r3, #4] + 8011584: 683b ldr r3, [r7, #0] + 8011586: 685a ldr r2, [r3, #4] sClockSourceConfig->ClockFilter); - 801156c: 683b ldr r3, [r7, #0] - 801156e: 68db ldr r3, [r3, #12] + 8011588: 683b ldr r3, [r7, #0] + 801158a: 68db ldr r3, [r3, #12] TIM_ETR_SetConfig(htim->Instance, - 8011570: f000 faef bl 8011b52 + 801158c: f000 faef bl 8011b6e /* Enable the External clock mode2 */ htim->Instance->SMCR |= TIM_SMCR_ECE; - 8011574: 687b ldr r3, [r7, #4] - 8011576: 681b ldr r3, [r3, #0] - 8011578: 689a ldr r2, [r3, #8] - 801157a: 687b ldr r3, [r7, #4] - 801157c: 681b ldr r3, [r3, #0] - 801157e: f442 4280 orr.w r2, r2, #16384 @ 0x4000 - 8011582: 609a str r2, [r3, #8] + 8011590: 687b ldr r3, [r7, #4] + 8011592: 681b ldr r3, [r3, #0] + 8011594: 689a ldr r2, [r3, #8] + 8011596: 687b ldr r3, [r7, #4] + 8011598: 681b ldr r3, [r3, #0] + 801159a: f442 4280 orr.w r2, r2, #16384 @ 0x4000 + 801159e: 609a str r2, [r3, #8] break; - 8011584: e03c b.n 8011600 + 80115a0: e03c b.n 801161c /* Check TI1 input conditioning related parameters */ assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); TIM_TI1_ConfigInputStage(htim->Instance, - 8011586: 687b ldr r3, [r7, #4] - 8011588: 6818 ldr r0, [r3, #0] + 80115a2: 687b ldr r3, [r7, #4] + 80115a4: 6818 ldr r0, [r3, #0] sClockSourceConfig->ClockPolarity, - 801158a: 683b ldr r3, [r7, #0] - 801158c: 6859 ldr r1, [r3, #4] + 80115a6: 683b ldr r3, [r7, #0] + 80115a8: 6859 ldr r1, [r3, #4] sClockSourceConfig->ClockFilter); - 801158e: 683b ldr r3, [r7, #0] - 8011590: 68db ldr r3, [r3, #12] + 80115aa: 683b ldr r3, [r7, #0] + 80115ac: 68db ldr r3, [r3, #12] TIM_TI1_ConfigInputStage(htim->Instance, - 8011592: 461a mov r2, r3 - 8011594: f000 fa66 bl 8011a64 + 80115ae: 461a mov r2, r3 + 80115b0: f000 fa66 bl 8011a80 TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI1); - 8011598: 687b ldr r3, [r7, #4] - 801159a: 681b ldr r3, [r3, #0] - 801159c: 2150 movs r1, #80 @ 0x50 - 801159e: 4618 mov r0, r3 - 80115a0: f000 fabd bl 8011b1e + 80115b4: 687b ldr r3, [r7, #4] + 80115b6: 681b ldr r3, [r3, #0] + 80115b8: 2150 movs r1, #80 @ 0x50 + 80115ba: 4618 mov r0, r3 + 80115bc: f000 fabd bl 8011b3a break; - 80115a4: e02c b.n 8011600 + 80115c0: e02c b.n 801161c /* Check TI2 input conditioning related parameters */ assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); TIM_TI2_ConfigInputStage(htim->Instance, - 80115a6: 687b ldr r3, [r7, #4] - 80115a8: 6818 ldr r0, [r3, #0] + 80115c2: 687b ldr r3, [r7, #4] + 80115c4: 6818 ldr r0, [r3, #0] sClockSourceConfig->ClockPolarity, - 80115aa: 683b ldr r3, [r7, #0] - 80115ac: 6859 ldr r1, [r3, #4] + 80115c6: 683b ldr r3, [r7, #0] + 80115c8: 6859 ldr r1, [r3, #4] sClockSourceConfig->ClockFilter); - 80115ae: 683b ldr r3, [r7, #0] - 80115b0: 68db ldr r3, [r3, #12] + 80115ca: 683b ldr r3, [r7, #0] + 80115cc: 68db ldr r3, [r3, #12] TIM_TI2_ConfigInputStage(htim->Instance, - 80115b2: 461a mov r2, r3 - 80115b4: f000 fa84 bl 8011ac0 + 80115ce: 461a mov r2, r3 + 80115d0: f000 fa84 bl 8011adc TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI2); - 80115b8: 687b ldr r3, [r7, #4] - 80115ba: 681b ldr r3, [r3, #0] - 80115bc: 2160 movs r1, #96 @ 0x60 - 80115be: 4618 mov r0, r3 - 80115c0: f000 faad bl 8011b1e + 80115d4: 687b ldr r3, [r7, #4] + 80115d6: 681b ldr r3, [r3, #0] + 80115d8: 2160 movs r1, #96 @ 0x60 + 80115da: 4618 mov r0, r3 + 80115dc: f000 faad bl 8011b3a break; - 80115c4: e01c b.n 8011600 + 80115e0: e01c b.n 801161c /* Check TI1 input conditioning related parameters */ assert_param(IS_TIM_CLOCKPOLARITY(sClockSourceConfig->ClockPolarity)); assert_param(IS_TIM_CLOCKFILTER(sClockSourceConfig->ClockFilter)); TIM_TI1_ConfigInputStage(htim->Instance, - 80115c6: 687b ldr r3, [r7, #4] - 80115c8: 6818 ldr r0, [r3, #0] + 80115e2: 687b ldr r3, [r7, #4] + 80115e4: 6818 ldr r0, [r3, #0] sClockSourceConfig->ClockPolarity, - 80115ca: 683b ldr r3, [r7, #0] - 80115cc: 6859 ldr r1, [r3, #4] + 80115e6: 683b ldr r3, [r7, #0] + 80115e8: 6859 ldr r1, [r3, #4] sClockSourceConfig->ClockFilter); - 80115ce: 683b ldr r3, [r7, #0] - 80115d0: 68db ldr r3, [r3, #12] + 80115ea: 683b ldr r3, [r7, #0] + 80115ec: 68db ldr r3, [r3, #12] TIM_TI1_ConfigInputStage(htim->Instance, - 80115d2: 461a mov r2, r3 - 80115d4: f000 fa46 bl 8011a64 + 80115ee: 461a mov r2, r3 + 80115f0: f000 fa46 bl 8011a80 TIM_ITRx_SetConfig(htim->Instance, TIM_CLOCKSOURCE_TI1ED); - 80115d8: 687b ldr r3, [r7, #4] - 80115da: 681b ldr r3, [r3, #0] - 80115dc: 2140 movs r1, #64 @ 0x40 - 80115de: 4618 mov r0, r3 - 80115e0: f000 fa9d bl 8011b1e + 80115f4: 687b ldr r3, [r7, #4] + 80115f6: 681b ldr r3, [r3, #0] + 80115f8: 2140 movs r1, #64 @ 0x40 + 80115fa: 4618 mov r0, r3 + 80115fc: f000 fa9d bl 8011b3a break; - 80115e4: e00c b.n 8011600 + 8011600: e00c b.n 801161c case TIM_CLOCKSOURCE_ITR3: { /* Check whether or not the timer instance supports internal trigger input */ assert_param(IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(htim->Instance)); TIM_ITRx_SetConfig(htim->Instance, sClockSourceConfig->ClockSource); - 80115e6: 687b ldr r3, [r7, #4] - 80115e8: 681a ldr r2, [r3, #0] - 80115ea: 683b ldr r3, [r7, #0] - 80115ec: 681b ldr r3, [r3, #0] - 80115ee: 4619 mov r1, r3 - 80115f0: 4610 mov r0, r2 - 80115f2: f000 fa94 bl 8011b1e + 8011602: 687b ldr r3, [r7, #4] + 8011604: 681a ldr r2, [r3, #0] + 8011606: 683b ldr r3, [r7, #0] + 8011608: 681b ldr r3, [r3, #0] + 801160a: 4619 mov r1, r3 + 801160c: 4610 mov r0, r2 + 801160e: f000 fa94 bl 8011b3a break; - 80115f6: e003 b.n 8011600 + 8011612: e003 b.n 801161c } default: status = HAL_ERROR; - 80115f8: 2301 movs r3, #1 - 80115fa: 73fb strb r3, [r7, #15] + 8011614: 2301 movs r3, #1 + 8011616: 73fb strb r3, [r7, #15] break; - 80115fc: e000 b.n 8011600 + 8011618: e000 b.n 801161c break; - 80115fe: bf00 nop + 801161a: bf00 nop } htim->State = HAL_TIM_STATE_READY; - 8011600: 687b ldr r3, [r7, #4] - 8011602: 2201 movs r2, #1 - 8011604: f883 203d strb.w r2, [r3, #61] @ 0x3d + 801161c: 687b ldr r3, [r7, #4] + 801161e: 2201 movs r2, #1 + 8011620: f883 203d strb.w r2, [r3, #61] @ 0x3d __HAL_UNLOCK(htim); - 8011608: 687b ldr r3, [r7, #4] - 801160a: 2200 movs r2, #0 - 801160c: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8011624: 687b ldr r3, [r7, #4] + 8011626: 2200 movs r2, #0 + 8011628: f883 203c strb.w r2, [r3, #60] @ 0x3c return status; - 8011610: 7bfb ldrb r3, [r7, #15] + 801162c: 7bfb ldrb r3, [r7, #15] } - 8011612: 4618 mov r0, r3 - 8011614: 3710 adds r7, #16 - 8011616: 46bd mov sp, r7 - 8011618: bd80 pop {r7, pc} + 801162e: 4618 mov r0, r3 + 8011630: 3710 adds r7, #16 + 8011632: 46bd mov sp, r7 + 8011634: bd80 pop {r7, pc} -0801161a : +08011636 : * @brief Period elapsed callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { - 801161a: b480 push {r7} - 801161c: b083 sub sp, #12 - 801161e: af00 add r7, sp, #0 - 8011620: 6078 str r0, [r7, #4] + 8011636: b480 push {r7} + 8011638: b083 sub sp, #12 + 801163a: af00 add r7, sp, #0 + 801163c: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_PeriodElapsedCallback could be implemented in the user file */ } - 8011622: bf00 nop - 8011624: 370c adds r7, #12 - 8011626: 46bd mov sp, r7 - 8011628: bc80 pop {r7} - 801162a: 4770 bx lr + 801163e: bf00 nop + 8011640: 370c adds r7, #12 + 8011642: 46bd mov sp, r7 + 8011644: bc80 pop {r7} + 8011646: 4770 bx lr -0801162c : +08011648 : * @brief Input Capture callback in non-blocking mode * @param htim TIM IC handle * @retval None */ __weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) { - 801162c: b480 push {r7} - 801162e: b083 sub sp, #12 - 8011630: af00 add r7, sp, #0 - 8011632: 6078 str r0, [r7, #4] + 8011648: b480 push {r7} + 801164a: b083 sub sp, #12 + 801164c: af00 add r7, sp, #0 + 801164e: 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 */ } - 8011634: bf00 nop - 8011636: 370c adds r7, #12 - 8011638: 46bd mov sp, r7 - 801163a: bc80 pop {r7} - 801163c: 4770 bx lr + 8011650: bf00 nop + 8011652: 370c adds r7, #12 + 8011654: 46bd mov sp, r7 + 8011656: bc80 pop {r7} + 8011658: 4770 bx lr -0801163e : +0801165a : * @brief PWM Pulse finished callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) { - 801163e: b480 push {r7} - 8011640: b083 sub sp, #12 - 8011642: af00 add r7, sp, #0 - 8011644: 6078 str r0, [r7, #4] + 801165a: b480 push {r7} + 801165c: b083 sub sp, #12 + 801165e: af00 add r7, sp, #0 + 8011660: 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 */ } - 8011646: bf00 nop - 8011648: 370c adds r7, #12 - 801164a: 46bd mov sp, r7 - 801164c: bc80 pop {r7} - 801164e: 4770 bx lr + 8011662: bf00 nop + 8011664: 370c adds r7, #12 + 8011666: 46bd mov sp, r7 + 8011668: bc80 pop {r7} + 801166a: 4770 bx lr -08011650 : +0801166c : * @brief Hall Trigger detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) { - 8011650: b480 push {r7} - 8011652: b083 sub sp, #12 - 8011654: af00 add r7, sp, #0 - 8011656: 6078 str r0, [r7, #4] + 801166c: b480 push {r7} + 801166e: b083 sub sp, #12 + 8011670: af00 add r7, sp, #0 + 8011672: 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 */ } - 8011658: bf00 nop - 801165a: 370c adds r7, #12 - 801165c: 46bd mov sp, r7 - 801165e: bc80 pop {r7} - 8011660: 4770 bx lr + 8011674: bf00 nop + 8011676: 370c adds r7, #12 + 8011678: 46bd mov sp, r7 + 801167a: bc80 pop {r7} + 801167c: 4770 bx lr ... -08011664 : +08011680 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, const TIM_Base_InitTypeDef *Structure) { - 8011664: b480 push {r7} - 8011666: b085 sub sp, #20 - 8011668: af00 add r7, sp, #0 - 801166a: 6078 str r0, [r7, #4] - 801166c: 6039 str r1, [r7, #0] + 8011680: b480 push {r7} + 8011682: b085 sub sp, #20 + 8011684: af00 add r7, sp, #0 + 8011686: 6078 str r0, [r7, #4] + 8011688: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 801166e: 687b ldr r3, [r7, #4] - 8011670: 681b ldr r3, [r3, #0] - 8011672: 60fb str r3, [r7, #12] + 801168a: 687b ldr r3, [r7, #4] + 801168c: 681b ldr r3, [r3, #0] + 801168e: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 8011674: 687b ldr r3, [r7, #4] - 8011676: 4a33 ldr r2, [pc, #204] @ (8011744 ) - 8011678: 4293 cmp r3, r2 - 801167a: d00f beq.n 801169c - 801167c: 687b ldr r3, [r7, #4] - 801167e: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8011682: d00b beq.n 801169c - 8011684: 687b ldr r3, [r7, #4] - 8011686: 4a30 ldr r2, [pc, #192] @ (8011748 ) - 8011688: 4293 cmp r3, r2 - 801168a: d007 beq.n 801169c - 801168c: 687b ldr r3, [r7, #4] - 801168e: 4a2f ldr r2, [pc, #188] @ (801174c ) - 8011690: 4293 cmp r3, r2 - 8011692: d003 beq.n 801169c - 8011694: 687b ldr r3, [r7, #4] - 8011696: 4a2e ldr r2, [pc, #184] @ (8011750 ) - 8011698: 4293 cmp r3, r2 - 801169a: d108 bne.n 80116ae + 8011690: 687b ldr r3, [r7, #4] + 8011692: 4a33 ldr r2, [pc, #204] @ (8011760 ) + 8011694: 4293 cmp r3, r2 + 8011696: d00f beq.n 80116b8 + 8011698: 687b ldr r3, [r7, #4] + 801169a: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 801169e: d00b beq.n 80116b8 + 80116a0: 687b ldr r3, [r7, #4] + 80116a2: 4a30 ldr r2, [pc, #192] @ (8011764 ) + 80116a4: 4293 cmp r3, r2 + 80116a6: d007 beq.n 80116b8 + 80116a8: 687b ldr r3, [r7, #4] + 80116aa: 4a2f ldr r2, [pc, #188] @ (8011768 ) + 80116ac: 4293 cmp r3, r2 + 80116ae: d003 beq.n 80116b8 + 80116b0: 687b ldr r3, [r7, #4] + 80116b2: 4a2e ldr r2, [pc, #184] @ (801176c ) + 80116b4: 4293 cmp r3, r2 + 80116b6: d108 bne.n 80116ca { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 801169c: 68fb ldr r3, [r7, #12] - 801169e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 80116a2: 60fb str r3, [r7, #12] + 80116b8: 68fb ldr r3, [r7, #12] + 80116ba: f023 0370 bic.w r3, r3, #112 @ 0x70 + 80116be: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 80116a4: 683b ldr r3, [r7, #0] - 80116a6: 685b ldr r3, [r3, #4] - 80116a8: 68fa ldr r2, [r7, #12] - 80116aa: 4313 orrs r3, r2 - 80116ac: 60fb str r3, [r7, #12] + 80116c0: 683b ldr r3, [r7, #0] + 80116c2: 685b ldr r3, [r3, #4] + 80116c4: 68fa ldr r2, [r7, #12] + 80116c6: 4313 orrs r3, r2 + 80116c8: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 80116ae: 687b ldr r3, [r7, #4] - 80116b0: 4a24 ldr r2, [pc, #144] @ (8011744 ) - 80116b2: 4293 cmp r3, r2 - 80116b4: d00f beq.n 80116d6 - 80116b6: 687b ldr r3, [r7, #4] - 80116b8: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 80116bc: d00b beq.n 80116d6 - 80116be: 687b ldr r3, [r7, #4] - 80116c0: 4a21 ldr r2, [pc, #132] @ (8011748 ) - 80116c2: 4293 cmp r3, r2 - 80116c4: d007 beq.n 80116d6 - 80116c6: 687b ldr r3, [r7, #4] - 80116c8: 4a20 ldr r2, [pc, #128] @ (801174c ) - 80116ca: 4293 cmp r3, r2 - 80116cc: d003 beq.n 80116d6 - 80116ce: 687b ldr r3, [r7, #4] - 80116d0: 4a1f ldr r2, [pc, #124] @ (8011750 ) - 80116d2: 4293 cmp r3, r2 - 80116d4: d108 bne.n 80116e8 + 80116ca: 687b ldr r3, [r7, #4] + 80116cc: 4a24 ldr r2, [pc, #144] @ (8011760 ) + 80116ce: 4293 cmp r3, r2 + 80116d0: d00f beq.n 80116f2 + 80116d2: 687b ldr r3, [r7, #4] + 80116d4: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80116d8: d00b beq.n 80116f2 + 80116da: 687b ldr r3, [r7, #4] + 80116dc: 4a21 ldr r2, [pc, #132] @ (8011764 ) + 80116de: 4293 cmp r3, r2 + 80116e0: d007 beq.n 80116f2 + 80116e2: 687b ldr r3, [r7, #4] + 80116e4: 4a20 ldr r2, [pc, #128] @ (8011768 ) + 80116e6: 4293 cmp r3, r2 + 80116e8: d003 beq.n 80116f2 + 80116ea: 687b ldr r3, [r7, #4] + 80116ec: 4a1f ldr r2, [pc, #124] @ (801176c ) + 80116ee: 4293 cmp r3, r2 + 80116f0: d108 bne.n 8011704 { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 80116d6: 68fb ldr r3, [r7, #12] - 80116d8: f423 7340 bic.w r3, r3, #768 @ 0x300 - 80116dc: 60fb str r3, [r7, #12] + 80116f2: 68fb ldr r3, [r7, #12] + 80116f4: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80116f8: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 80116de: 683b ldr r3, [r7, #0] - 80116e0: 68db ldr r3, [r3, #12] - 80116e2: 68fa ldr r2, [r7, #12] - 80116e4: 4313 orrs r3, r2 - 80116e6: 60fb str r3, [r7, #12] + 80116fa: 683b ldr r3, [r7, #0] + 80116fc: 68db ldr r3, [r3, #12] + 80116fe: 68fa ldr r2, [r7, #12] + 8011700: 4313 orrs r3, r2 + 8011702: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 80116e8: 68fb ldr r3, [r7, #12] - 80116ea: f023 0280 bic.w r2, r3, #128 @ 0x80 - 80116ee: 683b ldr r3, [r7, #0] - 80116f0: 695b ldr r3, [r3, #20] - 80116f2: 4313 orrs r3, r2 - 80116f4: 60fb str r3, [r7, #12] + 8011704: 68fb ldr r3, [r7, #12] + 8011706: f023 0280 bic.w r2, r3, #128 @ 0x80 + 801170a: 683b ldr r3, [r7, #0] + 801170c: 695b ldr r3, [r3, #20] + 801170e: 4313 orrs r3, r2 + 8011710: 60fb str r3, [r7, #12] TIMx->CR1 = tmpcr1; - 80116f6: 687b ldr r3, [r7, #4] - 80116f8: 68fa ldr r2, [r7, #12] - 80116fa: 601a str r2, [r3, #0] + 8011712: 687b ldr r3, [r7, #4] + 8011714: 68fa ldr r2, [r7, #12] + 8011716: 601a str r2, [r3, #0] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 80116fc: 683b ldr r3, [r7, #0] - 80116fe: 689a ldr r2, [r3, #8] - 8011700: 687b ldr r3, [r7, #4] - 8011702: 62da str r2, [r3, #44] @ 0x2c + 8011718: 683b ldr r3, [r7, #0] + 801171a: 689a ldr r2, [r3, #8] + 801171c: 687b ldr r3, [r7, #4] + 801171e: 62da str r2, [r3, #44] @ 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 8011704: 683b ldr r3, [r7, #0] - 8011706: 681a ldr r2, [r3, #0] - 8011708: 687b ldr r3, [r7, #4] - 801170a: 629a str r2, [r3, #40] @ 0x28 + 8011720: 683b ldr r3, [r7, #0] + 8011722: 681a ldr r2, [r3, #0] + 8011724: 687b ldr r3, [r7, #4] + 8011726: 629a str r2, [r3, #40] @ 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 801170c: 687b ldr r3, [r7, #4] - 801170e: 4a0d ldr r2, [pc, #52] @ (8011744 ) - 8011710: 4293 cmp r3, r2 - 8011712: d103 bne.n 801171c + 8011728: 687b ldr r3, [r7, #4] + 801172a: 4a0d ldr r2, [pc, #52] @ (8011760 ) + 801172c: 4293 cmp r3, r2 + 801172e: d103 bne.n 8011738 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 8011714: 683b ldr r3, [r7, #0] - 8011716: 691a ldr r2, [r3, #16] - 8011718: 687b ldr r3, [r7, #4] - 801171a: 631a str r2, [r3, #48] @ 0x30 + 8011730: 683b ldr r3, [r7, #0] + 8011732: 691a ldr r2, [r3, #16] + 8011734: 687b ldr r3, [r7, #4] + 8011736: 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; - 801171c: 687b ldr r3, [r7, #4] - 801171e: 2201 movs r2, #1 - 8011720: 615a str r2, [r3, #20] + 8011738: 687b ldr r3, [r7, #4] + 801173a: 2201 movs r2, #1 + 801173c: 615a str r2, [r3, #20] /* Check if the update flag is set after the Update Generation, if so clear the UIF flag */ if (HAL_IS_BIT_SET(TIMx->SR, TIM_FLAG_UPDATE)) - 8011722: 687b ldr r3, [r7, #4] - 8011724: 691b ldr r3, [r3, #16] - 8011726: f003 0301 and.w r3, r3, #1 - 801172a: 2b00 cmp r3, #0 - 801172c: d005 beq.n 801173a + 801173e: 687b ldr r3, [r7, #4] + 8011740: 691b ldr r3, [r3, #16] + 8011742: f003 0301 and.w r3, r3, #1 + 8011746: 2b00 cmp r3, #0 + 8011748: d005 beq.n 8011756 { /* Clear the update flag */ CLEAR_BIT(TIMx->SR, TIM_FLAG_UPDATE); - 801172e: 687b ldr r3, [r7, #4] - 8011730: 691b ldr r3, [r3, #16] - 8011732: f023 0201 bic.w r2, r3, #1 - 8011736: 687b ldr r3, [r7, #4] - 8011738: 611a str r2, [r3, #16] + 801174a: 687b ldr r3, [r7, #4] + 801174c: 691b ldr r3, [r3, #16] + 801174e: f023 0201 bic.w r2, r3, #1 + 8011752: 687b ldr r3, [r7, #4] + 8011754: 611a str r2, [r3, #16] } } - 801173a: bf00 nop - 801173c: 3714 adds r7, #20 - 801173e: 46bd mov sp, r7 - 8011740: bc80 pop {r7} - 8011742: 4770 bx lr - 8011744: 40012c00 .word 0x40012c00 - 8011748: 40000400 .word 0x40000400 - 801174c: 40000800 .word 0x40000800 - 8011750: 40000c00 .word 0x40000c00 + 8011756: bf00 nop + 8011758: 3714 adds r7, #20 + 801175a: 46bd mov sp, r7 + 801175c: bc80 pop {r7} + 801175e: 4770 bx lr + 8011760: 40012c00 .word 0x40012c00 + 8011764: 40000400 .word 0x40000400 + 8011768: 40000800 .word 0x40000800 + 801176c: 40000c00 .word 0x40000c00 -08011754 : +08011770 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8011754: b480 push {r7} - 8011756: b087 sub sp, #28 - 8011758: af00 add r7, sp, #0 - 801175a: 6078 str r0, [r7, #4] - 801175c: 6039 str r1, [r7, #0] + 8011770: b480 push {r7} + 8011772: b087 sub sp, #28 + 8011774: af00 add r7, sp, #0 + 8011776: 6078 str r0, [r7, #4] + 8011778: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 801175e: 687b ldr r3, [r7, #4] - 8011760: 6a1b ldr r3, [r3, #32] - 8011762: 617b str r3, [r7, #20] + 801177a: 687b ldr r3, [r7, #4] + 801177c: 6a1b ldr r3, [r3, #32] + 801177e: 617b str r3, [r7, #20] /* Disable the Channel 1: Reset the CC1E Bit */ TIMx->CCER &= ~TIM_CCER_CC1E; - 8011764: 687b ldr r3, [r7, #4] - 8011766: 6a1b ldr r3, [r3, #32] - 8011768: f023 0201 bic.w r2, r3, #1 - 801176c: 687b ldr r3, [r7, #4] - 801176e: 621a str r2, [r3, #32] + 8011780: 687b ldr r3, [r7, #4] + 8011782: 6a1b ldr r3, [r3, #32] + 8011784: f023 0201 bic.w r2, r3, #1 + 8011788: 687b ldr r3, [r7, #4] + 801178a: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8011770: 687b ldr r3, [r7, #4] - 8011772: 685b ldr r3, [r3, #4] - 8011774: 613b str r3, [r7, #16] + 801178c: 687b ldr r3, [r7, #4] + 801178e: 685b ldr r3, [r3, #4] + 8011790: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 8011776: 687b ldr r3, [r7, #4] - 8011778: 699b ldr r3, [r3, #24] - 801177a: 60fb str r3, [r7, #12] + 8011792: 687b ldr r3, [r7, #4] + 8011794: 699b ldr r3, [r3, #24] + 8011796: 60fb str r3, [r7, #12] /* Reset the Output Compare Mode Bits */ tmpccmrx &= ~TIM_CCMR1_OC1M; - 801177c: 68fb ldr r3, [r7, #12] - 801177e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8011782: 60fb str r3, [r7, #12] + 8011798: 68fb ldr r3, [r7, #12] + 801179a: f023 0370 bic.w r3, r3, #112 @ 0x70 + 801179e: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC1S; - 8011784: 68fb ldr r3, [r7, #12] - 8011786: f023 0303 bic.w r3, r3, #3 - 801178a: 60fb str r3, [r7, #12] + 80117a0: 68fb ldr r3, [r7, #12] + 80117a2: f023 0303 bic.w r3, r3, #3 + 80117a6: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 801178c: 683b ldr r3, [r7, #0] - 801178e: 681b ldr r3, [r3, #0] - 8011790: 68fa ldr r2, [r7, #12] - 8011792: 4313 orrs r3, r2 - 8011794: 60fb str r3, [r7, #12] + 80117a8: 683b ldr r3, [r7, #0] + 80117aa: 681b ldr r3, [r3, #0] + 80117ac: 68fa ldr r2, [r7, #12] + 80117ae: 4313 orrs r3, r2 + 80117b0: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC1P; - 8011796: 697b ldr r3, [r7, #20] - 8011798: f023 0302 bic.w r3, r3, #2 - 801179c: 617b str r3, [r7, #20] + 80117b2: 697b ldr r3, [r7, #20] + 80117b4: f023 0302 bic.w r3, r3, #2 + 80117b8: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= OC_Config->OCPolarity; - 801179e: 683b ldr r3, [r7, #0] - 80117a0: 689b ldr r3, [r3, #8] - 80117a2: 697a ldr r2, [r7, #20] - 80117a4: 4313 orrs r3, r2 - 80117a6: 617b str r3, [r7, #20] + 80117ba: 683b ldr r3, [r7, #0] + 80117bc: 689b ldr r3, [r3, #8] + 80117be: 697a ldr r2, [r7, #20] + 80117c0: 4313 orrs r3, r2 + 80117c2: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_1)) - 80117a8: 687b ldr r3, [r7, #4] - 80117aa: 4a1c ldr r2, [pc, #112] @ (801181c ) - 80117ac: 4293 cmp r3, r2 - 80117ae: d10c bne.n 80117ca + 80117c4: 687b ldr r3, [r7, #4] + 80117c6: 4a1c ldr r2, [pc, #112] @ (8011838 ) + 80117c8: 4293 cmp r3, r2 + 80117ca: d10c bne.n 80117e6 { /* Check parameters */ assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC1NP; - 80117b0: 697b ldr r3, [r7, #20] - 80117b2: f023 0308 bic.w r3, r3, #8 - 80117b6: 617b str r3, [r7, #20] + 80117cc: 697b ldr r3, [r7, #20] + 80117ce: f023 0308 bic.w r3, r3, #8 + 80117d2: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= OC_Config->OCNPolarity; - 80117b8: 683b ldr r3, [r7, #0] - 80117ba: 68db ldr r3, [r3, #12] - 80117bc: 697a ldr r2, [r7, #20] - 80117be: 4313 orrs r3, r2 - 80117c0: 617b str r3, [r7, #20] + 80117d4: 683b ldr r3, [r7, #0] + 80117d6: 68db ldr r3, [r3, #12] + 80117d8: 697a ldr r2, [r7, #20] + 80117da: 4313 orrs r3, r2 + 80117dc: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC1NE; - 80117c2: 697b ldr r3, [r7, #20] - 80117c4: f023 0304 bic.w r3, r3, #4 - 80117c8: 617b str r3, [r7, #20] + 80117de: 697b ldr r3, [r7, #20] + 80117e0: f023 0304 bic.w r3, r3, #4 + 80117e4: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 80117ca: 687b ldr r3, [r7, #4] - 80117cc: 4a13 ldr r2, [pc, #76] @ (801181c ) - 80117ce: 4293 cmp r3, r2 - 80117d0: d111 bne.n 80117f6 + 80117e6: 687b ldr r3, [r7, #4] + 80117e8: 4a13 ldr r2, [pc, #76] @ (8011838 ) + 80117ea: 4293 cmp r3, r2 + 80117ec: d111 bne.n 8011812 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS1; - 80117d2: 693b ldr r3, [r7, #16] - 80117d4: f423 7380 bic.w r3, r3, #256 @ 0x100 - 80117d8: 613b str r3, [r7, #16] + 80117ee: 693b ldr r3, [r7, #16] + 80117f0: f423 7380 bic.w r3, r3, #256 @ 0x100 + 80117f4: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS1N; - 80117da: 693b ldr r3, [r7, #16] - 80117dc: f423 7300 bic.w r3, r3, #512 @ 0x200 - 80117e0: 613b str r3, [r7, #16] + 80117f6: 693b ldr r3, [r7, #16] + 80117f8: f423 7300 bic.w r3, r3, #512 @ 0x200 + 80117fc: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= OC_Config->OCIdleState; - 80117e2: 683b ldr r3, [r7, #0] - 80117e4: 695b ldr r3, [r3, #20] - 80117e6: 693a ldr r2, [r7, #16] - 80117e8: 4313 orrs r3, r2 - 80117ea: 613b str r3, [r7, #16] + 80117fe: 683b ldr r3, [r7, #0] + 8011800: 695b ldr r3, [r3, #20] + 8011802: 693a ldr r2, [r7, #16] + 8011804: 4313 orrs r3, r2 + 8011806: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= OC_Config->OCNIdleState; - 80117ec: 683b ldr r3, [r7, #0] - 80117ee: 699b ldr r3, [r3, #24] - 80117f0: 693a ldr r2, [r7, #16] - 80117f2: 4313 orrs r3, r2 - 80117f4: 613b str r3, [r7, #16] + 8011808: 683b ldr r3, [r7, #0] + 801180a: 699b ldr r3, [r3, #24] + 801180c: 693a ldr r2, [r7, #16] + 801180e: 4313 orrs r3, r2 + 8011810: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80117f6: 687b ldr r3, [r7, #4] - 80117f8: 693a ldr r2, [r7, #16] - 80117fa: 605a str r2, [r3, #4] + 8011812: 687b ldr r3, [r7, #4] + 8011814: 693a ldr r2, [r7, #16] + 8011816: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 80117fc: 687b ldr r3, [r7, #4] - 80117fe: 68fa ldr r2, [r7, #12] - 8011800: 619a str r2, [r3, #24] + 8011818: 687b ldr r3, [r7, #4] + 801181a: 68fa ldr r2, [r7, #12] + 801181c: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR1 = OC_Config->Pulse; - 8011802: 683b ldr r3, [r7, #0] - 8011804: 685a ldr r2, [r3, #4] - 8011806: 687b ldr r3, [r7, #4] - 8011808: 635a str r2, [r3, #52] @ 0x34 + 801181e: 683b ldr r3, [r7, #0] + 8011820: 685a ldr r2, [r3, #4] + 8011822: 687b ldr r3, [r7, #4] + 8011824: 635a str r2, [r3, #52] @ 0x34 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 801180a: 687b ldr r3, [r7, #4] - 801180c: 697a ldr r2, [r7, #20] - 801180e: 621a str r2, [r3, #32] + 8011826: 687b ldr r3, [r7, #4] + 8011828: 697a ldr r2, [r7, #20] + 801182a: 621a str r2, [r3, #32] } - 8011810: bf00 nop - 8011812: 371c adds r7, #28 - 8011814: 46bd mov sp, r7 - 8011816: bc80 pop {r7} - 8011818: 4770 bx lr - 801181a: bf00 nop - 801181c: 40012c00 .word 0x40012c00 + 801182c: bf00 nop + 801182e: 371c adds r7, #28 + 8011830: 46bd mov sp, r7 + 8011832: bc80 pop {r7} + 8011834: 4770 bx lr + 8011836: bf00 nop + 8011838: 40012c00 .word 0x40012c00 -08011820 : +0801183c : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8011820: b480 push {r7} - 8011822: b087 sub sp, #28 - 8011824: af00 add r7, sp, #0 - 8011826: 6078 str r0, [r7, #4] - 8011828: 6039 str r1, [r7, #0] + 801183c: b480 push {r7} + 801183e: b087 sub sp, #28 + 8011840: af00 add r7, sp, #0 + 8011842: 6078 str r0, [r7, #4] + 8011844: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 801182a: 687b ldr r3, [r7, #4] - 801182c: 6a1b ldr r3, [r3, #32] - 801182e: 617b str r3, [r7, #20] + 8011846: 687b ldr r3, [r7, #4] + 8011848: 6a1b ldr r3, [r3, #32] + 801184a: 617b str r3, [r7, #20] /* Disable the Channel 2: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC2E; - 8011830: 687b ldr r3, [r7, #4] - 8011832: 6a1b ldr r3, [r3, #32] - 8011834: f023 0210 bic.w r2, r3, #16 - 8011838: 687b ldr r3, [r7, #4] - 801183a: 621a str r2, [r3, #32] + 801184c: 687b ldr r3, [r7, #4] + 801184e: 6a1b ldr r3, [r3, #32] + 8011850: f023 0210 bic.w r2, r3, #16 + 8011854: 687b ldr r3, [r7, #4] + 8011856: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 801183c: 687b ldr r3, [r7, #4] - 801183e: 685b ldr r3, [r3, #4] - 8011840: 613b str r3, [r7, #16] + 8011858: 687b ldr r3, [r7, #4] + 801185a: 685b ldr r3, [r3, #4] + 801185c: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 8011842: 687b ldr r3, [r7, #4] - 8011844: 699b ldr r3, [r3, #24] - 8011846: 60fb str r3, [r7, #12] + 801185e: 687b ldr r3, [r7, #4] + 8011860: 699b ldr r3, [r3, #24] + 8011862: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR1_OC2M; - 8011848: 68fb ldr r3, [r7, #12] - 801184a: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 801184e: 60fb str r3, [r7, #12] + 8011864: 68fb ldr r3, [r7, #12] + 8011866: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 801186a: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC2S; - 8011850: 68fb ldr r3, [r7, #12] - 8011852: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8011856: 60fb str r3, [r7, #12] + 801186c: 68fb ldr r3, [r7, #12] + 801186e: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8011872: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 8011858: 683b ldr r3, [r7, #0] - 801185a: 681b ldr r3, [r3, #0] - 801185c: 021b lsls r3, r3, #8 - 801185e: 68fa ldr r2, [r7, #12] - 8011860: 4313 orrs r3, r2 - 8011862: 60fb str r3, [r7, #12] + 8011874: 683b ldr r3, [r7, #0] + 8011876: 681b ldr r3, [r3, #0] + 8011878: 021b lsls r3, r3, #8 + 801187a: 68fa ldr r2, [r7, #12] + 801187c: 4313 orrs r3, r2 + 801187e: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC2P; - 8011864: 697b ldr r3, [r7, #20] - 8011866: f023 0320 bic.w r3, r3, #32 - 801186a: 617b str r3, [r7, #20] + 8011880: 697b ldr r3, [r7, #20] + 8011882: f023 0320 bic.w r3, r3, #32 + 8011886: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 4U); - 801186c: 683b ldr r3, [r7, #0] - 801186e: 689b ldr r3, [r3, #8] - 8011870: 011b lsls r3, r3, #4 - 8011872: 697a ldr r2, [r7, #20] - 8011874: 4313 orrs r3, r2 - 8011876: 617b str r3, [r7, #20] + 8011888: 683b ldr r3, [r7, #0] + 801188a: 689b ldr r3, [r3, #8] + 801188c: 011b lsls r3, r3, #4 + 801188e: 697a ldr r2, [r7, #20] + 8011890: 4313 orrs r3, r2 + 8011892: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_2)) - 8011878: 687b ldr r3, [r7, #4] - 801187a: 4a1d ldr r2, [pc, #116] @ (80118f0 ) - 801187c: 4293 cmp r3, r2 - 801187e: d10d bne.n 801189c + 8011894: 687b ldr r3, [r7, #4] + 8011896: 4a1d ldr r2, [pc, #116] @ (801190c ) + 8011898: 4293 cmp r3, r2 + 801189a: d10d bne.n 80118b8 { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC2NP; - 8011880: 697b ldr r3, [r7, #20] - 8011882: f023 0380 bic.w r3, r3, #128 @ 0x80 - 8011886: 617b str r3, [r7, #20] + 801189c: 697b ldr r3, [r7, #20] + 801189e: f023 0380 bic.w r3, r3, #128 @ 0x80 + 80118a2: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 4U); - 8011888: 683b ldr r3, [r7, #0] - 801188a: 68db ldr r3, [r3, #12] - 801188c: 011b lsls r3, r3, #4 - 801188e: 697a ldr r2, [r7, #20] - 8011890: 4313 orrs r3, r2 - 8011892: 617b str r3, [r7, #20] + 80118a4: 683b ldr r3, [r7, #0] + 80118a6: 68db ldr r3, [r3, #12] + 80118a8: 011b lsls r3, r3, #4 + 80118aa: 697a ldr r2, [r7, #20] + 80118ac: 4313 orrs r3, r2 + 80118ae: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC2NE; - 8011894: 697b ldr r3, [r7, #20] - 8011896: f023 0340 bic.w r3, r3, #64 @ 0x40 - 801189a: 617b str r3, [r7, #20] + 80118b0: 697b ldr r3, [r7, #20] + 80118b2: f023 0340 bic.w r3, r3, #64 @ 0x40 + 80118b6: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 801189c: 687b ldr r3, [r7, #4] - 801189e: 4a14 ldr r2, [pc, #80] @ (80118f0 ) - 80118a0: 4293 cmp r3, r2 - 80118a2: d113 bne.n 80118cc + 80118b8: 687b ldr r3, [r7, #4] + 80118ba: 4a14 ldr r2, [pc, #80] @ (801190c ) + 80118bc: 4293 cmp r3, r2 + 80118be: d113 bne.n 80118e8 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS2; - 80118a4: 693b ldr r3, [r7, #16] - 80118a6: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 80118aa: 613b str r3, [r7, #16] + 80118c0: 693b ldr r3, [r7, #16] + 80118c2: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 80118c6: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS2N; - 80118ac: 693b ldr r3, [r7, #16] - 80118ae: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 80118b2: 613b str r3, [r7, #16] + 80118c8: 693b ldr r3, [r7, #16] + 80118ca: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 80118ce: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 2U); - 80118b4: 683b ldr r3, [r7, #0] - 80118b6: 695b ldr r3, [r3, #20] - 80118b8: 009b lsls r3, r3, #2 - 80118ba: 693a ldr r2, [r7, #16] - 80118bc: 4313 orrs r3, r2 - 80118be: 613b str r3, [r7, #16] + 80118d0: 683b ldr r3, [r7, #0] + 80118d2: 695b ldr r3, [r3, #20] + 80118d4: 009b lsls r3, r3, #2 + 80118d6: 693a ldr r2, [r7, #16] + 80118d8: 4313 orrs r3, r2 + 80118da: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 2U); - 80118c0: 683b ldr r3, [r7, #0] - 80118c2: 699b ldr r3, [r3, #24] - 80118c4: 009b lsls r3, r3, #2 - 80118c6: 693a ldr r2, [r7, #16] - 80118c8: 4313 orrs r3, r2 - 80118ca: 613b str r3, [r7, #16] + 80118dc: 683b ldr r3, [r7, #0] + 80118de: 699b ldr r3, [r3, #24] + 80118e0: 009b lsls r3, r3, #2 + 80118e2: 693a ldr r2, [r7, #16] + 80118e4: 4313 orrs r3, r2 + 80118e6: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80118cc: 687b ldr r3, [r7, #4] - 80118ce: 693a ldr r2, [r7, #16] - 80118d0: 605a str r2, [r3, #4] + 80118e8: 687b ldr r3, [r7, #4] + 80118ea: 693a ldr r2, [r7, #16] + 80118ec: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 80118d2: 687b ldr r3, [r7, #4] - 80118d4: 68fa ldr r2, [r7, #12] - 80118d6: 619a str r2, [r3, #24] + 80118ee: 687b ldr r3, [r7, #4] + 80118f0: 68fa ldr r2, [r7, #12] + 80118f2: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR2 = OC_Config->Pulse; - 80118d8: 683b ldr r3, [r7, #0] - 80118da: 685a ldr r2, [r3, #4] - 80118dc: 687b ldr r3, [r7, #4] - 80118de: 639a str r2, [r3, #56] @ 0x38 + 80118f4: 683b ldr r3, [r7, #0] + 80118f6: 685a ldr r2, [r3, #4] + 80118f8: 687b ldr r3, [r7, #4] + 80118fa: 639a str r2, [r3, #56] @ 0x38 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80118e0: 687b ldr r3, [r7, #4] - 80118e2: 697a ldr r2, [r7, #20] - 80118e4: 621a str r2, [r3, #32] + 80118fc: 687b ldr r3, [r7, #4] + 80118fe: 697a ldr r2, [r7, #20] + 8011900: 621a str r2, [r3, #32] } - 80118e6: bf00 nop - 80118e8: 371c adds r7, #28 - 80118ea: 46bd mov sp, r7 - 80118ec: bc80 pop {r7} - 80118ee: 4770 bx lr - 80118f0: 40012c00 .word 0x40012c00 + 8011902: bf00 nop + 8011904: 371c adds r7, #28 + 8011906: 46bd mov sp, r7 + 8011908: bc80 pop {r7} + 801190a: 4770 bx lr + 801190c: 40012c00 .word 0x40012c00 -080118f4 : +08011910 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 80118f4: b480 push {r7} - 80118f6: b087 sub sp, #28 - 80118f8: af00 add r7, sp, #0 - 80118fa: 6078 str r0, [r7, #4] - 80118fc: 6039 str r1, [r7, #0] + 8011910: b480 push {r7} + 8011912: b087 sub sp, #28 + 8011914: af00 add r7, sp, #0 + 8011916: 6078 str r0, [r7, #4] + 8011918: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 80118fe: 687b ldr r3, [r7, #4] - 8011900: 6a1b ldr r3, [r3, #32] - 8011902: 617b str r3, [r7, #20] + 801191a: 687b ldr r3, [r7, #4] + 801191c: 6a1b ldr r3, [r3, #32] + 801191e: 617b str r3, [r7, #20] /* Disable the Channel 3: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC3E; - 8011904: 687b ldr r3, [r7, #4] - 8011906: 6a1b ldr r3, [r3, #32] - 8011908: f423 7280 bic.w r2, r3, #256 @ 0x100 - 801190c: 687b ldr r3, [r7, #4] - 801190e: 621a str r2, [r3, #32] + 8011920: 687b ldr r3, [r7, #4] + 8011922: 6a1b ldr r3, [r3, #32] + 8011924: f423 7280 bic.w r2, r3, #256 @ 0x100 + 8011928: 687b ldr r3, [r7, #4] + 801192a: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8011910: 687b ldr r3, [r7, #4] - 8011912: 685b ldr r3, [r3, #4] - 8011914: 613b str r3, [r7, #16] + 801192c: 687b ldr r3, [r7, #4] + 801192e: 685b ldr r3, [r3, #4] + 8011930: 613b str r3, [r7, #16] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 8011916: 687b ldr r3, [r7, #4] - 8011918: 69db ldr r3, [r3, #28] - 801191a: 60fb str r3, [r7, #12] + 8011932: 687b ldr r3, [r7, #4] + 8011934: 69db ldr r3, [r3, #28] + 8011936: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC3M; - 801191c: 68fb ldr r3, [r7, #12] - 801191e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8011922: 60fb str r3, [r7, #12] + 8011938: 68fb ldr r3, [r7, #12] + 801193a: f023 0370 bic.w r3, r3, #112 @ 0x70 + 801193e: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC3S; - 8011924: 68fb ldr r3, [r7, #12] - 8011926: f023 0303 bic.w r3, r3, #3 - 801192a: 60fb str r3, [r7, #12] + 8011940: 68fb ldr r3, [r7, #12] + 8011942: f023 0303 bic.w r3, r3, #3 + 8011946: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 801192c: 683b ldr r3, [r7, #0] - 801192e: 681b ldr r3, [r3, #0] - 8011930: 68fa ldr r2, [r7, #12] - 8011932: 4313 orrs r3, r2 - 8011934: 60fb str r3, [r7, #12] + 8011948: 683b ldr r3, [r7, #0] + 801194a: 681b ldr r3, [r3, #0] + 801194c: 68fa ldr r2, [r7, #12] + 801194e: 4313 orrs r3, r2 + 8011950: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC3P; - 8011936: 697b ldr r3, [r7, #20] - 8011938: f423 7300 bic.w r3, r3, #512 @ 0x200 - 801193c: 617b str r3, [r7, #20] + 8011952: 697b ldr r3, [r7, #20] + 8011954: f423 7300 bic.w r3, r3, #512 @ 0x200 + 8011958: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 8U); - 801193e: 683b ldr r3, [r7, #0] - 8011940: 689b ldr r3, [r3, #8] - 8011942: 021b lsls r3, r3, #8 - 8011944: 697a ldr r2, [r7, #20] - 8011946: 4313 orrs r3, r2 - 8011948: 617b str r3, [r7, #20] + 801195a: 683b ldr r3, [r7, #0] + 801195c: 689b ldr r3, [r3, #8] + 801195e: 021b lsls r3, r3, #8 + 8011960: 697a ldr r2, [r7, #20] + 8011962: 4313 orrs r3, r2 + 8011964: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_3)) - 801194a: 687b ldr r3, [r7, #4] - 801194c: 4a1d ldr r2, [pc, #116] @ (80119c4 ) - 801194e: 4293 cmp r3, r2 - 8011950: d10d bne.n 801196e + 8011966: 687b ldr r3, [r7, #4] + 8011968: 4a1d ldr r2, [pc, #116] @ (80119e0 ) + 801196a: 4293 cmp r3, r2 + 801196c: d10d bne.n 801198a { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC3NP; - 8011952: 697b ldr r3, [r7, #20] - 8011954: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 8011958: 617b str r3, [r7, #20] + 801196e: 697b ldr r3, [r7, #20] + 8011970: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 8011974: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 8U); - 801195a: 683b ldr r3, [r7, #0] - 801195c: 68db ldr r3, [r3, #12] - 801195e: 021b lsls r3, r3, #8 - 8011960: 697a ldr r2, [r7, #20] - 8011962: 4313 orrs r3, r2 - 8011964: 617b str r3, [r7, #20] + 8011976: 683b ldr r3, [r7, #0] + 8011978: 68db ldr r3, [r3, #12] + 801197a: 021b lsls r3, r3, #8 + 801197c: 697a ldr r2, [r7, #20] + 801197e: 4313 orrs r3, r2 + 8011980: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC3NE; - 8011966: 697b ldr r3, [r7, #20] - 8011968: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 801196c: 617b str r3, [r7, #20] + 8011982: 697b ldr r3, [r7, #20] + 8011984: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 8011988: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 801196e: 687b ldr r3, [r7, #4] - 8011970: 4a14 ldr r2, [pc, #80] @ (80119c4 ) - 8011972: 4293 cmp r3, r2 - 8011974: d113 bne.n 801199e + 801198a: 687b ldr r3, [r7, #4] + 801198c: 4a14 ldr r2, [pc, #80] @ (80119e0 ) + 801198e: 4293 cmp r3, r2 + 8011990: d113 bne.n 80119ba /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS3; - 8011976: 693b ldr r3, [r7, #16] - 8011978: f423 5380 bic.w r3, r3, #4096 @ 0x1000 - 801197c: 613b str r3, [r7, #16] + 8011992: 693b ldr r3, [r7, #16] + 8011994: f423 5380 bic.w r3, r3, #4096 @ 0x1000 + 8011998: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS3N; - 801197e: 693b ldr r3, [r7, #16] - 8011980: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 8011984: 613b str r3, [r7, #16] + 801199a: 693b ldr r3, [r7, #16] + 801199c: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 80119a0: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 4U); - 8011986: 683b ldr r3, [r7, #0] - 8011988: 695b ldr r3, [r3, #20] - 801198a: 011b lsls r3, r3, #4 - 801198c: 693a ldr r2, [r7, #16] - 801198e: 4313 orrs r3, r2 - 8011990: 613b str r3, [r7, #16] + 80119a2: 683b ldr r3, [r7, #0] + 80119a4: 695b ldr r3, [r3, #20] + 80119a6: 011b lsls r3, r3, #4 + 80119a8: 693a ldr r2, [r7, #16] + 80119aa: 4313 orrs r3, r2 + 80119ac: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 4U); - 8011992: 683b ldr r3, [r7, #0] - 8011994: 699b ldr r3, [r3, #24] - 8011996: 011b lsls r3, r3, #4 - 8011998: 693a ldr r2, [r7, #16] - 801199a: 4313 orrs r3, r2 - 801199c: 613b str r3, [r7, #16] + 80119ae: 683b ldr r3, [r7, #0] + 80119b0: 699b ldr r3, [r3, #24] + 80119b2: 011b lsls r3, r3, #4 + 80119b4: 693a ldr r2, [r7, #16] + 80119b6: 4313 orrs r3, r2 + 80119b8: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 801199e: 687b ldr r3, [r7, #4] - 80119a0: 693a ldr r2, [r7, #16] - 80119a2: 605a str r2, [r3, #4] + 80119ba: 687b ldr r3, [r7, #4] + 80119bc: 693a ldr r2, [r7, #16] + 80119be: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 80119a4: 687b ldr r3, [r7, #4] - 80119a6: 68fa ldr r2, [r7, #12] - 80119a8: 61da str r2, [r3, #28] + 80119c0: 687b ldr r3, [r7, #4] + 80119c2: 68fa ldr r2, [r7, #12] + 80119c4: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR3 = OC_Config->Pulse; - 80119aa: 683b ldr r3, [r7, #0] - 80119ac: 685a ldr r2, [r3, #4] - 80119ae: 687b ldr r3, [r7, #4] - 80119b0: 63da str r2, [r3, #60] @ 0x3c + 80119c6: 683b ldr r3, [r7, #0] + 80119c8: 685a ldr r2, [r3, #4] + 80119ca: 687b ldr r3, [r7, #4] + 80119cc: 63da str r2, [r3, #60] @ 0x3c /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80119b2: 687b ldr r3, [r7, #4] - 80119b4: 697a ldr r2, [r7, #20] - 80119b6: 621a str r2, [r3, #32] + 80119ce: 687b ldr r3, [r7, #4] + 80119d0: 697a ldr r2, [r7, #20] + 80119d2: 621a str r2, [r3, #32] } - 80119b8: bf00 nop - 80119ba: 371c adds r7, #28 - 80119bc: 46bd mov sp, r7 - 80119be: bc80 pop {r7} - 80119c0: 4770 bx lr - 80119c2: bf00 nop - 80119c4: 40012c00 .word 0x40012c00 + 80119d4: bf00 nop + 80119d6: 371c adds r7, #28 + 80119d8: 46bd mov sp, r7 + 80119da: bc80 pop {r7} + 80119dc: 4770 bx lr + 80119de: bf00 nop + 80119e0: 40012c00 .word 0x40012c00 -080119c8 : +080119e4 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 80119c8: b480 push {r7} - 80119ca: b087 sub sp, #28 - 80119cc: af00 add r7, sp, #0 - 80119ce: 6078 str r0, [r7, #4] - 80119d0: 6039 str r1, [r7, #0] + 80119e4: b480 push {r7} + 80119e6: b087 sub sp, #28 + 80119e8: af00 add r7, sp, #0 + 80119ea: 6078 str r0, [r7, #4] + 80119ec: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 80119d2: 687b ldr r3, [r7, #4] - 80119d4: 6a1b ldr r3, [r3, #32] - 80119d6: 613b str r3, [r7, #16] + 80119ee: 687b ldr r3, [r7, #4] + 80119f0: 6a1b ldr r3, [r3, #32] + 80119f2: 613b str r3, [r7, #16] /* Disable the Channel 4: Reset the CC4E Bit */ TIMx->CCER &= ~TIM_CCER_CC4E; - 80119d8: 687b ldr r3, [r7, #4] - 80119da: 6a1b ldr r3, [r3, #32] - 80119dc: f423 5280 bic.w r2, r3, #4096 @ 0x1000 - 80119e0: 687b ldr r3, [r7, #4] - 80119e2: 621a str r2, [r3, #32] + 80119f4: 687b ldr r3, [r7, #4] + 80119f6: 6a1b ldr r3, [r3, #32] + 80119f8: f423 5280 bic.w r2, r3, #4096 @ 0x1000 + 80119fc: 687b ldr r3, [r7, #4] + 80119fe: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 80119e4: 687b ldr r3, [r7, #4] - 80119e6: 685b ldr r3, [r3, #4] - 80119e8: 617b str r3, [r7, #20] + 8011a00: 687b ldr r3, [r7, #4] + 8011a02: 685b ldr r3, [r3, #4] + 8011a04: 617b str r3, [r7, #20] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 80119ea: 687b ldr r3, [r7, #4] - 80119ec: 69db ldr r3, [r3, #28] - 80119ee: 60fb str r3, [r7, #12] + 8011a06: 687b ldr r3, [r7, #4] + 8011a08: 69db ldr r3, [r3, #28] + 8011a0a: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC4M; - 80119f0: 68fb ldr r3, [r7, #12] - 80119f2: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 80119f6: 60fb str r3, [r7, #12] + 8011a0c: 68fb ldr r3, [r7, #12] + 8011a0e: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 8011a12: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC4S; - 80119f8: 68fb ldr r3, [r7, #12] - 80119fa: f423 7340 bic.w r3, r3, #768 @ 0x300 - 80119fe: 60fb str r3, [r7, #12] + 8011a14: 68fb ldr r3, [r7, #12] + 8011a16: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8011a1a: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 8011a00: 683b ldr r3, [r7, #0] - 8011a02: 681b ldr r3, [r3, #0] - 8011a04: 021b lsls r3, r3, #8 - 8011a06: 68fa ldr r2, [r7, #12] - 8011a08: 4313 orrs r3, r2 - 8011a0a: 60fb str r3, [r7, #12] + 8011a1c: 683b ldr r3, [r7, #0] + 8011a1e: 681b ldr r3, [r3, #0] + 8011a20: 021b lsls r3, r3, #8 + 8011a22: 68fa ldr r2, [r7, #12] + 8011a24: 4313 orrs r3, r2 + 8011a26: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC4P; - 8011a0c: 693b ldr r3, [r7, #16] - 8011a0e: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 8011a12: 613b str r3, [r7, #16] + 8011a28: 693b ldr r3, [r7, #16] + 8011a2a: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 8011a2e: 613b str r3, [r7, #16] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 12U); - 8011a14: 683b ldr r3, [r7, #0] - 8011a16: 689b ldr r3, [r3, #8] - 8011a18: 031b lsls r3, r3, #12 - 8011a1a: 693a ldr r2, [r7, #16] - 8011a1c: 4313 orrs r3, r2 - 8011a1e: 613b str r3, [r7, #16] + 8011a30: 683b ldr r3, [r7, #0] + 8011a32: 689b ldr r3, [r3, #8] + 8011a34: 031b lsls r3, r3, #12 + 8011a36: 693a ldr r2, [r7, #16] + 8011a38: 4313 orrs r3, r2 + 8011a3a: 613b str r3, [r7, #16] if (IS_TIM_BREAK_INSTANCE(TIMx)) - 8011a20: 687b ldr r3, [r7, #4] - 8011a22: 4a0f ldr r2, [pc, #60] @ (8011a60 ) - 8011a24: 4293 cmp r3, r2 - 8011a26: d109 bne.n 8011a3c + 8011a3c: 687b ldr r3, [r7, #4] + 8011a3e: 4a0f ldr r2, [pc, #60] @ (8011a7c ) + 8011a40: 4293 cmp r3, r2 + 8011a42: d109 bne.n 8011a58 { /* Check parameters */ assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare IDLE State */ tmpcr2 &= ~TIM_CR2_OIS4; - 8011a28: 697b ldr r3, [r7, #20] - 8011a2a: f423 4380 bic.w r3, r3, #16384 @ 0x4000 - 8011a2e: 617b str r3, [r7, #20] + 8011a44: 697b ldr r3, [r7, #20] + 8011a46: f423 4380 bic.w r3, r3, #16384 @ 0x4000 + 8011a4a: 617b str r3, [r7, #20] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 6U); - 8011a30: 683b ldr r3, [r7, #0] - 8011a32: 695b ldr r3, [r3, #20] - 8011a34: 019b lsls r3, r3, #6 - 8011a36: 697a ldr r2, [r7, #20] - 8011a38: 4313 orrs r3, r2 - 8011a3a: 617b str r3, [r7, #20] + 8011a4c: 683b ldr r3, [r7, #0] + 8011a4e: 695b ldr r3, [r3, #20] + 8011a50: 019b lsls r3, r3, #6 + 8011a52: 697a ldr r2, [r7, #20] + 8011a54: 4313 orrs r3, r2 + 8011a56: 617b str r3, [r7, #20] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 8011a3c: 687b ldr r3, [r7, #4] - 8011a3e: 697a ldr r2, [r7, #20] - 8011a40: 605a str r2, [r3, #4] + 8011a58: 687b ldr r3, [r7, #4] + 8011a5a: 697a ldr r2, [r7, #20] + 8011a5c: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 8011a42: 687b ldr r3, [r7, #4] - 8011a44: 68fa ldr r2, [r7, #12] - 8011a46: 61da str r2, [r3, #28] + 8011a5e: 687b ldr r3, [r7, #4] + 8011a60: 68fa ldr r2, [r7, #12] + 8011a62: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR4 = OC_Config->Pulse; - 8011a48: 683b ldr r3, [r7, #0] - 8011a4a: 685a ldr r2, [r3, #4] - 8011a4c: 687b ldr r3, [r7, #4] - 8011a4e: 641a str r2, [r3, #64] @ 0x40 + 8011a64: 683b ldr r3, [r7, #0] + 8011a66: 685a ldr r2, [r3, #4] + 8011a68: 687b ldr r3, [r7, #4] + 8011a6a: 641a str r2, [r3, #64] @ 0x40 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 8011a50: 687b ldr r3, [r7, #4] - 8011a52: 693a ldr r2, [r7, #16] - 8011a54: 621a str r2, [r3, #32] + 8011a6c: 687b ldr r3, [r7, #4] + 8011a6e: 693a ldr r2, [r7, #16] + 8011a70: 621a str r2, [r3, #32] } - 8011a56: bf00 nop - 8011a58: 371c adds r7, #28 - 8011a5a: 46bd mov sp, r7 - 8011a5c: bc80 pop {r7} - 8011a5e: 4770 bx lr - 8011a60: 40012c00 .word 0x40012c00 + 8011a72: bf00 nop + 8011a74: 371c adds r7, #28 + 8011a76: 46bd mov sp, r7 + 8011a78: bc80 pop {r7} + 8011a7a: 4770 bx lr + 8011a7c: 40012c00 .word 0x40012c00 -08011a64 : +08011a80 : * @param TIM_ICFilter Specifies the Input Capture Filter. * This parameter must be a value between 0x00 and 0x0F. * @retval None */ static void TIM_TI1_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter) { - 8011a64: b480 push {r7} - 8011a66: b087 sub sp, #28 - 8011a68: af00 add r7, sp, #0 - 8011a6a: 60f8 str r0, [r7, #12] - 8011a6c: 60b9 str r1, [r7, #8] - 8011a6e: 607a str r2, [r7, #4] + 8011a80: b480 push {r7} + 8011a82: b087 sub sp, #28 + 8011a84: af00 add r7, sp, #0 + 8011a86: 60f8 str r0, [r7, #12] + 8011a88: 60b9 str r1, [r7, #8] + 8011a8a: 607a str r2, [r7, #4] uint32_t tmpccmr1; uint32_t tmpccer; /* Disable the Channel 1: Reset the CC1E Bit */ tmpccer = TIMx->CCER; - 8011a70: 68fb ldr r3, [r7, #12] - 8011a72: 6a1b ldr r3, [r3, #32] - 8011a74: 617b str r3, [r7, #20] + 8011a8c: 68fb ldr r3, [r7, #12] + 8011a8e: 6a1b ldr r3, [r3, #32] + 8011a90: 617b str r3, [r7, #20] TIMx->CCER &= ~TIM_CCER_CC1E; - 8011a76: 68fb ldr r3, [r7, #12] - 8011a78: 6a1b ldr r3, [r3, #32] - 8011a7a: f023 0201 bic.w r2, r3, #1 - 8011a7e: 68fb ldr r3, [r7, #12] - 8011a80: 621a str r2, [r3, #32] + 8011a92: 68fb ldr r3, [r7, #12] + 8011a94: 6a1b ldr r3, [r3, #32] + 8011a96: f023 0201 bic.w r2, r3, #1 + 8011a9a: 68fb ldr r3, [r7, #12] + 8011a9c: 621a str r2, [r3, #32] tmpccmr1 = TIMx->CCMR1; - 8011a82: 68fb ldr r3, [r7, #12] - 8011a84: 699b ldr r3, [r3, #24] - 8011a86: 613b str r3, [r7, #16] + 8011a9e: 68fb ldr r3, [r7, #12] + 8011aa0: 699b ldr r3, [r3, #24] + 8011aa2: 613b str r3, [r7, #16] /* Set the filter */ tmpccmr1 &= ~TIM_CCMR1_IC1F; - 8011a88: 693b ldr r3, [r7, #16] - 8011a8a: f023 03f0 bic.w r3, r3, #240 @ 0xf0 - 8011a8e: 613b str r3, [r7, #16] + 8011aa4: 693b ldr r3, [r7, #16] + 8011aa6: f023 03f0 bic.w r3, r3, #240 @ 0xf0 + 8011aaa: 613b str r3, [r7, #16] tmpccmr1 |= (TIM_ICFilter << 4U); - 8011a90: 687b ldr r3, [r7, #4] - 8011a92: 011b lsls r3, r3, #4 - 8011a94: 693a ldr r2, [r7, #16] - 8011a96: 4313 orrs r3, r2 - 8011a98: 613b str r3, [r7, #16] + 8011aac: 687b ldr r3, [r7, #4] + 8011aae: 011b lsls r3, r3, #4 + 8011ab0: 693a ldr r2, [r7, #16] + 8011ab2: 4313 orrs r3, r2 + 8011ab4: 613b str r3, [r7, #16] /* Select the Polarity and set the CC1E Bit */ tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC1NP); - 8011a9a: 697b ldr r3, [r7, #20] - 8011a9c: f023 030a bic.w r3, r3, #10 - 8011aa0: 617b str r3, [r7, #20] + 8011ab6: 697b ldr r3, [r7, #20] + 8011ab8: f023 030a bic.w r3, r3, #10 + 8011abc: 617b str r3, [r7, #20] tmpccer |= TIM_ICPolarity; - 8011aa2: 697a ldr r2, [r7, #20] - 8011aa4: 68bb ldr r3, [r7, #8] - 8011aa6: 4313 orrs r3, r2 - 8011aa8: 617b str r3, [r7, #20] + 8011abe: 697a ldr r2, [r7, #20] + 8011ac0: 68bb ldr r3, [r7, #8] + 8011ac2: 4313 orrs r3, r2 + 8011ac4: 617b str r3, [r7, #20] /* Write to TIMx CCMR1 and CCER registers */ TIMx->CCMR1 = tmpccmr1; - 8011aaa: 68fb ldr r3, [r7, #12] - 8011aac: 693a ldr r2, [r7, #16] - 8011aae: 619a str r2, [r3, #24] + 8011ac6: 68fb ldr r3, [r7, #12] + 8011ac8: 693a ldr r2, [r7, #16] + 8011aca: 619a str r2, [r3, #24] TIMx->CCER = tmpccer; - 8011ab0: 68fb ldr r3, [r7, #12] - 8011ab2: 697a ldr r2, [r7, #20] - 8011ab4: 621a str r2, [r3, #32] + 8011acc: 68fb ldr r3, [r7, #12] + 8011ace: 697a ldr r2, [r7, #20] + 8011ad0: 621a str r2, [r3, #32] } - 8011ab6: bf00 nop - 8011ab8: 371c adds r7, #28 - 8011aba: 46bd mov sp, r7 - 8011abc: bc80 pop {r7} - 8011abe: 4770 bx lr + 8011ad2: bf00 nop + 8011ad4: 371c adds r7, #28 + 8011ad6: 46bd mov sp, r7 + 8011ad8: bc80 pop {r7} + 8011ada: 4770 bx lr -08011ac0 : +08011adc : * @param TIM_ICFilter Specifies the Input Capture Filter. * This parameter must be a value between 0x00 and 0x0F. * @retval None */ static void TIM_TI2_ConfigInputStage(TIM_TypeDef *TIMx, uint32_t TIM_ICPolarity, uint32_t TIM_ICFilter) { - 8011ac0: b480 push {r7} - 8011ac2: b087 sub sp, #28 - 8011ac4: af00 add r7, sp, #0 - 8011ac6: 60f8 str r0, [r7, #12] - 8011ac8: 60b9 str r1, [r7, #8] - 8011aca: 607a str r2, [r7, #4] + 8011adc: b480 push {r7} + 8011ade: b087 sub sp, #28 + 8011ae0: af00 add r7, sp, #0 + 8011ae2: 60f8 str r0, [r7, #12] + 8011ae4: 60b9 str r1, [r7, #8] + 8011ae6: 607a str r2, [r7, #4] uint32_t tmpccmr1; uint32_t tmpccer; /* Disable the Channel 2: Reset the CC2E Bit */ tmpccer = TIMx->CCER; - 8011acc: 68fb ldr r3, [r7, #12] - 8011ace: 6a1b ldr r3, [r3, #32] - 8011ad0: 617b str r3, [r7, #20] + 8011ae8: 68fb ldr r3, [r7, #12] + 8011aea: 6a1b ldr r3, [r3, #32] + 8011aec: 617b str r3, [r7, #20] TIMx->CCER &= ~TIM_CCER_CC2E; - 8011ad2: 68fb ldr r3, [r7, #12] - 8011ad4: 6a1b ldr r3, [r3, #32] - 8011ad6: f023 0210 bic.w r2, r3, #16 - 8011ada: 68fb ldr r3, [r7, #12] - 8011adc: 621a str r2, [r3, #32] + 8011aee: 68fb ldr r3, [r7, #12] + 8011af0: 6a1b ldr r3, [r3, #32] + 8011af2: f023 0210 bic.w r2, r3, #16 + 8011af6: 68fb ldr r3, [r7, #12] + 8011af8: 621a str r2, [r3, #32] tmpccmr1 = TIMx->CCMR1; - 8011ade: 68fb ldr r3, [r7, #12] - 8011ae0: 699b ldr r3, [r3, #24] - 8011ae2: 613b str r3, [r7, #16] + 8011afa: 68fb ldr r3, [r7, #12] + 8011afc: 699b ldr r3, [r3, #24] + 8011afe: 613b str r3, [r7, #16] /* Set the filter */ tmpccmr1 &= ~TIM_CCMR1_IC2F; - 8011ae4: 693b ldr r3, [r7, #16] - 8011ae6: f423 4370 bic.w r3, r3, #61440 @ 0xf000 - 8011aea: 613b str r3, [r7, #16] + 8011b00: 693b ldr r3, [r7, #16] + 8011b02: f423 4370 bic.w r3, r3, #61440 @ 0xf000 + 8011b06: 613b str r3, [r7, #16] tmpccmr1 |= (TIM_ICFilter << 12U); - 8011aec: 687b ldr r3, [r7, #4] - 8011aee: 031b lsls r3, r3, #12 - 8011af0: 693a ldr r2, [r7, #16] - 8011af2: 4313 orrs r3, r2 - 8011af4: 613b str r3, [r7, #16] + 8011b08: 687b ldr r3, [r7, #4] + 8011b0a: 031b lsls r3, r3, #12 + 8011b0c: 693a ldr r2, [r7, #16] + 8011b0e: 4313 orrs r3, r2 + 8011b10: 613b str r3, [r7, #16] /* Select the Polarity and set the CC2E Bit */ tmpccer &= ~(TIM_CCER_CC2P | TIM_CCER_CC2NP); - 8011af6: 697b ldr r3, [r7, #20] - 8011af8: f023 03a0 bic.w r3, r3, #160 @ 0xa0 - 8011afc: 617b str r3, [r7, #20] + 8011b12: 697b ldr r3, [r7, #20] + 8011b14: f023 03a0 bic.w r3, r3, #160 @ 0xa0 + 8011b18: 617b str r3, [r7, #20] tmpccer |= (TIM_ICPolarity << 4U); - 8011afe: 68bb ldr r3, [r7, #8] - 8011b00: 011b lsls r3, r3, #4 - 8011b02: 697a ldr r2, [r7, #20] - 8011b04: 4313 orrs r3, r2 - 8011b06: 617b str r3, [r7, #20] + 8011b1a: 68bb ldr r3, [r7, #8] + 8011b1c: 011b lsls r3, r3, #4 + 8011b1e: 697a ldr r2, [r7, #20] + 8011b20: 4313 orrs r3, r2 + 8011b22: 617b str r3, [r7, #20] /* Write to TIMx CCMR1 and CCER registers */ TIMx->CCMR1 = tmpccmr1 ; - 8011b08: 68fb ldr r3, [r7, #12] - 8011b0a: 693a ldr r2, [r7, #16] - 8011b0c: 619a str r2, [r3, #24] + 8011b24: 68fb ldr r3, [r7, #12] + 8011b26: 693a ldr r2, [r7, #16] + 8011b28: 619a str r2, [r3, #24] TIMx->CCER = tmpccer; - 8011b0e: 68fb ldr r3, [r7, #12] - 8011b10: 697a ldr r2, [r7, #20] - 8011b12: 621a str r2, [r3, #32] + 8011b2a: 68fb ldr r3, [r7, #12] + 8011b2c: 697a ldr r2, [r7, #20] + 8011b2e: 621a str r2, [r3, #32] } - 8011b14: bf00 nop - 8011b16: 371c adds r7, #28 - 8011b18: 46bd mov sp, r7 - 8011b1a: bc80 pop {r7} - 8011b1c: 4770 bx lr + 8011b30: bf00 nop + 8011b32: 371c adds r7, #28 + 8011b34: 46bd mov sp, r7 + 8011b36: bc80 pop {r7} + 8011b38: 4770 bx lr -08011b1e : +08011b3a : * @arg TIM_TS_TI2FP2: Filtered Timer Input 2 * @arg TIM_TS_ETRF: External Trigger input * @retval None */ static void TIM_ITRx_SetConfig(TIM_TypeDef *TIMx, uint32_t InputTriggerSource) { - 8011b1e: b480 push {r7} - 8011b20: b085 sub sp, #20 - 8011b22: af00 add r7, sp, #0 - 8011b24: 6078 str r0, [r7, #4] - 8011b26: 6039 str r1, [r7, #0] + 8011b3a: b480 push {r7} + 8011b3c: b085 sub sp, #20 + 8011b3e: af00 add r7, sp, #0 + 8011b40: 6078 str r0, [r7, #4] + 8011b42: 6039 str r1, [r7, #0] uint32_t tmpsmcr; /* Get the TIMx SMCR register value */ tmpsmcr = TIMx->SMCR; - 8011b28: 687b ldr r3, [r7, #4] - 8011b2a: 689b ldr r3, [r3, #8] - 8011b2c: 60fb str r3, [r7, #12] + 8011b44: 687b ldr r3, [r7, #4] + 8011b46: 689b ldr r3, [r3, #8] + 8011b48: 60fb str r3, [r7, #12] /* Reset the TS Bits */ tmpsmcr &= ~TIM_SMCR_TS; - 8011b2e: 68fb ldr r3, [r7, #12] - 8011b30: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8011b34: 60fb str r3, [r7, #12] + 8011b4a: 68fb ldr r3, [r7, #12] + 8011b4c: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8011b50: 60fb str r3, [r7, #12] /* Set the Input Trigger source and the slave mode*/ tmpsmcr |= (InputTriggerSource | TIM_SLAVEMODE_EXTERNAL1); - 8011b36: 683a ldr r2, [r7, #0] - 8011b38: 68fb ldr r3, [r7, #12] - 8011b3a: 4313 orrs r3, r2 - 8011b3c: f043 0307 orr.w r3, r3, #7 - 8011b40: 60fb str r3, [r7, #12] + 8011b52: 683a ldr r2, [r7, #0] + 8011b54: 68fb ldr r3, [r7, #12] + 8011b56: 4313 orrs r3, r2 + 8011b58: f043 0307 orr.w r3, r3, #7 + 8011b5c: 60fb str r3, [r7, #12] /* Write to TIMx SMCR */ TIMx->SMCR = tmpsmcr; - 8011b42: 687b ldr r3, [r7, #4] - 8011b44: 68fa ldr r2, [r7, #12] - 8011b46: 609a str r2, [r3, #8] + 8011b5e: 687b ldr r3, [r7, #4] + 8011b60: 68fa ldr r2, [r7, #12] + 8011b62: 609a str r2, [r3, #8] } - 8011b48: bf00 nop - 8011b4a: 3714 adds r7, #20 - 8011b4c: 46bd mov sp, r7 - 8011b4e: bc80 pop {r7} - 8011b50: 4770 bx lr + 8011b64: bf00 nop + 8011b66: 3714 adds r7, #20 + 8011b68: 46bd mov sp, r7 + 8011b6a: bc80 pop {r7} + 8011b6c: 4770 bx lr -08011b52 : +08011b6e : * This parameter must be a value between 0x00 and 0x0F * @retval None */ void TIM_ETR_SetConfig(TIM_TypeDef *TIMx, uint32_t TIM_ExtTRGPrescaler, uint32_t TIM_ExtTRGPolarity, uint32_t ExtTRGFilter) { - 8011b52: b480 push {r7} - 8011b54: b087 sub sp, #28 - 8011b56: af00 add r7, sp, #0 - 8011b58: 60f8 str r0, [r7, #12] - 8011b5a: 60b9 str r1, [r7, #8] - 8011b5c: 607a str r2, [r7, #4] - 8011b5e: 603b str r3, [r7, #0] + 8011b6e: b480 push {r7} + 8011b70: b087 sub sp, #28 + 8011b72: af00 add r7, sp, #0 + 8011b74: 60f8 str r0, [r7, #12] + 8011b76: 60b9 str r1, [r7, #8] + 8011b78: 607a str r2, [r7, #4] + 8011b7a: 603b str r3, [r7, #0] uint32_t tmpsmcr; tmpsmcr = TIMx->SMCR; - 8011b60: 68fb ldr r3, [r7, #12] - 8011b62: 689b ldr r3, [r3, #8] - 8011b64: 617b str r3, [r7, #20] + 8011b7c: 68fb ldr r3, [r7, #12] + 8011b7e: 689b ldr r3, [r3, #8] + 8011b80: 617b str r3, [r7, #20] /* Reset the ETR Bits */ tmpsmcr &= ~(TIM_SMCR_ETF | TIM_SMCR_ETPS | TIM_SMCR_ECE | TIM_SMCR_ETP); - 8011b66: 697b ldr r3, [r7, #20] - 8011b68: f423 437f bic.w r3, r3, #65280 @ 0xff00 - 8011b6c: 617b str r3, [r7, #20] + 8011b82: 697b ldr r3, [r7, #20] + 8011b84: f423 437f bic.w r3, r3, #65280 @ 0xff00 + 8011b88: 617b str r3, [r7, #20] /* Set the Prescaler, the Filter value and the Polarity */ tmpsmcr |= (uint32_t)(TIM_ExtTRGPrescaler | (TIM_ExtTRGPolarity | (ExtTRGFilter << 8U))); - 8011b6e: 683b ldr r3, [r7, #0] - 8011b70: 021a lsls r2, r3, #8 - 8011b72: 687b ldr r3, [r7, #4] - 8011b74: 431a orrs r2, r3 - 8011b76: 68bb ldr r3, [r7, #8] - 8011b78: 4313 orrs r3, r2 - 8011b7a: 697a ldr r2, [r7, #20] - 8011b7c: 4313 orrs r3, r2 - 8011b7e: 617b str r3, [r7, #20] + 8011b8a: 683b ldr r3, [r7, #0] + 8011b8c: 021a lsls r2, r3, #8 + 8011b8e: 687b ldr r3, [r7, #4] + 8011b90: 431a orrs r2, r3 + 8011b92: 68bb ldr r3, [r7, #8] + 8011b94: 4313 orrs r3, r2 + 8011b96: 697a ldr r2, [r7, #20] + 8011b98: 4313 orrs r3, r2 + 8011b9a: 617b str r3, [r7, #20] /* Write to TIMx SMCR */ TIMx->SMCR = tmpsmcr; - 8011b80: 68fb ldr r3, [r7, #12] - 8011b82: 697a ldr r2, [r7, #20] - 8011b84: 609a str r2, [r3, #8] + 8011b9c: 68fb ldr r3, [r7, #12] + 8011b9e: 697a ldr r2, [r7, #20] + 8011ba0: 609a str r2, [r3, #8] } - 8011b86: bf00 nop - 8011b88: 371c adds r7, #28 - 8011b8a: 46bd mov sp, r7 - 8011b8c: bc80 pop {r7} - 8011b8e: 4770 bx lr + 8011ba2: bf00 nop + 8011ba4: 371c adds r7, #28 + 8011ba6: 46bd mov sp, r7 + 8011ba8: bc80 pop {r7} + 8011baa: 4770 bx lr -08011b90 : +08011bac : * @param ChannelState specifies the TIM Channel CCxE bit new state. * This parameter can be: TIM_CCx_ENABLE or TIM_CCx_DISABLE. * @retval None */ void TIM_CCxChannelCmd(TIM_TypeDef *TIMx, uint32_t Channel, uint32_t ChannelState) { - 8011b90: b480 push {r7} - 8011b92: b087 sub sp, #28 - 8011b94: af00 add r7, sp, #0 - 8011b96: 60f8 str r0, [r7, #12] - 8011b98: 60b9 str r1, [r7, #8] - 8011b9a: 607a str r2, [r7, #4] + 8011bac: b480 push {r7} + 8011bae: b087 sub sp, #28 + 8011bb0: af00 add r7, sp, #0 + 8011bb2: 60f8 str r0, [r7, #12] + 8011bb4: 60b9 str r1, [r7, #8] + 8011bb6: 607a str r2, [r7, #4] /* Check the parameters */ assert_param(IS_TIM_CC1_INSTANCE(TIMx)); assert_param(IS_TIM_CHANNELS(Channel)); tmp = TIM_CCER_CC1E << (Channel & 0x1FU); /* 0x1FU = 31 bits max shift */ - 8011b9c: 68bb ldr r3, [r7, #8] - 8011b9e: f003 031f and.w r3, r3, #31 - 8011ba2: 2201 movs r2, #1 - 8011ba4: fa02 f303 lsl.w r3, r2, r3 - 8011ba8: 617b str r3, [r7, #20] + 8011bb8: 68bb ldr r3, [r7, #8] + 8011bba: f003 031f and.w r3, r3, #31 + 8011bbe: 2201 movs r2, #1 + 8011bc0: fa02 f303 lsl.w r3, r2, r3 + 8011bc4: 617b str r3, [r7, #20] /* Reset the CCxE Bit */ TIMx->CCER &= ~tmp; - 8011baa: 68fb ldr r3, [r7, #12] - 8011bac: 6a1a ldr r2, [r3, #32] - 8011bae: 697b ldr r3, [r7, #20] - 8011bb0: 43db mvns r3, r3 - 8011bb2: 401a ands r2, r3 - 8011bb4: 68fb ldr r3, [r7, #12] - 8011bb6: 621a str r2, [r3, #32] + 8011bc6: 68fb ldr r3, [r7, #12] + 8011bc8: 6a1a ldr r2, [r3, #32] + 8011bca: 697b ldr r3, [r7, #20] + 8011bcc: 43db mvns r3, r3 + 8011bce: 401a ands r2, r3 + 8011bd0: 68fb ldr r3, [r7, #12] + 8011bd2: 621a str r2, [r3, #32] /* Set or reset the CCxE Bit */ TIMx->CCER |= (uint32_t)(ChannelState << (Channel & 0x1FU)); /* 0x1FU = 31 bits max shift */ - 8011bb8: 68fb ldr r3, [r7, #12] - 8011bba: 6a1a ldr r2, [r3, #32] - 8011bbc: 68bb ldr r3, [r7, #8] - 8011bbe: f003 031f and.w r3, r3, #31 - 8011bc2: 6879 ldr r1, [r7, #4] - 8011bc4: fa01 f303 lsl.w r3, r1, r3 - 8011bc8: 431a orrs r2, r3 - 8011bca: 68fb ldr r3, [r7, #12] - 8011bcc: 621a str r2, [r3, #32] + 8011bd4: 68fb ldr r3, [r7, #12] + 8011bd6: 6a1a ldr r2, [r3, #32] + 8011bd8: 68bb ldr r3, [r7, #8] + 8011bda: f003 031f and.w r3, r3, #31 + 8011bde: 6879 ldr r1, [r7, #4] + 8011be0: fa01 f303 lsl.w r3, r1, r3 + 8011be4: 431a orrs r2, r3 + 8011be6: 68fb ldr r3, [r7, #12] + 8011be8: 621a str r2, [r3, #32] } - 8011bce: bf00 nop - 8011bd0: 371c adds r7, #28 - 8011bd2: 46bd mov sp, r7 - 8011bd4: bc80 pop {r7} - 8011bd6: 4770 bx lr + 8011bea: bf00 nop + 8011bec: 371c adds r7, #28 + 8011bee: 46bd mov sp, r7 + 8011bf0: bc80 pop {r7} + 8011bf2: 4770 bx lr -08011bd8 : +08011bf4 : * mode. * @retval HAL status */ HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, const TIM_MasterConfigTypeDef *sMasterConfig) { - 8011bd8: b480 push {r7} - 8011bda: b085 sub sp, #20 - 8011bdc: af00 add r7, sp, #0 - 8011bde: 6078 str r0, [r7, #4] - 8011be0: 6039 str r1, [r7, #0] + 8011bf4: b480 push {r7} + 8011bf6: b085 sub sp, #20 + 8011bf8: af00 add r7, sp, #0 + 8011bfa: 6078 str r0, [r7, #4] + 8011bfc: 6039 str r1, [r7, #0] assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance)); assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger)); assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode)); /* Check input state */ __HAL_LOCK(htim); - 8011be2: 687b ldr r3, [r7, #4] - 8011be4: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 8011be8: 2b01 cmp r3, #1 - 8011bea: d101 bne.n 8011bf0 - 8011bec: 2302 movs r3, #2 - 8011bee: e04b b.n 8011c88 - 8011bf0: 687b ldr r3, [r7, #4] - 8011bf2: 2201 movs r2, #1 - 8011bf4: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8011bfe: 687b ldr r3, [r7, #4] + 8011c00: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 8011c04: 2b01 cmp r3, #1 + 8011c06: d101 bne.n 8011c0c + 8011c08: 2302 movs r3, #2 + 8011c0a: e04b b.n 8011ca4 + 8011c0c: 687b ldr r3, [r7, #4] + 8011c0e: 2201 movs r2, #1 + 8011c10: f883 203c strb.w r2, [r3, #60] @ 0x3c /* Change the handler state */ htim->State = HAL_TIM_STATE_BUSY; - 8011bf8: 687b ldr r3, [r7, #4] - 8011bfa: 2202 movs r2, #2 - 8011bfc: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8011c14: 687b ldr r3, [r7, #4] + 8011c16: 2202 movs r2, #2 + 8011c18: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Get the TIMx CR2 register value */ tmpcr2 = htim->Instance->CR2; - 8011c00: 687b ldr r3, [r7, #4] - 8011c02: 681b ldr r3, [r3, #0] - 8011c04: 685b ldr r3, [r3, #4] - 8011c06: 60fb str r3, [r7, #12] + 8011c1c: 687b ldr r3, [r7, #4] + 8011c1e: 681b ldr r3, [r3, #0] + 8011c20: 685b ldr r3, [r3, #4] + 8011c22: 60fb str r3, [r7, #12] /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 8011c08: 687b ldr r3, [r7, #4] - 8011c0a: 681b ldr r3, [r3, #0] - 8011c0c: 689b ldr r3, [r3, #8] - 8011c0e: 60bb str r3, [r7, #8] + 8011c24: 687b ldr r3, [r7, #4] + 8011c26: 681b ldr r3, [r3, #0] + 8011c28: 689b ldr r3, [r3, #8] + 8011c2a: 60bb str r3, [r7, #8] /* Reset the MMS Bits */ tmpcr2 &= ~TIM_CR2_MMS; - 8011c10: 68fb ldr r3, [r7, #12] - 8011c12: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8011c16: 60fb str r3, [r7, #12] + 8011c2c: 68fb ldr r3, [r7, #12] + 8011c2e: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8011c32: 60fb str r3, [r7, #12] /* Select the TRGO source */ tmpcr2 |= sMasterConfig->MasterOutputTrigger; - 8011c18: 683b ldr r3, [r7, #0] - 8011c1a: 681b ldr r3, [r3, #0] - 8011c1c: 68fa ldr r2, [r7, #12] - 8011c1e: 4313 orrs r3, r2 - 8011c20: 60fb str r3, [r7, #12] + 8011c34: 683b ldr r3, [r7, #0] + 8011c36: 681b ldr r3, [r3, #0] + 8011c38: 68fa ldr r2, [r7, #12] + 8011c3a: 4313 orrs r3, r2 + 8011c3c: 60fb str r3, [r7, #12] /* Update TIMx CR2 */ htim->Instance->CR2 = tmpcr2; - 8011c22: 687b ldr r3, [r7, #4] - 8011c24: 681b ldr r3, [r3, #0] - 8011c26: 68fa ldr r2, [r7, #12] - 8011c28: 605a str r2, [r3, #4] - - if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 8011c2a: 687b ldr r3, [r7, #4] - 8011c2c: 681b ldr r3, [r3, #0] - 8011c2e: 4a19 ldr r2, [pc, #100] @ (8011c94 ) - 8011c30: 4293 cmp r3, r2 - 8011c32: d013 beq.n 8011c5c - 8011c34: 687b ldr r3, [r7, #4] - 8011c36: 681b ldr r3, [r3, #0] - 8011c38: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8011c3c: d00e beq.n 8011c5c 8011c3e: 687b ldr r3, [r7, #4] 8011c40: 681b ldr r3, [r3, #0] - 8011c42: 4a15 ldr r2, [pc, #84] @ (8011c98 ) - 8011c44: 4293 cmp r3, r2 - 8011c46: d009 beq.n 8011c5c - 8011c48: 687b ldr r3, [r7, #4] - 8011c4a: 681b ldr r3, [r3, #0] - 8011c4c: 4a13 ldr r2, [pc, #76] @ (8011c9c ) - 8011c4e: 4293 cmp r3, r2 - 8011c50: d004 beq.n 8011c5c - 8011c52: 687b ldr r3, [r7, #4] - 8011c54: 681b ldr r3, [r3, #0] - 8011c56: 4a12 ldr r2, [pc, #72] @ (8011ca0 ) - 8011c58: 4293 cmp r3, r2 - 8011c5a: d10c bne.n 8011c76 + 8011c42: 68fa ldr r2, [r7, #12] + 8011c44: 605a str r2, [r3, #4] + + if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) + 8011c46: 687b ldr r3, [r7, #4] + 8011c48: 681b ldr r3, [r3, #0] + 8011c4a: 4a19 ldr r2, [pc, #100] @ (8011cb0 ) + 8011c4c: 4293 cmp r3, r2 + 8011c4e: d013 beq.n 8011c78 + 8011c50: 687b ldr r3, [r7, #4] + 8011c52: 681b ldr r3, [r3, #0] + 8011c54: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8011c58: d00e beq.n 8011c78 + 8011c5a: 687b ldr r3, [r7, #4] + 8011c5c: 681b ldr r3, [r3, #0] + 8011c5e: 4a15 ldr r2, [pc, #84] @ (8011cb4 ) + 8011c60: 4293 cmp r3, r2 + 8011c62: d009 beq.n 8011c78 + 8011c64: 687b ldr r3, [r7, #4] + 8011c66: 681b ldr r3, [r3, #0] + 8011c68: 4a13 ldr r2, [pc, #76] @ (8011cb8 ) + 8011c6a: 4293 cmp r3, r2 + 8011c6c: d004 beq.n 8011c78 + 8011c6e: 687b ldr r3, [r7, #4] + 8011c70: 681b ldr r3, [r3, #0] + 8011c72: 4a12 ldr r2, [pc, #72] @ (8011cbc ) + 8011c74: 4293 cmp r3, r2 + 8011c76: d10c bne.n 8011c92 { /* Reset the MSM Bit */ tmpsmcr &= ~TIM_SMCR_MSM; - 8011c5c: 68bb ldr r3, [r7, #8] - 8011c5e: f023 0380 bic.w r3, r3, #128 @ 0x80 - 8011c62: 60bb str r3, [r7, #8] + 8011c78: 68bb ldr r3, [r7, #8] + 8011c7a: f023 0380 bic.w r3, r3, #128 @ 0x80 + 8011c7e: 60bb str r3, [r7, #8] /* Set master mode */ tmpsmcr |= sMasterConfig->MasterSlaveMode; - 8011c64: 683b ldr r3, [r7, #0] - 8011c66: 685b ldr r3, [r3, #4] - 8011c68: 68ba ldr r2, [r7, #8] - 8011c6a: 4313 orrs r3, r2 - 8011c6c: 60bb str r3, [r7, #8] + 8011c80: 683b ldr r3, [r7, #0] + 8011c82: 685b ldr r3, [r3, #4] + 8011c84: 68ba ldr r2, [r7, #8] + 8011c86: 4313 orrs r3, r2 + 8011c88: 60bb str r3, [r7, #8] /* Update TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 8011c6e: 687b ldr r3, [r7, #4] - 8011c70: 681b ldr r3, [r3, #0] - 8011c72: 68ba ldr r2, [r7, #8] - 8011c74: 609a str r2, [r3, #8] + 8011c8a: 687b ldr r3, [r7, #4] + 8011c8c: 681b ldr r3, [r3, #0] + 8011c8e: 68ba ldr r2, [r7, #8] + 8011c90: 609a str r2, [r3, #8] } /* Change the htim state */ htim->State = HAL_TIM_STATE_READY; - 8011c76: 687b ldr r3, [r7, #4] - 8011c78: 2201 movs r2, #1 - 8011c7a: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8011c92: 687b ldr r3, [r7, #4] + 8011c94: 2201 movs r2, #1 + 8011c96: f883 203d strb.w r2, [r3, #61] @ 0x3d __HAL_UNLOCK(htim); - 8011c7e: 687b ldr r3, [r7, #4] - 8011c80: 2200 movs r2, #0 - 8011c82: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8011c9a: 687b ldr r3, [r7, #4] + 8011c9c: 2200 movs r2, #0 + 8011c9e: f883 203c strb.w r2, [r3, #60] @ 0x3c return HAL_OK; - 8011c86: 2300 movs r3, #0 + 8011ca2: 2300 movs r3, #0 } - 8011c88: 4618 mov r0, r3 - 8011c8a: 3714 adds r7, #20 - 8011c8c: 46bd mov sp, r7 - 8011c8e: bc80 pop {r7} - 8011c90: 4770 bx lr - 8011c92: bf00 nop - 8011c94: 40012c00 .word 0x40012c00 - 8011c98: 40000400 .word 0x40000400 - 8011c9c: 40000800 .word 0x40000800 - 8011ca0: 40000c00 .word 0x40000c00 + 8011ca4: 4618 mov r0, r3 + 8011ca6: 3714 adds r7, #20 + 8011ca8: 46bd mov sp, r7 + 8011caa: bc80 pop {r7} + 8011cac: 4770 bx lr + 8011cae: bf00 nop + 8011cb0: 40012c00 .word 0x40012c00 + 8011cb4: 40000400 .word 0x40000400 + 8011cb8: 40000800 .word 0x40000800 + 8011cbc: 40000c00 .word 0x40000c00 -08011ca4 : +08011cc0 : * @brief Commutation callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim) { - 8011ca4: b480 push {r7} - 8011ca6: b083 sub sp, #12 - 8011ca8: af00 add r7, sp, #0 - 8011caa: 6078 str r0, [r7, #4] + 8011cc0: b480 push {r7} + 8011cc2: b083 sub sp, #12 + 8011cc4: af00 add r7, sp, #0 + 8011cc6: 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 */ } - 8011cac: bf00 nop - 8011cae: 370c adds r7, #12 - 8011cb0: 46bd mov sp, r7 - 8011cb2: bc80 pop {r7} - 8011cb4: 4770 bx lr + 8011cc8: bf00 nop + 8011cca: 370c adds r7, #12 + 8011ccc: 46bd mov sp, r7 + 8011cce: bc80 pop {r7} + 8011cd0: 4770 bx lr -08011cb6 : +08011cd2 : * @brief Break detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim) { - 8011cb6: b480 push {r7} - 8011cb8: b083 sub sp, #12 - 8011cba: af00 add r7, sp, #0 - 8011cbc: 6078 str r0, [r7, #4] + 8011cd2: b480 push {r7} + 8011cd4: b083 sub sp, #12 + 8011cd6: af00 add r7, sp, #0 + 8011cd8: 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 */ } - 8011cbe: bf00 nop - 8011cc0: 370c adds r7, #12 - 8011cc2: 46bd mov sp, r7 - 8011cc4: bc80 pop {r7} - 8011cc6: 4770 bx lr + 8011cda: bf00 nop + 8011cdc: 370c adds r7, #12 + 8011cde: 46bd mov sp, r7 + 8011ce0: bc80 pop {r7} + 8011ce2: 4770 bx lr -08011cc8 : +08011ce4 : * @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) { - 8011cc8: b580 push {r7, lr} - 8011cca: b082 sub sp, #8 - 8011ccc: af00 add r7, sp, #0 - 8011cce: 6078 str r0, [r7, #4] + 8011ce4: b580 push {r7, lr} + 8011ce6: b082 sub sp, #8 + 8011ce8: af00 add r7, sp, #0 + 8011cea: 6078 str r0, [r7, #4] /* Check the UART handle allocation */ if (huart == NULL) - 8011cd0: 687b ldr r3, [r7, #4] - 8011cd2: 2b00 cmp r3, #0 - 8011cd4: d101 bne.n 8011cda + 8011cec: 687b ldr r3, [r7, #4] + 8011cee: 2b00 cmp r3, #0 + 8011cf0: d101 bne.n 8011cf6 { return HAL_ERROR; - 8011cd6: 2301 movs r3, #1 - 8011cd8: e042 b.n 8011d60 + 8011cf2: 2301 movs r3, #1 + 8011cf4: e042 b.n 8011d7c assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); #if defined(USART_CR1_OVER8) assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); #endif /* USART_CR1_OVER8 */ if (huart->gState == HAL_UART_STATE_RESET) - 8011cda: 687b ldr r3, [r7, #4] - 8011cdc: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8011ce0: b2db uxtb r3, r3 - 8011ce2: 2b00 cmp r3, #0 - 8011ce4: d106 bne.n 8011cf4 + 8011cf6: 687b ldr r3, [r7, #4] + 8011cf8: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8011cfc: b2db uxtb r3, r3 + 8011cfe: 2b00 cmp r3, #0 + 8011d00: d106 bne.n 8011d10 { /* Allocate lock resource and initialize it */ huart->Lock = HAL_UNLOCKED; - 8011ce6: 687b ldr r3, [r7, #4] - 8011ce8: 2200 movs r2, #0 - 8011cea: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8011d02: 687b ldr r3, [r7, #4] + 8011d04: 2200 movs r2, #0 + 8011d06: f883 2040 strb.w r2, [r3, #64] @ 0x40 /* Init the low level hardware */ huart->MspInitCallback(huart); #else /* Init the low level hardware : GPIO, CLOCK */ HAL_UART_MspInit(huart); - 8011cee: 6878 ldr r0, [r7, #4] - 8011cf0: f7fb fc6c bl 800d5cc + 8011d0a: 6878 ldr r0, [r7, #4] + 8011d0c: f7fb fc6c bl 800d5e8 #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } huart->gState = HAL_UART_STATE_BUSY; - 8011cf4: 687b ldr r3, [r7, #4] - 8011cf6: 2224 movs r2, #36 @ 0x24 - 8011cf8: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011d10: 687b ldr r3, [r7, #4] + 8011d12: 2224 movs r2, #36 @ 0x24 + 8011d14: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Disable the peripheral */ __HAL_UART_DISABLE(huart); - 8011cfc: 687b ldr r3, [r7, #4] - 8011cfe: 681b ldr r3, [r3, #0] - 8011d00: 68da ldr r2, [r3, #12] - 8011d02: 687b ldr r3, [r7, #4] - 8011d04: 681b ldr r3, [r3, #0] - 8011d06: f422 5200 bic.w r2, r2, #8192 @ 0x2000 - 8011d0a: 60da str r2, [r3, #12] + 8011d18: 687b ldr r3, [r7, #4] + 8011d1a: 681b ldr r3, [r3, #0] + 8011d1c: 68da ldr r2, [r3, #12] + 8011d1e: 687b ldr r3, [r7, #4] + 8011d20: 681b ldr r3, [r3, #0] + 8011d22: f422 5200 bic.w r2, r2, #8192 @ 0x2000 + 8011d26: 60da str r2, [r3, #12] /* Set the UART Communication parameters */ UART_SetConfig(huart); - 8011d0c: 6878 ldr r0, [r7, #4] - 8011d0e: f000 ffb5 bl 8012c7c + 8011d28: 6878 ldr r0, [r7, #4] + 8011d2a: f000 ffb5 bl 8012c98 /* 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)); - 8011d12: 687b ldr r3, [r7, #4] - 8011d14: 681b ldr r3, [r3, #0] - 8011d16: 691a ldr r2, [r3, #16] - 8011d18: 687b ldr r3, [r7, #4] - 8011d1a: 681b ldr r3, [r3, #0] - 8011d1c: f422 4290 bic.w r2, r2, #18432 @ 0x4800 - 8011d20: 611a str r2, [r3, #16] + 8011d2e: 687b ldr r3, [r7, #4] + 8011d30: 681b ldr r3, [r3, #0] + 8011d32: 691a ldr r2, [r3, #16] + 8011d34: 687b ldr r3, [r7, #4] + 8011d36: 681b ldr r3, [r3, #0] + 8011d38: f422 4290 bic.w r2, r2, #18432 @ 0x4800 + 8011d3c: 611a str r2, [r3, #16] CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); - 8011d22: 687b ldr r3, [r7, #4] - 8011d24: 681b ldr r3, [r3, #0] - 8011d26: 695a ldr r2, [r3, #20] - 8011d28: 687b ldr r3, [r7, #4] - 8011d2a: 681b ldr r3, [r3, #0] - 8011d2c: f022 022a bic.w r2, r2, #42 @ 0x2a - 8011d30: 615a str r2, [r3, #20] + 8011d3e: 687b ldr r3, [r7, #4] + 8011d40: 681b ldr r3, [r3, #0] + 8011d42: 695a ldr r2, [r3, #20] + 8011d44: 687b ldr r3, [r7, #4] + 8011d46: 681b ldr r3, [r3, #0] + 8011d48: f022 022a bic.w r2, r2, #42 @ 0x2a + 8011d4c: 615a str r2, [r3, #20] /* Enable the peripheral */ __HAL_UART_ENABLE(huart); - 8011d32: 687b ldr r3, [r7, #4] - 8011d34: 681b ldr r3, [r3, #0] - 8011d36: 68da ldr r2, [r3, #12] - 8011d38: 687b ldr r3, [r7, #4] - 8011d3a: 681b ldr r3, [r3, #0] - 8011d3c: f442 5200 orr.w r2, r2, #8192 @ 0x2000 - 8011d40: 60da str r2, [r3, #12] + 8011d4e: 687b ldr r3, [r7, #4] + 8011d50: 681b ldr r3, [r3, #0] + 8011d52: 68da ldr r2, [r3, #12] + 8011d54: 687b ldr r3, [r7, #4] + 8011d56: 681b ldr r3, [r3, #0] + 8011d58: f442 5200 orr.w r2, r2, #8192 @ 0x2000 + 8011d5c: 60da str r2, [r3, #12] /* Initialize the UART state */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8011d42: 687b ldr r3, [r7, #4] - 8011d44: 2200 movs r2, #0 - 8011d46: 645a str r2, [r3, #68] @ 0x44 + 8011d5e: 687b ldr r3, [r7, #4] + 8011d60: 2200 movs r2, #0 + 8011d62: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_READY; - 8011d48: 687b ldr r3, [r7, #4] - 8011d4a: 2220 movs r2, #32 - 8011d4c: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011d64: 687b ldr r3, [r7, #4] + 8011d66: 2220 movs r2, #32 + 8011d68: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 8011d50: 687b ldr r3, [r7, #4] - 8011d52: 2220 movs r2, #32 - 8011d54: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8011d6c: 687b ldr r3, [r7, #4] + 8011d6e: 2220 movs r2, #32 + 8011d70: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->RxEventType = HAL_UART_RXEVENT_TC; - 8011d58: 687b ldr r3, [r7, #4] - 8011d5a: 2200 movs r2, #0 - 8011d5c: 635a str r2, [r3, #52] @ 0x34 + 8011d74: 687b ldr r3, [r7, #4] + 8011d76: 2200 movs r2, #0 + 8011d78: 635a str r2, [r3, #52] @ 0x34 return HAL_OK; - 8011d5e: 2300 movs r3, #0 + 8011d7a: 2300 movs r3, #0 } - 8011d60: 4618 mov r0, r3 - 8011d62: 3708 adds r7, #8 - 8011d64: 46bd mov sp, r7 - 8011d66: bd80 pop {r7, pc} + 8011d7c: 4618 mov r0, r3 + 8011d7e: 3708 adds r7, #8 + 8011d80: 46bd mov sp, r7 + 8011d82: bd80 pop {r7, pc} -08011d68 : +08011d84 : * @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) { - 8011d68: b580 push {r7, lr} - 8011d6a: b08a sub sp, #40 @ 0x28 - 8011d6c: af02 add r7, sp, #8 - 8011d6e: 60f8 str r0, [r7, #12] - 8011d70: 60b9 str r1, [r7, #8] - 8011d72: 603b str r3, [r7, #0] - 8011d74: 4613 mov r3, r2 - 8011d76: 80fb strh r3, [r7, #6] + 8011d84: b580 push {r7, lr} + 8011d86: b08a sub sp, #40 @ 0x28 + 8011d88: af02 add r7, sp, #8 + 8011d8a: 60f8 str r0, [r7, #12] + 8011d8c: 60b9 str r1, [r7, #8] + 8011d8e: 603b str r3, [r7, #0] + 8011d90: 4613 mov r3, r2 + 8011d92: 80fb strh r3, [r7, #6] const uint8_t *pdata8bits; const uint16_t *pdata16bits; uint32_t tickstart = 0U; - 8011d78: 2300 movs r3, #0 - 8011d7a: 617b str r3, [r7, #20] + 8011d94: 2300 movs r3, #0 + 8011d96: 617b str r3, [r7, #20] /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 8011d7c: 68fb ldr r3, [r7, #12] - 8011d7e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8011d82: b2db uxtb r3, r3 - 8011d84: 2b20 cmp r3, #32 - 8011d86: d175 bne.n 8011e74 + 8011d98: 68fb ldr r3, [r7, #12] + 8011d9a: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8011d9e: b2db uxtb r3, r3 + 8011da0: 2b20 cmp r3, #32 + 8011da2: d175 bne.n 8011e90 { if ((pData == NULL) || (Size == 0U)) - 8011d88: 68bb ldr r3, [r7, #8] - 8011d8a: 2b00 cmp r3, #0 - 8011d8c: d002 beq.n 8011d94 - 8011d8e: 88fb ldrh r3, [r7, #6] - 8011d90: 2b00 cmp r3, #0 - 8011d92: d101 bne.n 8011d98 + 8011da4: 68bb ldr r3, [r7, #8] + 8011da6: 2b00 cmp r3, #0 + 8011da8: d002 beq.n 8011db0 + 8011daa: 88fb ldrh r3, [r7, #6] + 8011dac: 2b00 cmp r3, #0 + 8011dae: d101 bne.n 8011db4 { return HAL_ERROR; - 8011d94: 2301 movs r3, #1 - 8011d96: e06e b.n 8011e76 + 8011db0: 2301 movs r3, #1 + 8011db2: e06e b.n 8011e92 } huart->ErrorCode = HAL_UART_ERROR_NONE; - 8011d98: 68fb ldr r3, [r7, #12] - 8011d9a: 2200 movs r2, #0 - 8011d9c: 645a str r2, [r3, #68] @ 0x44 + 8011db4: 68fb ldr r3, [r7, #12] + 8011db6: 2200 movs r2, #0 + 8011db8: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_BUSY_TX; - 8011d9e: 68fb ldr r3, [r7, #12] - 8011da0: 2221 movs r2, #33 @ 0x21 - 8011da2: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011dba: 68fb ldr r3, [r7, #12] + 8011dbc: 2221 movs r2, #33 @ 0x21 + 8011dbe: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Init tickstart for timeout management */ tickstart = HAL_GetTick(); - 8011da6: f7fb fdd9 bl 800d95c - 8011daa: 6178 str r0, [r7, #20] + 8011dc2: f7fb fdd9 bl 800d978 + 8011dc6: 6178 str r0, [r7, #20] huart->TxXferSize = Size; - 8011dac: 68fb ldr r3, [r7, #12] - 8011dae: 88fa ldrh r2, [r7, #6] - 8011db0: 849a strh r2, [r3, #36] @ 0x24 + 8011dc8: 68fb ldr r3, [r7, #12] + 8011dca: 88fa ldrh r2, [r7, #6] + 8011dcc: 849a strh r2, [r3, #36] @ 0x24 huart->TxXferCount = Size; - 8011db2: 68fb ldr r3, [r7, #12] - 8011db4: 88fa ldrh r2, [r7, #6] - 8011db6: 84da strh r2, [r3, #38] @ 0x26 + 8011dce: 68fb ldr r3, [r7, #12] + 8011dd0: 88fa ldrh r2, [r7, #6] + 8011dd2: 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)) - 8011db8: 68fb ldr r3, [r7, #12] - 8011dba: 689b ldr r3, [r3, #8] - 8011dbc: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8011dc0: d108 bne.n 8011dd4 - 8011dc2: 68fb ldr r3, [r7, #12] - 8011dc4: 691b ldr r3, [r3, #16] - 8011dc6: 2b00 cmp r3, #0 - 8011dc8: d104 bne.n 8011dd4 + 8011dd4: 68fb ldr r3, [r7, #12] + 8011dd6: 689b ldr r3, [r3, #8] + 8011dd8: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8011ddc: d108 bne.n 8011df0 + 8011dde: 68fb ldr r3, [r7, #12] + 8011de0: 691b ldr r3, [r3, #16] + 8011de2: 2b00 cmp r3, #0 + 8011de4: d104 bne.n 8011df0 { pdata8bits = NULL; - 8011dca: 2300 movs r3, #0 - 8011dcc: 61fb str r3, [r7, #28] + 8011de6: 2300 movs r3, #0 + 8011de8: 61fb str r3, [r7, #28] pdata16bits = (const uint16_t *) pData; - 8011dce: 68bb ldr r3, [r7, #8] - 8011dd0: 61bb str r3, [r7, #24] - 8011dd2: e003 b.n 8011ddc + 8011dea: 68bb ldr r3, [r7, #8] + 8011dec: 61bb str r3, [r7, #24] + 8011dee: e003 b.n 8011df8 } else { pdata8bits = pData; - 8011dd4: 68bb ldr r3, [r7, #8] - 8011dd6: 61fb str r3, [r7, #28] + 8011df0: 68bb ldr r3, [r7, #8] + 8011df2: 61fb str r3, [r7, #28] pdata16bits = NULL; - 8011dd8: 2300 movs r3, #0 - 8011dda: 61bb str r3, [r7, #24] + 8011df4: 2300 movs r3, #0 + 8011df6: 61bb str r3, [r7, #24] } while (huart->TxXferCount > 0U) - 8011ddc: e02e b.n 8011e3c + 8011df8: e02e b.n 8011e58 { if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) - 8011dde: 683b ldr r3, [r7, #0] - 8011de0: 9300 str r3, [sp, #0] - 8011de2: 697b ldr r3, [r7, #20] - 8011de4: 2200 movs r2, #0 - 8011de6: 2180 movs r1, #128 @ 0x80 - 8011de8: 68f8 ldr r0, [r7, #12] - 8011dea: f000 fcb9 bl 8012760 - 8011dee: 4603 mov r3, r0 - 8011df0: 2b00 cmp r3, #0 - 8011df2: d005 beq.n 8011e00 + 8011dfa: 683b ldr r3, [r7, #0] + 8011dfc: 9300 str r3, [sp, #0] + 8011dfe: 697b ldr r3, [r7, #20] + 8011e00: 2200 movs r2, #0 + 8011e02: 2180 movs r1, #128 @ 0x80 + 8011e04: 68f8 ldr r0, [r7, #12] + 8011e06: f000 fcb9 bl 801277c + 8011e0a: 4603 mov r3, r0 + 8011e0c: 2b00 cmp r3, #0 + 8011e0e: d005 beq.n 8011e1c { huart->gState = HAL_UART_STATE_READY; - 8011df4: 68fb ldr r3, [r7, #12] - 8011df6: 2220 movs r2, #32 - 8011df8: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011e10: 68fb ldr r3, [r7, #12] + 8011e12: 2220 movs r2, #32 + 8011e14: f883 2041 strb.w r2, [r3, #65] @ 0x41 return HAL_TIMEOUT; - 8011dfc: 2303 movs r3, #3 - 8011dfe: e03a b.n 8011e76 + 8011e18: 2303 movs r3, #3 + 8011e1a: e03a b.n 8011e92 } if (pdata8bits == NULL) - 8011e00: 69fb ldr r3, [r7, #28] - 8011e02: 2b00 cmp r3, #0 - 8011e04: d10b bne.n 8011e1e + 8011e1c: 69fb ldr r3, [r7, #28] + 8011e1e: 2b00 cmp r3, #0 + 8011e20: d10b bne.n 8011e3a { huart->Instance->DR = (uint16_t)(*pdata16bits & 0x01FFU); - 8011e06: 69bb ldr r3, [r7, #24] - 8011e08: 881b ldrh r3, [r3, #0] - 8011e0a: 461a mov r2, r3 - 8011e0c: 68fb ldr r3, [r7, #12] - 8011e0e: 681b ldr r3, [r3, #0] - 8011e10: f3c2 0208 ubfx r2, r2, #0, #9 - 8011e14: 605a str r2, [r3, #4] + 8011e22: 69bb ldr r3, [r7, #24] + 8011e24: 881b ldrh r3, [r3, #0] + 8011e26: 461a mov r2, r3 + 8011e28: 68fb ldr r3, [r7, #12] + 8011e2a: 681b ldr r3, [r3, #0] + 8011e2c: f3c2 0208 ubfx r2, r2, #0, #9 + 8011e30: 605a str r2, [r3, #4] pdata16bits++; - 8011e16: 69bb ldr r3, [r7, #24] - 8011e18: 3302 adds r3, #2 - 8011e1a: 61bb str r3, [r7, #24] - 8011e1c: e007 b.n 8011e2e + 8011e32: 69bb ldr r3, [r7, #24] + 8011e34: 3302 adds r3, #2 + 8011e36: 61bb str r3, [r7, #24] + 8011e38: e007 b.n 8011e4a } else { huart->Instance->DR = (uint8_t)(*pdata8bits & 0xFFU); - 8011e1e: 69fb ldr r3, [r7, #28] - 8011e20: 781a ldrb r2, [r3, #0] - 8011e22: 68fb ldr r3, [r7, #12] - 8011e24: 681b ldr r3, [r3, #0] - 8011e26: 605a str r2, [r3, #4] + 8011e3a: 69fb ldr r3, [r7, #28] + 8011e3c: 781a ldrb r2, [r3, #0] + 8011e3e: 68fb ldr r3, [r7, #12] + 8011e40: 681b ldr r3, [r3, #0] + 8011e42: 605a str r2, [r3, #4] pdata8bits++; - 8011e28: 69fb ldr r3, [r7, #28] - 8011e2a: 3301 adds r3, #1 - 8011e2c: 61fb str r3, [r7, #28] + 8011e44: 69fb ldr r3, [r7, #28] + 8011e46: 3301 adds r3, #1 + 8011e48: 61fb str r3, [r7, #28] } huart->TxXferCount--; - 8011e2e: 68fb ldr r3, [r7, #12] - 8011e30: 8cdb ldrh r3, [r3, #38] @ 0x26 - 8011e32: b29b uxth r3, r3 - 8011e34: 3b01 subs r3, #1 - 8011e36: b29a uxth r2, r3 - 8011e38: 68fb ldr r3, [r7, #12] - 8011e3a: 84da strh r2, [r3, #38] @ 0x26 + 8011e4a: 68fb ldr r3, [r7, #12] + 8011e4c: 8cdb ldrh r3, [r3, #38] @ 0x26 + 8011e4e: b29b uxth r3, r3 + 8011e50: 3b01 subs r3, #1 + 8011e52: b29a uxth r2, r3 + 8011e54: 68fb ldr r3, [r7, #12] + 8011e56: 84da strh r2, [r3, #38] @ 0x26 while (huart->TxXferCount > 0U) - 8011e3c: 68fb ldr r3, [r7, #12] - 8011e3e: 8cdb ldrh r3, [r3, #38] @ 0x26 - 8011e40: b29b uxth r3, r3 - 8011e42: 2b00 cmp r3, #0 - 8011e44: d1cb bne.n 8011dde + 8011e58: 68fb ldr r3, [r7, #12] + 8011e5a: 8cdb ldrh r3, [r3, #38] @ 0x26 + 8011e5c: b29b uxth r3, r3 + 8011e5e: 2b00 cmp r3, #0 + 8011e60: d1cb bne.n 8011dfa } if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) - 8011e46: 683b ldr r3, [r7, #0] - 8011e48: 9300 str r3, [sp, #0] - 8011e4a: 697b ldr r3, [r7, #20] - 8011e4c: 2200 movs r2, #0 - 8011e4e: 2140 movs r1, #64 @ 0x40 - 8011e50: 68f8 ldr r0, [r7, #12] - 8011e52: f000 fc85 bl 8012760 - 8011e56: 4603 mov r3, r0 - 8011e58: 2b00 cmp r3, #0 - 8011e5a: d005 beq.n 8011e68 + 8011e62: 683b ldr r3, [r7, #0] + 8011e64: 9300 str r3, [sp, #0] + 8011e66: 697b ldr r3, [r7, #20] + 8011e68: 2200 movs r2, #0 + 8011e6a: 2140 movs r1, #64 @ 0x40 + 8011e6c: 68f8 ldr r0, [r7, #12] + 8011e6e: f000 fc85 bl 801277c + 8011e72: 4603 mov r3, r0 + 8011e74: 2b00 cmp r3, #0 + 8011e76: d005 beq.n 8011e84 { huart->gState = HAL_UART_STATE_READY; - 8011e5c: 68fb ldr r3, [r7, #12] - 8011e5e: 2220 movs r2, #32 - 8011e60: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011e78: 68fb ldr r3, [r7, #12] + 8011e7a: 2220 movs r2, #32 + 8011e7c: f883 2041 strb.w r2, [r3, #65] @ 0x41 return HAL_TIMEOUT; - 8011e64: 2303 movs r3, #3 - 8011e66: e006 b.n 8011e76 + 8011e80: 2303 movs r3, #3 + 8011e82: e006 b.n 8011e92 } /* At end of Tx process, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8011e68: 68fb ldr r3, [r7, #12] - 8011e6a: 2220 movs r2, #32 - 8011e6c: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011e84: 68fb ldr r3, [r7, #12] + 8011e86: 2220 movs r2, #32 + 8011e88: f883 2041 strb.w r2, [r3, #65] @ 0x41 return HAL_OK; - 8011e70: 2300 movs r3, #0 - 8011e72: e000 b.n 8011e76 + 8011e8c: 2300 movs r3, #0 + 8011e8e: e000 b.n 8011e92 } else { return HAL_BUSY; - 8011e74: 2302 movs r3, #2 + 8011e90: 2302 movs r3, #2 } } - 8011e76: 4618 mov r0, r3 - 8011e78: 3720 adds r7, #32 - 8011e7a: 46bd mov sp, r7 - 8011e7c: bd80 pop {r7, pc} + 8011e92: 4618 mov r0, r3 + 8011e94: 3720 adds r7, #32 + 8011e96: 46bd mov sp, r7 + 8011e98: bd80 pop {r7, pc} -08011e7e : +08011e9a : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be sent * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Transmit_IT(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size) { - 8011e7e: b480 push {r7} - 8011e80: b085 sub sp, #20 - 8011e82: af00 add r7, sp, #0 - 8011e84: 60f8 str r0, [r7, #12] - 8011e86: 60b9 str r1, [r7, #8] - 8011e88: 4613 mov r3, r2 - 8011e8a: 80fb strh r3, [r7, #6] + 8011e9a: b480 push {r7} + 8011e9c: b085 sub sp, #20 + 8011e9e: af00 add r7, sp, #0 + 8011ea0: 60f8 str r0, [r7, #12] + 8011ea2: 60b9 str r1, [r7, #8] + 8011ea4: 4613 mov r3, r2 + 8011ea6: 80fb strh r3, [r7, #6] /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 8011e8c: 68fb ldr r3, [r7, #12] - 8011e8e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8011e92: b2db uxtb r3, r3 - 8011e94: 2b20 cmp r3, #32 - 8011e96: d121 bne.n 8011edc + 8011ea8: 68fb ldr r3, [r7, #12] + 8011eaa: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8011eae: b2db uxtb r3, r3 + 8011eb0: 2b20 cmp r3, #32 + 8011eb2: d121 bne.n 8011ef8 { if ((pData == NULL) || (Size == 0U)) - 8011e98: 68bb ldr r3, [r7, #8] - 8011e9a: 2b00 cmp r3, #0 - 8011e9c: d002 beq.n 8011ea4 - 8011e9e: 88fb ldrh r3, [r7, #6] - 8011ea0: 2b00 cmp r3, #0 - 8011ea2: d101 bne.n 8011ea8 + 8011eb4: 68bb ldr r3, [r7, #8] + 8011eb6: 2b00 cmp r3, #0 + 8011eb8: d002 beq.n 8011ec0 + 8011eba: 88fb ldrh r3, [r7, #6] + 8011ebc: 2b00 cmp r3, #0 + 8011ebe: d101 bne.n 8011ec4 { return HAL_ERROR; - 8011ea4: 2301 movs r3, #1 - 8011ea6: e01a b.n 8011ede + 8011ec0: 2301 movs r3, #1 + 8011ec2: e01a b.n 8011efa } huart->pTxBuffPtr = pData; - 8011ea8: 68fb ldr r3, [r7, #12] - 8011eaa: 68ba ldr r2, [r7, #8] - 8011eac: 621a str r2, [r3, #32] + 8011ec4: 68fb ldr r3, [r7, #12] + 8011ec6: 68ba ldr r2, [r7, #8] + 8011ec8: 621a str r2, [r3, #32] huart->TxXferSize = Size; - 8011eae: 68fb ldr r3, [r7, #12] - 8011eb0: 88fa ldrh r2, [r7, #6] - 8011eb2: 849a strh r2, [r3, #36] @ 0x24 + 8011eca: 68fb ldr r3, [r7, #12] + 8011ecc: 88fa ldrh r2, [r7, #6] + 8011ece: 849a strh r2, [r3, #36] @ 0x24 huart->TxXferCount = Size; - 8011eb4: 68fb ldr r3, [r7, #12] - 8011eb6: 88fa ldrh r2, [r7, #6] - 8011eb8: 84da strh r2, [r3, #38] @ 0x26 + 8011ed0: 68fb ldr r3, [r7, #12] + 8011ed2: 88fa ldrh r2, [r7, #6] + 8011ed4: 84da strh r2, [r3, #38] @ 0x26 huart->ErrorCode = HAL_UART_ERROR_NONE; - 8011eba: 68fb ldr r3, [r7, #12] - 8011ebc: 2200 movs r2, #0 - 8011ebe: 645a str r2, [r3, #68] @ 0x44 + 8011ed6: 68fb ldr r3, [r7, #12] + 8011ed8: 2200 movs r2, #0 + 8011eda: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_BUSY_TX; - 8011ec0: 68fb ldr r3, [r7, #12] - 8011ec2: 2221 movs r2, #33 @ 0x21 - 8011ec4: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8011edc: 68fb ldr r3, [r7, #12] + 8011ede: 2221 movs r2, #33 @ 0x21 + 8011ee0: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Enable the UART Transmit data register empty Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_TXE); - 8011ec8: 68fb ldr r3, [r7, #12] - 8011eca: 681b ldr r3, [r3, #0] - 8011ecc: 68da ldr r2, [r3, #12] - 8011ece: 68fb ldr r3, [r7, #12] - 8011ed0: 681b ldr r3, [r3, #0] - 8011ed2: f042 0280 orr.w r2, r2, #128 @ 0x80 - 8011ed6: 60da str r2, [r3, #12] + 8011ee4: 68fb ldr r3, [r7, #12] + 8011ee6: 681b ldr r3, [r3, #0] + 8011ee8: 68da ldr r2, [r3, #12] + 8011eea: 68fb ldr r3, [r7, #12] + 8011eec: 681b ldr r3, [r3, #0] + 8011eee: f042 0280 orr.w r2, r2, #128 @ 0x80 + 8011ef2: 60da str r2, [r3, #12] return HAL_OK; - 8011ed8: 2300 movs r3, #0 - 8011eda: e000 b.n 8011ede + 8011ef4: 2300 movs r3, #0 + 8011ef6: e000 b.n 8011efa } else { return HAL_BUSY; - 8011edc: 2302 movs r3, #2 + 8011ef8: 2302 movs r3, #2 } } - 8011ede: 4618 mov r0, r3 - 8011ee0: 3714 adds r7, #20 - 8011ee2: 46bd mov sp, r7 - 8011ee4: bc80 pop {r7} - 8011ee6: 4770 bx lr + 8011efa: 4618 mov r0, r3 + 8011efc: 3714 adds r7, #20 + 8011efe: 46bd mov sp, r7 + 8011f00: bc80 pop {r7} + 8011f02: 4770 bx lr -08011ee8 : +08011f04 : * @param pData Pointer to data buffer (uint8_t or uint16_t data elements). * @param Size Amount of data elements (uint8_t or uint16_t) to be received. * @retval HAL status */ HAL_StatusTypeDef HAL_UARTEx_ReceiveToIdle_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 8011ee8: b580 push {r7, lr} - 8011eea: b08c sub sp, #48 @ 0x30 - 8011eec: af00 add r7, sp, #0 - 8011eee: 60f8 str r0, [r7, #12] - 8011ef0: 60b9 str r1, [r7, #8] - 8011ef2: 4613 mov r3, r2 - 8011ef4: 80fb strh r3, [r7, #6] + 8011f04: b580 push {r7, lr} + 8011f06: b08c sub sp, #48 @ 0x30 + 8011f08: af00 add r7, sp, #0 + 8011f0a: 60f8 str r0, [r7, #12] + 8011f0c: 60b9 str r1, [r7, #8] + 8011f0e: 4613 mov r3, r2 + 8011f10: 80fb strh r3, [r7, #6] HAL_StatusTypeDef status; /* Check that a Rx process is not already ongoing */ if (huart->RxState == HAL_UART_STATE_READY) - 8011ef6: 68fb ldr r3, [r7, #12] - 8011ef8: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8011efc: b2db uxtb r3, r3 - 8011efe: 2b20 cmp r3, #32 - 8011f00: d14a bne.n 8011f98 + 8011f12: 68fb ldr r3, [r7, #12] + 8011f14: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8011f18: b2db uxtb r3, r3 + 8011f1a: 2b20 cmp r3, #32 + 8011f1c: d14a bne.n 8011fb4 { if ((pData == NULL) || (Size == 0U)) - 8011f02: 68bb ldr r3, [r7, #8] - 8011f04: 2b00 cmp r3, #0 - 8011f06: d002 beq.n 8011f0e - 8011f08: 88fb ldrh r3, [r7, #6] - 8011f0a: 2b00 cmp r3, #0 - 8011f0c: d101 bne.n 8011f12 + 8011f1e: 68bb ldr r3, [r7, #8] + 8011f20: 2b00 cmp r3, #0 + 8011f22: d002 beq.n 8011f2a + 8011f24: 88fb ldrh r3, [r7, #6] + 8011f26: 2b00 cmp r3, #0 + 8011f28: d101 bne.n 8011f2e { return HAL_ERROR; - 8011f0e: 2301 movs r3, #1 - 8011f10: e043 b.n 8011f9a + 8011f2a: 2301 movs r3, #1 + 8011f2c: e043 b.n 8011fb6 } /* Set Reception type to reception till IDLE Event*/ huart->ReceptionType = HAL_UART_RECEPTION_TOIDLE; - 8011f12: 68fb ldr r3, [r7, #12] - 8011f14: 2201 movs r2, #1 - 8011f16: 631a str r2, [r3, #48] @ 0x30 + 8011f2e: 68fb ldr r3, [r7, #12] + 8011f30: 2201 movs r2, #1 + 8011f32: 631a str r2, [r3, #48] @ 0x30 huart->RxEventType = HAL_UART_RXEVENT_TC; - 8011f18: 68fb ldr r3, [r7, #12] - 8011f1a: 2200 movs r2, #0 - 8011f1c: 635a str r2, [r3, #52] @ 0x34 + 8011f34: 68fb ldr r3, [r7, #12] + 8011f36: 2200 movs r2, #0 + 8011f38: 635a str r2, [r3, #52] @ 0x34 status = UART_Start_Receive_IT(huart, pData, Size); - 8011f1e: 88fb ldrh r3, [r7, #6] - 8011f20: 461a mov r2, r3 - 8011f22: 68b9 ldr r1, [r7, #8] - 8011f24: 68f8 ldr r0, [r7, #12] - 8011f26: f000 fc74 bl 8012812 - 8011f2a: 4603 mov r3, r0 - 8011f2c: f887 302f strb.w r3, [r7, #47] @ 0x2f + 8011f3a: 88fb ldrh r3, [r7, #6] + 8011f3c: 461a mov r2, r3 + 8011f3e: 68b9 ldr r1, [r7, #8] + 8011f40: 68f8 ldr r0, [r7, #12] + 8011f42: f000 fc74 bl 801282e + 8011f46: 4603 mov r3, r0 + 8011f48: f887 302f strb.w r3, [r7, #47] @ 0x2f /* Check Rx process has been successfully started */ if (status == HAL_OK) - 8011f30: f897 302f ldrb.w r3, [r7, #47] @ 0x2f - 8011f34: 2b00 cmp r3, #0 - 8011f36: d12c bne.n 8011f92 + 8011f4c: f897 302f ldrb.w r3, [r7, #47] @ 0x2f + 8011f50: 2b00 cmp r3, #0 + 8011f52: d12c bne.n 8011fae { if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8011f38: 68fb ldr r3, [r7, #12] - 8011f3a: 6b1b ldr r3, [r3, #48] @ 0x30 - 8011f3c: 2b01 cmp r3, #1 - 8011f3e: d125 bne.n 8011f8c + 8011f54: 68fb ldr r3, [r7, #12] + 8011f56: 6b1b ldr r3, [r3, #48] @ 0x30 + 8011f58: 2b01 cmp r3, #1 + 8011f5a: d125 bne.n 8011fa8 { __HAL_UART_CLEAR_IDLEFLAG(huart); - 8011f40: 2300 movs r3, #0 - 8011f42: 613b str r3, [r7, #16] - 8011f44: 68fb ldr r3, [r7, #12] - 8011f46: 681b ldr r3, [r3, #0] - 8011f48: 681b ldr r3, [r3, #0] - 8011f4a: 613b str r3, [r7, #16] - 8011f4c: 68fb ldr r3, [r7, #12] - 8011f4e: 681b ldr r3, [r3, #0] - 8011f50: 685b ldr r3, [r3, #4] - 8011f52: 613b str r3, [r7, #16] - 8011f54: 693b ldr r3, [r7, #16] + 8011f5c: 2300 movs r3, #0 + 8011f5e: 613b str r3, [r7, #16] + 8011f60: 68fb ldr r3, [r7, #12] + 8011f62: 681b ldr r3, [r3, #0] + 8011f64: 681b ldr r3, [r3, #0] + 8011f66: 613b str r3, [r7, #16] + 8011f68: 68fb ldr r3, [r7, #12] + 8011f6a: 681b ldr r3, [r3, #0] + 8011f6c: 685b ldr r3, [r3, #4] + 8011f6e: 613b str r3, [r7, #16] + 8011f70: 693b ldr r3, [r7, #16] ATOMIC_SET_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8011f56: 68fb ldr r3, [r7, #12] - 8011f58: 681b ldr r3, [r3, #0] - 8011f5a: 330c adds r3, #12 - 8011f5c: 61bb str r3, [r7, #24] + 8011f72: 68fb ldr r3, [r7, #12] + 8011f74: 681b ldr r3, [r3, #0] + 8011f76: 330c adds r3, #12 + 8011f78: 61bb str r3, [r7, #24] */ __STATIC_FORCEINLINE uint32_t __LDREXW(volatile uint32_t *addr) { uint32_t result; __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8011f5e: 69bb ldr r3, [r7, #24] - 8011f60: e853 3f00 ldrex r3, [r3] - 8011f64: 617b str r3, [r7, #20] + 8011f7a: 69bb ldr r3, [r7, #24] + 8011f7c: e853 3f00 ldrex r3, [r3] + 8011f80: 617b str r3, [r7, #20] return(result); - 8011f66: 697b ldr r3, [r7, #20] - 8011f68: f043 0310 orr.w r3, r3, #16 - 8011f6c: 62bb str r3, [r7, #40] @ 0x28 - 8011f6e: 68fb ldr r3, [r7, #12] - 8011f70: 681b ldr r3, [r3, #0] - 8011f72: 330c adds r3, #12 - 8011f74: 6aba ldr r2, [r7, #40] @ 0x28 - 8011f76: 627a str r2, [r7, #36] @ 0x24 - 8011f78: 623b str r3, [r7, #32] + 8011f82: 697b ldr r3, [r7, #20] + 8011f84: f043 0310 orr.w r3, r3, #16 + 8011f88: 62bb str r3, [r7, #40] @ 0x28 + 8011f8a: 68fb ldr r3, [r7, #12] + 8011f8c: 681b ldr r3, [r3, #0] + 8011f8e: 330c adds r3, #12 + 8011f90: 6aba ldr r2, [r7, #40] @ 0x28 + 8011f92: 627a str r2, [r7, #36] @ 0x24 + 8011f94: 623b str r3, [r7, #32] */ __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) ); - 8011f7a: 6a39 ldr r1, [r7, #32] - 8011f7c: 6a7a ldr r2, [r7, #36] @ 0x24 - 8011f7e: e841 2300 strex r3, r2, [r1] - 8011f82: 61fb str r3, [r7, #28] + 8011f96: 6a39 ldr r1, [r7, #32] + 8011f98: 6a7a ldr r2, [r7, #36] @ 0x24 + 8011f9a: e841 2300 strex r3, r2, [r1] + 8011f9e: 61fb str r3, [r7, #28] return(result); - 8011f84: 69fb ldr r3, [r7, #28] - 8011f86: 2b00 cmp r3, #0 - 8011f88: d1e5 bne.n 8011f56 - 8011f8a: e002 b.n 8011f92 + 8011fa0: 69fb ldr r3, [r7, #28] + 8011fa2: 2b00 cmp r3, #0 + 8011fa4: d1e5 bne.n 8011f72 + 8011fa6: e002 b.n 8011fae { /* In case of errors already pending when reception is started, Interrupts may have already been raised and lead to reception abortion. (Overrun error for instance). In such case Reception Type has been reset to HAL_UART_RECEPTION_STANDARD. */ status = HAL_ERROR; - 8011f8c: 2301 movs r3, #1 - 8011f8e: f887 302f strb.w r3, [r7, #47] @ 0x2f + 8011fa8: 2301 movs r3, #1 + 8011faa: f887 302f strb.w r3, [r7, #47] @ 0x2f } } return status; - 8011f92: f897 302f ldrb.w r3, [r7, #47] @ 0x2f - 8011f96: e000 b.n 8011f9a + 8011fae: f897 302f ldrb.w r3, [r7, #47] @ 0x2f + 8011fb2: e000 b.n 8011fb6 } else { return HAL_BUSY; - 8011f98: 2302 movs r3, #2 + 8011fb4: 2302 movs r3, #2 } } - 8011f9a: 4618 mov r0, r3 - 8011f9c: 3730 adds r7, #48 @ 0x30 - 8011f9e: 46bd mov sp, r7 - 8011fa0: bd80 pop {r7, pc} + 8011fb6: 4618 mov r0, r3 + 8011fb8: 3730 adds r7, #48 @ 0x30 + 8011fba: 46bd mov sp, r7 + 8011fbc: bd80 pop {r7, pc} ... -08011fa4 : +08011fc0 : * @note This procedure is executed in Interrupt mode, meaning that abort procedure could be * considered as completed only when user abort complete callback is executed (not when exiting function). * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Abort_IT(UART_HandleTypeDef *huart) { - 8011fa4: b580 push {r7, lr} - 8011fa6: b0a2 sub sp, #136 @ 0x88 - 8011fa8: af00 add r7, sp, #0 - 8011faa: 6078 str r0, [r7, #4] + 8011fc0: b580 push {r7, lr} + 8011fc2: b0a2 sub sp, #136 @ 0x88 + 8011fc4: af00 add r7, sp, #0 + 8011fc6: 6078 str r0, [r7, #4] uint32_t AbortCplt = 0x01U; - 8011fac: 2301 movs r3, #1 - 8011fae: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 8011fc8: 2301 movs r3, #1 + 8011fca: f8c7 3084 str.w r3, [r7, #132] @ 0x84 /* Disable TXEIE, TCIE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE | USART_CR1_TCIE)); - 8011fb2: 687b ldr r3, [r7, #4] - 8011fb4: 681b ldr r3, [r3, #0] - 8011fb6: 330c adds r3, #12 - 8011fb8: 663b str r3, [r7, #96] @ 0x60 + 8011fce: 687b ldr r3, [r7, #4] + 8011fd0: 681b ldr r3, [r3, #0] + 8011fd2: 330c adds r3, #12 + 8011fd4: 663b str r3, [r7, #96] @ 0x60 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8011fba: 6e3b ldr r3, [r7, #96] @ 0x60 - 8011fbc: e853 3f00 ldrex r3, [r3] - 8011fc0: 65fb str r3, [r7, #92] @ 0x5c + 8011fd6: 6e3b ldr r3, [r7, #96] @ 0x60 + 8011fd8: e853 3f00 ldrex r3, [r3] + 8011fdc: 65fb str r3, [r7, #92] @ 0x5c return(result); - 8011fc2: 6dfb ldr r3, [r7, #92] @ 0x5c - 8011fc4: f423 73f0 bic.w r3, r3, #480 @ 0x1e0 - 8011fc8: f8c7 3080 str.w r3, [r7, #128] @ 0x80 - 8011fcc: 687b ldr r3, [r7, #4] - 8011fce: 681b ldr r3, [r3, #0] - 8011fd0: 330c adds r3, #12 - 8011fd2: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 - 8011fd6: 66fa str r2, [r7, #108] @ 0x6c - 8011fd8: 66bb str r3, [r7, #104] @ 0x68 + 8011fde: 6dfb ldr r3, [r7, #92] @ 0x5c + 8011fe0: f423 73f0 bic.w r3, r3, #480 @ 0x1e0 + 8011fe4: f8c7 3080 str.w r3, [r7, #128] @ 0x80 + 8011fe8: 687b ldr r3, [r7, #4] + 8011fea: 681b ldr r3, [r3, #0] + 8011fec: 330c adds r3, #12 + 8011fee: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 + 8011ff2: 66fa str r2, [r7, #108] @ 0x6c + 8011ff4: 66bb str r3, [r7, #104] @ 0x68 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8011fda: 6eb9 ldr r1, [r7, #104] @ 0x68 - 8011fdc: 6efa ldr r2, [r7, #108] @ 0x6c - 8011fde: e841 2300 strex r3, r2, [r1] - 8011fe2: 667b str r3, [r7, #100] @ 0x64 + 8011ff6: 6eb9 ldr r1, [r7, #104] @ 0x68 + 8011ff8: 6efa ldr r2, [r7, #108] @ 0x6c + 8011ffa: e841 2300 strex r3, r2, [r1] + 8011ffe: 667b str r3, [r7, #100] @ 0x64 return(result); - 8011fe4: 6e7b ldr r3, [r7, #100] @ 0x64 - 8011fe6: 2b00 cmp r3, #0 - 8011fe8: d1e3 bne.n 8011fb2 + 8012000: 6e7b ldr r3, [r7, #100] @ 0x64 + 8012002: 2b00 cmp r3, #0 + 8012004: d1e3 bne.n 8011fce ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8011fea: 687b ldr r3, [r7, #4] - 8011fec: 681b ldr r3, [r3, #0] - 8011fee: 3314 adds r3, #20 - 8011ff0: 64fb str r3, [r7, #76] @ 0x4c + 8012006: 687b ldr r3, [r7, #4] + 8012008: 681b ldr r3, [r3, #0] + 801200a: 3314 adds r3, #20 + 801200c: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8011ff2: 6cfb ldr r3, [r7, #76] @ 0x4c - 8011ff4: e853 3f00 ldrex r3, [r3] - 8011ff8: 64bb str r3, [r7, #72] @ 0x48 + 801200e: 6cfb ldr r3, [r7, #76] @ 0x4c + 8012010: e853 3f00 ldrex r3, [r3] + 8012014: 64bb str r3, [r7, #72] @ 0x48 return(result); - 8011ffa: 6cbb ldr r3, [r7, #72] @ 0x48 - 8011ffc: f023 0301 bic.w r3, r3, #1 - 8012000: 67fb str r3, [r7, #124] @ 0x7c - 8012002: 687b ldr r3, [r7, #4] - 8012004: 681b ldr r3, [r3, #0] - 8012006: 3314 adds r3, #20 - 8012008: 6ffa ldr r2, [r7, #124] @ 0x7c - 801200a: 65ba str r2, [r7, #88] @ 0x58 - 801200c: 657b str r3, [r7, #84] @ 0x54 + 8012016: 6cbb ldr r3, [r7, #72] @ 0x48 + 8012018: f023 0301 bic.w r3, r3, #1 + 801201c: 67fb str r3, [r7, #124] @ 0x7c + 801201e: 687b ldr r3, [r7, #4] + 8012020: 681b ldr r3, [r3, #0] + 8012022: 3314 adds r3, #20 + 8012024: 6ffa ldr r2, [r7, #124] @ 0x7c + 8012026: 65ba str r2, [r7, #88] @ 0x58 + 8012028: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 801200e: 6d79 ldr r1, [r7, #84] @ 0x54 - 8012010: 6dba ldr r2, [r7, #88] @ 0x58 - 8012012: e841 2300 strex r3, r2, [r1] - 8012016: 653b str r3, [r7, #80] @ 0x50 + 801202a: 6d79 ldr r1, [r7, #84] @ 0x54 + 801202c: 6dba ldr r2, [r7, #88] @ 0x58 + 801202e: e841 2300 strex r3, r2, [r1] + 8012032: 653b str r3, [r7, #80] @ 0x50 return(result); - 8012018: 6d3b ldr r3, [r7, #80] @ 0x50 - 801201a: 2b00 cmp r3, #0 - 801201c: d1e5 bne.n 8011fea + 8012034: 6d3b ldr r3, [r7, #80] @ 0x50 + 8012036: 2b00 cmp r3, #0 + 8012038: d1e5 bne.n 8012006 /* If Reception till IDLE event was ongoing, disable IDLEIE interrupt */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 801201e: 687b ldr r3, [r7, #4] - 8012020: 6b1b ldr r3, [r3, #48] @ 0x30 - 8012022: 2b01 cmp r3, #1 - 8012024: d119 bne.n 801205a + 801203a: 687b ldr r3, [r7, #4] + 801203c: 6b1b ldr r3, [r3, #48] @ 0x30 + 801203e: 2b01 cmp r3, #1 + 8012040: d119 bne.n 8012076 { ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_IDLEIE)); - 8012026: 687b ldr r3, [r7, #4] - 8012028: 681b ldr r3, [r3, #0] - 801202a: 330c adds r3, #12 - 801202c: 63bb str r3, [r7, #56] @ 0x38 + 8012042: 687b ldr r3, [r7, #4] + 8012044: 681b ldr r3, [r3, #0] + 8012046: 330c adds r3, #12 + 8012048: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 801202e: 6bbb ldr r3, [r7, #56] @ 0x38 - 8012030: e853 3f00 ldrex r3, [r3] - 8012034: 637b str r3, [r7, #52] @ 0x34 + 801204a: 6bbb ldr r3, [r7, #56] @ 0x38 + 801204c: e853 3f00 ldrex r3, [r3] + 8012050: 637b str r3, [r7, #52] @ 0x34 return(result); - 8012036: 6b7b ldr r3, [r7, #52] @ 0x34 - 8012038: f023 0310 bic.w r3, r3, #16 - 801203c: 67bb str r3, [r7, #120] @ 0x78 - 801203e: 687b ldr r3, [r7, #4] - 8012040: 681b ldr r3, [r3, #0] - 8012042: 330c adds r3, #12 - 8012044: 6fba ldr r2, [r7, #120] @ 0x78 - 8012046: 647a str r2, [r7, #68] @ 0x44 - 8012048: 643b str r3, [r7, #64] @ 0x40 + 8012052: 6b7b ldr r3, [r7, #52] @ 0x34 + 8012054: f023 0310 bic.w r3, r3, #16 + 8012058: 67bb str r3, [r7, #120] @ 0x78 + 801205a: 687b ldr r3, [r7, #4] + 801205c: 681b ldr r3, [r3, #0] + 801205e: 330c adds r3, #12 + 8012060: 6fba ldr r2, [r7, #120] @ 0x78 + 8012062: 647a str r2, [r7, #68] @ 0x44 + 8012064: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 801204a: 6c39 ldr r1, [r7, #64] @ 0x40 - 801204c: 6c7a ldr r2, [r7, #68] @ 0x44 - 801204e: e841 2300 strex r3, r2, [r1] - 8012052: 63fb str r3, [r7, #60] @ 0x3c + 8012066: 6c39 ldr r1, [r7, #64] @ 0x40 + 8012068: 6c7a ldr r2, [r7, #68] @ 0x44 + 801206a: e841 2300 strex r3, r2, [r1] + 801206e: 63fb str r3, [r7, #60] @ 0x3c return(result); - 8012054: 6bfb ldr r3, [r7, #60] @ 0x3c - 8012056: 2b00 cmp r3, #0 - 8012058: d1e5 bne.n 8012026 + 8012070: 6bfb ldr r3, [r7, #60] @ 0x3c + 8012072: 2b00 cmp r3, #0 + 8012074: d1e5 bne.n 8012042 } /* If DMA Tx and/or DMA Rx Handles are associated to UART Handle, DMA Abort complete callbacks should be initialised before any call to DMA Abort functions */ /* DMA Tx Handle is valid */ if (huart->hdmatx != NULL) - 801205a: 687b ldr r3, [r7, #4] - 801205c: 6b9b ldr r3, [r3, #56] @ 0x38 - 801205e: 2b00 cmp r3, #0 - 8012060: d00f beq.n 8012082 + 8012076: 687b ldr r3, [r7, #4] + 8012078: 6b9b ldr r3, [r3, #56] @ 0x38 + 801207a: 2b00 cmp r3, #0 + 801207c: d00f beq.n 801209e { /* Set DMA Abort Complete callback if UART DMA Tx request if enabled. Otherwise, set it to NULL */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) - 8012062: 687b ldr r3, [r7, #4] - 8012064: 681b ldr r3, [r3, #0] - 8012066: 695b ldr r3, [r3, #20] - 8012068: f003 0380 and.w r3, r3, #128 @ 0x80 - 801206c: 2b00 cmp r3, #0 - 801206e: d004 beq.n 801207a + 801207e: 687b ldr r3, [r7, #4] + 8012080: 681b ldr r3, [r3, #0] + 8012082: 695b ldr r3, [r3, #20] + 8012084: f003 0380 and.w r3, r3, #128 @ 0x80 + 8012088: 2b00 cmp r3, #0 + 801208a: d004 beq.n 8012096 { huart->hdmatx->XferAbortCallback = UART_DMATxAbortCallback; - 8012070: 687b ldr r3, [r7, #4] - 8012072: 6b9b ldr r3, [r3, #56] @ 0x38 - 8012074: 4a53 ldr r2, [pc, #332] @ (80121c4 ) - 8012076: 635a str r2, [r3, #52] @ 0x34 - 8012078: e003 b.n 8012082 + 801208c: 687b ldr r3, [r7, #4] + 801208e: 6b9b ldr r3, [r3, #56] @ 0x38 + 8012090: 4a53 ldr r2, [pc, #332] @ (80121e0 ) + 8012092: 635a str r2, [r3, #52] @ 0x34 + 8012094: e003 b.n 801209e } else { huart->hdmatx->XferAbortCallback = NULL; - 801207a: 687b ldr r3, [r7, #4] - 801207c: 6b9b ldr r3, [r3, #56] @ 0x38 - 801207e: 2200 movs r2, #0 - 8012080: 635a str r2, [r3, #52] @ 0x34 + 8012096: 687b ldr r3, [r7, #4] + 8012098: 6b9b ldr r3, [r3, #56] @ 0x38 + 801209a: 2200 movs r2, #0 + 801209c: 635a str r2, [r3, #52] @ 0x34 } } /* DMA Rx Handle is valid */ if (huart->hdmarx != NULL) - 8012082: 687b ldr r3, [r7, #4] - 8012084: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012086: 2b00 cmp r3, #0 - 8012088: d00f beq.n 80120aa + 801209e: 687b ldr r3, [r7, #4] + 80120a0: 6bdb ldr r3, [r3, #60] @ 0x3c + 80120a2: 2b00 cmp r3, #0 + 80120a4: d00f beq.n 80120c6 { /* Set DMA Abort Complete callback if UART DMA Rx request if enabled. Otherwise, set it to NULL */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 801208a: 687b ldr r3, [r7, #4] - 801208c: 681b ldr r3, [r3, #0] - 801208e: 695b ldr r3, [r3, #20] - 8012090: f003 0340 and.w r3, r3, #64 @ 0x40 - 8012094: 2b00 cmp r3, #0 - 8012096: d004 beq.n 80120a2 + 80120a6: 687b ldr r3, [r7, #4] + 80120a8: 681b ldr r3, [r3, #0] + 80120aa: 695b ldr r3, [r3, #20] + 80120ac: f003 0340 and.w r3, r3, #64 @ 0x40 + 80120b0: 2b00 cmp r3, #0 + 80120b2: d004 beq.n 80120be { huart->hdmarx->XferAbortCallback = UART_DMARxAbortCallback; - 8012098: 687b ldr r3, [r7, #4] - 801209a: 6bdb ldr r3, [r3, #60] @ 0x3c - 801209c: 4a4a ldr r2, [pc, #296] @ (80121c8 ) - 801209e: 635a str r2, [r3, #52] @ 0x34 - 80120a0: e003 b.n 80120aa + 80120b4: 687b ldr r3, [r7, #4] + 80120b6: 6bdb ldr r3, [r3, #60] @ 0x3c + 80120b8: 4a4a ldr r2, [pc, #296] @ (80121e4 ) + 80120ba: 635a str r2, [r3, #52] @ 0x34 + 80120bc: e003 b.n 80120c6 } else { huart->hdmarx->XferAbortCallback = NULL; - 80120a2: 687b ldr r3, [r7, #4] - 80120a4: 6bdb ldr r3, [r3, #60] @ 0x3c - 80120a6: 2200 movs r2, #0 - 80120a8: 635a str r2, [r3, #52] @ 0x34 + 80120be: 687b ldr r3, [r7, #4] + 80120c0: 6bdb ldr r3, [r3, #60] @ 0x3c + 80120c2: 2200 movs r2, #0 + 80120c4: 635a str r2, [r3, #52] @ 0x34 } } /* Disable the UART DMA Tx request if enabled */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT)) - 80120aa: 687b ldr r3, [r7, #4] - 80120ac: 681b ldr r3, [r3, #0] - 80120ae: 695b ldr r3, [r3, #20] - 80120b0: f003 0380 and.w r3, r3, #128 @ 0x80 - 80120b4: 2b00 cmp r3, #0 - 80120b6: d02d beq.n 8012114 + 80120c6: 687b ldr r3, [r7, #4] + 80120c8: 681b ldr r3, [r3, #0] + 80120ca: 695b ldr r3, [r3, #20] + 80120cc: f003 0380 and.w r3, r3, #128 @ 0x80 + 80120d0: 2b00 cmp r3, #0 + 80120d2: d02d beq.n 8012130 { /* Disable DMA Tx at UART level */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); - 80120b8: 687b ldr r3, [r7, #4] - 80120ba: 681b ldr r3, [r3, #0] - 80120bc: 3314 adds r3, #20 - 80120be: 627b str r3, [r7, #36] @ 0x24 + 80120d4: 687b ldr r3, [r7, #4] + 80120d6: 681b ldr r3, [r3, #0] + 80120d8: 3314 adds r3, #20 + 80120da: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80120c0: 6a7b ldr r3, [r7, #36] @ 0x24 - 80120c2: e853 3f00 ldrex r3, [r3] - 80120c6: 623b str r3, [r7, #32] + 80120dc: 6a7b ldr r3, [r7, #36] @ 0x24 + 80120de: e853 3f00 ldrex r3, [r3] + 80120e2: 623b str r3, [r7, #32] return(result); - 80120c8: 6a3b ldr r3, [r7, #32] - 80120ca: f023 0380 bic.w r3, r3, #128 @ 0x80 - 80120ce: 677b str r3, [r7, #116] @ 0x74 - 80120d0: 687b ldr r3, [r7, #4] - 80120d2: 681b ldr r3, [r3, #0] - 80120d4: 3314 adds r3, #20 - 80120d6: 6f7a ldr r2, [r7, #116] @ 0x74 - 80120d8: 633a str r2, [r7, #48] @ 0x30 - 80120da: 62fb str r3, [r7, #44] @ 0x2c + 80120e4: 6a3b ldr r3, [r7, #32] + 80120e6: f023 0380 bic.w r3, r3, #128 @ 0x80 + 80120ea: 677b str r3, [r7, #116] @ 0x74 + 80120ec: 687b ldr r3, [r7, #4] + 80120ee: 681b ldr r3, [r3, #0] + 80120f0: 3314 adds r3, #20 + 80120f2: 6f7a ldr r2, [r7, #116] @ 0x74 + 80120f4: 633a str r2, [r7, #48] @ 0x30 + 80120f6: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80120dc: 6af9 ldr r1, [r7, #44] @ 0x2c - 80120de: 6b3a ldr r2, [r7, #48] @ 0x30 - 80120e0: e841 2300 strex r3, r2, [r1] - 80120e4: 62bb str r3, [r7, #40] @ 0x28 + 80120f8: 6af9 ldr r1, [r7, #44] @ 0x2c + 80120fa: 6b3a ldr r2, [r7, #48] @ 0x30 + 80120fc: e841 2300 strex r3, r2, [r1] + 8012100: 62bb str r3, [r7, #40] @ 0x28 return(result); - 80120e6: 6abb ldr r3, [r7, #40] @ 0x28 - 80120e8: 2b00 cmp r3, #0 - 80120ea: d1e5 bne.n 80120b8 + 8012102: 6abb ldr r3, [r7, #40] @ 0x28 + 8012104: 2b00 cmp r3, #0 + 8012106: d1e5 bne.n 80120d4 /* Abort the UART DMA Tx channel : use non blocking DMA Abort API (callback) */ if (huart->hdmatx != NULL) - 80120ec: 687b ldr r3, [r7, #4] - 80120ee: 6b9b ldr r3, [r3, #56] @ 0x38 - 80120f0: 2b00 cmp r3, #0 - 80120f2: d00f beq.n 8012114 + 8012108: 687b ldr r3, [r7, #4] + 801210a: 6b9b ldr r3, [r3, #56] @ 0x38 + 801210c: 2b00 cmp r3, #0 + 801210e: d00f beq.n 8012130 { /* UART Tx DMA Abort callback has already been initialised : will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ /* Abort DMA TX */ if (HAL_DMA_Abort_IT(huart->hdmatx) != HAL_OK) - 80120f4: 687b ldr r3, [r7, #4] - 80120f6: 6b9b ldr r3, [r3, #56] @ 0x38 - 80120f8: 4618 mov r0, r3 - 80120fa: f7fd f99d bl 800f438 - 80120fe: 4603 mov r3, r0 - 8012100: 2b00 cmp r3, #0 - 8012102: d004 beq.n 801210e + 8012110: 687b ldr r3, [r7, #4] + 8012112: 6b9b ldr r3, [r3, #56] @ 0x38 + 8012114: 4618 mov r0, r3 + 8012116: f7fd f99d bl 800f454 + 801211a: 4603 mov r3, r0 + 801211c: 2b00 cmp r3, #0 + 801211e: d004 beq.n 801212a { huart->hdmatx->XferAbortCallback = NULL; - 8012104: 687b ldr r3, [r7, #4] - 8012106: 6b9b ldr r3, [r3, #56] @ 0x38 - 8012108: 2200 movs r2, #0 - 801210a: 635a str r2, [r3, #52] @ 0x34 - 801210c: e002 b.n 8012114 + 8012120: 687b ldr r3, [r7, #4] + 8012122: 6b9b ldr r3, [r3, #56] @ 0x38 + 8012124: 2200 movs r2, #0 + 8012126: 635a str r2, [r3, #52] @ 0x34 + 8012128: e002 b.n 8012130 } else { AbortCplt = 0x00U; - 801210e: 2300 movs r3, #0 - 8012110: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 801212a: 2300 movs r3, #0 + 801212c: f8c7 3084 str.w r3, [r7, #132] @ 0x84 } } } /* Disable the UART DMA Rx request if enabled */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8012114: 687b ldr r3, [r7, #4] - 8012116: 681b ldr r3, [r3, #0] - 8012118: 695b ldr r3, [r3, #20] - 801211a: f003 0340 and.w r3, r3, #64 @ 0x40 - 801211e: 2b00 cmp r3, #0 - 8012120: d030 beq.n 8012184 + 8012130: 687b ldr r3, [r7, #4] + 8012132: 681b ldr r3, [r3, #0] + 8012134: 695b ldr r3, [r3, #20] + 8012136: f003 0340 and.w r3, r3, #64 @ 0x40 + 801213a: 2b00 cmp r3, #0 + 801213c: d030 beq.n 80121a0 { ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 8012122: 687b ldr r3, [r7, #4] - 8012124: 681b ldr r3, [r3, #0] - 8012126: 3314 adds r3, #20 - 8012128: 613b str r3, [r7, #16] + 801213e: 687b ldr r3, [r7, #4] + 8012140: 681b ldr r3, [r3, #0] + 8012142: 3314 adds r3, #20 + 8012144: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 801212a: 693b ldr r3, [r7, #16] - 801212c: e853 3f00 ldrex r3, [r3] - 8012130: 60fb str r3, [r7, #12] + 8012146: 693b ldr r3, [r7, #16] + 8012148: e853 3f00 ldrex r3, [r3] + 801214c: 60fb str r3, [r7, #12] return(result); - 8012132: 68fb ldr r3, [r7, #12] - 8012134: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8012138: 673b str r3, [r7, #112] @ 0x70 - 801213a: 687b ldr r3, [r7, #4] - 801213c: 681b ldr r3, [r3, #0] - 801213e: 3314 adds r3, #20 - 8012140: 6f3a ldr r2, [r7, #112] @ 0x70 - 8012142: 61fa str r2, [r7, #28] - 8012144: 61bb str r3, [r7, #24] + 801214e: 68fb ldr r3, [r7, #12] + 8012150: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8012154: 673b str r3, [r7, #112] @ 0x70 + 8012156: 687b ldr r3, [r7, #4] + 8012158: 681b ldr r3, [r3, #0] + 801215a: 3314 adds r3, #20 + 801215c: 6f3a ldr r2, [r7, #112] @ 0x70 + 801215e: 61fa str r2, [r7, #28] + 8012160: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8012146: 69b9 ldr r1, [r7, #24] - 8012148: 69fa ldr r2, [r7, #28] - 801214a: e841 2300 strex r3, r2, [r1] - 801214e: 617b str r3, [r7, #20] + 8012162: 69b9 ldr r1, [r7, #24] + 8012164: 69fa ldr r2, [r7, #28] + 8012166: e841 2300 strex r3, r2, [r1] + 801216a: 617b str r3, [r7, #20] return(result); - 8012150: 697b ldr r3, [r7, #20] - 8012152: 2b00 cmp r3, #0 - 8012154: d1e5 bne.n 8012122 + 801216c: 697b ldr r3, [r7, #20] + 801216e: 2b00 cmp r3, #0 + 8012170: d1e5 bne.n 801213e /* Abort the UART DMA Rx channel : use non blocking DMA Abort API (callback) */ if (huart->hdmarx != NULL) - 8012156: 687b ldr r3, [r7, #4] - 8012158: 6bdb ldr r3, [r3, #60] @ 0x3c - 801215a: 2b00 cmp r3, #0 - 801215c: d012 beq.n 8012184 + 8012172: 687b ldr r3, [r7, #4] + 8012174: 6bdb ldr r3, [r3, #60] @ 0x3c + 8012176: 2b00 cmp r3, #0 + 8012178: d012 beq.n 80121a0 { /* UART Rx DMA Abort callback has already been initialised : will lead to call HAL_UART_AbortCpltCallback() at end of DMA abort procedure */ /* Abort DMA RX */ if (HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) - 801215e: 687b ldr r3, [r7, #4] - 8012160: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012162: 4618 mov r0, r3 - 8012164: f7fd f968 bl 800f438 - 8012168: 4603 mov r3, r0 - 801216a: 2b00 cmp r3, #0 - 801216c: d007 beq.n 801217e + 801217a: 687b ldr r3, [r7, #4] + 801217c: 6bdb ldr r3, [r3, #60] @ 0x3c + 801217e: 4618 mov r0, r3 + 8012180: f7fd f968 bl 800f454 + 8012184: 4603 mov r3, r0 + 8012186: 2b00 cmp r3, #0 + 8012188: d007 beq.n 801219a { huart->hdmarx->XferAbortCallback = NULL; - 801216e: 687b ldr r3, [r7, #4] - 8012170: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012172: 2200 movs r2, #0 - 8012174: 635a str r2, [r3, #52] @ 0x34 + 801218a: 687b ldr r3, [r7, #4] + 801218c: 6bdb ldr r3, [r3, #60] @ 0x3c + 801218e: 2200 movs r2, #0 + 8012190: 635a str r2, [r3, #52] @ 0x34 AbortCplt = 0x01U; - 8012176: 2301 movs r3, #1 - 8012178: f8c7 3084 str.w r3, [r7, #132] @ 0x84 - 801217c: e002 b.n 8012184 + 8012192: 2301 movs r3, #1 + 8012194: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 8012198: e002 b.n 80121a0 } else { AbortCplt = 0x00U; - 801217e: 2300 movs r3, #0 - 8012180: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 801219a: 2300 movs r3, #0 + 801219c: f8c7 3084 str.w r3, [r7, #132] @ 0x84 } } } /* if no DMA abort complete callback execution is required => call user Abort Complete callback */ if (AbortCplt == 0x01U) - 8012184: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 - 8012188: 2b01 cmp r3, #1 - 801218a: d116 bne.n 80121ba + 80121a0: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 + 80121a4: 2b01 cmp r3, #1 + 80121a6: d116 bne.n 80121d6 { /* Reset Tx and Rx transfer counters */ huart->TxXferCount = 0x00U; - 801218c: 687b ldr r3, [r7, #4] - 801218e: 2200 movs r2, #0 - 8012190: 84da strh r2, [r3, #38] @ 0x26 + 80121a8: 687b ldr r3, [r7, #4] + 80121aa: 2200 movs r2, #0 + 80121ac: 84da strh r2, [r3, #38] @ 0x26 huart->RxXferCount = 0x00U; - 8012192: 687b ldr r3, [r7, #4] - 8012194: 2200 movs r2, #0 - 8012196: 85da strh r2, [r3, #46] @ 0x2e + 80121ae: 687b ldr r3, [r7, #4] + 80121b0: 2200 movs r2, #0 + 80121b2: 85da strh r2, [r3, #46] @ 0x2e /* Reset ErrorCode */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8012198: 687b ldr r3, [r7, #4] - 801219a: 2200 movs r2, #0 - 801219c: 645a str r2, [r3, #68] @ 0x44 + 80121b4: 687b ldr r3, [r7, #4] + 80121b6: 2200 movs r2, #0 + 80121b8: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->gState and huart->RxState to Ready */ huart->gState = HAL_UART_STATE_READY; - 801219e: 687b ldr r3, [r7, #4] - 80121a0: 2220 movs r2, #32 - 80121a2: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 80121ba: 687b ldr r3, [r7, #4] + 80121bc: 2220 movs r2, #32 + 80121be: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 80121a6: 687b ldr r3, [r7, #4] - 80121a8: 2220 movs r2, #32 - 80121aa: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80121c2: 687b ldr r3, [r7, #4] + 80121c4: 2220 movs r2, #32 + 80121c6: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 80121ae: 687b ldr r3, [r7, #4] - 80121b0: 2200 movs r2, #0 - 80121b2: 631a str r2, [r3, #48] @ 0x30 + 80121ca: 687b ldr r3, [r7, #4] + 80121cc: 2200 movs r2, #0 + 80121ce: 631a str r2, [r3, #48] @ 0x30 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /* Call registered Abort complete callback */ huart->AbortCpltCallback(huart); #else /* Call legacy weak Abort complete callback */ HAL_UART_AbortCpltCallback(huart); - 80121b4: 6878 ldr r0, [r7, #4] - 80121b6: f000 faad bl 8012714 + 80121d0: 6878 ldr r0, [r7, #4] + 80121d2: f000 faad bl 8012730 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return HAL_OK; - 80121ba: 2300 movs r3, #0 + 80121d6: 2300 movs r3, #0 } - 80121bc: 4618 mov r0, r3 - 80121be: 3788 adds r7, #136 @ 0x88 - 80121c0: 46bd mov sp, r7 - 80121c2: bd80 pop {r7, pc} - 80121c4: 08012971 .word 0x08012971 - 80121c8: 080129d1 .word 0x080129d1 + 80121d8: 4618 mov r0, r3 + 80121da: 3788 adds r7, #136 @ 0x88 + 80121dc: 46bd mov sp, r7 + 80121de: bd80 pop {r7, pc} + 80121e0: 0801298d .word 0x0801298d + 80121e4: 080129ed .word 0x080129ed -080121cc : +080121e8 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ void HAL_UART_IRQHandler(UART_HandleTypeDef *huart) { - 80121cc: b580 push {r7, lr} - 80121ce: b0ba sub sp, #232 @ 0xe8 - 80121d0: af00 add r7, sp, #0 - 80121d2: 6078 str r0, [r7, #4] + 80121e8: b580 push {r7, lr} + 80121ea: b0ba sub sp, #232 @ 0xe8 + 80121ec: af00 add r7, sp, #0 + 80121ee: 6078 str r0, [r7, #4] uint32_t isrflags = READ_REG(huart->Instance->SR); - 80121d4: 687b ldr r3, [r7, #4] - 80121d6: 681b ldr r3, [r3, #0] - 80121d8: 681b ldr r3, [r3, #0] - 80121da: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 + 80121f0: 687b ldr r3, [r7, #4] + 80121f2: 681b ldr r3, [r3, #0] + 80121f4: 681b ldr r3, [r3, #0] + 80121f6: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 uint32_t cr1its = READ_REG(huart->Instance->CR1); - 80121de: 687b ldr r3, [r7, #4] - 80121e0: 681b ldr r3, [r3, #0] - 80121e2: 68db ldr r3, [r3, #12] - 80121e4: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 + 80121fa: 687b ldr r3, [r7, #4] + 80121fc: 681b ldr r3, [r3, #0] + 80121fe: 68db ldr r3, [r3, #12] + 8012200: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 uint32_t cr3its = READ_REG(huart->Instance->CR3); - 80121e8: 687b ldr r3, [r7, #4] - 80121ea: 681b ldr r3, [r3, #0] - 80121ec: 695b ldr r3, [r3, #20] - 80121ee: f8c7 30dc str.w r3, [r7, #220] @ 0xdc + 8012204: 687b ldr r3, [r7, #4] + 8012206: 681b ldr r3, [r3, #0] + 8012208: 695b ldr r3, [r3, #20] + 801220a: f8c7 30dc str.w r3, [r7, #220] @ 0xdc uint32_t errorflags = 0x00U; - 80121f2: 2300 movs r3, #0 - 80121f4: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 801220e: 2300 movs r3, #0 + 8012210: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 uint32_t dmarequest = 0x00U; - 80121f8: 2300 movs r3, #0 - 80121fa: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 8012214: 2300 movs r3, #0 + 8012216: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 /* If no error occurs */ errorflags = (isrflags & (uint32_t)(USART_SR_PE | USART_SR_FE | USART_SR_ORE | USART_SR_NE)); - 80121fe: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8012202: f003 030f and.w r3, r3, #15 - 8012206: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 801221a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 801221e: f003 030f and.w r3, r3, #15 + 8012222: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 if (errorflags == RESET) - 801220a: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 801220e: 2b00 cmp r3, #0 - 8012210: d10f bne.n 8012232 + 8012226: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 801222a: 2b00 cmp r3, #0 + 801222c: d10f bne.n 801224e { /* UART in mode Receiver -------------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 8012212: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8012216: f003 0320 and.w r3, r3, #32 - 801221a: 2b00 cmp r3, #0 - 801221c: d009 beq.n 8012232 - 801221e: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8012222: f003 0320 and.w r3, r3, #32 - 8012226: 2b00 cmp r3, #0 - 8012228: d003 beq.n 8012232 + 801222e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8012232: f003 0320 and.w r3, r3, #32 + 8012236: 2b00 cmp r3, #0 + 8012238: d009 beq.n 801224e + 801223a: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 801223e: f003 0320 and.w r3, r3, #32 + 8012242: 2b00 cmp r3, #0 + 8012244: d003 beq.n 801224e { UART_Receive_IT(huart); - 801222a: 6878 ldr r0, [r7, #4] - 801222c: f000 fc67 bl 8012afe + 8012246: 6878 ldr r0, [r7, #4] + 8012248: f000 fc67 bl 8012b1a return; - 8012230: e25b b.n 80126ea + 801224c: e25b b.n 8012706 } } /* If some errors occur */ if ((errorflags != RESET) && (((cr3its & USART_CR3_EIE) != RESET) - 8012232: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 8012236: 2b00 cmp r3, #0 - 8012238: f000 80de beq.w 80123f8 - 801223c: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8012240: f003 0301 and.w r3, r3, #1 - 8012244: 2b00 cmp r3, #0 - 8012246: d106 bne.n 8012256 + 801224e: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 8012252: 2b00 cmp r3, #0 + 8012254: f000 80de beq.w 8012414 + 8012258: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 801225c: f003 0301 and.w r3, r3, #1 + 8012260: 2b00 cmp r3, #0 + 8012262: d106 bne.n 8012272 || ((cr1its & (USART_CR1_RXNEIE | USART_CR1_PEIE)) != RESET))) - 8012248: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 801224c: f403 7390 and.w r3, r3, #288 @ 0x120 - 8012250: 2b00 cmp r3, #0 - 8012252: f000 80d1 beq.w 80123f8 + 8012264: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8012268: f403 7390 and.w r3, r3, #288 @ 0x120 + 801226c: 2b00 cmp r3, #0 + 801226e: f000 80d1 beq.w 8012414 { /* UART parity error interrupt occurred ----------------------------------*/ if (((isrflags & USART_SR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) - 8012256: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 801225a: f003 0301 and.w r3, r3, #1 - 801225e: 2b00 cmp r3, #0 - 8012260: d00b beq.n 801227a - 8012262: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8012266: f403 7380 and.w r3, r3, #256 @ 0x100 - 801226a: 2b00 cmp r3, #0 - 801226c: d005 beq.n 801227a + 8012272: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8012276: f003 0301 and.w r3, r3, #1 + 801227a: 2b00 cmp r3, #0 + 801227c: d00b beq.n 8012296 + 801227e: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8012282: f403 7380 and.w r3, r3, #256 @ 0x100 + 8012286: 2b00 cmp r3, #0 + 8012288: d005 beq.n 8012296 { huart->ErrorCode |= HAL_UART_ERROR_PE; - 801226e: 687b ldr r3, [r7, #4] - 8012270: 6c5b ldr r3, [r3, #68] @ 0x44 - 8012272: f043 0201 orr.w r2, r3, #1 - 8012276: 687b ldr r3, [r7, #4] - 8012278: 645a str r2, [r3, #68] @ 0x44 + 801228a: 687b ldr r3, [r7, #4] + 801228c: 6c5b ldr r3, [r3, #68] @ 0x44 + 801228e: f043 0201 orr.w r2, r3, #1 + 8012292: 687b ldr r3, [r7, #4] + 8012294: 645a str r2, [r3, #68] @ 0x44 } /* UART noise error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 801227a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 801227e: f003 0304 and.w r3, r3, #4 - 8012282: 2b00 cmp r3, #0 - 8012284: d00b beq.n 801229e - 8012286: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 801228a: f003 0301 and.w r3, r3, #1 - 801228e: 2b00 cmp r3, #0 - 8012290: d005 beq.n 801229e + 8012296: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 801229a: f003 0304 and.w r3, r3, #4 + 801229e: 2b00 cmp r3, #0 + 80122a0: d00b beq.n 80122ba + 80122a2: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 80122a6: f003 0301 and.w r3, r3, #1 + 80122aa: 2b00 cmp r3, #0 + 80122ac: d005 beq.n 80122ba { huart->ErrorCode |= HAL_UART_ERROR_NE; - 8012292: 687b ldr r3, [r7, #4] - 8012294: 6c5b ldr r3, [r3, #68] @ 0x44 - 8012296: f043 0202 orr.w r2, r3, #2 - 801229a: 687b ldr r3, [r7, #4] - 801229c: 645a str r2, [r3, #68] @ 0x44 + 80122ae: 687b ldr r3, [r7, #4] + 80122b0: 6c5b ldr r3, [r3, #68] @ 0x44 + 80122b2: f043 0202 orr.w r2, r3, #2 + 80122b6: 687b ldr r3, [r7, #4] + 80122b8: 645a str r2, [r3, #68] @ 0x44 } /* UART frame error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 801229e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 80122a2: f003 0302 and.w r3, r3, #2 - 80122a6: 2b00 cmp r3, #0 - 80122a8: d00b beq.n 80122c2 - 80122aa: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 80122ae: f003 0301 and.w r3, r3, #1 - 80122b2: 2b00 cmp r3, #0 - 80122b4: d005 beq.n 80122c2 + 80122ba: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80122be: f003 0302 and.w r3, r3, #2 + 80122c2: 2b00 cmp r3, #0 + 80122c4: d00b beq.n 80122de + 80122c6: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 80122ca: f003 0301 and.w r3, r3, #1 + 80122ce: 2b00 cmp r3, #0 + 80122d0: d005 beq.n 80122de { huart->ErrorCode |= HAL_UART_ERROR_FE; - 80122b6: 687b ldr r3, [r7, #4] - 80122b8: 6c5b ldr r3, [r3, #68] @ 0x44 - 80122ba: f043 0204 orr.w r2, r3, #4 - 80122be: 687b ldr r3, [r7, #4] - 80122c0: 645a str r2, [r3, #68] @ 0x44 + 80122d2: 687b ldr r3, [r7, #4] + 80122d4: 6c5b ldr r3, [r3, #68] @ 0x44 + 80122d6: f043 0204 orr.w r2, r3, #4 + 80122da: 687b ldr r3, [r7, #4] + 80122dc: 645a str r2, [r3, #68] @ 0x44 } /* UART Over-Run interrupt occurred --------------------------------------*/ if (((isrflags & USART_SR_ORE) != RESET) && (((cr1its & USART_CR1_RXNEIE) != RESET) - 80122c2: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 80122c6: f003 0308 and.w r3, r3, #8 - 80122ca: 2b00 cmp r3, #0 - 80122cc: d011 beq.n 80122f2 - 80122ce: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 80122d2: f003 0320 and.w r3, r3, #32 - 80122d6: 2b00 cmp r3, #0 - 80122d8: d105 bne.n 80122e6 + 80122de: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80122e2: f003 0308 and.w r3, r3, #8 + 80122e6: 2b00 cmp r3, #0 + 80122e8: d011 beq.n 801230e + 80122ea: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 80122ee: f003 0320 and.w r3, r3, #32 + 80122f2: 2b00 cmp r3, #0 + 80122f4: d105 bne.n 8012302 || ((cr3its & USART_CR3_EIE) != RESET))) - 80122da: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 80122de: f003 0301 and.w r3, r3, #1 - 80122e2: 2b00 cmp r3, #0 - 80122e4: d005 beq.n 80122f2 + 80122f6: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 80122fa: f003 0301 and.w r3, r3, #1 + 80122fe: 2b00 cmp r3, #0 + 8012300: d005 beq.n 801230e { huart->ErrorCode |= HAL_UART_ERROR_ORE; - 80122e6: 687b ldr r3, [r7, #4] - 80122e8: 6c5b ldr r3, [r3, #68] @ 0x44 - 80122ea: f043 0208 orr.w r2, r3, #8 - 80122ee: 687b ldr r3, [r7, #4] - 80122f0: 645a str r2, [r3, #68] @ 0x44 + 8012302: 687b ldr r3, [r7, #4] + 8012304: 6c5b ldr r3, [r3, #68] @ 0x44 + 8012306: f043 0208 orr.w r2, r3, #8 + 801230a: 687b ldr r3, [r7, #4] + 801230c: 645a str r2, [r3, #68] @ 0x44 } /* Call UART Error Call back function if need be --------------------------*/ if (huart->ErrorCode != HAL_UART_ERROR_NONE) - 80122f2: 687b ldr r3, [r7, #4] - 80122f4: 6c5b ldr r3, [r3, #68] @ 0x44 - 80122f6: 2b00 cmp r3, #0 - 80122f8: f000 81f2 beq.w 80126e0 + 801230e: 687b ldr r3, [r7, #4] + 8012310: 6c5b ldr r3, [r3, #68] @ 0x44 + 8012312: 2b00 cmp r3, #0 + 8012314: f000 81f2 beq.w 80126fc { /* UART in mode Receiver -----------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 80122fc: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8012300: f003 0320 and.w r3, r3, #32 - 8012304: 2b00 cmp r3, #0 - 8012306: d008 beq.n 801231a - 8012308: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 801230c: f003 0320 and.w r3, r3, #32 - 8012310: 2b00 cmp r3, #0 - 8012312: d002 beq.n 801231a + 8012318: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 801231c: f003 0320 and.w r3, r3, #32 + 8012320: 2b00 cmp r3, #0 + 8012322: d008 beq.n 8012336 + 8012324: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8012328: f003 0320 and.w r3, r3, #32 + 801232c: 2b00 cmp r3, #0 + 801232e: d002 beq.n 8012336 { UART_Receive_IT(huart); - 8012314: 6878 ldr r0, [r7, #4] - 8012316: f000 fbf2 bl 8012afe + 8012330: 6878 ldr r0, [r7, #4] + 8012332: f000 fbf2 bl 8012b1a } /* If Overrun error occurs, or if any error occurs in DMA mode reception, consider error as blocking */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR); - 801231a: 687b ldr r3, [r7, #4] - 801231c: 681b ldr r3, [r3, #0] - 801231e: 695b ldr r3, [r3, #20] - 8012320: f003 0340 and.w r3, r3, #64 @ 0x40 - 8012324: 2b00 cmp r3, #0 - 8012326: bf14 ite ne - 8012328: 2301 movne r3, #1 - 801232a: 2300 moveq r3, #0 - 801232c: b2db uxtb r3, r3 - 801232e: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 8012336: 687b ldr r3, [r7, #4] + 8012338: 681b ldr r3, [r3, #0] + 801233a: 695b ldr r3, [r3, #20] + 801233c: f003 0340 and.w r3, r3, #64 @ 0x40 + 8012340: 2b00 cmp r3, #0 + 8012342: bf14 ite ne + 8012344: 2301 movne r3, #1 + 8012346: 2300 moveq r3, #0 + 8012348: b2db uxtb r3, r3 + 801234a: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 if (((huart->ErrorCode & HAL_UART_ERROR_ORE) != RESET) || dmarequest) - 8012332: 687b ldr r3, [r7, #4] - 8012334: 6c5b ldr r3, [r3, #68] @ 0x44 - 8012336: f003 0308 and.w r3, r3, #8 - 801233a: 2b00 cmp r3, #0 - 801233c: d103 bne.n 8012346 - 801233e: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 - 8012342: 2b00 cmp r3, #0 - 8012344: d04f beq.n 80123e6 + 801234e: 687b ldr r3, [r7, #4] + 8012350: 6c5b ldr r3, [r3, #68] @ 0x44 + 8012352: f003 0308 and.w r3, r3, #8 + 8012356: 2b00 cmp r3, #0 + 8012358: d103 bne.n 8012362 + 801235a: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 + 801235e: 2b00 cmp r3, #0 + 8012360: d04f beq.n 8012402 { /* Blocking error : transfer is aborted Set the UART state ready to be able to start again the process, Disable Rx Interrupts, and disable Rx DMA request, if ongoing */ UART_EndRxTransfer(huart); - 8012346: 6878 ldr r0, [r7, #4] - 8012348: f000 fa9c bl 8012884 + 8012362: 6878 ldr r0, [r7, #4] + 8012364: f000 fa9c bl 80128a0 /* Disable the UART DMA Rx request if enabled */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 801234c: 687b ldr r3, [r7, #4] - 801234e: 681b ldr r3, [r3, #0] - 8012350: 695b ldr r3, [r3, #20] - 8012352: f003 0340 and.w r3, r3, #64 @ 0x40 - 8012356: 2b00 cmp r3, #0 - 8012358: d041 beq.n 80123de + 8012368: 687b ldr r3, [r7, #4] + 801236a: 681b ldr r3, [r3, #0] + 801236c: 695b ldr r3, [r3, #20] + 801236e: f003 0340 and.w r3, r3, #64 @ 0x40 + 8012372: 2b00 cmp r3, #0 + 8012374: d041 beq.n 80123fa { ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 801235a: 687b ldr r3, [r7, #4] - 801235c: 681b ldr r3, [r3, #0] - 801235e: 3314 adds r3, #20 - 8012360: f8c7 309c str.w r3, [r7, #156] @ 0x9c + 8012376: 687b ldr r3, [r7, #4] + 8012378: 681b ldr r3, [r3, #0] + 801237a: 3314 adds r3, #20 + 801237c: f8c7 309c str.w r3, [r7, #156] @ 0x9c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012364: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c - 8012368: e853 3f00 ldrex r3, [r3] - 801236c: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 8012380: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c + 8012384: e853 3f00 ldrex r3, [r3] + 8012388: f8c7 3098 str.w r3, [r7, #152] @ 0x98 return(result); - 8012370: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 - 8012374: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8012378: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 - 801237c: 687b ldr r3, [r7, #4] - 801237e: 681b ldr r3, [r3, #0] - 8012380: 3314 adds r3, #20 - 8012382: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 - 8012386: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 - 801238a: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 801238c: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 + 8012390: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8012394: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 + 8012398: 687b ldr r3, [r7, #4] + 801239a: 681b ldr r3, [r3, #0] + 801239c: 3314 adds r3, #20 + 801239e: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 + 80123a2: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 + 80123a6: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 801238e: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 - 8012392: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 - 8012396: e841 2300 strex r3, r2, [r1] - 801239a: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 + 80123aa: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 + 80123ae: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 + 80123b2: e841 2300 strex r3, r2, [r1] + 80123b6: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 return(result); - 801239e: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 - 80123a2: 2b00 cmp r3, #0 - 80123a4: d1d9 bne.n 801235a + 80123ba: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 + 80123be: 2b00 cmp r3, #0 + 80123c0: d1d9 bne.n 8012376 /* Abort the UART DMA Rx channel */ if (huart->hdmarx != NULL) - 80123a6: 687b ldr r3, [r7, #4] - 80123a8: 6bdb ldr r3, [r3, #60] @ 0x3c - 80123aa: 2b00 cmp r3, #0 - 80123ac: d013 beq.n 80123d6 + 80123c2: 687b ldr r3, [r7, #4] + 80123c4: 6bdb ldr r3, [r3, #60] @ 0x3c + 80123c6: 2b00 cmp r3, #0 + 80123c8: d013 beq.n 80123f2 { /* Set the UART DMA Abort callback : will lead to call HAL_UART_ErrorCallback() at end of DMA abort procedure */ huart->hdmarx->XferAbortCallback = UART_DMAAbortOnError; - 80123ae: 687b ldr r3, [r7, #4] - 80123b0: 6bdb ldr r3, [r3, #60] @ 0x3c - 80123b2: 4a7e ldr r2, [pc, #504] @ (80125ac ) - 80123b4: 635a str r2, [r3, #52] @ 0x34 + 80123ca: 687b ldr r3, [r7, #4] + 80123cc: 6bdb ldr r3, [r3, #60] @ 0x3c + 80123ce: 4a7e ldr r2, [pc, #504] @ (80125c8 ) + 80123d0: 635a str r2, [r3, #52] @ 0x34 if (HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) - 80123b6: 687b ldr r3, [r7, #4] - 80123b8: 6bdb ldr r3, [r3, #60] @ 0x3c - 80123ba: 4618 mov r0, r3 - 80123bc: f7fd f83c bl 800f438 - 80123c0: 4603 mov r3, r0 - 80123c2: 2b00 cmp r3, #0 - 80123c4: d016 beq.n 80123f4 + 80123d2: 687b ldr r3, [r7, #4] + 80123d4: 6bdb ldr r3, [r3, #60] @ 0x3c + 80123d6: 4618 mov r0, r3 + 80123d8: f7fd f83c bl 800f454 + 80123dc: 4603 mov r3, r0 + 80123de: 2b00 cmp r3, #0 + 80123e0: d016 beq.n 8012410 { /* Call Directly XferAbortCallback function in case of error */ huart->hdmarx->XferAbortCallback(huart->hdmarx); - 80123c6: 687b ldr r3, [r7, #4] - 80123c8: 6bdb ldr r3, [r3, #60] @ 0x3c - 80123ca: 6b5b ldr r3, [r3, #52] @ 0x34 - 80123cc: 687a ldr r2, [r7, #4] - 80123ce: 6bd2 ldr r2, [r2, #60] @ 0x3c - 80123d0: 4610 mov r0, r2 - 80123d2: 4798 blx r3 + 80123e2: 687b ldr r3, [r7, #4] + 80123e4: 6bdb ldr r3, [r3, #60] @ 0x3c + 80123e6: 6b5b ldr r3, [r3, #52] @ 0x34 + 80123e8: 687a ldr r2, [r7, #4] + 80123ea: 6bd2 ldr r2, [r2, #60] @ 0x3c + 80123ec: 4610 mov r0, r2 + 80123ee: 4798 blx r3 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 80123d4: e00e b.n 80123f4 + 80123f0: e00e b.n 8012410 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 80123d6: 6878 ldr r0, [r7, #4] - 80123d8: f000 f993 bl 8012702 + 80123f2: 6878 ldr r0, [r7, #4] + 80123f4: f000 f993 bl 801271e if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 80123dc: e00a b.n 80123f4 + 80123f8: e00a b.n 8012410 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 80123de: 6878 ldr r0, [r7, #4] - 80123e0: f000 f98f bl 8012702 + 80123fa: 6878 ldr r0, [r7, #4] + 80123fc: f000 f98f bl 801271e if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 80123e4: e006 b.n 80123f4 + 8012400: e006 b.n 8012410 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 80123e6: 6878 ldr r0, [r7, #4] - 80123e8: f000 f98b bl 8012702 + 8012402: 6878 ldr r0, [r7, #4] + 8012404: f000 f98b bl 801271e #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 80123ec: 687b ldr r3, [r7, #4] - 80123ee: 2200 movs r2, #0 - 80123f0: 645a str r2, [r3, #68] @ 0x44 + 8012408: 687b ldr r3, [r7, #4] + 801240a: 2200 movs r2, #0 + 801240c: 645a str r2, [r3, #68] @ 0x44 } } return; - 80123f2: e175 b.n 80126e0 + 801240e: e175 b.n 80126fc if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 80123f4: bf00 nop + 8012410: bf00 nop return; - 80123f6: e173 b.n 80126e0 + 8012412: e173 b.n 80126fc } /* End if some error occurs */ /* Check current reception Mode : If Reception till IDLE event has been selected : */ if ((huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 80123f8: 687b ldr r3, [r7, #4] - 80123fa: 6b1b ldr r3, [r3, #48] @ 0x30 - 80123fc: 2b01 cmp r3, #1 - 80123fe: f040 814f bne.w 80126a0 + 8012414: 687b ldr r3, [r7, #4] + 8012416: 6b1b ldr r3, [r3, #48] @ 0x30 + 8012418: 2b01 cmp r3, #1 + 801241a: f040 814f bne.w 80126bc && ((isrflags & USART_SR_IDLE) != 0U) - 8012402: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8012406: f003 0310 and.w r3, r3, #16 - 801240a: 2b00 cmp r3, #0 - 801240c: f000 8148 beq.w 80126a0 + 801241e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8012422: f003 0310 and.w r3, r3, #16 + 8012426: 2b00 cmp r3, #0 + 8012428: f000 8148 beq.w 80126bc && ((cr1its & USART_SR_IDLE) != 0U)) - 8012410: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8012414: f003 0310 and.w r3, r3, #16 - 8012418: 2b00 cmp r3, #0 - 801241a: f000 8141 beq.w 80126a0 + 801242c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8012430: f003 0310 and.w r3, r3, #16 + 8012434: 2b00 cmp r3, #0 + 8012436: f000 8141 beq.w 80126bc { __HAL_UART_CLEAR_IDLEFLAG(huart); - 801241e: 2300 movs r3, #0 - 8012420: 60bb str r3, [r7, #8] - 8012422: 687b ldr r3, [r7, #4] - 8012424: 681b ldr r3, [r3, #0] - 8012426: 681b ldr r3, [r3, #0] - 8012428: 60bb str r3, [r7, #8] - 801242a: 687b ldr r3, [r7, #4] - 801242c: 681b ldr r3, [r3, #0] - 801242e: 685b ldr r3, [r3, #4] - 8012430: 60bb str r3, [r7, #8] - 8012432: 68bb ldr r3, [r7, #8] + 801243a: 2300 movs r3, #0 + 801243c: 60bb str r3, [r7, #8] + 801243e: 687b ldr r3, [r7, #4] + 8012440: 681b ldr r3, [r3, #0] + 8012442: 681b ldr r3, [r3, #0] + 8012444: 60bb str r3, [r7, #8] + 8012446: 687b ldr r3, [r7, #4] + 8012448: 681b ldr r3, [r3, #0] + 801244a: 685b ldr r3, [r3, #4] + 801244c: 60bb str r3, [r7, #8] + 801244e: 68bb ldr r3, [r7, #8] /* Check if DMA mode is enabled in UART */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8012434: 687b ldr r3, [r7, #4] - 8012436: 681b ldr r3, [r3, #0] - 8012438: 695b ldr r3, [r3, #20] - 801243a: f003 0340 and.w r3, r3, #64 @ 0x40 - 801243e: 2b00 cmp r3, #0 - 8012440: f000 80b6 beq.w 80125b0 + 8012450: 687b ldr r3, [r7, #4] + 8012452: 681b ldr r3, [r3, #0] + 8012454: 695b ldr r3, [r3, #20] + 8012456: f003 0340 and.w r3, r3, #64 @ 0x40 + 801245a: 2b00 cmp r3, #0 + 801245c: f000 80b6 beq.w 80125cc { /* DMA mode enabled */ /* Check received length : If all expected data are received, do nothing, (DMA cplt callback will be called). Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_remaining_rx_data = (uint16_t) __HAL_DMA_GET_COUNTER(huart->hdmarx); - 8012444: 687b ldr r3, [r7, #4] - 8012446: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012448: 681b ldr r3, [r3, #0] - 801244a: 685b ldr r3, [r3, #4] - 801244c: f8a7 30be strh.w r3, [r7, #190] @ 0xbe + 8012460: 687b ldr r3, [r7, #4] + 8012462: 6bdb ldr r3, [r3, #60] @ 0x3c + 8012464: 681b ldr r3, [r3, #0] + 8012466: 685b ldr r3, [r3, #4] + 8012468: f8a7 30be strh.w r3, [r7, #190] @ 0xbe if ((nb_remaining_rx_data > 0U) - 8012450: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe - 8012454: 2b00 cmp r3, #0 - 8012456: f000 8145 beq.w 80126e4 + 801246c: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe + 8012470: 2b00 cmp r3, #0 + 8012472: f000 8145 beq.w 8012700 && (nb_remaining_rx_data < huart->RxXferSize)) - 801245a: 687b ldr r3, [r7, #4] - 801245c: 8d9b ldrh r3, [r3, #44] @ 0x2c - 801245e: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 8012462: 429a cmp r2, r3 - 8012464: f080 813e bcs.w 80126e4 + 8012476: 687b ldr r3, [r7, #4] + 8012478: 8d9b ldrh r3, [r3, #44] @ 0x2c + 801247a: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 801247e: 429a cmp r2, r3 + 8012480: f080 813e bcs.w 8012700 { /* Reception is not complete */ huart->RxXferCount = nb_remaining_rx_data; - 8012468: 687b ldr r3, [r7, #4] - 801246a: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 801246e: 85da strh r2, [r3, #46] @ 0x2e + 8012484: 687b ldr r3, [r7, #4] + 8012486: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 801248a: 85da strh r2, [r3, #46] @ 0x2e /* In Normal mode, end DMA xfer and HAL UART Rx process*/ if (huart->hdmarx->Init.Mode != DMA_CIRCULAR) - 8012470: 687b ldr r3, [r7, #4] - 8012472: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012474: 699b ldr r3, [r3, #24] - 8012476: 2b20 cmp r3, #32 - 8012478: f000 8088 beq.w 801258c + 801248c: 687b ldr r3, [r7, #4] + 801248e: 6bdb ldr r3, [r3, #60] @ 0x3c + 8012490: 699b ldr r3, [r3, #24] + 8012492: 2b20 cmp r3, #32 + 8012494: f000 8088 beq.w 80125a8 { /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 801247c: 687b ldr r3, [r7, #4] - 801247e: 681b ldr r3, [r3, #0] - 8012480: 330c adds r3, #12 - 8012482: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 8012498: 687b ldr r3, [r7, #4] + 801249a: 681b ldr r3, [r3, #0] + 801249c: 330c adds r3, #12 + 801249e: f8c7 3088 str.w r3, [r7, #136] @ 0x88 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012486: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 - 801248a: e853 3f00 ldrex r3, [r3] - 801248e: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 80124a2: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 + 80124a6: e853 3f00 ldrex r3, [r3] + 80124aa: f8c7 3084 str.w r3, [r7, #132] @ 0x84 return(result); - 8012492: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 - 8012496: f423 7380 bic.w r3, r3, #256 @ 0x100 - 801249a: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 - 801249e: 687b ldr r3, [r7, #4] - 80124a0: 681b ldr r3, [r3, #0] - 80124a2: 330c adds r3, #12 - 80124a4: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 - 80124a8: f8c7 2094 str.w r2, [r7, #148] @ 0x94 - 80124ac: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 80124ae: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 + 80124b2: f423 7380 bic.w r3, r3, #256 @ 0x100 + 80124b6: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 + 80124ba: 687b ldr r3, [r7, #4] + 80124bc: 681b ldr r3, [r3, #0] + 80124be: 330c adds r3, #12 + 80124c0: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 + 80124c4: f8c7 2094 str.w r2, [r7, #148] @ 0x94 + 80124c8: f8c7 3090 str.w r3, [r7, #144] @ 0x90 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80124b0: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 - 80124b4: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 - 80124b8: e841 2300 strex r3, r2, [r1] - 80124bc: f8c7 308c str.w r3, [r7, #140] @ 0x8c + 80124cc: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 + 80124d0: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 + 80124d4: e841 2300 strex r3, r2, [r1] + 80124d8: f8c7 308c str.w r3, [r7, #140] @ 0x8c return(result); - 80124c0: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c - 80124c4: 2b00 cmp r3, #0 - 80124c6: d1d9 bne.n 801247c + 80124dc: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c + 80124e0: 2b00 cmp r3, #0 + 80124e2: d1d9 bne.n 8012498 ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80124c8: 687b ldr r3, [r7, #4] - 80124ca: 681b ldr r3, [r3, #0] - 80124cc: 3314 adds r3, #20 - 80124ce: 677b str r3, [r7, #116] @ 0x74 + 80124e4: 687b ldr r3, [r7, #4] + 80124e6: 681b ldr r3, [r3, #0] + 80124e8: 3314 adds r3, #20 + 80124ea: 677b str r3, [r7, #116] @ 0x74 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80124d0: 6f7b ldr r3, [r7, #116] @ 0x74 - 80124d2: e853 3f00 ldrex r3, [r3] - 80124d6: 673b str r3, [r7, #112] @ 0x70 + 80124ec: 6f7b ldr r3, [r7, #116] @ 0x74 + 80124ee: e853 3f00 ldrex r3, [r3] + 80124f2: 673b str r3, [r7, #112] @ 0x70 return(result); - 80124d8: 6f3b ldr r3, [r7, #112] @ 0x70 - 80124da: f023 0301 bic.w r3, r3, #1 - 80124de: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 80124e2: 687b ldr r3, [r7, #4] - 80124e4: 681b ldr r3, [r3, #0] - 80124e6: 3314 adds r3, #20 - 80124e8: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 80124ec: f8c7 2080 str.w r2, [r7, #128] @ 0x80 - 80124f0: 67fb str r3, [r7, #124] @ 0x7c + 80124f4: 6f3b ldr r3, [r7, #112] @ 0x70 + 80124f6: f023 0301 bic.w r3, r3, #1 + 80124fa: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 80124fe: 687b ldr r3, [r7, #4] + 8012500: 681b ldr r3, [r3, #0] + 8012502: 3314 adds r3, #20 + 8012504: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 8012508: f8c7 2080 str.w r2, [r7, #128] @ 0x80 + 801250c: 67fb str r3, [r7, #124] @ 0x7c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80124f2: 6ff9 ldr r1, [r7, #124] @ 0x7c - 80124f4: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 - 80124f8: e841 2300 strex r3, r2, [r1] - 80124fc: 67bb str r3, [r7, #120] @ 0x78 + 801250e: 6ff9 ldr r1, [r7, #124] @ 0x7c + 8012510: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 + 8012514: e841 2300 strex r3, r2, [r1] + 8012518: 67bb str r3, [r7, #120] @ 0x78 return(result); - 80124fe: 6fbb ldr r3, [r7, #120] @ 0x78 - 8012500: 2b00 cmp r3, #0 - 8012502: d1e1 bne.n 80124c8 + 801251a: 6fbb ldr r3, [r7, #120] @ 0x78 + 801251c: 2b00 cmp r3, #0 + 801251e: d1e1 bne.n 80124e4 /* Disable the DMA transfer for the receiver request by resetting the DMAR bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 8012504: 687b ldr r3, [r7, #4] - 8012506: 681b ldr r3, [r3, #0] - 8012508: 3314 adds r3, #20 - 801250a: 663b str r3, [r7, #96] @ 0x60 + 8012520: 687b ldr r3, [r7, #4] + 8012522: 681b ldr r3, [r3, #0] + 8012524: 3314 adds r3, #20 + 8012526: 663b str r3, [r7, #96] @ 0x60 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 801250c: 6e3b ldr r3, [r7, #96] @ 0x60 - 801250e: e853 3f00 ldrex r3, [r3] - 8012512: 65fb str r3, [r7, #92] @ 0x5c + 8012528: 6e3b ldr r3, [r7, #96] @ 0x60 + 801252a: e853 3f00 ldrex r3, [r3] + 801252e: 65fb str r3, [r7, #92] @ 0x5c return(result); - 8012514: 6dfb ldr r3, [r7, #92] @ 0x5c - 8012516: f023 0340 bic.w r3, r3, #64 @ 0x40 - 801251a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 - 801251e: 687b ldr r3, [r7, #4] - 8012520: 681b ldr r3, [r3, #0] - 8012522: 3314 adds r3, #20 - 8012524: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 - 8012528: 66fa str r2, [r7, #108] @ 0x6c - 801252a: 66bb str r3, [r7, #104] @ 0x68 + 8012530: 6dfb ldr r3, [r7, #92] @ 0x5c + 8012532: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8012536: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 801253a: 687b ldr r3, [r7, #4] + 801253c: 681b ldr r3, [r3, #0] + 801253e: 3314 adds r3, #20 + 8012540: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 + 8012544: 66fa str r2, [r7, #108] @ 0x6c + 8012546: 66bb str r3, [r7, #104] @ 0x68 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 801252c: 6eb9 ldr r1, [r7, #104] @ 0x68 - 801252e: 6efa ldr r2, [r7, #108] @ 0x6c - 8012530: e841 2300 strex r3, r2, [r1] - 8012534: 667b str r3, [r7, #100] @ 0x64 + 8012548: 6eb9 ldr r1, [r7, #104] @ 0x68 + 801254a: 6efa ldr r2, [r7, #108] @ 0x6c + 801254c: e841 2300 strex r3, r2, [r1] + 8012550: 667b str r3, [r7, #100] @ 0x64 return(result); - 8012536: 6e7b ldr r3, [r7, #100] @ 0x64 - 8012538: 2b00 cmp r3, #0 - 801253a: d1e3 bne.n 8012504 + 8012552: 6e7b ldr r3, [r7, #100] @ 0x64 + 8012554: 2b00 cmp r3, #0 + 8012556: d1e3 bne.n 8012520 /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 801253c: 687b ldr r3, [r7, #4] - 801253e: 2220 movs r2, #32 - 8012540: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8012558: 687b ldr r3, [r7, #4] + 801255a: 2220 movs r2, #32 + 801255c: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8012544: 687b ldr r3, [r7, #4] - 8012546: 2200 movs r2, #0 - 8012548: 631a str r2, [r3, #48] @ 0x30 + 8012560: 687b ldr r3, [r7, #4] + 8012562: 2200 movs r2, #0 + 8012564: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 801254a: 687b ldr r3, [r7, #4] - 801254c: 681b ldr r3, [r3, #0] - 801254e: 330c adds r3, #12 - 8012550: 64fb str r3, [r7, #76] @ 0x4c + 8012566: 687b ldr r3, [r7, #4] + 8012568: 681b ldr r3, [r3, #0] + 801256a: 330c adds r3, #12 + 801256c: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012552: 6cfb ldr r3, [r7, #76] @ 0x4c - 8012554: e853 3f00 ldrex r3, [r3] - 8012558: 64bb str r3, [r7, #72] @ 0x48 + 801256e: 6cfb ldr r3, [r7, #76] @ 0x4c + 8012570: e853 3f00 ldrex r3, [r3] + 8012574: 64bb str r3, [r7, #72] @ 0x48 return(result); - 801255a: 6cbb ldr r3, [r7, #72] @ 0x48 - 801255c: f023 0310 bic.w r3, r3, #16 - 8012560: f8c7 30ac str.w r3, [r7, #172] @ 0xac - 8012564: 687b ldr r3, [r7, #4] - 8012566: 681b ldr r3, [r3, #0] - 8012568: 330c adds r3, #12 - 801256a: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac - 801256e: 65ba str r2, [r7, #88] @ 0x58 - 8012570: 657b str r3, [r7, #84] @ 0x54 + 8012576: 6cbb ldr r3, [r7, #72] @ 0x48 + 8012578: f023 0310 bic.w r3, r3, #16 + 801257c: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8012580: 687b ldr r3, [r7, #4] + 8012582: 681b ldr r3, [r3, #0] + 8012584: 330c adds r3, #12 + 8012586: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac + 801258a: 65ba str r2, [r7, #88] @ 0x58 + 801258c: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8012572: 6d79 ldr r1, [r7, #84] @ 0x54 - 8012574: 6dba ldr r2, [r7, #88] @ 0x58 - 8012576: e841 2300 strex r3, r2, [r1] - 801257a: 653b str r3, [r7, #80] @ 0x50 + 801258e: 6d79 ldr r1, [r7, #84] @ 0x54 + 8012590: 6dba ldr r2, [r7, #88] @ 0x58 + 8012592: e841 2300 strex r3, r2, [r1] + 8012596: 653b str r3, [r7, #80] @ 0x50 return(result); - 801257c: 6d3b ldr r3, [r7, #80] @ 0x50 - 801257e: 2b00 cmp r3, #0 - 8012580: d1e3 bne.n 801254a + 8012598: 6d3b ldr r3, [r7, #80] @ 0x50 + 801259a: 2b00 cmp r3, #0 + 801259c: d1e3 bne.n 8012566 /* Last bytes received, so no need as the abort is immediate */ (void)HAL_DMA_Abort(huart->hdmarx); - 8012582: 687b ldr r3, [r7, #4] - 8012584: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012586: 4618 mov r0, r3 - 8012588: f7fc ff1b bl 800f3c2 + 801259e: 687b ldr r3, [r7, #4] + 80125a0: 6bdb ldr r3, [r3, #60] @ 0x3c + 80125a2: 4618 mov r0, r3 + 80125a4: f7fc ff1b bl 800f3de } /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 801258c: 687b ldr r3, [r7, #4] - 801258e: 2202 movs r2, #2 - 8012590: 635a str r2, [r3, #52] @ 0x34 + 80125a8: 687b ldr r3, [r7, #4] + 80125aa: 2202 movs r2, #2 + 80125ac: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); - 8012592: 687b ldr r3, [r7, #4] - 8012594: 8d9a ldrh r2, [r3, #44] @ 0x2c - 8012596: 687b ldr r3, [r7, #4] - 8012598: 8ddb ldrh r3, [r3, #46] @ 0x2e - 801259a: b29b uxth r3, r3 - 801259c: 1ad3 subs r3, r2, r3 - 801259e: b29b uxth r3, r3 - 80125a0: 4619 mov r1, r3 - 80125a2: 6878 ldr r0, [r7, #4] - 80125a4: f7fa f802 bl 800c5ac + 80125ae: 687b ldr r3, [r7, #4] + 80125b0: 8d9a ldrh r2, [r3, #44] @ 0x2c + 80125b2: 687b ldr r3, [r7, #4] + 80125b4: 8ddb ldrh r3, [r3, #46] @ 0x2e + 80125b6: b29b uxth r3, r3 + 80125b8: 1ad3 subs r3, r2, r3 + 80125ba: b29b uxth r3, r3 + 80125bc: 4619 mov r1, r3 + 80125be: 6878 ldr r0, [r7, #4] + 80125c0: f7fa f802 bl 800c5c8 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return; - 80125a8: e09c b.n 80126e4 - 80125aa: bf00 nop - 80125ac: 08012949 .word 0x08012949 + 80125c4: e09c b.n 8012700 + 80125c6: bf00 nop + 80125c8: 08012965 .word 0x08012965 else { /* DMA mode not enabled */ /* Check received length : If all expected data are received, do nothing. Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_rx_data = huart->RxXferSize - huart->RxXferCount; - 80125b0: 687b ldr r3, [r7, #4] - 80125b2: 8d9a ldrh r2, [r3, #44] @ 0x2c - 80125b4: 687b ldr r3, [r7, #4] - 80125b6: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80125b8: b29b uxth r3, r3 - 80125ba: 1ad3 subs r3, r2, r3 - 80125bc: f8a7 30ce strh.w r3, [r7, #206] @ 0xce + 80125cc: 687b ldr r3, [r7, #4] + 80125ce: 8d9a ldrh r2, [r3, #44] @ 0x2c + 80125d0: 687b ldr r3, [r7, #4] + 80125d2: 8ddb ldrh r3, [r3, #46] @ 0x2e + 80125d4: b29b uxth r3, r3 + 80125d6: 1ad3 subs r3, r2, r3 + 80125d8: f8a7 30ce strh.w r3, [r7, #206] @ 0xce if ((huart->RxXferCount > 0U) - 80125c0: 687b ldr r3, [r7, #4] - 80125c2: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80125c4: b29b uxth r3, r3 - 80125c6: 2b00 cmp r3, #0 - 80125c8: f000 808e beq.w 80126e8 + 80125dc: 687b ldr r3, [r7, #4] + 80125de: 8ddb ldrh r3, [r3, #46] @ 0x2e + 80125e0: b29b uxth r3, r3 + 80125e2: 2b00 cmp r3, #0 + 80125e4: f000 808e beq.w 8012704 && (nb_rx_data > 0U)) - 80125cc: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 80125d0: 2b00 cmp r3, #0 - 80125d2: f000 8089 beq.w 80126e8 + 80125e8: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 80125ec: 2b00 cmp r3, #0 + 80125ee: f000 8089 beq.w 8012704 { /* Disable the UART Parity Error Interrupt and RXNE interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 80125d6: 687b ldr r3, [r7, #4] - 80125d8: 681b ldr r3, [r3, #0] - 80125da: 330c adds r3, #12 - 80125dc: 63bb str r3, [r7, #56] @ 0x38 + 80125f2: 687b ldr r3, [r7, #4] + 80125f4: 681b ldr r3, [r3, #0] + 80125f6: 330c adds r3, #12 + 80125f8: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80125de: 6bbb ldr r3, [r7, #56] @ 0x38 - 80125e0: e853 3f00 ldrex r3, [r3] - 80125e4: 637b str r3, [r7, #52] @ 0x34 + 80125fa: 6bbb ldr r3, [r7, #56] @ 0x38 + 80125fc: e853 3f00 ldrex r3, [r3] + 8012600: 637b str r3, [r7, #52] @ 0x34 return(result); - 80125e6: 6b7b ldr r3, [r7, #52] @ 0x34 - 80125e8: f423 7390 bic.w r3, r3, #288 @ 0x120 - 80125ec: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 - 80125f0: 687b ldr r3, [r7, #4] - 80125f2: 681b ldr r3, [r3, #0] - 80125f4: 330c adds r3, #12 - 80125f6: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 - 80125fa: 647a str r2, [r7, #68] @ 0x44 - 80125fc: 643b str r3, [r7, #64] @ 0x40 + 8012602: 6b7b ldr r3, [r7, #52] @ 0x34 + 8012604: f423 7390 bic.w r3, r3, #288 @ 0x120 + 8012608: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 + 801260c: 687b ldr r3, [r7, #4] + 801260e: 681b ldr r3, [r3, #0] + 8012610: 330c adds r3, #12 + 8012612: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 + 8012616: 647a str r2, [r7, #68] @ 0x44 + 8012618: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80125fe: 6c39 ldr r1, [r7, #64] @ 0x40 - 8012600: 6c7a ldr r2, [r7, #68] @ 0x44 - 8012602: e841 2300 strex r3, r2, [r1] - 8012606: 63fb str r3, [r7, #60] @ 0x3c + 801261a: 6c39 ldr r1, [r7, #64] @ 0x40 + 801261c: 6c7a ldr r2, [r7, #68] @ 0x44 + 801261e: e841 2300 strex r3, r2, [r1] + 8012622: 63fb str r3, [r7, #60] @ 0x3c return(result); - 8012608: 6bfb ldr r3, [r7, #60] @ 0x3c - 801260a: 2b00 cmp r3, #0 - 801260c: d1e3 bne.n 80125d6 + 8012624: 6bfb ldr r3, [r7, #60] @ 0x3c + 8012626: 2b00 cmp r3, #0 + 8012628: d1e3 bne.n 80125f2 /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 801260e: 687b ldr r3, [r7, #4] - 8012610: 681b ldr r3, [r3, #0] - 8012612: 3314 adds r3, #20 - 8012614: 627b str r3, [r7, #36] @ 0x24 + 801262a: 687b ldr r3, [r7, #4] + 801262c: 681b ldr r3, [r3, #0] + 801262e: 3314 adds r3, #20 + 8012630: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012616: 6a7b ldr r3, [r7, #36] @ 0x24 - 8012618: e853 3f00 ldrex r3, [r3] - 801261c: 623b str r3, [r7, #32] + 8012632: 6a7b ldr r3, [r7, #36] @ 0x24 + 8012634: e853 3f00 ldrex r3, [r3] + 8012638: 623b str r3, [r7, #32] return(result); - 801261e: 6a3b ldr r3, [r7, #32] - 8012620: f023 0301 bic.w r3, r3, #1 - 8012624: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 - 8012628: 687b ldr r3, [r7, #4] - 801262a: 681b ldr r3, [r3, #0] - 801262c: 3314 adds r3, #20 - 801262e: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 - 8012632: 633a str r2, [r7, #48] @ 0x30 - 8012634: 62fb str r3, [r7, #44] @ 0x2c + 801263a: 6a3b ldr r3, [r7, #32] + 801263c: f023 0301 bic.w r3, r3, #1 + 8012640: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 + 8012644: 687b ldr r3, [r7, #4] + 8012646: 681b ldr r3, [r3, #0] + 8012648: 3314 adds r3, #20 + 801264a: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 + 801264e: 633a str r2, [r7, #48] @ 0x30 + 8012650: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8012636: 6af9 ldr r1, [r7, #44] @ 0x2c - 8012638: 6b3a ldr r2, [r7, #48] @ 0x30 - 801263a: e841 2300 strex r3, r2, [r1] - 801263e: 62bb str r3, [r7, #40] @ 0x28 + 8012652: 6af9 ldr r1, [r7, #44] @ 0x2c + 8012654: 6b3a ldr r2, [r7, #48] @ 0x30 + 8012656: e841 2300 strex r3, r2, [r1] + 801265a: 62bb str r3, [r7, #40] @ 0x28 return(result); - 8012640: 6abb ldr r3, [r7, #40] @ 0x28 - 8012642: 2b00 cmp r3, #0 - 8012644: d1e3 bne.n 801260e + 801265c: 6abb ldr r3, [r7, #40] @ 0x28 + 801265e: 2b00 cmp r3, #0 + 8012660: d1e3 bne.n 801262a /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8012646: 687b ldr r3, [r7, #4] - 8012648: 2220 movs r2, #32 - 801264a: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8012662: 687b ldr r3, [r7, #4] + 8012664: 2220 movs r2, #32 + 8012666: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 801264e: 687b ldr r3, [r7, #4] - 8012650: 2200 movs r2, #0 - 8012652: 631a str r2, [r3, #48] @ 0x30 + 801266a: 687b ldr r3, [r7, #4] + 801266c: 2200 movs r2, #0 + 801266e: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8012654: 687b ldr r3, [r7, #4] - 8012656: 681b ldr r3, [r3, #0] - 8012658: 330c adds r3, #12 - 801265a: 613b str r3, [r7, #16] + 8012670: 687b ldr r3, [r7, #4] + 8012672: 681b ldr r3, [r3, #0] + 8012674: 330c adds r3, #12 + 8012676: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 801265c: 693b ldr r3, [r7, #16] - 801265e: e853 3f00 ldrex r3, [r3] - 8012662: 60fb str r3, [r7, #12] + 8012678: 693b ldr r3, [r7, #16] + 801267a: e853 3f00 ldrex r3, [r3] + 801267e: 60fb str r3, [r7, #12] return(result); - 8012664: 68fb ldr r3, [r7, #12] - 8012666: f023 0310 bic.w r3, r3, #16 - 801266a: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 - 801266e: 687b ldr r3, [r7, #4] - 8012670: 681b ldr r3, [r3, #0] - 8012672: 330c adds r3, #12 - 8012674: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 - 8012678: 61fa str r2, [r7, #28] - 801267a: 61bb str r3, [r7, #24] + 8012680: 68fb ldr r3, [r7, #12] + 8012682: f023 0310 bic.w r3, r3, #16 + 8012686: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 + 801268a: 687b ldr r3, [r7, #4] + 801268c: 681b ldr r3, [r3, #0] + 801268e: 330c adds r3, #12 + 8012690: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 + 8012694: 61fa str r2, [r7, #28] + 8012696: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 801267c: 69b9 ldr r1, [r7, #24] - 801267e: 69fa ldr r2, [r7, #28] - 8012680: e841 2300 strex r3, r2, [r1] - 8012684: 617b str r3, [r7, #20] + 8012698: 69b9 ldr r1, [r7, #24] + 801269a: 69fa ldr r2, [r7, #28] + 801269c: e841 2300 strex r3, r2, [r1] + 80126a0: 617b str r3, [r7, #20] return(result); - 8012686: 697b ldr r3, [r7, #20] - 8012688: 2b00 cmp r3, #0 - 801268a: d1e3 bne.n 8012654 + 80126a2: 697b ldr r3, [r7, #20] + 80126a4: 2b00 cmp r3, #0 + 80126a6: d1e3 bne.n 8012670 /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 801268c: 687b ldr r3, [r7, #4] - 801268e: 2202 movs r2, #2 - 8012690: 635a str r2, [r3, #52] @ 0x34 + 80126a8: 687b ldr r3, [r7, #4] + 80126aa: 2202 movs r2, #2 + 80126ac: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxEventCallback(huart, nb_rx_data); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, nb_rx_data); - 8012692: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 8012696: 4619 mov r1, r3 - 8012698: 6878 ldr r0, [r7, #4] - 801269a: f7f9 ff87 bl 800c5ac + 80126ae: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 80126b2: 4619 mov r1, r3 + 80126b4: 6878 ldr r0, [r7, #4] + 80126b6: f7f9 ff87 bl 800c5c8 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return; - 801269e: e023 b.n 80126e8 + 80126ba: e023 b.n 8012704 } } /* UART in mode Transmitter ------------------------------------------------*/ if (((isrflags & USART_SR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) - 80126a0: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 80126a4: f003 0380 and.w r3, r3, #128 @ 0x80 - 80126a8: 2b00 cmp r3, #0 - 80126aa: d009 beq.n 80126c0 - 80126ac: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 80126b0: f003 0380 and.w r3, r3, #128 @ 0x80 - 80126b4: 2b00 cmp r3, #0 - 80126b6: d003 beq.n 80126c0 + 80126bc: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80126c0: f003 0380 and.w r3, r3, #128 @ 0x80 + 80126c4: 2b00 cmp r3, #0 + 80126c6: d009 beq.n 80126dc + 80126c8: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 80126cc: f003 0380 and.w r3, r3, #128 @ 0x80 + 80126d0: 2b00 cmp r3, #0 + 80126d2: d003 beq.n 80126dc { UART_Transmit_IT(huart); - 80126b8: 6878 ldr r0, [r7, #4] - 80126ba: f000 f9b9 bl 8012a30 + 80126d4: 6878 ldr r0, [r7, #4] + 80126d6: f000 f9b9 bl 8012a4c return; - 80126be: e014 b.n 80126ea + 80126da: e014 b.n 8012706 } /* UART in mode Transmitter end --------------------------------------------*/ if (((isrflags & USART_SR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) - 80126c0: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 80126c4: f003 0340 and.w r3, r3, #64 @ 0x40 - 80126c8: 2b00 cmp r3, #0 - 80126ca: d00e beq.n 80126ea - 80126cc: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 80126d0: f003 0340 and.w r3, r3, #64 @ 0x40 - 80126d4: 2b00 cmp r3, #0 - 80126d6: d008 beq.n 80126ea + 80126dc: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 80126e0: f003 0340 and.w r3, r3, #64 @ 0x40 + 80126e4: 2b00 cmp r3, #0 + 80126e6: d00e beq.n 8012706 + 80126e8: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 80126ec: f003 0340 and.w r3, r3, #64 @ 0x40 + 80126f0: 2b00 cmp r3, #0 + 80126f2: d008 beq.n 8012706 { UART_EndTransmit_IT(huart); - 80126d8: 6878 ldr r0, [r7, #4] - 80126da: f000 f9f8 bl 8012ace + 80126f4: 6878 ldr r0, [r7, #4] + 80126f6: f000 f9f8 bl 8012aea return; - 80126de: e004 b.n 80126ea + 80126fa: e004 b.n 8012706 return; - 80126e0: bf00 nop - 80126e2: e002 b.n 80126ea + 80126fc: bf00 nop + 80126fe: e002 b.n 8012706 return; - 80126e4: bf00 nop - 80126e6: e000 b.n 80126ea + 8012700: bf00 nop + 8012702: e000 b.n 8012706 return; - 80126e8: bf00 nop + 8012704: bf00 nop } } - 80126ea: 37e8 adds r7, #232 @ 0xe8 - 80126ec: 46bd mov sp, r7 - 80126ee: bd80 pop {r7, pc} + 8012706: 37e8 adds r7, #232 @ 0xe8 + 8012708: 46bd mov sp, r7 + 801270a: bd80 pop {r7, pc} -080126f0 : +0801270c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { - 80126f0: b480 push {r7} - 80126f2: b083 sub sp, #12 - 80126f4: af00 add r7, sp, #0 - 80126f6: 6078 str r0, [r7, #4] + 801270c: b480 push {r7} + 801270e: b083 sub sp, #12 + 8012710: af00 add r7, sp, #0 + 8012712: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_RxCpltCallback could be implemented in the user file */ } - 80126f8: bf00 nop - 80126fa: 370c adds r7, #12 - 80126fc: 46bd mov sp, r7 - 80126fe: bc80 pop {r7} - 8012700: 4770 bx lr + 8012714: bf00 nop + 8012716: 370c adds r7, #12 + 8012718: 46bd mov sp, r7 + 801271a: bc80 pop {r7} + 801271c: 4770 bx lr -08012702 : +0801271e : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) { - 8012702: b480 push {r7} - 8012704: b083 sub sp, #12 - 8012706: af00 add r7, sp, #0 - 8012708: 6078 str r0, [r7, #4] + 801271e: b480 push {r7} + 8012720: b083 sub sp, #12 + 8012722: af00 add r7, sp, #0 + 8012724: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_ErrorCallback could be implemented in the user file */ } - 801270a: bf00 nop - 801270c: 370c adds r7, #12 - 801270e: 46bd mov sp, r7 - 8012710: bc80 pop {r7} - 8012712: 4770 bx lr + 8012726: bf00 nop + 8012728: 370c adds r7, #12 + 801272a: 46bd mov sp, r7 + 801272c: bc80 pop {r7} + 801272e: 4770 bx lr -08012714 : +08012730 : * @brief UART Abort Complete callback. * @param huart UART handle. * @retval None */ __weak void HAL_UART_AbortCpltCallback(UART_HandleTypeDef *huart) { - 8012714: b480 push {r7} - 8012716: b083 sub sp, #12 - 8012718: af00 add r7, sp, #0 - 801271a: 6078 str r0, [r7, #4] + 8012730: b480 push {r7} + 8012732: b083 sub sp, #12 + 8012734: af00 add r7, sp, #0 + 8012736: 6078 str r0, [r7, #4] UNUSED(huart); /* NOTE : This function should not be modified, when the callback is needed, the HAL_UART_AbortCpltCallback can be implemented in the user file. */ } - 801271c: bf00 nop - 801271e: 370c adds r7, #12 - 8012720: 46bd mov sp, r7 - 8012722: bc80 pop {r7} - 8012724: 4770 bx lr + 8012738: bf00 nop + 801273a: 370c adds r7, #12 + 801273c: 46bd mov sp, r7 + 801273e: bc80 pop {r7} + 8012740: 4770 bx lr -08012726 : +08012742 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL state */ HAL_UART_StateTypeDef HAL_UART_GetState(const UART_HandleTypeDef *huart) { - 8012726: b480 push {r7} - 8012728: b085 sub sp, #20 - 801272a: af00 add r7, sp, #0 - 801272c: 6078 str r0, [r7, #4] + 8012742: b480 push {r7} + 8012744: b085 sub sp, #20 + 8012746: af00 add r7, sp, #0 + 8012748: 6078 str r0, [r7, #4] uint32_t temp1 = 0x00U, temp2 = 0x00U; - 801272e: 2300 movs r3, #0 - 8012730: 60fb str r3, [r7, #12] - 8012732: 2300 movs r3, #0 - 8012734: 60bb str r3, [r7, #8] + 801274a: 2300 movs r3, #0 + 801274c: 60fb str r3, [r7, #12] + 801274e: 2300 movs r3, #0 + 8012750: 60bb str r3, [r7, #8] temp1 = huart->gState; - 8012736: 687b ldr r3, [r7, #4] - 8012738: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 801273c: b2db uxtb r3, r3 - 801273e: 60fb str r3, [r7, #12] + 8012752: 687b ldr r3, [r7, #4] + 8012754: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8012758: b2db uxtb r3, r3 + 801275a: 60fb str r3, [r7, #12] temp2 = huart->RxState; - 8012740: 687b ldr r3, [r7, #4] - 8012742: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8012746: b2db uxtb r3, r3 - 8012748: 60bb str r3, [r7, #8] + 801275c: 687b ldr r3, [r7, #4] + 801275e: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8012762: b2db uxtb r3, r3 + 8012764: 60bb str r3, [r7, #8] return (HAL_UART_StateTypeDef)(temp1 | temp2); - 801274a: 68fb ldr r3, [r7, #12] - 801274c: b2da uxtb r2, r3 - 801274e: 68bb ldr r3, [r7, #8] - 8012750: b2db uxtb r3, r3 - 8012752: 4313 orrs r3, r2 - 8012754: b2db uxtb r3, r3 + 8012766: 68fb ldr r3, [r7, #12] + 8012768: b2da uxtb r2, r3 + 801276a: 68bb ldr r3, [r7, #8] + 801276c: b2db uxtb r3, r3 + 801276e: 4313 orrs r3, r2 + 8012770: b2db uxtb r3, r3 } - 8012756: 4618 mov r0, r3 - 8012758: 3714 adds r7, #20 - 801275a: 46bd mov sp, r7 - 801275c: bc80 pop {r7} - 801275e: 4770 bx lr + 8012772: 4618 mov r0, r3 + 8012774: 3714 adds r7, #20 + 8012776: 46bd mov sp, r7 + 8012778: bc80 pop {r7} + 801277a: 4770 bx lr -08012760 : +0801277c : * @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) { - 8012760: b580 push {r7, lr} - 8012762: b086 sub sp, #24 - 8012764: af00 add r7, sp, #0 - 8012766: 60f8 str r0, [r7, #12] - 8012768: 60b9 str r1, [r7, #8] - 801276a: 603b str r3, [r7, #0] - 801276c: 4613 mov r3, r2 - 801276e: 71fb strb r3, [r7, #7] + 801277c: b580 push {r7, lr} + 801277e: b086 sub sp, #24 + 8012780: af00 add r7, sp, #0 + 8012782: 60f8 str r0, [r7, #12] + 8012784: 60b9 str r1, [r7, #8] + 8012786: 603b str r3, [r7, #0] + 8012788: 4613 mov r3, r2 + 801278a: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8012770: e03b b.n 80127ea + 801278c: e03b b.n 8012806 { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8012772: 6a3b ldr r3, [r7, #32] - 8012774: f1b3 3fff cmp.w r3, #4294967295 - 8012778: d037 beq.n 80127ea + 801278e: 6a3b ldr r3, [r7, #32] + 8012790: f1b3 3fff cmp.w r3, #4294967295 + 8012794: d037 beq.n 8012806 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 801277a: f7fb f8ef bl 800d95c - 801277e: 4602 mov r2, r0 - 8012780: 683b ldr r3, [r7, #0] - 8012782: 1ad3 subs r3, r2, r3 - 8012784: 6a3a ldr r2, [r7, #32] - 8012786: 429a cmp r2, r3 - 8012788: d302 bcc.n 8012790 - 801278a: 6a3b ldr r3, [r7, #32] - 801278c: 2b00 cmp r3, #0 - 801278e: d101 bne.n 8012794 + 8012796: f7fb f8ef bl 800d978 + 801279a: 4602 mov r2, r0 + 801279c: 683b ldr r3, [r7, #0] + 801279e: 1ad3 subs r3, r2, r3 + 80127a0: 6a3a ldr r2, [r7, #32] + 80127a2: 429a cmp r2, r3 + 80127a4: d302 bcc.n 80127ac + 80127a6: 6a3b ldr r3, [r7, #32] + 80127a8: 2b00 cmp r3, #0 + 80127aa: d101 bne.n 80127b0 { return HAL_TIMEOUT; - 8012790: 2303 movs r3, #3 - 8012792: e03a b.n 801280a + 80127ac: 2303 movs r3, #3 + 80127ae: e03a b.n 8012826 } if ((READ_BIT(huart->Instance->CR1, USART_CR1_RE) != 0U) && (Flag != UART_FLAG_TXE) && (Flag != UART_FLAG_TC)) - 8012794: 68fb ldr r3, [r7, #12] - 8012796: 681b ldr r3, [r3, #0] - 8012798: 68db ldr r3, [r3, #12] - 801279a: f003 0304 and.w r3, r3, #4 - 801279e: 2b00 cmp r3, #0 - 80127a0: d023 beq.n 80127ea - 80127a2: 68bb ldr r3, [r7, #8] - 80127a4: 2b80 cmp r3, #128 @ 0x80 - 80127a6: d020 beq.n 80127ea - 80127a8: 68bb ldr r3, [r7, #8] - 80127aa: 2b40 cmp r3, #64 @ 0x40 - 80127ac: d01d beq.n 80127ea + 80127b0: 68fb ldr r3, [r7, #12] + 80127b2: 681b ldr r3, [r3, #0] + 80127b4: 68db ldr r3, [r3, #12] + 80127b6: f003 0304 and.w r3, r3, #4 + 80127ba: 2b00 cmp r3, #0 + 80127bc: d023 beq.n 8012806 + 80127be: 68bb ldr r3, [r7, #8] + 80127c0: 2b80 cmp r3, #128 @ 0x80 + 80127c2: d020 beq.n 8012806 + 80127c4: 68bb ldr r3, [r7, #8] + 80127c6: 2b40 cmp r3, #64 @ 0x40 + 80127c8: d01d beq.n 8012806 { if (__HAL_UART_GET_FLAG(huart, UART_FLAG_ORE) == SET) - 80127ae: 68fb ldr r3, [r7, #12] - 80127b0: 681b ldr r3, [r3, #0] - 80127b2: 681b ldr r3, [r3, #0] - 80127b4: f003 0308 and.w r3, r3, #8 - 80127b8: 2b08 cmp r3, #8 - 80127ba: d116 bne.n 80127ea + 80127ca: 68fb ldr r3, [r7, #12] + 80127cc: 681b ldr r3, [r3, #0] + 80127ce: 681b ldr r3, [r3, #0] + 80127d0: f003 0308 and.w r3, r3, #8 + 80127d4: 2b08 cmp r3, #8 + 80127d6: d116 bne.n 8012806 { /* Clear Overrun Error flag*/ __HAL_UART_CLEAR_OREFLAG(huart); - 80127bc: 2300 movs r3, #0 - 80127be: 617b str r3, [r7, #20] - 80127c0: 68fb ldr r3, [r7, #12] - 80127c2: 681b ldr r3, [r3, #0] - 80127c4: 681b ldr r3, [r3, #0] - 80127c6: 617b str r3, [r7, #20] - 80127c8: 68fb ldr r3, [r7, #12] - 80127ca: 681b ldr r3, [r3, #0] - 80127cc: 685b ldr r3, [r3, #4] - 80127ce: 617b str r3, [r7, #20] - 80127d0: 697b ldr r3, [r7, #20] + 80127d8: 2300 movs r3, #0 + 80127da: 617b str r3, [r7, #20] + 80127dc: 68fb ldr r3, [r7, #12] + 80127de: 681b ldr r3, [r3, #0] + 80127e0: 681b ldr r3, [r3, #0] + 80127e2: 617b str r3, [r7, #20] + 80127e4: 68fb ldr r3, [r7, #12] + 80127e6: 681b ldr r3, [r3, #0] + 80127e8: 685b ldr r3, [r3, #4] + 80127ea: 617b str r3, [r7, #20] + 80127ec: 697b ldr r3, [r7, #20] /* Blocking error : transfer is aborted Set the UART state ready to be able to start again the process, Disable Rx Interrupts if ongoing */ UART_EndRxTransfer(huart); - 80127d2: 68f8 ldr r0, [r7, #12] - 80127d4: f000 f856 bl 8012884 + 80127ee: 68f8 ldr r0, [r7, #12] + 80127f0: f000 f856 bl 80128a0 huart->ErrorCode = HAL_UART_ERROR_ORE; - 80127d8: 68fb ldr r3, [r7, #12] - 80127da: 2208 movs r2, #8 - 80127dc: 645a str r2, [r3, #68] @ 0x44 + 80127f4: 68fb ldr r3, [r7, #12] + 80127f6: 2208 movs r2, #8 + 80127f8: 645a str r2, [r3, #68] @ 0x44 /* Process Unlocked */ __HAL_UNLOCK(huart); - 80127de: 68fb ldr r3, [r7, #12] - 80127e0: 2200 movs r2, #0 - 80127e2: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 80127fa: 68fb ldr r3, [r7, #12] + 80127fc: 2200 movs r2, #0 + 80127fe: f883 2040 strb.w r2, [r3, #64] @ 0x40 return HAL_ERROR; - 80127e6: 2301 movs r3, #1 - 80127e8: e00f b.n 801280a + 8012802: 2301 movs r3, #1 + 8012804: e00f b.n 8012826 while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 80127ea: 68fb ldr r3, [r7, #12] - 80127ec: 681b ldr r3, [r3, #0] - 80127ee: 681a ldr r2, [r3, #0] - 80127f0: 68bb ldr r3, [r7, #8] - 80127f2: 4013 ands r3, r2 - 80127f4: 68ba ldr r2, [r7, #8] - 80127f6: 429a cmp r2, r3 - 80127f8: bf0c ite eq - 80127fa: 2301 moveq r3, #1 - 80127fc: 2300 movne r3, #0 - 80127fe: b2db uxtb r3, r3 - 8012800: 461a mov r2, r3 - 8012802: 79fb ldrb r3, [r7, #7] - 8012804: 429a cmp r2, r3 - 8012806: d0b4 beq.n 8012772 + 8012806: 68fb ldr r3, [r7, #12] + 8012808: 681b ldr r3, [r3, #0] + 801280a: 681a ldr r2, [r3, #0] + 801280c: 68bb ldr r3, [r7, #8] + 801280e: 4013 ands r3, r2 + 8012810: 68ba ldr r2, [r7, #8] + 8012812: 429a cmp r2, r3 + 8012814: bf0c ite eq + 8012816: 2301 moveq r3, #1 + 8012818: 2300 movne r3, #0 + 801281a: b2db uxtb r3, r3 + 801281c: 461a mov r2, r3 + 801281e: 79fb ldrb r3, [r7, #7] + 8012820: 429a cmp r2, r3 + 8012822: d0b4 beq.n 801278e } } } } return HAL_OK; - 8012808: 2300 movs r3, #0 + 8012824: 2300 movs r3, #0 } - 801280a: 4618 mov r0, r3 - 801280c: 3718 adds r7, #24 - 801280e: 46bd mov sp, r7 - 8012810: bd80 pop {r7, pc} + 8012826: 4618 mov r0, r3 + 8012828: 3718 adds r7, #24 + 801282a: 46bd mov sp, r7 + 801282c: bd80 pop {r7, pc} -08012812 : +0801282e : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be received. * @retval HAL status */ HAL_StatusTypeDef UART_Start_Receive_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 8012812: b480 push {r7} - 8012814: b085 sub sp, #20 - 8012816: af00 add r7, sp, #0 - 8012818: 60f8 str r0, [r7, #12] - 801281a: 60b9 str r1, [r7, #8] - 801281c: 4613 mov r3, r2 - 801281e: 80fb strh r3, [r7, #6] + 801282e: b480 push {r7} + 8012830: b085 sub sp, #20 + 8012832: af00 add r7, sp, #0 + 8012834: 60f8 str r0, [r7, #12] + 8012836: 60b9 str r1, [r7, #8] + 8012838: 4613 mov r3, r2 + 801283a: 80fb strh r3, [r7, #6] huart->pRxBuffPtr = pData; - 8012820: 68fb ldr r3, [r7, #12] - 8012822: 68ba ldr r2, [r7, #8] - 8012824: 629a str r2, [r3, #40] @ 0x28 + 801283c: 68fb ldr r3, [r7, #12] + 801283e: 68ba ldr r2, [r7, #8] + 8012840: 629a str r2, [r3, #40] @ 0x28 huart->RxXferSize = Size; - 8012826: 68fb ldr r3, [r7, #12] - 8012828: 88fa ldrh r2, [r7, #6] - 801282a: 859a strh r2, [r3, #44] @ 0x2c + 8012842: 68fb ldr r3, [r7, #12] + 8012844: 88fa ldrh r2, [r7, #6] + 8012846: 859a strh r2, [r3, #44] @ 0x2c huart->RxXferCount = Size; - 801282c: 68fb ldr r3, [r7, #12] - 801282e: 88fa ldrh r2, [r7, #6] - 8012830: 85da strh r2, [r3, #46] @ 0x2e + 8012848: 68fb ldr r3, [r7, #12] + 801284a: 88fa ldrh r2, [r7, #6] + 801284c: 85da strh r2, [r3, #46] @ 0x2e huart->ErrorCode = HAL_UART_ERROR_NONE; - 8012832: 68fb ldr r3, [r7, #12] - 8012834: 2200 movs r2, #0 - 8012836: 645a str r2, [r3, #68] @ 0x44 + 801284e: 68fb ldr r3, [r7, #12] + 8012850: 2200 movs r2, #0 + 8012852: 645a str r2, [r3, #68] @ 0x44 huart->RxState = HAL_UART_STATE_BUSY_RX; - 8012838: 68fb ldr r3, [r7, #12] - 801283a: 2222 movs r2, #34 @ 0x22 - 801283c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8012854: 68fb ldr r3, [r7, #12] + 8012856: 2222 movs r2, #34 @ 0x22 + 8012858: f883 2042 strb.w r2, [r3, #66] @ 0x42 if (huart->Init.Parity != UART_PARITY_NONE) - 8012840: 68fb ldr r3, [r7, #12] - 8012842: 691b ldr r3, [r3, #16] - 8012844: 2b00 cmp r3, #0 - 8012846: d007 beq.n 8012858 + 801285c: 68fb ldr r3, [r7, #12] + 801285e: 691b ldr r3, [r3, #16] + 8012860: 2b00 cmp r3, #0 + 8012862: d007 beq.n 8012874 { /* Enable the UART Parity Error Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_PE); - 8012848: 68fb ldr r3, [r7, #12] - 801284a: 681b ldr r3, [r3, #0] - 801284c: 68da ldr r2, [r3, #12] - 801284e: 68fb ldr r3, [r7, #12] - 8012850: 681b ldr r3, [r3, #0] - 8012852: f442 7280 orr.w r2, r2, #256 @ 0x100 - 8012856: 60da str r2, [r3, #12] + 8012864: 68fb ldr r3, [r7, #12] + 8012866: 681b ldr r3, [r3, #0] + 8012868: 68da ldr r2, [r3, #12] + 801286a: 68fb ldr r3, [r7, #12] + 801286c: 681b ldr r3, [r3, #0] + 801286e: f442 7280 orr.w r2, r2, #256 @ 0x100 + 8012872: 60da str r2, [r3, #12] } /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ __HAL_UART_ENABLE_IT(huart, UART_IT_ERR); - 8012858: 68fb ldr r3, [r7, #12] - 801285a: 681b ldr r3, [r3, #0] - 801285c: 695a ldr r2, [r3, #20] - 801285e: 68fb ldr r3, [r7, #12] - 8012860: 681b ldr r3, [r3, #0] - 8012862: f042 0201 orr.w r2, r2, #1 - 8012866: 615a str r2, [r3, #20] + 8012874: 68fb ldr r3, [r7, #12] + 8012876: 681b ldr r3, [r3, #0] + 8012878: 695a ldr r2, [r3, #20] + 801287a: 68fb ldr r3, [r7, #12] + 801287c: 681b ldr r3, [r3, #0] + 801287e: f042 0201 orr.w r2, r2, #1 + 8012882: 615a str r2, [r3, #20] /* Enable the UART Data Register not empty Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_RXNE); - 8012868: 68fb ldr r3, [r7, #12] - 801286a: 681b ldr r3, [r3, #0] - 801286c: 68da ldr r2, [r3, #12] - 801286e: 68fb ldr r3, [r7, #12] - 8012870: 681b ldr r3, [r3, #0] - 8012872: f042 0220 orr.w r2, r2, #32 - 8012876: 60da str r2, [r3, #12] + 8012884: 68fb ldr r3, [r7, #12] + 8012886: 681b ldr r3, [r3, #0] + 8012888: 68da ldr r2, [r3, #12] + 801288a: 68fb ldr r3, [r7, #12] + 801288c: 681b ldr r3, [r3, #0] + 801288e: f042 0220 orr.w r2, r2, #32 + 8012892: 60da str r2, [r3, #12] return HAL_OK; - 8012878: 2300 movs r3, #0 + 8012894: 2300 movs r3, #0 } - 801287a: 4618 mov r0, r3 - 801287c: 3714 adds r7, #20 - 801287e: 46bd mov sp, r7 - 8012880: bc80 pop {r7} - 8012882: 4770 bx lr + 8012896: 4618 mov r0, r3 + 8012898: 3714 adds r7, #20 + 801289a: 46bd mov sp, r7 + 801289c: bc80 pop {r7} + 801289e: 4770 bx lr -08012884 : +080128a0 : * @brief End ongoing Rx transfer on UART peripheral (following error detection or Reception completion). * @param huart UART handle. * @retval None */ static void UART_EndRxTransfer(UART_HandleTypeDef *huart) { - 8012884: b480 push {r7} - 8012886: b095 sub sp, #84 @ 0x54 - 8012888: af00 add r7, sp, #0 - 801288a: 6078 str r0, [r7, #4] + 80128a0: b480 push {r7} + 80128a2: b095 sub sp, #84 @ 0x54 + 80128a4: af00 add r7, sp, #0 + 80128a6: 6078 str r0, [r7, #4] /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 801288c: 687b ldr r3, [r7, #4] - 801288e: 681b ldr r3, [r3, #0] - 8012890: 330c adds r3, #12 - 8012892: 637b str r3, [r7, #52] @ 0x34 + 80128a8: 687b ldr r3, [r7, #4] + 80128aa: 681b ldr r3, [r3, #0] + 80128ac: 330c adds r3, #12 + 80128ae: 637b str r3, [r7, #52] @ 0x34 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012894: 6b7b ldr r3, [r7, #52] @ 0x34 - 8012896: e853 3f00 ldrex r3, [r3] - 801289a: 633b str r3, [r7, #48] @ 0x30 + 80128b0: 6b7b ldr r3, [r7, #52] @ 0x34 + 80128b2: e853 3f00 ldrex r3, [r3] + 80128b6: 633b str r3, [r7, #48] @ 0x30 return(result); - 801289c: 6b3b ldr r3, [r7, #48] @ 0x30 - 801289e: f423 7390 bic.w r3, r3, #288 @ 0x120 - 80128a2: 64fb str r3, [r7, #76] @ 0x4c - 80128a4: 687b ldr r3, [r7, #4] - 80128a6: 681b ldr r3, [r3, #0] - 80128a8: 330c adds r3, #12 - 80128aa: 6cfa ldr r2, [r7, #76] @ 0x4c - 80128ac: 643a str r2, [r7, #64] @ 0x40 - 80128ae: 63fb str r3, [r7, #60] @ 0x3c - __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80128b0: 6bf9 ldr r1, [r7, #60] @ 0x3c - 80128b2: 6c3a ldr r2, [r7, #64] @ 0x40 - 80128b4: e841 2300 strex r3, r2, [r1] - 80128b8: 63bb str r3, [r7, #56] @ 0x38 - return(result); - 80128ba: 6bbb ldr r3, [r7, #56] @ 0x38 - 80128bc: 2b00 cmp r3, #0 - 80128be: d1e5 bne.n 801288c - ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + 80128b8: 6b3b ldr r3, [r7, #48] @ 0x30 + 80128ba: f423 7390 bic.w r3, r3, #288 @ 0x120 + 80128be: 64fb str r3, [r7, #76] @ 0x4c 80128c0: 687b ldr r3, [r7, #4] 80128c2: 681b ldr r3, [r3, #0] - 80128c4: 3314 adds r3, #20 - 80128c6: 623b str r3, [r7, #32] - __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80128c8: 6a3b ldr r3, [r7, #32] - 80128ca: e853 3f00 ldrex r3, [r3] - 80128ce: 61fb str r3, [r7, #28] - return(result); - 80128d0: 69fb ldr r3, [r7, #28] - 80128d2: f023 0301 bic.w r3, r3, #1 - 80128d6: 64bb str r3, [r7, #72] @ 0x48 - 80128d8: 687b ldr r3, [r7, #4] - 80128da: 681b ldr r3, [r3, #0] - 80128dc: 3314 adds r3, #20 - 80128de: 6cba ldr r2, [r7, #72] @ 0x48 - 80128e0: 62fa str r2, [r7, #44] @ 0x2c - 80128e2: 62bb str r3, [r7, #40] @ 0x28 + 80128c4: 330c adds r3, #12 + 80128c6: 6cfa ldr r2, [r7, #76] @ 0x4c + 80128c8: 643a str r2, [r7, #64] @ 0x40 + 80128ca: 63fb str r3, [r7, #60] @ 0x3c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80128e4: 6ab9 ldr r1, [r7, #40] @ 0x28 - 80128e6: 6afa ldr r2, [r7, #44] @ 0x2c - 80128e8: e841 2300 strex r3, r2, [r1] - 80128ec: 627b str r3, [r7, #36] @ 0x24 + 80128cc: 6bf9 ldr r1, [r7, #60] @ 0x3c + 80128ce: 6c3a ldr r2, [r7, #64] @ 0x40 + 80128d0: e841 2300 strex r3, r2, [r1] + 80128d4: 63bb str r3, [r7, #56] @ 0x38 return(result); - 80128ee: 6a7b ldr r3, [r7, #36] @ 0x24 - 80128f0: 2b00 cmp r3, #0 - 80128f2: d1e5 bne.n 80128c0 + 80128d6: 6bbb ldr r3, [r7, #56] @ 0x38 + 80128d8: 2b00 cmp r3, #0 + 80128da: d1e5 bne.n 80128a8 + ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); + 80128dc: 687b ldr r3, [r7, #4] + 80128de: 681b ldr r3, [r3, #0] + 80128e0: 3314 adds r3, #20 + 80128e2: 623b str r3, [r7, #32] + __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); + 80128e4: 6a3b ldr r3, [r7, #32] + 80128e6: e853 3f00 ldrex r3, [r3] + 80128ea: 61fb str r3, [r7, #28] + return(result); + 80128ec: 69fb ldr r3, [r7, #28] + 80128ee: f023 0301 bic.w r3, r3, #1 + 80128f2: 64bb str r3, [r7, #72] @ 0x48 + 80128f4: 687b ldr r3, [r7, #4] + 80128f6: 681b ldr r3, [r3, #0] + 80128f8: 3314 adds r3, #20 + 80128fa: 6cba ldr r2, [r7, #72] @ 0x48 + 80128fc: 62fa str r2, [r7, #44] @ 0x2c + 80128fe: 62bb str r3, [r7, #40] @ 0x28 + __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); + 8012900: 6ab9 ldr r1, [r7, #40] @ 0x28 + 8012902: 6afa ldr r2, [r7, #44] @ 0x2c + 8012904: e841 2300 strex r3, r2, [r1] + 8012908: 627b str r3, [r7, #36] @ 0x24 + return(result); + 801290a: 6a7b ldr r3, [r7, #36] @ 0x24 + 801290c: 2b00 cmp r3, #0 + 801290e: d1e5 bne.n 80128dc /* In case of reception waiting for IDLE event, disable also the IDLE IE interrupt source */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 80128f4: 687b ldr r3, [r7, #4] - 80128f6: 6b1b ldr r3, [r3, #48] @ 0x30 - 80128f8: 2b01 cmp r3, #1 - 80128fa: d119 bne.n 8012930 + 8012910: 687b ldr r3, [r7, #4] + 8012912: 6b1b ldr r3, [r3, #48] @ 0x30 + 8012914: 2b01 cmp r3, #1 + 8012916: d119 bne.n 801294c { ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 80128fc: 687b ldr r3, [r7, #4] - 80128fe: 681b ldr r3, [r3, #0] - 8012900: 330c adds r3, #12 - 8012902: 60fb str r3, [r7, #12] + 8012918: 687b ldr r3, [r7, #4] + 801291a: 681b ldr r3, [r3, #0] + 801291c: 330c adds r3, #12 + 801291e: 60fb str r3, [r7, #12] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012904: 68fb ldr r3, [r7, #12] - 8012906: e853 3f00 ldrex r3, [r3] - 801290a: 60bb str r3, [r7, #8] + 8012920: 68fb ldr r3, [r7, #12] + 8012922: e853 3f00 ldrex r3, [r3] + 8012926: 60bb str r3, [r7, #8] return(result); - 801290c: 68bb ldr r3, [r7, #8] - 801290e: f023 0310 bic.w r3, r3, #16 - 8012912: 647b str r3, [r7, #68] @ 0x44 - 8012914: 687b ldr r3, [r7, #4] - 8012916: 681b ldr r3, [r3, #0] - 8012918: 330c adds r3, #12 - 801291a: 6c7a ldr r2, [r7, #68] @ 0x44 - 801291c: 61ba str r2, [r7, #24] - 801291e: 617b str r3, [r7, #20] + 8012928: 68bb ldr r3, [r7, #8] + 801292a: f023 0310 bic.w r3, r3, #16 + 801292e: 647b str r3, [r7, #68] @ 0x44 + 8012930: 687b ldr r3, [r7, #4] + 8012932: 681b ldr r3, [r3, #0] + 8012934: 330c adds r3, #12 + 8012936: 6c7a ldr r2, [r7, #68] @ 0x44 + 8012938: 61ba str r2, [r7, #24] + 801293a: 617b str r3, [r7, #20] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8012920: 6979 ldr r1, [r7, #20] - 8012922: 69ba ldr r2, [r7, #24] - 8012924: e841 2300 strex r3, r2, [r1] - 8012928: 613b str r3, [r7, #16] + 801293c: 6979 ldr r1, [r7, #20] + 801293e: 69ba ldr r2, [r7, #24] + 8012940: e841 2300 strex r3, r2, [r1] + 8012944: 613b str r3, [r7, #16] return(result); - 801292a: 693b ldr r3, [r7, #16] - 801292c: 2b00 cmp r3, #0 - 801292e: d1e5 bne.n 80128fc + 8012946: 693b ldr r3, [r7, #16] + 8012948: 2b00 cmp r3, #0 + 801294a: d1e5 bne.n 8012918 } /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8012930: 687b ldr r3, [r7, #4] - 8012932: 2220 movs r2, #32 - 8012934: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 801294c: 687b ldr r3, [r7, #4] + 801294e: 2220 movs r2, #32 + 8012950: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8012938: 687b ldr r3, [r7, #4] - 801293a: 2200 movs r2, #0 - 801293c: 631a str r2, [r3, #48] @ 0x30 + 8012954: 687b ldr r3, [r7, #4] + 8012956: 2200 movs r2, #0 + 8012958: 631a str r2, [r3, #48] @ 0x30 } - 801293e: bf00 nop - 8012940: 3754 adds r7, #84 @ 0x54 - 8012942: 46bd mov sp, r7 - 8012944: bc80 pop {r7} - 8012946: 4770 bx lr + 801295a: bf00 nop + 801295c: 3754 adds r7, #84 @ 0x54 + 801295e: 46bd mov sp, r7 + 8012960: bc80 pop {r7} + 8012962: 4770 bx lr -08012948 : +08012964 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAAbortOnError(DMA_HandleTypeDef *hdma) { - 8012948: b580 push {r7, lr} - 801294a: b084 sub sp, #16 - 801294c: af00 add r7, sp, #0 - 801294e: 6078 str r0, [r7, #4] + 8012964: b580 push {r7, lr} + 8012966: b084 sub sp, #16 + 8012968: af00 add r7, sp, #0 + 801296a: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8012950: 687b ldr r3, [r7, #4] - 8012952: 6a5b ldr r3, [r3, #36] @ 0x24 - 8012954: 60fb str r3, [r7, #12] + 801296c: 687b ldr r3, [r7, #4] + 801296e: 6a5b ldr r3, [r3, #36] @ 0x24 + 8012970: 60fb str r3, [r7, #12] huart->RxXferCount = 0x00U; - 8012956: 68fb ldr r3, [r7, #12] - 8012958: 2200 movs r2, #0 - 801295a: 85da strh r2, [r3, #46] @ 0x2e + 8012972: 68fb ldr r3, [r7, #12] + 8012974: 2200 movs r2, #0 + 8012976: 85da strh r2, [r3, #46] @ 0x2e huart->TxXferCount = 0x00U; - 801295c: 68fb ldr r3, [r7, #12] - 801295e: 2200 movs r2, #0 - 8012960: 84da strh r2, [r3, #38] @ 0x26 + 8012978: 68fb ldr r3, [r7, #12] + 801297a: 2200 movs r2, #0 + 801297c: 84da strh r2, [r3, #38] @ 0x26 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8012962: 68f8 ldr r0, [r7, #12] - 8012964: f7ff fecd bl 8012702 + 801297e: 68f8 ldr r0, [r7, #12] + 8012980: f7ff fecd bl 801271e #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 8012968: bf00 nop - 801296a: 3710 adds r7, #16 - 801296c: 46bd mov sp, r7 - 801296e: bd80 pop {r7, pc} + 8012984: bf00 nop + 8012986: 3710 adds r7, #16 + 8012988: 46bd mov sp, r7 + 801298a: bd80 pop {r7, pc} -08012970 : +0801298c : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMATxAbortCallback(DMA_HandleTypeDef *hdma) { - 8012970: b580 push {r7, lr} - 8012972: b084 sub sp, #16 - 8012974: af00 add r7, sp, #0 - 8012976: 6078 str r0, [r7, #4] + 801298c: b580 push {r7, lr} + 801298e: b084 sub sp, #16 + 8012990: af00 add r7, sp, #0 + 8012992: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8012978: 687b ldr r3, [r7, #4] - 801297a: 6a5b ldr r3, [r3, #36] @ 0x24 - 801297c: 60fb str r3, [r7, #12] + 8012994: 687b ldr r3, [r7, #4] + 8012996: 6a5b ldr r3, [r3, #36] @ 0x24 + 8012998: 60fb str r3, [r7, #12] huart->hdmatx->XferAbortCallback = NULL; - 801297e: 68fb ldr r3, [r7, #12] - 8012980: 6b9b ldr r3, [r3, #56] @ 0x38 - 8012982: 2200 movs r2, #0 - 8012984: 635a str r2, [r3, #52] @ 0x34 + 801299a: 68fb ldr r3, [r7, #12] + 801299c: 6b9b ldr r3, [r3, #56] @ 0x38 + 801299e: 2200 movs r2, #0 + 80129a0: 635a str r2, [r3, #52] @ 0x34 /* Check if an Abort process is still ongoing */ if (huart->hdmarx != NULL) - 8012986: 68fb ldr r3, [r7, #12] - 8012988: 6bdb ldr r3, [r3, #60] @ 0x3c - 801298a: 2b00 cmp r3, #0 - 801298c: d004 beq.n 8012998 + 80129a2: 68fb ldr r3, [r7, #12] + 80129a4: 6bdb ldr r3, [r3, #60] @ 0x3c + 80129a6: 2b00 cmp r3, #0 + 80129a8: d004 beq.n 80129b4 { if (huart->hdmarx->XferAbortCallback != NULL) - 801298e: 68fb ldr r3, [r7, #12] - 8012990: 6bdb ldr r3, [r3, #60] @ 0x3c - 8012992: 6b5b ldr r3, [r3, #52] @ 0x34 - 8012994: 2b00 cmp r3, #0 - 8012996: d117 bne.n 80129c8 + 80129aa: 68fb ldr r3, [r7, #12] + 80129ac: 6bdb ldr r3, [r3, #60] @ 0x3c + 80129ae: 6b5b ldr r3, [r3, #52] @ 0x34 + 80129b0: 2b00 cmp r3, #0 + 80129b2: d117 bne.n 80129e4 return; } } /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ huart->TxXferCount = 0x00U; - 8012998: 68fb ldr r3, [r7, #12] - 801299a: 2200 movs r2, #0 - 801299c: 84da strh r2, [r3, #38] @ 0x26 + 80129b4: 68fb ldr r3, [r7, #12] + 80129b6: 2200 movs r2, #0 + 80129b8: 84da strh r2, [r3, #38] @ 0x26 huart->RxXferCount = 0x00U; - 801299e: 68fb ldr r3, [r7, #12] - 80129a0: 2200 movs r2, #0 - 80129a2: 85da strh r2, [r3, #46] @ 0x2e + 80129ba: 68fb ldr r3, [r7, #12] + 80129bc: 2200 movs r2, #0 + 80129be: 85da strh r2, [r3, #46] @ 0x2e /* Reset ErrorCode */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 80129a4: 68fb ldr r3, [r7, #12] - 80129a6: 2200 movs r2, #0 - 80129a8: 645a str r2, [r3, #68] @ 0x44 + 80129c0: 68fb ldr r3, [r7, #12] + 80129c2: 2200 movs r2, #0 + 80129c4: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->gState and huart->RxState to Ready */ huart->gState = HAL_UART_STATE_READY; - 80129aa: 68fb ldr r3, [r7, #12] - 80129ac: 2220 movs r2, #32 - 80129ae: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 80129c6: 68fb ldr r3, [r7, #12] + 80129c8: 2220 movs r2, #32 + 80129ca: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 80129b2: 68fb ldr r3, [r7, #12] - 80129b4: 2220 movs r2, #32 - 80129b6: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80129ce: 68fb ldr r3, [r7, #12] + 80129d0: 2220 movs r2, #32 + 80129d2: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 80129ba: 68fb ldr r3, [r7, #12] - 80129bc: 2200 movs r2, #0 - 80129be: 631a str r2, [r3, #48] @ 0x30 + 80129d6: 68fb ldr r3, [r7, #12] + 80129d8: 2200 movs r2, #0 + 80129da: 631a str r2, [r3, #48] @ 0x30 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /* Call registered Abort complete callback */ huart->AbortCpltCallback(huart); #else /* Call legacy weak Abort complete callback */ HAL_UART_AbortCpltCallback(huart); - 80129c0: 68f8 ldr r0, [r7, #12] - 80129c2: f7ff fea7 bl 8012714 - 80129c6: e000 b.n 80129ca + 80129dc: 68f8 ldr r0, [r7, #12] + 80129de: f7ff fea7 bl 8012730 + 80129e2: e000 b.n 80129e6 return; - 80129c8: bf00 nop + 80129e4: bf00 nop #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 80129ca: 3710 adds r7, #16 - 80129cc: 46bd mov sp, r7 - 80129ce: bd80 pop {r7, pc} + 80129e6: 3710 adds r7, #16 + 80129e8: 46bd mov sp, r7 + 80129ea: bd80 pop {r7, pc} -080129d0 : +080129ec : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMARxAbortCallback(DMA_HandleTypeDef *hdma) { - 80129d0: b580 push {r7, lr} - 80129d2: b084 sub sp, #16 - 80129d4: af00 add r7, sp, #0 - 80129d6: 6078 str r0, [r7, #4] + 80129ec: b580 push {r7, lr} + 80129ee: b084 sub sp, #16 + 80129f0: af00 add r7, sp, #0 + 80129f2: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 80129d8: 687b ldr r3, [r7, #4] - 80129da: 6a5b ldr r3, [r3, #36] @ 0x24 - 80129dc: 60fb str r3, [r7, #12] + 80129f4: 687b ldr r3, [r7, #4] + 80129f6: 6a5b ldr r3, [r3, #36] @ 0x24 + 80129f8: 60fb str r3, [r7, #12] huart->hdmarx->XferAbortCallback = NULL; - 80129de: 68fb ldr r3, [r7, #12] - 80129e0: 6bdb ldr r3, [r3, #60] @ 0x3c - 80129e2: 2200 movs r2, #0 - 80129e4: 635a str r2, [r3, #52] @ 0x34 + 80129fa: 68fb ldr r3, [r7, #12] + 80129fc: 6bdb ldr r3, [r3, #60] @ 0x3c + 80129fe: 2200 movs r2, #0 + 8012a00: 635a str r2, [r3, #52] @ 0x34 /* Check if an Abort process is still ongoing */ if (huart->hdmatx != NULL) - 80129e6: 68fb ldr r3, [r7, #12] - 80129e8: 6b9b ldr r3, [r3, #56] @ 0x38 - 80129ea: 2b00 cmp r3, #0 - 80129ec: d004 beq.n 80129f8 + 8012a02: 68fb ldr r3, [r7, #12] + 8012a04: 6b9b ldr r3, [r3, #56] @ 0x38 + 8012a06: 2b00 cmp r3, #0 + 8012a08: d004 beq.n 8012a14 { if (huart->hdmatx->XferAbortCallback != NULL) - 80129ee: 68fb ldr r3, [r7, #12] - 80129f0: 6b9b ldr r3, [r3, #56] @ 0x38 - 80129f2: 6b5b ldr r3, [r3, #52] @ 0x34 - 80129f4: 2b00 cmp r3, #0 - 80129f6: d117 bne.n 8012a28 + 8012a0a: 68fb ldr r3, [r7, #12] + 8012a0c: 6b9b ldr r3, [r3, #56] @ 0x38 + 8012a0e: 6b5b ldr r3, [r3, #52] @ 0x34 + 8012a10: 2b00 cmp r3, #0 + 8012a12: d117 bne.n 8012a44 return; } } /* No Abort process still ongoing : All DMA channels are aborted, call user Abort Complete callback */ huart->TxXferCount = 0x00U; - 80129f8: 68fb ldr r3, [r7, #12] - 80129fa: 2200 movs r2, #0 - 80129fc: 84da strh r2, [r3, #38] @ 0x26 + 8012a14: 68fb ldr r3, [r7, #12] + 8012a16: 2200 movs r2, #0 + 8012a18: 84da strh r2, [r3, #38] @ 0x26 huart->RxXferCount = 0x00U; - 80129fe: 68fb ldr r3, [r7, #12] - 8012a00: 2200 movs r2, #0 - 8012a02: 85da strh r2, [r3, #46] @ 0x2e + 8012a1a: 68fb ldr r3, [r7, #12] + 8012a1c: 2200 movs r2, #0 + 8012a1e: 85da strh r2, [r3, #46] @ 0x2e /* Reset ErrorCode */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8012a04: 68fb ldr r3, [r7, #12] - 8012a06: 2200 movs r2, #0 - 8012a08: 645a str r2, [r3, #68] @ 0x44 + 8012a20: 68fb ldr r3, [r7, #12] + 8012a22: 2200 movs r2, #0 + 8012a24: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->gState and huart->RxState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8012a0a: 68fb ldr r3, [r7, #12] - 8012a0c: 2220 movs r2, #32 - 8012a0e: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8012a26: 68fb ldr r3, [r7, #12] + 8012a28: 2220 movs r2, #32 + 8012a2a: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 8012a12: 68fb ldr r3, [r7, #12] - 8012a14: 2220 movs r2, #32 - 8012a16: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8012a2e: 68fb ldr r3, [r7, #12] + 8012a30: 2220 movs r2, #32 + 8012a32: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8012a1a: 68fb ldr r3, [r7, #12] - 8012a1c: 2200 movs r2, #0 - 8012a1e: 631a str r2, [r3, #48] @ 0x30 + 8012a36: 68fb ldr r3, [r7, #12] + 8012a38: 2200 movs r2, #0 + 8012a3a: 631a str r2, [r3, #48] @ 0x30 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /* Call registered Abort complete callback */ huart->AbortCpltCallback(huart); #else /* Call legacy weak Abort complete callback */ HAL_UART_AbortCpltCallback(huart); - 8012a20: 68f8 ldr r0, [r7, #12] - 8012a22: f7ff fe77 bl 8012714 - 8012a26: e000 b.n 8012a2a + 8012a3c: 68f8 ldr r0, [r7, #12] + 8012a3e: f7ff fe77 bl 8012730 + 8012a42: e000 b.n 8012a46 return; - 8012a28: bf00 nop + 8012a44: bf00 nop #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 8012a2a: 3710 adds r7, #16 - 8012a2c: 46bd mov sp, r7 - 8012a2e: bd80 pop {r7, pc} + 8012a46: 3710 adds r7, #16 + 8012a48: 46bd mov sp, r7 + 8012a4a: bd80 pop {r7, pc} -08012a30 : +08012a4c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Transmit_IT(UART_HandleTypeDef *huart) { - 8012a30: b480 push {r7} - 8012a32: b085 sub sp, #20 - 8012a34: af00 add r7, sp, #0 - 8012a36: 6078 str r0, [r7, #4] + 8012a4c: b480 push {r7} + 8012a4e: b085 sub sp, #20 + 8012a50: af00 add r7, sp, #0 + 8012a52: 6078 str r0, [r7, #4] const uint16_t *tmp; /* Check that a Tx process is ongoing */ if (huart->gState == HAL_UART_STATE_BUSY_TX) - 8012a38: 687b ldr r3, [r7, #4] - 8012a3a: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8012a3e: b2db uxtb r3, r3 - 8012a40: 2b21 cmp r3, #33 @ 0x21 - 8012a42: d13e bne.n 8012ac2 + 8012a54: 687b ldr r3, [r7, #4] + 8012a56: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8012a5a: b2db uxtb r3, r3 + 8012a5c: 2b21 cmp r3, #33 @ 0x21 + 8012a5e: d13e bne.n 8012ade { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8012a44: 687b ldr r3, [r7, #4] - 8012a46: 689b ldr r3, [r3, #8] - 8012a48: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8012a4c: d114 bne.n 8012a78 - 8012a4e: 687b ldr r3, [r7, #4] - 8012a50: 691b ldr r3, [r3, #16] - 8012a52: 2b00 cmp r3, #0 - 8012a54: d110 bne.n 8012a78 + 8012a60: 687b ldr r3, [r7, #4] + 8012a62: 689b ldr r3, [r3, #8] + 8012a64: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8012a68: d114 bne.n 8012a94 + 8012a6a: 687b ldr r3, [r7, #4] + 8012a6c: 691b ldr r3, [r3, #16] + 8012a6e: 2b00 cmp r3, #0 + 8012a70: d110 bne.n 8012a94 { tmp = (const uint16_t *) huart->pTxBuffPtr; - 8012a56: 687b ldr r3, [r7, #4] - 8012a58: 6a1b ldr r3, [r3, #32] - 8012a5a: 60fb str r3, [r7, #12] - huart->Instance->DR = (uint16_t)(*tmp & (uint16_t)0x01FF); - 8012a5c: 68fb ldr r3, [r7, #12] - 8012a5e: 881b ldrh r3, [r3, #0] - 8012a60: 461a mov r2, r3 - 8012a62: 687b ldr r3, [r7, #4] - 8012a64: 681b ldr r3, [r3, #0] - 8012a66: f3c2 0208 ubfx r2, r2, #0, #9 - 8012a6a: 605a str r2, [r3, #4] - huart->pTxBuffPtr += 2U; - 8012a6c: 687b ldr r3, [r7, #4] - 8012a6e: 6a1b ldr r3, [r3, #32] - 8012a70: 1c9a adds r2, r3, #2 8012a72: 687b ldr r3, [r7, #4] - 8012a74: 621a str r2, [r3, #32] - 8012a76: e008 b.n 8012a8a + 8012a74: 6a1b ldr r3, [r3, #32] + 8012a76: 60fb str r3, [r7, #12] + huart->Instance->DR = (uint16_t)(*tmp & (uint16_t)0x01FF); + 8012a78: 68fb ldr r3, [r7, #12] + 8012a7a: 881b ldrh r3, [r3, #0] + 8012a7c: 461a mov r2, r3 + 8012a7e: 687b ldr r3, [r7, #4] + 8012a80: 681b ldr r3, [r3, #0] + 8012a82: f3c2 0208 ubfx r2, r2, #0, #9 + 8012a86: 605a str r2, [r3, #4] + huart->pTxBuffPtr += 2U; + 8012a88: 687b ldr r3, [r7, #4] + 8012a8a: 6a1b ldr r3, [r3, #32] + 8012a8c: 1c9a adds r2, r3, #2 + 8012a8e: 687b ldr r3, [r7, #4] + 8012a90: 621a str r2, [r3, #32] + 8012a92: e008 b.n 8012aa6 } else { huart->Instance->DR = (uint8_t)(*huart->pTxBuffPtr++ & (uint8_t)0x00FF); - 8012a78: 687b ldr r3, [r7, #4] - 8012a7a: 6a1b ldr r3, [r3, #32] - 8012a7c: 1c59 adds r1, r3, #1 - 8012a7e: 687a ldr r2, [r7, #4] - 8012a80: 6211 str r1, [r2, #32] - 8012a82: 781a ldrb r2, [r3, #0] - 8012a84: 687b ldr r3, [r7, #4] - 8012a86: 681b ldr r3, [r3, #0] - 8012a88: 605a str r2, [r3, #4] + 8012a94: 687b ldr r3, [r7, #4] + 8012a96: 6a1b ldr r3, [r3, #32] + 8012a98: 1c59 adds r1, r3, #1 + 8012a9a: 687a ldr r2, [r7, #4] + 8012a9c: 6211 str r1, [r2, #32] + 8012a9e: 781a ldrb r2, [r3, #0] + 8012aa0: 687b ldr r3, [r7, #4] + 8012aa2: 681b ldr r3, [r3, #0] + 8012aa4: 605a str r2, [r3, #4] } if (--huart->TxXferCount == 0U) - 8012a8a: 687b ldr r3, [r7, #4] - 8012a8c: 8cdb ldrh r3, [r3, #38] @ 0x26 - 8012a8e: b29b uxth r3, r3 - 8012a90: 3b01 subs r3, #1 - 8012a92: b29b uxth r3, r3 - 8012a94: 687a ldr r2, [r7, #4] - 8012a96: 4619 mov r1, r3 - 8012a98: 84d1 strh r1, [r2, #38] @ 0x26 - 8012a9a: 2b00 cmp r3, #0 - 8012a9c: d10f bne.n 8012abe + 8012aa6: 687b ldr r3, [r7, #4] + 8012aa8: 8cdb ldrh r3, [r3, #38] @ 0x26 + 8012aaa: b29b uxth r3, r3 + 8012aac: 3b01 subs r3, #1 + 8012aae: b29b uxth r3, r3 + 8012ab0: 687a ldr r2, [r7, #4] + 8012ab2: 4619 mov r1, r3 + 8012ab4: 84d1 strh r1, [r2, #38] @ 0x26 + 8012ab6: 2b00 cmp r3, #0 + 8012ab8: d10f bne.n 8012ada { /* Disable the UART Transmit Data Register Empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TXE); - 8012a9e: 687b ldr r3, [r7, #4] - 8012aa0: 681b ldr r3, [r3, #0] - 8012aa2: 68da ldr r2, [r3, #12] - 8012aa4: 687b ldr r3, [r7, #4] - 8012aa6: 681b ldr r3, [r3, #0] - 8012aa8: f022 0280 bic.w r2, r2, #128 @ 0x80 - 8012aac: 60da str r2, [r3, #12] + 8012aba: 687b ldr r3, [r7, #4] + 8012abc: 681b ldr r3, [r3, #0] + 8012abe: 68da ldr r2, [r3, #12] + 8012ac0: 687b ldr r3, [r7, #4] + 8012ac2: 681b ldr r3, [r3, #0] + 8012ac4: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8012ac8: 60da str r2, [r3, #12] /* Enable the UART Transmit Complete Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_TC); - 8012aae: 687b ldr r3, [r7, #4] - 8012ab0: 681b ldr r3, [r3, #0] - 8012ab2: 68da ldr r2, [r3, #12] - 8012ab4: 687b ldr r3, [r7, #4] - 8012ab6: 681b ldr r3, [r3, #0] - 8012ab8: f042 0240 orr.w r2, r2, #64 @ 0x40 - 8012abc: 60da str r2, [r3, #12] + 8012aca: 687b ldr r3, [r7, #4] + 8012acc: 681b ldr r3, [r3, #0] + 8012ace: 68da ldr r2, [r3, #12] + 8012ad0: 687b ldr r3, [r7, #4] + 8012ad2: 681b ldr r3, [r3, #0] + 8012ad4: f042 0240 orr.w r2, r2, #64 @ 0x40 + 8012ad8: 60da str r2, [r3, #12] } return HAL_OK; - 8012abe: 2300 movs r3, #0 - 8012ac0: e000 b.n 8012ac4 + 8012ada: 2300 movs r3, #0 + 8012adc: e000 b.n 8012ae0 } else { return HAL_BUSY; - 8012ac2: 2302 movs r3, #2 + 8012ade: 2302 movs r3, #2 } } - 8012ac4: 4618 mov r0, r3 - 8012ac6: 3714 adds r7, #20 - 8012ac8: 46bd mov sp, r7 - 8012aca: bc80 pop {r7} - 8012acc: 4770 bx lr + 8012ae0: 4618 mov r0, r3 + 8012ae2: 3714 adds r7, #20 + 8012ae4: 46bd mov sp, r7 + 8012ae6: bc80 pop {r7} + 8012ae8: 4770 bx lr -08012ace : +08012aea : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_EndTransmit_IT(UART_HandleTypeDef *huart) { - 8012ace: b580 push {r7, lr} - 8012ad0: b082 sub sp, #8 - 8012ad2: af00 add r7, sp, #0 - 8012ad4: 6078 str r0, [r7, #4] + 8012aea: b580 push {r7, lr} + 8012aec: b082 sub sp, #8 + 8012aee: af00 add r7, sp, #0 + 8012af0: 6078 str r0, [r7, #4] /* Disable the UART Transmit Complete Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TC); - 8012ad6: 687b ldr r3, [r7, #4] - 8012ad8: 681b ldr r3, [r3, #0] - 8012ada: 68da ldr r2, [r3, #12] - 8012adc: 687b ldr r3, [r7, #4] - 8012ade: 681b ldr r3, [r3, #0] - 8012ae0: f022 0240 bic.w r2, r2, #64 @ 0x40 - 8012ae4: 60da str r2, [r3, #12] + 8012af2: 687b ldr r3, [r7, #4] + 8012af4: 681b ldr r3, [r3, #0] + 8012af6: 68da ldr r2, [r3, #12] + 8012af8: 687b ldr r3, [r7, #4] + 8012afa: 681b ldr r3, [r3, #0] + 8012afc: f022 0240 bic.w r2, r2, #64 @ 0x40 + 8012b00: 60da str r2, [r3, #12] /* Tx process is ended, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8012ae6: 687b ldr r3, [r7, #4] - 8012ae8: 2220 movs r2, #32 - 8012aea: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8012b02: 687b ldr r3, [r7, #4] + 8012b04: 2220 movs r2, #32 + 8012b06: f883 2041 strb.w r2, [r3, #65] @ 0x41 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Tx complete callback*/ huart->TxCpltCallback(huart); #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxCpltCallback(huart); - 8012aee: 6878 ldr r0, [r7, #4] - 8012af0: f7f9 fdbc bl 800c66c + 8012b0a: 6878 ldr r0, [r7, #4] + 8012b0c: f7f9 fdbc bl 800c688 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ return HAL_OK; - 8012af4: 2300 movs r3, #0 + 8012b10: 2300 movs r3, #0 } - 8012af6: 4618 mov r0, r3 - 8012af8: 3708 adds r7, #8 - 8012afa: 46bd mov sp, r7 - 8012afc: bd80 pop {r7, pc} + 8012b12: 4618 mov r0, r3 + 8012b14: 3708 adds r7, #8 + 8012b16: 46bd mov sp, r7 + 8012b18: bd80 pop {r7, pc} -08012afe : +08012b1a : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart) { - 8012afe: b580 push {r7, lr} - 8012b00: b08c sub sp, #48 @ 0x30 - 8012b02: af00 add r7, sp, #0 - 8012b04: 6078 str r0, [r7, #4] + 8012b1a: b580 push {r7, lr} + 8012b1c: b08c sub sp, #48 @ 0x30 + 8012b1e: af00 add r7, sp, #0 + 8012b20: 6078 str r0, [r7, #4] uint8_t *pdata8bits; uint16_t *pdata16bits; /* Check that a Rx process is ongoing */ if (huart->RxState == HAL_UART_STATE_BUSY_RX) - 8012b06: 687b ldr r3, [r7, #4] - 8012b08: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8012b0c: b2db uxtb r3, r3 - 8012b0e: 2b22 cmp r3, #34 @ 0x22 - 8012b10: f040 80ae bne.w 8012c70 + 8012b22: 687b ldr r3, [r7, #4] + 8012b24: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8012b28: b2db uxtb r3, r3 + 8012b2a: 2b22 cmp r3, #34 @ 0x22 + 8012b2c: f040 80ae bne.w 8012c8c { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8012b14: 687b ldr r3, [r7, #4] - 8012b16: 689b ldr r3, [r3, #8] - 8012b18: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8012b1c: d117 bne.n 8012b4e - 8012b1e: 687b ldr r3, [r7, #4] - 8012b20: 691b ldr r3, [r3, #16] - 8012b22: 2b00 cmp r3, #0 - 8012b24: d113 bne.n 8012b4e + 8012b30: 687b ldr r3, [r7, #4] + 8012b32: 689b ldr r3, [r3, #8] + 8012b34: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8012b38: d117 bne.n 8012b6a + 8012b3a: 687b ldr r3, [r7, #4] + 8012b3c: 691b ldr r3, [r3, #16] + 8012b3e: 2b00 cmp r3, #0 + 8012b40: d113 bne.n 8012b6a { pdata8bits = NULL; - 8012b26: 2300 movs r3, #0 - 8012b28: 62fb str r3, [r7, #44] @ 0x2c + 8012b42: 2300 movs r3, #0 + 8012b44: 62fb str r3, [r7, #44] @ 0x2c pdata16bits = (uint16_t *) huart->pRxBuffPtr; - 8012b2a: 687b ldr r3, [r7, #4] - 8012b2c: 6a9b ldr r3, [r3, #40] @ 0x28 - 8012b2e: 62bb str r3, [r7, #40] @ 0x28 + 8012b46: 687b ldr r3, [r7, #4] + 8012b48: 6a9b ldr r3, [r3, #40] @ 0x28 + 8012b4a: 62bb str r3, [r7, #40] @ 0x28 *pdata16bits = (uint16_t)(huart->Instance->DR & (uint16_t)0x01FF); - 8012b30: 687b ldr r3, [r7, #4] - 8012b32: 681b ldr r3, [r3, #0] - 8012b34: 685b ldr r3, [r3, #4] - 8012b36: b29b uxth r3, r3 - 8012b38: f3c3 0308 ubfx r3, r3, #0, #9 - 8012b3c: b29a uxth r2, r3 - 8012b3e: 6abb ldr r3, [r7, #40] @ 0x28 - 8012b40: 801a strh r2, [r3, #0] + 8012b4c: 687b ldr r3, [r7, #4] + 8012b4e: 681b ldr r3, [r3, #0] + 8012b50: 685b ldr r3, [r3, #4] + 8012b52: b29b uxth r3, r3 + 8012b54: f3c3 0308 ubfx r3, r3, #0, #9 + 8012b58: b29a uxth r2, r3 + 8012b5a: 6abb ldr r3, [r7, #40] @ 0x28 + 8012b5c: 801a strh r2, [r3, #0] huart->pRxBuffPtr += 2U; - 8012b42: 687b ldr r3, [r7, #4] - 8012b44: 6a9b ldr r3, [r3, #40] @ 0x28 - 8012b46: 1c9a adds r2, r3, #2 - 8012b48: 687b ldr r3, [r7, #4] - 8012b4a: 629a str r2, [r3, #40] @ 0x28 - 8012b4c: e026 b.n 8012b9c + 8012b5e: 687b ldr r3, [r7, #4] + 8012b60: 6a9b ldr r3, [r3, #40] @ 0x28 + 8012b62: 1c9a adds r2, r3, #2 + 8012b64: 687b ldr r3, [r7, #4] + 8012b66: 629a str r2, [r3, #40] @ 0x28 + 8012b68: e026 b.n 8012bb8 } else { pdata8bits = (uint8_t *) huart->pRxBuffPtr; - 8012b4e: 687b ldr r3, [r7, #4] - 8012b50: 6a9b ldr r3, [r3, #40] @ 0x28 - 8012b52: 62fb str r3, [r7, #44] @ 0x2c + 8012b6a: 687b ldr r3, [r7, #4] + 8012b6c: 6a9b ldr r3, [r3, #40] @ 0x28 + 8012b6e: 62fb str r3, [r7, #44] @ 0x2c pdata16bits = NULL; - 8012b54: 2300 movs r3, #0 - 8012b56: 62bb str r3, [r7, #40] @ 0x28 + 8012b70: 2300 movs r3, #0 + 8012b72: 62bb str r3, [r7, #40] @ 0x28 if ((huart->Init.WordLength == UART_WORDLENGTH_9B) || ((huart->Init.WordLength == UART_WORDLENGTH_8B) && (huart->Init.Parity == UART_PARITY_NONE))) - 8012b58: 687b ldr r3, [r7, #4] - 8012b5a: 689b ldr r3, [r3, #8] - 8012b5c: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8012b60: d007 beq.n 8012b72 - 8012b62: 687b ldr r3, [r7, #4] - 8012b64: 689b ldr r3, [r3, #8] - 8012b66: 2b00 cmp r3, #0 - 8012b68: d10a bne.n 8012b80 - 8012b6a: 687b ldr r3, [r7, #4] - 8012b6c: 691b ldr r3, [r3, #16] - 8012b6e: 2b00 cmp r3, #0 - 8012b70: d106 bne.n 8012b80 + 8012b74: 687b ldr r3, [r7, #4] + 8012b76: 689b ldr r3, [r3, #8] + 8012b78: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8012b7c: d007 beq.n 8012b8e + 8012b7e: 687b ldr r3, [r7, #4] + 8012b80: 689b ldr r3, [r3, #8] + 8012b82: 2b00 cmp r3, #0 + 8012b84: d10a bne.n 8012b9c + 8012b86: 687b ldr r3, [r7, #4] + 8012b88: 691b ldr r3, [r3, #16] + 8012b8a: 2b00 cmp r3, #0 + 8012b8c: d106 bne.n 8012b9c { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x00FF); - 8012b72: 687b ldr r3, [r7, #4] - 8012b74: 681b ldr r3, [r3, #0] - 8012b76: 685b ldr r3, [r3, #4] - 8012b78: b2da uxtb r2, r3 - 8012b7a: 6afb ldr r3, [r7, #44] @ 0x2c - 8012b7c: 701a strb r2, [r3, #0] - 8012b7e: e008 b.n 8012b92 + 8012b8e: 687b ldr r3, [r7, #4] + 8012b90: 681b ldr r3, [r3, #0] + 8012b92: 685b ldr r3, [r3, #4] + 8012b94: b2da uxtb r2, r3 + 8012b96: 6afb ldr r3, [r7, #44] @ 0x2c + 8012b98: 701a strb r2, [r3, #0] + 8012b9a: e008 b.n 8012bae } else { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x007F); - 8012b80: 687b ldr r3, [r7, #4] - 8012b82: 681b ldr r3, [r3, #0] - 8012b84: 685b ldr r3, [r3, #4] - 8012b86: b2db uxtb r3, r3 - 8012b88: f003 037f and.w r3, r3, #127 @ 0x7f - 8012b8c: b2da uxtb r2, r3 - 8012b8e: 6afb ldr r3, [r7, #44] @ 0x2c - 8012b90: 701a strb r2, [r3, #0] + 8012b9c: 687b ldr r3, [r7, #4] + 8012b9e: 681b ldr r3, [r3, #0] + 8012ba0: 685b ldr r3, [r3, #4] + 8012ba2: b2db uxtb r3, r3 + 8012ba4: f003 037f and.w r3, r3, #127 @ 0x7f + 8012ba8: b2da uxtb r2, r3 + 8012baa: 6afb ldr r3, [r7, #44] @ 0x2c + 8012bac: 701a strb r2, [r3, #0] } huart->pRxBuffPtr += 1U; - 8012b92: 687b ldr r3, [r7, #4] - 8012b94: 6a9b ldr r3, [r3, #40] @ 0x28 - 8012b96: 1c5a adds r2, r3, #1 - 8012b98: 687b ldr r3, [r7, #4] - 8012b9a: 629a str r2, [r3, #40] @ 0x28 + 8012bae: 687b ldr r3, [r7, #4] + 8012bb0: 6a9b ldr r3, [r3, #40] @ 0x28 + 8012bb2: 1c5a adds r2, r3, #1 + 8012bb4: 687b ldr r3, [r7, #4] + 8012bb6: 629a str r2, [r3, #40] @ 0x28 } if (--huart->RxXferCount == 0U) - 8012b9c: 687b ldr r3, [r7, #4] - 8012b9e: 8ddb ldrh r3, [r3, #46] @ 0x2e - 8012ba0: b29b uxth r3, r3 - 8012ba2: 3b01 subs r3, #1 - 8012ba4: b29b uxth r3, r3 - 8012ba6: 687a ldr r2, [r7, #4] - 8012ba8: 4619 mov r1, r3 - 8012baa: 85d1 strh r1, [r2, #46] @ 0x2e - 8012bac: 2b00 cmp r3, #0 - 8012bae: d15d bne.n 8012c6c + 8012bb8: 687b ldr r3, [r7, #4] + 8012bba: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8012bbc: b29b uxth r3, r3 + 8012bbe: 3b01 subs r3, #1 + 8012bc0: b29b uxth r3, r3 + 8012bc2: 687a ldr r2, [r7, #4] + 8012bc4: 4619 mov r1, r3 + 8012bc6: 85d1 strh r1, [r2, #46] @ 0x2e + 8012bc8: 2b00 cmp r3, #0 + 8012bca: d15d bne.n 8012c88 { /* Disable the UART Data Register not empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_RXNE); - 8012bb0: 687b ldr r3, [r7, #4] - 8012bb2: 681b ldr r3, [r3, #0] - 8012bb4: 68da ldr r2, [r3, #12] - 8012bb6: 687b ldr r3, [r7, #4] - 8012bb8: 681b ldr r3, [r3, #0] - 8012bba: f022 0220 bic.w r2, r2, #32 - 8012bbe: 60da str r2, [r3, #12] + 8012bcc: 687b ldr r3, [r7, #4] + 8012bce: 681b ldr r3, [r3, #0] + 8012bd0: 68da ldr r2, [r3, #12] + 8012bd2: 687b ldr r3, [r7, #4] + 8012bd4: 681b ldr r3, [r3, #0] + 8012bd6: f022 0220 bic.w r2, r2, #32 + 8012bda: 60da str r2, [r3, #12] /* Disable the UART Parity Error Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_PE); - 8012bc0: 687b ldr r3, [r7, #4] - 8012bc2: 681b ldr r3, [r3, #0] - 8012bc4: 68da ldr r2, [r3, #12] - 8012bc6: 687b ldr r3, [r7, #4] - 8012bc8: 681b ldr r3, [r3, #0] - 8012bca: f422 7280 bic.w r2, r2, #256 @ 0x100 - 8012bce: 60da str r2, [r3, #12] + 8012bdc: 687b ldr r3, [r7, #4] + 8012bde: 681b ldr r3, [r3, #0] + 8012be0: 68da ldr r2, [r3, #12] + 8012be2: 687b ldr r3, [r7, #4] + 8012be4: 681b ldr r3, [r3, #0] + 8012be6: f422 7280 bic.w r2, r2, #256 @ 0x100 + 8012bea: 60da str r2, [r3, #12] /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ __HAL_UART_DISABLE_IT(huart, UART_IT_ERR); - 8012bd0: 687b ldr r3, [r7, #4] - 8012bd2: 681b ldr r3, [r3, #0] - 8012bd4: 695a ldr r2, [r3, #20] - 8012bd6: 687b ldr r3, [r7, #4] - 8012bd8: 681b ldr r3, [r3, #0] - 8012bda: f022 0201 bic.w r2, r2, #1 - 8012bde: 615a str r2, [r3, #20] + 8012bec: 687b ldr r3, [r7, #4] + 8012bee: 681b ldr r3, [r3, #0] + 8012bf0: 695a ldr r2, [r3, #20] + 8012bf2: 687b ldr r3, [r7, #4] + 8012bf4: 681b ldr r3, [r3, #0] + 8012bf6: f022 0201 bic.w r2, r2, #1 + 8012bfa: 615a str r2, [r3, #20] /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8012be0: 687b ldr r3, [r7, #4] - 8012be2: 2220 movs r2, #32 - 8012be4: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8012bfc: 687b ldr r3, [r7, #4] + 8012bfe: 2220 movs r2, #32 + 8012c00: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* Initialize type of RxEvent to Transfer Complete */ huart->RxEventType = HAL_UART_RXEVENT_TC; - 8012be8: 687b ldr r3, [r7, #4] - 8012bea: 2200 movs r2, #0 - 8012bec: 635a str r2, [r3, #52] @ 0x34 + 8012c04: 687b ldr r3, [r7, #4] + 8012c06: 2200 movs r2, #0 + 8012c08: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8012bee: 687b ldr r3, [r7, #4] - 8012bf0: 6b1b ldr r3, [r3, #48] @ 0x30 - 8012bf2: 2b01 cmp r3, #1 - 8012bf4: d135 bne.n 8012c62 + 8012c0a: 687b ldr r3, [r7, #4] + 8012c0c: 6b1b ldr r3, [r3, #48] @ 0x30 + 8012c0e: 2b01 cmp r3, #1 + 8012c10: d135 bne.n 8012c7e { /* Set reception type to Standard */ huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8012bf6: 687b ldr r3, [r7, #4] - 8012bf8: 2200 movs r2, #0 - 8012bfa: 631a str r2, [r3, #48] @ 0x30 + 8012c12: 687b ldr r3, [r7, #4] + 8012c14: 2200 movs r2, #0 + 8012c16: 631a str r2, [r3, #48] @ 0x30 /* Disable IDLE interrupt */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8012bfc: 687b ldr r3, [r7, #4] - 8012bfe: 681b ldr r3, [r3, #0] - 8012c00: 330c adds r3, #12 - 8012c02: 617b str r3, [r7, #20] + 8012c18: 687b ldr r3, [r7, #4] + 8012c1a: 681b ldr r3, [r3, #0] + 8012c1c: 330c adds r3, #12 + 8012c1e: 617b str r3, [r7, #20] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8012c04: 697b ldr r3, [r7, #20] - 8012c06: e853 3f00 ldrex r3, [r3] - 8012c0a: 613b str r3, [r7, #16] + 8012c20: 697b ldr r3, [r7, #20] + 8012c22: e853 3f00 ldrex r3, [r3] + 8012c26: 613b str r3, [r7, #16] return(result); - 8012c0c: 693b ldr r3, [r7, #16] - 8012c0e: f023 0310 bic.w r3, r3, #16 - 8012c12: 627b str r3, [r7, #36] @ 0x24 - 8012c14: 687b ldr r3, [r7, #4] - 8012c16: 681b ldr r3, [r3, #0] - 8012c18: 330c adds r3, #12 - 8012c1a: 6a7a ldr r2, [r7, #36] @ 0x24 - 8012c1c: 623a str r2, [r7, #32] - 8012c1e: 61fb str r3, [r7, #28] + 8012c28: 693b ldr r3, [r7, #16] + 8012c2a: f023 0310 bic.w r3, r3, #16 + 8012c2e: 627b str r3, [r7, #36] @ 0x24 + 8012c30: 687b ldr r3, [r7, #4] + 8012c32: 681b ldr r3, [r3, #0] + 8012c34: 330c adds r3, #12 + 8012c36: 6a7a ldr r2, [r7, #36] @ 0x24 + 8012c38: 623a str r2, [r7, #32] + 8012c3a: 61fb str r3, [r7, #28] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8012c20: 69f9 ldr r1, [r7, #28] - 8012c22: 6a3a ldr r2, [r7, #32] - 8012c24: e841 2300 strex r3, r2, [r1] - 8012c28: 61bb str r3, [r7, #24] + 8012c3c: 69f9 ldr r1, [r7, #28] + 8012c3e: 6a3a ldr r2, [r7, #32] + 8012c40: e841 2300 strex r3, r2, [r1] + 8012c44: 61bb str r3, [r7, #24] return(result); - 8012c2a: 69bb ldr r3, [r7, #24] - 8012c2c: 2b00 cmp r3, #0 - 8012c2e: d1e5 bne.n 8012bfc + 8012c46: 69bb ldr r3, [r7, #24] + 8012c48: 2b00 cmp r3, #0 + 8012c4a: d1e5 bne.n 8012c18 /* Check if IDLE flag is set */ if (__HAL_UART_GET_FLAG(huart, UART_FLAG_IDLE)) - 8012c30: 687b ldr r3, [r7, #4] - 8012c32: 681b ldr r3, [r3, #0] - 8012c34: 681b ldr r3, [r3, #0] - 8012c36: f003 0310 and.w r3, r3, #16 - 8012c3a: 2b10 cmp r3, #16 - 8012c3c: d10a bne.n 8012c54 + 8012c4c: 687b ldr r3, [r7, #4] + 8012c4e: 681b ldr r3, [r3, #0] + 8012c50: 681b ldr r3, [r3, #0] + 8012c52: f003 0310 and.w r3, r3, #16 + 8012c56: 2b10 cmp r3, #16 + 8012c58: d10a bne.n 8012c70 { /* Clear IDLE flag in ISR */ __HAL_UART_CLEAR_IDLEFLAG(huart); - 8012c3e: 2300 movs r3, #0 - 8012c40: 60fb str r3, [r7, #12] - 8012c42: 687b ldr r3, [r7, #4] - 8012c44: 681b ldr r3, [r3, #0] - 8012c46: 681b ldr r3, [r3, #0] - 8012c48: 60fb str r3, [r7, #12] - 8012c4a: 687b ldr r3, [r7, #4] - 8012c4c: 681b ldr r3, [r3, #0] - 8012c4e: 685b ldr r3, [r3, #4] - 8012c50: 60fb str r3, [r7, #12] - 8012c52: 68fb ldr r3, [r7, #12] + 8012c5a: 2300 movs r3, #0 + 8012c5c: 60fb str r3, [r7, #12] + 8012c5e: 687b ldr r3, [r7, #4] + 8012c60: 681b ldr r3, [r3, #0] + 8012c62: 681b ldr r3, [r3, #0] + 8012c64: 60fb str r3, [r7, #12] + 8012c66: 687b ldr r3, [r7, #4] + 8012c68: 681b ldr r3, [r3, #0] + 8012c6a: 685b ldr r3, [r3, #4] + 8012c6c: 60fb str r3, [r7, #12] + 8012c6e: 68fb ldr r3, [r7, #12] #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 8012c54: 687b ldr r3, [r7, #4] - 8012c56: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8012c58: 4619 mov r1, r3 - 8012c5a: 6878 ldr r0, [r7, #4] - 8012c5c: f7f9 fca6 bl 800c5ac - 8012c60: e002 b.n 8012c68 + 8012c70: 687b ldr r3, [r7, #4] + 8012c72: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8012c74: 4619 mov r1, r3 + 8012c76: 6878 ldr r0, [r7, #4] + 8012c78: f7f9 fca6 bl 800c5c8 + 8012c7c: e002 b.n 8012c84 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxCpltCallback(huart); #else /*Call legacy weak Rx complete callback*/ HAL_UART_RxCpltCallback(huart); - 8012c62: 6878 ldr r0, [r7, #4] - 8012c64: f7ff fd44 bl 80126f0 + 8012c7e: 6878 ldr r0, [r7, #4] + 8012c80: f7ff fd44 bl 801270c #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return HAL_OK; - 8012c68: 2300 movs r3, #0 - 8012c6a: e002 b.n 8012c72 + 8012c84: 2300 movs r3, #0 + 8012c86: e002 b.n 8012c8e } return HAL_OK; - 8012c6c: 2300 movs r3, #0 - 8012c6e: e000 b.n 8012c72 + 8012c88: 2300 movs r3, #0 + 8012c8a: e000 b.n 8012c8e } else { return HAL_BUSY; - 8012c70: 2302 movs r3, #2 + 8012c8c: 2302 movs r3, #2 } } - 8012c72: 4618 mov r0, r3 - 8012c74: 3730 adds r7, #48 @ 0x30 - 8012c76: 46bd mov sp, r7 - 8012c78: bd80 pop {r7, pc} + 8012c8e: 4618 mov r0, r3 + 8012c90: 3730 adds r7, #48 @ 0x30 + 8012c92: 46bd mov sp, r7 + 8012c94: bd80 pop {r7, pc} ... -08012c7c : +08012c98 : * @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) { - 8012c7c: b580 push {r7, lr} - 8012c7e: b084 sub sp, #16 - 8012c80: af00 add r7, sp, #0 - 8012c82: 6078 str r0, [r7, #4] + 8012c98: b580 push {r7, lr} + 8012c9a: b084 sub sp, #16 + 8012c9c: af00 add r7, sp, #0 + 8012c9e: 6078 str r0, [r7, #4] 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); - 8012c84: 687b ldr r3, [r7, #4] - 8012c86: 681b ldr r3, [r3, #0] - 8012c88: 691b ldr r3, [r3, #16] - 8012c8a: f423 5140 bic.w r1, r3, #12288 @ 0x3000 - 8012c8e: 687b ldr r3, [r7, #4] - 8012c90: 68da ldr r2, [r3, #12] - 8012c92: 687b ldr r3, [r7, #4] - 8012c94: 681b ldr r3, [r3, #0] - 8012c96: 430a orrs r2, r1 - 8012c98: 611a str r2, [r3, #16] + 8012ca0: 687b ldr r3, [r7, #4] + 8012ca2: 681b ldr r3, [r3, #0] + 8012ca4: 691b ldr r3, [r3, #16] + 8012ca6: f423 5140 bic.w r1, r3, #12288 @ 0x3000 + 8012caa: 687b ldr r3, [r7, #4] + 8012cac: 68da ldr r2, [r3, #12] + 8012cae: 687b ldr r3, [r7, #4] + 8012cb0: 681b ldr r3, [r3, #0] + 8012cb2: 430a orrs r2, r1 + 8012cb4: 611a str r2, [r3, #16] tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling; MODIFY_REG(huart->Instance->CR1, (uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), tmpreg); #else tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode; - 8012c9a: 687b ldr r3, [r7, #4] - 8012c9c: 689a ldr r2, [r3, #8] - 8012c9e: 687b ldr r3, [r7, #4] - 8012ca0: 691b ldr r3, [r3, #16] - 8012ca2: 431a orrs r2, r3 - 8012ca4: 687b ldr r3, [r7, #4] - 8012ca6: 695b ldr r3, [r3, #20] - 8012ca8: 4313 orrs r3, r2 - 8012caa: 60bb str r3, [r7, #8] + 8012cb6: 687b ldr r3, [r7, #4] + 8012cb8: 689a ldr r2, [r3, #8] + 8012cba: 687b ldr r3, [r7, #4] + 8012cbc: 691b ldr r3, [r3, #16] + 8012cbe: 431a orrs r2, r3 + 8012cc0: 687b ldr r3, [r7, #4] + 8012cc2: 695b ldr r3, [r3, #20] + 8012cc4: 4313 orrs r3, r2 + 8012cc6: 60bb str r3, [r7, #8] MODIFY_REG(huart->Instance->CR1, - 8012cac: 687b ldr r3, [r7, #4] - 8012cae: 681b ldr r3, [r3, #0] - 8012cb0: 68db ldr r3, [r3, #12] - 8012cb2: f423 53b0 bic.w r3, r3, #5632 @ 0x1600 - 8012cb6: f023 030c bic.w r3, r3, #12 - 8012cba: 687a ldr r2, [r7, #4] - 8012cbc: 6812 ldr r2, [r2, #0] - 8012cbe: 68b9 ldr r1, [r7, #8] - 8012cc0: 430b orrs r3, r1 - 8012cc2: 60d3 str r3, [r2, #12] + 8012cc8: 687b ldr r3, [r7, #4] + 8012cca: 681b ldr r3, [r3, #0] + 8012ccc: 68db ldr r3, [r3, #12] + 8012cce: f423 53b0 bic.w r3, r3, #5632 @ 0x1600 + 8012cd2: f023 030c bic.w r3, r3, #12 + 8012cd6: 687a ldr r2, [r7, #4] + 8012cd8: 6812 ldr r2, [r2, #0] + 8012cda: 68b9 ldr r1, [r7, #8] + 8012cdc: 430b orrs r3, r1 + 8012cde: 60d3 str r3, [r2, #12] tmpreg); #endif /* USART_CR1_OVER8 */ /*-------------------------- 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); - 8012cc4: 687b ldr r3, [r7, #4] - 8012cc6: 681b ldr r3, [r3, #0] - 8012cc8: 695b ldr r3, [r3, #20] - 8012cca: f423 7140 bic.w r1, r3, #768 @ 0x300 - 8012cce: 687b ldr r3, [r7, #4] - 8012cd0: 699a ldr r2, [r3, #24] - 8012cd2: 687b ldr r3, [r7, #4] - 8012cd4: 681b ldr r3, [r3, #0] - 8012cd6: 430a orrs r2, r1 - 8012cd8: 615a str r2, [r3, #20] + 8012ce0: 687b ldr r3, [r7, #4] + 8012ce2: 681b ldr r3, [r3, #0] + 8012ce4: 695b ldr r3, [r3, #20] + 8012ce6: f423 7140 bic.w r1, r3, #768 @ 0x300 + 8012cea: 687b ldr r3, [r7, #4] + 8012cec: 699a ldr r2, [r3, #24] + 8012cee: 687b ldr r3, [r7, #4] + 8012cf0: 681b ldr r3, [r3, #0] + 8012cf2: 430a orrs r2, r1 + 8012cf4: 615a str r2, [r3, #20] if(huart->Instance == USART1) - 8012cda: 687b ldr r3, [r7, #4] - 8012cdc: 681b ldr r3, [r3, #0] - 8012cde: 4a2c ldr r2, [pc, #176] @ (8012d90 ) - 8012ce0: 4293 cmp r3, r2 - 8012ce2: d103 bne.n 8012cec + 8012cf6: 687b ldr r3, [r7, #4] + 8012cf8: 681b ldr r3, [r3, #0] + 8012cfa: 4a2c ldr r2, [pc, #176] @ (8012dac ) + 8012cfc: 4293 cmp r3, r2 + 8012cfe: d103 bne.n 8012d08 { pclk = HAL_RCC_GetPCLK2Freq(); - 8012ce4: f7fd fc1a bl 801051c - 8012ce8: 60f8 str r0, [r7, #12] - 8012cea: e002 b.n 8012cf2 + 8012d00: f7fd fc1a bl 8010538 + 8012d04: 60f8 str r0, [r7, #12] + 8012d06: e002 b.n 8012d0e } else { pclk = HAL_RCC_GetPCLK1Freq(); - 8012cec: f7fd fc02 bl 80104f4 - 8012cf0: 60f8 str r0, [r7, #12] + 8012d08: f7fd fc02 bl 8010510 + 8012d0c: 60f8 str r0, [r7, #12] else { huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); } #else huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); - 8012cf2: 68fa ldr r2, [r7, #12] - 8012cf4: 4613 mov r3, r2 - 8012cf6: 009b lsls r3, r3, #2 - 8012cf8: 4413 add r3, r2 - 8012cfa: 009a lsls r2, r3, #2 - 8012cfc: 441a add r2, r3 - 8012cfe: 687b ldr r3, [r7, #4] - 8012d00: 685b ldr r3, [r3, #4] - 8012d02: 009b lsls r3, r3, #2 - 8012d04: fbb2 f3f3 udiv r3, r2, r3 - 8012d08: 4a22 ldr r2, [pc, #136] @ (8012d94 ) - 8012d0a: fba2 2303 umull r2, r3, r2, r3 - 8012d0e: 095b lsrs r3, r3, #5 - 8012d10: 0119 lsls r1, r3, #4 - 8012d12: 68fa ldr r2, [r7, #12] - 8012d14: 4613 mov r3, r2 - 8012d16: 009b lsls r3, r3, #2 - 8012d18: 4413 add r3, r2 - 8012d1a: 009a lsls r2, r3, #2 - 8012d1c: 441a add r2, r3 - 8012d1e: 687b ldr r3, [r7, #4] - 8012d20: 685b ldr r3, [r3, #4] - 8012d22: 009b lsls r3, r3, #2 - 8012d24: fbb2 f2f3 udiv r2, r2, r3 - 8012d28: 4b1a ldr r3, [pc, #104] @ (8012d94 ) - 8012d2a: fba3 0302 umull r0, r3, r3, r2 - 8012d2e: 095b lsrs r3, r3, #5 - 8012d30: 2064 movs r0, #100 @ 0x64 - 8012d32: fb00 f303 mul.w r3, r0, r3 - 8012d36: 1ad3 subs r3, r2, r3 - 8012d38: 011b lsls r3, r3, #4 - 8012d3a: 3332 adds r3, #50 @ 0x32 - 8012d3c: 4a15 ldr r2, [pc, #84] @ (8012d94 ) - 8012d3e: fba2 2303 umull r2, r3, r2, r3 - 8012d42: 095b lsrs r3, r3, #5 - 8012d44: f003 03f0 and.w r3, r3, #240 @ 0xf0 - 8012d48: 4419 add r1, r3 - 8012d4a: 68fa ldr r2, [r7, #12] - 8012d4c: 4613 mov r3, r2 - 8012d4e: 009b lsls r3, r3, #2 - 8012d50: 4413 add r3, r2 - 8012d52: 009a lsls r2, r3, #2 - 8012d54: 441a add r2, r3 - 8012d56: 687b ldr r3, [r7, #4] - 8012d58: 685b ldr r3, [r3, #4] - 8012d5a: 009b lsls r3, r3, #2 - 8012d5c: fbb2 f2f3 udiv r2, r2, r3 - 8012d60: 4b0c ldr r3, [pc, #48] @ (8012d94 ) - 8012d62: fba3 0302 umull r0, r3, r3, r2 - 8012d66: 095b lsrs r3, r3, #5 - 8012d68: 2064 movs r0, #100 @ 0x64 - 8012d6a: fb00 f303 mul.w r3, r0, r3 - 8012d6e: 1ad3 subs r3, r2, r3 - 8012d70: 011b lsls r3, r3, #4 - 8012d72: 3332 adds r3, #50 @ 0x32 - 8012d74: 4a07 ldr r2, [pc, #28] @ (8012d94 ) - 8012d76: fba2 2303 umull r2, r3, r2, r3 - 8012d7a: 095b lsrs r3, r3, #5 - 8012d7c: f003 020f and.w r2, r3, #15 - 8012d80: 687b ldr r3, [r7, #4] - 8012d82: 681b ldr r3, [r3, #0] - 8012d84: 440a add r2, r1 - 8012d86: 609a str r2, [r3, #8] + 8012d0e: 68fa ldr r2, [r7, #12] + 8012d10: 4613 mov r3, r2 + 8012d12: 009b lsls r3, r3, #2 + 8012d14: 4413 add r3, r2 + 8012d16: 009a lsls r2, r3, #2 + 8012d18: 441a add r2, r3 + 8012d1a: 687b ldr r3, [r7, #4] + 8012d1c: 685b ldr r3, [r3, #4] + 8012d1e: 009b lsls r3, r3, #2 + 8012d20: fbb2 f3f3 udiv r3, r2, r3 + 8012d24: 4a22 ldr r2, [pc, #136] @ (8012db0 ) + 8012d26: fba2 2303 umull r2, r3, r2, r3 + 8012d2a: 095b lsrs r3, r3, #5 + 8012d2c: 0119 lsls r1, r3, #4 + 8012d2e: 68fa ldr r2, [r7, #12] + 8012d30: 4613 mov r3, r2 + 8012d32: 009b lsls r3, r3, #2 + 8012d34: 4413 add r3, r2 + 8012d36: 009a lsls r2, r3, #2 + 8012d38: 441a add r2, r3 + 8012d3a: 687b ldr r3, [r7, #4] + 8012d3c: 685b ldr r3, [r3, #4] + 8012d3e: 009b lsls r3, r3, #2 + 8012d40: fbb2 f2f3 udiv r2, r2, r3 + 8012d44: 4b1a ldr r3, [pc, #104] @ (8012db0 ) + 8012d46: fba3 0302 umull r0, r3, r3, r2 + 8012d4a: 095b lsrs r3, r3, #5 + 8012d4c: 2064 movs r0, #100 @ 0x64 + 8012d4e: fb00 f303 mul.w r3, r0, r3 + 8012d52: 1ad3 subs r3, r2, r3 + 8012d54: 011b lsls r3, r3, #4 + 8012d56: 3332 adds r3, #50 @ 0x32 + 8012d58: 4a15 ldr r2, [pc, #84] @ (8012db0 ) + 8012d5a: fba2 2303 umull r2, r3, r2, r3 + 8012d5e: 095b lsrs r3, r3, #5 + 8012d60: f003 03f0 and.w r3, r3, #240 @ 0xf0 + 8012d64: 4419 add r1, r3 + 8012d66: 68fa ldr r2, [r7, #12] + 8012d68: 4613 mov r3, r2 + 8012d6a: 009b lsls r3, r3, #2 + 8012d6c: 4413 add r3, r2 + 8012d6e: 009a lsls r2, r3, #2 + 8012d70: 441a add r2, r3 + 8012d72: 687b ldr r3, [r7, #4] + 8012d74: 685b ldr r3, [r3, #4] + 8012d76: 009b lsls r3, r3, #2 + 8012d78: fbb2 f2f3 udiv r2, r2, r3 + 8012d7c: 4b0c ldr r3, [pc, #48] @ (8012db0 ) + 8012d7e: fba3 0302 umull r0, r3, r3, r2 + 8012d82: 095b lsrs r3, r3, #5 + 8012d84: 2064 movs r0, #100 @ 0x64 + 8012d86: fb00 f303 mul.w r3, r0, r3 + 8012d8a: 1ad3 subs r3, r2, r3 + 8012d8c: 011b lsls r3, r3, #4 + 8012d8e: 3332 adds r3, #50 @ 0x32 + 8012d90: 4a07 ldr r2, [pc, #28] @ (8012db0 ) + 8012d92: fba2 2303 umull r2, r3, r2, r3 + 8012d96: 095b lsrs r3, r3, #5 + 8012d98: f003 020f and.w r2, r3, #15 + 8012d9c: 687b ldr r3, [r7, #4] + 8012d9e: 681b ldr r3, [r3, #0] + 8012da0: 440a add r2, r1 + 8012da2: 609a str r2, [r3, #8] #endif /* USART_CR1_OVER8 */ } - 8012d88: bf00 nop - 8012d8a: 3710 adds r7, #16 - 8012d8c: 46bd mov sp, r7 - 8012d8e: bd80 pop {r7, pc} - 8012d90: 40013800 .word 0x40013800 - 8012d94: 51eb851f .word 0x51eb851f + 8012da4: bf00 nop + 8012da6: 3710 adds r7, #16 + 8012da8: 46bd mov sp, r7 + 8012daa: bd80 pop {r7, pc} + 8012dac: 40013800 .word 0x40013800 + 8012db0: 51eb851f .word 0x51eb851f -08012d98 : - 8012d98: 2300 movs r3, #0 - 8012d9a: b510 push {r4, lr} - 8012d9c: 4604 mov r4, r0 - 8012d9e: e9c0 3300 strd r3, r3, [r0] - 8012da2: e9c0 3304 strd r3, r3, [r0, #16] - 8012da6: 6083 str r3, [r0, #8] - 8012da8: 8181 strh r1, [r0, #12] - 8012daa: 6643 str r3, [r0, #100] @ 0x64 - 8012dac: 81c2 strh r2, [r0, #14] - 8012dae: 6183 str r3, [r0, #24] - 8012db0: 4619 mov r1, r3 - 8012db2: 2208 movs r2, #8 - 8012db4: 305c adds r0, #92 @ 0x5c - 8012db6: f000 f943 bl 8013040 - 8012dba: 4b0d ldr r3, [pc, #52] @ (8012df0 ) - 8012dbc: 6224 str r4, [r4, #32] - 8012dbe: 6263 str r3, [r4, #36] @ 0x24 - 8012dc0: 4b0c ldr r3, [pc, #48] @ (8012df4 ) - 8012dc2: 62a3 str r3, [r4, #40] @ 0x28 - 8012dc4: 4b0c ldr r3, [pc, #48] @ (8012df8 ) - 8012dc6: 62e3 str r3, [r4, #44] @ 0x2c - 8012dc8: 4b0c ldr r3, [pc, #48] @ (8012dfc ) - 8012dca: 6323 str r3, [r4, #48] @ 0x30 - 8012dcc: 4b0c ldr r3, [pc, #48] @ (8012e00 ) - 8012dce: 429c cmp r4, r3 - 8012dd0: d006 beq.n 8012de0 - 8012dd2: f103 0268 add.w r2, r3, #104 @ 0x68 - 8012dd6: 4294 cmp r4, r2 - 8012dd8: d002 beq.n 8012de0 - 8012dda: 33d0 adds r3, #208 @ 0xd0 - 8012ddc: 429c cmp r4, r3 - 8012dde: d105 bne.n 8012dec - 8012de0: f104 0058 add.w r0, r4, #88 @ 0x58 - 8012de4: e8bd 4010 ldmia.w sp!, {r4, lr} - 8012de8: f000 b9a2 b.w 8013130 <__retarget_lock_init_recursive> - 8012dec: bd10 pop {r4, pc} - 8012dee: bf00 nop - 8012df0: 08012f41 .word 0x08012f41 - 8012df4: 08012f63 .word 0x08012f63 - 8012df8: 08012f9b .word 0x08012f9b - 8012dfc: 08012fbf .word 0x08012fbf - 8012e00: 2000107c .word 0x2000107c +08012db4 : + 8012db4: 2300 movs r3, #0 + 8012db6: b510 push {r4, lr} + 8012db8: 4604 mov r4, r0 + 8012dba: e9c0 3300 strd r3, r3, [r0] + 8012dbe: e9c0 3304 strd r3, r3, [r0, #16] + 8012dc2: 6083 str r3, [r0, #8] + 8012dc4: 8181 strh r1, [r0, #12] + 8012dc6: 6643 str r3, [r0, #100] @ 0x64 + 8012dc8: 81c2 strh r2, [r0, #14] + 8012dca: 6183 str r3, [r0, #24] + 8012dcc: 4619 mov r1, r3 + 8012dce: 2208 movs r2, #8 + 8012dd0: 305c adds r0, #92 @ 0x5c + 8012dd2: f000 f943 bl 801305c + 8012dd6: 4b0d ldr r3, [pc, #52] @ (8012e0c ) + 8012dd8: 6224 str r4, [r4, #32] + 8012dda: 6263 str r3, [r4, #36] @ 0x24 + 8012ddc: 4b0c ldr r3, [pc, #48] @ (8012e10 ) + 8012dde: 62a3 str r3, [r4, #40] @ 0x28 + 8012de0: 4b0c ldr r3, [pc, #48] @ (8012e14 ) + 8012de2: 62e3 str r3, [r4, #44] @ 0x2c + 8012de4: 4b0c ldr r3, [pc, #48] @ (8012e18 ) + 8012de6: 6323 str r3, [r4, #48] @ 0x30 + 8012de8: 4b0c ldr r3, [pc, #48] @ (8012e1c ) + 8012dea: 429c cmp r4, r3 + 8012dec: d006 beq.n 8012dfc + 8012dee: f103 0268 add.w r2, r3, #104 @ 0x68 + 8012df2: 4294 cmp r4, r2 + 8012df4: d002 beq.n 8012dfc + 8012df6: 33d0 adds r3, #208 @ 0xd0 + 8012df8: 429c cmp r4, r3 + 8012dfa: d105 bne.n 8012e08 + 8012dfc: f104 0058 add.w r0, r4, #88 @ 0x58 + 8012e00: e8bd 4010 ldmia.w sp!, {r4, lr} + 8012e04: f000 b9a2 b.w 801314c <__retarget_lock_init_recursive> + 8012e08: bd10 pop {r4, pc} + 8012e0a: bf00 nop + 8012e0c: 08012f5d .word 0x08012f5d + 8012e10: 08012f7f .word 0x08012f7f + 8012e14: 08012fb7 .word 0x08012fb7 + 8012e18: 08012fdb .word 0x08012fdb + 8012e1c: 2000107c .word 0x2000107c -08012e04 : - 8012e04: 4a02 ldr r2, [pc, #8] @ (8012e10 ) - 8012e06: 4903 ldr r1, [pc, #12] @ (8012e14 ) - 8012e08: 4803 ldr r0, [pc, #12] @ (8012e18 ) - 8012e0a: f000 b869 b.w 8012ee0 <_fwalk_sglue> - 8012e0e: bf00 nop - 8012e10: 20000078 .word 0x20000078 - 8012e14: 08013c91 .word 0x08013c91 - 8012e18: 20000088 .word 0x20000088 +08012e20 : + 8012e20: 4a02 ldr r2, [pc, #8] @ (8012e2c ) + 8012e22: 4903 ldr r1, [pc, #12] @ (8012e30 ) + 8012e24: 4803 ldr r0, [pc, #12] @ (8012e34 ) + 8012e26: f000 b869 b.w 8012efc <_fwalk_sglue> + 8012e2a: bf00 nop + 8012e2c: 20000078 .word 0x20000078 + 8012e30: 08013cad .word 0x08013cad + 8012e34: 20000088 .word 0x20000088 -08012e1c : - 8012e1c: 6841 ldr r1, [r0, #4] - 8012e1e: 4b0c ldr r3, [pc, #48] @ (8012e50 ) - 8012e20: b510 push {r4, lr} - 8012e22: 4299 cmp r1, r3 - 8012e24: 4604 mov r4, r0 - 8012e26: d001 beq.n 8012e2c - 8012e28: f000 ff32 bl 8013c90 <_fflush_r> - 8012e2c: 68a1 ldr r1, [r4, #8] - 8012e2e: 4b09 ldr r3, [pc, #36] @ (8012e54 ) - 8012e30: 4299 cmp r1, r3 - 8012e32: d002 beq.n 8012e3a - 8012e34: 4620 mov r0, r4 - 8012e36: f000 ff2b bl 8013c90 <_fflush_r> - 8012e3a: 68e1 ldr r1, [r4, #12] - 8012e3c: 4b06 ldr r3, [pc, #24] @ (8012e58 ) +08012e38 : + 8012e38: 6841 ldr r1, [r0, #4] + 8012e3a: 4b0c ldr r3, [pc, #48] @ (8012e6c ) + 8012e3c: b510 push {r4, lr} 8012e3e: 4299 cmp r1, r3 - 8012e40: d004 beq.n 8012e4c - 8012e42: 4620 mov r0, r4 - 8012e44: e8bd 4010 ldmia.w sp!, {r4, lr} - 8012e48: f000 bf22 b.w 8013c90 <_fflush_r> - 8012e4c: bd10 pop {r4, pc} - 8012e4e: bf00 nop - 8012e50: 2000107c .word 0x2000107c - 8012e54: 200010e4 .word 0x200010e4 - 8012e58: 2000114c .word 0x2000114c + 8012e40: 4604 mov r4, r0 + 8012e42: d001 beq.n 8012e48 + 8012e44: f000 ff32 bl 8013cac <_fflush_r> + 8012e48: 68a1 ldr r1, [r4, #8] + 8012e4a: 4b09 ldr r3, [pc, #36] @ (8012e70 ) + 8012e4c: 4299 cmp r1, r3 + 8012e4e: d002 beq.n 8012e56 + 8012e50: 4620 mov r0, r4 + 8012e52: f000 ff2b bl 8013cac <_fflush_r> + 8012e56: 68e1 ldr r1, [r4, #12] + 8012e58: 4b06 ldr r3, [pc, #24] @ (8012e74 ) + 8012e5a: 4299 cmp r1, r3 + 8012e5c: d004 beq.n 8012e68 + 8012e5e: 4620 mov r0, r4 + 8012e60: e8bd 4010 ldmia.w sp!, {r4, lr} + 8012e64: f000 bf22 b.w 8013cac <_fflush_r> + 8012e68: bd10 pop {r4, pc} + 8012e6a: bf00 nop + 8012e6c: 2000107c .word 0x2000107c + 8012e70: 200010e4 .word 0x200010e4 + 8012e74: 2000114c .word 0x2000114c -08012e5c : - 8012e5c: b510 push {r4, lr} - 8012e5e: 4b0b ldr r3, [pc, #44] @ (8012e8c ) - 8012e60: 4c0b ldr r4, [pc, #44] @ (8012e90 ) - 8012e62: 4a0c ldr r2, [pc, #48] @ (8012e94 ) - 8012e64: 4620 mov r0, r4 - 8012e66: 601a str r2, [r3, #0] - 8012e68: 2104 movs r1, #4 - 8012e6a: 2200 movs r2, #0 - 8012e6c: f7ff ff94 bl 8012d98 - 8012e70: f104 0068 add.w r0, r4, #104 @ 0x68 - 8012e74: 2201 movs r2, #1 - 8012e76: 2109 movs r1, #9 - 8012e78: f7ff ff8e bl 8012d98 - 8012e7c: f104 00d0 add.w r0, r4, #208 @ 0xd0 - 8012e80: 2202 movs r2, #2 - 8012e82: e8bd 4010 ldmia.w sp!, {r4, lr} - 8012e86: 2112 movs r1, #18 - 8012e88: f7ff bf86 b.w 8012d98 - 8012e8c: 200011b4 .word 0x200011b4 - 8012e90: 2000107c .word 0x2000107c - 8012e94: 08012e05 .word 0x08012e05 +08012e78 : + 8012e78: b510 push {r4, lr} + 8012e7a: 4b0b ldr r3, [pc, #44] @ (8012ea8 ) + 8012e7c: 4c0b ldr r4, [pc, #44] @ (8012eac ) + 8012e7e: 4a0c ldr r2, [pc, #48] @ (8012eb0 ) + 8012e80: 4620 mov r0, r4 + 8012e82: 601a str r2, [r3, #0] + 8012e84: 2104 movs r1, #4 + 8012e86: 2200 movs r2, #0 + 8012e88: f7ff ff94 bl 8012db4 + 8012e8c: f104 0068 add.w r0, r4, #104 @ 0x68 + 8012e90: 2201 movs r2, #1 + 8012e92: 2109 movs r1, #9 + 8012e94: f7ff ff8e bl 8012db4 + 8012e98: f104 00d0 add.w r0, r4, #208 @ 0xd0 + 8012e9c: 2202 movs r2, #2 + 8012e9e: e8bd 4010 ldmia.w sp!, {r4, lr} + 8012ea2: 2112 movs r1, #18 + 8012ea4: f7ff bf86 b.w 8012db4 + 8012ea8: 200011b4 .word 0x200011b4 + 8012eac: 2000107c .word 0x2000107c + 8012eb0: 08012e21 .word 0x08012e21 -08012e98 <__sfp_lock_acquire>: - 8012e98: 4801 ldr r0, [pc, #4] @ (8012ea0 <__sfp_lock_acquire+0x8>) - 8012e9a: f000 b94a b.w 8013132 <__retarget_lock_acquire_recursive> - 8012e9e: bf00 nop - 8012ea0: 200011bd .word 0x200011bd +08012eb4 <__sfp_lock_acquire>: + 8012eb4: 4801 ldr r0, [pc, #4] @ (8012ebc <__sfp_lock_acquire+0x8>) + 8012eb6: f000 b94a b.w 801314e <__retarget_lock_acquire_recursive> + 8012eba: bf00 nop + 8012ebc: 200011bd .word 0x200011bd -08012ea4 <__sfp_lock_release>: - 8012ea4: 4801 ldr r0, [pc, #4] @ (8012eac <__sfp_lock_release+0x8>) - 8012ea6: f000 b945 b.w 8013134 <__retarget_lock_release_recursive> - 8012eaa: bf00 nop - 8012eac: 200011bd .word 0x200011bd +08012ec0 <__sfp_lock_release>: + 8012ec0: 4801 ldr r0, [pc, #4] @ (8012ec8 <__sfp_lock_release+0x8>) + 8012ec2: f000 b945 b.w 8013150 <__retarget_lock_release_recursive> + 8012ec6: bf00 nop + 8012ec8: 200011bd .word 0x200011bd -08012eb0 <__sinit>: - 8012eb0: b510 push {r4, lr} - 8012eb2: 4604 mov r4, r0 - 8012eb4: f7ff fff0 bl 8012e98 <__sfp_lock_acquire> - 8012eb8: 6a23 ldr r3, [r4, #32] - 8012eba: b11b cbz r3, 8012ec4 <__sinit+0x14> - 8012ebc: e8bd 4010 ldmia.w sp!, {r4, lr} - 8012ec0: f7ff bff0 b.w 8012ea4 <__sfp_lock_release> - 8012ec4: 4b04 ldr r3, [pc, #16] @ (8012ed8 <__sinit+0x28>) - 8012ec6: 6223 str r3, [r4, #32] - 8012ec8: 4b04 ldr r3, [pc, #16] @ (8012edc <__sinit+0x2c>) - 8012eca: 681b ldr r3, [r3, #0] - 8012ecc: 2b00 cmp r3, #0 - 8012ece: d1f5 bne.n 8012ebc <__sinit+0xc> - 8012ed0: f7ff ffc4 bl 8012e5c - 8012ed4: e7f2 b.n 8012ebc <__sinit+0xc> - 8012ed6: bf00 nop - 8012ed8: 08012e1d .word 0x08012e1d - 8012edc: 200011b4 .word 0x200011b4 +08012ecc <__sinit>: + 8012ecc: b510 push {r4, lr} + 8012ece: 4604 mov r4, r0 + 8012ed0: f7ff fff0 bl 8012eb4 <__sfp_lock_acquire> + 8012ed4: 6a23 ldr r3, [r4, #32] + 8012ed6: b11b cbz r3, 8012ee0 <__sinit+0x14> + 8012ed8: e8bd 4010 ldmia.w sp!, {r4, lr} + 8012edc: f7ff bff0 b.w 8012ec0 <__sfp_lock_release> + 8012ee0: 4b04 ldr r3, [pc, #16] @ (8012ef4 <__sinit+0x28>) + 8012ee2: 6223 str r3, [r4, #32] + 8012ee4: 4b04 ldr r3, [pc, #16] @ (8012ef8 <__sinit+0x2c>) + 8012ee6: 681b ldr r3, [r3, #0] + 8012ee8: 2b00 cmp r3, #0 + 8012eea: d1f5 bne.n 8012ed8 <__sinit+0xc> + 8012eec: f7ff ffc4 bl 8012e78 + 8012ef0: e7f2 b.n 8012ed8 <__sinit+0xc> + 8012ef2: bf00 nop + 8012ef4: 08012e39 .word 0x08012e39 + 8012ef8: 200011b4 .word 0x200011b4 -08012ee0 <_fwalk_sglue>: - 8012ee0: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 8012ee4: 4607 mov r7, r0 - 8012ee6: 4688 mov r8, r1 - 8012ee8: 4614 mov r4, r2 - 8012eea: 2600 movs r6, #0 - 8012eec: e9d4 9501 ldrd r9, r5, [r4, #4] - 8012ef0: f1b9 0901 subs.w r9, r9, #1 - 8012ef4: d505 bpl.n 8012f02 <_fwalk_sglue+0x22> - 8012ef6: 6824 ldr r4, [r4, #0] - 8012ef8: 2c00 cmp r4, #0 - 8012efa: d1f7 bne.n 8012eec <_fwalk_sglue+0xc> - 8012efc: 4630 mov r0, r6 - 8012efe: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 8012f02: 89ab ldrh r3, [r5, #12] - 8012f04: 2b01 cmp r3, #1 - 8012f06: d907 bls.n 8012f18 <_fwalk_sglue+0x38> - 8012f08: f9b5 300e ldrsh.w r3, [r5, #14] - 8012f0c: 3301 adds r3, #1 - 8012f0e: d003 beq.n 8012f18 <_fwalk_sglue+0x38> - 8012f10: 4629 mov r1, r5 - 8012f12: 4638 mov r0, r7 - 8012f14: 47c0 blx r8 - 8012f16: 4306 orrs r6, r0 - 8012f18: 3568 adds r5, #104 @ 0x68 - 8012f1a: e7e9 b.n 8012ef0 <_fwalk_sglue+0x10> +08012efc <_fwalk_sglue>: + 8012efc: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 8012f00: 4607 mov r7, r0 + 8012f02: 4688 mov r8, r1 + 8012f04: 4614 mov r4, r2 + 8012f06: 2600 movs r6, #0 + 8012f08: e9d4 9501 ldrd r9, r5, [r4, #4] + 8012f0c: f1b9 0901 subs.w r9, r9, #1 + 8012f10: d505 bpl.n 8012f1e <_fwalk_sglue+0x22> + 8012f12: 6824 ldr r4, [r4, #0] + 8012f14: 2c00 cmp r4, #0 + 8012f16: d1f7 bne.n 8012f08 <_fwalk_sglue+0xc> + 8012f18: 4630 mov r0, r6 + 8012f1a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 8012f1e: 89ab ldrh r3, [r5, #12] + 8012f20: 2b01 cmp r3, #1 + 8012f22: d907 bls.n 8012f34 <_fwalk_sglue+0x38> + 8012f24: f9b5 300e ldrsh.w r3, [r5, #14] + 8012f28: 3301 adds r3, #1 + 8012f2a: d003 beq.n 8012f34 <_fwalk_sglue+0x38> + 8012f2c: 4629 mov r1, r5 + 8012f2e: 4638 mov r0, r7 + 8012f30: 47c0 blx r8 + 8012f32: 4306 orrs r6, r0 + 8012f34: 3568 adds r5, #104 @ 0x68 + 8012f36: e7e9 b.n 8012f0c <_fwalk_sglue+0x10> -08012f1c : - 8012f1c: b40f push {r0, r1, r2, r3} - 8012f1e: b507 push {r0, r1, r2, lr} - 8012f20: 4906 ldr r1, [pc, #24] @ (8012f3c ) - 8012f22: ab04 add r3, sp, #16 - 8012f24: 6808 ldr r0, [r1, #0] - 8012f26: f853 2b04 ldr.w r2, [r3], #4 - 8012f2a: 6881 ldr r1, [r0, #8] - 8012f2c: 9301 str r3, [sp, #4] - 8012f2e: f000 fb87 bl 8013640 <_vfiprintf_r> - 8012f32: b003 add sp, #12 - 8012f34: f85d eb04 ldr.w lr, [sp], #4 - 8012f38: b004 add sp, #16 - 8012f3a: 4770 bx lr - 8012f3c: 20000084 .word 0x20000084 +08012f38 : + 8012f38: b40f push {r0, r1, r2, r3} + 8012f3a: b507 push {r0, r1, r2, lr} + 8012f3c: 4906 ldr r1, [pc, #24] @ (8012f58 ) + 8012f3e: ab04 add r3, sp, #16 + 8012f40: 6808 ldr r0, [r1, #0] + 8012f42: f853 2b04 ldr.w r2, [r3], #4 + 8012f46: 6881 ldr r1, [r0, #8] + 8012f48: 9301 str r3, [sp, #4] + 8012f4a: f000 fb87 bl 801365c <_vfiprintf_r> + 8012f4e: b003 add sp, #12 + 8012f50: f85d eb04 ldr.w lr, [sp], #4 + 8012f54: b004 add sp, #16 + 8012f56: 4770 bx lr + 8012f58: 20000084 .word 0x20000084 -08012f40 <__sread>: - 8012f40: b510 push {r4, lr} - 8012f42: 460c mov r4, r1 - 8012f44: f9b1 100e ldrsh.w r1, [r1, #14] - 8012f48: f000 f8a4 bl 8013094 <_read_r> - 8012f4c: 2800 cmp r0, #0 - 8012f4e: bfab itete ge - 8012f50: 6d63 ldrge r3, [r4, #84] @ 0x54 - 8012f52: 89a3 ldrhlt r3, [r4, #12] - 8012f54: 181b addge r3, r3, r0 - 8012f56: f423 5380 biclt.w r3, r3, #4096 @ 0x1000 - 8012f5a: bfac ite ge - 8012f5c: 6563 strge r3, [r4, #84] @ 0x54 - 8012f5e: 81a3 strhlt r3, [r4, #12] - 8012f60: bd10 pop {r4, pc} +08012f5c <__sread>: + 8012f5c: b510 push {r4, lr} + 8012f5e: 460c mov r4, r1 + 8012f60: f9b1 100e ldrsh.w r1, [r1, #14] + 8012f64: f000 f8a4 bl 80130b0 <_read_r> + 8012f68: 2800 cmp r0, #0 + 8012f6a: bfab itete ge + 8012f6c: 6d63 ldrge r3, [r4, #84] @ 0x54 + 8012f6e: 89a3 ldrhlt r3, [r4, #12] + 8012f70: 181b addge r3, r3, r0 + 8012f72: f423 5380 biclt.w r3, r3, #4096 @ 0x1000 + 8012f76: bfac ite ge + 8012f78: 6563 strge r3, [r4, #84] @ 0x54 + 8012f7a: 81a3 strhlt r3, [r4, #12] + 8012f7c: bd10 pop {r4, pc} -08012f62 <__swrite>: - 8012f62: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8012f66: 461f mov r7, r3 - 8012f68: 898b ldrh r3, [r1, #12] - 8012f6a: 4605 mov r5, r0 - 8012f6c: 05db lsls r3, r3, #23 - 8012f6e: 460c mov r4, r1 - 8012f70: 4616 mov r6, r2 - 8012f72: d505 bpl.n 8012f80 <__swrite+0x1e> - 8012f74: 2302 movs r3, #2 - 8012f76: 2200 movs r2, #0 - 8012f78: f9b1 100e ldrsh.w r1, [r1, #14] - 8012f7c: f000 f878 bl 8013070 <_lseek_r> - 8012f80: 89a3 ldrh r3, [r4, #12] - 8012f82: 4632 mov r2, r6 - 8012f84: f423 5380 bic.w r3, r3, #4096 @ 0x1000 - 8012f88: 81a3 strh r3, [r4, #12] - 8012f8a: 4628 mov r0, r5 - 8012f8c: 463b mov r3, r7 - 8012f8e: f9b4 100e ldrsh.w r1, [r4, #14] - 8012f92: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} - 8012f96: f000 b88f b.w 80130b8 <_write_r> +08012f7e <__swrite>: + 8012f7e: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8012f82: 461f mov r7, r3 + 8012f84: 898b ldrh r3, [r1, #12] + 8012f86: 4605 mov r5, r0 + 8012f88: 05db lsls r3, r3, #23 + 8012f8a: 460c mov r4, r1 + 8012f8c: 4616 mov r6, r2 + 8012f8e: d505 bpl.n 8012f9c <__swrite+0x1e> + 8012f90: 2302 movs r3, #2 + 8012f92: 2200 movs r2, #0 + 8012f94: f9b1 100e ldrsh.w r1, [r1, #14] + 8012f98: f000 f878 bl 801308c <_lseek_r> + 8012f9c: 89a3 ldrh r3, [r4, #12] + 8012f9e: 4632 mov r2, r6 + 8012fa0: f423 5380 bic.w r3, r3, #4096 @ 0x1000 + 8012fa4: 81a3 strh r3, [r4, #12] + 8012fa6: 4628 mov r0, r5 + 8012fa8: 463b mov r3, r7 + 8012faa: f9b4 100e ldrsh.w r1, [r4, #14] + 8012fae: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} + 8012fb2: f000 b88f b.w 80130d4 <_write_r> -08012f9a <__sseek>: - 8012f9a: b510 push {r4, lr} - 8012f9c: 460c mov r4, r1 - 8012f9e: f9b1 100e ldrsh.w r1, [r1, #14] - 8012fa2: f000 f865 bl 8013070 <_lseek_r> - 8012fa6: 1c43 adds r3, r0, #1 - 8012fa8: 89a3 ldrh r3, [r4, #12] - 8012faa: bf15 itete ne - 8012fac: 6560 strne r0, [r4, #84] @ 0x54 - 8012fae: f423 5380 biceq.w r3, r3, #4096 @ 0x1000 - 8012fb2: f443 5380 orrne.w r3, r3, #4096 @ 0x1000 - 8012fb6: 81a3 strheq r3, [r4, #12] - 8012fb8: bf18 it ne - 8012fba: 81a3 strhne r3, [r4, #12] - 8012fbc: bd10 pop {r4, pc} +08012fb6 <__sseek>: + 8012fb6: b510 push {r4, lr} + 8012fb8: 460c mov r4, r1 + 8012fba: f9b1 100e ldrsh.w r1, [r1, #14] + 8012fbe: f000 f865 bl 801308c <_lseek_r> + 8012fc2: 1c43 adds r3, r0, #1 + 8012fc4: 89a3 ldrh r3, [r4, #12] + 8012fc6: bf15 itete ne + 8012fc8: 6560 strne r0, [r4, #84] @ 0x54 + 8012fca: f423 5380 biceq.w r3, r3, #4096 @ 0x1000 + 8012fce: f443 5380 orrne.w r3, r3, #4096 @ 0x1000 + 8012fd2: 81a3 strheq r3, [r4, #12] + 8012fd4: bf18 it ne + 8012fd6: 81a3 strhne r3, [r4, #12] + 8012fd8: bd10 pop {r4, pc} -08012fbe <__sclose>: - 8012fbe: f9b1 100e ldrsh.w r1, [r1, #14] - 8012fc2: f000 b845 b.w 8013050 <_close_r> +08012fda <__sclose>: + 8012fda: f9b1 100e ldrsh.w r1, [r1, #14] + 8012fde: f000 b845 b.w 801306c <_close_r> -08012fc6 <_vsniprintf_r>: - 8012fc6: b530 push {r4, r5, lr} - 8012fc8: 4614 mov r4, r2 - 8012fca: 2c00 cmp r4, #0 - 8012fcc: 4605 mov r5, r0 - 8012fce: 461a mov r2, r3 - 8012fd0: b09b sub sp, #108 @ 0x6c - 8012fd2: da05 bge.n 8012fe0 <_vsniprintf_r+0x1a> - 8012fd4: 238b movs r3, #139 @ 0x8b - 8012fd6: 6003 str r3, [r0, #0] - 8012fd8: f04f 30ff mov.w r0, #4294967295 - 8012fdc: b01b add sp, #108 @ 0x6c - 8012fde: bd30 pop {r4, r5, pc} - 8012fe0: f44f 7302 mov.w r3, #520 @ 0x208 - 8012fe4: f8ad 300c strh.w r3, [sp, #12] - 8012fe8: f04f 0300 mov.w r3, #0 - 8012fec: 9319 str r3, [sp, #100] @ 0x64 - 8012fee: bf0c ite eq - 8012ff0: 4623 moveq r3, r4 - 8012ff2: f104 33ff addne.w r3, r4, #4294967295 - 8012ff6: 9302 str r3, [sp, #8] - 8012ff8: 9305 str r3, [sp, #20] - 8012ffa: f64f 73ff movw r3, #65535 @ 0xffff - 8012ffe: 9100 str r1, [sp, #0] - 8013000: 9104 str r1, [sp, #16] - 8013002: f8ad 300e strh.w r3, [sp, #14] - 8013006: 4669 mov r1, sp - 8013008: 9b1e ldr r3, [sp, #120] @ 0x78 - 801300a: f000 f9f5 bl 80133f8 <_svfiprintf_r> - 801300e: 1c43 adds r3, r0, #1 - 8013010: bfbc itt lt - 8013012: 238b movlt r3, #139 @ 0x8b - 8013014: 602b strlt r3, [r5, #0] - 8013016: 2c00 cmp r4, #0 - 8013018: d0e0 beq.n 8012fdc <_vsniprintf_r+0x16> - 801301a: 2200 movs r2, #0 - 801301c: 9b00 ldr r3, [sp, #0] - 801301e: 701a strb r2, [r3, #0] - 8013020: e7dc b.n 8012fdc <_vsniprintf_r+0x16> +08012fe2 <_vsniprintf_r>: + 8012fe2: b530 push {r4, r5, lr} + 8012fe4: 4614 mov r4, r2 + 8012fe6: 2c00 cmp r4, #0 + 8012fe8: 4605 mov r5, r0 + 8012fea: 461a mov r2, r3 + 8012fec: b09b sub sp, #108 @ 0x6c + 8012fee: da05 bge.n 8012ffc <_vsniprintf_r+0x1a> + 8012ff0: 238b movs r3, #139 @ 0x8b + 8012ff2: 6003 str r3, [r0, #0] + 8012ff4: f04f 30ff mov.w r0, #4294967295 + 8012ff8: b01b add sp, #108 @ 0x6c + 8012ffa: bd30 pop {r4, r5, pc} + 8012ffc: f44f 7302 mov.w r3, #520 @ 0x208 + 8013000: f8ad 300c strh.w r3, [sp, #12] + 8013004: f04f 0300 mov.w r3, #0 + 8013008: 9319 str r3, [sp, #100] @ 0x64 + 801300a: bf0c ite eq + 801300c: 4623 moveq r3, r4 + 801300e: f104 33ff addne.w r3, r4, #4294967295 + 8013012: 9302 str r3, [sp, #8] + 8013014: 9305 str r3, [sp, #20] + 8013016: f64f 73ff movw r3, #65535 @ 0xffff + 801301a: 9100 str r1, [sp, #0] + 801301c: 9104 str r1, [sp, #16] + 801301e: f8ad 300e strh.w r3, [sp, #14] + 8013022: 4669 mov r1, sp + 8013024: 9b1e ldr r3, [sp, #120] @ 0x78 + 8013026: f000 f9f5 bl 8013414 <_svfiprintf_r> + 801302a: 1c43 adds r3, r0, #1 + 801302c: bfbc itt lt + 801302e: 238b movlt r3, #139 @ 0x8b + 8013030: 602b strlt r3, [r5, #0] + 8013032: 2c00 cmp r4, #0 + 8013034: d0e0 beq.n 8012ff8 <_vsniprintf_r+0x16> + 8013036: 2200 movs r2, #0 + 8013038: 9b00 ldr r3, [sp, #0] + 801303a: 701a strb r2, [r3, #0] + 801303c: e7dc b.n 8012ff8 <_vsniprintf_r+0x16> ... -08013024 : - 8013024: b507 push {r0, r1, r2, lr} - 8013026: 9300 str r3, [sp, #0] - 8013028: 4613 mov r3, r2 - 801302a: 460a mov r2, r1 - 801302c: 4601 mov r1, r0 - 801302e: 4803 ldr r0, [pc, #12] @ (801303c ) - 8013030: 6800 ldr r0, [r0, #0] - 8013032: f7ff ffc8 bl 8012fc6 <_vsniprintf_r> - 8013036: b003 add sp, #12 - 8013038: f85d fb04 ldr.w pc, [sp], #4 - 801303c: 20000084 .word 0x20000084 +08013040 : + 8013040: b507 push {r0, r1, r2, lr} + 8013042: 9300 str r3, [sp, #0] + 8013044: 4613 mov r3, r2 + 8013046: 460a mov r2, r1 + 8013048: 4601 mov r1, r0 + 801304a: 4803 ldr r0, [pc, #12] @ (8013058 ) + 801304c: 6800 ldr r0, [r0, #0] + 801304e: f7ff ffc8 bl 8012fe2 <_vsniprintf_r> + 8013052: b003 add sp, #12 + 8013054: f85d fb04 ldr.w pc, [sp], #4 + 8013058: 20000084 .word 0x20000084 -08013040 : - 8013040: 4603 mov r3, r0 - 8013042: 4402 add r2, r0 - 8013044: 4293 cmp r3, r2 - 8013046: d100 bne.n 801304a - 8013048: 4770 bx lr - 801304a: f803 1b01 strb.w r1, [r3], #1 - 801304e: e7f9 b.n 8013044 +0801305c : + 801305c: 4603 mov r3, r0 + 801305e: 4402 add r2, r0 + 8013060: 4293 cmp r3, r2 + 8013062: d100 bne.n 8013066 + 8013064: 4770 bx lr + 8013066: f803 1b01 strb.w r1, [r3], #1 + 801306a: e7f9 b.n 8013060 -08013050 <_close_r>: - 8013050: b538 push {r3, r4, r5, lr} - 8013052: 2300 movs r3, #0 - 8013054: 4d05 ldr r5, [pc, #20] @ (801306c <_close_r+0x1c>) - 8013056: 4604 mov r4, r0 - 8013058: 4608 mov r0, r1 - 801305a: 602b str r3, [r5, #0] - 801305c: f7f9 ffff bl 800d05e <_close> - 8013060: 1c43 adds r3, r0, #1 - 8013062: d102 bne.n 801306a <_close_r+0x1a> - 8013064: 682b ldr r3, [r5, #0] - 8013066: b103 cbz r3, 801306a <_close_r+0x1a> - 8013068: 6023 str r3, [r4, #0] - 801306a: bd38 pop {r3, r4, r5, pc} - 801306c: 200011b8 .word 0x200011b8 - -08013070 <_lseek_r>: - 8013070: b538 push {r3, r4, r5, lr} +0801306c <_close_r>: + 801306c: b538 push {r3, r4, r5, lr} + 801306e: 2300 movs r3, #0 + 8013070: 4d05 ldr r5, [pc, #20] @ (8013088 <_close_r+0x1c>) 8013072: 4604 mov r4, r0 8013074: 4608 mov r0, r1 - 8013076: 4611 mov r1, r2 - 8013078: 2200 movs r2, #0 - 801307a: 4d05 ldr r5, [pc, #20] @ (8013090 <_lseek_r+0x20>) - 801307c: 602a str r2, [r5, #0] - 801307e: 461a mov r2, r3 - 8013080: f7fa f811 bl 800d0a6 <_lseek> - 8013084: 1c43 adds r3, r0, #1 - 8013086: d102 bne.n 801308e <_lseek_r+0x1e> - 8013088: 682b ldr r3, [r5, #0] - 801308a: b103 cbz r3, 801308e <_lseek_r+0x1e> - 801308c: 6023 str r3, [r4, #0] - 801308e: bd38 pop {r3, r4, r5, pc} - 8013090: 200011b8 .word 0x200011b8 + 8013076: 602b str r3, [r5, #0] + 8013078: f7f9 ffff bl 800d07a <_close> + 801307c: 1c43 adds r3, r0, #1 + 801307e: d102 bne.n 8013086 <_close_r+0x1a> + 8013080: 682b ldr r3, [r5, #0] + 8013082: b103 cbz r3, 8013086 <_close_r+0x1a> + 8013084: 6023 str r3, [r4, #0] + 8013086: bd38 pop {r3, r4, r5, pc} + 8013088: 200011b8 .word 0x200011b8 -08013094 <_read_r>: - 8013094: b538 push {r3, r4, r5, lr} - 8013096: 4604 mov r4, r0 - 8013098: 4608 mov r0, r1 - 801309a: 4611 mov r1, r2 - 801309c: 2200 movs r2, #0 - 801309e: 4d05 ldr r5, [pc, #20] @ (80130b4 <_read_r+0x20>) - 80130a0: 602a str r2, [r5, #0] - 80130a2: 461a mov r2, r3 - 80130a4: f7f9 ffbe bl 800d024 <_read> - 80130a8: 1c43 adds r3, r0, #1 - 80130aa: d102 bne.n 80130b2 <_read_r+0x1e> - 80130ac: 682b ldr r3, [r5, #0] - 80130ae: b103 cbz r3, 80130b2 <_read_r+0x1e> - 80130b0: 6023 str r3, [r4, #0] - 80130b2: bd38 pop {r3, r4, r5, pc} - 80130b4: 200011b8 .word 0x200011b8 +0801308c <_lseek_r>: + 801308c: b538 push {r3, r4, r5, lr} + 801308e: 4604 mov r4, r0 + 8013090: 4608 mov r0, r1 + 8013092: 4611 mov r1, r2 + 8013094: 2200 movs r2, #0 + 8013096: 4d05 ldr r5, [pc, #20] @ (80130ac <_lseek_r+0x20>) + 8013098: 602a str r2, [r5, #0] + 801309a: 461a mov r2, r3 + 801309c: f7fa f811 bl 800d0c2 <_lseek> + 80130a0: 1c43 adds r3, r0, #1 + 80130a2: d102 bne.n 80130aa <_lseek_r+0x1e> + 80130a4: 682b ldr r3, [r5, #0] + 80130a6: b103 cbz r3, 80130aa <_lseek_r+0x1e> + 80130a8: 6023 str r3, [r4, #0] + 80130aa: bd38 pop {r3, r4, r5, pc} + 80130ac: 200011b8 .word 0x200011b8 -080130b8 <_write_r>: - 80130b8: b538 push {r3, r4, r5, lr} - 80130ba: 4604 mov r4, r0 - 80130bc: 4608 mov r0, r1 - 80130be: 4611 mov r1, r2 - 80130c0: 2200 movs r2, #0 - 80130c2: 4d05 ldr r5, [pc, #20] @ (80130d8 <_write_r+0x20>) - 80130c4: 602a str r2, [r5, #0] - 80130c6: 461a mov r2, r3 - 80130c8: f7f7 f8f2 bl 800a2b0 <_write> - 80130cc: 1c43 adds r3, r0, #1 - 80130ce: d102 bne.n 80130d6 <_write_r+0x1e> - 80130d0: 682b ldr r3, [r5, #0] - 80130d2: b103 cbz r3, 80130d6 <_write_r+0x1e> - 80130d4: 6023 str r3, [r4, #0] - 80130d6: bd38 pop {r3, r4, r5, pc} - 80130d8: 200011b8 .word 0x200011b8 +080130b0 <_read_r>: + 80130b0: b538 push {r3, r4, r5, lr} + 80130b2: 4604 mov r4, r0 + 80130b4: 4608 mov r0, r1 + 80130b6: 4611 mov r1, r2 + 80130b8: 2200 movs r2, #0 + 80130ba: 4d05 ldr r5, [pc, #20] @ (80130d0 <_read_r+0x20>) + 80130bc: 602a str r2, [r5, #0] + 80130be: 461a mov r2, r3 + 80130c0: f7f9 ffbe bl 800d040 <_read> + 80130c4: 1c43 adds r3, r0, #1 + 80130c6: d102 bne.n 80130ce <_read_r+0x1e> + 80130c8: 682b ldr r3, [r5, #0] + 80130ca: b103 cbz r3, 80130ce <_read_r+0x1e> + 80130cc: 6023 str r3, [r4, #0] + 80130ce: bd38 pop {r3, r4, r5, pc} + 80130d0: 200011b8 .word 0x200011b8 -080130dc <__errno>: - 80130dc: 4b01 ldr r3, [pc, #4] @ (80130e4 <__errno+0x8>) - 80130de: 6818 ldr r0, [r3, #0] - 80130e0: 4770 bx lr - 80130e2: bf00 nop - 80130e4: 20000084 .word 0x20000084 +080130d4 <_write_r>: + 80130d4: b538 push {r3, r4, r5, lr} + 80130d6: 4604 mov r4, r0 + 80130d8: 4608 mov r0, r1 + 80130da: 4611 mov r1, r2 + 80130dc: 2200 movs r2, #0 + 80130de: 4d05 ldr r5, [pc, #20] @ (80130f4 <_write_r+0x20>) + 80130e0: 602a str r2, [r5, #0] + 80130e2: 461a mov r2, r3 + 80130e4: f7f7 f8e4 bl 800a2b0 <_write> + 80130e8: 1c43 adds r3, r0, #1 + 80130ea: d102 bne.n 80130f2 <_write_r+0x1e> + 80130ec: 682b ldr r3, [r5, #0] + 80130ee: b103 cbz r3, 80130f2 <_write_r+0x1e> + 80130f0: 6023 str r3, [r4, #0] + 80130f2: bd38 pop {r3, r4, r5, pc} + 80130f4: 200011b8 .word 0x200011b8 -080130e8 <__libc_init_array>: - 80130e8: b570 push {r4, r5, r6, lr} - 80130ea: 2600 movs r6, #0 - 80130ec: 4d0c ldr r5, [pc, #48] @ (8013120 <__libc_init_array+0x38>) - 80130ee: 4c0d ldr r4, [pc, #52] @ (8013124 <__libc_init_array+0x3c>) - 80130f0: 1b64 subs r4, r4, r5 - 80130f2: 10a4 asrs r4, r4, #2 - 80130f4: 42a6 cmp r6, r4 - 80130f6: d109 bne.n 801310c <__libc_init_array+0x24> - 80130f8: f000 ff78 bl 8013fec <_init> - 80130fc: 2600 movs r6, #0 - 80130fe: 4d0a ldr r5, [pc, #40] @ (8013128 <__libc_init_array+0x40>) - 8013100: 4c0a ldr r4, [pc, #40] @ (801312c <__libc_init_array+0x44>) - 8013102: 1b64 subs r4, r4, r5 - 8013104: 10a4 asrs r4, r4, #2 - 8013106: 42a6 cmp r6, r4 - 8013108: d105 bne.n 8013116 <__libc_init_array+0x2e> - 801310a: bd70 pop {r4, r5, r6, pc} - 801310c: f855 3b04 ldr.w r3, [r5], #4 - 8013110: 4798 blx r3 - 8013112: 3601 adds r6, #1 - 8013114: e7ee b.n 80130f4 <__libc_init_array+0xc> - 8013116: f855 3b04 ldr.w r3, [r5], #4 - 801311a: 4798 blx r3 - 801311c: 3601 adds r6, #1 - 801311e: e7f2 b.n 8013106 <__libc_init_array+0x1e> - 8013120: 080144b8 .word 0x080144b8 - 8013124: 080144b8 .word 0x080144b8 - 8013128: 080144b8 .word 0x080144b8 - 801312c: 080144bc .word 0x080144bc +080130f8 <__errno>: + 80130f8: 4b01 ldr r3, [pc, #4] @ (8013100 <__errno+0x8>) + 80130fa: 6818 ldr r0, [r3, #0] + 80130fc: 4770 bx lr + 80130fe: bf00 nop + 8013100: 20000084 .word 0x20000084 -08013130 <__retarget_lock_init_recursive>: - 8013130: 4770 bx lr +08013104 <__libc_init_array>: + 8013104: b570 push {r4, r5, r6, lr} + 8013106: 2600 movs r6, #0 + 8013108: 4d0c ldr r5, [pc, #48] @ (801313c <__libc_init_array+0x38>) + 801310a: 4c0d ldr r4, [pc, #52] @ (8013140 <__libc_init_array+0x3c>) + 801310c: 1b64 subs r4, r4, r5 + 801310e: 10a4 asrs r4, r4, #2 + 8013110: 42a6 cmp r6, r4 + 8013112: d109 bne.n 8013128 <__libc_init_array+0x24> + 8013114: f000 ff78 bl 8014008 <_init> + 8013118: 2600 movs r6, #0 + 801311a: 4d0a ldr r5, [pc, #40] @ (8013144 <__libc_init_array+0x40>) + 801311c: 4c0a ldr r4, [pc, #40] @ (8013148 <__libc_init_array+0x44>) + 801311e: 1b64 subs r4, r4, r5 + 8013120: 10a4 asrs r4, r4, #2 + 8013122: 42a6 cmp r6, r4 + 8013124: d105 bne.n 8013132 <__libc_init_array+0x2e> + 8013126: bd70 pop {r4, r5, r6, pc} + 8013128: f855 3b04 ldr.w r3, [r5], #4 + 801312c: 4798 blx r3 + 801312e: 3601 adds r6, #1 + 8013130: e7ee b.n 8013110 <__libc_init_array+0xc> + 8013132: f855 3b04 ldr.w r3, [r5], #4 + 8013136: 4798 blx r3 + 8013138: 3601 adds r6, #1 + 801313a: e7f2 b.n 8013122 <__libc_init_array+0x1e> + 801313c: 080144d4 .word 0x080144d4 + 8013140: 080144d4 .word 0x080144d4 + 8013144: 080144d4 .word 0x080144d4 + 8013148: 080144d8 .word 0x080144d8 -08013132 <__retarget_lock_acquire_recursive>: - 8013132: 4770 bx lr +0801314c <__retarget_lock_init_recursive>: + 801314c: 4770 bx lr -08013134 <__retarget_lock_release_recursive>: - 8013134: 4770 bx lr +0801314e <__retarget_lock_acquire_recursive>: + 801314e: 4770 bx lr -08013136 : - 8013136: 440a add r2, r1 - 8013138: 4291 cmp r1, r2 - 801313a: f100 33ff add.w r3, r0, #4294967295 - 801313e: d100 bne.n 8013142 - 8013140: 4770 bx lr - 8013142: b510 push {r4, lr} - 8013144: f811 4b01 ldrb.w r4, [r1], #1 - 8013148: 4291 cmp r1, r2 - 801314a: f803 4f01 strb.w r4, [r3, #1]! - 801314e: d1f9 bne.n 8013144 - 8013150: bd10 pop {r4, pc} +08013150 <__retarget_lock_release_recursive>: + 8013150: 4770 bx lr + +08013152 : + 8013152: 440a add r2, r1 + 8013154: 4291 cmp r1, r2 + 8013156: f100 33ff add.w r3, r0, #4294967295 + 801315a: d100 bne.n 801315e + 801315c: 4770 bx lr + 801315e: b510 push {r4, lr} + 8013160: f811 4b01 ldrb.w r4, [r1], #1 + 8013164: 4291 cmp r1, r2 + 8013166: f803 4f01 strb.w r4, [r3, #1]! + 801316a: d1f9 bne.n 8013160 + 801316c: bd10 pop {r4, pc} ... -08013154 <_free_r>: - 8013154: b538 push {r3, r4, r5, lr} - 8013156: 4605 mov r5, r0 - 8013158: 2900 cmp r1, #0 - 801315a: d040 beq.n 80131de <_free_r+0x8a> - 801315c: f851 3c04 ldr.w r3, [r1, #-4] - 8013160: 1f0c subs r4, r1, #4 - 8013162: 2b00 cmp r3, #0 - 8013164: bfb8 it lt - 8013166: 18e4 addlt r4, r4, r3 - 8013168: f000 f8de bl 8013328 <__malloc_lock> - 801316c: 4a1c ldr r2, [pc, #112] @ (80131e0 <_free_r+0x8c>) - 801316e: 6813 ldr r3, [r2, #0] - 8013170: b933 cbnz r3, 8013180 <_free_r+0x2c> - 8013172: 6063 str r3, [r4, #4] - 8013174: 6014 str r4, [r2, #0] - 8013176: 4628 mov r0, r5 - 8013178: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 801317c: f000 b8da b.w 8013334 <__malloc_unlock> - 8013180: 42a3 cmp r3, r4 - 8013182: d908 bls.n 8013196 <_free_r+0x42> - 8013184: 6820 ldr r0, [r4, #0] - 8013186: 1821 adds r1, r4, r0 - 8013188: 428b cmp r3, r1 - 801318a: bf01 itttt eq - 801318c: 6819 ldreq r1, [r3, #0] - 801318e: 685b ldreq r3, [r3, #4] - 8013190: 1809 addeq r1, r1, r0 - 8013192: 6021 streq r1, [r4, #0] - 8013194: e7ed b.n 8013172 <_free_r+0x1e> - 8013196: 461a mov r2, r3 - 8013198: 685b ldr r3, [r3, #4] - 801319a: b10b cbz r3, 80131a0 <_free_r+0x4c> +08013170 <_free_r>: + 8013170: b538 push {r3, r4, r5, lr} + 8013172: 4605 mov r5, r0 + 8013174: 2900 cmp r1, #0 + 8013176: d040 beq.n 80131fa <_free_r+0x8a> + 8013178: f851 3c04 ldr.w r3, [r1, #-4] + 801317c: 1f0c subs r4, r1, #4 + 801317e: 2b00 cmp r3, #0 + 8013180: bfb8 it lt + 8013182: 18e4 addlt r4, r4, r3 + 8013184: f000 f8de bl 8013344 <__malloc_lock> + 8013188: 4a1c ldr r2, [pc, #112] @ (80131fc <_free_r+0x8c>) + 801318a: 6813 ldr r3, [r2, #0] + 801318c: b933 cbnz r3, 801319c <_free_r+0x2c> + 801318e: 6063 str r3, [r4, #4] + 8013190: 6014 str r4, [r2, #0] + 8013192: 4628 mov r0, r5 + 8013194: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 8013198: f000 b8da b.w 8013350 <__malloc_unlock> 801319c: 42a3 cmp r3, r4 - 801319e: d9fa bls.n 8013196 <_free_r+0x42> - 80131a0: 6811 ldr r1, [r2, #0] - 80131a2: 1850 adds r0, r2, r1 - 80131a4: 42a0 cmp r0, r4 - 80131a6: d10b bne.n 80131c0 <_free_r+0x6c> - 80131a8: 6820 ldr r0, [r4, #0] - 80131aa: 4401 add r1, r0 - 80131ac: 1850 adds r0, r2, r1 - 80131ae: 4283 cmp r3, r0 - 80131b0: 6011 str r1, [r2, #0] - 80131b2: d1e0 bne.n 8013176 <_free_r+0x22> - 80131b4: 6818 ldr r0, [r3, #0] - 80131b6: 685b ldr r3, [r3, #4] - 80131b8: 4408 add r0, r1 - 80131ba: 6010 str r0, [r2, #0] - 80131bc: 6053 str r3, [r2, #4] - 80131be: e7da b.n 8013176 <_free_r+0x22> - 80131c0: d902 bls.n 80131c8 <_free_r+0x74> - 80131c2: 230c movs r3, #12 - 80131c4: 602b str r3, [r5, #0] - 80131c6: e7d6 b.n 8013176 <_free_r+0x22> - 80131c8: 6820 ldr r0, [r4, #0] - 80131ca: 1821 adds r1, r4, r0 - 80131cc: 428b cmp r3, r1 - 80131ce: bf01 itttt eq - 80131d0: 6819 ldreq r1, [r3, #0] - 80131d2: 685b ldreq r3, [r3, #4] - 80131d4: 1809 addeq r1, r1, r0 - 80131d6: 6021 streq r1, [r4, #0] - 80131d8: 6063 str r3, [r4, #4] - 80131da: 6054 str r4, [r2, #4] - 80131dc: e7cb b.n 8013176 <_free_r+0x22> - 80131de: bd38 pop {r3, r4, r5, pc} - 80131e0: 200011c4 .word 0x200011c4 + 801319e: d908 bls.n 80131b2 <_free_r+0x42> + 80131a0: 6820 ldr r0, [r4, #0] + 80131a2: 1821 adds r1, r4, r0 + 80131a4: 428b cmp r3, r1 + 80131a6: bf01 itttt eq + 80131a8: 6819 ldreq r1, [r3, #0] + 80131aa: 685b ldreq r3, [r3, #4] + 80131ac: 1809 addeq r1, r1, r0 + 80131ae: 6021 streq r1, [r4, #0] + 80131b0: e7ed b.n 801318e <_free_r+0x1e> + 80131b2: 461a mov r2, r3 + 80131b4: 685b ldr r3, [r3, #4] + 80131b6: b10b cbz r3, 80131bc <_free_r+0x4c> + 80131b8: 42a3 cmp r3, r4 + 80131ba: d9fa bls.n 80131b2 <_free_r+0x42> + 80131bc: 6811 ldr r1, [r2, #0] + 80131be: 1850 adds r0, r2, r1 + 80131c0: 42a0 cmp r0, r4 + 80131c2: d10b bne.n 80131dc <_free_r+0x6c> + 80131c4: 6820 ldr r0, [r4, #0] + 80131c6: 4401 add r1, r0 + 80131c8: 1850 adds r0, r2, r1 + 80131ca: 4283 cmp r3, r0 + 80131cc: 6011 str r1, [r2, #0] + 80131ce: d1e0 bne.n 8013192 <_free_r+0x22> + 80131d0: 6818 ldr r0, [r3, #0] + 80131d2: 685b ldr r3, [r3, #4] + 80131d4: 4408 add r0, r1 + 80131d6: 6010 str r0, [r2, #0] + 80131d8: 6053 str r3, [r2, #4] + 80131da: e7da b.n 8013192 <_free_r+0x22> + 80131dc: d902 bls.n 80131e4 <_free_r+0x74> + 80131de: 230c movs r3, #12 + 80131e0: 602b str r3, [r5, #0] + 80131e2: e7d6 b.n 8013192 <_free_r+0x22> + 80131e4: 6820 ldr r0, [r4, #0] + 80131e6: 1821 adds r1, r4, r0 + 80131e8: 428b cmp r3, r1 + 80131ea: bf01 itttt eq + 80131ec: 6819 ldreq r1, [r3, #0] + 80131ee: 685b ldreq r3, [r3, #4] + 80131f0: 1809 addeq r1, r1, r0 + 80131f2: 6021 streq r1, [r4, #0] + 80131f4: 6063 str r3, [r4, #4] + 80131f6: 6054 str r4, [r2, #4] + 80131f8: e7cb b.n 8013192 <_free_r+0x22> + 80131fa: bd38 pop {r3, r4, r5, pc} + 80131fc: 200011c4 .word 0x200011c4 -080131e4 : - 80131e4: b570 push {r4, r5, r6, lr} - 80131e6: 4e0f ldr r6, [pc, #60] @ (8013224 ) - 80131e8: 460c mov r4, r1 - 80131ea: 6831 ldr r1, [r6, #0] - 80131ec: 4605 mov r5, r0 - 80131ee: b911 cbnz r1, 80131f6 - 80131f0: f000 fe24 bl 8013e3c <_sbrk_r> - 80131f4: 6030 str r0, [r6, #0] - 80131f6: 4621 mov r1, r4 - 80131f8: 4628 mov r0, r5 - 80131fa: f000 fe1f bl 8013e3c <_sbrk_r> - 80131fe: 1c43 adds r3, r0, #1 - 8013200: d103 bne.n 801320a - 8013202: f04f 34ff mov.w r4, #4294967295 - 8013206: 4620 mov r0, r4 - 8013208: bd70 pop {r4, r5, r6, pc} - 801320a: 1cc4 adds r4, r0, #3 - 801320c: f024 0403 bic.w r4, r4, #3 - 8013210: 42a0 cmp r0, r4 - 8013212: d0f8 beq.n 8013206 - 8013214: 1a21 subs r1, r4, r0 - 8013216: 4628 mov r0, r5 - 8013218: f000 fe10 bl 8013e3c <_sbrk_r> - 801321c: 3001 adds r0, #1 - 801321e: d1f2 bne.n 8013206 - 8013220: e7ef b.n 8013202 - 8013222: bf00 nop - 8013224: 200011c0 .word 0x200011c0 +08013200 : + 8013200: b570 push {r4, r5, r6, lr} + 8013202: 4e0f ldr r6, [pc, #60] @ (8013240 ) + 8013204: 460c mov r4, r1 + 8013206: 6831 ldr r1, [r6, #0] + 8013208: 4605 mov r5, r0 + 801320a: b911 cbnz r1, 8013212 + 801320c: f000 fe24 bl 8013e58 <_sbrk_r> + 8013210: 6030 str r0, [r6, #0] + 8013212: 4621 mov r1, r4 + 8013214: 4628 mov r0, r5 + 8013216: f000 fe1f bl 8013e58 <_sbrk_r> + 801321a: 1c43 adds r3, r0, #1 + 801321c: d103 bne.n 8013226 + 801321e: f04f 34ff mov.w r4, #4294967295 + 8013222: 4620 mov r0, r4 + 8013224: bd70 pop {r4, r5, r6, pc} + 8013226: 1cc4 adds r4, r0, #3 + 8013228: f024 0403 bic.w r4, r4, #3 + 801322c: 42a0 cmp r0, r4 + 801322e: d0f8 beq.n 8013222 + 8013230: 1a21 subs r1, r4, r0 + 8013232: 4628 mov r0, r5 + 8013234: f000 fe10 bl 8013e58 <_sbrk_r> + 8013238: 3001 adds r0, #1 + 801323a: d1f2 bne.n 8013222 + 801323c: e7ef b.n 801321e + 801323e: bf00 nop + 8013240: 200011c0 .word 0x200011c0 -08013228 <_malloc_r>: - 8013228: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 801322c: 1ccd adds r5, r1, #3 - 801322e: f025 0503 bic.w r5, r5, #3 - 8013232: 3508 adds r5, #8 - 8013234: 2d0c cmp r5, #12 - 8013236: bf38 it cc - 8013238: 250c movcc r5, #12 - 801323a: 2d00 cmp r5, #0 - 801323c: 4606 mov r6, r0 - 801323e: db01 blt.n 8013244 <_malloc_r+0x1c> - 8013240: 42a9 cmp r1, r5 - 8013242: d904 bls.n 801324e <_malloc_r+0x26> - 8013244: 230c movs r3, #12 - 8013246: 6033 str r3, [r6, #0] - 8013248: 2000 movs r0, #0 - 801324a: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 801324e: f8df 80d4 ldr.w r8, [pc, #212] @ 8013324 <_malloc_r+0xfc> - 8013252: f000 f869 bl 8013328 <__malloc_lock> - 8013256: f8d8 3000 ldr.w r3, [r8] - 801325a: 461c mov r4, r3 - 801325c: bb44 cbnz r4, 80132b0 <_malloc_r+0x88> - 801325e: 4629 mov r1, r5 - 8013260: 4630 mov r0, r6 - 8013262: f7ff ffbf bl 80131e4 - 8013266: 1c43 adds r3, r0, #1 - 8013268: 4604 mov r4, r0 - 801326a: d158 bne.n 801331e <_malloc_r+0xf6> - 801326c: f8d8 4000 ldr.w r4, [r8] - 8013270: 4627 mov r7, r4 - 8013272: 2f00 cmp r7, #0 - 8013274: d143 bne.n 80132fe <_malloc_r+0xd6> - 8013276: 2c00 cmp r4, #0 - 8013278: d04b beq.n 8013312 <_malloc_r+0xea> - 801327a: 6823 ldr r3, [r4, #0] - 801327c: 4639 mov r1, r7 - 801327e: 4630 mov r0, r6 - 8013280: eb04 0903 add.w r9, r4, r3 - 8013284: f000 fdda bl 8013e3c <_sbrk_r> - 8013288: 4581 cmp r9, r0 - 801328a: d142 bne.n 8013312 <_malloc_r+0xea> - 801328c: 6821 ldr r1, [r4, #0] - 801328e: 4630 mov r0, r6 - 8013290: 1a6d subs r5, r5, r1 - 8013292: 4629 mov r1, r5 - 8013294: f7ff ffa6 bl 80131e4 - 8013298: 3001 adds r0, #1 - 801329a: d03a beq.n 8013312 <_malloc_r+0xea> - 801329c: 6823 ldr r3, [r4, #0] - 801329e: 442b add r3, r5 - 80132a0: 6023 str r3, [r4, #0] - 80132a2: f8d8 3000 ldr.w r3, [r8] - 80132a6: 685a ldr r2, [r3, #4] - 80132a8: bb62 cbnz r2, 8013304 <_malloc_r+0xdc> - 80132aa: f8c8 7000 str.w r7, [r8] - 80132ae: e00f b.n 80132d0 <_malloc_r+0xa8> - 80132b0: 6822 ldr r2, [r4, #0] - 80132b2: 1b52 subs r2, r2, r5 - 80132b4: d420 bmi.n 80132f8 <_malloc_r+0xd0> - 80132b6: 2a0b cmp r2, #11 - 80132b8: d917 bls.n 80132ea <_malloc_r+0xc2> - 80132ba: 1961 adds r1, r4, r5 - 80132bc: 42a3 cmp r3, r4 - 80132be: 6025 str r5, [r4, #0] - 80132c0: bf18 it ne - 80132c2: 6059 strne r1, [r3, #4] - 80132c4: 6863 ldr r3, [r4, #4] - 80132c6: bf08 it eq - 80132c8: f8c8 1000 streq.w r1, [r8] - 80132cc: 5162 str r2, [r4, r5] - 80132ce: 604b str r3, [r1, #4] - 80132d0: 4630 mov r0, r6 - 80132d2: f000 f82f bl 8013334 <__malloc_unlock> - 80132d6: f104 000b add.w r0, r4, #11 - 80132da: 1d23 adds r3, r4, #4 - 80132dc: f020 0007 bic.w r0, r0, #7 - 80132e0: 1ac2 subs r2, r0, r3 - 80132e2: bf1c itt ne - 80132e4: 1a1b subne r3, r3, r0 - 80132e6: 50a3 strne r3, [r4, r2] - 80132e8: e7af b.n 801324a <_malloc_r+0x22> - 80132ea: 6862 ldr r2, [r4, #4] - 80132ec: 42a3 cmp r3, r4 - 80132ee: bf0c ite eq - 80132f0: f8c8 2000 streq.w r2, [r8] - 80132f4: 605a strne r2, [r3, #4] - 80132f6: e7eb b.n 80132d0 <_malloc_r+0xa8> - 80132f8: 4623 mov r3, r4 - 80132fa: 6864 ldr r4, [r4, #4] - 80132fc: e7ae b.n 801325c <_malloc_r+0x34> - 80132fe: 463c mov r4, r7 - 8013300: 687f ldr r7, [r7, #4] - 8013302: e7b6 b.n 8013272 <_malloc_r+0x4a> - 8013304: 461a mov r2, r3 - 8013306: 685b ldr r3, [r3, #4] +08013244 <_malloc_r>: + 8013244: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 8013248: 1ccd adds r5, r1, #3 + 801324a: f025 0503 bic.w r5, r5, #3 + 801324e: 3508 adds r5, #8 + 8013250: 2d0c cmp r5, #12 + 8013252: bf38 it cc + 8013254: 250c movcc r5, #12 + 8013256: 2d00 cmp r5, #0 + 8013258: 4606 mov r6, r0 + 801325a: db01 blt.n 8013260 <_malloc_r+0x1c> + 801325c: 42a9 cmp r1, r5 + 801325e: d904 bls.n 801326a <_malloc_r+0x26> + 8013260: 230c movs r3, #12 + 8013262: 6033 str r3, [r6, #0] + 8013264: 2000 movs r0, #0 + 8013266: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 801326a: f8df 80d4 ldr.w r8, [pc, #212] @ 8013340 <_malloc_r+0xfc> + 801326e: f000 f869 bl 8013344 <__malloc_lock> + 8013272: f8d8 3000 ldr.w r3, [r8] + 8013276: 461c mov r4, r3 + 8013278: bb44 cbnz r4, 80132cc <_malloc_r+0x88> + 801327a: 4629 mov r1, r5 + 801327c: 4630 mov r0, r6 + 801327e: f7ff ffbf bl 8013200 + 8013282: 1c43 adds r3, r0, #1 + 8013284: 4604 mov r4, r0 + 8013286: d158 bne.n 801333a <_malloc_r+0xf6> + 8013288: f8d8 4000 ldr.w r4, [r8] + 801328c: 4627 mov r7, r4 + 801328e: 2f00 cmp r7, #0 + 8013290: d143 bne.n 801331a <_malloc_r+0xd6> + 8013292: 2c00 cmp r4, #0 + 8013294: d04b beq.n 801332e <_malloc_r+0xea> + 8013296: 6823 ldr r3, [r4, #0] + 8013298: 4639 mov r1, r7 + 801329a: 4630 mov r0, r6 + 801329c: eb04 0903 add.w r9, r4, r3 + 80132a0: f000 fdda bl 8013e58 <_sbrk_r> + 80132a4: 4581 cmp r9, r0 + 80132a6: d142 bne.n 801332e <_malloc_r+0xea> + 80132a8: 6821 ldr r1, [r4, #0] + 80132aa: 4630 mov r0, r6 + 80132ac: 1a6d subs r5, r5, r1 + 80132ae: 4629 mov r1, r5 + 80132b0: f7ff ffa6 bl 8013200 + 80132b4: 3001 adds r0, #1 + 80132b6: d03a beq.n 801332e <_malloc_r+0xea> + 80132b8: 6823 ldr r3, [r4, #0] + 80132ba: 442b add r3, r5 + 80132bc: 6023 str r3, [r4, #0] + 80132be: f8d8 3000 ldr.w r3, [r8] + 80132c2: 685a ldr r2, [r3, #4] + 80132c4: bb62 cbnz r2, 8013320 <_malloc_r+0xdc> + 80132c6: f8c8 7000 str.w r7, [r8] + 80132ca: e00f b.n 80132ec <_malloc_r+0xa8> + 80132cc: 6822 ldr r2, [r4, #0] + 80132ce: 1b52 subs r2, r2, r5 + 80132d0: d420 bmi.n 8013314 <_malloc_r+0xd0> + 80132d2: 2a0b cmp r2, #11 + 80132d4: d917 bls.n 8013306 <_malloc_r+0xc2> + 80132d6: 1961 adds r1, r4, r5 + 80132d8: 42a3 cmp r3, r4 + 80132da: 6025 str r5, [r4, #0] + 80132dc: bf18 it ne + 80132de: 6059 strne r1, [r3, #4] + 80132e0: 6863 ldr r3, [r4, #4] + 80132e2: bf08 it eq + 80132e4: f8c8 1000 streq.w r1, [r8] + 80132e8: 5162 str r2, [r4, r5] + 80132ea: 604b str r3, [r1, #4] + 80132ec: 4630 mov r0, r6 + 80132ee: f000 f82f bl 8013350 <__malloc_unlock> + 80132f2: f104 000b add.w r0, r4, #11 + 80132f6: 1d23 adds r3, r4, #4 + 80132f8: f020 0007 bic.w r0, r0, #7 + 80132fc: 1ac2 subs r2, r0, r3 + 80132fe: bf1c itt ne + 8013300: 1a1b subne r3, r3, r0 + 8013302: 50a3 strne r3, [r4, r2] + 8013304: e7af b.n 8013266 <_malloc_r+0x22> + 8013306: 6862 ldr r2, [r4, #4] 8013308: 42a3 cmp r3, r4 - 801330a: d1fb bne.n 8013304 <_malloc_r+0xdc> - 801330c: 2300 movs r3, #0 - 801330e: 6053 str r3, [r2, #4] - 8013310: e7de b.n 80132d0 <_malloc_r+0xa8> - 8013312: 230c movs r3, #12 - 8013314: 4630 mov r0, r6 - 8013316: 6033 str r3, [r6, #0] - 8013318: f000 f80c bl 8013334 <__malloc_unlock> - 801331c: e794 b.n 8013248 <_malloc_r+0x20> - 801331e: 6005 str r5, [r0, #0] - 8013320: e7d6 b.n 80132d0 <_malloc_r+0xa8> - 8013322: bf00 nop - 8013324: 200011c4 .word 0x200011c4 + 801330a: bf0c ite eq + 801330c: f8c8 2000 streq.w r2, [r8] + 8013310: 605a strne r2, [r3, #4] + 8013312: e7eb b.n 80132ec <_malloc_r+0xa8> + 8013314: 4623 mov r3, r4 + 8013316: 6864 ldr r4, [r4, #4] + 8013318: e7ae b.n 8013278 <_malloc_r+0x34> + 801331a: 463c mov r4, r7 + 801331c: 687f ldr r7, [r7, #4] + 801331e: e7b6 b.n 801328e <_malloc_r+0x4a> + 8013320: 461a mov r2, r3 + 8013322: 685b ldr r3, [r3, #4] + 8013324: 42a3 cmp r3, r4 + 8013326: d1fb bne.n 8013320 <_malloc_r+0xdc> + 8013328: 2300 movs r3, #0 + 801332a: 6053 str r3, [r2, #4] + 801332c: e7de b.n 80132ec <_malloc_r+0xa8> + 801332e: 230c movs r3, #12 + 8013330: 4630 mov r0, r6 + 8013332: 6033 str r3, [r6, #0] + 8013334: f000 f80c bl 8013350 <__malloc_unlock> + 8013338: e794 b.n 8013264 <_malloc_r+0x20> + 801333a: 6005 str r5, [r0, #0] + 801333c: e7d6 b.n 80132ec <_malloc_r+0xa8> + 801333e: bf00 nop + 8013340: 200011c4 .word 0x200011c4 -08013328 <__malloc_lock>: - 8013328: 4801 ldr r0, [pc, #4] @ (8013330 <__malloc_lock+0x8>) - 801332a: f7ff bf02 b.w 8013132 <__retarget_lock_acquire_recursive> - 801332e: bf00 nop - 8013330: 200011bc .word 0x200011bc +08013344 <__malloc_lock>: + 8013344: 4801 ldr r0, [pc, #4] @ (801334c <__malloc_lock+0x8>) + 8013346: f7ff bf02 b.w 801314e <__retarget_lock_acquire_recursive> + 801334a: bf00 nop + 801334c: 200011bc .word 0x200011bc -08013334 <__malloc_unlock>: - 8013334: 4801 ldr r0, [pc, #4] @ (801333c <__malloc_unlock+0x8>) - 8013336: f7ff befd b.w 8013134 <__retarget_lock_release_recursive> - 801333a: bf00 nop - 801333c: 200011bc .word 0x200011bc +08013350 <__malloc_unlock>: + 8013350: 4801 ldr r0, [pc, #4] @ (8013358 <__malloc_unlock+0x8>) + 8013352: f7ff befd b.w 8013150 <__retarget_lock_release_recursive> + 8013356: bf00 nop + 8013358: 200011bc .word 0x200011bc -08013340 <__ssputs_r>: - 8013340: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8013344: 461f mov r7, r3 - 8013346: 688e ldr r6, [r1, #8] - 8013348: 4682 mov sl, r0 - 801334a: 42be cmp r6, r7 - 801334c: 460c mov r4, r1 - 801334e: 4690 mov r8, r2 - 8013350: 680b ldr r3, [r1, #0] - 8013352: d82d bhi.n 80133b0 <__ssputs_r+0x70> - 8013354: f9b1 200c ldrsh.w r2, [r1, #12] - 8013358: f412 6f90 tst.w r2, #1152 @ 0x480 - 801335c: d026 beq.n 80133ac <__ssputs_r+0x6c> - 801335e: 6965 ldr r5, [r4, #20] - 8013360: 6909 ldr r1, [r1, #16] - 8013362: eb05 0545 add.w r5, r5, r5, lsl #1 - 8013366: eba3 0901 sub.w r9, r3, r1 - 801336a: eb05 75d5 add.w r5, r5, r5, lsr #31 - 801336e: 1c7b adds r3, r7, #1 - 8013370: 444b add r3, r9 - 8013372: 106d asrs r5, r5, #1 - 8013374: 429d cmp r5, r3 - 8013376: bf38 it cc - 8013378: 461d movcc r5, r3 - 801337a: 0553 lsls r3, r2, #21 - 801337c: d527 bpl.n 80133ce <__ssputs_r+0x8e> - 801337e: 4629 mov r1, r5 - 8013380: f7ff ff52 bl 8013228 <_malloc_r> - 8013384: 4606 mov r6, r0 - 8013386: b360 cbz r0, 80133e2 <__ssputs_r+0xa2> - 8013388: 464a mov r2, r9 - 801338a: 6921 ldr r1, [r4, #16] - 801338c: f7ff fed3 bl 8013136 - 8013390: 89a3 ldrh r3, [r4, #12] - 8013392: f423 6390 bic.w r3, r3, #1152 @ 0x480 - 8013396: f043 0380 orr.w r3, r3, #128 @ 0x80 - 801339a: 81a3 strh r3, [r4, #12] - 801339c: 6126 str r6, [r4, #16] - 801339e: 444e add r6, r9 - 80133a0: 6026 str r6, [r4, #0] - 80133a2: 463e mov r6, r7 - 80133a4: 6165 str r5, [r4, #20] - 80133a6: eba5 0509 sub.w r5, r5, r9 - 80133aa: 60a5 str r5, [r4, #8] - 80133ac: 42be cmp r6, r7 - 80133ae: d900 bls.n 80133b2 <__ssputs_r+0x72> - 80133b0: 463e mov r6, r7 - 80133b2: 4632 mov r2, r6 - 80133b4: 4641 mov r1, r8 - 80133b6: 6820 ldr r0, [r4, #0] - 80133b8: f000 fd26 bl 8013e08 - 80133bc: 2000 movs r0, #0 - 80133be: 68a3 ldr r3, [r4, #8] - 80133c0: 1b9b subs r3, r3, r6 - 80133c2: 60a3 str r3, [r4, #8] - 80133c4: 6823 ldr r3, [r4, #0] - 80133c6: 4433 add r3, r6 - 80133c8: 6023 str r3, [r4, #0] - 80133ca: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 80133ce: 462a mov r2, r5 - 80133d0: f000 fd52 bl 8013e78 <_realloc_r> - 80133d4: 4606 mov r6, r0 - 80133d6: 2800 cmp r0, #0 - 80133d8: d1e0 bne.n 801339c <__ssputs_r+0x5c> - 80133da: 4650 mov r0, sl - 80133dc: 6921 ldr r1, [r4, #16] - 80133de: f7ff feb9 bl 8013154 <_free_r> - 80133e2: 230c movs r3, #12 - 80133e4: f8ca 3000 str.w r3, [sl] - 80133e8: 89a3 ldrh r3, [r4, #12] - 80133ea: f04f 30ff mov.w r0, #4294967295 - 80133ee: f043 0340 orr.w r3, r3, #64 @ 0x40 - 80133f2: 81a3 strh r3, [r4, #12] - 80133f4: e7e9 b.n 80133ca <__ssputs_r+0x8a> +0801335c <__ssputs_r>: + 801335c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8013360: 461f mov r7, r3 + 8013362: 688e ldr r6, [r1, #8] + 8013364: 4682 mov sl, r0 + 8013366: 42be cmp r6, r7 + 8013368: 460c mov r4, r1 + 801336a: 4690 mov r8, r2 + 801336c: 680b ldr r3, [r1, #0] + 801336e: d82d bhi.n 80133cc <__ssputs_r+0x70> + 8013370: f9b1 200c ldrsh.w r2, [r1, #12] + 8013374: f412 6f90 tst.w r2, #1152 @ 0x480 + 8013378: d026 beq.n 80133c8 <__ssputs_r+0x6c> + 801337a: 6965 ldr r5, [r4, #20] + 801337c: 6909 ldr r1, [r1, #16] + 801337e: eb05 0545 add.w r5, r5, r5, lsl #1 + 8013382: eba3 0901 sub.w r9, r3, r1 + 8013386: eb05 75d5 add.w r5, r5, r5, lsr #31 + 801338a: 1c7b adds r3, r7, #1 + 801338c: 444b add r3, r9 + 801338e: 106d asrs r5, r5, #1 + 8013390: 429d cmp r5, r3 + 8013392: bf38 it cc + 8013394: 461d movcc r5, r3 + 8013396: 0553 lsls r3, r2, #21 + 8013398: d527 bpl.n 80133ea <__ssputs_r+0x8e> + 801339a: 4629 mov r1, r5 + 801339c: f7ff ff52 bl 8013244 <_malloc_r> + 80133a0: 4606 mov r6, r0 + 80133a2: b360 cbz r0, 80133fe <__ssputs_r+0xa2> + 80133a4: 464a mov r2, r9 + 80133a6: 6921 ldr r1, [r4, #16] + 80133a8: f7ff fed3 bl 8013152 + 80133ac: 89a3 ldrh r3, [r4, #12] + 80133ae: f423 6390 bic.w r3, r3, #1152 @ 0x480 + 80133b2: f043 0380 orr.w r3, r3, #128 @ 0x80 + 80133b6: 81a3 strh r3, [r4, #12] + 80133b8: 6126 str r6, [r4, #16] + 80133ba: 444e add r6, r9 + 80133bc: 6026 str r6, [r4, #0] + 80133be: 463e mov r6, r7 + 80133c0: 6165 str r5, [r4, #20] + 80133c2: eba5 0509 sub.w r5, r5, r9 + 80133c6: 60a5 str r5, [r4, #8] + 80133c8: 42be cmp r6, r7 + 80133ca: d900 bls.n 80133ce <__ssputs_r+0x72> + 80133cc: 463e mov r6, r7 + 80133ce: 4632 mov r2, r6 + 80133d0: 4641 mov r1, r8 + 80133d2: 6820 ldr r0, [r4, #0] + 80133d4: f000 fd26 bl 8013e24 + 80133d8: 2000 movs r0, #0 + 80133da: 68a3 ldr r3, [r4, #8] + 80133dc: 1b9b subs r3, r3, r6 + 80133de: 60a3 str r3, [r4, #8] + 80133e0: 6823 ldr r3, [r4, #0] + 80133e2: 4433 add r3, r6 + 80133e4: 6023 str r3, [r4, #0] + 80133e6: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 80133ea: 462a mov r2, r5 + 80133ec: f000 fd52 bl 8013e94 <_realloc_r> + 80133f0: 4606 mov r6, r0 + 80133f2: 2800 cmp r0, #0 + 80133f4: d1e0 bne.n 80133b8 <__ssputs_r+0x5c> + 80133f6: 4650 mov r0, sl + 80133f8: 6921 ldr r1, [r4, #16] + 80133fa: f7ff feb9 bl 8013170 <_free_r> + 80133fe: 230c movs r3, #12 + 8013400: f8ca 3000 str.w r3, [sl] + 8013404: 89a3 ldrh r3, [r4, #12] + 8013406: f04f 30ff mov.w r0, #4294967295 + 801340a: f043 0340 orr.w r3, r3, #64 @ 0x40 + 801340e: 81a3 strh r3, [r4, #12] + 8013410: e7e9 b.n 80133e6 <__ssputs_r+0x8a> ... -080133f8 <_svfiprintf_r>: - 80133f8: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 80133fc: 4698 mov r8, r3 - 80133fe: 898b ldrh r3, [r1, #12] - 8013400: 4607 mov r7, r0 - 8013402: 061b lsls r3, r3, #24 - 8013404: 460d mov r5, r1 - 8013406: 4614 mov r4, r2 - 8013408: b09d sub sp, #116 @ 0x74 - 801340a: d510 bpl.n 801342e <_svfiprintf_r+0x36> - 801340c: 690b ldr r3, [r1, #16] - 801340e: b973 cbnz r3, 801342e <_svfiprintf_r+0x36> - 8013410: 2140 movs r1, #64 @ 0x40 - 8013412: f7ff ff09 bl 8013228 <_malloc_r> - 8013416: 6028 str r0, [r5, #0] - 8013418: 6128 str r0, [r5, #16] - 801341a: b930 cbnz r0, 801342a <_svfiprintf_r+0x32> - 801341c: 230c movs r3, #12 - 801341e: 603b str r3, [r7, #0] - 8013420: f04f 30ff mov.w r0, #4294967295 - 8013424: b01d add sp, #116 @ 0x74 - 8013426: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 801342a: 2340 movs r3, #64 @ 0x40 - 801342c: 616b str r3, [r5, #20] - 801342e: 2300 movs r3, #0 - 8013430: 9309 str r3, [sp, #36] @ 0x24 - 8013432: 2320 movs r3, #32 - 8013434: f88d 3029 strb.w r3, [sp, #41] @ 0x29 - 8013438: 2330 movs r3, #48 @ 0x30 - 801343a: f04f 0901 mov.w r9, #1 - 801343e: f8cd 800c str.w r8, [sp, #12] - 8013442: f8df 8198 ldr.w r8, [pc, #408] @ 80135dc <_svfiprintf_r+0x1e4> - 8013446: f88d 302a strb.w r3, [sp, #42] @ 0x2a - 801344a: 4623 mov r3, r4 - 801344c: 469a mov sl, r3 - 801344e: f813 2b01 ldrb.w r2, [r3], #1 - 8013452: b10a cbz r2, 8013458 <_svfiprintf_r+0x60> - 8013454: 2a25 cmp r2, #37 @ 0x25 - 8013456: d1f9 bne.n 801344c <_svfiprintf_r+0x54> - 8013458: ebba 0b04 subs.w fp, sl, r4 - 801345c: d00b beq.n 8013476 <_svfiprintf_r+0x7e> - 801345e: 465b mov r3, fp - 8013460: 4622 mov r2, r4 - 8013462: 4629 mov r1, r5 - 8013464: 4638 mov r0, r7 - 8013466: f7ff ff6b bl 8013340 <__ssputs_r> - 801346a: 3001 adds r0, #1 - 801346c: f000 80a7 beq.w 80135be <_svfiprintf_r+0x1c6> - 8013470: 9a09 ldr r2, [sp, #36] @ 0x24 - 8013472: 445a add r2, fp - 8013474: 9209 str r2, [sp, #36] @ 0x24 - 8013476: f89a 3000 ldrb.w r3, [sl] - 801347a: 2b00 cmp r3, #0 - 801347c: f000 809f beq.w 80135be <_svfiprintf_r+0x1c6> - 8013480: 2300 movs r3, #0 - 8013482: f04f 32ff mov.w r2, #4294967295 - 8013486: e9cd 2305 strd r2, r3, [sp, #20] - 801348a: f10a 0a01 add.w sl, sl, #1 - 801348e: 9304 str r3, [sp, #16] - 8013490: 9307 str r3, [sp, #28] - 8013492: f88d 3053 strb.w r3, [sp, #83] @ 0x53 - 8013496: 931a str r3, [sp, #104] @ 0x68 - 8013498: 4654 mov r4, sl - 801349a: 2205 movs r2, #5 - 801349c: f814 1b01 ldrb.w r1, [r4], #1 - 80134a0: 484e ldr r0, [pc, #312] @ (80135dc <_svfiprintf_r+0x1e4>) - 80134a2: f000 fcdb bl 8013e5c - 80134a6: 9a04 ldr r2, [sp, #16] - 80134a8: b9d8 cbnz r0, 80134e2 <_svfiprintf_r+0xea> - 80134aa: 06d0 lsls r0, r2, #27 - 80134ac: bf44 itt mi - 80134ae: 2320 movmi r3, #32 - 80134b0: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 - 80134b4: 0711 lsls r1, r2, #28 - 80134b6: bf44 itt mi - 80134b8: 232b movmi r3, #43 @ 0x2b - 80134ba: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 - 80134be: f89a 3000 ldrb.w r3, [sl] - 80134c2: 2b2a cmp r3, #42 @ 0x2a - 80134c4: d015 beq.n 80134f2 <_svfiprintf_r+0xfa> - 80134c6: 4654 mov r4, sl - 80134c8: 2000 movs r0, #0 - 80134ca: f04f 0c0a mov.w ip, #10 - 80134ce: 9a07 ldr r2, [sp, #28] - 80134d0: 4621 mov r1, r4 - 80134d2: f811 3b01 ldrb.w r3, [r1], #1 - 80134d6: 3b30 subs r3, #48 @ 0x30 - 80134d8: 2b09 cmp r3, #9 - 80134da: d94b bls.n 8013574 <_svfiprintf_r+0x17c> - 80134dc: b1b0 cbz r0, 801350c <_svfiprintf_r+0x114> - 80134de: 9207 str r2, [sp, #28] - 80134e0: e014 b.n 801350c <_svfiprintf_r+0x114> - 80134e2: eba0 0308 sub.w r3, r0, r8 - 80134e6: fa09 f303 lsl.w r3, r9, r3 - 80134ea: 4313 orrs r3, r2 - 80134ec: 46a2 mov sl, r4 - 80134ee: 9304 str r3, [sp, #16] - 80134f0: e7d2 b.n 8013498 <_svfiprintf_r+0xa0> - 80134f2: 9b03 ldr r3, [sp, #12] - 80134f4: 1d19 adds r1, r3, #4 - 80134f6: 681b ldr r3, [r3, #0] - 80134f8: 9103 str r1, [sp, #12] - 80134fa: 2b00 cmp r3, #0 - 80134fc: bfbb ittet lt - 80134fe: 425b neglt r3, r3 - 8013500: f042 0202 orrlt.w r2, r2, #2 - 8013504: 9307 strge r3, [sp, #28] - 8013506: 9307 strlt r3, [sp, #28] - 8013508: bfb8 it lt - 801350a: 9204 strlt r2, [sp, #16] - 801350c: 7823 ldrb r3, [r4, #0] - 801350e: 2b2e cmp r3, #46 @ 0x2e - 8013510: d10a bne.n 8013528 <_svfiprintf_r+0x130> - 8013512: 7863 ldrb r3, [r4, #1] - 8013514: 2b2a cmp r3, #42 @ 0x2a - 8013516: d132 bne.n 801357e <_svfiprintf_r+0x186> - 8013518: 9b03 ldr r3, [sp, #12] - 801351a: 3402 adds r4, #2 - 801351c: 1d1a adds r2, r3, #4 - 801351e: 681b ldr r3, [r3, #0] - 8013520: 9203 str r2, [sp, #12] - 8013522: ea43 73e3 orr.w r3, r3, r3, asr #31 - 8013526: 9305 str r3, [sp, #20] - 8013528: f8df a0b4 ldr.w sl, [pc, #180] @ 80135e0 <_svfiprintf_r+0x1e8> - 801352c: 2203 movs r2, #3 - 801352e: 4650 mov r0, sl - 8013530: 7821 ldrb r1, [r4, #0] - 8013532: f000 fc93 bl 8013e5c - 8013536: b138 cbz r0, 8013548 <_svfiprintf_r+0x150> - 8013538: 2240 movs r2, #64 @ 0x40 - 801353a: 9b04 ldr r3, [sp, #16] - 801353c: eba0 000a sub.w r0, r0, sl - 8013540: 4082 lsls r2, r0 - 8013542: 4313 orrs r3, r2 - 8013544: 3401 adds r4, #1 - 8013546: 9304 str r3, [sp, #16] - 8013548: f814 1b01 ldrb.w r1, [r4], #1 - 801354c: 2206 movs r2, #6 - 801354e: 4825 ldr r0, [pc, #148] @ (80135e4 <_svfiprintf_r+0x1ec>) - 8013550: f88d 1028 strb.w r1, [sp, #40] @ 0x28 - 8013554: f000 fc82 bl 8013e5c - 8013558: 2800 cmp r0, #0 - 801355a: d036 beq.n 80135ca <_svfiprintf_r+0x1d2> - 801355c: 4b22 ldr r3, [pc, #136] @ (80135e8 <_svfiprintf_r+0x1f0>) - 801355e: bb1b cbnz r3, 80135a8 <_svfiprintf_r+0x1b0> - 8013560: 9b03 ldr r3, [sp, #12] - 8013562: 3307 adds r3, #7 - 8013564: f023 0307 bic.w r3, r3, #7 - 8013568: 3308 adds r3, #8 - 801356a: 9303 str r3, [sp, #12] - 801356c: 9b09 ldr r3, [sp, #36] @ 0x24 - 801356e: 4433 add r3, r6 - 8013570: 9309 str r3, [sp, #36] @ 0x24 - 8013572: e76a b.n 801344a <_svfiprintf_r+0x52> - 8013574: 460c mov r4, r1 - 8013576: 2001 movs r0, #1 - 8013578: fb0c 3202 mla r2, ip, r2, r3 - 801357c: e7a8 b.n 80134d0 <_svfiprintf_r+0xd8> - 801357e: 2300 movs r3, #0 - 8013580: f04f 0c0a mov.w ip, #10 - 8013584: 4619 mov r1, r3 - 8013586: 3401 adds r4, #1 - 8013588: 9305 str r3, [sp, #20] - 801358a: 4620 mov r0, r4 - 801358c: f810 2b01 ldrb.w r2, [r0], #1 - 8013590: 3a30 subs r2, #48 @ 0x30 - 8013592: 2a09 cmp r2, #9 - 8013594: d903 bls.n 801359e <_svfiprintf_r+0x1a6> - 8013596: 2b00 cmp r3, #0 - 8013598: d0c6 beq.n 8013528 <_svfiprintf_r+0x130> - 801359a: 9105 str r1, [sp, #20] - 801359c: e7c4 b.n 8013528 <_svfiprintf_r+0x130> - 801359e: 4604 mov r4, r0 - 80135a0: 2301 movs r3, #1 - 80135a2: fb0c 2101 mla r1, ip, r1, r2 - 80135a6: e7f0 b.n 801358a <_svfiprintf_r+0x192> - 80135a8: ab03 add r3, sp, #12 - 80135aa: 9300 str r3, [sp, #0] - 80135ac: 462a mov r2, r5 - 80135ae: 4638 mov r0, r7 - 80135b0: 4b0e ldr r3, [pc, #56] @ (80135ec <_svfiprintf_r+0x1f4>) - 80135b2: a904 add r1, sp, #16 - 80135b4: f3af 8000 nop.w - 80135b8: 1c42 adds r2, r0, #1 - 80135ba: 4606 mov r6, r0 - 80135bc: d1d6 bne.n 801356c <_svfiprintf_r+0x174> - 80135be: 89ab ldrh r3, [r5, #12] - 80135c0: 065b lsls r3, r3, #25 - 80135c2: f53f af2d bmi.w 8013420 <_svfiprintf_r+0x28> - 80135c6: 9809 ldr r0, [sp, #36] @ 0x24 - 80135c8: e72c b.n 8013424 <_svfiprintf_r+0x2c> - 80135ca: ab03 add r3, sp, #12 - 80135cc: 9300 str r3, [sp, #0] - 80135ce: 462a mov r2, r5 - 80135d0: 4638 mov r0, r7 - 80135d2: 4b06 ldr r3, [pc, #24] @ (80135ec <_svfiprintf_r+0x1f4>) - 80135d4: a904 add r1, sp, #16 - 80135d6: f000 f9bd bl 8013954 <_printf_i> - 80135da: e7ed b.n 80135b8 <_svfiprintf_r+0x1c0> - 80135dc: 0801447c .word 0x0801447c - 80135e0: 08014482 .word 0x08014482 - 80135e4: 08014486 .word 0x08014486 - 80135e8: 00000000 .word 0x00000000 - 80135ec: 08013341 .word 0x08013341 +08013414 <_svfiprintf_r>: + 8013414: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8013418: 4698 mov r8, r3 + 801341a: 898b ldrh r3, [r1, #12] + 801341c: 4607 mov r7, r0 + 801341e: 061b lsls r3, r3, #24 + 8013420: 460d mov r5, r1 + 8013422: 4614 mov r4, r2 + 8013424: b09d sub sp, #116 @ 0x74 + 8013426: d510 bpl.n 801344a <_svfiprintf_r+0x36> + 8013428: 690b ldr r3, [r1, #16] + 801342a: b973 cbnz r3, 801344a <_svfiprintf_r+0x36> + 801342c: 2140 movs r1, #64 @ 0x40 + 801342e: f7ff ff09 bl 8013244 <_malloc_r> + 8013432: 6028 str r0, [r5, #0] + 8013434: 6128 str r0, [r5, #16] + 8013436: b930 cbnz r0, 8013446 <_svfiprintf_r+0x32> + 8013438: 230c movs r3, #12 + 801343a: 603b str r3, [r7, #0] + 801343c: f04f 30ff mov.w r0, #4294967295 + 8013440: b01d add sp, #116 @ 0x74 + 8013442: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8013446: 2340 movs r3, #64 @ 0x40 + 8013448: 616b str r3, [r5, #20] + 801344a: 2300 movs r3, #0 + 801344c: 9309 str r3, [sp, #36] @ 0x24 + 801344e: 2320 movs r3, #32 + 8013450: f88d 3029 strb.w r3, [sp, #41] @ 0x29 + 8013454: 2330 movs r3, #48 @ 0x30 + 8013456: f04f 0901 mov.w r9, #1 + 801345a: f8cd 800c str.w r8, [sp, #12] + 801345e: f8df 8198 ldr.w r8, [pc, #408] @ 80135f8 <_svfiprintf_r+0x1e4> + 8013462: f88d 302a strb.w r3, [sp, #42] @ 0x2a + 8013466: 4623 mov r3, r4 + 8013468: 469a mov sl, r3 + 801346a: f813 2b01 ldrb.w r2, [r3], #1 + 801346e: b10a cbz r2, 8013474 <_svfiprintf_r+0x60> + 8013470: 2a25 cmp r2, #37 @ 0x25 + 8013472: d1f9 bne.n 8013468 <_svfiprintf_r+0x54> + 8013474: ebba 0b04 subs.w fp, sl, r4 + 8013478: d00b beq.n 8013492 <_svfiprintf_r+0x7e> + 801347a: 465b mov r3, fp + 801347c: 4622 mov r2, r4 + 801347e: 4629 mov r1, r5 + 8013480: 4638 mov r0, r7 + 8013482: f7ff ff6b bl 801335c <__ssputs_r> + 8013486: 3001 adds r0, #1 + 8013488: f000 80a7 beq.w 80135da <_svfiprintf_r+0x1c6> + 801348c: 9a09 ldr r2, [sp, #36] @ 0x24 + 801348e: 445a add r2, fp + 8013490: 9209 str r2, [sp, #36] @ 0x24 + 8013492: f89a 3000 ldrb.w r3, [sl] + 8013496: 2b00 cmp r3, #0 + 8013498: f000 809f beq.w 80135da <_svfiprintf_r+0x1c6> + 801349c: 2300 movs r3, #0 + 801349e: f04f 32ff mov.w r2, #4294967295 + 80134a2: e9cd 2305 strd r2, r3, [sp, #20] + 80134a6: f10a 0a01 add.w sl, sl, #1 + 80134aa: 9304 str r3, [sp, #16] + 80134ac: 9307 str r3, [sp, #28] + 80134ae: f88d 3053 strb.w r3, [sp, #83] @ 0x53 + 80134b2: 931a str r3, [sp, #104] @ 0x68 + 80134b4: 4654 mov r4, sl + 80134b6: 2205 movs r2, #5 + 80134b8: f814 1b01 ldrb.w r1, [r4], #1 + 80134bc: 484e ldr r0, [pc, #312] @ (80135f8 <_svfiprintf_r+0x1e4>) + 80134be: f000 fcdb bl 8013e78 + 80134c2: 9a04 ldr r2, [sp, #16] + 80134c4: b9d8 cbnz r0, 80134fe <_svfiprintf_r+0xea> + 80134c6: 06d0 lsls r0, r2, #27 + 80134c8: bf44 itt mi + 80134ca: 2320 movmi r3, #32 + 80134cc: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 + 80134d0: 0711 lsls r1, r2, #28 + 80134d2: bf44 itt mi + 80134d4: 232b movmi r3, #43 @ 0x2b + 80134d6: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 + 80134da: f89a 3000 ldrb.w r3, [sl] + 80134de: 2b2a cmp r3, #42 @ 0x2a + 80134e0: d015 beq.n 801350e <_svfiprintf_r+0xfa> + 80134e2: 4654 mov r4, sl + 80134e4: 2000 movs r0, #0 + 80134e6: f04f 0c0a mov.w ip, #10 + 80134ea: 9a07 ldr r2, [sp, #28] + 80134ec: 4621 mov r1, r4 + 80134ee: f811 3b01 ldrb.w r3, [r1], #1 + 80134f2: 3b30 subs r3, #48 @ 0x30 + 80134f4: 2b09 cmp r3, #9 + 80134f6: d94b bls.n 8013590 <_svfiprintf_r+0x17c> + 80134f8: b1b0 cbz r0, 8013528 <_svfiprintf_r+0x114> + 80134fa: 9207 str r2, [sp, #28] + 80134fc: e014 b.n 8013528 <_svfiprintf_r+0x114> + 80134fe: eba0 0308 sub.w r3, r0, r8 + 8013502: fa09 f303 lsl.w r3, r9, r3 + 8013506: 4313 orrs r3, r2 + 8013508: 46a2 mov sl, r4 + 801350a: 9304 str r3, [sp, #16] + 801350c: e7d2 b.n 80134b4 <_svfiprintf_r+0xa0> + 801350e: 9b03 ldr r3, [sp, #12] + 8013510: 1d19 adds r1, r3, #4 + 8013512: 681b ldr r3, [r3, #0] + 8013514: 9103 str r1, [sp, #12] + 8013516: 2b00 cmp r3, #0 + 8013518: bfbb ittet lt + 801351a: 425b neglt r3, r3 + 801351c: f042 0202 orrlt.w r2, r2, #2 + 8013520: 9307 strge r3, [sp, #28] + 8013522: 9307 strlt r3, [sp, #28] + 8013524: bfb8 it lt + 8013526: 9204 strlt r2, [sp, #16] + 8013528: 7823 ldrb r3, [r4, #0] + 801352a: 2b2e cmp r3, #46 @ 0x2e + 801352c: d10a bne.n 8013544 <_svfiprintf_r+0x130> + 801352e: 7863 ldrb r3, [r4, #1] + 8013530: 2b2a cmp r3, #42 @ 0x2a + 8013532: d132 bne.n 801359a <_svfiprintf_r+0x186> + 8013534: 9b03 ldr r3, [sp, #12] + 8013536: 3402 adds r4, #2 + 8013538: 1d1a adds r2, r3, #4 + 801353a: 681b ldr r3, [r3, #0] + 801353c: 9203 str r2, [sp, #12] + 801353e: ea43 73e3 orr.w r3, r3, r3, asr #31 + 8013542: 9305 str r3, [sp, #20] + 8013544: f8df a0b4 ldr.w sl, [pc, #180] @ 80135fc <_svfiprintf_r+0x1e8> + 8013548: 2203 movs r2, #3 + 801354a: 4650 mov r0, sl + 801354c: 7821 ldrb r1, [r4, #0] + 801354e: f000 fc93 bl 8013e78 + 8013552: b138 cbz r0, 8013564 <_svfiprintf_r+0x150> + 8013554: 2240 movs r2, #64 @ 0x40 + 8013556: 9b04 ldr r3, [sp, #16] + 8013558: eba0 000a sub.w r0, r0, sl + 801355c: 4082 lsls r2, r0 + 801355e: 4313 orrs r3, r2 + 8013560: 3401 adds r4, #1 + 8013562: 9304 str r3, [sp, #16] + 8013564: f814 1b01 ldrb.w r1, [r4], #1 + 8013568: 2206 movs r2, #6 + 801356a: 4825 ldr r0, [pc, #148] @ (8013600 <_svfiprintf_r+0x1ec>) + 801356c: f88d 1028 strb.w r1, [sp, #40] @ 0x28 + 8013570: f000 fc82 bl 8013e78 + 8013574: 2800 cmp r0, #0 + 8013576: d036 beq.n 80135e6 <_svfiprintf_r+0x1d2> + 8013578: 4b22 ldr r3, [pc, #136] @ (8013604 <_svfiprintf_r+0x1f0>) + 801357a: bb1b cbnz r3, 80135c4 <_svfiprintf_r+0x1b0> + 801357c: 9b03 ldr r3, [sp, #12] + 801357e: 3307 adds r3, #7 + 8013580: f023 0307 bic.w r3, r3, #7 + 8013584: 3308 adds r3, #8 + 8013586: 9303 str r3, [sp, #12] + 8013588: 9b09 ldr r3, [sp, #36] @ 0x24 + 801358a: 4433 add r3, r6 + 801358c: 9309 str r3, [sp, #36] @ 0x24 + 801358e: e76a b.n 8013466 <_svfiprintf_r+0x52> + 8013590: 460c mov r4, r1 + 8013592: 2001 movs r0, #1 + 8013594: fb0c 3202 mla r2, ip, r2, r3 + 8013598: e7a8 b.n 80134ec <_svfiprintf_r+0xd8> + 801359a: 2300 movs r3, #0 + 801359c: f04f 0c0a mov.w ip, #10 + 80135a0: 4619 mov r1, r3 + 80135a2: 3401 adds r4, #1 + 80135a4: 9305 str r3, [sp, #20] + 80135a6: 4620 mov r0, r4 + 80135a8: f810 2b01 ldrb.w r2, [r0], #1 + 80135ac: 3a30 subs r2, #48 @ 0x30 + 80135ae: 2a09 cmp r2, #9 + 80135b0: d903 bls.n 80135ba <_svfiprintf_r+0x1a6> + 80135b2: 2b00 cmp r3, #0 + 80135b4: d0c6 beq.n 8013544 <_svfiprintf_r+0x130> + 80135b6: 9105 str r1, [sp, #20] + 80135b8: e7c4 b.n 8013544 <_svfiprintf_r+0x130> + 80135ba: 4604 mov r4, r0 + 80135bc: 2301 movs r3, #1 + 80135be: fb0c 2101 mla r1, ip, r1, r2 + 80135c2: e7f0 b.n 80135a6 <_svfiprintf_r+0x192> + 80135c4: ab03 add r3, sp, #12 + 80135c6: 9300 str r3, [sp, #0] + 80135c8: 462a mov r2, r5 + 80135ca: 4638 mov r0, r7 + 80135cc: 4b0e ldr r3, [pc, #56] @ (8013608 <_svfiprintf_r+0x1f4>) + 80135ce: a904 add r1, sp, #16 + 80135d0: f3af 8000 nop.w + 80135d4: 1c42 adds r2, r0, #1 + 80135d6: 4606 mov r6, r0 + 80135d8: d1d6 bne.n 8013588 <_svfiprintf_r+0x174> + 80135da: 89ab ldrh r3, [r5, #12] + 80135dc: 065b lsls r3, r3, #25 + 80135de: f53f af2d bmi.w 801343c <_svfiprintf_r+0x28> + 80135e2: 9809 ldr r0, [sp, #36] @ 0x24 + 80135e4: e72c b.n 8013440 <_svfiprintf_r+0x2c> + 80135e6: ab03 add r3, sp, #12 + 80135e8: 9300 str r3, [sp, #0] + 80135ea: 462a mov r2, r5 + 80135ec: 4638 mov r0, r7 + 80135ee: 4b06 ldr r3, [pc, #24] @ (8013608 <_svfiprintf_r+0x1f4>) + 80135f0: a904 add r1, sp, #16 + 80135f2: f000 f9bd bl 8013970 <_printf_i> + 80135f6: e7ed b.n 80135d4 <_svfiprintf_r+0x1c0> + 80135f8: 08014498 .word 0x08014498 + 80135fc: 0801449e .word 0x0801449e + 8013600: 080144a2 .word 0x080144a2 + 8013604: 00000000 .word 0x00000000 + 8013608: 0801335d .word 0x0801335d -080135f0 <__sfputc_r>: - 80135f0: 6893 ldr r3, [r2, #8] - 80135f2: b410 push {r4} - 80135f4: 3b01 subs r3, #1 - 80135f6: 2b00 cmp r3, #0 - 80135f8: 6093 str r3, [r2, #8] - 80135fa: da07 bge.n 801360c <__sfputc_r+0x1c> - 80135fc: 6994 ldr r4, [r2, #24] - 80135fe: 42a3 cmp r3, r4 - 8013600: db01 blt.n 8013606 <__sfputc_r+0x16> - 8013602: 290a cmp r1, #10 - 8013604: d102 bne.n 801360c <__sfputc_r+0x1c> - 8013606: bc10 pop {r4} - 8013608: f000 bb6a b.w 8013ce0 <__swbuf_r> - 801360c: 6813 ldr r3, [r2, #0] - 801360e: 1c58 adds r0, r3, #1 - 8013610: 6010 str r0, [r2, #0] - 8013612: 7019 strb r1, [r3, #0] - 8013614: 4608 mov r0, r1 - 8013616: bc10 pop {r4} - 8013618: 4770 bx lr +0801360c <__sfputc_r>: + 801360c: 6893 ldr r3, [r2, #8] + 801360e: b410 push {r4} + 8013610: 3b01 subs r3, #1 + 8013612: 2b00 cmp r3, #0 + 8013614: 6093 str r3, [r2, #8] + 8013616: da07 bge.n 8013628 <__sfputc_r+0x1c> + 8013618: 6994 ldr r4, [r2, #24] + 801361a: 42a3 cmp r3, r4 + 801361c: db01 blt.n 8013622 <__sfputc_r+0x16> + 801361e: 290a cmp r1, #10 + 8013620: d102 bne.n 8013628 <__sfputc_r+0x1c> + 8013622: bc10 pop {r4} + 8013624: f000 bb6a b.w 8013cfc <__swbuf_r> + 8013628: 6813 ldr r3, [r2, #0] + 801362a: 1c58 adds r0, r3, #1 + 801362c: 6010 str r0, [r2, #0] + 801362e: 7019 strb r1, [r3, #0] + 8013630: 4608 mov r0, r1 + 8013632: bc10 pop {r4} + 8013634: 4770 bx lr -0801361a <__sfputs_r>: - 801361a: b5f8 push {r3, r4, r5, r6, r7, lr} - 801361c: 4606 mov r6, r0 - 801361e: 460f mov r7, r1 - 8013620: 4614 mov r4, r2 - 8013622: 18d5 adds r5, r2, r3 - 8013624: 42ac cmp r4, r5 - 8013626: d101 bne.n 801362c <__sfputs_r+0x12> - 8013628: 2000 movs r0, #0 - 801362a: e007 b.n 801363c <__sfputs_r+0x22> - 801362c: 463a mov r2, r7 - 801362e: 4630 mov r0, r6 - 8013630: f814 1b01 ldrb.w r1, [r4], #1 - 8013634: f7ff ffdc bl 80135f0 <__sfputc_r> - 8013638: 1c43 adds r3, r0, #1 - 801363a: d1f3 bne.n 8013624 <__sfputs_r+0xa> - 801363c: bdf8 pop {r3, r4, r5, r6, r7, pc} +08013636 <__sfputs_r>: + 8013636: b5f8 push {r3, r4, r5, r6, r7, lr} + 8013638: 4606 mov r6, r0 + 801363a: 460f mov r7, r1 + 801363c: 4614 mov r4, r2 + 801363e: 18d5 adds r5, r2, r3 + 8013640: 42ac cmp r4, r5 + 8013642: d101 bne.n 8013648 <__sfputs_r+0x12> + 8013644: 2000 movs r0, #0 + 8013646: e007 b.n 8013658 <__sfputs_r+0x22> + 8013648: 463a mov r2, r7 + 801364a: 4630 mov r0, r6 + 801364c: f814 1b01 ldrb.w r1, [r4], #1 + 8013650: f7ff ffdc bl 801360c <__sfputc_r> + 8013654: 1c43 adds r3, r0, #1 + 8013656: d1f3 bne.n 8013640 <__sfputs_r+0xa> + 8013658: bdf8 pop {r3, r4, r5, r6, r7, pc} ... -08013640 <_vfiprintf_r>: - 8013640: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8013644: 460d mov r5, r1 - 8013646: 4614 mov r4, r2 - 8013648: 4698 mov r8, r3 - 801364a: 4606 mov r6, r0 - 801364c: b09d sub sp, #116 @ 0x74 - 801364e: b118 cbz r0, 8013658 <_vfiprintf_r+0x18> - 8013650: 6a03 ldr r3, [r0, #32] - 8013652: b90b cbnz r3, 8013658 <_vfiprintf_r+0x18> - 8013654: f7ff fc2c bl 8012eb0 <__sinit> - 8013658: 6e6b ldr r3, [r5, #100] @ 0x64 - 801365a: 07d9 lsls r1, r3, #31 - 801365c: d405 bmi.n 801366a <_vfiprintf_r+0x2a> - 801365e: 89ab ldrh r3, [r5, #12] - 8013660: 059a lsls r2, r3, #22 - 8013662: d402 bmi.n 801366a <_vfiprintf_r+0x2a> - 8013664: 6da8 ldr r0, [r5, #88] @ 0x58 - 8013666: f7ff fd64 bl 8013132 <__retarget_lock_acquire_recursive> - 801366a: 89ab ldrh r3, [r5, #12] - 801366c: 071b lsls r3, r3, #28 - 801366e: d501 bpl.n 8013674 <_vfiprintf_r+0x34> - 8013670: 692b ldr r3, [r5, #16] - 8013672: b99b cbnz r3, 801369c <_vfiprintf_r+0x5c> - 8013674: 4629 mov r1, r5 - 8013676: 4630 mov r0, r6 - 8013678: f000 fb70 bl 8013d5c <__swsetup_r> - 801367c: b170 cbz r0, 801369c <_vfiprintf_r+0x5c> - 801367e: 6e6b ldr r3, [r5, #100] @ 0x64 - 8013680: 07dc lsls r4, r3, #31 - 8013682: d504 bpl.n 801368e <_vfiprintf_r+0x4e> - 8013684: f04f 30ff mov.w r0, #4294967295 - 8013688: b01d add sp, #116 @ 0x74 - 801368a: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 801368e: 89ab ldrh r3, [r5, #12] - 8013690: 0598 lsls r0, r3, #22 - 8013692: d4f7 bmi.n 8013684 <_vfiprintf_r+0x44> - 8013694: 6da8 ldr r0, [r5, #88] @ 0x58 - 8013696: f7ff fd4d bl 8013134 <__retarget_lock_release_recursive> - 801369a: e7f3 b.n 8013684 <_vfiprintf_r+0x44> - 801369c: 2300 movs r3, #0 - 801369e: 9309 str r3, [sp, #36] @ 0x24 - 80136a0: 2320 movs r3, #32 - 80136a2: f88d 3029 strb.w r3, [sp, #41] @ 0x29 - 80136a6: 2330 movs r3, #48 @ 0x30 - 80136a8: f04f 0901 mov.w r9, #1 - 80136ac: f8cd 800c str.w r8, [sp, #12] - 80136b0: f8df 81a8 ldr.w r8, [pc, #424] @ 801385c <_vfiprintf_r+0x21c> - 80136b4: f88d 302a strb.w r3, [sp, #42] @ 0x2a - 80136b8: 4623 mov r3, r4 - 80136ba: 469a mov sl, r3 - 80136bc: f813 2b01 ldrb.w r2, [r3], #1 - 80136c0: b10a cbz r2, 80136c6 <_vfiprintf_r+0x86> - 80136c2: 2a25 cmp r2, #37 @ 0x25 - 80136c4: d1f9 bne.n 80136ba <_vfiprintf_r+0x7a> - 80136c6: ebba 0b04 subs.w fp, sl, r4 - 80136ca: d00b beq.n 80136e4 <_vfiprintf_r+0xa4> - 80136cc: 465b mov r3, fp - 80136ce: 4622 mov r2, r4 - 80136d0: 4629 mov r1, r5 - 80136d2: 4630 mov r0, r6 - 80136d4: f7ff ffa1 bl 801361a <__sfputs_r> - 80136d8: 3001 adds r0, #1 - 80136da: f000 80a7 beq.w 801382c <_vfiprintf_r+0x1ec> - 80136de: 9a09 ldr r2, [sp, #36] @ 0x24 - 80136e0: 445a add r2, fp - 80136e2: 9209 str r2, [sp, #36] @ 0x24 - 80136e4: f89a 3000 ldrb.w r3, [sl] - 80136e8: 2b00 cmp r3, #0 - 80136ea: f000 809f beq.w 801382c <_vfiprintf_r+0x1ec> - 80136ee: 2300 movs r3, #0 - 80136f0: f04f 32ff mov.w r2, #4294967295 - 80136f4: e9cd 2305 strd r2, r3, [sp, #20] - 80136f8: f10a 0a01 add.w sl, sl, #1 - 80136fc: 9304 str r3, [sp, #16] - 80136fe: 9307 str r3, [sp, #28] - 8013700: f88d 3053 strb.w r3, [sp, #83] @ 0x53 - 8013704: 931a str r3, [sp, #104] @ 0x68 - 8013706: 4654 mov r4, sl - 8013708: 2205 movs r2, #5 - 801370a: f814 1b01 ldrb.w r1, [r4], #1 - 801370e: 4853 ldr r0, [pc, #332] @ (801385c <_vfiprintf_r+0x21c>) - 8013710: f000 fba4 bl 8013e5c - 8013714: 9a04 ldr r2, [sp, #16] - 8013716: b9d8 cbnz r0, 8013750 <_vfiprintf_r+0x110> - 8013718: 06d1 lsls r1, r2, #27 - 801371a: bf44 itt mi - 801371c: 2320 movmi r3, #32 - 801371e: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 - 8013722: 0713 lsls r3, r2, #28 - 8013724: bf44 itt mi - 8013726: 232b movmi r3, #43 @ 0x2b - 8013728: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 - 801372c: f89a 3000 ldrb.w r3, [sl] - 8013730: 2b2a cmp r3, #42 @ 0x2a - 8013732: d015 beq.n 8013760 <_vfiprintf_r+0x120> - 8013734: 4654 mov r4, sl - 8013736: 2000 movs r0, #0 - 8013738: f04f 0c0a mov.w ip, #10 - 801373c: 9a07 ldr r2, [sp, #28] - 801373e: 4621 mov r1, r4 - 8013740: f811 3b01 ldrb.w r3, [r1], #1 - 8013744: 3b30 subs r3, #48 @ 0x30 - 8013746: 2b09 cmp r3, #9 - 8013748: d94b bls.n 80137e2 <_vfiprintf_r+0x1a2> - 801374a: b1b0 cbz r0, 801377a <_vfiprintf_r+0x13a> - 801374c: 9207 str r2, [sp, #28] - 801374e: e014 b.n 801377a <_vfiprintf_r+0x13a> - 8013750: eba0 0308 sub.w r3, r0, r8 - 8013754: fa09 f303 lsl.w r3, r9, r3 - 8013758: 4313 orrs r3, r2 - 801375a: 46a2 mov sl, r4 - 801375c: 9304 str r3, [sp, #16] - 801375e: e7d2 b.n 8013706 <_vfiprintf_r+0xc6> - 8013760: 9b03 ldr r3, [sp, #12] - 8013762: 1d19 adds r1, r3, #4 - 8013764: 681b ldr r3, [r3, #0] - 8013766: 9103 str r1, [sp, #12] - 8013768: 2b00 cmp r3, #0 - 801376a: bfbb ittet lt - 801376c: 425b neglt r3, r3 - 801376e: f042 0202 orrlt.w r2, r2, #2 - 8013772: 9307 strge r3, [sp, #28] - 8013774: 9307 strlt r3, [sp, #28] - 8013776: bfb8 it lt - 8013778: 9204 strlt r2, [sp, #16] - 801377a: 7823 ldrb r3, [r4, #0] - 801377c: 2b2e cmp r3, #46 @ 0x2e - 801377e: d10a bne.n 8013796 <_vfiprintf_r+0x156> - 8013780: 7863 ldrb r3, [r4, #1] - 8013782: 2b2a cmp r3, #42 @ 0x2a - 8013784: d132 bne.n 80137ec <_vfiprintf_r+0x1ac> - 8013786: 9b03 ldr r3, [sp, #12] - 8013788: 3402 adds r4, #2 - 801378a: 1d1a adds r2, r3, #4 - 801378c: 681b ldr r3, [r3, #0] - 801378e: 9203 str r2, [sp, #12] - 8013790: ea43 73e3 orr.w r3, r3, r3, asr #31 - 8013794: 9305 str r3, [sp, #20] - 8013796: f8df a0c8 ldr.w sl, [pc, #200] @ 8013860 <_vfiprintf_r+0x220> - 801379a: 2203 movs r2, #3 - 801379c: 4650 mov r0, sl - 801379e: 7821 ldrb r1, [r4, #0] - 80137a0: f000 fb5c bl 8013e5c - 80137a4: b138 cbz r0, 80137b6 <_vfiprintf_r+0x176> - 80137a6: 2240 movs r2, #64 @ 0x40 - 80137a8: 9b04 ldr r3, [sp, #16] - 80137aa: eba0 000a sub.w r0, r0, sl - 80137ae: 4082 lsls r2, r0 - 80137b0: 4313 orrs r3, r2 - 80137b2: 3401 adds r4, #1 - 80137b4: 9304 str r3, [sp, #16] - 80137b6: f814 1b01 ldrb.w r1, [r4], #1 - 80137ba: 2206 movs r2, #6 - 80137bc: 4829 ldr r0, [pc, #164] @ (8013864 <_vfiprintf_r+0x224>) - 80137be: f88d 1028 strb.w r1, [sp, #40] @ 0x28 - 80137c2: f000 fb4b bl 8013e5c - 80137c6: 2800 cmp r0, #0 - 80137c8: d03f beq.n 801384a <_vfiprintf_r+0x20a> - 80137ca: 4b27 ldr r3, [pc, #156] @ (8013868 <_vfiprintf_r+0x228>) - 80137cc: bb1b cbnz r3, 8013816 <_vfiprintf_r+0x1d6> - 80137ce: 9b03 ldr r3, [sp, #12] - 80137d0: 3307 adds r3, #7 - 80137d2: f023 0307 bic.w r3, r3, #7 - 80137d6: 3308 adds r3, #8 - 80137d8: 9303 str r3, [sp, #12] - 80137da: 9b09 ldr r3, [sp, #36] @ 0x24 - 80137dc: 443b add r3, r7 - 80137de: 9309 str r3, [sp, #36] @ 0x24 - 80137e0: e76a b.n 80136b8 <_vfiprintf_r+0x78> - 80137e2: 460c mov r4, r1 - 80137e4: 2001 movs r0, #1 - 80137e6: fb0c 3202 mla r2, ip, r2, r3 - 80137ea: e7a8 b.n 801373e <_vfiprintf_r+0xfe> - 80137ec: 2300 movs r3, #0 - 80137ee: f04f 0c0a mov.w ip, #10 - 80137f2: 4619 mov r1, r3 - 80137f4: 3401 adds r4, #1 - 80137f6: 9305 str r3, [sp, #20] - 80137f8: 4620 mov r0, r4 - 80137fa: f810 2b01 ldrb.w r2, [r0], #1 - 80137fe: 3a30 subs r2, #48 @ 0x30 - 8013800: 2a09 cmp r2, #9 - 8013802: d903 bls.n 801380c <_vfiprintf_r+0x1cc> - 8013804: 2b00 cmp r3, #0 - 8013806: d0c6 beq.n 8013796 <_vfiprintf_r+0x156> - 8013808: 9105 str r1, [sp, #20] - 801380a: e7c4 b.n 8013796 <_vfiprintf_r+0x156> - 801380c: 4604 mov r4, r0 - 801380e: 2301 movs r3, #1 - 8013810: fb0c 2101 mla r1, ip, r1, r2 - 8013814: e7f0 b.n 80137f8 <_vfiprintf_r+0x1b8> - 8013816: ab03 add r3, sp, #12 - 8013818: 9300 str r3, [sp, #0] - 801381a: 462a mov r2, r5 - 801381c: 4630 mov r0, r6 - 801381e: 4b13 ldr r3, [pc, #76] @ (801386c <_vfiprintf_r+0x22c>) - 8013820: a904 add r1, sp, #16 - 8013822: f3af 8000 nop.w - 8013826: 4607 mov r7, r0 - 8013828: 1c78 adds r0, r7, #1 - 801382a: d1d6 bne.n 80137da <_vfiprintf_r+0x19a> - 801382c: 6e6b ldr r3, [r5, #100] @ 0x64 - 801382e: 07d9 lsls r1, r3, #31 - 8013830: d405 bmi.n 801383e <_vfiprintf_r+0x1fe> - 8013832: 89ab ldrh r3, [r5, #12] - 8013834: 059a lsls r2, r3, #22 - 8013836: d402 bmi.n 801383e <_vfiprintf_r+0x1fe> - 8013838: 6da8 ldr r0, [r5, #88] @ 0x58 - 801383a: f7ff fc7b bl 8013134 <__retarget_lock_release_recursive> - 801383e: 89ab ldrh r3, [r5, #12] - 8013840: 065b lsls r3, r3, #25 - 8013842: f53f af1f bmi.w 8013684 <_vfiprintf_r+0x44> - 8013846: 9809 ldr r0, [sp, #36] @ 0x24 - 8013848: e71e b.n 8013688 <_vfiprintf_r+0x48> - 801384a: ab03 add r3, sp, #12 - 801384c: 9300 str r3, [sp, #0] - 801384e: 462a mov r2, r5 - 8013850: 4630 mov r0, r6 - 8013852: 4b06 ldr r3, [pc, #24] @ (801386c <_vfiprintf_r+0x22c>) - 8013854: a904 add r1, sp, #16 - 8013856: f000 f87d bl 8013954 <_printf_i> - 801385a: e7e4 b.n 8013826 <_vfiprintf_r+0x1e6> - 801385c: 0801447c .word 0x0801447c - 8013860: 08014482 .word 0x08014482 - 8013864: 08014486 .word 0x08014486 - 8013868: 00000000 .word 0x00000000 - 801386c: 0801361b .word 0x0801361b +0801365c <_vfiprintf_r>: + 801365c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8013660: 460d mov r5, r1 + 8013662: 4614 mov r4, r2 + 8013664: 4698 mov r8, r3 + 8013666: 4606 mov r6, r0 + 8013668: b09d sub sp, #116 @ 0x74 + 801366a: b118 cbz r0, 8013674 <_vfiprintf_r+0x18> + 801366c: 6a03 ldr r3, [r0, #32] + 801366e: b90b cbnz r3, 8013674 <_vfiprintf_r+0x18> + 8013670: f7ff fc2c bl 8012ecc <__sinit> + 8013674: 6e6b ldr r3, [r5, #100] @ 0x64 + 8013676: 07d9 lsls r1, r3, #31 + 8013678: d405 bmi.n 8013686 <_vfiprintf_r+0x2a> + 801367a: 89ab ldrh r3, [r5, #12] + 801367c: 059a lsls r2, r3, #22 + 801367e: d402 bmi.n 8013686 <_vfiprintf_r+0x2a> + 8013680: 6da8 ldr r0, [r5, #88] @ 0x58 + 8013682: f7ff fd64 bl 801314e <__retarget_lock_acquire_recursive> + 8013686: 89ab ldrh r3, [r5, #12] + 8013688: 071b lsls r3, r3, #28 + 801368a: d501 bpl.n 8013690 <_vfiprintf_r+0x34> + 801368c: 692b ldr r3, [r5, #16] + 801368e: b99b cbnz r3, 80136b8 <_vfiprintf_r+0x5c> + 8013690: 4629 mov r1, r5 + 8013692: 4630 mov r0, r6 + 8013694: f000 fb70 bl 8013d78 <__swsetup_r> + 8013698: b170 cbz r0, 80136b8 <_vfiprintf_r+0x5c> + 801369a: 6e6b ldr r3, [r5, #100] @ 0x64 + 801369c: 07dc lsls r4, r3, #31 + 801369e: d504 bpl.n 80136aa <_vfiprintf_r+0x4e> + 80136a0: f04f 30ff mov.w r0, #4294967295 + 80136a4: b01d add sp, #116 @ 0x74 + 80136a6: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 80136aa: 89ab ldrh r3, [r5, #12] + 80136ac: 0598 lsls r0, r3, #22 + 80136ae: d4f7 bmi.n 80136a0 <_vfiprintf_r+0x44> + 80136b0: 6da8 ldr r0, [r5, #88] @ 0x58 + 80136b2: f7ff fd4d bl 8013150 <__retarget_lock_release_recursive> + 80136b6: e7f3 b.n 80136a0 <_vfiprintf_r+0x44> + 80136b8: 2300 movs r3, #0 + 80136ba: 9309 str r3, [sp, #36] @ 0x24 + 80136bc: 2320 movs r3, #32 + 80136be: f88d 3029 strb.w r3, [sp, #41] @ 0x29 + 80136c2: 2330 movs r3, #48 @ 0x30 + 80136c4: f04f 0901 mov.w r9, #1 + 80136c8: f8cd 800c str.w r8, [sp, #12] + 80136cc: f8df 81a8 ldr.w r8, [pc, #424] @ 8013878 <_vfiprintf_r+0x21c> + 80136d0: f88d 302a strb.w r3, [sp, #42] @ 0x2a + 80136d4: 4623 mov r3, r4 + 80136d6: 469a mov sl, r3 + 80136d8: f813 2b01 ldrb.w r2, [r3], #1 + 80136dc: b10a cbz r2, 80136e2 <_vfiprintf_r+0x86> + 80136de: 2a25 cmp r2, #37 @ 0x25 + 80136e0: d1f9 bne.n 80136d6 <_vfiprintf_r+0x7a> + 80136e2: ebba 0b04 subs.w fp, sl, r4 + 80136e6: d00b beq.n 8013700 <_vfiprintf_r+0xa4> + 80136e8: 465b mov r3, fp + 80136ea: 4622 mov r2, r4 + 80136ec: 4629 mov r1, r5 + 80136ee: 4630 mov r0, r6 + 80136f0: f7ff ffa1 bl 8013636 <__sfputs_r> + 80136f4: 3001 adds r0, #1 + 80136f6: f000 80a7 beq.w 8013848 <_vfiprintf_r+0x1ec> + 80136fa: 9a09 ldr r2, [sp, #36] @ 0x24 + 80136fc: 445a add r2, fp + 80136fe: 9209 str r2, [sp, #36] @ 0x24 + 8013700: f89a 3000 ldrb.w r3, [sl] + 8013704: 2b00 cmp r3, #0 + 8013706: f000 809f beq.w 8013848 <_vfiprintf_r+0x1ec> + 801370a: 2300 movs r3, #0 + 801370c: f04f 32ff mov.w r2, #4294967295 + 8013710: e9cd 2305 strd r2, r3, [sp, #20] + 8013714: f10a 0a01 add.w sl, sl, #1 + 8013718: 9304 str r3, [sp, #16] + 801371a: 9307 str r3, [sp, #28] + 801371c: f88d 3053 strb.w r3, [sp, #83] @ 0x53 + 8013720: 931a str r3, [sp, #104] @ 0x68 + 8013722: 4654 mov r4, sl + 8013724: 2205 movs r2, #5 + 8013726: f814 1b01 ldrb.w r1, [r4], #1 + 801372a: 4853 ldr r0, [pc, #332] @ (8013878 <_vfiprintf_r+0x21c>) + 801372c: f000 fba4 bl 8013e78 + 8013730: 9a04 ldr r2, [sp, #16] + 8013732: b9d8 cbnz r0, 801376c <_vfiprintf_r+0x110> + 8013734: 06d1 lsls r1, r2, #27 + 8013736: bf44 itt mi + 8013738: 2320 movmi r3, #32 + 801373a: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 + 801373e: 0713 lsls r3, r2, #28 + 8013740: bf44 itt mi + 8013742: 232b movmi r3, #43 @ 0x2b + 8013744: f88d 3053 strbmi.w r3, [sp, #83] @ 0x53 + 8013748: f89a 3000 ldrb.w r3, [sl] + 801374c: 2b2a cmp r3, #42 @ 0x2a + 801374e: d015 beq.n 801377c <_vfiprintf_r+0x120> + 8013750: 4654 mov r4, sl + 8013752: 2000 movs r0, #0 + 8013754: f04f 0c0a mov.w ip, #10 + 8013758: 9a07 ldr r2, [sp, #28] + 801375a: 4621 mov r1, r4 + 801375c: f811 3b01 ldrb.w r3, [r1], #1 + 8013760: 3b30 subs r3, #48 @ 0x30 + 8013762: 2b09 cmp r3, #9 + 8013764: d94b bls.n 80137fe <_vfiprintf_r+0x1a2> + 8013766: b1b0 cbz r0, 8013796 <_vfiprintf_r+0x13a> + 8013768: 9207 str r2, [sp, #28] + 801376a: e014 b.n 8013796 <_vfiprintf_r+0x13a> + 801376c: eba0 0308 sub.w r3, r0, r8 + 8013770: fa09 f303 lsl.w r3, r9, r3 + 8013774: 4313 orrs r3, r2 + 8013776: 46a2 mov sl, r4 + 8013778: 9304 str r3, [sp, #16] + 801377a: e7d2 b.n 8013722 <_vfiprintf_r+0xc6> + 801377c: 9b03 ldr r3, [sp, #12] + 801377e: 1d19 adds r1, r3, #4 + 8013780: 681b ldr r3, [r3, #0] + 8013782: 9103 str r1, [sp, #12] + 8013784: 2b00 cmp r3, #0 + 8013786: bfbb ittet lt + 8013788: 425b neglt r3, r3 + 801378a: f042 0202 orrlt.w r2, r2, #2 + 801378e: 9307 strge r3, [sp, #28] + 8013790: 9307 strlt r3, [sp, #28] + 8013792: bfb8 it lt + 8013794: 9204 strlt r2, [sp, #16] + 8013796: 7823 ldrb r3, [r4, #0] + 8013798: 2b2e cmp r3, #46 @ 0x2e + 801379a: d10a bne.n 80137b2 <_vfiprintf_r+0x156> + 801379c: 7863 ldrb r3, [r4, #1] + 801379e: 2b2a cmp r3, #42 @ 0x2a + 80137a0: d132 bne.n 8013808 <_vfiprintf_r+0x1ac> + 80137a2: 9b03 ldr r3, [sp, #12] + 80137a4: 3402 adds r4, #2 + 80137a6: 1d1a adds r2, r3, #4 + 80137a8: 681b ldr r3, [r3, #0] + 80137aa: 9203 str r2, [sp, #12] + 80137ac: ea43 73e3 orr.w r3, r3, r3, asr #31 + 80137b0: 9305 str r3, [sp, #20] + 80137b2: f8df a0c8 ldr.w sl, [pc, #200] @ 801387c <_vfiprintf_r+0x220> + 80137b6: 2203 movs r2, #3 + 80137b8: 4650 mov r0, sl + 80137ba: 7821 ldrb r1, [r4, #0] + 80137bc: f000 fb5c bl 8013e78 + 80137c0: b138 cbz r0, 80137d2 <_vfiprintf_r+0x176> + 80137c2: 2240 movs r2, #64 @ 0x40 + 80137c4: 9b04 ldr r3, [sp, #16] + 80137c6: eba0 000a sub.w r0, r0, sl + 80137ca: 4082 lsls r2, r0 + 80137cc: 4313 orrs r3, r2 + 80137ce: 3401 adds r4, #1 + 80137d0: 9304 str r3, [sp, #16] + 80137d2: f814 1b01 ldrb.w r1, [r4], #1 + 80137d6: 2206 movs r2, #6 + 80137d8: 4829 ldr r0, [pc, #164] @ (8013880 <_vfiprintf_r+0x224>) + 80137da: f88d 1028 strb.w r1, [sp, #40] @ 0x28 + 80137de: f000 fb4b bl 8013e78 + 80137e2: 2800 cmp r0, #0 + 80137e4: d03f beq.n 8013866 <_vfiprintf_r+0x20a> + 80137e6: 4b27 ldr r3, [pc, #156] @ (8013884 <_vfiprintf_r+0x228>) + 80137e8: bb1b cbnz r3, 8013832 <_vfiprintf_r+0x1d6> + 80137ea: 9b03 ldr r3, [sp, #12] + 80137ec: 3307 adds r3, #7 + 80137ee: f023 0307 bic.w r3, r3, #7 + 80137f2: 3308 adds r3, #8 + 80137f4: 9303 str r3, [sp, #12] + 80137f6: 9b09 ldr r3, [sp, #36] @ 0x24 + 80137f8: 443b add r3, r7 + 80137fa: 9309 str r3, [sp, #36] @ 0x24 + 80137fc: e76a b.n 80136d4 <_vfiprintf_r+0x78> + 80137fe: 460c mov r4, r1 + 8013800: 2001 movs r0, #1 + 8013802: fb0c 3202 mla r2, ip, r2, r3 + 8013806: e7a8 b.n 801375a <_vfiprintf_r+0xfe> + 8013808: 2300 movs r3, #0 + 801380a: f04f 0c0a mov.w ip, #10 + 801380e: 4619 mov r1, r3 + 8013810: 3401 adds r4, #1 + 8013812: 9305 str r3, [sp, #20] + 8013814: 4620 mov r0, r4 + 8013816: f810 2b01 ldrb.w r2, [r0], #1 + 801381a: 3a30 subs r2, #48 @ 0x30 + 801381c: 2a09 cmp r2, #9 + 801381e: d903 bls.n 8013828 <_vfiprintf_r+0x1cc> + 8013820: 2b00 cmp r3, #0 + 8013822: d0c6 beq.n 80137b2 <_vfiprintf_r+0x156> + 8013824: 9105 str r1, [sp, #20] + 8013826: e7c4 b.n 80137b2 <_vfiprintf_r+0x156> + 8013828: 4604 mov r4, r0 + 801382a: 2301 movs r3, #1 + 801382c: fb0c 2101 mla r1, ip, r1, r2 + 8013830: e7f0 b.n 8013814 <_vfiprintf_r+0x1b8> + 8013832: ab03 add r3, sp, #12 + 8013834: 9300 str r3, [sp, #0] + 8013836: 462a mov r2, r5 + 8013838: 4630 mov r0, r6 + 801383a: 4b13 ldr r3, [pc, #76] @ (8013888 <_vfiprintf_r+0x22c>) + 801383c: a904 add r1, sp, #16 + 801383e: f3af 8000 nop.w + 8013842: 4607 mov r7, r0 + 8013844: 1c78 adds r0, r7, #1 + 8013846: d1d6 bne.n 80137f6 <_vfiprintf_r+0x19a> + 8013848: 6e6b ldr r3, [r5, #100] @ 0x64 + 801384a: 07d9 lsls r1, r3, #31 + 801384c: d405 bmi.n 801385a <_vfiprintf_r+0x1fe> + 801384e: 89ab ldrh r3, [r5, #12] + 8013850: 059a lsls r2, r3, #22 + 8013852: d402 bmi.n 801385a <_vfiprintf_r+0x1fe> + 8013854: 6da8 ldr r0, [r5, #88] @ 0x58 + 8013856: f7ff fc7b bl 8013150 <__retarget_lock_release_recursive> + 801385a: 89ab ldrh r3, [r5, #12] + 801385c: 065b lsls r3, r3, #25 + 801385e: f53f af1f bmi.w 80136a0 <_vfiprintf_r+0x44> + 8013862: 9809 ldr r0, [sp, #36] @ 0x24 + 8013864: e71e b.n 80136a4 <_vfiprintf_r+0x48> + 8013866: ab03 add r3, sp, #12 + 8013868: 9300 str r3, [sp, #0] + 801386a: 462a mov r2, r5 + 801386c: 4630 mov r0, r6 + 801386e: 4b06 ldr r3, [pc, #24] @ (8013888 <_vfiprintf_r+0x22c>) + 8013870: a904 add r1, sp, #16 + 8013872: f000 f87d bl 8013970 <_printf_i> + 8013876: e7e4 b.n 8013842 <_vfiprintf_r+0x1e6> + 8013878: 08014498 .word 0x08014498 + 801387c: 0801449e .word 0x0801449e + 8013880: 080144a2 .word 0x080144a2 + 8013884: 00000000 .word 0x00000000 + 8013888: 08013637 .word 0x08013637 -08013870 <_printf_common>: - 8013870: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8013874: 4616 mov r6, r2 - 8013876: 4698 mov r8, r3 - 8013878: 688a ldr r2, [r1, #8] - 801387a: 690b ldr r3, [r1, #16] - 801387c: 4607 mov r7, r0 - 801387e: 4293 cmp r3, r2 - 8013880: bfb8 it lt - 8013882: 4613 movlt r3, r2 - 8013884: 6033 str r3, [r6, #0] - 8013886: f891 2043 ldrb.w r2, [r1, #67] @ 0x43 - 801388a: 460c mov r4, r1 - 801388c: f8dd 9020 ldr.w r9, [sp, #32] - 8013890: b10a cbz r2, 8013896 <_printf_common+0x26> - 8013892: 3301 adds r3, #1 - 8013894: 6033 str r3, [r6, #0] - 8013896: 6823 ldr r3, [r4, #0] - 8013898: 0699 lsls r1, r3, #26 - 801389a: bf42 ittt mi - 801389c: 6833 ldrmi r3, [r6, #0] - 801389e: 3302 addmi r3, #2 - 80138a0: 6033 strmi r3, [r6, #0] - 80138a2: 6825 ldr r5, [r4, #0] - 80138a4: f015 0506 ands.w r5, r5, #6 - 80138a8: d106 bne.n 80138b8 <_printf_common+0x48> - 80138aa: f104 0a19 add.w sl, r4, #25 - 80138ae: 68e3 ldr r3, [r4, #12] - 80138b0: 6832 ldr r2, [r6, #0] - 80138b2: 1a9b subs r3, r3, r2 - 80138b4: 42ab cmp r3, r5 - 80138b6: dc2b bgt.n 8013910 <_printf_common+0xa0> - 80138b8: f894 3043 ldrb.w r3, [r4, #67] @ 0x43 - 80138bc: 6822 ldr r2, [r4, #0] - 80138be: 3b00 subs r3, #0 - 80138c0: bf18 it ne - 80138c2: 2301 movne r3, #1 - 80138c4: 0692 lsls r2, r2, #26 - 80138c6: d430 bmi.n 801392a <_printf_common+0xba> - 80138c8: 4641 mov r1, r8 - 80138ca: 4638 mov r0, r7 - 80138cc: f104 0243 add.w r2, r4, #67 @ 0x43 - 80138d0: 47c8 blx r9 - 80138d2: 3001 adds r0, #1 - 80138d4: d023 beq.n 801391e <_printf_common+0xae> - 80138d6: 6823 ldr r3, [r4, #0] - 80138d8: 6922 ldr r2, [r4, #16] - 80138da: f003 0306 and.w r3, r3, #6 - 80138de: 2b04 cmp r3, #4 - 80138e0: bf14 ite ne - 80138e2: 2500 movne r5, #0 - 80138e4: 6833 ldreq r3, [r6, #0] - 80138e6: f04f 0600 mov.w r6, #0 - 80138ea: bf08 it eq - 80138ec: 68e5 ldreq r5, [r4, #12] - 80138ee: f104 041a add.w r4, r4, #26 - 80138f2: bf08 it eq - 80138f4: 1aed subeq r5, r5, r3 - 80138f6: f854 3c12 ldr.w r3, [r4, #-18] - 80138fa: bf08 it eq - 80138fc: ea25 75e5 biceq.w r5, r5, r5, asr #31 - 8013900: 4293 cmp r3, r2 - 8013902: bfc4 itt gt - 8013904: 1a9b subgt r3, r3, r2 - 8013906: 18ed addgt r5, r5, r3 - 8013908: 42b5 cmp r5, r6 - 801390a: d11a bne.n 8013942 <_printf_common+0xd2> - 801390c: 2000 movs r0, #0 - 801390e: e008 b.n 8013922 <_printf_common+0xb2> - 8013910: 2301 movs r3, #1 - 8013912: 4652 mov r2, sl - 8013914: 4641 mov r1, r8 - 8013916: 4638 mov r0, r7 - 8013918: 47c8 blx r9 - 801391a: 3001 adds r0, #1 - 801391c: d103 bne.n 8013926 <_printf_common+0xb6> - 801391e: f04f 30ff mov.w r0, #4294967295 - 8013922: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8013926: 3501 adds r5, #1 - 8013928: e7c1 b.n 80138ae <_printf_common+0x3e> - 801392a: 2030 movs r0, #48 @ 0x30 - 801392c: 18e1 adds r1, r4, r3 - 801392e: f881 0043 strb.w r0, [r1, #67] @ 0x43 - 8013932: 1c5a adds r2, r3, #1 - 8013934: f894 1045 ldrb.w r1, [r4, #69] @ 0x45 - 8013938: 4422 add r2, r4 - 801393a: 3302 adds r3, #2 - 801393c: f882 1043 strb.w r1, [r2, #67] @ 0x43 - 8013940: e7c2 b.n 80138c8 <_printf_common+0x58> - 8013942: 2301 movs r3, #1 - 8013944: 4622 mov r2, r4 - 8013946: 4641 mov r1, r8 - 8013948: 4638 mov r0, r7 - 801394a: 47c8 blx r9 - 801394c: 3001 adds r0, #1 - 801394e: d0e6 beq.n 801391e <_printf_common+0xae> - 8013950: 3601 adds r6, #1 - 8013952: e7d9 b.n 8013908 <_printf_common+0x98> +0801388c <_printf_common>: + 801388c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8013890: 4616 mov r6, r2 + 8013892: 4698 mov r8, r3 + 8013894: 688a ldr r2, [r1, #8] + 8013896: 690b ldr r3, [r1, #16] + 8013898: 4607 mov r7, r0 + 801389a: 4293 cmp r3, r2 + 801389c: bfb8 it lt + 801389e: 4613 movlt r3, r2 + 80138a0: 6033 str r3, [r6, #0] + 80138a2: f891 2043 ldrb.w r2, [r1, #67] @ 0x43 + 80138a6: 460c mov r4, r1 + 80138a8: f8dd 9020 ldr.w r9, [sp, #32] + 80138ac: b10a cbz r2, 80138b2 <_printf_common+0x26> + 80138ae: 3301 adds r3, #1 + 80138b0: 6033 str r3, [r6, #0] + 80138b2: 6823 ldr r3, [r4, #0] + 80138b4: 0699 lsls r1, r3, #26 + 80138b6: bf42 ittt mi + 80138b8: 6833 ldrmi r3, [r6, #0] + 80138ba: 3302 addmi r3, #2 + 80138bc: 6033 strmi r3, [r6, #0] + 80138be: 6825 ldr r5, [r4, #0] + 80138c0: f015 0506 ands.w r5, r5, #6 + 80138c4: d106 bne.n 80138d4 <_printf_common+0x48> + 80138c6: f104 0a19 add.w sl, r4, #25 + 80138ca: 68e3 ldr r3, [r4, #12] + 80138cc: 6832 ldr r2, [r6, #0] + 80138ce: 1a9b subs r3, r3, r2 + 80138d0: 42ab cmp r3, r5 + 80138d2: dc2b bgt.n 801392c <_printf_common+0xa0> + 80138d4: f894 3043 ldrb.w r3, [r4, #67] @ 0x43 + 80138d8: 6822 ldr r2, [r4, #0] + 80138da: 3b00 subs r3, #0 + 80138dc: bf18 it ne + 80138de: 2301 movne r3, #1 + 80138e0: 0692 lsls r2, r2, #26 + 80138e2: d430 bmi.n 8013946 <_printf_common+0xba> + 80138e4: 4641 mov r1, r8 + 80138e6: 4638 mov r0, r7 + 80138e8: f104 0243 add.w r2, r4, #67 @ 0x43 + 80138ec: 47c8 blx r9 + 80138ee: 3001 adds r0, #1 + 80138f0: d023 beq.n 801393a <_printf_common+0xae> + 80138f2: 6823 ldr r3, [r4, #0] + 80138f4: 6922 ldr r2, [r4, #16] + 80138f6: f003 0306 and.w r3, r3, #6 + 80138fa: 2b04 cmp r3, #4 + 80138fc: bf14 ite ne + 80138fe: 2500 movne r5, #0 + 8013900: 6833 ldreq r3, [r6, #0] + 8013902: f04f 0600 mov.w r6, #0 + 8013906: bf08 it eq + 8013908: 68e5 ldreq r5, [r4, #12] + 801390a: f104 041a add.w r4, r4, #26 + 801390e: bf08 it eq + 8013910: 1aed subeq r5, r5, r3 + 8013912: f854 3c12 ldr.w r3, [r4, #-18] + 8013916: bf08 it eq + 8013918: ea25 75e5 biceq.w r5, r5, r5, asr #31 + 801391c: 4293 cmp r3, r2 + 801391e: bfc4 itt gt + 8013920: 1a9b subgt r3, r3, r2 + 8013922: 18ed addgt r5, r5, r3 + 8013924: 42b5 cmp r5, r6 + 8013926: d11a bne.n 801395e <_printf_common+0xd2> + 8013928: 2000 movs r0, #0 + 801392a: e008 b.n 801393e <_printf_common+0xb2> + 801392c: 2301 movs r3, #1 + 801392e: 4652 mov r2, sl + 8013930: 4641 mov r1, r8 + 8013932: 4638 mov r0, r7 + 8013934: 47c8 blx r9 + 8013936: 3001 adds r0, #1 + 8013938: d103 bne.n 8013942 <_printf_common+0xb6> + 801393a: f04f 30ff mov.w r0, #4294967295 + 801393e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8013942: 3501 adds r5, #1 + 8013944: e7c1 b.n 80138ca <_printf_common+0x3e> + 8013946: 2030 movs r0, #48 @ 0x30 + 8013948: 18e1 adds r1, r4, r3 + 801394a: f881 0043 strb.w r0, [r1, #67] @ 0x43 + 801394e: 1c5a adds r2, r3, #1 + 8013950: f894 1045 ldrb.w r1, [r4, #69] @ 0x45 + 8013954: 4422 add r2, r4 + 8013956: 3302 adds r3, #2 + 8013958: f882 1043 strb.w r1, [r2, #67] @ 0x43 + 801395c: e7c2 b.n 80138e4 <_printf_common+0x58> + 801395e: 2301 movs r3, #1 + 8013960: 4622 mov r2, r4 + 8013962: 4641 mov r1, r8 + 8013964: 4638 mov r0, r7 + 8013966: 47c8 blx r9 + 8013968: 3001 adds r0, #1 + 801396a: d0e6 beq.n 801393a <_printf_common+0xae> + 801396c: 3601 adds r6, #1 + 801396e: e7d9 b.n 8013924 <_printf_common+0x98> -08013954 <_printf_i>: - 8013954: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} - 8013958: 7e0f ldrb r7, [r1, #24] - 801395a: 4691 mov r9, r2 - 801395c: 2f78 cmp r7, #120 @ 0x78 - 801395e: 4680 mov r8, r0 - 8013960: 460c mov r4, r1 - 8013962: 469a mov sl, r3 - 8013964: 9e0c ldr r6, [sp, #48] @ 0x30 - 8013966: f101 0243 add.w r2, r1, #67 @ 0x43 - 801396a: d807 bhi.n 801397c <_printf_i+0x28> - 801396c: 2f62 cmp r7, #98 @ 0x62 - 801396e: d80a bhi.n 8013986 <_printf_i+0x32> - 8013970: 2f00 cmp r7, #0 - 8013972: f000 80d1 beq.w 8013b18 <_printf_i+0x1c4> - 8013976: 2f58 cmp r7, #88 @ 0x58 - 8013978: f000 80b8 beq.w 8013aec <_printf_i+0x198> - 801397c: f104 0642 add.w r6, r4, #66 @ 0x42 - 8013980: f884 7042 strb.w r7, [r4, #66] @ 0x42 - 8013984: e03a b.n 80139fc <_printf_i+0xa8> - 8013986: f1a7 0363 sub.w r3, r7, #99 @ 0x63 - 801398a: 2b15 cmp r3, #21 - 801398c: d8f6 bhi.n 801397c <_printf_i+0x28> - 801398e: a101 add r1, pc, #4 @ (adr r1, 8013994 <_printf_i+0x40>) - 8013990: f851 f023 ldr.w pc, [r1, r3, lsl #2] - 8013994: 080139ed .word 0x080139ed - 8013998: 08013a01 .word 0x08013a01 - 801399c: 0801397d .word 0x0801397d - 80139a0: 0801397d .word 0x0801397d - 80139a4: 0801397d .word 0x0801397d - 80139a8: 0801397d .word 0x0801397d - 80139ac: 08013a01 .word 0x08013a01 - 80139b0: 0801397d .word 0x0801397d - 80139b4: 0801397d .word 0x0801397d - 80139b8: 0801397d .word 0x0801397d - 80139bc: 0801397d .word 0x0801397d - 80139c0: 08013aff .word 0x08013aff - 80139c4: 08013a2b .word 0x08013a2b - 80139c8: 08013ab9 .word 0x08013ab9 - 80139cc: 0801397d .word 0x0801397d - 80139d0: 0801397d .word 0x0801397d - 80139d4: 08013b21 .word 0x08013b21 - 80139d8: 0801397d .word 0x0801397d - 80139dc: 08013a2b .word 0x08013a2b - 80139e0: 0801397d .word 0x0801397d - 80139e4: 0801397d .word 0x0801397d - 80139e8: 08013ac1 .word 0x08013ac1 - 80139ec: 6833 ldr r3, [r6, #0] - 80139ee: 1d1a adds r2, r3, #4 - 80139f0: 681b ldr r3, [r3, #0] - 80139f2: 6032 str r2, [r6, #0] - 80139f4: f104 0642 add.w r6, r4, #66 @ 0x42 - 80139f8: f884 3042 strb.w r3, [r4, #66] @ 0x42 - 80139fc: 2301 movs r3, #1 - 80139fe: e09c b.n 8013b3a <_printf_i+0x1e6> - 8013a00: 6833 ldr r3, [r6, #0] - 8013a02: 6820 ldr r0, [r4, #0] - 8013a04: 1d19 adds r1, r3, #4 - 8013a06: 6031 str r1, [r6, #0] - 8013a08: 0606 lsls r6, r0, #24 - 8013a0a: d501 bpl.n 8013a10 <_printf_i+0xbc> - 8013a0c: 681d ldr r5, [r3, #0] - 8013a0e: e003 b.n 8013a18 <_printf_i+0xc4> - 8013a10: 0645 lsls r5, r0, #25 - 8013a12: d5fb bpl.n 8013a0c <_printf_i+0xb8> - 8013a14: f9b3 5000 ldrsh.w r5, [r3] - 8013a18: 2d00 cmp r5, #0 - 8013a1a: da03 bge.n 8013a24 <_printf_i+0xd0> - 8013a1c: 232d movs r3, #45 @ 0x2d - 8013a1e: 426d negs r5, r5 - 8013a20: f884 3043 strb.w r3, [r4, #67] @ 0x43 - 8013a24: 230a movs r3, #10 - 8013a26: 4858 ldr r0, [pc, #352] @ (8013b88 <_printf_i+0x234>) - 8013a28: e011 b.n 8013a4e <_printf_i+0xfa> - 8013a2a: 6821 ldr r1, [r4, #0] - 8013a2c: 6833 ldr r3, [r6, #0] - 8013a2e: 0608 lsls r0, r1, #24 - 8013a30: f853 5b04 ldr.w r5, [r3], #4 - 8013a34: d402 bmi.n 8013a3c <_printf_i+0xe8> - 8013a36: 0649 lsls r1, r1, #25 - 8013a38: bf48 it mi - 8013a3a: b2ad uxthmi r5, r5 - 8013a3c: 2f6f cmp r7, #111 @ 0x6f - 8013a3e: 6033 str r3, [r6, #0] - 8013a40: bf14 ite ne - 8013a42: 230a movne r3, #10 - 8013a44: 2308 moveq r3, #8 - 8013a46: 4850 ldr r0, [pc, #320] @ (8013b88 <_printf_i+0x234>) - 8013a48: 2100 movs r1, #0 - 8013a4a: f884 1043 strb.w r1, [r4, #67] @ 0x43 - 8013a4e: 6866 ldr r6, [r4, #4] - 8013a50: 2e00 cmp r6, #0 - 8013a52: 60a6 str r6, [r4, #8] - 8013a54: db05 blt.n 8013a62 <_printf_i+0x10e> - 8013a56: 6821 ldr r1, [r4, #0] - 8013a58: 432e orrs r6, r5 - 8013a5a: f021 0104 bic.w r1, r1, #4 - 8013a5e: 6021 str r1, [r4, #0] - 8013a60: d04b beq.n 8013afa <_printf_i+0x1a6> - 8013a62: 4616 mov r6, r2 - 8013a64: fbb5 f1f3 udiv r1, r5, r3 - 8013a68: fb03 5711 mls r7, r3, r1, r5 - 8013a6c: 5dc7 ldrb r7, [r0, r7] - 8013a6e: f806 7d01 strb.w r7, [r6, #-1]! - 8013a72: 462f mov r7, r5 - 8013a74: 42bb cmp r3, r7 - 8013a76: 460d mov r5, r1 - 8013a78: d9f4 bls.n 8013a64 <_printf_i+0x110> - 8013a7a: 2b08 cmp r3, #8 - 8013a7c: d10b bne.n 8013a96 <_printf_i+0x142> - 8013a7e: 6823 ldr r3, [r4, #0] - 8013a80: 07df lsls r7, r3, #31 - 8013a82: d508 bpl.n 8013a96 <_printf_i+0x142> - 8013a84: 6923 ldr r3, [r4, #16] - 8013a86: 6861 ldr r1, [r4, #4] - 8013a88: 4299 cmp r1, r3 - 8013a8a: bfde ittt le - 8013a8c: 2330 movle r3, #48 @ 0x30 - 8013a8e: f806 3c01 strble.w r3, [r6, #-1] - 8013a92: f106 36ff addle.w r6, r6, #4294967295 - 8013a96: 1b92 subs r2, r2, r6 - 8013a98: 6122 str r2, [r4, #16] - 8013a9a: 464b mov r3, r9 - 8013a9c: 4621 mov r1, r4 - 8013a9e: 4640 mov r0, r8 - 8013aa0: f8cd a000 str.w sl, [sp] - 8013aa4: aa03 add r2, sp, #12 - 8013aa6: f7ff fee3 bl 8013870 <_printf_common> - 8013aaa: 3001 adds r0, #1 - 8013aac: d14a bne.n 8013b44 <_printf_i+0x1f0> - 8013aae: f04f 30ff mov.w r0, #4294967295 - 8013ab2: b004 add sp, #16 - 8013ab4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8013ab8: 6823 ldr r3, [r4, #0] - 8013aba: f043 0320 orr.w r3, r3, #32 - 8013abe: 6023 str r3, [r4, #0] - 8013ac0: 2778 movs r7, #120 @ 0x78 - 8013ac2: 4832 ldr r0, [pc, #200] @ (8013b8c <_printf_i+0x238>) - 8013ac4: f884 7045 strb.w r7, [r4, #69] @ 0x45 - 8013ac8: 6823 ldr r3, [r4, #0] - 8013aca: 6831 ldr r1, [r6, #0] - 8013acc: 061f lsls r7, r3, #24 - 8013ace: f851 5b04 ldr.w r5, [r1], #4 - 8013ad2: d402 bmi.n 8013ada <_printf_i+0x186> - 8013ad4: 065f lsls r7, r3, #25 - 8013ad6: bf48 it mi - 8013ad8: b2ad uxthmi r5, r5 - 8013ada: 6031 str r1, [r6, #0] - 8013adc: 07d9 lsls r1, r3, #31 - 8013ade: bf44 itt mi - 8013ae0: f043 0320 orrmi.w r3, r3, #32 - 8013ae4: 6023 strmi r3, [r4, #0] - 8013ae6: b11d cbz r5, 8013af0 <_printf_i+0x19c> - 8013ae8: 2310 movs r3, #16 - 8013aea: e7ad b.n 8013a48 <_printf_i+0xf4> - 8013aec: 4826 ldr r0, [pc, #152] @ (8013b88 <_printf_i+0x234>) - 8013aee: e7e9 b.n 8013ac4 <_printf_i+0x170> - 8013af0: 6823 ldr r3, [r4, #0] - 8013af2: f023 0320 bic.w r3, r3, #32 - 8013af6: 6023 str r3, [r4, #0] - 8013af8: e7f6 b.n 8013ae8 <_printf_i+0x194> - 8013afa: 4616 mov r6, r2 - 8013afc: e7bd b.n 8013a7a <_printf_i+0x126> - 8013afe: 6833 ldr r3, [r6, #0] - 8013b00: 6825 ldr r5, [r4, #0] - 8013b02: 1d18 adds r0, r3, #4 - 8013b04: 6961 ldr r1, [r4, #20] - 8013b06: 6030 str r0, [r6, #0] - 8013b08: 062e lsls r6, r5, #24 - 8013b0a: 681b ldr r3, [r3, #0] - 8013b0c: d501 bpl.n 8013b12 <_printf_i+0x1be> - 8013b0e: 6019 str r1, [r3, #0] - 8013b10: e002 b.n 8013b18 <_printf_i+0x1c4> - 8013b12: 0668 lsls r0, r5, #25 - 8013b14: d5fb bpl.n 8013b0e <_printf_i+0x1ba> - 8013b16: 8019 strh r1, [r3, #0] - 8013b18: 2300 movs r3, #0 - 8013b1a: 4616 mov r6, r2 - 8013b1c: 6123 str r3, [r4, #16] - 8013b1e: e7bc b.n 8013a9a <_printf_i+0x146> - 8013b20: 6833 ldr r3, [r6, #0] - 8013b22: 2100 movs r1, #0 - 8013b24: 1d1a adds r2, r3, #4 - 8013b26: 6032 str r2, [r6, #0] - 8013b28: 681e ldr r6, [r3, #0] - 8013b2a: 6862 ldr r2, [r4, #4] - 8013b2c: 4630 mov r0, r6 - 8013b2e: f000 f995 bl 8013e5c - 8013b32: b108 cbz r0, 8013b38 <_printf_i+0x1e4> - 8013b34: 1b80 subs r0, r0, r6 - 8013b36: 6060 str r0, [r4, #4] - 8013b38: 6863 ldr r3, [r4, #4] - 8013b3a: 6123 str r3, [r4, #16] - 8013b3c: 2300 movs r3, #0 - 8013b3e: f884 3043 strb.w r3, [r4, #67] @ 0x43 - 8013b42: e7aa b.n 8013a9a <_printf_i+0x146> - 8013b44: 4632 mov r2, r6 - 8013b46: 4649 mov r1, r9 - 8013b48: 4640 mov r0, r8 - 8013b4a: 6923 ldr r3, [r4, #16] - 8013b4c: 47d0 blx sl - 8013b4e: 3001 adds r0, #1 - 8013b50: d0ad beq.n 8013aae <_printf_i+0x15a> - 8013b52: 6823 ldr r3, [r4, #0] - 8013b54: 079b lsls r3, r3, #30 - 8013b56: d413 bmi.n 8013b80 <_printf_i+0x22c> - 8013b58: 68e0 ldr r0, [r4, #12] - 8013b5a: 9b03 ldr r3, [sp, #12] - 8013b5c: 4298 cmp r0, r3 - 8013b5e: bfb8 it lt - 8013b60: 4618 movlt r0, r3 - 8013b62: e7a6 b.n 8013ab2 <_printf_i+0x15e> - 8013b64: 2301 movs r3, #1 - 8013b66: 4632 mov r2, r6 - 8013b68: 4649 mov r1, r9 - 8013b6a: 4640 mov r0, r8 - 8013b6c: 47d0 blx sl - 8013b6e: 3001 adds r0, #1 - 8013b70: d09d beq.n 8013aae <_printf_i+0x15a> - 8013b72: 3501 adds r5, #1 - 8013b74: 68e3 ldr r3, [r4, #12] - 8013b76: 9903 ldr r1, [sp, #12] - 8013b78: 1a5b subs r3, r3, r1 - 8013b7a: 42ab cmp r3, r5 - 8013b7c: dcf2 bgt.n 8013b64 <_printf_i+0x210> - 8013b7e: e7eb b.n 8013b58 <_printf_i+0x204> - 8013b80: 2500 movs r5, #0 - 8013b82: f104 0619 add.w r6, r4, #25 - 8013b86: e7f5 b.n 8013b74 <_printf_i+0x220> - 8013b88: 0801448d .word 0x0801448d - 8013b8c: 0801449e .word 0x0801449e +08013970 <_printf_i>: + 8013970: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} + 8013974: 7e0f ldrb r7, [r1, #24] + 8013976: 4691 mov r9, r2 + 8013978: 2f78 cmp r7, #120 @ 0x78 + 801397a: 4680 mov r8, r0 + 801397c: 460c mov r4, r1 + 801397e: 469a mov sl, r3 + 8013980: 9e0c ldr r6, [sp, #48] @ 0x30 + 8013982: f101 0243 add.w r2, r1, #67 @ 0x43 + 8013986: d807 bhi.n 8013998 <_printf_i+0x28> + 8013988: 2f62 cmp r7, #98 @ 0x62 + 801398a: d80a bhi.n 80139a2 <_printf_i+0x32> + 801398c: 2f00 cmp r7, #0 + 801398e: f000 80d1 beq.w 8013b34 <_printf_i+0x1c4> + 8013992: 2f58 cmp r7, #88 @ 0x58 + 8013994: f000 80b8 beq.w 8013b08 <_printf_i+0x198> + 8013998: f104 0642 add.w r6, r4, #66 @ 0x42 + 801399c: f884 7042 strb.w r7, [r4, #66] @ 0x42 + 80139a0: e03a b.n 8013a18 <_printf_i+0xa8> + 80139a2: f1a7 0363 sub.w r3, r7, #99 @ 0x63 + 80139a6: 2b15 cmp r3, #21 + 80139a8: d8f6 bhi.n 8013998 <_printf_i+0x28> + 80139aa: a101 add r1, pc, #4 @ (adr r1, 80139b0 <_printf_i+0x40>) + 80139ac: f851 f023 ldr.w pc, [r1, r3, lsl #2] + 80139b0: 08013a09 .word 0x08013a09 + 80139b4: 08013a1d .word 0x08013a1d + 80139b8: 08013999 .word 0x08013999 + 80139bc: 08013999 .word 0x08013999 + 80139c0: 08013999 .word 0x08013999 + 80139c4: 08013999 .word 0x08013999 + 80139c8: 08013a1d .word 0x08013a1d + 80139cc: 08013999 .word 0x08013999 + 80139d0: 08013999 .word 0x08013999 + 80139d4: 08013999 .word 0x08013999 + 80139d8: 08013999 .word 0x08013999 + 80139dc: 08013b1b .word 0x08013b1b + 80139e0: 08013a47 .word 0x08013a47 + 80139e4: 08013ad5 .word 0x08013ad5 + 80139e8: 08013999 .word 0x08013999 + 80139ec: 08013999 .word 0x08013999 + 80139f0: 08013b3d .word 0x08013b3d + 80139f4: 08013999 .word 0x08013999 + 80139f8: 08013a47 .word 0x08013a47 + 80139fc: 08013999 .word 0x08013999 + 8013a00: 08013999 .word 0x08013999 + 8013a04: 08013add .word 0x08013add + 8013a08: 6833 ldr r3, [r6, #0] + 8013a0a: 1d1a adds r2, r3, #4 + 8013a0c: 681b ldr r3, [r3, #0] + 8013a0e: 6032 str r2, [r6, #0] + 8013a10: f104 0642 add.w r6, r4, #66 @ 0x42 + 8013a14: f884 3042 strb.w r3, [r4, #66] @ 0x42 + 8013a18: 2301 movs r3, #1 + 8013a1a: e09c b.n 8013b56 <_printf_i+0x1e6> + 8013a1c: 6833 ldr r3, [r6, #0] + 8013a1e: 6820 ldr r0, [r4, #0] + 8013a20: 1d19 adds r1, r3, #4 + 8013a22: 6031 str r1, [r6, #0] + 8013a24: 0606 lsls r6, r0, #24 + 8013a26: d501 bpl.n 8013a2c <_printf_i+0xbc> + 8013a28: 681d ldr r5, [r3, #0] + 8013a2a: e003 b.n 8013a34 <_printf_i+0xc4> + 8013a2c: 0645 lsls r5, r0, #25 + 8013a2e: d5fb bpl.n 8013a28 <_printf_i+0xb8> + 8013a30: f9b3 5000 ldrsh.w r5, [r3] + 8013a34: 2d00 cmp r5, #0 + 8013a36: da03 bge.n 8013a40 <_printf_i+0xd0> + 8013a38: 232d movs r3, #45 @ 0x2d + 8013a3a: 426d negs r5, r5 + 8013a3c: f884 3043 strb.w r3, [r4, #67] @ 0x43 + 8013a40: 230a movs r3, #10 + 8013a42: 4858 ldr r0, [pc, #352] @ (8013ba4 <_printf_i+0x234>) + 8013a44: e011 b.n 8013a6a <_printf_i+0xfa> + 8013a46: 6821 ldr r1, [r4, #0] + 8013a48: 6833 ldr r3, [r6, #0] + 8013a4a: 0608 lsls r0, r1, #24 + 8013a4c: f853 5b04 ldr.w r5, [r3], #4 + 8013a50: d402 bmi.n 8013a58 <_printf_i+0xe8> + 8013a52: 0649 lsls r1, r1, #25 + 8013a54: bf48 it mi + 8013a56: b2ad uxthmi r5, r5 + 8013a58: 2f6f cmp r7, #111 @ 0x6f + 8013a5a: 6033 str r3, [r6, #0] + 8013a5c: bf14 ite ne + 8013a5e: 230a movne r3, #10 + 8013a60: 2308 moveq r3, #8 + 8013a62: 4850 ldr r0, [pc, #320] @ (8013ba4 <_printf_i+0x234>) + 8013a64: 2100 movs r1, #0 + 8013a66: f884 1043 strb.w r1, [r4, #67] @ 0x43 + 8013a6a: 6866 ldr r6, [r4, #4] + 8013a6c: 2e00 cmp r6, #0 + 8013a6e: 60a6 str r6, [r4, #8] + 8013a70: db05 blt.n 8013a7e <_printf_i+0x10e> + 8013a72: 6821 ldr r1, [r4, #0] + 8013a74: 432e orrs r6, r5 + 8013a76: f021 0104 bic.w r1, r1, #4 + 8013a7a: 6021 str r1, [r4, #0] + 8013a7c: d04b beq.n 8013b16 <_printf_i+0x1a6> + 8013a7e: 4616 mov r6, r2 + 8013a80: fbb5 f1f3 udiv r1, r5, r3 + 8013a84: fb03 5711 mls r7, r3, r1, r5 + 8013a88: 5dc7 ldrb r7, [r0, r7] + 8013a8a: f806 7d01 strb.w r7, [r6, #-1]! + 8013a8e: 462f mov r7, r5 + 8013a90: 42bb cmp r3, r7 + 8013a92: 460d mov r5, r1 + 8013a94: d9f4 bls.n 8013a80 <_printf_i+0x110> + 8013a96: 2b08 cmp r3, #8 + 8013a98: d10b bne.n 8013ab2 <_printf_i+0x142> + 8013a9a: 6823 ldr r3, [r4, #0] + 8013a9c: 07df lsls r7, r3, #31 + 8013a9e: d508 bpl.n 8013ab2 <_printf_i+0x142> + 8013aa0: 6923 ldr r3, [r4, #16] + 8013aa2: 6861 ldr r1, [r4, #4] + 8013aa4: 4299 cmp r1, r3 + 8013aa6: bfde ittt le + 8013aa8: 2330 movle r3, #48 @ 0x30 + 8013aaa: f806 3c01 strble.w r3, [r6, #-1] + 8013aae: f106 36ff addle.w r6, r6, #4294967295 + 8013ab2: 1b92 subs r2, r2, r6 + 8013ab4: 6122 str r2, [r4, #16] + 8013ab6: 464b mov r3, r9 + 8013ab8: 4621 mov r1, r4 + 8013aba: 4640 mov r0, r8 + 8013abc: f8cd a000 str.w sl, [sp] + 8013ac0: aa03 add r2, sp, #12 + 8013ac2: f7ff fee3 bl 801388c <_printf_common> + 8013ac6: 3001 adds r0, #1 + 8013ac8: d14a bne.n 8013b60 <_printf_i+0x1f0> + 8013aca: f04f 30ff mov.w r0, #4294967295 + 8013ace: b004 add sp, #16 + 8013ad0: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8013ad4: 6823 ldr r3, [r4, #0] + 8013ad6: f043 0320 orr.w r3, r3, #32 + 8013ada: 6023 str r3, [r4, #0] + 8013adc: 2778 movs r7, #120 @ 0x78 + 8013ade: 4832 ldr r0, [pc, #200] @ (8013ba8 <_printf_i+0x238>) + 8013ae0: f884 7045 strb.w r7, [r4, #69] @ 0x45 + 8013ae4: 6823 ldr r3, [r4, #0] + 8013ae6: 6831 ldr r1, [r6, #0] + 8013ae8: 061f lsls r7, r3, #24 + 8013aea: f851 5b04 ldr.w r5, [r1], #4 + 8013aee: d402 bmi.n 8013af6 <_printf_i+0x186> + 8013af0: 065f lsls r7, r3, #25 + 8013af2: bf48 it mi + 8013af4: b2ad uxthmi r5, r5 + 8013af6: 6031 str r1, [r6, #0] + 8013af8: 07d9 lsls r1, r3, #31 + 8013afa: bf44 itt mi + 8013afc: f043 0320 orrmi.w r3, r3, #32 + 8013b00: 6023 strmi r3, [r4, #0] + 8013b02: b11d cbz r5, 8013b0c <_printf_i+0x19c> + 8013b04: 2310 movs r3, #16 + 8013b06: e7ad b.n 8013a64 <_printf_i+0xf4> + 8013b08: 4826 ldr r0, [pc, #152] @ (8013ba4 <_printf_i+0x234>) + 8013b0a: e7e9 b.n 8013ae0 <_printf_i+0x170> + 8013b0c: 6823 ldr r3, [r4, #0] + 8013b0e: f023 0320 bic.w r3, r3, #32 + 8013b12: 6023 str r3, [r4, #0] + 8013b14: e7f6 b.n 8013b04 <_printf_i+0x194> + 8013b16: 4616 mov r6, r2 + 8013b18: e7bd b.n 8013a96 <_printf_i+0x126> + 8013b1a: 6833 ldr r3, [r6, #0] + 8013b1c: 6825 ldr r5, [r4, #0] + 8013b1e: 1d18 adds r0, r3, #4 + 8013b20: 6961 ldr r1, [r4, #20] + 8013b22: 6030 str r0, [r6, #0] + 8013b24: 062e lsls r6, r5, #24 + 8013b26: 681b ldr r3, [r3, #0] + 8013b28: d501 bpl.n 8013b2e <_printf_i+0x1be> + 8013b2a: 6019 str r1, [r3, #0] + 8013b2c: e002 b.n 8013b34 <_printf_i+0x1c4> + 8013b2e: 0668 lsls r0, r5, #25 + 8013b30: d5fb bpl.n 8013b2a <_printf_i+0x1ba> + 8013b32: 8019 strh r1, [r3, #0] + 8013b34: 2300 movs r3, #0 + 8013b36: 4616 mov r6, r2 + 8013b38: 6123 str r3, [r4, #16] + 8013b3a: e7bc b.n 8013ab6 <_printf_i+0x146> + 8013b3c: 6833 ldr r3, [r6, #0] + 8013b3e: 2100 movs r1, #0 + 8013b40: 1d1a adds r2, r3, #4 + 8013b42: 6032 str r2, [r6, #0] + 8013b44: 681e ldr r6, [r3, #0] + 8013b46: 6862 ldr r2, [r4, #4] + 8013b48: 4630 mov r0, r6 + 8013b4a: f000 f995 bl 8013e78 + 8013b4e: b108 cbz r0, 8013b54 <_printf_i+0x1e4> + 8013b50: 1b80 subs r0, r0, r6 + 8013b52: 6060 str r0, [r4, #4] + 8013b54: 6863 ldr r3, [r4, #4] + 8013b56: 6123 str r3, [r4, #16] + 8013b58: 2300 movs r3, #0 + 8013b5a: f884 3043 strb.w r3, [r4, #67] @ 0x43 + 8013b5e: e7aa b.n 8013ab6 <_printf_i+0x146> + 8013b60: 4632 mov r2, r6 + 8013b62: 4649 mov r1, r9 + 8013b64: 4640 mov r0, r8 + 8013b66: 6923 ldr r3, [r4, #16] + 8013b68: 47d0 blx sl + 8013b6a: 3001 adds r0, #1 + 8013b6c: d0ad beq.n 8013aca <_printf_i+0x15a> + 8013b6e: 6823 ldr r3, [r4, #0] + 8013b70: 079b lsls r3, r3, #30 + 8013b72: d413 bmi.n 8013b9c <_printf_i+0x22c> + 8013b74: 68e0 ldr r0, [r4, #12] + 8013b76: 9b03 ldr r3, [sp, #12] + 8013b78: 4298 cmp r0, r3 + 8013b7a: bfb8 it lt + 8013b7c: 4618 movlt r0, r3 + 8013b7e: e7a6 b.n 8013ace <_printf_i+0x15e> + 8013b80: 2301 movs r3, #1 + 8013b82: 4632 mov r2, r6 + 8013b84: 4649 mov r1, r9 + 8013b86: 4640 mov r0, r8 + 8013b88: 47d0 blx sl + 8013b8a: 3001 adds r0, #1 + 8013b8c: d09d beq.n 8013aca <_printf_i+0x15a> + 8013b8e: 3501 adds r5, #1 + 8013b90: 68e3 ldr r3, [r4, #12] + 8013b92: 9903 ldr r1, [sp, #12] + 8013b94: 1a5b subs r3, r3, r1 + 8013b96: 42ab cmp r3, r5 + 8013b98: dcf2 bgt.n 8013b80 <_printf_i+0x210> + 8013b9a: e7eb b.n 8013b74 <_printf_i+0x204> + 8013b9c: 2500 movs r5, #0 + 8013b9e: f104 0619 add.w r6, r4, #25 + 8013ba2: e7f5 b.n 8013b90 <_printf_i+0x220> + 8013ba4: 080144a9 .word 0x080144a9 + 8013ba8: 080144ba .word 0x080144ba -08013b90 <__sflush_r>: - 8013b90: f9b1 200c ldrsh.w r2, [r1, #12] - 8013b94: b5f8 push {r3, r4, r5, r6, r7, lr} - 8013b96: 0716 lsls r6, r2, #28 - 8013b98: 4605 mov r5, r0 - 8013b9a: 460c mov r4, r1 - 8013b9c: d454 bmi.n 8013c48 <__sflush_r+0xb8> - 8013b9e: 684b ldr r3, [r1, #4] - 8013ba0: 2b00 cmp r3, #0 - 8013ba2: dc02 bgt.n 8013baa <__sflush_r+0x1a> - 8013ba4: 6c0b ldr r3, [r1, #64] @ 0x40 - 8013ba6: 2b00 cmp r3, #0 - 8013ba8: dd48 ble.n 8013c3c <__sflush_r+0xac> - 8013baa: 6ae6 ldr r6, [r4, #44] @ 0x2c - 8013bac: 2e00 cmp r6, #0 - 8013bae: d045 beq.n 8013c3c <__sflush_r+0xac> - 8013bb0: 2300 movs r3, #0 - 8013bb2: f412 5280 ands.w r2, r2, #4096 @ 0x1000 - 8013bb6: 682f ldr r7, [r5, #0] - 8013bb8: 6a21 ldr r1, [r4, #32] - 8013bba: 602b str r3, [r5, #0] - 8013bbc: d030 beq.n 8013c20 <__sflush_r+0x90> - 8013bbe: 6d62 ldr r2, [r4, #84] @ 0x54 - 8013bc0: 89a3 ldrh r3, [r4, #12] - 8013bc2: 0759 lsls r1, r3, #29 - 8013bc4: d505 bpl.n 8013bd2 <__sflush_r+0x42> - 8013bc6: 6863 ldr r3, [r4, #4] - 8013bc8: 1ad2 subs r2, r2, r3 - 8013bca: 6b63 ldr r3, [r4, #52] @ 0x34 - 8013bcc: b10b cbz r3, 8013bd2 <__sflush_r+0x42> - 8013bce: 6c23 ldr r3, [r4, #64] @ 0x40 - 8013bd0: 1ad2 subs r2, r2, r3 - 8013bd2: 2300 movs r3, #0 - 8013bd4: 4628 mov r0, r5 - 8013bd6: 6ae6 ldr r6, [r4, #44] @ 0x2c - 8013bd8: 6a21 ldr r1, [r4, #32] - 8013bda: 47b0 blx r6 - 8013bdc: 1c43 adds r3, r0, #1 - 8013bde: 89a3 ldrh r3, [r4, #12] - 8013be0: d106 bne.n 8013bf0 <__sflush_r+0x60> - 8013be2: 6829 ldr r1, [r5, #0] - 8013be4: 291d cmp r1, #29 - 8013be6: d82b bhi.n 8013c40 <__sflush_r+0xb0> - 8013be8: 4a28 ldr r2, [pc, #160] @ (8013c8c <__sflush_r+0xfc>) - 8013bea: 40ca lsrs r2, r1 - 8013bec: 07d6 lsls r6, r2, #31 - 8013bee: d527 bpl.n 8013c40 <__sflush_r+0xb0> - 8013bf0: 2200 movs r2, #0 - 8013bf2: 6062 str r2, [r4, #4] - 8013bf4: 6922 ldr r2, [r4, #16] - 8013bf6: 04d9 lsls r1, r3, #19 - 8013bf8: 6022 str r2, [r4, #0] - 8013bfa: d504 bpl.n 8013c06 <__sflush_r+0x76> - 8013bfc: 1c42 adds r2, r0, #1 - 8013bfe: d101 bne.n 8013c04 <__sflush_r+0x74> - 8013c00: 682b ldr r3, [r5, #0] - 8013c02: b903 cbnz r3, 8013c06 <__sflush_r+0x76> - 8013c04: 6560 str r0, [r4, #84] @ 0x54 - 8013c06: 6b61 ldr r1, [r4, #52] @ 0x34 - 8013c08: 602f str r7, [r5, #0] - 8013c0a: b1b9 cbz r1, 8013c3c <__sflush_r+0xac> - 8013c0c: f104 0344 add.w r3, r4, #68 @ 0x44 - 8013c10: 4299 cmp r1, r3 - 8013c12: d002 beq.n 8013c1a <__sflush_r+0x8a> - 8013c14: 4628 mov r0, r5 - 8013c16: f7ff fa9d bl 8013154 <_free_r> - 8013c1a: 2300 movs r3, #0 - 8013c1c: 6363 str r3, [r4, #52] @ 0x34 - 8013c1e: e00d b.n 8013c3c <__sflush_r+0xac> - 8013c20: 2301 movs r3, #1 - 8013c22: 4628 mov r0, r5 - 8013c24: 47b0 blx r6 - 8013c26: 4602 mov r2, r0 - 8013c28: 1c50 adds r0, r2, #1 - 8013c2a: d1c9 bne.n 8013bc0 <__sflush_r+0x30> - 8013c2c: 682b ldr r3, [r5, #0] - 8013c2e: 2b00 cmp r3, #0 - 8013c30: d0c6 beq.n 8013bc0 <__sflush_r+0x30> - 8013c32: 2b1d cmp r3, #29 - 8013c34: d001 beq.n 8013c3a <__sflush_r+0xaa> - 8013c36: 2b16 cmp r3, #22 - 8013c38: d11d bne.n 8013c76 <__sflush_r+0xe6> - 8013c3a: 602f str r7, [r5, #0] - 8013c3c: 2000 movs r0, #0 - 8013c3e: e021 b.n 8013c84 <__sflush_r+0xf4> - 8013c40: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8013c44: b21b sxth r3, r3 - 8013c46: e01a b.n 8013c7e <__sflush_r+0xee> - 8013c48: 690f ldr r7, [r1, #16] - 8013c4a: 2f00 cmp r7, #0 - 8013c4c: d0f6 beq.n 8013c3c <__sflush_r+0xac> - 8013c4e: 0793 lsls r3, r2, #30 - 8013c50: bf18 it ne - 8013c52: 2300 movne r3, #0 - 8013c54: 680e ldr r6, [r1, #0] - 8013c56: bf08 it eq - 8013c58: 694b ldreq r3, [r1, #20] - 8013c5a: 1bf6 subs r6, r6, r7 - 8013c5c: 600f str r7, [r1, #0] - 8013c5e: 608b str r3, [r1, #8] - 8013c60: 2e00 cmp r6, #0 - 8013c62: ddeb ble.n 8013c3c <__sflush_r+0xac> - 8013c64: 4633 mov r3, r6 - 8013c66: 463a mov r2, r7 - 8013c68: 4628 mov r0, r5 - 8013c6a: 6a21 ldr r1, [r4, #32] - 8013c6c: f8d4 c028 ldr.w ip, [r4, #40] @ 0x28 - 8013c70: 47e0 blx ip - 8013c72: 2800 cmp r0, #0 - 8013c74: dc07 bgt.n 8013c86 <__sflush_r+0xf6> - 8013c76: f9b4 300c ldrsh.w r3, [r4, #12] - 8013c7a: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8013c7e: f04f 30ff mov.w r0, #4294967295 - 8013c82: 81a3 strh r3, [r4, #12] - 8013c84: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8013c86: 4407 add r7, r0 - 8013c88: 1a36 subs r6, r6, r0 - 8013c8a: e7e9 b.n 8013c60 <__sflush_r+0xd0> - 8013c8c: 20400001 .word 0x20400001 +08013bac <__sflush_r>: + 8013bac: f9b1 200c ldrsh.w r2, [r1, #12] + 8013bb0: b5f8 push {r3, r4, r5, r6, r7, lr} + 8013bb2: 0716 lsls r6, r2, #28 + 8013bb4: 4605 mov r5, r0 + 8013bb6: 460c mov r4, r1 + 8013bb8: d454 bmi.n 8013c64 <__sflush_r+0xb8> + 8013bba: 684b ldr r3, [r1, #4] + 8013bbc: 2b00 cmp r3, #0 + 8013bbe: dc02 bgt.n 8013bc6 <__sflush_r+0x1a> + 8013bc0: 6c0b ldr r3, [r1, #64] @ 0x40 + 8013bc2: 2b00 cmp r3, #0 + 8013bc4: dd48 ble.n 8013c58 <__sflush_r+0xac> + 8013bc6: 6ae6 ldr r6, [r4, #44] @ 0x2c + 8013bc8: 2e00 cmp r6, #0 + 8013bca: d045 beq.n 8013c58 <__sflush_r+0xac> + 8013bcc: 2300 movs r3, #0 + 8013bce: f412 5280 ands.w r2, r2, #4096 @ 0x1000 + 8013bd2: 682f ldr r7, [r5, #0] + 8013bd4: 6a21 ldr r1, [r4, #32] + 8013bd6: 602b str r3, [r5, #0] + 8013bd8: d030 beq.n 8013c3c <__sflush_r+0x90> + 8013bda: 6d62 ldr r2, [r4, #84] @ 0x54 + 8013bdc: 89a3 ldrh r3, [r4, #12] + 8013bde: 0759 lsls r1, r3, #29 + 8013be0: d505 bpl.n 8013bee <__sflush_r+0x42> + 8013be2: 6863 ldr r3, [r4, #4] + 8013be4: 1ad2 subs r2, r2, r3 + 8013be6: 6b63 ldr r3, [r4, #52] @ 0x34 + 8013be8: b10b cbz r3, 8013bee <__sflush_r+0x42> + 8013bea: 6c23 ldr r3, [r4, #64] @ 0x40 + 8013bec: 1ad2 subs r2, r2, r3 + 8013bee: 2300 movs r3, #0 + 8013bf0: 4628 mov r0, r5 + 8013bf2: 6ae6 ldr r6, [r4, #44] @ 0x2c + 8013bf4: 6a21 ldr r1, [r4, #32] + 8013bf6: 47b0 blx r6 + 8013bf8: 1c43 adds r3, r0, #1 + 8013bfa: 89a3 ldrh r3, [r4, #12] + 8013bfc: d106 bne.n 8013c0c <__sflush_r+0x60> + 8013bfe: 6829 ldr r1, [r5, #0] + 8013c00: 291d cmp r1, #29 + 8013c02: d82b bhi.n 8013c5c <__sflush_r+0xb0> + 8013c04: 4a28 ldr r2, [pc, #160] @ (8013ca8 <__sflush_r+0xfc>) + 8013c06: 40ca lsrs r2, r1 + 8013c08: 07d6 lsls r6, r2, #31 + 8013c0a: d527 bpl.n 8013c5c <__sflush_r+0xb0> + 8013c0c: 2200 movs r2, #0 + 8013c0e: 6062 str r2, [r4, #4] + 8013c10: 6922 ldr r2, [r4, #16] + 8013c12: 04d9 lsls r1, r3, #19 + 8013c14: 6022 str r2, [r4, #0] + 8013c16: d504 bpl.n 8013c22 <__sflush_r+0x76> + 8013c18: 1c42 adds r2, r0, #1 + 8013c1a: d101 bne.n 8013c20 <__sflush_r+0x74> + 8013c1c: 682b ldr r3, [r5, #0] + 8013c1e: b903 cbnz r3, 8013c22 <__sflush_r+0x76> + 8013c20: 6560 str r0, [r4, #84] @ 0x54 + 8013c22: 6b61 ldr r1, [r4, #52] @ 0x34 + 8013c24: 602f str r7, [r5, #0] + 8013c26: b1b9 cbz r1, 8013c58 <__sflush_r+0xac> + 8013c28: f104 0344 add.w r3, r4, #68 @ 0x44 + 8013c2c: 4299 cmp r1, r3 + 8013c2e: d002 beq.n 8013c36 <__sflush_r+0x8a> + 8013c30: 4628 mov r0, r5 + 8013c32: f7ff fa9d bl 8013170 <_free_r> + 8013c36: 2300 movs r3, #0 + 8013c38: 6363 str r3, [r4, #52] @ 0x34 + 8013c3a: e00d b.n 8013c58 <__sflush_r+0xac> + 8013c3c: 2301 movs r3, #1 + 8013c3e: 4628 mov r0, r5 + 8013c40: 47b0 blx r6 + 8013c42: 4602 mov r2, r0 + 8013c44: 1c50 adds r0, r2, #1 + 8013c46: d1c9 bne.n 8013bdc <__sflush_r+0x30> + 8013c48: 682b ldr r3, [r5, #0] + 8013c4a: 2b00 cmp r3, #0 + 8013c4c: d0c6 beq.n 8013bdc <__sflush_r+0x30> + 8013c4e: 2b1d cmp r3, #29 + 8013c50: d001 beq.n 8013c56 <__sflush_r+0xaa> + 8013c52: 2b16 cmp r3, #22 + 8013c54: d11d bne.n 8013c92 <__sflush_r+0xe6> + 8013c56: 602f str r7, [r5, #0] + 8013c58: 2000 movs r0, #0 + 8013c5a: e021 b.n 8013ca0 <__sflush_r+0xf4> + 8013c5c: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8013c60: b21b sxth r3, r3 + 8013c62: e01a b.n 8013c9a <__sflush_r+0xee> + 8013c64: 690f ldr r7, [r1, #16] + 8013c66: 2f00 cmp r7, #0 + 8013c68: d0f6 beq.n 8013c58 <__sflush_r+0xac> + 8013c6a: 0793 lsls r3, r2, #30 + 8013c6c: bf18 it ne + 8013c6e: 2300 movne r3, #0 + 8013c70: 680e ldr r6, [r1, #0] + 8013c72: bf08 it eq + 8013c74: 694b ldreq r3, [r1, #20] + 8013c76: 1bf6 subs r6, r6, r7 + 8013c78: 600f str r7, [r1, #0] + 8013c7a: 608b str r3, [r1, #8] + 8013c7c: 2e00 cmp r6, #0 + 8013c7e: ddeb ble.n 8013c58 <__sflush_r+0xac> + 8013c80: 4633 mov r3, r6 + 8013c82: 463a mov r2, r7 + 8013c84: 4628 mov r0, r5 + 8013c86: 6a21 ldr r1, [r4, #32] + 8013c88: f8d4 c028 ldr.w ip, [r4, #40] @ 0x28 + 8013c8c: 47e0 blx ip + 8013c8e: 2800 cmp r0, #0 + 8013c90: dc07 bgt.n 8013ca2 <__sflush_r+0xf6> + 8013c92: f9b4 300c ldrsh.w r3, [r4, #12] + 8013c96: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8013c9a: f04f 30ff mov.w r0, #4294967295 + 8013c9e: 81a3 strh r3, [r4, #12] + 8013ca0: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8013ca2: 4407 add r7, r0 + 8013ca4: 1a36 subs r6, r6, r0 + 8013ca6: e7e9 b.n 8013c7c <__sflush_r+0xd0> + 8013ca8: 20400001 .word 0x20400001 -08013c90 <_fflush_r>: - 8013c90: b538 push {r3, r4, r5, lr} - 8013c92: 690b ldr r3, [r1, #16] - 8013c94: 4605 mov r5, r0 - 8013c96: 460c mov r4, r1 - 8013c98: b913 cbnz r3, 8013ca0 <_fflush_r+0x10> - 8013c9a: 2500 movs r5, #0 - 8013c9c: 4628 mov r0, r5 - 8013c9e: bd38 pop {r3, r4, r5, pc} - 8013ca0: b118 cbz r0, 8013caa <_fflush_r+0x1a> - 8013ca2: 6a03 ldr r3, [r0, #32] - 8013ca4: b90b cbnz r3, 8013caa <_fflush_r+0x1a> - 8013ca6: f7ff f903 bl 8012eb0 <__sinit> - 8013caa: f9b4 300c ldrsh.w r3, [r4, #12] - 8013cae: 2b00 cmp r3, #0 - 8013cb0: d0f3 beq.n 8013c9a <_fflush_r+0xa> - 8013cb2: 6e62 ldr r2, [r4, #100] @ 0x64 - 8013cb4: 07d0 lsls r0, r2, #31 - 8013cb6: d404 bmi.n 8013cc2 <_fflush_r+0x32> - 8013cb8: 0599 lsls r1, r3, #22 - 8013cba: d402 bmi.n 8013cc2 <_fflush_r+0x32> - 8013cbc: 6da0 ldr r0, [r4, #88] @ 0x58 - 8013cbe: f7ff fa38 bl 8013132 <__retarget_lock_acquire_recursive> - 8013cc2: 4628 mov r0, r5 - 8013cc4: 4621 mov r1, r4 - 8013cc6: f7ff ff63 bl 8013b90 <__sflush_r> - 8013cca: 6e63 ldr r3, [r4, #100] @ 0x64 - 8013ccc: 4605 mov r5, r0 - 8013cce: 07da lsls r2, r3, #31 - 8013cd0: d4e4 bmi.n 8013c9c <_fflush_r+0xc> - 8013cd2: 89a3 ldrh r3, [r4, #12] - 8013cd4: 059b lsls r3, r3, #22 - 8013cd6: d4e1 bmi.n 8013c9c <_fflush_r+0xc> +08013cac <_fflush_r>: + 8013cac: b538 push {r3, r4, r5, lr} + 8013cae: 690b ldr r3, [r1, #16] + 8013cb0: 4605 mov r5, r0 + 8013cb2: 460c mov r4, r1 + 8013cb4: b913 cbnz r3, 8013cbc <_fflush_r+0x10> + 8013cb6: 2500 movs r5, #0 + 8013cb8: 4628 mov r0, r5 + 8013cba: bd38 pop {r3, r4, r5, pc} + 8013cbc: b118 cbz r0, 8013cc6 <_fflush_r+0x1a> + 8013cbe: 6a03 ldr r3, [r0, #32] + 8013cc0: b90b cbnz r3, 8013cc6 <_fflush_r+0x1a> + 8013cc2: f7ff f903 bl 8012ecc <__sinit> + 8013cc6: f9b4 300c ldrsh.w r3, [r4, #12] + 8013cca: 2b00 cmp r3, #0 + 8013ccc: d0f3 beq.n 8013cb6 <_fflush_r+0xa> + 8013cce: 6e62 ldr r2, [r4, #100] @ 0x64 + 8013cd0: 07d0 lsls r0, r2, #31 + 8013cd2: d404 bmi.n 8013cde <_fflush_r+0x32> + 8013cd4: 0599 lsls r1, r3, #22 + 8013cd6: d402 bmi.n 8013cde <_fflush_r+0x32> 8013cd8: 6da0 ldr r0, [r4, #88] @ 0x58 - 8013cda: f7ff fa2b bl 8013134 <__retarget_lock_release_recursive> - 8013cde: e7dd b.n 8013c9c <_fflush_r+0xc> + 8013cda: f7ff fa38 bl 801314e <__retarget_lock_acquire_recursive> + 8013cde: 4628 mov r0, r5 + 8013ce0: 4621 mov r1, r4 + 8013ce2: f7ff ff63 bl 8013bac <__sflush_r> + 8013ce6: 6e63 ldr r3, [r4, #100] @ 0x64 + 8013ce8: 4605 mov r5, r0 + 8013cea: 07da lsls r2, r3, #31 + 8013cec: d4e4 bmi.n 8013cb8 <_fflush_r+0xc> + 8013cee: 89a3 ldrh r3, [r4, #12] + 8013cf0: 059b lsls r3, r3, #22 + 8013cf2: d4e1 bmi.n 8013cb8 <_fflush_r+0xc> + 8013cf4: 6da0 ldr r0, [r4, #88] @ 0x58 + 8013cf6: f7ff fa2b bl 8013150 <__retarget_lock_release_recursive> + 8013cfa: e7dd b.n 8013cb8 <_fflush_r+0xc> -08013ce0 <__swbuf_r>: - 8013ce0: b5f8 push {r3, r4, r5, r6, r7, lr} - 8013ce2: 460e mov r6, r1 - 8013ce4: 4614 mov r4, r2 - 8013ce6: 4605 mov r5, r0 - 8013ce8: b118 cbz r0, 8013cf2 <__swbuf_r+0x12> - 8013cea: 6a03 ldr r3, [r0, #32] - 8013cec: b90b cbnz r3, 8013cf2 <__swbuf_r+0x12> - 8013cee: f7ff f8df bl 8012eb0 <__sinit> - 8013cf2: 69a3 ldr r3, [r4, #24] - 8013cf4: 60a3 str r3, [r4, #8] - 8013cf6: 89a3 ldrh r3, [r4, #12] - 8013cf8: 071a lsls r2, r3, #28 - 8013cfa: d501 bpl.n 8013d00 <__swbuf_r+0x20> - 8013cfc: 6923 ldr r3, [r4, #16] - 8013cfe: b943 cbnz r3, 8013d12 <__swbuf_r+0x32> - 8013d00: 4621 mov r1, r4 - 8013d02: 4628 mov r0, r5 - 8013d04: f000 f82a bl 8013d5c <__swsetup_r> - 8013d08: b118 cbz r0, 8013d12 <__swbuf_r+0x32> - 8013d0a: f04f 37ff mov.w r7, #4294967295 - 8013d0e: 4638 mov r0, r7 - 8013d10: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8013d12: 6823 ldr r3, [r4, #0] - 8013d14: 6922 ldr r2, [r4, #16] - 8013d16: b2f6 uxtb r6, r6 - 8013d18: 1a98 subs r0, r3, r2 - 8013d1a: 6963 ldr r3, [r4, #20] - 8013d1c: 4637 mov r7, r6 - 8013d1e: 4283 cmp r3, r0 - 8013d20: dc05 bgt.n 8013d2e <__swbuf_r+0x4e> - 8013d22: 4621 mov r1, r4 - 8013d24: 4628 mov r0, r5 - 8013d26: f7ff ffb3 bl 8013c90 <_fflush_r> - 8013d2a: 2800 cmp r0, #0 - 8013d2c: d1ed bne.n 8013d0a <__swbuf_r+0x2a> - 8013d2e: 68a3 ldr r3, [r4, #8] - 8013d30: 3b01 subs r3, #1 - 8013d32: 60a3 str r3, [r4, #8] - 8013d34: 6823 ldr r3, [r4, #0] - 8013d36: 1c5a adds r2, r3, #1 - 8013d38: 6022 str r2, [r4, #0] - 8013d3a: 701e strb r6, [r3, #0] - 8013d3c: 6962 ldr r2, [r4, #20] - 8013d3e: 1c43 adds r3, r0, #1 - 8013d40: 429a cmp r2, r3 - 8013d42: d004 beq.n 8013d4e <__swbuf_r+0x6e> - 8013d44: 89a3 ldrh r3, [r4, #12] - 8013d46: 07db lsls r3, r3, #31 - 8013d48: d5e1 bpl.n 8013d0e <__swbuf_r+0x2e> - 8013d4a: 2e0a cmp r6, #10 - 8013d4c: d1df bne.n 8013d0e <__swbuf_r+0x2e> - 8013d4e: 4621 mov r1, r4 - 8013d50: 4628 mov r0, r5 - 8013d52: f7ff ff9d bl 8013c90 <_fflush_r> - 8013d56: 2800 cmp r0, #0 - 8013d58: d0d9 beq.n 8013d0e <__swbuf_r+0x2e> - 8013d5a: e7d6 b.n 8013d0a <__swbuf_r+0x2a> +08013cfc <__swbuf_r>: + 8013cfc: b5f8 push {r3, r4, r5, r6, r7, lr} + 8013cfe: 460e mov r6, r1 + 8013d00: 4614 mov r4, r2 + 8013d02: 4605 mov r5, r0 + 8013d04: b118 cbz r0, 8013d0e <__swbuf_r+0x12> + 8013d06: 6a03 ldr r3, [r0, #32] + 8013d08: b90b cbnz r3, 8013d0e <__swbuf_r+0x12> + 8013d0a: f7ff f8df bl 8012ecc <__sinit> + 8013d0e: 69a3 ldr r3, [r4, #24] + 8013d10: 60a3 str r3, [r4, #8] + 8013d12: 89a3 ldrh r3, [r4, #12] + 8013d14: 071a lsls r2, r3, #28 + 8013d16: d501 bpl.n 8013d1c <__swbuf_r+0x20> + 8013d18: 6923 ldr r3, [r4, #16] + 8013d1a: b943 cbnz r3, 8013d2e <__swbuf_r+0x32> + 8013d1c: 4621 mov r1, r4 + 8013d1e: 4628 mov r0, r5 + 8013d20: f000 f82a bl 8013d78 <__swsetup_r> + 8013d24: b118 cbz r0, 8013d2e <__swbuf_r+0x32> + 8013d26: f04f 37ff mov.w r7, #4294967295 + 8013d2a: 4638 mov r0, r7 + 8013d2c: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8013d2e: 6823 ldr r3, [r4, #0] + 8013d30: 6922 ldr r2, [r4, #16] + 8013d32: b2f6 uxtb r6, r6 + 8013d34: 1a98 subs r0, r3, r2 + 8013d36: 6963 ldr r3, [r4, #20] + 8013d38: 4637 mov r7, r6 + 8013d3a: 4283 cmp r3, r0 + 8013d3c: dc05 bgt.n 8013d4a <__swbuf_r+0x4e> + 8013d3e: 4621 mov r1, r4 + 8013d40: 4628 mov r0, r5 + 8013d42: f7ff ffb3 bl 8013cac <_fflush_r> + 8013d46: 2800 cmp r0, #0 + 8013d48: d1ed bne.n 8013d26 <__swbuf_r+0x2a> + 8013d4a: 68a3 ldr r3, [r4, #8] + 8013d4c: 3b01 subs r3, #1 + 8013d4e: 60a3 str r3, [r4, #8] + 8013d50: 6823 ldr r3, [r4, #0] + 8013d52: 1c5a adds r2, r3, #1 + 8013d54: 6022 str r2, [r4, #0] + 8013d56: 701e strb r6, [r3, #0] + 8013d58: 6962 ldr r2, [r4, #20] + 8013d5a: 1c43 adds r3, r0, #1 + 8013d5c: 429a cmp r2, r3 + 8013d5e: d004 beq.n 8013d6a <__swbuf_r+0x6e> + 8013d60: 89a3 ldrh r3, [r4, #12] + 8013d62: 07db lsls r3, r3, #31 + 8013d64: d5e1 bpl.n 8013d2a <__swbuf_r+0x2e> + 8013d66: 2e0a cmp r6, #10 + 8013d68: d1df bne.n 8013d2a <__swbuf_r+0x2e> + 8013d6a: 4621 mov r1, r4 + 8013d6c: 4628 mov r0, r5 + 8013d6e: f7ff ff9d bl 8013cac <_fflush_r> + 8013d72: 2800 cmp r0, #0 + 8013d74: d0d9 beq.n 8013d2a <__swbuf_r+0x2e> + 8013d76: e7d6 b.n 8013d26 <__swbuf_r+0x2a> -08013d5c <__swsetup_r>: - 8013d5c: b538 push {r3, r4, r5, lr} - 8013d5e: 4b29 ldr r3, [pc, #164] @ (8013e04 <__swsetup_r+0xa8>) - 8013d60: 4605 mov r5, r0 - 8013d62: 6818 ldr r0, [r3, #0] - 8013d64: 460c mov r4, r1 - 8013d66: b118 cbz r0, 8013d70 <__swsetup_r+0x14> - 8013d68: 6a03 ldr r3, [r0, #32] - 8013d6a: b90b cbnz r3, 8013d70 <__swsetup_r+0x14> - 8013d6c: f7ff f8a0 bl 8012eb0 <__sinit> - 8013d70: f9b4 300c ldrsh.w r3, [r4, #12] - 8013d74: 0719 lsls r1, r3, #28 - 8013d76: d422 bmi.n 8013dbe <__swsetup_r+0x62> - 8013d78: 06da lsls r2, r3, #27 - 8013d7a: d407 bmi.n 8013d8c <__swsetup_r+0x30> - 8013d7c: 2209 movs r2, #9 - 8013d7e: 602a str r2, [r5, #0] - 8013d80: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8013d84: f04f 30ff mov.w r0, #4294967295 - 8013d88: 81a3 strh r3, [r4, #12] - 8013d8a: e033 b.n 8013df4 <__swsetup_r+0x98> - 8013d8c: 0758 lsls r0, r3, #29 - 8013d8e: d512 bpl.n 8013db6 <__swsetup_r+0x5a> - 8013d90: 6b61 ldr r1, [r4, #52] @ 0x34 - 8013d92: b141 cbz r1, 8013da6 <__swsetup_r+0x4a> - 8013d94: f104 0344 add.w r3, r4, #68 @ 0x44 - 8013d98: 4299 cmp r1, r3 - 8013d9a: d002 beq.n 8013da2 <__swsetup_r+0x46> - 8013d9c: 4628 mov r0, r5 - 8013d9e: f7ff f9d9 bl 8013154 <_free_r> - 8013da2: 2300 movs r3, #0 - 8013da4: 6363 str r3, [r4, #52] @ 0x34 - 8013da6: 89a3 ldrh r3, [r4, #12] - 8013da8: f023 0324 bic.w r3, r3, #36 @ 0x24 - 8013dac: 81a3 strh r3, [r4, #12] - 8013dae: 2300 movs r3, #0 - 8013db0: 6063 str r3, [r4, #4] - 8013db2: 6923 ldr r3, [r4, #16] - 8013db4: 6023 str r3, [r4, #0] - 8013db6: 89a3 ldrh r3, [r4, #12] - 8013db8: f043 0308 orr.w r3, r3, #8 - 8013dbc: 81a3 strh r3, [r4, #12] - 8013dbe: 6923 ldr r3, [r4, #16] - 8013dc0: b94b cbnz r3, 8013dd6 <__swsetup_r+0x7a> +08013d78 <__swsetup_r>: + 8013d78: b538 push {r3, r4, r5, lr} + 8013d7a: 4b29 ldr r3, [pc, #164] @ (8013e20 <__swsetup_r+0xa8>) + 8013d7c: 4605 mov r5, r0 + 8013d7e: 6818 ldr r0, [r3, #0] + 8013d80: 460c mov r4, r1 + 8013d82: b118 cbz r0, 8013d8c <__swsetup_r+0x14> + 8013d84: 6a03 ldr r3, [r0, #32] + 8013d86: b90b cbnz r3, 8013d8c <__swsetup_r+0x14> + 8013d88: f7ff f8a0 bl 8012ecc <__sinit> + 8013d8c: f9b4 300c ldrsh.w r3, [r4, #12] + 8013d90: 0719 lsls r1, r3, #28 + 8013d92: d422 bmi.n 8013dda <__swsetup_r+0x62> + 8013d94: 06da lsls r2, r3, #27 + 8013d96: d407 bmi.n 8013da8 <__swsetup_r+0x30> + 8013d98: 2209 movs r2, #9 + 8013d9a: 602a str r2, [r5, #0] + 8013d9c: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8013da0: f04f 30ff mov.w r0, #4294967295 + 8013da4: 81a3 strh r3, [r4, #12] + 8013da6: e033 b.n 8013e10 <__swsetup_r+0x98> + 8013da8: 0758 lsls r0, r3, #29 + 8013daa: d512 bpl.n 8013dd2 <__swsetup_r+0x5a> + 8013dac: 6b61 ldr r1, [r4, #52] @ 0x34 + 8013dae: b141 cbz r1, 8013dc2 <__swsetup_r+0x4a> + 8013db0: f104 0344 add.w r3, r4, #68 @ 0x44 + 8013db4: 4299 cmp r1, r3 + 8013db6: d002 beq.n 8013dbe <__swsetup_r+0x46> + 8013db8: 4628 mov r0, r5 + 8013dba: f7ff f9d9 bl 8013170 <_free_r> + 8013dbe: 2300 movs r3, #0 + 8013dc0: 6363 str r3, [r4, #52] @ 0x34 8013dc2: 89a3 ldrh r3, [r4, #12] - 8013dc4: f403 7320 and.w r3, r3, #640 @ 0x280 - 8013dc8: f5b3 7f00 cmp.w r3, #512 @ 0x200 - 8013dcc: d003 beq.n 8013dd6 <__swsetup_r+0x7a> - 8013dce: 4621 mov r1, r4 - 8013dd0: 4628 mov r0, r5 - 8013dd2: f000 f8a4 bl 8013f1e <__smakebuf_r> - 8013dd6: f9b4 300c ldrsh.w r3, [r4, #12] - 8013dda: f013 0201 ands.w r2, r3, #1 - 8013dde: d00a beq.n 8013df6 <__swsetup_r+0x9a> - 8013de0: 2200 movs r2, #0 - 8013de2: 60a2 str r2, [r4, #8] - 8013de4: 6962 ldr r2, [r4, #20] - 8013de6: 4252 negs r2, r2 - 8013de8: 61a2 str r2, [r4, #24] - 8013dea: 6922 ldr r2, [r4, #16] - 8013dec: b942 cbnz r2, 8013e00 <__swsetup_r+0xa4> - 8013dee: f013 0080 ands.w r0, r3, #128 @ 0x80 - 8013df2: d1c5 bne.n 8013d80 <__swsetup_r+0x24> - 8013df4: bd38 pop {r3, r4, r5, pc} - 8013df6: 0799 lsls r1, r3, #30 - 8013df8: bf58 it pl - 8013dfa: 6962 ldrpl r2, [r4, #20] - 8013dfc: 60a2 str r2, [r4, #8] - 8013dfe: e7f4 b.n 8013dea <__swsetup_r+0x8e> - 8013e00: 2000 movs r0, #0 - 8013e02: e7f7 b.n 8013df4 <__swsetup_r+0x98> - 8013e04: 20000084 .word 0x20000084 + 8013dc4: f023 0324 bic.w r3, r3, #36 @ 0x24 + 8013dc8: 81a3 strh r3, [r4, #12] + 8013dca: 2300 movs r3, #0 + 8013dcc: 6063 str r3, [r4, #4] + 8013dce: 6923 ldr r3, [r4, #16] + 8013dd0: 6023 str r3, [r4, #0] + 8013dd2: 89a3 ldrh r3, [r4, #12] + 8013dd4: f043 0308 orr.w r3, r3, #8 + 8013dd8: 81a3 strh r3, [r4, #12] + 8013dda: 6923 ldr r3, [r4, #16] + 8013ddc: b94b cbnz r3, 8013df2 <__swsetup_r+0x7a> + 8013dde: 89a3 ldrh r3, [r4, #12] + 8013de0: f403 7320 and.w r3, r3, #640 @ 0x280 + 8013de4: f5b3 7f00 cmp.w r3, #512 @ 0x200 + 8013de8: d003 beq.n 8013df2 <__swsetup_r+0x7a> + 8013dea: 4621 mov r1, r4 + 8013dec: 4628 mov r0, r5 + 8013dee: f000 f8a4 bl 8013f3a <__smakebuf_r> + 8013df2: f9b4 300c ldrsh.w r3, [r4, #12] + 8013df6: f013 0201 ands.w r2, r3, #1 + 8013dfa: d00a beq.n 8013e12 <__swsetup_r+0x9a> + 8013dfc: 2200 movs r2, #0 + 8013dfe: 60a2 str r2, [r4, #8] + 8013e00: 6962 ldr r2, [r4, #20] + 8013e02: 4252 negs r2, r2 + 8013e04: 61a2 str r2, [r4, #24] + 8013e06: 6922 ldr r2, [r4, #16] + 8013e08: b942 cbnz r2, 8013e1c <__swsetup_r+0xa4> + 8013e0a: f013 0080 ands.w r0, r3, #128 @ 0x80 + 8013e0e: d1c5 bne.n 8013d9c <__swsetup_r+0x24> + 8013e10: bd38 pop {r3, r4, r5, pc} + 8013e12: 0799 lsls r1, r3, #30 + 8013e14: bf58 it pl + 8013e16: 6962 ldrpl r2, [r4, #20] + 8013e18: 60a2 str r2, [r4, #8] + 8013e1a: e7f4 b.n 8013e06 <__swsetup_r+0x8e> + 8013e1c: 2000 movs r0, #0 + 8013e1e: e7f7 b.n 8013e10 <__swsetup_r+0x98> + 8013e20: 20000084 .word 0x20000084 -08013e08 : - 8013e08: 4288 cmp r0, r1 - 8013e0a: b510 push {r4, lr} - 8013e0c: eb01 0402 add.w r4, r1, r2 - 8013e10: d902 bls.n 8013e18 - 8013e12: 4284 cmp r4, r0 - 8013e14: 4623 mov r3, r4 - 8013e16: d807 bhi.n 8013e28 - 8013e18: 1e43 subs r3, r0, #1 - 8013e1a: 42a1 cmp r1, r4 - 8013e1c: d008 beq.n 8013e30 - 8013e1e: f811 2b01 ldrb.w r2, [r1], #1 - 8013e22: f803 2f01 strb.w r2, [r3, #1]! - 8013e26: e7f8 b.n 8013e1a - 8013e28: 4601 mov r1, r0 - 8013e2a: 4402 add r2, r0 - 8013e2c: 428a cmp r2, r1 - 8013e2e: d100 bne.n 8013e32 - 8013e30: bd10 pop {r4, pc} - 8013e32: f813 4d01 ldrb.w r4, [r3, #-1]! - 8013e36: f802 4d01 strb.w r4, [r2, #-1]! - 8013e3a: e7f7 b.n 8013e2c +08013e24 : + 8013e24: 4288 cmp r0, r1 + 8013e26: b510 push {r4, lr} + 8013e28: eb01 0402 add.w r4, r1, r2 + 8013e2c: d902 bls.n 8013e34 + 8013e2e: 4284 cmp r4, r0 + 8013e30: 4623 mov r3, r4 + 8013e32: d807 bhi.n 8013e44 + 8013e34: 1e43 subs r3, r0, #1 + 8013e36: 42a1 cmp r1, r4 + 8013e38: d008 beq.n 8013e4c + 8013e3a: f811 2b01 ldrb.w r2, [r1], #1 + 8013e3e: f803 2f01 strb.w r2, [r3, #1]! + 8013e42: e7f8 b.n 8013e36 + 8013e44: 4601 mov r1, r0 + 8013e46: 4402 add r2, r0 + 8013e48: 428a cmp r2, r1 + 8013e4a: d100 bne.n 8013e4e + 8013e4c: bd10 pop {r4, pc} + 8013e4e: f813 4d01 ldrb.w r4, [r3, #-1]! + 8013e52: f802 4d01 strb.w r4, [r2, #-1]! + 8013e56: e7f7 b.n 8013e48 -08013e3c <_sbrk_r>: - 8013e3c: b538 push {r3, r4, r5, lr} - 8013e3e: 2300 movs r3, #0 - 8013e40: 4d05 ldr r5, [pc, #20] @ (8013e58 <_sbrk_r+0x1c>) - 8013e42: 4604 mov r4, r0 - 8013e44: 4608 mov r0, r1 - 8013e46: 602b str r3, [r5, #0] - 8013e48: f7f9 f93a bl 800d0c0 <_sbrk> - 8013e4c: 1c43 adds r3, r0, #1 - 8013e4e: d102 bne.n 8013e56 <_sbrk_r+0x1a> - 8013e50: 682b ldr r3, [r5, #0] - 8013e52: b103 cbz r3, 8013e56 <_sbrk_r+0x1a> - 8013e54: 6023 str r3, [r4, #0] - 8013e56: bd38 pop {r3, r4, r5, pc} - 8013e58: 200011b8 .word 0x200011b8 +08013e58 <_sbrk_r>: + 8013e58: b538 push {r3, r4, r5, lr} + 8013e5a: 2300 movs r3, #0 + 8013e5c: 4d05 ldr r5, [pc, #20] @ (8013e74 <_sbrk_r+0x1c>) + 8013e5e: 4604 mov r4, r0 + 8013e60: 4608 mov r0, r1 + 8013e62: 602b str r3, [r5, #0] + 8013e64: f7f9 f93a bl 800d0dc <_sbrk> + 8013e68: 1c43 adds r3, r0, #1 + 8013e6a: d102 bne.n 8013e72 <_sbrk_r+0x1a> + 8013e6c: 682b ldr r3, [r5, #0] + 8013e6e: b103 cbz r3, 8013e72 <_sbrk_r+0x1a> + 8013e70: 6023 str r3, [r4, #0] + 8013e72: bd38 pop {r3, r4, r5, pc} + 8013e74: 200011b8 .word 0x200011b8 -08013e5c : - 8013e5c: 4603 mov r3, r0 - 8013e5e: b510 push {r4, lr} - 8013e60: b2c9 uxtb r1, r1 - 8013e62: 4402 add r2, r0 - 8013e64: 4293 cmp r3, r2 - 8013e66: 4618 mov r0, r3 - 8013e68: d101 bne.n 8013e6e - 8013e6a: 2000 movs r0, #0 - 8013e6c: e003 b.n 8013e76 - 8013e6e: 7804 ldrb r4, [r0, #0] - 8013e70: 3301 adds r3, #1 - 8013e72: 428c cmp r4, r1 - 8013e74: d1f6 bne.n 8013e64 - 8013e76: bd10 pop {r4, pc} +08013e78 : + 8013e78: 4603 mov r3, r0 + 8013e7a: b510 push {r4, lr} + 8013e7c: b2c9 uxtb r1, r1 + 8013e7e: 4402 add r2, r0 + 8013e80: 4293 cmp r3, r2 + 8013e82: 4618 mov r0, r3 + 8013e84: d101 bne.n 8013e8a + 8013e86: 2000 movs r0, #0 + 8013e88: e003 b.n 8013e92 + 8013e8a: 7804 ldrb r4, [r0, #0] + 8013e8c: 3301 adds r3, #1 + 8013e8e: 428c cmp r4, r1 + 8013e90: d1f6 bne.n 8013e80 + 8013e92: bd10 pop {r4, pc} -08013e78 <_realloc_r>: - 8013e78: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8013e7c: 4607 mov r7, r0 - 8013e7e: 4614 mov r4, r2 - 8013e80: 460d mov r5, r1 - 8013e82: b921 cbnz r1, 8013e8e <_realloc_r+0x16> - 8013e84: 4611 mov r1, r2 - 8013e86: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} - 8013e8a: f7ff b9cd b.w 8013228 <_malloc_r> - 8013e8e: b92a cbnz r2, 8013e9c <_realloc_r+0x24> - 8013e90: f7ff f960 bl 8013154 <_free_r> - 8013e94: 4625 mov r5, r4 - 8013e96: 4628 mov r0, r5 - 8013e98: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8013e9c: f000 f89e bl 8013fdc <_malloc_usable_size_r> - 8013ea0: 4284 cmp r4, r0 - 8013ea2: 4606 mov r6, r0 - 8013ea4: d802 bhi.n 8013eac <_realloc_r+0x34> - 8013ea6: ebb4 0f50 cmp.w r4, r0, lsr #1 - 8013eaa: d8f4 bhi.n 8013e96 <_realloc_r+0x1e> - 8013eac: 4621 mov r1, r4 - 8013eae: 4638 mov r0, r7 - 8013eb0: f7ff f9ba bl 8013228 <_malloc_r> - 8013eb4: 4680 mov r8, r0 - 8013eb6: b908 cbnz r0, 8013ebc <_realloc_r+0x44> - 8013eb8: 4645 mov r5, r8 - 8013eba: e7ec b.n 8013e96 <_realloc_r+0x1e> - 8013ebc: 42b4 cmp r4, r6 - 8013ebe: 4622 mov r2, r4 - 8013ec0: 4629 mov r1, r5 - 8013ec2: bf28 it cs - 8013ec4: 4632 movcs r2, r6 - 8013ec6: f7ff f936 bl 8013136 - 8013eca: 4629 mov r1, r5 - 8013ecc: 4638 mov r0, r7 - 8013ece: f7ff f941 bl 8013154 <_free_r> - 8013ed2: e7f1 b.n 8013eb8 <_realloc_r+0x40> +08013e94 <_realloc_r>: + 8013e94: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8013e98: 4607 mov r7, r0 + 8013e9a: 4614 mov r4, r2 + 8013e9c: 460d mov r5, r1 + 8013e9e: b921 cbnz r1, 8013eaa <_realloc_r+0x16> + 8013ea0: 4611 mov r1, r2 + 8013ea2: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} + 8013ea6: f7ff b9cd b.w 8013244 <_malloc_r> + 8013eaa: b92a cbnz r2, 8013eb8 <_realloc_r+0x24> + 8013eac: f7ff f960 bl 8013170 <_free_r> + 8013eb0: 4625 mov r5, r4 + 8013eb2: 4628 mov r0, r5 + 8013eb4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 8013eb8: f000 f89e bl 8013ff8 <_malloc_usable_size_r> + 8013ebc: 4284 cmp r4, r0 + 8013ebe: 4606 mov r6, r0 + 8013ec0: d802 bhi.n 8013ec8 <_realloc_r+0x34> + 8013ec2: ebb4 0f50 cmp.w r4, r0, lsr #1 + 8013ec6: d8f4 bhi.n 8013eb2 <_realloc_r+0x1e> + 8013ec8: 4621 mov r1, r4 + 8013eca: 4638 mov r0, r7 + 8013ecc: f7ff f9ba bl 8013244 <_malloc_r> + 8013ed0: 4680 mov r8, r0 + 8013ed2: b908 cbnz r0, 8013ed8 <_realloc_r+0x44> + 8013ed4: 4645 mov r5, r8 + 8013ed6: e7ec b.n 8013eb2 <_realloc_r+0x1e> + 8013ed8: 42b4 cmp r4, r6 + 8013eda: 4622 mov r2, r4 + 8013edc: 4629 mov r1, r5 + 8013ede: bf28 it cs + 8013ee0: 4632 movcs r2, r6 + 8013ee2: f7ff f936 bl 8013152 + 8013ee6: 4629 mov r1, r5 + 8013ee8: 4638 mov r0, r7 + 8013eea: f7ff f941 bl 8013170 <_free_r> + 8013eee: e7f1 b.n 8013ed4 <_realloc_r+0x40> -08013ed4 <__swhatbuf_r>: - 8013ed4: b570 push {r4, r5, r6, lr} - 8013ed6: 460c mov r4, r1 - 8013ed8: f9b1 100e ldrsh.w r1, [r1, #14] - 8013edc: 4615 mov r5, r2 - 8013ede: 2900 cmp r1, #0 - 8013ee0: 461e mov r6, r3 - 8013ee2: b096 sub sp, #88 @ 0x58 - 8013ee4: da0c bge.n 8013f00 <__swhatbuf_r+0x2c> - 8013ee6: 89a3 ldrh r3, [r4, #12] - 8013ee8: 2100 movs r1, #0 - 8013eea: f013 0f80 tst.w r3, #128 @ 0x80 - 8013eee: bf14 ite ne - 8013ef0: 2340 movne r3, #64 @ 0x40 - 8013ef2: f44f 6380 moveq.w r3, #1024 @ 0x400 - 8013ef6: 2000 movs r0, #0 - 8013ef8: 6031 str r1, [r6, #0] - 8013efa: 602b str r3, [r5, #0] - 8013efc: b016 add sp, #88 @ 0x58 - 8013efe: bd70 pop {r4, r5, r6, pc} - 8013f00: 466a mov r2, sp - 8013f02: f000 f849 bl 8013f98 <_fstat_r> - 8013f06: 2800 cmp r0, #0 - 8013f08: dbed blt.n 8013ee6 <__swhatbuf_r+0x12> - 8013f0a: 9901 ldr r1, [sp, #4] - 8013f0c: f401 4170 and.w r1, r1, #61440 @ 0xf000 - 8013f10: f5a1 5300 sub.w r3, r1, #8192 @ 0x2000 - 8013f14: 4259 negs r1, r3 - 8013f16: 4159 adcs r1, r3 - 8013f18: f44f 6380 mov.w r3, #1024 @ 0x400 - 8013f1c: e7eb b.n 8013ef6 <__swhatbuf_r+0x22> +08013ef0 <__swhatbuf_r>: + 8013ef0: b570 push {r4, r5, r6, lr} + 8013ef2: 460c mov r4, r1 + 8013ef4: f9b1 100e ldrsh.w r1, [r1, #14] + 8013ef8: 4615 mov r5, r2 + 8013efa: 2900 cmp r1, #0 + 8013efc: 461e mov r6, r3 + 8013efe: b096 sub sp, #88 @ 0x58 + 8013f00: da0c bge.n 8013f1c <__swhatbuf_r+0x2c> + 8013f02: 89a3 ldrh r3, [r4, #12] + 8013f04: 2100 movs r1, #0 + 8013f06: f013 0f80 tst.w r3, #128 @ 0x80 + 8013f0a: bf14 ite ne + 8013f0c: 2340 movne r3, #64 @ 0x40 + 8013f0e: f44f 6380 moveq.w r3, #1024 @ 0x400 + 8013f12: 2000 movs r0, #0 + 8013f14: 6031 str r1, [r6, #0] + 8013f16: 602b str r3, [r5, #0] + 8013f18: b016 add sp, #88 @ 0x58 + 8013f1a: bd70 pop {r4, r5, r6, pc} + 8013f1c: 466a mov r2, sp + 8013f1e: f000 f849 bl 8013fb4 <_fstat_r> + 8013f22: 2800 cmp r0, #0 + 8013f24: dbed blt.n 8013f02 <__swhatbuf_r+0x12> + 8013f26: 9901 ldr r1, [sp, #4] + 8013f28: f401 4170 and.w r1, r1, #61440 @ 0xf000 + 8013f2c: f5a1 5300 sub.w r3, r1, #8192 @ 0x2000 + 8013f30: 4259 negs r1, r3 + 8013f32: 4159 adcs r1, r3 + 8013f34: f44f 6380 mov.w r3, #1024 @ 0x400 + 8013f38: e7eb b.n 8013f12 <__swhatbuf_r+0x22> -08013f1e <__smakebuf_r>: - 8013f1e: 898b ldrh r3, [r1, #12] - 8013f20: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 8013f22: 079d lsls r5, r3, #30 - 8013f24: 4606 mov r6, r0 - 8013f26: 460c mov r4, r1 - 8013f28: d507 bpl.n 8013f3a <__smakebuf_r+0x1c> - 8013f2a: f104 0347 add.w r3, r4, #71 @ 0x47 - 8013f2e: 6023 str r3, [r4, #0] - 8013f30: 6123 str r3, [r4, #16] - 8013f32: 2301 movs r3, #1 - 8013f34: 6163 str r3, [r4, #20] - 8013f36: b003 add sp, #12 - 8013f38: bdf0 pop {r4, r5, r6, r7, pc} - 8013f3a: 466a mov r2, sp - 8013f3c: ab01 add r3, sp, #4 - 8013f3e: f7ff ffc9 bl 8013ed4 <__swhatbuf_r> - 8013f42: 9f00 ldr r7, [sp, #0] - 8013f44: 4605 mov r5, r0 - 8013f46: 4639 mov r1, r7 - 8013f48: 4630 mov r0, r6 - 8013f4a: f7ff f96d bl 8013228 <_malloc_r> - 8013f4e: b948 cbnz r0, 8013f64 <__smakebuf_r+0x46> - 8013f50: f9b4 300c ldrsh.w r3, [r4, #12] - 8013f54: 059a lsls r2, r3, #22 - 8013f56: d4ee bmi.n 8013f36 <__smakebuf_r+0x18> - 8013f58: f023 0303 bic.w r3, r3, #3 - 8013f5c: f043 0302 orr.w r3, r3, #2 - 8013f60: 81a3 strh r3, [r4, #12] - 8013f62: e7e2 b.n 8013f2a <__smakebuf_r+0xc> - 8013f64: 89a3 ldrh r3, [r4, #12] - 8013f66: e9c4 0704 strd r0, r7, [r4, #16] - 8013f6a: f043 0380 orr.w r3, r3, #128 @ 0x80 - 8013f6e: 81a3 strh r3, [r4, #12] - 8013f70: 9b01 ldr r3, [sp, #4] - 8013f72: 6020 str r0, [r4, #0] - 8013f74: b15b cbz r3, 8013f8e <__smakebuf_r+0x70> - 8013f76: 4630 mov r0, r6 - 8013f78: f9b4 100e ldrsh.w r1, [r4, #14] - 8013f7c: f000 f81e bl 8013fbc <_isatty_r> - 8013f80: b128 cbz r0, 8013f8e <__smakebuf_r+0x70> - 8013f82: 89a3 ldrh r3, [r4, #12] - 8013f84: f023 0303 bic.w r3, r3, #3 - 8013f88: f043 0301 orr.w r3, r3, #1 - 8013f8c: 81a3 strh r3, [r4, #12] - 8013f8e: 89a3 ldrh r3, [r4, #12] - 8013f90: 431d orrs r5, r3 - 8013f92: 81a5 strh r5, [r4, #12] - 8013f94: e7cf b.n 8013f36 <__smakebuf_r+0x18> +08013f3a <__smakebuf_r>: + 8013f3a: 898b ldrh r3, [r1, #12] + 8013f3c: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} + 8013f3e: 079d lsls r5, r3, #30 + 8013f40: 4606 mov r6, r0 + 8013f42: 460c mov r4, r1 + 8013f44: d507 bpl.n 8013f56 <__smakebuf_r+0x1c> + 8013f46: f104 0347 add.w r3, r4, #71 @ 0x47 + 8013f4a: 6023 str r3, [r4, #0] + 8013f4c: 6123 str r3, [r4, #16] + 8013f4e: 2301 movs r3, #1 + 8013f50: 6163 str r3, [r4, #20] + 8013f52: b003 add sp, #12 + 8013f54: bdf0 pop {r4, r5, r6, r7, pc} + 8013f56: 466a mov r2, sp + 8013f58: ab01 add r3, sp, #4 + 8013f5a: f7ff ffc9 bl 8013ef0 <__swhatbuf_r> + 8013f5e: 9f00 ldr r7, [sp, #0] + 8013f60: 4605 mov r5, r0 + 8013f62: 4639 mov r1, r7 + 8013f64: 4630 mov r0, r6 + 8013f66: f7ff f96d bl 8013244 <_malloc_r> + 8013f6a: b948 cbnz r0, 8013f80 <__smakebuf_r+0x46> + 8013f6c: f9b4 300c ldrsh.w r3, [r4, #12] + 8013f70: 059a lsls r2, r3, #22 + 8013f72: d4ee bmi.n 8013f52 <__smakebuf_r+0x18> + 8013f74: f023 0303 bic.w r3, r3, #3 + 8013f78: f043 0302 orr.w r3, r3, #2 + 8013f7c: 81a3 strh r3, [r4, #12] + 8013f7e: e7e2 b.n 8013f46 <__smakebuf_r+0xc> + 8013f80: 89a3 ldrh r3, [r4, #12] + 8013f82: e9c4 0704 strd r0, r7, [r4, #16] + 8013f86: f043 0380 orr.w r3, r3, #128 @ 0x80 + 8013f8a: 81a3 strh r3, [r4, #12] + 8013f8c: 9b01 ldr r3, [sp, #4] + 8013f8e: 6020 str r0, [r4, #0] + 8013f90: b15b cbz r3, 8013faa <__smakebuf_r+0x70> + 8013f92: 4630 mov r0, r6 + 8013f94: f9b4 100e ldrsh.w r1, [r4, #14] + 8013f98: f000 f81e bl 8013fd8 <_isatty_r> + 8013f9c: b128 cbz r0, 8013faa <__smakebuf_r+0x70> + 8013f9e: 89a3 ldrh r3, [r4, #12] + 8013fa0: f023 0303 bic.w r3, r3, #3 + 8013fa4: f043 0301 orr.w r3, r3, #1 + 8013fa8: 81a3 strh r3, [r4, #12] + 8013faa: 89a3 ldrh r3, [r4, #12] + 8013fac: 431d orrs r5, r3 + 8013fae: 81a5 strh r5, [r4, #12] + 8013fb0: e7cf b.n 8013f52 <__smakebuf_r+0x18> ... -08013f98 <_fstat_r>: - 8013f98: b538 push {r3, r4, r5, lr} - 8013f9a: 2300 movs r3, #0 - 8013f9c: 4d06 ldr r5, [pc, #24] @ (8013fb8 <_fstat_r+0x20>) - 8013f9e: 4604 mov r4, r0 - 8013fa0: 4608 mov r0, r1 - 8013fa2: 4611 mov r1, r2 - 8013fa4: 602b str r3, [r5, #0] - 8013fa6: f7f9 f865 bl 800d074 <_fstat> - 8013faa: 1c43 adds r3, r0, #1 - 8013fac: d102 bne.n 8013fb4 <_fstat_r+0x1c> - 8013fae: 682b ldr r3, [r5, #0] - 8013fb0: b103 cbz r3, 8013fb4 <_fstat_r+0x1c> - 8013fb2: 6023 str r3, [r4, #0] - 8013fb4: bd38 pop {r3, r4, r5, pc} - 8013fb6: bf00 nop - 8013fb8: 200011b8 .word 0x200011b8 +08013fb4 <_fstat_r>: + 8013fb4: b538 push {r3, r4, r5, lr} + 8013fb6: 2300 movs r3, #0 + 8013fb8: 4d06 ldr r5, [pc, #24] @ (8013fd4 <_fstat_r+0x20>) + 8013fba: 4604 mov r4, r0 + 8013fbc: 4608 mov r0, r1 + 8013fbe: 4611 mov r1, r2 + 8013fc0: 602b str r3, [r5, #0] + 8013fc2: f7f9 f865 bl 800d090 <_fstat> + 8013fc6: 1c43 adds r3, r0, #1 + 8013fc8: d102 bne.n 8013fd0 <_fstat_r+0x1c> + 8013fca: 682b ldr r3, [r5, #0] + 8013fcc: b103 cbz r3, 8013fd0 <_fstat_r+0x1c> + 8013fce: 6023 str r3, [r4, #0] + 8013fd0: bd38 pop {r3, r4, r5, pc} + 8013fd2: bf00 nop + 8013fd4: 200011b8 .word 0x200011b8 -08013fbc <_isatty_r>: - 8013fbc: b538 push {r3, r4, r5, lr} - 8013fbe: 2300 movs r3, #0 - 8013fc0: 4d05 ldr r5, [pc, #20] @ (8013fd8 <_isatty_r+0x1c>) - 8013fc2: 4604 mov r4, r0 - 8013fc4: 4608 mov r0, r1 - 8013fc6: 602b str r3, [r5, #0] - 8013fc8: f7f9 f863 bl 800d092 <_isatty> - 8013fcc: 1c43 adds r3, r0, #1 - 8013fce: d102 bne.n 8013fd6 <_isatty_r+0x1a> - 8013fd0: 682b ldr r3, [r5, #0] - 8013fd2: b103 cbz r3, 8013fd6 <_isatty_r+0x1a> - 8013fd4: 6023 str r3, [r4, #0] - 8013fd6: bd38 pop {r3, r4, r5, pc} - 8013fd8: 200011b8 .word 0x200011b8 +08013fd8 <_isatty_r>: + 8013fd8: b538 push {r3, r4, r5, lr} + 8013fda: 2300 movs r3, #0 + 8013fdc: 4d05 ldr r5, [pc, #20] @ (8013ff4 <_isatty_r+0x1c>) + 8013fde: 4604 mov r4, r0 + 8013fe0: 4608 mov r0, r1 + 8013fe2: 602b str r3, [r5, #0] + 8013fe4: f7f9 f863 bl 800d0ae <_isatty> + 8013fe8: 1c43 adds r3, r0, #1 + 8013fea: d102 bne.n 8013ff2 <_isatty_r+0x1a> + 8013fec: 682b ldr r3, [r5, #0] + 8013fee: b103 cbz r3, 8013ff2 <_isatty_r+0x1a> + 8013ff0: 6023 str r3, [r4, #0] + 8013ff2: bd38 pop {r3, r4, r5, pc} + 8013ff4: 200011b8 .word 0x200011b8 -08013fdc <_malloc_usable_size_r>: - 8013fdc: f851 3c04 ldr.w r3, [r1, #-4] - 8013fe0: 1f18 subs r0, r3, #4 - 8013fe2: 2b00 cmp r3, #0 - 8013fe4: bfbc itt lt - 8013fe6: 580b ldrlt r3, [r1, r0] - 8013fe8: 18c0 addlt r0, r0, r3 - 8013fea: 4770 bx lr +08013ff8 <_malloc_usable_size_r>: + 8013ff8: f851 3c04 ldr.w r3, [r1, #-4] + 8013ffc: 1f18 subs r0, r3, #4 + 8013ffe: 2b00 cmp r3, #0 + 8014000: bfbc itt lt + 8014002: 580b ldrlt r3, [r1, r0] + 8014004: 18c0 addlt r0, r0, r3 + 8014006: 4770 bx lr -08013fec <_init>: - 8013fec: b5f8 push {r3, r4, r5, r6, r7, lr} - 8013fee: bf00 nop - 8013ff0: bcf8 pop {r3, r4, r5, r6, r7} - 8013ff2: bc08 pop {r3} - 8013ff4: 469e mov lr, r3 - 8013ff6: 4770 bx lr +08014008 <_init>: + 8014008: b5f8 push {r3, r4, r5, r6, r7, lr} + 801400a: bf00 nop + 801400c: bcf8 pop {r3, r4, r5, r6, r7} + 801400e: bc08 pop {r3} + 8014010: 469e mov lr, r3 + 8014012: 4770 bx lr -08013ff8 <_fini>: - 8013ff8: b5f8 push {r3, r4, r5, r6, r7, lr} - 8013ffa: bf00 nop - 8013ffc: bcf8 pop {r3, r4, r5, r6, r7} - 8013ffe: bc08 pop {r3} - 8014000: 469e mov lr, r3 - 8014002: 4770 bx lr +08014014 <_fini>: + 8014014: b5f8 push {r3, r4, r5, r6, r7, lr} + 8014016: bf00 nop + 8014018: bcf8 pop {r3, r4, r5, r6, r7} + 801401a: bc08 pop {r3} + 801401c: 469e mov lr, r3 + 801401e: 4770 bx lr diff --git a/Debug/CCSModuleSW30Web.srec b/Debug/CCSModuleSW30Web.srec index e8b115c..31d2dc5 100755 --- a/Debug/CCSModuleSW30Web.srec +++ b/Debug/CCSModuleSW30Web.srec @@ -1,25 +1,25 @@ S01800004343534D6F64756C65535733305765622E73726563A2 -S315080080000000012061D800082DCF000835CF0008F0 -S315080080103DCF000845CF00084DCF000800000000FE -S3150800802000000000000000000000000055CF000816 -S3150800803061CF0008000000006DCF000879CF000866 -S31508008040A9D80008A9D80008A9D80008A9D80008FE -S31508008050A9D80008A9D80008A9D80008A9D80008EE -S31508008060A9D80008A9D80008A9D80008A9D80008DE -S31508008070A9D80008A9D80008A9D80008A9D80008CE -S31508008080A9D80008A9D80008A9D80008A9D80008BE -S3150800809085CF0008A9D80008A9D80008A9D80008DB -S315080080A0A9D80008A9D80008A9D80008A9D800089E -S315080080B0A9D8000899CF0008A9D80008A9D80008A7 -S315080080C0A9D80008A9D80008A9D80008A9D800087E -S315080080D0A9D80008ADCF0008C1CF0008D5CF000841 -S315080080E0A9D80008A9D80008A9D8000800000000E7 +S31508008000000001207DD8000849CF000851CF00089C +S3150800801059CF000861CF000869CF000800000000AA +S3150800802000000000000000000000000071CF0008FA +S315080080307DCF00080000000089CF000895CF000812 +S31508008040C5D80008C5D80008C5D80008C5D800088E +S31508008050C5D80008C5D80008C5D80008C5D800087E +S31508008060C5D80008C5D80008C5D80008C5D800086E +S31508008070C5D80008C5D80008C5D80008C5D800085E +S31508008080C5D80008C5D80008C5D80008C5D800084E +S31508008090A1CF0008C5D80008C5D80008C5D800086B +S315080080A0C5D80008C5D80008C5D80008C5D800082E +S315080080B0C5D80008B5CF0008C5D80008C5D8000837 +S315080080C0C5D80008C5D80008C5D80008C5D800080E +S315080080D0C5D80008C9CF0008DDCF0008F1CF0008D1 +S315080080E0C5D80008C5D80008C5D800080000000093 S315080080F00000000000000000000000000000000072 -S315080081000000000000000000A9D80008A9D800084F -S31508008110A9D80008E9CF0008A9D80008A9D80008F6 -S31508008120A9D80008A9D80008A9D80008A9D800081D -S31508008130A9D80008A9D80008A9D80008FDCF0008C2 -S31508008140A9D8000811D00008A9D80008A9D800089D +S315080081000000000000000000C5D80008C5D8000817 +S31508008110C5D8000805D00008C5D80008C5D8000885 +S31508008120C5D80008C5D80008C5D80008C5D80008AD +S31508008130C5D80008C5D80008C5D8000819D0000851 +S31508008140C5D800082DD00008C5D80008C5D800082D S315080081500000000000000000000000000000000011 S315080081600000000000000000000000000000000001 S3150800817000000000000000000000000000000000F1 @@ -32,8 +32,8 @@ S315080081D00000000000000000000000000000000091 S309080081E05FF8E0F165 S315080081E810B5054C237833B9044B13B10448AFF3DB S315080081F800800123237010BDD8000020000000006D -S31508008208EC3F010808B5034B1BB103490348AFF314 -S31508008218008008BD00000000DC000020EC3F0108D3 +S315080082080840010808B5034B1BB103490348AFF3F7 +S31508008218008008BD00000000DC00002008400108B6 S3150800822881F0004102E000BF83F0004330B54FEA11 S3150800823841044FEA430594EA050F08BF90EA020F7E S315080082481FBF54EA000C55EA020C7FEA645C7FEA11 @@ -316,9 +316,9 @@ S31508009388704700BF80B584B000AF3B1D00221A6045 S315080093985A609A60184B194A1A60174B00229A6045 S315080093A8154B00221A73144B00221A75124B4FF4E8 S315080093B86022DA61104B00225A600F4B01221A61AB -S315080093C80D4804F0F5FA0346002B01D001F012FB0C +S315080093C80D4804F003FB0346002B01D001F012FBFD S315080093D808237B600123BB600023FB603B1D1946FD -S315080093E8054804F0A9FD0346002B01D001F002FB4D +S315080093E8054804F0B7FD0346002B01D001F002FB3F S315080093F800BF1037BD4680BDF40000200024014098 S3150800940880B58AB000AF786007F1180300221A60A1 S315080094185A609A60DA607B681B681F4A934237D19C @@ -327,21 +327,21 @@ S3150800943803F400737B617B69184B9B69174A43F0F1 S3150800944804039361154B9B6903F004033B613B696D S31508009458124B9B69114A43F0080393610F4B9B69AA S3150800946803F00803FB60FB681823BB610323FB6151 -S3150800947807F1180319460A4806F0E2F80323BB6100 -S315080094880323FB6107F118031946064806F0D8F8BE +S3150800947807F1180319460A4806F0F0F80323BB61F2 +S315080094880323FB6107F118031946064806F0E6F8B0 S3150800949800BF2837BD4680BD0024014000100240A1 S315080094A800080140000C014080B582B000AF0346B1 S315080094B80A46FB711346BB71FB79072B50D801A2E4 S315080094C852F823F0ED940008FD9400080D9500085D S315080094D81D9500082D9500083D9500084B95000830 S315080094E85B950008BB791A464FF48071214806F047 -S315080094F842FA36E0BB791A464FF400711D4806F061 -S315080095083AFA2EE0BB791A464FF48061194806F0F4 -S3150800951832FA26E0BB791A464FF40061154806F078 -S315080095282AFA1EE0BB791A464FF48051114806F00C -S3150800953822FA16E0BB791A4608210F4806F01BFAE4 -S315080095480FE0BB791A464FF400410C4806F013FAA7 -S3150800955807E0BB791A460821094806F00CFA00E024 +S315080094F850FA36E0BB791A464FF400711D4806F053 +S3150800950848FA2EE0BB791A464FF48061194806F0E6 +S3150800951840FA26E0BB791A464FF40061154806F06A +S3150800952838FA1EE0BB791A464FF48051114806F0FE +S3150800953830FA16E0BB791A4608210F4806F029FAC8 +S315080095480FE0BB791A464FF400410C4806F021FA99 +S3150800955807E0BB791A460821094806F01AFA00E016 S3150800956800BFFB790749BA79CA5400BF0837BD4610 S3150800957880BD00BF001801400010014000080140E6 S31508009588001401402401002080B483B000AF0346CC @@ -350,19 +350,19 @@ S315080095A8704700BF2401002080B582B000AF03468B S315080095B8FB71FB79062B3BD801A252F823F000BFB2 S315080095C8E5950008F1950008FD9500080996000834 S315080095D815960008219600082D96000802211748B6 -S315080095E806F0B2F9034624E00421144806F0ACF95B -S315080095F803461EE08021124806F0A6F9034618E03D -S315080096088021104806F0A0F9034612E010210E48FA -S3150800961806F09AF903460CE008210B4806F094F977 -S31508009628034606E00221064806F08EF9034600E0DE +S315080095E806F0C0F9034624E00421144806F0BAF93F +S315080095F803461EE08021124806F0B4F9034618E02F +S315080096088021104806F0AEF9034612E010210E48EC +S3150800961806F0A8F903460CE008210B4806F0A2F95B +S31508009628034606E00221064806F09CF9034600E0D0 S31508009638002318460837BD4680BD00BF000801400C S315080096480018014000140140000C014080B500AF25 -S31508009658154804F005FE00210020FFF725FF002124 +S31508009658154804F013FE00210020FFF725FF002116 S315080096680120FFF721FF00210220FFF71DFF002137 S315080096780320FFF719FF00210420FFF715FF012132 S315080096880520FFF711FF01210620FFF70DFF00212E -S315080096980720FFF709FF054803F086FB044803F08F -S315080096A883FB00BF80BD00BFF40000203001002006 +S315080096980720FFF709FF054803F094FB044803F081 +S315080096A891FB00BF80BD00BFF400002030010020F8 S315080096B85801002090B587B000AF78600C4B7B61E5 S315080096C80C4B3B6179697868FFF7CCF903461C4669 S315080096D839697869FFF7D0FA034619462046FFF72D @@ -379,10 +379,10 @@ S315080097783B613B6918461837BD46B0BDAFF3008054 S315080097880000000000FEAF40000080BF80B588B02A S3150800979800AF0346FB7100F09BF8FB79002B03D05A S315080097A8082000F053F802E0092000F04FF8224894 -S315080097B804F0D6F94FF0FF311F4804F0ABFA1E48FB -S315080097C804F0AEFBF8611C4804F078FAFB79002B24 +S315080097B804F0E4F94FF0FF311F4804F0B9FA1E48DF +S315080097C804F0BCFBF8611C4804F086FAFB79002B08 S315080097D801D0012200E0002213469B001344DB0057 -S315080097E8164A1344FA691146184603F002FBB8618B +S315080097E8164A1344FA691146184603F010FBB8617D S315080097F8BB69B3F57A6F03D900F076F8142317E036 S315080098080F4B7B610F4B3B610F4BFB60FB683A695B S315080098187969B869FFF770FF03461846FFF74AFFE4 @@ -390,7 +390,7 @@ S31508009828B86000F061F8B868FFF7ECFB03461BB2AE S3150800983818462037BD4680BDF400002030010020B8 S31508009848333353400000A04000007A4480B586B000 S3150800985800AF78607B68FB6001233B6103237B616B -S3150800986807F10C031946064804F066FB0346002B65 +S3150800986807F10C031946064804F074FB0346002B57 S3150800987801D001F0BFF800BF1837BD4680BD00BF4C S31508009888F400002080B483B000AFEFF310833B6088 S315080098983B687B6072B600BF0C4B1B78DBB2002BAB @@ -407,13 +407,13 @@ S315080099389A60134B0022DA60114B4FF460221A61C1 S315080099480F4B4FF480125A610D4B00221A760C4BB6 S3150800995801225A760A4B01229A76094B0122DA76AF S31508009968074B00221A77064B01225A77044804F057 -S3150800997825FD0346002B01D001F03CF800BF80BD49 +S3150800997833FD0346002B01D001F03CF800BF80BD3B S31508009988800100200064004080B500AF174B184AD4 S315080099981A60164B10225A60144B00229A60134B11 S315080099A80022DA60114B4FF460221A610F4B4FF40C S315080099B880125A610D4B00221A760C4B01225A76F0 S315080099C80A4B01229A76094B0122DA76074B0022BE -S315080099D81A77064B01225A77044804F0EFFC034627 +S315080099D81A77064B01225A77044804F0FDFC034619 S315080099E8002B01D001F006F800BF80BDA8010020B1 S315080099F80068004080B58EB000AF786007F1200394 S31508009A0800221A605A609A60DA607B681B68614AA5 @@ -422,12 +422,12 @@ S31508009A281B68012B0BD15D4BDB695C4A43F000735D S31508009A38D3615A4BDB6903F00073FB61FB69574B2B S31508009A489B69564A43F020039361544B9B6903F07C S31508009A582003BB61BB6901233B6200237B620023A9 -S31508009A68BB6207F1200319464D4805F0E9FD0223B4 +S31508009A68BB6207F1200319464D4805F0F7FD0223A6 S31508009A783B6202237B620323FB6207F12003194634 -S31508009A88474805F0DDFD474B5B683B633B6B23F4B2 +S31508009A88474805F0EBFD474B5B683B633B6B23F4A4 S31508009A98C0433B633B6B43F0E0633B633B6B43F478 S31508009AA8C0433B633F4A3B6B5360002200211420A6 -S31508009AB805F031FC142005F04AFC67E07B681B6852 +S31508009AB805F03FFC142005F058FC67E07B681B6836 S31508009AC8394A934262D1354BDB69344A43F080639D S31508009AD8D361324BDB6903F080637B617B692E4B6C S31508009AE81B6801332C4A13602B4B1B68012B0BD1BF @@ -435,12 +435,12 @@ S31508009AF82A4BDB69294A43F00073D361274BDB6994 S31508009B0803F000733B613B69244B9B69234A43F086 S31508009B1808039361214B9B6903F00803FB60FB6804 S31508009B2820233B6200237B620023BB6207F12003E4 -S31508009B3819461E4805F084FD40233B6202237B62D2 -S31508009B480323FB6207F120031946184805F078FD38 +S31508009B3819461E4805F092FD40233B6202237B62C4 +S31508009B480323FB6207F120031946184805F086FD2A S31508009B58144B5B687B637B6B43F0E0637B637B6BCF S31508009B6843F480037B630F4A7B6B53600022002112 -S31508009B783F2005F0D0FB3F2005F0E9FB0022002135 -S31508009B88412005F0C8FB412005F0E1FB00BF383746 +S31508009B783F2005F0DEFB3F2005F0F7FB0022002119 +S31508009B88412005F0D6FB412005F0EFFB00BF38372A S31508009B98BD4680BD00640040D00100200010024088 S31508009BA8001401400000014000680040000C014014 S31508009BB880B400AF084B00221A70074B00225A706F @@ -452,8 +452,8 @@ S31508009C0803D0124B07225A770EE0124B5B7B002BC8 S31508009C1803D00E4B0A225A7706E00C4B9B7F002B83 S31508009C2802D10A4B00225A77084B5B7F0021184657 S31508009C3800F078FD0346002B06D0044B5B7F1A46D6 -S31508009C480021054809F066F900BF80BDD401002047 -S31508009C58F4010020240700200440010880B500AF5D +S31508009C480021054809F074F900BF80BDD401002039 +S31508009C58F4010020240700202040010880B500AF41 S31508009C680F4B5B7F002B03D0022000F01FF816E08D S31508009C780C4B1B78002B07D10B4B1B78002B03D0FA S31508009C88012000F013F80AE0064B1B78022B06D1D0 @@ -476,13 +476,13 @@ S31508009D881B780B2B03D11A49072000F073FB0B4BE2 S31508009D981B780C2B03D11749072000F06BFB074BE0 S31508009DA81B780D2B03D11449072000F063FB044ADE S31508009DB8FB7953700837BD4680BD00BFF301002004 -S31508009DC8D4010020184001082C4001084440010825 -S31508009DD85C4001087440010890400108B040010839 -S31508009DE8D0400108F040010808410108204101084F -S31508009DF838410108544101086C41010880B584B00E +S31508009DC8D4010020344001084840010860400108D1 +S31508009DD87840010890400108AC400108CC400108C9 +S31508009DE8EC4001080C410108244101083C410108DE +S31508009DF854410108704101088841010880B584B0BA S31508009E0800AF78600023FB607868FFF71FFD0948F4 -S31508009E1803F0A6FE0A21074803F07CFF054804F06C -S31508009E287FF8F860034803F049FFFB6818461037BF +S31508009E1803F0B4FE0A21074803F08AFF054804F050 +S31508009E288DF8F860034803F057FFFB6818461037A3 S31508009E38BD4680BDF400002080B485B000AFF86048 S31508009E48B9607A60FA68BB689A4205DBFA687B6883 S31508009E589A4201DC012300E0002318461437BD4660 @@ -525,15 +525,15 @@ S3150800A098D31A7B607B6818461037BD4680BD00BF5B S3150800A0A8010110007FE0077E80B500AF0E4B1B68E4 S3150800A0B89F229A620C4B1B6840F2C112DA620A4B5D S3150800A0C81B684FF4E1729A63074B1B6840F2C71284 -S3150800A0D85A630421044806F079FF0021024806F06D -S3150800A0E827FE00BF80BD00BFC80E002080B485B01B +S3150800A0D85A630421044806F087FF0021024806F05F +S3150800A0E835FE00BF80BD00BFC80E002080B485B00D S3150800A0F800AF0346FB71FB794FF4E17202FB03F3E9 S3150800A1080B4A82FB03125211DB17D31AFB60094A62 S3150800A118FB791370084B1B68FA689A63064B1B6829 S3150800A12801225A6300BF1437BD4680BC704700BF7A S3150800A1381F85EB5101020020C80E002080B400AF2D S3150800A148024B1B781846BD4680BC704701020020A2 -S3150800A15890B585B000AF224B1B68FB6003F0FAFB8D +S3150800A15890B585B000AF224B1B68FB6003F008FC7E S3150800A168B860204B1B78062B02D01E4B1B7832E0B2 S3150800A1781D4B1B781946F868FFF7A2FE0346FB71C4 S3150800A188194B1B78FA799A4207D1174B1A78174B45 @@ -549,7 +549,7 @@ S3150800A21839FB0346002B0CD0FFF714FF0346084A00 S3150800A2281360074B1B681846FFF71CFEFFF75CFB15 S3150800A23800E000BF0837BD4680BD00BF00040040E7 S3150800A248F801002080B500AF064B074A1A60054892 -S3150800A25805F097F80346002B01D000F0CBFB00BFAA +S3150800A25805F0A5F80346002B01D000F0CBFB00BF9C S3150800A26880BD00BF080200200030024080B485B0D7 S3150800A27800AF78607B681B68094A93420BD1094B83 S3150800A2885B69084A43F040035361064B5B6903F070 @@ -577,15 +577,15 @@ S3150800A3D80434FB80FB88802B01D98023FB80244B1F S3150800A3E8B3F802349BB2C3F58063BB80FA88BB888E S3150800A3F89A4201D9BB88FB801D4BB3F804349BB23B S3150800A408FA889A420CD11A4BB3F802349BB21A4608 -S3150800A418174B1344F9885022184602F0D7F90BE06F +S3150800A418174B1344F9885022184602F0E5F90BE061 S3150800A428134BB3F802349BB21A46114B1344F988F6 -S3150800A4385122184602F0CAF90D4BB3F802349AB2FB +S3150800A4385122184602F0D8F90D4BB3F802349AB2ED S3150800A448FB8813449BB2C3F309039AB2084BA3F8D3 S3150800A4580224074BB3F804349AB2FB88D31A9AB283 S3150800A468034BA3F8042462B600BF0837BD4680BD6F S3150800A478100200200EB480B585B000AF0346FB7104 S3150800A488154AFB79137007F12003BB60BB68FA69A4 -S3150800A4987E21124808F0C2FDF860FB68002B01DA35 +S3150800A4987E21124808F0D0FDF860FB68002B01DA27 S3150800A4A8FB6812E0FB687D2B01DD7E23FB60FB68F9 S3150800A4B80133094A0021D154FB689BB202339BB287 S3150800A4C819460548FFF702FFFB6818461437BD46C4 @@ -599,28 +599,28 @@ S3150800A5386E4B9B6903F00803BB60BB686B4B9B6952 S3150800A5486A4A43F040039361684B9B6903F04003EA S3150800A5587B607B68654B9B69644A43F0200393617B S3150800A568624B9B6903F020033B603B680022382155 -S3150800A5785F4805F000FA00224FF4F8515D4805F0E7 -S3150800A588FAF900224FF400415B4805F0F4F9002275 -S3150800A59818215A4805F0EFF900228021584805F095 -S3150800A5A8EAF938237B610123BB610023FB61022397 -S3150800A5B83B6207F1140319464D4805F041F8022392 +S3150800A5785F4805F00EFA00224FF4F8515D4805F0D9 +S3150800A58808FA00224FF400415B4805F002FA002257 +S3150800A59818215A4805F0FDF900228021584805F087 +S3150800A5A8F8F938237B610123BB610023FB61022389 +S3150800A5B83B6207F1140319464D4805F04FF8022384 S3150800A5C87B610023BB610023FB6107F1140319466D -S3150800A5D8494805F035F804237B610023BB6102234B -S3150800A5E8FB6107F114031946434805F029F844F2B4 +S3150800A5D8494805F043F804237B610023BB6102233D +S3150800A5E8FB6107F114031946434805F037F844F2A6 S3150800A5F882037B610023BB610023FB6107F1140317 -S3150800A60819463C4805F01CF84FF4F8537B610123BA +S3150800A60819463C4805F02AF84FF4F8537B610123AC S3150800A618BB610023FB6102233B6207F11403194659 -S3150800A628344805F00DF84FF400437B610123BB61FC +S3150800A628344805F01BF84FF400437B610123BB61EE S3150800A6380023FB6102233B6207F1140319462E48DF -S3150800A64804F0FEFF18237B610123BB610023FB612D -S3150800A65802233B6207F114031946284804F0F0FF61 +S3150800A64805F00CF818237B610123BB610023FB6125 +S3150800A65802233B6207F114031946284804F0FEFF53 S3150800A66880237B610023BB610023FB6107F1140388 -S3150800A6781946224804F0E4FF18237B610023BB61CE -S3150800A6880023FB6107F1140319461D4804F0D8FF97 +S3150800A6781946224804F0F2FF18237B610023BB61C0 +S3150800A6880023FB6107F1140319461D4804F0E6FF89 S3150800A69880237B610123BB610023FB6102233B62A4 -S3150800A6A807F114031946164804F0CAFF4FF4407315 +S3150800A6A807F114031946164804F0D8FF4FF4407307 S3150800A6B87B611223BB6103233B6207F11403194626 -S3150800A6C80F4804F0BDFF0F4B5B687B627B6A43F05B +S3150800A6C80F4804F0CBFF0F4B5B687B627B6A43F04D S3150800A6D8E0637B627B6A43F002037B62094A7B6A12 S3150800A6E8536000BF2837BD4680BD00BF0010024032 S3150800A6F800100140001801400008014000140140FC @@ -631,24 +631,24 @@ S3150800A7381346BB71BB791F2B01D900230EE00023F2 S3150800A748FB73BB79084AD35CFA799A4201D001238C S3150800A758FB73BB790449FA79CA54FB7B1846143744 S3150800A768BD4680BC704700BF9806002080B584B0F7 -S3150800A77800AF786003F0EEF8B8607B68FB60FB68AA +S3150800A77800AF786003F0FCF8B8607B68FB60FB689C S3150800A788B3F1FF3F0ED00E4B1B781A46FB681344ED S3150800A798FB6007E001F02CF9FFF760FA01F010F802 -S3150800A7A801F09AFE03F0D6F80246BB68D31AFA688F +S3150800A7A801F0A8FE03F0E4F80246BB68D31AFA6873 S3150800A7B89A42EFD800BF00BF1037BD4680BD00BF1C S3150800A7C87400002080B500AF0320FEF7EDFE0346AF S3150800A7D8002B02D1024B01221A7000BF80BD00BFB0 -S3150800A7E8D401002080B500AF0B4804F007F8FFF73E -S3150800A7F895F8094803F0BEFF0346002B01D000F080 -S3150800A808F9F80221044804F066FA0346002B01D039 +S3150800A7E8D401002080B500AF0B4804F015F8FFF730 +S3150800A7F895F8094803F0CCFF0346002B01D000F072 +S3150800A808F9F80221044804F074FA0346002B01D02B S3150800A81800F0F0F800BF80BD8001002080B582B046 -S3150800A82802AFFFF771FF03F03DF805F0C9F800F02D +S3150800A82802AFFFF771FF03F04BF805F0D7F800F011 S3150800A83871F8FFF755FEFEF7A5FDFFF76FF8FFF766 -S3150800A848A3F801F05BF802F0E9FC02F067FEFFF7EF -S3150800A858F9FC02F00FFE02F037FE02F089FE02F05C -S3150800A86867FCFEF7F3FE00F08BFF4FF4967003F0D3 -S3150800A8787BF801F0CDFA01F01BFE21490720FFF706 -S3150800A888F9FD01F0F1FD1F4B1B889BB21A461E49BC +S3150800A848A3F801F05BF802F0F7FC02F075FEFFF7D3 +S3150800A858F9FC02F01DFE02F045FE02F097FE02F032 +S3150800A86875FCFEF7F3FE00F08BFF4FF4967003F0C5 +S3150800A87889F801F0DBFA01F029FE21490720FFF7DC +S3150800A888F9FD01F0FFFD1F4B1B889BB21A461E49AE S3150800A8980720FFF7EFFD1B4B9B781A461B49072035 S3150800A8A8FFF7E8FD174B9B889BB21A46154BDB88C2 S3150800A8B89BB21946134B1B899BB200930B46144946 @@ -656,25 +656,25 @@ S3150800A8C80720FFF7D7FDFFF78DFF00F07DFAFFF7A2 S3150800A8D86FF900F087FB00F025FC0A20FFF746FF12 S3150800A8E800F08EF8FFF77AF900F010FE0A20FFF755 S3150800A8F83DFFFFF767FF3220FFF738FF00BFE8E79D -S3150800A908B8410108B80E0020CC410108E041010809 -S3150800A918F441010880B59CB000AF07F13803382226 -S3150800A9280021184608F088FB07F1240300221A605C +S3150800A908D4410108B80E0020E8410108FC410108B5 +S3150800A9181042010880B59CB000AF07F13803382209 +S3150800A9280021184608F096FB07F1240300221A604E S3150800A9385A609A60DA601A613B1D2022002118467F -S3150800A94808F07AFB0523BB634FF480333B64042382 +S3150800A94808F088FB0523BB634FF480333B64042374 S3150800A9587B640123BB640123FB644FF48033FB63E8 S3150800A9680223BB654FF48033FB654FF4E0133B665F S3150800A97802237B664FF4C063BB664023FB6607F178 -S3150800A9883803184605F0ECF80346002B01D000F00A +S3150800A9883803184605F0FAF80346002B01D000F0FC S3150800A99831F80F237B620223BB620023FB624FF464 S3150800A9A880633B6300237B6307F12403022118466F -S3150800A9B805F0ECFB0346002B01D000F01BF8032337 +S3150800A9B805F0FAFB0346002B01D000F01BF8032329 S3150800A9C87B604FF48073BB604FF40043FB603B1D0C -S3150800A9D8184605F0D1FD0346002B01D000F00AF809 +S3150800A9D8184605F0DFFD0346002B01D000F00AF8FB S3150800A9E8034B01221A6000BF7037BD4680BD00BF01 S3150800A9F87000424280B400AF72B600BF00BFFDE7E0 S3150800AA082DE9B04384B000AF2E4B00221A712E4BA5 S3150800AA185B78082B04D12B4B012283F8242003E00A -S3150800AA28284B002283F8242002F094FFF860254B6F +S3150800AA28284B002283F8242002F0A2FFF860254B61 S3150800AA389B68FA68D31ABB60224AFB689360224B64 S3150800AA48D3F80330BA6802FB03F3204AA2FB0323B0 S3150800AA589B097B601B4BD3E90423796800200C46C5 @@ -686,13 +686,13 @@ S3150800AAA80022DA7100221A7200225A7200229A7259 S3150800AAB8044B9B69034AD36100BF1037BD46BDE8FE S3150800AAC8B08300BFB8060020D4010020D34D621019 S3150800AAD8C5B3A29180B582B000AF0346FB71064A9A -S3150800AAE8FB79D37102F036FF0346034A136100BFA8 +S3150800AAE8FB79D37102F044FF0346034A136100BF9A S3150800AAF80837BD4680BD00BF2407002080B500AFD3 -S3150800AB0802F028FF0246024B1B69D31A184680BD75 +S3150800AB0802F036FF0246024B1B69D31A184680BD67 S3150800AB182407002080B584B000AF7860884B894A3E -S3150800AB280121786803F0B6FF0346002B40F004813C +S3150800AB280121786803F0C4FF0346002B40F004812E S3150800AB38844B5B68BB603B7A002B40F0FC8002F0D4 -S3150800AB4809FF0346804A1360BB7A03F03F03DBB26A +S3150800AB4817FF0346804A1360BB7A03F03F03DBB25C S3150800AB58022B05D17D4B7A4A92E8030083E8030065 S3150800AB68BB7A03F03F03DBB2042B19D1784B744A3E S3150800AB7892E8030083E80300754B1B791A46754B60 @@ -730,23 +730,23 @@ S3150800AD6814070020D34D62101F85EB51D40100202B S3150800AD786766666680B58AB000AF0E237B610023D6 S3150800AD88BB610123FB6100233B6000237B60002332 S3150800AD98BB600023FB6000233B6101233B62012360 -S3150800ADA83B610E237B623B461946064803F002FCC4 +S3150800ADA83B610E237B623B461946064803F010FCB6 S3150800ADB80346002B01D0FFF71DFE00BF2837BD4606 S3150800ADC880BD00BFA801002080B500AF134803F076 -S3150800ADD815FDFEF7D9FDFFF7CDFF104803F0CAFCAD -S3150800ADE810210E4803F077FF242200210C4808F0AA -S3150800ADF823F90B4B0022DA7102F0ACFD0346084A28 +S3150800ADD823FDFEF7D9FDFFF7CDFF104803F0D8FC91 +S3150800ADE810210E4803F085FF242200210C4808F09C +S3150800ADF831F90B4B0022DA7102F0BAFD0346084A0C S3150800AE081361074B47F230525A61054B00221A76EE S3150800AE180021002000F006F800BF80BDA801002028 S3150800AE282407002080B584B000AF03460A46FB71A4 S3150800AE381346BB7107F1080308220021184608F0D3 -S3150800AE48FBF8FB79002B15D10D4B1B7A002B13D079 +S3150800AE4809F9FB79002B15D10D4B1B7A002B13D06A S3150800AE58BB79002B0CBF01230023DBB23B72F979BF S3150800AE6807F108031A22F02000F066F81420FFF705 S3150800AE787DFC02E000BF00E000BF1037BD4680BD7C S3150800AE882407002080B586B000AF0346FB710B4641 S3150800AE98BB8013467B8007F1080308220021184661 -S3150800AEA808F0CAF8FB79002B40D1BB88952B01D846 +S3150800AEA808F0D8F8FB79002B40D1BB88952B01D838 S3150800AEB89623BB801F4B1B7E002B06D1BB88B3F598 S3150800AEC8FA7F02D340F2F313BB807B88642202FB25 S3150800AED803F37B61BB884FF47A7202FB03F33B6189 @@ -761,8 +761,8 @@ S3150800AF582830BB7987F829307B7903F03F03DAB2C2 S3150800AF6897F82A3062F3050387F82A307B8D0A2278 S3150800AF7862F389137B850A2387F82F30BB6A7B61BE S3150800AF880023FB610423BB6108233B621EE01448C7 -S3150800AF9803F04CFD0346002B0ED007F10C0307F10E -S3150800AFA810013A680E4803F072FC034687F82E30FB +S3150800AF9803F05AFD0346002B0ED007F10C0307F100 +S3150800AFA810013A680E4803F080FC034687F82E30ED S3150800AFB897F82E30002B0ED00120FFF7D7FB97F90C S3150800AFC82F30DBB2013BDBB287F82F3097F92F30E9 S3150800AFD8002BDCDC00E000BF3037BD4680BD00BF73 @@ -786,7 +786,7 @@ S3150800B0E80C4AB2F8112092B219460020FFF7CAFE98 S3150800B0F81420FFF73BFB074BB3F813309BB2B3F5A5 S3150800B108F57F02D9054B01221A7600BF0837BD46D6 S3150800B11880BD00BFD4010020CDCCCCCC24070020AC -S3150800B1286766666698B500AF02F014FC0246B44B2B +S3150800B1286766666698B500AF02F022FC0246B44B1D S3150800B1381B68D31AB3F5FA7F20D9B24B00221A72C4 S3150800B148B04B00229A72B04B00221A71AE4B0022FD S3150800B1581A72AD4B0022DA71AB4B00229A71AB4BCF @@ -795,8 +795,8 @@ S3150800B178A74B0022DA60A64B00229A60A14B1B7ADD S3150800B188002B03D09F4B1B78002B0CD1A14B002218 S3150800B198DA7400221A759F4B00225A7500229A758E S3150800B1A89C4B00221A769B4B9B7F002B0CD00121C7 -S3150800B1B80420FEF779F902F0CDFB0346964A136098 -S3150800B1C8904B01221A7010E002F0C4FB0246924B1B +S3150800B1B80420FEF779F902F0DBFB0346964A13608A +S3150800B1C8904B01221A7010E002F0D2FB0246924B0D S3150800B1D81B68D31A4EF66022934206D9002104202A S3150800B1E8FEF762F9874B00221A700520FEF7DCF98C S3150800B1F803461A46834BDA72824B1B7A002B07D012 @@ -814,7 +814,7 @@ S3150800B2A8584B00221A7600210320FEF7FDF8554B65 S3150800B2B85B7A002B03D10020FFF70CFC1CE1554BE9 S3150800B2C8DB7D002B00F0098101210020FFF7AAFD8C S3150800B2D80320FFF7FFFB00E14A4B9B7A002B0CD0B3 -S3150800B2E8484B5B7A002B08D002F034FB03464B4ADE +S3150800B2E8484B5B7A002B08D002F042FB03464B4AD0 S3150800B2F813600420FFF7EEFBF1E0FFF7FFFB0346B8 S3150800B30842F21072934240F2EA803E4B01225A7387 S3150800B318404B0A225A770020FFF7DCFB40490420F5 @@ -825,16 +825,16 @@ S3150800B3581A73304B07225A770620FFF7BBFB314989 S3150800B3680420FFF787F8BCE02A4BDB7D002B03D0C7 S3150800B378244B5B7A002B03D10620FFF7ABFBBBE017 S3150800B3880520FEF711F903461C460320FEF7FCF8CC -S3150800B39803469C4217D002F0DDFA0246224B1B6888 +S3150800B39803469C4217D002F0EBFA0246224B1B687A S3150800B3A8D31AB3F57A7F40F29E801A4B07225A774A S3150800B3B8144B01221A730620FFF78CFB194904203F -S3150800B3C8FFF758F88FE002F0C5FA0346164A1360E5 +S3150800B3C8FFF758F88FE002F0D3FA0346164A1360D7 S3150800B3D889E0104B00225A7400229A740D4BB3F870 S3150800B3E815309BB21D2B06D9FFF788FB034641F299 S3150800B3F88832934279D90820FFF76CFB75E000BFBD S3150800B4084807002024070020EC060020F80600203C S3150800B41814070020D40100207007002074070020B4 -S3150800B4280C4201081C420108780700200021032065 +S3150800B428284201083842010878070020002103202D S3150800B438FEF73AF8314BDB7A002B07D100210020BA S3150800B448FFF7F0FC0720FFF745FB50E0FFF756FB30 S3150800B4580346B3F57A7F4AD9284B01221A73284B33 @@ -848,7 +848,7 @@ S3150800B4C819D90220FFF706FB15E00020FFF702FB53 S3150800B4D812E000BF10E000BF0EE000BF0CE000BF9E S3150800B4E80AE000BF08E000BF06E000BF04E000BFAE S3150800B4F802E000BF00E000BF00BF98BD2407002097 -S3150800B508D40100201C4201083C42010880B500AF5E +S3150800B508D4010020384201085842010880B500AF26 S3150800B518344B5B7F002B03D0334800F01FF95FE0FC S3150800B528304B5B780D2B57D801A252F823F000BF91 S3150800B53871B5000879B5000881B5000889B500080D @@ -889,11 +889,11 @@ S3150800B758704700BF81808080100F002080B483B0B6 S3150800B76800AF7860054B7A681068516803C3128978 S3150800B7781A8000BF0C37BD4680BC70478407002076 S3150800B78880B582B000AF00233B7100237B7100238C -S3150800B798BB710421094805F019FC0821074805F07A -S3150800B7A815FC0C21054805F011FC3B1D1846FFF74A +S3150800B798BB710421094805F027FC0821074805F06C +S3150800B7A823FC0C21054805F01FFC3B1D1846FFF72E S3150800B7B897FF00BF0837BD4680BD00BF100F0020A1 -S3150800B7C880B582B002AF02F0C5F80246464B1B6840 -S3150800B7D8D31A142B40F2858002F0BCF80346424A75 +S3150800B7C880B582B002AF02F0D3F80246464B1B6832 +S3150800B7D8D31A142B40F2858002F0CAF80346424A67 S3150800B7E81360424B5B8801339AB2404B5A803F4BF1 S3150800B7F81B78032B67D801A252F823F015B800085E S3150800B80847B8000873B80008A5B80008374B5A881F @@ -913,10 +913,10 @@ S3150800B8D804E000BF02E000BF00E000BF0548FFF72C S3150800B8E8FFFE00BFBD4680BD900700207C070020EC S3150800B8F884070020800700208B07002080B500AF4A S3150800B9080A4B0B4A1A60094B4FF0FF325A60074B2D -S3150800B9184FF480729A60054805F0B2F80346002B82 +S3150800B9184FF480729A60054805F0C0F80346002B74 S3150800B92801D0FFF767F800BF80BD00BF9407002065 S3150800B9380028004080B584B000AF78607B681B6833 -S3150800B9480B4A934210D104F02FF80A4BDB69094ACF +S3150800B9480B4A934210D104F03DF80A4BDB69094AC1 S3150800B95843F00063D361074BDB6903F00063FB60C0 S3150800B968FB68054B01221A6000BF1037BD4680BD2B S3150800B97800280040001002403C04424280B400AF50 @@ -925,2243 +925,2245 @@ S3150800B998044B1343CB60BFF34F8F00BF00BFFDE7CF S3150800B9A800ED00E00400FA0580B582B000AF7860C3 S3150800B9B80B467B807B680B4A93420FD10A4B0022C1 S3150800B9C81A707B88002B0AD07B88B3F5807F06D847 -S3150800B9D87B881946054800F0D7FC00E000BF083701 +S3150800B9D87B881946054800F0E5FC00E000BF0837F3 S3150800B9E8BD4680BD30100020CC090020CC070020B9 -S3150800B9F880B500AFA64B1B78002B11D1A54806F0D9 -S3150800BA088EFE0346202B0BD14FF48072A249A1481B -S3150800BA1806F066FA0346002B02D19D4B01221A70DE -S3150800BA28FEF796FB03461A469C4B1A709C4B1B78E6 -S3150800BA38002B03D09A4B1A789A4B1A7001F08AFF92 -S3150800BA480246994B1B68D31A0A2B53D901F082FF71 -S3150800BA580246964B1B68D31AC72B06D900F00EFB6D -S3150800BA6801F078FF0346914A1360914B1B78002B27 -S3150800BA7808D090490420FEF7FDFC00F0A0FA8C4B8C -S3150800BA8800221A70864B1B78012B03D0844B5B7FE8 -S3150800BA98002B13D001F05EFF0246874B1B68D31AAA -S3150800BAA8B3F57A7F0AD901F055FF0346824A13602F -S3150800BAB882490520FEF7DEFC00F081FA804B1B78E8 -S3150800BAC80C2B03D07E4B1B780B2B13D101F042FFAE -S3150800BAD80246794B1B68D31AB3F57A7F0AD901F05F -S3150800BAE839FF0346744A136076490520FEF7C2FCF7 -S3150800BAF800F065FA744B1B78042B00F2F88001A253 -S3150800BB0852F823F021BB000841BB000885BB000892 -S3150800BB18C1BB000811BC000800210520FDF7C4FCBC -S3150800BB280220FEF7C3F85E4B5B7F002B40F0A78028 -S3150800BB38654B01221A70A2E001210520FDF7B4FC25 -S3150800BB480120FEF7B3F8554B1B78012B03D0534B4E -S3150800BB581B78022B02D15C4B02221A70504B5B7F72 -S3150800BB68002B00F08E804E4B5B7F1A4657490420FF -S3150800BB78FEF780FC544B00221A7082E0012105204A -S3150800BB88FDF792FC0420FEF791F8454B1B78022B2B -S3150800BB9806D14F490720FEF76DFC4B4B03221A7056 -S3150800BBA83E4B1B78002B6ED14A490720FEF762FCEC -S3150800BBB8454B01221A7066E001210520FDF774FC41 -S3150800BBC83F4B1B78022B03D80320FEF76FF804E0D7 -S3150800BBD83B4B1B781846FEF769F8304B1B78002B49 -S3150800BBE806D13C490720FEF745FC374B01221A7057 -S3150800BBF8394B1B78002B48D038490720FEF73AFC02 -S3150800BC08314B04221A7040E000210520FDF74CFC50 -S3150800BC180D20FEF74BF801F09DFE0246304B1B68D7 -S3150800BC28D31AB3F57A7F1AD901F094FE03462C4A3B -S3150800BC381360294B1B78002B0AD0274B1B78FF2B40 -S3150800BC480DD0254B1B78013BDAB2234B1A7006E058 -S3150800BC5824490720FEF70EFC1B4B01221A701E4BBF -S3150800BC681B78002B42D10D4B1B78012B3ED11E4960 -S3150800BC780720FEF7FFFB144B02221A7036E000BFB6 -S3150800BC8835E000BF33E000BF31E000BF2FE000BF5A -S3150800BC98CC09002030100020CC0700204F000020D7 -S3150800BCA8D4010020C8070020C0070020300A002059 -S3150800BCB8CD09002050420108C40700206442010843 -S3150800BCC82C0A00207C4201085000002098420108EE -S3150800BCD8C0420108E4420108CE090020F4420108DE -S3150800BCE8340A0020044301082C43010800BF3F4BCF -S3150800BCF81B78002B1FD03E4B1B68002B08D001F081 -S3150800BD0829FE02463A4B1B68D31AB3F5FA6F08D3CD -S3150800BD1838490420FEF7AEFB01F01CFE0346344AF8 -S3150800BD281360354B0022DA75344B00221A706420EA -S3150800BD38FEF7DCF944E0324B1B68002B23D001F0F0 -S3150800BD4809FE02462E4B1B68D31AB3F5FA6F1AD9A1 -S3150800BD5828490420FEF78EFB244B01221A7001F0AD -S3150800BD68F9FD0346264A136001F0F4FD0346204A06 -S3150800BD781360214B0022DA75204B00221A706420C2 -S3150800BD88FEF7B4F91CE01F4B1B78012B03D11A4B9D -S3150800BD980022DA7514E01C4B1B78002B14BF01230C -S3150800BDA80023DBB21A46144BDA75134BDB7D002BDE -S3150800BDB806D1114B5B78032B02D10F4B0022DA759B -S3150800BDC8124B1B78012B07D0104B1B78022B03D07C -S3150800BDD80E4B1B78032B03D1074B01229A7703E0F6 -S3150800BDE8054B00229A7700BF00BF80BDD8090020FE -S3150800BDF8DC09002068430108D40100202C0A002029 -S3150800BE08D4090020C8070020C90700204F000020D1 -S3150800BE1880B500AFFEF748F96420FEF767F90D4BC1 -S3150800BE284FF47A721A800B4B96225A80094B40F2C5 -S3150800BE3832529A80074B0A22DA80064B47F230526A -S3150800BE489A6000F0B3F804490720FEF713FB00BF11 -S3150800BE5880BD00BFA80700207C43010880B485B0D0 -S3150800BE6800AF78600B467B804FF6FF73FB81002393 -S3150800BE78BB8122E0BB897A6813441B781A46FB897A -S3150800BE885340FB810023FB7211E0FB8903F0010391 -S3150800BE98002B06D0FB895B089AB20D4B5340FB81F1 -S3150800BEA802E0FB895B08FB81FB7A0133FB72FB7AAC -S3150800BEB8072BEAD9BB890133BB81BA897B889A42A1 -S3150800BEC8D8D3FB8918461437BD4680BC704700BFCF -S3150800BED801A0FFFF80B586B000AFB9607B60034656 -S3150800BEE8FB731346BB81BB890333FB82FA8A3B8CF7 -S3150800BEF89A4201D9002329E07B68FA7B1A70BB8924 -S3150800BF08002B09D0BB68002B06D07B680133BA8999 -S3150800BF18B968184607F00BF9BB8901339BB219466D -S3150800BF287868FFF79BFF0346BB82BB8901337A68AB -S3150800BF381344BA8AD2B21A70BB8A1B0A99B2BB8949 -S3150800BF4802337A681344CAB21A70FB8A1846183735 -S3150800BF58BD4680BD80B586B002AF03463960FB7121 -S3150800BF681346BB80BA88F8794FF4807300930C4B54 -S3150800BF783968FFF7AFFF0346FB81FB89002B06D01C -S3150800BF88FA894FF47A730649064805F0E9FE01F07E -S3150800BF98E1FC0346044A136000BF1037BD4680BD5E -S3150800BFA8CC08002030100020C007002080B500AF5C -S3150800BFB8002200215220FFF7CDFF00BF80BD80B5C3 -S3150800BFC800AF002200215320FFF7C4FF00BF80BD41 -S3150800BFD880B582B000AF01F0BDFC78601E4B1B68C7 -S3150800BFE87A68D31A3B601C4A7B6813601B4BB3F804 -S3150800BFF813309BB21A46194BB3F815309BB202FB9D -S3150800C00803F3174A82FB03129210DB17D31A1A4650 -S3150800C018144B1A60134B1B683A6802FB03F3124A5F -S3150800C028A2FB03239A09114B1B6813440F4A136092 -S3150800C0380F4B1B78012B02D10C4B00221A600B4BB5 -S3150800C0481B680C4AA2FB0323DB0A0B4A136000BFD2 -S3150800C0580837BD4680BD00BF380A0020D401002035 -S3150800C06867666666B4070020D34D6210B8070020D5 -S3150800C0782C0A0020C5B3A291BC07002080B500AFE2 -S3150800C088FFF7A6FFFEF75AF803461A462A4B1A7010 -S3150800C0982A4BDA7A284B5A70294BB3F813309AB2D6 -S3150800C0A8254B5A80264BB3F815309AB2224B9A80FC -S3150800C0B8244B1B68204AC2F80630234B1B681E4AC5 -S3150800C0C8C2F80A30214B1B78032B04D1204B1A7867 -S3150800C0D8194BDA7402E0184B0022DA741D4B1A88D9 -S3150800C0E8154B9A821B4B5A88134BDA82194B9A8836 -S3150800C0F8114B1A83174BDA880F4B5A83154B9B68D3 -S3150800C1080D4AD361144B1A780B4B9A740A4A0023C2 -S3150800C11843F07F4343F47F0343F43B4343F0A003D0 -S3150800C128D381002343F00D031382202202495020AD -S3150800C138FFF710FF00BF80BDE00900202407002094 -S3150800C148D4010020B4070020BC07002050000020B6 -S3150800C1584F000020A8070020D009002080B483B02B -S3150800C16800AF0346FB71FB79403B092B2AD801A28D -S3150800C17852F823F0A5C10008A9C10008ADC10008F6 -S3150800C188B1C10008B5C10008B9C10008BDC1000899 -S3150800C198C1C10008C5C10008C9C10008012313E0C8 -S3150800C1A8012311E001230FE001230DE001230BE031 -S3150800C1B8042309E0012307E02C2305E0012303E013 -S3150800C1C8002301E04FF6FF7318460C37BD4680BCBE -S3150800C1D8704700BFF0B58BB000AF03463960FB71F6 -S3150800C1E81346BB8001F0B6FB03465B4A13605B4BFC -S3150800C1F800221A705A4B00221A60FB79403B092B19 -S3150800C20800F2A38001A252F823F000BF3DC200083D -S3150800C2186BC2000885C20008A7C200083BC300080D -S3150800C228C1C20008DFC20008EDC2000831C3000811 -S3150800C23847C300083B68FB60FB681B7887F827300C -S3150800C24897F82730642B02D9642387F82730454A9C -S3150800C25897F82730137097F827301846FDF746FFE2 -S3150800C26876E03B683B613B691B78002B14BF0123CA -S3150800C2780023DBB21A463C4B1A7069E03B687B61BF -S3150800C2887B691B78002B62D038490520FEF7F2F83F -S3150800C298FFF78CFE0A2001F067FBFFF76FFB3B6888 -S3150800C2A8BB61BB691B78002B14BF01230023DBB2D3 -S3150800C2B81A462F4B1A704BE03B68FB61FB691B88D3 -S3150800C2C89AB22C4BA3F80F20FB695B889AB2294BC4 -S3150800C2D8A3F81B203CE03B683B623B6A1A78264B6E -S3150800C2E81A7035E0254A3B681C46164604F1200CA8 -S3150800C2F835462346186859689A68DB680FC51034A6 -S3150800C30810366445F4D13346224610685168926857 -S3150800C31807C31A4B5B881A4AA2FB0323DB089BB29E -S3150800C328DAB2144B9A7013E03B681A78154B1A70F0 -S3150800C3380EE00C4B1B781846FDF7D8FE08E001F00E -S3150800C34809FB0346044A136002E000BF00E000BF89 -S3150800C35800BF2C37BD46F0BDD4090020D8090020F7 -S3150800C368DC0900204E000020C90700208843010880 -S3150800C378CF090020D4010020D0090020000A002097 -S3150800C388CDCCCCCC2C0A002080B586B000AF78601E -S3150800C3980B467B807B88022B01D800235AE07B68F2 -S3150800C3A81B78FB757B88033BBB827B88023B7A68D4 -S3150800C3B813441B781AB27B88013B79680B441B78AF -S3150800C3C81BB21B021BB213431BB27B82BB8A013307 -S3150800C3D89BB219467868FFF741FD03463B827A8A7D -S3150800C3E83B8A9A4205D01D490420FEF743F80023E4 -S3150800C3F830E0FB7D1846FFF7B1FE0346FB81FB8953 -S3150800C4084FF6FF72934207D1FB7D1A461449052059 -S3150800C418FEF730F800231DE0FA89BB8A9A4207D04E -S3150800C428FB7D1A460F490420FEF724F8002311E07D -S3150800C438BB8A002B07D07B68591CBA8AFB7D18462D -S3150800C448FFF7C8FE05E0FB7D002200211846FFF726 -S3150800C458C1FE012318461837BD4680BDA04301080A -S3150800C468B4430108C843010880B400AF0E4B1B68E3 -S3150800C4781B689AB20D4B1A800B4B1B685A790B4BE3 -S3150800C4889A70094B1B681A79084BDA70074B012210 -S3150800C4989A80064B0022DA80044B05221A8100BFCF -S3150800C4A8BD4680BC704700BF00000020B80E0020BB -S3150800C4B880B500AF4FF404720021054806F0BCFDAC -S3150800C4C84FF404720021034806F0B6FD00BF80BD8C -S3150800C4D83C0A00204C0C002080B500AF2A4B93F884 -S3150800C4E84230DBB2202B0AD1284B93F80832DBB24C -S3150800C4F8002B04D1FF222649234805F0F1FC254BD9 -S3150800C50893F84230DBB2202B04D1FF222249214876 -S3150800C51805F0E6FC1C4B93F84130DBB2212B19D108 -S3150800C5281A4BD3F80C32002B14D001F013FA024632 -S3150800C538164BD3F80C32D31A642B0BD9124805F0CC -S3150800C5482DFD00221021154803F015FA0F4B00227D -S3150800C558C3F80C220D4B93F80832DBB2002B11D026 -S3150800C568094B93F84130DBB2212B0BD00C4800F06D -S3150800C578EDF9FF220649044805F0B2FC034B0022F0 -S3150800C58883F8082200BF80BDE80F00203C0A002077 -S3150800C5983C0B0020580F00204C0D002000140140C9 -S3150800C5A83C0C002080B582B000AF78600B467B80D3 -S3150800C5B87B681A68224B1B689A4216D17B881A46EA -S3150800C5C82049214800F08EF90346002B04D114228D -S3150800C5D80021002000F0FAF81C4B00221A70FF22EE -S3150800C5E81849174805F07CFC25E07B681A68184B3B -S3150800C5F81B689A4214D17B881A461649164800F0D1 -S3150800C60871F90346002B05D0104B01221A701348FE -S3150800C61800F09CF9FF220F490D4805F061FC0AE075 -S3150800C6287B681A680E4B1B689A4204D17B881946A0 -S3150800C6387868FFF7B9F900BF0837BD4680BD00BF5F -S3150800C648E80F00203C0B00203C0A00205C0E002066 -S3150800C658580F00204C0D00204C0C00204C0E0020D2 -S3150800C6683010002080B582B000AF78607B681A6801 -S3150800C678084B1B689A4208D100221021064803F085 -S3150800C6887AF9064B0022C3F80C2200BF0837BD46C4 -S3150800C69880BD00BFE80F0020001401403C0A0020B6 -S3150800C6A880B485B000AF78600B467B804FF0FF33C7 -S3150800C6B8FB6000237B8121E07B897A6813441B7819 -S3150800C6C81A46FB685340FB6000237B7210E0FB6840 -S3150800C6D803F00103002B05D0FB685A080D4B53409D -S3150800C6E8FB6002E0FB685B08FB607B7A01337B72C0 -S3150800C6F87B7A072BEBD97B8901337B817A897B88FF -S3150800C7089A42D9D3FB68DB4318461437BD4680BC22 -S3150800C718704700BF2083B8ED80B588B000AFF860D1 -S3150800C7287A601A460B467B8113467B720023FB8385 -S3150800C738FB8B5A1CFA831A467B6813447A7A1A7052 -S3150800C748FB68002B19D00023BB8312E0BB8BFA6861 -S3150800C7581A44FB8B591CF98319467B680B441278D3 -S3150800C7681A70FB8BFA2B01D900232AE0BB8B0133FD -S3150800C778BB83BA8B7B899A42E8D3FB8B19467868C0 -S3150800C788FFF78EFF03463B6107F110037B61002321 -S3150800C798BB6112E0BB697A691A44FB8B591CF98399 -S3150800C7A819467B680B4412781A70FB8BFE2B01D945 -S3150800C7B8002306E0BB690133BB61BB69032BE9DDCE -S3150800C7C8FB8B18462037BD4680BD000080B584B06F -S3150800C7D800AF78600B467B8013467B707B78798838 -S3150800C7E8154A7868FFF798FF0346FB81FB89002BF3 -S3150800C7F81ED0124B93F84130DBB2212B07D10F48D4 -S3150800C80805F0CCFB002210210D4803F0B4F80122EC -S3150800C81810210B4803F0AFF8FB891A460649074862 -S3150800C82805F029FB01F096F80346034AC2F80C32CC -S3150800C83800BF1037BD4680BD3C0A0020E80F00201F -S3150800C8480014014080B588B000AFF8600B467A60DE -S3150800C8587B817B89042B01D800233FE07B89B3F5CC -S3150800C868807F01D9002339E07B89043BFB83FB8B56 -S3150800C878FA6813441B781946FB8B0133FA68134484 -S3150800C8881B781B0241EA0302FB8B0233F9680B4447 -S3150800C8981B781B041A43FB8B0333F9680B441B7874 -S3150800C8A81B061343BB61FB8B1946F868FFF7F8FEAE -S3150800C8B87861BA697B699A4201D000230EE0FB6861 -S3150800C8C85A1C7B685A60FB681A787B681A70FB8B57 -S3150800C8D8DBB2013BDAB27B685A7001231846203767 -S3150800C8E8BD4680BD80B584B000AFF860B960134610 -S3150800C8F8FB80FB6803F50072FB881946B868FFF7E2 -S3150800C908A1FF0346002B01D1002304E0FB6801229E -S3150800C91883F80822012318461037BD4680BD000053 -S3150800C92880B400AFBFF34F8F00BF064BDB6803F434 -S3150800C938E0620449044B1343CB60BFF34F8F00BF33 -S3150800C94800BFFDE700ED00E00400FA0580B584B0F5 -S3150800C95800AF78601323FB737B681B78C22B00F340 -S3150800C968CC80B02B0FDA602B42D0602B00F3C58041 -S3150800C978502B43D0502B00F3C080012B00F0A68023 -S3150800C988402B2DD0B9E0B03B122B00F2B68001A29D -S3150800C99852F823F00BCA000803CB000803CB00089B -S3150800C9A803CB000803CB0008B3CA000803CB00086A -S3150800C9B803CB000803CB000803CB000803CB000809 -S3150800C9C803CB000803CB000803CB000803CB0008F9 -S3150800C9D803CB000849CA0008ADCA000881CA00087E -S3150800C9E800F0B2F8402258214B48FFF7EFFE8FE0D7 -S3150800C9F860220A214948FFF7E9FE89E0FDF7D8FCD5 -S3150800CA0886E07B685B780B2B17D17B685A68444BA2 -S3150800CA181068516803C31189927A19809A70414B34 -S3150800CA2801221A703E4BD3F803303D4A3E49072087 -S3150800CA38FDF720FD1223FB7362E01323FB735FE007 -S3150800CA487B685B78012B14D17B685B681B781A4670 -S3150800CA584FF47A7302FB03F31A46344B5A61334B85 -S3150800CA685B691A4632490720FDF704FD1223FB7352 -S3150800CA7846E01323FB7343E07B685B78012B0ED1F2 -S3150800CA887B685B681A782B4B1A702A4B1B781A46F0 -S3150800CA9829490720FDF7EEFC1223FB7330E0132320 -S3150800CAA8FB732DE01323FB732AE0122200210020D2 -S3150800CAB8FFF78CFE00BF214B93F84130DBB2212BE0 -S3150800CAC8F9D00A2000F050FFFFF72AFF7B685B7849 -S3150800CAD8092B0FD17B685A68194B1068516803C32C -S3150800CAE8127A1A70174B1B78DBB2012B0FD0122358 -S3150800CAF8FB7305E01323FB7302E01323FB7300BFE4 -S3150800CB08FB7B1A4600210020FFF760FE00E000BF05 -S3150800CB181037BD4680BD00BF600E0020B80E002045 -S3150800CB2860000020C20E0020E84301082407002000 -S3150800CB38FC430108D401002010440108E80F00202E -S3150800CB48540000205C0E002080B500AF8F4B9A7801 -S3150800CB588F4B9A708D4BD3F807308D4AC2F803303D -S3150800CB688A4BB3F80F309AB2894BA3F80720874B3C -S3150800CB78B3F81B309AB2864BA3F80920834BB3F84F -S3150800CB8813309AB2824BA3F80B20804BB3F81530B2 -S3150800CB989AB27F4BA3F80D207C4B1A7E7C4BDA732E -S3150800CBA87A4B5A7F7A4B5A70784B5A78784B1A7060 -S3150800CBB8774B00221A7400225A74754B00229A740D -S3150800CBC8734B0022DA7400221A750420FCF7DCFC81 -S3150800CBD8034603F00103D9B26D4A537D61F3000396 -S3150800CBE853750320FCF7D0FC034603F00103D9B2BA -S3150800CBF8674A537D61F3410353750020FCF7C4FC6B -S3150800CC08034603F00103D9B2614A537D61F38203EF -S3150800CC1853755F4A537D23F0080353750320FCF7C1 -S3150800CC28C3FC0346002B0CBF01230023D9B2584A7C -S3150800CC38537D61F304135375FDF7A6FB0346002BD2 -S3150800CC4814BF01230023D9B2514A537D61F3451312 -S3150800CC5853754F4A537D23F0400353754D4B1B7A42 -S3150800CC6803F00103D9B24A4A537D61F3C7135375D2 -S3150800CC780020FCF78BFD03465AB2454B5A7601202D -S3150800CC88FCF784FD03465AB2414B9A76414BDB6959 -S3150800CC985AB23F4BDA763E4B00221A773C4B0022B3 -S3150800CCA85A773B4B00229A770022DA77384B0022CC -S3150800CCB883F82020384B9B689AB2354BA3F8212075 -S3150800CCC8354BDB689AB2324BA3F82320324B1B69E3 -S3150800CCD89AB22F4BA3F82520112200212F4806F0D7 -S3150800CCE8ABF92B4B002283F83820294B002283F80E -S3150800CCF83920002283F83A20254B002283F83B2066 -S3150800CD08002283F83C2004220021254806F094F9DD -S3150800CD181F4B002283F84120002283F84220002274 -S3150800CD2883F84320002283F84420194B002283F80D -S3150800CD384720174B002283F84620154B002283F814 -S3150800CD484520134B002283F84820002283F84920FF -S3150800CD580F4B002283F84A2008220021114806F0C2 -S3150800CD686BF90B4B002283F85320094B002283F8F2 -S3150800CD785420002283F85520054B002283F85620B4 -S3150800CD88002283F8572000BF80BD00BFD4010020C9 -S3150800CD98600E002024070020F8060020870E0020D1 -S3150800CDA89D0E0020AB0E002080B485B000AF7860D9 -S3150800CDB87B68002B18D07B6800221A607B680022E3 -S3150800CDC89A807B680022DA800023FB8108E0FA89CA -S3150800CDD87B680232002143F82210FB890133FB8164 -S3150800CDE8FB89072BF3D900E000BF1437BD4680BC82 -S3150800CDF8704780B485B000AF786039607B68002BCF -S3150800CE0801D13B6856E07B68DB88072B27D87B6807 -S3150800CE189B881A467B680232396843F822107B6871 -S3150800CE281A683B681A447B681A607B689B880133D2 -S3150800CE389AB27B689A807B689B88072B02D97B689D -S3150800CE4800229A807B68DB8801339AB27B68DA808D -S3150800CE587B681B687A68D28893FBF2F32AE07B68BA -S3150800CE689B881A467B68023253F82230FB607B6837 -S3150800CE789B881A467B680232396843F822107B6811 -S3150800CE881A683968FB68CB1A1A447B681A607B6883 -S3150800CE989B8801339AB27B689A807B689B88072BA4 -S3150800CEA802D97B6800229A807B681B68002B00DA07 -S3150800CEB80733DB1018461437BD4680BC7047000098 -S3150800CEC880B485B000AF154B9B69144A43F001033B -S3150800CED89361124B9B6903F00103BB60BB680F4B58 -S3150800CEE8DB690E4A43F08053D3610C4BDB6903F0C8 -S3150800CEF880537B607B680A4B5B68FB60FB6823F0A2 -S3150800CF08E063FB60FB6843F00073FB60044AFB6858 -S3150800CF18536000BF1437BD4680BC704700100240F6 -S3150800CF280000014080B400AF00BFFDE780B400AF41 -S3150800CF3800BFFDE780B400AF00BFFDE780B400AFCF -S3150800CF4800BFFDE780B400AF00BFFDE780B400AFBF -S3150800CF5800BFBD4680BC704780B400AF00BFBD4661 -S3150800CF6880BC704780B400AF00BFBD4680BC704720 -S3150800CF7880B500AF00F0DCFC00BF80BD80B500AF0F -S3150800CF88024801F0CDFE00BF80BD00BF8001002029 -S3150800CF9880B500AF024804F0C3F800BF80BD00BFE3 -S3150800CFA8C80E002080B500AF024805F00BF900BF8F -S3150800CFB880BD00BFA00F002080B500AF024805F06D -S3150800CFC801F900BF80BD00BFE80F002080B500AF9B -S3150800CFD8024805F0F7F800BF80BD00BF30100020F2 -S3150800CFE880B500AF024805F0EDF800BF80BD00BF68 -S3150800CFF8580F002080B500AF024801F091FE00BF27 -S3150800D00880BD00BFA801002080B500AF024801F026 -S3150800D01887FE00BF80BD00BFA801002080B586B086 -S3150800D02800AFF860B9607A6000237B610AE0AFF365 -S3150800D03800800146BB685A1CBA60CAB21A707B6976 -S3150800D04801337B617A697B689A42F0DB7B6818460C -S3150800D0581837BD4680BD80B483B000AF78604FF0FE -S3150800D068FF3318460C37BD4680BC704780B483B07A -S3150800D07800AF786039603B684FF400525A60002365 -S3150800D08818460C37BD4680BC704780B483B000AFDD -S3150800D0987860012318460C37BD4680BC704780B4B3 -S3150800D0A885B000AFF860B9607A600023184614376F -S3150800D0B8BD4680BC7047000080B586B000AF786072 -S3150800D0C8144A154BD31A7B617B693B61134B1B6862 -S3150800D0D8002B02D1114B124A1A60104B1A687B684A -S3150800D0E813443A699A4207D205F0F4FF03460C221C -S3150800D0F81A604FF0FF3309E0084B1B68FB60074BC3 -S3150800D1081A687B681344054A1360FB68184618377B -S3150800D118BD4680BD0000012000040000C40E0020A2 -S3150800D128C811002080B400AF00BFBD4680BC704758 -S3150800D13880B58EB000AF07F1280300221A605A603E -S3150800D1489A60DA6007F1200300221A605A603B1DCC -S3150800D15800221A605A609A60DA601A615A619A61FE -S3150800D1682C4B2D4A1A602B4B00225A60294B002259 -S3150800D1789A60284B4FF6FF72DA60264B00221A612E -S3150800D188244B00229A61234803F083FD0346002BAB -S3150800D19801D0FDF72FFC4FF48053BB6207F1280333 -S3150800D1A819461C4804F06EF90346002B01D0FDF712 -S3150800D1B821FC184803F0B2FE0346002B01D0FDF700 -S3150800D1C819FC00233B6200237B6207F120031946FA -S3150800D1D8104804F0FDFC0346002B01D0FDF70AFCB5 -S3150800D1E860237B600023BB600023FB6000237B6110 -S3150800D1F83B1D04221946074804F082F80346002B0B -S3150800D20801D0FDF7F7FB034800F0CEF800BF383722 -S3150800D218BD4680BDC80E00200004004080B58EB00B -S3150800D22800AF07F1280300221A605A609A60DA608C -S3150800D23807F1200300221A605A603B1D00221A6073 -S3150800D2485A609A60DA601A615A619A61374B384AA5 -S3150800D2581A60364B4FF434725A60344B00229A607F -S3150800D268324B6422DA60314B00221A612F4B0022B6 -S3150800D2789A612E4803F00DFD0346002B01D0FDF7F1 -S3150800D288B9FB4FF48053BB6207F1280319462748B0 -S3150800D29804F0F8F80346002B01D0FDF7ABFB23484A -S3150800D2A803F03CFE0346002B01D0FDF7A3FB002341 -S3150800D2B83B6200237B6207F1200319461B4804F0EA -S3150800D2C887FC0346002B01D0FDF794FB60237B609F -S3150800D2D80023BB600023FB6000237B613B1D0422FF -S3150800D2E81946124804F00CF80346002B01D0FDF73E -S3150800D2F881FB3B1D082219460C4804F001F8034631 -S3150800D308002B01D0FDF776FB3B1D0C221946074872 -S3150800D31803F0F6FF0346002B01D0FDF76BFB034825 -S3150800D32800F042F800BF3837BD4680BD100F002010 -S3150800D3380008004080B584B000AF78607B681B6839 -S3150800D348164A934214D1164BDB69154A43F0020371 -S3150800D358D361134BDB6903F00203FB60FB68002209 -S3150800D36800211D2001F0D7FF1D2001F0F0FF10E075 -S3150800D3787B681B680B4A93420BD1094BDB69084A41 -S3150800D38843F00403D361064BDB6903F00403BB606F -S3150800D398BB6800BF1037BD4680BD00BF000400400B -S3150800D3A8001002400008004080B58AB000AF7860D7 -S3150800D3B807F1140300221A605A609A60DA607B68DB -S3150800D3C81B68264A934218D1254B9B69244A43F081 -S3150800D3D804039361224B9B6903F004033B613B6991 -S3150800D3E880237B610223BB6102233B6207F1140396 -S3150800D3F819461C4802F024F92BE07B681B681A4A70 -S3150800D408934226D1164B9B69154A43F0200393612C -S3150800D418134B9B6903F02003FB60FB684FF46043DA -S3150800D4287B610223BB6102233B6207F11403194699 -S3150800D4380E4802F005F90E4B5B687B627B6A43F07F -S3150800D448E0637B627B6A43F480537B62084A7B6AA3 -S3150800D458536000BF2837BD4680BD00BF00040040A2 -S3150800D468001002400008014000080040001401406E -S3150800D4780000014080B500AF114B124A1A60104BE4 -S3150800D4884FF416525A600E4B00229A600C4B002233 -S3150800D498DA600B4B00221A61094B0C225A61084BB9 -S3150800D4A800229A61064B0022DA61054804F008FC56 -S3150800D4B80346002B01D0FDF79DFA00BF80BD00BFCB -S3150800D4C8580F00200050004080B500AF114B124A93 -S3150800D4D81A60104B4FF4E1325A600E4B00229A60DC -S3150800D4E80C4B0022DA600B4B00221A61094B0C22FE -S3150800D4F85A61084B00229A61064B0022DA610548F0 -S3150800D50804F0DEFB0346002B01D0FDF773FA00BFD3 -S3150800D51880BD00BFA00F00200038014080B500AFCD -S3150800D528114B124A1A60104B4FF4E1325A600E4BEF -S3150800D53800229A600C4B0022DA600B4B00221A6113 -S3150800D548094B0C225A61084B00229A61064B0022A5 -S3150800D558DA61054804F0B4FB0346002B01D0FDF751 -S3150800D56849FA00BF80BD00BFE80F0020004400400C -S3150800D57880B500AF114B124A1A60104B4FF4E132CE -S3150800D5885A600E4B00229A600C4B0022DA600B4B4D -S3150800D59800221A61094B0C225A61084B00229A612B -S3150800D5A8064B0022DA61054804F08AFB0346002B7D -S3150800D5B801D0FDF71FFA00BF80BD00BF301000205C -S3150800D5C80048004080B592B000AF786007F1300394 -S3150800D5D800221A605A609A60DA607B681B68954A66 -S3150800D5E8934245D1944BDB69934A43F48013D3613C -S3150800D5F8914BDB6903F48013FB62FB6A8E4B9B69CC -S3150800D6088D4A43F0100393618B4B9B6903F0100313 -S3150800D618BB62BB6A884B9B69874A43F020039361C0 -S3150800D628854B9B6903F020037B627B6A4FF4805322 -S3150800D6383B6302237B630323FB6307F13003194625 -S3150800D6487E4801F0FDFF04233B6300237B63002328 -S3150800D658BB6307F130031946794801F0F1FF002248 -S3150800D6680021352001F057FE352001F070FEDCE078 -S3150800D6787B681B68734A93423AD16F4B9B696E4A1B -S3150800D68843F4804393616C4B9B6903F480433B6284 -S3150800D6983B6A694B9B69684A43F004039361664B86 -S3150800D6A89B6903F00403FB61FB694FF400733B6352 -S3150800D6B802237B630323FB6307F130031946624899 -S3150800D6C801F0BEFF4FF480633B6300237B630023AE -S3150800D6D8BB6307F1300319465B4801F0B1FF002226 -S3150800D6E80021252001F017FE252001F030FE9CE0D8 -S3150800D6F87B681B68554A934246D14F4BDB694E4AAD -S3150800D70843F40033D3614C4BDB6903F40033BB6144 -S3150800D718BB69494B9B69484A43F020039361464BCA -S3150800D7289B6903F020037B617B6920233B63022303 -S3150800D7387B630323FB6307F130031946404801F06E -S3150800D7487FFF40233B6300237B630023BB6307F10A -S3150800D758300319463A4801F073FF3D4B5B683B6452 -S3150800D7683B6C43F0E0633B643B6C43F008033B6463 -S3150800D778374A3B6C536000220021262001F0CBFD76 -S3150800D788262001F0E4FD50E07B681B68314A934285 -S3150800D7984BD1294BDB69284A43F48023D361264BAE -S3150800D7A8DB6903F480233B613B69234B9B69224A67 -S3150800D7B843F010039361204B9B6903F01003FB6049 -S3150800D7C8FB684FF480633B6302237B630323FB6395 -S3150800D7D807F130031946194801F032FF4FF4006380 -S3150800D7E83B6300237B630023BB6307F130031946B9 -S3150800D7F8124801F025FF164B5B687B647B6C23F0A7 -S3150800D80830037B647B6C43F0E0637B647B6C43F09A -S3150800D81810037B640E4A7B6C536000220021272084 -S3150800D82801F079FD272001F092FD00BF4837BD4673 -S3150800D83880BD00BF005000400010024000100140A3 -S3150800D8480014014000380140000801400044004027 -S3150800D8580000014000480040FFF764FC0B480C49EB -S3150800D8680C4A002302E0D458C4500433C4188C4226 -S3150800D878F9D3094A094C002301E013600432A2428D -S3150800D888FBD305F02DFCFCF7C9FF70470000002004 -S3150800D898D4000020C0440108D8000020C811002080 -S3150800D8A8FEE7000080B500AF084B1B68074A43F03F -S3150800D8B810031360032001F023FD0F2000F008F879 -S3150800D8C8FFF7FEFA0023184680BD00BF0020024075 -S3150800D8D880B582B000AF7860124B1A68124B1B7875 -S3150800D8E819464FF47A73B3FBF1F3B2FBF3F3184610 -S3150800D8F801F03BFD0346002B01D001230EE07B68AF -S3150800D9080F2B0AD8002279684FF0FF3001F003FD83 -S3150800D918064A7B681360002300E001231846083787 -S3150800D928BD4680BD6C0000207400002070000020F1 -S3150800D93880B400AF054B1B781A46054B1B68134481 -S3150800D948034A136000BFBD4680BC704774000020B8 -S3150800D9587810002080B400AF024B1B681846BD46F5 -S3150800D96880BC70477810002080B584B000AF786016 -S3150800D978FFF7F0FFB8607B68FB60FB68B3F1FF3F11 -S3150800D98805D00A4B1B781A46FB681344FB6000BF90 -S3150800D998FFF7E0FF0246BB68D31AFA689A42F7D837 -S3150800D9A800BF00BF1037BD4680BD00BF7400002009 -S3150800D9B880B586B000AF78600023FB7500233B610D -S3150800D9C80023BB600023FB607B68002B01D1012381 -S3150800D9D8BEE07B689B68002B7B689B6A002B09D195 -S3150800D9E87B680022DA627B68002283F8242078683C -S3150800D9F8FBF706FD786800F0F1FB0346FB757B68C4 -S3150800DA089B6A03F01003002B40F09980FB7D002BDE -S3150800DA1840F095807B689B6A23F4885323F00203B9 -S3150800DA2843F002027B689A627B685A687B68DB69FE -S3150800DA381A437B681B7B5B001343BA681343BB60B6 -S3150800DA487B689B68B3F5807F03D07B689B68012B4E -S3150800DA5802D14FF4807300E000233A6913433B610F -S3150800DA687B681B7D012B19D17B681B7B002B09D191 -S3150800DA787B689B69013B5A033B69134343F400637C -S3150800DA883B610BE07B689B6A43F020027B689A62DD -S3150800DA987B68DB6A43F001027B68DA627B681B688D -S3150800DAA85B6823F469417B681B683A690A435A60CC -S3150800DAB87B681B689A68284B13407A681268B968A5 -S3150800DAC80B4393607B689B68B3F5807F03D07B68BC -S3150800DAD89B68012B04D17B681B69013B1B05FB600E -S3150800DAE87B681B68DB6A23F470017B681B68FA6825 -S3150800DAF80A43DA627B681B689A68184B1340BA6847 -S3150800DB089A420BD17B680022DA627B689B6A23F00B -S3150800DB18030343F001027B689A6218E07B689B6AF4 -S3150800DB2823F0120343F010027B689A627B68DB6A6B -S3150800DB3843F001027B68DA620123FB7507E07B681C -S3150800DB489B6A43F010027B689A620123FB75FB7D8A -S3150800DB5818461837BD4680BDFDF7E1FFFE0E1FFFC4 -S3150800DB6880B584B000AF78600023FB737B6893F8B0 -S3150800DB782430012B01D1022398E07B68012283F81F -S3150800DB882420786800F0D0FA0346FB73FB7B002B49 -S3150800DB9840F087807B689B6A23F4407323F001036F -S3150800DBA843F480727B689A627B681B68414A934291 -S3150800DBB805D1414B5B6803F47023002B15D17B68AC -S3150800DBC89B6A23F480127B689A627B681B685B6889 -S3150800DBD803F48063002B26D07B689B6A23F44053A2 -S3150800DBE843F480527B689A621DE07B689B6A43F41B -S3150800DBF880127B689A627B681B682F4A934204D016 -S3150800DC087B681B682B4A93420DD12B4B5B6803F440 -S3150800DC188063002B07D07B689B6A23F4405343F440 -S3150800DC2880527B689A627B689B6A03F48053002B50 -S3150800DC3806D07B68DB6A23F006027B68DA6202E0B4 -S3150800DC487B680022DA627B68002283F824207B68D6 -S3150800DC581B686FF002021A607B681B689B6803F4EE -S3150800DC686023B3F5602F13D17B681B68114A93426A -S3150800DC7805D1114B5B6803F47023002B08D17B6828 -S3150800DC881B689A687B681B6842F4A0029A600CE0D5 -S3150800DC987B681B689A687B681B6842F480129A60DE -S3150800DCA803E07B68002283F82420FB7B184610379C -S3150800DCB8BD4680BD002801400024014080B584B0D7 -S3150800DCC800AF78600023FB737B6893F82430012B38 -S3150800DCD801D102231AE07B68012283F82420786898 -S3150800DCE800F07CFA0346FB73FB7B002B09D17B68A3 -S3150800DCF89B6A23F4885323F0010343F001027B68E7 -S3150800DD089A627B68002283F82420FB7B1846103722 -S3150800DD18BD4680BD90B587B000AF786039600023EE -S3150800DD287B610023FB6000233B61FFF713FE7861E4 -S3150800DD387B681B689B6803F48073002B0BD07B6891 -S3150800DD489B6A43F020027B689A627B68002283F804 -S3150800DD5824200123D3E07B681B685B6803F480737F -S3150800DD68002B31D17B681B68DB6A03F47003002B30 -S3150800DD782AD121E03B68B3F1FF3F1DD03B68002B51 -S3150800DD8807D0FFF7E7FD02467B69D31A3A689A4235 -S3150800DD9812D27B681B681B6803F00203002B0BD1A1 -S3150800DDA87B689B6A43F004027B689A627B68002258 -S3150800DDB883F824200323A2E07B681B681B6803F00A -S3150800DDC80203002BD6D070E04F4B1C68022002F0E5 -S3150800DDD805FD0346B4FBF3F27B681B6819694B4BD0 -S3150800DDE80B40002B18D17B681B68D968484B0B4039 -S3150800DDF8002B11D17B681B681969464B0B40002B11 -S3150800DE0808D17B681B68D968434B0B40002B01D1A6 -S3150800DE18142320E029231EE07B681B6819693D4BFB -S3150800DE280B40002B06D17B681B68D9683A4B0B4018 -S3150800DE38002B0DD07B681B681969384B0B40002BE3 -S3150800DE4808D17B681B68D968344B0B40002B01D175 -S3150800DE58542300E0FC2302FB03F33B6121E03B6803 -S3150800DE68B3F1FF3F1AD03B68002B07D0FFF772FDC6 -S3150800DE7802467B69D31A3A689A420FD2FB683A690E -S3150800DE889A420BD97B689B6A43F004027B689A62BC -S3150800DE987B68002283F82420032330E0FB680133DB -S3150800DEA8FB60FB683A699A42D9D87B681B686FF0A9 -S3150800DEB812021A607B689B6A43F400727B689A624E -S3150800DEC87B681B689B6803F46023B3F5602F15D13C -S3150800DED87B681B7B002B11D17B689B6A23F48072B5 -S3150800DEE87B689A627B689B6A03F48053002B05D18A -S3150800DEF87B689B6A43F001027B689A62002318468E -S3150800DF081C37BD4690BD00BF6C00002024499224EA -S3150800DF1824499200922449129224490049922400DD -S3150800DF2880B483B000AF78607B681B68DB6C1846E2 -S3150800DF380C37BD4680BC704780B485B000AF7860A2 -S3150800DF4839600023FB730023BB607B6893F8243091 -S3150800DF58012B01D10223DCE07B68012283F8242007 -S3150800DF683B685B68062B1CD87B681B68596B3B6843 -S3150800DF785A6813469B001344053B1F2202FA03F30B -S3150800DF88DB4319403B6818683B685A6813469B0088 -S3150800DF981344053B00FA03F27B681B680A435A6375 -S3150800DFA83CE03B685B680C2B1CD87B681B68196BC4 -S3150800DFB83B685A6813469B001344233B1F2202FA00 -S3150800DFC803F3DB4319403B6818683B685A681346ED -S3150800DFD89B001344233B00FA03F27B681B680A4339 -S3150800DFE81A631BE07B681B68D96A3B685A6813463C -S3150800DFF89B001344413B1F2202FA03F3DB431940F3 -S3150800E0083B6818683B685A6813469B001344413BAB -S3150800E01800FA03F27B681B680A43DA623B681B68E6 -S3150800E028092B1CD97B681B68D9683B681A6813468C -S3150800E0385B0013441E3B072202FA03F3DB4319402D -S3150800E0483B6898683B681A6813465B0013441E3B8E -S3150800E05800FA03F27B681B680A43DA6019E07B68F2 -S3150800E0681B6819693B681A6813465B00134407223C -S3150800E07802FA03F3DB4319403B6898683B681A6859 -S3150800E08813465B00134400FA03F27B681B680A43CD -S3150800E0981A613B681B68102B03D03B681B68112B59 -S3150800E0A832D17B681B681D4A934225D17B681B6859 -S3150800E0B89B6803F40003002B26D17B681B689A68C3 -S3150800E0C87B681B6842F400029A603B681B68102B41 -S3150800E0D81AD1134B1B68134AA2FB03239A0C13463F -S3150800E0E89B0013445B00BB6002E0BB68013BBB6056 -S3150800E0F8BB68002BF9D107E07B689B6A43F02002CE -S3150800E1087B689A620123FB737B68002283F82420C4 -S3150800E118FB7B18461437BD4680BC7047002401406F -S3150800E1286C00002083DE1B4380B584B000AF78609E -S3150800E1380023FB600023BB607B681B689B6803F0B1 -S3150800E1480103012B40D07B681B689A687B681B68AB -S3150800E15842F001029A601F4B1B681F4AA2FB032361 -S3150800E1689B0CBB6002E0BB68013BBB60BB68002B2D -S3150800E178F9D1FFF7EFFBF8601FE0FFF7EBFB024664 -S3150800E188FB68D31A022B18D97B681B689B6803F0AF -S3150800E1980103012B11D07B689B6A43F010027B6848 -S3150800E1A89A627B68DB6A43F001027B68DA627B68FD -S3150800E1B8002283F82420012307E07B681B689B68F4 -S3150800E1C803F00103012BD8D1002318461037BD46A2 -S3150800E1D880BD00BF6C00002083DE1B4380B584B079 -S3150800E1E800AF78600023FB607B681B689B6803F0B8 -S3150800E1F80103012B2ED17B681B689A687B681B680C -S3150800E20822F001029A60FFF7A5FBF8601BE0FFF70A -S3150800E218A1FB0246FB68D31A022B14D97B681B6834 -S3150800E2289B6803F00103012B0DD17B689B6A43F0B9 -S3150800E23810027B689A627B68DB6A43F001027B6896 -S3150800E248DA62012307E07B681B689B6803F0010311 -S3150800E258012BDCD0002318461037BD4680BD0000C8 -S3150800E26890B587B000AF78600023FB750023FB6084 -S3150800E2787B6893F82430012B01D1022397E07B6849 -S3150800E288012283F824207868FFF7A8FF0346FB7560 -S3150800E2987868FFF749FF0346FB75FB7D002B40F0BE -S3150800E2A881807B689B6A23F4885323F0020343F032 -S3150800E2B802027B689A62404B1C68022002F08EFABA -S3150800E2C80346B4FBF3F35B00FB6002E0FB68013B23 -S3150800E2D8FB60FB68002BF9D17B681B689A687B682A -S3150800E2E81B6842F008029A60FFF734FB38611BE0A6 -S3150800E2F8FFF730FB02463B69D31A0A2B14D97B6809 -S3150800E3081B689B6803F00803002B0DD07B689B6A83 -S3150800E31823F0120343F010027B689A627B68002296 -S3150800E32883F82420012342E07B681B689B6803F076 -S3150800E3380803002BDCD17B681B689A687B681B6816 -S3150800E34842F004029A60FFF705FB38611BE0FFF705 -S3150800E35801FB02463B69D31A0A2B14D97B681B684A -S3150800E3689B6803F00403002B0DD07B689B6A23F097 -S3150800E378120343F010027B689A627B68002283F8CE -S3150800E3882420012313E07B681B689B6803F00403B9 -S3150800E398002BDCD17B689B6A23F0030343F0010258 -S3150800E3A87B689A627B68002283F82420FB7D1846DE -S3150800E3B81C37BD4690BD00BF6C00002080B584B0F0 -S3150800E3C800AF78607B68002B01D10123EDE07B68FC -S3150800E3D893F82030DBB2002B02D17868FBF70AFBEA -S3150800E3E87B681B681A687B681B6842F001021A601A -S3150800E3F8FFF7B0FAF86012E0FFF7ACFA0246FB68D6 -S3150800E408D31A0A2B0BD97B685B6A43F400327B68FC -S3150800E4185A627B68052283F820200123C5E07B68B9 -S3150800E4281B685B6803F00103002BE5D07B681B6853 -S3150800E4381A687B681B6822F002021A60FFF78AFAD4 -S3150800E448F86012E0FFF786FA0246FB68D31A0A2B29 -S3150800E4580BD97B685B6A43F400327B685A627B682F -S3150800E468052283F8202001239FE07B681B685B68E8 -S3150800E47803F00203002BE5D17B681B7E012B08D12C -S3150800E4887B681B681A687B681B6842F080021A60FA -S3150800E49807E07B681B681A687B681B6822F080029D -S3150800E4A81A607B685B7E012B08D17B681B681A6833 -S3150800E4B87B681B6842F040021A6007E07B681B68A5 -S3150800E4C81A687B681B6822F040021A607B689B7E84 -S3150800E4D8012B08D17B681B681A687B681B6842F0A1 -S3150800E4E820021A6007E07B681B681A687B681B6845 -S3150800E4F822F020021A607B68DB7E012B08D17B6834 -S3150800E5081B681A687B681B6822F010021A6007E005 -S3150800E5187B681B681A687B681B6842F010021A60D9 -S3150800E5287B681B7F012B08D17B681B681A687B6888 -S3150800E5381B6842F008021A6007E07B681B681A68BD -S3150800E5487B681B6822F008021A607B685B7F012BD0 -S3150800E55808D17B681B681A687B681B6842F0040246 -S3150800E5681A6007E07B681B681A687B681B6822F0D4 -S3150800E57804021A607B689A687B68DB681A437B68BA -S3150800E5881B691A437B685B6942EA03017B685B6817 -S3150800E5985A1E7B681B680A43DA617B6800225A623E -S3150800E5A87B68012283F82020002318461037BD46C9 -S3150800E5B880BD000080B487B000AF786039607B689A -S3150800E5C81B687B617B6893F82030FB74FB7C012B06 -S3150800E5D803D0FB7C022B40F0BE80654B7B617B69D0 -S3150800E5E8D3F8003243F001027B69C3F800227B693D -S3150800E5F8D3F8003223F47C527B69C3F800227B697E -S3150800E608D3F800223B685B6A1B021A437B69C3F886 -S3150800E61800223B685B6903F01F03012202FA03F331 -S3150800E628FB607B69D3F81C22FB68DB431A407B69CD -S3150800E638C3F81C223B68DB69002B23D17B69D3F816 -S3150800E6480C22FB68DB431A407B69C3F80C223B683B -S3150800E658DB6819043B685B689BB23A6852691943D8 -S3150800E6687B69483243F832103B689B6819043B6853 -S3150800E6781B689AB23B685B690A4379694833DB00C9 -S3150800E6880B445A603B68DB69012B22D17B69D3F8B6 -S3150800E6980C22FB681A437B69C3F80C223B681B6883 -S3150800E6A819043B685B689BB23A68526919437B69E7 -S3150800E6B8483243F832103B689B6819043B68DB68A4 -S3150800E6C89AB23B685B690A4379694833DB000B44AD -S3150800E6D85A603B689B69002B09D17B69D3F80422E9 -S3150800E6E8FB68DB431A407B69C3F8042207E07B69A9 -S3150800E6F8D3F80422FB681A437B69C3F804223B68EB -S3150800E7081B69002B09D17B69D3F81422FB68DB4304 -S3150800E7181A407B69C3F8142207E07B69D3F81422E8 -S3150800E728FB681A437B69C3F814223B681B6A012BEA -S3150800E73807D17B69D3F81C22FB681A437B69C3F89F -S3150800E7481C227B69D3F8003223F001027B69C3F8DF -S3150800E7580022002306E07B685B6A43F480227B6814 -S3150800E7685A62012318461C37BD4680BC704700BF4D -S3150800E7780064004080B584B000AF78607B6893F881 -S3150800E7882030DBB2012B2ED17B68022283F82020A9 -S3150800E7987B681B681A687B681B6822F001021A6086 -S3150800E7A8FFF7D8F8F86012E0FFF7D4F80246FB68D6 -S3150800E7B8D31A0A2B0BD97B685B6A43F400327B6849 -S3150800E7C85A627B68052283F82020012312E07B68B9 -S3150800E7D81B685B6803F00103002BE5D17B68002200 -S3150800E7E85A62002306E07B685B6A43F400227B686A -S3150800E7F85A62012318461037BD4680BD80B584B0D5 -S3150800E80800AF78607B6893F82030DBB2022B33D1EF -S3150800E8187B681B681A687B681B6842F001021A60E5 -S3150800E828FFF798F8F86012E0FFF794F80246FB68D5 -S3150800E838D31A0A2B0BD97B685B6A43F400327B68C8 -S3150800E8485A627B68052283F8202001231BE07B682F -S3150800E8581B685B6803F00103002BE5D07B681B681F -S3150800E8681A687B681B6822F002021A607B68012214 -S3150800E87883F82020002306E07B685B6A43F480124D -S3150800E8887B685A62012318461037BD4680BD80B496 -S3150800E89889B000AFF860B9607A603B60FB6893F8A6 -S3150800E8A82030FB77FB681B689B68BB61FB7F012BE5 -S3150800E8B803D0FB7F022B40F0AD80BB6903F0806371 -S3150800E8C8002B0AD1BB6903F00063002B05D1BB698D -S3150800E8D803F08053002B00F09580BB691B0E03F0EC -S3150800E8E803037B6101227B699A403B681A60BB680F -S3150800E8F89B68002B0DD1BB681B685A05BB68DB688B -S3150800E908F96809681A437B6918331B010B441A60AE -S3150800E9180FE0BB685B68DA00BB689B681A43BB688C -S3150800E928DB68F96809681A437B6918331B010B44C5 -S3150800E9381A60FB681968BB681A697B6918331B0172 -S3150800E9480B4404331A60BB681B7D012B11D1FB6885 -S3150800E9581A687B6918331B01134404331B68FA6861 -S3150800E968116843F480727B6918331B010B4404331E -S3150800E9781A607B6807331B781A067B6806331B7888 -S3150800E9881B041A437B6805331B781B0213437A68F2 -S3150800E998043212781046FA68116843EA00027B695D -S3150800E9A81B010B4403F5C6731A607B6803331B788F -S3150800E9B81A067B6802331B781B041A437B680133E3 -S3150800E9C81B781B0213437A6812781046FA6811688E -S3150800E9D843EA00027B691B010B4403F5C4731A60FA -S3150800E9E8FB681A687B6918331B0113441B68FA68A5 -S3150800E9F8116843F001027B6918331B010B441A603E -S3150800EA0800230EE0FB685B6A43F40012FB685A624F -S3150800EA18012306E0FB685B6A43F48022FB685A62B6 -S3150800EA28012318462437BD4680BC704780B485B094 -S3150800EA3800AF78600023FB607B6893F82030FB7290 -S3150800EA48FB7A012B02D0FB7A022B1DD17B681B6847 -S3150800EA589B6803F08063002B02D0FB680133FB60D8 -S3150800EA687B681B689B6803F00063002B02D0FB6871 -S3150800EA780133FB607B681B689B6803F08053002B97 -S3150800EA8802D0FB680133FB60FB6818461437BD469D -S3150800EA9880BC704780B487B000AFF860B9607A6008 -S3150800EAA83B60FB6893F82030FB75FB7D012B03D090 -S3150800EAB8FB7D022B40F00381BB68002B0ED1FB6857 -S3150800EAC81B68DB6803F00303002B16D1FB685B6A37 -S3150800EAD843F40012FB685A620123F7E0FB681B68D7 -S3150800EAE81B6903F00303002B07D1FB685B6A43F431 -S3150800EAF80012FB685A620123E8E0FB681A68BB68DB -S3150800EB081B331B0113441B6803F004027B689A60D5 -S3150800EB187B689B68002B0CD1FB681A68BB681B339B -S3150800EB281B0113441B685B0DC3F30A027B681A6052 -S3150800EB380BE0FB681A68BB681B331B0113441B6888 -S3150800EB48DB0823F060427B685A60FB681A68BB6872 -S3150800EB581B331B0113441B6803F002027B68DA6047 -S3150800EB68FB681A68BB681B331B01134404331B680C -S3150800EB7803F00803002B03D07B6808221A610BE010 -S3150800EB88FB681A68BB681B331B01134404331B68EC -S3150800EB9803F00F027B681A61FB681A68BB681B33A7 -S3150800EBA81B01134404331B681B0ADAB27B689A6193 -S3150800EBB8FB681A68BB681B331B01134404331B68BC -S3150800EBC81B0C9AB27B685A61FB681A68BB681B01FA -S3150800EBD8134403F5DC731B68DAB23B681A70FB68E2 -S3150800EBE81A68BB681B01134403F5DC731B681A0A09 -S3150800EBF83B680133D2B21A70FB681A68BB681B01F6 -S3150800EC08134403F5DC731B681A0C3B680233D2B24B -S3150800EC181A70FB681A68BB681B01134403F5DC7392 -S3150800EC281B681A0E3B680333D2B21A70FB681A6857 -S3150800EC38BB681B01134403F5DE731A683B68043383 -S3150800EC48D2B21A70FB681A68BB681B01134403F52D -S3150800EC58DE731B681A0A3B680533D2B21A70FB685A -S3150800EC681A68BB681B01134403F5DE731B681A0C84 -S3150800EC783B680633D2B21A70FB681A68BB681B0170 -S3150800EC88134403F5DE731B681A0E3B680733D2B2C2 -S3150800EC981A70BB68002B08D1FB681B68DA68FB6822 -S3150800ECA81B6842F02002DA6007E0FB681B681A69ED -S3150800ECB8FB681B6842F020021A61002306E0FB681D -S3150800ECC85B6A43F48022FB685A62012318461C379C -S3150800ECD8BD4680BC704780B485B000AF786039609F -S3150800ECE87B6893F82030FB73FB7B012B02D0FB7BF8 -S3150800ECF8022B09D17B681B6859697B681B683A68C7 -S3150800ED080A435A61002306E07B685B6A43F480225B -S3150800ED187B685A62012318461437BD4680BC70477B -S3150800ED2880B58AB000AF786000237B627B681B6871 -S3150800ED385B693B627B681B685B68FB617B681B6871 -S3150800ED489B68BB617B681B68DB687B617B681B68A3 -S3150800ED581B693B617B681B689B69FB603B6A03F020 -S3150800ED680103002B7CD0BB6903F00103002B23D0D9 -S3150800ED787B681B6801229A60BB6903F00203002BB3 -S3150800ED8803D0786800F083F916E0BB6903F004033A -S3150800ED98002B04D07B6A43F400637B620CE0BB69F2 -S3150800EDA803F00803002B04D07B6A43F480537B6284 -S3150800EDB802E0786800F086F9BB6903F48073002BD3 -S3150800EDC824D07B681B684FF480729A60BB6903F489 -S3150800EDD80073002B03D0786800F062F916E0BB6967 -S3150800EDE803F48063002B04D07B6A43F400537B62E8 -S3150800EDF80CE0BB6903F40063002B04D07B6A43F478 -S3150800EE0880437B6202E0786800F065F9BB6903F421 -S3150800EE188033002B24D07B681B684FF480329A60B5 -S3150800EE28BB6903F40033002B03D0786800F041F976 -S3150800EE3816E0BB6903F48023002B04D07B6A43F4ED -S3150800EE4800437B620CE0BB6903F40023002B04D063 -S3150800EE587B6A43F480337B6202E0786800F044F901 -S3150800EE683B6A03F00803002B0CD07B6903F01003F8 -S3150800EE78002B07D07B6A43F400737B627B681B68A8 -S3150800EE881022DA603B6A03F00403002B0BD07B6977 -S3150800EE9803F00803002B06D07B681B680822DA6093 -S3150800EEA8786800F033F93B6A03F00203002B09D0AF -S3150800EEB87B681B68DB6803F00303002B02D07868BD -S3150800EEC800F01BF93B6A03F04003002B0CD03B69A2 -S3150800EED803F01003002B07D07B6A43F480637B6238 -S3150800EEE87B681B6810221A613B6A03F02003002B13 -S3150800EEF80BD03B6903F00803002B06D07B681B6818 -S3150800EF0808221A61786800F00AF93B6A03F01003C8 -S3150800EF18002B09D07B681B681B6903F00303002BC9 -S3150800EF2802D07868FBF7F6FD3B6A03F40033002B3A -S3150800EF380BD0FB6903F01003002B06D07B681B680F -S3150800EF4810225A60786800F0F3F83B6A03F48033B5 -S3150800EF58002B0BD0FB6903F00803002B06D07B684F -S3150800EF681B6808225A60786800F0EBF83B6A03F4D5 -S3150800EF780043002B7BD0FB6903F00403002B72D0F7 -S3150800EF883B6A03F48073002B08D0FB6803F001037F -S3150800EF98002B03D07B6A43F001037B623B6A03F4C8 -S3150800EFA80073002B08D0FB6803F00203002B03D07C -S3150800EFB87B6A43F002037B623B6A03F48063002B97 -S3150800EFC808D0FB6803F00403002B03D07B6A43F0E0 -S3150800EFD804037B623B6A03F40063002B43D0FB6897 -S3150800EFE803F07003002B3ED0FB6803F07003602B18 -S3150800EFF82BD0602B2ED8502B22D0502B2AD8402B1A -S3150800F00819D0402B26D8302B10D0302B22D8102BCD -S3150800F01802D0202B05D01DE07B6A43F008037B62EB -S3150800F02819E07B6A43F010037B6214E07B6A43F0BD -S3150800F03820037B620FE07B6A43F040037B620AE0A9 -S3150800F0487B6A43F080037B6205E07B6A43F480733E -S3150800F0587B6200E000BF7B681B689A697B681B684F -S3150800F06822F070029A617B681B6804225A607B6AE0 -S3150800F078002B08D07B685A6A7B6A1A437B685A62EF -S3150800F088786800F067F800BF2837BD4680BD80B4A9 -S3150800F09883B000AF786000BF0C37BD4680BC7047A8 -S3150800F0A880B483B000AF786000BF0C37BD4680BC1B -S3150800F0B8704780B483B000AF786000BF0C37BD4690 -S3150800F0C880BC704780B483B000AF786000BF0C3747 -S3150800F0D8BD4680BC704780B483B000AF786000BF77 -S3150800F0E80C37BD4680BC704780B483B000AF7860E3 -S3150800F0F800BF0C37BD4680BC704780B483B000AFEC -S3150800F108786000BF0C37BD4680BC704780B483B0B2 -S3150800F11800AF786000BF0C37BD4680BC704780B426 -S3150800F12883B000AF786000BF0C37BD4680BC704717 -S3150800F13880B483B000AF786000BF0C37BD4680BC8A -S3150800F148704780B483B000AF786000BF0C37BD46FF -S3150800F15880BC704780B483B000AF786000BF0C37B6 -S3150800F168BD4680BC7047000080B485B000AF7860A3 -S3150800F1787B6803F00703FB600C4BDB68BB60BA6867 -S3150800F1884FF6FF031340BB60FB681A02BB681343BC -S3150800F19843F0BF6343F40033BB60044ABB68D360DB -S3150800F1A800BF1437BD4680BC704700BF00ED00E0BD -S3150800F1B880B400AF044BDB681B0A03F00703184644 -S3150800F1C8BD4680BC704700BF00ED00E080B483B040 -S3150800F1D800AF0346FB7197F90730002B0BDBFB7969 -S3150800F1E803F01F02064997F907305B09012000FA60 -S3150800F1F802F241F8232000BF0C37BD4680BC704791 -S3150800F20800E100E080B483B000AF03463960FB71C3 -S3150800F21897F90730002B0ADB3B68DAB20C4997F9ED -S3150800F22807301201D2B20B4483F800230AE03B6880 -S3150800F238DAB20849FB7903F00F03043B1201D2B28C -S3150800F2480B441A7600BF0C37BD4680BC704700BF12 -S3150800F25800E100E000ED00E080B489B000AFF86096 -S3150800F268B9607A60FB6803F00703FB61FB69C3F1C1 -S3150800F2780703042B28BF0423BB61FB690433062B49 -S3150800F28802D9FB69033B00E000237B614FF0FF329C -S3150800F298BB6902FA03F3DA43BB681A407B699A40EA -S3150800F2A84FF0FF317B6901FA03F3D9437B680B40BA -S3150800F2B8134318462437BD4680BC704780B582B0CC -S3150800F2C800AF78607B68013BB3F1807F01D30123E7 -S3150800F2D80FE00A4A7B68013B53600F214FF0FF3065 -S3150800F2E8FFF790FF054B00229A60044B07221A6025 -S3150800F2F8002318460837BD4680BD00BF10E000E069 -S3150800F30880B582B000AF78607868FFF72DFF00BF38 -S3150800F3180837BD4680BD80B586B000AF0346B960DC -S3150800F3287A60FB7300237B61FFF742FF78617A688E -S3150800F338B9687869FFF790FF024697F90F301146C2 -S3150800F3481846FFF75FFF00BF1837BD4680BD80B572 -S3150800F35882B000AF0346FB7197F907301846FFF7E6 -S3150800F36835FF00BF0837BD4680BD80B582B000AFFF -S3150800F37878607868FFF7A2FF034618460837BD463F -S3150800F38880BD80B582B000AF78607B68002B01D15C -S3150800F39801230EE07B685B79DBB2002B05D17B681D -S3150800F3A800221A717868FAF761FF7B6801225A7198 -S3150800F3B8002318460837BD4680BD80B485B000AF1F -S3150800F3C878600023FB737B6893F82130DBB2022B45 -S3150800F3D808D07B6804229A637B68002283F8202079 -S3150800F3E8012320E07B681B681A687B681B6822F083 -S3150800F3F80E021A607B681B681A687B681B6822F00D -S3150800F40801021A607B681A6C7B68DB6B012101FABA -S3150800F41802F25A607B68012283F821207B68002261 -S3150800F42883F82020FB7B18461437BD4680BC7047F6 -S3150800F43880B584B000AF78600023FB737B6893F8C7 -S3150800F4482130DBB2022B05D07B6804229A6301239C -S3150800F458FB73D6E07B681B681A687B681B6822F012 -S3150800F4680E021A607B681B681A687B681B6822F09C -S3150800F47801021A607B681B681A46644B9A4258D977 -S3150800F4887B681B68624A93424FD07B681B68614A4F -S3150800F498934248D07B681B685F4A934240D07B6892 -S3150800F4A81B685E4A934238D07B681B685C4A93425D -S3150800F4B830D07B681B685B4A934228D07B681B68F8 -S3150800F4C8524A934220D07B681B68574A934219D000 -S3150800F4D87B681B68554A934212D07B681B68544A56 -S3150800F4E893420AD07B681B68524A934202D14FF46A -S3150800F4F880531BE04FF4803318E04FF4807315E00F -S3150800F508102313E0012311E04FF080730EE04FF447 -S3150800F51880130BE04FF4803308E04FF4805305E07E -S3150800F5284FF4807302E0102300E00123424A536037 -S3150800F53857E07B681B68364A93424FD07B681B683E -S3150800F548344A934248D07B681B68334A934240D072 -S3150800F5587B681B68314A934238D07B681B68304AF7 -S3150800F568934230D07B681B682E4A934228D07B6822 -S3150800F5781B68264A934220D07B681B682A4A93420E -S3150800F58819D07B681B68294A934212D07B681B6886 -S3150800F598274A93420AD07B681B68264A934202D1B7 -S3150800F5A84FF480531BE04FF4803318E04FF4807310 -S3150800F5B815E0102313E0012311E04FF080730EE0E5 -S3150800F5C84FF480130BE04FF4803308E04FF4805370 -S3150800F5D805E04FF4807302E0102300E00123174A80 -S3150800F5E853607B68012283F821207B68002283F810 -S3150800F5F820207B685B6B002B03D07B685B6B786885 -S3150800F6089847FB7B18461037BD4680BD80000240E8 -S3150800F618080002401C000240300002404400024034 -S3150800F628580002406C000240080402401C040240CC -S3150800F638300402404404024000040240000002402C -S3150800F64880B48BB000AF7860396000237B620023F2 -S3150800F6583B6269E101227B6A02FA03F3FB613B68B4 -S3150800F6681B68FA691340BB61BA69FB699A4240F09C -S3150800F67858813B685B689A4A93425ED0984A934297 -S3150800F68875D8984A934258D0964A93426FD8964A5C -S3150800F698934252D0944A934269D8944A93424CD09A -S3150800F6A8924A934263D8924A934246D0904A9342E2 -S3150800F6B85DD8122B2AD8122B59D801A252F823F052 -S3150800F6C843F700081DF700082FF7000871F7000828 -S3150800F6D877F7000877F7000877F7000877F700083C -S3150800F6E877F7000877F7000877F7000877F700082C -S3150800F6F877F7000877F7000877F7000877F700081C -S3150800F70877F7000825F7000839F70008794A934279 -S3150800F71813D02CE03B68DB683B6229E03B68DB6872 -S3150800F72804333B6224E03B68DB6808333B621FE02E -S3150800F7383B68DB680C333B621AE03B689B68002B26 -S3150800F74802D104233B6213E03B689B68012B05D171 -S3150800F75808233B627B68FA691A6109E008233B6259 -S3150800F7687B68FA695A6103E000233B6200E000BF40 -S3150800F778BB69FF2B01D87B6801E07B6804337B6192 -S3150800F788BB69FF2B02D87B6A9B0002E07B6A083BB1 -S3150800F7989B003B617B691A680F213B6901FA03F3F1 -S3150800F7A8DB431A40396A3B6901FA03F31A437B6952 -S3150800F7B81A603B685B6803F08053002B00F0B18041 -S3150800F7C84D4B9B694C4A43F0010393614A4B9B692D -S3150800F7D803F00103BB60BB68484A7B6A9B0802338F -S3150800F7E852F82330FB607B6A03F003039B000F2261 -S3150800F7F802FA03F3DB43FA681340FB607B68404A66 -S3150800F808934213D07B683F4A93420DD07B683E4AA1 -S3150800F818934207D07B683D4A934201D1032306E009 -S3150800F828042304E0022302E0012300E000237A6AA5 -S3150800F83802F0030292009340FA681343FB602F49CB -S3150800F8487B6A9B080233FA6841F823203B685B68A1 -S3150800F85803F48013002B06D02D4B9A682C49BB69F4 -S3150800F86813438B6006E02A4B9A68BB69DB43284931 -S3150800F87813408B603B685B6803F40013002B06D0C3 -S3150800F888234BDA682249BB691343CB6006E0204B51 -S3150800F898DA68BB69DB431E491340CB603B685B6883 -S3150800F8A803F40033002B06D0194B5A681849BB696C -S3150800F8B813434B6006E0164B5A68BB69DB43144989 -S3150800F8C813404B603B685B6803F48033002B21D0F8 -S3150800F8D80F4B1A680E49BB6913430B6021E000BF3A -S3150800F8E8000032100000311000002210000021101C -S3150800F8F8000012100000111000100240000001401C -S3150800F90800080140000C01400010014000140140A5 -S3150800F918000401400B4B1A68BB69DB4309491340CD -S3150800F9280B607B6A01337B623B681A687B6A22FA3A -S3150800F93803F3002B7FF48EAE00BF00BF2C37BD46FD -S3150800F94880BC70470004014080B485B000AF786079 -S3150800F9580B467B807B689A687B881340002B02D00D -S3150800F9680123FB7301E00023FB73FB7B184614375E -S3150800F978BD4680BC704780B483B000AF78600B463C -S3150800F9887B8013467B707B78002B03D07A887B684C -S3150800F9981A6103E07B881A047B681A6100BF0C3772 -S3150800F9A8BD4680BC7047000080B400AF034B0122F7 -S3150800F9B81A6000BFBD4680BC704700BF20000E42D3 -S3150800F9C880B582B000AFFDF7C5FF7860604B1B684D -S3150800F9D85F4A43F00103136008E0FDF7BBFF0246E0 -S3150800F9E87B68D31A022B01D90323ACE0584B1B6852 -S3150800F9F803F00203002BF0D0554B1B6823F0F803DD -S3150800FA08534A43F080031360FDF7A4FF7860504B10 -S3150800FA1800225A600AE0FDF79DFF02467B68D31A62 -S3150800FA2841F28832934201D903238CE0484B5B683C -S3150800FA3803F00C03002BEED1464B474A1A60474B96 -S3150800FA481B681846FDF744FF0346002B01D001231F -S3150800FA5879E0FDF77FFF78603D4B1B683C4A23F049 -S3150800FA688073136008E0FDF775FF02467B68D31AB2 -S3150800FA78022B01D9032366E0354B1B6803F0007394 -S3150800FA88002BF0D1324B00225A60FDF763FF7860ED -S3150800FA982F4B1B682E4A23F41023136008E0FDF742 -S3150800FAA859FF02467B68D31A642B01D903234AE017 -S3150800FAB8274B1B6803F40033002BF0D1244B1B6833 -S3150800FAC8234A23F480231360FDF744FF7860204B0C -S3150800FAD81B681F4A23F08063136008E0FDF73AFFA6 -S3150800FAE802467B68D31A642B01D903232BE0184BEB -S3150800FAF81B6803F00063002BF0D1FDF72BFF786035 -S3150800FB08134B1B68124A23F08053136008E0FDF76D -S3150800FB1821FF02467B68D31A642B01D9032312E016 -S3150800FB280B4B1B6803F00053002BF0D1084B00223F -S3150800FB38DA62074B5B6A064A43F080735362044BE2 -S3150800FB4800229A60002318460837BD4680BD00BFC4 -S3150800FB58001002406C00002000127A007000002095 -S3150800FB6880B586B000AF78607B68002B01D1012389 -S3150800FB7804E37B681B6803F00103002B00F0878009 -S3150800FB88924B5B6803F00C03042B0CD08F4B5B6815 -S3150800FB9803F00C03082B12D18C4B5B6803F48033F3 -S3150800FBA8B3F5803F0BD1894B1B6803F40033002B50 -S3150800FBB86CD07B689B68002B68D10123DEE27B68E2 -S3150800FBC89B68B3F5803F06D1804B1B687F4A43F490 -S3150800FBD8803313602EE07B689B68002B0CD17B4B27 -S3150800FBE81B687A4A23F480331360784B1B68774A74 -S3150800FBF823F4802313601DE07B689B68B3F5A02F68 -S3150800FC080CD1724B1B68714A43F4802313606F4BFF -S3150800FC181B686E4A43F4803313600BE06B4B1B6812 -S3150800FC286A4A23F480331360684B1B68674A23F4CF -S3150800FC38802313607B689B68002B13D0FDF78AFE28 -S3150800FC48386108E0FDF786FE02463B69D31A642B3D -S3150800FC5801D9032392E25D4B1B6803F40033002B9A -S3150800FC68F0D014E0FDF776FE386108E0FDF772FE7D -S3150800FC7802463B69D31A642B01D903237EE2534B08 -S3150800FC881B6803F40033002BF0D100E000BF7B6843 -S3150800FC981B6803F00203002B63D04C4B5B6803F028 -S3150800FCA80C03002B0BD0494B5B6803F00C03082B9D -S3150800FCB81CD1464B5B6803F48033002B16D1434BA3 -S3150800FCC81B6803F00203002B05D07B685B69012BD0 -S3150800FCD801D0012352E23D4B1B6823F0F8027B68EA -S3150800FCE89B69DB00394913430B603AE07B685B691B -S3150800FCF8002B20D0364B01221A60FDF72BFE3861FF -S3150800FD0808E0FDF727FE02463B69D31A022B01D9FC -S3150800FD18032333E22D4B1B6803F00203002BF0D0B4 -S3150800FD282A4B1B6823F0F8027B689B69DB00274986 -S3150800FD3813430B6015E0264B00221A60FDF70AFEEE -S3150800FD48386108E0FDF706FE02463B69D31A022B1E -S3150800FD5801D9032312E21D4B1B6803F00203002B8B -S3150800FD68F0D17B681B6803F00803002B3AD07B6840 -S3150800FD78DB69002B19D0174B01221A60FDF7EAFD3B -S3150800FD88386108E0FDF7E6FD02463B69D31A022BFF -S3150800FD9801D90323F2E10D4B5B6A03F00203002B3A -S3150800FDA8F0D0012000F0CAFB1CE00A4B00221A60BA -S3150800FDB8FDF7D0FD38610FE0FDF7CCFD02463B693B -S3150800FDC8D31A022B08D90323D8E100BF0010024032 -S3150800FDD800004242800442429B4B5B6A03F00203DE -S3150800FDE8002BE9D17B681B6803F00403002B00F09D -S3150800FDF8A6800023FB75944BDB6903F08053002B20 -S3150800FE080DD1914BDB69904A43F08053D3618E4BF1 -S3150800FE18DB6903F08053BB60BB680123FB758B4B1A -S3150800FE281B6803F48073002B18D1884B1B68874A14 -S3150800FE3843F480731360FDF78DFD386108E0FDF71C -S3150800FE4889FD02463B69D31A642B01D9032395E138 -S3150800FE587E4B1B6803F48073002BF0D07B681B6904 -S3150800FE68012B06D1784B1B6A774A43F001031362C4 -S3150800FE782DE07B681B69002B0CD1734B1B6A724AF1 -S3150800FE8823F001031362704B1B6A6F4A23F00403BD -S3150800FE9813621CE07B681B69052B0CD16A4B1B6A2D -S3150800FEA8694A43F004031362674B1B6A664A43F0C0 -S3150800FEB8010313620BE0644B1B6A634A23F00103D0 -S3150800FEC81362614B1B6A604A23F0040313627B685A -S3150800FED81B69002B15D0FDF73DFD38610AE0FDF7D3 -S3150800FEE839FD02463B69D31A41F28832934201D951 -S3150800FEF8032343E1544B1B6A03F00203002BEED09D -S3150800FF0814E0FDF727FD38610AE0FDF723FD0246F0 -S3150800FF183B69D31A41F28832934201D903232DE16A -S3150800FF28494B1B6A03F00203002BEED1FB7D012B1C -S3150800FF3805D1454BDB69444A23F08053D3617B6876 -S3150800FF48DB6A002B00F08C803F4B5B6803F4803338 -S3150800FF58B3F5803F0ED13C4B5B6803F00C03082BC6 -S3150800FF6808D1394BDB6A03F48033B3F5803F01D1F6 -S3150800FF78012303E17B68DB6A022B4ED1324B1B68EF -S3150800FF8803F08053002B09D02F4BDB6A03F0F002ED -S3150800FF987B685B6B9A4201D00123EFE02C4B002269 -S3150800FFA81A60FDF7D7FC386108E0FDF7D3FC02466E -S3150800FFB83B69D31A642B01D90323DFE0224B1B685C -S3150800FFC803F00063002BF0D11F4BDB6A23F0F00225 -S3150800FFD87B685B6B1C491343CB621B4BDB6A23F4B8 -S3150800FFE870627B681B6B18491343CB62184B012256 -S3150800FFF81A60FDF7AFFC386108E0FDF7ABFC02466E -S315080100083B69D31A642B01D90323B7E00E4B1B6846 -S3150801001803F00063002BF0D022E00B4BDB6A0A4A97 -S3150801002823F48033D3620A4B00221A60FDF792FC47 -S3150801003838610FE0FDF78EFC02463B69D31A642B3B -S3150801004808D903239AE000BF001002400070004057 -S31508010058680042424B4B1B6803F00063002BE9D149 -S315080100687B681B6A002B00F08880464B5B6803F0A7 -S315080100780C03082B68D07B681B6A022B4DD1424BAF -S3150801008800221A60FDF766FC386108E0FDF762FC94 -S3150801009802463B69D31A022B01D903236EE0394B71 -S315080100A81B6803F00073002BF0D17B685B6AB3F514 -S315080100B8803F0FD1334BDA6A7B685B683149134352 -S315080100C8CB62304BDB6A23F00F027B68DB682D496C -S315080100D81343CB622B4B5B6823F474127B68596A0A -S315080100E87B689B6A0B43274913434B60264B0122BE -S315080100F81A60FDF72FFC386108E0FDF72BFC02466C -S315080101083B69D31A022B01D9032337E01D4B1B6818 -S3150801011803F00073002BF0D02FE01B4B00221A6066 -S31508010128FDF718FC386108E0FDF714FC02463B693F -S31508010138D31A022B01D9032320E0124B1B6803F0BB -S315080101480073002BF0D118E07B681B6A012B01D1DB -S31508010158012313E00B4B5B68FB60FB6803F48032F1 -S315080101687B685B6A9A4206D1FB6803F470127B685E -S315080101789B6A9A4201D0012300E0002318461837E2 -S31508010188BD4680BD001002406000424280B584B079 -S3150801019800AF786039607B68002B01D10123D0E074 -S315080101A86A4B1B6803F007033A689A4210D9674BEA -S315080101B81B6823F0070265493B6813430B60634BC9 -S315080101C81B6803F007033A689A4201D00123B8E08D -S315080101D87B681B6803F00203002B20D07B681B6829 -S315080101E803F00403002B05D0594B5B68584A43F4BE -S315080101F8E06353607B681B6803F00803002B05D08E -S31508010208534B5B68524A43F460535360504B5B68DF -S3150801021823F0F0027B689B684D4913434B607B6862 -S315080102281B6803F00103002B40D07B685B68012B30 -S3150801023807D1474B1B6803F40033002B15D101235B -S315080102487FE07B685B68022B07D1414B1B6803F08B -S315080102580073002B09D1012373E03D4B1B6803F09A -S315080102680203002B01D101236BE0394B5B6823F0AC -S3150801027803027B685B68364913434B60FDF76AFBE3 -S31508010288F8600AE0FDF766FB0246FB68D31A41F2F5 -S315080102988832934201D9032353E02D4B5B6803F057 -S315080102A80C027B685B689B009A42EBD1274B1B685B -S315080102B803F007033A689A4210D2244B1B6823F0C5 -S315080102C8070222493B6813430B60204B1B6803F05E -S315080102D807033A689A4201D0012332E07B681B6812 -S315080102E803F00403002B08D0194B5B6823F4E0627A -S315080102F87B68DB68164913434B607B681B6803F008 -S315080103080803002B09D0124B5B6823F460527B68FB -S315080103181B69DB000E4913434B6000F021F80246BE -S315080103280B4B5B681B0903F00F030A49CB5C22FADE -S3150801033803F3094A1360094B1B681846FDF7C8FAFF -S31508010348002318461037BD4680BD00BF002002406D -S3150801035800100240244401086C00002070000020A7 -S315080103682DE9B04F8EB000AF0023FB620023BB62B4 -S3150801037800237B6300237B6200233B6300233B62E4 -S315080103880023FB614E4B5B68FB62FB6A03F00C03B7 -S31508010398042B02D0082B03D089E04A4B3B6389E03A -S315080103A8FB6A9B0C03F00F02474B9B5C7B62FB6A5B -S315080103B803F48033002B72D0414BDB6A03F00F023A -S315080103C8424B9B5CBB623E4BDB6A03F48033002BD2 -S315080103D853D03B4BDB6A1B0903F00F0301333B621E -S315080103E8374BDB6A1B0A03F00F030233FB61FB6910 -S315080103F800229A4693467B6A00223B617A613B69E9 -S3150801040803FB0BF27B690AFB03F313443A69AAFB5C -S3150801041802010B4419462B4B03FB01F2002300FB8F -S3150801042803F31344274AA0FB02452B441D463B6A9E -S315080104380022BB60FA60BB6A00223B607A60D7E992 -S3150801044802010B46D7E900AB524602FB03F25B46AB -S3150801045884460CFB03F3134402465146A2FB018961 -S315080104684B44994642464B4620462946F8F7F0FD3D -S3150801047802460B4613467B6307E07B6A114A03FB70 -S3150801048802F2BB6AB2FBF3F37B630F4B5B7B1A463B -S315080104987B6A934208D17B6B5B087B6304E07B6AC2 -S315080104A80B4A02FB03F37B637B6B3B6302E0094B55 -S315080104B83B6300BF3B6B18463837BD46BDE8B08F6E -S315080104C80010024040787D013C4401084C4401086B -S315080104D800093D0000127A0080B400AF024B1B6880 -S315080104E81846BD4680BC70476C00002080B500AF31 -S315080104F8FFF7F2FF0246054B5B681B0A03F0070381 -S315080105080349CB5C22FA03F3184680BD0010024062 -S315080105183444010880B500AFFFF7DEFF0246054BF4 -S315080105285B68DB0A03F007030349CB5C22FA03F38A -S31508010538184680BD001002403444010880B485B0CD -S3150801054800AF78600A4B1B680A4AA2FB03235B0AB9 -S315080105587A6802FB03F3FB6000BFFB685A1EFA6060 -S31508010568002BF9D100BF00BF1437BD4680BC7047C0 -S315080105786C000020D34D621080B588B000AF786052 -S3150801058800237B6100233B610023FB617B681B68B1 -S3150801059803F00103002B7DD00023FB768B4BDB6927 -S315080105A803F08053002B0DD1884BDB69874A43F04A -S315080105B88053D361854BDB6903F08053FB60FB6885 -S315080105C80123FB76824B1B6803F48073002B18D131 -S315080105D87F4B1B687E4A43F480731360FDF7BAF9AB -S315080105E8786108E0FDF7B6F902467B69D31A642BE8 -S315080105F801D90323E5E0764B1B6803F48073002BC6 -S31508010608F0D0724B1B6A03F440733B613B69002BBC -S315080106182ED07B685B6803F440733A699A4227D0FF -S315080106286A4B1B6A23F440733B616A4B01221A60C1 -S31508010638684B00221A60654A3B6913623B6903F0F5 -S315080106480103002B14D0FDF785F978610AE0FDF757 -S3150801065881F902467B69D31A41F28832934201D954 -S315080106680323AEE0594B1B6A03F00203002BEED0B5 -S31508010678564B1B6A23F440727B685B6853491343DC -S315080106880B62FB7E012B05D1504BDB694F4A23F0E0 -S315080106988053D3617B681B6803F00203002B08D0DB -S315080106A84A4B5B6823F440427B689B684749134376 -S315080106B84B607B681B6803F00403002B08D0434B87 -S315080106C8DB6A23F400327B68DB6840491343CB6253 -S315080106D87B681B6803F00803002B08D03B4BDB6AD1 -S315080106E823F480227B681B6938491343CB62374B4D -S315080106F8DB6A03F40033002B05D1344BDB6A03F4B8 -S315080107088023002B01D00123FB61FB69012B48D10A -S315080107182E4B1B6803F08053002B38D12B4B1B68D3 -S3150801072803F08063002B09D0284BDB6A03F0F0023B -S315080107387B689B699A4201D0012342E0234BDB6A15 -S3150801074823F0F0027B689B6920491343CB621F4B50 -S31508010758DB6A23F470427B685B691C491343CB62E5 -S315080107681D4B01221A60FDF7F5F8786108E0FDF7D7 -S31508010778F1F802467B69D31A642B01D9032320E0D1 -S31508010788124B1B6803F00053002BF0D009E00F4BFE -S31508010798DB6A03F470427B685B699A4201D00123DC -S315080107A80FE07B681B6803F01003002B08D0074B82 -S315080107B85B6823F480027B68DB69044913434B6051 -S315080107C8002318462037BD4680BD00BF00100240E9 -S315080107D800700040400442427000424280B58AB027 -S315080107E800AF78600023FB6100237B620023BB61AD -S315080107F800237B6100233B610023FB600023BB6068 -S3150801080800233B627B68013B0F2B00F21D8101A285 -S3150801081852F823F0D1090108350A0108510A0108D5 -S315080108282F090108510A0108510A0108510A010844 -S3150801083881090108510A0108510A0108510A0108E2 -S31508010848510A0108510A0108510A0108510A010801 -S315080108585D080108834B5B68BB60824B1B6803F024 -S315080108688073002B00F0F280BB689B0C03F00F0322 -S315080108787D4AD35CBB61BB6803F48033002B3BD04C -S31508010888784BDB6A03F00F03784AD35CFB61754B37 -S31508010898DB6A03F48033002B1CD0724BDB6A1B0915 -S315080108A803F00F030133FB606E4BDB6A1B0A03F087 -S315080108B80F0302337B616E4AFB68B2FBF3F37A696D -S315080108C803FB02F2FB69B2FBF3F2BB6902FB03F312 -S315080108D87B6207E0664AFB69B2FBF3F2BB6902FB76 -S315080108E803F37B62604B5B7B1A46BB69934208D16B -S315080108F87B6A5B087B6204E0BB695E4A02FB03F319 -S315080109087B62584B5B6803F48003B3F5800F02D109 -S315080109187B6A3B629AE07B6A5B00574AA2FB032320 -S315080109285B083B6292E04F4BDB6A03F40033002B0A -S3150801093803D1FFF715FD38628AE04A4B1B6803F0B5 -S315080109488053002B00F08480464BDB6A1B0903F0B1 -S315080109580F030133FB60434BDB6A1B0B03F00F03E1 -S3150801096802333B61424AFB68B2FBF3F33A6902FB7D -S3150801097803F35B003B626BE03A4BDB6A03F48023C3 -S31508010988002B03D1FFF7ECFC386263E0354B1B6893 -S3150801099803F08053002B5DD0324BDB6A1B0903F049 -S315080109A80F030133FB602F4BDB6A1B0B03F00F03A5 -S315080109B802333B612E4AFB68B2FBF3F33A6902FB41 -S315080109C803F35B003B6245E0264B1B6ABB60BB68C9 -S315080109D803F44073B3F5807F08D1BB6803F00203BB -S315080109E8002B03D04FF400433B621EE0BB6803F4B7 -S315080109F84073B3F5007F09D11A4B5B6A03F002030A -S31508010A08002B03D049F640433B620EE0BB6803F46A -S31508010A184073B3F5407F1FD1124B1B6803F40033AB -S31508010A28002B19D0154B3B6216E015E0FFF772FD4E -S31508010A3802460C4B5B689B0B03F0030301335B000F -S31508010A48B2FBF3F33B6208E000BF06E000BF04E02F -S31508010A5800BF02E000BF00E000BF3B6A184628371E -S31508010A68BD4680BD001002405C4401086C4401087B -S31508010A7840787D0100093D00ABAAAAAAF0FA02004E -S31508010A8880B584B000AF78600023FB607B68002BD3 -S31508010A9801D101237AE07B685B7CDBB2002B05D1A7 -S31508010AA87B6800221A747868FAF744FF7B68022281 -S31508010AB85A74786800F070F80346002B04D07B68EE -S31508010AC804225A74012361E0786800F092F8034613 -S31508010AD8002B04D07B6804225A74012356E07B68EC -S31508010AE81B685A687B681B6822F007025A607B688C -S31508010AF89B68002B05D0274B1B6B264A23F001035D -S31508010B081363244BDB6A23F460727B689B6821496B -S31508010B181343CB627B685B68B3F1FF3F03D07B68FD -S31508010B285B68FB600EE00120FFF758FEF860FB687A -S31508010B38002B04D17B6804225A74012326E0FB683A -S31508010B48013BFB60FB681A0C7B681B6802F00F0205 -S31508010B589A607B681B68FA6892B2DA60786800F06E -S31508010B6870F80346002B04D07B6804225A740123C3 -S31508010B780CE07B680022DA737B6801225A737B686A -S31508010B8801229A737B6801225A7400231846103782 -S31508010B98BD4680BD006C004080B584B000AF786062 -S31508010BA80023FB607B68002B01D101231DE07B68CC -S31508010BB81B685A687B681B6822F008025A60FCF7AA -S31508010BC8C9FEF86009E0FCF7C5FE0246FB68D31AB8 -S31508010BD8B3F57A7F01D9032307E07B681B685B684D -S31508010BE803F00803002BEED0002318461037BD463C -S31508010BF880BD80B584B000AF78600023FB60FCF740 -S31508010C08A9FEF86009E0FCF7A5FE0246FB68D31AB7 -S31508010C18B3F57A7F01D903230FE07B681B685B6804 -S31508010C2803F02003002BEED07B681B685A687B68A3 -S31508010C381B6842F010025A60002318461037BD4651 -S31508010C4880BD80B584B000AF78600023FB607B68FF -S31508010C581B685A687B681B6822F010025A60FCF701 -S31508010C6879FEF86009E0FCF775FE0246FB68D31AB7 -S31508010C78B3F57A7F01D9032307E07B681B685B68AC -S31508010C8803F02003002BEED0002318461037BD4683 -S31508010C9880BD80B582B000AF78607B68002B01D132 -S31508010CA8012341E07B6893F83D30DBB2002B06D17E -S31508010CB87B68002283F83C207868FCF73BFB7B6855 -S31508010CC8022283F83D207B681A687B680433194633 -S31508010CD8104600F0C3FC7B68012283F846207B682E -S31508010CE8012283F83E207B68012283F83F207B682E -S31508010CF8012283F840207B68012283F841207B681A -S31508010D08012283F842207B68012283F843207B6805 -S31508010D18012283F844207B68012283F845207B68F1 -S31508010D28012283F83D20002318460837BD4680BDB1 -S31508010D3880B584B000AF786039600023FB733B68DF -S31508010D48002B09D17B6893F83E30DBB2012B14BF1F -S31508010D5801230023DBB222E03B68042B09D17B6817 -S31508010D6893F83F30DBB2012B14BF01230023DBB212 -S31508010D7815E03B68082B09D17B6893F84030DBB24C -S31508010D88012B14BF01230023DBB208E07B6893F823 -S31508010D984130DBB2012B14BF01230023DBB2002B40 -S31508010DA801D00123AEE03B68002B04D17B680222FF -S31508010DB883F83E2013E03B68042B04D17B680222A2 -S31508010DC883F83F200BE03B68082B04D17B68022295 -S31508010DD883F8402003E07B68022283F841203B68B8 -S31508010DE80C2B41D801A252F823F000BF290E01089D -S31508010DF8710E0108710E0108710E01083B0E0108F2 -S31508010E08710E0108710E0108710E01084D0E0108CF -S31508010E18710E0108710E0108710E01085F0E0108AD -S31508010E287B681B68DA687B681B6842F00202DA602D -S31508010E381DE07B681B68DA687B681B6842F0040258 -S31508010E48DA6014E07B681B68DA687B681B6842F01D -S31508010E580802DA600BE07B681B68DA687B681B683E -S31508010E6842F01002DA6002E00123FB7300BFFB7B44 -S31508010E78002B46D17B681B6801223968184600F0A1 -S31508010E8883FE7B681B68214A934207D17B681B68E6 -S31508010E985A6C7B681B6842F400425A647B681B6873 -S31508010EA81A4A934213D07B681B68B3F1804F0ED058 -S31508010EB87B681B68164A934209D07B681B68154AE2 -S31508010EC8934204D07B681B68134A934211D17B6805 -S31508010ED81B689B6803F00703BB60BB68062B10D029 -S31508010EE87B681B681A687B681B6842F001021A60EE -S31508010EF807E07B681B681A687B681B6842F0010271 -S31508010F081A60FB7B18461037BD4680BD002C014088 -S31508010F180004004000080040000C004080B582B07B -S31508010F2800AF78607B68002B01D1012341E07B681B -S31508010F3893F83D30DBB2002B06D17B68002283F893 -S31508010F483C20786800F039F87B68022283F83D204E -S31508010F587B681A687B6804331946104600F07EFBDD -S31508010F687B68012283F846207B68012283F83E20A4 -S31508010F787B68012283F83F207B68012283F8402099 -S31508010F887B68012283F841207B68012283F8422085 -S31508010F987B68012283F843207B68012283F8442071 -S31508010FA87B68012283F845207B68012283F83D2066 -S31508010FB8002318460837BD4680BD80B483B000AF04 -S31508010FC8786000BF0C37BD4680BC704780B584B0D1 -S31508010FD800AF786039603B68002B09D17B6893F8C4 -S31508010FE83E30DBB2012B14BF01230023DBB222E01A -S31508010FF83B68042B09D17B6893F83F30DBB2012B98 -S3150801100814BF01230023DBB215E03B68082B09D17D -S315080110187B6893F84030DBB2012B14BF0123002308 -S31508011028DBB208E07B6893F84130DBB2012B14BFC9 -S3150801103801230023DBB2002B01D0012363E03B68BF -S31508011048002B04D17B68022283F83E2013E03B6813 -S31508011058042B04D17B68022283F83F200BE03B6806 -S31508011068082B04D17B68022283F8402003E07B68B9 -S31508011078022283F841207B681B68012239681846D1 -S3150801108800F082FD7B681B68214A934207D17B6879 -S315080110981B685A6C7B681B6842F400425A647B6871 -S315080110A81B681B4A934213D07B681B68B3F1804FB0 -S315080110B80ED07B681B68174A934209D07B681B6860 -S315080110C8154A934204D07B681B68144A934211D186 -S315080110D87B681B689B6803F00703FB60FB68062BA4 -S315080110E810D07B681B681A687B681B6842F0010286 -S315080110F81A6007E07B681B681A687B681B6842F0F8 -S3150801110801021A60002318461037BD4680BD00BF84 -S31508011118002C01400004004000080040000C004073 -S3150801112880B584B000AF78607B681B68DB68FB60B4 -S315080111387B681B681B69BB60BB6803F00203002B4D -S3150801114820D0FB6803F00203002B1BD07B681B68C1 -S315080111586FF002021A617B6801221A777B681B689D -S315080111689B6903F00303002B03D0786800F05AFA49 -S3150801117805E07868F9F73EF8786800F05CFA7B6864 -S3150801118800221A77BB6803F00403002B20D0FB68FA -S3150801119803F00403002B1BD07B681B686FF004025D -S315080111A81A617B6802221A777B681B689B6903F4B4 -S315080111B84073002B03D0786800F034FA05E07868A4 -S315080111C8F9F718F8786800F036FA7B6800221A7772 -S315080111D8BB6803F00803002B20D0FB6803F008035B -S315080111E8002B1BD07B681B686FF008021A617B68A5 -S315080111F804221A777B681B68DB6903F00303002B53 -S3150801120803D0786800F00EFA05E07868F8F7F2FF77 -S31508011218786800F010FA7B6800221A77BB6803F031 -S315080112281003002B20D0FB6803F01003002B1BD0FA -S315080112387B681B686FF010021A617B6808221A77A7 -S315080112487B681B68DB6903F44073002B03D0786855 -S3150801125800F0E8F905E07868F8F7CCFF786800F057 -S31508011268EAF97B6800221A77BB6803F00103002BA9 -S315080112780CD0FB6803F00103002B07D07B681B68B9 -S315080112886FF001021A61786800F0C3F9BB6803F0C8 -S315080112988003002B0CD0FB6803F08003002B07D0D2 -S315080112A87B681B686FF080021A61786800F0FFFC9A -S315080112B8BB6803F04003002B0CD0FB6803F040031E -S315080112C8002B07D07B681B686FF040021A617868A3 -S315080112D800F0BAF9BB6803F02003002B0CD0FB68B1 -S315080112E803F02003002B07D07B681B686FF02002E8 -S315080112F81A61786800F0D2FC00BF1037BD4680BD78 -S3150801130880B586B000AFF860B9607A600023FB75CE -S31508011318FB6893F83C30012B01D10223AEE0FB6848 -S31508011328012283F83C207B680C2B00F29F8001A2DE -S3150801133852F823F071130108751401087514010888 -S3150801134875140108B1130108751401087514010803 -S3150801135875140108F31301087514010875140108B1 -S315080113687514010833140108FB681B68B96818461F -S3150801137800F0ECF9FB681B689A69FB681B6842F080 -S3150801138808029A61FB681B689A69FB681B6822F060 -S3150801139804029A61FB681B689969BB681A69FB6844 -S315080113A81B680A439A6164E0FB681B68B9681846B2 -S315080113B800F032FAFB681B689A69FB681B6842F4F5 -S315080113C800629A61FB681B689A69FB681B6822F4C4 -S315080113D880629A61FB681B689969BB681B691A026E -S315080113E8FB681B680A439A6143E0FB681B68B9688E -S315080113F8184600F07BFAFB681B68DA69FB681B6804 -S3150801140842F00802DA61FB681B68DA69FB681B683F -S3150801141822F00402DA61FB681B68D969BB681A6994 -S31508011428FB681B680A43DA6123E0FB681B68B9682D -S31508011438184600F0C5FAFB681B68DA69FB681B6879 -S3150801144842F40062DA61FB681B68DA69FB681B68A3 -S3150801145822F48062DA61FB681B68D969BB681B6973 -S315080114681A02FB681B680A43DA6102E00123FB7565 -S3150801147800BFFB68002283F83C20FB7D1846183715 -S31508011488BD4680BD80B584B000AF78603960002359 -S31508011498FB737B6893F83C30012B01D10223B4E036 -S315080114A87B68012283F83C207B68022283F83D2069 -S315080114B87B681B689B68BB60BB6823F07703BB60C6 -S315080114C8BB6823F47F43BB607B681B68BA689A606C -S315080114D83B681B68B3F5005F3ED0B3F5005F00F2C1 -S315080114E88780B3F5805F00F08680B3F5805F7FD883 -S315080114F8702B1AD0702B7BD8602B50D0602B77D8DD -S31508011508502B3CD0502B73D8402B58D0402B6FD832 -S31508011518302B64D0302B6BD8202B60D0202B67D882 -S31508011528002B5CD0102B5AD062E07B6818683B68A0 -S3150801153899683B685A683B68DB6800F006FB7B6874 -S315080115481B689B68BB60BB6843F07703BB607B6815 -S315080115581B68BA689A604FE07B6818683B6899689F -S315080115683B685A683B68DB6800F0EFFA7B681B68DA -S315080115789A687B681B6842F480429A603CE07B68FB -S3150801158818683B6859683B68DB681A4600F066FACA -S315080115987B681B685021184600F0BDFA2CE07B6869 -S315080115A818683B6859683B68DB681A4600F084FA8C -S315080115B87B681B686021184600F0ADFA1CE07B6859 -S315080115C818683B6859683B68DB681A4600F046FAAA -S315080115D87B681B684021184600F09DFA0CE07B6879 -S315080115E81A683B681B681946104600F094FA03E026 -S315080115F80123FB7300E000BF7B68012283F83D20C5 -S315080116087B68002283F83C20FB7B18461037BD46C9 -S3150801161880BD80B483B000AF786000BF0C37BD4683 -S3150801162880BC704780B483B000AF786000BF0C37C0 -S31508011638BD4680BC704780B483B000AF786000BFF0 -S315080116480C37BD4680BC704780B483B000AF78605C -S3150801165800BF0C37BD4680BC7047000080B485B012 -S3150801166800AF786039607B681B68FB607B68334A22 -S3150801167893420FD07B68B3F1804F0BD07B68304A11 -S31508011688934207D07B682F4A934203D07B682E4A38 -S31508011698934208D1FB6823F07003FB603B685B68DB -S315080116A8FA681343FB607B68244A93420FD07B6828 -S315080116B8B3F1804F0BD07B68214A934207D07B68E8 -S315080116C8204A934203D07B681F4A934208D1FB6894 -S315080116D823F44073FB603B68DB68FA681343FB60D5 -S315080116E8FB6823F080023B685B691343FB607B68F0 -S315080116F8FA681A603B689A687B68DA623B681A680E -S315080117087B689A627B680D4A934203D13B681A69DA -S315080117187B681A637B6801225A617B681B6903F037 -S315080117280103002B05D07B681B6923F001027B683E -S315080117381A6100BF1437BD4680BC7047002C0140AA -S315080117480004004000080040000C004080B487B03F -S3150801175800AF786039607B681B6A7B617B681B6AA6 -S3150801176823F001027B681A627B685B683B617B68C8 -S315080117789B69FB60FB6823F07003FB60FB6823F039 -S315080117880303FB603B681B68FA681343FB607B69C4 -S3150801179823F002037B613B689B687A6913437B6183 -S315080117A87B681C4A93420CD17B6923F008037B6149 -S315080117B83B68DB687A6913437B617B6923F0040319 -S315080117C87B617B68134A934211D13B6923F4807381 -S315080117D83B613B6923F400733B613B685B693A6982 -S315080117E813433B613B689B693A6913433B617B68D1 -S315080117F83A695A607B68FA689A613B685A687B68ED -S315080118085A637B687A691A6200BF1C37BD4680BC71 -S31508011818704700BF002C014080B487B000AF7860DC -S3150801182839607B681B6A7B617B681B6A23F0100237 -S315080118387B681A627B685B683B617B689B69FB60AE -S31508011848FB6823F4E043FB60FB6823F44073FB6001 -S315080118583B681B681B02FA681343FB607B6923F024 -S3150801186820037B613B689B681B017A6913437B618B -S315080118787B681D4A93420DD17B6923F080037B61FE -S315080118883B68DB681B017A6913437B617B6923F033 -S3150801189840037B617B68144A934213D13B6923F45D -S315080118A880633B613B6923F400633B613B685B6981 -S315080118B89B003A6913433B613B689B699B003A69FC -S315080118C813433B617B683A695A607B68FA689A618F -S315080118D83B685A687B689A637B687A691A6200BFAB -S315080118E81C37BD4680BC7047002C014080B487B0C0 -S315080118F800AF786039607B681B6A7B617B681B6A05 -S3150801190823F480727B681A627B685B683B617B6833 -S31508011918DB69FB60FB6823F07003FB60FB6823F057 -S315080119280303FB603B681B68FA681343FB607B6922 -S3150801193823F400737B613B689B681B027A6913432E -S315080119487B617B681D4A93420DD17B6923F4006349 -S315080119587B613B68DB681B027A6913437B617B6998 -S3150801196823F480637B617B68144A934213D13B69EC -S3150801197823F480533B613B6923F400533B613B687D -S315080119885B691B013A6913433B613B689B691B0108 -S315080119983A6913433B617B683A695A607B68FA6816 -S315080119A8DA613B685A687B68DA637B687A691A621E -S315080119B800BF1C37BD4680BC704700BF002C0140DC -S315080119C880B487B000AF786039607B681B6A3B6171 -S315080119D87B681B6A23F480527B681A627B685B689A -S315080119E87B617B68DB69FB60FB6823F4E043FB608A -S315080119F8FB6823F44073FB603B681B681B02FA68A3 -S31508011A081343FB603B6923F400533B613B689B68BE -S31508011A181B033A6913433B617B680F4A934209D111 -S31508011A287B6923F480437B613B685B699B017A691F -S31508011A3813437B617B687A695A607B68FA68DA615D -S31508011A483B685A687B681A647B683A691A6200BFF8 -S31508011A581C37BD4680BC7047002C014080B487B04E -S31508011A6800AFF860B9607A60FB681B6A7B61FB683E -S31508011A781B6A23F00102FB681A62FB689B693B61D2 -S31508011A883B6923F0F0033B617B681B013A69134301 -S31508011A983B617B6923F00A037B617A69BB68134357 -S31508011AA87B61FB683A699A61FB687A691A6200BFC1 -S31508011AB81C37BD4680BC704780B487B000AFF86054 -S31508011AC8B9607A60FB681B6A7B61FB681B6A23F04D -S31508011AD81002FB681A62FB689B693B613B6923F440 -S31508011AE870433B617B681B033A6913433B617B6916 -S31508011AF823F0A0037B61BB681B017A6913437B61E9 -S31508011B08FB683A699A61FB687A691A6200BF1C37E9 -S31508011B18BD4680BC704780B485B000AF786039602F -S31508011B287B689B68FB60FB6823F07003FB603A6877 -S31508011B38FB68134343F00703FB607B68FA689A60FE -S31508011B4800BF1437BD4680BC704780B487B000AF64 -S31508011B58F860B9607A603B60FB689B687B617B6962 -S31508011B6823F47F437B613B681A027B681A43BB6887 -S31508011B7813437A6913437B61FB687A699A6000BFE4 -S31508011B881C37BD4680BC704780B487B000AFF86083 -S31508011B98B9607A60BB6803F01F03012202FA03F3EE -S31508011BA87B61FB681A6A7B69DB431A40FB681A6220 -S31508011BB8FB681A6ABB6803F01F03796801FA03F31D -S31508011BC81A43FB681A6200BF1C37BD4680BC7047BA -S31508011BD880B485B000AF786039607B6893F83C308B -S31508011BE8012B01D102234BE07B68012283F83C20B3 -S31508011BF87B68022283F83D207B681B685B68FB606B -S31508011C087B681B689B68BB60FB6823F07003FB60F5 -S31508011C183B681B68FA681343FB607B681B68FA68AC -S31508011C285A607B681B68194A934213D07B681B68FC -S31508011C38B3F1804F0ED07B681B68154A934209D0C9 -S31508011C487B681B68134A934204D07B681B68124A4F -S31508011C5893420CD1BB6823F08003BB603B685B6881 -S31508011C68BA681343BB607B681B68BA689A607B6865 -S31508011C78012283F83D207B68002283F83C20002353 -S31508011C8818461437BD4680BC704700BF002C014072 -S31508011C980004004000080040000C004080B483B0EE -S31508011CA800AF786000BF0C37BD4680BC704780B46A -S31508011CB883B000AF786000BF0C37BD4680BC70475B -S31508011CC880B582B000AF78607B68002B01D101230B -S31508011CD842E07B6893F84130DBB2002B06D17B687A -S31508011CE8002283F840207868FBF76CFC7B6824227D -S31508011CF883F841207B681B68DA687B681B6822F4CD -S31508011D080052DA60786800F0B5FF7B681B681A69C3 -S31508011D187B681B6822F490421A617B681B685A69BA -S31508011D287B681B6822F02A025A617B681B68DA6895 -S31508011D387B681B6842F40052DA607B6800225A64A1 -S31508011D487B68202283F841207B68202283F8422079 -S31508011D587B6800225A63002318460837BD4680BDAA -S31508011D6880B58AB002AFF860B9603B601346FB805C -S31508011D7800237B61FB6893F84130DBB2202B75D1D0 -S31508011D88BB68002B02D0FB88002B01D101236EE02A -S31508011D98FB6800225A64FB68212283F84120FBF775 -S31508011DA8D9FD7861FB68FA889A84FB68FA88DA8427 -S31508011DB8FB689B68B3F5805F08D1FB681B69002B34 -S31508011DC804D10023FB61BB68BB6103E0BB68FB6107 -S31508011DD80023BB612EE03B6800937B6900228021C2 -S31508011DE8F86800F0B9FC0346002B05D0FB682022E9 -S31508011DF883F8412003233AE0FB69002B0BD1BB6921 -S31508011E081B881A46FB681B68C2F308025A60BB6935 -S31508011E180233BB6107E0FB691A78FB681B685A60DD -S31508011E28FB690133FB61FB68DB8C9BB2013B9AB208 -S31508011E38FB68DA84FB68DB8C9BB2002BCBD13B6849 -S31508011E4800937B6900224021F86800F085FC034667 -S31508011E58002B05D0FB68202283F84120032306E0DE -S31508011E68FB68202283F84120002300E00223184654 -S31508011E782037BD4680BD80B485B000AFF860B9602B -S31508011E881346FB80FB6893F84130DBB2202B21D13E -S31508011E98BB68002B02D0FB88002B01D101231AE06D -S31508011EA8FB68BA681A62FB68FA889A84FB68FA8832 -S31508011EB8DA84FB6800225A64FB68212283F84120E8 -S31508011EC8FB681B68DA68FB681B6842F08002DA60FF -S31508011ED8002300E0022318461437BD4680BC704724 -S31508011EE880B58CB000AFF860B9601346FB80FB6813 -S31508011EF893F84230DBB2202B4AD1BB68002B02D0BB -S31508011F08FB88002B01D1012343E0FB6801221A63F0 -S31508011F18FB6800225A63FB881A46B968F86800F014 -S31508011F2874FC034687F82F3097F82F30002B2CD1ED -S31508011F38FB681B6B012B25D100233B61FB681B68DA -S31508011F481B683B61FB681B685B683B613B69FB680F -S31508011F581B680C33BB61BB6953E8003F7B617B692E -S31508011F6843F01003BB62FB681B680C33BA6A7A62D2 -S31508011F783B62396A7A6A41E80023FB61FB69002BEF -S31508011F88E5D102E0012387F82F3097F82F3000E0D2 -S31508011F98022318463037BD4680BD000080B5A2B079 -S31508011FA800AF78600123C7F884307B681B680C3357 -S31508011FB83B663B6E53E8003FFB65FB6D23F4F07304 -S31508011FC8C7F880307B681B680C33D7F88020FA6617 -S31508011FD8BB66B96EFA6E41E800237B667B6E002BF9 -S31508011FE8E3D17B681B681433FB64FB6C53E8003F39 -S31508011FF8BB64BB6C23F00103FB677B681B6814335E -S31508012008FA6FBA657B65796DBA6D41E800233B6558 -S315080120183B6D002BE5D17B681B6B012B19D17B68BE -S315080120281B680C33BB63BB6B53E8003F7B637B6B55 -S3150801203823F01003BB677B681B680C33BA6F7A6495 -S315080120483B64396C7A6C41E80023FB63FB6B002B14 -S31508012058E5D17B689B6B002B0FD07B681B685B6996 -S3150801206803F08003002B04D07B689B6B534A5A63A1 -S3150801207803E07B689B6B00225A637B68DB6B002B4A -S315080120880FD07B681B685B6903F04003002B04D0FB -S315080120987B68DB6B4A4A5A6303E07B68DB6B002281 -S315080120A85A637B681B685B6903F08003002B2DD094 -S315080120B87B681B6814337B627B6A53E8003F3B6283 -S315080120C83B6A23F080037B677B681B6814337A6F46 -S315080120D83A63FB62F96A3A6B41E80023BB62BB6A59 -S315080120E8002BE5D17B689B6B002B0FD07B689B6B1C -S315080120F81846FDF79DF90346002B04D07B689B6BB0 -S3150801210800225A6302E00023C7F884307B681B68FB -S315080121185B6903F04003002B30D07B681B681433D6 -S315080121283B613B6953E8003FFB60FB6823F04003CA -S315080121383B677B681B6814333A6FFA61BB61B969F7 -S31508012148FA6941E800237B617B69002BE5D17B6845 -S31508012158DB6B002B12D07B68DB6B1846FDF768F939 -S315080121680346002B07D07B68DB6B00225A630123E1 -S31508012178C7F8843002E00023C7F88430D7F88430DA -S31508012188012B16D17B680022DA847B680022DA855E -S315080121987B6800225A647B68202283F841207B6881 -S315080121A8202283F842207B6800221A63786800F0A7 -S315080121B8ADFA002318468837BD4680BD712901083E -S315080121C8D129010880B5BAB000AF78607B681B6869 -S315080121D81B68C7F8E4307B681B68DB68C7F8E0301A -S315080121E87B681B685B69C7F8DC300023C7F8D830F9 -S315080121F80023C7F8D430D7F8E43003F00F03C7F83B -S31508012208D830D7F8D830002B0FD1D7F8E43003F0F7 -S315080122182003002B09D0D7F8E03003F02003002B60 -S3150801222803D0786800F067FC5BE2D7F8D830002B52 -S3150801223800F0DE80D7F8DC3003F00103002B06D165 -S31508012248D7F8E03003F49073002B00F0D180D7F863 -S31508012258E43003F00103002B0BD0D7F8E03003F480 -S315080122688073002B05D07B685B6C43F001027B68A1 -S315080122785A64D7F8E43003F00403002B0BD0D7F8D7 -S31508012288DC3003F00103002B05D07B685B6C43F057 -S3150801229802027B685A64D7F8E43003F00203002B7C -S315080122A80BD0D7F8DC3003F00103002B05D07B6887 -S315080122B85B6C43F004027B685A64D7F8E43003F090 -S315080122C80803002B11D0D7F8E03003F02003002BC0 -S315080122D805D1D7F8DC3003F00103002B05D07B685C -S315080122E85B6C43F008027B685A647B685B6C002B5D -S315080122F800F0F281D7F8E43003F02003002B08D068 -S31508012308D7F8E03003F02003002B02D0786800F0F4 -S31508012318F2FB7B681B685B6903F04003002B14BF5B -S3150801232801230023DBB2C7F8D4307B685B6C03F062 -S315080123380803002B03D1D7F8D430002B4FD078687F -S3150801234800F09CFA7B681B685B6903F04003002B65 -S3150801235841D07B681B681433C7F89C30D7F89C3082 -S3150801236853E8003FC7F89830D7F8983023F0400368 -S31508012378C7F8D0307B681B681433D7F8D020C7F85C -S31508012388A820C7F8A430D7F8A410D7F8A82041E898 -S315080123980023C7F8A030D7F8A030002BD9D17B681D -S315080123A8DB6B002B13D07B68DB6B7E4A5A637B6831 -S315080123B8DB6B1846FDF73CF80346002B16D07B68FD -S315080123C8DB6B5B6B7A68D26B104698470EE07868C8 -S315080123D800F093F90AE0786800F08FF906E0786862 -S315080123E800F08BF97B6800225A6475E100BF73E136 -S315080123F87B681B6B012B40F04F81D7F8E43003F05B -S315080124081003002B00F04881D7F8E03003F01003D9 -S31508012418002B00F041810023BB607B681B681B68A1 -S31508012428BB607B681B685B68BB60BB687B681B68AD -S315080124385B6903F04003002B00F0B6807B68DB6B11 -S315080124481B685B68A7F8BE30B7F8BE30002B00F0EA -S3150801245845817B689B8DB7F8BE209A4280F03E81FC -S315080124687B68B7F8BE20DA857B68DB6B9B69202B0E -S3150801247800F088807B681B680C33C7F88830D7F862 -S31508012488883053E8003FC7F88430D7F8843023F4F6 -S315080124988073C7F8B8307B681B680C33D7F8B8203F -S315080124A8C7F89420C7F89030D7F89010D7F8942031 -S315080124B841E80023C7F88C30D7F88C30002BD9D1DE -S315080124C87B681B6814337B677B6F53E8003F3B6760 -S315080124D83B6F23F00103C7F8B4307B681B681433D4 -S315080124E8D7F8B420C7F88020FB67F96FD7F880209A -S315080124F841E80023BB67BB6F002BE1D17B681B68EA -S3150801250814333B663B6E53E8003FFB65FB6D23F0CE -S315080125184003C7F8B0307B681B681433D7F8B02076 -S31508012528FA66BB66B96EFA6E41E800237B667B6E6E -S31508012538002BE3D17B68202283F842207B6800229E -S315080125481A637B681B680C33FB64FB6C53E8003F12 -S31508012558BB64BB6C23F01003C7F8AC307B681B68F7 -S315080125680C33D7F8AC20BA657B65796DBA6D41E845 -S3150801257800233B653B6D002BE3D17B68DB6B184673 -S31508012588FCF71BFF7B6802225A637B689A8D7B6876 -S31508012598DB8D9BB2D31A9BB219467868FAF702F80B -S315080125A89CE000BF492901087B689A8D7B68DB8D09 -S315080125B89BB2D31AA7F8CE307B68DB8D9BB2002B6A -S315080125C800F08E80B7F8CE30002B00F089807B6842 -S315080125D81B680C33BB63BB6B53E8003F7B637B6BA0 -S315080125E823F49073C7F8C8307B681B680C33D7F88F -S315080125F8C8207A643B64396C7A6C41E80023FB632A -S31508012608FB6B002BE3D17B681B6814337B627B6AFF -S3150801261853E8003F3B623B6A23F00103C7F8C4301D -S315080126287B681B681433D7F8C4203A63FB62F96AD6 -S315080126383A6B41E80023BB62BB6A002BE3D17B688E -S31508012648202283F842207B6800221A637B681B686C -S315080126580C333B613B6953E8003FFB60FB6823F099 -S315080126681003C7F8C0307B681B680C33D7F8C0203D -S31508012678FA61BB61B969FA6941E800237B617B693B -S31508012688002BE3D17B6802225A63B7F8CE30194684 -S315080126987868F9F787FF23E0D7F8E43003F0800371 -S315080126A8002B09D0D7F8E03003F08003002B03D0BC -S315080126B8786800F0B9F914E0D7F8E43003F0400374 -S315080126C8002B0ED0D7F8E03003F04003002B08D0D2 -S315080126D8786800F0F8F904E000BF02E000BF00E0FE -S315080126E800BFE837BD4680BD80B483B000AF7860C7 -S315080126F800BF0C37BD4680BC704780B483B000AFB5 -S31508012708786000BF0C37BD4680BC704780B483B07B -S3150801271800AF786000BF0C37BD4680BC704780B4EF -S3150801272885B000AF78600023FB600023BB607B6837 -S3150801273893F84130DBB2FB607B6893F84230DBB231 -S31508012748BB60FB68DAB2BB68DBB21343DBB2184677 -S315080127581437BD4680BC704780B586B000AFF860AF -S31508012768B9603B601346FB713BE03B6AB3F1FF3F37 -S3150801277837D0FBF7EFF802463B68D31A3A6A9A420A -S3150801278802D33B6A002B01D103233AE0FB681B6895 -S31508012798DB6803F00403002B23D0BB68802B20D009 -S315080127A8BB68402B1DD0FB681B681B6803F0080330 -S315080127B8082B16D100237B61FB681B681B687B61A4 -S315080127C8FB681B685B687B617B69F86800F056F8EB -S315080127D8FB6808225A64FB68002283F84020012313 -S315080127E80FE0FB681B681A68BB681340BA689A4207 -S315080127F80CBF01230023DBB21A46FB799A42B4D0EF -S31508012808002318461837BD4680BD80B485B000AF89 -S31508012818F860B9601346FB80FB68BA689A62FB6878 -S31508012828FA889A85FB68FA88DA85FB6800225A6469 -S31508012838FB68222283F84220FB681B69002B07D014 -S31508012848FB681B68DA68FB681B6842F48072DA6001 -S31508012858FB681B685A69FB681B6842F001025A61E2 -S31508012868FB681B68DA68FB681B6842F02002DA60B5 -S31508012878002318461437BD4680BC704780B495B006 -S3150801288800AF78607B681B680C337B637B6B53E806 -S31508012898003F3B633B6B23F49073FB647B681B68BF -S315080128A80C33FA6C3A64FB63F96B3A6C41E800231A -S315080128B8BB63BB6B002BE5D17B681B6814333B6292 -S315080128C83B6A53E8003FFB61FB6923F00103BB64DC -S315080128D87B681B681433BA6CFA62BB62B96AFA6A0E -S315080128E841E800237B627B6A002BE5D17B681B6B79 -S315080128F8012B19D17B681B680C33FB60FB6853E80D -S31508012908003FBB60BB6823F010037B647B681B68C8 -S315080129180C337A6CBA617B617969BA6941E8002333 -S315080129283B613B69002BE5D17B68202283F842206D -S315080129387B6800221A6300BF5437BD4680BC7047BE -S3150801294880B584B000AF78607B685B6AFB60FB681A -S315080129580022DA85FB680022DA84F868FFF7CDFEDB -S3150801296800BF1037BD4680BD80B584B000AF78601A -S315080129787B685B6AFB60FB689B6B00225A63FB6892 -S31508012988DB6B002B04D0FB68DB6B5B6B002B17D169 -S31508012998FB680022DA84FB680022DA85FB680022D4 -S315080129A85A64FB68202283F84120FB68202283F8B1 -S315080129B84220FB6800221A63F868FFF7A7FE00E0C1 -S315080129C800BF1037BD4680BD80B584B000AF7860BA -S315080129D87B685B6AFB60FB68DB6B00225A63FB68F2 -S315080129E89B6B002B04D0FB689B6B5B6B002B17D189 -S315080129F8FB680022DA84FB680022DA85FB68002274 -S31508012A085A64FB68202283F84120FB68202283F850 -S31508012A184220FB6800221A63F868FFF777FE00E090 -S31508012A2800BF1037BD4680BD80B485B000AF786059 -S31508012A387B6893F84130DBB2212B3ED17B689B68D2 -S31508012A48B3F5805F14D17B681B69002B10D17B68AD -S31508012A581B6AFB60FB681B881A467B681B68C2F3FE -S31508012A6808025A607B681B6A9A1C7B681A6208E026 -S31508012A787B681B6A591C7A6811621A787B681B6815 -S31508012A885A607B68DB8C9BB2013B9BB27A68194614 -S31508012A98D184002B0FD17B681B68DA687B681B68B1 -S31508012AA822F08002DA607B681B68DA687B681B6833 -S31508012AB842F04002DA60002300E002231846143780 -S31508012AC8BD4680BC704780B582B000AF78607B6828 -S31508012AD81B68DA687B681B6822F04002DA607B6843 -S31508012AE8202283F841207868F9F7BCFD00231846A7 -S31508012AF80837BD4680BD80B58CB000AF78607B6865 -S31508012B0893F84230DBB2222B40F0AE807B689B6893 -S31508012B18B3F5805F17D17B681B69002B13D1002396 -S31508012B28FB627B689B6ABB627B681B685B689BB2B6 -S31508012B38C3F308039AB2BB6A1A807B689B6A9A1C14 -S31508012B487B689A6226E07B689B6AFB620023BB6204 -S31508012B587B689B68B3F5805F07D07B689B68002B09 -S31508012B680AD17B681B69002B06D17B681B685B68E1 -S31508012B78DAB2FB6A1A7008E07B681B685B68DBB225 -S31508012B8803F07F03DAB2FB6A1A707B689B6A5A1CE0 -S31508012B987B689A627B68DB8D9BB2013B9BB27A683C -S31508012BA81946D185002B5DD17B681B68DA687B6875 -S31508012BB81B6822F02002DA607B681B68DA687B6882 -S31508012BC81B6822F48072DA607B681B685A697B681D -S31508012BD81B6822F001025A617B68202283F8422089 -S31508012BE87B6800225A637B681B6B012B35D17B688E -S31508012BF800221A637B681B680C337B617B6953E87F -S31508012C08003F3B613B6923F010037B627B681B68C5 -S31508012C180C337A6A3A62FB61F9693A6A41E8002330 -S31508012C28BB61BB69002BE5D17B681B681B6803F090 -S31508012C381003102B0AD10023FB607B681B681B68ED -S31508012C48FB607B681B685B68FB60FB687B689B8D20 -S31508012C5819467868F9F7A6FC02E07868FFF744FD93 -S31508012C68002302E0002300E0022318463037BD4658 -S31508012C7880BD000080B584B000AF78607B681B68AA -S31508012C881B6923F440517B68DA687B681B680A4329 -S31508012C981A617B689A687B681B691A437B685B6952 -S31508012CA81343BB607B681B68DB6823F4B05323F0C6 -S31508012CB80C037A681268B9680B43D3607B681B688A -S31508012CC85B6923F440717B689A697B681B680A43C8 -S31508012CD85A617B681B682C4A934203D1FDF71AFC93 -S31508012CE8F86002E0FDF702FCF860FA6813469B00F3 -S31508012CF813449A001A447B685B689B00B2FBF3F39A -S31508012D08224AA2FB03235B091901FA6813469B00A9 -S31508012D1813449A001A447B685B689B00B2FBF3F27A -S31508012D281A4BA3FB02035B09642000FB03F3D31ABE -S31508012D381B013233154AA2FB03235B0903F0F0038F -S31508012D481944FA6813469B0013449A001A447B6887 -S31508012D585B689B00B2FBF3F20C4BA3FB02035B090E -S31508012D68642000FB03F3D31A1B013233074AA2FB7B -S31508012D7803235B0903F00F027B681B680A449A6000 -S31508012D8800BF1037BD4680BD003801401F85EB518D -S31508012D98002310B50446C0E90033C0E9043383604B -S31508012DA881814366C2818361194608225C3000F035 -S31508012DB843F90D4B246263620C4BA3620C4BE36225 -S31508012DC80C4B23630C4B9C4206D003F168029442D0 -S31508012DD802D0D0339C4205D104F15800BDE8104011 -S31508012DE800F0A2B910BD00BF412F0108632F0108E1 -S31508012DF89B2F0108BF2F01087C100020024A0349AE -S31508012E08034800F069B800BF78000020913C010822 -S31508012E188800002041680C4B10B59942044601D038 -S31508012E2800F032FFA168094B994202D0204600F00A -S31508012E382BFFE168064B994204D02046BDE81040AD -S31508012E4800F022BF10BD00BF7C100020E41000204E -S31508012E584C11002010B50B4B0B4C0C4A20461A6036 -S31508012E6804210022FFF794FF04F1680001220921D1 -S31508012E78FFF78EFF04F1D0000222BDE810401221A7 -S31508012E88FFF786BFB41100207C100020052E010823 -S31508012E98014800F04AB900BFBD110020014800F0F9 -S31508012EA845B900BFBD11002010B50446FFF7F0FF6C -S31508012EB8236A1BB1BDE81040FFF7F0BF044B236234 -S31508012EC8044B1B68002BF5D1FFF7C4FFF2E700BFD7 -S31508012ED81D2E0108B41100202DE9F8430746884636 -S31508012EE814460026D4E90195B9F1010905D52468DE -S31508012EF8002CF7D13046BDE8F883AB89012B07D9F1 -S31508012F08B5F90E30013303D029463846C04706437A -S31508012F186835E9E70FB407B5064904AB086853F8F5 -S31508012F28042B8168019300F087FB03B05DF804EB75 -S31508012F3804B070478400002010B50C46B1F90E108C -S31508012F4800F0A4F80028ABBF636DA3891B1823F406 -S31508012F588053ACBF6365A38110BD2DE9F0411F46B7 -S31508012F688B890546DB050C46164605D5022300223C -S31508012F78B1F90E1000F078F8A389324623F4805384 -S31508012F88A38128463B46B4F90E10BDE8F04100F086 -S31508012F988FB810B50C46B1F90E1000F065F8431C48 -S31508012FA8A38915BF606523F4805343F48053A3812D -S31508012FB818BFA38110BDB1F90E1000F045B830B598 -S31508012FC81446002C05461A469BB005DA8B2303607E -S31508012FD84FF0FF301BB030BD4FF40273ADF80C301B -S31508012FE84FF0000319930CBF234604F1FF330293EC -S31508012FF805934FF6FF7300910491ADF80E306946B3 -S315080130081E9B00F0F5F9431CBCBF8B232B60002CD3 -S31508013018E0D00022009B1A70DCE7000007B5009390 -S3150801302813460A46014603480068FFF7C8FF03B076 -S315080130385DF804FB8400002003460244934200D14C -S31508013048704703F8011BF9E738B50023054D04460F -S3150801305808462B60F9F7FFFF431C02D12B6803B119 -S31508013068236038BDB811002038B50446084611460C -S315080130780022054D2A601A46FAF711F8431C02D1AF -S315080130882B6803B1236038BDB811002038B504464A -S31508013098084611460022054D2A601A46F9F7BEFF69 -S315080130A8431C02D12B6803B1236038BDB81100202F -S315080130B838B50446084611460022054D2A601A46BF -S315080130C8F7F7F2F8431C02D12B6803B1236038BD20 -S315080130D8B8110020014B1868704700BF840000200A -S315080130E870B500260C4D0D4C641BA410A64209D1D7 -S315080130F800F078FF00260A4D0A4C641BA410A64264 -S3150801310805D170BD55F8043B98470136EEE755F8E1 -S31508013118043B98470136F2E7B8440108B844010860 -S31508013128B8440108BC4401087047704770470A4407 -S31508013138914200F1FF3300D1704710B511F8014BE0 -S31508013148914203F8014FF9D110BD000038B505467B -S31508013158002940D051F8043C0C1F002BB8BFE418CD -S3150801316800F0DEF81C4A136833B963601460284610 -S31508013178BDE8384000F0DAB8A34208D92068211812 -S315080131888B4201BF19685B6809182160EDE71A4681 -S315080131985B680BB1A342FAD911685018A0420BD142 -S315080131A820680144501883421160E0D118685B68A9 -S315080131B8084410605360DAE702D90C232B60D6E776 -S315080131C8206821188B4201BF19685B6809182160B4 -S315080131D863605460CBE738BDC411002070B50F4E43 -S315080131E80C463168054611B900F024FE30602146BF -S315080131F8284600F01FFE431C03D14FF0FF34204632 -S3150801320870BDC41C24F00304A042F8D0211A28462C -S3150801321800F010FE0130F2D1EFE700BFC01100201F -S315080132282DE9F843CD1C25F0030508350C2D38BFC3 -S315080132380C25002D064601DBA94204D90C23336067 -S315080132480020BDE8F883DFF8D48000F069F8D8F8DB -S3150801325800301C4644BB29463046FFF7BFFF431CCE -S31508013268044658D1D8F800402746002F43D1002CE8 -S315080132784BD023683946304604EB030900F0DAFDDA -S31508013288814542D1216830466D1A2946FFF7A6FFBE -S3150801329801303AD023682B442360D8F800305A689D -S315080132A862BBC8F800700FE02268521B20D40B2AAB -S315080132B817D96119A342256018BF5960636808BF01 -S315080132C8C8F8001062514B60304600F02FF804F137 -S315080132D80B00231D20F00700C21A1CBF1B1AA35096 -S315080132E8AFE76268A3420CBFC8F800205A60EBE74B -S315080132F823466468AEE73C467F68B6E71A465B68C4 -S31508013308A342FBD100235360DEE70C233046336022 -S3150801331800F00CF894E70560D6E700BFC411002051 -S315080133280148FFF702BF00BFBC1100200148FFF79B -S31508013338FDBE00BFBC1100202DE9F0471F468E6867 -S315080133488246BE420C4690460B682DD8B1F90C2028 -S3150801335812F4906F26D06569096905EB4505A3EB53 -S31508013368010905EBD5757B1C4B446D109D4238BF89 -S315080133781D46530527D52946FFF752FF064660B36A -S315080133884A462169FFF7D3FEA38923F4906343F0DC -S315080133988003A38126614E4426603E466561A5EBF6 -S315080133A80905A560BE4200D93E463246414620680F -S315080133B800F026FD0020A3689B1BA36023683344FD -S315080133C82360BDE8F0872A4600F052FD0646002824 -S315080133D8E0D150462169FFF7B9FE0C23CAF8003037 -S315080133E8A3894FF0FF3043F04003A381E9E70000C2 -S315080133F82DE9F04F98468B8907461B060D46144654 -S315080134089DB010D50B6973B94021FFF709FF2860EC -S31508013418286130B90C233B604FF0FF301DB0BDE879 -S31508013428F08F40236B610023099320238DF82930F7 -S3150801343830234FF00109CDF80C80DFF898818DF813 -S315080134482A3023469A4613F8012B0AB1252AF9D1B7 -S31508013458BAEB040B0BD05B46224629463846FFF7DA -S315080134686BFF013000F0A780099A5A4409929AF825 -S315080134780030002B00F09F8000234FF0FF32CDE982 -S3150801348805230AF1010A049307938DF853301A9311 -S315080134985446052214F8011B4E4800F0DBFC049A31 -S315080134A8D8B9D00644BF20238DF85330110744BF35 -S315080134B82B238DF853309AF800302A2B15D0544609 -S315080134C800204FF00A0C079A214611F8013B303BB8 -S315080134D8092B4BD9B0B1079214E0A0EB080309FAF6 -S315080134E803F31343A2460493D2E7039B191D1B68EA -S315080134F80391002BBBBF5B4242F002020793079375 -S31508013508B8BF049223782E2B0AD163782A2B32D195 -S31508013518039B02341A1D1B68039243EAE373059356 -S31508013528DFF8B4A003225046217800F093FC38B19D -S315080135384022049BA0EB0A008240134301340493FA -S3150801354814F8011B062225488DF8281000F082FC7C -S31508013558002836D0224B1BBB039B073323F00703EE -S3150801356808330393099B334409936AE70C460120F8 -S315080135780CFB0232A8E700234FF00A0C194601345E -S315080135880593204610F8012B303A092A03D9002B4E -S31508013598C6D00591C4E7044601230CFB0121F0E7CF -S315080135A803AB00932A4638460E4B04A9AFF30080AD -S315080135B8421C0646D6D1AB895B063FF52DAF09985D -S315080135C82CE703AB00932A463846064B04A900F0B4 -S315080135D8BDF9EDE77C4401088244010886440108DF -S315080135E80000000041330108936810B4013B002B21 -S315080135F8936007DA9469A34201DB0A2902D110BC50 -S3150801360800F06ABB1368581C10601970084610BC8C -S315080136187047F8B506460F461446D518AC4201D187 -S31508013628002007E03A46304614F8011BFFF7DCFF8D -S31508013638431CF3D1F8BD00002DE9F04F0D46144699 -S31508013648984606469DB018B1036A0BB9FFF72CFCD4 -S315080136586B6ED90705D4AB899A0502D4A86DFFF70D -S3150801366864FDAB891B0701D52B699BB929463046E9 -S3150801367800F070FB70B16B6EDC0704D54FF0FF30B4 -S315080136881DB0BDE8F08FAB899805F7D4A86DFFF78B -S315080136984DFDF3E70023099320238DF829303023BC -S315080136A84FF00109CDF80C80DFF8A8818DF82A308A -S315080136B823469A4613F8012B0AB1252AF9D1BAEBFA -S315080136C8040B0BD05B46224629463046FFF7A1FF75 -S315080136D8013000F0A780099A5A4409929AF80030ED -S315080136E8002B00F09F8000234FF0FF32CDE9052318 -S315080136F80AF1010A049307938DF853301A9354462D -S31508013708052214F8011B534800F0A4FB049AD8B9FA -S31508013718D10644BF20238DF85330130744BF2B2302 -S315080137288DF853309AF800302A2B15D054460020C4 -S315080137384FF00A0C079A214611F8013B303B092B31 -S315080137484BD9B0B1079214E0A0EB080309FA03F3C1 -S315080137581343A2460493D2E7039B191D1B680391D9 -S31508013768002BBBBF5B4242F0020207930793B8BF1F -S31508013778049223782E2B0AD163782A2B32D1039BFC -S3150801378802341A1D1B68039243EAE3730593DFF8AB -S31508013798C8A003225046217800F05CFB38B14022C4 -S315080137A8049BA0EB0A00824013430134049314F8DE -S315080137B8011B062229488DF8281000F04BFB002822 -S315080137C83FD0274B1BBB039B073323F0070308335B -S315080137D80393099B3B4409936AE70C4601200CFBB2 -S315080137E80232A8E700234FF00A0C1946013405935B -S315080137F8204610F8012B303A092A03D9002BC6D0DE -S315080138080591C4E7044601230CFB0121F0E703AB44 -S3150801381800932A463046134B04A9AFF3008007469E -S31508013828781CD6D16B6ED90705D4AB899A0502D40B -S31508013838A86DFFF77BFCAB895B063FF51FAF0998B7 -S315080138481EE703AB00932A463046064B04A900F047 -S315080138587DF8E4E77C4401088244010886440108A6 -S31508013868000000001B3601082DE9F0471646984660 -S315080138788A680B6907469342B8BF1346336091F8BD -S3150801388843200C46DDF820900AB1013333602368DA -S31508013898990642BF336802333360256815F0060571 -S315080138A806D104F1190AE36832689B1AAB422BDC84 -S315080138B894F843302268003B18BF0123920630D496 -S315080138C84146384604F14302C847013023D02368E4 -S315080138D8226903F00603042B14BF002533684FF049 -S315080138E8000608BFE56804F11A0408BFED1A54F87A -S315080138F8123C08BF25EAE5759342C4BF9B1AED1821 -S31508013908B5421AD1002008E00123524641463846F5 -S31508013918C847013003D14FF0FF30BDE8F0870135BC -S31508013928C1E73020E11881F843005A1C94F845107C -S315080139382244023382F84310C2E70123224641464C -S315080139483846C8470130E6D00136D9E72DE9FF4799 -S315080139580F7E9146782F80460C469A460C9E01F1B1 -S31508013968430207D8622F0AD8002F00F0D180582FB2 -S3150801397800F0B88004F1420684F842703AE0A7F1EB -S315080139886303152BF6D801A151F823F0ED3901087F -S31508013998013A01087D3901087D3901087D3901088F -S315080139A87D390108013A01087D3901087D3901087F -S315080139B87D3901087D390108FF3A01082B3A0108C2 -S315080139C8B93A01087D3901087D390108213B010801 -S315080139D87D3901082B3A01087D3901087D39010825 -S315080139E8C13A010833681A1D1B68326004F1420698 -S315080139F884F8423001239CE033682068191D316038 -S31508013A08060601D51D6803E04506FBD5B3F900503E -S31508013A18002D03DA2D236D4284F843300A235848CA -S31508013A2811E021683368080653F8045B02D449068D -S31508013A3848BFADB26F2F336014BF0A230823504815 -S31508013A48002184F843106668002EA66005DB216804 -S31508013A582E4321F0040121604BD01646B5FBF3F13C -S31508013A6803FB1157C75D06F8017D2F46BB420D4674 -S31508013A78F4D9082B0BD12368DF0708D523696168B0 -S31508013A889942DEBF302306F8013C06F1FF36921B40 -S31508013A9822614B4621464046CDF800A003AAFFF706 -S31508013AA8E3FE01304AD14FF0FF3004B0BDE8F08794 -S31508013AB8236843F0200323607827324884F8457041 -S31508013AC8236831681F0651F8045B02D45F0648BFAC -S31508013AD8ADB23160D90744BF43F0200323601DB155 -S31508013AE81023ADE72648E9E7236823F02003236076 -S31508013AF8F6E71646BDE733682568181D616930601B -S31508013B082E061B6801D5196002E06806FBD51980DF -S31508013B18002316462361BCE7336800211A1D326063 -S31508013B281E686268304600F095F908B1801B606026 -S31508013B3863682361002384F84330AAE73246494675 -S31508013B4840462369D0470130ADD023689B0713D473 -S31508013B58E068039B9842B8BF1846A6E70123324690 -S31508013B6849464046D04701309DD00135E368039957 -S31508013B785B1AAB42F2DCEBE7002504F11906F5E717 -S31508013B888D4401089E440108B1F90C20F8B51607B9 -S31508013B9805460C4654D44B68002B02DC0B6C002BEB -S31508013BA848DDE66A002E45D0002312F480522F68B4 -S31508013BB8216A2B6030D0626DA389590705D56368D8 -S31508013BC8D21A636B0BB1236CD21A00232846E66A0C -S31508013BD8216AB047431CA38906D129681D292BD810 -S31508013BE8284ACA40D60727D5002262602269D9041D -S31508013BF8226004D5421C01D12B6803B96065616B43 -S31508013C082F60B9B104F14403994202D02846FFF757 -S31508013C189DFA002363630DE001232846B04702464F -S31508013C28501CC9D12B68002BC6D01D2B01D0162BC9 -S31508013C381DD12F60002021E043F040031BB21AE092 -S31508013C480F69002FF6D0930718BF00230E6808BF1F -S31508013C584B69F61B0F608B60002EEBDD33463A463F -S31508013C682846216AD4F828C0E047002807DCB4F9B1 -S31508013C780C3043F040034FF0FF30A381F8BD0744E9 -S31508013C88361AE9E70100402038B50B6905460C469E -S31508013C9813B90025284638BD18B1036A0BB9FFF7C9 -S31508013CA803F9B4F90C30002BF3D0626ED00704D4AB -S31508013CB8990502D4A06DFFF738FA28462146FFF779 -S31508013CC863FF636E0546DA07E4D4A3899B05E1D445 -S31508013CD8A06DFFF72BFADDE7F8B50E46144605463B -S31508013CE818B1036A0BB9FFF7DFF8A369A360A389BB -S31508013CF81A0701D5236943B92146284600F02AF847 -S31508013D0818B14FF0FF373846F8BD23682269F6B26D -S31508013D18981A63693746834205DC21462846FFF720 -S31508013D28B3FF0028EDD1A368013BA36023685A1C99 -S31508013D3822601E706269431C9A4204D0A389DB0774 -S31508013D48E1D50A2EDFD121462846FFF79DFF00282F -S31508013D58D9D0D6E738B5294B054618680C4618B19F -S31508013D68036A0BB9FFF7A0F8B4F90C30190722D47E -S31508013D78DA0607D409222A6043F040034FF0FF30D8 -S31508013D88A38133E0580712D5616B41B104F14403A5 -S31508013D98994202D02846FFF7D9F900236363A38914 -S31508013DA823F02403A3810023636023692360A3897D -S31508013DB843F00803A38123694BB9A38903F4207344 -S31508013DC8B3F5007F03D02146284600F0A4F8B4F9D4 -S31508013DD80C3013F001020AD00022A260626952422D -S31508013DE8A261226942B913F08000C5D138BD990785 -S31508013DF858BF6269A260F4E70020F7E7840000204B -S31508013E08884210B501EB020402D98442234607D831 -S31508013E18431EA14208D011F8012B03F8012FF8E730 -S31508013E28014602448A4200D110BD13F8014D02F831 -S31508013E38014DF7E738B50023054D044608462B60BA -S31508013E48F9F73AF9431C02D12B6803B1236038BD47 -S31508013E58B8110020034610B5C9B202449342184660 -S31508013E6801D1002003E0047801338C42F6D110BD54 -S31508013E782DE9F041074614460D4621B91146BDE814 -S31508013E88F041FFF7CDB92AB9FFF760F92546284663 -S31508013E98BDE8F08100F09EF88442064602D8B4EBE4 -S31508013EA8500FF4D821463846FFF7BAF9804608B9BB -S31508013EB84546ECE7B4422246294628BF3246FFF76B -S31508013EC836F929463846FFF741F9F1E770B50C4640 -S31508013ED8B1F90E10154600291E4696B00CDAA389C3 -S31508013EE8002113F0800F14BF40234FF4806300208C -S31508013EF831602B6016B070BD6A4600F049F8002893 -S31508013F08EDDB019901F47041A1F500535942594174 -S31508013F184FF48063EBE78B89F7B59D0706460C4690 -S31508013F2807D504F14703236023610123636103B0BD -S31508013F38F0BD6A4601ABFFF7C9FF009F054639463A -S31508013F483046FFF76DF948B9B4F90C309A05EED43D -S31508013F5823F0030343F00203A381E2E7A389C4E933 -S31508013F68040743F08003A381019B20605BB13046B7 -S31508013F78B4F90E1000F01EF828B1A38923F003033B -S31508013F8843F00103A381A3891D43A581CFE7000057 -S31508013F9838B50023064D0446084611462B60F9F73D -S31508013FA865F8431C02D12B6803B1236038BD00BFED -S31508013FB8B811002038B50023054D044608462B607C -S31508013FC8F9F763F8431C02D12B6803B1236038BD9E -S31508013FD8B811002051F8043C181F002BBCBF0B5818 -S31508013FE8C0187047F8B500BFF8BC08BC9E467047AC -S31108013FF8F8B500BFF8BC08BC9E4670472F -S31508014004434F4E4E2564204572726F723A202564D9 -S315080140140A000000436F6E6E6563746F723A205529 -S315080140246E6B6E6F776E0A00436F6E6E6563746F9F -S31508014034723A20556E706C75676765640A000000EC -S31508014044436F6E6E6563746F723A20446973616275 -S315080140546C65640A00000000436F6E6E6563746FD5 -S31508014064723A20507265706172696E670A000000BF -S31508014074436F6E6E6563746F723A20417574685244 -S31508014084657175697265640A00000000436F6E6E96 -S315080140946563746F723A2057616974696E67466F0E -S315080140A472456E657267790A00000000436F6E6E89 -S315080140B46563746F723A204368617267696E675003 -S315080140C4617573656445560A00000000436F6E6E98 -S315080140D46563746F723A204368617267696E6750E3 -S315080140E46175736564455653450A0000436F6E6EE0 -S315080140F46563746F723A204368617267696E670A09 -S3150801410400000000436F6E6E6563746F723A204156 -S3150801411475746854696D656F75740A00436F6E6EBC -S315080141246563746F723A2046696E69736865640AD1 -S3150801413400000000436F6E6E6563746F723A204621 -S31508014144696E6973686564455653450A000000003B -S31508014154436F6E6E6563746F723A2046696E69734E -S3150801416468656445560A0000436F6E6E6563746F2D -S31508014174723A205265706C756767696E670A000042 -S31508014184434F4E4E2564204368617267696E672002 -S3150801419446696E69736865643A0A00004368617220 -S315080141A467696E6720456E657267793A2025640AE0 -S315080141B400000000434353206D6F64756C652073DA -S315080141C4746172740A00000053657269616C206E29 -S315080141D4756D6265723A2025640A0000426F617240 -S315080141E464207265766973696F6E3A2025640A00DC -S315080141F446572076657273696F6E3A2025642E25B3 -S31508014204642E25640A000000505355206F6E2074ED -S31508014214696D656F75740A00436F6E746163746FB3 -S3150801422472206572726F722C2073746F7070696E66 -S31508014234672E2E2E0A000000505355206F666620FD -S3150801424474696D656F75740A000000004553544F0F -S3150801425450207472696767657265640A0000000014 -S3150801426453746F7070696E67206368617267696EEB -S31508014274672E2E2E0A00000046696E697368656406 -S3150801428445562C2073746F7070696E672E2E2E0A2C -S31508014294000000004368617267696E67206572727F -S315080142A46F722025642C207374617465202D3E2059 -S315080142B464697361626C65640A000000436861722B -S315080142C467696E67207065726D69747465642C20FC -S315080142D47374617274206368617267696E670A0030 -S315080142E443617220756E706C75676765640A0000B0 -S315080142F45265706C756767696E672E2E2E0A000003 -S315080143045265706C756767696E672066696E69734D -S315080143146865642C206275742063617220756E70F9 -S315080143246C75676765640A005265706C75676769B9 -S315080143346E672066696E69736865642C20636172A9 -S3150801434420706C75676765642C20737461746520C5 -S315080143542D3E20617574682072657175697265648C -S315080143640A000000457665726573742074696D6583 -S315080143746F75740A0000000043435320696E69741B -S315080143840A00000045766572657374207265736563 -S315080143947420636F6D6D616E640A00005061636B0E -S315080143A4657420435243206572726F720A000000D5 -S315080143B4556E6B6E6F776E20636D64203078253089 -S315080143C432780A005061636B6574206C656E206DE2 -S315080143D469736D6174636820636D643D3078253053 -S315080143E432780A0053657420436F6E6669673A200A -S315080143F425732025640A0000506F776572206C695D -S315080144046D69743A2025640A0000000043686172E4 -S315080144146765207065726D69743A2025640A00001F -S315080144240000000000000000010203040607080951 -S315080144340000000001020304000004050607080938 -S3150801444400000000000D0000010203040506070828 -S31508014454090A0B0C0D0E0F100000040506070809BE -S3150801446400000000000D0000010203040506070808 -S31508014474090A0B0C0D0E0F10232D302B2000686C26 -S315080144844C00656667454647003031323334353664 -S31508014494373839414243444546003031323334359D -S311080144A4363738396162636465660000CA -S30D080144B0D84BFF7F0100000053 -S309080144B80D8200085A -S309080144BCE98100087B -S315080144C0E401000006060600400000320A320040F8 -S315080144D000000000008000320A320000800000005F -S315080144E00000FA320A32000000FA000000FF00322A -S315080144F00A32000020000000FFFFFF320A3200FFE7 -S31508014500FFFF0000FF0000320A32002000006406A7 -S315080145100100000000FFFF0000000000000000008D -S3150801452052555301000000FE529E66000024F40015 -S315080145301000000001000000000000000300000058 -S315080145407C10002088000020000000007C1000205C -S31508014550E41000204C1100200000000000000000BB -S31508014560000000000000000000000000000000003C -S31508014570000000000000000000000000000000002C -S31508014580000000000000000000000000000000001C -S309080145900000000018 -S7050800D861B9 +S3150800B9F880B500AFAA4B1B78002B11D1A94806F0D1 +S3150800BA089CFE0346202B0BD14FF48072A649A54805 +S3150800BA1806F074FA0346002B02D1A14B01221A70CC +S3150800BA28FEF796FB03461A46A04B1A70A04B1B78DE +S3150800BA38002B03D09E4B1A789E4B1A7001F098FF7C +S3150800BA4802469D4B1B68D31A0A2B53D901F090FF5F +S3150800BA5802469A4B1B68D31AC72B06D900F01CFB5B +S3150800BA6801F086FF0346954A1360954B1B78002B11 +S3150800BA7808D094490420FEF7FDFC00F0AEFA904B76 +S3150800BA8800221A708A4B1B78012B03D0884B5B7FE0 +S3150800BA98002B13D001F06CFF02468B4B1B68D31A98 +S3150800BAA8B3F57A7F0AD901F063FF0346864A13601D +S3150800BAB886490520FEF7DEFC00F08FFA844B1B78D2 +S3150800BAC80C2B03D0824B1B780B2B13D101F050FF9C +S3150800BAD802467D4B1B68D31AB3F57A7F0AD901F05B +S3150800BAE847FF0346784A13607A490520FEF7C2FCE1 +S3150800BAF800F073FA784B1B78002B07D10121052033 +S3150800BB08FDF7D2FC0020FEF7D1F8FEE0734B1B7850 +S3150800BB18042B00F2FA8001A252F823F039BB000878 +S3150800BB2859BB00089DBB0008DBBB00082BBC0008F6 +S3150800BB3800210520FDF7B8FC0220FEF7B7F85C4B94 +S3150800BB485B7F002B40F0A880644B01221A70A3E0A3 +S3150800BB5801210520FDF7A8FC0120FEF7A7F8534B9D +S3150800BB681B78012B03D0514B1B78022B02D15B4B58 +S3150800BB7802221A704E4B5B7F002B00F08F804C4BCD +S3150800BB885B7F1A4656490420FEF774FC534B00227D +S3150800BB981A7083E001210520FDF786FC0420FEF7CC +S3150800BBA885F8434B1B78022B06D14E490720FEF72A +S3150800BBB861FC4A4B03221A703C4B1B78002B40F059 +S3150800BBC89F8049490720FEF755FC444B01221A7005 +S3150800BBD896E001210520FDF767FC3D4B1B78022BF3 +S3150800BBE803D80320FEF762F804E0394B1B78184699 +S3150800BBF8FEF75CF82D4B1B78002B06D13A4907202F +S3150800BC08FEF738FC354B01221A70384B1B78002B87 +S3150800BC1878D037490720FEF72DFC304B04221A70D6 +S3150800BC2870E000210520FDF73FFC0D20FEF73EF8E1 +S3150800BC3801F09EFE02462F4B1B68D31AB3F57A7F8E +S3150800BC481AD901F095FE03462A4A1360274B1B7832 +S3150800BC58002B0AD0254B1B78FF2B0DD0234B1B78BE +S3150800BC68013BDAB2214B1A7006E023490720FEF792 +S3150800BC7801FC1A4B01221A701C4B1B78002B43D166 +S3150800BC880A4B1B78012B3FD11C490720FEF7F2FB0C +S3150800BC98124B02221A7037E000BF36E000BF34E0C4 +S3150800BCA8CC09002030100020CC0700204F000020C7 +S3150800BCB8D4010020C8070020C0070020300A002049 +S3150800BCC8CD0900206C420108C407002080420108FB +S3150800BCD82C0A002098420108C20E002050000020B5 +S3150800BCE8B4420108DC42010800430108CE090020D5 +S3150800BCF810430108340A0020204301084843010874 +S3150800BD0800BF02E000BF00E000BF3F4B1B78002BD6 +S3150800BD181FD03E4B1B68002B08D001F029FE0246AF +S3150800BD283A4B1B68D31AB3F5FA6F08D33849042077 +S3150800BD38FEF7A0FB01F01CFE0346344A1360354B98 +S3150800BD480022DA75344B00221A706420FEF7CEF901 +S3150800BD5844E0324B1B68002B23D001F009FE02464B +S3150800BD682E4B1B68D31AB3F5FA6F1AD9284904203B +S3150800BD78FEF780FB244B01221A7001F0F9FD0346F1 +S3150800BD88264A136001F0F4FD0346204A1360214B46 +S3150800BD980022DA75204B00221A706420FEF7A6F9ED +S3150800BDA81CE01F4B1B78012B03D11A4B0022DA75AE +S3150800BDB814E01C4B1B78002B14BF01230023DBB2AD +S3150800BDC81A46144BDA75134BDB7D002B06D1114B3B +S3150800BDD85B78032B02D10F4B0022DA75124B1B78BE +S3150800BDE8012B07D0104B1B78022B03D00E4B1B7860 +S3150800BDF8032B03D1074B01229A7703E0054B002250 +S3150800BE089A7700BF00BF80BDD8090020DC0900204A +S3150800BE1884430108D40100202C0A0020D4090020F4 +S3150800BE28C8070020C90700204F00002080B500AFCA +S3150800BE38FEF73AF96420FEF759F90D4B4FF47A7272 +S3150800BE481A800B4B96225A80094B40F232529A8036 +S3150800BE58074B0A22DA80064B47F230529A6000F0FE +S3150800BE68B3F804490720FEF705FB00BF80BD00BFED +S3150800BE78A80700209843010880B485B000AF786009 +S3150800BE880B467B804FF6FF73FB810023BB8122E0BC +S3150800BE98BB897A6813441B781A46FB895340FB8189 +S3150800BEA80023FB7211E0FB8903F00103002B06D07F +S3150800BEB8FB895B089AB20D4B5340FB8102E0FB896C +S3150800BEC85B08FB81FB7A0133FB72FB7A072BEAD9FD +S3150800BED8BB890133BB81BA897B889A42D8D3FB8947 +S3150800BEE818461437BD4680BC704700BF01A0FFFF3F +S3150800BEF880B586B000AFB9607B600346FB7313460E +S3150800BF08BB81BB890333FB82FA8A3B8C9A4201D9E7 +S3150800BF18002329E07B68FA7B1A70BB89002B09D0B5 +S3150800BF28BB68002B06D07B680133BA89B9681846FE +S3150800BF3807F00BF9BB8901339BB219467868FFF7F6 +S3150800BF489BFF0346BB82BB8901337A681344BA8AC6 +S3150800BF58D2B21A70BB8A1B0A99B2BB8902337A68AD +S3150800BF681344CAB21A70FB8A18461837BD4680BDEC +S3150800BF7880B586B002AF03463960FB711346BB80AD +S3150800BF88BA88F8794FF4807300930C4B3968FFF731 +S3150800BF98AFFF0346FB81FB89002B06D0FA894FF4CD +S3150800BFA87A730649064805F0E9FE01F0E1FC0346FE +S3150800BFB8044A136000BF1037BD4680BDCC08002070 +S3150800BFC830100020C007002080B500AF00220021ED +S3150800BFD85220FFF7CDFF00BF80BD80B500AF002215 +S3150800BFE800215320FFF7C4FF00BF80BD80B582B08B +S3150800BFF800AF01F0BDFC78601E4B1B687A68D31A3F +S3150800C0083B601C4A7B6813601B4BB3F813309BB222 +S3150800C0181A46194BB3F815309BB202FB03F3174AB5 +S3150800C02882FB03129210DB17D31A1A46144B1A60AE +S3150800C038134B1B683A6802FB03F3124AA2FB032355 +S3150800C0489A09114B1B6813440F4A13600F4B1B7848 +S3150800C058012B02D10C4B00221A600B4B1B680C4AA9 +S3150800C068A2FB0323DB0A0B4A136000BF0837BD4649 +S3150800C07880BD00BF380A0020D401002067666666BE +S3150800C088B4070020D34D6210B80700202C0A0020F8 +S3150800C098C5B3A291BC07002080B500AFFFF7A6FF7D +S3150800C0A8FEF74CF803461A462A4B1A702A4BDA7AD0 +S3150800C0B8284B5A70294BB3F813309AB2254B5A8035 +S3150800C0C8264BB3F815309AB2224B9A80244B1B6834 +S3150800C0D8204AC2F80630234B1B681E4AC2F80A30A3 +S3150800C0E8214B1B78032B04D1204B1A78194BDA7489 +S3150800C0F802E0184B0022DA741D4B1A88154B9A82EF +S3150800C1081B4B5A88134BDA82194B9A88114B1A8398 +S3150800C118174BDA880F4B5A83154B9B680D4AD36120 +S3150800C128144B1A780B4B9A740A4A002343F07F4338 +S3150800C13843F47F0343F43B4343F0A003D38100232E +S3150800C14843F00D031382202202495020FFF710FFFF +S3150800C15800BF80BDE009002024070020D401002084 +S3150800C168B4070020BC070020500000204F0000201C +S3150800C178A8070020D009002080B483B000AF034682 +S3150800C188FB71FB79403B092B2AD801A252F823F008 +S3150800C198C1C10008C5C10008C9C10008CDC1000849 +S3150800C1A8D1C10008D5C10008D9C10008DDC10008F9 +S3150800C1B8E1C10008E5C10008012313E0012311E0E5 +S3150800C1C801230FE001230DE001230BE0042309E016 +S3150800C1D8012307E02C2305E0012303E0002301E0FF +S3150800C1E84FF6FF7318460C37BD4680BC704700BF2C +S3150800C1F8F0B58BB000AF03463960FB711346BB80B8 +S3150800C20801F0B6FB03465B4A13605B4B00221A70C3 +S3150800C2185A4B00221A60FB79403B092B00F2A3808F +S3150800C22801A252F823F000BF59C2000887C20008C5 +S3150800C238A1C20008C3C2000857C30008DDC2000827 +S3150800C248FBC2000809C300084DC3000863C30008F9 +S3150800C2583B68FB60FB681B7887F8273097F8273018 +S3150800C268642B02D9642387F82730454A97F827307C +S3150800C278137097F827301846FDF738FF76E03B68BD +S3150800C2883B613B691B78002B14BF01230023DBB2F3 +S3150800C2981A463C4B1A7069E03B687B617B691B78D8 +S3150800C2A8002B62D038490520FEF7E4F8FFF78CFE24 +S3150800C2B80A2001F067FBFFF761FB3B68BB61BB69B6 +S3150800C2C81B78002B14BF01230023DBB21A462F4B19 +S3150800C2D81A704BE03B68FB61FB691B889AB22C4BCA +S3150800C2E8A3F80F20FB695B889AB2294BA3F81B2091 +S3150800C2F83CE03B683B623B6A1A78264B1A7035E085 +S3150800C308254A3B681C46164604F1200C3546234642 +S3150800C318186859689A68DB680FC51034103664457A +S3150800C328F4D13346224610685168926807C31A4BF7 +S3150800C3385B881A4AA2FB0323DB089BB2DAB2144BC2 +S3150800C3489A7013E03B681A78154B1A700EE00C4B76 +S3150800C3581B781846FDF7CAFE08E001F009FB0346F4 +S3150800C368044A136002E000BF00E000BF00BF2C3794 +S3150800C378BD46F0BDD4090020D8090020DC090020F4 +S3150800C3884E000020C9070020A4430108CF09002051 +S3150800C398D4010020D0090020000A0020CDCCCCCC3E +S3150800C3A82C0A002080B586B000AF78600B467B80E3 +S3150800C3B87B88022B01D800235AE07B681B78FB751B +S3150800C3C87B88033BBB827B88023B7A6813441B78CD +S3150800C3D81AB27B88013B79680B441B781BB21B028F +S3150800C3E81BB213431BB27B82BB8A01339BB2194625 +S3150800C3F87868FFF741FD03463B827A8A3B8A9A4268 +S3150800C40805D01D490420FEF735F8002330E0FB7DEA +S3150800C4181846FFF7B1FE0346FB81FB894FF6FF7204 +S3150800C428934207D1FB7D1A4614490520FEF722F8E0 +S3150800C43800231DE0FA89BB8A9A4207D0FB7D1A4673 +S3150800C4480F490420FEF716F8002311E0BB8A002BD3 +S3150800C45807D07B68591CBA8AFB7D1846FFF7C8FEC1 +S3150800C46805E0FB7D002200211846FFF7C1FE0123DF +S3150800C47818461837BD4680BDBC430108D043010895 +S3150800C488E443010880B400AF0E4B1B681B689AB2D8 +S3150800C4980D4B1A800B4B1B685A790B4B9A70094B34 +S3150800C4A81B681A79084BDA70074B01229A80064BE3 +S3150800C4B80022DA80044B06221A8100BFBD4680BCDA +S3150800C4C8704700BF00000020B80E002080B500AFF6 +S3150800C4D84FF404720021054806F0BCFD4FF40472B7 +S3150800C4E80021034806F0B6FD00BF80BD3C0A0020BF +S3150800C4F84C0C002080B500AF2A4B93F84230DBB2CB +S3150800C508202B0AD1284B93F80832DBB2002B04D12A +S3150800C518FF222649234805F0F1FC254B93F84230BB +S3150800C528DBB2202B04D1FF222249214805F0E6FC7C +S3150800C5381C4B93F84130DBB2212B19D11A4BD3F88F +S3150800C5480C32002B14D001F013FA0246164BD3F816 +S3150800C5580C32D31A642B0BD9124805F02DFD00228C +S3150800C5681021154803F015FA0F4B0022C3F80C22C0 +S3150800C5780D4B93F80832DBB2002B11D0094B93F810 +S3150800C5884130DBB2212B0BD00C4800F0EDF9FF2225 +S3150800C5980649044805F0B2FC034B002283F8082232 +S3150800C5A800BF80BDE80F00203C0A00203C0B002095 +S3150800C5B8580F00204C0D0020001401403C0C0020A8 +S3150800C5C880B582B000AF78600B467B807B681A68B6 +S3150800C5D8224B1B689A4216D17B881A46204921485D +S3150800C5E800F08EF90346002B04D1142200210020FE +S3150800C5F800F0FAF81C4B00221A70FF22184917484F +S3150800C60805F07CFC25E07B681A68184B1B689A427B +S3150800C61814D17B881A461649164800F071F903465C +S3150800C628002B05D0104B01221A70134800F09CF90C +S3150800C638FF220F490D4805F061FC0AE07B681A6875 +S3150800C6480E4B1B689A4204D17B8819467868FFF70F +S3150800C658ABF900BF0837BD4680BD00BFE80F00200C +S3150800C6683C0B00203C0A00205C0E0020580F0020D6 +S3150800C6784C0D00204C0C00204C0E002030100020D9 +S3150800C68880B582B000AF78607B681A68084B1B686B +S3150800C6989A4208D100221021064803F07AF9064B77 +S3150800C6A80022C3F80C2200BF0837BD4680BD00BF6C +S3150800C6B8E80F0020001401403C0A002080B485B029 +S3150800C6C800AF78600B467B804FF0FF33FB60002392 +S3150800C6D87B8121E07B897A6813441B781A46FB68B4 +S3150800C6E85340FB6000237B7210E0FB6803F00103EC +S3150800C6F8002B05D0FB685A080D4B5340FB6002E037 +S3150800C708FB685B08FB607B7A01337B727B7A072BB5 +S3150800C718EBD97B8901337B817A897B889A42D9D37D +S3150800C728FB68DB4318461437BD4680BC704700BF14 +S3150800C7382083B8ED80B588B000AFF8607A601A46ED +S3150800C7480B467B8113467B720023FB83FB8B5A1CA3 +S3150800C758FA831A467B6813447A7A1A70FB68002BA0 +S3150800C76819D00023BB8312E0BB8BFA681A44FB8BEB +S3150800C778591CF98319467B680B4412781A70FB8B87 +S3150800C788FA2B01D900232AE0BB8B0133BB83BA8B6A +S3150800C7987B899A42E8D3FB8B19467868FFF78EFFA0 +S3150800C7A803463B6107F110037B610023BB6112E076 +S3150800C7B8BB697A691A44FB8B591CF98319467B6845 +S3150800C7C80B4412781A70FB8BFE2B01D9002306E05E +S3150800C7D8BB690133BB61BB69032BE9DDFB8B1846D3 +S3150800C7E82037BD4680BD000080B584B000AF7860AC +S3150800C7F80B467B8013467B707B787988154A786860 +S3150800C808FFF798FF0346FB81FB89002B1ED0124BC6 +S3150800C81893F84130DBB2212B07D10F4805F0CCFB42 +S3150800C828002210210D4803F0B4F8012210210B4804 +S3150800C83803F0AFF8FB891A460649074805F029FBAD +S3150800C84801F096F80346034AC2F80C3200BF1037BF +S3150800C858BD4680BD3C0A0020E80F002000140140B0 +S3150800C86880B588B000AFF8600B467A607B817B8913 +S3150800C878042B01D800233FE07B89B3F5807F01D9D3 +S3150800C888002339E07B89043BFB83FB8BFA68134456 +S3150800C8981B781946FB8B0133FA6813441B781B026D +S3150800C8A841EA0302FB8B0233F9680B441B781B0425 +S3150800C8B81A43FB8B0333F9680B441B781B0613438F +S3150800C8C8BB61FB8B1946F868FFF7F8FE7861BA6909 +S3150800C8D87B699A4201D000230EE0FB685A1C7B68E4 +S3150800C8E85A60FB681A787B681A70FB8BDBB2013BC7 +S3150800C8F8DAB27B685A70012318462037BD4680BDD0 +S3150800C90880B584B000AFF860B9601346FB80FB6851 +S3150800C91803F50072FB881946B868FFF7A1FF0346B6 +S3150800C928002B01D1002304E0FB68012283F80822C2 +S3150800C938012318461037BD4680BD000080B400AFF5 +S3150800C948BFF34F8F00BF064BDB6803F4E062044968 +S3150800C958044B1343CB60BFF34F8F00BF00BFFDE7FF +S3150800C96800ED00E00400FA0580B584B000AF7860F1 +S3150800C9781323FB737B681B78C22B00F3CC80B02B80 +S3150800C9880FDA602B42D0602B00F3C580502B43D0BA +S3150800C998502B00F3C080012B00F0A680402B2DD029 +S3150800C9A8B9E0B03B122B00F2B68001A252F823F088 +S3150800C9B827CA00081FCB00081FCB00081FCB000892 +S3150800C9C81FCB0008CFCA00081FCB00081FCB0008DA +S3150800C9D81FCB00081FCB00081FCB00081FCB000879 +S3150800C9E81FCB00081FCB00081FCB00081FCB000869 +S3150800C9F865CA0008C9CA00089DCA000800F0B2F846 +S3150800CA08402258214B48FFF7EFFE8FE060220A21A3 +S3150800CA184948FFF7E9FE89E0FDF7CAFC86E07B6826 +S3150800CA285B780B2B17D17B685A68444B106851689A +S3150800CA3803C31189927A19809A70414B01221A7098 +S3150800CA483E4BD3F803303D4A3E490720FDF712FD11 +S3150800CA581223FB7362E01323FB735FE07B685B7842 +S3150800CA68012B14D17B685B681B781A464FF47A73D6 +S3150800CA7802FB03F31A46344B5A61334B5B691A4671 +S3150800CA8832490720FDF7F6FC1223FB7346E0132309 +S3150800CA98FB7343E07B685B78012B0ED17B685B6888 +S3150800CAA81A782B4B1A702A4B1B781A4629490720DD +S3150800CAB8FDF7E0FC1223FB7330E01323FB732DE02C +S3150800CAC81323FB732AE0122200210020FFF78CFEAD +S3150800CAD800BF214B93F84130DBB2212BF9D00A204D +S3150800CAE800F050FFFFF72AFF7B685B78092B0FD108 +S3150800CAF87B685A68194B1068516803C3127A1A700A +S3150800CB08174B1B78DBB2012B0FD01223FB7305E0FA +S3150800CB181323FB7302E01323FB7300BFFB7B1A4640 +S3150800CB2800210020FFF760FE00E000BF1037BD4671 +S3150800CB3880BD00BF600E0020B80E002060000020EF +S3150800CB48C20E0020044401082407002018440108DE +S3150800CB58D40100202C440108E80F002054000020C6 +S3150800CB685C0E002080B500AF8F4B9A788F4B9A7071 +S3150800CB788D4BD3F807308D4AC2F803308A4BB3F881 +S3150800CB880F309AB2894BA3F80720874BB3F81B30A6 +S3150800CB989AB2864BA3F80920834BB3F813309AB296 +S3150800CBA8824BA3F80B20804BB3F815309AB27F4B0B +S3150800CBB8A3F80D207C4B1A7E7C4BDA737A4B5A7F86 +S3150800CBC87A4B5A70784B5A78784B1A70774B0022FA +S3150800CBD81A7400225A74754B00229A74734B0022F1 +S3150800CBE8DA7400221A750420FCF7CEFC034603F013 +S3150800CBF80103D9B26D4A537D61F3000353750320C7 +S3150800CC08FCF7C2FC034603F00103D9B2674A537D11 +S3150800CC1861F3410353750020FCF7B6FC034603F09D +S3150800CC280103D9B2614A537D61F3820353755F4A9A +S3150800CC38537D23F0080353750320FCF7B5FC034618 +S3150800CC48002B0CBF01230023D9B2584A537D61F340 +S3150800CC5804135375FDF798FB0346002B14BF0123ED +S3150800CC680023D9B2514A537D61F3451353754F4A88 +S3150800CC78537D23F0400353754D4B1B7A03F001038C +S3150800CC88D9B24A4A537D61F3C71353750020FCF796 +S3150800CC987DFD03465AB2454B5A760120FCF776FDC8 +S3150800CCA803465AB2414B9A76414BDB695AB23F4B17 +S3150800CCB8DA763E4B00221A773C4B00225A773B4BD2 +S3150800CCC800229A770022DA77384B002283F8202048 +S3150800CCD8384B9B689AB2354BA3F82120354BDB684D +S3150800CCE89AB2324BA3F82320324B1B699AB22F4BC0 +S3150800CCF8A3F82520112200212F4806F0ABF92B4B63 +S3150800CD08002283F83820294B002283F8392000228C +S3150800CD1883F83A20254B002283F83B20002283F823 +S3150800CD283C2004220021254806F094F91F4B0022CE +S3150800CD3883F84120002283F84220002283F8432002 +S3150800CD48002283F84420194B002283F84720174B02 +S3150800CD58002283F84620154B002283F84520134BFA +S3150800CD68002283F84820002283F849200F4B002226 +S3150800CD7883F84A2008220021114806F06BF90B4B64 +S3150800CD88002283F85320094B002283F854200022F6 +S3150800CD9883F85520054B002283F85620002283F88D +S3150800CDA8572000BF80BD00BFD4010020600E0020B8 +S3150800CDB824070020F8060020870E00209D0E002074 +S3150800CDC8AB0E002080B485B000AF78607B68002B76 +S3150800CDD818D07B6800221A607B6800229A807B68D4 +S3150800CDE80022DA800023FB8108E0FA897B68023290 +S3150800CDF8002143F82210FB890133FB81FB89072BA5 +S3150800CE08F3D900E000BF1437BD4680BC704780B42C +S3150800CE1885B000AF786039607B68002B01D13B6824 +S3150800CE2856E07B68DB88072B27D87B689B881A46D9 +S3150800CE387B680232396843F822107B681A683B68AF +S3150800CE481A447B681A607B689B8801339AB27B68A8 +S3150800CE589A807B689B88072B02D97B6800229A8070 +S3150800CE687B68DB8801339AB27B68DA807B681B6843 +S3150800CE787A68D28893FBF2F32AE07B689B881A467D +S3150800CE887B68023253F82230FB607B689B881A4617 +S3150800CE987B680232396843F822107B681A68396851 +S3150800CEA8FB68CB1A1A447B681A607B689B8801332F +S3150800CEB89AB27B689A807B689B88072B02D97B681D +S3150800CEC800229A807B681B68002B00DA0733DB1080 +S3150800CED818461437BD4680BC7047000080B485B034 +S3150800CEE800AF154B9B69144A43F001039361124B33 +S3150800CEF89B6903F00103BB60BB680F4BDB690E4AED +S3150800CF0843F08053D3610C4BDB6903F080537B6095 +S3150800CF187B680A4B5B68FB60FB6823F0E063FB6091 +S3150800CF28FB6843F00073FB60044AFB68536000BF64 +S3150800CF381437BD4680BC7047001002400000014007 +S3150800CF4880B400AF00BFFDE780B400AF00BFFDE7BF +S3150800CF5880B400AF00BFFDE780B400AF00BFFDE7AF +S3150800CF6880B400AF00BFFDE780B400AF00BFBD4680 +S3150800CF7880BC704780B400AF00BFBD4680BC704710 +S3150800CF8880B400AF00BFBD4680BC704780B500AF0F +S3150800CF9800F0DCFC00BF80BD80B500AF024801F098 +S3150800CFA8CDFE00BF80BD00BF8001002080B500AF60 +S3150800CFB8024804F0C3F800BF80BD00BFC80E0020B1 +S3150800CFC880B500AF024805F00BF900BF80BD00BF69 +S3150800CFD8A00F002080B500AF024805F001F900BF90 +S3150800CFE880BD00BFE80F002080B500AF024805F0F5 +S3150800CFF8F7F800BF80BD00BF3010002080B500AF2D +S3150800D008024805F0EDF800BF80BD00BF580F0020A4 +S3150800D01880B500AF024801F091FE00BF80BD00BF91 +S3150800D028A801002080B500AF024801F087FE00BFBE +S3150800D03880BD00BFA801002080B586B000AFF860A3 +S3150800D048B9607A6000237B610AE0AFF30080014685 +S3150800D058BB685A1CBA60CAB21A707B6901337B610D +S3150800D0687A697B689A42F0DB7B6818461837BD46AA +S3150800D07880BD80B483B000AF78604FF0FF331846A0 +S3150800D0880C37BD4680BC704780B483B000AF786063 +S3150800D09839603B684FF400525A60002318460C372B +S3150800D0A8BD4680BC704780B483B000AF7860012362 +S3150800D0B818460C37BD4680BC704780B485B000AFAB +S3150800D0C8F860B9607A60002318461437BD4680BCF4 +S3150800D0D87047000080B586B000AF7860144A154BD3 +S3150800D0E8D31A7B617B693B61134B1B68002B02D102 +S3150800D0F8114B124A1A60104B1A687B6813443A692E +S3150800D1089A4207D205F0F4FF03460C221A604FF03C +S3150800D118FF3309E0084B1B68FB60074B1A687B68F6 +S3150800D1281344054A1360FB6818461837BD4680BD80 +S3150800D1380000012000040000C40E0020C8110020C9 +S3150800D14880B400AF00BFBD4680BC704780B58EB0BE +S3150800D15800AF07F1280300221A605A609A60DA605D +S3150800D16807F1200300221A605A603B1D00221A6044 +S3150800D1785A609A60DA601A615A619A612C4B2D4A8C +S3150800D1881A602B4B00225A60294B00229A60284BBA +S3150800D1984FF6FF72DA60264B00221A61244B0022EA +S3150800D1A89A61234803F083FD0346002B01D0FDF757 +S3150800D1B821FC4FF48053BB6207F1280319461C4823 +S3150800D1C804F06EF90346002B01D0FDF713FC184846 +S3150800D1D803F0B2FE0346002B01D0FDF70BFC002333 +S3150800D1E83B6200237B6207F120031946104804F0C6 +S3150800D1F8FDFC0346002B01D0FDF7FCFB60237B6092 +S3150800D2080023BB600023FB6000237B613B1D0422CF +S3150800D2181946074804F082F80346002B01D0FDF7A3 +S3150800D228E9FB034800F0CEF800BF3837BD4680BD95 +S3150800D238C80E00200004004080B58EB000AF07F184 +S3150800D248280300221A605A609A60DA6007F12003F8 +S3150800D25800221A605A603B1D00221A605A609A60BA +S3150800D268DA601A615A619A61374B384A1A60364B3E +S3150800D2784FF434725A60344B00229A60324B642257 +S3150800D288DA60314B00221A612F4B00229A612E4828 +S3150800D29803F00DFD0346002B01D0FDF7ABFB4FF459 +S3150800D2A88053BB6207F128031946274804F0F8F8A3 +S3150800D2B80346002B01D0FDF79DFB234803F03CFEEF +S3150800D2C80346002B01D0FDF795FB00233B6200239C +S3150800D2D87B6207F1200319461B4804F087FC0346BE +S3150800D2E8002B01D0FDF786FB60237B600023BB601B +S3150800D2F80023FB6000237B613B1D04221946124864 +S3150800D30804F00CF80346002B01D0FDF773FB3B1D10 +S3150800D318082219460C4804F001F80346002B01D0E8 +S3150800D328FDF768FB3B1D0C221946074803F0F6FF74 +S3150800D3380346002B01D0FDF75DFB034800F042F8D1 +S3150800D34800BF3837BD4680BD100F002000080040D2 +S3150800D35880B584B000AF78607B681B68164A93422C +S3150800D36814D1164BDB69154A43F00203D361134BF4 +S3150800D378DB6903F00203FB60FB68002200211D201D +S3150800D38801F0D7FF1D2001F0F0FF10E07B681B684D +S3150800D3980B4A93420BD1094BDB69084A43F004034D +S3150800D3A8D361064BDB6903F00403BB60BB6800BFA7 +S3150800D3B81037BD4680BD00BF00040040001002407B +S3150800D3C80008004080B58AB000AF786007F11403FA +S3150800D3D800221A605A609A60DA607B681B68264AD7 +S3150800D3E8934218D1254B9B69244A43F00403936159 +S3150800D3F8224B9B6903F004033B613B6980237B61ED +S3150800D4080223BB6102233B6207F1140319461C4831 +S3150800D41802F024F92BE07B681B681A4A934226D146 +S3150800D428164B9B69154A43F020039361134B9B6976 +S3150800D43803F02003FB60FB684FF460437B6102231B +S3150800D448BB6102233B6207F1140319460E4802F032 +S3150800D45805F90E4B5B687B627B6A43F0E0637B6287 +S3150800D4687B6A43F480537B62084A7B6A536000BF31 +S3150800D4782837BD4680BD00BF0004004000100240A2 +S3150800D488000801400008004000140140000001405F +S3150800D49880B500AF114B124A1A60104B4FF416525A +S3150800D4A85A600E4B00229A600C4B0022DA600B4B2E +S3150800D4B800221A61094B0C225A61084B00229A610C +S3150800D4C8064B0022DA61054804F008FC0346002BDF +S3150800D4D801D0FDF78FFA00BF80BD00BF580F0020A6 +S3150800D4E80050004080B500AF114B124A1A60104B25 +S3150800D4F84FF4E1325A600E4B00229A600C4B002218 +S3150800D508DA600B4B00221A61094B0C225A61084B48 +S3150800D51800229A61064B0022DA61054804F0DEFB10 +S3150800D5280346002B01D0FDF765FA00BF80BD00BF92 +S3150800D538A00F00200038014080B500AF114B124AF1 +S3150800D5481A60104B4FF4E1325A600E4B00229A606B +S3150800D5580C4B0022DA600B4B00221A61094B0C228D +S3150800D5685A61084B00229A61064B0022DA6105487F +S3150800D57804F0B4FB0346002B01D0FDF73BFA00BFC5 +S3150800D58880BD00BFE80F00200044004080B500AF0A +S3150800D598114B124A1A60104B4FF4E1325A600E4B7F +S3150800D5A800229A600C4B0022DA600B4B00221A61A3 +S3150800D5B8094B0C225A61084B00229A61064B002235 +S3150800D5C8DA61054804F08AFB0346002B01D0FDF70B +S3150800D5D811FA00BF80BD00BF301000200048004087 +S3150800D5E880B592B000AF786007F1300300221A6060 +S3150800D5F85A609A60DA607B681B68954A934245D1F7 +S3150800D608944BDB69934A43F48013D361914BDB69E6 +S3150800D61803F48013FB62FB6A8E4B9B698D4A43F0C1 +S3150800D628100393618B4B9B6903F01003BB62BB6ABB +S3150800D638884B9B69874A43F020039361854B9B690E +S3150800D64803F020037B627B6A4FF480533B63022313 +S3150800D6587B630323FB6307F1300319467E4801F011 +S3150800D668FDFF04233B6300237B630023BB6307F1A9 +S3150800D67830031946794801F0F1FF002200213520C8 +S3150800D68801F057FE352001F070FEDCE07B681B6868 +S3150800D698734A93423AD16F4B9B696E4A43F4804367 +S3150800D6A893616C4B9B6903F480433B623B6A694B05 +S3150800D6B89B69684A43F004039361664B9B6903F0C8 +S3150800D6C80403FB61FB694FF400733B6302237B6326 +S3150800D6D80323FB6307F130031946624801F0BEFFCE +S3150800D6E84FF480633B6300237B630023BB6307F126 +S3150800D6F8300319465B4801F0B1FF002200212520B6 +S3150800D70801F017FE252001F030FE9CE07B681B68B7 +S3150800D718554A934246D14F4BDB694E4A43F4003388 +S3150800D728D3614C4BDB6903F40033BB61BB69494BD6 +S3150800D7389B69484A43F020039361464B9B6903F06B +S3150800D74820037B617B6920233B6302237B630323D6 +S3150800D758FB6307F130031946404801F07FFF402371 +S3150800D7683B6300237B630023BB6307F13003194639 +S3150800D7783A4801F073FF3D4B5B683B643B6C43F0EA +S3150800D788E0633B643B6C43F008033B64374A3B6CF5 +S3150800D798536000220021262001F0CBFD262001F047 +S3150800D7A8E4FD50E07B681B68314A93424BD1294B0C +S3150800D7B8DB69284A43F48023D361264BDB6903F4E3 +S3150800D7C880233B613B69234B9B69224A43F010033C +S3150800D7D89361204B9B6903F01003FB60FB684FF4C9 +S3150800D7E880633B6302237B630323FB6307F13003F0 +S3150800D7F81946194801F032FF4FF400633B630023CA +S3150800D8087B630023BB6307F130031946124801F00E +S3150800D81825FF164B5B687B647B6C23F030037B64BF +S3150800D8287B6C43F0E0637B647B6C43F010037B649A +S3150800D8380E4A7B6C536000220021272001F079FDEF +S3150800D848272001F092FD00BF4837BD4680BD00BFBE +S3150800D858005000400010024000100140001401402A +S3150800D868003801400008014000440040000001401B +S3150800D87800480040FFF764FC0B480C490C4A002393 +S3150800D88802E0D458C4500433C4188C42F9D3094A60 +S3150800D898094C002301E013600432A242FBD305F0C9 +S3150800D8A82DFCFCF7BBFF704700000020D4000020C1 +S3150800D8B8DC440108D8000020C8110020FEE7000053 +S3150800D8C880B500AF084B1B68074A43F0100313607E +S3150800D8D8032001F023FD0F2000F008F8FFF7FEFAF1 +S3150800D8E80023184680BD00BF0020024080B582B0DC +S3150800D8F800AF7860124B1A68124B1B7819464FF41A +S3150800D9087A73B3FBF1F3B2FBF3F3184601F03BFD68 +S3150800D9180346002B01D001230EE07B680F2B0AD89B +S3150800D928002279684FF0FF3001F003FD064A7B684C +S3150800D9381360002300E0012318460837BD4680BD5A +S3150800D9486C000020740000207000002080B400AF2E +S3150800D958054B1B781A46054B1B681344034A136084 +S3150800D96800BFBD4680BC70477400002078100020B0 +S3150800D97880B400AF024B1B681846BD4680BC70478A +S3150800D9887810002080B584B000AF7860FFF7F0FF04 +S3150800D998B8607B68FB60FB68B3F1FF3F05D00A4BAC +S3150800D9A81B781A46FB681344FB6000BFFFF7E0FFC5 +S3150800D9B80246BB68D31AFA689A42F7D800BF00BF6E +S3150800D9C81037BD4680BD00BF7400002080B586B0FC +S3150800D9D800AF78600023FB7500233B610023BB601A +S3150800D9E80023FB607B68002B01D10123BEE07B681E +S3150800D9F89B68002B7B689B6A002B09D17B680022F1 +S3150800DA08DA627B68002283F824207868FBF7F8FC3A +S3150800DA18786800F0F1FB0346FB757B689B6A03F0A0 +S3150800DA281003002B40F09980FB7D002B40F0958071 +S3150800DA387B689B6A23F4885323F0020343F00202A7 +S3150800DA487B689A627B685A687B68DB691A437B68D5 +S3150800DA581B7B5B001343BA681343BB607B689B68F0 +S3150800DA68B3F5807F03D07B689B68012B02D14FF4FE +S3150800DA78807300E000233A6913433B617B681B7D8A +S3150800DA88012B19D17B681B7B002B09D17B689B6905 +S3150800DA98013B5A033B69134343F400633B610BE0BC +S3150800DAA87B689B6A43F020027B689A627B68DB6A1C +S3150800DAB843F001027B68DA627B681B685B6823F4BB +S3150800DAC869417B681B683A690A435A607B681B6820 +S3150800DAD89A68284B13407A681268B9680B439360AA +S3150800DAE87B689B68B3F5807F03D07B689B68012BAE +S3150800DAF804D17B681B69013B1B05FB607B681B68B7 +S3150800DB08DB6A23F470017B681B68FA680A43DA62E1 +S3150800DB187B681B689A68184B1340BA689A420BD1F7 +S3150800DB287B680022DA627B689B6A23F0030343F06A +S3150800DB3801027B689A6218E07B689B6A23F01203E5 +S3150800DB4843F010027B689A627B68DB6A43F001023D +S3150800DB587B68DA620123FB7507E07B689B6A43F0FA +S3150800DB6810027B689A620123FB75FB7D18461837F5 +S3150800DB78BD4680BDFDF7E1FFFE0E1FFF80B584B0E8 +S3150800DB8800AF78600023FB737B6893F82430012B79 +S3150800DB9801D1022398E07B68012283F8242078685B +S3150800DBA800F0D0FA0346FB73FB7B002B40F0878016 +S3150800DBB87B689B6A23F4407323F0010343F480725D +S3150800DBC87B689A627B681B68414A934205D1414B38 +S3150800DBD85B6803F47023002B15D17B689B6A23F4D2 +S3150800DBE880127B689A627B681B685B6803F48063AB +S3150800DBF8002B26D07B689B6A23F4405343F4805253 +S3150800DC087B689A621DE07B689B6A43F480127B688E +S3150800DC189A627B681B682F4A934204D07B681B6804 +S3150800DC282B4A93420DD12B4B5B6803F48063002B78 +S3150800DC3807D07B689B6A23F4405343F480527B6879 +S3150800DC489A627B689B6A03F48053002B06D07B682C +S3150800DC58DB6A23F006027B68DA6202E07B68002248 +S3150800DC68DA627B68002283F824207B681B686FF0D9 +S3150800DC7802021A607B681B689B6803F46023B3F585 +S3150800DC88602F13D17B681B68114A934205D1114B43 +S3150800DC985B6803F47023002B08D17B681B689A68B5 +S3150800DCA87B681B6842F4A0029A600CE07B681B68D4 +S3150800DCB89A687B681B6842F480129A6003E07B685E +S3150800DCC8002283F82420FB7B18461037BD4680BD02 +S3150800DCD8002801400024014080B584B000AF786070 +S3150800DCE80023FB737B6893F82430012B01D10223A8 +S3150800DCF81AE07B68012283F82420786800F07CFA09 +S3150800DD080346FB73FB7B002B09D17B689B6A23F4CC +S3150800DD18885323F0010343F001027B689A627B6803 +S3150800DD28002283F82420FB7B18461037BD4680BDA1 +S3150800DD3890B587B000AF7860396000237B6100230F +S3150800DD48FB6000233B61FFF713FE78617B681B685D +S3150800DD589B6803F48073002B0BD07B689B6A43F09F +S3150800DD6820027B689A627B68002283F824200123B4 +S3150800DD78D3E07B681B685B6803F48073002B31D19A +S3150800DD887B681B68DB6A03F47003002B2AD121E041 +S3150800DD983B68B3F1FF3F1DD03B68002B07D0FFF760 +S3150800DDA8E7FD02467B69D31A3A689A4212D27B681B +S3150800DDB81B681B6803F00203002B0BD17B689B6A60 +S3150800DDC843F004027B689A627B68002283F8242061 +S3150800DDD80323A2E07B681B681B6803F00203002B79 +S3150800DDE8D6D070E04F4B1C68022002F005FD0346AA +S3150800DDF8B4FBF3F27B681B6819694B4B0B40002B85 +S3150800DE0818D17B681B68D968484B0B40002B11D181 +S3150800DE187B681B681969464B0B40002B08D17B6841 +S3150800DE281B68D968434B0B40002B01D1142320E00B +S3150800DE3829231EE07B681B6819693D4B0B40002B9C +S3150800DE4806D17B681B68D9683A4B0B40002B0DD066 +S3150800DE587B681B681969384B0B40002B08D17B680F +S3150800DE681B68D968344B0B40002B01D1542300E0BA +S3150800DE78FC2302FB03F33B6121E03B68B3F1FF3F58 +S3150800DE881AD03B68002B07D0FFF772FD02467B695C +S3150800DE98D31A3A689A420FD2FB683A699A420BD95A +S3150800DEA87B689B6A43F004027B689A627B68002257 +S3150800DEB883F82420032330E0FB680133FB60FB6802 +S3150800DEC83A699A42D9D87B681B686FF012021A60B9 +S3150800DED87B689B6A43F400727B689A627B681B6856 +S3150800DEE89B6803F46023B3F5602F15D17B681B7B09 +S3150800DEF8002B11D17B689B6A23F480727B689A622F +S3150800DF087B689B6A03F48053002B05D17B689B6A60 +S3150800DF1843F001027B689A62002318461C37BD46FF +S3150800DF2890BD00BF6C000020244992242449920021 +S3150800DF3892244912922449004992240080B483B055 +S3150800DF4800AF78607B681B68DB6C18460C37BD46E3 +S3150800DF5880BC704780B485B000AF7860396000230C +S3150800DF68FB730023BB607B6893F82430012B01D12F +S3150800DF780223DCE07B68012283F824203B685B687F +S3150800DF88062B1CD87B681B68596B3B685A6813466E +S3150800DF989B001344053B1F2202FA03F3DB4319408F +S3150800DFA83B6818683B685A6813469B001344053B48 +S3150800DFB800FA03F27B681B680A435A633CE03B682D +S3150800DFC85B680C2B1CD87B681B68196B3B685A68FE +S3150800DFD813469B001344233B1F2202FA03F3DB4331 +S3150800DFE819403B6818683B685A6813469B001344EF +S3150800DFF8233B00FA03F27B681B680A431A631BE093 +S3150800E0087B681B68D96A3B685A6813469B001344A1 +S3150800E018413B1F2202FA03F3DB4319403B681868A1 +S3150800E0283B685A6813469B001344413B00FA03F2BF +S3150800E0387B681B680A43DA623B681B68092B1CD98C +S3150800E0487B681B68D9683B681A6813465B001344E3 +S3150800E0581E3B072202FA03F3DB4319403B6898681C +S3150800E0683B681A6813465B0013441E3B00FA03F222 +S3150800E0787B681B680A43DA6019E07B681B681969BC +S3150800E0883B681A6813465B001344072202FA03F32F +S3150800E098DB4319403B6898683B681A6813465B0077 +S3150800E0A8134400FA03F27B681B680A431A613B6843 +S3150800E0B81B68102B03D03B681B68112B32D17B6871 +S3150800E0C81B681D4A934225D17B681B689B6803F425 +S3150800E0D80003002B26D17B681B689A687B681B6837 +S3150800E0E842F400029A603B681B68102B1AD1134B3E +S3150800E0F81B68134AA2FB03239A0C13469B00134476 +S3150800E1085B00BB6002E0BB68013BBB60BB68002BD9 +S3150800E118F9D107E07B689B6A43F020027B689A621C +S3150800E1280123FB737B68002283F82420FB7B1846AF +S3150800E1381437BD4680BC7047002401406C00002097 +S3150800E14883DE1B4380B584B000AF78600023FB608C +S3150800E1580023BB607B681B689B6803F00103012BDF +S3150800E16840D07B681B689A687B681B6842F0010286 +S3150800E1789A601F4B1B681F4AA2FB03239B0CBB60B4 +S3150800E18802E0BB68013BBB60BB68002BF9D1FFF70F +S3150800E198EFFBF8601FE0FFF7EBFB0246FB68D31AB4 +S3150800E1A8022B18D97B681B689B6803F00103012BAF +S3150800E1B811D07B689B6A43F010027B689A627B6879 +S3150800E1C8DB6A43F001027B68DA627B68002283F81F +S3150800E1D82420012307E07B681B689B6803F001037A +S3150800E1E8012BD8D1002318461037BD4680BD00BF7D +S3150800E1F86C00002083DE1B4380B584B000AF7860CE +S3150800E2080023FB607B681B689B6803F00103012BEE +S3150800E2182ED17B681B689A687B681B6822F0010206 +S3150800E2289A60FFF7A5FBF8601BE0FFF7A1FB02461B +S3150800E238FB68D31A022B14D97B681B689B6803F002 +S3150800E2480103012B0DD17B689B6A43F010027B689A +S3150800E2589A627B68DB6A43F001027B68DA6201230B +S3150800E26807E07B681B689B6803F00103012BDCD079 +S3150800E278002318461037BD4680BD000090B587B004 +S3150800E28800AF78600023FB750023FB607B6893F872 +S3150800E2982430012B01D1022397E07B68012283F8F9 +S3150800E2A824207868FFF7A8FF0346FB757868FFF708 +S3150800E2B849FF0346FB75FB7D002B40F081807B6890 +S3150800E2C89B6A23F4885323F0020343F002027B680F +S3150800E2D89A62404B1C68022002F08EFA0346B4FB89 +S3150800E2E8F3F35B00FB6002E0FB68013BFB60FB683D +S3150800E2F8002BF9D17B681B689A687B681B6842F013 +S3150800E30808029A60FFF734FB38611BE0FFF730FB19 +S3150800E31802463B69D31A0A2B14D97B681B689B6883 +S3150800E32803F00803002B0DD07B689B6A23F01203C1 +S3150800E33843F010027B689A627B68002283F82420DF +S3150800E348012342E07B681B689B6803F00803002BDF +S3150800E358DCD17B681B689A687B681B6842F00402F4 +S3150800E3689A60FFF705FB38611BE0FFF701FB0246D9 +S3150800E3783B69D31A0A2B14D97B681B689B6803F078 +S3150800E3880403002B0DD07B689B6A23F0120343F025 +S3150800E39810027B689A627B68002283F8242001238E +S3150800E3A813E07B681B689B6803F00403002BDCD129 +S3150800E3B87B689B6A23F0030343F001027B689A6231 +S3150800E3C87B68002283F82420FB7D18461C37BD4647 +S3150800E3D890BD00BF6C00002080B584B000AF78609F +S3150800E3E87B68002B01D10123EDE07B6893F8203088 +S3150800E3F8DBB2002B02D17868FBF7FCFA7B681B684E +S3150800E4081A687B681B6842F001021A60FFF7B0FABF +S3150800E418F86012E0FFF7ACFA0246FB68D31A0A2B33 +S3150800E4280BD97B685B6A43F400327B685A627B685F +S3150800E438052283F820200123C5E07B681B685B68F2 +S3150800E44803F00103002BE5D07B681B681A687B6814 +S3150800E4581B6822F002021A60FFF78AFAF86012E0CF +S3150800E468FFF786FA0246FB68D31A0A2B0BD97B688C +S3150800E4785B6A43F400327B685A627B68052283F834 +S3150800E488202001239FE07B681B685B6803F0020372 +S3150800E498002BE5D17B681B7E012B08D17B681B689E +S3150800E4A81A687B681B6842F080021A6007E07B6876 +S3150800E4B81B681A687B681B6822F080021A607B68EA +S3150800E4C85B7E012B08D17B681B681A687B681B680A +S3150800E4D842F040021A6007E07B681B681A687B6886 +S3150800E4E81B6822F040021A607B689B7E012B08D1C4 +S3150800E4F87B681B681A687B681B6842F020021A60EA +S3150800E50807E07B681B681A687B681B6822F020028C +S3150800E5181A607B68DB7E012B08D17B681B681A6842 +S3150800E5287B681B6822F010021A6007E07B681B6884 +S3150800E5381A687B681B6842F010021A607B681B7FA2 +S3150800E548012B08D17B681B681A687B681B6842F030 +S3150800E55808021A6007E07B681B681A687B681B68EC +S3150800E56822F008021A607B685B7F012B08D17B685A +S3150800E5781B681A687B681B6842F004021A6007E081 +S3150800E5887B681B681A687B681B6822F004021A6095 +S3150800E5987B689A687B68DB681A437B681B691A4339 +S3150800E5A87B685B6942EA03017B685B685A1E7B687D +S3150800E5B81B680A43DA617B6800225A627B68012273 +S3150800E5C883F82020002318461037BD4680BD000072 +S3150800E5D880B487B000AF786039607B681B687B6158 +S3150800E5E87B6893F82030FB74FB7C012B03D0FB7CFB +S3150800E5F8022B40F0BE80654B7B617B69D3F80032FD +S3150800E60843F001027B69C3F800227B69D3F800321C +S3150800E61823F47C527B69C3F800227B69D3F800226D +S3150800E6283B685B6A1B021A437B69C3F800223B688E +S3150800E6385B6903F01F03012202FA03F3FB607B6997 +S3150800E648D3F81C22FB68DB431A407B69C3F81C22F3 +S3150800E6583B68DB69002B23D17B69D3F80C22FB685E +S3150800E668DB431A407B69C3F80C223B68DB6819044C +S3150800E6783B685B689BB23A68526919437B694832BA +S3150800E68843F832103B689B6819043B681B689AB2C2 +S3150800E6983B685B690A4379694833DB000B445A606F +S3150800E6A83B68DB69012B22D17B69D3F80C22FB680E +S3150800E6B81A437B69C3F80C223B681B6819043B6834 +S3150800E6C85B689BB23A68526919437B69483243F8D2 +S3150800E6D832103B689B6819043B68DB689AB23B684A +S3150800E6E85B690A4379694833DB000B445A603B681F +S3150800E6F89B69002B09D17B69D3F80422FB68DB43A5 +S3150800E7081A407B69C3F8042207E07B69D3F8042218 +S3150800E718FB681A437B69C3F804223B681B69002B0C +S3150800E72809D17B69D3F81422FB68DB431A407B6955 +S3150800E738C3F8142207E07B69D3F81422FB681A4346 +S3150800E7487B69C3F814223B681B6A012B07D17B69CE +S3150800E758D3F81C22FB681A437B69C3F81C227B6919 +S3150800E768D3F8003223F001027B69C3F8002200239C +S3150800E77806E07B685B6A43F480227B685A62012359 +S3150800E78818461C37BD4680BC704700BF0064004069 +S3150800E79880B584B000AF78607B6893F82030DBB228 +S3150800E7A8012B2ED17B68022283F820207B681B6800 +S3150800E7B81A687B681B6822F001021A60FFF7D8F806 +S3150800E7C8F86012E0FFF7D4F80246FB68D31A0A2B5A +S3150800E7D80BD97B685B6A43F400327B685A627B68AC +S3150800E7E8052283F82020012312E07B681B685B68F2 +S3150800E7F803F00103002BE5D17B6800225A62002347 +S3150800E80806E07B685B6A43F400227B685A62012348 +S3150800E81818461037BD4680BD80B584B000AF78600D +S3150800E8287B6893F82030DBB2022B33D17B681B68F0 +S3150800E8381A687B681B6842F001021A60FFF798F8A5 +S3150800E848F86012E0FFF794F80246FB68D31A0A2B19 +S3150800E8580BD97B685B6A43F400327B685A627B682B +S3150800E868052283F8202001231BE07B681B685B6868 +S3150800E87803F00103002BE5D07B681B681A687B68E0 +S3150800E8881B6822F002021A607B68012283F820209E +S3150800E898002306E07B685B6A43F480127B685A6249 +S3150800E8A8012318461037BD4680BD80B489B000AF2D +S3150800E8B8F860B9607A603B60FB6893F82030FB77AC +S3150800E8C8FB681B689B68BB61FB7F012B03D0FB7F3A +S3150800E8D8022B40F0AD80BB6903F08063002B0AD198 +S3150800E8E8BB6903F00063002B05D1BB6903F08053AD +S3150800E8F8002B00F09580BB691B0E03F003037B61B0 +S3150800E90801227B699A403B681A60BB689B68002BA2 +S3150800E9180DD1BB681B685A05BB68DB68F9680968C6 +S3150800E9281A437B6918331B010B441A600FE0BB684E +S3150800E9385B68DA00BB689B681A43BB68DB68F968DA +S3150800E94809681A437B6918331B010B441A60FB686C +S3150800E9581968BB681A697B6918331B010B440433A9 +S3150800E9681A60BB681B7D012B11D1FB681A687B6985 +S3150800E97818331B01134404331B68FA68116843F4F7 +S3150800E98880727B6918331B010B4404331A607B6851 +S3150800E99807331B781A067B6806331B781B041A4349 +S3150800E9A87B6805331B781B0213437A68043212788E +S3150800E9B81046FA68116843EA00027B691B010B4492 +S3150800E9C803F5C6731A607B6803331B781A067B68D7 +S3150800E9D802331B781B041A437B6801331B781B0216 +S3150800E9E813437A6812781046FA68116843EA0002EF +S3150800E9F87B691B010B4403F5C4731A60FB681A6824 +S3150800EA087B6918331B0113441B68FA68116843F0BD +S3150800EA1801027B6918331B010B441A6000230EE0B8 +S3150800EA28FB685B6A43F40012FB685A62012306E036 +S3150800EA38FB685B6A43F48022FB685A62012318461E +S3150800EA482437BD4680BC704780B485B000AF78606F +S3150800EA580023FB607B6893F82030FB72FB7A012B56 +S3150800EA6802D0FB7A022B1DD17B681B689B6803F0D2 +S3150800EA788063002B02D0FB680133FB607B681B6848 +S3150800EA889B6803F00063002B02D0FB680133FB6028 +S3150800EA987B681B689B6803F08053002B02D0FB68D1 +S3150800EAA80133FB60FB6818461437BD4680BC7047BF +S3150800EAB880B487B000AFF860B9607A603B60FB68DD +S3150800EAC893F82030FB75FB7D012B03D0FB7D022BC9 +S3150800EAD840F00381BB68002B0ED1FB681B68DB6816 +S3150800EAE803F00303002B16D1FB685B6A43F4001294 +S3150800EAF8FB685A620123F7E0FB681B681B6903F089 +S3150800EB080303002B07D1FB685B6A43F40012FB6812 +S3150800EB185A620123E8E0FB681A68BB681B331B01C5 +S3150800EB2813441B6803F004027B689A607B689B6839 +S3150800EB38002B0CD1FB681A68BB681B331B011344EE +S3150800EB481B685B0DC3F30A027B681A600BE0FB6857 +S3150800EB581A68BB681B331B0113441B68DB0823F0C0 +S3150800EB6860427B685A60FB681A68BB681B331B01DE +S3150800EB7813441B6803F002027B68DA60FB681A68AC +S3150800EB88BB681B331B01134404331B6803F00803D3 +S3150800EB98002B03D07B6808221A610BE0FB681A6809 +S3150800EBA8BB681B331B01134404331B6803F00F02AD +S3150800EBB87B681A61FB681A68BB681B331B01134418 +S3150800EBC804331B681B0ADAB27B689A61FB681A6801 +S3150800EBD8BB681B331B01134404331B681B0C9AB20E +S3150800EBE87B685A61FB681A68BB681B01134403F5FE +S3150800EBF8DC731B68DAB23B681A70FB681A68BB686C +S3150800EC081B01134403F5DC731B681A0A3B680133B6 +S3150800EC18D2B21A70FB681A68BB681B01134403F55D +S3150800EC28DC731B681A0C3B680233D2B21A70FB688D +S3150800EC381A68BB681B01134403F5DC731B681A0EB4 +S3150800EC483B680333D2B21A70FB681A68BB681B01A3 +S3150800EC58134403F5DE731A683B680433D2B21A7094 +S3150800EC68FB681A68BB681B01134403F5DE731B6847 +S3150800EC781A0A3B680533D2B21A70FB681A68BB6869 +S3150800EC881B01134403F5DE731B681A0C3B6806332D +S3150800EC98D2B21A70FB681A68BB681B01134403F5DD +S3150800ECA8DE731B681A0E3B680733D2B21A70BB6844 +S3150800ECB8002B08D1FB681B68DA68FB681B6842F0FA +S3150800ECC82002DA6007E0FB681B681A69FB681B689C +S3150800ECD842F020021A61002306E0FB685B6A43F4E7 +S3150800ECE88022FB685A62012318461C37BD4680BC39 +S3150800ECF8704780B485B000AF786039607B6893F850 +S3150800ED082030FB73FB7B012B02D0FB7B022B09D13E +S3150800ED187B681B6859697B681B683A680A435A61A5 +S3150800ED28002306E07B685B6A43F480227B685A62A4 +S3150800ED38012318461437BD4680BC704780B58AB08B +S3150800ED4800AF786000237B627B681B685B693B625F +S3150800ED587B681B685B68FB617B681B689B68BB6193 +S3150800ED687B681B68DB687B617B681B681B693B6182 +S3150800ED787B681B689B69FB603B6A03F00103002BF1 +S3150800ED887CD0BB6903F00103002B23D07B681B6882 +S3150800ED9801229A60BB6903F00203002B03D0786846 +S3150800EDA800F083F916E0BB6903F00403002B04D0CE +S3150800EDB87B6A43F400637B620CE0BB6903F00803D3 +S3150800EDC8002B04D07B6A43F480537B6202E07868A0 +S3150800EDD800F086F9BB6903F48073002B24D07B689E +S3150800EDE81B684FF480729A60BB6903F40073002BA2 +S3150800EDF803D0786800F062F916E0BB6903F480630B +S3150800EE08002B04D07B6A43F400537B620CE0BB6991 +S3150800EE1803F40063002B04D07B6A43F480437B62C7 +S3150800EE2802E0786800F065F9BB6903F48033002BC3 +S3150800EE3824D07B681B684FF480329A60BB6903F458 +S3150800EE480033002B03D0786800F041F916E0BB6957 +S3150800EE5803F48023002B04D07B6A43F400437B62C7 +S3150800EE680CE0BB6903F40023002B04D07B6A43F447 +S3150800EE7880337B6202E0786800F044F93B6A03F065 +S3150800EE880803002B0CD07B6903F01003002B07D06E +S3150800EE987B6A43F400737B627B681B681022DA601E +S3150800EEA83B6A03F00403002B0BD07B6903F00803C5 +S3150800EEB8002B06D07B681B680822DA60786800F0A1 +S3150800EEC833F93B6A03F00203002B09D07B681B68F9 +S3150800EED8DB6803F00303002B02D0786800F01BF9FF +S3150800EEE83B6A03F04003002B0CD03B6903F0100380 +S3150800EEF8002B07D07B6A43F480637B627B681B68B8 +S3150800EF0810221A613B6A03F02003002B0BD03B69D9 +S3150800EF1803F00803002B06D07B681B6808221A61D1 +S3150800EF28786800F00AF93B6A03F01003002B09D049 +S3150800EF387B681B681B6903F00303002B02D07868FB +S3150800EF48FBF7E8FD3B6A03F40033002B0BD0FB699B +S3150800EF5803F01003002B06D07B681B6810225A6042 +S3150800EF68786800F0F3F83B6A03F48033002B0BD07B +S3150800EF78FB6903F00803002B06D07B681B68082288 +S3150800EF885A60786800F0EBF83B6A03F40043002BF4 +S3150800EF987BD0FB6903F00403002B72D03B6A03F4A9 +S3150800EFA88073002B08D0FB6803F00103002B03D0FD +S3150800EFB87B6A43F001037B623B6A03F40073002B08 +S3150800EFC808D0FB6803F00203002B03D07B6A43F0E2 +S3150800EFD802037B623B6A03F48063002B08D0FB6854 +S3150800EFE803F00403002B03D07B6A43F004037B6217 +S3150800EFF83B6A03F40063002B43D0FB6803F07003F5 +S3150800F008002B3ED0FB6803F07003602B2BD0602BD7 +S3150800F0182ED8502B22D0502B2AD8402B19D0402B2B +S3150800F02826D8302B10D0302B22D8102B02D0202BE4 +S3150800F03805D01DE07B6A43F008037B6219E07B6A0A +S3150800F04843F010037B6214E07B6A43F020037B627B +S3150800F0580FE07B6A43F040037B620AE07B6A43F071 +S3150800F06880037B6205E07B6A43F480737B6200E079 +S3150800F07800BF7B681B689A697B681B6822F0700268 +S3150800F0889A617B681B6804225A607B6A002B08D041 +S3150800F0987B685A6A7B6A1A437B685A62786800F002 +S3150800F0A867F800BF2837BD4680BD80B483B000AF77 +S3150800F0B8786000BF0C37BD4680BC704780B483B003 +S3150800F0C800AF786000BF0C37BD4680BC704780B477 +S3150800F0D883B000AF786000BF0C37BD4680BC704768 +S3150800F0E880B483B000AF786000BF0C37BD4680BCDB +S3150800F0F8704780B483B000AF786000BF0C37BD4650 +S3150800F10880BC704780B483B000AF786000BF0C3706 +S3150800F118BD4680BC704780B483B000AF786000BF36 +S3150800F1280C37BD4680BC704780B483B000AF7860A2 +S3150800F13800BF0C37BD4680BC704780B483B000AFAB +S3150800F148786000BF0C37BD4680BC704780B483B072 +S3150800F15800AF786000BF0C37BD4680BC704780B4E6 +S3150800F16883B000AF786000BF0C37BD4680BC7047D7 +S3150800F17880B483B000AF786000BF0C37BD4680BC4A +S3150800F1887047000080B485B000AF78607B6803F0EC +S3150800F1980703FB600C4BDB68BB60BA684FF6FF03D6 +S3150800F1A81340BB60FB681A02BB68134343F0BF638E +S3150800F1B843F40033BB60044ABB68D36000BF143706 +S3150800F1C8BD4680BC704700BF00ED00E080B400AFC4 +S3150800F1D8044BDB681B0A03F007031846BD4680BCC8 +S3150800F1E8704700BF00ED00E080B483B000AF034667 +S3150800F1F8FB7197F90730002B0BDBFB7903F01F022D +S3150800F208064997F907305B09012000FA02F241F826 +S3150800F218232000BF0C37BD4680BC704700E100E0DC +S3150800F22880B483B000AF03463960FB7197F907309D +S3150800F238002B0ADB3B68DAB20C4997F9073012014A +S3150800F248D2B20B4483F800230AE03B68DAB20849CD +S3150800F258FB7903F00F03043B1201D2B20B441A766A +S3150800F26800BF0C37BD4680BC704700BF00E100E010 +S3150800F27800ED00E080B489B000AFF860B9607A6044 +S3150800F288FB6803F00703FB61FB69C3F10703042B5B +S3150800F29828BF0423BB61FB690433062B02D9FB6923 +S3150800F2A8033B00E000237B614FF0FF32BB6902FA9B +S3150800F2B803F3DA43BB681A407B699A404FF0FF317B +S3150800F2C87B6901FA03F3D9437B680B401343184655 +S3150800F2D82437BD4680BC704780B582B000AF7860D9 +S3150800F2E87B68013BB3F1807F01D301230FE00A4A0B +S3150800F2F87B68013B53600F214FF0FF30FFF790FF03 +S3150800F308054B00229A60044B07221A600023184608 +S3150800F3180837BD4680BD00BF10E000E080B582B062 +S3150800F32800AF78607868FFF72DFF00BF0837BD463D +S3150800F33880BD80B586B000AF0346B9607A60FB73B6 +S3150800F34800237B61FFF742FF78617A68B9687869B4 +S3150800F358FFF790FF024697F90F3011461846FFF750 +S3150800F3685FFF00BF1837BD4680BD80B582B000AFC5 +S3150800F3780346FB7197F907301846FFF735FF00BFB4 +S3150800F3880837BD4680BD80B582B000AF786078681A +S3150800F398FFF7A2FF034618460837BD4680BD80B565 +S3150800F3A882B000AF78607B68002B01D101230EE09C +S3150800F3B87B685B79DBB2002B05D17B6800221A7162 +S3150800F3C87868FAF753FF7B6801225A7100231846B2 +S3150800F3D80837BD4680BD80B485B000AF7860002385 +S3150800F3E8FB737B6893F82130DBB2022B08D07B6865 +S3150800F3F804229A637B68002283F82020012320E0F0 +S3150800F4087B681B681A687B681B6822F00E021A60FC +S3150800F4187B681B681A687B681B6822F001021A60F9 +S3150800F4287B681A6C7B68DB6B012101FA02F25A6069 +S3150800F4387B68012283F821207B68002283F8202034 +S3150800F448FB7B18461437BD4680BC704780B584B028 +S3150800F45800AF78600023FB737B6893F82130DBB232 +S3150800F468022B05D07B6804229A630123FB73D6E036 +S3150800F4787B681B681A687B681B6822F00E021A608C +S3150800F4887B681B681A687B681B6822F001021A6089 +S3150800F4987B681B681A46644B9A4258D97B681B686E +S3150800F4A8624A93424FD07B681B68614A934248D0A8 +S3150800F4B87B681B685F4A934240D07B681B685E4A34 +S3150800F4C8934238D07B681B685C4A934230D07B6885 +S3150800F4D81B685B4A934228D07B681B68524A93424A +S3150800F4E820D07B681B68574A934219D07B681B68EB +S3150800F4F8554A934212D07B681B68544A93420AD0ED +S3150800F5087B681B68524A934202D14FF480531BE02A +S3150800F5184FF4803318E04FF4807315E0102313E096 +S3150800F528012311E04FF080730EE04FF480130BE0CF +S3150800F5384FF4803308E04FF4805305E04FF48073A6 +S3150800F54802E0102300E00123424A536057E07B6833 +S3150800F5581B68364A93424FD07B681B68344A9342E5 +S3150800F56848D07B681B68334A934240D07B681B683F +S3150800F578314A934238D07B681B68304A934230D068 +S3150800F5887B681B682E4A934228D07B681B68264AE4 +S3150800F598934220D07B681B682A4A934219D07B6815 +S3150800F5A81B68294A934212D07B681B68274A9342EC +S3150800F5B80AD07B681B68264A934202D14FF48053C7 +S3150800F5C81BE04FF4803318E04FF4807315E01023DE +S3150800F5D813E0012311E04FF080730EE04FF4801317 +S3150800F5E80BE04FF4803308E04FF4805305E04FF4FE +S3150800F5F8807302E0102300E00123174A53607B68F2 +S3150800F608012283F821207B68002283F820207B6862 +S3150800F6185B6B002B03D07B685B6B78689847FB7B32 +S3150800F62818461037BD4680BD8000024008000240D3 +S3150800F6381C000240300002404400024058000240C4 +S3150800F6486C000240080402401C04024030040240D0 +S3150800F65844040240000402400000024080B48BB013 +S3150800F66800AF7860396000237B6200233B6269E15A +S3150800F67801227B6A02FA03F3FB613B681B68FA6995 +S3150800F6881340BB61BA69FB699A4240F058813B68E6 +S3150800F6985B689A4A93425ED0984A934275D8984AC4 +S3150800F6A8934258D0964A93426FD8964A934252D074 +S3150800F6B8944A934269D8944A93424CD0924A9342C0 +S3150800F6C863D8924A934246D0904A93425DD8122B01 +S3150800F6D82AD8122B59D801A252F823F05FF7000846 +S3150800F6E839F700084BF700088DF7000893F7000864 +S3150800F6F893F7000893F7000893F7000893F70008AC +S3150800F70893F7000893F7000893F7000893F700089B +S3150800F71893F7000893F7000893F7000893F700088B +S3150800F72841F7000855F70008794A934213D02CE0A8 +S3150800F7383B68DB683B6229E03B68DB6804333B626D +S3150800F74824E03B68DB6808333B621FE03B68DB68FC +S3150800F7580C333B621AE03B689B68002B02D10423F2 +S3150800F7683B6213E03B689B68012B05D108233B6283 +S3150800F7787B68FA691A6109E008233B627B68FA69BB +S3150800F7885A6103E000233B6200E000BFBB69FF2B18 +S3150800F79801D87B6801E07B6804337B61BB69FF2B72 +S3150800F7A802D87B6A9B0002E07B6A083B9B003B61A8 +S3150800F7B87B691A680F213B6901FA03F3DB431A4090 +S3150800F7C8396A3B6901FA03F31A437B691A603B688D +S3150800F7D85B6803F08053002B00F0B1804D4B9B69A2 +S3150800F7E84C4A43F0010393614A4B9B6903F00103B2 +S3150800F7F8BB60BB68484A7B6A9B08023352F82330C9 +S3150800F808FB607B6A03F003039B000F2202FA03F3EB +S3150800F818DB43FA681340FB607B68404A934213D07F +S3150800F8287B683F4A93420DD07B683E4A934207D08D +S3150800F8387B683D4A934201D1032306E0042304E08A +S3150800F848022302E0012300E000237A6A02F0030299 +S3150800F85892009340FA681343FB602F497B6A9B081A +S3150800F8680233FA6841F823203B685B6803F480137F +S3150800F878002B06D02D4B9A682C49BB6913438B601D +S3150800F88806E02A4B9A68BB69DB43284913408B6014 +S3150800F8983B685B6803F40013002B06D0234BDA6831 +S3150800F8A82249BB691343CB6006E0204BDA68BB697B +S3150800F8B8DB431E491340CB603B685B6803F400339F +S3150800F8C8002B06D0194B5A681849BB6913434B6075 +S3150800F8D806E0164B5A68BB69DB43144913404B606C +S3150800F8E83B685B6803F48033002B21D00F4B1A68FA +S3150800F8F80E49BB6913430B6021E000BF00003210B4 +S3150800F908000031100000221000002110000012101B +S3150800F91800001110001002400000014000080140D4 +S3150800F928000C014000100140001401400004014089 +S3150800F9380B4B1A68BB69DB43094913400B607B6AA2 +S3150800F94801337B623B681A687B6A22FA03F3002B49 +S3150800F9587FF48EAE00BF00BF2C37BD4680BC70470B +S3150800F9680004014080B485B000AF78600B467B8000 +S3150800F9787B689A687B881340002B02D00123FB73A7 +S3150800F98801E00023FB73FB7B18461437BD4680BC91 +S3150800F998704780B483B000AF78600B467B80134607 +S3150800F9A87B707B78002B03D07A887B681A6103E022 +S3150800F9B87B881A047B681A6100BF0C37BD4680BC71 +S3150800F9C87047000080B400AF034B01221A6000BFDD +S3150800F9D8BD4680BC704700BF20000E4280B582B085 +S3150800F9E800AFFDF7C5FF7860604B1B685F4A43F0B8 +S3150800F9F80103136008E0FDF7BBFF02467B68D31ACC +S3150800FA08022B01D90323ACE0584B1B6803F0020309 +S3150800FA18002BF0D0554B1B6823F0F803534A43F0E4 +S3150800FA2880031360FDF7A4FF7860504B00225A60E4 +S3150800FA380AE0FDF79DFF02467B68D31A41F2883231 +S3150800FA48934201D903238CE0484B5B6803F00C0307 +S3150800FA58002BEED1464B474A1A60474B1B68184697 +S3150800FA68FDF744FF0346002B01D0012379E0FDF793 +S3150800FA787FFF78603D4B1B683C4A23F08073136010 +S3150800FA8808E0FDF775FF02467B68D31A022B01D9F1 +S3150800FA98032366E0354B1B6803F00073002BF0D18F +S3150800FAA8324B00225A60FDF763FF78602F4B1B68BC +S3150800FAB82E4A23F41023136008E0FDF759FF02467F +S3150800FAC87B68D31A642B01D903234AE0274B1B68A2 +S3150800FAD803F40033002BF0D1244B1B68234A23F484 +S3150800FAE880231360FDF744FF7860204B1B681F4A84 +S3150800FAF823F08063136008E0FDF73AFF02467B6847 +S3150800FB08D31A642B01D903232BE0184B1B6803F07F +S3150800FB180063002BF0D1FDF72BFF7860134B1B68A9 +S3150800FB28124A23F08053136008E0FDF721FF0246C6 +S3150800FB387B68D31A642B01D9032312E00B4B1B6885 +S3150800FB4803F00053002BF0D1084B0022DA62074B6A +S3150800FB585B6A064A43F080735362044B00229A6034 +S3150800FB68002318460837BD4680BD00BF001002406E +S3150800FB786C00002000127A007000002080B586B05C +S3150800FB8800AF78607B68002B01D1012304E37B680A +S3150800FB981B6803F00103002B00F08780924B5B6813 +S3150800FBA803F00C03042B0CD08F4B5B6803F00C0393 +S3150800FBB8082B12D18C4B5B6803F48033B3F5803F6E +S3150800FBC80BD1894B1B6803F40033002B6CD07B6878 +S3150800FBD89B68002B68D10123DEE27B689B68B3F536 +S3150800FBE8803F06D1804B1B687F4A43F480331360F5 +S3150800FBF82EE07B689B68002B0CD17B4B1B687A4AE6 +S3150800FC0823F480331360784B1B68774A23F48023E0 +S3150800FC1813601DE07B689B68B3F5A02F0CD1724B67 +S3150800FC281B68714A43F4802313606F4B1B686E4A3E +S3150800FC3843F4803313600BE06B4B1B686A4A23F462 +S3150800FC4880331360684B1B68674A23F48023136064 +S3150800FC587B689B68002B13D0FDF78AFE386108E09D +S3150800FC68FDF786FE02463B69D31A642B01D903239E +S3150800FC7892E25D4B1B6803F40033002BF0D014E0C6 +S3150800FC88FDF776FE386108E0FDF772FE02463B6925 +S3150800FC98D31A642B01D903237EE2534B1B6803F45A +S3150800FCA80033002BF0D100E000BF7B681B6803F027 +S3150800FCB80203002B63D04C4B5B6803F00C03002B44 +S3150800FCC80BD0494B5B6803F00C03082B1CD1464B39 +S3150800FCD85B6803F48033002B16D1434B1B6803F08B +S3150800FCE80203002B05D07B685B69012B01D0012331 +S3150800FCF852E23D4B1B6823F0F8027B689B69DB00E0 +S3150800FD08394913430B603AE07B685B69002B20D0BE +S3150800FD18364B01221A60FDF72BFE386108E0FDF71D +S3150800FD2827FE02463B69D31A022B01D9032333E27D +S3150800FD382D4B1B6803F00203002BF0D02A4B1B68D7 +S3150800FD4823F0F8027B689B69DB00274913430B609D +S3150800FD5815E0264B00221A60FDF70AFE386108E00E +S3150800FD68FDF706FE02463B69D31A022B01D903237F +S3150800FD7812E21D4B1B6803F00203002BF0D17B68C7 +S3150800FD881B6803F00803002B3AD07B68DB69002B55 +S3150800FD9819D0174B01221A60FDF7EAFD386108E009 +S3150800FDA8FDF7E6FD02463B69D31A022B01D9032360 +S3150800FDB8F2E10D4B5B6A03F00203002BF0D0012039 +S3150800FDC800F0CAFB1CE00A4B00221A60FDF7D0FDBA +S3150800FDD838610FE0FDF7CCFD02463B69D31A022BC2 +S3150800FDE808D90323D8E100BF0010024000004242A8 +S3150800FDF8800442429B4B5B6A03F00203002BE9D15D +S3150800FE087B681B6803F00403002B00F0A680002318 +S3150800FE18FB75944BDB6903F08053002B0DD1914B8E +S3150800FE28DB69904A43F08053D3618E4BDB6903F054 +S3150800FE388053BB60BB680123FB758B4B1B6803F4B7 +S3150800FE488073002B18D1884B1B68874A43F4807344 +S3150800FE581360FDF78DFD386108E0FDF789FD024658 +S3150800FE683B69D31A642B01D9032395E17E4B1B689A +S3150800FE7803F48073002BF0D07B681B69012B06D12D +S3150800FE88784B1B6A774A43F0010313622DE07B68B7 +S3150800FE981B69002B0CD1734B1B6A724A23F00103AA +S3150800FEA81362704B1B6A6F4A23F0040313621CE043 +S3150800FEB87B681B69052B0CD16A4B1B6A694A43F098 +S3150800FEC804031362674B1B6A664A43F0010313620D +S3150800FED80BE0644B1B6A634A23F001031362614B08 +S3150800FEE81B6A604A23F0040313627B681B69002BAC +S3150800FEF815D0FDF73DFD38610AE0FDF739FD0246E4 +S3150800FF083B69D31A41F28832934201D9032343E164 +S3150800FF18544B1B6A03F00203002BEED014E0FDF7DE +S3150800FF2827FD38610AE0FDF723FD02463B69D31A27 +S3150800FF3841F28832934201D903232DE1494B1B6AC2 +S3150800FF4803F00203002BEED1FB7D012B05D1454BAF +S3150800FF58DB69444A23F08053D3617B68DB6A002B4C +S3150800FF6800F08C803F4B5B6803F48033B3F5803F21 +S3150800FF780ED13C4B5B6803F00C03082B08D1394BB0 +S3150800FF88DB6A03F48033B3F5803F01D1012303E12B +S3150800FF987B68DB6A022B4ED1324B1B6803F0805311 +S3150800FFA8002B09D02F4BDB6A03F0F0027B685B6BEA +S3150800FFB89A4201D00123EFE02C4B00221A60FDF784 +S3150800FFC8D7FC386108E0FDF7D3FC02463B69D31A2B +S3150800FFD8642B01D90323DFE0224B1B6803F0006377 +S3150800FFE8002BF0D11F4BDB6A23F0F0027B685B6BB2 +S3150800FFF81C491343CB621B4BDB6A23F470627B688C +S315080100081B6B18491343CB62184B01221A60FDF77B +S31508010018AFFC386108E0FDF7ABFC02463B69D31A29 +S31508010028642B01D90323B7E00E4B1B6803F0006361 +S31508010038002BF0D022E00B4BDB6A0A4A23F4803303 +S31508010048D3620A4B00221A60FDF792FC38610FE069 +S31508010058FDF78EFC02463B69D31A642B08D903239C +S315080100689AE000BF00100240007000406800424252 +S315080100784B4B1B6803F00063002BE9D17B681B6AAD +S31508010088002B00F08880464B5B6803F00C03082BAD +S3150801009868D07B681B6A022B4DD1424B00221A6035 +S315080100A8FDF766FC386108E0FDF762FC02463B6924 +S315080100B8D31A022B01D903236EE0394B1B6803F0C7 +S315080100C80073002BF0D17B685B6AB3F5803F0FD1CB +S315080100D8334BDA6A7B685B6831491343CB62304B29 +S315080100E8DB6A23F00F027B68DB682D491343CB6271 +S315080100F82B4B5B6823F474127B68596A7B689B6A85 +S315080101080B43274913434B60264B01221A60FDF717 +S315080101182FFC386108E0FDF72BFC02463B69D31A28 +S31508010128022B01D9032337E01D4B1B6803F0007323 +S31508010138002BF0D02FE01B4B00221A60FDF718FCA4 +S31508010148386108E0FDF714FC02463B69D31A022B0D +S3150801015801D9032320E0124B1B6803F00073002B17 +S31508010168F0D118E07B681B6A012B01D1012313E042 +S315080101780B4B5B68FB60FB6803F480327B685B6A40 +S315080101889A4206D1FB6803F470127B689B6A9A4205 +S3150801019801D0012300E0002318461837BD4680BD63 +S315080101A8001002406000424280B584B000AF786012 +S315080101B839607B68002B01D10123D0E06A4B1B68A3 +S315080101C803F007033A689A4210D9674B1B6823F06C +S315080101D8070265493B6813430B60634B1B6803F0C9 +S315080101E807033A689A4201D00123B8E07B681B687D +S315080101F803F00203002B20D07B681B6803F0040375 +S31508010208002B05D0594B5B68584A43F4E0635360A1 +S315080102187B681B6803F00803002B05D0534B5B6802 +S31508010228524A43F460535360504B5B6823F0F0021B +S315080102387B689B684D4913434B607B681B6803F0D1 +S315080102480103002B40D07B685B68012B07D1474B1C +S315080102581B6803F40033002B15D101237FE07B6863 +S315080102685B68022B07D1414B1B6803F00073002B0F +S3150801027809D1012373E03D4B1B6803F00203002BE8 +S3150801028801D101236BE0394B5B6823F003027B68D4 +S315080102985B68364913434B60FDF76AFBF8600AE069 +S315080102A8FDF766FB0246FB68D31A41F28832934288 +S315080102B801D9032353E02D4B5B6803F00C027B68D5 +S315080102C85B689B009A42EBD1274B1B6803F007032F +S315080102D83A689A4210D2244B1B6823F0070222492E +S315080102E83B6813430B60204B1B6803F007033A6806 +S315080102F89A4201D0012332E07B681B6803F00403A4 +S31508010308002B08D0194B5B6823F4E0627B68DB682D +S31508010318164913434B607B681B6803F00803002BD7 +S3150801032809D0124B5B6823F460527B681B69DB00B2 +S315080103380E4913434B6000F021F802460B4B5B68E4 +S315080103481B0903F00F030A49CB5C22FA03F3094A8E +S315080103581360094B1B681846FDF7C8FA00231846A7 +S315080103681037BD4680BD00BF00200240001002407C +S31508010378404401086C000020700000202DE9B04FA8 +S315080103888EB000AF0023FB620023BB6200237B63A8 +S3150801039800237B6200233B6300233B620023FB6146 +S315080103A84E4B5B68FB62FB6A03F00C03042B02D015 +S315080103B8082B03D089E04A4B3B6389E0FB6A9B0C0F +S315080103C803F00F02474B9B5C7B62FB6A03F480339D +S315080103D8002B72D0414BDB6A03F00F02424B9B5C40 +S315080103E8BB623E4BDB6A03F48033002B53D03B4B8D +S315080103F8DB6A1B0903F00F0301333B62374BDB6AE0 +S315080104081B0A03F00F030233FB61FB6900229A46B4 +S3150801041893467B6A00223B617A613B6903FB0BF2CF +S315080104287B690AFB03F313443A69AAFB02010B44E5 +S3150801043819462B4B03FB01F2002300FB03F3134474 +S31508010448274AA0FB02452B441D463B6A0022BB608E +S31508010458FA60BB6A00223B607A60D7E902010B465B +S31508010468D7E900AB524602FB03F25B4684460CFB0E +S3150801047803F3134402465146A2FB01894B449946A4 +S3150801048842464B4620462946F8F7E2FD02460B4600 +S3150801049813467B6307E07B6A114A03FB02F2BB6AD0 +S315080104A8B2FBF3F37B630F4B5B7B1A467B6A93427A +S315080104B808D17B6B5B087B6304E07B6A0B4A02FB0A +S315080104C803F37B637B6B3B6302E0094B3B6300BF2A +S315080104D83B6B18463837BD46BDE8B08F0010024059 +S315080104E840787D01584401086844010800093D001F +S315080104F800127A0080B400AF024B1B681846BD4645 +S3150801050880BC70476C00002080B500AFFFF7F2FF8A +S315080105180246054B5B681B0A03F007030349CB5CD4 +S3150801052822FA03F3184680BD001002405044010818 +S3150801053880B500AFFFF7DEFF0246054B5B68DB0AAD +S3150801054803F007030349CB5C22FA03F3184680BD77 +S31508010558001002405044010880B485B000AF7860A5 +S315080105680A4B1B680A4AA2FB03235B0A7A6802FB41 +S3150801057803F3FB6000BFFB685A1EFA60002BF9D12A +S3150801058800BF00BF1437BD4680BC70476C00002009 +S31508010598D34D621080B588B000AF786000237B61BF +S315080105A800233B610023FB617B681B6803F0010399 +S315080105B8002B7DD00023FB768B4BDB6903F0805338 +S315080105C8002B0DD1884BDB69874A43F08053D361E9 +S315080105D8854BDB6903F08053FB60FB680123FB76D7 +S315080105E8824B1B6803F48073002B18D17F4B1B6859 +S315080105F87E4A43F480731360FDF7BAF9786108E017 +S31508010608FDF7B6F902467B69D31A642B01D9032388 +S31508010618E5E0764B1B6803F48073002BF0D0724B28 +S315080106281B6A03F440733B613B69002B2ED07B6838 +S315080106385B6803F440733A699A4227D06A4B1B6A86 +S3150801064823F440733B616A4B01221A60684B002206 +S315080106581A60654A3B6913623B6903F00103002B7B +S3150801066814D0FDF785F978610AE0FDF781F90246A4 +S315080106787B69D31A41F28832934201D90323AEE042 +S31508010688594B1B6A03F00203002BEED0564B1B6A23 +S3150801069823F440727B685B68534913430B62FB7EFC +S315080106A8012B05D1504BDB694F4A23F08053D3619F +S315080106B87B681B6803F00203002B08D04A4B5B686A +S315080106C823F440427B689B68474913434B607B6820 +S315080106D81B6803F00403002B08D0434BDB6A23F499 +S315080106E800327B68DB6840491343CB627B681B6829 +S315080106F803F00803002B08D03B4BDB6A23F480225E +S315080107087B681B6938491343CB62374BDB6A03F4A9 +S315080107180033002B05D1344BDB6A03F48023002B05 +S3150801072801D00123FB61FB69012B48D12E4B1B68BC +S3150801073803F08053002B38D12B4B1B6803F08063D9 +S31508010748002B09D0284BDB6A03F0F0027B689B690A +S315080107589A4201D0012342E0234BDB6A23F0F002D7 +S315080107687B689B6920491343CB621F4BDB6A23F4D9 +S3150801077870427B685B691C491343CB621D4B012296 +S315080107881A60FDF7F5F8786108E0FDF7F1F8024611 +S315080107987B69D31A642B01D9032320E0124B1B6802 +S315080107A803F00053002BF0D009E00F4BDB6A03F482 +S315080107B870427B685B699A4201D001230FE07B6826 +S315080107C81B6803F01003002B08D0074B5B6823F45A +S315080107D880027B68DB69044913434B60002318468A +S315080107E82037BD4680BD00BF00100240007000409A +S315080107F8400442427000424280B58AB000AF786030 +S315080108080023FB6100237B620023BB6100237B6114 +S3150801081800233B610023FB600023BB6000233B6286 +S315080108287B68013B0F2B00F21D8101A252F823F0C8 +S31508010838ED090108510A01086D0A01084B09010861 +S315080108486D0A01086D0A01086D0A01089D09010862 +S315080108586D0A01086D0A01086D0A01086D0A010881 +S315080108686D0A01086D0A01086D0A01087908010867 +S31508010878834B5B68BB60824B1B6803F08073002B54 +S3150801088800F0F280BB689B0C03F00F037D4AD35C2A +S31508010898BB61BB6803F48033002B3BD0784BDB6A1A +S315080108A803F00F03784AD35CFB61754BDB6A03F4E3 +S315080108B88033002B1CD0724BDB6A1B0903F00F032C +S315080108C80133FB606E4BDB6A1B0A03F00F03023325 +S315080108D87B616E4AFB68B2FBF3F37A6903FB02F2A2 +S315080108E8FB69B2FBF3F2BB6902FB03F37B6207E020 +S315080108F8664AFB69B2FBF3F2BB6902FB03F37B6247 +S31508010908604B5B7B1A46BB69934208D17B6A5B08D5 +S315080109187B6204E0BB695E4A02FB03F37B62584BC0 +S315080109285B6803F48003B3F5800F02D17B6A3B62E7 +S315080109389AE07B6A5B00574AA2FB03235B083B6282 +S3150801094892E04F4BDB6A03F40033002B03D1FFF720 +S3150801095815FD38628AE04A4B1B6803F08053002B61 +S3150801096800F08480464BDB6A1B0903F00F03013349 +S31508010978FB60434BDB6A1B0B03F00F0302333B6136 +S31508010988424AFB68B2FBF3F33A6902FB03F35B00DD +S315080109983B626BE03A4BDB6A03F48023002B03D1F5 +S315080109A8FFF7ECFC386263E0354B1B6803F08053AC +S315080109B8002B5DD0324BDB6A1B0903F00F030133A9 +S315080109C8FB602F4BDB6A1B0B03F00F0302333B61FA +S315080109D82E4AFB68B2FBF3F33A6902FB03F35B00A1 +S315080109E83B6245E0264B1B6ABB60BB6803F4407350 +S315080109F8B3F5807F08D1BB6803F00203002B03D047 +S31508010A084FF400433B621EE0BB6803F44073B3F539 +S31508010A18007F09D11A4B5B6A03F00203002B03D046 +S31508010A2849F640433B620EE0BB6803F44073B3F5ED +S31508010A38407F1FD1124B1B6803F40033002B19D0D2 +S31508010A48154B3B6216E015E0FFF772FD02460C4BA3 +S31508010A585B689B0B03F0030301335B00B2FBF3F3FB +S31508010A683B6208E000BF06E000BF04E000BF02E001 +S31508010A7800BF00E000BF3B6A18462837BD4680BD5F +S31508010A8800100240784401088844010840787D012D +S31508010A9800093D00ABAAAAAAF0FA020080B584B0FB +S31508010AA800AF78600023FB607B68002B01D1012326 +S31508010AB87AE07B685B7CDBB2002B05D17B68002278 +S31508010AC81A747868FAF736FF7B6802225A747868C6 +S31508010AD800F070F80346002B04D07B6804225A7488 +S31508010AE8012361E0786800F092F80346002B04D0E8 +S31508010AF87B6804225A74012356E07B681B685A6886 +S31508010B087B681B6822F007025A607B689B68002B82 +S31508010B1805D0274B1B6B264A23F001031363244B85 +S31508010B28DB6A23F460727B689B6821491343CB62AD +S31508010B387B685B68B3F1FF3F03D07B685B68FB6042 +S31508010B480EE00120FFF758FEF860FB68002B04D178 +S31508010B587B6804225A74012326E0FB68013BFB6083 +S31508010B68FB681A0C7B681B6802F00F029A607B689F +S31508010B781B68FA6892B2DA60786800F070F803467A +S31508010B88002B04D07B6804225A7401230CE07B6885 +S31508010B980022DA737B6801225A737B6801229A73E9 +S31508010BA87B6801225A74002318461037BD4680BD52 +S31508010BB8006C004080B584B000AF78600023FB6004 +S31508010BC87B68002B01D101231DE07B681B685A68E5 +S31508010BD87B681B6822F008025A60FCF7C9FEF860B0 +S31508010BE809E0FCF7C5FE0246FB68D31AB3F57A7F16 +S31508010BF801D9032307E07B681B685B6803F00803D0 +S31508010C08002BEED0002318461037BD4680BD80B5A7 +S31508010C1884B000AF78600023FB60FCF7A9FEF86092 +S31508010C2809E0FCF7A5FE0246FB68D31AB3F57A7FF5 +S31508010C3801D903230FE07B681B685B6803F020036F +S31508010C48002BEED07B681B685A687B681B6842F0E4 +S31508010C5810025A60002318461037BD4680BD80B574 +S31508010C6884B000AF78600023FB607B681B685A680C +S31508010C787B681B6822F010025A60FCF779FEF86057 +S31508010C8809E0FCF775FE0246FB68D31AB3F57A7FC5 +S31508010C9801D9032307E07B681B685B6803F0200317 +S31508010CA8002BEED0002318461037BD4680BD80B507 +S31508010CB882B000AF78607B68002B01D1012341E03F +S31508010CC87B6893F83D30DBB2002B06D17B6800229E +S31508010CD883F83C207868FCF73BFB7B68022283F89B +S31508010CE83D207B681A687B6804331946104600F06C +S31508010CF8C3FC7B68012283F846207B68012283F8B6 +S31508010D083E207B68012283F83F207B68012283F80D +S31508010D1840207B68012283F841207B68012283F8F9 +S31508010D2842207B68012283F843207B68012283F8E5 +S31508010D3844207B68012283F845207B68012283F8D1 +S31508010D483D20002318460837BD4680BD80B584B0C6 +S31508010D5800AF786039600023FB733B68002B09D123 +S31508010D687B6893F83E30DBB2012B14BF01230023BD +S31508010D78DBB222E03B68042B09D17B6893F83F3044 +S31508010D88DBB2012B14BF01230023DBB215E03B6854 +S31508010D98082B09D17B6893F84030DBB2012B14BFC5 +S31508010DA801230023DBB208E07B6893F84130DBB204 +S31508010DB8012B14BF01230023DBB2002B01D0012329 +S31508010DC8AEE03B68002B04D17B68022283F83E20FB +S31508010DD813E03B68042B04D17B68022283F83F2081 +S31508010DE80BE03B68082B04D17B68022283F8402074 +S31508010DF803E07B68022283F841203B680C2B41D823 +S31508010E0801A252F823F000BF450E01088D0E01080C +S31508010E188D0E01088D0E0108570E01088D0E010861 +S31508010E288D0E01088D0E0108690E01088D0E01083F +S31508010E388D0E01088D0E01087B0E01087B681B685B +S31508010E48DA687B681B6842F00202DA601DE07B6893 +S31508010E581B68DA687B681B6842F00402DA6014E0EA +S31508010E687B681B68DA687B681B6842F00802DA60E7 +S31508010E780BE07B681B68DA687B681B6842F010021E +S31508010E88DA6002E00123FB7300BFFB7B002B46D126 +S31508010E987B681B6801223968184600F083FE7B685F +S31508010EA81B68214A934207D17B681B685A6C7B6881 +S31508010EB81B6842F400425A647B681B681A4A9342C3 +S31508010EC813D07B681B68B3F1804F0ED07B681B680B +S31508010ED8164A934209D07B681B68154A934204D07F +S31508010EE87B681B68134A934211D17B681B689B6808 +S31508010EF803F00703BB60BB68062B10D07B681B6829 +S31508010F081A687B681B6842F001021A6007E07B6869 +S31508010F181B681A687B681B6842F001021A60FB7B2A +S31508010F2818461037BD4680BD002C01400004004014 +S31508010F3800080040000C004080B582B000AF786018 +S31508010F487B68002B01D1012341E07B6893F83D308A +S31508010F58DBB2002B06D17B68002283F83C2078682F +S31508010F6800F039F87B68022283F83D207B681A6805 +S31508010F787B6804331946104600F07EFB7B6801221C +S31508010F8883F846207B68012283F83E207B68012284 +S31508010F9883F83F207B68012283F840207B68012279 +S31508010FA883F841207B68012283F842207B68012265 +S31508010FB883F843207B68012283F844207B68012251 +S31508010FC883F845207B68012283F83D2000231846CB +S31508010FD80837BD4680BD80B483B000AF786000BFCE +S31508010FE80C37BD4680BC704780B584B000AF7860C1 +S31508010FF839603B68002B09D17B6893F83E30DBB230 +S31508011008012B14BF01230023DBB222E03B68042B22 +S3150801101809D17B6893F83F30DBB2012B14BF012352 +S315080110280023DBB215E03B68082B09D17B6893F8E6 +S315080110384030DBB2012B14BF01230023DBB208E0E1 +S315080110487B6893F84130DBB2012B14BF01230023D7 +S31508011058DBB2002B01D0012363E03B68002B04D1E6 +S315080110687B68022283F83E2013E03B68042B04D1EF +S315080110787B68022283F83F200BE03B68082B04D1E2 +S315080110887B68022283F8402003E07B68022283F802 +S3150801109841207B681B6801223968184600F082FDE1 +S315080110A87B681B68214A934207D17B681B685A6C7F +S315080110B87B681B6842F400425A647B681B681B4AB2 +S315080110C8934213D07B681B68B3F1804F0ED07B68B7 +S315080110D81B68174A934209D07B681B68154A9342CD +S315080110E804D07B681B68144A934211D17B681B6834 +S315080110F89B6803F00703FB60FB68062B10D07B6827 +S315080111081B681A687B681B6842F001021A6007E0C7 +S315080111187B681B681A687B681B6842F001021A60BB +S31508011128002318461037BD4680BD00BF002C014074 +S315080111380004004000080040000C004080B584B057 +S3150801114800AF78607B681B68DB68FB607B681B6897 +S315080111581B69BB60BB6803F00203002B20D0FB6840 +S3150801116803F00203002B1BD07B681B686FF0020291 +S315080111781A617B6801221A777B681B689B6903F0E9 +S315080111880303002B03D0786800F05AFA05E078685B +S31508011198F9F730F8786800F05CFA7B6800221A7764 +S315080111A8BB6803F00403002B20D0FB6803F0040393 +S315080111B8002B1BD07B681B686FF004021A617B68D9 +S315080111C802221A777B681B689B6903F44073002B14 +S315080111D803D0786800F034FA05E07868F9F70AF870 +S315080111E8786800F036FA7B6800221A77BB6803F03C +S315080111F80803002B20D0FB6803F00803002B1BD03B +S315080112087B681B686FF008021A617B6804221A77E3 +S315080112187B681B68DB6903F00303002B03D0786836 +S3150801122800F00EFA05E07868F8F7E4FF786800F048 +S3150801123810FA7B6800221A77BB6803F01003002BA3 +S3150801124820D0FB6803F01003002B1BD07B681B68B2 +S315080112586FF010021A617B6808221A777B681B6887 +S31508011268DB6903F44073002B03D0786800F0E8F9CA +S3150801127805E07868F8F7BEFF786800F0EAF97B6850 +S3150801128800221A77BB6803F00103002B0CD0FB6810 +S3150801129803F00103002B07D07B681B686FF0010276 +S315080112A81A61786800F0C3F9BB6803F08003002B5C +S315080112B80CD0FB6803F08003002B07D07B681B68FA +S315080112C86FF080021A61786800F0FFFCBB6803F0CA +S315080112D84003002B0CD0FB6803F04003002B07D012 +S315080112E87B681B686FF040021A61786800F0BAF9E2 +S315080112F8BB6803F02003002B0CD0FB6803F020031E +S31508011308002B07D07B681B686FF020021A61786882 +S3150801131800F0D2FC00BF1037BD4680BD80B586B047 +S3150801132800AFF860B9607A600023FB75FB6893F82B +S315080113383C30012B01D10223AEE0FB68012283F878 +S315080113483C207B680C2B00F29F8001A252F823F0FF +S315080113588D130108911401089114010891140108C3 +S31508011368CD13010891140108911401089114010873 +S315080113780F14010891140108911401089114010820 +S315080113884F140108FB681B68B968184600F0ECF9A0 +S31508011398FB681B689A69FB681B6842F008029A6130 +S315080113A8FB681B689A69FB681B6822F004029A6144 +S315080113B8FB681B689969BB681A69FB681B680A4355 +S315080113C89A6164E0FB681B68B968184600F032FA46 +S315080113D8FB681B689A69FB681B6842F400629A6194 +S315080113E8FB681B689A69FB681B6822F480629A6124 +S315080113F8FB681B689969BB681B691A02FB681B6845 +S315080114080A439A6143E0FB681B68B968184600F005 +S315080114187BFAFB681B68DA69FB681B6842F00802F5 +S31508011428DA61FB681B68DA69FB681B6822F0040243 +S31508011438DA61FB681B68D969BB681A69FB681B68A6 +S315080114480A43DA6123E0FB681B68B968184600F0A5 +S31508011458C5FAFB681B68DA69FB681B6842F400620F +S31508011468DA61FB681B68DA69FB681B6822F4806223 +S31508011478DA61FB681B68D969BB681B691A02FB68CC +S315080114881B680A43DA6102E00123FB7500BFFB68A2 +S31508011498002283F83C20FB7D18461837BD4680BDD7 +S315080114A880B584B000AF786039600023FB737B6828 +S315080114B893F83C30012B01D10223B4E07B68012261 +S315080114C883F83C207B68022283F83D207B681B68E9 +S315080114D89B68BB60BB6823F07703BB60BB6823F4D2 +S315080114E87F43BB607B681B68BA689A603B681B6860 +S315080114F8B3F5005F3ED0B3F5005F00F28780B3F518 +S31508011508805F00F08680B3F5805F7FD8702B1AD08C +S31508011518702B7BD8602B50D0602B77D8502B3CD0BA +S31508011528502B73D8402B58D0402B6FD8302B64D00A +S31508011538302B6BD8202B60D0202B67D8002B5CD09A +S31508011548102B5AD062E07B6818683B6899683B6833 +S315080115585A683B68DB6800F006FB7B681B689B6872 +S31508011568BB60BB6843F07703BB607B681B68BA68D6 +S315080115789A604FE07B6818683B6899683B685A68BF +S315080115883B68DB6800F0EFFA7B681B689A687B683A +S315080115981B6842F480429A603CE07B6818683B689D +S315080115A859683B68DB681A4600F066FA7B681B6867 +S315080115B85021184600F0BDFA2CE07B6818683B688C +S315080115C859683B68DB681A4600F084FA7B681B6829 +S315080115D86021184600F0ADFA1CE07B6818683B687C +S315080115E859683B68DB681A4600F046FA7B681B6847 +S315080115F84021184600F09DFA0CE07B681A683B689A +S315080116081B681946104600F094FA03E00123FB7398 +S3150801161800E000BF7B68012283F83D207B68002231 +S3150801162883F83C20FB7B18461037BD4680BD80B43D +S3150801163883B000AF786000BF0C37BD4680BC7047E1 +S3150801164880B483B000AF786000BF0C37BD4680BC54 +S31508011658704780B483B000AF786000BF0C37BD46C9 +S3150801166880BC704780B483B000AF786000BF0C3780 +S31508011678BD4680BC7047000080B485B000AF78606D +S3150801168839607B681B68FB607B68334A93420FD0D5 +S315080116987B68B3F1804F0BD07B68304A934207D0F9 +S315080116A87B682F4A934203D07B682E4A934208D116 +S315080116B8FB6823F07003FB603B685B68FA681343B1 +S315080116C8FB607B68244A93420FD07B68B3F1804F4D +S315080116D80BD07B68214A934207D07B68204A9342FC +S315080116E803D07B681F4A934208D1FB6823F44073E9 +S315080116F8FB603B68DB68FA681343FB60FB6823F009 +S3150801170880023B685B691343FB607B68FA681A6069 +S315080117183B689A687B68DA623B681A687B689A62EA +S315080117287B680D4A934203D13B681A697B681A6339 +S315080117387B6801225A617B681B6903F00103002B48 +S3150801174805D07B681B6923F001027B681A6100BF13 +S315080117581437BD4680BC7047002C01400004004080 +S3150801176800080040000C004080B487B000AF7860DC +S3150801177839607B681B6A7B617B681B6A23F00102F7 +S315080117887B681A627B685B683B617B689B69FB605F +S31508011798FB6823F07003FB60FB6823F00303FB6017 +S315080117A83B681B68FA681343FB607B6923F00203ED +S315080117B87B613B689B687A6913437B617B681C4A32 +S315080117C893420CD17B6923F008037B613B68DB688C +S315080117D87A6913437B617B6923F004037B617B6820 +S315080117E8134A934211D13B6923F480733B613B69E0 +S315080117F823F400733B613B685B693A6913433B61B0 +S315080118083B689B693A6913433B617B683A695A6045 +S315080118187B68FA689A613B685A687B685A637B6889 +S315080118287A691A6200BF1C37BD4680BC704700BF7B +S31508011838002C014080B487B000AF786039607B68B6 +S315080118481B6A7B617B681B6A23F010027B681A6234 +S315080118587B685B683B617B689B69FB60FB6823F473 +S31508011868E043FB60FB6823F44073FB603B681B6835 +S315080118781B02FA681343FB607B6923F020037B612B +S315080118883B689B681B017A6913437B617B681D4A20 +S3150801189893420DD17B6923F080037B613B68DB6842 +S315080118A81B017A6913437B617B6923F040037B61DA +S315080118B87B68144A934213D13B6923F480633B61DD +S315080118C83B6923F400633B613B685B699B003A69A2 +S315080118D813433B613B689B699B003A6913433B6128 +S315080118E87B683A695A607B68FA689A613B685A68FC +S315080118F87B689A637B687A691A6200BF1C37BD469A +S3150801190880BC7047002C014080B487B000AF78606E +S3150801191839607B681B6A7B617B681B6A23F4807262 +S315080119287B681A627B685B683B617B68DB69FB607D +S31508011938FB6823F07003FB60FB6823F00303FB6075 +S315080119483B681B68FA681343FB607B6923F40073D9 +S315080119587B613B689B681B027A6913437B617B68D9 +S315080119681D4A93420DD17B6923F400637B613B6869 +S31508011978DB681B027A6913437B617B6923F48063FD +S315080119887B617B68144A934213D13B6923F48053DC +S315080119983B613B6923F400533B613B685B691B0167 +S315080119A83A6913433B613B689B691B013A691343CF +S315080119B83B617B683A695A607B68FA68DA613B6811 +S315080119C85A687B68DA637B687A691A6200BF1C37CA +S315080119D8BD4680BC704700BF002C014080B487B063 +S315080119E800AF786039607B681B6A3B617B681B6A54 +S315080119F823F480527B681A627B685B687B617B6823 +S31508011A08DB69FB60FB6823F4E043FB60FB6823F4AE +S31508011A184073FB603B681B681B02FA681343FB604B +S31508011A283B6923F400533B613B689B681B033A698E +S31508011A3813433B617B680F4A934209D17B6923F4B7 +S31508011A4880437B613B685B699B017A6913437B61C8 +S31508011A587B687A695A607B68FA68DA613B685A680A +S31508011A687B681A647B683A691A6200BF1C37BD46E7 +S31508011A7880BC7047002C014080B487B000AFF8607D +S31508011A88B9607A60FB681B6A7B61FB681B6A23F08D +S31508011A980102FB681A62FB689B693B613B6923F093 +S31508011AA8F0033B617B681B013A6913433B617B6918 +S31508011AB823F00A037B617A69BB6813437B61FB6878 +S31508011AC83A699A61FB687A691A6200BF1C37BD468A +S31508011AD880BC704780B487B000AFF860B9607A6097 +S31508011AE8FB681B6A7B61FB681B6A23F01002FB68AB +S31508011AF81A62FB689B693B613B6923F470433B6146 +S31508011B087B681B033A6913433B617B6923F0A0038E +S31508011B187B61BB681B017A6913437B61FB683A6978 +S31508011B289A61FB687A691A6200BF1C37BD4680BC90 +S31508011B38704780B485B000AF786039607B689B6868 +S31508011B48FB60FB6823F07003FB603A68FB68134384 +S31508011B5843F00703FB607B68FA689A6000BF14378D +S31508011B68BD4680BC704780B487B000AFF860B960DD +S31508011B787A603B60FB689B687B617B6923F47F43DA +S31508011B887B613B681A027B681A43BB6813437A6907 +S31508011B9813437B61FB687A699A6000BF1C37BD46A7 +S31508011BA880BC704780B487B000AFF860B9607A60C6 +S31508011BB8BB6803F01F03012202FA03F37B61FB6882 +S31508011BC81A6A7B69DB431A40FB681A62FB681A6A58 +S31508011BD8BB6803F01F03796801FA03F31A43FB6824 +S31508011BE81A6200BF1C37BD4680BC704780B485B0F1 +S31508011BF800AF786039607B6893F83C30012B01D1D6 +S31508011C0802234BE07B68012283F83C207B68022289 +S31508011C1883F83D207B681B685B68FB607B681B68EB +S31508011C289B68BB60FB6823F07003FB603B681B6815 +S31508011C38FA681343FB607B681B68FA685A607B6815 +S31508011C481B68194A934213D07B681B68B3F1804F06 +S31508011C580ED07B681B68154A934209D07B681B68B6 +S31508011C68134A934204D07B681B68124A93420CD1E3 +S31508011C78BB6823F08003BB603B685B68BA6813439B +S31508011C88BB607B681B68BA689A607B68012283F81F +S31508011C983D207B68002283F83C2000231846143728 +S31508011CA8BD4680BC704700BF002C014000040040B7 +S31508011CB800080040000C004080B483B000AF78608B +S31508011CC800BF0C37BD4680BC704780B483B000AFEF +S31508011CD8786000BF0C37BD4680BC704780B582B0B6 +S31508011CE800AF78607B68002B01D1012342E07B684D +S31508011CF893F84130DBB2002B06D17B68002283F8C2 +S31508011D0840207868FBF76CFC7B68242283F841201D +S31508011D187B681B68DA687B681B6822F40052DA60FC +S31508011D28786800F0B5FF7B681B681A697B681B68C9 +S31508011D3822F490421A617B681B685A697B681B689A +S31508011D4822F02A025A617B681B68DA687B681B6875 +S31508011D5842F40052DA607B6800225A647B682022C2 +S31508011D6883F841207B68202283F842207B68002279 +S31508011D785A63002318460837BD4680BD80B58AB020 +S31508011D8802AFF860B9603B601346FB8000237B61AC +S31508011D98FB6893F84130DBB2202B75D1BB68002B61 +S31508011DA802D0FB88002B01D101236EE0FB680022D3 +S31508011DB85A64FB68212283F84120FBF7D9FD78612B +S31508011DC8FB68FA889A84FB68FA88DA84FB689B6850 +S31508011DD8B3F5805F08D1FB681B69002B04D1002382 +S31508011DE8FB61BB68BB6103E0BB68FB610023BB61A0 +S31508011DF82EE03B6800937B6900228021F86800F091 +S31508011E08B9FC0346002B05D0FB68202283F841203C +S31508011E1803233AE0FB69002B0BD1BB691B881A46D9 +S31508011E28FB681B68C2F308025A60BB690233BB61C7 +S31508011E3807E0FB691A78FB681B685A60FB69013376 +S31508011E48FB61FB68DB8C9BB2013B9AB2FB68DA84BF +S31508011E58FB68DB8C9BB2002BCBD13B6800937B6973 +S31508011E6800224021F86800F085FC0346002B05D0BE +S31508011E78FB68202283F84120032306E0FB68202219 +S31508011E8883F84120002300E0022318462037BD467F +S31508011E9880BD80B485B000AFF860B9601346FB8091 +S31508011EA8FB6893F84130DBB2202B21D1BB68002BA4 +S31508011EB802D0FB88002B01D101231AE0FB68BA6816 +S31508011EC81A62FB68FA889A84FB68FA88DA84FB68D6 +S31508011ED800225A64FB68212283F84120FB681B68A3 +S31508011EE8DA68FB681B6842F08002DA60002300E0C2 +S31508011EF8022318461437BD4680BC704780B58CB096 +S31508011F0800AFF860B9601346FB80FB6893F8423066 +S31508011F18DBB2202B4AD1BB68002B02D0FB88002BE9 +S31508011F2801D1012343E0FB6801221A63FB680022F9 +S31508011F385A63FB881A46B968F86800F074FC0346C0 +S31508011F4887F82F3097F82F30002B2CD1FB681B6B9D +S31508011F58012B25D100233B61FB681B681B683B6184 +S31508011F68FB681B685B683B613B69FB681B680C334C +S31508011F78BB61BB6953E8003F7B617B6943F010038A +S31508011F88BB62FB681B680C33BA6A7A623B62396AB8 +S31508011F987A6A41E80023FB61FB69002BE5D102E077 +S31508011FA8012387F82F3097F82F3000E002231846C7 +S31508011FB83037BD4680BD000080B5A2B000AF786055 +S31508011FC80123C7F884307B681B680C333B663B6E74 +S31508011FD853E8003FFB65FB6D23F4F073C7F88030BF +S31508011FE87B681B680C33D7F88020FA66BB66B96E1E +S31508011FF8FA6E41E800237B667B6E002BE3D17B688A +S315080120081B681433FB64FB6C53E8003FBB64BB6C69 +S3150801201823F00103FB677B681B681433FA6FBA65FB +S315080120287B65796DBA6D41E800233B653B6D002BED +S31508012038E5D17B681B6B012B19D17B681B680C33AF +S31508012048BB63BB6B53E8003F7B637B6B23F01003D1 +S31508012058BB677B681B680C33BA6F7A643B64396C57 +S315080120687A6C41E80023FB63FB6B002BE5D17B689F +S315080120789B6B002B0FD07B681B685B6903F0800399 +S31508012088002B04D07B689B6B534A5A6303E07B6831 +S315080120989B6B00225A637B68DB6B002B0FD07B682E +S315080120A81B685B6903F04003002B04D07B68DB6B74 +S315080120B84A4A5A6303E07B68DB6B00225A637B68EA +S315080120C81B685B6903F08003002B2DD07B681B68AE +S315080120D814337B627B6A53E8003F3B623B6A23F011 +S315080120E880037B677B681B6814337A6F3A63FB62E4 +S315080120F8F96A3A6B41E80023BB62BB6A002BE5D152 +S315080121087B689B6B002B0FD07B689B6B1846FDF78A +S315080121189DF90346002B04D07B689B6B00225A6302 +S3150801212802E00023C7F884307B681B685B6903F003 +S315080121384003002B30D07B681B6814333B613B692D +S3150801214853E8003FFB60FB6823F040033B677B6865 +S315080121581B6814333A6FFA61BB61B969FA6941E8D0 +S3150801216800237B617B69002BE5D17B68DB6B002B40 +S3150801217812D07B68DB6B1846FDF768F90346002B16 +S3150801218807D07B68DB6B00225A630123C7F88430C2 +S3150801219802E00023C7F88430D7F88430012B16D11A +S315080121A87B680022DA847B680022DA857B6800224C +S315080121B85A647B68202283F841207B68202283F8A9 +S315080121C842207B6800221A63786800F0ADFA00237A +S315080121D818468837BD4680BD8D290108ED290108AD +S315080121E880B5BAB000AF78607B681B681B68C7F80A +S315080121F8E4307B681B68DB68C7F8E0307B681B68D6 +S315080122085B69C7F8DC300023C7F8D8300023C7F85C +S31508012218D430D7F8E43003F00F03C7F8D830D7F825 +S31508012228D830002B0FD1D7F8E43003F02003002B60 +S3150801223809D0D7F8E03003F02003002B03D07868DB +S3150801224800F067FC5BE2D7F8D830002B00F0DE8097 +S31508012258D7F8DC3003F00103002B06D1D7F8E030B4 +S3150801226803F49073002B00F0D180D7F8E43003F01B +S315080122780103002B0BD0D7F8E03003F48073002B49 +S3150801228805D07B685B6C43F001027B685A64D7F812 +S31508012298E43003F00403002B0BD0D7F8DC3003F045 +S315080122A80103002B05D07B685B6C43F002027B684F +S315080122B85A64D7F8E43003F00203002B0BD0D7F899 +S315080122C8DC3003F00103002B05D07B685B6C43F017 +S315080122D804027B685A64D7F8E43003F00803002B34 +S315080122E811D0D7F8E03003F02003002B05D1D7F831 +S315080122F8DC3003F00103002B05D07B685B6C43F0E7 +S3150801230808027B685A647B685B6C002B00F0F281D3 +S31508012318D7F8E43003F02003002B08D0D7F8E030CB +S3150801232803F02003002B02D0786800F0F2FB7B68E3 +S315080123381B685B6903F04003002B14BF01230023C4 +S31508012348DBB2C7F8D4307B685B6C03F00803002B53 +S3150801235803D1D7F8D430002B4FD0786800F09CFA0F +S315080123687B681B685B6903F04003002B41D07B68D7 +S315080123781B681433C7F89C30D7F89C3053E8003FDC +S31508012388C7F89830D7F8983023F04003C7F8D03003 +S315080123987B681B681433D7F8D020C7F8A820C7F874 +S315080123A8A430D7F8A410D7F8A82041E80023C7F81D +S315080123B8A030D7F8A030002BD9D17B68DB6B002B6E +S315080123C813D07B68DB6B7E4A5A637B68DB6B1846DE +S315080123D8FDF73CF80346002B16D07B68DB6B5B6B75 +S315080123E87A68D26B104698470EE0786800F093F938 +S315080123F80AE0786800F08FF906E0786800F08BF94A +S315080124087B6800225A6475E100BF73E17B681B6B20 +S31508012418012B40F04F81D7F8E43003F01003002B65 +S3150801242800F04881D7F8E03003F01003002B00F0DC +S3150801243841810023BB607B681B681B68BB607B689E +S315080124481B685B68BB60BB687B681B685B6903F0D4 +S315080124584003002B00F0B6807B68DB6B1B685B6862 +S31508012468A7F8BE30B7F8BE30002B00F045817B6867 +S315080124789B8DB7F8BE209A4280F03E817B68B7F8F3 +S31508012488BE20DA857B68DB6B9B69202B00F0888088 +S315080124987B681B680C33C7F88830D7F8883053E847 +S315080124A8003FC7F88430D7F8843023F48073C7F817 +S315080124B8B8307B681B680C33D7F8B820C7F894205E +S315080124C8C7F89030D7F89010D7F8942041E8002338 +S315080124D8C7F88C30D7F88C30002BD9D17B681B68A4 +S315080124E814337B677B6F53E8003F3B673B6F23F0E9 +S315080124F80103C7F8B4307B681B681433D7F8B420CE +S31508012508C7F88020FB67F96FD7F8802041E80023D0 +S31508012518BB67BB6F002BE1D17B681B6814333B662D +S315080125283B6E53E8003FFB65FB6D23F04003C7F894 +S31508012538B0307B681B681433D7F8B020FA66BB66D7 +S31508012548B96EFA6E41E800237B667B6E002BE3D1F0 +S315080125587B68202283F842207B6800221A637B68FD +S315080125681B680C33FB64FB6C53E8003FBB64BB6C0C +S3150801257823F01003C7F8AC307B681B680C33D7F80F +S31508012588AC20BA657B65796DBA6D41E800233B6570 +S315080125983B6D002BE3D17B68DB6B1846FCF71BFF09 +S315080125A87B6802225A637B689A8D7B68DB8D9BB2AE +S315080125B8D31A9BB219467868FAF702F89CE000BF65 +S315080125C8652901087B689A8D7B68DB8D9BB2D31ACE +S315080125D8A7F8CE307B68DB8D9BB2002B00F08E8086 +S315080125E8B7F8CE30002B00F089807B681B680C335E +S315080125F8BB63BB6B53E8003F7B637B6B23F4907328 +S31508012608C7F8C8307B681B680C33D7F8C8207A64C2 +S315080126183B64396C7A6C41E80023FB63FB6B002B3E +S31508012628E3D17B681B6814337B627B6A53E8003FF6 +S315080126383B623B6A23F00103C7F8C4307B681B6811 +S315080126481433D7F8C4203A63FB62F96A3A6B41E84E +S315080126580023BB62BB6A002BE3D17B68202283F87F +S3150801266842207B6800221A637B681B680C333B612E +S315080126783B6953E8003FFB60FB6823F01003C7F882 +S31508012688C0307B681B680C33D7F8C020FA61BB6178 +S31508012698B969FA6941E800237B617B69002BE3D1B3 +S315080126A87B6802225A63B7F8CE3019467868F9F773 +S315080126B887FF23E0D7F8E43003F08003002B09D01D +S315080126C8D7F8E03003F08003002B03D0786800F0D0 +S315080126D8B9F914E0D7F8E43003F04003002B0ED01B +S315080126E8D7F8E03003F04003002B08D0786800F0EB +S315080126F8F8F904E000BF02E000BF00E000BFE837D0 +S31508012708BD4680BD80B483B000AF786000BF0C3782 +S31508012718BD4680BC704780B483B000AF786000BFFF +S315080127280C37BD4680BC704780B483B000AF78606B +S3150801273800BF0C37BD4680BC704780B485B000AF72 +S3150801274878600023FB600023BB607B6893F84130FF +S31508012758DBB2FB607B6893F84230DBB2BB60FB688F +S31508012768DAB2BB68DBB21343DBB218461437BD4687 +S3150801277880BC704780B586B000AFF860B9603B6029 +S315080127881346FB713BE03B6AB3F1FF3F37D0FBF7D2 +S31508012798EFF802463B68D31A3A6A9A4202D33B6A69 +S315080127A8002B01D103233AE0FB681B68DB6803F0B9 +S315080127B80403002B23D0BB68802B20D0BB68402B91 +S315080127C81DD0FB681B681B6803F00803082B16D184 +S315080127D800237B61FB681B681B687B61FB681B68B8 +S315080127E85B687B617B69F86800F056F8FB68082224 +S315080127F85A64FB68002283F8402001230FE0FB682E +S315080128081B681A68BB681340BA689A420CBF012349 +S315080128180023DBB21A46FB799A42B4D0002318463C +S315080128281837BD4680BD80B485B000AFF860B96079 +S315080128381346FB80FB68BA689A62FB68FA889A8528 +S31508012848FB68FA88DA85FB6800225A64FB68222243 +S3150801285883F84220FB681B69002B07D0FB681B68B5 +S31508012868DA68FB681B6842F48072DA60FB681B68E1 +S315080128785A69FB681B6842F001025A61FB681B68C2 +S31508012888DA68FB681B6842F02002DA6000231846FA +S315080128981437BD4680BC704780B495B000AF7860E0 +S315080128A87B681B680C337B637B6B53E8003F3B6390 +S315080128B83B6B23F49073FB647B681B680C33FA6CD7 +S315080128C83A64FB63F96B3A6C41E80023BB63BB6B5B +S315080128D8002BE5D17B681B6814333B623B6A53E8D6 +S315080128E8003FFB61FB6923F00103BB647B681B6836 +S315080128F81433BA6CFA62BB62B96AFA6A41E8002308 +S315080129087B627B6A002BE5D17B681B6B012B19D18E +S315080129187B681B680C33FB60FB6853E8003FBB60A8 +S31508012928BB6823F010037B647B681B680C337A6CDD +S31508012938BA617B617969BA6941E800233B613B69F8 +S31508012948002BE5D17B68202283F842207B68002288 +S315080129581A6300BF5437BD4680BC704780B584B03A +S3150801296800AF78607B685B6AFB60FB680022DA85E2 +S31508012978FB680022DA84F868FFF7CDFE00BF103736 +S31508012988BD4680BD80B584B000AF78607B685B6A58 +S31508012998FB60FB689B6B00225A63FB68DB6B002BA9 +S315080129A804D0FB68DB6B5B6B002B17D1FB68002235 +S315080129B8DA84FB680022DA85FB6800225A64FB6818 +S315080129C8202283F84120FB68202283F84220FB68ED +S315080129D800221A63F868FFF7A7FE00E000BF103760 +S315080129E8BD4680BD80B584B000AF78607B685B6AF8 +S315080129F8FB60FB68DB6B00225A63FB689B6B002B49 +S31508012A0804D0FB689B6B5B6B002B17D1FB68002214 +S31508012A18DA84FB680022DA85FB6800225A64FB68B7 +S31508012A28202283F84120FB68202283F84220FB688C +S31508012A3800221A63F868FFF777FE00E000BF10372F +S31508012A48BD4680BD80B485B000AF78607B6893F8D1 +S31508012A584130DBB2212B3ED17B689B68B3F5805F99 +S31508012A6814D17B681B69002B10D17B681B6AFB6034 +S31508012A78FB681B881A467B681B68C2F308025A60FA +S31508012A887B681B6A9A1C7B681A6208E07B681B6A62 +S31508012A98591C7A6811621A787B681B685A607B68C0 +S31508012AA8DB8C9BB2013B9BB27A681946D184002B11 +S31508012AB80FD17B681B68DA687B681B6822F080027D +S31508012AC8DA607B681B68DA687B681B6842F0400233 +S31508012AD8DA60002300E0022318461437BD4680BC95 +S31508012AE8704780B582B000AF78607B681B68DA6882 +S31508012AF87B681B6822F04002DA607B68202283F82B +S31508012B0841207868F9F7BCFD002318460837BD4601 +S31508012B1880BD80B58CB000AF78607B6893F8423089 +S31508012B28DBB2222B40F0AE807B689B68B3F5805FE9 +S31508012B3817D17B681B69002B13D10023FB627B68BD +S31508012B489B6ABB627B681B685B689BB2C3F3080315 +S31508012B589AB2BB6A1A807B689B6A9A1C7B689A62D6 +S31508012B6826E07B689B6AFB620023BB627B689B68DD +S31508012B78B3F5805F07D07B689B68002B0AD17B6811 +S31508012B881B69002B06D17B681B685B68DAB2FB6A8E +S31508012B981A7008E07B681B685B68DBB203F07F0381 +S31508012BA8DAB2FB6A1A707B689B6A5A1C7B689A6256 +S31508012BB87B68DB8D9BB2013B9BB27A681946D18546 +S31508012BC8002B5DD17B681B68DA687B681B6822F075 +S31508012BD82002DA607B681B68DA687B681B6822F45E +S31508012BE88072DA607B681B685A697B681B6822F001 +S31508012BF801025A617B68202283F842207B680022F9 +S31508012C085A637B681B6B012B35D17B6800221A63D3 +S31508012C187B681B680C337B617B6953E8003F3B6122 +S31508012C283B6923F010037B627B681B680C337A6A5D +S31508012C383A62FB61F9693A6A41E80023BB61BB69F3 +S31508012C48002BE5D17B681B681B6803F01003102B62 +S31508012C580AD10023FB607B681B681B68FB607B68DD +S31508012C681B685B68FB60FB687B689B8D19467868FF +S31508012C78F9F7A6FC02E07868FFF744FD002302E0AD +S31508012C88002300E0022318463037BD4680BD000000 +S31508012C9880B584B000AF78607B681B681B6923F42C +S31508012CA840517B68DA687B681B680A431A617B6846 +S31508012CB89A687B681B691A437B685B691343BB601F +S31508012CC87B681B68DB6823F4B05323F00C037A6826 +S31508012CD81268B9680B43D3607B681B685B6923F480 +S31508012CE840717B689A697B681B680A435A617B68E5 +S31508012CF81B682C4A934203D1FDF71AFCF86002E0D7 +S31508012D08FDF702FCF860FA6813469B0013449A001B +S31508012D181A447B685B689B00B2FBF3F3224AA2FB61 +S31508012D2803235B091901FA6813469B0013449A00A1 +S31508012D381A447B685B689B00B2FBF3F21A4BA3FB48 +S31508012D4802035B09642000FB03F3D31A1B01323320 +S31508012D58154AA2FB03235B0903F0F0031944FA6831 +S31508012D6813469B0013449A001A447B685B689B00C8 +S31508012D78B2FBF3F20C4BA3FB02035B09642000FBCD +S31508012D8803F3D31A1B013233074AA2FB03235B0950 +S31508012D9803F00F027B681B680A449A6000BF103764 +S31508012DA8BD4680BD003801401F85EB51002310B58B +S31508012DB80446C0E90033C0E9043383608181436668 +S31508012DC8C2818361194608225C3000F043F90D4B2C +S31508012DD8246263620C4BA3620C4BE3620C4B2363BC +S31508012DE80C4B9C4206D003F16802944202D0D033B8 +S31508012DF89C4205D104F15800BDE8104000F0A2B97B +S31508012E0810BD00BF5D2F01087F2F0108B72F0108E4 +S31508012E18DB2F01087C100020024A0349034800F009 +S31508012E2869B800BF78000020AD3C01088800002079 +S31508012E3841680C4B10B59942044601D000F032FF9F +S31508012E48A168094B994202D0204600F02BFFE16898 +S31508012E58064B994204D02046BDE8104000F022BF2F +S31508012E6810BD00BF7C100020E41000204C11002082 +S31508012E7810B50B4B0B4C0C4A20461A60042100224C +S31508012E88FFF794FF04F1680001220921FFF78EFF75 +S31508012E9804F1D0000222BDE810401221FFF786BFCF +S31508012EA8B41100207C100020212E0108014800F0E9 +S31508012EB84AB900BFBD110020014800F045B900BF55 +S31508012EC8BD11002010B50446FFF7F0FF236A1BB1B0 +S31508012ED8BDE81040FFF7F0BF044B2362044B1B689B +S31508012EE8002BF5D1FFF7C4FFF2E700BF392E010819 +S31508012EF8B41100202DE9F8430746884614460026EA +S31508012F08D4E90195B9F1010905D52468002CF7D149 +S31508012F183046BDE8F883AB89012B07D9B5F90E30D8 +S31508012F28013303D029463846C04706436835E9E7D9 +S31508012F380FB407B5064904AB086853F8042B81682A +S31508012F48019300F087FB03B05DF804EB04B0704702 +S31508012F588400002010B50C46B1F90E1000F0A4F84B +S31508012F680028ABBF636DA3891B1823F48053ACBF34 +S31508012F786365A38110BD2DE9F0411F468B89054676 +S31508012F88DB050C46164605D502230022B1F90E10B3 +S31508012F9800F078F8A389324623F48053A38128469A +S31508012FA83B46B4F90E10BDE8F04100F08FB810B5EC +S31508012FB80C46B1F90E1000F065F8431CA38915BF34 +S31508012FC8606523F4805343F48053A38118BFA38112 +S31508012FD810BDB1F90E1000F045B830B51446002CED +S31508012FE805461A469BB005DA8B2303604FF0FF3076 +S31508012FF81BB030BD4FF40273ADF80C304FF0000327 +S3150801300819930CBF234604F1FF33029305934FF630 +S31508013018FF7300910491ADF80E3069461E9B00F0C6 +S31508013028F5F9431CBCBF8B232B60002CE0D000228A +S31508013038009B1A70DCE7000007B5009313460A4699 +S31508013048014603480068FFF7C8FF03B05DF804FBAB +S315080130588400002003460244934200D1704703F8CE +S31508013068011BF9E738B50023054D044608462B60C8 +S31508013078F9F7FFFF431C02D12B6803B1236038BD5A +S31508013088B811002038B50446084611460022054DF0 +S315080130982A601A46FAF711F8431C02D12B6803B1BC +S315080130A8236038BDB811002038B5044608461146CC +S315080130B80022054D2A601A46F9F7BEFF431C02D1BC +S315080130C82B6803B1236038BDB811002038B504460A +S315080130D8084611460022054D2A601A46F7F7E4F80C +S315080130E8431C02D12B6803B1236038BDB8110020EF +S315080130F8014B1868704700BF8400002070B5002688 +S315080131080C4D0D4C641BA410A64209D100F078FF9A +S3150801311800260A4D0A4C641BA410A64205D170BDA7 +S3150801312855F8043B98470136EEE755F8043B9847A6 +S315080131380136F2E7D4440108D4440108D444010805 +S31508013148D84401087047704770470A44914200F10C +S31508013158FF3300D1704710B511F8014B914203F8B6 +S31508013168014FF9D110BD000038B50546002940D0F0 +S3150801317851F8043C0C1F002BB8BFE41800F0DEF820 +S315080131881C4A136833B9636014602846BDE8384099 +S3150801319800F0DAB8A34208D9206821188B4201BF82 +S315080131A819685B6809182160EDE71A465B680BB16F +S315080131B8A342FAD911685018A0420BD120680144D4 +S315080131C8501883421160E0D118685B68084410609A +S315080131D85360DAE702D90C232B60D6E72068211851 +S315080131E88B4201BF19685B680918216063605460DE +S315080131F8CBE738BDC411002070B50F4E0C463168AF +S31508013208054611B900F024FE30602146284600F02B +S315080132181FFE431C03D14FF0FF34204670BDC41C62 +S3150801322824F00304A042F8D0211A284600F010FE1B +S315080132380130F2D1EFE700BFC01100202DE9F843AC +S31508013248CD1C25F0030508350C2D38BF0C25002D96 +S31508013258064601DBA94204D90C2333600020BDE8E0 +S31508013268F883DFF8D48000F069F8D8F800301C46EE +S3150801327844BB29463046FFF7BFFF431C044658D1CD +S31508013288D8F800402746002F43D1002C4BD0236895 +S315080132983946304604EB030900F0DAFD814542D187 +S315080132A8216830466D1A2946FFF7A6FF01303AD03C +S315080132B823682B442360D8F800305A6862BBC8F8DB +S315080132C800700FE02268521B20D40B2A17D96119FE +S315080132D8A342256018BF5960636808BFC8F800107B +S315080132E862514B60304600F02FF804F10B00231D9C +S315080132F820F00700C21A1CBF1B1AA350AFE7626861 +S31508013308A3420CBFC8F800205A60EBE72346646855 +S31508013318AEE73C467F68B6E71A465B68A342FBD127 +S3150801332800235360DEE70C233046336000F00CF8BF +S3150801333894E70560D6E700BFC41100200148FFF7E6 +S3150801334802BF00BFBC1100200148FFF7FDBE00BF40 +S31508013358BC1100202DE9F0471F468E688246BE42F9 +S315080133680C4690460B682DD8B1F90C2012F4906FCB +S3150801337826D06569096905EB4505A3EB010905EB3E +S31508013388D5757B1C4B446D109D4238BF1D465305A8 +S3150801339827D52946FFF752FF064660B34A462169EB +S315080133A8FFF7D3FEA38923F4906343F08003A3812F +S315080133B826614E4426603E466561A5EB0905A5606A +S315080133C8BE4200D93E4632464146206800F026FDEF +S315080133D80020A3689B1BA360236833442360BDE8C8 +S315080133E8F0872A4600F052FD06460028E0D15046E5 +S315080133F82169FFF7B9FE0C23CAF80030A3894FF0F3 +S31508013408FF3043F04003A381E9E700002DE9F04FB7 +S3150801341898468B8907461B060D4614469DB010D556 +S315080134280B6973B94021FFF709FF2860286130B98C +S315080134380C233B604FF0FF301DB0BDE8F08F4023E9 +S315080134486B610023099320238DF8293030234FF027 +S315080134580109CDF80C80DFF898818DF82A302346C2 +S315080134689A4613F8012B0AB1252AF9D1BAEB040BA6 +S315080134780BD05B46224629463846FFF76BFF0130D3 +S3150801348800F0A780099A5A4409929AF80030002B45 +S3150801349800F09F8000234FF0FF32CDE905230AF19A +S315080134A8010A049307938DF853301A935446052253 +S315080134B814F8011B4E4800F0DBFC049AD8B9D0066B +S315080134C844BF20238DF85330110744BF2B238DF8A9 +S315080134D853309AF800302A2B15D0544600204FF05D +S315080134E80A0C079A214611F8013B303B092B4BD99F +S315080134F8B0B1079214E0A0EB080309FA03F31343E2 +S31508013508A2460493D2E7039B191D1B680391002B56 +S31508013518BBBF5B4242F0020207930793B8BF049206 +S3150801352823782E2B0AD163782A2B32D1039B0234AE +S315080135381A1D1B68039243EAE3730593DFF8B4A0DF +S3150801354803225046217800F093FC38B14022049BA7 +S31508013558A0EB0A00824013430134049314F8011BB3 +S31508013568062225488DF8281000F082FC002836D056 +S31508013578224B1BBB039B073323F00703083303932B +S31508013588099B334409936AE70C4601200CFB02326E +S31508013598A8E700234FF00A0C19460134059320467B +S315080135A810F8012B303A092A03D9002BC6D0059100 +S315080135B8C4E7044601230CFB0121F0E703AB00939A +S315080135C82A4638460E4B04A9AFF30080421C064624 +S315080135D8D6D1AB895B063FF52DAF09982CE703AB26 +S315080135E800932A463846064B04A900F0BDF9EDE7CB +S315080135F8984401089E440108A244010800000000F5 +S315080136085D330108936810B4013B002B936007DA10 +S315080136189469A34201DB0A2902D110BC00F06ABBEE +S315080136281368581C10601970084610BC7047F8B51D +S3150801363806460F461446D518AC4201D1002007E0C4 +S315080136483A46304614F8011BFFF7DCFF431CF3D151 +S31508013658F8BD00002DE9F04F0D4614469846064672 +S315080136689DB018B1036A0BB9FFF72CFC6B6ED90725 +S3150801367805D4AB899A0502D4A86DFFF764FDAB8911 +S315080136881B0701D52B699BB92946304600F070FB03 +S3150801369870B16B6EDC0704D54FF0FF301DB0BDE87D +S315080136A8F08FAB899805F7D4A86DFFF74DFDF3E7B9 +S315080136B80023099320238DF8293030234FF0010977 +S315080136C8CDF80C80DFF8A8818DF82A3023469A466A +S315080136D813F8012B0AB1252AF9D1BAEB040B0BD039 +S315080136E85B46224629463046FFF7A1FF013000F01E +S315080136F8A780099A5A4409929AF80030002B00F0D3 +S315080137089F8000234FF0FF32CDE905230AF1010A0C +S31508013718049307938DF853301A935446052214F8DF +S31508013728011B534800F0A4FB049AD8B9D10644BF33 +S3150801373820238DF85330130744BF2B238DF85330B4 +S315080137489AF800302A2B15D0544600204FF00A0C57 +S31508013758079A214611F8013B303B092B4BD9B0B1E1 +S31508013768079214E0A0EB080309FA03F31343A246E8 +S315080137780493D2E7039B191D1B680391002BBBBF52 +S315080137885B4242F0020207930793B8BF0492237873 +S315080137982E2B0AD163782A2B32D1039B02341A1DA0 +S315080137A81B68039243EAE3730593DFF8C8A003226B +S315080137B85046217800F05CFB38B14022049BA0EB07 +S315080137C80A00824013430134049314F8011B0622A4 +S315080137D829488DF8281000F04BFB00283FD0274BC5 +S315080137E81BBB039B073323F0070308330393099B82 +S315080137F83B4409936AE70C4601200CFB0232A8E709 +S3150801380800234FF00A0C194601340593204610F88F +S31508013818012B303A092A03D9002BC6D00591C4E7EA +S31508013828044601230CFB0121F0E703AB00932A4662 +S315080138383046134B04A9AFF300800746781CD6D146 +S315080138486B6ED90705D4AB899A0502D4A86DFFF71B +S315080138587BFCAB895B063FF51FAF09981EE703ABEF +S3150801386800932A463046064B04A900F07DF8E4E79A +S31508013878984401089E440108A24401080000000072 +S31508013888373601082DE9F047164698468A680B69BE +S3150801389807469342B8BF1346336091F843200C464E +S315080138A8DDF820900AB1013333602368990642BFCF +S315080138B8336802333360256815F0060506D104F125 +S315080138C8190AE36832689B1AAB422BDC94F8433031 +S315080138D82268003B18BF0123920630D44146384670 +S315080138E804F14302C847013023D02368226903F04B +S315080138F80603042B14BF002533684FF0000608BFDA +S31508013908E56804F11A0408BFED1A54F8123C08BF11 +S3150801391825EAE5759342C4BF9B1AED18B5421AD133 +S31508013928002008E00123524641463846C847013077 +S3150801393803D14FF0FF30BDE8F0870135C1E73020E4 +S31508013948E11881F843005A1C94F8451022440233B9 +S3150801395882F84310C2E70123224641463846C8473A +S315080139680130E6D00136D9E72DE9FF470F7E9146A2 +S31508013978782F80460C469A460C9E01F1430207D8D1 +S31508013988622F0AD8002F00F0D180582F00F0B8808E +S3150801399804F1420684F842703AE0A7F16303152B4D +S315080139A8F6D801A151F823F0093A01081D3A010888 +S315080139B89939010899390108993901089939010884 +S315080139C81D3A0108993901089939010899390108EF +S315080139D8993901081B3B0108473A0108D53A0108F4 +S315080139E899390108993901083D3B010899390108AE +S315080139F8473A01089939010899390108DD3A010850 +S31508013A0833681A1D1B68326004F1420684F842308D +S31508013A1801239CE033682068191D3160060601D523 +S31508013A281D6803E04506FBD5B3F90050002D03DAF6 +S31508013A382D236D4284F843300A23584811E021683A +S31508013A483368080653F8045B02D4490648BFADB281 +S31508013A586F2F336014BF0A2308235048002184F8BE +S31508013A6843106668002EA66005DB21682E4321F0FF +S31508013A78040121604BD01646B5FBF3F103FB115738 +S31508013A88C75D06F8017D2F46BB420D46F4D9082BBA +S31508013A980BD12368DF0708D5236961689942DEBF18 +S31508013AA8302306F8013C06F1FF36921B22614B4684 +S31508013AB821464046CDF800A003AAFFF7E3FE0130E8 +S31508013AC84AD14FF0FF3004B0BDE8F087236843F0C8 +S31508013AD8200323607827324884F8457023683168BB +S31508013AE81F0651F8045B02D45F0648BFADB23160C0 +S31508013AF8D90744BF43F0200323601DB11023ADE75E +S31508013B082648E9E7236823F020032360F6E71646E3 +S31508013B18BDE733682568181D616930602E061B687C +S31508013B2801D5196002E06806FBD5198000231646F7 +S31508013B382361BCE7336800211A1D32601E68626872 +S31508013B48304600F095F908B1801B60606368236107 +S31508013B58002384F84330AAE7324649464046236992 +S31508013B68D0470130ADD023689B0713D4E068039B7F +S31508013B789842B8BF1846A6E7012332464946404641 +S31508013B88D04701309DD00135E36803995B1AAB42EA +S31508013B98F2DCEBE7002504F11906F5E7A944010863 +S31508013BA8BA440108B1F90C20F8B5160705460C46BA +S31508013BB854D44B68002B02DC0B6C002B48DDE66AF3 +S31508013BC8002E45D0002312F480522F68216A2B60F3 +S31508013BD830D0626DA389590705D56368D21A636B14 +S31508013BE80BB1236CD21A00232846E66A216AB04724 +S31508013BF8431CA38906D129681D292BD8284ACA40F6 +S31508013C08D60727D5002262602269D904226004D51D +S31508013C18421C01D12B6803B96065616B2F60B9B184 +S31508013C2804F14403994202D02846FFF79DFA002376 +S31508013C3863630DE001232846B0470246501CC9D1E3 +S31508013C482B68002BC6D01D2B01D0162B1DD12F6032 +S31508013C58002021E043F040031BB21AE00F69002F48 +S31508013C68F6D0930718BF00230E6808BF4B69F61BE1 +S31508013C780F608B60002EEBDD33463A462846216AEB +S31508013C88D4F828C0E047002807DCB4F90C3043F01B +S31508013C9840034FF0FF30A381F8BD0744361AE9E718 +S31508013CA80100402038B50B6905460C4613B90025AD +S31508013CB8284638BD18B1036A0BB9FFF703F9B4F9F1 +S31508013CC80C30002BF3D0626ED00704D4990502D4C0 +S31508013CD8A06DFFF738FA28462146FFF763FF636E9A +S31508013CE80546DA07E4D4A3899B05E1D4A06DFFF755 +S31508013CF82BFADDE7F8B50E461446054618B1036AE8 +S31508013D080BB9FFF7DFF8A369A360A3891A0701D5D9 +S31508013D18236943B92146284600F02AF818B14FF015 +S31508013D28FF373846F8BD23682269F6B2981A6369D7 +S31508013D383746834205DC21462846FFF7B3FF0028A4 +S31508013D48EDD1A368013BA36023685A1C22601E7043 +S31508013D586269431C9A4204D0A389DB07E1D50A2E76 +S31508013D68DFD121462846FFF79DFF0028D9D0D6E797 +S31508013D7838B5294B054618680C4618B1036A0BB9B4 +S31508013D88FFF7A0F8B4F90C30190722D4DA0607D4D4 +S31508013D9809222A6043F040034FF0FF30A38133E03C +S31508013DA8580712D5616B41B104F14403994202D00F +S31508013DB82846FFF7D9F900236363A38923F0240367 +S31508013DC8A3810023636023692360A38943F0080359 +S31508013DD8A38123694BB9A38903F42073B3F5007F3B +S31508013DE803D02146284600F0A4F8B4F90C3013F09C +S31508013DF801020AD00022A26062695242A2612269BE +S31508013E0842B913F08000C5D138BD990758BF626910 +S31508013E18A260F4E70020F7E784000020884210B57D +S31508013E2801EB020402D98442234607D8431EA1425C +S31508013E3808D011F8012B03F8012FF8E701460244C7 +S31508013E488A4200D110BD13F8014D02F8014DF7E772 +S31508013E5838B50023054D044608462B60F9F73AF9A3 +S31508013E68431C02D12B6803B1236038BDB811002061 +S31508013E78034610B5C9B202449342184601D1002037 +S31508013E8803E0047801338C42F6D110BD2DE9F041DF +S31508013E98074614460D4621B91146BDE8F041FFF714 +S31508013EA8CDB92AB9FFF760F925462846BDE8F08154 +S31508013EB800F09EF88442064602D8B4EB500FF4D8AF +S31508013EC821463846FFF7BAF9804608B94546ECE768 +S31508013ED8B4422246294628BF3246FFF736F929460B +S31508013EE83846FFF741F9F1E770B50C46B1F90E10F6 +S31508013EF8154600291E4696B00CDAA389002113F047 +S31508013F08800F14BF40234FF48063002031602B6073 +S31508013F1816B070BD6A4600F049F80028EDDB01992C +S31508013F2801F47041A1F50053594259414FF4806390 +S31508013F38EBE78B89F7B59D0706460C4607D504F1C5 +S31508013F484703236023610123636103B0F0BD6A4611 +S31508013F5801ABFFF7C9FF009F054639463046FFF70B +S31508013F686DF948B9B4F90C309A05EED423F0030370 +S31508013F7843F00203A381E2E7A389C4E9040743F0EE +S31508013F888003A381019B20605BB13046B4F90E100A +S31508013F9800F01EF828B1A38923F0030343F00103AF +S31508013FA8A381A3891D43A581CFE7000038B500235E +S31508013FB8064D0446084611462B60F9F765F8431C71 +S31508013FC802D12B6803B1236038BD00BFB8110020A0 +S31508013FD838B50023054D044608462B60F9F763F8FA +S31508013FE8431C02D12B6803B1236038BDB8110020E0 +S31508013FF851F8043C181F002BBCBF0B58C018704752 +S31508014008F8B500BFF8BC08BC9E467047F8B500BFAE +S30D08014018F8BC08BC9E4670477E +S31508014020434F4E4E2564204572726F723A202564BD +S315080140300A000000436F6E6E6563746F723A20550D +S315080140406E6B6E6F776E0A00436F6E6E6563746F83 +S31508014050723A20556E706C75676765640A000000D0 +S31508014060436F6E6E6563746F723A20446973616259 +S315080140706C65640A00000000436F6E6E6563746FB9 +S31508014080723A20507265706172696E670A000000A3 +S31508014090436F6E6E6563746F723A20417574685228 +S315080140A0657175697265640A00000000436F6E6E7A +S315080140B06563746F723A2057616974696E67466FF2 +S315080140C072456E657267790A00000000436F6E6E6D +S315080140D06563746F723A204368617267696E6750E7 +S315080140E0617573656445560A00000000436F6E6E7C +S315080140F06563746F723A204368617267696E6750C7 +S315080141006175736564455653450A0000436F6E6EC3 +S315080141106563746F723A204368617267696E670AEC +S3150801412000000000436F6E6E6563746F723A20413A +S3150801413075746854696D656F75740A00436F6E6EA0 +S315080141406563746F723A2046696E69736865640AB5 +S3150801415000000000436F6E6E6563746F723A204605 +S31508014160696E6973686564455653450A000000001F +S31508014170436F6E6E6563746F723A2046696E697332 +S3150801418068656445560A0000436F6E6E6563746F11 +S31508014190723A205265706C756767696E670A000026 +S315080141A0434F4E4E2564204368617267696E6720E6 +S315080141B046696E69736865643A0A00004368617204 +S315080141C067696E6720456E657267793A2025640AC4 +S315080141D000000000434353206D6F64756C652073BE +S315080141E0746172740A00000053657269616C206E0D +S315080141F0756D6265723A2025640A0000426F617224 +S3150801420064207265766973696F6E3A2025640A00BF +S3150801421046572076657273696F6E3A2025642E2596 +S31508014220642E25640A000000505355206F6E2074D1 +S31508014230696D656F75740A00436F6E746163746F97 +S3150801424072206572726F722C2073746F7070696E4A +S31508014250672E2E2E0A000000505355206F666620E1 +S3150801426074696D656F75740A000000004553544FF3 +S3150801427050207472696767657265640A00000000F8 +S3150801428053746F7070696E67206368617267696ECF +S31508014290672E2E2E0A00000046696E6973686564EA +S315080142A045562C2073746F7070696E672E2E2E0A10 +S315080142B0000000004368617267696E672065727263 +S315080142C06F722025642C207374617465202D3E203D +S315080142D064697361626C65640A000000436861720F +S315080142E067696E67207065726D69747465642C20E0 +S315080142F07374617274206368617267696E670A0014 +S3150801430043617220756E706C75676765640A000093 +S315080143105265706C756767696E672E2E2E0A0000E6 +S315080143205265706C756767696E672066696E697331 +S315080143306865642C206275742063617220756E70DD +S315080143406C75676765640A005265706C756767699D +S315080143506E672066696E69736865642C206361728D +S3150801436020706C75676765642C20737461746520A9 +S315080143702D3E206175746820726571756972656470 +S315080143800A000000457665726573742074696D6567 +S315080143906F75740A0000000043435320696E6974FF +S315080143A00A00000045766572657374207265736547 +S315080143B07420636F6D6D616E640A00005061636BF2 +S315080143C0657420435243206572726F720A000000B9 +S315080143D0556E6B6E6F776E20636D6420307825306D +S315080143E032780A005061636B6574206C656E206DC6 +S315080143F069736D6174636820636D643D3078253037 +S3150801440032780A0053657420436F6E6669673A20ED +S3150801441025732025640A0000506F776572206C6940 +S315080144206D69743A2025640A0000000043686172C8 +S315080144306765207065726D69743A2025640A000003 +S315080144400000000000000000010203040607080935 +S31508014450000000000102030400000405060708091C +S3150801446000000000000D000001020304050607080C +S31508014470090A0B0C0D0E0F100000040506070809A2 +S3150801448000000000000D00000102030405060708EC +S31508014490090A0B0C0D0E0F10232D302B2000686C0A +S315080144A04C00656667454647003031323334353648 +S315080144B03738394142434445460030313233343581 +S311080144C0363738396162636465660000AE +S30D080144CCBC4BFF7F0100000053 +S309080144D40D8200083E +S309080144D8E98100085F +S315080144DCE401000006060600400000320A320040DC +S315080144EC00000000008000320A3200008000000043 +S315080144FC0000FA320A32000000FA000000FF00320E +S3150801450C0A32000020000000FFFFFF320A3200FFCA +S3150801451CFFFF0000FF0000320A320020000064068B +S3150801452C0100000000FFFF00000000000000000071 +S3150801453C52555301000000FE529E66000024F400F9 +S3150801454C100000000100000000000000030000003C +S3150801455C7C10002088000020000000007C10002040 +S3150801456CE41000204C11002000000000000000009F +S3150801457C0000000000000000000000000000000020 +S3150801458C0000000000000000000000000000000010 +S3150801459C0000000000000000000000000000000000 +S309080145AC00000000FC +S7050800D87D9D diff --git a/Debug/Core/Src/serial.cyclo b/Debug/Core/Src/serial.cyclo index 5f796a9..733dd3c 100644 --- a/Debug/Core/Src/serial.cyclo +++ b/Debug/Core/Src/serial.cyclo @@ -1,15 +1,15 @@ ../Drivers/CMSIS/Include/core_cm3.h:1762:34:__NVIC_SystemReset 1 -../Core/Src/serial.c:54:6:CCS_RxEventCallback 4 -../Core/Src/serial.c:64:6:CCS_SerialLoop 44 -../Core/Src/serial.c:224:6:CCS_Init 1 -../Core/Src/serial.c:236:17:crc16_ibm 4 -../Core/Src/serial.c:251:17:CCS_BuildPacket 4 -../Core/Src/serial.c:267:13:CCS_SendPacket 2 -../Core/Src/serial.c:275:13:CCS_SendResetReason 1 -../Core/Src/serial.c:279:6:CCS_SendEmergencyStop 1 -../Core/Src/serial.c:283:6:CCS_SendStart 1 -../Core/Src/serial.c:287:13:CCS_CalculateEnergy 2 -../Core/Src/serial.c:302:13:send_state 2 -../Core/Src/serial.c:329:17:expected_payload_len 11 -../Core/Src/serial.c:345:13:apply_command 13 -../Core/Src/serial.c:414:16:process_received_packet 6 +../Core/Src/serial.c:55:6:CCS_RxEventCallback 4 +../Core/Src/serial.c:65:6:CCS_SerialLoop 45 +../Core/Src/serial.c:231:6:CCS_Init 1 +../Core/Src/serial.c:243:17:crc16_ibm 4 +../Core/Src/serial.c:258:17:CCS_BuildPacket 4 +../Core/Src/serial.c:274:13:CCS_SendPacket 2 +../Core/Src/serial.c:282:13:CCS_SendResetReason 1 +../Core/Src/serial.c:286:6:CCS_SendEmergencyStop 1 +../Core/Src/serial.c:290:6:CCS_SendStart 1 +../Core/Src/serial.c:294:13:CCS_CalculateEnergy 2 +../Core/Src/serial.c:309:13:send_state 2 +../Core/Src/serial.c:336:17:expected_payload_len 11 +../Core/Src/serial.c:352:13:apply_command 13 +../Core/Src/serial.c:421:16:process_received_packet 6