From ea477914a69194a6ca7ded9b73e3b01602166197 Mon Sep 17 00:00:00 2001 From: kevin Date: Sun, 22 Aug 2021 00:35:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=8E=E6=A8=A1=E5=9D=97=E8=AF=BB=E5=8F=96?= =?UTF-8?q?=E4=BA=86=E6=95=B0=E6=8D=AE=EF=BC=8C=E8=BF=98=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E4=B8=80=E7=B3=BB=E5=88=97=E7=AE=97=E6=B3=95=E6=89=8D=E8=83=BD?= =?UTF-8?q?=E5=88=A9=E7=94=A8=E8=BF=99=E4=BA=9B=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Core/Inc/main.h | 6 + Core/Src/main.c | 15 +- Debug/Core/Src/main.su | 4 +- Debug/HW_Devices/eeprom.d | 5 +- Debug/HW_Devices/eeprom.su | 10 +- Debug/HW_Devices/iic.d | 80 + Debug/HW_Devices/iic.su | 2 + Debug/HW_Devices/subdir.mk | 3 + Debug/SW_APPs/APP_blood.d | 5 +- Debug/SW_APPs/APP_blood.su | 7 +- Debug/m3s.bin | Bin 38688 -> 39440 bytes Debug/m3s.list | 25715 ++++++++++++++++++----------------- Debug/m3s.map | 1820 +-- Debug/objects.list | 1 + HW_Devices/eeprom.c | 12 +- HW_Devices/iic.c | 21 + HW_Devices/iic.h | 15 + SW_APPs/APP_blood.c | 91 +- SW_APPs/APP_blood.h | 27 + m3s.ioc | 47 +- 20 files changed, 14345 insertions(+), 13541 deletions(-) create mode 100644 Debug/HW_Devices/iic.d create mode 100644 Debug/HW_Devices/iic.su create mode 100644 HW_Devices/iic.c create mode 100644 HW_Devices/iic.h diff --git a/Core/Inc/main.h b/Core/Inc/main.h index bc860fd..4302581 100644 --- a/Core/Inc/main.h +++ b/Core/Inc/main.h @@ -70,6 +70,12 @@ void Error_Handler(void); #define TCLK_GPIO_Port GPIOB #define TCS_Pin GPIO_PIN_2 #define TCS_GPIO_Port GPIOB +#define MAX_IRD_Pin GPIO_PIN_12 +#define MAX_IRD_GPIO_Port GPIOB +#define MAX_INT_Pin GPIO_PIN_13 +#define MAX_INT_GPIO_Port GPIOB +#define MAX_RD_Pin GPIO_PIN_14 +#define MAX_RD_GPIO_Port GPIOB /* USER CODE BEGIN Private defines */ /* USER CODE END Private defines */ diff --git a/Core/Src/main.c b/Core/Src/main.c index 3841a76..a3033eb 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -202,7 +202,7 @@ static void MX_GPIO_Init(void) HAL_GPIO_WritePin(LCD_BL_GPIO_Port, LCD_BL_Pin, GPIO_PIN_RESET); /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin|MAX_IRD_Pin|MAX_RD_Pin, GPIO_PIN_SET); /*Configure GPIO pin : TDOUT_Pin */ GPIO_InitStruct.Pin = TDOUT_Pin; @@ -237,6 +237,19 @@ static void MX_GPIO_Init(void) GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + /*Configure GPIO pins : MAX_IRD_Pin MAX_RD_Pin */ + GPIO_InitStruct.Pin = MAX_IRD_Pin|MAX_RD_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + /*Configure GPIO pin : MAX_INT_Pin */ + GPIO_InitStruct.Pin = MAX_INT_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(MAX_INT_GPIO_Port, &GPIO_InitStruct); + } /* FSMC initialization function */ diff --git a/Debug/Core/Src/main.su b/Debug/Core/Src/main.su index 662d6c9..9177606 100644 --- a/Debug/Core/Src/main.su +++ b/Debug/Core/Src/main.su @@ -2,5 +2,5 @@ main.c:69:5:main 8 static main.c:114:6:SystemClock_Config 72 static main.c:153:13:MX_I2C2_Init 8 static main.c:187:13:MX_GPIO_Init 48 static -main.c:243:13:MX_FSMC_Init 40 static -main.c:307:6:Error_Handler 4 static,ignoring_inline_asm +main.c:256:13:MX_FSMC_Init 40 static +main.c:320:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/Debug/HW_Devices/eeprom.d b/Debug/HW_Devices/eeprom.d index 559b147..19d082e 100644 --- a/Debug/HW_Devices/eeprom.d +++ b/Debug/HW_Devices/eeprom.d @@ -23,7 +23,8 @@ HW_Devices/eeprom.o: ../HW_Devices/eeprom.c ../HW_Devices/eeprom.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ - ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ + ../HW_Devices/iic.h ../HW_Devices/eeprom.h: @@ -78,3 +79,5 @@ HW_Devices/eeprom.o: ../HW_Devices/eeprom.c ../HW_Devices/eeprom.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: + +../HW_Devices/iic.h: diff --git a/Debug/HW_Devices/eeprom.su b/Debug/HW_Devices/eeprom.su index 9dd1309..88d4746 100644 --- a/Debug/HW_Devices/eeprom.su +++ b/Debug/HW_Devices/eeprom.su @@ -1,6 +1,4 @@ -eeprom.c:14:6:IIC_SAND_DATE 40 static -eeprom.c:19:6:IIC_READ_DATE 40 static -eeprom.c:27:6:EPPROM_SLOWWRITE_INIT 4 static -eeprom.c:37:6:EEPROM_SLOWWRITE_SERVER 16 static -eeprom.c:64:6:EEPROM_READ_BATY 16 static -eeprom.c:69:6:EEPROM_WRITE_BATY 32 static +eeprom.c:17:6:EPPROM_SLOWWRITE_INIT 4 static +eeprom.c:27:6:EEPROM_SLOWWRITE_SERVER 16 static +eeprom.c:54:6:EEPROM_READ_BATY 16 static +eeprom.c:59:6:EEPROM_WRITE_BATY 32 static diff --git a/Debug/HW_Devices/iic.d b/Debug/HW_Devices/iic.d new file mode 100644 index 0000000..6fa10a8 --- /dev/null +++ b/Debug/HW_Devices/iic.d @@ -0,0 +1,80 @@ +HW_Devices/iic.o: ../HW_Devices/iic.c ../HW_Devices/iic.h \ + ../Core/Inc/main.h ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h \ + ../Core/Inc/stm32f1xx_hal_conf.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h \ + ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h \ + ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h \ + ../Drivers/CMSIS/Include/core_cm3.h \ + ../Drivers/CMSIS/Include/cmsis_version.h \ + ../Drivers/CMSIS/Include/cmsis_compiler.h \ + ../Drivers/CMSIS/Include/cmsis_gcc.h \ + ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h \ + ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h + +../HW_Devices/iic.h: + +../Core/Inc/main.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: + +../Core/Inc/stm32f1xx_hal_conf.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: + +../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: + +../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h: + +../Drivers/CMSIS/Include/core_cm3.h: + +../Drivers/CMSIS/Include/cmsis_version.h: + +../Drivers/CMSIS/Include/cmsis_compiler.h: + +../Drivers/CMSIS/Include/cmsis_gcc.h: + +../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_sram.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_fsmc.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_i2c.h: + +../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: diff --git a/Debug/HW_Devices/iic.su b/Debug/HW_Devices/iic.su new file mode 100644 index 0000000..5c5077c --- /dev/null +++ b/Debug/HW_Devices/iic.su @@ -0,0 +1,2 @@ +iic.c:13:6:IIC_SAND_DATE 40 static +iic.c:18:6:IIC_READ_DATE 40 static diff --git a/Debug/HW_Devices/subdir.mk b/Debug/HW_Devices/subdir.mk index 85a6322..088d6c5 100644 --- a/Debug/HW_Devices/subdir.mk +++ b/Debug/HW_Devices/subdir.mk @@ -7,16 +7,19 @@ C_SRCS += \ ../HW_Devices/LCD.c \ ../HW_Devices/eeprom.c \ +../HW_Devices/iic.c \ ../HW_Devices/touch.c OBJS += \ ./HW_Devices/LCD.o \ ./HW_Devices/eeprom.o \ +./HW_Devices/iic.o \ ./HW_Devices/touch.o C_DEPS += \ ./HW_Devices/LCD.d \ ./HW_Devices/eeprom.d \ +./HW_Devices/iic.d \ ./HW_Devices/touch.d diff --git a/Debug/SW_APPs/APP_blood.d b/Debug/SW_APPs/APP_blood.d index 1107617..bf3688f 100644 --- a/Debug/SW_APPs/APP_blood.d +++ b/Debug/SW_APPs/APP_blood.d @@ -26,7 +26,8 @@ SW_APPs/APP_blood.o: ../SW_APPs/APP_blood.c ../SW_APPs/APP_blood.h \ ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h \ ../SW_APPs/windows.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h \ - /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/LCD.h + /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/LCD.h \ + /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/iic.h ../SW_APPs/APP_blood.h: @@ -87,3 +88,5 @@ SW_APPs/APP_blood.o: ../SW_APPs/APP_blood.c ../SW_APPs/APP_blood.h \ /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/lcd.h: /Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/LCD.h: + +/Users/wuwenfeng/STM32CubeIDE/workspace_1.7.0/m3s/HW_Devices/iic.h: diff --git a/Debug/SW_APPs/APP_blood.su b/Debug/SW_APPs/APP_blood.su index 80b7caf..2359c39 100644 --- a/Debug/SW_APPs/APP_blood.su +++ b/Debug/SW_APPs/APP_blood.su @@ -1,2 +1,5 @@ -APP_blood.c:12:6:APP_blood_init 16 static -APP_blood.c:17:6:APP_blood_loop 4 static +APP_blood.c:14:9:Max30102_reset 16 static +APP_blood.c:20:6:MAX30102_Config 16 static +APP_blood.c:43:6:max30102_read_fifo 16 static +APP_blood.c:89:6:APP_blood_init 16 static +APP_blood.c:98:6:APP_blood_loop 16 static diff --git a/Debug/m3s.bin b/Debug/m3s.bin index 426819316ce2c7116f7a4d442385102c1f8eb8b0..3762361fe8685dbfa1a79197b401e7ed6c36b578 100755 GIT binary patch delta 4566 zcmbtY3sh9c8J@YjEXzwkFu(%3?23Ylp=iv?st|z@SQJsCC_Z?~uCIVk0>Un+5gKES zqf{kLOl_OfHubfdXpmy`G--S^Y7+A>CL|{*F^TEIQSWOX{qNlsG3n_!Z8+!K`RD)s z@1L3f&Yii3gNK=2Cm1V2So=j3Qu{rE)Ior7KolSzfPVC+2j8PUzY*FQfaK_(1?$gE z@H6#k|NHD|*`A}c2PZLSTWKJpfyO?H`DVztog#7saL7>)Nav9wms2_}@$O#R$z4a$ z5&ynuMUoCBL=&ZBtc#|H8-jl6RuD86UqO!5v@v`{&|U6+znH!fo)=^q;Kx%jJkeTg z>aZ-x&vMulwCqW+6<{@#HCX0=T?BqL_zPvfT45|RS_;56LwR5TN? zb09tw;~<|4<(E~LW=2C&|DVO>tY z3O@$+KU{^7y0Z-FMS!tfT5Aj$56mM@kOG5!j6&bwV@Cn&@1%~Qkyb63f{67G!kB?D z4RGI!szKa?6cNCECKlc~nB`Ss82SMl1nj%OqPahwm>)3bMAV)1co(sCA^XgTUWQp9 z*e5+Q4l`$YS{XGF&!+pMj4{vg9=5?*GXvfO?WY)NC+GDe9UW{#d9I%btX zKO$>sdCnN-wv+D6Ne_9)g}TGMrR`SRb7oi+R>CvnQAiL&!ibZdAt*>38Ed)$37xEg zSCAN@1*;MEzvOujcwPS7(gagUtJEJ2>Jg?6pE^la$C_d-5*IU|Ug}ey06rq0mJZF2 zXvlIX6%p%{_7qbHX8N6UNwp(4PpuKHY$F^4 zlUGNB$mUUy`FWDn1#}##TO+b-2H09)3uX2&uu@4y_RnAyI&4o!nlj*}mWQ^p(g51o zpygLdzPaGbkhQzy%$zhanN5-CY@pL+x_KaV)1cH7eW@?e?`EfHKjf7pgm9}w_8L67 zAYzEWd<*GyWGqR@!;bL+H5BQXIDsxM(&7r*SY))Whg!7)Y$sdbsLa%hwL(1B2P7PZ zIyVZaJDRBF4dvy}`glg>R||0L$ngrfUnNLdrED*gZ9mywDBCL8o-2gf^%Xej-fRJ6(jl6P{v1I*rXJ|E3eHM{?Yw zf@EW`tsXX6@Yfq_(uqp%FOvy^u}-v!tsM%{HqNAJ6nKXfjqGT{uuBZpO*7Oo?+GjB0?I#OF*K~0e=YigH5rm)BD5L(&@}c z0rFZ@gFFh^GqCb*g92$&0p1GKmHOp3m?KI(Y^cY>#(N&bO@tV$6vQ0yuoh1;q|}h4 zyyRT$_=-z1#hRmAN5gMPYuJSS$E7zA-otyIb<%sN&G)eNoK{w7^Ws2pk&BZR8d;(J zi6R0NWgOfIMZJGw&bue%# z_*VKV^ieR*JSA`B_M^%pZg#uV!&Y-1_M%9IqNF6Vr+(FLPMa#7OD)iP*ji8BD&z^rn~IsIcpfDn|8gG=Z>QuomV#ko;$ ziNo_F%wc50>59_G(j?OLjUf{|-lTl-ukbqBwlD>k)7Ka3;a0n`@Hu>!S{5Y_-{Fov z{kJ~scY#B*KjBd7{%oW}dM%ku1h&adk1jeDTp=jnhz_6v>)`47l4;uU?wZa*hbJwQ z>@x-J7g)7BwNp}Mk|I#CE_$t`fZ<$r?cy}djC0X>ORfwp*n`xw0mXoMfW>&oV1{5gHPe8H%t zFz8bN!%3v~o2evfGPYD?uX9;(%+;}G#W8)Up=*kQ-YZYS2kD54F8nUNS+R*0SH|IC zbVKFKOaV`$tBMzUoGTB#2L~C?9(S+sS*%k9=WHn9*=g=-pYM=cI`mSZkUZN9d?=JA zk4L&@g7lJCV3mCCv0PwBy3>de`u!ZeR29eE=IFOoyO>ihx_S8--E%PI-vJPESlghr z0hY*pF5}={xW@O=Mb%3u@$4D*ViPBKg zTKzc;!w0}{>!s=Fkv2S!XFn7qj%QtNX&SHDhIYI(J>yRO5vc}97YK?bC(=nHNm*4U z-pX!tN^3t4@1IoNIsjBY1EGe=QeW|J-!uZOSE6|=5k=hJ7-{o5j2&J$_ zcX6jT4Ffx6mYYVdoImu9foCYa(>$wj+c&Sg$KXo)x-}Hz1Ju7JAy5H@SuAfynpTrP zA{!1r4ByiUU8q~KYfh3C((S+TbePu7GPI+{5+&{ANRUaK9|`tx=V)wgiptB;S+zS= zQs&6L^vl|FKGXiEwbSu^cmKNaID;mvZwNHEBehTVhxOO)$2M)4GZ1@ylL zi1=<;?MrX1WwZ*Qu_2D+>+0k5++*B!!mKTWJpjMjp#R%z8Ikz=-iwLE*5r*BzzVm97jZ`R>I($&pTDVFU>{Vd=-pcjDi zkmJZH)cyM{(t|N4<_~`|YY6e{TaR7r4SKA3*u>4Emeh3NT)1SHKDnDb)}TzMFqKkQ_89rr-T=4Ee#DJndFA*`(I04Oq5^nd(>ydfok@bal88u%v6)(1t;R_^HZPN!ibGH6GAP&2_xq7qlx)4;tJw(#8(LNqrY#^#|Qm}JBc|E(Tmz& zfcjq|{y%6F|NH8p;Kd_wmD&aOHt-c9@#4Bm=n0s(P9g3QB5~Iuq9x+a5{>Q>(RUN{__?KfqJ4*?}O zu0AKXwLCi~!|gOcaVFXZwCalM%IBh;fqpakXX}2mA+}a_>`Ixw~nAj9VYKiuw5zK;&qM#5NI>;Dob%SgKvfm=>Trr@dL%I-TK3Ayi zmP!~@O^#sxNM2G*!^m4HeULk&kZ$|TF6Qha-LA&a9zhr(xvK7*NQHGG><^np&2T9! zH6l$^`HTJ4nK<5-Pbjg>-9yaU)#!=~FEnJI8AHr3A=(hV2>w6db<}jYem~~P2;q|^ zSTy~lU~Ynd8BF-L$+cugj$!Om$;A9TVh^Gf@hajl;!T7Lx{_Coy+4JRMAl^j0gE;N#NPTdGsjrEc%btNd=WT^~neoEw9+;7t zGIEQTbO#MK$_#tv<0Rq|h0F|#(eR2!S!WngkO2F6zqsnVks9{#&OA(sc zI#)yHN<)2#B(NzM7r}y9KVKmmSQLxT{TOxq`~k_pa0<|B!Limn|3u!JbH5`dw{W|5 zpMmOexvhihxw?8x?wE3on?9tj9aLXLJ~Rg$AvvLS8E&H?biL74nmdvTlRZ!~f2k1O z1Q+Hf38NG+=fw(CfysFdLbnXZ@*0K5Wk_1kAf(7}YC)sGC76@{w$LhpoF8334f~Uh zn2&HEY7pBI`w=H96<#UlyNU2fuEP5jf%)N+MlgjR^cYxb=_cft>HNdUe>;rdjl8n* zM3ur@@Fh;J3`fm=)xefyYt|KHqu3^7pROOGpF=udr_Uj+wNBx`Lo46yoUMsABd@h) zG&ZDjWfF=jP%Bkv+@r{)>Do8+)S_0{5bHoTMQ2|c%Ditd^GHp;P*1J!9dVsRcPZKQkP-r2tQh_TJfKk}%&S5kR|2QEBdw_i|eD|U&N z1Z{g8@T&65>ZS_f_Lo&|?N|9V>HF)X`(hJBFOCv+dR_M}t`cxCeMHw=4?b(4zlGGo zxPW`{UA~F*Jy2Dc6?RsM&Iv6GVpBU-I7T__tg9y}ox0D!`NHSvW3a4f5?u+;6xrw^ zXe)Y-a+tMjeDn`$c*h65)aRT?7XDQv2`zJpmDnsSnaR9Ig~nwk{7Yp6PWlLt`9lh1 zEx*swtX6mCyVb;W)|~6tBI8Sx(5b1?SplkwRXDVKzEGmN`j#hBVXqhLj*B5hFW}fA z$`C6N6)zm{EvCXjkITPgH(e4}Ow7rMcE|1bDPLv@F_&ZPc)Z?>FCVlu|4rXLC9WS< zETQxZ$SZyDt}0x#9+A{eY(9BLW@hmYg~!SnQNpG8GQ&}uBdM!TfODmG`Wk#!+C?wH z(ML84guq>^qG>41TlK1NT!x-iON&-{*BrQvqayQ2akXwq{9&&NCpnNw{E)h8ko6O_ zu}Z*RN<1I=Kmux3ljEDOCzbgn5x!ny6_ULWP%*7OOHE~oxMWGcmfrmGz%!f? zjp#e%(UNN(i7(O@N|>fCr9JB%BF&ZgT9Mdmv~q035}YmZw0@0~c`5qS-ETWXT3?=% z)>qr6^?+D?vEaYsPrbI1merIi)$`9h+Owa*S5WKjb_8}ljgZ)MLZT3(5LeR%w)Lzh zq*X6-|0ozJ^igs2PAqO%pwg35zdDRGicnM;m9$l_@6>gzH70$FC4Rsw^SkvH`Fb?3#H&5V-UO2$69(IL zM1dofqb!H@eCKZnDAdBfQkQlPq!F;EZ>w;va!H6)uU>1c_F7B4L3Pcq`az&2u8g%n zX*2v~U5sxiHl{)!M-bNMjO)jjt(~tMI)W@-PGHUY@-S_ZV^OAY zKFoiRdk?-@Kgl$}L3GUyla@Jl7aXg3f6#Q*J~oHmbico0GMxpz8|r*F0e-*eDPhCL z4{ydU*tBRU_Rz16jT^|Oz4(GczaP)M{2DeY{OANmV!Zrm*jPJ{c0yO}S~>%!)Wy)X zu7bJ)l)ebxKOPruQNF=BXvBqfAQl(mXU9fjei|TgbE5AabiIbS2vD_o@7SmbCmX3hS%ZC zwAAU#eC^!ldn*KXY-yk$KybsF$XiZgHd)N=#Jy0a7KzVRU~j`NnhfK&ULUTEY_!tD zFsm_aQcEK-cOt$+gl!{cnoZnoCrI~4PHkh#;&P%FX9O^x-WuxRS71xy=xMczg;jUa zES1-uBHhHGZM4cC8)jFbt>^=w@^amVbB(J_OL24dY=M+*OKCsAwn@U$7vTMEC+Wwq zxhY>j=0cM*QsS4z;fFBk?!!zHKYaqqo@}m{_|e;FjU0Z4OT6nRd6Ry|2jeL(@po>E z7+B!;9PPJ746LF3Mg*rZV)e: 800020c: b508 push {r3, lr} @@ -74,7 +74,7 @@ Disassembly of section .text: 800021a: bd08 pop {r3, pc} 800021c: 00000000 .word 0x00000000 8000220: 200001e0 .word 0x200001e0 - 8000224: 080085f0 .word 0x080085f0 + 8000224: 080088c0 .word 0x080088c0 08000228 : 8000228: 4603 mov r3, r0 @@ -1380,7 +1380,7 @@ int main(void) /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 800110c: f000 fb72 bl 80017f4 + 800110c: f000 fb8e bl 800182c /* USER CODE BEGIN Init */ /* USER CODE END Init */ @@ -1396,12 +1396,12 @@ int main(void) MX_GPIO_Init(); 8001114: f000 f87a bl 800120c MX_FSMC_Init(); - 8001118: f000 f91e bl 8001358 + 8001118: f000 f93a bl 8001390 MX_I2C2_Init(); 800111c: f000 f848 bl 80011b0 /* USER CODE BEGIN 2 */ main_app(); - 8001120: f004 f862 bl 80051e8 + 8001120: f004 f9cc bl 80054bc /* USER CODE END 2 */ /* Infinite loop */ @@ -1424,7 +1424,7 @@ void SystemClock_Config(void) 8001130: 2228 movs r2, #40 ; 0x28 8001132: 2100 movs r1, #0 8001134: 4618 mov r0, r3 - 8001136: f004 fbc1 bl 80058bc + 8001136: f004 fd2b bl 8005b90 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; 800113a: 1d3b adds r3, r7, #4 800113c: 2200 movs r2, #0 @@ -1461,13 +1461,13 @@ void SystemClock_Config(void) if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) 800116a: f107 0318 add.w r3, r7, #24 800116e: 4618 mov r0, r3 - 8001170: f001 fe6e bl 8002e50 + 8001170: f001 fe8a bl 8002e88 8001174: 4603 mov r3, r0 8001176: 2b00 cmp r3, #0 8001178: d001 beq.n 800117e { Error_Handler(); - 800117a: f000 f951 bl 8001420 + 800117a: f000 f96d bl 8001458 } /** Initializes the CPU, AHB and APB buses clocks */ @@ -1492,13 +1492,13 @@ void SystemClock_Config(void) 8001194: 1d3b adds r3, r7, #4 8001196: 2102 movs r1, #2 8001198: 4618 mov r0, r3 - 800119a: f002 f8d9 bl 8003350 + 800119a: f002 f8f5 bl 8003388 800119e: 4603 mov r3, r0 80011a0: 2b00 cmp r3, #0 80011a2: d001 beq.n 80011a8 { Error_Handler(); - 80011a4: f000 f93c bl 8001420 + 80011a4: f000 f958 bl 8001458 } } 80011a8: bf00 nop @@ -1558,13 +1558,13 @@ static void MX_I2C2_Init(void) 80011ea: 621a str r2, [r3, #32] if (HAL_I2C_Init(&hi2c2) != HAL_OK) 80011ec: 4804 ldr r0, [pc, #16] ; (8001200 ) - 80011ee: f000 fe2f bl 8001e50 + 80011ee: f000 fe4b bl 8001e88 80011f2: 4603 mov r3, r0 80011f4: 2b00 cmp r3, #0 80011f6: d001 beq.n 80011fc { Error_Handler(); - 80011f8: f000 f912 bl 8001420 + 80011f8: f000 f92e bl 8001458 } /* USER CODE BEGIN I2C2_Init 2 */ @@ -1597,56 +1597,56 @@ static void MX_GPIO_Init(void) /* GPIO Ports Clock Enable */ __HAL_RCC_GPIOF_CLK_ENABLE(); - 8001220: 4b4a ldr r3, [pc, #296] ; (800134c ) + 8001220: 4b58 ldr r3, [pc, #352] ; (8001384 ) 8001222: 699b ldr r3, [r3, #24] - 8001224: 4a49 ldr r2, [pc, #292] ; (800134c ) + 8001224: 4a57 ldr r2, [pc, #348] ; (8001384 ) 8001226: f043 0380 orr.w r3, r3, #128 ; 0x80 800122a: 6193 str r3, [r2, #24] - 800122c: 4b47 ldr r3, [pc, #284] ; (800134c ) + 800122c: 4b55 ldr r3, [pc, #340] ; (8001384 ) 800122e: 699b ldr r3, [r3, #24] 8001230: f003 0380 and.w r3, r3, #128 ; 0x80 8001234: 617b str r3, [r7, #20] 8001236: 697b ldr r3, [r7, #20] __HAL_RCC_GPIOB_CLK_ENABLE(); - 8001238: 4b44 ldr r3, [pc, #272] ; (800134c ) + 8001238: 4b52 ldr r3, [pc, #328] ; (8001384 ) 800123a: 699b ldr r3, [r3, #24] - 800123c: 4a43 ldr r2, [pc, #268] ; (800134c ) + 800123c: 4a51 ldr r2, [pc, #324] ; (8001384 ) 800123e: f043 0308 orr.w r3, r3, #8 8001242: 6193 str r3, [r2, #24] - 8001244: 4b41 ldr r3, [pc, #260] ; (800134c ) + 8001244: 4b4f ldr r3, [pc, #316] ; (8001384 ) 8001246: 699b ldr r3, [r3, #24] 8001248: f003 0308 and.w r3, r3, #8 800124c: 613b str r3, [r7, #16] 800124e: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOG_CLK_ENABLE(); - 8001250: 4b3e ldr r3, [pc, #248] ; (800134c ) + 8001250: 4b4c ldr r3, [pc, #304] ; (8001384 ) 8001252: 699b ldr r3, [r3, #24] - 8001254: 4a3d ldr r2, [pc, #244] ; (800134c ) + 8001254: 4a4b ldr r2, [pc, #300] ; (8001384 ) 8001256: f443 7380 orr.w r3, r3, #256 ; 0x100 800125a: 6193 str r3, [r2, #24] - 800125c: 4b3b ldr r3, [pc, #236] ; (800134c ) + 800125c: 4b49 ldr r3, [pc, #292] ; (8001384 ) 800125e: 699b ldr r3, [r3, #24] 8001260: f403 7380 and.w r3, r3, #256 ; 0x100 8001264: 60fb str r3, [r7, #12] 8001266: 68fb ldr r3, [r7, #12] __HAL_RCC_GPIOE_CLK_ENABLE(); - 8001268: 4b38 ldr r3, [pc, #224] ; (800134c ) + 8001268: 4b46 ldr r3, [pc, #280] ; (8001384 ) 800126a: 699b ldr r3, [r3, #24] - 800126c: 4a37 ldr r2, [pc, #220] ; (800134c ) + 800126c: 4a45 ldr r2, [pc, #276] ; (8001384 ) 800126e: f043 0340 orr.w r3, r3, #64 ; 0x40 8001272: 6193 str r3, [r2, #24] - 8001274: 4b35 ldr r3, [pc, #212] ; (800134c ) + 8001274: 4b43 ldr r3, [pc, #268] ; (8001384 ) 8001276: 699b ldr r3, [r3, #24] 8001278: f003 0340 and.w r3, r3, #64 ; 0x40 800127c: 60bb str r3, [r7, #8] 800127e: 68bb ldr r3, [r7, #8] __HAL_RCC_GPIOD_CLK_ENABLE(); - 8001280: 4b32 ldr r3, [pc, #200] ; (800134c ) + 8001280: 4b40 ldr r3, [pc, #256] ; (8001384 ) 8001282: 699b ldr r3, [r3, #24] - 8001284: 4a31 ldr r2, [pc, #196] ; (800134c ) + 8001284: 4a3f ldr r2, [pc, #252] ; (8001384 ) 8001286: f043 0320 orr.w r3, r3, #32 800128a: 6193 str r3, [r2, #24] - 800128c: 4b2f ldr r3, [pc, #188] ; (800134c ) + 800128c: 4b3d ldr r3, [pc, #244] ; (8001384 ) 800128e: 699b ldr r3, [r3, #24] 8001290: f003 0320 and.w r3, r3, #32 8001294: 607b str r3, [r7, #4] @@ -1656,864 +1656,856 @@ static void MX_GPIO_Init(void) HAL_GPIO_WritePin(TDIN_GPIO_Port, TDIN_Pin, GPIO_PIN_SET); 8001298: 2201 movs r2, #1 800129a: f44f 7100 mov.w r1, #512 ; 0x200 - 800129e: 482c ldr r0, [pc, #176] ; (8001350 ) - 80012a0: f000 fdbd bl 8001e1e + 800129e: 483a ldr r0, [pc, #232] ; (8001388 ) + 80012a0: f000 fdd9 bl 8001e56 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(LCD_BL_GPIO_Port, LCD_BL_Pin, GPIO_PIN_RESET); 80012a4: 2200 movs r2, #0 80012a6: 2101 movs r1, #1 - 80012a8: 482a ldr r0, [pc, #168] ; (8001354 ) - 80012aa: f000 fdb8 bl 8001e1e + 80012a8: 4838 ldr r0, [pc, #224] ; (800138c ) + 80012aa: f000 fdd4 bl 8001e56 /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(GPIOB, TCLK_Pin|TCS_Pin|MAX_IRD_Pin|MAX_RD_Pin, GPIO_PIN_SET); 80012ae: 2201 movs r2, #1 - 80012b0: 2106 movs r1, #6 - 80012b2: 4828 ldr r0, [pc, #160] ; (8001354 ) - 80012b4: f000 fdb3 bl 8001e1e + 80012b0: f245 0106 movw r1, #20486 ; 0x5006 + 80012b4: 4835 ldr r0, [pc, #212] ; (800138c ) + 80012b6: f000 fdce bl 8001e56 /*Configure GPIO pin : TDOUT_Pin */ GPIO_InitStruct.Pin = TDOUT_Pin; - 80012b8: f44f 7380 mov.w r3, #256 ; 0x100 - 80012bc: 61bb str r3, [r7, #24] + 80012ba: f44f 7380 mov.w r3, #256 ; 0x100 + 80012be: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80012be: 2300 movs r3, #0 - 80012c0: 61fb str r3, [r7, #28] + 80012c0: 2300 movs r3, #0 + 80012c2: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80012c2: 2300 movs r3, #0 - 80012c4: 623b str r3, [r7, #32] + 80012c4: 2300 movs r3, #0 + 80012c6: 623b str r3, [r7, #32] HAL_GPIO_Init(TDOUT_GPIO_Port, &GPIO_InitStruct); - 80012c6: f107 0318 add.w r3, r7, #24 - 80012ca: 4619 mov r1, r3 - 80012cc: 4820 ldr r0, [pc, #128] ; (8001350 ) - 80012ce: f000 fbfb bl 8001ac8 + 80012c8: f107 0318 add.w r3, r7, #24 + 80012cc: 4619 mov r1, r3 + 80012ce: 482e ldr r0, [pc, #184] ; (8001388 ) + 80012d0: f000 fc16 bl 8001b00 /*Configure GPIO pin : TDIN_Pin */ GPIO_InitStruct.Pin = TDIN_Pin; - 80012d2: f44f 7300 mov.w r3, #512 ; 0x200 - 80012d6: 61bb str r3, [r7, #24] + 80012d4: f44f 7300 mov.w r3, #512 ; 0x200 + 80012d8: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 80012d8: 2301 movs r3, #1 - 80012da: 61fb str r3, [r7, #28] + 80012da: 2301 movs r3, #1 + 80012dc: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80012dc: 2300 movs r3, #0 - 80012de: 623b str r3, [r7, #32] + 80012de: 2300 movs r3, #0 + 80012e0: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80012e0: 2303 movs r3, #3 - 80012e2: 627b str r3, [r7, #36] ; 0x24 + 80012e2: 2303 movs r3, #3 + 80012e4: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(TDIN_GPIO_Port, &GPIO_InitStruct); - 80012e4: f107 0318 add.w r3, r7, #24 - 80012e8: 4619 mov r1, r3 - 80012ea: 4819 ldr r0, [pc, #100] ; (8001350 ) - 80012ec: f000 fbec bl 8001ac8 + 80012e6: f107 0318 add.w r3, r7, #24 + 80012ea: 4619 mov r1, r3 + 80012ec: 4826 ldr r0, [pc, #152] ; (8001388 ) + 80012ee: f000 fc07 bl 8001b00 /*Configure GPIO pin : TPEN_Pin */ GPIO_InitStruct.Pin = TPEN_Pin; - 80012f0: f44f 6380 mov.w r3, #1024 ; 0x400 - 80012f4: 61bb str r3, [r7, #24] + 80012f2: f44f 6380 mov.w r3, #1024 ; 0x400 + 80012f6: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - 80012f6: 2300 movs r3, #0 - 80012f8: 61fb str r3, [r7, #28] + 80012f8: 2300 movs r3, #0 + 80012fa: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_PULLUP; - 80012fa: 2301 movs r3, #1 - 80012fc: 623b str r3, [r7, #32] + 80012fc: 2301 movs r3, #1 + 80012fe: 623b str r3, [r7, #32] HAL_GPIO_Init(TPEN_GPIO_Port, &GPIO_InitStruct); - 80012fe: f107 0318 add.w r3, r7, #24 - 8001302: 4619 mov r1, r3 - 8001304: 4812 ldr r0, [pc, #72] ; (8001350 ) - 8001306: f000 fbdf bl 8001ac8 + 8001300: f107 0318 add.w r3, r7, #24 + 8001304: 4619 mov r1, r3 + 8001306: 4820 ldr r0, [pc, #128] ; (8001388 ) + 8001308: f000 fbfa bl 8001b00 /*Configure GPIO pin : LCD_BL_Pin */ GPIO_InitStruct.Pin = LCD_BL_Pin; - 800130a: 2301 movs r3, #1 - 800130c: 61bb str r3, [r7, #24] + 800130c: 2301 movs r3, #1 + 800130e: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 800130e: 2301 movs r3, #1 - 8001310: 61fb str r3, [r7, #28] + 8001310: 2301 movs r3, #1 + 8001312: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001312: 2300 movs r3, #0 - 8001314: 623b str r3, [r7, #32] + 8001314: 2300 movs r3, #0 + 8001316: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 8001316: 2302 movs r3, #2 - 8001318: 627b str r3, [r7, #36] ; 0x24 + 8001318: 2302 movs r3, #2 + 800131a: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(LCD_BL_GPIO_Port, &GPIO_InitStruct); - 800131a: f107 0318 add.w r3, r7, #24 - 800131e: 4619 mov r1, r3 - 8001320: 480c ldr r0, [pc, #48] ; (8001354 ) - 8001322: f000 fbd1 bl 8001ac8 + 800131c: f107 0318 add.w r3, r7, #24 + 8001320: 4619 mov r1, r3 + 8001322: 481a ldr r0, [pc, #104] ; (800138c ) + 8001324: f000 fbec bl 8001b00 /*Configure GPIO pins : TCLK_Pin TCS_Pin */ GPIO_InitStruct.Pin = TCLK_Pin|TCS_Pin; - 8001326: 2306 movs r3, #6 - 8001328: 61bb str r3, [r7, #24] + 8001328: 2306 movs r3, #6 + 800132a: 61bb str r3, [r7, #24] GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - 800132a: 2301 movs r3, #1 - 800132c: 61fb str r3, [r7, #28] + 800132c: 2301 movs r3, #1 + 800132e: 61fb str r3, [r7, #28] GPIO_InitStruct.Pull = GPIO_NOPULL; - 800132e: 2300 movs r3, #0 - 8001330: 623b str r3, [r7, #32] + 8001330: 2300 movs r3, #0 + 8001332: 623b str r3, [r7, #32] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001332: 2303 movs r3, #3 - 8001334: 627b str r3, [r7, #36] ; 0x24 + 8001334: 2303 movs r3, #3 + 8001336: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 8001336: f107 0318 add.w r3, r7, #24 - 800133a: 4619 mov r1, r3 - 800133c: 4805 ldr r0, [pc, #20] ; (8001354 ) - 800133e: f000 fbc3 bl 8001ac8 + 8001338: f107 0318 add.w r3, r7, #24 + 800133c: 4619 mov r1, r3 + 800133e: 4813 ldr r0, [pc, #76] ; (800138c ) + 8001340: f000 fbde bl 8001b00 + + /*Configure GPIO pins : MAX_IRD_Pin MAX_RD_Pin */ + GPIO_InitStruct.Pin = MAX_IRD_Pin|MAX_RD_Pin; + 8001344: f44f 43a0 mov.w r3, #20480 ; 0x5000 + 8001348: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + 800134a: 2301 movs r3, #1 + 800134c: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_PULLUP; + 800134e: 2301 movs r3, #1 + 8001350: 623b str r3, [r7, #32] + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + 8001352: 2303 movs r3, #3 + 8001354: 627b str r3, [r7, #36] ; 0x24 + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + 8001356: f107 0318 add.w r3, r7, #24 + 800135a: 4619 mov r1, r3 + 800135c: 480b ldr r0, [pc, #44] ; (800138c ) + 800135e: f000 fbcf bl 8001b00 + + /*Configure GPIO pin : MAX_INT_Pin */ + GPIO_InitStruct.Pin = MAX_INT_Pin; + 8001362: f44f 5300 mov.w r3, #8192 ; 0x2000 + 8001366: 61bb str r3, [r7, #24] + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + 8001368: 2300 movs r3, #0 + 800136a: 61fb str r3, [r7, #28] + GPIO_InitStruct.Pull = GPIO_NOPULL; + 800136c: 2300 movs r3, #0 + 800136e: 623b str r3, [r7, #32] + HAL_GPIO_Init(MAX_INT_GPIO_Port, &GPIO_InitStruct); + 8001370: f107 0318 add.w r3, r7, #24 + 8001374: 4619 mov r1, r3 + 8001376: 4805 ldr r0, [pc, #20] ; (800138c ) + 8001378: f000 fbc2 bl 8001b00 } - 8001342: bf00 nop - 8001344: 3728 adds r7, #40 ; 0x28 - 8001346: 46bd mov sp, r7 - 8001348: bd80 pop {r7, pc} - 800134a: bf00 nop - 800134c: 40021000 .word 0x40021000 - 8001350: 40011c00 .word 0x40011c00 - 8001354: 40010c00 .word 0x40010c00 + 800137c: bf00 nop + 800137e: 3728 adds r7, #40 ; 0x28 + 8001380: 46bd mov sp, r7 + 8001382: bd80 pop {r7, pc} + 8001384: 40021000 .word 0x40021000 + 8001388: 40011c00 .word 0x40011c00 + 800138c: 40010c00 .word 0x40010c00 -08001358 : +08001390 : /* FSMC initialization function */ static void MX_FSMC_Init(void) { - 8001358: b580 push {r7, lr} - 800135a: b088 sub sp, #32 - 800135c: af00 add r7, sp, #0 + 8001390: b580 push {r7, lr} + 8001392: b088 sub sp, #32 + 8001394: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_Init 0 */ /* USER CODE END FSMC_Init 0 */ FSMC_NORSRAM_TimingTypeDef Timing = {0}; - 800135e: 1d3b adds r3, r7, #4 - 8001360: 2200 movs r2, #0 - 8001362: 601a str r2, [r3, #0] - 8001364: 605a str r2, [r3, #4] - 8001366: 609a str r2, [r3, #8] - 8001368: 60da str r2, [r3, #12] - 800136a: 611a str r2, [r3, #16] - 800136c: 615a str r2, [r3, #20] - 800136e: 619a str r2, [r3, #24] + 8001396: 1d3b adds r3, r7, #4 + 8001398: 2200 movs r2, #0 + 800139a: 601a str r2, [r3, #0] + 800139c: 605a str r2, [r3, #4] + 800139e: 609a str r2, [r3, #8] + 80013a0: 60da str r2, [r3, #12] + 80013a2: 611a str r2, [r3, #16] + 80013a4: 615a str r2, [r3, #20] + 80013a6: 619a str r2, [r3, #24] /* USER CODE END FSMC_Init 1 */ /** Perform the SRAM1 memory initialization sequence */ hsram1.Instance = FSMC_NORSRAM_DEVICE; - 8001370: 4b28 ldr r3, [pc, #160] ; (8001414 ) - 8001372: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 - 8001376: 601a str r2, [r3, #0] + 80013a8: 4b28 ldr r3, [pc, #160] ; (800144c ) + 80013aa: f04f 4220 mov.w r2, #2684354560 ; 0xa0000000 + 80013ae: 601a str r2, [r3, #0] hsram1.Extended = FSMC_NORSRAM_EXTENDED_DEVICE; - 8001378: 4b26 ldr r3, [pc, #152] ; (8001414 ) - 800137a: 4a27 ldr r2, [pc, #156] ; (8001418 ) - 800137c: 605a str r2, [r3, #4] + 80013b0: 4b26 ldr r3, [pc, #152] ; (800144c ) + 80013b2: 4a27 ldr r2, [pc, #156] ; (8001450 ) + 80013b4: 605a str r2, [r3, #4] /* hsram1.Init */ hsram1.Init.NSBank = FSMC_NORSRAM_BANK4; - 800137e: 4b25 ldr r3, [pc, #148] ; (8001414 ) - 8001380: 2206 movs r2, #6 - 8001382: 609a str r2, [r3, #8] + 80013b6: 4b25 ldr r3, [pc, #148] ; (800144c ) + 80013b8: 2206 movs r2, #6 + 80013ba: 609a str r2, [r3, #8] hsram1.Init.DataAddressMux = FSMC_DATA_ADDRESS_MUX_DISABLE; - 8001384: 4b23 ldr r3, [pc, #140] ; (8001414 ) - 8001386: 2200 movs r2, #0 - 8001388: 60da str r2, [r3, #12] - hsram1.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM; - 800138a: 4b22 ldr r3, [pc, #136] ; (8001414 ) - 800138c: 2200 movs r2, #0 - 800138e: 611a str r2, [r3, #16] - hsram1.Init.MemoryDataWidth = FSMC_NORSRAM_MEM_BUS_WIDTH_16; - 8001390: 4b20 ldr r3, [pc, #128] ; (8001414 ) - 8001392: 2210 movs r2, #16 - 8001394: 615a str r2, [r3, #20] - hsram1.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE; - 8001396: 4b1f ldr r3, [pc, #124] ; (8001414 ) - 8001398: 2200 movs r2, #0 - 800139a: 619a str r2, [r3, #24] - hsram1.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW; - 800139c: 4b1d ldr r3, [pc, #116] ; (8001414 ) - 800139e: 2200 movs r2, #0 - 80013a0: 61da str r2, [r3, #28] - hsram1.Init.WrapMode = FSMC_WRAP_MODE_DISABLE; - 80013a2: 4b1c ldr r3, [pc, #112] ; (8001414 ) - 80013a4: 2200 movs r2, #0 - 80013a6: 621a str r2, [r3, #32] - hsram1.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS; - 80013a8: 4b1a ldr r3, [pc, #104] ; (8001414 ) - 80013aa: 2200 movs r2, #0 - 80013ac: 625a str r2, [r3, #36] ; 0x24 - hsram1.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE; - 80013ae: 4b19 ldr r3, [pc, #100] ; (8001414 ) - 80013b0: f44f 5280 mov.w r2, #4096 ; 0x1000 - 80013b4: 629a str r2, [r3, #40] ; 0x28 - hsram1.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE; - 80013b6: 4b17 ldr r3, [pc, #92] ; (8001414 ) - 80013b8: 2200 movs r2, #0 - 80013ba: 62da str r2, [r3, #44] ; 0x2c - hsram1.Init.ExtendedMode = FSMC_EXTENDED_MODE_DISABLE; - 80013bc: 4b15 ldr r3, [pc, #84] ; (8001414 ) + 80013bc: 4b23 ldr r3, [pc, #140] ; (800144c ) 80013be: 2200 movs r2, #0 - 80013c0: 631a str r2, [r3, #48] ; 0x30 - hsram1.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE; - 80013c2: 4b14 ldr r3, [pc, #80] ; (8001414 ) + 80013c0: 60da str r2, [r3, #12] + hsram1.Init.MemoryType = FSMC_MEMORY_TYPE_SRAM; + 80013c2: 4b22 ldr r3, [pc, #136] ; (800144c ) 80013c4: 2200 movs r2, #0 - 80013c6: 635a str r2, [r3, #52] ; 0x34 + 80013c6: 611a str r2, [r3, #16] + hsram1.Init.MemoryDataWidth = FSMC_NORSRAM_MEM_BUS_WIDTH_16; + 80013c8: 4b20 ldr r3, [pc, #128] ; (800144c ) + 80013ca: 2210 movs r2, #16 + 80013cc: 615a str r2, [r3, #20] + hsram1.Init.BurstAccessMode = FSMC_BURST_ACCESS_MODE_DISABLE; + 80013ce: 4b1f ldr r3, [pc, #124] ; (800144c ) + 80013d0: 2200 movs r2, #0 + 80013d2: 619a str r2, [r3, #24] + hsram1.Init.WaitSignalPolarity = FSMC_WAIT_SIGNAL_POLARITY_LOW; + 80013d4: 4b1d ldr r3, [pc, #116] ; (800144c ) + 80013d6: 2200 movs r2, #0 + 80013d8: 61da str r2, [r3, #28] + hsram1.Init.WrapMode = FSMC_WRAP_MODE_DISABLE; + 80013da: 4b1c ldr r3, [pc, #112] ; (800144c ) + 80013dc: 2200 movs r2, #0 + 80013de: 621a str r2, [r3, #32] + hsram1.Init.WaitSignalActive = FSMC_WAIT_TIMING_BEFORE_WS; + 80013e0: 4b1a ldr r3, [pc, #104] ; (800144c ) + 80013e2: 2200 movs r2, #0 + 80013e4: 625a str r2, [r3, #36] ; 0x24 + hsram1.Init.WriteOperation = FSMC_WRITE_OPERATION_ENABLE; + 80013e6: 4b19 ldr r3, [pc, #100] ; (800144c ) + 80013e8: f44f 5280 mov.w r2, #4096 ; 0x1000 + 80013ec: 629a str r2, [r3, #40] ; 0x28 + hsram1.Init.WaitSignal = FSMC_WAIT_SIGNAL_DISABLE; + 80013ee: 4b17 ldr r3, [pc, #92] ; (800144c ) + 80013f0: 2200 movs r2, #0 + 80013f2: 62da str r2, [r3, #44] ; 0x2c + hsram1.Init.ExtendedMode = FSMC_EXTENDED_MODE_DISABLE; + 80013f4: 4b15 ldr r3, [pc, #84] ; (800144c ) + 80013f6: 2200 movs r2, #0 + 80013f8: 631a str r2, [r3, #48] ; 0x30 + hsram1.Init.AsynchronousWait = FSMC_ASYNCHRONOUS_WAIT_DISABLE; + 80013fa: 4b14 ldr r3, [pc, #80] ; (800144c ) + 80013fc: 2200 movs r2, #0 + 80013fe: 635a str r2, [r3, #52] ; 0x34 hsram1.Init.WriteBurst = FSMC_WRITE_BURST_DISABLE; - 80013c8: 4b12 ldr r3, [pc, #72] ; (8001414 ) - 80013ca: 2200 movs r2, #0 - 80013cc: 639a str r2, [r3, #56] ; 0x38 + 8001400: 4b12 ldr r3, [pc, #72] ; (800144c ) + 8001402: 2200 movs r2, #0 + 8001404: 639a str r2, [r3, #56] ; 0x38 /* Timing */ Timing.AddressSetupTime = 0; - 80013ce: 2300 movs r3, #0 - 80013d0: 607b str r3, [r7, #4] + 8001406: 2300 movs r3, #0 + 8001408: 607b str r3, [r7, #4] Timing.AddressHoldTime = 15; - 80013d2: 230f movs r3, #15 - 80013d4: 60bb str r3, [r7, #8] + 800140a: 230f movs r3, #15 + 800140c: 60bb str r3, [r7, #8] Timing.DataSetupTime = 1; - 80013d6: 2301 movs r3, #1 - 80013d8: 60fb str r3, [r7, #12] + 800140e: 2301 movs r3, #1 + 8001410: 60fb str r3, [r7, #12] Timing.BusTurnAroundDuration = 0; - 80013da: 2300 movs r3, #0 - 80013dc: 613b str r3, [r7, #16] + 8001412: 2300 movs r3, #0 + 8001414: 613b str r3, [r7, #16] Timing.CLKDivision = 16; - 80013de: 2310 movs r3, #16 - 80013e0: 617b str r3, [r7, #20] + 8001416: 2310 movs r3, #16 + 8001418: 617b str r3, [r7, #20] Timing.DataLatency = 17; - 80013e2: 2311 movs r3, #17 - 80013e4: 61bb str r3, [r7, #24] + 800141a: 2311 movs r3, #17 + 800141c: 61bb str r3, [r7, #24] Timing.AccessMode = FSMC_ACCESS_MODE_A; - 80013e6: 2300 movs r3, #0 - 80013e8: 61fb str r3, [r7, #28] + 800141e: 2300 movs r3, #0 + 8001420: 61fb str r3, [r7, #28] /* ExtTiming */ if (HAL_SRAM_Init(&hsram1, &Timing, NULL) != HAL_OK) - 80013ea: 1d3b adds r3, r7, #4 - 80013ec: 2200 movs r2, #0 - 80013ee: 4619 mov r1, r3 - 80013f0: 4808 ldr r0, [pc, #32] ; (8001414 ) - 80013f2: f002 f933 bl 800365c - 80013f6: 4603 mov r3, r0 - 80013f8: 2b00 cmp r3, #0 - 80013fa: d001 beq.n 8001400 + 8001422: 1d3b adds r3, r7, #4 + 8001424: 2200 movs r2, #0 + 8001426: 4619 mov r1, r3 + 8001428: 4808 ldr r0, [pc, #32] ; (800144c ) + 800142a: f002 f933 bl 8003694 + 800142e: 4603 mov r3, r0 + 8001430: 2b00 cmp r3, #0 + 8001432: d001 beq.n 8001438 { Error_Handler( ); - 80013fc: f000 f810 bl 8001420 + 8001434: f000 f810 bl 8001458 } /** Disconnect NADV */ __HAL_AFIO_FSMCNADV_DISCONNECTED(); - 8001400: 4b06 ldr r3, [pc, #24] ; (800141c ) - 8001402: 69db ldr r3, [r3, #28] - 8001404: 4a05 ldr r2, [pc, #20] ; (800141c ) - 8001406: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 800140a: 61d3 str r3, [r2, #28] + 8001438: 4b06 ldr r3, [pc, #24] ; (8001454 ) + 800143a: 69db ldr r3, [r3, #28] + 800143c: 4a05 ldr r2, [pc, #20] ; (8001454 ) + 800143e: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8001442: 61d3 str r3, [r2, #28] /* USER CODE BEGIN FSMC_Init 2 */ /* USER CODE END FSMC_Init 2 */ } - 800140c: bf00 nop - 800140e: 3720 adds r7, #32 - 8001410: 46bd mov sp, r7 - 8001412: bd80 pop {r7, pc} - 8001414: 2000025c .word 0x2000025c - 8001418: a0000104 .word 0xa0000104 - 800141c: 40010000 .word 0x40010000 + 8001444: bf00 nop + 8001446: 3720 adds r7, #32 + 8001448: 46bd mov sp, r7 + 800144a: bd80 pop {r7, pc} + 800144c: 2000025c .word 0x2000025c + 8001450: a0000104 .word 0xa0000104 + 8001454: 40010000 .word 0x40010000 -08001420 : +08001458 : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 8001420: b480 push {r7} - 8001422: af00 add r7, sp, #0 + 8001458: b480 push {r7} + 800145a: af00 add r7, sp, #0 \details Disables IRQ interrupts by setting the I-bit in the CPSR. Can only be executed in Privileged modes. */ __STATIC_FORCEINLINE void __disable_irq(void) { __ASM volatile ("cpsid i" : : : "memory"); - 8001424: b672 cpsid i + 800145c: b672 cpsid i } - 8001426: bf00 nop + 800145e: bf00 nop /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) - 8001428: e7fe b.n 8001428 + 8001460: e7fe b.n 8001460 ... -0800142c : +08001464 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 800142c: b480 push {r7} - 800142e: b085 sub sp, #20 - 8001430: af00 add r7, sp, #0 + 8001464: b480 push {r7} + 8001466: b085 sub sp, #20 + 8001468: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_AFIO_CLK_ENABLE(); - 8001432: 4b15 ldr r3, [pc, #84] ; (8001488 ) - 8001434: 699b ldr r3, [r3, #24] - 8001436: 4a14 ldr r2, [pc, #80] ; (8001488 ) - 8001438: f043 0301 orr.w r3, r3, #1 - 800143c: 6193 str r3, [r2, #24] - 800143e: 4b12 ldr r3, [pc, #72] ; (8001488 ) - 8001440: 699b ldr r3, [r3, #24] - 8001442: f003 0301 and.w r3, r3, #1 - 8001446: 60bb str r3, [r7, #8] - 8001448: 68bb ldr r3, [r7, #8] + 800146a: 4b15 ldr r3, [pc, #84] ; (80014c0 ) + 800146c: 699b ldr r3, [r3, #24] + 800146e: 4a14 ldr r2, [pc, #80] ; (80014c0 ) + 8001470: f043 0301 orr.w r3, r3, #1 + 8001474: 6193 str r3, [r2, #24] + 8001476: 4b12 ldr r3, [pc, #72] ; (80014c0 ) + 8001478: 699b ldr r3, [r3, #24] + 800147a: f003 0301 and.w r3, r3, #1 + 800147e: 60bb str r3, [r7, #8] + 8001480: 68bb ldr r3, [r7, #8] __HAL_RCC_PWR_CLK_ENABLE(); - 800144a: 4b0f ldr r3, [pc, #60] ; (8001488 ) - 800144c: 69db ldr r3, [r3, #28] - 800144e: 4a0e ldr r2, [pc, #56] ; (8001488 ) - 8001450: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 8001454: 61d3 str r3, [r2, #28] - 8001456: 4b0c ldr r3, [pc, #48] ; (8001488 ) - 8001458: 69db ldr r3, [r3, #28] - 800145a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 800145e: 607b str r3, [r7, #4] - 8001460: 687b ldr r3, [r7, #4] + 8001482: 4b0f ldr r3, [pc, #60] ; (80014c0 ) + 8001484: 69db ldr r3, [r3, #28] + 8001486: 4a0e ldr r2, [pc, #56] ; (80014c0 ) + 8001488: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 800148c: 61d3 str r3, [r2, #28] + 800148e: 4b0c ldr r3, [pc, #48] ; (80014c0 ) + 8001490: 69db ldr r3, [r3, #28] + 8001492: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8001496: 607b str r3, [r7, #4] + 8001498: 687b ldr r3, [r7, #4] /* System interrupt init*/ /** DISABLE: JTAG-DP Disabled and SW-DP Disabled */ __HAL_AFIO_REMAP_SWJ_DISABLE(); - 8001462: 4b0a ldr r3, [pc, #40] ; (800148c ) - 8001464: 685b ldr r3, [r3, #4] - 8001466: 60fb str r3, [r7, #12] - 8001468: 68fb ldr r3, [r7, #12] - 800146a: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 - 800146e: 60fb str r3, [r7, #12] - 8001470: 68fb ldr r3, [r7, #12] - 8001472: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 - 8001476: 60fb str r3, [r7, #12] - 8001478: 4a04 ldr r2, [pc, #16] ; (800148c ) - 800147a: 68fb ldr r3, [r7, #12] - 800147c: 6053 str r3, [r2, #4] + 800149a: 4b0a ldr r3, [pc, #40] ; (80014c4 ) + 800149c: 685b ldr r3, [r3, #4] + 800149e: 60fb str r3, [r7, #12] + 80014a0: 68fb ldr r3, [r7, #12] + 80014a2: f023 63e0 bic.w r3, r3, #117440512 ; 0x7000000 + 80014a6: 60fb str r3, [r7, #12] + 80014a8: 68fb ldr r3, [r7, #12] + 80014aa: f043 6380 orr.w r3, r3, #67108864 ; 0x4000000 + 80014ae: 60fb str r3, [r7, #12] + 80014b0: 4a04 ldr r2, [pc, #16] ; (80014c4 ) + 80014b2: 68fb ldr r3, [r7, #12] + 80014b4: 6053 str r3, [r2, #4] /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 800147e: bf00 nop - 8001480: 3714 adds r7, #20 - 8001482: 46bd mov sp, r7 - 8001484: bc80 pop {r7} - 8001486: 4770 bx lr - 8001488: 40021000 .word 0x40021000 - 800148c: 40010000 .word 0x40010000 + 80014b6: bf00 nop + 80014b8: 3714 adds r7, #20 + 80014ba: 46bd mov sp, r7 + 80014bc: bc80 pop {r7} + 80014be: 4770 bx lr + 80014c0: 40021000 .word 0x40021000 + 80014c4: 40010000 .word 0x40010000 -08001490 : +080014c8 : * This function configures the hardware resources used in this example * @param hi2c: I2C handle pointer * @retval None */ void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c) { - 8001490: b580 push {r7, lr} - 8001492: b088 sub sp, #32 - 8001494: af00 add r7, sp, #0 - 8001496: 6078 str r0, [r7, #4] + 80014c8: b580 push {r7, lr} + 80014ca: b088 sub sp, #32 + 80014cc: af00 add r7, sp, #0 + 80014ce: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 8001498: f107 0310 add.w r3, r7, #16 - 800149c: 2200 movs r2, #0 - 800149e: 601a str r2, [r3, #0] - 80014a0: 605a str r2, [r3, #4] - 80014a2: 609a str r2, [r3, #8] - 80014a4: 60da str r2, [r3, #12] + 80014d0: f107 0310 add.w r3, r7, #16 + 80014d4: 2200 movs r2, #0 + 80014d6: 601a str r2, [r3, #0] + 80014d8: 605a str r2, [r3, #4] + 80014da: 609a str r2, [r3, #8] + 80014dc: 60da str r2, [r3, #12] if(hi2c->Instance==I2C2) - 80014a6: 687b ldr r3, [r7, #4] - 80014a8: 681b ldr r3, [r3, #0] - 80014aa: 4a16 ldr r2, [pc, #88] ; (8001504 ) - 80014ac: 4293 cmp r3, r2 - 80014ae: d124 bne.n 80014fa + 80014de: 687b ldr r3, [r7, #4] + 80014e0: 681b ldr r3, [r3, #0] + 80014e2: 4a16 ldr r2, [pc, #88] ; (800153c ) + 80014e4: 4293 cmp r3, r2 + 80014e6: d124 bne.n 8001532 { /* USER CODE BEGIN I2C2_MspInit 0 */ /* USER CODE END I2C2_MspInit 0 */ __HAL_RCC_GPIOB_CLK_ENABLE(); - 80014b0: 4b15 ldr r3, [pc, #84] ; (8001508 ) - 80014b2: 699b ldr r3, [r3, #24] - 80014b4: 4a14 ldr r2, [pc, #80] ; (8001508 ) - 80014b6: f043 0308 orr.w r3, r3, #8 - 80014ba: 6193 str r3, [r2, #24] - 80014bc: 4b12 ldr r3, [pc, #72] ; (8001508 ) - 80014be: 699b ldr r3, [r3, #24] - 80014c0: f003 0308 and.w r3, r3, #8 - 80014c4: 60fb str r3, [r7, #12] - 80014c6: 68fb ldr r3, [r7, #12] + 80014e8: 4b15 ldr r3, [pc, #84] ; (8001540 ) + 80014ea: 699b ldr r3, [r3, #24] + 80014ec: 4a14 ldr r2, [pc, #80] ; (8001540 ) + 80014ee: f043 0308 orr.w r3, r3, #8 + 80014f2: 6193 str r3, [r2, #24] + 80014f4: 4b12 ldr r3, [pc, #72] ; (8001540 ) + 80014f6: 699b ldr r3, [r3, #24] + 80014f8: f003 0308 and.w r3, r3, #8 + 80014fc: 60fb str r3, [r7, #12] + 80014fe: 68fb ldr r3, [r7, #12] /**I2C2 GPIO Configuration PB10 ------> I2C2_SCL PB11 ------> I2C2_SDA */ GPIO_InitStruct.Pin = GPIO_PIN_10|GPIO_PIN_11; - 80014c8: f44f 6340 mov.w r3, #3072 ; 0xc00 - 80014cc: 613b str r3, [r7, #16] + 8001500: f44f 6340 mov.w r3, #3072 ; 0xc00 + 8001504: 613b str r3, [r7, #16] GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; - 80014ce: 2312 movs r3, #18 - 80014d0: 617b str r3, [r7, #20] + 8001506: 2312 movs r3, #18 + 8001508: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 80014d2: 2303 movs r3, #3 - 80014d4: 61fb str r3, [r7, #28] + 800150a: 2303 movs r3, #3 + 800150c: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - 80014d6: f107 0310 add.w r3, r7, #16 - 80014da: 4619 mov r1, r3 - 80014dc: 480b ldr r0, [pc, #44] ; (800150c ) - 80014de: f000 faf3 bl 8001ac8 + 800150e: f107 0310 add.w r3, r7, #16 + 8001512: 4619 mov r1, r3 + 8001514: 480b ldr r0, [pc, #44] ; (8001544 ) + 8001516: f000 faf3 bl 8001b00 /* Peripheral clock enable */ __HAL_RCC_I2C2_CLK_ENABLE(); - 80014e2: 4b09 ldr r3, [pc, #36] ; (8001508 ) - 80014e4: 69db ldr r3, [r3, #28] - 80014e6: 4a08 ldr r2, [pc, #32] ; (8001508 ) - 80014e8: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 - 80014ec: 61d3 str r3, [r2, #28] - 80014ee: 4b06 ldr r3, [pc, #24] ; (8001508 ) - 80014f0: 69db ldr r3, [r3, #28] - 80014f2: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 80014f6: 60bb str r3, [r7, #8] - 80014f8: 68bb ldr r3, [r7, #8] + 800151a: 4b09 ldr r3, [pc, #36] ; (8001540 ) + 800151c: 69db ldr r3, [r3, #28] + 800151e: 4a08 ldr r2, [pc, #32] ; (8001540 ) + 8001520: f443 0380 orr.w r3, r3, #4194304 ; 0x400000 + 8001524: 61d3 str r3, [r2, #28] + 8001526: 4b06 ldr r3, [pc, #24] ; (8001540 ) + 8001528: 69db ldr r3, [r3, #28] + 800152a: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 800152e: 60bb str r3, [r7, #8] + 8001530: 68bb ldr r3, [r7, #8] /* USER CODE BEGIN I2C2_MspInit 1 */ /* USER CODE END I2C2_MspInit 1 */ } } - 80014fa: bf00 nop - 80014fc: 3720 adds r7, #32 - 80014fe: 46bd mov sp, r7 - 8001500: bd80 pop {r7, pc} - 8001502: bf00 nop - 8001504: 40005800 .word 0x40005800 - 8001508: 40021000 .word 0x40021000 - 800150c: 40010c00 .word 0x40010c00 + 8001532: bf00 nop + 8001534: 3720 adds r7, #32 + 8001536: 46bd mov sp, r7 + 8001538: bd80 pop {r7, pc} + 800153a: bf00 nop + 800153c: 40005800 .word 0x40005800 + 8001540: 40021000 .word 0x40021000 + 8001544: 40010c00 .word 0x40010c00 -08001510 : +08001548 : } static uint32_t FSMC_Initialized = 0; static void HAL_FSMC_MspInit(void){ - 8001510: b580 push {r7, lr} - 8001512: b086 sub sp, #24 - 8001514: af00 add r7, sp, #0 + 8001548: b580 push {r7, lr} + 800154a: b086 sub sp, #24 + 800154c: af00 add r7, sp, #0 /* USER CODE BEGIN FSMC_MspInit 0 */ /* USER CODE END FSMC_MspInit 0 */ GPIO_InitTypeDef GPIO_InitStruct ={0}; - 8001516: f107 0308 add.w r3, r7, #8 - 800151a: 2200 movs r2, #0 - 800151c: 601a str r2, [r3, #0] - 800151e: 605a str r2, [r3, #4] - 8001520: 609a str r2, [r3, #8] - 8001522: 60da str r2, [r3, #12] + 800154e: f107 0308 add.w r3, r7, #8 + 8001552: 2200 movs r2, #0 + 8001554: 601a str r2, [r3, #0] + 8001556: 605a str r2, [r3, #4] + 8001558: 609a str r2, [r3, #8] + 800155a: 60da str r2, [r3, #12] if (FSMC_Initialized) { - 8001524: 4b1f ldr r3, [pc, #124] ; (80015a4 ) - 8001526: 681b ldr r3, [r3, #0] - 8001528: 2b00 cmp r3, #0 - 800152a: d136 bne.n 800159a + 800155c: 4b1f ldr r3, [pc, #124] ; (80015dc ) + 800155e: 681b ldr r3, [r3, #0] + 8001560: 2b00 cmp r3, #0 + 8001562: d136 bne.n 80015d2 return; } FSMC_Initialized = 1; - 800152c: 4b1d ldr r3, [pc, #116] ; (80015a4 ) - 800152e: 2201 movs r2, #1 - 8001530: 601a str r2, [r3, #0] + 8001564: 4b1d ldr r3, [pc, #116] ; (80015dc ) + 8001566: 2201 movs r2, #1 + 8001568: 601a str r2, [r3, #0] /* Peripheral clock enable */ __HAL_RCC_FSMC_CLK_ENABLE(); - 8001532: 4b1d ldr r3, [pc, #116] ; (80015a8 ) - 8001534: 695b ldr r3, [r3, #20] - 8001536: 4a1c ldr r2, [pc, #112] ; (80015a8 ) - 8001538: f443 7380 orr.w r3, r3, #256 ; 0x100 - 800153c: 6153 str r3, [r2, #20] - 800153e: 4b1a ldr r3, [pc, #104] ; (80015a8 ) - 8001540: 695b ldr r3, [r3, #20] - 8001542: f403 7380 and.w r3, r3, #256 ; 0x100 - 8001546: 607b str r3, [r7, #4] - 8001548: 687b ldr r3, [r7, #4] + 800156a: 4b1d ldr r3, [pc, #116] ; (80015e0 ) + 800156c: 695b ldr r3, [r3, #20] + 800156e: 4a1c ldr r2, [pc, #112] ; (80015e0 ) + 8001570: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8001574: 6153 str r3, [r2, #20] + 8001576: 4b1a ldr r3, [pc, #104] ; (80015e0 ) + 8001578: 695b ldr r3, [r3, #20] + 800157a: f403 7380 and.w r3, r3, #256 ; 0x100 + 800157e: 607b str r3, [r7, #4] + 8001580: 687b ldr r3, [r7, #4] PD1 ------> FSMC_D3 PD4 ------> FSMC_NOE PD5 ------> FSMC_NWE PG12 ------> FSMC_NE4 */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_12; - 800154a: f241 0301 movw r3, #4097 ; 0x1001 - 800154e: 60bb str r3, [r7, #8] + 8001582: f241 0301 movw r3, #4097 ; 0x1001 + 8001586: 60bb str r3, [r7, #8] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001550: 2302 movs r3, #2 - 8001552: 60fb str r3, [r7, #12] + 8001588: 2302 movs r3, #2 + 800158a: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001554: 2303 movs r3, #3 - 8001556: 617b str r3, [r7, #20] + 800158c: 2303 movs r3, #3 + 800158e: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOG, &GPIO_InitStruct); - 8001558: f107 0308 add.w r3, r7, #8 - 800155c: 4619 mov r1, r3 - 800155e: 4813 ldr r0, [pc, #76] ; (80015ac ) - 8001560: f000 fab2 bl 8001ac8 + 8001590: f107 0308 add.w r3, r7, #8 + 8001594: 4619 mov r1, r3 + 8001596: 4813 ldr r0, [pc, #76] ; (80015e4 ) + 8001598: f000 fab2 bl 8001b00 GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10 - 8001564: f64f 7380 movw r3, #65408 ; 0xff80 - 8001568: 60bb str r3, [r7, #8] + 800159c: f64f 7380 movw r3, #65408 ; 0xff80 + 80015a0: 60bb str r3, [r7, #8] |GPIO_PIN_11|GPIO_PIN_12|GPIO_PIN_13|GPIO_PIN_14 |GPIO_PIN_15; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800156a: 2302 movs r3, #2 - 800156c: 60fb str r3, [r7, #12] + 80015a2: 2302 movs r3, #2 + 80015a4: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 800156e: 2303 movs r3, #3 - 8001570: 617b str r3, [r7, #20] + 80015a6: 2303 movs r3, #3 + 80015a8: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); - 8001572: f107 0308 add.w r3, r7, #8 - 8001576: 4619 mov r1, r3 - 8001578: 480d ldr r0, [pc, #52] ; (80015b0 ) - 800157a: f000 faa5 bl 8001ac8 + 80015aa: f107 0308 add.w r3, r7, #8 + 80015ae: 4619 mov r1, r3 + 80015b0: 480d ldr r0, [pc, #52] ; (80015e8 ) + 80015b2: f000 faa5 bl 8001b00 GPIO_InitStruct.Pin = GPIO_PIN_8|GPIO_PIN_9|GPIO_PIN_10|GPIO_PIN_14 - 800157e: f24c 7333 movw r3, #50995 ; 0xc733 - 8001582: 60bb str r3, [r7, #8] + 80015b6: f24c 7333 movw r3, #50995 ; 0xc733 + 80015ba: 60bb str r3, [r7, #8] |GPIO_PIN_15|GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_4 |GPIO_PIN_5; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001584: 2302 movs r3, #2 - 8001586: 60fb str r3, [r7, #12] + 80015bc: 2302 movs r3, #2 + 80015be: 60fb str r3, [r7, #12] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; - 8001588: 2303 movs r3, #3 - 800158a: 617b str r3, [r7, #20] + 80015c0: 2303 movs r3, #3 + 80015c2: 617b str r3, [r7, #20] HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800158c: f107 0308 add.w r3, r7, #8 - 8001590: 4619 mov r1, r3 - 8001592: 4808 ldr r0, [pc, #32] ; (80015b4 ) - 8001594: f000 fa98 bl 8001ac8 - 8001598: e000 b.n 800159c + 80015c4: f107 0308 add.w r3, r7, #8 + 80015c8: 4619 mov r1, r3 + 80015ca: 4808 ldr r0, [pc, #32] ; (80015ec ) + 80015cc: f000 fa98 bl 8001b00 + 80015d0: e000 b.n 80015d4 return; - 800159a: bf00 nop + 80015d2: bf00 nop /* USER CODE BEGIN FSMC_MspInit 1 */ /* USER CODE END FSMC_MspInit 1 */ } - 800159c: 3718 adds r7, #24 - 800159e: 46bd mov sp, r7 - 80015a0: bd80 pop {r7, pc} - 80015a2: bf00 nop - 80015a4: 200001f8 .word 0x200001f8 - 80015a8: 40021000 .word 0x40021000 - 80015ac: 40012000 .word 0x40012000 - 80015b0: 40011800 .word 0x40011800 - 80015b4: 40011400 .word 0x40011400 + 80015d4: 3718 adds r7, #24 + 80015d6: 46bd mov sp, r7 + 80015d8: bd80 pop {r7, pc} + 80015da: bf00 nop + 80015dc: 200001f8 .word 0x200001f8 + 80015e0: 40021000 .word 0x40021000 + 80015e4: 40012000 .word 0x40012000 + 80015e8: 40011800 .word 0x40011800 + 80015ec: 40011400 .word 0x40011400 -080015b8 : +080015f0 : void HAL_SRAM_MspInit(SRAM_HandleTypeDef* hsram){ - 80015b8: b580 push {r7, lr} - 80015ba: b082 sub sp, #8 - 80015bc: af00 add r7, sp, #0 - 80015be: 6078 str r0, [r7, #4] + 80015f0: b580 push {r7, lr} + 80015f2: b082 sub sp, #8 + 80015f4: af00 add r7, sp, #0 + 80015f6: 6078 str r0, [r7, #4] /* USER CODE BEGIN SRAM_MspInit 0 */ /* USER CODE END SRAM_MspInit 0 */ HAL_FSMC_MspInit(); - 80015c0: f7ff ffa6 bl 8001510 + 80015f8: f7ff ffa6 bl 8001548 /* USER CODE BEGIN SRAM_MspInit 1 */ /* USER CODE END SRAM_MspInit 1 */ } - 80015c4: bf00 nop - 80015c6: 3708 adds r7, #8 - 80015c8: 46bd mov sp, r7 - 80015ca: bd80 pop {r7, pc} + 80015fc: bf00 nop + 80015fe: 3708 adds r7, #8 + 8001600: 46bd mov sp, r7 + 8001602: bd80 pop {r7, pc} -080015cc : +08001604 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 80015cc: b480 push {r7} - 80015ce: af00 add r7, sp, #0 + 8001604: b480 push {r7} + 8001606: 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) - 80015d0: e7fe b.n 80015d0 + 8001608: e7fe b.n 8001608 -080015d2 : +0800160a : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 80015d2: b480 push {r7} - 80015d4: af00 add r7, sp, #0 + 800160a: b480 push {r7} + 800160c: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 80015d6: e7fe b.n 80015d6 + 800160e: e7fe b.n 800160e -080015d8 : +08001610 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 80015d8: b480 push {r7} - 80015da: af00 add r7, sp, #0 + 8001610: b480 push {r7} + 8001612: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 80015dc: e7fe b.n 80015dc + 8001614: e7fe b.n 8001614 -080015de : +08001616 : /** * @brief This function handles Prefetch fault, memory access fault. */ void BusFault_Handler(void) { - 80015de: b480 push {r7} - 80015e0: af00 add r7, sp, #0 + 8001616: b480 push {r7} + 8001618: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 80015e2: e7fe b.n 80015e2 + 800161a: e7fe b.n 800161a -080015e4 : +0800161c : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 80015e4: b480 push {r7} - 80015e6: af00 add r7, sp, #0 + 800161c: b480 push {r7} + 800161e: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 80015e8: e7fe b.n 80015e8 + 8001620: e7fe b.n 8001620 -080015ea : +08001622 : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 80015ea: b480 push {r7} - 80015ec: af00 add r7, sp, #0 + 8001622: b480 push {r7} + 8001624: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 80015ee: bf00 nop - 80015f0: 46bd mov sp, r7 - 80015f2: bc80 pop {r7} - 80015f4: 4770 bx lr + 8001626: bf00 nop + 8001628: 46bd mov sp, r7 + 800162a: bc80 pop {r7} + 800162c: 4770 bx lr -080015f6 : +0800162e : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 80015f6: b480 push {r7} - 80015f8: af00 add r7, sp, #0 + 800162e: b480 push {r7} + 8001630: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 80015fa: bf00 nop - 80015fc: 46bd mov sp, r7 - 80015fe: bc80 pop {r7} - 8001600: 4770 bx lr + 8001632: bf00 nop + 8001634: 46bd mov sp, r7 + 8001636: bc80 pop {r7} + 8001638: 4770 bx lr -08001602 : +0800163a : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 8001602: b480 push {r7} - 8001604: af00 add r7, sp, #0 + 800163a: b480 push {r7} + 800163c: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 8001606: bf00 nop - 8001608: 46bd mov sp, r7 - 800160a: bc80 pop {r7} - 800160c: 4770 bx lr + 800163e: bf00 nop + 8001640: 46bd mov sp, r7 + 8001642: bc80 pop {r7} + 8001644: 4770 bx lr -0800160e : +08001646 : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 800160e: b580 push {r7, lr} - 8001610: af00 add r7, sp, #0 + 8001646: b580 push {r7, lr} + 8001648: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 8001612: f000 f935 bl 8001880 + 800164a: f000 f935 bl 80018b8 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 8001616: bf00 nop - 8001618: bd80 pop {r7, pc} + 800164e: bf00 nop + 8001650: bd80 pop {r7, pc} -0800161a <_getpid>: +08001652 <_getpid>: void initialise_monitor_handles() { } int _getpid(void) { - 800161a: b480 push {r7} - 800161c: af00 add r7, sp, #0 + 8001652: b480 push {r7} + 8001654: af00 add r7, sp, #0 return 1; - 800161e: 2301 movs r3, #1 + 8001656: 2301 movs r3, #1 } - 8001620: 4618 mov r0, r3 - 8001622: 46bd mov sp, r7 - 8001624: bc80 pop {r7} - 8001626: 4770 bx lr + 8001658: 4618 mov r0, r3 + 800165a: 46bd mov sp, r7 + 800165c: bc80 pop {r7} + 800165e: 4770 bx lr -08001628 <_kill>: +08001660 <_kill>: int _kill(int pid, int sig) { - 8001628: b580 push {r7, lr} - 800162a: b082 sub sp, #8 - 800162c: af00 add r7, sp, #0 - 800162e: 6078 str r0, [r7, #4] - 8001630: 6039 str r1, [r7, #0] + 8001660: b580 push {r7, lr} + 8001662: b082 sub sp, #8 + 8001664: af00 add r7, sp, #0 + 8001666: 6078 str r0, [r7, #4] + 8001668: 6039 str r1, [r7, #0] errno = EINVAL; - 8001632: f004 f909 bl 8005848 <__errno> - 8001636: 4603 mov r3, r0 - 8001638: 2216 movs r2, #22 - 800163a: 601a str r2, [r3, #0] + 800166a: f004 fa57 bl 8005b1c <__errno> + 800166e: 4603 mov r3, r0 + 8001670: 2216 movs r2, #22 + 8001672: 601a str r2, [r3, #0] return -1; - 800163c: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8001674: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 8001640: 4618 mov r0, r3 - 8001642: 3708 adds r7, #8 - 8001644: 46bd mov sp, r7 - 8001646: bd80 pop {r7, pc} + 8001678: 4618 mov r0, r3 + 800167a: 3708 adds r7, #8 + 800167c: 46bd mov sp, r7 + 800167e: bd80 pop {r7, pc} -08001648 <_exit>: +08001680 <_exit>: void _exit (int status) { - 8001648: b580 push {r7, lr} - 800164a: b082 sub sp, #8 - 800164c: af00 add r7, sp, #0 - 800164e: 6078 str r0, [r7, #4] + 8001680: b580 push {r7, lr} + 8001682: b082 sub sp, #8 + 8001684: af00 add r7, sp, #0 + 8001686: 6078 str r0, [r7, #4] _kill(status, -1); - 8001650: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 8001654: 6878 ldr r0, [r7, #4] - 8001656: f7ff ffe7 bl 8001628 <_kill> + 8001688: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 800168c: 6878 ldr r0, [r7, #4] + 800168e: f7ff ffe7 bl 8001660 <_kill> while (1) {} /* Make sure we hang here */ - 800165a: e7fe b.n 800165a <_exit+0x12> + 8001692: e7fe b.n 8001692 <_exit+0x12> -0800165c <_read>: +08001694 <_read>: } __attribute__((weak)) int _read(int file, char *ptr, int len) { - 800165c: b580 push {r7, lr} - 800165e: b086 sub sp, #24 - 8001660: af00 add r7, sp, #0 - 8001662: 60f8 str r0, [r7, #12] - 8001664: 60b9 str r1, [r7, #8] - 8001666: 607a str r2, [r7, #4] + 8001694: b580 push {r7, lr} + 8001696: b086 sub sp, #24 + 8001698: af00 add r7, sp, #0 + 800169a: 60f8 str r0, [r7, #12] + 800169c: 60b9 str r1, [r7, #8] + 800169e: 607a str r2, [r7, #4] int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) - 8001668: 2300 movs r3, #0 - 800166a: 617b str r3, [r7, #20] - 800166c: e00a b.n 8001684 <_read+0x28> + 80016a0: 2300 movs r3, #0 + 80016a2: 617b str r3, [r7, #20] + 80016a4: e00a b.n 80016bc <_read+0x28> { *ptr++ = __io_getchar(); - 800166e: f3af 8000 nop.w - 8001672: 4601 mov r1, r0 - 8001674: 68bb ldr r3, [r7, #8] - 8001676: 1c5a adds r2, r3, #1 - 8001678: 60ba str r2, [r7, #8] - 800167a: b2ca uxtb r2, r1 - 800167c: 701a strb r2, [r3, #0] - for (DataIdx = 0; DataIdx < len; DataIdx++) - 800167e: 697b ldr r3, [r7, #20] - 8001680: 3301 adds r3, #1 - 8001682: 617b str r3, [r7, #20] - 8001684: 697a ldr r2, [r7, #20] - 8001686: 687b ldr r3, [r7, #4] - 8001688: 429a cmp r2, r3 - 800168a: dbf0 blt.n 800166e <_read+0x12> - } - -return len; - 800168c: 687b ldr r3, [r7, #4] -} - 800168e: 4618 mov r0, r3 - 8001690: 3718 adds r7, #24 - 8001692: 46bd mov sp, r7 - 8001694: bd80 pop {r7, pc} - -08001696 <_write>: - -__attribute__((weak)) int _write(int file, char *ptr, int len) -{ - 8001696: b580 push {r7, lr} - 8001698: b086 sub sp, #24 - 800169a: af00 add r7, sp, #0 - 800169c: 60f8 str r0, [r7, #12] - 800169e: 60b9 str r1, [r7, #8] - 80016a0: 607a str r2, [r7, #4] - int DataIdx; - - for (DataIdx = 0; DataIdx < len; DataIdx++) - 80016a2: 2300 movs r3, #0 - 80016a4: 617b str r3, [r7, #20] - 80016a6: e009 b.n 80016bc <_write+0x26> - { - __io_putchar(*ptr++); - 80016a8: 68bb ldr r3, [r7, #8] - 80016aa: 1c5a adds r2, r3, #1 - 80016ac: 60ba str r2, [r7, #8] - 80016ae: 781b ldrb r3, [r3, #0] - 80016b0: 4618 mov r0, r3 - 80016b2: f3af 8000 nop.w + 80016a6: f3af 8000 nop.w + 80016aa: 4601 mov r1, r0 + 80016ac: 68bb ldr r3, [r7, #8] + 80016ae: 1c5a adds r2, r3, #1 + 80016b0: 60ba str r2, [r7, #8] + 80016b2: b2ca uxtb r2, r1 + 80016b4: 701a strb r2, [r3, #0] for (DataIdx = 0; DataIdx < len; DataIdx++) 80016b6: 697b ldr r3, [r7, #20] 80016b8: 3301 adds r3, #1 @@ -2521,9 +2513,10 @@ __attribute__((weak)) int _write(int file, char *ptr, int len) 80016bc: 697a ldr r2, [r7, #20] 80016be: 687b ldr r3, [r7, #4] 80016c0: 429a cmp r2, r3 - 80016c2: dbf1 blt.n 80016a8 <_write+0x12> + 80016c2: dbf0 blt.n 80016a6 <_read+0x12> } - return len; + +return len; 80016c4: 687b ldr r3, [r7, #4] } 80016c6: 4618 mov r0, r3 @@ -2531,15679 +2524,16101 @@ __attribute__((weak)) int _write(int file, char *ptr, int len) 80016ca: 46bd mov sp, r7 80016cc: bd80 pop {r7, pc} -080016ce <_close>: +080016ce <_write>: + +__attribute__((weak)) int _write(int file, char *ptr, int len) +{ + 80016ce: b580 push {r7, lr} + 80016d0: b086 sub sp, #24 + 80016d2: af00 add r7, sp, #0 + 80016d4: 60f8 str r0, [r7, #12] + 80016d6: 60b9 str r1, [r7, #8] + 80016d8: 607a str r2, [r7, #4] + int DataIdx; + + for (DataIdx = 0; DataIdx < len; DataIdx++) + 80016da: 2300 movs r3, #0 + 80016dc: 617b str r3, [r7, #20] + 80016de: e009 b.n 80016f4 <_write+0x26> + { + __io_putchar(*ptr++); + 80016e0: 68bb ldr r3, [r7, #8] + 80016e2: 1c5a adds r2, r3, #1 + 80016e4: 60ba str r2, [r7, #8] + 80016e6: 781b ldrb r3, [r3, #0] + 80016e8: 4618 mov r0, r3 + 80016ea: f3af 8000 nop.w + for (DataIdx = 0; DataIdx < len; DataIdx++) + 80016ee: 697b ldr r3, [r7, #20] + 80016f0: 3301 adds r3, #1 + 80016f2: 617b str r3, [r7, #20] + 80016f4: 697a ldr r2, [r7, #20] + 80016f6: 687b ldr r3, [r7, #4] + 80016f8: 429a cmp r2, r3 + 80016fa: dbf1 blt.n 80016e0 <_write+0x12> + } + return len; + 80016fc: 687b ldr r3, [r7, #4] +} + 80016fe: 4618 mov r0, r3 + 8001700: 3718 adds r7, #24 + 8001702: 46bd mov sp, r7 + 8001704: bd80 pop {r7, pc} + +08001706 <_close>: int _close(int file) { - 80016ce: b480 push {r7} - 80016d0: b083 sub sp, #12 - 80016d2: af00 add r7, sp, #0 - 80016d4: 6078 str r0, [r7, #4] + 8001706: b480 push {r7} + 8001708: b083 sub sp, #12 + 800170a: af00 add r7, sp, #0 + 800170c: 6078 str r0, [r7, #4] return -1; - 80016d6: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800170e: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff } - 80016da: 4618 mov r0, r3 - 80016dc: 370c adds r7, #12 - 80016de: 46bd mov sp, r7 - 80016e0: bc80 pop {r7} - 80016e2: 4770 bx lr + 8001712: 4618 mov r0, r3 + 8001714: 370c adds r7, #12 + 8001716: 46bd mov sp, r7 + 8001718: bc80 pop {r7} + 800171a: 4770 bx lr -080016e4 <_fstat>: +0800171c <_fstat>: int _fstat(int file, struct stat *st) { - 80016e4: b480 push {r7} - 80016e6: b083 sub sp, #12 - 80016e8: af00 add r7, sp, #0 - 80016ea: 6078 str r0, [r7, #4] - 80016ec: 6039 str r1, [r7, #0] + 800171c: b480 push {r7} + 800171e: b083 sub sp, #12 + 8001720: af00 add r7, sp, #0 + 8001722: 6078 str r0, [r7, #4] + 8001724: 6039 str r1, [r7, #0] st->st_mode = S_IFCHR; - 80016ee: 683b ldr r3, [r7, #0] - 80016f0: f44f 5200 mov.w r2, #8192 ; 0x2000 - 80016f4: 605a str r2, [r3, #4] + 8001726: 683b ldr r3, [r7, #0] + 8001728: f44f 5200 mov.w r2, #8192 ; 0x2000 + 800172c: 605a str r2, [r3, #4] return 0; - 80016f6: 2300 movs r3, #0 + 800172e: 2300 movs r3, #0 } - 80016f8: 4618 mov r0, r3 - 80016fa: 370c adds r7, #12 - 80016fc: 46bd mov sp, r7 - 80016fe: bc80 pop {r7} - 8001700: 4770 bx lr + 8001730: 4618 mov r0, r3 + 8001732: 370c adds r7, #12 + 8001734: 46bd mov sp, r7 + 8001736: bc80 pop {r7} + 8001738: 4770 bx lr -08001702 <_isatty>: +0800173a <_isatty>: int _isatty(int file) { - 8001702: b480 push {r7} - 8001704: b083 sub sp, #12 - 8001706: af00 add r7, sp, #0 - 8001708: 6078 str r0, [r7, #4] + 800173a: b480 push {r7} + 800173c: b083 sub sp, #12 + 800173e: af00 add r7, sp, #0 + 8001740: 6078 str r0, [r7, #4] return 1; - 800170a: 2301 movs r3, #1 + 8001742: 2301 movs r3, #1 } - 800170c: 4618 mov r0, r3 - 800170e: 370c adds r7, #12 - 8001710: 46bd mov sp, r7 - 8001712: bc80 pop {r7} - 8001714: 4770 bx lr + 8001744: 4618 mov r0, r3 + 8001746: 370c adds r7, #12 + 8001748: 46bd mov sp, r7 + 800174a: bc80 pop {r7} + 800174c: 4770 bx lr -08001716 <_lseek>: +0800174e <_lseek>: int _lseek(int file, int ptr, int dir) { - 8001716: b480 push {r7} - 8001718: b085 sub sp, #20 - 800171a: af00 add r7, sp, #0 - 800171c: 60f8 str r0, [r7, #12] - 800171e: 60b9 str r1, [r7, #8] - 8001720: 607a str r2, [r7, #4] + 800174e: b480 push {r7} + 8001750: b085 sub sp, #20 + 8001752: af00 add r7, sp, #0 + 8001754: 60f8 str r0, [r7, #12] + 8001756: 60b9 str r1, [r7, #8] + 8001758: 607a str r2, [r7, #4] return 0; - 8001722: 2300 movs r3, #0 + 800175a: 2300 movs r3, #0 } - 8001724: 4618 mov r0, r3 - 8001726: 3714 adds r7, #20 - 8001728: 46bd mov sp, r7 - 800172a: bc80 pop {r7} - 800172c: 4770 bx lr + 800175c: 4618 mov r0, r3 + 800175e: 3714 adds r7, #20 + 8001760: 46bd mov sp, r7 + 8001762: bc80 pop {r7} + 8001764: 4770 bx lr ... -08001730 <_sbrk>: +08001768 <_sbrk>: * * @param incr Memory size * @return Pointer to allocated memory */ void *_sbrk(ptrdiff_t incr) { - 8001730: b580 push {r7, lr} - 8001732: b086 sub sp, #24 - 8001734: af00 add r7, sp, #0 - 8001736: 6078 str r0, [r7, #4] + 8001768: b580 push {r7, lr} + 800176a: b086 sub sp, #24 + 800176c: af00 add r7, sp, #0 + 800176e: 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; - 8001738: 4a14 ldr r2, [pc, #80] ; (800178c <_sbrk+0x5c>) - 800173a: 4b15 ldr r3, [pc, #84] ; (8001790 <_sbrk+0x60>) - 800173c: 1ad3 subs r3, r2, r3 - 800173e: 617b str r3, [r7, #20] + 8001770: 4a14 ldr r2, [pc, #80] ; (80017c4 <_sbrk+0x5c>) + 8001772: 4b15 ldr r3, [pc, #84] ; (80017c8 <_sbrk+0x60>) + 8001774: 1ad3 subs r3, r2, r3 + 8001776: 617b str r3, [r7, #20] const uint8_t *max_heap = (uint8_t *)stack_limit; - 8001740: 697b ldr r3, [r7, #20] - 8001742: 613b str r3, [r7, #16] + 8001778: 697b ldr r3, [r7, #20] + 800177a: 613b str r3, [r7, #16] uint8_t *prev_heap_end; /* Initialize heap end at first call */ if (NULL == __sbrk_heap_end) - 8001744: 4b13 ldr r3, [pc, #76] ; (8001794 <_sbrk+0x64>) - 8001746: 681b ldr r3, [r3, #0] - 8001748: 2b00 cmp r3, #0 - 800174a: d102 bne.n 8001752 <_sbrk+0x22> + 800177c: 4b13 ldr r3, [pc, #76] ; (80017cc <_sbrk+0x64>) + 800177e: 681b ldr r3, [r3, #0] + 8001780: 2b00 cmp r3, #0 + 8001782: d102 bne.n 800178a <_sbrk+0x22> { __sbrk_heap_end = &_end; - 800174c: 4b11 ldr r3, [pc, #68] ; (8001794 <_sbrk+0x64>) - 800174e: 4a12 ldr r2, [pc, #72] ; (8001798 <_sbrk+0x68>) - 8001750: 601a str r2, [r3, #0] + 8001784: 4b11 ldr r3, [pc, #68] ; (80017cc <_sbrk+0x64>) + 8001786: 4a12 ldr r2, [pc, #72] ; (80017d0 <_sbrk+0x68>) + 8001788: 601a str r2, [r3, #0] } /* Protect heap from growing into the reserved MSP stack */ if (__sbrk_heap_end + incr > max_heap) - 8001752: 4b10 ldr r3, [pc, #64] ; (8001794 <_sbrk+0x64>) - 8001754: 681a ldr r2, [r3, #0] - 8001756: 687b ldr r3, [r7, #4] - 8001758: 4413 add r3, r2 - 800175a: 693a ldr r2, [r7, #16] - 800175c: 429a cmp r2, r3 - 800175e: d207 bcs.n 8001770 <_sbrk+0x40> + 800178a: 4b10 ldr r3, [pc, #64] ; (80017cc <_sbrk+0x64>) + 800178c: 681a ldr r2, [r3, #0] + 800178e: 687b ldr r3, [r7, #4] + 8001790: 4413 add r3, r2 + 8001792: 693a ldr r2, [r7, #16] + 8001794: 429a cmp r2, r3 + 8001796: d207 bcs.n 80017a8 <_sbrk+0x40> { errno = ENOMEM; - 8001760: f004 f872 bl 8005848 <__errno> - 8001764: 4603 mov r3, r0 - 8001766: 220c movs r2, #12 - 8001768: 601a str r2, [r3, #0] + 8001798: f004 f9c0 bl 8005b1c <__errno> + 800179c: 4603 mov r3, r0 + 800179e: 220c movs r2, #12 + 80017a0: 601a str r2, [r3, #0] return (void *)-1; - 800176a: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 800176e: e009 b.n 8001784 <_sbrk+0x54> + 80017a2: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 80017a6: e009 b.n 80017bc <_sbrk+0x54> } prev_heap_end = __sbrk_heap_end; - 8001770: 4b08 ldr r3, [pc, #32] ; (8001794 <_sbrk+0x64>) - 8001772: 681b ldr r3, [r3, #0] - 8001774: 60fb str r3, [r7, #12] + 80017a8: 4b08 ldr r3, [pc, #32] ; (80017cc <_sbrk+0x64>) + 80017aa: 681b ldr r3, [r3, #0] + 80017ac: 60fb str r3, [r7, #12] __sbrk_heap_end += incr; - 8001776: 4b07 ldr r3, [pc, #28] ; (8001794 <_sbrk+0x64>) - 8001778: 681a ldr r2, [r3, #0] - 800177a: 687b ldr r3, [r7, #4] - 800177c: 4413 add r3, r2 - 800177e: 4a05 ldr r2, [pc, #20] ; (8001794 <_sbrk+0x64>) - 8001780: 6013 str r3, [r2, #0] + 80017ae: 4b07 ldr r3, [pc, #28] ; (80017cc <_sbrk+0x64>) + 80017b0: 681a ldr r2, [r3, #0] + 80017b2: 687b ldr r3, [r7, #4] + 80017b4: 4413 add r3, r2 + 80017b6: 4a05 ldr r2, [pc, #20] ; (80017cc <_sbrk+0x64>) + 80017b8: 6013 str r3, [r2, #0] return (void *)prev_heap_end; - 8001782: 68fb ldr r3, [r7, #12] + 80017ba: 68fb ldr r3, [r7, #12] } - 8001784: 4618 mov r0, r3 - 8001786: 3718 adds r7, #24 - 8001788: 46bd mov sp, r7 - 800178a: bd80 pop {r7, pc} - 800178c: 20010000 .word 0x20010000 - 8001790: 00000800 .word 0x00000800 - 8001794: 200001fc .word 0x200001fc - 8001798: 20000308 .word 0x20000308 + 80017bc: 4618 mov r0, r3 + 80017be: 3718 adds r7, #24 + 80017c0: 46bd mov sp, r7 + 80017c2: bd80 pop {r7, pc} + 80017c4: 20010000 .word 0x20010000 + 80017c8: 00000800 .word 0x00000800 + 80017cc: 200001fc .word 0x200001fc + 80017d0: 20000350 .word 0x20000350 -0800179c : +080017d4 : * @note This function should be used only after reset. * @param None * @retval None */ void SystemInit (void) { - 800179c: b480 push {r7} - 800179e: af00 add r7, sp, #0 + 80017d4: b480 push {r7} + 80017d6: 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 */ } - 80017a0: bf00 nop - 80017a2: 46bd mov sp, r7 - 80017a4: bc80 pop {r7} - 80017a6: 4770 bx lr + 80017d8: bf00 nop + 80017da: 46bd mov sp, r7 + 80017dc: bc80 pop {r7} + 80017de: 4770 bx lr -080017a8 : +080017e0 : .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 80017a8: 480c ldr r0, [pc, #48] ; (80017dc ) + 80017e0: 480c ldr r0, [pc, #48] ; (8001814 ) ldr r1, =_edata - 80017aa: 490d ldr r1, [pc, #52] ; (80017e0 ) + 80017e2: 490d ldr r1, [pc, #52] ; (8001818 ) ldr r2, =_sidata - 80017ac: 4a0d ldr r2, [pc, #52] ; (80017e4 ) + 80017e4: 4a0d ldr r2, [pc, #52] ; (800181c ) movs r3, #0 - 80017ae: 2300 movs r3, #0 + 80017e6: 2300 movs r3, #0 b LoopCopyDataInit - 80017b0: e002 b.n 80017b8 + 80017e8: e002 b.n 80017f0 -080017b2 : +080017ea : CopyDataInit: ldr r4, [r2, r3] - 80017b2: 58d4 ldr r4, [r2, r3] + 80017ea: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 80017b4: 50c4 str r4, [r0, r3] + 80017ec: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 80017b6: 3304 adds r3, #4 + 80017ee: 3304 adds r3, #4 -080017b8 : +080017f0 : LoopCopyDataInit: adds r4, r0, r3 - 80017b8: 18c4 adds r4, r0, r3 + 80017f0: 18c4 adds r4, r0, r3 cmp r4, r1 - 80017ba: 428c cmp r4, r1 + 80017f2: 428c cmp r4, r1 bcc CopyDataInit - 80017bc: d3f9 bcc.n 80017b2 + 80017f4: d3f9 bcc.n 80017ea /* Zero fill the bss segment. */ ldr r2, =_sbss - 80017be: 4a0a ldr r2, [pc, #40] ; (80017e8 ) + 80017f6: 4a0a ldr r2, [pc, #40] ; (8001820 ) ldr r4, =_ebss - 80017c0: 4c0a ldr r4, [pc, #40] ; (80017ec ) + 80017f8: 4c0a ldr r4, [pc, #40] ; (8001824 ) movs r3, #0 - 80017c2: 2300 movs r3, #0 + 80017fa: 2300 movs r3, #0 b LoopFillZerobss - 80017c4: e001 b.n 80017ca + 80017fc: e001 b.n 8001802 -080017c6 : +080017fe : FillZerobss: str r3, [r2] - 80017c6: 6013 str r3, [r2, #0] + 80017fe: 6013 str r3, [r2, #0] adds r2, r2, #4 - 80017c8: 3204 adds r2, #4 + 8001800: 3204 adds r2, #4 -080017ca : +08001802 : LoopFillZerobss: cmp r2, r4 - 80017ca: 42a2 cmp r2, r4 + 8001802: 42a2 cmp r2, r4 bcc FillZerobss - 80017cc: d3fb bcc.n 80017c6 + 8001804: d3fb bcc.n 80017fe /* Call the clock system intitialization function.*/ bl SystemInit - 80017ce: f7ff ffe5 bl 800179c + 8001806: f7ff ffe5 bl 80017d4 /* Call static constructors */ bl __libc_init_array - 80017d2: f004 f83f bl 8005854 <__libc_init_array> + 800180a: f004 f98d bl 8005b28 <__libc_init_array> /* Call the application's entry point.*/ bl main - 80017d6: f7ff fc97 bl 8001108
+ 800180e: f7ff fc7b bl 8001108
bx lr - 80017da: 4770 bx lr + 8001812: 4770 bx lr ldr r0, =_sdata - 80017dc: 20000000 .word 0x20000000 + 8001814: 20000000 .word 0x20000000 ldr r1, =_edata - 80017e0: 200001dc .word 0x200001dc + 8001818: 200001dc .word 0x200001dc ldr r2, =_sidata - 80017e4: 08009544 .word 0x08009544 + 800181c: 08009834 .word 0x08009834 ldr r2, =_sbss - 80017e8: 200001dc .word 0x200001dc + 8001820: 200001dc .word 0x200001dc ldr r4, =_ebss - 80017ec: 20000304 .word 0x20000304 + 8001824: 2000034c .word 0x2000034c -080017f0 : +08001828 : * @retval : None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 80017f0: e7fe b.n 80017f0 + 8001828: e7fe b.n 8001828 ... -080017f4 : +0800182c : * 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) { - 80017f4: b580 push {r7, lr} - 80017f6: af00 add r7, sp, #0 + 800182c: b580 push {r7, lr} + 800182e: 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(); - 80017f8: 4b08 ldr r3, [pc, #32] ; (800181c ) - 80017fa: 681b ldr r3, [r3, #0] - 80017fc: 4a07 ldr r2, [pc, #28] ; (800181c ) - 80017fe: f043 0310 orr.w r3, r3, #16 - 8001802: 6013 str r3, [r2, #0] + 8001830: 4b08 ldr r3, [pc, #32] ; (8001854 ) + 8001832: 681b ldr r3, [r3, #0] + 8001834: 4a07 ldr r2, [pc, #28] ; (8001854 ) + 8001836: f043 0310 orr.w r3, r3, #16 + 800183a: 6013 str r3, [r2, #0] #endif #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8001804: 2003 movs r0, #3 - 8001806: f000 f92b bl 8001a60 + 800183c: 2003 movs r0, #3 + 800183e: f000 f92b bl 8001a98 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 800180a: 200f movs r0, #15 - 800180c: f000 f808 bl 8001820 + 8001842: 200f movs r0, #15 + 8001844: f000 f808 bl 8001858 /* Init the low level hardware */ HAL_MspInit(); - 8001810: f7ff fe0c bl 800142c + 8001848: f7ff fe0c bl 8001464 /* Return function status */ return HAL_OK; - 8001814: 2300 movs r3, #0 + 800184c: 2300 movs r3, #0 } - 8001816: 4618 mov r0, r3 - 8001818: bd80 pop {r7, pc} - 800181a: bf00 nop - 800181c: 40022000 .word 0x40022000 + 800184e: 4618 mov r0, r3 + 8001850: bd80 pop {r7, pc} + 8001852: bf00 nop + 8001854: 40022000 .word 0x40022000 -08001820 : +08001858 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8001820: b580 push {r7, lr} - 8001822: b082 sub sp, #8 - 8001824: af00 add r7, sp, #0 - 8001826: 6078 str r0, [r7, #4] + 8001858: b580 push {r7, lr} + 800185a: b082 sub sp, #8 + 800185c: af00 add r7, sp, #0 + 800185e: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8001828: 4b12 ldr r3, [pc, #72] ; (8001874 ) - 800182a: 681a ldr r2, [r3, #0] - 800182c: 4b12 ldr r3, [pc, #72] ; (8001878 ) - 800182e: 781b ldrb r3, [r3, #0] - 8001830: 4619 mov r1, r3 - 8001832: f44f 737a mov.w r3, #1000 ; 0x3e8 - 8001836: fbb3 f3f1 udiv r3, r3, r1 - 800183a: fbb2 f3f3 udiv r3, r2, r3 - 800183e: 4618 mov r0, r3 - 8001840: f000 f935 bl 8001aae - 8001844: 4603 mov r3, r0 - 8001846: 2b00 cmp r3, #0 - 8001848: d001 beq.n 800184e + 8001860: 4b12 ldr r3, [pc, #72] ; (80018ac ) + 8001862: 681a ldr r2, [r3, #0] + 8001864: 4b12 ldr r3, [pc, #72] ; (80018b0 ) + 8001866: 781b ldrb r3, [r3, #0] + 8001868: 4619 mov r1, r3 + 800186a: f44f 737a mov.w r3, #1000 ; 0x3e8 + 800186e: fbb3 f3f1 udiv r3, r3, r1 + 8001872: fbb2 f3f3 udiv r3, r2, r3 + 8001876: 4618 mov r0, r3 + 8001878: f000 f935 bl 8001ae6 + 800187c: 4603 mov r3, r0 + 800187e: 2b00 cmp r3, #0 + 8001880: d001 beq.n 8001886 { return HAL_ERROR; - 800184a: 2301 movs r3, #1 - 800184c: e00e b.n 800186c + 8001882: 2301 movs r3, #1 + 8001884: e00e b.n 80018a4 } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 800184e: 687b ldr r3, [r7, #4] - 8001850: 2b0f cmp r3, #15 - 8001852: d80a bhi.n 800186a + 8001886: 687b ldr r3, [r7, #4] + 8001888: 2b0f cmp r3, #15 + 800188a: d80a bhi.n 80018a2 { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 8001854: 2200 movs r2, #0 - 8001856: 6879 ldr r1, [r7, #4] - 8001858: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 800185c: f000 f90b bl 8001a76 + 800188c: 2200 movs r2, #0 + 800188e: 6879 ldr r1, [r7, #4] + 8001890: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001894: f000 f90b bl 8001aae uwTickPrio = TickPriority; - 8001860: 4a06 ldr r2, [pc, #24] ; (800187c ) - 8001862: 687b ldr r3, [r7, #4] - 8001864: 6013 str r3, [r2, #0] + 8001898: 4a06 ldr r2, [pc, #24] ; (80018b4 ) + 800189a: 687b ldr r3, [r7, #4] + 800189c: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 8001866: 2300 movs r3, #0 - 8001868: e000 b.n 800186c + 800189e: 2300 movs r3, #0 + 80018a0: e000 b.n 80018a4 return HAL_ERROR; - 800186a: 2301 movs r3, #1 + 80018a2: 2301 movs r3, #1 } - 800186c: 4618 mov r0, r3 - 800186e: 3708 adds r7, #8 - 8001870: 46bd mov sp, r7 - 8001872: bd80 pop {r7, pc} - 8001874: 20000000 .word 0x20000000 - 8001878: 20000008 .word 0x20000008 - 800187c: 20000004 .word 0x20000004 + 80018a4: 4618 mov r0, r3 + 80018a6: 3708 adds r7, #8 + 80018a8: 46bd mov sp, r7 + 80018aa: bd80 pop {r7, pc} + 80018ac: 20000000 .word 0x20000000 + 80018b0: 20000008 .word 0x20000008 + 80018b4: 20000004 .word 0x20000004 -08001880 : +080018b8 : * @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) { - 8001880: b480 push {r7} - 8001882: af00 add r7, sp, #0 + 80018b8: b480 push {r7} + 80018ba: af00 add r7, sp, #0 uwTick += uwTickFreq; - 8001884: 4b05 ldr r3, [pc, #20] ; (800189c ) - 8001886: 781b ldrb r3, [r3, #0] - 8001888: 461a mov r2, r3 - 800188a: 4b05 ldr r3, [pc, #20] ; (80018a0 ) - 800188c: 681b ldr r3, [r3, #0] - 800188e: 4413 add r3, r2 - 8001890: 4a03 ldr r2, [pc, #12] ; (80018a0 ) - 8001892: 6013 str r3, [r2, #0] + 80018bc: 4b05 ldr r3, [pc, #20] ; (80018d4 ) + 80018be: 781b ldrb r3, [r3, #0] + 80018c0: 461a mov r2, r3 + 80018c2: 4b05 ldr r3, [pc, #20] ; (80018d8 ) + 80018c4: 681b ldr r3, [r3, #0] + 80018c6: 4413 add r3, r2 + 80018c8: 4a03 ldr r2, [pc, #12] ; (80018d8 ) + 80018ca: 6013 str r3, [r2, #0] } - 8001894: bf00 nop - 8001896: 46bd mov sp, r7 - 8001898: bc80 pop {r7} - 800189a: 4770 bx lr - 800189c: 20000008 .word 0x20000008 - 80018a0: 200002a4 .word 0x200002a4 + 80018cc: bf00 nop + 80018ce: 46bd mov sp, r7 + 80018d0: bc80 pop {r7} + 80018d2: 4770 bx lr + 80018d4: 20000008 .word 0x20000008 + 80018d8: 200002a4 .word 0x200002a4 -080018a4 : +080018dc : * @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) { - 80018a4: b480 push {r7} - 80018a6: af00 add r7, sp, #0 + 80018dc: b480 push {r7} + 80018de: af00 add r7, sp, #0 return uwTick; - 80018a8: 4b02 ldr r3, [pc, #8] ; (80018b4 ) - 80018aa: 681b ldr r3, [r3, #0] + 80018e0: 4b02 ldr r3, [pc, #8] ; (80018ec ) + 80018e2: 681b ldr r3, [r3, #0] } - 80018ac: 4618 mov r0, r3 - 80018ae: 46bd mov sp, r7 - 80018b0: bc80 pop {r7} - 80018b2: 4770 bx lr - 80018b4: 200002a4 .word 0x200002a4 + 80018e4: 4618 mov r0, r3 + 80018e6: 46bd mov sp, r7 + 80018e8: bc80 pop {r7} + 80018ea: 4770 bx lr + 80018ec: 200002a4 .word 0x200002a4 -080018b8 : +080018f0 : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 80018b8: b580 push {r7, lr} - 80018ba: b084 sub sp, #16 - 80018bc: af00 add r7, sp, #0 - 80018be: 6078 str r0, [r7, #4] + 80018f0: b580 push {r7, lr} + 80018f2: b084 sub sp, #16 + 80018f4: af00 add r7, sp, #0 + 80018f6: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 80018c0: f7ff fff0 bl 80018a4 - 80018c4: 60b8 str r0, [r7, #8] + 80018f8: f7ff fff0 bl 80018dc + 80018fc: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 80018c6: 687b ldr r3, [r7, #4] - 80018c8: 60fb str r3, [r7, #12] + 80018fe: 687b ldr r3, [r7, #4] + 8001900: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 80018ca: 68fb ldr r3, [r7, #12] - 80018cc: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 80018d0: d005 beq.n 80018de + 8001902: 68fb ldr r3, [r7, #12] + 8001904: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8001908: d005 beq.n 8001916 { wait += (uint32_t)(uwTickFreq); - 80018d2: 4b0a ldr r3, [pc, #40] ; (80018fc ) - 80018d4: 781b ldrb r3, [r3, #0] - 80018d6: 461a mov r2, r3 - 80018d8: 68fb ldr r3, [r7, #12] - 80018da: 4413 add r3, r2 - 80018dc: 60fb str r3, [r7, #12] + 800190a: 4b0a ldr r3, [pc, #40] ; (8001934 ) + 800190c: 781b ldrb r3, [r3, #0] + 800190e: 461a mov r2, r3 + 8001910: 68fb ldr r3, [r7, #12] + 8001912: 4413 add r3, r2 + 8001914: 60fb str r3, [r7, #12] } while ((HAL_GetTick() - tickstart) < wait) - 80018de: bf00 nop - 80018e0: f7ff ffe0 bl 80018a4 - 80018e4: 4602 mov r2, r0 - 80018e6: 68bb ldr r3, [r7, #8] - 80018e8: 1ad3 subs r3, r2, r3 - 80018ea: 68fa ldr r2, [r7, #12] - 80018ec: 429a cmp r2, r3 - 80018ee: d8f7 bhi.n 80018e0 + 8001916: bf00 nop + 8001918: f7ff ffe0 bl 80018dc + 800191c: 4602 mov r2, r0 + 800191e: 68bb ldr r3, [r7, #8] + 8001920: 1ad3 subs r3, r2, r3 + 8001922: 68fa ldr r2, [r7, #12] + 8001924: 429a cmp r2, r3 + 8001926: d8f7 bhi.n 8001918 { } } - 80018f0: bf00 nop - 80018f2: bf00 nop - 80018f4: 3710 adds r7, #16 - 80018f6: 46bd mov sp, r7 - 80018f8: bd80 pop {r7, pc} - 80018fa: bf00 nop - 80018fc: 20000008 .word 0x20000008 + 8001928: bf00 nop + 800192a: bf00 nop + 800192c: 3710 adds r7, #16 + 800192e: 46bd mov sp, r7 + 8001930: bd80 pop {r7, pc} + 8001932: bf00 nop + 8001934: 20000008 .word 0x20000008 -08001900 <__NVIC_SetPriorityGrouping>: +08001938 <__NVIC_SetPriorityGrouping>: In case of a conflict between priority grouping and available priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. \param [in] PriorityGroup Priority grouping field. */ __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8001900: b480 push {r7} - 8001902: b085 sub sp, #20 - 8001904: af00 add r7, sp, #0 - 8001906: 6078 str r0, [r7, #4] + 8001938: b480 push {r7} + 800193a: b085 sub sp, #20 + 800193c: af00 add r7, sp, #0 + 800193e: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001908: 687b ldr r3, [r7, #4] - 800190a: f003 0307 and.w r3, r3, #7 - 800190e: 60fb str r3, [r7, #12] + 8001940: 687b ldr r3, [r7, #4] + 8001942: f003 0307 and.w r3, r3, #7 + 8001946: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 8001910: 4b0c ldr r3, [pc, #48] ; (8001944 <__NVIC_SetPriorityGrouping+0x44>) - 8001912: 68db ldr r3, [r3, #12] - 8001914: 60bb str r3, [r7, #8] + 8001948: 4b0c ldr r3, [pc, #48] ; (800197c <__NVIC_SetPriorityGrouping+0x44>) + 800194a: 68db ldr r3, [r3, #12] + 800194c: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001916: 68ba ldr r2, [r7, #8] - 8001918: f64f 03ff movw r3, #63743 ; 0xf8ff - 800191c: 4013 ands r3, r2 - 800191e: 60bb str r3, [r7, #8] + 800194e: 68ba ldr r2, [r7, #8] + 8001950: f64f 03ff movw r3, #63743 ; 0xf8ff + 8001954: 4013 ands r3, r2 + 8001956: 60bb str r3, [r7, #8] reg_value = (reg_value | ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ - 8001920: 68fb ldr r3, [r7, #12] - 8001922: 021a lsls r2, r3, #8 + 8001958: 68fb ldr r3, [r7, #12] + 800195a: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001924: 68bb ldr r3, [r7, #8] - 8001926: 4313 orrs r3, r2 + 800195c: 68bb ldr r3, [r7, #8] + 800195e: 4313 orrs r3, r2 reg_value = (reg_value | - 8001928: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 - 800192c: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8001930: 60bb str r3, [r7, #8] + 8001960: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 + 8001964: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8001968: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 8001932: 4a04 ldr r2, [pc, #16] ; (8001944 <__NVIC_SetPriorityGrouping+0x44>) - 8001934: 68bb ldr r3, [r7, #8] - 8001936: 60d3 str r3, [r2, #12] + 800196a: 4a04 ldr r2, [pc, #16] ; (800197c <__NVIC_SetPriorityGrouping+0x44>) + 800196c: 68bb ldr r3, [r7, #8] + 800196e: 60d3 str r3, [r2, #12] } - 8001938: bf00 nop - 800193a: 3714 adds r7, #20 - 800193c: 46bd mov sp, r7 - 800193e: bc80 pop {r7} - 8001940: 4770 bx lr - 8001942: bf00 nop - 8001944: e000ed00 .word 0xe000ed00 + 8001970: bf00 nop + 8001972: 3714 adds r7, #20 + 8001974: 46bd mov sp, r7 + 8001976: bc80 pop {r7} + 8001978: 4770 bx lr + 800197a: bf00 nop + 800197c: e000ed00 .word 0xe000ed00 -08001948 <__NVIC_GetPriorityGrouping>: +08001980 <__NVIC_GetPriorityGrouping>: \brief Get Priority Grouping \details Reads the priority grouping field from the NVIC Interrupt Controller. \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). */ __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void) { - 8001948: b480 push {r7} - 800194a: af00 add r7, sp, #0 + 8001980: b480 push {r7} + 8001982: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 800194c: 4b04 ldr r3, [pc, #16] ; (8001960 <__NVIC_GetPriorityGrouping+0x18>) - 800194e: 68db ldr r3, [r3, #12] - 8001950: 0a1b lsrs r3, r3, #8 - 8001952: f003 0307 and.w r3, r3, #7 + 8001984: 4b04 ldr r3, [pc, #16] ; (8001998 <__NVIC_GetPriorityGrouping+0x18>) + 8001986: 68db ldr r3, [r3, #12] + 8001988: 0a1b lsrs r3, r3, #8 + 800198a: f003 0307 and.w r3, r3, #7 } - 8001956: 4618 mov r0, r3 - 8001958: 46bd mov sp, r7 - 800195a: bc80 pop {r7} - 800195c: 4770 bx lr - 800195e: bf00 nop - 8001960: e000ed00 .word 0xe000ed00 + 800198e: 4618 mov r0, r3 + 8001990: 46bd mov sp, r7 + 8001992: bc80 pop {r7} + 8001994: 4770 bx lr + 8001996: bf00 nop + 8001998: e000ed00 .word 0xe000ed00 -08001964 <__NVIC_SetPriority>: +0800199c <__NVIC_SetPriority>: \param [in] IRQn Interrupt number. \param [in] priority Priority to set. \note The priority cannot be set for every processor exception. */ __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) { - 8001964: b480 push {r7} - 8001966: b083 sub sp, #12 - 8001968: af00 add r7, sp, #0 - 800196a: 4603 mov r3, r0 - 800196c: 6039 str r1, [r7, #0] - 800196e: 71fb strb r3, [r7, #7] + 800199c: b480 push {r7} + 800199e: b083 sub sp, #12 + 80019a0: af00 add r7, sp, #0 + 80019a2: 4603 mov r3, r0 + 80019a4: 6039 str r1, [r7, #0] + 80019a6: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001970: f997 3007 ldrsb.w r3, [r7, #7] - 8001974: 2b00 cmp r3, #0 - 8001976: db0a blt.n 800198e <__NVIC_SetPriority+0x2a> + 80019a8: f997 3007 ldrsb.w r3, [r7, #7] + 80019ac: 2b00 cmp r3, #0 + 80019ae: db0a blt.n 80019c6 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001978: 683b ldr r3, [r7, #0] - 800197a: b2da uxtb r2, r3 - 800197c: 490c ldr r1, [pc, #48] ; (80019b0 <__NVIC_SetPriority+0x4c>) - 800197e: f997 3007 ldrsb.w r3, [r7, #7] - 8001982: 0112 lsls r2, r2, #4 - 8001984: b2d2 uxtb r2, r2 - 8001986: 440b add r3, r1 - 8001988: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 80019b0: 683b ldr r3, [r7, #0] + 80019b2: b2da uxtb r2, r3 + 80019b4: 490c ldr r1, [pc, #48] ; (80019e8 <__NVIC_SetPriority+0x4c>) + 80019b6: f997 3007 ldrsb.w r3, [r7, #7] + 80019ba: 0112 lsls r2, r2, #4 + 80019bc: b2d2 uxtb r2, r2 + 80019be: 440b add r3, r1 + 80019c0: f883 2300 strb.w r2, [r3, #768] ; 0x300 } else { SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); } } - 800198c: e00a b.n 80019a4 <__NVIC_SetPriority+0x40> + 80019c4: e00a b.n 80019dc <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 800198e: 683b ldr r3, [r7, #0] - 8001990: b2da uxtb r2, r3 - 8001992: 4908 ldr r1, [pc, #32] ; (80019b4 <__NVIC_SetPriority+0x50>) - 8001994: 79fb ldrb r3, [r7, #7] - 8001996: f003 030f and.w r3, r3, #15 - 800199a: 3b04 subs r3, #4 - 800199c: 0112 lsls r2, r2, #4 - 800199e: b2d2 uxtb r2, r2 - 80019a0: 440b add r3, r1 - 80019a2: 761a strb r2, [r3, #24] + 80019c6: 683b ldr r3, [r7, #0] + 80019c8: b2da uxtb r2, r3 + 80019ca: 4908 ldr r1, [pc, #32] ; (80019ec <__NVIC_SetPriority+0x50>) + 80019cc: 79fb ldrb r3, [r7, #7] + 80019ce: f003 030f and.w r3, r3, #15 + 80019d2: 3b04 subs r3, #4 + 80019d4: 0112 lsls r2, r2, #4 + 80019d6: b2d2 uxtb r2, r2 + 80019d8: 440b add r3, r1 + 80019da: 761a strb r2, [r3, #24] } - 80019a4: bf00 nop - 80019a6: 370c adds r7, #12 - 80019a8: 46bd mov sp, r7 - 80019aa: bc80 pop {r7} - 80019ac: 4770 bx lr - 80019ae: bf00 nop - 80019b0: e000e100 .word 0xe000e100 - 80019b4: e000ed00 .word 0xe000ed00 + 80019dc: bf00 nop + 80019de: 370c adds r7, #12 + 80019e0: 46bd mov sp, r7 + 80019e2: bc80 pop {r7} + 80019e4: 4770 bx lr + 80019e6: bf00 nop + 80019e8: e000e100 .word 0xe000e100 + 80019ec: e000ed00 .word 0xe000ed00 -080019b8 : +080019f0 : \param [in] PreemptPriority Preemptive priority value (starting from 0). \param [in] SubPriority Subpriority value (starting from 0). \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). */ __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) { - 80019b8: b480 push {r7} - 80019ba: b089 sub sp, #36 ; 0x24 - 80019bc: af00 add r7, sp, #0 - 80019be: 60f8 str r0, [r7, #12] - 80019c0: 60b9 str r1, [r7, #8] - 80019c2: 607a str r2, [r7, #4] + 80019f0: b480 push {r7} + 80019f2: b089 sub sp, #36 ; 0x24 + 80019f4: af00 add r7, sp, #0 + 80019f6: 60f8 str r0, [r7, #12] + 80019f8: 60b9 str r1, [r7, #8] + 80019fa: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 80019c4: 68fb ldr r3, [r7, #12] - 80019c6: f003 0307 and.w r3, r3, #7 - 80019ca: 61fb str r3, [r7, #28] + 80019fc: 68fb ldr r3, [r7, #12] + 80019fe: f003 0307 and.w r3, r3, #7 + 8001a02: 61fb str r3, [r7, #28] uint32_t PreemptPriorityBits; uint32_t SubPriorityBits; PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 80019cc: 69fb ldr r3, [r7, #28] - 80019ce: f1c3 0307 rsb r3, r3, #7 - 80019d2: 2b04 cmp r3, #4 - 80019d4: bf28 it cs - 80019d6: 2304 movcs r3, #4 - 80019d8: 61bb str r3, [r7, #24] + 8001a04: 69fb ldr r3, [r7, #28] + 8001a06: f1c3 0307 rsb r3, r3, #7 + 8001a0a: 2b04 cmp r3, #4 + 8001a0c: bf28 it cs + 8001a0e: 2304 movcs r3, #4 + 8001a10: 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)); - 80019da: 69fb ldr r3, [r7, #28] - 80019dc: 3304 adds r3, #4 - 80019de: 2b06 cmp r3, #6 - 80019e0: d902 bls.n 80019e8 - 80019e2: 69fb ldr r3, [r7, #28] - 80019e4: 3b03 subs r3, #3 - 80019e6: e000 b.n 80019ea - 80019e8: 2300 movs r3, #0 - 80019ea: 617b str r3, [r7, #20] + 8001a12: 69fb ldr r3, [r7, #28] + 8001a14: 3304 adds r3, #4 + 8001a16: 2b06 cmp r3, #6 + 8001a18: d902 bls.n 8001a20 + 8001a1a: 69fb ldr r3, [r7, #28] + 8001a1c: 3b03 subs r3, #3 + 8001a1e: e000 b.n 8001a22 + 8001a20: 2300 movs r3, #0 + 8001a22: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 80019ec: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 80019f0: 69bb ldr r3, [r7, #24] - 80019f2: fa02 f303 lsl.w r3, r2, r3 - 80019f6: 43da mvns r2, r3 - 80019f8: 68bb ldr r3, [r7, #8] - 80019fa: 401a ands r2, r3 - 80019fc: 697b ldr r3, [r7, #20] - 80019fe: 409a lsls r2, r3 + 8001a24: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8001a28: 69bb ldr r3, [r7, #24] + 8001a2a: fa02 f303 lsl.w r3, r2, r3 + 8001a2e: 43da mvns r2, r3 + 8001a30: 68bb ldr r3, [r7, #8] + 8001a32: 401a ands r2, r3 + 8001a34: 697b ldr r3, [r7, #20] + 8001a36: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001a00: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff - 8001a04: 697b ldr r3, [r7, #20] - 8001a06: fa01 f303 lsl.w r3, r1, r3 - 8001a0a: 43d9 mvns r1, r3 - 8001a0c: 687b ldr r3, [r7, #4] - 8001a0e: 400b ands r3, r1 + 8001a38: f04f 31ff mov.w r1, #4294967295 ; 0xffffffff + 8001a3c: 697b ldr r3, [r7, #20] + 8001a3e: fa01 f303 lsl.w r3, r1, r3 + 8001a42: 43d9 mvns r1, r3 + 8001a44: 687b ldr r3, [r7, #4] + 8001a46: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001a10: 4313 orrs r3, r2 + 8001a48: 4313 orrs r3, r2 ); } - 8001a12: 4618 mov r0, r3 - 8001a14: 3724 adds r7, #36 ; 0x24 - 8001a16: 46bd mov sp, r7 - 8001a18: bc80 pop {r7} - 8001a1a: 4770 bx lr + 8001a4a: 4618 mov r0, r3 + 8001a4c: 3724 adds r7, #36 ; 0x24 + 8001a4e: 46bd mov sp, r7 + 8001a50: bc80 pop {r7} + 8001a52: 4770 bx lr -08001a1c : +08001a54 : \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) { - 8001a1c: b580 push {r7, lr} - 8001a1e: b082 sub sp, #8 - 8001a20: af00 add r7, sp, #0 - 8001a22: 6078 str r0, [r7, #4] + 8001a54: b580 push {r7, lr} + 8001a56: b082 sub sp, #8 + 8001a58: af00 add r7, sp, #0 + 8001a5a: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8001a24: 687b ldr r3, [r7, #4] - 8001a26: 3b01 subs r3, #1 - 8001a28: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 - 8001a2c: d301 bcc.n 8001a32 + 8001a5c: 687b ldr r3, [r7, #4] + 8001a5e: 3b01 subs r3, #1 + 8001a60: f1b3 7f80 cmp.w r3, #16777216 ; 0x1000000 + 8001a64: d301 bcc.n 8001a6a { return (1UL); /* Reload value impossible */ - 8001a2e: 2301 movs r3, #1 - 8001a30: e00f b.n 8001a52 + 8001a66: 2301 movs r3, #1 + 8001a68: e00f b.n 8001a8a } SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8001a32: 4a0a ldr r2, [pc, #40] ; (8001a5c ) - 8001a34: 687b ldr r3, [r7, #4] - 8001a36: 3b01 subs r3, #1 - 8001a38: 6053 str r3, [r2, #4] + 8001a6a: 4a0a ldr r2, [pc, #40] ; (8001a94 ) + 8001a6c: 687b ldr r3, [r7, #4] + 8001a6e: 3b01 subs r3, #1 + 8001a70: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 8001a3a: 210f movs r1, #15 - 8001a3c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8001a40: f7ff ff90 bl 8001964 <__NVIC_SetPriority> + 8001a72: 210f movs r1, #15 + 8001a74: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8001a78: f7ff ff90 bl 800199c <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8001a44: 4b05 ldr r3, [pc, #20] ; (8001a5c ) - 8001a46: 2200 movs r2, #0 - 8001a48: 609a str r2, [r3, #8] + 8001a7c: 4b05 ldr r3, [pc, #20] ; (8001a94 ) + 8001a7e: 2200 movs r2, #0 + 8001a80: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8001a4a: 4b04 ldr r3, [pc, #16] ; (8001a5c ) - 8001a4c: 2207 movs r2, #7 - 8001a4e: 601a str r2, [r3, #0] + 8001a82: 4b04 ldr r3, [pc, #16] ; (8001a94 ) + 8001a84: 2207 movs r2, #7 + 8001a86: 601a str r2, [r3, #0] SysTick_CTRL_TICKINT_Msk | SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ return (0UL); /* Function successful */ - 8001a50: 2300 movs r3, #0 + 8001a88: 2300 movs r3, #0 } - 8001a52: 4618 mov r0, r3 - 8001a54: 3708 adds r7, #8 - 8001a56: 46bd mov sp, r7 - 8001a58: bd80 pop {r7, pc} - 8001a5a: bf00 nop - 8001a5c: e000e010 .word 0xe000e010 + 8001a8a: 4618 mov r0, r3 + 8001a8c: 3708 adds r7, #8 + 8001a8e: 46bd mov sp, r7 + 8001a90: bd80 pop {r7, pc} + 8001a92: bf00 nop + 8001a94: e000e010 .word 0xe000e010 -08001a60 : +08001a98 : * @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) { - 8001a60: b580 push {r7, lr} - 8001a62: b082 sub sp, #8 - 8001a64: af00 add r7, sp, #0 - 8001a66: 6078 str r0, [r7, #4] + 8001a98: b580 push {r7, lr} + 8001a9a: b082 sub sp, #8 + 8001a9c: af00 add r7, sp, #0 + 8001a9e: 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); - 8001a68: 6878 ldr r0, [r7, #4] - 8001a6a: f7ff ff49 bl 8001900 <__NVIC_SetPriorityGrouping> + 8001aa0: 6878 ldr r0, [r7, #4] + 8001aa2: f7ff ff49 bl 8001938 <__NVIC_SetPriorityGrouping> } - 8001a6e: bf00 nop - 8001a70: 3708 adds r7, #8 - 8001a72: 46bd mov sp, r7 - 8001a74: bd80 pop {r7, pc} + 8001aa6: bf00 nop + 8001aa8: 3708 adds r7, #8 + 8001aaa: 46bd mov sp, r7 + 8001aac: bd80 pop {r7, pc} -08001a76 : +08001aae : * 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) { - 8001a76: b580 push {r7, lr} - 8001a78: b086 sub sp, #24 - 8001a7a: af00 add r7, sp, #0 - 8001a7c: 4603 mov r3, r0 - 8001a7e: 60b9 str r1, [r7, #8] - 8001a80: 607a str r2, [r7, #4] - 8001a82: 73fb strb r3, [r7, #15] + 8001aae: b580 push {r7, lr} + 8001ab0: b086 sub sp, #24 + 8001ab2: af00 add r7, sp, #0 + 8001ab4: 4603 mov r3, r0 + 8001ab6: 60b9 str r1, [r7, #8] + 8001ab8: 607a str r2, [r7, #4] + 8001aba: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8001a84: 2300 movs r3, #0 - 8001a86: 617b str r3, [r7, #20] + 8001abc: 2300 movs r3, #0 + 8001abe: 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(); - 8001a88: f7ff ff5e bl 8001948 <__NVIC_GetPriorityGrouping> - 8001a8c: 6178 str r0, [r7, #20] + 8001ac0: f7ff ff5e bl 8001980 <__NVIC_GetPriorityGrouping> + 8001ac4: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8001a8e: 687a ldr r2, [r7, #4] - 8001a90: 68b9 ldr r1, [r7, #8] - 8001a92: 6978 ldr r0, [r7, #20] - 8001a94: f7ff ff90 bl 80019b8 - 8001a98: 4602 mov r2, r0 - 8001a9a: f997 300f ldrsb.w r3, [r7, #15] - 8001a9e: 4611 mov r1, r2 - 8001aa0: 4618 mov r0, r3 - 8001aa2: f7ff ff5f bl 8001964 <__NVIC_SetPriority> + 8001ac6: 687a ldr r2, [r7, #4] + 8001ac8: 68b9 ldr r1, [r7, #8] + 8001aca: 6978 ldr r0, [r7, #20] + 8001acc: f7ff ff90 bl 80019f0 + 8001ad0: 4602 mov r2, r0 + 8001ad2: f997 300f ldrsb.w r3, [r7, #15] + 8001ad6: 4611 mov r1, r2 + 8001ad8: 4618 mov r0, r3 + 8001ada: f7ff ff5f bl 800199c <__NVIC_SetPriority> } - 8001aa6: bf00 nop - 8001aa8: 3718 adds r7, #24 - 8001aaa: 46bd mov sp, r7 - 8001aac: bd80 pop {r7, pc} + 8001ade: bf00 nop + 8001ae0: 3718 adds r7, #24 + 8001ae2: 46bd mov sp, r7 + 8001ae4: bd80 pop {r7, pc} -08001aae : +08001ae6 : * @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) { - 8001aae: b580 push {r7, lr} - 8001ab0: b082 sub sp, #8 - 8001ab2: af00 add r7, sp, #0 - 8001ab4: 6078 str r0, [r7, #4] + 8001ae6: b580 push {r7, lr} + 8001ae8: b082 sub sp, #8 + 8001aea: af00 add r7, sp, #0 + 8001aec: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 8001ab6: 6878 ldr r0, [r7, #4] - 8001ab8: f7ff ffb0 bl 8001a1c - 8001abc: 4603 mov r3, r0 + 8001aee: 6878 ldr r0, [r7, #4] + 8001af0: f7ff ffb0 bl 8001a54 + 8001af4: 4603 mov r3, r0 } - 8001abe: 4618 mov r0, r3 - 8001ac0: 3708 adds r7, #8 - 8001ac2: 46bd mov sp, r7 - 8001ac4: bd80 pop {r7, pc} + 8001af6: 4618 mov r0, r3 + 8001af8: 3708 adds r7, #8 + 8001afa: 46bd mov sp, r7 + 8001afc: bd80 pop {r7, pc} ... -08001ac8 : +08001b00 : * @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) { - 8001ac8: b480 push {r7} - 8001aca: b08b sub sp, #44 ; 0x2c - 8001acc: af00 add r7, sp, #0 - 8001ace: 6078 str r0, [r7, #4] - 8001ad0: 6039 str r1, [r7, #0] + 8001b00: b480 push {r7} + 8001b02: b08b sub sp, #44 ; 0x2c + 8001b04: af00 add r7, sp, #0 + 8001b06: 6078 str r0, [r7, #4] + 8001b08: 6039 str r1, [r7, #0] uint32_t position = 0x00u; - 8001ad2: 2300 movs r3, #0 - 8001ad4: 627b str r3, [r7, #36] ; 0x24 + 8001b0a: 2300 movs r3, #0 + 8001b0c: 627b str r3, [r7, #36] ; 0x24 uint32_t ioposition; uint32_t iocurrent; uint32_t temp; uint32_t config = 0x00u; - 8001ad6: 2300 movs r3, #0 - 8001ad8: 623b str r3, [r7, #32] + 8001b0e: 2300 movs r3, #0 + 8001b10: 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) - 8001ada: e179 b.n 8001dd0 + 8001b12: e179 b.n 8001e08 { /* Get the IO position */ ioposition = (0x01uL << position); - 8001adc: 2201 movs r2, #1 - 8001ade: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001ae0: fa02 f303 lsl.w r3, r2, r3 - 8001ae4: 61fb str r3, [r7, #28] + 8001b14: 2201 movs r2, #1 + 8001b16: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001b18: fa02 f303 lsl.w r3, r2, r3 + 8001b1c: 61fb str r3, [r7, #28] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8001ae6: 683b ldr r3, [r7, #0] - 8001ae8: 681b ldr r3, [r3, #0] - 8001aea: 69fa ldr r2, [r7, #28] - 8001aec: 4013 ands r3, r2 - 8001aee: 61bb str r3, [r7, #24] + 8001b1e: 683b ldr r3, [r7, #0] + 8001b20: 681b ldr r3, [r3, #0] + 8001b22: 69fa ldr r2, [r7, #28] + 8001b24: 4013 ands r3, r2 + 8001b26: 61bb str r3, [r7, #24] if (iocurrent == ioposition) - 8001af0: 69ba ldr r2, [r7, #24] - 8001af2: 69fb ldr r3, [r7, #28] - 8001af4: 429a cmp r2, r3 - 8001af6: f040 8168 bne.w 8001dca + 8001b28: 69ba ldr r2, [r7, #24] + 8001b2a: 69fb ldr r3, [r7, #28] + 8001b2c: 429a cmp r2, r3 + 8001b2e: f040 8168 bne.w 8001e02 { /* 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) - 8001afa: 683b ldr r3, [r7, #0] - 8001afc: 685b ldr r3, [r3, #4] - 8001afe: 4aa0 ldr r2, [pc, #640] ; (8001d80 ) - 8001b00: 4293 cmp r3, r2 - 8001b02: d05e beq.n 8001bc2 - 8001b04: 4a9e ldr r2, [pc, #632] ; (8001d80 ) - 8001b06: 4293 cmp r3, r2 - 8001b08: d875 bhi.n 8001bf6 - 8001b0a: 4a9e ldr r2, [pc, #632] ; (8001d84 ) - 8001b0c: 4293 cmp r3, r2 - 8001b0e: d058 beq.n 8001bc2 - 8001b10: 4a9c ldr r2, [pc, #624] ; (8001d84 ) - 8001b12: 4293 cmp r3, r2 - 8001b14: d86f bhi.n 8001bf6 - 8001b16: 4a9c ldr r2, [pc, #624] ; (8001d88 ) - 8001b18: 4293 cmp r3, r2 - 8001b1a: d052 beq.n 8001bc2 - 8001b1c: 4a9a ldr r2, [pc, #616] ; (8001d88 ) - 8001b1e: 4293 cmp r3, r2 - 8001b20: d869 bhi.n 8001bf6 - 8001b22: 4a9a ldr r2, [pc, #616] ; (8001d8c ) - 8001b24: 4293 cmp r3, r2 - 8001b26: d04c beq.n 8001bc2 - 8001b28: 4a98 ldr r2, [pc, #608] ; (8001d8c ) - 8001b2a: 4293 cmp r3, r2 - 8001b2c: d863 bhi.n 8001bf6 - 8001b2e: 4a98 ldr r2, [pc, #608] ; (8001d90 ) - 8001b30: 4293 cmp r3, r2 - 8001b32: d046 beq.n 8001bc2 - 8001b34: 4a96 ldr r2, [pc, #600] ; (8001d90 ) - 8001b36: 4293 cmp r3, r2 - 8001b38: d85d bhi.n 8001bf6 - 8001b3a: 2b12 cmp r3, #18 - 8001b3c: d82a bhi.n 8001b94 - 8001b3e: 2b12 cmp r3, #18 - 8001b40: d859 bhi.n 8001bf6 - 8001b42: a201 add r2, pc, #4 ; (adr r2, 8001b48 ) - 8001b44: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8001b48: 08001bc3 .word 0x08001bc3 - 8001b4c: 08001b9d .word 0x08001b9d - 8001b50: 08001baf .word 0x08001baf - 8001b54: 08001bf1 .word 0x08001bf1 - 8001b58: 08001bf7 .word 0x08001bf7 - 8001b5c: 08001bf7 .word 0x08001bf7 - 8001b60: 08001bf7 .word 0x08001bf7 - 8001b64: 08001bf7 .word 0x08001bf7 - 8001b68: 08001bf7 .word 0x08001bf7 - 8001b6c: 08001bf7 .word 0x08001bf7 - 8001b70: 08001bf7 .word 0x08001bf7 - 8001b74: 08001bf7 .word 0x08001bf7 - 8001b78: 08001bf7 .word 0x08001bf7 - 8001b7c: 08001bf7 .word 0x08001bf7 - 8001b80: 08001bf7 .word 0x08001bf7 - 8001b84: 08001bf7 .word 0x08001bf7 - 8001b88: 08001bf7 .word 0x08001bf7 - 8001b8c: 08001ba5 .word 0x08001ba5 - 8001b90: 08001bb9 .word 0x08001bb9 - 8001b94: 4a7f ldr r2, [pc, #508] ; (8001d94 ) - 8001b96: 4293 cmp r3, r2 - 8001b98: d013 beq.n 8001bc2 + 8001b32: 683b ldr r3, [r7, #0] + 8001b34: 685b ldr r3, [r3, #4] + 8001b36: 4aa0 ldr r2, [pc, #640] ; (8001db8 ) + 8001b38: 4293 cmp r3, r2 + 8001b3a: d05e beq.n 8001bfa + 8001b3c: 4a9e ldr r2, [pc, #632] ; (8001db8 ) + 8001b3e: 4293 cmp r3, r2 + 8001b40: d875 bhi.n 8001c2e + 8001b42: 4a9e ldr r2, [pc, #632] ; (8001dbc ) + 8001b44: 4293 cmp r3, r2 + 8001b46: d058 beq.n 8001bfa + 8001b48: 4a9c ldr r2, [pc, #624] ; (8001dbc ) + 8001b4a: 4293 cmp r3, r2 + 8001b4c: d86f bhi.n 8001c2e + 8001b4e: 4a9c ldr r2, [pc, #624] ; (8001dc0 ) + 8001b50: 4293 cmp r3, r2 + 8001b52: d052 beq.n 8001bfa + 8001b54: 4a9a ldr r2, [pc, #616] ; (8001dc0 ) + 8001b56: 4293 cmp r3, r2 + 8001b58: d869 bhi.n 8001c2e + 8001b5a: 4a9a ldr r2, [pc, #616] ; (8001dc4 ) + 8001b5c: 4293 cmp r3, r2 + 8001b5e: d04c beq.n 8001bfa + 8001b60: 4a98 ldr r2, [pc, #608] ; (8001dc4 ) + 8001b62: 4293 cmp r3, r2 + 8001b64: d863 bhi.n 8001c2e + 8001b66: 4a98 ldr r2, [pc, #608] ; (8001dc8 ) + 8001b68: 4293 cmp r3, r2 + 8001b6a: d046 beq.n 8001bfa + 8001b6c: 4a96 ldr r2, [pc, #600] ; (8001dc8 ) + 8001b6e: 4293 cmp r3, r2 + 8001b70: d85d bhi.n 8001c2e + 8001b72: 2b12 cmp r3, #18 + 8001b74: d82a bhi.n 8001bcc + 8001b76: 2b12 cmp r3, #18 + 8001b78: d859 bhi.n 8001c2e + 8001b7a: a201 add r2, pc, #4 ; (adr r2, 8001b80 ) + 8001b7c: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8001b80: 08001bfb .word 0x08001bfb + 8001b84: 08001bd5 .word 0x08001bd5 + 8001b88: 08001be7 .word 0x08001be7 + 8001b8c: 08001c29 .word 0x08001c29 + 8001b90: 08001c2f .word 0x08001c2f + 8001b94: 08001c2f .word 0x08001c2f + 8001b98: 08001c2f .word 0x08001c2f + 8001b9c: 08001c2f .word 0x08001c2f + 8001ba0: 08001c2f .word 0x08001c2f + 8001ba4: 08001c2f .word 0x08001c2f + 8001ba8: 08001c2f .word 0x08001c2f + 8001bac: 08001c2f .word 0x08001c2f + 8001bb0: 08001c2f .word 0x08001c2f + 8001bb4: 08001c2f .word 0x08001c2f + 8001bb8: 08001c2f .word 0x08001c2f + 8001bbc: 08001c2f .word 0x08001c2f + 8001bc0: 08001c2f .word 0x08001c2f + 8001bc4: 08001bdd .word 0x08001bdd + 8001bc8: 08001bf1 .word 0x08001bf1 + 8001bcc: 4a7f ldr r2, [pc, #508] ; (8001dcc ) + 8001bce: 4293 cmp r3, r2 + 8001bd0: d013 beq.n 8001bfa config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; break; /* Parameters are checked with assert_param */ default: break; - 8001b9a: e02c b.n 8001bf6 + 8001bd2: e02c b.n 8001c2e config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_PP; - 8001b9c: 683b ldr r3, [r7, #0] - 8001b9e: 68db ldr r3, [r3, #12] - 8001ba0: 623b str r3, [r7, #32] + 8001bd4: 683b ldr r3, [r7, #0] + 8001bd6: 68db ldr r3, [r3, #12] + 8001bd8: 623b str r3, [r7, #32] break; - 8001ba2: e029 b.n 8001bf8 + 8001bda: e029 b.n 8001c30 config = GPIO_Init->Speed + GPIO_CR_CNF_GP_OUTPUT_OD; - 8001ba4: 683b ldr r3, [r7, #0] - 8001ba6: 68db ldr r3, [r3, #12] - 8001ba8: 3304 adds r3, #4 - 8001baa: 623b str r3, [r7, #32] + 8001bdc: 683b ldr r3, [r7, #0] + 8001bde: 68db ldr r3, [r3, #12] + 8001be0: 3304 adds r3, #4 + 8001be2: 623b str r3, [r7, #32] break; - 8001bac: e024 b.n 8001bf8 + 8001be4: e024 b.n 8001c30 config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_PP; - 8001bae: 683b ldr r3, [r7, #0] - 8001bb0: 68db ldr r3, [r3, #12] - 8001bb2: 3308 adds r3, #8 - 8001bb4: 623b str r3, [r7, #32] + 8001be6: 683b ldr r3, [r7, #0] + 8001be8: 68db ldr r3, [r3, #12] + 8001bea: 3308 adds r3, #8 + 8001bec: 623b str r3, [r7, #32] break; - 8001bb6: e01f b.n 8001bf8 + 8001bee: e01f b.n 8001c30 config = GPIO_Init->Speed + GPIO_CR_CNF_AF_OUTPUT_OD; - 8001bb8: 683b ldr r3, [r7, #0] - 8001bba: 68db ldr r3, [r3, #12] - 8001bbc: 330c adds r3, #12 - 8001bbe: 623b str r3, [r7, #32] + 8001bf0: 683b ldr r3, [r7, #0] + 8001bf2: 68db ldr r3, [r3, #12] + 8001bf4: 330c adds r3, #12 + 8001bf6: 623b str r3, [r7, #32] break; - 8001bc0: e01a b.n 8001bf8 + 8001bf8: e01a b.n 8001c30 if (GPIO_Init->Pull == GPIO_NOPULL) - 8001bc2: 683b ldr r3, [r7, #0] - 8001bc4: 689b ldr r3, [r3, #8] - 8001bc6: 2b00 cmp r3, #0 - 8001bc8: d102 bne.n 8001bd0 + 8001bfa: 683b ldr r3, [r7, #0] + 8001bfc: 689b ldr r3, [r3, #8] + 8001bfe: 2b00 cmp r3, #0 + 8001c00: d102 bne.n 8001c08 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_FLOATING; - 8001bca: 2304 movs r3, #4 - 8001bcc: 623b str r3, [r7, #32] + 8001c02: 2304 movs r3, #4 + 8001c04: 623b str r3, [r7, #32] break; - 8001bce: e013 b.n 8001bf8 + 8001c06: e013 b.n 8001c30 else if (GPIO_Init->Pull == GPIO_PULLUP) - 8001bd0: 683b ldr r3, [r7, #0] - 8001bd2: 689b ldr r3, [r3, #8] - 8001bd4: 2b01 cmp r3, #1 - 8001bd6: d105 bne.n 8001be4 + 8001c08: 683b ldr r3, [r7, #0] + 8001c0a: 689b ldr r3, [r3, #8] + 8001c0c: 2b01 cmp r3, #1 + 8001c0e: d105 bne.n 8001c1c config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001bd8: 2308 movs r3, #8 - 8001bda: 623b str r3, [r7, #32] + 8001c10: 2308 movs r3, #8 + 8001c12: 623b str r3, [r7, #32] GPIOx->BSRR = ioposition; - 8001bdc: 687b ldr r3, [r7, #4] - 8001bde: 69fa ldr r2, [r7, #28] - 8001be0: 611a str r2, [r3, #16] + 8001c14: 687b ldr r3, [r7, #4] + 8001c16: 69fa ldr r2, [r7, #28] + 8001c18: 611a str r2, [r3, #16] break; - 8001be2: e009 b.n 8001bf8 + 8001c1a: e009 b.n 8001c30 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_INPUT_PU_PD; - 8001be4: 2308 movs r3, #8 - 8001be6: 623b str r3, [r7, #32] + 8001c1c: 2308 movs r3, #8 + 8001c1e: 623b str r3, [r7, #32] GPIOx->BRR = ioposition; - 8001be8: 687b ldr r3, [r7, #4] - 8001bea: 69fa ldr r2, [r7, #28] - 8001bec: 615a str r2, [r3, #20] + 8001c20: 687b ldr r3, [r7, #4] + 8001c22: 69fa ldr r2, [r7, #28] + 8001c24: 615a str r2, [r3, #20] break; - 8001bee: e003 b.n 8001bf8 + 8001c26: e003 b.n 8001c30 config = GPIO_CR_MODE_INPUT + GPIO_CR_CNF_ANALOG; - 8001bf0: 2300 movs r3, #0 - 8001bf2: 623b str r3, [r7, #32] + 8001c28: 2300 movs r3, #0 + 8001c2a: 623b str r3, [r7, #32] break; - 8001bf4: e000 b.n 8001bf8 + 8001c2c: e000 b.n 8001c30 break; - 8001bf6: bf00 nop + 8001c2e: 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; - 8001bf8: 69bb ldr r3, [r7, #24] - 8001bfa: 2bff cmp r3, #255 ; 0xff - 8001bfc: d801 bhi.n 8001c02 - 8001bfe: 687b ldr r3, [r7, #4] - 8001c00: e001 b.n 8001c06 - 8001c02: 687b ldr r3, [r7, #4] - 8001c04: 3304 adds r3, #4 - 8001c06: 617b str r3, [r7, #20] + 8001c30: 69bb ldr r3, [r7, #24] + 8001c32: 2bff cmp r3, #255 ; 0xff + 8001c34: d801 bhi.n 8001c3a + 8001c36: 687b ldr r3, [r7, #4] + 8001c38: e001 b.n 8001c3e + 8001c3a: 687b ldr r3, [r7, #4] + 8001c3c: 3304 adds r3, #4 + 8001c3e: 617b str r3, [r7, #20] registeroffset = (iocurrent < GPIO_PIN_8) ? (position << 2u) : ((position - 8u) << 2u); - 8001c08: 69bb ldr r3, [r7, #24] - 8001c0a: 2bff cmp r3, #255 ; 0xff - 8001c0c: d802 bhi.n 8001c14 - 8001c0e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001c10: 009b lsls r3, r3, #2 - 8001c12: e002 b.n 8001c1a - 8001c14: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001c16: 3b08 subs r3, #8 - 8001c18: 009b lsls r3, r3, #2 - 8001c1a: 613b str r3, [r7, #16] + 8001c40: 69bb ldr r3, [r7, #24] + 8001c42: 2bff cmp r3, #255 ; 0xff + 8001c44: d802 bhi.n 8001c4c + 8001c46: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001c48: 009b lsls r3, r3, #2 + 8001c4a: e002 b.n 8001c52 + 8001c4c: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001c4e: 3b08 subs r3, #8 + 8001c50: 009b lsls r3, r3, #2 + 8001c52: 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)); - 8001c1c: 697b ldr r3, [r7, #20] - 8001c1e: 681a ldr r2, [r3, #0] - 8001c20: 210f movs r1, #15 - 8001c22: 693b ldr r3, [r7, #16] - 8001c24: fa01 f303 lsl.w r3, r1, r3 - 8001c28: 43db mvns r3, r3 - 8001c2a: 401a ands r2, r3 - 8001c2c: 6a39 ldr r1, [r7, #32] - 8001c2e: 693b ldr r3, [r7, #16] - 8001c30: fa01 f303 lsl.w r3, r1, r3 - 8001c34: 431a orrs r2, r3 - 8001c36: 697b ldr r3, [r7, #20] - 8001c38: 601a str r2, [r3, #0] + 8001c54: 697b ldr r3, [r7, #20] + 8001c56: 681a ldr r2, [r3, #0] + 8001c58: 210f movs r1, #15 + 8001c5a: 693b ldr r3, [r7, #16] + 8001c5c: fa01 f303 lsl.w r3, r1, r3 + 8001c60: 43db mvns r3, r3 + 8001c62: 401a ands r2, r3 + 8001c64: 6a39 ldr r1, [r7, #32] + 8001c66: 693b ldr r3, [r7, #16] + 8001c68: fa01 f303 lsl.w r3, r1, r3 + 8001c6c: 431a orrs r2, r3 + 8001c6e: 697b ldr r3, [r7, #20] + 8001c70: 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) - 8001c3a: 683b ldr r3, [r7, #0] - 8001c3c: 685b ldr r3, [r3, #4] - 8001c3e: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8001c42: 2b00 cmp r3, #0 - 8001c44: f000 80c1 beq.w 8001dca + 8001c72: 683b ldr r3, [r7, #0] + 8001c74: 685b ldr r3, [r3, #4] + 8001c76: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8001c7a: 2b00 cmp r3, #0 + 8001c7c: f000 80c1 beq.w 8001e02 { /* Enable AFIO Clock */ __HAL_RCC_AFIO_CLK_ENABLE(); - 8001c48: 4b53 ldr r3, [pc, #332] ; (8001d98 ) - 8001c4a: 699b ldr r3, [r3, #24] - 8001c4c: 4a52 ldr r2, [pc, #328] ; (8001d98 ) - 8001c4e: f043 0301 orr.w r3, r3, #1 - 8001c52: 6193 str r3, [r2, #24] - 8001c54: 4b50 ldr r3, [pc, #320] ; (8001d98 ) - 8001c56: 699b ldr r3, [r3, #24] - 8001c58: f003 0301 and.w r3, r3, #1 - 8001c5c: 60bb str r3, [r7, #8] - 8001c5e: 68bb ldr r3, [r7, #8] + 8001c80: 4b53 ldr r3, [pc, #332] ; (8001dd0 ) + 8001c82: 699b ldr r3, [r3, #24] + 8001c84: 4a52 ldr r2, [pc, #328] ; (8001dd0 ) + 8001c86: f043 0301 orr.w r3, r3, #1 + 8001c8a: 6193 str r3, [r2, #24] + 8001c8c: 4b50 ldr r3, [pc, #320] ; (8001dd0 ) + 8001c8e: 699b ldr r3, [r3, #24] + 8001c90: f003 0301 and.w r3, r3, #1 + 8001c94: 60bb str r3, [r7, #8] + 8001c96: 68bb ldr r3, [r7, #8] temp = AFIO->EXTICR[position >> 2u]; - 8001c60: 4a4e ldr r2, [pc, #312] ; (8001d9c ) - 8001c62: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001c64: 089b lsrs r3, r3, #2 - 8001c66: 3302 adds r3, #2 - 8001c68: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8001c6c: 60fb str r3, [r7, #12] + 8001c98: 4a4e ldr r2, [pc, #312] ; (8001dd4 ) + 8001c9a: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001c9c: 089b lsrs r3, r3, #2 + 8001c9e: 3302 adds r3, #2 + 8001ca0: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8001ca4: 60fb str r3, [r7, #12] CLEAR_BIT(temp, (0x0Fu) << (4u * (position & 0x03u))); - 8001c6e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001c70: f003 0303 and.w r3, r3, #3 - 8001c74: 009b lsls r3, r3, #2 - 8001c76: 220f movs r2, #15 - 8001c78: fa02 f303 lsl.w r3, r2, r3 - 8001c7c: 43db mvns r3, r3 - 8001c7e: 68fa ldr r2, [r7, #12] - 8001c80: 4013 ands r3, r2 - 8001c82: 60fb str r3, [r7, #12] + 8001ca6: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001ca8: f003 0303 and.w r3, r3, #3 + 8001cac: 009b lsls r3, r3, #2 + 8001cae: 220f movs r2, #15 + 8001cb0: fa02 f303 lsl.w r3, r2, r3 + 8001cb4: 43db mvns r3, r3 + 8001cb6: 68fa ldr r2, [r7, #12] + 8001cb8: 4013 ands r3, r2 + 8001cba: 60fb str r3, [r7, #12] SET_BIT(temp, (GPIO_GET_INDEX(GPIOx)) << (4u * (position & 0x03u))); - 8001c84: 687b ldr r3, [r7, #4] - 8001c86: 4a46 ldr r2, [pc, #280] ; (8001da0 ) - 8001c88: 4293 cmp r3, r2 - 8001c8a: d01f beq.n 8001ccc - 8001c8c: 687b ldr r3, [r7, #4] - 8001c8e: 4a45 ldr r2, [pc, #276] ; (8001da4 ) - 8001c90: 4293 cmp r3, r2 - 8001c92: d019 beq.n 8001cc8 - 8001c94: 687b ldr r3, [r7, #4] - 8001c96: 4a44 ldr r2, [pc, #272] ; (8001da8 ) - 8001c98: 4293 cmp r3, r2 - 8001c9a: d013 beq.n 8001cc4 - 8001c9c: 687b ldr r3, [r7, #4] - 8001c9e: 4a43 ldr r2, [pc, #268] ; (8001dac ) - 8001ca0: 4293 cmp r3, r2 - 8001ca2: d00d beq.n 8001cc0 - 8001ca4: 687b ldr r3, [r7, #4] - 8001ca6: 4a42 ldr r2, [pc, #264] ; (8001db0 ) - 8001ca8: 4293 cmp r3, r2 - 8001caa: d007 beq.n 8001cbc - 8001cac: 687b ldr r3, [r7, #4] - 8001cae: 4a41 ldr r2, [pc, #260] ; (8001db4 ) - 8001cb0: 4293 cmp r3, r2 - 8001cb2: d101 bne.n 8001cb8 - 8001cb4: 2305 movs r3, #5 - 8001cb6: e00a b.n 8001cce - 8001cb8: 2306 movs r3, #6 - 8001cba: e008 b.n 8001cce - 8001cbc: 2304 movs r3, #4 - 8001cbe: e006 b.n 8001cce - 8001cc0: 2303 movs r3, #3 - 8001cc2: e004 b.n 8001cce - 8001cc4: 2302 movs r3, #2 - 8001cc6: e002 b.n 8001cce - 8001cc8: 2301 movs r3, #1 - 8001cca: e000 b.n 8001cce - 8001ccc: 2300 movs r3, #0 - 8001cce: 6a7a ldr r2, [r7, #36] ; 0x24 - 8001cd0: f002 0203 and.w r2, r2, #3 - 8001cd4: 0092 lsls r2, r2, #2 - 8001cd6: 4093 lsls r3, r2 - 8001cd8: 68fa ldr r2, [r7, #12] - 8001cda: 4313 orrs r3, r2 - 8001cdc: 60fb str r3, [r7, #12] + 8001cbc: 687b ldr r3, [r7, #4] + 8001cbe: 4a46 ldr r2, [pc, #280] ; (8001dd8 ) + 8001cc0: 4293 cmp r3, r2 + 8001cc2: d01f beq.n 8001d04 + 8001cc4: 687b ldr r3, [r7, #4] + 8001cc6: 4a45 ldr r2, [pc, #276] ; (8001ddc ) + 8001cc8: 4293 cmp r3, r2 + 8001cca: d019 beq.n 8001d00 + 8001ccc: 687b ldr r3, [r7, #4] + 8001cce: 4a44 ldr r2, [pc, #272] ; (8001de0 ) + 8001cd0: 4293 cmp r3, r2 + 8001cd2: d013 beq.n 8001cfc + 8001cd4: 687b ldr r3, [r7, #4] + 8001cd6: 4a43 ldr r2, [pc, #268] ; (8001de4 ) + 8001cd8: 4293 cmp r3, r2 + 8001cda: d00d beq.n 8001cf8 + 8001cdc: 687b ldr r3, [r7, #4] + 8001cde: 4a42 ldr r2, [pc, #264] ; (8001de8 ) + 8001ce0: 4293 cmp r3, r2 + 8001ce2: d007 beq.n 8001cf4 + 8001ce4: 687b ldr r3, [r7, #4] + 8001ce6: 4a41 ldr r2, [pc, #260] ; (8001dec ) + 8001ce8: 4293 cmp r3, r2 + 8001cea: d101 bne.n 8001cf0 + 8001cec: 2305 movs r3, #5 + 8001cee: e00a b.n 8001d06 + 8001cf0: 2306 movs r3, #6 + 8001cf2: e008 b.n 8001d06 + 8001cf4: 2304 movs r3, #4 + 8001cf6: e006 b.n 8001d06 + 8001cf8: 2303 movs r3, #3 + 8001cfa: e004 b.n 8001d06 + 8001cfc: 2302 movs r3, #2 + 8001cfe: e002 b.n 8001d06 + 8001d00: 2301 movs r3, #1 + 8001d02: e000 b.n 8001d06 + 8001d04: 2300 movs r3, #0 + 8001d06: 6a7a ldr r2, [r7, #36] ; 0x24 + 8001d08: f002 0203 and.w r2, r2, #3 + 8001d0c: 0092 lsls r2, r2, #2 + 8001d0e: 4093 lsls r3, r2 + 8001d10: 68fa ldr r2, [r7, #12] + 8001d12: 4313 orrs r3, r2 + 8001d14: 60fb str r3, [r7, #12] AFIO->EXTICR[position >> 2u] = temp; - 8001cde: 492f ldr r1, [pc, #188] ; (8001d9c ) - 8001ce0: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001ce2: 089b lsrs r3, r3, #2 - 8001ce4: 3302 adds r3, #2 - 8001ce6: 68fa ldr r2, [r7, #12] - 8001ce8: f841 2023 str.w r2, [r1, r3, lsl #2] + 8001d16: 492f ldr r1, [pc, #188] ; (8001dd4 ) + 8001d18: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001d1a: 089b lsrs r3, r3, #2 + 8001d1c: 3302 adds r3, #2 + 8001d1e: 68fa ldr r2, [r7, #12] + 8001d20: f841 2023 str.w r2, [r1, r3, lsl #2] /* Configure the interrupt mask */ if ((GPIO_Init->Mode & GPIO_MODE_IT) == GPIO_MODE_IT) - 8001cec: 683b ldr r3, [r7, #0] - 8001cee: 685b ldr r3, [r3, #4] - 8001cf0: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8001cf4: 2b00 cmp r3, #0 - 8001cf6: d006 beq.n 8001d06 + 8001d24: 683b ldr r3, [r7, #0] + 8001d26: 685b ldr r3, [r3, #4] + 8001d28: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8001d2c: 2b00 cmp r3, #0 + 8001d2e: d006 beq.n 8001d3e { SET_BIT(EXTI->IMR, iocurrent); - 8001cf8: 4b2f ldr r3, [pc, #188] ; (8001db8 ) - 8001cfa: 681a ldr r2, [r3, #0] - 8001cfc: 492e ldr r1, [pc, #184] ; (8001db8 ) - 8001cfe: 69bb ldr r3, [r7, #24] - 8001d00: 4313 orrs r3, r2 - 8001d02: 600b str r3, [r1, #0] - 8001d04: e006 b.n 8001d14 + 8001d30: 4b2f ldr r3, [pc, #188] ; (8001df0 ) + 8001d32: 681a ldr r2, [r3, #0] + 8001d34: 492e ldr r1, [pc, #184] ; (8001df0 ) + 8001d36: 69bb ldr r3, [r7, #24] + 8001d38: 4313 orrs r3, r2 + 8001d3a: 600b str r3, [r1, #0] + 8001d3c: e006 b.n 8001d4c } else { CLEAR_BIT(EXTI->IMR, iocurrent); - 8001d06: 4b2c ldr r3, [pc, #176] ; (8001db8 ) - 8001d08: 681a ldr r2, [r3, #0] - 8001d0a: 69bb ldr r3, [r7, #24] - 8001d0c: 43db mvns r3, r3 - 8001d0e: 492a ldr r1, [pc, #168] ; (8001db8 ) - 8001d10: 4013 ands r3, r2 - 8001d12: 600b str r3, [r1, #0] + 8001d3e: 4b2c ldr r3, [pc, #176] ; (8001df0 ) + 8001d40: 681a ldr r2, [r3, #0] + 8001d42: 69bb ldr r3, [r7, #24] + 8001d44: 43db mvns r3, r3 + 8001d46: 492a ldr r1, [pc, #168] ; (8001df0 ) + 8001d48: 4013 ands r3, r2 + 8001d4a: 600b str r3, [r1, #0] } /* Configure the event mask */ if ((GPIO_Init->Mode & GPIO_MODE_EVT) == GPIO_MODE_EVT) - 8001d14: 683b ldr r3, [r7, #0] - 8001d16: 685b ldr r3, [r3, #4] - 8001d18: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001d1c: 2b00 cmp r3, #0 - 8001d1e: d006 beq.n 8001d2e + 8001d4c: 683b ldr r3, [r7, #0] + 8001d4e: 685b ldr r3, [r3, #4] + 8001d50: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001d54: 2b00 cmp r3, #0 + 8001d56: d006 beq.n 8001d66 { SET_BIT(EXTI->EMR, iocurrent); - 8001d20: 4b25 ldr r3, [pc, #148] ; (8001db8 ) - 8001d22: 685a ldr r2, [r3, #4] - 8001d24: 4924 ldr r1, [pc, #144] ; (8001db8 ) - 8001d26: 69bb ldr r3, [r7, #24] - 8001d28: 4313 orrs r3, r2 - 8001d2a: 604b str r3, [r1, #4] - 8001d2c: e006 b.n 8001d3c + 8001d58: 4b25 ldr r3, [pc, #148] ; (8001df0 ) + 8001d5a: 685a ldr r2, [r3, #4] + 8001d5c: 4924 ldr r1, [pc, #144] ; (8001df0 ) + 8001d5e: 69bb ldr r3, [r7, #24] + 8001d60: 4313 orrs r3, r2 + 8001d62: 604b str r3, [r1, #4] + 8001d64: e006 b.n 8001d74 } else { CLEAR_BIT(EXTI->EMR, iocurrent); - 8001d2e: 4b22 ldr r3, [pc, #136] ; (8001db8 ) - 8001d30: 685a ldr r2, [r3, #4] - 8001d32: 69bb ldr r3, [r7, #24] - 8001d34: 43db mvns r3, r3 - 8001d36: 4920 ldr r1, [pc, #128] ; (8001db8 ) - 8001d38: 4013 ands r3, r2 - 8001d3a: 604b str r3, [r1, #4] + 8001d66: 4b22 ldr r3, [pc, #136] ; (8001df0 ) + 8001d68: 685a ldr r2, [r3, #4] + 8001d6a: 69bb ldr r3, [r7, #24] + 8001d6c: 43db mvns r3, r3 + 8001d6e: 4920 ldr r1, [pc, #128] ; (8001df0 ) + 8001d70: 4013 ands r3, r2 + 8001d72: 604b str r3, [r1, #4] } /* Enable or disable the rising trigger */ if ((GPIO_Init->Mode & RISING_EDGE) == RISING_EDGE) - 8001d3c: 683b ldr r3, [r7, #0] - 8001d3e: 685b ldr r3, [r3, #4] - 8001d40: f403 1380 and.w r3, r3, #1048576 ; 0x100000 - 8001d44: 2b00 cmp r3, #0 - 8001d46: d006 beq.n 8001d56 + 8001d74: 683b ldr r3, [r7, #0] + 8001d76: 685b ldr r3, [r3, #4] + 8001d78: f403 1380 and.w r3, r3, #1048576 ; 0x100000 + 8001d7c: 2b00 cmp r3, #0 + 8001d7e: d006 beq.n 8001d8e { SET_BIT(EXTI->RTSR, iocurrent); - 8001d48: 4b1b ldr r3, [pc, #108] ; (8001db8 ) - 8001d4a: 689a ldr r2, [r3, #8] - 8001d4c: 491a ldr r1, [pc, #104] ; (8001db8 ) - 8001d4e: 69bb ldr r3, [r7, #24] - 8001d50: 4313 orrs r3, r2 - 8001d52: 608b str r3, [r1, #8] - 8001d54: e006 b.n 8001d64 + 8001d80: 4b1b ldr r3, [pc, #108] ; (8001df0 ) + 8001d82: 689a ldr r2, [r3, #8] + 8001d84: 491a ldr r1, [pc, #104] ; (8001df0 ) + 8001d86: 69bb ldr r3, [r7, #24] + 8001d88: 4313 orrs r3, r2 + 8001d8a: 608b str r3, [r1, #8] + 8001d8c: e006 b.n 8001d9c } else { CLEAR_BIT(EXTI->RTSR, iocurrent); - 8001d56: 4b18 ldr r3, [pc, #96] ; (8001db8 ) - 8001d58: 689a ldr r2, [r3, #8] - 8001d5a: 69bb ldr r3, [r7, #24] - 8001d5c: 43db mvns r3, r3 - 8001d5e: 4916 ldr r1, [pc, #88] ; (8001db8 ) - 8001d60: 4013 ands r3, r2 - 8001d62: 608b str r3, [r1, #8] + 8001d8e: 4b18 ldr r3, [pc, #96] ; (8001df0 ) + 8001d90: 689a ldr r2, [r3, #8] + 8001d92: 69bb ldr r3, [r7, #24] + 8001d94: 43db mvns r3, r3 + 8001d96: 4916 ldr r1, [pc, #88] ; (8001df0 ) + 8001d98: 4013 ands r3, r2 + 8001d9a: 608b str r3, [r1, #8] } /* Enable or disable the falling trigger */ if ((GPIO_Init->Mode & FALLING_EDGE) == FALLING_EDGE) - 8001d64: 683b ldr r3, [r7, #0] - 8001d66: 685b ldr r3, [r3, #4] - 8001d68: f403 1300 and.w r3, r3, #2097152 ; 0x200000 - 8001d6c: 2b00 cmp r3, #0 - 8001d6e: d025 beq.n 8001dbc + 8001d9c: 683b ldr r3, [r7, #0] + 8001d9e: 685b ldr r3, [r3, #4] + 8001da0: f403 1300 and.w r3, r3, #2097152 ; 0x200000 + 8001da4: 2b00 cmp r3, #0 + 8001da6: d025 beq.n 8001df4 { SET_BIT(EXTI->FTSR, iocurrent); - 8001d70: 4b11 ldr r3, [pc, #68] ; (8001db8 ) - 8001d72: 68da ldr r2, [r3, #12] - 8001d74: 4910 ldr r1, [pc, #64] ; (8001db8 ) - 8001d76: 69bb ldr r3, [r7, #24] - 8001d78: 4313 orrs r3, r2 - 8001d7a: 60cb str r3, [r1, #12] - 8001d7c: e025 b.n 8001dca - 8001d7e: bf00 nop - 8001d80: 10320000 .word 0x10320000 - 8001d84: 10310000 .word 0x10310000 - 8001d88: 10220000 .word 0x10220000 - 8001d8c: 10210000 .word 0x10210000 - 8001d90: 10120000 .word 0x10120000 - 8001d94: 10110000 .word 0x10110000 - 8001d98: 40021000 .word 0x40021000 - 8001d9c: 40010000 .word 0x40010000 - 8001da0: 40010800 .word 0x40010800 - 8001da4: 40010c00 .word 0x40010c00 - 8001da8: 40011000 .word 0x40011000 - 8001dac: 40011400 .word 0x40011400 - 8001db0: 40011800 .word 0x40011800 - 8001db4: 40011c00 .word 0x40011c00 - 8001db8: 40010400 .word 0x40010400 + 8001da8: 4b11 ldr r3, [pc, #68] ; (8001df0 ) + 8001daa: 68da ldr r2, [r3, #12] + 8001dac: 4910 ldr r1, [pc, #64] ; (8001df0 ) + 8001dae: 69bb ldr r3, [r7, #24] + 8001db0: 4313 orrs r3, r2 + 8001db2: 60cb str r3, [r1, #12] + 8001db4: e025 b.n 8001e02 + 8001db6: bf00 nop + 8001db8: 10320000 .word 0x10320000 + 8001dbc: 10310000 .word 0x10310000 + 8001dc0: 10220000 .word 0x10220000 + 8001dc4: 10210000 .word 0x10210000 + 8001dc8: 10120000 .word 0x10120000 + 8001dcc: 10110000 .word 0x10110000 + 8001dd0: 40021000 .word 0x40021000 + 8001dd4: 40010000 .word 0x40010000 + 8001dd8: 40010800 .word 0x40010800 + 8001ddc: 40010c00 .word 0x40010c00 + 8001de0: 40011000 .word 0x40011000 + 8001de4: 40011400 .word 0x40011400 + 8001de8: 40011800 .word 0x40011800 + 8001dec: 40011c00 .word 0x40011c00 + 8001df0: 40010400 .word 0x40010400 } else { CLEAR_BIT(EXTI->FTSR, iocurrent); - 8001dbc: 4b0b ldr r3, [pc, #44] ; (8001dec ) - 8001dbe: 68da ldr r2, [r3, #12] - 8001dc0: 69bb ldr r3, [r7, #24] - 8001dc2: 43db mvns r3, r3 - 8001dc4: 4909 ldr r1, [pc, #36] ; (8001dec ) - 8001dc6: 4013 ands r3, r2 - 8001dc8: 60cb str r3, [r1, #12] + 8001df4: 4b0b ldr r3, [pc, #44] ; (8001e24 ) + 8001df6: 68da ldr r2, [r3, #12] + 8001df8: 69bb ldr r3, [r7, #24] + 8001dfa: 43db mvns r3, r3 + 8001dfc: 4909 ldr r1, [pc, #36] ; (8001e24 ) + 8001dfe: 4013 ands r3, r2 + 8001e00: 60cb str r3, [r1, #12] } } } position++; - 8001dca: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001dcc: 3301 adds r3, #1 - 8001dce: 627b str r3, [r7, #36] ; 0x24 + 8001e02: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001e04: 3301 adds r3, #1 + 8001e06: 627b str r3, [r7, #36] ; 0x24 while (((GPIO_Init->Pin) >> position) != 0x00u) - 8001dd0: 683b ldr r3, [r7, #0] - 8001dd2: 681a ldr r2, [r3, #0] - 8001dd4: 6a7b ldr r3, [r7, #36] ; 0x24 - 8001dd6: fa22 f303 lsr.w r3, r2, r3 - 8001dda: 2b00 cmp r3, #0 - 8001ddc: f47f ae7e bne.w 8001adc + 8001e08: 683b ldr r3, [r7, #0] + 8001e0a: 681a ldr r2, [r3, #0] + 8001e0c: 6a7b ldr r3, [r7, #36] ; 0x24 + 8001e0e: fa22 f303 lsr.w r3, r2, r3 + 8001e12: 2b00 cmp r3, #0 + 8001e14: f47f ae7e bne.w 8001b14 } } - 8001de0: bf00 nop - 8001de2: bf00 nop - 8001de4: 372c adds r7, #44 ; 0x2c - 8001de6: 46bd mov sp, r7 - 8001de8: bc80 pop {r7} - 8001dea: 4770 bx lr - 8001dec: 40010400 .word 0x40010400 + 8001e18: bf00 nop + 8001e1a: bf00 nop + 8001e1c: 372c adds r7, #44 ; 0x2c + 8001e1e: 46bd mov sp, r7 + 8001e20: bc80 pop {r7} + 8001e22: 4770 bx lr + 8001e24: 40010400 .word 0x40010400 -08001df0 : +08001e28 : * @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) { - 8001df0: b480 push {r7} - 8001df2: b085 sub sp, #20 - 8001df4: af00 add r7, sp, #0 - 8001df6: 6078 str r0, [r7, #4] - 8001df8: 460b mov r3, r1 - 8001dfa: 807b strh r3, [r7, #2] + 8001e28: b480 push {r7} + 8001e2a: b085 sub sp, #20 + 8001e2c: af00 add r7, sp, #0 + 8001e2e: 6078 str r0, [r7, #4] + 8001e30: 460b mov r3, r1 + 8001e32: 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) - 8001dfc: 687b ldr r3, [r7, #4] - 8001dfe: 689a ldr r2, [r3, #8] - 8001e00: 887b ldrh r3, [r7, #2] - 8001e02: 4013 ands r3, r2 - 8001e04: 2b00 cmp r3, #0 - 8001e06: d002 beq.n 8001e0e + 8001e34: 687b ldr r3, [r7, #4] + 8001e36: 689a ldr r2, [r3, #8] + 8001e38: 887b ldrh r3, [r7, #2] + 8001e3a: 4013 ands r3, r2 + 8001e3c: 2b00 cmp r3, #0 + 8001e3e: d002 beq.n 8001e46 { bitstatus = GPIO_PIN_SET; - 8001e08: 2301 movs r3, #1 - 8001e0a: 73fb strb r3, [r7, #15] - 8001e0c: e001 b.n 8001e12 + 8001e40: 2301 movs r3, #1 + 8001e42: 73fb strb r3, [r7, #15] + 8001e44: e001 b.n 8001e4a } else { bitstatus = GPIO_PIN_RESET; - 8001e0e: 2300 movs r3, #0 - 8001e10: 73fb strb r3, [r7, #15] + 8001e46: 2300 movs r3, #0 + 8001e48: 73fb strb r3, [r7, #15] } return bitstatus; - 8001e12: 7bfb ldrb r3, [r7, #15] + 8001e4a: 7bfb ldrb r3, [r7, #15] } - 8001e14: 4618 mov r0, r3 - 8001e16: 3714 adds r7, #20 - 8001e18: 46bd mov sp, r7 - 8001e1a: bc80 pop {r7} - 8001e1c: 4770 bx lr + 8001e4c: 4618 mov r0, r3 + 8001e4e: 3714 adds r7, #20 + 8001e50: 46bd mov sp, r7 + 8001e52: bc80 pop {r7} + 8001e54: 4770 bx lr -08001e1e : +08001e56 : * @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) { - 8001e1e: b480 push {r7} - 8001e20: b083 sub sp, #12 - 8001e22: af00 add r7, sp, #0 - 8001e24: 6078 str r0, [r7, #4] - 8001e26: 460b mov r3, r1 - 8001e28: 807b strh r3, [r7, #2] - 8001e2a: 4613 mov r3, r2 - 8001e2c: 707b strb r3, [r7, #1] + 8001e56: b480 push {r7} + 8001e58: b083 sub sp, #12 + 8001e5a: af00 add r7, sp, #0 + 8001e5c: 6078 str r0, [r7, #4] + 8001e5e: 460b mov r3, r1 + 8001e60: 807b strh r3, [r7, #2] + 8001e62: 4613 mov r3, r2 + 8001e64: 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) - 8001e2e: 787b ldrb r3, [r7, #1] - 8001e30: 2b00 cmp r3, #0 - 8001e32: d003 beq.n 8001e3c + 8001e66: 787b ldrb r3, [r7, #1] + 8001e68: 2b00 cmp r3, #0 + 8001e6a: d003 beq.n 8001e74 { GPIOx->BSRR = GPIO_Pin; - 8001e34: 887a ldrh r2, [r7, #2] - 8001e36: 687b ldr r3, [r7, #4] - 8001e38: 611a str r2, [r3, #16] + 8001e6c: 887a ldrh r2, [r7, #2] + 8001e6e: 687b ldr r3, [r7, #4] + 8001e70: 611a str r2, [r3, #16] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; } } - 8001e3a: e003 b.n 8001e44 + 8001e72: e003 b.n 8001e7c GPIOx->BSRR = (uint32_t)GPIO_Pin << 16u; - 8001e3c: 887b ldrh r3, [r7, #2] - 8001e3e: 041a lsls r2, r3, #16 - 8001e40: 687b ldr r3, [r7, #4] - 8001e42: 611a str r2, [r3, #16] + 8001e74: 887b ldrh r3, [r7, #2] + 8001e76: 041a lsls r2, r3, #16 + 8001e78: 687b ldr r3, [r7, #4] + 8001e7a: 611a str r2, [r3, #16] } - 8001e44: bf00 nop - 8001e46: 370c adds r7, #12 - 8001e48: 46bd mov sp, r7 - 8001e4a: bc80 pop {r7} - 8001e4c: 4770 bx lr + 8001e7c: bf00 nop + 8001e7e: 370c adds r7, #12 + 8001e80: 46bd mov sp, r7 + 8001e82: bc80 pop {r7} + 8001e84: 4770 bx lr ... -08001e50 : +08001e88 : * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains * the configuration information for the specified I2C. * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c) { - 8001e50: b580 push {r7, lr} - 8001e52: b084 sub sp, #16 - 8001e54: af00 add r7, sp, #0 - 8001e56: 6078 str r0, [r7, #4] + 8001e88: b580 push {r7, lr} + 8001e8a: b084 sub sp, #16 + 8001e8c: af00 add r7, sp, #0 + 8001e8e: 6078 str r0, [r7, #4] uint32_t freqrange; uint32_t pclk1; /* Check the I2C handle allocation */ if (hi2c == NULL) - 8001e58: 687b ldr r3, [r7, #4] - 8001e5a: 2b00 cmp r3, #0 - 8001e5c: d101 bne.n 8001e62 + 8001e90: 687b ldr r3, [r7, #4] + 8001e92: 2b00 cmp r3, #0 + 8001e94: d101 bne.n 8001e9a { return HAL_ERROR; - 8001e5e: 2301 movs r3, #1 - 8001e60: e12b b.n 80020ba + 8001e96: 2301 movs r3, #1 + 8001e98: e12b b.n 80020f2 assert_param(IS_I2C_DUAL_ADDRESS(hi2c->Init.DualAddressMode)); assert_param(IS_I2C_OWN_ADDRESS2(hi2c->Init.OwnAddress2)); assert_param(IS_I2C_GENERAL_CALL(hi2c->Init.GeneralCallMode)); assert_param(IS_I2C_NO_STRETCH(hi2c->Init.NoStretchMode)); if (hi2c->State == HAL_I2C_STATE_RESET) - 8001e62: 687b ldr r3, [r7, #4] - 8001e64: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8001e68: b2db uxtb r3, r3 - 8001e6a: 2b00 cmp r3, #0 - 8001e6c: d106 bne.n 8001e7c + 8001e9a: 687b ldr r3, [r7, #4] + 8001e9c: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8001ea0: b2db uxtb r3, r3 + 8001ea2: 2b00 cmp r3, #0 + 8001ea4: d106 bne.n 8001eb4 { /* Allocate lock resource and initialize it */ hi2c->Lock = HAL_UNLOCKED; - 8001e6e: 687b ldr r3, [r7, #4] - 8001e70: 2200 movs r2, #0 - 8001e72: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001ea6: 687b ldr r3, [r7, #4] + 8001ea8: 2200 movs r2, #0 + 8001eaa: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Init the low level hardware : GPIO, CLOCK, NVIC */ hi2c->MspInitCallback(hi2c); #else /* Init the low level hardware : GPIO, CLOCK, NVIC */ HAL_I2C_MspInit(hi2c); - 8001e76: 6878 ldr r0, [r7, #4] - 8001e78: f7ff fb0a bl 8001490 + 8001eae: 6878 ldr r0, [r7, #4] + 8001eb0: f7ff fb0a bl 80014c8 #endif /* USE_HAL_I2C_REGISTER_CALLBACKS */ } hi2c->State = HAL_I2C_STATE_BUSY; - 8001e7c: 687b ldr r3, [r7, #4] - 8001e7e: 2224 movs r2, #36 ; 0x24 - 8001e80: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8001eb4: 687b ldr r3, [r7, #4] + 8001eb6: 2224 movs r2, #36 ; 0x24 + 8001eb8: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Disable the selected I2C peripheral */ __HAL_I2C_DISABLE(hi2c); - 8001e84: 687b ldr r3, [r7, #4] - 8001e86: 681b ldr r3, [r3, #0] - 8001e88: 681a ldr r2, [r3, #0] - 8001e8a: 687b ldr r3, [r7, #4] - 8001e8c: 681b ldr r3, [r3, #0] - 8001e8e: f022 0201 bic.w r2, r2, #1 - 8001e92: 601a str r2, [r3, #0] + 8001ebc: 687b ldr r3, [r7, #4] + 8001ebe: 681b ldr r3, [r3, #0] + 8001ec0: 681a ldr r2, [r3, #0] + 8001ec2: 687b ldr r3, [r7, #4] + 8001ec4: 681b ldr r3, [r3, #0] + 8001ec6: f022 0201 bic.w r2, r2, #1 + 8001eca: 601a str r2, [r3, #0] /*Reset I2C*/ hi2c->Instance->CR1 |= I2C_CR1_SWRST; - 8001e94: 687b ldr r3, [r7, #4] - 8001e96: 681b ldr r3, [r3, #0] - 8001e98: 681a ldr r2, [r3, #0] - 8001e9a: 687b ldr r3, [r7, #4] - 8001e9c: 681b ldr r3, [r3, #0] - 8001e9e: f442 4200 orr.w r2, r2, #32768 ; 0x8000 - 8001ea2: 601a str r2, [r3, #0] + 8001ecc: 687b ldr r3, [r7, #4] + 8001ece: 681b ldr r3, [r3, #0] + 8001ed0: 681a ldr r2, [r3, #0] + 8001ed2: 687b ldr r3, [r7, #4] + 8001ed4: 681b ldr r3, [r3, #0] + 8001ed6: f442 4200 orr.w r2, r2, #32768 ; 0x8000 + 8001eda: 601a str r2, [r3, #0] hi2c->Instance->CR1 &= ~I2C_CR1_SWRST; - 8001ea4: 687b ldr r3, [r7, #4] - 8001ea6: 681b ldr r3, [r3, #0] - 8001ea8: 681a ldr r2, [r3, #0] - 8001eaa: 687b ldr r3, [r7, #4] - 8001eac: 681b ldr r3, [r3, #0] - 8001eae: f422 4200 bic.w r2, r2, #32768 ; 0x8000 - 8001eb2: 601a str r2, [r3, #0] + 8001edc: 687b ldr r3, [r7, #4] + 8001ede: 681b ldr r3, [r3, #0] + 8001ee0: 681a ldr r2, [r3, #0] + 8001ee2: 687b ldr r3, [r7, #4] + 8001ee4: 681b ldr r3, [r3, #0] + 8001ee6: f422 4200 bic.w r2, r2, #32768 ; 0x8000 + 8001eea: 601a str r2, [r3, #0] /* Get PCLK1 frequency */ pclk1 = HAL_RCC_GetPCLK1Freq(); - 8001eb4: f001 fba0 bl 80035f8 - 8001eb8: 60f8 str r0, [r7, #12] + 8001eec: f001 fba0 bl 8003630 + 8001ef0: 60f8 str r0, [r7, #12] /* Check the minimum allowed PCLK1 frequency */ if (I2C_MIN_PCLK_FREQ(pclk1, hi2c->Init.ClockSpeed) == 1U) - 8001eba: 687b ldr r3, [r7, #4] - 8001ebc: 685b ldr r3, [r3, #4] - 8001ebe: 4a81 ldr r2, [pc, #516] ; (80020c4 ) - 8001ec0: 4293 cmp r3, r2 - 8001ec2: d807 bhi.n 8001ed4 - 8001ec4: 68fb ldr r3, [r7, #12] - 8001ec6: 4a80 ldr r2, [pc, #512] ; (80020c8 ) - 8001ec8: 4293 cmp r3, r2 - 8001eca: bf94 ite ls - 8001ecc: 2301 movls r3, #1 - 8001ece: 2300 movhi r3, #0 - 8001ed0: b2db uxtb r3, r3 - 8001ed2: e006 b.n 8001ee2 - 8001ed4: 68fb ldr r3, [r7, #12] - 8001ed6: 4a7d ldr r2, [pc, #500] ; (80020cc ) - 8001ed8: 4293 cmp r3, r2 - 8001eda: bf94 ite ls - 8001edc: 2301 movls r3, #1 - 8001ede: 2300 movhi r3, #0 - 8001ee0: b2db uxtb r3, r3 - 8001ee2: 2b00 cmp r3, #0 - 8001ee4: d001 beq.n 8001eea + 8001ef2: 687b ldr r3, [r7, #4] + 8001ef4: 685b ldr r3, [r3, #4] + 8001ef6: 4a81 ldr r2, [pc, #516] ; (80020fc ) + 8001ef8: 4293 cmp r3, r2 + 8001efa: d807 bhi.n 8001f0c + 8001efc: 68fb ldr r3, [r7, #12] + 8001efe: 4a80 ldr r2, [pc, #512] ; (8002100 ) + 8001f00: 4293 cmp r3, r2 + 8001f02: bf94 ite ls + 8001f04: 2301 movls r3, #1 + 8001f06: 2300 movhi r3, #0 + 8001f08: b2db uxtb r3, r3 + 8001f0a: e006 b.n 8001f1a + 8001f0c: 68fb ldr r3, [r7, #12] + 8001f0e: 4a7d ldr r2, [pc, #500] ; (8002104 ) + 8001f10: 4293 cmp r3, r2 + 8001f12: bf94 ite ls + 8001f14: 2301 movls r3, #1 + 8001f16: 2300 movhi r3, #0 + 8001f18: b2db uxtb r3, r3 + 8001f1a: 2b00 cmp r3, #0 + 8001f1c: d001 beq.n 8001f22 { return HAL_ERROR; - 8001ee6: 2301 movs r3, #1 - 8001ee8: e0e7 b.n 80020ba + 8001f1e: 2301 movs r3, #1 + 8001f20: e0e7 b.n 80020f2 } /* Calculate frequency range */ freqrange = I2C_FREQRANGE(pclk1); - 8001eea: 68fb ldr r3, [r7, #12] - 8001eec: 4a78 ldr r2, [pc, #480] ; (80020d0 ) - 8001eee: fba2 2303 umull r2, r3, r2, r3 - 8001ef2: 0c9b lsrs r3, r3, #18 - 8001ef4: 60bb str r3, [r7, #8] + 8001f22: 68fb ldr r3, [r7, #12] + 8001f24: 4a78 ldr r2, [pc, #480] ; (8002108 ) + 8001f26: fba2 2303 umull r2, r3, r2, r3 + 8001f2a: 0c9b lsrs r3, r3, #18 + 8001f2c: 60bb str r3, [r7, #8] /*---------------------------- I2Cx CR2 Configuration ----------------------*/ /* Configure I2Cx: Frequency range */ MODIFY_REG(hi2c->Instance->CR2, I2C_CR2_FREQ, freqrange); - 8001ef6: 687b ldr r3, [r7, #4] - 8001ef8: 681b ldr r3, [r3, #0] - 8001efa: 685b ldr r3, [r3, #4] - 8001efc: f023 013f bic.w r1, r3, #63 ; 0x3f - 8001f00: 687b ldr r3, [r7, #4] - 8001f02: 681b ldr r3, [r3, #0] - 8001f04: 68ba ldr r2, [r7, #8] - 8001f06: 430a orrs r2, r1 - 8001f08: 605a str r2, [r3, #4] + 8001f2e: 687b ldr r3, [r7, #4] + 8001f30: 681b ldr r3, [r3, #0] + 8001f32: 685b ldr r3, [r3, #4] + 8001f34: f023 013f bic.w r1, r3, #63 ; 0x3f + 8001f38: 687b ldr r3, [r7, #4] + 8001f3a: 681b ldr r3, [r3, #0] + 8001f3c: 68ba ldr r2, [r7, #8] + 8001f3e: 430a orrs r2, r1 + 8001f40: 605a str r2, [r3, #4] /*---------------------------- I2Cx TRISE Configuration --------------------*/ /* Configure I2Cx: Rise Time */ MODIFY_REG(hi2c->Instance->TRISE, I2C_TRISE_TRISE, I2C_RISE_TIME(freqrange, hi2c->Init.ClockSpeed)); - 8001f0a: 687b ldr r3, [r7, #4] - 8001f0c: 681b ldr r3, [r3, #0] - 8001f0e: 6a1b ldr r3, [r3, #32] - 8001f10: f023 013f bic.w r1, r3, #63 ; 0x3f - 8001f14: 687b ldr r3, [r7, #4] - 8001f16: 685b ldr r3, [r3, #4] - 8001f18: 4a6a ldr r2, [pc, #424] ; (80020c4 ) - 8001f1a: 4293 cmp r3, r2 - 8001f1c: d802 bhi.n 8001f24 - 8001f1e: 68bb ldr r3, [r7, #8] - 8001f20: 3301 adds r3, #1 - 8001f22: e009 b.n 8001f38 - 8001f24: 68bb ldr r3, [r7, #8] - 8001f26: f44f 7296 mov.w r2, #300 ; 0x12c - 8001f2a: fb02 f303 mul.w r3, r2, r3 - 8001f2e: 4a69 ldr r2, [pc, #420] ; (80020d4 ) - 8001f30: fba2 2303 umull r2, r3, r2, r3 - 8001f34: 099b lsrs r3, r3, #6 - 8001f36: 3301 adds r3, #1 - 8001f38: 687a ldr r2, [r7, #4] - 8001f3a: 6812 ldr r2, [r2, #0] - 8001f3c: 430b orrs r3, r1 - 8001f3e: 6213 str r3, [r2, #32] + 8001f42: 687b ldr r3, [r7, #4] + 8001f44: 681b ldr r3, [r3, #0] + 8001f46: 6a1b ldr r3, [r3, #32] + 8001f48: f023 013f bic.w r1, r3, #63 ; 0x3f + 8001f4c: 687b ldr r3, [r7, #4] + 8001f4e: 685b ldr r3, [r3, #4] + 8001f50: 4a6a ldr r2, [pc, #424] ; (80020fc ) + 8001f52: 4293 cmp r3, r2 + 8001f54: d802 bhi.n 8001f5c + 8001f56: 68bb ldr r3, [r7, #8] + 8001f58: 3301 adds r3, #1 + 8001f5a: e009 b.n 8001f70 + 8001f5c: 68bb ldr r3, [r7, #8] + 8001f5e: f44f 7296 mov.w r2, #300 ; 0x12c + 8001f62: fb02 f303 mul.w r3, r2, r3 + 8001f66: 4a69 ldr r2, [pc, #420] ; (800210c ) + 8001f68: fba2 2303 umull r2, r3, r2, r3 + 8001f6c: 099b lsrs r3, r3, #6 + 8001f6e: 3301 adds r3, #1 + 8001f70: 687a ldr r2, [r7, #4] + 8001f72: 6812 ldr r2, [r2, #0] + 8001f74: 430b orrs r3, r1 + 8001f76: 6213 str r3, [r2, #32] /*---------------------------- I2Cx CCR Configuration ----------------------*/ /* Configure I2Cx: Speed */ MODIFY_REG(hi2c->Instance->CCR, (I2C_CCR_FS | I2C_CCR_DUTY | I2C_CCR_CCR), I2C_SPEED(pclk1, hi2c->Init.ClockSpeed, hi2c->Init.DutyCycle)); - 8001f40: 687b ldr r3, [r7, #4] - 8001f42: 681b ldr r3, [r3, #0] - 8001f44: 69db ldr r3, [r3, #28] - 8001f46: f423 424f bic.w r2, r3, #52992 ; 0xcf00 - 8001f4a: f022 02ff bic.w r2, r2, #255 ; 0xff - 8001f4e: 687b ldr r3, [r7, #4] - 8001f50: 685b ldr r3, [r3, #4] - 8001f52: 495c ldr r1, [pc, #368] ; (80020c4 ) - 8001f54: 428b cmp r3, r1 - 8001f56: d819 bhi.n 8001f8c - 8001f58: 68fb ldr r3, [r7, #12] - 8001f5a: 1e59 subs r1, r3, #1 - 8001f5c: 687b ldr r3, [r7, #4] - 8001f5e: 685b ldr r3, [r3, #4] - 8001f60: 005b lsls r3, r3, #1 - 8001f62: fbb1 f3f3 udiv r3, r1, r3 - 8001f66: 1c59 adds r1, r3, #1 - 8001f68: f640 73fc movw r3, #4092 ; 0xffc - 8001f6c: 400b ands r3, r1 - 8001f6e: 2b00 cmp r3, #0 - 8001f70: d00a beq.n 8001f88 - 8001f72: 68fb ldr r3, [r7, #12] - 8001f74: 1e59 subs r1, r3, #1 - 8001f76: 687b ldr r3, [r7, #4] - 8001f78: 685b ldr r3, [r3, #4] - 8001f7a: 005b lsls r3, r3, #1 - 8001f7c: fbb1 f3f3 udiv r3, r1, r3 - 8001f80: 3301 adds r3, #1 - 8001f82: f3c3 030b ubfx r3, r3, #0, #12 - 8001f86: e051 b.n 800202c - 8001f88: 2304 movs r3, #4 - 8001f8a: e04f b.n 800202c - 8001f8c: 687b ldr r3, [r7, #4] - 8001f8e: 689b ldr r3, [r3, #8] - 8001f90: 2b00 cmp r3, #0 - 8001f92: d111 bne.n 8001fb8 - 8001f94: 68fb ldr r3, [r7, #12] - 8001f96: 1e58 subs r0, r3, #1 - 8001f98: 687b ldr r3, [r7, #4] - 8001f9a: 6859 ldr r1, [r3, #4] - 8001f9c: 460b mov r3, r1 - 8001f9e: 005b lsls r3, r3, #1 - 8001fa0: 440b add r3, r1 - 8001fa2: fbb0 f3f3 udiv r3, r0, r3 - 8001fa6: 3301 adds r3, #1 - 8001fa8: f3c3 030b ubfx r3, r3, #0, #12 - 8001fac: 2b00 cmp r3, #0 - 8001fae: bf0c ite eq - 8001fb0: 2301 moveq r3, #1 - 8001fb2: 2300 movne r3, #0 - 8001fb4: b2db uxtb r3, r3 - 8001fb6: e012 b.n 8001fde - 8001fb8: 68fb ldr r3, [r7, #12] - 8001fba: 1e58 subs r0, r3, #1 - 8001fbc: 687b ldr r3, [r7, #4] - 8001fbe: 6859 ldr r1, [r3, #4] - 8001fc0: 460b mov r3, r1 - 8001fc2: 009b lsls r3, r3, #2 - 8001fc4: 440b add r3, r1 - 8001fc6: 0099 lsls r1, r3, #2 - 8001fc8: 440b add r3, r1 - 8001fca: fbb0 f3f3 udiv r3, r0, r3 - 8001fce: 3301 adds r3, #1 - 8001fd0: f3c3 030b ubfx r3, r3, #0, #12 - 8001fd4: 2b00 cmp r3, #0 - 8001fd6: bf0c ite eq - 8001fd8: 2301 moveq r3, #1 - 8001fda: 2300 movne r3, #0 - 8001fdc: b2db uxtb r3, r3 - 8001fde: 2b00 cmp r3, #0 - 8001fe0: d001 beq.n 8001fe6 - 8001fe2: 2301 movs r3, #1 - 8001fe4: e022 b.n 800202c - 8001fe6: 687b ldr r3, [r7, #4] - 8001fe8: 689b ldr r3, [r3, #8] - 8001fea: 2b00 cmp r3, #0 - 8001fec: d10e bne.n 800200c - 8001fee: 68fb ldr r3, [r7, #12] - 8001ff0: 1e58 subs r0, r3, #1 - 8001ff2: 687b ldr r3, [r7, #4] - 8001ff4: 6859 ldr r1, [r3, #4] - 8001ff6: 460b mov r3, r1 - 8001ff8: 005b lsls r3, r3, #1 - 8001ffa: 440b add r3, r1 - 8001ffc: fbb0 f3f3 udiv r3, r0, r3 - 8002000: 3301 adds r3, #1 - 8002002: f3c3 030b ubfx r3, r3, #0, #12 - 8002006: f443 4300 orr.w r3, r3, #32768 ; 0x8000 - 800200a: e00f b.n 800202c - 800200c: 68fb ldr r3, [r7, #12] - 800200e: 1e58 subs r0, r3, #1 - 8002010: 687b ldr r3, [r7, #4] - 8002012: 6859 ldr r1, [r3, #4] - 8002014: 460b mov r3, r1 - 8002016: 009b lsls r3, r3, #2 - 8002018: 440b add r3, r1 - 800201a: 0099 lsls r1, r3, #2 - 800201c: 440b add r3, r1 - 800201e: fbb0 f3f3 udiv r3, r0, r3 - 8002022: 3301 adds r3, #1 - 8002024: f3c3 030b ubfx r3, r3, #0, #12 - 8002028: f443 4340 orr.w r3, r3, #49152 ; 0xc000 - 800202c: 6879 ldr r1, [r7, #4] - 800202e: 6809 ldr r1, [r1, #0] - 8002030: 4313 orrs r3, r2 - 8002032: 61cb str r3, [r1, #28] + 8001f78: 687b ldr r3, [r7, #4] + 8001f7a: 681b ldr r3, [r3, #0] + 8001f7c: 69db ldr r3, [r3, #28] + 8001f7e: f423 424f bic.w r2, r3, #52992 ; 0xcf00 + 8001f82: f022 02ff bic.w r2, r2, #255 ; 0xff + 8001f86: 687b ldr r3, [r7, #4] + 8001f88: 685b ldr r3, [r3, #4] + 8001f8a: 495c ldr r1, [pc, #368] ; (80020fc ) + 8001f8c: 428b cmp r3, r1 + 8001f8e: d819 bhi.n 8001fc4 + 8001f90: 68fb ldr r3, [r7, #12] + 8001f92: 1e59 subs r1, r3, #1 + 8001f94: 687b ldr r3, [r7, #4] + 8001f96: 685b ldr r3, [r3, #4] + 8001f98: 005b lsls r3, r3, #1 + 8001f9a: fbb1 f3f3 udiv r3, r1, r3 + 8001f9e: 1c59 adds r1, r3, #1 + 8001fa0: f640 73fc movw r3, #4092 ; 0xffc + 8001fa4: 400b ands r3, r1 + 8001fa6: 2b00 cmp r3, #0 + 8001fa8: d00a beq.n 8001fc0 + 8001faa: 68fb ldr r3, [r7, #12] + 8001fac: 1e59 subs r1, r3, #1 + 8001fae: 687b ldr r3, [r7, #4] + 8001fb0: 685b ldr r3, [r3, #4] + 8001fb2: 005b lsls r3, r3, #1 + 8001fb4: fbb1 f3f3 udiv r3, r1, r3 + 8001fb8: 3301 adds r3, #1 + 8001fba: f3c3 030b ubfx r3, r3, #0, #12 + 8001fbe: e051 b.n 8002064 + 8001fc0: 2304 movs r3, #4 + 8001fc2: e04f b.n 8002064 + 8001fc4: 687b ldr r3, [r7, #4] + 8001fc6: 689b ldr r3, [r3, #8] + 8001fc8: 2b00 cmp r3, #0 + 8001fca: d111 bne.n 8001ff0 + 8001fcc: 68fb ldr r3, [r7, #12] + 8001fce: 1e58 subs r0, r3, #1 + 8001fd0: 687b ldr r3, [r7, #4] + 8001fd2: 6859 ldr r1, [r3, #4] + 8001fd4: 460b mov r3, r1 + 8001fd6: 005b lsls r3, r3, #1 + 8001fd8: 440b add r3, r1 + 8001fda: fbb0 f3f3 udiv r3, r0, r3 + 8001fde: 3301 adds r3, #1 + 8001fe0: f3c3 030b ubfx r3, r3, #0, #12 + 8001fe4: 2b00 cmp r3, #0 + 8001fe6: bf0c ite eq + 8001fe8: 2301 moveq r3, #1 + 8001fea: 2300 movne r3, #0 + 8001fec: b2db uxtb r3, r3 + 8001fee: e012 b.n 8002016 + 8001ff0: 68fb ldr r3, [r7, #12] + 8001ff2: 1e58 subs r0, r3, #1 + 8001ff4: 687b ldr r3, [r7, #4] + 8001ff6: 6859 ldr r1, [r3, #4] + 8001ff8: 460b mov r3, r1 + 8001ffa: 009b lsls r3, r3, #2 + 8001ffc: 440b add r3, r1 + 8001ffe: 0099 lsls r1, r3, #2 + 8002000: 440b add r3, r1 + 8002002: fbb0 f3f3 udiv r3, r0, r3 + 8002006: 3301 adds r3, #1 + 8002008: f3c3 030b ubfx r3, r3, #0, #12 + 800200c: 2b00 cmp r3, #0 + 800200e: bf0c ite eq + 8002010: 2301 moveq r3, #1 + 8002012: 2300 movne r3, #0 + 8002014: b2db uxtb r3, r3 + 8002016: 2b00 cmp r3, #0 + 8002018: d001 beq.n 800201e + 800201a: 2301 movs r3, #1 + 800201c: e022 b.n 8002064 + 800201e: 687b ldr r3, [r7, #4] + 8002020: 689b ldr r3, [r3, #8] + 8002022: 2b00 cmp r3, #0 + 8002024: d10e bne.n 8002044 + 8002026: 68fb ldr r3, [r7, #12] + 8002028: 1e58 subs r0, r3, #1 + 800202a: 687b ldr r3, [r7, #4] + 800202c: 6859 ldr r1, [r3, #4] + 800202e: 460b mov r3, r1 + 8002030: 005b lsls r3, r3, #1 + 8002032: 440b add r3, r1 + 8002034: fbb0 f3f3 udiv r3, r0, r3 + 8002038: 3301 adds r3, #1 + 800203a: f3c3 030b ubfx r3, r3, #0, #12 + 800203e: f443 4300 orr.w r3, r3, #32768 ; 0x8000 + 8002042: e00f b.n 8002064 + 8002044: 68fb ldr r3, [r7, #12] + 8002046: 1e58 subs r0, r3, #1 + 8002048: 687b ldr r3, [r7, #4] + 800204a: 6859 ldr r1, [r3, #4] + 800204c: 460b mov r3, r1 + 800204e: 009b lsls r3, r3, #2 + 8002050: 440b add r3, r1 + 8002052: 0099 lsls r1, r3, #2 + 8002054: 440b add r3, r1 + 8002056: fbb0 f3f3 udiv r3, r0, r3 + 800205a: 3301 adds r3, #1 + 800205c: f3c3 030b ubfx r3, r3, #0, #12 + 8002060: f443 4340 orr.w r3, r3, #49152 ; 0xc000 + 8002064: 6879 ldr r1, [r7, #4] + 8002066: 6809 ldr r1, [r1, #0] + 8002068: 4313 orrs r3, r2 + 800206a: 61cb str r3, [r1, #28] /*---------------------------- I2Cx CR1 Configuration ----------------------*/ /* Configure I2Cx: Generalcall and NoStretch mode */ MODIFY_REG(hi2c->Instance->CR1, (I2C_CR1_ENGC | I2C_CR1_NOSTRETCH), (hi2c->Init.GeneralCallMode | hi2c->Init.NoStretchMode)); - 8002034: 687b ldr r3, [r7, #4] - 8002036: 681b ldr r3, [r3, #0] - 8002038: 681b ldr r3, [r3, #0] - 800203a: f023 01c0 bic.w r1, r3, #192 ; 0xc0 - 800203e: 687b ldr r3, [r7, #4] - 8002040: 69da ldr r2, [r3, #28] - 8002042: 687b ldr r3, [r7, #4] - 8002044: 6a1b ldr r3, [r3, #32] - 8002046: 431a orrs r2, r3 - 8002048: 687b ldr r3, [r7, #4] - 800204a: 681b ldr r3, [r3, #0] - 800204c: 430a orrs r2, r1 - 800204e: 601a str r2, [r3, #0] + 800206c: 687b ldr r3, [r7, #4] + 800206e: 681b ldr r3, [r3, #0] + 8002070: 681b ldr r3, [r3, #0] + 8002072: f023 01c0 bic.w r1, r3, #192 ; 0xc0 + 8002076: 687b ldr r3, [r7, #4] + 8002078: 69da ldr r2, [r3, #28] + 800207a: 687b ldr r3, [r7, #4] + 800207c: 6a1b ldr r3, [r3, #32] + 800207e: 431a orrs r2, r3 + 8002080: 687b ldr r3, [r7, #4] + 8002082: 681b ldr r3, [r3, #0] + 8002084: 430a orrs r2, r1 + 8002086: 601a str r2, [r3, #0] /*---------------------------- I2Cx OAR1 Configuration ---------------------*/ /* Configure I2Cx: Own Address1 and addressing mode */ MODIFY_REG(hi2c->Instance->OAR1, (I2C_OAR1_ADDMODE | I2C_OAR1_ADD8_9 | I2C_OAR1_ADD1_7 | I2C_OAR1_ADD0), (hi2c->Init.AddressingMode | hi2c->Init.OwnAddress1)); - 8002050: 687b ldr r3, [r7, #4] - 8002052: 681b ldr r3, [r3, #0] - 8002054: 689b ldr r3, [r3, #8] - 8002056: f423 4303 bic.w r3, r3, #33536 ; 0x8300 - 800205a: f023 03ff bic.w r3, r3, #255 ; 0xff - 800205e: 687a ldr r2, [r7, #4] - 8002060: 6911 ldr r1, [r2, #16] - 8002062: 687a ldr r2, [r7, #4] - 8002064: 68d2 ldr r2, [r2, #12] - 8002066: 4311 orrs r1, r2 - 8002068: 687a ldr r2, [r7, #4] - 800206a: 6812 ldr r2, [r2, #0] - 800206c: 430b orrs r3, r1 - 800206e: 6093 str r3, [r2, #8] + 8002088: 687b ldr r3, [r7, #4] + 800208a: 681b ldr r3, [r3, #0] + 800208c: 689b ldr r3, [r3, #8] + 800208e: f423 4303 bic.w r3, r3, #33536 ; 0x8300 + 8002092: f023 03ff bic.w r3, r3, #255 ; 0xff + 8002096: 687a ldr r2, [r7, #4] + 8002098: 6911 ldr r1, [r2, #16] + 800209a: 687a ldr r2, [r7, #4] + 800209c: 68d2 ldr r2, [r2, #12] + 800209e: 4311 orrs r1, r2 + 80020a0: 687a ldr r2, [r7, #4] + 80020a2: 6812 ldr r2, [r2, #0] + 80020a4: 430b orrs r3, r1 + 80020a6: 6093 str r3, [r2, #8] /*---------------------------- I2Cx OAR2 Configuration ---------------------*/ /* Configure I2Cx: Dual mode and Own Address2 */ MODIFY_REG(hi2c->Instance->OAR2, (I2C_OAR2_ENDUAL | I2C_OAR2_ADD2), (hi2c->Init.DualAddressMode | hi2c->Init.OwnAddress2)); - 8002070: 687b ldr r3, [r7, #4] - 8002072: 681b ldr r3, [r3, #0] - 8002074: 68db ldr r3, [r3, #12] - 8002076: f023 01ff bic.w r1, r3, #255 ; 0xff - 800207a: 687b ldr r3, [r7, #4] - 800207c: 695a ldr r2, [r3, #20] - 800207e: 687b ldr r3, [r7, #4] - 8002080: 699b ldr r3, [r3, #24] - 8002082: 431a orrs r2, r3 - 8002084: 687b ldr r3, [r7, #4] - 8002086: 681b ldr r3, [r3, #0] - 8002088: 430a orrs r2, r1 - 800208a: 60da str r2, [r3, #12] + 80020a8: 687b ldr r3, [r7, #4] + 80020aa: 681b ldr r3, [r3, #0] + 80020ac: 68db ldr r3, [r3, #12] + 80020ae: f023 01ff bic.w r1, r3, #255 ; 0xff + 80020b2: 687b ldr r3, [r7, #4] + 80020b4: 695a ldr r2, [r3, #20] + 80020b6: 687b ldr r3, [r7, #4] + 80020b8: 699b ldr r3, [r3, #24] + 80020ba: 431a orrs r2, r3 + 80020bc: 687b ldr r3, [r7, #4] + 80020be: 681b ldr r3, [r3, #0] + 80020c0: 430a orrs r2, r1 + 80020c2: 60da str r2, [r3, #12] /* Enable the selected I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 800208c: 687b ldr r3, [r7, #4] - 800208e: 681b ldr r3, [r3, #0] - 8002090: 681a ldr r2, [r3, #0] - 8002092: 687b ldr r3, [r7, #4] - 8002094: 681b ldr r3, [r3, #0] - 8002096: f042 0201 orr.w r2, r2, #1 - 800209a: 601a str r2, [r3, #0] + 80020c4: 687b ldr r3, [r7, #4] + 80020c6: 681b ldr r3, [r3, #0] + 80020c8: 681a ldr r2, [r3, #0] + 80020ca: 687b ldr r3, [r7, #4] + 80020cc: 681b ldr r3, [r3, #0] + 80020ce: f042 0201 orr.w r2, r2, #1 + 80020d2: 601a str r2, [r3, #0] hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 800209c: 687b ldr r3, [r7, #4] - 800209e: 2200 movs r2, #0 - 80020a0: 641a str r2, [r3, #64] ; 0x40 + 80020d4: 687b ldr r3, [r7, #4] + 80020d6: 2200 movs r2, #0 + 80020d8: 641a str r2, [r3, #64] ; 0x40 hi2c->State = HAL_I2C_STATE_READY; - 80020a2: 687b ldr r3, [r7, #4] - 80020a4: 2220 movs r2, #32 - 80020a6: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80020da: 687b ldr r3, [r7, #4] + 80020dc: 2220 movs r2, #32 + 80020de: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->PreviousState = I2C_STATE_NONE; - 80020aa: 687b ldr r3, [r7, #4] - 80020ac: 2200 movs r2, #0 - 80020ae: 631a str r2, [r3, #48] ; 0x30 + 80020e2: 687b ldr r3, [r7, #4] + 80020e4: 2200 movs r2, #0 + 80020e6: 631a str r2, [r3, #48] ; 0x30 hi2c->Mode = HAL_I2C_MODE_NONE; - 80020b0: 687b ldr r3, [r7, #4] - 80020b2: 2200 movs r2, #0 - 80020b4: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80020e8: 687b ldr r3, [r7, #4] + 80020ea: 2200 movs r2, #0 + 80020ec: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 80020b8: 2300 movs r3, #0 + 80020f0: 2300 movs r3, #0 } - 80020ba: 4618 mov r0, r3 - 80020bc: 3710 adds r7, #16 - 80020be: 46bd mov sp, r7 - 80020c0: bd80 pop {r7, pc} - 80020c2: bf00 nop - 80020c4: 000186a0 .word 0x000186a0 - 80020c8: 001e847f .word 0x001e847f - 80020cc: 003d08ff .word 0x003d08ff - 80020d0: 431bde83 .word 0x431bde83 - 80020d4: 10624dd3 .word 0x10624dd3 + 80020f2: 4618 mov r0, r3 + 80020f4: 3710 adds r7, #16 + 80020f6: 46bd mov sp, r7 + 80020f8: bd80 pop {r7, pc} + 80020fa: bf00 nop + 80020fc: 000186a0 .word 0x000186a0 + 8002100: 001e847f .word 0x001e847f + 8002104: 003d08ff .word 0x003d08ff + 8002108: 431bde83 .word 0x431bde83 + 800210c: 10624dd3 .word 0x10624dd3 -080020d8 : +08002110 : * @param Size Amount of data to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Mem_Write(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 80020d8: b580 push {r7, lr} - 80020da: b088 sub sp, #32 - 80020dc: af02 add r7, sp, #8 - 80020de: 60f8 str r0, [r7, #12] - 80020e0: 4608 mov r0, r1 - 80020e2: 4611 mov r1, r2 - 80020e4: 461a mov r2, r3 - 80020e6: 4603 mov r3, r0 - 80020e8: 817b strh r3, [r7, #10] - 80020ea: 460b mov r3, r1 - 80020ec: 813b strh r3, [r7, #8] - 80020ee: 4613 mov r3, r2 - 80020f0: 80fb strh r3, [r7, #6] + 8002110: b580 push {r7, lr} + 8002112: b088 sub sp, #32 + 8002114: af02 add r7, sp, #8 + 8002116: 60f8 str r0, [r7, #12] + 8002118: 4608 mov r0, r1 + 800211a: 4611 mov r1, r2 + 800211c: 461a mov r2, r3 + 800211e: 4603 mov r3, r0 + 8002120: 817b strh r3, [r7, #10] + 8002122: 460b mov r3, r1 + 8002124: 813b strh r3, [r7, #8] + 8002126: 4613 mov r3, r2 + 8002128: 80fb strh r3, [r7, #6] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 80020f2: f7ff fbd7 bl 80018a4 - 80020f6: 6178 str r0, [r7, #20] + 800212a: f7ff fbd7 bl 80018dc + 800212e: 6178 str r0, [r7, #20] /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 80020f8: 68fb ldr r3, [r7, #12] - 80020fa: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80020fe: b2db uxtb r3, r3 - 8002100: 2b20 cmp r3, #32 - 8002102: f040 80d9 bne.w 80022b8 + 8002130: 68fb ldr r3, [r7, #12] + 8002132: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002136: b2db uxtb r3, r3 + 8002138: 2b20 cmp r3, #32 + 800213a: f040 80d9 bne.w 80022f0 { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 8002106: 697b ldr r3, [r7, #20] - 8002108: 9300 str r3, [sp, #0] - 800210a: 2319 movs r3, #25 - 800210c: 2201 movs r2, #1 - 800210e: 496d ldr r1, [pc, #436] ; (80022c4 ) - 8002110: 68f8 ldr r0, [r7, #12] - 8002112: f000 fcc1 bl 8002a98 - 8002116: 4603 mov r3, r0 - 8002118: 2b00 cmp r3, #0 - 800211a: d001 beq.n 8002120 + 800213e: 697b ldr r3, [r7, #20] + 8002140: 9300 str r3, [sp, #0] + 8002142: 2319 movs r3, #25 + 8002144: 2201 movs r2, #1 + 8002146: 496d ldr r1, [pc, #436] ; (80022fc ) + 8002148: 68f8 ldr r0, [r7, #12] + 800214a: f000 fcc1 bl 8002ad0 + 800214e: 4603 mov r3, r0 + 8002150: 2b00 cmp r3, #0 + 8002152: d001 beq.n 8002158 { return HAL_BUSY; - 800211c: 2302 movs r3, #2 - 800211e: e0cc b.n 80022ba + 8002154: 2302 movs r3, #2 + 8002156: e0cc b.n 80022f2 } /* Process Locked */ __HAL_LOCK(hi2c); - 8002120: 68fb ldr r3, [r7, #12] - 8002122: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002126: 2b01 cmp r3, #1 - 8002128: d101 bne.n 800212e - 800212a: 2302 movs r3, #2 - 800212c: e0c5 b.n 80022ba - 800212e: 68fb ldr r3, [r7, #12] - 8002130: 2201 movs r2, #1 - 8002132: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002158: 68fb ldr r3, [r7, #12] + 800215a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800215e: 2b01 cmp r3, #1 + 8002160: d101 bne.n 8002166 + 8002162: 2302 movs r3, #2 + 8002164: e0c5 b.n 80022f2 + 8002166: 68fb ldr r3, [r7, #12] + 8002168: 2201 movs r2, #1 + 800216a: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check if the I2C is already enabled */ if ((hi2c->Instance->CR1 & I2C_CR1_PE) != I2C_CR1_PE) - 8002136: 68fb ldr r3, [r7, #12] - 8002138: 681b ldr r3, [r3, #0] - 800213a: 681b ldr r3, [r3, #0] - 800213c: f003 0301 and.w r3, r3, #1 - 8002140: 2b01 cmp r3, #1 - 8002142: d007 beq.n 8002154 + 800216e: 68fb ldr r3, [r7, #12] + 8002170: 681b ldr r3, [r3, #0] + 8002172: 681b ldr r3, [r3, #0] + 8002174: f003 0301 and.w r3, r3, #1 + 8002178: 2b01 cmp r3, #1 + 800217a: d007 beq.n 800218c { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002144: 68fb ldr r3, [r7, #12] - 8002146: 681b ldr r3, [r3, #0] - 8002148: 681a ldr r2, [r3, #0] - 800214a: 68fb ldr r3, [r7, #12] - 800214c: 681b ldr r3, [r3, #0] - 800214e: f042 0201 orr.w r2, r2, #1 - 8002152: 601a str r2, [r3, #0] + 800217c: 68fb ldr r3, [r7, #12] + 800217e: 681b ldr r3, [r3, #0] + 8002180: 681a ldr r2, [r3, #0] + 8002182: 68fb ldr r3, [r7, #12] + 8002184: 681b ldr r3, [r3, #0] + 8002186: f042 0201 orr.w r2, r2, #1 + 800218a: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 8002154: 68fb ldr r3, [r7, #12] - 8002156: 681b ldr r3, [r3, #0] - 8002158: 681a ldr r2, [r3, #0] - 800215a: 68fb ldr r3, [r7, #12] - 800215c: 681b ldr r3, [r3, #0] - 800215e: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 8002162: 601a str r2, [r3, #0] + 800218c: 68fb ldr r3, [r7, #12] + 800218e: 681b ldr r3, [r3, #0] + 8002190: 681a ldr r2, [r3, #0] + 8002192: 68fb ldr r3, [r7, #12] + 8002194: 681b ldr r3, [r3, #0] + 8002196: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 800219a: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_TX; - 8002164: 68fb ldr r3, [r7, #12] - 8002166: 2221 movs r2, #33 ; 0x21 - 8002168: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800219c: 68fb ldr r3, [r7, #12] + 800219e: 2221 movs r2, #33 ; 0x21 + 80021a0: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 800216c: 68fb ldr r3, [r7, #12] - 800216e: 2240 movs r2, #64 ; 0x40 - 8002170: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80021a4: 68fb ldr r3, [r7, #12] + 80021a6: 2240 movs r2, #64 ; 0x40 + 80021a8: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 8002174: 68fb ldr r3, [r7, #12] - 8002176: 2200 movs r2, #0 - 8002178: 641a str r2, [r3, #64] ; 0x40 + 80021ac: 68fb ldr r3, [r7, #12] + 80021ae: 2200 movs r2, #0 + 80021b0: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 800217a: 68fb ldr r3, [r7, #12] - 800217c: 6a3a ldr r2, [r7, #32] - 800217e: 625a str r2, [r3, #36] ; 0x24 + 80021b2: 68fb ldr r3, [r7, #12] + 80021b4: 6a3a ldr r2, [r7, #32] + 80021b6: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 8002180: 68fb ldr r3, [r7, #12] - 8002182: 8cba ldrh r2, [r7, #36] ; 0x24 - 8002184: 855a strh r2, [r3, #42] ; 0x2a + 80021b8: 68fb ldr r3, [r7, #12] + 80021ba: 8cba ldrh r2, [r7, #36] ; 0x24 + 80021bc: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 8002186: 68fb ldr r3, [r7, #12] - 8002188: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800218a: b29a uxth r2, r3 - 800218c: 68fb ldr r3, [r7, #12] - 800218e: 851a strh r2, [r3, #40] ; 0x28 + 80021be: 68fb ldr r3, [r7, #12] + 80021c0: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80021c2: b29a uxth r2, r3 + 80021c4: 68fb ldr r3, [r7, #12] + 80021c6: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 8002190: 68fb ldr r3, [r7, #12] - 8002192: 4a4d ldr r2, [pc, #308] ; (80022c8 ) - 8002194: 62da str r2, [r3, #44] ; 0x2c + 80021c8: 68fb ldr r3, [r7, #12] + 80021ca: 4a4d ldr r2, [pc, #308] ; (8002300 ) + 80021cc: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 8002196: 88f8 ldrh r0, [r7, #6] - 8002198: 893a ldrh r2, [r7, #8] - 800219a: 8979 ldrh r1, [r7, #10] - 800219c: 697b ldr r3, [r7, #20] - 800219e: 9301 str r3, [sp, #4] - 80021a0: 6abb ldr r3, [r7, #40] ; 0x28 - 80021a2: 9300 str r3, [sp, #0] - 80021a4: 4603 mov r3, r0 - 80021a6: 68f8 ldr r0, [r7, #12] - 80021a8: f000 faf8 bl 800279c - 80021ac: 4603 mov r3, r0 - 80021ae: 2b00 cmp r3, #0 - 80021b0: d052 beq.n 8002258 + 80021ce: 88f8 ldrh r0, [r7, #6] + 80021d0: 893a ldrh r2, [r7, #8] + 80021d2: 8979 ldrh r1, [r7, #10] + 80021d4: 697b ldr r3, [r7, #20] + 80021d6: 9301 str r3, [sp, #4] + 80021d8: 6abb ldr r3, [r7, #40] ; 0x28 + 80021da: 9300 str r3, [sp, #0] + 80021dc: 4603 mov r3, r0 + 80021de: 68f8 ldr r0, [r7, #12] + 80021e0: f000 faf8 bl 80027d4 + 80021e4: 4603 mov r3, r0 + 80021e6: 2b00 cmp r3, #0 + 80021e8: d052 beq.n 8002290 { return HAL_ERROR; - 80021b2: 2301 movs r3, #1 - 80021b4: e081 b.n 80022ba + 80021ea: 2301 movs r3, #1 + 80021ec: e081 b.n 80022f2 } while (hi2c->XferSize > 0U) { /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80021b6: 697a ldr r2, [r7, #20] - 80021b8: 6ab9 ldr r1, [r7, #40] ; 0x28 - 80021ba: 68f8 ldr r0, [r7, #12] - 80021bc: f000 fd42 bl 8002c44 - 80021c0: 4603 mov r3, r0 - 80021c2: 2b00 cmp r3, #0 - 80021c4: d00d beq.n 80021e2 + 80021ee: 697a ldr r2, [r7, #20] + 80021f0: 6ab9 ldr r1, [r7, #40] ; 0x28 + 80021f2: 68f8 ldr r0, [r7, #12] + 80021f4: f000 fd42 bl 8002c7c + 80021f8: 4603 mov r3, r0 + 80021fa: 2b00 cmp r3, #0 + 80021fc: d00d beq.n 800221a { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 80021c6: 68fb ldr r3, [r7, #12] - 80021c8: 6c1b ldr r3, [r3, #64] ; 0x40 - 80021ca: 2b04 cmp r3, #4 - 80021cc: d107 bne.n 80021de + 80021fe: 68fb ldr r3, [r7, #12] + 8002200: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002202: 2b04 cmp r3, #4 + 8002204: d107 bne.n 8002216 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80021ce: 68fb ldr r3, [r7, #12] - 80021d0: 681b ldr r3, [r3, #0] - 80021d2: 681a ldr r2, [r3, #0] - 80021d4: 68fb ldr r3, [r7, #12] - 80021d6: 681b ldr r3, [r3, #0] - 80021d8: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80021dc: 601a str r2, [r3, #0] + 8002206: 68fb ldr r3, [r7, #12] + 8002208: 681b ldr r3, [r3, #0] + 800220a: 681a ldr r2, [r3, #0] + 800220c: 68fb ldr r3, [r7, #12] + 800220e: 681b ldr r3, [r3, #0] + 8002210: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002214: 601a str r2, [r3, #0] } return HAL_ERROR; - 80021de: 2301 movs r3, #1 - 80021e0: e06b b.n 80022ba + 8002216: 2301 movs r3, #1 + 8002218: e06b b.n 80022f2 } /* Write data to DR */ hi2c->Instance->DR = *hi2c->pBuffPtr; - 80021e2: 68fb ldr r3, [r7, #12] - 80021e4: 6a5b ldr r3, [r3, #36] ; 0x24 - 80021e6: 781a ldrb r2, [r3, #0] - 80021e8: 68fb ldr r3, [r7, #12] - 80021ea: 681b ldr r3, [r3, #0] - 80021ec: 611a str r2, [r3, #16] + 800221a: 68fb ldr r3, [r7, #12] + 800221c: 6a5b ldr r3, [r3, #36] ; 0x24 + 800221e: 781a ldrb r2, [r3, #0] + 8002220: 68fb ldr r3, [r7, #12] + 8002222: 681b ldr r3, [r3, #0] + 8002224: 611a str r2, [r3, #16] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80021ee: 68fb ldr r3, [r7, #12] - 80021f0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80021f2: 1c5a adds r2, r3, #1 - 80021f4: 68fb ldr r3, [r7, #12] - 80021f6: 625a str r2, [r3, #36] ; 0x24 + 8002226: 68fb ldr r3, [r7, #12] + 8002228: 6a5b ldr r3, [r3, #36] ; 0x24 + 800222a: 1c5a adds r2, r3, #1 + 800222c: 68fb ldr r3, [r7, #12] + 800222e: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80021f8: 68fb ldr r3, [r7, #12] - 80021fa: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80021fc: 3b01 subs r3, #1 - 80021fe: b29a uxth r2, r3 - 8002200: 68fb ldr r3, [r7, #12] - 8002202: 851a strh r2, [r3, #40] ; 0x28 + 8002230: 68fb ldr r3, [r7, #12] + 8002232: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002234: 3b01 subs r3, #1 + 8002236: b29a uxth r2, r3 + 8002238: 68fb ldr r3, [r7, #12] + 800223a: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002204: 68fb ldr r3, [r7, #12] - 8002206: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002208: b29b uxth r3, r3 - 800220a: 3b01 subs r3, #1 - 800220c: b29a uxth r2, r3 - 800220e: 68fb ldr r3, [r7, #12] - 8002210: 855a strh r2, [r3, #42] ; 0x2a - - if ((__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) && (hi2c->XferSize != 0U)) - 8002212: 68fb ldr r3, [r7, #12] - 8002214: 681b ldr r3, [r3, #0] - 8002216: 695b ldr r3, [r3, #20] - 8002218: f003 0304 and.w r3, r3, #4 - 800221c: 2b04 cmp r3, #4 - 800221e: d11b bne.n 8002258 - 8002220: 68fb ldr r3, [r7, #12] - 8002222: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002224: 2b00 cmp r3, #0 - 8002226: d017 beq.n 8002258 - { - /* Write data to DR */ - hi2c->Instance->DR = *hi2c->pBuffPtr; - 8002228: 68fb ldr r3, [r7, #12] - 800222a: 6a5b ldr r3, [r3, #36] ; 0x24 - 800222c: 781a ldrb r2, [r3, #0] - 800222e: 68fb ldr r3, [r7, #12] - 8002230: 681b ldr r3, [r3, #0] - 8002232: 611a str r2, [r3, #16] - - /* Increment Buffer pointer */ - hi2c->pBuffPtr++; - 8002234: 68fb ldr r3, [r7, #12] - 8002236: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002238: 1c5a adds r2, r3, #1 - 800223a: 68fb ldr r3, [r7, #12] - 800223c: 625a str r2, [r3, #36] ; 0x24 - - /* Update counter */ - hi2c->XferSize--; - 800223e: 68fb ldr r3, [r7, #12] - 8002240: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800223c: 68fb ldr r3, [r7, #12] + 800223e: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002240: b29b uxth r3, r3 8002242: 3b01 subs r3, #1 8002244: b29a uxth r2, r3 8002246: 68fb ldr r3, [r7, #12] - 8002248: 851a strh r2, [r3, #40] ; 0x28 - hi2c->XferCount--; + 8002248: 855a strh r2, [r3, #42] ; 0x2a + + if ((__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) && (hi2c->XferSize != 0U)) 800224a: 68fb ldr r3, [r7, #12] - 800224c: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800224e: b29b uxth r3, r3 - 8002250: 3b01 subs r3, #1 - 8002252: b29a uxth r2, r3 - 8002254: 68fb ldr r3, [r7, #12] - 8002256: 855a strh r2, [r3, #42] ; 0x2a - while (hi2c->XferSize > 0U) + 800224c: 681b ldr r3, [r3, #0] + 800224e: 695b ldr r3, [r3, #20] + 8002250: f003 0304 and.w r3, r3, #4 + 8002254: 2b04 cmp r3, #4 + 8002256: d11b bne.n 8002290 8002258: 68fb ldr r3, [r7, #12] 800225a: 8d1b ldrh r3, [r3, #40] ; 0x28 800225c: 2b00 cmp r3, #0 - 800225e: d1aa bne.n 80021b6 + 800225e: d017 beq.n 8002290 + { + /* Write data to DR */ + hi2c->Instance->DR = *hi2c->pBuffPtr; + 8002260: 68fb ldr r3, [r7, #12] + 8002262: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002264: 781a ldrb r2, [r3, #0] + 8002266: 68fb ldr r3, [r7, #12] + 8002268: 681b ldr r3, [r3, #0] + 800226a: 611a str r2, [r3, #16] + + /* Increment Buffer pointer */ + hi2c->pBuffPtr++; + 800226c: 68fb ldr r3, [r7, #12] + 800226e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002270: 1c5a adds r2, r3, #1 + 8002272: 68fb ldr r3, [r7, #12] + 8002274: 625a str r2, [r3, #36] ; 0x24 + + /* Update counter */ + hi2c->XferSize--; + 8002276: 68fb ldr r3, [r7, #12] + 8002278: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800227a: 3b01 subs r3, #1 + 800227c: b29a uxth r2, r3 + 800227e: 68fb ldr r3, [r7, #12] + 8002280: 851a strh r2, [r3, #40] ; 0x28 + hi2c->XferCount--; + 8002282: 68fb ldr r3, [r7, #12] + 8002284: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002286: b29b uxth r3, r3 + 8002288: 3b01 subs r3, #1 + 800228a: b29a uxth r2, r3 + 800228c: 68fb ldr r3, [r7, #12] + 800228e: 855a strh r2, [r3, #42] ; 0x2a + while (hi2c->XferSize > 0U) + 8002290: 68fb ldr r3, [r7, #12] + 8002292: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002294: 2b00 cmp r3, #0 + 8002296: d1aa bne.n 80021ee } } /* Wait until BTF flag is set */ if (I2C_WaitOnBTFFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 8002260: 697a ldr r2, [r7, #20] - 8002262: 6ab9 ldr r1, [r7, #40] ; 0x28 - 8002264: 68f8 ldr r0, [r7, #12] - 8002266: f000 fd2e bl 8002cc6 - 800226a: 4603 mov r3, r0 - 800226c: 2b00 cmp r3, #0 - 800226e: d00d beq.n 800228c + 8002298: 697a ldr r2, [r7, #20] + 800229a: 6ab9 ldr r1, [r7, #40] ; 0x28 + 800229c: 68f8 ldr r0, [r7, #12] + 800229e: f000 fd2e bl 8002cfe + 80022a2: 4603 mov r3, r0 + 80022a4: 2b00 cmp r3, #0 + 80022a6: d00d beq.n 80022c4 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002270: 68fb ldr r3, [r7, #12] - 8002272: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002274: 2b04 cmp r3, #4 - 8002276: d107 bne.n 8002288 + 80022a8: 68fb ldr r3, [r7, #12] + 80022aa: 6c1b ldr r3, [r3, #64] ; 0x40 + 80022ac: 2b04 cmp r3, #4 + 80022ae: d107 bne.n 80022c0 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002278: 68fb ldr r3, [r7, #12] - 800227a: 681b ldr r3, [r3, #0] - 800227c: 681a ldr r2, [r3, #0] - 800227e: 68fb ldr r3, [r7, #12] - 8002280: 681b ldr r3, [r3, #0] - 8002282: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002286: 601a str r2, [r3, #0] + 80022b0: 68fb ldr r3, [r7, #12] + 80022b2: 681b ldr r3, [r3, #0] + 80022b4: 681a ldr r2, [r3, #0] + 80022b6: 68fb ldr r3, [r7, #12] + 80022b8: 681b ldr r3, [r3, #0] + 80022ba: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80022be: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002288: 2301 movs r3, #1 - 800228a: e016 b.n 80022ba + 80022c0: 2301 movs r3, #1 + 80022c2: e016 b.n 80022f2 } /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800228c: 68fb ldr r3, [r7, #12] - 800228e: 681b ldr r3, [r3, #0] - 8002290: 681a ldr r2, [r3, #0] - 8002292: 68fb ldr r3, [r7, #12] - 8002294: 681b ldr r3, [r3, #0] - 8002296: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800229a: 601a str r2, [r3, #0] + 80022c4: 68fb ldr r3, [r7, #12] + 80022c6: 681b ldr r3, [r3, #0] + 80022c8: 681a ldr r2, [r3, #0] + 80022ca: 68fb ldr r3, [r7, #12] + 80022cc: 681b ldr r3, [r3, #0] + 80022ce: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80022d2: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_READY; - 800229c: 68fb ldr r3, [r7, #12] - 800229e: 2220 movs r2, #32 - 80022a0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80022d4: 68fb ldr r3, [r7, #12] + 80022d6: 2220 movs r2, #32 + 80022d8: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 80022a4: 68fb ldr r3, [r7, #12] - 80022a6: 2200 movs r2, #0 - 80022a8: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80022dc: 68fb ldr r3, [r7, #12] + 80022de: 2200 movs r2, #0 + 80022e0: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 80022ac: 68fb ldr r3, [r7, #12] - 80022ae: 2200 movs r2, #0 - 80022b0: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80022e4: 68fb ldr r3, [r7, #12] + 80022e6: 2200 movs r2, #0 + 80022e8: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 80022b4: 2300 movs r3, #0 - 80022b6: e000 b.n 80022ba + 80022ec: 2300 movs r3, #0 + 80022ee: e000 b.n 80022f2 } else { return HAL_BUSY; - 80022b8: 2302 movs r3, #2 + 80022f0: 2302 movs r3, #2 } } - 80022ba: 4618 mov r0, r3 - 80022bc: 3718 adds r7, #24 - 80022be: 46bd mov sp, r7 - 80022c0: bd80 pop {r7, pc} - 80022c2: bf00 nop - 80022c4: 00100002 .word 0x00100002 - 80022c8: ffff0000 .word 0xffff0000 + 80022f2: 4618 mov r0, r3 + 80022f4: 3718 adds r7, #24 + 80022f6: 46bd mov sp, r7 + 80022f8: bd80 pop {r7, pc} + 80022fa: bf00 nop + 80022fc: 00100002 .word 0x00100002 + 8002300: ffff0000 .word 0xffff0000 -080022cc : +08002304 : * @param Size Amount of data to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_I2C_Mem_Read(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 80022cc: b580 push {r7, lr} - 80022ce: b08c sub sp, #48 ; 0x30 - 80022d0: af02 add r7, sp, #8 - 80022d2: 60f8 str r0, [r7, #12] - 80022d4: 4608 mov r0, r1 - 80022d6: 4611 mov r1, r2 - 80022d8: 461a mov r2, r3 - 80022da: 4603 mov r3, r0 - 80022dc: 817b strh r3, [r7, #10] - 80022de: 460b mov r3, r1 - 80022e0: 813b strh r3, [r7, #8] - 80022e2: 4613 mov r3, r2 - 80022e4: 80fb strh r3, [r7, #6] + 8002304: b580 push {r7, lr} + 8002306: b08c sub sp, #48 ; 0x30 + 8002308: af02 add r7, sp, #8 + 800230a: 60f8 str r0, [r7, #12] + 800230c: 4608 mov r0, r1 + 800230e: 4611 mov r1, r2 + 8002310: 461a mov r2, r3 + 8002312: 4603 mov r3, r0 + 8002314: 817b strh r3, [r7, #10] + 8002316: 460b mov r3, r1 + 8002318: 813b strh r3, [r7, #8] + 800231a: 4613 mov r3, r2 + 800231c: 80fb strh r3, [r7, #6] __IO uint32_t count = 0U; - 80022e6: 2300 movs r3, #0 - 80022e8: 623b str r3, [r7, #32] + 800231e: 2300 movs r3, #0 + 8002320: 623b str r3, [r7, #32] /* Init tickstart for timeout management*/ uint32_t tickstart = HAL_GetTick(); - 80022ea: f7ff fadb bl 80018a4 - 80022ee: 6278 str r0, [r7, #36] ; 0x24 + 8002322: f7ff fadb bl 80018dc + 8002326: 6278 str r0, [r7, #36] ; 0x24 /* Check the parameters */ assert_param(IS_I2C_MEMADD_SIZE(MemAddSize)); if (hi2c->State == HAL_I2C_STATE_READY) - 80022f0: 68fb ldr r3, [r7, #12] - 80022f2: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 80022f6: b2db uxtb r3, r3 - 80022f8: 2b20 cmp r3, #32 - 80022fa: f040 8244 bne.w 8002786 + 8002328: 68fb ldr r3, [r7, #12] + 800232a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 800232e: b2db uxtb r3, r3 + 8002330: 2b20 cmp r3, #32 + 8002332: f040 8244 bne.w 80027be { /* Wait until BUSY flag is reset */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BUSY, SET, I2C_TIMEOUT_BUSY_FLAG, tickstart) != HAL_OK) - 80022fe: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002300: 9300 str r3, [sp, #0] - 8002302: 2319 movs r3, #25 - 8002304: 2201 movs r2, #1 - 8002306: 4982 ldr r1, [pc, #520] ; (8002510 ) - 8002308: 68f8 ldr r0, [r7, #12] - 800230a: f000 fbc5 bl 8002a98 - 800230e: 4603 mov r3, r0 - 8002310: 2b00 cmp r3, #0 - 8002312: d001 beq.n 8002318 + 8002336: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002338: 9300 str r3, [sp, #0] + 800233a: 2319 movs r3, #25 + 800233c: 2201 movs r2, #1 + 800233e: 4982 ldr r1, [pc, #520] ; (8002548 ) + 8002340: 68f8 ldr r0, [r7, #12] + 8002342: f000 fbc5 bl 8002ad0 + 8002346: 4603 mov r3, r0 + 8002348: 2b00 cmp r3, #0 + 800234a: d001 beq.n 8002350 { return HAL_BUSY; - 8002314: 2302 movs r3, #2 - 8002316: e237 b.n 8002788 + 800234c: 2302 movs r3, #2 + 800234e: e237 b.n 80027c0 } /* Process Locked */ __HAL_LOCK(hi2c); - 8002318: 68fb ldr r3, [r7, #12] - 800231a: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 800231e: 2b01 cmp r3, #1 - 8002320: d101 bne.n 8002326 - 8002322: 2302 movs r3, #2 - 8002324: e230 b.n 8002788 - 8002326: 68fb ldr r3, [r7, #12] - 8002328: 2201 movs r2, #1 - 800232a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002350: 68fb ldr r3, [r7, #12] + 8002352: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 8002356: 2b01 cmp r3, #1 + 8002358: d101 bne.n 800235e + 800235a: 2302 movs r3, #2 + 800235c: e230 b.n 80027c0 + 800235e: 68fb ldr r3, [r7, #12] + 8002360: 2201 movs r2, #1 + 8002362: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check if the I2C is already enabled */ if ((hi2c->Instance->CR1 & I2C_CR1_PE) != I2C_CR1_PE) - 800232e: 68fb ldr r3, [r7, #12] - 8002330: 681b ldr r3, [r3, #0] - 8002332: 681b ldr r3, [r3, #0] - 8002334: f003 0301 and.w r3, r3, #1 - 8002338: 2b01 cmp r3, #1 - 800233a: d007 beq.n 800234c + 8002366: 68fb ldr r3, [r7, #12] + 8002368: 681b ldr r3, [r3, #0] + 800236a: 681b ldr r3, [r3, #0] + 800236c: f003 0301 and.w r3, r3, #1 + 8002370: 2b01 cmp r3, #1 + 8002372: d007 beq.n 8002384 { /* Enable I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 800233c: 68fb ldr r3, [r7, #12] - 800233e: 681b ldr r3, [r3, #0] - 8002340: 681a ldr r2, [r3, #0] - 8002342: 68fb ldr r3, [r7, #12] - 8002344: 681b ldr r3, [r3, #0] - 8002346: f042 0201 orr.w r2, r2, #1 - 800234a: 601a str r2, [r3, #0] + 8002374: 68fb ldr r3, [r7, #12] + 8002376: 681b ldr r3, [r3, #0] + 8002378: 681a ldr r2, [r3, #0] + 800237a: 68fb ldr r3, [r7, #12] + 800237c: 681b ldr r3, [r3, #0] + 800237e: f042 0201 orr.w r2, r2, #1 + 8002382: 601a str r2, [r3, #0] } /* Disable Pos */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 800234c: 68fb ldr r3, [r7, #12] - 800234e: 681b ldr r3, [r3, #0] - 8002350: 681a ldr r2, [r3, #0] - 8002352: 68fb ldr r3, [r7, #12] - 8002354: 681b ldr r3, [r3, #0] - 8002356: f422 6200 bic.w r2, r2, #2048 ; 0x800 - 800235a: 601a str r2, [r3, #0] + 8002384: 68fb ldr r3, [r7, #12] + 8002386: 681b ldr r3, [r3, #0] + 8002388: 681a ldr r2, [r3, #0] + 800238a: 68fb ldr r3, [r7, #12] + 800238c: 681b ldr r3, [r3, #0] + 800238e: f422 6200 bic.w r2, r2, #2048 ; 0x800 + 8002392: 601a str r2, [r3, #0] hi2c->State = HAL_I2C_STATE_BUSY_RX; - 800235c: 68fb ldr r3, [r7, #12] - 800235e: 2222 movs r2, #34 ; 0x22 - 8002360: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002394: 68fb ldr r3, [r7, #12] + 8002396: 2222 movs r2, #34 ; 0x22 + 8002398: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_MEM; - 8002364: 68fb ldr r3, [r7, #12] - 8002366: 2240 movs r2, #64 ; 0x40 - 8002368: f883 203e strb.w r2, [r3, #62] ; 0x3e + 800239c: 68fb ldr r3, [r7, #12] + 800239e: 2240 movs r2, #64 ; 0x40 + 80023a0: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 800236c: 68fb ldr r3, [r7, #12] - 800236e: 2200 movs r2, #0 - 8002370: 641a str r2, [r3, #64] ; 0x40 + 80023a4: 68fb ldr r3, [r7, #12] + 80023a6: 2200 movs r2, #0 + 80023a8: 641a str r2, [r3, #64] ; 0x40 /* Prepare transfer parameters */ hi2c->pBuffPtr = pData; - 8002372: 68fb ldr r3, [r7, #12] - 8002374: 6b3a ldr r2, [r7, #48] ; 0x30 - 8002376: 625a str r2, [r3, #36] ; 0x24 + 80023aa: 68fb ldr r3, [r7, #12] + 80023ac: 6b3a ldr r2, [r7, #48] ; 0x30 + 80023ae: 625a str r2, [r3, #36] ; 0x24 hi2c->XferCount = Size; - 8002378: 68fb ldr r3, [r7, #12] - 800237a: 8eba ldrh r2, [r7, #52] ; 0x34 - 800237c: 855a strh r2, [r3, #42] ; 0x2a + 80023b0: 68fb ldr r3, [r7, #12] + 80023b2: 8eba ldrh r2, [r7, #52] ; 0x34 + 80023b4: 855a strh r2, [r3, #42] ; 0x2a hi2c->XferSize = hi2c->XferCount; - 800237e: 68fb ldr r3, [r7, #12] - 8002380: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002382: b29a uxth r2, r3 - 8002384: 68fb ldr r3, [r7, #12] - 8002386: 851a strh r2, [r3, #40] ; 0x28 + 80023b6: 68fb ldr r3, [r7, #12] + 80023b8: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80023ba: b29a uxth r2, r3 + 80023bc: 68fb ldr r3, [r7, #12] + 80023be: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferOptions = I2C_NO_OPTION_FRAME; - 8002388: 68fb ldr r3, [r7, #12] - 800238a: 4a62 ldr r2, [pc, #392] ; (8002514 ) - 800238c: 62da str r2, [r3, #44] ; 0x2c + 80023c0: 68fb ldr r3, [r7, #12] + 80023c2: 4a62 ldr r2, [pc, #392] ; (800254c ) + 80023c4: 62da str r2, [r3, #44] ; 0x2c /* Send Slave Address and Memory Address */ if (I2C_RequestMemoryRead(hi2c, DevAddress, MemAddress, MemAddSize, Timeout, tickstart) != HAL_OK) - 800238e: 88f8 ldrh r0, [r7, #6] - 8002390: 893a ldrh r2, [r7, #8] - 8002392: 8979 ldrh r1, [r7, #10] - 8002394: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002396: 9301 str r3, [sp, #4] - 8002398: 6bbb ldr r3, [r7, #56] ; 0x38 - 800239a: 9300 str r3, [sp, #0] - 800239c: 4603 mov r3, r0 - 800239e: 68f8 ldr r0, [r7, #12] - 80023a0: f000 fa92 bl 80028c8 - 80023a4: 4603 mov r3, r0 - 80023a6: 2b00 cmp r3, #0 - 80023a8: d001 beq.n 80023ae + 80023c6: 88f8 ldrh r0, [r7, #6] + 80023c8: 893a ldrh r2, [r7, #8] + 80023ca: 8979 ldrh r1, [r7, #10] + 80023cc: 6a7b ldr r3, [r7, #36] ; 0x24 + 80023ce: 9301 str r3, [sp, #4] + 80023d0: 6bbb ldr r3, [r7, #56] ; 0x38 + 80023d2: 9300 str r3, [sp, #0] + 80023d4: 4603 mov r3, r0 + 80023d6: 68f8 ldr r0, [r7, #12] + 80023d8: f000 fa92 bl 8002900 + 80023dc: 4603 mov r3, r0 + 80023de: 2b00 cmp r3, #0 + 80023e0: d001 beq.n 80023e6 { return HAL_ERROR; - 80023aa: 2301 movs r3, #1 - 80023ac: e1ec b.n 8002788 + 80023e2: 2301 movs r3, #1 + 80023e4: e1ec b.n 80027c0 } if (hi2c->XferSize == 0U) - 80023ae: 68fb ldr r3, [r7, #12] - 80023b0: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80023b2: 2b00 cmp r3, #0 - 80023b4: d113 bne.n 80023de + 80023e6: 68fb ldr r3, [r7, #12] + 80023e8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80023ea: 2b00 cmp r3, #0 + 80023ec: d113 bne.n 8002416 { /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 80023b6: 2300 movs r3, #0 - 80023b8: 61fb str r3, [r7, #28] - 80023ba: 68fb ldr r3, [r7, #12] - 80023bc: 681b ldr r3, [r3, #0] - 80023be: 695b ldr r3, [r3, #20] - 80023c0: 61fb str r3, [r7, #28] - 80023c2: 68fb ldr r3, [r7, #12] - 80023c4: 681b ldr r3, [r3, #0] - 80023c6: 699b ldr r3, [r3, #24] - 80023c8: 61fb str r3, [r7, #28] - 80023ca: 69fb ldr r3, [r7, #28] + 80023ee: 2300 movs r3, #0 + 80023f0: 61fb str r3, [r7, #28] + 80023f2: 68fb ldr r3, [r7, #12] + 80023f4: 681b ldr r3, [r3, #0] + 80023f6: 695b ldr r3, [r3, #20] + 80023f8: 61fb str r3, [r7, #28] + 80023fa: 68fb ldr r3, [r7, #12] + 80023fc: 681b ldr r3, [r3, #0] + 80023fe: 699b ldr r3, [r3, #24] + 8002400: 61fb str r3, [r7, #28] + 8002402: 69fb ldr r3, [r7, #28] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80023cc: 68fb ldr r3, [r7, #12] - 80023ce: 681b ldr r3, [r3, #0] - 80023d0: 681a ldr r2, [r3, #0] - 80023d2: 68fb ldr r3, [r7, #12] - 80023d4: 681b ldr r3, [r3, #0] - 80023d6: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80023da: 601a str r2, [r3, #0] - 80023dc: e1c0 b.n 8002760 + 8002404: 68fb ldr r3, [r7, #12] + 8002406: 681b ldr r3, [r3, #0] + 8002408: 681a ldr r2, [r3, #0] + 800240a: 68fb ldr r3, [r7, #12] + 800240c: 681b ldr r3, [r3, #0] + 800240e: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002412: 601a str r2, [r3, #0] + 8002414: e1c0 b.n 8002798 } else if (hi2c->XferSize == 1U) - 80023de: 68fb ldr r3, [r7, #12] - 80023e0: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80023e2: 2b01 cmp r3, #1 - 80023e4: d11e bne.n 8002424 + 8002416: 68fb ldr r3, [r7, #12] + 8002418: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800241a: 2b01 cmp r3, #1 + 800241c: d11e bne.n 800245c { /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80023e6: 68fb ldr r3, [r7, #12] - 80023e8: 681b ldr r3, [r3, #0] - 80023ea: 681a ldr r2, [r3, #0] - 80023ec: 68fb ldr r3, [r7, #12] - 80023ee: 681b ldr r3, [r3, #0] - 80023f0: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 80023f4: 601a str r2, [r3, #0] + 800241e: 68fb ldr r3, [r7, #12] + 8002420: 681b ldr r3, [r3, #0] + 8002422: 681a ldr r2, [r3, #0] + 8002424: 68fb ldr r3, [r7, #12] + 8002426: 681b ldr r3, [r3, #0] + 8002428: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 800242c: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 80023f6: b672 cpsid i + 800242e: b672 cpsid i } - 80023f8: bf00 nop + 8002430: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 80023fa: 2300 movs r3, #0 - 80023fc: 61bb str r3, [r7, #24] - 80023fe: 68fb ldr r3, [r7, #12] - 8002400: 681b ldr r3, [r3, #0] - 8002402: 695b ldr r3, [r3, #20] - 8002404: 61bb str r3, [r7, #24] - 8002406: 68fb ldr r3, [r7, #12] - 8002408: 681b ldr r3, [r3, #0] - 800240a: 699b ldr r3, [r3, #24] - 800240c: 61bb str r3, [r7, #24] - 800240e: 69bb ldr r3, [r7, #24] + 8002432: 2300 movs r3, #0 + 8002434: 61bb str r3, [r7, #24] + 8002436: 68fb ldr r3, [r7, #12] + 8002438: 681b ldr r3, [r3, #0] + 800243a: 695b ldr r3, [r3, #20] + 800243c: 61bb str r3, [r7, #24] + 800243e: 68fb ldr r3, [r7, #12] + 8002440: 681b ldr r3, [r3, #0] + 8002442: 699b ldr r3, [r3, #24] + 8002444: 61bb str r3, [r7, #24] + 8002446: 69bb ldr r3, [r7, #24] /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002410: 68fb ldr r3, [r7, #12] - 8002412: 681b ldr r3, [r3, #0] - 8002414: 681a ldr r2, [r3, #0] - 8002416: 68fb ldr r3, [r7, #12] - 8002418: 681b ldr r3, [r3, #0] - 800241a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800241e: 601a str r2, [r3, #0] + 8002448: 68fb ldr r3, [r7, #12] + 800244a: 681b ldr r3, [r3, #0] + 800244c: 681a ldr r2, [r3, #0] + 800244e: 68fb ldr r3, [r7, #12] + 8002450: 681b ldr r3, [r3, #0] + 8002452: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002456: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 8002420: b662 cpsie i + 8002458: b662 cpsie i } - 8002422: e035 b.n 8002490 + 800245a: e035 b.n 80024c8 /* Re-enable IRQs */ __enable_irq(); } else if (hi2c->XferSize == 2U) - 8002424: 68fb ldr r3, [r7, #12] - 8002426: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002428: 2b02 cmp r3, #2 - 800242a: d11e bne.n 800246a + 800245c: 68fb ldr r3, [r7, #12] + 800245e: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002460: 2b02 cmp r3, #2 + 8002462: d11e bne.n 80024a2 { /* Enable Pos */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_POS); - 800242c: 68fb ldr r3, [r7, #12] - 800242e: 681b ldr r3, [r3, #0] - 8002430: 681a ldr r2, [r3, #0] - 8002432: 68fb ldr r3, [r7, #12] - 8002434: 681b ldr r3, [r3, #0] - 8002436: f442 6200 orr.w r2, r2, #2048 ; 0x800 - 800243a: 601a str r2, [r3, #0] + 8002464: 68fb ldr r3, [r7, #12] + 8002466: 681b ldr r3, [r3, #0] + 8002468: 681a ldr r2, [r3, #0] + 800246a: 68fb ldr r3, [r7, #12] + 800246c: 681b ldr r3, [r3, #0] + 800246e: f442 6200 orr.w r2, r2, #2048 ; 0x800 + 8002472: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 800243c: b672 cpsid i + 8002474: b672 cpsid i } - 800243e: bf00 nop + 8002476: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002440: 2300 movs r3, #0 - 8002442: 617b str r3, [r7, #20] - 8002444: 68fb ldr r3, [r7, #12] - 8002446: 681b ldr r3, [r3, #0] - 8002448: 695b ldr r3, [r3, #20] - 800244a: 617b str r3, [r7, #20] - 800244c: 68fb ldr r3, [r7, #12] - 800244e: 681b ldr r3, [r3, #0] - 8002450: 699b ldr r3, [r3, #24] - 8002452: 617b str r3, [r7, #20] - 8002454: 697b ldr r3, [r7, #20] + 8002478: 2300 movs r3, #0 + 800247a: 617b str r3, [r7, #20] + 800247c: 68fb ldr r3, [r7, #12] + 800247e: 681b ldr r3, [r3, #0] + 8002480: 695b ldr r3, [r3, #20] + 8002482: 617b str r3, [r7, #20] + 8002484: 68fb ldr r3, [r7, #12] + 8002486: 681b ldr r3, [r3, #0] + 8002488: 699b ldr r3, [r3, #24] + 800248a: 617b str r3, [r7, #20] + 800248c: 697b ldr r3, [r7, #20] /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 8002456: 68fb ldr r3, [r7, #12] - 8002458: 681b ldr r3, [r3, #0] - 800245a: 681a ldr r2, [r3, #0] - 800245c: 68fb ldr r3, [r7, #12] - 800245e: 681b ldr r3, [r3, #0] - 8002460: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 8002464: 601a str r2, [r3, #0] + 800248e: 68fb ldr r3, [r7, #12] + 8002490: 681b ldr r3, [r3, #0] + 8002492: 681a ldr r2, [r3, #0] + 8002494: 68fb ldr r3, [r7, #12] + 8002496: 681b ldr r3, [r3, #0] + 8002498: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 800249c: 601a str r2, [r3, #0] __ASM volatile ("cpsie i" : : : "memory"); - 8002466: b662 cpsie i + 800249e: b662 cpsie i } - 8002468: e012 b.n 8002490 + 80024a0: e012 b.n 80024c8 __enable_irq(); } else { /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 800246a: 68fb ldr r3, [r7, #12] - 800246c: 681b ldr r3, [r3, #0] - 800246e: 681a ldr r2, [r3, #0] - 8002470: 68fb ldr r3, [r7, #12] - 8002472: 681b ldr r3, [r3, #0] - 8002474: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 8002478: 601a str r2, [r3, #0] + 80024a2: 68fb ldr r3, [r7, #12] + 80024a4: 681b ldr r3, [r3, #0] + 80024a6: 681a ldr r2, [r3, #0] + 80024a8: 68fb ldr r3, [r7, #12] + 80024aa: 681b ldr r3, [r3, #0] + 80024ac: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 80024b0: 601a str r2, [r3, #0] /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 800247a: 2300 movs r3, #0 - 800247c: 613b str r3, [r7, #16] - 800247e: 68fb ldr r3, [r7, #12] - 8002480: 681b ldr r3, [r3, #0] - 8002482: 695b ldr r3, [r3, #20] - 8002484: 613b str r3, [r7, #16] - 8002486: 68fb ldr r3, [r7, #12] - 8002488: 681b ldr r3, [r3, #0] - 800248a: 699b ldr r3, [r3, #24] - 800248c: 613b str r3, [r7, #16] - 800248e: 693b ldr r3, [r7, #16] + 80024b2: 2300 movs r3, #0 + 80024b4: 613b str r3, [r7, #16] + 80024b6: 68fb ldr r3, [r7, #12] + 80024b8: 681b ldr r3, [r3, #0] + 80024ba: 695b ldr r3, [r3, #20] + 80024bc: 613b str r3, [r7, #16] + 80024be: 68fb ldr r3, [r7, #12] + 80024c0: 681b ldr r3, [r3, #0] + 80024c2: 699b ldr r3, [r3, #24] + 80024c4: 613b str r3, [r7, #16] + 80024c6: 693b ldr r3, [r7, #16] } while (hi2c->XferSize > 0U) - 8002490: e166 b.n 8002760 + 80024c8: e166 b.n 8002798 { if (hi2c->XferSize <= 3U) - 8002492: 68fb ldr r3, [r7, #12] - 8002494: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002496: 2b03 cmp r3, #3 - 8002498: f200 811f bhi.w 80026da + 80024ca: 68fb ldr r3, [r7, #12] + 80024cc: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80024ce: 2b03 cmp r3, #3 + 80024d0: f200 811f bhi.w 8002712 { /* One byte */ if (hi2c->XferSize == 1U) - 800249c: 68fb ldr r3, [r7, #12] - 800249e: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80024a0: 2b01 cmp r3, #1 - 80024a2: d123 bne.n 80024ec + 80024d4: 68fb ldr r3, [r7, #12] + 80024d6: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80024d8: 2b01 cmp r3, #1 + 80024da: d123 bne.n 8002524 { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80024a4: 6a7a ldr r2, [r7, #36] ; 0x24 - 80024a6: 6bb9 ldr r1, [r7, #56] ; 0x38 - 80024a8: 68f8 ldr r0, [r7, #12] - 80024aa: f000 fc4d bl 8002d48 - 80024ae: 4603 mov r3, r0 - 80024b0: 2b00 cmp r3, #0 - 80024b2: d001 beq.n 80024b8 + 80024dc: 6a7a ldr r2, [r7, #36] ; 0x24 + 80024de: 6bb9 ldr r1, [r7, #56] ; 0x38 + 80024e0: 68f8 ldr r0, [r7, #12] + 80024e2: f000 fc4d bl 8002d80 + 80024e6: 4603 mov r3, r0 + 80024e8: 2b00 cmp r3, #0 + 80024ea: d001 beq.n 80024f0 { return HAL_ERROR; - 80024b4: 2301 movs r3, #1 - 80024b6: e167 b.n 8002788 + 80024ec: 2301 movs r3, #1 + 80024ee: e167 b.n 80027c0 } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80024b8: 68fb ldr r3, [r7, #12] - 80024ba: 681b ldr r3, [r3, #0] - 80024bc: 691a ldr r2, [r3, #16] - 80024be: 68fb ldr r3, [r7, #12] - 80024c0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80024c2: b2d2 uxtb r2, r2 - 80024c4: 701a strb r2, [r3, #0] + 80024f0: 68fb ldr r3, [r7, #12] + 80024f2: 681b ldr r3, [r3, #0] + 80024f4: 691a ldr r2, [r3, #16] + 80024f6: 68fb ldr r3, [r7, #12] + 80024f8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80024fa: b2d2 uxtb r2, r2 + 80024fc: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80024c6: 68fb ldr r3, [r7, #12] - 80024c8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80024ca: 1c5a adds r2, r3, #1 - 80024cc: 68fb ldr r3, [r7, #12] - 80024ce: 625a str r2, [r3, #36] ; 0x24 + 80024fe: 68fb ldr r3, [r7, #12] + 8002500: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002502: 1c5a adds r2, r3, #1 + 8002504: 68fb ldr r3, [r7, #12] + 8002506: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80024d0: 68fb ldr r3, [r7, #12] - 80024d2: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80024d4: 3b01 subs r3, #1 - 80024d6: b29a uxth r2, r3 - 80024d8: 68fb ldr r3, [r7, #12] - 80024da: 851a strh r2, [r3, #40] ; 0x28 + 8002508: 68fb ldr r3, [r7, #12] + 800250a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800250c: 3b01 subs r3, #1 + 800250e: b29a uxth r2, r3 + 8002510: 68fb ldr r3, [r7, #12] + 8002512: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80024dc: 68fb ldr r3, [r7, #12] - 80024de: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80024e0: b29b uxth r3, r3 - 80024e2: 3b01 subs r3, #1 - 80024e4: b29a uxth r2, r3 - 80024e6: 68fb ldr r3, [r7, #12] - 80024e8: 855a strh r2, [r3, #42] ; 0x2a - 80024ea: e139 b.n 8002760 + 8002514: 68fb ldr r3, [r7, #12] + 8002516: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002518: b29b uxth r3, r3 + 800251a: 3b01 subs r3, #1 + 800251c: b29a uxth r2, r3 + 800251e: 68fb ldr r3, [r7, #12] + 8002520: 855a strh r2, [r3, #42] ; 0x2a + 8002522: e139 b.n 8002798 } /* Two bytes */ else if (hi2c->XferSize == 2U) - 80024ec: 68fb ldr r3, [r7, #12] - 80024ee: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80024f0: 2b02 cmp r3, #2 - 80024f2: d152 bne.n 800259a + 8002524: 68fb ldr r3, [r7, #12] + 8002526: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002528: 2b02 cmp r3, #2 + 800252a: d152 bne.n 80025d2 { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 80024f4: 6a7b ldr r3, [r7, #36] ; 0x24 - 80024f6: 9300 str r3, [sp, #0] - 80024f8: 6bbb ldr r3, [r7, #56] ; 0x38 - 80024fa: 2200 movs r2, #0 - 80024fc: 4906 ldr r1, [pc, #24] ; (8002518 ) - 80024fe: 68f8 ldr r0, [r7, #12] - 8002500: f000 faca bl 8002a98 - 8002504: 4603 mov r3, r0 - 8002506: 2b00 cmp r3, #0 - 8002508: d008 beq.n 800251c + 800252c: 6a7b ldr r3, [r7, #36] ; 0x24 + 800252e: 9300 str r3, [sp, #0] + 8002530: 6bbb ldr r3, [r7, #56] ; 0x38 + 8002532: 2200 movs r2, #0 + 8002534: 4906 ldr r1, [pc, #24] ; (8002550 ) + 8002536: 68f8 ldr r0, [r7, #12] + 8002538: f000 faca bl 8002ad0 + 800253c: 4603 mov r3, r0 + 800253e: 2b00 cmp r3, #0 + 8002540: d008 beq.n 8002554 { return HAL_ERROR; - 800250a: 2301 movs r3, #1 - 800250c: e13c b.n 8002788 - 800250e: bf00 nop - 8002510: 00100002 .word 0x00100002 - 8002514: ffff0000 .word 0xffff0000 - 8002518: 00010004 .word 0x00010004 + 8002542: 2301 movs r3, #1 + 8002544: e13c b.n 80027c0 + 8002546: bf00 nop + 8002548: 00100002 .word 0x00100002 + 800254c: ffff0000 .word 0xffff0000 + 8002550: 00010004 .word 0x00010004 __ASM volatile ("cpsid i" : : : "memory"); - 800251c: b672 cpsid i + 8002554: b672 cpsid i } - 800251e: bf00 nop + 8002556: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002520: 68fb ldr r3, [r7, #12] - 8002522: 681b ldr r3, [r3, #0] - 8002524: 681a ldr r2, [r3, #0] - 8002526: 68fb ldr r3, [r7, #12] - 8002528: 681b ldr r3, [r3, #0] - 800252a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800252e: 601a str r2, [r3, #0] + 8002558: 68fb ldr r3, [r7, #12] + 800255a: 681b ldr r3, [r3, #0] + 800255c: 681a ldr r2, [r3, #0] + 800255e: 68fb ldr r3, [r7, #12] + 8002560: 681b ldr r3, [r3, #0] + 8002562: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002566: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002530: 68fb ldr r3, [r7, #12] - 8002532: 681b ldr r3, [r3, #0] - 8002534: 691a ldr r2, [r3, #16] - 8002536: 68fb ldr r3, [r7, #12] - 8002538: 6a5b ldr r3, [r3, #36] ; 0x24 - 800253a: b2d2 uxtb r2, r2 - 800253c: 701a strb r2, [r3, #0] + 8002568: 68fb ldr r3, [r7, #12] + 800256a: 681b ldr r3, [r3, #0] + 800256c: 691a ldr r2, [r3, #16] + 800256e: 68fb ldr r3, [r7, #12] + 8002570: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002572: b2d2 uxtb r2, r2 + 8002574: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800253e: 68fb ldr r3, [r7, #12] - 8002540: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002542: 1c5a adds r2, r3, #1 - 8002544: 68fb ldr r3, [r7, #12] - 8002546: 625a str r2, [r3, #36] ; 0x24 + 8002576: 68fb ldr r3, [r7, #12] + 8002578: 6a5b ldr r3, [r3, #36] ; 0x24 + 800257a: 1c5a adds r2, r3, #1 + 800257c: 68fb ldr r3, [r7, #12] + 800257e: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002548: 68fb ldr r3, [r7, #12] - 800254a: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800254c: 3b01 subs r3, #1 - 800254e: b29a uxth r2, r3 - 8002550: 68fb ldr r3, [r7, #12] - 8002552: 851a strh r2, [r3, #40] ; 0x28 + 8002580: 68fb ldr r3, [r7, #12] + 8002582: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002584: 3b01 subs r3, #1 + 8002586: b29a uxth r2, r3 + 8002588: 68fb ldr r3, [r7, #12] + 800258a: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002554: 68fb ldr r3, [r7, #12] - 8002556: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002558: b29b uxth r3, r3 - 800255a: 3b01 subs r3, #1 - 800255c: b29a uxth r2, r3 - 800255e: 68fb ldr r3, [r7, #12] - 8002560: 855a strh r2, [r3, #42] ; 0x2a + 800258c: 68fb ldr r3, [r7, #12] + 800258e: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002590: b29b uxth r3, r3 + 8002592: 3b01 subs r3, #1 + 8002594: b29a uxth r2, r3 + 8002596: 68fb ldr r3, [r7, #12] + 8002598: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 8002562: b662 cpsie i + 800259a: b662 cpsie i } - 8002564: bf00 nop + 800259c: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002566: 68fb ldr r3, [r7, #12] - 8002568: 681b ldr r3, [r3, #0] - 800256a: 691a ldr r2, [r3, #16] - 800256c: 68fb ldr r3, [r7, #12] - 800256e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002570: b2d2 uxtb r2, r2 - 8002572: 701a strb r2, [r3, #0] + 800259e: 68fb ldr r3, [r7, #12] + 80025a0: 681b ldr r3, [r3, #0] + 80025a2: 691a ldr r2, [r3, #16] + 80025a4: 68fb ldr r3, [r7, #12] + 80025a6: 6a5b ldr r3, [r3, #36] ; 0x24 + 80025a8: b2d2 uxtb r2, r2 + 80025aa: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 8002574: 68fb ldr r3, [r7, #12] - 8002576: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002578: 1c5a adds r2, r3, #1 - 800257a: 68fb ldr r3, [r7, #12] - 800257c: 625a str r2, [r3, #36] ; 0x24 + 80025ac: 68fb ldr r3, [r7, #12] + 80025ae: 6a5b ldr r3, [r3, #36] ; 0x24 + 80025b0: 1c5a adds r2, r3, #1 + 80025b2: 68fb ldr r3, [r7, #12] + 80025b4: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 800257e: 68fb ldr r3, [r7, #12] - 8002580: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002582: 3b01 subs r3, #1 - 8002584: b29a uxth r2, r3 - 8002586: 68fb ldr r3, [r7, #12] - 8002588: 851a strh r2, [r3, #40] ; 0x28 + 80025b6: 68fb ldr r3, [r7, #12] + 80025b8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80025ba: 3b01 subs r3, #1 + 80025bc: b29a uxth r2, r3 + 80025be: 68fb ldr r3, [r7, #12] + 80025c0: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 800258a: 68fb ldr r3, [r7, #12] - 800258c: 8d5b ldrh r3, [r3, #42] ; 0x2a - 800258e: b29b uxth r3, r3 - 8002590: 3b01 subs r3, #1 - 8002592: b29a uxth r2, r3 - 8002594: 68fb ldr r3, [r7, #12] - 8002596: 855a strh r2, [r3, #42] ; 0x2a - 8002598: e0e2 b.n 8002760 + 80025c2: 68fb ldr r3, [r7, #12] + 80025c4: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80025c6: b29b uxth r3, r3 + 80025c8: 3b01 subs r3, #1 + 80025ca: b29a uxth r2, r3 + 80025cc: 68fb ldr r3, [r7, #12] + 80025ce: 855a strh r2, [r3, #42] ; 0x2a + 80025d0: e0e2 b.n 8002798 } /* 3 Last bytes */ else { /* Wait until BTF flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_BTF, RESET, Timeout, tickstart) != HAL_OK) - 800259a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800259c: 9300 str r3, [sp, #0] - 800259e: 6bbb ldr r3, [r7, #56] ; 0x38 - 80025a0: 2200 movs r2, #0 - 80025a2: 497b ldr r1, [pc, #492] ; (8002790 ) - 80025a4: 68f8 ldr r0, [r7, #12] - 80025a6: f000 fa77 bl 8002a98 - 80025aa: 4603 mov r3, r0 - 80025ac: 2b00 cmp r3, #0 - 80025ae: d001 beq.n 80025b4 + 80025d2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80025d4: 9300 str r3, [sp, #0] + 80025d6: 6bbb ldr r3, [r7, #56] ; 0x38 + 80025d8: 2200 movs r2, #0 + 80025da: 497b ldr r1, [pc, #492] ; (80027c8 ) + 80025dc: 68f8 ldr r0, [r7, #12] + 80025de: f000 fa77 bl 8002ad0 + 80025e2: 4603 mov r3, r0 + 80025e4: 2b00 cmp r3, #0 + 80025e6: d001 beq.n 80025ec { return HAL_ERROR; - 80025b0: 2301 movs r3, #1 - 80025b2: e0e9 b.n 8002788 + 80025e8: 2301 movs r3, #1 + 80025ea: e0e9 b.n 80027c0 } /* Disable Acknowledge */ CLEAR_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80025b4: 68fb ldr r3, [r7, #12] - 80025b6: 681b ldr r3, [r3, #0] - 80025b8: 681a ldr r2, [r3, #0] - 80025ba: 68fb ldr r3, [r7, #12] - 80025bc: 681b ldr r3, [r3, #0] - 80025be: f422 6280 bic.w r2, r2, #1024 ; 0x400 - 80025c2: 601a str r2, [r3, #0] + 80025ec: 68fb ldr r3, [r7, #12] + 80025ee: 681b ldr r3, [r3, #0] + 80025f0: 681a ldr r2, [r3, #0] + 80025f2: 68fb ldr r3, [r7, #12] + 80025f4: 681b ldr r3, [r3, #0] + 80025f6: f422 6280 bic.w r2, r2, #1024 ; 0x400 + 80025fa: 601a str r2, [r3, #0] __ASM volatile ("cpsid i" : : : "memory"); - 80025c4: b672 cpsid i + 80025fc: b672 cpsid i } - 80025c6: bf00 nop + 80025fe: bf00 nop /* Disable all active IRQs around ADDR clearing and STOP programming because the EV6_3 software sequence must complete before the current byte end of transfer */ __disable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80025c8: 68fb ldr r3, [r7, #12] - 80025ca: 681b ldr r3, [r3, #0] - 80025cc: 691a ldr r2, [r3, #16] - 80025ce: 68fb ldr r3, [r7, #12] - 80025d0: 6a5b ldr r3, [r3, #36] ; 0x24 - 80025d2: b2d2 uxtb r2, r2 - 80025d4: 701a strb r2, [r3, #0] + 8002600: 68fb ldr r3, [r7, #12] + 8002602: 681b ldr r3, [r3, #0] + 8002604: 691a ldr r2, [r3, #16] + 8002606: 68fb ldr r3, [r7, #12] + 8002608: 6a5b ldr r3, [r3, #36] ; 0x24 + 800260a: b2d2 uxtb r2, r2 + 800260c: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80025d6: 68fb ldr r3, [r7, #12] - 80025d8: 6a5b ldr r3, [r3, #36] ; 0x24 - 80025da: 1c5a adds r2, r3, #1 - 80025dc: 68fb ldr r3, [r7, #12] - 80025de: 625a str r2, [r3, #36] ; 0x24 + 800260e: 68fb ldr r3, [r7, #12] + 8002610: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002612: 1c5a adds r2, r3, #1 + 8002614: 68fb ldr r3, [r7, #12] + 8002616: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80025e0: 68fb ldr r3, [r7, #12] - 80025e2: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80025e4: 3b01 subs r3, #1 - 80025e6: b29a uxth r2, r3 - 80025e8: 68fb ldr r3, [r7, #12] - 80025ea: 851a strh r2, [r3, #40] ; 0x28 + 8002618: 68fb ldr r3, [r7, #12] + 800261a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800261c: 3b01 subs r3, #1 + 800261e: b29a uxth r2, r3 + 8002620: 68fb ldr r3, [r7, #12] + 8002622: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80025ec: 68fb ldr r3, [r7, #12] - 80025ee: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80025f0: b29b uxth r3, r3 - 80025f2: 3b01 subs r3, #1 - 80025f4: b29a uxth r2, r3 - 80025f6: 68fb ldr r3, [r7, #12] - 80025f8: 855a strh r2, [r3, #42] ; 0x2a + 8002624: 68fb ldr r3, [r7, #12] + 8002626: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002628: b29b uxth r3, r3 + 800262a: 3b01 subs r3, #1 + 800262c: b29a uxth r2, r3 + 800262e: 68fb ldr r3, [r7, #12] + 8002630: 855a strh r2, [r3, #42] ; 0x2a /* Wait until BTF flag is set */ count = I2C_TIMEOUT_FLAG * (SystemCoreClock / 25U / 1000U); - 80025fa: 4b66 ldr r3, [pc, #408] ; (8002794 ) - 80025fc: 681b ldr r3, [r3, #0] - 80025fe: 08db lsrs r3, r3, #3 - 8002600: 4a65 ldr r2, [pc, #404] ; (8002798 ) - 8002602: fba2 2303 umull r2, r3, r2, r3 - 8002606: 0a1a lsrs r2, r3, #8 - 8002608: 4613 mov r3, r2 - 800260a: 009b lsls r3, r3, #2 - 800260c: 4413 add r3, r2 - 800260e: 00da lsls r2, r3, #3 - 8002610: 1ad3 subs r3, r2, r3 - 8002612: 623b str r3, [r7, #32] + 8002632: 4b66 ldr r3, [pc, #408] ; (80027cc ) + 8002634: 681b ldr r3, [r3, #0] + 8002636: 08db lsrs r3, r3, #3 + 8002638: 4a65 ldr r2, [pc, #404] ; (80027d0 ) + 800263a: fba2 2303 umull r2, r3, r2, r3 + 800263e: 0a1a lsrs r2, r3, #8 + 8002640: 4613 mov r3, r2 + 8002642: 009b lsls r3, r3, #2 + 8002644: 4413 add r3, r2 + 8002646: 00da lsls r2, r3, #3 + 8002648: 1ad3 subs r3, r2, r3 + 800264a: 623b str r3, [r7, #32] do { count--; - 8002614: 6a3b ldr r3, [r7, #32] - 8002616: 3b01 subs r3, #1 - 8002618: 623b str r3, [r7, #32] + 800264c: 6a3b ldr r3, [r7, #32] + 800264e: 3b01 subs r3, #1 + 8002650: 623b str r3, [r7, #32] if (count == 0U) - 800261a: 6a3b ldr r3, [r7, #32] - 800261c: 2b00 cmp r3, #0 - 800261e: d118 bne.n 8002652 + 8002652: 6a3b ldr r3, [r7, #32] + 8002654: 2b00 cmp r3, #0 + 8002656: d118 bne.n 800268a { hi2c->PreviousState = I2C_STATE_NONE; - 8002620: 68fb ldr r3, [r7, #12] - 8002622: 2200 movs r2, #0 - 8002624: 631a str r2, [r3, #48] ; 0x30 + 8002658: 68fb ldr r3, [r7, #12] + 800265a: 2200 movs r2, #0 + 800265c: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002626: 68fb ldr r3, [r7, #12] - 8002628: 2220 movs r2, #32 - 800262a: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800265e: 68fb ldr r3, [r7, #12] + 8002660: 2220 movs r2, #32 + 8002662: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 800262e: 68fb ldr r3, [r7, #12] - 8002630: 2200 movs r2, #0 - 8002632: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002666: 68fb ldr r3, [r7, #12] + 8002668: 2200 movs r2, #0 + 800266a: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002636: 68fb ldr r3, [r7, #12] - 8002638: 6c1b ldr r3, [r3, #64] ; 0x40 - 800263a: f043 0220 orr.w r2, r3, #32 - 800263e: 68fb ldr r3, [r7, #12] - 8002640: 641a str r2, [r3, #64] ; 0x40 + 800266e: 68fb ldr r3, [r7, #12] + 8002670: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002672: f043 0220 orr.w r2, r3, #32 + 8002676: 68fb ldr r3, [r7, #12] + 8002678: 641a str r2, [r3, #64] ; 0x40 __ASM volatile ("cpsie i" : : : "memory"); - 8002642: b662 cpsie i + 800267a: b662 cpsie i } - 8002644: bf00 nop + 800267c: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002646: 68fb ldr r3, [r7, #12] - 8002648: 2200 movs r2, #0 - 800264a: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800267e: 68fb ldr r3, [r7, #12] + 8002680: 2200 movs r2, #0 + 8002682: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 800264e: 2301 movs r3, #1 - 8002650: e09a b.n 8002788 + 8002686: 2301 movs r3, #1 + 8002688: e09a b.n 80027c0 } } while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET); - 8002652: 68fb ldr r3, [r7, #12] - 8002654: 681b ldr r3, [r3, #0] - 8002656: 695b ldr r3, [r3, #20] - 8002658: f003 0304 and.w r3, r3, #4 - 800265c: 2b04 cmp r3, #4 - 800265e: d1d9 bne.n 8002614 + 800268a: 68fb ldr r3, [r7, #12] + 800268c: 681b ldr r3, [r3, #0] + 800268e: 695b ldr r3, [r3, #20] + 8002690: f003 0304 and.w r3, r3, #4 + 8002694: 2b04 cmp r3, #4 + 8002696: d1d9 bne.n 800264c /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002660: 68fb ldr r3, [r7, #12] - 8002662: 681b ldr r3, [r3, #0] - 8002664: 681a ldr r2, [r3, #0] - 8002666: 68fb ldr r3, [r7, #12] - 8002668: 681b ldr r3, [r3, #0] - 800266a: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800266e: 601a str r2, [r3, #0] + 8002698: 68fb ldr r3, [r7, #12] + 800269a: 681b ldr r3, [r3, #0] + 800269c: 681a ldr r2, [r3, #0] + 800269e: 68fb ldr r3, [r7, #12] + 80026a0: 681b ldr r3, [r3, #0] + 80026a2: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80026a6: 601a str r2, [r3, #0] /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 8002670: 68fb ldr r3, [r7, #12] - 8002672: 681b ldr r3, [r3, #0] - 8002674: 691a ldr r2, [r3, #16] - 8002676: 68fb ldr r3, [r7, #12] - 8002678: 6a5b ldr r3, [r3, #36] ; 0x24 - 800267a: b2d2 uxtb r2, r2 - 800267c: 701a strb r2, [r3, #0] + 80026a8: 68fb ldr r3, [r7, #12] + 80026aa: 681b ldr r3, [r3, #0] + 80026ac: 691a ldr r2, [r3, #16] + 80026ae: 68fb ldr r3, [r7, #12] + 80026b0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80026b2: b2d2 uxtb r2, r2 + 80026b4: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800267e: 68fb ldr r3, [r7, #12] - 8002680: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002682: 1c5a adds r2, r3, #1 - 8002684: 68fb ldr r3, [r7, #12] - 8002686: 625a str r2, [r3, #36] ; 0x24 + 80026b6: 68fb ldr r3, [r7, #12] + 80026b8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80026ba: 1c5a adds r2, r3, #1 + 80026bc: 68fb ldr r3, [r7, #12] + 80026be: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002688: 68fb ldr r3, [r7, #12] - 800268a: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800268c: 3b01 subs r3, #1 - 800268e: b29a uxth r2, r3 - 8002690: 68fb ldr r3, [r7, #12] - 8002692: 851a strh r2, [r3, #40] ; 0x28 + 80026c0: 68fb ldr r3, [r7, #12] + 80026c2: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80026c4: 3b01 subs r3, #1 + 80026c6: b29a uxth r2, r3 + 80026c8: 68fb ldr r3, [r7, #12] + 80026ca: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002694: 68fb ldr r3, [r7, #12] - 8002696: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002698: b29b uxth r3, r3 - 800269a: 3b01 subs r3, #1 - 800269c: b29a uxth r2, r3 - 800269e: 68fb ldr r3, [r7, #12] - 80026a0: 855a strh r2, [r3, #42] ; 0x2a + 80026cc: 68fb ldr r3, [r7, #12] + 80026ce: 8d5b ldrh r3, [r3, #42] ; 0x2a + 80026d0: b29b uxth r3, r3 + 80026d2: 3b01 subs r3, #1 + 80026d4: b29a uxth r2, r3 + 80026d6: 68fb ldr r3, [r7, #12] + 80026d8: 855a strh r2, [r3, #42] ; 0x2a __ASM volatile ("cpsie i" : : : "memory"); - 80026a2: b662 cpsie i + 80026da: b662 cpsie i } - 80026a4: bf00 nop + 80026dc: bf00 nop /* Re-enable IRQs */ __enable_irq(); /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80026a6: 68fb ldr r3, [r7, #12] - 80026a8: 681b ldr r3, [r3, #0] - 80026aa: 691a ldr r2, [r3, #16] - 80026ac: 68fb ldr r3, [r7, #12] - 80026ae: 6a5b ldr r3, [r3, #36] ; 0x24 - 80026b0: b2d2 uxtb r2, r2 - 80026b2: 701a strb r2, [r3, #0] + 80026de: 68fb ldr r3, [r7, #12] + 80026e0: 681b ldr r3, [r3, #0] + 80026e2: 691a ldr r2, [r3, #16] + 80026e4: 68fb ldr r3, [r7, #12] + 80026e6: 6a5b ldr r3, [r3, #36] ; 0x24 + 80026e8: b2d2 uxtb r2, r2 + 80026ea: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80026b4: 68fb ldr r3, [r7, #12] - 80026b6: 6a5b ldr r3, [r3, #36] ; 0x24 - 80026b8: 1c5a adds r2, r3, #1 - 80026ba: 68fb ldr r3, [r7, #12] - 80026bc: 625a str r2, [r3, #36] ; 0x24 + 80026ec: 68fb ldr r3, [r7, #12] + 80026ee: 6a5b ldr r3, [r3, #36] ; 0x24 + 80026f0: 1c5a adds r2, r3, #1 + 80026f2: 68fb ldr r3, [r7, #12] + 80026f4: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 80026be: 68fb ldr r3, [r7, #12] - 80026c0: 8d1b ldrh r3, [r3, #40] ; 0x28 - 80026c2: 3b01 subs r3, #1 - 80026c4: b29a uxth r2, r3 - 80026c6: 68fb ldr r3, [r7, #12] - 80026c8: 851a strh r2, [r3, #40] ; 0x28 + 80026f6: 68fb ldr r3, [r7, #12] + 80026f8: 8d1b ldrh r3, [r3, #40] ; 0x28 + 80026fa: 3b01 subs r3, #1 + 80026fc: b29a uxth r2, r3 + 80026fe: 68fb ldr r3, [r7, #12] + 8002700: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 80026ca: 68fb ldr r3, [r7, #12] - 80026cc: 8d5b ldrh r3, [r3, #42] ; 0x2a - 80026ce: b29b uxth r3, r3 - 80026d0: 3b01 subs r3, #1 - 80026d2: b29a uxth r2, r3 - 80026d4: 68fb ldr r3, [r7, #12] - 80026d6: 855a strh r2, [r3, #42] ; 0x2a - 80026d8: e042 b.n 8002760 + 8002702: 68fb ldr r3, [r7, #12] + 8002704: 8d5b ldrh r3, [r3, #42] ; 0x2a + 8002706: b29b uxth r3, r3 + 8002708: 3b01 subs r3, #1 + 800270a: b29a uxth r2, r3 + 800270c: 68fb ldr r3, [r7, #12] + 800270e: 855a strh r2, [r3, #42] ; 0x2a + 8002710: e042 b.n 8002798 } } else { /* Wait until RXNE flag is set */ if (I2C_WaitOnRXNEFlagUntilTimeout(hi2c, Timeout, tickstart) != HAL_OK) - 80026da: 6a7a ldr r2, [r7, #36] ; 0x24 - 80026dc: 6bb9 ldr r1, [r7, #56] ; 0x38 - 80026de: 68f8 ldr r0, [r7, #12] - 80026e0: f000 fb32 bl 8002d48 - 80026e4: 4603 mov r3, r0 - 80026e6: 2b00 cmp r3, #0 - 80026e8: d001 beq.n 80026ee + 8002712: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002714: 6bb9 ldr r1, [r7, #56] ; 0x38 + 8002716: 68f8 ldr r0, [r7, #12] + 8002718: f000 fb32 bl 8002d80 + 800271c: 4603 mov r3, r0 + 800271e: 2b00 cmp r3, #0 + 8002720: d001 beq.n 8002726 { return HAL_ERROR; - 80026ea: 2301 movs r3, #1 - 80026ec: e04c b.n 8002788 + 8002722: 2301 movs r3, #1 + 8002724: e04c b.n 80027c0 } /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 80026ee: 68fb ldr r3, [r7, #12] - 80026f0: 681b ldr r3, [r3, #0] - 80026f2: 691a ldr r2, [r3, #16] - 80026f4: 68fb ldr r3, [r7, #12] - 80026f6: 6a5b ldr r3, [r3, #36] ; 0x24 - 80026f8: b2d2 uxtb r2, r2 - 80026fa: 701a strb r2, [r3, #0] + 8002726: 68fb ldr r3, [r7, #12] + 8002728: 681b ldr r3, [r3, #0] + 800272a: 691a ldr r2, [r3, #16] + 800272c: 68fb ldr r3, [r7, #12] + 800272e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002730: b2d2 uxtb r2, r2 + 8002732: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 80026fc: 68fb ldr r3, [r7, #12] - 80026fe: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002700: 1c5a adds r2, r3, #1 - 8002702: 68fb ldr r3, [r7, #12] - 8002704: 625a str r2, [r3, #36] ; 0x24 + 8002734: 68fb ldr r3, [r7, #12] + 8002736: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002738: 1c5a adds r2, r3, #1 + 800273a: 68fb ldr r3, [r7, #12] + 800273c: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002706: 68fb ldr r3, [r7, #12] - 8002708: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800270a: 3b01 subs r3, #1 - 800270c: b29a uxth r2, r3 - 800270e: 68fb ldr r3, [r7, #12] - 8002710: 851a strh r2, [r3, #40] ; 0x28 + 800273e: 68fb ldr r3, [r7, #12] + 8002740: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002742: 3b01 subs r3, #1 + 8002744: b29a uxth r2, r3 + 8002746: 68fb ldr r3, [r7, #12] + 8002748: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002712: 68fb ldr r3, [r7, #12] - 8002714: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002716: b29b uxth r3, r3 - 8002718: 3b01 subs r3, #1 - 800271a: b29a uxth r2, r3 - 800271c: 68fb ldr r3, [r7, #12] - 800271e: 855a strh r2, [r3, #42] ; 0x2a + 800274a: 68fb ldr r3, [r7, #12] + 800274c: 8d5b ldrh r3, [r3, #42] ; 0x2a + 800274e: b29b uxth r3, r3 + 8002750: 3b01 subs r3, #1 + 8002752: b29a uxth r2, r3 + 8002754: 68fb ldr r3, [r7, #12] + 8002756: 855a strh r2, [r3, #42] ; 0x2a if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == SET) - 8002720: 68fb ldr r3, [r7, #12] - 8002722: 681b ldr r3, [r3, #0] - 8002724: 695b ldr r3, [r3, #20] - 8002726: f003 0304 and.w r3, r3, #4 - 800272a: 2b04 cmp r3, #4 - 800272c: d118 bne.n 8002760 + 8002758: 68fb ldr r3, [r7, #12] + 800275a: 681b ldr r3, [r3, #0] + 800275c: 695b ldr r3, [r3, #20] + 800275e: f003 0304 and.w r3, r3, #4 + 8002762: 2b04 cmp r3, #4 + 8002764: d118 bne.n 8002798 { /* Read data from DR */ *hi2c->pBuffPtr = (uint8_t)hi2c->Instance->DR; - 800272e: 68fb ldr r3, [r7, #12] - 8002730: 681b ldr r3, [r3, #0] - 8002732: 691a ldr r2, [r3, #16] - 8002734: 68fb ldr r3, [r7, #12] - 8002736: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002738: b2d2 uxtb r2, r2 - 800273a: 701a strb r2, [r3, #0] + 8002766: 68fb ldr r3, [r7, #12] + 8002768: 681b ldr r3, [r3, #0] + 800276a: 691a ldr r2, [r3, #16] + 800276c: 68fb ldr r3, [r7, #12] + 800276e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002770: b2d2 uxtb r2, r2 + 8002772: 701a strb r2, [r3, #0] /* Increment Buffer pointer */ hi2c->pBuffPtr++; - 800273c: 68fb ldr r3, [r7, #12] - 800273e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8002740: 1c5a adds r2, r3, #1 - 8002742: 68fb ldr r3, [r7, #12] - 8002744: 625a str r2, [r3, #36] ; 0x24 + 8002774: 68fb ldr r3, [r7, #12] + 8002776: 6a5b ldr r3, [r3, #36] ; 0x24 + 8002778: 1c5a adds r2, r3, #1 + 800277a: 68fb ldr r3, [r7, #12] + 800277c: 625a str r2, [r3, #36] ; 0x24 /* Update counter */ hi2c->XferSize--; - 8002746: 68fb ldr r3, [r7, #12] - 8002748: 8d1b ldrh r3, [r3, #40] ; 0x28 - 800274a: 3b01 subs r3, #1 - 800274c: b29a uxth r2, r3 - 800274e: 68fb ldr r3, [r7, #12] - 8002750: 851a strh r2, [r3, #40] ; 0x28 + 800277e: 68fb ldr r3, [r7, #12] + 8002780: 8d1b ldrh r3, [r3, #40] ; 0x28 + 8002782: 3b01 subs r3, #1 + 8002784: b29a uxth r2, r3 + 8002786: 68fb ldr r3, [r7, #12] + 8002788: 851a strh r2, [r3, #40] ; 0x28 hi2c->XferCount--; - 8002752: 68fb ldr r3, [r7, #12] - 8002754: 8d5b ldrh r3, [r3, #42] ; 0x2a - 8002756: b29b uxth r3, r3 - 8002758: 3b01 subs r3, #1 - 800275a: b29a uxth r2, r3 - 800275c: 68fb ldr r3, [r7, #12] - 800275e: 855a strh r2, [r3, #42] ; 0x2a + 800278a: 68fb ldr r3, [r7, #12] + 800278c: 8d5b ldrh r3, [r3, #42] ; 0x2a + 800278e: b29b uxth r3, r3 + 8002790: 3b01 subs r3, #1 + 8002792: b29a uxth r2, r3 + 8002794: 68fb ldr r3, [r7, #12] + 8002796: 855a strh r2, [r3, #42] ; 0x2a while (hi2c->XferSize > 0U) - 8002760: 68fb ldr r3, [r7, #12] - 8002762: 8d1b ldrh r3, [r3, #40] ; 0x28 - 8002764: 2b00 cmp r3, #0 - 8002766: f47f ae94 bne.w 8002492 + 8002798: 68fb ldr r3, [r7, #12] + 800279a: 8d1b ldrh r3, [r3, #40] ; 0x28 + 800279c: 2b00 cmp r3, #0 + 800279e: f47f ae94 bne.w 80024ca } } } hi2c->State = HAL_I2C_STATE_READY; - 800276a: 68fb ldr r3, [r7, #12] - 800276c: 2220 movs r2, #32 - 800276e: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80027a2: 68fb ldr r3, [r7, #12] + 80027a4: 2220 movs r2, #32 + 80027a6: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002772: 68fb ldr r3, [r7, #12] - 8002774: 2200 movs r2, #0 - 8002776: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80027aa: 68fb ldr r3, [r7, #12] + 80027ac: 2200 movs r2, #0 + 80027ae: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 800277a: 68fb ldr r3, [r7, #12] - 800277c: 2200 movs r2, #0 - 800277e: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80027b2: 68fb ldr r3, [r7, #12] + 80027b4: 2200 movs r2, #0 + 80027b6: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_OK; - 8002782: 2300 movs r3, #0 - 8002784: e000 b.n 8002788 + 80027ba: 2300 movs r3, #0 + 80027bc: e000 b.n 80027c0 } else { return HAL_BUSY; - 8002786: 2302 movs r3, #2 + 80027be: 2302 movs r3, #2 } } - 8002788: 4618 mov r0, r3 - 800278a: 3728 adds r7, #40 ; 0x28 - 800278c: 46bd mov sp, r7 - 800278e: bd80 pop {r7, pc} - 8002790: 00010004 .word 0x00010004 - 8002794: 20000000 .word 0x20000000 - 8002798: 14f8b589 .word 0x14f8b589 + 80027c0: 4618 mov r0, r3 + 80027c2: 3728 adds r7, #40 ; 0x28 + 80027c4: 46bd mov sp, r7 + 80027c6: bd80 pop {r7, pc} + 80027c8: 00010004 .word 0x00010004 + 80027cc: 20000000 .word 0x20000000 + 80027d0: 14f8b589 .word 0x14f8b589 -0800279c : +080027d4 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_RequestMemoryWrite(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) { - 800279c: b580 push {r7, lr} - 800279e: b088 sub sp, #32 - 80027a0: af02 add r7, sp, #8 - 80027a2: 60f8 str r0, [r7, #12] - 80027a4: 4608 mov r0, r1 - 80027a6: 4611 mov r1, r2 - 80027a8: 461a mov r2, r3 - 80027aa: 4603 mov r3, r0 - 80027ac: 817b strh r3, [r7, #10] - 80027ae: 460b mov r3, r1 - 80027b0: 813b strh r3, [r7, #8] - 80027b2: 4613 mov r3, r2 - 80027b4: 80fb strh r3, [r7, #6] + 80027d4: b580 push {r7, lr} + 80027d6: b088 sub sp, #32 + 80027d8: af02 add r7, sp, #8 + 80027da: 60f8 str r0, [r7, #12] + 80027dc: 4608 mov r0, r1 + 80027de: 4611 mov r1, r2 + 80027e0: 461a mov r2, r3 + 80027e2: 4603 mov r3, r0 + 80027e4: 817b strh r3, [r7, #10] + 80027e6: 460b mov r3, r1 + 80027e8: 813b strh r3, [r7, #8] + 80027ea: 4613 mov r3, r2 + 80027ec: 80fb strh r3, [r7, #6] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 80027b6: 68fb ldr r3, [r7, #12] - 80027b8: 681b ldr r3, [r3, #0] - 80027ba: 681a ldr r2, [r3, #0] - 80027bc: 68fb ldr r3, [r7, #12] - 80027be: 681b ldr r3, [r3, #0] - 80027c0: f442 7280 orr.w r2, r2, #256 ; 0x100 - 80027c4: 601a str r2, [r3, #0] + 80027ee: 68fb ldr r3, [r7, #12] + 80027f0: 681b ldr r3, [r3, #0] + 80027f2: 681a ldr r2, [r3, #0] + 80027f4: 68fb ldr r3, [r7, #12] + 80027f6: 681b ldr r3, [r3, #0] + 80027f8: f442 7280 orr.w r2, r2, #256 ; 0x100 + 80027fc: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 80027c6: 6a7b ldr r3, [r7, #36] ; 0x24 - 80027c8: 9300 str r3, [sp, #0] - 80027ca: 6a3b ldr r3, [r7, #32] - 80027cc: 2200 movs r2, #0 - 80027ce: f04f 1101 mov.w r1, #65537 ; 0x10001 - 80027d2: 68f8 ldr r0, [r7, #12] - 80027d4: f000 f960 bl 8002a98 - 80027d8: 4603 mov r3, r0 - 80027da: 2b00 cmp r3, #0 - 80027dc: d00d beq.n 80027fa + 80027fe: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002800: 9300 str r3, [sp, #0] + 8002802: 6a3b ldr r3, [r7, #32] + 8002804: 2200 movs r2, #0 + 8002806: f04f 1101 mov.w r1, #65537 ; 0x10001 + 800280a: 68f8 ldr r0, [r7, #12] + 800280c: f000 f960 bl 8002ad0 + 8002810: 4603 mov r3, r0 + 8002812: 2b00 cmp r3, #0 + 8002814: d00d beq.n 8002832 { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 80027de: 68fb ldr r3, [r7, #12] - 80027e0: 681b ldr r3, [r3, #0] - 80027e2: 681b ldr r3, [r3, #0] - 80027e4: f403 7380 and.w r3, r3, #256 ; 0x100 - 80027e8: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 80027ec: d103 bne.n 80027f6 + 8002816: 68fb ldr r3, [r7, #12] + 8002818: 681b ldr r3, [r3, #0] + 800281a: 681b ldr r3, [r3, #0] + 800281c: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002820: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002824: d103 bne.n 800282e { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 80027ee: 68fb ldr r3, [r7, #12] - 80027f0: f44f 7200 mov.w r2, #512 ; 0x200 - 80027f4: 641a str r2, [r3, #64] ; 0x40 + 8002826: 68fb ldr r3, [r7, #12] + 8002828: f44f 7200 mov.w r2, #512 ; 0x200 + 800282c: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 80027f6: 2303 movs r3, #3 - 80027f8: e05f b.n 80028ba + 800282e: 2303 movs r3, #3 + 8002830: e05f b.n 80028f2 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 80027fa: 897b ldrh r3, [r7, #10] - 80027fc: b2db uxtb r3, r3 - 80027fe: 461a mov r2, r3 - 8002800: 68fb ldr r3, [r7, #12] - 8002802: 681b ldr r3, [r3, #0] - 8002804: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002808: 611a str r2, [r3, #16] + 8002832: 897b ldrh r3, [r7, #10] + 8002834: b2db uxtb r3, r3 + 8002836: 461a mov r2, r3 + 8002838: 68fb ldr r3, [r7, #12] + 800283a: 681b ldr r3, [r3, #0] + 800283c: f002 02fe and.w r2, r2, #254 ; 0xfe + 8002840: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 800280a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800280c: 6a3a ldr r2, [r7, #32] - 800280e: 492d ldr r1, [pc, #180] ; (80028c4 ) - 8002810: 68f8 ldr r0, [r7, #12] - 8002812: f000 f998 bl 8002b46 - 8002816: 4603 mov r3, r0 - 8002818: 2b00 cmp r3, #0 - 800281a: d001 beq.n 8002820 + 8002842: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002844: 6a3a ldr r2, [r7, #32] + 8002846: 492d ldr r1, [pc, #180] ; (80028fc ) + 8002848: 68f8 ldr r0, [r7, #12] + 800284a: f000 f998 bl 8002b7e + 800284e: 4603 mov r3, r0 + 8002850: 2b00 cmp r3, #0 + 8002852: d001 beq.n 8002858 { return HAL_ERROR; - 800281c: 2301 movs r3, #1 - 800281e: e04c b.n 80028ba + 8002854: 2301 movs r3, #1 + 8002856: e04c b.n 80028f2 } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 8002820: 2300 movs r3, #0 - 8002822: 617b str r3, [r7, #20] - 8002824: 68fb ldr r3, [r7, #12] - 8002826: 681b ldr r3, [r3, #0] - 8002828: 695b ldr r3, [r3, #20] - 800282a: 617b str r3, [r7, #20] - 800282c: 68fb ldr r3, [r7, #12] - 800282e: 681b ldr r3, [r3, #0] - 8002830: 699b ldr r3, [r3, #24] - 8002832: 617b str r3, [r7, #20] - 8002834: 697b ldr r3, [r7, #20] + 8002858: 2300 movs r3, #0 + 800285a: 617b str r3, [r7, #20] + 800285c: 68fb ldr r3, [r7, #12] + 800285e: 681b ldr r3, [r3, #0] + 8002860: 695b ldr r3, [r3, #20] + 8002862: 617b str r3, [r7, #20] + 8002864: 68fb ldr r3, [r7, #12] + 8002866: 681b ldr r3, [r3, #0] + 8002868: 699b ldr r3, [r3, #24] + 800286a: 617b str r3, [r7, #20] + 800286c: 697b ldr r3, [r7, #20] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002836: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002838: 6a39 ldr r1, [r7, #32] - 800283a: 68f8 ldr r0, [r7, #12] - 800283c: f000 fa02 bl 8002c44 - 8002840: 4603 mov r3, r0 - 8002842: 2b00 cmp r3, #0 - 8002844: d00d beq.n 8002862 + 800286e: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002870: 6a39 ldr r1, [r7, #32] + 8002872: 68f8 ldr r0, [r7, #12] + 8002874: f000 fa02 bl 8002c7c + 8002878: 4603 mov r3, r0 + 800287a: 2b00 cmp r3, #0 + 800287c: d00d beq.n 800289a { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002846: 68fb ldr r3, [r7, #12] - 8002848: 6c1b ldr r3, [r3, #64] ; 0x40 - 800284a: 2b04 cmp r3, #4 - 800284c: d107 bne.n 800285e + 800287e: 68fb ldr r3, [r7, #12] + 8002880: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002882: 2b04 cmp r3, #4 + 8002884: d107 bne.n 8002896 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800284e: 68fb ldr r3, [r7, #12] - 8002850: 681b ldr r3, [r3, #0] - 8002852: 681a ldr r2, [r3, #0] - 8002854: 68fb ldr r3, [r7, #12] - 8002856: 681b ldr r3, [r3, #0] - 8002858: f442 7200 orr.w r2, r2, #512 ; 0x200 - 800285c: 601a str r2, [r3, #0] + 8002886: 68fb ldr r3, [r7, #12] + 8002888: 681b ldr r3, [r3, #0] + 800288a: 681a ldr r2, [r3, #0] + 800288c: 68fb ldr r3, [r7, #12] + 800288e: 681b ldr r3, [r3, #0] + 8002890: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002894: 601a str r2, [r3, #0] } return HAL_ERROR; - 800285e: 2301 movs r3, #1 - 8002860: e02b b.n 80028ba + 8002896: 2301 movs r3, #1 + 8002898: e02b b.n 80028f2 } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 8002862: 88fb ldrh r3, [r7, #6] - 8002864: 2b01 cmp r3, #1 - 8002866: d105 bne.n 8002874 + 800289a: 88fb ldrh r3, [r7, #6] + 800289c: 2b01 cmp r3, #1 + 800289e: d105 bne.n 80028ac { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 8002868: 893b ldrh r3, [r7, #8] - 800286a: b2da uxtb r2, r3 - 800286c: 68fb ldr r3, [r7, #12] - 800286e: 681b ldr r3, [r3, #0] - 8002870: 611a str r2, [r3, #16] - 8002872: e021 b.n 80028b8 + 80028a0: 893b ldrh r3, [r7, #8] + 80028a2: b2da uxtb r2, r3 + 80028a4: 68fb ldr r3, [r7, #12] + 80028a6: 681b ldr r3, [r3, #0] + 80028a8: 611a str r2, [r3, #16] + 80028aa: e021 b.n 80028f0 } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 8002874: 893b ldrh r3, [r7, #8] - 8002876: 0a1b lsrs r3, r3, #8 - 8002878: b29b uxth r3, r3 - 800287a: b2da uxtb r2, r3 - 800287c: 68fb ldr r3, [r7, #12] - 800287e: 681b ldr r3, [r3, #0] - 8002880: 611a str r2, [r3, #16] + 80028ac: 893b ldrh r3, [r7, #8] + 80028ae: 0a1b lsrs r3, r3, #8 + 80028b0: b29b uxth r3, r3 + 80028b2: b2da uxtb r2, r3 + 80028b4: 68fb ldr r3, [r7, #12] + 80028b6: 681b ldr r3, [r3, #0] + 80028b8: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002882: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002884: 6a39 ldr r1, [r7, #32] - 8002886: 68f8 ldr r0, [r7, #12] - 8002888: f000 f9dc bl 8002c44 - 800288c: 4603 mov r3, r0 - 800288e: 2b00 cmp r3, #0 - 8002890: d00d beq.n 80028ae + 80028ba: 6a7a ldr r2, [r7, #36] ; 0x24 + 80028bc: 6a39 ldr r1, [r7, #32] + 80028be: 68f8 ldr r0, [r7, #12] + 80028c0: f000 f9dc bl 8002c7c + 80028c4: 4603 mov r3, r0 + 80028c6: 2b00 cmp r3, #0 + 80028c8: d00d beq.n 80028e6 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002892: 68fb ldr r3, [r7, #12] - 8002894: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002896: 2b04 cmp r3, #4 - 8002898: d107 bne.n 80028aa + 80028ca: 68fb ldr r3, [r7, #12] + 80028cc: 6c1b ldr r3, [r3, #64] ; 0x40 + 80028ce: 2b04 cmp r3, #4 + 80028d0: d107 bne.n 80028e2 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800289a: 68fb ldr r3, [r7, #12] - 800289c: 681b ldr r3, [r3, #0] - 800289e: 681a ldr r2, [r3, #0] - 80028a0: 68fb ldr r3, [r7, #12] - 80028a2: 681b ldr r3, [r3, #0] - 80028a4: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80028a8: 601a str r2, [r3, #0] + 80028d2: 68fb ldr r3, [r7, #12] + 80028d4: 681b ldr r3, [r3, #0] + 80028d6: 681a ldr r2, [r3, #0] + 80028d8: 68fb ldr r3, [r7, #12] + 80028da: 681b ldr r3, [r3, #0] + 80028dc: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80028e0: 601a str r2, [r3, #0] } return HAL_ERROR; - 80028aa: 2301 movs r3, #1 - 80028ac: e005 b.n 80028ba + 80028e2: 2301 movs r3, #1 + 80028e4: e005 b.n 80028f2 } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 80028ae: 893b ldrh r3, [r7, #8] - 80028b0: b2da uxtb r2, r3 - 80028b2: 68fb ldr r3, [r7, #12] - 80028b4: 681b ldr r3, [r3, #0] - 80028b6: 611a str r2, [r3, #16] + 80028e6: 893b ldrh r3, [r7, #8] + 80028e8: b2da uxtb r2, r3 + 80028ea: 68fb ldr r3, [r7, #12] + 80028ec: 681b ldr r3, [r3, #0] + 80028ee: 611a str r2, [r3, #16] } return HAL_OK; - 80028b8: 2300 movs r3, #0 + 80028f0: 2300 movs r3, #0 } - 80028ba: 4618 mov r0, r3 - 80028bc: 3718 adds r7, #24 - 80028be: 46bd mov sp, r7 - 80028c0: bd80 pop {r7, pc} - 80028c2: bf00 nop - 80028c4: 00010002 .word 0x00010002 + 80028f2: 4618 mov r0, r3 + 80028f4: 3718 adds r7, #24 + 80028f6: 46bd mov sp, r7 + 80028f8: bd80 pop {r7, pc} + 80028fa: bf00 nop + 80028fc: 00010002 .word 0x00010002 -080028c8 : +08002900 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_RequestMemoryRead(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint32_t Timeout, uint32_t Tickstart) { - 80028c8: b580 push {r7, lr} - 80028ca: b088 sub sp, #32 - 80028cc: af02 add r7, sp, #8 - 80028ce: 60f8 str r0, [r7, #12] - 80028d0: 4608 mov r0, r1 - 80028d2: 4611 mov r1, r2 - 80028d4: 461a mov r2, r3 - 80028d6: 4603 mov r3, r0 - 80028d8: 817b strh r3, [r7, #10] - 80028da: 460b mov r3, r1 - 80028dc: 813b strh r3, [r7, #8] - 80028de: 4613 mov r3, r2 - 80028e0: 80fb strh r3, [r7, #6] + 8002900: b580 push {r7, lr} + 8002902: b088 sub sp, #32 + 8002904: af02 add r7, sp, #8 + 8002906: 60f8 str r0, [r7, #12] + 8002908: 4608 mov r0, r1 + 800290a: 4611 mov r1, r2 + 800290c: 461a mov r2, r3 + 800290e: 4603 mov r3, r0 + 8002910: 817b strh r3, [r7, #10] + 8002912: 460b mov r3, r1 + 8002914: 813b strh r3, [r7, #8] + 8002916: 4613 mov r3, r2 + 8002918: 80fb strh r3, [r7, #6] /* Enable Acknowledge */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_ACK); - 80028e2: 68fb ldr r3, [r7, #12] - 80028e4: 681b ldr r3, [r3, #0] - 80028e6: 681a ldr r2, [r3, #0] - 80028e8: 68fb ldr r3, [r7, #12] - 80028ea: 681b ldr r3, [r3, #0] - 80028ec: f442 6280 orr.w r2, r2, #1024 ; 0x400 - 80028f0: 601a str r2, [r3, #0] + 800291a: 68fb ldr r3, [r7, #12] + 800291c: 681b ldr r3, [r3, #0] + 800291e: 681a ldr r2, [r3, #0] + 8002920: 68fb ldr r3, [r7, #12] + 8002922: 681b ldr r3, [r3, #0] + 8002924: f442 6280 orr.w r2, r2, #1024 ; 0x400 + 8002928: 601a str r2, [r3, #0] /* Generate Start */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 80028f2: 68fb ldr r3, [r7, #12] - 80028f4: 681b ldr r3, [r3, #0] - 80028f6: 681a ldr r2, [r3, #0] - 80028f8: 68fb ldr r3, [r7, #12] - 80028fa: 681b ldr r3, [r3, #0] - 80028fc: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002900: 601a str r2, [r3, #0] + 800292a: 68fb ldr r3, [r7, #12] + 800292c: 681b ldr r3, [r3, #0] + 800292e: 681a ldr r2, [r3, #0] + 8002930: 68fb ldr r3, [r7, #12] + 8002932: 681b ldr r3, [r3, #0] + 8002934: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002938: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002902: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002904: 9300 str r3, [sp, #0] - 8002906: 6a3b ldr r3, [r7, #32] - 8002908: 2200 movs r2, #0 - 800290a: f04f 1101 mov.w r1, #65537 ; 0x10001 - 800290e: 68f8 ldr r0, [r7, #12] - 8002910: f000 f8c2 bl 8002a98 - 8002914: 4603 mov r3, r0 - 8002916: 2b00 cmp r3, #0 - 8002918: d00d beq.n 8002936 + 800293a: 6a7b ldr r3, [r7, #36] ; 0x24 + 800293c: 9300 str r3, [sp, #0] + 800293e: 6a3b ldr r3, [r7, #32] + 8002940: 2200 movs r2, #0 + 8002942: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002946: 68f8 ldr r0, [r7, #12] + 8002948: f000 f8c2 bl 8002ad0 + 800294c: 4603 mov r3, r0 + 800294e: 2b00 cmp r3, #0 + 8002950: d00d beq.n 800296e { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 800291a: 68fb ldr r3, [r7, #12] - 800291c: 681b ldr r3, [r3, #0] - 800291e: 681b ldr r3, [r3, #0] - 8002920: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002924: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002928: d103 bne.n 8002932 + 8002952: 68fb ldr r3, [r7, #12] + 8002954: 681b ldr r3, [r3, #0] + 8002956: 681b ldr r3, [r3, #0] + 8002958: f403 7380 and.w r3, r3, #256 ; 0x100 + 800295c: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002960: d103 bne.n 800296a { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 800292a: 68fb ldr r3, [r7, #12] - 800292c: f44f 7200 mov.w r2, #512 ; 0x200 - 8002930: 641a str r2, [r3, #64] ; 0x40 + 8002962: 68fb ldr r3, [r7, #12] + 8002964: f44f 7200 mov.w r2, #512 ; 0x200 + 8002968: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002932: 2303 movs r3, #3 - 8002934: e0aa b.n 8002a8c + 800296a: 2303 movs r3, #3 + 800296c: e0aa b.n 8002ac4 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_WRITE(DevAddress); - 8002936: 897b ldrh r3, [r7, #10] - 8002938: b2db uxtb r3, r3 - 800293a: 461a mov r2, r3 - 800293c: 68fb ldr r3, [r7, #12] - 800293e: 681b ldr r3, [r3, #0] - 8002940: f002 02fe and.w r2, r2, #254 ; 0xfe - 8002944: 611a str r2, [r3, #16] + 800296e: 897b ldrh r3, [r7, #10] + 8002970: b2db uxtb r3, r3 + 8002972: 461a mov r2, r3 + 8002974: 68fb ldr r3, [r7, #12] + 8002976: 681b ldr r3, [r3, #0] + 8002978: f002 02fe and.w r2, r2, #254 ; 0xfe + 800297c: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002946: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002948: 6a3a ldr r2, [r7, #32] - 800294a: 4952 ldr r1, [pc, #328] ; (8002a94 ) - 800294c: 68f8 ldr r0, [r7, #12] - 800294e: f000 f8fa bl 8002b46 - 8002952: 4603 mov r3, r0 - 8002954: 2b00 cmp r3, #0 - 8002956: d001 beq.n 800295c + 800297e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002980: 6a3a ldr r2, [r7, #32] + 8002982: 4952 ldr r1, [pc, #328] ; (8002acc ) + 8002984: 68f8 ldr r0, [r7, #12] + 8002986: f000 f8fa bl 8002b7e + 800298a: 4603 mov r3, r0 + 800298c: 2b00 cmp r3, #0 + 800298e: d001 beq.n 8002994 { return HAL_ERROR; - 8002958: 2301 movs r3, #1 - 800295a: e097 b.n 8002a8c + 8002990: 2301 movs r3, #1 + 8002992: e097 b.n 8002ac4 } /* Clear ADDR flag */ __HAL_I2C_CLEAR_ADDRFLAG(hi2c); - 800295c: 2300 movs r3, #0 - 800295e: 617b str r3, [r7, #20] - 8002960: 68fb ldr r3, [r7, #12] - 8002962: 681b ldr r3, [r3, #0] - 8002964: 695b ldr r3, [r3, #20] - 8002966: 617b str r3, [r7, #20] - 8002968: 68fb ldr r3, [r7, #12] - 800296a: 681b ldr r3, [r3, #0] - 800296c: 699b ldr r3, [r3, #24] - 800296e: 617b str r3, [r7, #20] - 8002970: 697b ldr r3, [r7, #20] + 8002994: 2300 movs r3, #0 + 8002996: 617b str r3, [r7, #20] + 8002998: 68fb ldr r3, [r7, #12] + 800299a: 681b ldr r3, [r3, #0] + 800299c: 695b ldr r3, [r3, #20] + 800299e: 617b str r3, [r7, #20] + 80029a0: 68fb ldr r3, [r7, #12] + 80029a2: 681b ldr r3, [r3, #0] + 80029a4: 699b ldr r3, [r3, #24] + 80029a6: 617b str r3, [r7, #20] + 80029a8: 697b ldr r3, [r7, #20] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 8002972: 6a7a ldr r2, [r7, #36] ; 0x24 - 8002974: 6a39 ldr r1, [r7, #32] - 8002976: 68f8 ldr r0, [r7, #12] - 8002978: f000 f964 bl 8002c44 - 800297c: 4603 mov r3, r0 - 800297e: 2b00 cmp r3, #0 - 8002980: d00d beq.n 800299e + 80029aa: 6a7a ldr r2, [r7, #36] ; 0x24 + 80029ac: 6a39 ldr r1, [r7, #32] + 80029ae: 68f8 ldr r0, [r7, #12] + 80029b0: f000 f964 bl 8002c7c + 80029b4: 4603 mov r3, r0 + 80029b6: 2b00 cmp r3, #0 + 80029b8: d00d beq.n 80029d6 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002982: 68fb ldr r3, [r7, #12] - 8002984: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002986: 2b04 cmp r3, #4 - 8002988: d107 bne.n 800299a + 80029ba: 68fb ldr r3, [r7, #12] + 80029bc: 6c1b ldr r3, [r3, #64] ; 0x40 + 80029be: 2b04 cmp r3, #4 + 80029c0: d107 bne.n 80029d2 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 800298a: 68fb ldr r3, [r7, #12] - 800298c: 681b ldr r3, [r3, #0] - 800298e: 681a ldr r2, [r3, #0] - 8002990: 68fb ldr r3, [r7, #12] - 8002992: 681b ldr r3, [r3, #0] - 8002994: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002998: 601a str r2, [r3, #0] + 80029c2: 68fb ldr r3, [r7, #12] + 80029c4: 681b ldr r3, [r3, #0] + 80029c6: 681a ldr r2, [r3, #0] + 80029c8: 68fb ldr r3, [r7, #12] + 80029ca: 681b ldr r3, [r3, #0] + 80029cc: f442 7200 orr.w r2, r2, #512 ; 0x200 + 80029d0: 601a str r2, [r3, #0] } return HAL_ERROR; - 800299a: 2301 movs r3, #1 - 800299c: e076 b.n 8002a8c + 80029d2: 2301 movs r3, #1 + 80029d4: e076 b.n 8002ac4 } /* If Memory address size is 8Bit */ if (MemAddSize == I2C_MEMADD_SIZE_8BIT) - 800299e: 88fb ldrh r3, [r7, #6] - 80029a0: 2b01 cmp r3, #1 - 80029a2: d105 bne.n 80029b0 + 80029d6: 88fb ldrh r3, [r7, #6] + 80029d8: 2b01 cmp r3, #1 + 80029da: d105 bne.n 80029e8 { /* Send Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 80029a4: 893b ldrh r3, [r7, #8] - 80029a6: b2da uxtb r2, r3 - 80029a8: 68fb ldr r3, [r7, #12] - 80029aa: 681b ldr r3, [r3, #0] - 80029ac: 611a str r2, [r3, #16] - 80029ae: e021 b.n 80029f4 + 80029dc: 893b ldrh r3, [r7, #8] + 80029de: b2da uxtb r2, r3 + 80029e0: 68fb ldr r3, [r7, #12] + 80029e2: 681b ldr r3, [r3, #0] + 80029e4: 611a str r2, [r3, #16] + 80029e6: e021 b.n 8002a2c } /* If Memory address size is 16Bit */ else { /* Send MSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_MSB(MemAddress); - 80029b0: 893b ldrh r3, [r7, #8] - 80029b2: 0a1b lsrs r3, r3, #8 - 80029b4: b29b uxth r3, r3 - 80029b6: b2da uxtb r2, r3 - 80029b8: 68fb ldr r3, [r7, #12] - 80029ba: 681b ldr r3, [r3, #0] - 80029bc: 611a str r2, [r3, #16] + 80029e8: 893b ldrh r3, [r7, #8] + 80029ea: 0a1b lsrs r3, r3, #8 + 80029ec: b29b uxth r3, r3 + 80029ee: b2da uxtb r2, r3 + 80029f0: 68fb ldr r3, [r7, #12] + 80029f2: 681b ldr r3, [r3, #0] + 80029f4: 611a str r2, [r3, #16] /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 80029be: 6a7a ldr r2, [r7, #36] ; 0x24 - 80029c0: 6a39 ldr r1, [r7, #32] - 80029c2: 68f8 ldr r0, [r7, #12] - 80029c4: f000 f93e bl 8002c44 - 80029c8: 4603 mov r3, r0 - 80029ca: 2b00 cmp r3, #0 - 80029cc: d00d beq.n 80029ea + 80029f6: 6a7a ldr r2, [r7, #36] ; 0x24 + 80029f8: 6a39 ldr r1, [r7, #32] + 80029fa: 68f8 ldr r0, [r7, #12] + 80029fc: f000 f93e bl 8002c7c + 8002a00: 4603 mov r3, r0 + 8002a02: 2b00 cmp r3, #0 + 8002a04: d00d beq.n 8002a22 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 80029ce: 68fb ldr r3, [r7, #12] - 80029d0: 6c1b ldr r3, [r3, #64] ; 0x40 - 80029d2: 2b04 cmp r3, #4 - 80029d4: d107 bne.n 80029e6 + 8002a06: 68fb ldr r3, [r7, #12] + 8002a08: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002a0a: 2b04 cmp r3, #4 + 8002a0c: d107 bne.n 8002a1e { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 80029d6: 68fb ldr r3, [r7, #12] - 80029d8: 681b ldr r3, [r3, #0] - 80029da: 681a ldr r2, [r3, #0] - 80029dc: 68fb ldr r3, [r7, #12] - 80029de: 681b ldr r3, [r3, #0] - 80029e0: f442 7200 orr.w r2, r2, #512 ; 0x200 - 80029e4: 601a str r2, [r3, #0] + 8002a0e: 68fb ldr r3, [r7, #12] + 8002a10: 681b ldr r3, [r3, #0] + 8002a12: 681a ldr r2, [r3, #0] + 8002a14: 68fb ldr r3, [r7, #12] + 8002a16: 681b ldr r3, [r3, #0] + 8002a18: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002a1c: 601a str r2, [r3, #0] } return HAL_ERROR; - 80029e6: 2301 movs r3, #1 - 80029e8: e050 b.n 8002a8c + 8002a1e: 2301 movs r3, #1 + 8002a20: e050 b.n 8002ac4 } /* Send LSB of Memory Address */ hi2c->Instance->DR = I2C_MEM_ADD_LSB(MemAddress); - 80029ea: 893b ldrh r3, [r7, #8] - 80029ec: b2da uxtb r2, r3 - 80029ee: 68fb ldr r3, [r7, #12] - 80029f0: 681b ldr r3, [r3, #0] - 80029f2: 611a str r2, [r3, #16] + 8002a22: 893b ldrh r3, [r7, #8] + 8002a24: b2da uxtb r2, r3 + 8002a26: 68fb ldr r3, [r7, #12] + 8002a28: 681b ldr r3, [r3, #0] + 8002a2a: 611a str r2, [r3, #16] } /* Wait until TXE flag is set */ if (I2C_WaitOnTXEFlagUntilTimeout(hi2c, Timeout, Tickstart) != HAL_OK) - 80029f4: 6a7a ldr r2, [r7, #36] ; 0x24 - 80029f6: 6a39 ldr r1, [r7, #32] - 80029f8: 68f8 ldr r0, [r7, #12] - 80029fa: f000 f923 bl 8002c44 - 80029fe: 4603 mov r3, r0 - 8002a00: 2b00 cmp r3, #0 - 8002a02: d00d beq.n 8002a20 + 8002a2c: 6a7a ldr r2, [r7, #36] ; 0x24 + 8002a2e: 6a39 ldr r1, [r7, #32] + 8002a30: 68f8 ldr r0, [r7, #12] + 8002a32: f000 f923 bl 8002c7c + 8002a36: 4603 mov r3, r0 + 8002a38: 2b00 cmp r3, #0 + 8002a3a: d00d beq.n 8002a58 { if (hi2c->ErrorCode == HAL_I2C_ERROR_AF) - 8002a04: 68fb ldr r3, [r7, #12] - 8002a06: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002a08: 2b04 cmp r3, #4 - 8002a0a: d107 bne.n 8002a1c + 8002a3c: 68fb ldr r3, [r7, #12] + 8002a3e: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002a40: 2b04 cmp r3, #4 + 8002a42: d107 bne.n 8002a54 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002a0c: 68fb ldr r3, [r7, #12] - 8002a0e: 681b ldr r3, [r3, #0] - 8002a10: 681a ldr r2, [r3, #0] - 8002a12: 68fb ldr r3, [r7, #12] - 8002a14: 681b ldr r3, [r3, #0] - 8002a16: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002a1a: 601a str r2, [r3, #0] + 8002a44: 68fb ldr r3, [r7, #12] + 8002a46: 681b ldr r3, [r3, #0] + 8002a48: 681a ldr r2, [r3, #0] + 8002a4a: 68fb ldr r3, [r7, #12] + 8002a4c: 681b ldr r3, [r3, #0] + 8002a4e: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002a52: 601a str r2, [r3, #0] } return HAL_ERROR; - 8002a1c: 2301 movs r3, #1 - 8002a1e: e035 b.n 8002a8c + 8002a54: 2301 movs r3, #1 + 8002a56: e035 b.n 8002ac4 } /* Generate Restart */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_START); - 8002a20: 68fb ldr r3, [r7, #12] - 8002a22: 681b ldr r3, [r3, #0] - 8002a24: 681a ldr r2, [r3, #0] - 8002a26: 68fb ldr r3, [r7, #12] - 8002a28: 681b ldr r3, [r3, #0] - 8002a2a: f442 7280 orr.w r2, r2, #256 ; 0x100 - 8002a2e: 601a str r2, [r3, #0] + 8002a58: 68fb ldr r3, [r7, #12] + 8002a5a: 681b ldr r3, [r3, #0] + 8002a5c: 681a ldr r2, [r3, #0] + 8002a5e: 68fb ldr r3, [r7, #12] + 8002a60: 681b ldr r3, [r3, #0] + 8002a62: f442 7280 orr.w r2, r2, #256 ; 0x100 + 8002a66: 601a str r2, [r3, #0] /* Wait until SB flag is set */ if (I2C_WaitOnFlagUntilTimeout(hi2c, I2C_FLAG_SB, RESET, Timeout, Tickstart) != HAL_OK) - 8002a30: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002a32: 9300 str r3, [sp, #0] - 8002a34: 6a3b ldr r3, [r7, #32] - 8002a36: 2200 movs r2, #0 - 8002a38: f04f 1101 mov.w r1, #65537 ; 0x10001 - 8002a3c: 68f8 ldr r0, [r7, #12] - 8002a3e: f000 f82b bl 8002a98 - 8002a42: 4603 mov r3, r0 - 8002a44: 2b00 cmp r3, #0 - 8002a46: d00d beq.n 8002a64 + 8002a68: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002a6a: 9300 str r3, [sp, #0] + 8002a6c: 6a3b ldr r3, [r7, #32] + 8002a6e: 2200 movs r2, #0 + 8002a70: f04f 1101 mov.w r1, #65537 ; 0x10001 + 8002a74: 68f8 ldr r0, [r7, #12] + 8002a76: f000 f82b bl 8002ad0 + 8002a7a: 4603 mov r3, r0 + 8002a7c: 2b00 cmp r3, #0 + 8002a7e: d00d beq.n 8002a9c { if (READ_BIT(hi2c->Instance->CR1, I2C_CR1_START) == I2C_CR1_START) - 8002a48: 68fb ldr r3, [r7, #12] - 8002a4a: 681b ldr r3, [r3, #0] - 8002a4c: 681b ldr r3, [r3, #0] - 8002a4e: f403 7380 and.w r3, r3, #256 ; 0x100 - 8002a52: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8002a56: d103 bne.n 8002a60 + 8002a80: 68fb ldr r3, [r7, #12] + 8002a82: 681b ldr r3, [r3, #0] + 8002a84: 681b ldr r3, [r3, #0] + 8002a86: f403 7380 and.w r3, r3, #256 ; 0x100 + 8002a8a: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 8002a8e: d103 bne.n 8002a98 { hi2c->ErrorCode = HAL_I2C_WRONG_START; - 8002a58: 68fb ldr r3, [r7, #12] - 8002a5a: f44f 7200 mov.w r2, #512 ; 0x200 - 8002a5e: 641a str r2, [r3, #64] ; 0x40 + 8002a90: 68fb ldr r3, [r7, #12] + 8002a92: f44f 7200 mov.w r2, #512 ; 0x200 + 8002a96: 641a str r2, [r3, #64] ; 0x40 } return HAL_TIMEOUT; - 8002a60: 2303 movs r3, #3 - 8002a62: e013 b.n 8002a8c + 8002a98: 2303 movs r3, #3 + 8002a9a: e013 b.n 8002ac4 } /* Send slave address */ hi2c->Instance->DR = I2C_7BIT_ADD_READ(DevAddress); - 8002a64: 897b ldrh r3, [r7, #10] - 8002a66: b2db uxtb r3, r3 - 8002a68: f043 0301 orr.w r3, r3, #1 - 8002a6c: b2da uxtb r2, r3 - 8002a6e: 68fb ldr r3, [r7, #12] - 8002a70: 681b ldr r3, [r3, #0] - 8002a72: 611a str r2, [r3, #16] + 8002a9c: 897b ldrh r3, [r7, #10] + 8002a9e: b2db uxtb r3, r3 + 8002aa0: f043 0301 orr.w r3, r3, #1 + 8002aa4: b2da uxtb r2, r3 + 8002aa6: 68fb ldr r3, [r7, #12] + 8002aa8: 681b ldr r3, [r3, #0] + 8002aaa: 611a str r2, [r3, #16] /* Wait until ADDR flag is set */ if (I2C_WaitOnMasterAddressFlagUntilTimeout(hi2c, I2C_FLAG_ADDR, Timeout, Tickstart) != HAL_OK) - 8002a74: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002a76: 6a3a ldr r2, [r7, #32] - 8002a78: 4906 ldr r1, [pc, #24] ; (8002a94 ) - 8002a7a: 68f8 ldr r0, [r7, #12] - 8002a7c: f000 f863 bl 8002b46 - 8002a80: 4603 mov r3, r0 - 8002a82: 2b00 cmp r3, #0 - 8002a84: d001 beq.n 8002a8a + 8002aac: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002aae: 6a3a ldr r2, [r7, #32] + 8002ab0: 4906 ldr r1, [pc, #24] ; (8002acc ) + 8002ab2: 68f8 ldr r0, [r7, #12] + 8002ab4: f000 f863 bl 8002b7e + 8002ab8: 4603 mov r3, r0 + 8002aba: 2b00 cmp r3, #0 + 8002abc: d001 beq.n 8002ac2 { return HAL_ERROR; - 8002a86: 2301 movs r3, #1 - 8002a88: e000 b.n 8002a8c + 8002abe: 2301 movs r3, #1 + 8002ac0: e000 b.n 8002ac4 } return HAL_OK; - 8002a8a: 2300 movs r3, #0 + 8002ac2: 2300 movs r3, #0 } - 8002a8c: 4618 mov r0, r3 - 8002a8e: 3718 adds r7, #24 - 8002a90: 46bd mov sp, r7 - 8002a92: bd80 pop {r7, pc} - 8002a94: 00010002 .word 0x00010002 + 8002ac4: 4618 mov r0, r3 + 8002ac6: 3718 adds r7, #24 + 8002ac8: 46bd mov sp, r7 + 8002aca: bd80 pop {r7, pc} + 8002acc: 00010002 .word 0x00010002 -08002a98 : +08002ad0 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, FlagStatus Status, uint32_t Timeout, uint32_t Tickstart) { - 8002a98: b580 push {r7, lr} - 8002a9a: b084 sub sp, #16 - 8002a9c: af00 add r7, sp, #0 - 8002a9e: 60f8 str r0, [r7, #12] - 8002aa0: 60b9 str r1, [r7, #8] - 8002aa2: 603b str r3, [r7, #0] - 8002aa4: 4613 mov r3, r2 - 8002aa6: 71fb strb r3, [r7, #7] + 8002ad0: b580 push {r7, lr} + 8002ad2: b084 sub sp, #16 + 8002ad4: af00 add r7, sp, #0 + 8002ad6: 60f8 str r0, [r7, #12] + 8002ad8: 60b9 str r1, [r7, #8] + 8002ada: 603b str r3, [r7, #0] + 8002adc: 4613 mov r3, r2 + 8002ade: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002aa8: e025 b.n 8002af6 + 8002ae0: e025 b.n 8002b2e { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002aaa: 683b ldr r3, [r7, #0] - 8002aac: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002ab0: d021 beq.n 8002af6 + 8002ae2: 683b ldr r3, [r7, #0] + 8002ae4: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002ae8: d021 beq.n 8002b2e { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002ab2: f7fe fef7 bl 80018a4 - 8002ab6: 4602 mov r2, r0 - 8002ab8: 69bb ldr r3, [r7, #24] - 8002aba: 1ad3 subs r3, r2, r3 - 8002abc: 683a ldr r2, [r7, #0] - 8002abe: 429a cmp r2, r3 - 8002ac0: d302 bcc.n 8002ac8 - 8002ac2: 683b ldr r3, [r7, #0] - 8002ac4: 2b00 cmp r3, #0 - 8002ac6: d116 bne.n 8002af6 + 8002aea: f7fe fef7 bl 80018dc + 8002aee: 4602 mov r2, r0 + 8002af0: 69bb ldr r3, [r7, #24] + 8002af2: 1ad3 subs r3, r2, r3 + 8002af4: 683a ldr r2, [r7, #0] + 8002af6: 429a cmp r2, r3 + 8002af8: d302 bcc.n 8002b00 + 8002afa: 683b ldr r3, [r7, #0] + 8002afc: 2b00 cmp r3, #0 + 8002afe: d116 bne.n 8002b2e { hi2c->PreviousState = I2C_STATE_NONE; - 8002ac8: 68fb ldr r3, [r7, #12] - 8002aca: 2200 movs r2, #0 - 8002acc: 631a str r2, [r3, #48] ; 0x30 + 8002b00: 68fb ldr r3, [r7, #12] + 8002b02: 2200 movs r2, #0 + 8002b04: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002ace: 68fb ldr r3, [r7, #12] - 8002ad0: 2220 movs r2, #32 - 8002ad2: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002b06: 68fb ldr r3, [r7, #12] + 8002b08: 2220 movs r2, #32 + 8002b0a: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002ad6: 68fb ldr r3, [r7, #12] - 8002ad8: 2200 movs r2, #0 - 8002ada: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002b0e: 68fb ldr r3, [r7, #12] + 8002b10: 2200 movs r2, #0 + 8002b12: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002ade: 68fb ldr r3, [r7, #12] - 8002ae0: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002ae2: f043 0220 orr.w r2, r3, #32 - 8002ae6: 68fb ldr r3, [r7, #12] - 8002ae8: 641a str r2, [r3, #64] ; 0x40 + 8002b16: 68fb ldr r3, [r7, #12] + 8002b18: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002b1a: f043 0220 orr.w r2, r3, #32 + 8002b1e: 68fb ldr r3, [r7, #12] + 8002b20: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002aea: 68fb ldr r3, [r7, #12] - 8002aec: 2200 movs r2, #0 - 8002aee: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002b22: 68fb ldr r3, [r7, #12] + 8002b24: 2200 movs r2, #0 + 8002b26: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002af2: 2301 movs r3, #1 - 8002af4: e023 b.n 8002b3e + 8002b2a: 2301 movs r3, #1 + 8002b2c: e023 b.n 8002b76 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == Status) - 8002af6: 68bb ldr r3, [r7, #8] - 8002af8: 0c1b lsrs r3, r3, #16 - 8002afa: b2db uxtb r3, r3 - 8002afc: 2b01 cmp r3, #1 - 8002afe: d10d bne.n 8002b1c - 8002b00: 68fb ldr r3, [r7, #12] - 8002b02: 681b ldr r3, [r3, #0] - 8002b04: 695b ldr r3, [r3, #20] - 8002b06: 43da mvns r2, r3 - 8002b08: 68bb ldr r3, [r7, #8] - 8002b0a: 4013 ands r3, r2 - 8002b0c: b29b uxth r3, r3 - 8002b0e: 2b00 cmp r3, #0 - 8002b10: bf0c ite eq - 8002b12: 2301 moveq r3, #1 - 8002b14: 2300 movne r3, #0 - 8002b16: b2db uxtb r3, r3 - 8002b18: 461a mov r2, r3 - 8002b1a: e00c b.n 8002b36 - 8002b1c: 68fb ldr r3, [r7, #12] - 8002b1e: 681b ldr r3, [r3, #0] - 8002b20: 699b ldr r3, [r3, #24] - 8002b22: 43da mvns r2, r3 - 8002b24: 68bb ldr r3, [r7, #8] - 8002b26: 4013 ands r3, r2 - 8002b28: b29b uxth r3, r3 - 8002b2a: 2b00 cmp r3, #0 - 8002b2c: bf0c ite eq - 8002b2e: 2301 moveq r3, #1 - 8002b30: 2300 movne r3, #0 + 8002b2e: 68bb ldr r3, [r7, #8] + 8002b30: 0c1b lsrs r3, r3, #16 8002b32: b2db uxtb r3, r3 - 8002b34: 461a mov r2, r3 - 8002b36: 79fb ldrb r3, [r7, #7] - 8002b38: 429a cmp r2, r3 - 8002b3a: d0b6 beq.n 8002aaa + 8002b34: 2b01 cmp r3, #1 + 8002b36: d10d bne.n 8002b54 + 8002b38: 68fb ldr r3, [r7, #12] + 8002b3a: 681b ldr r3, [r3, #0] + 8002b3c: 695b ldr r3, [r3, #20] + 8002b3e: 43da mvns r2, r3 + 8002b40: 68bb ldr r3, [r7, #8] + 8002b42: 4013 ands r3, r2 + 8002b44: b29b uxth r3, r3 + 8002b46: 2b00 cmp r3, #0 + 8002b48: bf0c ite eq + 8002b4a: 2301 moveq r3, #1 + 8002b4c: 2300 movne r3, #0 + 8002b4e: b2db uxtb r3, r3 + 8002b50: 461a mov r2, r3 + 8002b52: e00c b.n 8002b6e + 8002b54: 68fb ldr r3, [r7, #12] + 8002b56: 681b ldr r3, [r3, #0] + 8002b58: 699b ldr r3, [r3, #24] + 8002b5a: 43da mvns r2, r3 + 8002b5c: 68bb ldr r3, [r7, #8] + 8002b5e: 4013 ands r3, r2 + 8002b60: b29b uxth r3, r3 + 8002b62: 2b00 cmp r3, #0 + 8002b64: bf0c ite eq + 8002b66: 2301 moveq r3, #1 + 8002b68: 2300 movne r3, #0 + 8002b6a: b2db uxtb r3, r3 + 8002b6c: 461a mov r2, r3 + 8002b6e: 79fb ldrb r3, [r7, #7] + 8002b70: 429a cmp r2, r3 + 8002b72: d0b6 beq.n 8002ae2 } } } return HAL_OK; - 8002b3c: 2300 movs r3, #0 + 8002b74: 2300 movs r3, #0 } - 8002b3e: 4618 mov r0, r3 - 8002b40: 3710 adds r7, #16 - 8002b42: 46bd mov sp, r7 - 8002b44: bd80 pop {r7, pc} + 8002b76: 4618 mov r0, r3 + 8002b78: 3710 adds r7, #16 + 8002b7a: 46bd mov sp, r7 + 8002b7c: bd80 pop {r7, pc} -08002b46 : +08002b7e : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnMasterAddressFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Flag, uint32_t Timeout, uint32_t Tickstart) { - 8002b46: b580 push {r7, lr} - 8002b48: b084 sub sp, #16 - 8002b4a: af00 add r7, sp, #0 - 8002b4c: 60f8 str r0, [r7, #12] - 8002b4e: 60b9 str r1, [r7, #8] - 8002b50: 607a str r2, [r7, #4] - 8002b52: 603b str r3, [r7, #0] + 8002b7e: b580 push {r7, lr} + 8002b80: b084 sub sp, #16 + 8002b82: af00 add r7, sp, #0 + 8002b84: 60f8 str r0, [r7, #12] + 8002b86: 60b9 str r1, [r7, #8] + 8002b88: 607a str r2, [r7, #4] + 8002b8a: 603b str r3, [r7, #0] while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002b54: e051 b.n 8002bfa + 8002b8c: e051 b.n 8002c32 { if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 8002b56: 68fb ldr r3, [r7, #12] - 8002b58: 681b ldr r3, [r3, #0] - 8002b5a: 695b ldr r3, [r3, #20] - 8002b5c: f403 6380 and.w r3, r3, #1024 ; 0x400 - 8002b60: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8002b64: d123 bne.n 8002bae + 8002b8e: 68fb ldr r3, [r7, #12] + 8002b90: 681b ldr r3, [r3, #0] + 8002b92: 695b ldr r3, [r3, #20] + 8002b94: f403 6380 and.w r3, r3, #1024 ; 0x400 + 8002b98: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 8002b9c: d123 bne.n 8002be6 { /* Generate Stop */ SET_BIT(hi2c->Instance->CR1, I2C_CR1_STOP); - 8002b66: 68fb ldr r3, [r7, #12] - 8002b68: 681b ldr r3, [r3, #0] - 8002b6a: 681a ldr r2, [r3, #0] - 8002b6c: 68fb ldr r3, [r7, #12] - 8002b6e: 681b ldr r3, [r3, #0] - 8002b70: f442 7200 orr.w r2, r2, #512 ; 0x200 - 8002b74: 601a str r2, [r3, #0] + 8002b9e: 68fb ldr r3, [r7, #12] + 8002ba0: 681b ldr r3, [r3, #0] + 8002ba2: 681a ldr r2, [r3, #0] + 8002ba4: 68fb ldr r3, [r7, #12] + 8002ba6: 681b ldr r3, [r3, #0] + 8002ba8: f442 7200 orr.w r2, r2, #512 ; 0x200 + 8002bac: 601a str r2, [r3, #0] /* Clear AF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 8002b76: 68fb ldr r3, [r7, #12] - 8002b78: 681b ldr r3, [r3, #0] - 8002b7a: f46f 6280 mvn.w r2, #1024 ; 0x400 - 8002b7e: 615a str r2, [r3, #20] + 8002bae: 68fb ldr r3, [r7, #12] + 8002bb0: 681b ldr r3, [r3, #0] + 8002bb2: f46f 6280 mvn.w r2, #1024 ; 0x400 + 8002bb6: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002b80: 68fb ldr r3, [r7, #12] - 8002b82: 2200 movs r2, #0 - 8002b84: 631a str r2, [r3, #48] ; 0x30 + 8002bb8: 68fb ldr r3, [r7, #12] + 8002bba: 2200 movs r2, #0 + 8002bbc: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002b86: 68fb ldr r3, [r7, #12] - 8002b88: 2220 movs r2, #32 - 8002b8a: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002bbe: 68fb ldr r3, [r7, #12] + 8002bc0: 2220 movs r2, #32 + 8002bc2: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002b8e: 68fb ldr r3, [r7, #12] - 8002b90: 2200 movs r2, #0 - 8002b92: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002bc6: 68fb ldr r3, [r7, #12] + 8002bc8: 2200 movs r2, #0 + 8002bca: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8002b96: 68fb ldr r3, [r7, #12] - 8002b98: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002b9a: f043 0204 orr.w r2, r3, #4 - 8002b9e: 68fb ldr r3, [r7, #12] - 8002ba0: 641a str r2, [r3, #64] ; 0x40 + 8002bce: 68fb ldr r3, [r7, #12] + 8002bd0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002bd2: f043 0204 orr.w r2, r3, #4 + 8002bd6: 68fb ldr r3, [r7, #12] + 8002bd8: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002ba2: 68fb ldr r3, [r7, #12] - 8002ba4: 2200 movs r2, #0 - 8002ba6: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002bda: 68fb ldr r3, [r7, #12] + 8002bdc: 2200 movs r2, #0 + 8002bde: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002baa: 2301 movs r3, #1 - 8002bac: e046 b.n 8002c3c + 8002be2: 2301 movs r3, #1 + 8002be4: e046 b.n 8002c74 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002bae: 687b ldr r3, [r7, #4] - 8002bb0: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002bb4: d021 beq.n 8002bfa + 8002be6: 687b ldr r3, [r7, #4] + 8002be8: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002bec: d021 beq.n 8002c32 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002bb6: f7fe fe75 bl 80018a4 - 8002bba: 4602 mov r2, r0 - 8002bbc: 683b ldr r3, [r7, #0] - 8002bbe: 1ad3 subs r3, r2, r3 - 8002bc0: 687a ldr r2, [r7, #4] - 8002bc2: 429a cmp r2, r3 - 8002bc4: d302 bcc.n 8002bcc - 8002bc6: 687b ldr r3, [r7, #4] - 8002bc8: 2b00 cmp r3, #0 - 8002bca: d116 bne.n 8002bfa + 8002bee: f7fe fe75 bl 80018dc + 8002bf2: 4602 mov r2, r0 + 8002bf4: 683b ldr r3, [r7, #0] + 8002bf6: 1ad3 subs r3, r2, r3 + 8002bf8: 687a ldr r2, [r7, #4] + 8002bfa: 429a cmp r2, r3 + 8002bfc: d302 bcc.n 8002c04 + 8002bfe: 687b ldr r3, [r7, #4] + 8002c00: 2b00 cmp r3, #0 + 8002c02: d116 bne.n 8002c32 { hi2c->PreviousState = I2C_STATE_NONE; - 8002bcc: 68fb ldr r3, [r7, #12] - 8002bce: 2200 movs r2, #0 - 8002bd0: 631a str r2, [r3, #48] ; 0x30 + 8002c04: 68fb ldr r3, [r7, #12] + 8002c06: 2200 movs r2, #0 + 8002c08: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002bd2: 68fb ldr r3, [r7, #12] - 8002bd4: 2220 movs r2, #32 - 8002bd6: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002c0a: 68fb ldr r3, [r7, #12] + 8002c0c: 2220 movs r2, #32 + 8002c0e: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002bda: 68fb ldr r3, [r7, #12] - 8002bdc: 2200 movs r2, #0 - 8002bde: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002c12: 68fb ldr r3, [r7, #12] + 8002c14: 2200 movs r2, #0 + 8002c16: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002be2: 68fb ldr r3, [r7, #12] - 8002be4: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002be6: f043 0220 orr.w r2, r3, #32 - 8002bea: 68fb ldr r3, [r7, #12] - 8002bec: 641a str r2, [r3, #64] ; 0x40 + 8002c1a: 68fb ldr r3, [r7, #12] + 8002c1c: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002c1e: f043 0220 orr.w r2, r3, #32 + 8002c22: 68fb ldr r3, [r7, #12] + 8002c24: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002bee: 68fb ldr r3, [r7, #12] - 8002bf0: 2200 movs r2, #0 - 8002bf2: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002c26: 68fb ldr r3, [r7, #12] + 8002c28: 2200 movs r2, #0 + 8002c2a: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002bf6: 2301 movs r3, #1 - 8002bf8: e020 b.n 8002c3c + 8002c2e: 2301 movs r3, #1 + 8002c30: e020 b.n 8002c74 while (__HAL_I2C_GET_FLAG(hi2c, Flag) == RESET) - 8002bfa: 68bb ldr r3, [r7, #8] - 8002bfc: 0c1b lsrs r3, r3, #16 - 8002bfe: b2db uxtb r3, r3 - 8002c00: 2b01 cmp r3, #1 - 8002c02: d10c bne.n 8002c1e - 8002c04: 68fb ldr r3, [r7, #12] - 8002c06: 681b ldr r3, [r3, #0] - 8002c08: 695b ldr r3, [r3, #20] - 8002c0a: 43da mvns r2, r3 - 8002c0c: 68bb ldr r3, [r7, #8] - 8002c0e: 4013 ands r3, r2 - 8002c10: b29b uxth r3, r3 - 8002c12: 2b00 cmp r3, #0 - 8002c14: bf14 ite ne - 8002c16: 2301 movne r3, #1 - 8002c18: 2300 moveq r3, #0 - 8002c1a: b2db uxtb r3, r3 - 8002c1c: e00b b.n 8002c36 - 8002c1e: 68fb ldr r3, [r7, #12] - 8002c20: 681b ldr r3, [r3, #0] - 8002c22: 699b ldr r3, [r3, #24] - 8002c24: 43da mvns r2, r3 - 8002c26: 68bb ldr r3, [r7, #8] - 8002c28: 4013 ands r3, r2 - 8002c2a: b29b uxth r3, r3 - 8002c2c: 2b00 cmp r3, #0 - 8002c2e: bf14 ite ne - 8002c30: 2301 movne r3, #1 - 8002c32: 2300 moveq r3, #0 - 8002c34: b2db uxtb r3, r3 - 8002c36: 2b00 cmp r3, #0 - 8002c38: d18d bne.n 8002b56 + 8002c32: 68bb ldr r3, [r7, #8] + 8002c34: 0c1b lsrs r3, r3, #16 + 8002c36: b2db uxtb r3, r3 + 8002c38: 2b01 cmp r3, #1 + 8002c3a: d10c bne.n 8002c56 + 8002c3c: 68fb ldr r3, [r7, #12] + 8002c3e: 681b ldr r3, [r3, #0] + 8002c40: 695b ldr r3, [r3, #20] + 8002c42: 43da mvns r2, r3 + 8002c44: 68bb ldr r3, [r7, #8] + 8002c46: 4013 ands r3, r2 + 8002c48: b29b uxth r3, r3 + 8002c4a: 2b00 cmp r3, #0 + 8002c4c: bf14 ite ne + 8002c4e: 2301 movne r3, #1 + 8002c50: 2300 moveq r3, #0 + 8002c52: b2db uxtb r3, r3 + 8002c54: e00b b.n 8002c6e + 8002c56: 68fb ldr r3, [r7, #12] + 8002c58: 681b ldr r3, [r3, #0] + 8002c5a: 699b ldr r3, [r3, #24] + 8002c5c: 43da mvns r2, r3 + 8002c5e: 68bb ldr r3, [r7, #8] + 8002c60: 4013 ands r3, r2 + 8002c62: b29b uxth r3, r3 + 8002c64: 2b00 cmp r3, #0 + 8002c66: bf14 ite ne + 8002c68: 2301 movne r3, #1 + 8002c6a: 2300 moveq r3, #0 + 8002c6c: b2db uxtb r3, r3 + 8002c6e: 2b00 cmp r3, #0 + 8002c70: d18d bne.n 8002b8e } } } return HAL_OK; - 8002c3a: 2300 movs r3, #0 + 8002c72: 2300 movs r3, #0 } - 8002c3c: 4618 mov r0, r3 - 8002c3e: 3710 adds r7, #16 - 8002c40: 46bd mov sp, r7 - 8002c42: bd80 pop {r7, pc} + 8002c74: 4618 mov r0, r3 + 8002c76: 3710 adds r7, #16 + 8002c78: 46bd mov sp, r7 + 8002c7a: bd80 pop {r7, pc} -08002c44 : +08002c7c : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnTXEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002c44: b580 push {r7, lr} - 8002c46: b084 sub sp, #16 - 8002c48: af00 add r7, sp, #0 - 8002c4a: 60f8 str r0, [r7, #12] - 8002c4c: 60b9 str r1, [r7, #8] - 8002c4e: 607a str r2, [r7, #4] + 8002c7c: b580 push {r7, lr} + 8002c7e: b084 sub sp, #16 + 8002c80: af00 add r7, sp, #0 + 8002c82: 60f8 str r0, [r7, #12] + 8002c84: 60b9 str r1, [r7, #8] + 8002c86: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002c50: e02d b.n 8002cae + 8002c88: e02d b.n 8002ce6 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002c52: 68f8 ldr r0, [r7, #12] - 8002c54: f000 f8ce bl 8002df4 - 8002c58: 4603 mov r3, r0 - 8002c5a: 2b00 cmp r3, #0 - 8002c5c: d001 beq.n 8002c62 + 8002c8a: 68f8 ldr r0, [r7, #12] + 8002c8c: f000 f8ce bl 8002e2c + 8002c90: 4603 mov r3, r0 + 8002c92: 2b00 cmp r3, #0 + 8002c94: d001 beq.n 8002c9a { return HAL_ERROR; - 8002c5e: 2301 movs r3, #1 - 8002c60: e02d b.n 8002cbe + 8002c96: 2301 movs r3, #1 + 8002c98: e02d b.n 8002cf6 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002c62: 68bb ldr r3, [r7, #8] - 8002c64: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002c68: d021 beq.n 8002cae + 8002c9a: 68bb ldr r3, [r7, #8] + 8002c9c: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002ca0: d021 beq.n 8002ce6 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002c6a: f7fe fe1b bl 80018a4 - 8002c6e: 4602 mov r2, r0 - 8002c70: 687b ldr r3, [r7, #4] - 8002c72: 1ad3 subs r3, r2, r3 - 8002c74: 68ba ldr r2, [r7, #8] - 8002c76: 429a cmp r2, r3 - 8002c78: d302 bcc.n 8002c80 - 8002c7a: 68bb ldr r3, [r7, #8] - 8002c7c: 2b00 cmp r3, #0 - 8002c7e: d116 bne.n 8002cae + 8002ca2: f7fe fe1b bl 80018dc + 8002ca6: 4602 mov r2, r0 + 8002ca8: 687b ldr r3, [r7, #4] + 8002caa: 1ad3 subs r3, r2, r3 + 8002cac: 68ba ldr r2, [r7, #8] + 8002cae: 429a cmp r2, r3 + 8002cb0: d302 bcc.n 8002cb8 + 8002cb2: 68bb ldr r3, [r7, #8] + 8002cb4: 2b00 cmp r3, #0 + 8002cb6: d116 bne.n 8002ce6 { hi2c->PreviousState = I2C_STATE_NONE; - 8002c80: 68fb ldr r3, [r7, #12] - 8002c82: 2200 movs r2, #0 - 8002c84: 631a str r2, [r3, #48] ; 0x30 + 8002cb8: 68fb ldr r3, [r7, #12] + 8002cba: 2200 movs r2, #0 + 8002cbc: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002c86: 68fb ldr r3, [r7, #12] - 8002c88: 2220 movs r2, #32 - 8002c8a: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002cbe: 68fb ldr r3, [r7, #12] + 8002cc0: 2220 movs r2, #32 + 8002cc2: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002c8e: 68fb ldr r3, [r7, #12] - 8002c90: 2200 movs r2, #0 - 8002c92: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002cc6: 68fb ldr r3, [r7, #12] + 8002cc8: 2200 movs r2, #0 + 8002cca: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002c96: 68fb ldr r3, [r7, #12] - 8002c98: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002c9a: f043 0220 orr.w r2, r3, #32 - 8002c9e: 68fb ldr r3, [r7, #12] - 8002ca0: 641a str r2, [r3, #64] ; 0x40 + 8002cce: 68fb ldr r3, [r7, #12] + 8002cd0: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002cd2: f043 0220 orr.w r2, r3, #32 + 8002cd6: 68fb ldr r3, [r7, #12] + 8002cd8: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002ca2: 68fb ldr r3, [r7, #12] - 8002ca4: 2200 movs r2, #0 - 8002ca6: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002cda: 68fb ldr r3, [r7, #12] + 8002cdc: 2200 movs r2, #0 + 8002cde: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002caa: 2301 movs r3, #1 - 8002cac: e007 b.n 8002cbe + 8002ce2: 2301 movs r3, #1 + 8002ce4: e007 b.n 8002cf6 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_TXE) == RESET) - 8002cae: 68fb ldr r3, [r7, #12] - 8002cb0: 681b ldr r3, [r3, #0] - 8002cb2: 695b ldr r3, [r3, #20] - 8002cb4: f003 0380 and.w r3, r3, #128 ; 0x80 - 8002cb8: 2b80 cmp r3, #128 ; 0x80 - 8002cba: d1ca bne.n 8002c52 + 8002ce6: 68fb ldr r3, [r7, #12] + 8002ce8: 681b ldr r3, [r3, #0] + 8002cea: 695b ldr r3, [r3, #20] + 8002cec: f003 0380 and.w r3, r3, #128 ; 0x80 + 8002cf0: 2b80 cmp r3, #128 ; 0x80 + 8002cf2: d1ca bne.n 8002c8a } } } return HAL_OK; - 8002cbc: 2300 movs r3, #0 + 8002cf4: 2300 movs r3, #0 } - 8002cbe: 4618 mov r0, r3 - 8002cc0: 3710 adds r7, #16 - 8002cc2: 46bd mov sp, r7 - 8002cc4: bd80 pop {r7, pc} + 8002cf6: 4618 mov r0, r3 + 8002cf8: 3710 adds r7, #16 + 8002cfa: 46bd mov sp, r7 + 8002cfc: bd80 pop {r7, pc} -08002cc6 : +08002cfe : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnBTFFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002cc6: b580 push {r7, lr} - 8002cc8: b084 sub sp, #16 - 8002cca: af00 add r7, sp, #0 - 8002ccc: 60f8 str r0, [r7, #12] - 8002cce: 60b9 str r1, [r7, #8] - 8002cd0: 607a str r2, [r7, #4] + 8002cfe: b580 push {r7, lr} + 8002d00: b084 sub sp, #16 + 8002d02: af00 add r7, sp, #0 + 8002d04: 60f8 str r0, [r7, #12] + 8002d06: 60b9 str r1, [r7, #8] + 8002d08: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8002cd2: e02d b.n 8002d30 + 8002d0a: e02d b.n 8002d68 { /* Check if a NACK is detected */ if (I2C_IsAcknowledgeFailed(hi2c) != HAL_OK) - 8002cd4: 68f8 ldr r0, [r7, #12] - 8002cd6: f000 f88d bl 8002df4 - 8002cda: 4603 mov r3, r0 - 8002cdc: 2b00 cmp r3, #0 - 8002cde: d001 beq.n 8002ce4 + 8002d0c: 68f8 ldr r0, [r7, #12] + 8002d0e: f000 f88d bl 8002e2c + 8002d12: 4603 mov r3, r0 + 8002d14: 2b00 cmp r3, #0 + 8002d16: d001 beq.n 8002d1c { return HAL_ERROR; - 8002ce0: 2301 movs r3, #1 - 8002ce2: e02d b.n 8002d40 + 8002d18: 2301 movs r3, #1 + 8002d1a: e02d b.n 8002d78 } /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002ce4: 68bb ldr r3, [r7, #8] - 8002ce6: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff - 8002cea: d021 beq.n 8002d30 + 8002d1c: 68bb ldr r3, [r7, #8] + 8002d1e: f1b3 3fff cmp.w r3, #4294967295 ; 0xffffffff + 8002d22: d021 beq.n 8002d68 { if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002cec: f7fe fdda bl 80018a4 - 8002cf0: 4602 mov r2, r0 - 8002cf2: 687b ldr r3, [r7, #4] - 8002cf4: 1ad3 subs r3, r2, r3 - 8002cf6: 68ba ldr r2, [r7, #8] - 8002cf8: 429a cmp r2, r3 - 8002cfa: d302 bcc.n 8002d02 - 8002cfc: 68bb ldr r3, [r7, #8] - 8002cfe: 2b00 cmp r3, #0 - 8002d00: d116 bne.n 8002d30 + 8002d24: f7fe fdda bl 80018dc + 8002d28: 4602 mov r2, r0 + 8002d2a: 687b ldr r3, [r7, #4] + 8002d2c: 1ad3 subs r3, r2, r3 + 8002d2e: 68ba ldr r2, [r7, #8] + 8002d30: 429a cmp r2, r3 + 8002d32: d302 bcc.n 8002d3a + 8002d34: 68bb ldr r3, [r7, #8] + 8002d36: 2b00 cmp r3, #0 + 8002d38: d116 bne.n 8002d68 { hi2c->PreviousState = I2C_STATE_NONE; - 8002d02: 68fb ldr r3, [r7, #12] - 8002d04: 2200 movs r2, #0 - 8002d06: 631a str r2, [r3, #48] ; 0x30 + 8002d3a: 68fb ldr r3, [r7, #12] + 8002d3c: 2200 movs r2, #0 + 8002d3e: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002d08: 68fb ldr r3, [r7, #12] - 8002d0a: 2220 movs r2, #32 - 8002d0c: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002d40: 68fb ldr r3, [r7, #12] + 8002d42: 2220 movs r2, #32 + 8002d44: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002d10: 68fb ldr r3, [r7, #12] - 8002d12: 2200 movs r2, #0 - 8002d14: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002d48: 68fb ldr r3, [r7, #12] + 8002d4a: 2200 movs r2, #0 + 8002d4c: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002d18: 68fb ldr r3, [r7, #12] - 8002d1a: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002d1c: f043 0220 orr.w r2, r3, #32 - 8002d20: 68fb ldr r3, [r7, #12] - 8002d22: 641a str r2, [r3, #64] ; 0x40 + 8002d50: 68fb ldr r3, [r7, #12] + 8002d52: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002d54: f043 0220 orr.w r2, r3, #32 + 8002d58: 68fb ldr r3, [r7, #12] + 8002d5a: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002d24: 68fb ldr r3, [r7, #12] - 8002d26: 2200 movs r2, #0 - 8002d28: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002d5c: 68fb ldr r3, [r7, #12] + 8002d5e: 2200 movs r2, #0 + 8002d60: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002d2c: 2301 movs r3, #1 - 8002d2e: e007 b.n 8002d40 + 8002d64: 2301 movs r3, #1 + 8002d66: e007 b.n 8002d78 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_BTF) == RESET) - 8002d30: 68fb ldr r3, [r7, #12] - 8002d32: 681b ldr r3, [r3, #0] - 8002d34: 695b ldr r3, [r3, #20] - 8002d36: f003 0304 and.w r3, r3, #4 - 8002d3a: 2b04 cmp r3, #4 - 8002d3c: d1ca bne.n 8002cd4 + 8002d68: 68fb ldr r3, [r7, #12] + 8002d6a: 681b ldr r3, [r3, #0] + 8002d6c: 695b ldr r3, [r3, #20] + 8002d6e: f003 0304 and.w r3, r3, #4 + 8002d72: 2b04 cmp r3, #4 + 8002d74: d1ca bne.n 8002d0c } } } return HAL_OK; - 8002d3e: 2300 movs r3, #0 + 8002d76: 2300 movs r3, #0 } - 8002d40: 4618 mov r0, r3 - 8002d42: 3710 adds r7, #16 - 8002d44: 46bd mov sp, r7 - 8002d46: bd80 pop {r7, pc} + 8002d78: 4618 mov r0, r3 + 8002d7a: 3710 adds r7, #16 + 8002d7c: 46bd mov sp, r7 + 8002d7e: bd80 pop {r7, pc} -08002d48 : +08002d80 : * @param Timeout Timeout duration * @param Tickstart Tick start value * @retval HAL status */ static HAL_StatusTypeDef I2C_WaitOnRXNEFlagUntilTimeout(I2C_HandleTypeDef *hi2c, uint32_t Timeout, uint32_t Tickstart) { - 8002d48: b580 push {r7, lr} - 8002d4a: b084 sub sp, #16 - 8002d4c: af00 add r7, sp, #0 - 8002d4e: 60f8 str r0, [r7, #12] - 8002d50: 60b9 str r1, [r7, #8] - 8002d52: 607a str r2, [r7, #4] + 8002d80: b580 push {r7, lr} + 8002d82: b084 sub sp, #16 + 8002d84: af00 add r7, sp, #0 + 8002d86: 60f8 str r0, [r7, #12] + 8002d88: 60b9 str r1, [r7, #8] + 8002d8a: 607a str r2, [r7, #4] while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 8002d54: e042 b.n 8002ddc + 8002d8c: e042 b.n 8002e14 { /* Check if a STOPF is detected */ if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_STOPF) == SET) - 8002d56: 68fb ldr r3, [r7, #12] - 8002d58: 681b ldr r3, [r3, #0] - 8002d5a: 695b ldr r3, [r3, #20] - 8002d5c: f003 0310 and.w r3, r3, #16 - 8002d60: 2b10 cmp r3, #16 - 8002d62: d119 bne.n 8002d98 + 8002d8e: 68fb ldr r3, [r7, #12] + 8002d90: 681b ldr r3, [r3, #0] + 8002d92: 695b ldr r3, [r3, #20] + 8002d94: f003 0310 and.w r3, r3, #16 + 8002d98: 2b10 cmp r3, #16 + 8002d9a: d119 bne.n 8002dd0 { /* Clear STOP Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_STOPF); - 8002d64: 68fb ldr r3, [r7, #12] - 8002d66: 681b ldr r3, [r3, #0] - 8002d68: f06f 0210 mvn.w r2, #16 - 8002d6c: 615a str r2, [r3, #20] + 8002d9c: 68fb ldr r3, [r7, #12] + 8002d9e: 681b ldr r3, [r3, #0] + 8002da0: f06f 0210 mvn.w r2, #16 + 8002da4: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002d6e: 68fb ldr r3, [r7, #12] - 8002d70: 2200 movs r2, #0 - 8002d72: 631a str r2, [r3, #48] ; 0x30 + 8002da6: 68fb ldr r3, [r7, #12] + 8002da8: 2200 movs r2, #0 + 8002daa: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002d74: 68fb ldr r3, [r7, #12] - 8002d76: 2220 movs r2, #32 - 8002d78: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002dac: 68fb ldr r3, [r7, #12] + 8002dae: 2220 movs r2, #32 + 8002db0: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002d7c: 68fb ldr r3, [r7, #12] - 8002d7e: 2200 movs r2, #0 - 8002d80: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002db4: 68fb ldr r3, [r7, #12] + 8002db6: 2200 movs r2, #0 + 8002db8: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_NONE; - 8002d84: 68fb ldr r3, [r7, #12] - 8002d86: 6c1a ldr r2, [r3, #64] ; 0x40 - 8002d88: 68fb ldr r3, [r7, #12] - 8002d8a: 641a str r2, [r3, #64] ; 0x40 + 8002dbc: 68fb ldr r3, [r7, #12] + 8002dbe: 6c1a ldr r2, [r3, #64] ; 0x40 + 8002dc0: 68fb ldr r3, [r7, #12] + 8002dc2: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002d8c: 68fb ldr r3, [r7, #12] - 8002d8e: 2200 movs r2, #0 - 8002d90: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002dc4: 68fb ldr r3, [r7, #12] + 8002dc6: 2200 movs r2, #0 + 8002dc8: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002d94: 2301 movs r3, #1 - 8002d96: e029 b.n 8002dec + 8002dcc: 2301 movs r3, #1 + 8002dce: e029 b.n 8002e24 } /* Check for the Timeout */ if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8002d98: f7fe fd84 bl 80018a4 - 8002d9c: 4602 mov r2, r0 - 8002d9e: 687b ldr r3, [r7, #4] - 8002da0: 1ad3 subs r3, r2, r3 - 8002da2: 68ba ldr r2, [r7, #8] - 8002da4: 429a cmp r2, r3 - 8002da6: d302 bcc.n 8002dae - 8002da8: 68bb ldr r3, [r7, #8] - 8002daa: 2b00 cmp r3, #0 - 8002dac: d116 bne.n 8002ddc + 8002dd0: f7fe fd84 bl 80018dc + 8002dd4: 4602 mov r2, r0 + 8002dd6: 687b ldr r3, [r7, #4] + 8002dd8: 1ad3 subs r3, r2, r3 + 8002dda: 68ba ldr r2, [r7, #8] + 8002ddc: 429a cmp r2, r3 + 8002dde: d302 bcc.n 8002de6 + 8002de0: 68bb ldr r3, [r7, #8] + 8002de2: 2b00 cmp r3, #0 + 8002de4: d116 bne.n 8002e14 { hi2c->PreviousState = I2C_STATE_NONE; - 8002dae: 68fb ldr r3, [r7, #12] - 8002db0: 2200 movs r2, #0 - 8002db2: 631a str r2, [r3, #48] ; 0x30 + 8002de6: 68fb ldr r3, [r7, #12] + 8002de8: 2200 movs r2, #0 + 8002dea: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002db4: 68fb ldr r3, [r7, #12] - 8002db6: 2220 movs r2, #32 - 8002db8: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002dec: 68fb ldr r3, [r7, #12] + 8002dee: 2220 movs r2, #32 + 8002df0: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002dbc: 68fb ldr r3, [r7, #12] - 8002dbe: 2200 movs r2, #0 - 8002dc0: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002df4: 68fb ldr r3, [r7, #12] + 8002df6: 2200 movs r2, #0 + 8002df8: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_TIMEOUT; - 8002dc4: 68fb ldr r3, [r7, #12] - 8002dc6: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002dc8: f043 0220 orr.w r2, r3, #32 - 8002dcc: 68fb ldr r3, [r7, #12] - 8002dce: 641a str r2, [r3, #64] ; 0x40 + 8002dfc: 68fb ldr r3, [r7, #12] + 8002dfe: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002e00: f043 0220 orr.w r2, r3, #32 + 8002e04: 68fb ldr r3, [r7, #12] + 8002e06: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002dd0: 68fb ldr r3, [r7, #12] - 8002dd2: 2200 movs r2, #0 - 8002dd4: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e08: 68fb ldr r3, [r7, #12] + 8002e0a: 2200 movs r2, #0 + 8002e0c: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002dd8: 2301 movs r3, #1 - 8002dda: e007 b.n 8002dec + 8002e10: 2301 movs r3, #1 + 8002e12: e007 b.n 8002e24 while (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_RXNE) == RESET) - 8002ddc: 68fb ldr r3, [r7, #12] - 8002dde: 681b ldr r3, [r3, #0] - 8002de0: 695b ldr r3, [r3, #20] - 8002de2: f003 0340 and.w r3, r3, #64 ; 0x40 - 8002de6: 2b40 cmp r3, #64 ; 0x40 - 8002de8: d1b5 bne.n 8002d56 + 8002e14: 68fb ldr r3, [r7, #12] + 8002e16: 681b ldr r3, [r3, #0] + 8002e18: 695b ldr r3, [r3, #20] + 8002e1a: f003 0340 and.w r3, r3, #64 ; 0x40 + 8002e1e: 2b40 cmp r3, #64 ; 0x40 + 8002e20: d1b5 bne.n 8002d8e } } return HAL_OK; - 8002dea: 2300 movs r3, #0 + 8002e22: 2300 movs r3, #0 } - 8002dec: 4618 mov r0, r3 - 8002dee: 3710 adds r7, #16 - 8002df0: 46bd mov sp, r7 - 8002df2: bd80 pop {r7, pc} + 8002e24: 4618 mov r0, r3 + 8002e26: 3710 adds r7, #16 + 8002e28: 46bd mov sp, r7 + 8002e2a: bd80 pop {r7, pc} -08002df4 : +08002e2c : * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains * the configuration information for the specified I2C. * @retval HAL status */ static HAL_StatusTypeDef I2C_IsAcknowledgeFailed(I2C_HandleTypeDef *hi2c) { - 8002df4: b480 push {r7} - 8002df6: b083 sub sp, #12 - 8002df8: af00 add r7, sp, #0 - 8002dfa: 6078 str r0, [r7, #4] + 8002e2c: b480 push {r7} + 8002e2e: b083 sub sp, #12 + 8002e30: af00 add r7, sp, #0 + 8002e32: 6078 str r0, [r7, #4] if (__HAL_I2C_GET_FLAG(hi2c, I2C_FLAG_AF) == SET) - 8002dfc: 687b ldr r3, [r7, #4] - 8002dfe: 681b ldr r3, [r3, #0] - 8002e00: 695b ldr r3, [r3, #20] - 8002e02: f403 6380 and.w r3, r3, #1024 ; 0x400 - 8002e06: f5b3 6f80 cmp.w r3, #1024 ; 0x400 - 8002e0a: d11b bne.n 8002e44 + 8002e34: 687b ldr r3, [r7, #4] + 8002e36: 681b ldr r3, [r3, #0] + 8002e38: 695b ldr r3, [r3, #20] + 8002e3a: f403 6380 and.w r3, r3, #1024 ; 0x400 + 8002e3e: f5b3 6f80 cmp.w r3, #1024 ; 0x400 + 8002e42: d11b bne.n 8002e7c { /* Clear NACKF Flag */ __HAL_I2C_CLEAR_FLAG(hi2c, I2C_FLAG_AF); - 8002e0c: 687b ldr r3, [r7, #4] - 8002e0e: 681b ldr r3, [r3, #0] - 8002e10: f46f 6280 mvn.w r2, #1024 ; 0x400 - 8002e14: 615a str r2, [r3, #20] + 8002e44: 687b ldr r3, [r7, #4] + 8002e46: 681b ldr r3, [r3, #0] + 8002e48: f46f 6280 mvn.w r2, #1024 ; 0x400 + 8002e4c: 615a str r2, [r3, #20] hi2c->PreviousState = I2C_STATE_NONE; - 8002e16: 687b ldr r3, [r7, #4] - 8002e18: 2200 movs r2, #0 - 8002e1a: 631a str r2, [r3, #48] ; 0x30 + 8002e4e: 687b ldr r3, [r7, #4] + 8002e50: 2200 movs r2, #0 + 8002e52: 631a str r2, [r3, #48] ; 0x30 hi2c->State = HAL_I2C_STATE_READY; - 8002e1c: 687b ldr r3, [r7, #4] - 8002e1e: 2220 movs r2, #32 - 8002e20: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002e54: 687b ldr r3, [r7, #4] + 8002e56: 2220 movs r2, #32 + 8002e58: f883 203d strb.w r2, [r3, #61] ; 0x3d hi2c->Mode = HAL_I2C_MODE_NONE; - 8002e24: 687b ldr r3, [r7, #4] - 8002e26: 2200 movs r2, #0 - 8002e28: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002e5c: 687b ldr r3, [r7, #4] + 8002e5e: 2200 movs r2, #0 + 8002e60: f883 203e strb.w r2, [r3, #62] ; 0x3e hi2c->ErrorCode |= HAL_I2C_ERROR_AF; - 8002e2c: 687b ldr r3, [r7, #4] - 8002e2e: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002e30: f043 0204 orr.w r2, r3, #4 - 8002e34: 687b ldr r3, [r7, #4] - 8002e36: 641a str r2, [r3, #64] ; 0x40 + 8002e64: 687b ldr r3, [r7, #4] + 8002e66: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002e68: f043 0204 orr.w r2, r3, #4 + 8002e6c: 687b ldr r3, [r7, #4] + 8002e6e: 641a str r2, [r3, #64] ; 0x40 /* Process Unlocked */ __HAL_UNLOCK(hi2c); - 8002e38: 687b ldr r3, [r7, #4] - 8002e3a: 2200 movs r2, #0 - 8002e3c: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002e70: 687b ldr r3, [r7, #4] + 8002e72: 2200 movs r2, #0 + 8002e74: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_ERROR; - 8002e40: 2301 movs r3, #1 - 8002e42: e000 b.n 8002e46 + 8002e78: 2301 movs r3, #1 + 8002e7a: e000 b.n 8002e7e } return HAL_OK; - 8002e44: 2300 movs r3, #0 + 8002e7c: 2300 movs r3, #0 } - 8002e46: 4618 mov r0, r3 - 8002e48: 370c adds r7, #12 - 8002e4a: 46bd mov sp, r7 - 8002e4c: bc80 pop {r7} - 8002e4e: 4770 bx lr + 8002e7e: 4618 mov r0, r3 + 8002e80: 370c adds r7, #12 + 8002e82: 46bd mov sp, r7 + 8002e84: bc80 pop {r7} + 8002e86: 4770 bx lr -08002e50 : +08002e88 : * 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) { - 8002e50: b580 push {r7, lr} - 8002e52: b086 sub sp, #24 - 8002e54: af00 add r7, sp, #0 - 8002e56: 6078 str r0, [r7, #4] + 8002e88: b580 push {r7, lr} + 8002e8a: b086 sub sp, #24 + 8002e8c: af00 add r7, sp, #0 + 8002e8e: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 8002e58: 687b ldr r3, [r7, #4] - 8002e5a: 2b00 cmp r3, #0 - 8002e5c: d101 bne.n 8002e62 + 8002e90: 687b ldr r3, [r7, #4] + 8002e92: 2b00 cmp r3, #0 + 8002e94: d101 bne.n 8002e9a { return HAL_ERROR; - 8002e5e: 2301 movs r3, #1 - 8002e60: e26c b.n 800333c + 8002e96: 2301 movs r3, #1 + 8002e98: e26c b.n 8003374 /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8002e62: 687b ldr r3, [r7, #4] - 8002e64: 681b ldr r3, [r3, #0] - 8002e66: f003 0301 and.w r3, r3, #1 - 8002e6a: 2b00 cmp r3, #0 - 8002e6c: f000 8087 beq.w 8002f7e + 8002e9a: 687b ldr r3, [r7, #4] + 8002e9c: 681b ldr r3, [r3, #0] + 8002e9e: f003 0301 and.w r3, r3, #1 + 8002ea2: 2b00 cmp r3, #0 + 8002ea4: f000 8087 beq.w 8002fb6 { /* 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) - 8002e70: 4b92 ldr r3, [pc, #584] ; (80030bc ) - 8002e72: 685b ldr r3, [r3, #4] - 8002e74: f003 030c and.w r3, r3, #12 - 8002e78: 2b04 cmp r3, #4 - 8002e7a: d00c beq.n 8002e96 + 8002ea8: 4b92 ldr r3, [pc, #584] ; (80030f4 ) + 8002eaa: 685b ldr r3, [r3, #4] + 8002eac: f003 030c and.w r3, r3, #12 + 8002eb0: 2b04 cmp r3, #4 + 8002eb2: d00c beq.n 8002ece || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSE))) - 8002e7c: 4b8f ldr r3, [pc, #572] ; (80030bc ) - 8002e7e: 685b ldr r3, [r3, #4] - 8002e80: f003 030c and.w r3, r3, #12 - 8002e84: 2b08 cmp r3, #8 - 8002e86: d112 bne.n 8002eae - 8002e88: 4b8c ldr r3, [pc, #560] ; (80030bc ) - 8002e8a: 685b ldr r3, [r3, #4] - 8002e8c: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8002e90: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8002e94: d10b bne.n 8002eae + 8002eb4: 4b8f ldr r3, [pc, #572] ; (80030f4 ) + 8002eb6: 685b ldr r3, [r3, #4] + 8002eb8: f003 030c and.w r3, r3, #12 + 8002ebc: 2b08 cmp r3, #8 + 8002ebe: d112 bne.n 8002ee6 + 8002ec0: 4b8c ldr r3, [pc, #560] ; (80030f4 ) + 8002ec2: 685b ldr r3, [r3, #4] + 8002ec4: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8002ec8: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 8002ecc: d10b bne.n 8002ee6 { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8002e96: 4b89 ldr r3, [pc, #548] ; (80030bc ) - 8002e98: 681b ldr r3, [r3, #0] - 8002e9a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8002e9e: 2b00 cmp r3, #0 - 8002ea0: d06c beq.n 8002f7c - 8002ea2: 687b ldr r3, [r7, #4] - 8002ea4: 685b ldr r3, [r3, #4] - 8002ea6: 2b00 cmp r3, #0 - 8002ea8: d168 bne.n 8002f7c + 8002ece: 4b89 ldr r3, [pc, #548] ; (80030f4 ) + 8002ed0: 681b ldr r3, [r3, #0] + 8002ed2: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8002ed6: 2b00 cmp r3, #0 + 8002ed8: d06c beq.n 8002fb4 + 8002eda: 687b ldr r3, [r7, #4] + 8002edc: 685b ldr r3, [r3, #4] + 8002ede: 2b00 cmp r3, #0 + 8002ee0: d168 bne.n 8002fb4 { return HAL_ERROR; - 8002eaa: 2301 movs r3, #1 - 8002eac: e246 b.n 800333c + 8002ee2: 2301 movs r3, #1 + 8002ee4: e246 b.n 8003374 } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8002eae: 687b ldr r3, [r7, #4] - 8002eb0: 685b ldr r3, [r3, #4] - 8002eb2: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8002eb6: d106 bne.n 8002ec6 - 8002eb8: 4b80 ldr r3, [pc, #512] ; (80030bc ) - 8002eba: 681b ldr r3, [r3, #0] - 8002ebc: 4a7f ldr r2, [pc, #508] ; (80030bc ) - 8002ebe: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8002ec2: 6013 str r3, [r2, #0] - 8002ec4: e02e b.n 8002f24 - 8002ec6: 687b ldr r3, [r7, #4] - 8002ec8: 685b ldr r3, [r3, #4] - 8002eca: 2b00 cmp r3, #0 - 8002ecc: d10c bne.n 8002ee8 - 8002ece: 4b7b ldr r3, [pc, #492] ; (80030bc ) - 8002ed0: 681b ldr r3, [r3, #0] - 8002ed2: 4a7a ldr r2, [pc, #488] ; (80030bc ) - 8002ed4: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 8002ed8: 6013 str r3, [r2, #0] - 8002eda: 4b78 ldr r3, [pc, #480] ; (80030bc ) - 8002edc: 681b ldr r3, [r3, #0] - 8002ede: 4a77 ldr r2, [pc, #476] ; (80030bc ) - 8002ee0: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 8002ee4: 6013 str r3, [r2, #0] - 8002ee6: e01d b.n 8002f24 - 8002ee8: 687b ldr r3, [r7, #4] - 8002eea: 685b ldr r3, [r3, #4] - 8002eec: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 - 8002ef0: d10c bne.n 8002f0c - 8002ef2: 4b72 ldr r3, [pc, #456] ; (80030bc ) - 8002ef4: 681b ldr r3, [r3, #0] - 8002ef6: 4a71 ldr r2, [pc, #452] ; (80030bc ) - 8002ef8: f443 2380 orr.w r3, r3, #262144 ; 0x40000 - 8002efc: 6013 str r3, [r2, #0] - 8002efe: 4b6f ldr r3, [pc, #444] ; (80030bc ) - 8002f00: 681b ldr r3, [r3, #0] - 8002f02: 4a6e ldr r2, [pc, #440] ; (80030bc ) - 8002f04: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8002f08: 6013 str r3, [r2, #0] - 8002f0a: e00b b.n 8002f24 - 8002f0c: 4b6b ldr r3, [pc, #428] ; (80030bc ) - 8002f0e: 681b ldr r3, [r3, #0] - 8002f10: 4a6a ldr r2, [pc, #424] ; (80030bc ) - 8002f12: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 8002f16: 6013 str r3, [r2, #0] - 8002f18: 4b68 ldr r3, [pc, #416] ; (80030bc ) - 8002f1a: 681b ldr r3, [r3, #0] - 8002f1c: 4a67 ldr r2, [pc, #412] ; (80030bc ) - 8002f1e: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 8002f22: 6013 str r3, [r2, #0] + 8002ee6: 687b ldr r3, [r7, #4] + 8002ee8: 685b ldr r3, [r3, #4] + 8002eea: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 8002eee: d106 bne.n 8002efe + 8002ef0: 4b80 ldr r3, [pc, #512] ; (80030f4 ) + 8002ef2: 681b ldr r3, [r3, #0] + 8002ef4: 4a7f ldr r2, [pc, #508] ; (80030f4 ) + 8002ef6: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8002efa: 6013 str r3, [r2, #0] + 8002efc: e02e b.n 8002f5c + 8002efe: 687b ldr r3, [r7, #4] + 8002f00: 685b ldr r3, [r3, #4] + 8002f02: 2b00 cmp r3, #0 + 8002f04: d10c bne.n 8002f20 + 8002f06: 4b7b ldr r3, [pc, #492] ; (80030f4 ) + 8002f08: 681b ldr r3, [r3, #0] + 8002f0a: 4a7a ldr r2, [pc, #488] ; (80030f4 ) + 8002f0c: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 8002f10: 6013 str r3, [r2, #0] + 8002f12: 4b78 ldr r3, [pc, #480] ; (80030f4 ) + 8002f14: 681b ldr r3, [r3, #0] + 8002f16: 4a77 ldr r2, [pc, #476] ; (80030f4 ) + 8002f18: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 8002f1c: 6013 str r3, [r2, #0] + 8002f1e: e01d b.n 8002f5c + 8002f20: 687b ldr r3, [r7, #4] + 8002f22: 685b ldr r3, [r3, #4] + 8002f24: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 + 8002f28: d10c bne.n 8002f44 + 8002f2a: 4b72 ldr r3, [pc, #456] ; (80030f4 ) + 8002f2c: 681b ldr r3, [r3, #0] + 8002f2e: 4a71 ldr r2, [pc, #452] ; (80030f4 ) + 8002f30: f443 2380 orr.w r3, r3, #262144 ; 0x40000 + 8002f34: 6013 str r3, [r2, #0] + 8002f36: 4b6f ldr r3, [pc, #444] ; (80030f4 ) + 8002f38: 681b ldr r3, [r3, #0] + 8002f3a: 4a6e ldr r2, [pc, #440] ; (80030f4 ) + 8002f3c: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 8002f40: 6013 str r3, [r2, #0] + 8002f42: e00b b.n 8002f5c + 8002f44: 4b6b ldr r3, [pc, #428] ; (80030f4 ) + 8002f46: 681b ldr r3, [r3, #0] + 8002f48: 4a6a ldr r2, [pc, #424] ; (80030f4 ) + 8002f4a: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 8002f4e: 6013 str r3, [r2, #0] + 8002f50: 4b68 ldr r3, [pc, #416] ; (80030f4 ) + 8002f52: 681b ldr r3, [r3, #0] + 8002f54: 4a67 ldr r2, [pc, #412] ; (80030f4 ) + 8002f56: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 8002f5a: 6013 str r3, [r2, #0] /* Check the HSE State */ if (RCC_OscInitStruct->HSEState != RCC_HSE_OFF) - 8002f24: 687b ldr r3, [r7, #4] - 8002f26: 685b ldr r3, [r3, #4] - 8002f28: 2b00 cmp r3, #0 - 8002f2a: d013 beq.n 8002f54 + 8002f5c: 687b ldr r3, [r7, #4] + 8002f5e: 685b ldr r3, [r3, #4] + 8002f60: 2b00 cmp r3, #0 + 8002f62: d013 beq.n 8002f8c { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8002f2c: f7fe fcba bl 80018a4 - 8002f30: 6138 str r0, [r7, #16] + 8002f64: f7fe fcba bl 80018dc + 8002f68: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8002f32: e008 b.n 8002f46 + 8002f6a: e008 b.n 8002f7e { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8002f34: f7fe fcb6 bl 80018a4 - 8002f38: 4602 mov r2, r0 - 8002f3a: 693b ldr r3, [r7, #16] - 8002f3c: 1ad3 subs r3, r2, r3 - 8002f3e: 2b64 cmp r3, #100 ; 0x64 - 8002f40: d901 bls.n 8002f46 + 8002f6c: f7fe fcb6 bl 80018dc + 8002f70: 4602 mov r2, r0 + 8002f72: 693b ldr r3, [r7, #16] + 8002f74: 1ad3 subs r3, r2, r3 + 8002f76: 2b64 cmp r3, #100 ; 0x64 + 8002f78: d901 bls.n 8002f7e { return HAL_TIMEOUT; - 8002f42: 2303 movs r3, #3 - 8002f44: e1fa b.n 800333c + 8002f7a: 2303 movs r3, #3 + 8002f7c: e1fa b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8002f46: 4b5d ldr r3, [pc, #372] ; (80030bc ) - 8002f48: 681b ldr r3, [r3, #0] - 8002f4a: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8002f4e: 2b00 cmp r3, #0 - 8002f50: d0f0 beq.n 8002f34 - 8002f52: e014 b.n 8002f7e + 8002f7e: 4b5d ldr r3, [pc, #372] ; (80030f4 ) + 8002f80: 681b ldr r3, [r3, #0] + 8002f82: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8002f86: 2b00 cmp r3, #0 + 8002f88: d0f0 beq.n 8002f6c + 8002f8a: e014 b.n 8002fb6 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8002f54: f7fe fca6 bl 80018a4 - 8002f58: 6138 str r0, [r7, #16] + 8002f8c: f7fe fca6 bl 80018dc + 8002f90: 6138 str r0, [r7, #16] /* Wait till HSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8002f5a: e008 b.n 8002f6e + 8002f92: e008 b.n 8002fa6 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8002f5c: f7fe fca2 bl 80018a4 - 8002f60: 4602 mov r2, r0 - 8002f62: 693b ldr r3, [r7, #16] - 8002f64: 1ad3 subs r3, r2, r3 - 8002f66: 2b64 cmp r3, #100 ; 0x64 - 8002f68: d901 bls.n 8002f6e + 8002f94: f7fe fca2 bl 80018dc + 8002f98: 4602 mov r2, r0 + 8002f9a: 693b ldr r3, [r7, #16] + 8002f9c: 1ad3 subs r3, r2, r3 + 8002f9e: 2b64 cmp r3, #100 ; 0x64 + 8002fa0: d901 bls.n 8002fa6 { return HAL_TIMEOUT; - 8002f6a: 2303 movs r3, #3 - 8002f6c: e1e6 b.n 800333c + 8002fa2: 2303 movs r3, #3 + 8002fa4: e1e6 b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8002f6e: 4b53 ldr r3, [pc, #332] ; (80030bc ) - 8002f70: 681b ldr r3, [r3, #0] - 8002f72: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8002f76: 2b00 cmp r3, #0 - 8002f78: d1f0 bne.n 8002f5c - 8002f7a: e000 b.n 8002f7e + 8002fa6: 4b53 ldr r3, [pc, #332] ; (80030f4 ) + 8002fa8: 681b ldr r3, [r3, #0] + 8002faa: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8002fae: 2b00 cmp r3, #0 + 8002fb0: d1f0 bne.n 8002f94 + 8002fb2: e000 b.n 8002fb6 if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8002f7c: bf00 nop + 8002fb4: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8002f7e: 687b ldr r3, [r7, #4] - 8002f80: 681b ldr r3, [r3, #0] - 8002f82: f003 0302 and.w r3, r3, #2 - 8002f86: 2b00 cmp r3, #0 - 8002f88: d063 beq.n 8003052 + 8002fb6: 687b ldr r3, [r7, #4] + 8002fb8: 681b ldr r3, [r3, #0] + 8002fba: f003 0302 and.w r3, r3, #2 + 8002fbe: 2b00 cmp r3, #0 + 8002fc0: d063 beq.n 800308a /* 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) - 8002f8a: 4b4c ldr r3, [pc, #304] ; (80030bc ) - 8002f8c: 685b ldr r3, [r3, #4] - 8002f8e: f003 030c and.w r3, r3, #12 - 8002f92: 2b00 cmp r3, #0 - 8002f94: d00b beq.n 8002fae + 8002fc2: 4b4c ldr r3, [pc, #304] ; (80030f4 ) + 8002fc4: 685b ldr r3, [r3, #4] + 8002fc6: f003 030c and.w r3, r3, #12 + 8002fca: 2b00 cmp r3, #0 + 8002fcc: d00b beq.n 8002fe6 || ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_SYSCLKSOURCE_STATUS_PLLCLK) && (__HAL_RCC_GET_PLL_OSCSOURCE() == RCC_PLLSOURCE_HSI_DIV2))) - 8002f96: 4b49 ldr r3, [pc, #292] ; (80030bc ) - 8002f98: 685b ldr r3, [r3, #4] - 8002f9a: f003 030c and.w r3, r3, #12 - 8002f9e: 2b08 cmp r3, #8 - 8002fa0: d11c bne.n 8002fdc - 8002fa2: 4b46 ldr r3, [pc, #280] ; (80030bc ) - 8002fa4: 685b ldr r3, [r3, #4] - 8002fa6: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8002faa: 2b00 cmp r3, #0 - 8002fac: d116 bne.n 8002fdc + 8002fce: 4b49 ldr r3, [pc, #292] ; (80030f4 ) + 8002fd0: 685b ldr r3, [r3, #4] + 8002fd2: f003 030c and.w r3, r3, #12 + 8002fd6: 2b08 cmp r3, #8 + 8002fd8: d11c bne.n 8003014 + 8002fda: 4b46 ldr r3, [pc, #280] ; (80030f4 ) + 8002fdc: 685b ldr r3, [r3, #4] + 8002fde: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8002fe2: 2b00 cmp r3, #0 + 8002fe4: d116 bne.n 8003014 { /* 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)) - 8002fae: 4b43 ldr r3, [pc, #268] ; (80030bc ) - 8002fb0: 681b ldr r3, [r3, #0] - 8002fb2: f003 0302 and.w r3, r3, #2 - 8002fb6: 2b00 cmp r3, #0 - 8002fb8: d005 beq.n 8002fc6 - 8002fba: 687b ldr r3, [r7, #4] - 8002fbc: 691b ldr r3, [r3, #16] - 8002fbe: 2b01 cmp r3, #1 - 8002fc0: d001 beq.n 8002fc6 + 8002fe6: 4b43 ldr r3, [pc, #268] ; (80030f4 ) + 8002fe8: 681b ldr r3, [r3, #0] + 8002fea: f003 0302 and.w r3, r3, #2 + 8002fee: 2b00 cmp r3, #0 + 8002ff0: d005 beq.n 8002ffe + 8002ff2: 687b ldr r3, [r7, #4] + 8002ff4: 691b ldr r3, [r3, #16] + 8002ff6: 2b01 cmp r3, #1 + 8002ff8: d001 beq.n 8002ffe { return HAL_ERROR; - 8002fc2: 2301 movs r3, #1 - 8002fc4: e1ba b.n 800333c + 8002ffa: 2301 movs r3, #1 + 8002ffc: e1ba b.n 8003374 } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8002fc6: 4b3d ldr r3, [pc, #244] ; (80030bc ) - 8002fc8: 681b ldr r3, [r3, #0] - 8002fca: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8002fce: 687b ldr r3, [r7, #4] - 8002fd0: 695b ldr r3, [r3, #20] - 8002fd2: 00db lsls r3, r3, #3 - 8002fd4: 4939 ldr r1, [pc, #228] ; (80030bc ) - 8002fd6: 4313 orrs r3, r2 - 8002fd8: 600b str r3, [r1, #0] + 8002ffe: 4b3d ldr r3, [pc, #244] ; (80030f4 ) + 8003000: 681b ldr r3, [r3, #0] + 8003002: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8003006: 687b ldr r3, [r7, #4] + 8003008: 695b ldr r3, [r3, #20] + 800300a: 00db lsls r3, r3, #3 + 800300c: 4939 ldr r1, [pc, #228] ; (80030f4 ) + 800300e: 4313 orrs r3, r2 + 8003010: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8002fda: e03a b.n 8003052 + 8003012: e03a b.n 800308a } } else { /* Check the HSI State */ if (RCC_OscInitStruct->HSIState != RCC_HSI_OFF) - 8002fdc: 687b ldr r3, [r7, #4] - 8002fde: 691b ldr r3, [r3, #16] - 8002fe0: 2b00 cmp r3, #0 - 8002fe2: d020 beq.n 8003026 + 8003014: 687b ldr r3, [r7, #4] + 8003016: 691b ldr r3, [r3, #16] + 8003018: 2b00 cmp r3, #0 + 800301a: d020 beq.n 800305e { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 8002fe4: 4b36 ldr r3, [pc, #216] ; (80030c0 ) - 8002fe6: 2201 movs r2, #1 - 8002fe8: 601a str r2, [r3, #0] + 800301c: 4b36 ldr r3, [pc, #216] ; (80030f8 ) + 800301e: 2201 movs r2, #1 + 8003020: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8002fea: f7fe fc5b bl 80018a4 - 8002fee: 6138 str r0, [r7, #16] + 8003022: f7fe fc5b bl 80018dc + 8003026: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8002ff0: e008 b.n 8003004 + 8003028: e008 b.n 800303c { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8002ff2: f7fe fc57 bl 80018a4 - 8002ff6: 4602 mov r2, r0 - 8002ff8: 693b ldr r3, [r7, #16] - 8002ffa: 1ad3 subs r3, r2, r3 - 8002ffc: 2b02 cmp r3, #2 - 8002ffe: d901 bls.n 8003004 + 800302a: f7fe fc57 bl 80018dc + 800302e: 4602 mov r2, r0 + 8003030: 693b ldr r3, [r7, #16] + 8003032: 1ad3 subs r3, r2, r3 + 8003034: 2b02 cmp r3, #2 + 8003036: d901 bls.n 800303c { return HAL_TIMEOUT; - 8003000: 2303 movs r3, #3 - 8003002: e19b b.n 800333c + 8003038: 2303 movs r3, #3 + 800303a: e19b b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8003004: 4b2d ldr r3, [pc, #180] ; (80030bc ) - 8003006: 681b ldr r3, [r3, #0] - 8003008: f003 0302 and.w r3, r3, #2 - 800300c: 2b00 cmp r3, #0 - 800300e: d0f0 beq.n 8002ff2 + 800303c: 4b2d ldr r3, [pc, #180] ; (80030f4 ) + 800303e: 681b ldr r3, [r3, #0] + 8003040: f003 0302 and.w r3, r3, #2 + 8003044: 2b00 cmp r3, #0 + 8003046: d0f0 beq.n 800302a } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8003010: 4b2a ldr r3, [pc, #168] ; (80030bc ) - 8003012: 681b ldr r3, [r3, #0] - 8003014: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8003018: 687b ldr r3, [r7, #4] - 800301a: 695b ldr r3, [r3, #20] - 800301c: 00db lsls r3, r3, #3 - 800301e: 4927 ldr r1, [pc, #156] ; (80030bc ) - 8003020: 4313 orrs r3, r2 - 8003022: 600b str r3, [r1, #0] - 8003024: e015 b.n 8003052 + 8003048: 4b2a ldr r3, [pc, #168] ; (80030f4 ) + 800304a: 681b ldr r3, [r3, #0] + 800304c: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8003050: 687b ldr r3, [r7, #4] + 8003052: 695b ldr r3, [r3, #20] + 8003054: 00db lsls r3, r3, #3 + 8003056: 4927 ldr r1, [pc, #156] ; (80030f4 ) + 8003058: 4313 orrs r3, r2 + 800305a: 600b str r3, [r1, #0] + 800305c: e015 b.n 800308a } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 8003026: 4b26 ldr r3, [pc, #152] ; (80030c0 ) - 8003028: 2200 movs r2, #0 - 800302a: 601a str r2, [r3, #0] + 800305e: 4b26 ldr r3, [pc, #152] ; (80030f8 ) + 8003060: 2200 movs r2, #0 + 8003062: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800302c: f7fe fc3a bl 80018a4 - 8003030: 6138 str r0, [r7, #16] + 8003064: f7fe fc3a bl 80018dc + 8003068: 6138 str r0, [r7, #16] /* Wait till HSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8003032: e008 b.n 8003046 + 800306a: e008 b.n 800307e { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8003034: f7fe fc36 bl 80018a4 - 8003038: 4602 mov r2, r0 - 800303a: 693b ldr r3, [r7, #16] - 800303c: 1ad3 subs r3, r2, r3 - 800303e: 2b02 cmp r3, #2 - 8003040: d901 bls.n 8003046 + 800306c: f7fe fc36 bl 80018dc + 8003070: 4602 mov r2, r0 + 8003072: 693b ldr r3, [r7, #16] + 8003074: 1ad3 subs r3, r2, r3 + 8003076: 2b02 cmp r3, #2 + 8003078: d901 bls.n 800307e { return HAL_TIMEOUT; - 8003042: 2303 movs r3, #3 - 8003044: e17a b.n 800333c + 800307a: 2303 movs r3, #3 + 800307c: e17a b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8003046: 4b1d ldr r3, [pc, #116] ; (80030bc ) - 8003048: 681b ldr r3, [r3, #0] - 800304a: f003 0302 and.w r3, r3, #2 - 800304e: 2b00 cmp r3, #0 - 8003050: d1f0 bne.n 8003034 + 800307e: 4b1d ldr r3, [pc, #116] ; (80030f4 ) + 8003080: 681b ldr r3, [r3, #0] + 8003082: f003 0302 and.w r3, r3, #2 + 8003086: 2b00 cmp r3, #0 + 8003088: d1f0 bne.n 800306c } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 8003052: 687b ldr r3, [r7, #4] - 8003054: 681b ldr r3, [r3, #0] - 8003056: f003 0308 and.w r3, r3, #8 - 800305a: 2b00 cmp r3, #0 - 800305c: d03a beq.n 80030d4 + 800308a: 687b ldr r3, [r7, #4] + 800308c: 681b ldr r3, [r3, #0] + 800308e: f003 0308 and.w r3, r3, #8 + 8003092: 2b00 cmp r3, #0 + 8003094: d03a beq.n 800310c { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if (RCC_OscInitStruct->LSIState != RCC_LSI_OFF) - 800305e: 687b ldr r3, [r7, #4] - 8003060: 699b ldr r3, [r3, #24] - 8003062: 2b00 cmp r3, #0 - 8003064: d019 beq.n 800309a + 8003096: 687b ldr r3, [r7, #4] + 8003098: 699b ldr r3, [r3, #24] + 800309a: 2b00 cmp r3, #0 + 800309c: d019 beq.n 80030d2 { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 8003066: 4b17 ldr r3, [pc, #92] ; (80030c4 ) - 8003068: 2201 movs r2, #1 - 800306a: 601a str r2, [r3, #0] + 800309e: 4b17 ldr r3, [pc, #92] ; (80030fc ) + 80030a0: 2201 movs r2, #1 + 80030a2: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800306c: f7fe fc1a bl 80018a4 - 8003070: 6138 str r0, [r7, #16] + 80030a4: f7fe fc1a bl 80018dc + 80030a8: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8003072: e008 b.n 8003086 + 80030aa: e008 b.n 80030be { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 8003074: f7fe fc16 bl 80018a4 - 8003078: 4602 mov r2, r0 - 800307a: 693b ldr r3, [r7, #16] - 800307c: 1ad3 subs r3, r2, r3 - 800307e: 2b02 cmp r3, #2 - 8003080: d901 bls.n 8003086 + 80030ac: f7fe fc16 bl 80018dc + 80030b0: 4602 mov r2, r0 + 80030b2: 693b ldr r3, [r7, #16] + 80030b4: 1ad3 subs r3, r2, r3 + 80030b6: 2b02 cmp r3, #2 + 80030b8: d901 bls.n 80030be { return HAL_TIMEOUT; - 8003082: 2303 movs r3, #3 - 8003084: e15a b.n 800333c + 80030ba: 2303 movs r3, #3 + 80030bc: e15a b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8003086: 4b0d ldr r3, [pc, #52] ; (80030bc ) - 8003088: 6a5b ldr r3, [r3, #36] ; 0x24 - 800308a: f003 0302 and.w r3, r3, #2 - 800308e: 2b00 cmp r3, #0 - 8003090: d0f0 beq.n 8003074 + 80030be: 4b0d ldr r3, [pc, #52] ; (80030f4 ) + 80030c0: 6a5b ldr r3, [r3, #36] ; 0x24 + 80030c2: f003 0302 and.w r3, r3, #2 + 80030c6: 2b00 cmp r3, #0 + 80030c8: d0f0 beq.n 80030ac } } /* To have a fully stabilized clock in the specified range, a software delay of 1ms should be added.*/ RCC_Delay(1); - 8003092: 2001 movs r0, #1 - 8003094: f000 fac4 bl 8003620 - 8003098: e01c b.n 80030d4 + 80030ca: 2001 movs r0, #1 + 80030cc: f000 fac4 bl 8003658 + 80030d0: e01c b.n 800310c } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 800309a: 4b0a ldr r3, [pc, #40] ; (80030c4 ) - 800309c: 2200 movs r2, #0 - 800309e: 601a str r2, [r3, #0] + 80030d2: 4b0a ldr r3, [pc, #40] ; (80030fc ) + 80030d4: 2200 movs r2, #0 + 80030d6: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80030a0: f7fe fc00 bl 80018a4 - 80030a4: 6138 str r0, [r7, #16] + 80030d8: f7fe fc00 bl 80018dc + 80030dc: 6138 str r0, [r7, #16] /* Wait till LSI is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 80030a6: e00f b.n 80030c8 + 80030de: e00f b.n 8003100 { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 80030a8: f7fe fbfc bl 80018a4 - 80030ac: 4602 mov r2, r0 - 80030ae: 693b ldr r3, [r7, #16] - 80030b0: 1ad3 subs r3, r2, r3 - 80030b2: 2b02 cmp r3, #2 - 80030b4: d908 bls.n 80030c8 + 80030e0: f7fe fbfc bl 80018dc + 80030e4: 4602 mov r2, r0 + 80030e6: 693b ldr r3, [r7, #16] + 80030e8: 1ad3 subs r3, r2, r3 + 80030ea: 2b02 cmp r3, #2 + 80030ec: d908 bls.n 8003100 { return HAL_TIMEOUT; - 80030b6: 2303 movs r3, #3 - 80030b8: e140 b.n 800333c - 80030ba: bf00 nop - 80030bc: 40021000 .word 0x40021000 - 80030c0: 42420000 .word 0x42420000 - 80030c4: 42420480 .word 0x42420480 + 80030ee: 2303 movs r3, #3 + 80030f0: e140 b.n 8003374 + 80030f2: bf00 nop + 80030f4: 40021000 .word 0x40021000 + 80030f8: 42420000 .word 0x42420000 + 80030fc: 42420480 .word 0x42420480 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 80030c8: 4b9e ldr r3, [pc, #632] ; (8003344 ) - 80030ca: 6a5b ldr r3, [r3, #36] ; 0x24 - 80030cc: f003 0302 and.w r3, r3, #2 - 80030d0: 2b00 cmp r3, #0 - 80030d2: d1e9 bne.n 80030a8 + 8003100: 4b9e ldr r3, [pc, #632] ; (800337c ) + 8003102: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003104: f003 0302 and.w r3, r3, #2 + 8003108: 2b00 cmp r3, #0 + 800310a: d1e9 bne.n 80030e0 } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 80030d4: 687b ldr r3, [r7, #4] - 80030d6: 681b ldr r3, [r3, #0] - 80030d8: f003 0304 and.w r3, r3, #4 - 80030dc: 2b00 cmp r3, #0 - 80030de: f000 80a6 beq.w 800322e + 800310c: 687b ldr r3, [r7, #4] + 800310e: 681b ldr r3, [r3, #0] + 8003110: f003 0304 and.w r3, r3, #4 + 8003114: 2b00 cmp r3, #0 + 8003116: f000 80a6 beq.w 8003266 { FlagStatus pwrclkchanged = RESET; - 80030e2: 2300 movs r3, #0 - 80030e4: 75fb strb r3, [r7, #23] + 800311a: 2300 movs r3, #0 + 800311c: 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()) - 80030e6: 4b97 ldr r3, [pc, #604] ; (8003344 ) - 80030e8: 69db ldr r3, [r3, #28] - 80030ea: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80030ee: 2b00 cmp r3, #0 - 80030f0: d10d bne.n 800310e + 800311e: 4b97 ldr r3, [pc, #604] ; (800337c ) + 8003120: 69db ldr r3, [r3, #28] + 8003122: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8003126: 2b00 cmp r3, #0 + 8003128: d10d bne.n 8003146 { __HAL_RCC_PWR_CLK_ENABLE(); - 80030f2: 4b94 ldr r3, [pc, #592] ; (8003344 ) - 80030f4: 69db ldr r3, [r3, #28] - 80030f6: 4a93 ldr r2, [pc, #588] ; (8003344 ) - 80030f8: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 80030fc: 61d3 str r3, [r2, #28] - 80030fe: 4b91 ldr r3, [pc, #580] ; (8003344 ) - 8003100: 69db ldr r3, [r3, #28] - 8003102: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 8003106: 60bb str r3, [r7, #8] - 8003108: 68bb ldr r3, [r7, #8] + 800312a: 4b94 ldr r3, [pc, #592] ; (800337c ) + 800312c: 69db ldr r3, [r3, #28] + 800312e: 4a93 ldr r2, [pc, #588] ; (800337c ) + 8003130: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8003134: 61d3 str r3, [r2, #28] + 8003136: 4b91 ldr r3, [pc, #580] ; (800337c ) + 8003138: 69db ldr r3, [r3, #28] + 800313a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 800313e: 60bb str r3, [r7, #8] + 8003140: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 800310a: 2301 movs r3, #1 - 800310c: 75fb strb r3, [r7, #23] + 8003142: 2301 movs r3, #1 + 8003144: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800310e: 4b8e ldr r3, [pc, #568] ; (8003348 ) - 8003110: 681b ldr r3, [r3, #0] - 8003112: f403 7380 and.w r3, r3, #256 ; 0x100 - 8003116: 2b00 cmp r3, #0 - 8003118: d118 bne.n 800314c + 8003146: 4b8e ldr r3, [pc, #568] ; (8003380 ) + 8003148: 681b ldr r3, [r3, #0] + 800314a: f403 7380 and.w r3, r3, #256 ; 0x100 + 800314e: 2b00 cmp r3, #0 + 8003150: d118 bne.n 8003184 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 800311a: 4b8b ldr r3, [pc, #556] ; (8003348 ) - 800311c: 681b ldr r3, [r3, #0] - 800311e: 4a8a ldr r2, [pc, #552] ; (8003348 ) - 8003120: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8003124: 6013 str r3, [r2, #0] + 8003152: 4b8b ldr r3, [pc, #556] ; (8003380 ) + 8003154: 681b ldr r3, [r3, #0] + 8003156: 4a8a ldr r2, [pc, #552] ; (8003380 ) + 8003158: f443 7380 orr.w r3, r3, #256 ; 0x100 + 800315c: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 8003126: f7fe fbbd bl 80018a4 - 800312a: 6138 str r0, [r7, #16] + 800315e: f7fe fbbd bl 80018dc + 8003162: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 800312c: e008 b.n 8003140 + 8003164: e008 b.n 8003178 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 800312e: f7fe fbb9 bl 80018a4 - 8003132: 4602 mov r2, r0 - 8003134: 693b ldr r3, [r7, #16] - 8003136: 1ad3 subs r3, r2, r3 - 8003138: 2b64 cmp r3, #100 ; 0x64 - 800313a: d901 bls.n 8003140 + 8003166: f7fe fbb9 bl 80018dc + 800316a: 4602 mov r2, r0 + 800316c: 693b ldr r3, [r7, #16] + 800316e: 1ad3 subs r3, r2, r3 + 8003170: 2b64 cmp r3, #100 ; 0x64 + 8003172: d901 bls.n 8003178 { return HAL_TIMEOUT; - 800313c: 2303 movs r3, #3 - 800313e: e0fd b.n 800333c + 8003174: 2303 movs r3, #3 + 8003176: e0fd b.n 8003374 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8003140: 4b81 ldr r3, [pc, #516] ; (8003348 ) - 8003142: 681b ldr r3, [r3, #0] - 8003144: f403 7380 and.w r3, r3, #256 ; 0x100 - 8003148: 2b00 cmp r3, #0 - 800314a: d0f0 beq.n 800312e + 8003178: 4b81 ldr r3, [pc, #516] ; (8003380 ) + 800317a: 681b ldr r3, [r3, #0] + 800317c: f403 7380 and.w r3, r3, #256 ; 0x100 + 8003180: 2b00 cmp r3, #0 + 8003182: d0f0 beq.n 8003166 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 800314c: 687b ldr r3, [r7, #4] - 800314e: 68db ldr r3, [r3, #12] - 8003150: 2b01 cmp r3, #1 - 8003152: d106 bne.n 8003162 - 8003154: 4b7b ldr r3, [pc, #492] ; (8003344 ) - 8003156: 6a1b ldr r3, [r3, #32] - 8003158: 4a7a ldr r2, [pc, #488] ; (8003344 ) - 800315a: f043 0301 orr.w r3, r3, #1 - 800315e: 6213 str r3, [r2, #32] - 8003160: e02d b.n 80031be - 8003162: 687b ldr r3, [r7, #4] - 8003164: 68db ldr r3, [r3, #12] - 8003166: 2b00 cmp r3, #0 - 8003168: d10c bne.n 8003184 - 800316a: 4b76 ldr r3, [pc, #472] ; (8003344 ) - 800316c: 6a1b ldr r3, [r3, #32] - 800316e: 4a75 ldr r2, [pc, #468] ; (8003344 ) - 8003170: f023 0301 bic.w r3, r3, #1 - 8003174: 6213 str r3, [r2, #32] - 8003176: 4b73 ldr r3, [pc, #460] ; (8003344 ) - 8003178: 6a1b ldr r3, [r3, #32] - 800317a: 4a72 ldr r2, [pc, #456] ; (8003344 ) - 800317c: f023 0304 bic.w r3, r3, #4 - 8003180: 6213 str r3, [r2, #32] - 8003182: e01c b.n 80031be 8003184: 687b ldr r3, [r7, #4] 8003186: 68db ldr r3, [r3, #12] - 8003188: 2b05 cmp r3, #5 - 800318a: d10c bne.n 80031a6 - 800318c: 4b6d ldr r3, [pc, #436] ; (8003344 ) + 8003188: 2b01 cmp r3, #1 + 800318a: d106 bne.n 800319a + 800318c: 4b7b ldr r3, [pc, #492] ; (800337c ) 800318e: 6a1b ldr r3, [r3, #32] - 8003190: 4a6c ldr r2, [pc, #432] ; (8003344 ) - 8003192: f043 0304 orr.w r3, r3, #4 + 8003190: 4a7a ldr r2, [pc, #488] ; (800337c ) + 8003192: f043 0301 orr.w r3, r3, #1 8003196: 6213 str r3, [r2, #32] - 8003198: 4b6a ldr r3, [pc, #424] ; (8003344 ) - 800319a: 6a1b ldr r3, [r3, #32] - 800319c: 4a69 ldr r2, [pc, #420] ; (8003344 ) - 800319e: f043 0301 orr.w r3, r3, #1 - 80031a2: 6213 str r3, [r2, #32] - 80031a4: e00b b.n 80031be - 80031a6: 4b67 ldr r3, [pc, #412] ; (8003344 ) - 80031a8: 6a1b ldr r3, [r3, #32] - 80031aa: 4a66 ldr r2, [pc, #408] ; (8003344 ) - 80031ac: f023 0301 bic.w r3, r3, #1 - 80031b0: 6213 str r3, [r2, #32] - 80031b2: 4b64 ldr r3, [pc, #400] ; (8003344 ) - 80031b4: 6a1b ldr r3, [r3, #32] - 80031b6: 4a63 ldr r2, [pc, #396] ; (8003344 ) - 80031b8: f023 0304 bic.w r3, r3, #4 - 80031bc: 6213 str r3, [r2, #32] + 8003198: e02d b.n 80031f6 + 800319a: 687b ldr r3, [r7, #4] + 800319c: 68db ldr r3, [r3, #12] + 800319e: 2b00 cmp r3, #0 + 80031a0: d10c bne.n 80031bc + 80031a2: 4b76 ldr r3, [pc, #472] ; (800337c ) + 80031a4: 6a1b ldr r3, [r3, #32] + 80031a6: 4a75 ldr r2, [pc, #468] ; (800337c ) + 80031a8: f023 0301 bic.w r3, r3, #1 + 80031ac: 6213 str r3, [r2, #32] + 80031ae: 4b73 ldr r3, [pc, #460] ; (800337c ) + 80031b0: 6a1b ldr r3, [r3, #32] + 80031b2: 4a72 ldr r2, [pc, #456] ; (800337c ) + 80031b4: f023 0304 bic.w r3, r3, #4 + 80031b8: 6213 str r3, [r2, #32] + 80031ba: e01c b.n 80031f6 + 80031bc: 687b ldr r3, [r7, #4] + 80031be: 68db ldr r3, [r3, #12] + 80031c0: 2b05 cmp r3, #5 + 80031c2: d10c bne.n 80031de + 80031c4: 4b6d ldr r3, [pc, #436] ; (800337c ) + 80031c6: 6a1b ldr r3, [r3, #32] + 80031c8: 4a6c ldr r2, [pc, #432] ; (800337c ) + 80031ca: f043 0304 orr.w r3, r3, #4 + 80031ce: 6213 str r3, [r2, #32] + 80031d0: 4b6a ldr r3, [pc, #424] ; (800337c ) + 80031d2: 6a1b ldr r3, [r3, #32] + 80031d4: 4a69 ldr r2, [pc, #420] ; (800337c ) + 80031d6: f043 0301 orr.w r3, r3, #1 + 80031da: 6213 str r3, [r2, #32] + 80031dc: e00b b.n 80031f6 + 80031de: 4b67 ldr r3, [pc, #412] ; (800337c ) + 80031e0: 6a1b ldr r3, [r3, #32] + 80031e2: 4a66 ldr r2, [pc, #408] ; (800337c ) + 80031e4: f023 0301 bic.w r3, r3, #1 + 80031e8: 6213 str r3, [r2, #32] + 80031ea: 4b64 ldr r3, [pc, #400] ; (800337c ) + 80031ec: 6a1b ldr r3, [r3, #32] + 80031ee: 4a63 ldr r2, [pc, #396] ; (800337c ) + 80031f0: f023 0304 bic.w r3, r3, #4 + 80031f4: 6213 str r3, [r2, #32] /* Check the LSE State */ if (RCC_OscInitStruct->LSEState != RCC_LSE_OFF) - 80031be: 687b ldr r3, [r7, #4] - 80031c0: 68db ldr r3, [r3, #12] - 80031c2: 2b00 cmp r3, #0 - 80031c4: d015 beq.n 80031f2 + 80031f6: 687b ldr r3, [r7, #4] + 80031f8: 68db ldr r3, [r3, #12] + 80031fa: 2b00 cmp r3, #0 + 80031fc: d015 beq.n 800322a { /* Get Start Tick */ tickstart = HAL_GetTick(); - 80031c6: f7fe fb6d bl 80018a4 - 80031ca: 6138 str r0, [r7, #16] + 80031fe: f7fe fb6d bl 80018dc + 8003202: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80031cc: e00a b.n 80031e4 + 8003204: e00a b.n 800321c { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 80031ce: f7fe fb69 bl 80018a4 - 80031d2: 4602 mov r2, r0 - 80031d4: 693b ldr r3, [r7, #16] - 80031d6: 1ad3 subs r3, r2, r3 - 80031d8: f241 3288 movw r2, #5000 ; 0x1388 - 80031dc: 4293 cmp r3, r2 - 80031de: d901 bls.n 80031e4 + 8003206: f7fe fb69 bl 80018dc + 800320a: 4602 mov r2, r0 + 800320c: 693b ldr r3, [r7, #16] + 800320e: 1ad3 subs r3, r2, r3 + 8003210: f241 3288 movw r2, #5000 ; 0x1388 + 8003214: 4293 cmp r3, r2 + 8003216: d901 bls.n 800321c { return HAL_TIMEOUT; - 80031e0: 2303 movs r3, #3 - 80031e2: e0ab b.n 800333c + 8003218: 2303 movs r3, #3 + 800321a: e0ab b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80031e4: 4b57 ldr r3, [pc, #348] ; (8003344 ) - 80031e6: 6a1b ldr r3, [r3, #32] - 80031e8: f003 0302 and.w r3, r3, #2 - 80031ec: 2b00 cmp r3, #0 - 80031ee: d0ee beq.n 80031ce - 80031f0: e014 b.n 800321c + 800321c: 4b57 ldr r3, [pc, #348] ; (800337c ) + 800321e: 6a1b ldr r3, [r3, #32] + 8003220: f003 0302 and.w r3, r3, #2 + 8003224: 2b00 cmp r3, #0 + 8003226: d0ee beq.n 8003206 + 8003228: e014 b.n 8003254 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 80031f2: f7fe fb57 bl 80018a4 - 80031f6: 6138 str r0, [r7, #16] + 800322a: f7fe fb57 bl 80018dc + 800322e: 6138 str r0, [r7, #16] /* Wait till LSE is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 80031f8: e00a b.n 8003210 + 8003230: e00a b.n 8003248 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 80031fa: f7fe fb53 bl 80018a4 - 80031fe: 4602 mov r2, r0 - 8003200: 693b ldr r3, [r7, #16] - 8003202: 1ad3 subs r3, r2, r3 - 8003204: f241 3288 movw r2, #5000 ; 0x1388 - 8003208: 4293 cmp r3, r2 - 800320a: d901 bls.n 8003210 + 8003232: f7fe fb53 bl 80018dc + 8003236: 4602 mov r2, r0 + 8003238: 693b ldr r3, [r7, #16] + 800323a: 1ad3 subs r3, r2, r3 + 800323c: f241 3288 movw r2, #5000 ; 0x1388 + 8003240: 4293 cmp r3, r2 + 8003242: d901 bls.n 8003248 { return HAL_TIMEOUT; - 800320c: 2303 movs r3, #3 - 800320e: e095 b.n 800333c + 8003244: 2303 movs r3, #3 + 8003246: e095 b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8003210: 4b4c ldr r3, [pc, #304] ; (8003344 ) - 8003212: 6a1b ldr r3, [r3, #32] - 8003214: f003 0302 and.w r3, r3, #2 - 8003218: 2b00 cmp r3, #0 - 800321a: d1ee bne.n 80031fa + 8003248: 4b4c ldr r3, [pc, #304] ; (800337c ) + 800324a: 6a1b ldr r3, [r3, #32] + 800324c: f003 0302 and.w r3, r3, #2 + 8003250: 2b00 cmp r3, #0 + 8003252: d1ee bne.n 8003232 } } } /* Require to disable power clock if necessary */ if (pwrclkchanged == SET) - 800321c: 7dfb ldrb r3, [r7, #23] - 800321e: 2b01 cmp r3, #1 - 8003220: d105 bne.n 800322e + 8003254: 7dfb ldrb r3, [r7, #23] + 8003256: 2b01 cmp r3, #1 + 8003258: d105 bne.n 8003266 { __HAL_RCC_PWR_CLK_DISABLE(); - 8003222: 4b48 ldr r3, [pc, #288] ; (8003344 ) - 8003224: 69db ldr r3, [r3, #28] - 8003226: 4a47 ldr r2, [pc, #284] ; (8003344 ) - 8003228: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 - 800322c: 61d3 str r3, [r2, #28] + 800325a: 4b48 ldr r3, [pc, #288] ; (800337c ) + 800325c: 69db ldr r3, [r3, #28] + 800325e: 4a47 ldr r2, [pc, #284] ; (800337c ) + 8003260: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 + 8003264: 61d3 str r3, [r2, #28] #endif /* RCC_CR_PLL2ON */ /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 800322e: 687b ldr r3, [r7, #4] - 8003230: 69db ldr r3, [r3, #28] - 8003232: 2b00 cmp r3, #0 - 8003234: f000 8081 beq.w 800333a + 8003266: 687b ldr r3, [r7, #4] + 8003268: 69db ldr r3, [r3, #28] + 800326a: 2b00 cmp r3, #0 + 800326c: f000 8081 beq.w 8003372 { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_SYSCLKSOURCE_STATUS_PLLCLK) - 8003238: 4b42 ldr r3, [pc, #264] ; (8003344 ) - 800323a: 685b ldr r3, [r3, #4] - 800323c: f003 030c and.w r3, r3, #12 - 8003240: 2b08 cmp r3, #8 - 8003242: d061 beq.n 8003308 + 8003270: 4b42 ldr r3, [pc, #264] ; (800337c ) + 8003272: 685b ldr r3, [r3, #4] + 8003274: f003 030c and.w r3, r3, #12 + 8003278: 2b08 cmp r3, #8 + 800327a: d061 beq.n 8003340 { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8003244: 687b ldr r3, [r7, #4] - 8003246: 69db ldr r3, [r3, #28] - 8003248: 2b02 cmp r3, #2 - 800324a: d146 bne.n 80032da + 800327c: 687b ldr r3, [r7, #4] + 800327e: 69db ldr r3, [r3, #28] + 8003280: 2b02 cmp r3, #2 + 8003282: d146 bne.n 8003312 /* 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(); - 800324c: 4b3f ldr r3, [pc, #252] ; (800334c ) - 800324e: 2200 movs r2, #0 - 8003250: 601a str r2, [r3, #0] + 8003284: 4b3f ldr r3, [pc, #252] ; (8003384 ) + 8003286: 2200 movs r2, #0 + 8003288: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003252: f7fe fb27 bl 80018a4 - 8003256: 6138 str r0, [r7, #16] + 800328a: f7fe fb27 bl 80018dc + 800328e: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8003258: e008 b.n 800326c + 8003290: e008 b.n 80032a4 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800325a: f7fe fb23 bl 80018a4 - 800325e: 4602 mov r2, r0 - 8003260: 693b ldr r3, [r7, #16] - 8003262: 1ad3 subs r3, r2, r3 - 8003264: 2b02 cmp r3, #2 - 8003266: d901 bls.n 800326c + 8003292: f7fe fb23 bl 80018dc + 8003296: 4602 mov r2, r0 + 8003298: 693b ldr r3, [r7, #16] + 800329a: 1ad3 subs r3, r2, r3 + 800329c: 2b02 cmp r3, #2 + 800329e: d901 bls.n 80032a4 { return HAL_TIMEOUT; - 8003268: 2303 movs r3, #3 - 800326a: e067 b.n 800333c + 80032a0: 2303 movs r3, #3 + 80032a2: e067 b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800326c: 4b35 ldr r3, [pc, #212] ; (8003344 ) - 800326e: 681b ldr r3, [r3, #0] - 8003270: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003274: 2b00 cmp r3, #0 - 8003276: d1f0 bne.n 800325a + 80032a4: 4b35 ldr r3, [pc, #212] ; (800337c ) + 80032a6: 681b ldr r3, [r3, #0] + 80032a8: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 80032ac: 2b00 cmp r3, #0 + 80032ae: d1f0 bne.n 8003292 } } /* 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) - 8003278: 687b ldr r3, [r7, #4] - 800327a: 6a1b ldr r3, [r3, #32] - 800327c: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8003280: d108 bne.n 8003294 + 80032b0: 687b ldr r3, [r7, #4] + 80032b2: 6a1b ldr r3, [r3, #32] + 80032b4: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 80032b8: d108 bne.n 80032cc /* Set PREDIV1 source */ SET_BIT(RCC->CFGR2, RCC_OscInitStruct->Prediv1Source); #endif /* RCC_CFGR2_PREDIV1SRC */ /* Set PREDIV1 Value */ __HAL_RCC_HSE_PREDIV_CONFIG(RCC_OscInitStruct->HSEPredivValue); - 8003282: 4b30 ldr r3, [pc, #192] ; (8003344 ) - 8003284: 685b ldr r3, [r3, #4] - 8003286: f423 3200 bic.w r2, r3, #131072 ; 0x20000 - 800328a: 687b ldr r3, [r7, #4] - 800328c: 689b ldr r3, [r3, #8] - 800328e: 492d ldr r1, [pc, #180] ; (8003344 ) - 8003290: 4313 orrs r3, r2 - 8003292: 604b str r3, [r1, #4] + 80032ba: 4b30 ldr r3, [pc, #192] ; (800337c ) + 80032bc: 685b ldr r3, [r3, #4] + 80032be: f423 3200 bic.w r2, r3, #131072 ; 0x20000 + 80032c2: 687b ldr r3, [r7, #4] + 80032c4: 689b ldr r3, [r3, #8] + 80032c6: 492d ldr r1, [pc, #180] ; (800337c ) + 80032c8: 4313 orrs r3, r2 + 80032ca: 604b str r3, [r1, #4] } /* Configure the main PLL clock source and multiplication factors. */ __HAL_RCC_PLL_CONFIG(RCC_OscInitStruct->PLL.PLLSource, - 8003294: 4b2b ldr r3, [pc, #172] ; (8003344 ) - 8003296: 685b ldr r3, [r3, #4] - 8003298: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 - 800329c: 687b ldr r3, [r7, #4] - 800329e: 6a19 ldr r1, [r3, #32] - 80032a0: 687b ldr r3, [r7, #4] - 80032a2: 6a5b ldr r3, [r3, #36] ; 0x24 - 80032a4: 430b orrs r3, r1 - 80032a6: 4927 ldr r1, [pc, #156] ; (8003344 ) - 80032a8: 4313 orrs r3, r2 - 80032aa: 604b str r3, [r1, #4] + 80032cc: 4b2b ldr r3, [pc, #172] ; (800337c ) + 80032ce: 685b ldr r3, [r3, #4] + 80032d0: f423 1274 bic.w r2, r3, #3997696 ; 0x3d0000 + 80032d4: 687b ldr r3, [r7, #4] + 80032d6: 6a19 ldr r1, [r3, #32] + 80032d8: 687b ldr r3, [r7, #4] + 80032da: 6a5b ldr r3, [r3, #36] ; 0x24 + 80032dc: 430b orrs r3, r1 + 80032de: 4927 ldr r1, [pc, #156] ; (800337c ) + 80032e0: 4313 orrs r3, r2 + 80032e2: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLMUL); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 80032ac: 4b27 ldr r3, [pc, #156] ; (800334c ) - 80032ae: 2201 movs r2, #1 - 80032b0: 601a str r2, [r3, #0] + 80032e4: 4b27 ldr r3, [pc, #156] ; (8003384 ) + 80032e6: 2201 movs r2, #1 + 80032e8: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80032b2: f7fe faf7 bl 80018a4 - 80032b6: 6138 str r0, [r7, #16] + 80032ea: f7fe faf7 bl 80018dc + 80032ee: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80032b8: e008 b.n 80032cc + 80032f0: e008 b.n 8003304 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80032ba: f7fe faf3 bl 80018a4 - 80032be: 4602 mov r2, r0 - 80032c0: 693b ldr r3, [r7, #16] - 80032c2: 1ad3 subs r3, r2, r3 - 80032c4: 2b02 cmp r3, #2 - 80032c6: d901 bls.n 80032cc + 80032f2: f7fe faf3 bl 80018dc + 80032f6: 4602 mov r2, r0 + 80032f8: 693b ldr r3, [r7, #16] + 80032fa: 1ad3 subs r3, r2, r3 + 80032fc: 2b02 cmp r3, #2 + 80032fe: d901 bls.n 8003304 { return HAL_TIMEOUT; - 80032c8: 2303 movs r3, #3 - 80032ca: e037 b.n 800333c + 8003300: 2303 movs r3, #3 + 8003302: e037 b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80032cc: 4b1d ldr r3, [pc, #116] ; (8003344 ) - 80032ce: 681b ldr r3, [r3, #0] - 80032d0: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80032d4: 2b00 cmp r3, #0 - 80032d6: d0f0 beq.n 80032ba - 80032d8: e02f b.n 800333a + 8003304: 4b1d ldr r3, [pc, #116] ; (800337c ) + 8003306: 681b ldr r3, [r3, #0] + 8003308: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800330c: 2b00 cmp r3, #0 + 800330e: d0f0 beq.n 80032f2 + 8003310: e02f b.n 8003372 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80032da: 4b1c ldr r3, [pc, #112] ; (800334c ) - 80032dc: 2200 movs r2, #0 - 80032de: 601a str r2, [r3, #0] + 8003312: 4b1c ldr r3, [pc, #112] ; (8003384 ) + 8003314: 2200 movs r2, #0 + 8003316: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80032e0: f7fe fae0 bl 80018a4 - 80032e4: 6138 str r0, [r7, #16] + 8003318: f7fe fae0 bl 80018dc + 800331c: 6138 str r0, [r7, #16] /* Wait till PLL is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80032e6: e008 b.n 80032fa + 800331e: e008 b.n 8003332 { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80032e8: f7fe fadc bl 80018a4 - 80032ec: 4602 mov r2, r0 - 80032ee: 693b ldr r3, [r7, #16] - 80032f0: 1ad3 subs r3, r2, r3 - 80032f2: 2b02 cmp r3, #2 - 80032f4: d901 bls.n 80032fa + 8003320: f7fe fadc bl 80018dc + 8003324: 4602 mov r2, r0 + 8003326: 693b ldr r3, [r7, #16] + 8003328: 1ad3 subs r3, r2, r3 + 800332a: 2b02 cmp r3, #2 + 800332c: d901 bls.n 8003332 { return HAL_TIMEOUT; - 80032f6: 2303 movs r3, #3 - 80032f8: e020 b.n 800333c + 800332e: 2303 movs r3, #3 + 8003330: e020 b.n 8003374 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80032fa: 4b12 ldr r3, [pc, #72] ; (8003344 ) - 80032fc: 681b ldr r3, [r3, #0] - 80032fe: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003302: 2b00 cmp r3, #0 - 8003304: d1f0 bne.n 80032e8 - 8003306: e018 b.n 800333a + 8003332: 4b12 ldr r3, [pc, #72] ; (800337c ) + 8003334: 681b ldr r3, [r3, #0] + 8003336: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800333a: 2b00 cmp r3, #0 + 800333c: d1f0 bne.n 8003320 + 800333e: e018 b.n 8003372 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 8003308: 687b ldr r3, [r7, #4] - 800330a: 69db ldr r3, [r3, #28] - 800330c: 2b01 cmp r3, #1 - 800330e: d101 bne.n 8003314 + 8003340: 687b ldr r3, [r7, #4] + 8003342: 69db ldr r3, [r3, #28] + 8003344: 2b01 cmp r3, #1 + 8003346: d101 bne.n 800334c { return HAL_ERROR; - 8003310: 2301 movs r3, #1 - 8003312: e013 b.n 800333c + 8003348: 2301 movs r3, #1 + 800334a: e013 b.n 8003374 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->CFGR; - 8003314: 4b0b ldr r3, [pc, #44] ; (8003344 ) - 8003316: 685b ldr r3, [r3, #4] - 8003318: 60fb str r3, [r7, #12] + 800334c: 4b0b ldr r3, [pc, #44] ; (800337c ) + 800334e: 685b ldr r3, [r3, #4] + 8003350: 60fb str r3, [r7, #12] if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800331a: 68fb ldr r3, [r7, #12] - 800331c: f403 3280 and.w r2, r3, #65536 ; 0x10000 - 8003320: 687b ldr r3, [r7, #4] - 8003322: 6a1b ldr r3, [r3, #32] - 8003324: 429a cmp r2, r3 - 8003326: d106 bne.n 8003336 + 8003352: 68fb ldr r3, [r7, #12] + 8003354: f403 3280 and.w r2, r3, #65536 ; 0x10000 + 8003358: 687b ldr r3, [r7, #4] + 800335a: 6a1b ldr r3, [r3, #32] + 800335c: 429a cmp r2, r3 + 800335e: d106 bne.n 800336e (READ_BIT(pll_config, RCC_CFGR_PLLMULL) != RCC_OscInitStruct->PLL.PLLMUL)) - 8003328: 68fb ldr r3, [r7, #12] - 800332a: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 - 800332e: 687b ldr r3, [r7, #4] - 8003330: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003360: 68fb ldr r3, [r7, #12] + 8003362: f403 1270 and.w r2, r3, #3932160 ; 0x3c0000 + 8003366: 687b ldr r3, [r7, #4] + 8003368: 6a5b ldr r3, [r3, #36] ; 0x24 if ((READ_BIT(pll_config, RCC_CFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8003332: 429a cmp r2, r3 - 8003334: d001 beq.n 800333a + 800336a: 429a cmp r2, r3 + 800336c: d001 beq.n 8003372 { return HAL_ERROR; - 8003336: 2301 movs r3, #1 - 8003338: e000 b.n 800333c + 800336e: 2301 movs r3, #1 + 8003370: e000 b.n 8003374 } } } } return HAL_OK; - 800333a: 2300 movs r3, #0 + 8003372: 2300 movs r3, #0 } - 800333c: 4618 mov r0, r3 - 800333e: 3718 adds r7, #24 - 8003340: 46bd mov sp, r7 - 8003342: bd80 pop {r7, pc} - 8003344: 40021000 .word 0x40021000 - 8003348: 40007000 .word 0x40007000 - 800334c: 42420060 .word 0x42420060 + 8003374: 4618 mov r0, r3 + 8003376: 3718 adds r7, #24 + 8003378: 46bd mov sp, r7 + 800337a: bd80 pop {r7, pc} + 800337c: 40021000 .word 0x40021000 + 8003380: 40007000 .word 0x40007000 + 8003384: 42420060 .word 0x42420060 -08003350 : +08003388 : * 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) { - 8003350: b580 push {r7, lr} - 8003352: b084 sub sp, #16 - 8003354: af00 add r7, sp, #0 - 8003356: 6078 str r0, [r7, #4] - 8003358: 6039 str r1, [r7, #0] + 8003388: b580 push {r7, lr} + 800338a: b084 sub sp, #16 + 800338c: af00 add r7, sp, #0 + 800338e: 6078 str r0, [r7, #4] + 8003390: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 800335a: 687b ldr r3, [r7, #4] - 800335c: 2b00 cmp r3, #0 - 800335e: d101 bne.n 8003364 + 8003392: 687b ldr r3, [r7, #4] + 8003394: 2b00 cmp r3, #0 + 8003396: d101 bne.n 800339c { return HAL_ERROR; - 8003360: 2301 movs r3, #1 - 8003362: e0d0 b.n 8003506 + 8003398: 2301 movs r3, #1 + 800339a: e0d0 b.n 800353e 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()) - 8003364: 4b6a ldr r3, [pc, #424] ; (8003510 ) - 8003366: 681b ldr r3, [r3, #0] - 8003368: f003 0307 and.w r3, r3, #7 - 800336c: 683a ldr r2, [r7, #0] - 800336e: 429a cmp r2, r3 - 8003370: d910 bls.n 8003394 + 800339c: 4b6a ldr r3, [pc, #424] ; (8003548 ) + 800339e: 681b ldr r3, [r3, #0] + 80033a0: f003 0307 and.w r3, r3, #7 + 80033a4: 683a ldr r2, [r7, #0] + 80033a6: 429a cmp r2, r3 + 80033a8: d910 bls.n 80033cc { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 8003372: 4b67 ldr r3, [pc, #412] ; (8003510 ) - 8003374: 681b ldr r3, [r3, #0] - 8003376: f023 0207 bic.w r2, r3, #7 - 800337a: 4965 ldr r1, [pc, #404] ; (8003510 ) - 800337c: 683b ldr r3, [r7, #0] - 800337e: 4313 orrs r3, r2 - 8003380: 600b str r3, [r1, #0] + 80033aa: 4b67 ldr r3, [pc, #412] ; (8003548 ) + 80033ac: 681b ldr r3, [r3, #0] + 80033ae: f023 0207 bic.w r2, r3, #7 + 80033b2: 4965 ldr r1, [pc, #404] ; (8003548 ) + 80033b4: 683b ldr r3, [r7, #0] + 80033b6: 4313 orrs r3, r2 + 80033b8: 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) - 8003382: 4b63 ldr r3, [pc, #396] ; (8003510 ) - 8003384: 681b ldr r3, [r3, #0] - 8003386: f003 0307 and.w r3, r3, #7 - 800338a: 683a ldr r2, [r7, #0] - 800338c: 429a cmp r2, r3 - 800338e: d001 beq.n 8003394 + 80033ba: 4b63 ldr r3, [pc, #396] ; (8003548 ) + 80033bc: 681b ldr r3, [r3, #0] + 80033be: f003 0307 and.w r3, r3, #7 + 80033c2: 683a ldr r2, [r7, #0] + 80033c4: 429a cmp r2, r3 + 80033c6: d001 beq.n 80033cc { return HAL_ERROR; - 8003390: 2301 movs r3, #1 - 8003392: e0b8 b.n 8003506 + 80033c8: 2301 movs r3, #1 + 80033ca: e0b8 b.n 800353e } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 8003394: 687b ldr r3, [r7, #4] - 8003396: 681b ldr r3, [r3, #0] - 8003398: f003 0302 and.w r3, r3, #2 - 800339c: 2b00 cmp r3, #0 - 800339e: d020 beq.n 80033e2 + 80033cc: 687b ldr r3, [r7, #4] + 80033ce: 681b ldr r3, [r3, #0] + 80033d0: f003 0302 and.w r3, r3, #2 + 80033d4: 2b00 cmp r3, #0 + 80033d6: d020 beq.n 800341a { /* 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) - 80033a0: 687b ldr r3, [r7, #4] - 80033a2: 681b ldr r3, [r3, #0] - 80033a4: f003 0304 and.w r3, r3, #4 - 80033a8: 2b00 cmp r3, #0 - 80033aa: d005 beq.n 80033b8 + 80033d8: 687b ldr r3, [r7, #4] + 80033da: 681b ldr r3, [r3, #0] + 80033dc: f003 0304 and.w r3, r3, #4 + 80033e0: 2b00 cmp r3, #0 + 80033e2: d005 beq.n 80033f0 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 80033ac: 4b59 ldr r3, [pc, #356] ; (8003514 ) - 80033ae: 685b ldr r3, [r3, #4] - 80033b0: 4a58 ldr r2, [pc, #352] ; (8003514 ) - 80033b2: f443 63e0 orr.w r3, r3, #1792 ; 0x700 - 80033b6: 6053 str r3, [r2, #4] + 80033e4: 4b59 ldr r3, [pc, #356] ; (800354c ) + 80033e6: 685b ldr r3, [r3, #4] + 80033e8: 4a58 ldr r2, [pc, #352] ; (800354c ) + 80033ea: f443 63e0 orr.w r3, r3, #1792 ; 0x700 + 80033ee: 6053 str r3, [r2, #4] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80033b8: 687b ldr r3, [r7, #4] - 80033ba: 681b ldr r3, [r3, #0] - 80033bc: f003 0308 and.w r3, r3, #8 - 80033c0: 2b00 cmp r3, #0 - 80033c2: d005 beq.n 80033d0 + 80033f0: 687b ldr r3, [r7, #4] + 80033f2: 681b ldr r3, [r3, #0] + 80033f4: f003 0308 and.w r3, r3, #8 + 80033f8: 2b00 cmp r3, #0 + 80033fa: d005 beq.n 8003408 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 80033c4: 4b53 ldr r3, [pc, #332] ; (8003514 ) - 80033c6: 685b ldr r3, [r3, #4] - 80033c8: 4a52 ldr r2, [pc, #328] ; (8003514 ) - 80033ca: f443 5360 orr.w r3, r3, #14336 ; 0x3800 - 80033ce: 6053 str r3, [r2, #4] + 80033fc: 4b53 ldr r3, [pc, #332] ; (800354c ) + 80033fe: 685b ldr r3, [r3, #4] + 8003400: 4a52 ldr r2, [pc, #328] ; (800354c ) + 8003402: f443 5360 orr.w r3, r3, #14336 ; 0x3800 + 8003406: 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); - 80033d0: 4b50 ldr r3, [pc, #320] ; (8003514 ) - 80033d2: 685b ldr r3, [r3, #4] - 80033d4: f023 02f0 bic.w r2, r3, #240 ; 0xf0 - 80033d8: 687b ldr r3, [r7, #4] - 80033da: 689b ldr r3, [r3, #8] - 80033dc: 494d ldr r1, [pc, #308] ; (8003514 ) - 80033de: 4313 orrs r3, r2 - 80033e0: 604b str r3, [r1, #4] + 8003408: 4b50 ldr r3, [pc, #320] ; (800354c ) + 800340a: 685b ldr r3, [r3, #4] + 800340c: f023 02f0 bic.w r2, r3, #240 ; 0xf0 + 8003410: 687b ldr r3, [r7, #4] + 8003412: 689b ldr r3, [r3, #8] + 8003414: 494d ldr r1, [pc, #308] ; (800354c ) + 8003416: 4313 orrs r3, r2 + 8003418: 604b str r3, [r1, #4] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 80033e2: 687b ldr r3, [r7, #4] - 80033e4: 681b ldr r3, [r3, #0] - 80033e6: f003 0301 and.w r3, r3, #1 - 80033ea: 2b00 cmp r3, #0 - 80033ec: d040 beq.n 8003470 + 800341a: 687b ldr r3, [r7, #4] + 800341c: 681b ldr r3, [r3, #0] + 800341e: f003 0301 and.w r3, r3, #1 + 8003422: 2b00 cmp r3, #0 + 8003424: d040 beq.n 80034a8 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 80033ee: 687b ldr r3, [r7, #4] - 80033f0: 685b ldr r3, [r3, #4] - 80033f2: 2b01 cmp r3, #1 - 80033f4: d107 bne.n 8003406 + 8003426: 687b ldr r3, [r7, #4] + 8003428: 685b ldr r3, [r3, #4] + 800342a: 2b01 cmp r3, #1 + 800342c: d107 bne.n 800343e { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 80033f6: 4b47 ldr r3, [pc, #284] ; (8003514 ) - 80033f8: 681b ldr r3, [r3, #0] - 80033fa: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 80033fe: 2b00 cmp r3, #0 - 8003400: d115 bne.n 800342e + 800342e: 4b47 ldr r3, [pc, #284] ; (800354c ) + 8003430: 681b ldr r3, [r3, #0] + 8003432: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8003436: 2b00 cmp r3, #0 + 8003438: d115 bne.n 8003466 { return HAL_ERROR; - 8003402: 2301 movs r3, #1 - 8003404: e07f b.n 8003506 + 800343a: 2301 movs r3, #1 + 800343c: e07f b.n 800353e } } /* PLL is selected as System Clock Source */ else if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) - 8003406: 687b ldr r3, [r7, #4] - 8003408: 685b ldr r3, [r3, #4] - 800340a: 2b02 cmp r3, #2 - 800340c: d107 bne.n 800341e + 800343e: 687b ldr r3, [r7, #4] + 8003440: 685b ldr r3, [r3, #4] + 8003442: 2b02 cmp r3, #2 + 8003444: d107 bne.n 8003456 { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800340e: 4b41 ldr r3, [pc, #260] ; (8003514 ) - 8003410: 681b ldr r3, [r3, #0] - 8003412: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8003416: 2b00 cmp r3, #0 - 8003418: d109 bne.n 800342e + 8003446: 4b41 ldr r3, [pc, #260] ; (800354c ) + 8003448: 681b ldr r3, [r3, #0] + 800344a: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 800344e: 2b00 cmp r3, #0 + 8003450: d109 bne.n 8003466 { return HAL_ERROR; - 800341a: 2301 movs r3, #1 - 800341c: e073 b.n 8003506 + 8003452: 2301 movs r3, #1 + 8003454: e073 b.n 800353e } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800341e: 4b3d ldr r3, [pc, #244] ; (8003514 ) - 8003420: 681b ldr r3, [r3, #0] - 8003422: f003 0302 and.w r3, r3, #2 - 8003426: 2b00 cmp r3, #0 - 8003428: d101 bne.n 800342e + 8003456: 4b3d ldr r3, [pc, #244] ; (800354c ) + 8003458: 681b ldr r3, [r3, #0] + 800345a: f003 0302 and.w r3, r3, #2 + 800345e: 2b00 cmp r3, #0 + 8003460: d101 bne.n 8003466 { return HAL_ERROR; - 800342a: 2301 movs r3, #1 - 800342c: e06b b.n 8003506 + 8003462: 2301 movs r3, #1 + 8003464: e06b b.n 800353e } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 800342e: 4b39 ldr r3, [pc, #228] ; (8003514 ) - 8003430: 685b ldr r3, [r3, #4] - 8003432: f023 0203 bic.w r2, r3, #3 - 8003436: 687b ldr r3, [r7, #4] - 8003438: 685b ldr r3, [r3, #4] - 800343a: 4936 ldr r1, [pc, #216] ; (8003514 ) - 800343c: 4313 orrs r3, r2 - 800343e: 604b str r3, [r1, #4] + 8003466: 4b39 ldr r3, [pc, #228] ; (800354c ) + 8003468: 685b ldr r3, [r3, #4] + 800346a: f023 0203 bic.w r2, r3, #3 + 800346e: 687b ldr r3, [r7, #4] + 8003470: 685b ldr r3, [r3, #4] + 8003472: 4936 ldr r1, [pc, #216] ; (800354c ) + 8003474: 4313 orrs r3, r2 + 8003476: 604b str r3, [r1, #4] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8003440: f7fe fa30 bl 80018a4 - 8003444: 60f8 str r0, [r7, #12] + 8003478: f7fe fa30 bl 80018dc + 800347c: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8003446: e00a b.n 800345e + 800347e: e00a b.n 8003496 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8003448: f7fe fa2c bl 80018a4 - 800344c: 4602 mov r2, r0 - 800344e: 68fb ldr r3, [r7, #12] - 8003450: 1ad3 subs r3, r2, r3 - 8003452: f241 3288 movw r2, #5000 ; 0x1388 - 8003456: 4293 cmp r3, r2 - 8003458: d901 bls.n 800345e + 8003480: f7fe fa2c bl 80018dc + 8003484: 4602 mov r2, r0 + 8003486: 68fb ldr r3, [r7, #12] + 8003488: 1ad3 subs r3, r2, r3 + 800348a: f241 3288 movw r2, #5000 ; 0x1388 + 800348e: 4293 cmp r3, r2 + 8003490: d901 bls.n 8003496 { return HAL_TIMEOUT; - 800345a: 2303 movs r3, #3 - 800345c: e053 b.n 8003506 + 8003492: 2303 movs r3, #3 + 8003494: e053 b.n 800353e while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 800345e: 4b2d ldr r3, [pc, #180] ; (8003514 ) - 8003460: 685b ldr r3, [r3, #4] - 8003462: f003 020c and.w r2, r3, #12 - 8003466: 687b ldr r3, [r7, #4] - 8003468: 685b ldr r3, [r3, #4] - 800346a: 009b lsls r3, r3, #2 - 800346c: 429a cmp r2, r3 - 800346e: d1eb bne.n 8003448 + 8003496: 4b2d ldr r3, [pc, #180] ; (800354c ) + 8003498: 685b ldr r3, [r3, #4] + 800349a: f003 020c and.w r2, r3, #12 + 800349e: 687b ldr r3, [r7, #4] + 80034a0: 685b ldr r3, [r3, #4] + 80034a2: 009b lsls r3, r3, #2 + 80034a4: 429a cmp r2, r3 + 80034a6: d1eb bne.n 8003480 } } #if defined(FLASH_ACR_LATENCY) /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 8003470: 4b27 ldr r3, [pc, #156] ; (8003510 ) - 8003472: 681b ldr r3, [r3, #0] - 8003474: f003 0307 and.w r3, r3, #7 - 8003478: 683a ldr r2, [r7, #0] - 800347a: 429a cmp r2, r3 - 800347c: d210 bcs.n 80034a0 + 80034a8: 4b27 ldr r3, [pc, #156] ; (8003548 ) + 80034aa: 681b ldr r3, [r3, #0] + 80034ac: f003 0307 and.w r3, r3, #7 + 80034b0: 683a ldr r2, [r7, #0] + 80034b2: 429a cmp r2, r3 + 80034b4: d210 bcs.n 80034d8 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 800347e: 4b24 ldr r3, [pc, #144] ; (8003510 ) - 8003480: 681b ldr r3, [r3, #0] - 8003482: f023 0207 bic.w r2, r3, #7 - 8003486: 4922 ldr r1, [pc, #136] ; (8003510 ) - 8003488: 683b ldr r3, [r7, #0] - 800348a: 4313 orrs r3, r2 - 800348c: 600b str r3, [r1, #0] + 80034b6: 4b24 ldr r3, [pc, #144] ; (8003548 ) + 80034b8: 681b ldr r3, [r3, #0] + 80034ba: f023 0207 bic.w r2, r3, #7 + 80034be: 4922 ldr r1, [pc, #136] ; (8003548 ) + 80034c0: 683b ldr r3, [r7, #0] + 80034c2: 4313 orrs r3, r2 + 80034c4: 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) - 800348e: 4b20 ldr r3, [pc, #128] ; (8003510 ) - 8003490: 681b ldr r3, [r3, #0] - 8003492: f003 0307 and.w r3, r3, #7 - 8003496: 683a ldr r2, [r7, #0] - 8003498: 429a cmp r2, r3 - 800349a: d001 beq.n 80034a0 + 80034c6: 4b20 ldr r3, [pc, #128] ; (8003548 ) + 80034c8: 681b ldr r3, [r3, #0] + 80034ca: f003 0307 and.w r3, r3, #7 + 80034ce: 683a ldr r2, [r7, #0] + 80034d0: 429a cmp r2, r3 + 80034d2: d001 beq.n 80034d8 { return HAL_ERROR; - 800349c: 2301 movs r3, #1 - 800349e: e032 b.n 8003506 + 80034d4: 2301 movs r3, #1 + 80034d6: e032 b.n 800353e } } #endif /* FLASH_ACR_LATENCY */ /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80034a0: 687b ldr r3, [r7, #4] - 80034a2: 681b ldr r3, [r3, #0] - 80034a4: f003 0304 and.w r3, r3, #4 - 80034a8: 2b00 cmp r3, #0 - 80034aa: d008 beq.n 80034be + 80034d8: 687b ldr r3, [r7, #4] + 80034da: 681b ldr r3, [r3, #0] + 80034dc: f003 0304 and.w r3, r3, #4 + 80034e0: 2b00 cmp r3, #0 + 80034e2: d008 beq.n 80034f6 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80034ac: 4b19 ldr r3, [pc, #100] ; (8003514 ) - 80034ae: 685b ldr r3, [r3, #4] - 80034b0: f423 62e0 bic.w r2, r3, #1792 ; 0x700 - 80034b4: 687b ldr r3, [r7, #4] - 80034b6: 68db ldr r3, [r3, #12] - 80034b8: 4916 ldr r1, [pc, #88] ; (8003514 ) - 80034ba: 4313 orrs r3, r2 - 80034bc: 604b str r3, [r1, #4] + 80034e4: 4b19 ldr r3, [pc, #100] ; (800354c ) + 80034e6: 685b ldr r3, [r3, #4] + 80034e8: f423 62e0 bic.w r2, r3, #1792 ; 0x700 + 80034ec: 687b ldr r3, [r7, #4] + 80034ee: 68db ldr r3, [r3, #12] + 80034f0: 4916 ldr r1, [pc, #88] ; (800354c ) + 80034f2: 4313 orrs r3, r2 + 80034f4: 604b str r3, [r1, #4] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80034be: 687b ldr r3, [r7, #4] - 80034c0: 681b ldr r3, [r3, #0] - 80034c2: f003 0308 and.w r3, r3, #8 - 80034c6: 2b00 cmp r3, #0 - 80034c8: d009 beq.n 80034de + 80034f6: 687b ldr r3, [r7, #4] + 80034f8: 681b ldr r3, [r3, #0] + 80034fa: f003 0308 and.w r3, r3, #8 + 80034fe: 2b00 cmp r3, #0 + 8003500: d009 beq.n 8003516 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3)); - 80034ca: 4b12 ldr r3, [pc, #72] ; (8003514 ) - 80034cc: 685b ldr r3, [r3, #4] - 80034ce: f423 5260 bic.w r2, r3, #14336 ; 0x3800 - 80034d2: 687b ldr r3, [r7, #4] - 80034d4: 691b ldr r3, [r3, #16] - 80034d6: 00db lsls r3, r3, #3 - 80034d8: 490e ldr r1, [pc, #56] ; (8003514 ) - 80034da: 4313 orrs r3, r2 - 80034dc: 604b str r3, [r1, #4] + 8003502: 4b12 ldr r3, [pc, #72] ; (800354c ) + 8003504: 685b ldr r3, [r3, #4] + 8003506: f423 5260 bic.w r2, r3, #14336 ; 0x3800 + 800350a: 687b ldr r3, [r7, #4] + 800350c: 691b ldr r3, [r3, #16] + 800350e: 00db lsls r3, r3, #3 + 8003510: 490e ldr r1, [pc, #56] ; (800354c ) + 8003512: 4313 orrs r3, r2 + 8003514: 604b str r3, [r1, #4] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 80034de: f000 f821 bl 8003524 - 80034e2: 4602 mov r2, r0 - 80034e4: 4b0b ldr r3, [pc, #44] ; (8003514 ) - 80034e6: 685b ldr r3, [r3, #4] - 80034e8: 091b lsrs r3, r3, #4 - 80034ea: f003 030f and.w r3, r3, #15 - 80034ee: 490a ldr r1, [pc, #40] ; (8003518 ) - 80034f0: 5ccb ldrb r3, [r1, r3] - 80034f2: fa22 f303 lsr.w r3, r2, r3 - 80034f6: 4a09 ldr r2, [pc, #36] ; (800351c ) - 80034f8: 6013 str r3, [r2, #0] + 8003516: f000 f821 bl 800355c + 800351a: 4602 mov r2, r0 + 800351c: 4b0b ldr r3, [pc, #44] ; (800354c ) + 800351e: 685b ldr r3, [r3, #4] + 8003520: 091b lsrs r3, r3, #4 + 8003522: f003 030f and.w r3, r3, #15 + 8003526: 490a ldr r1, [pc, #40] ; (8003550 ) + 8003528: 5ccb ldrb r3, [r1, r3] + 800352a: fa22 f303 lsr.w r3, r2, r3 + 800352e: 4a09 ldr r2, [pc, #36] ; (8003554 ) + 8003530: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings*/ HAL_InitTick(uwTickPrio); - 80034fa: 4b09 ldr r3, [pc, #36] ; (8003520 ) - 80034fc: 681b ldr r3, [r3, #0] - 80034fe: 4618 mov r0, r3 - 8003500: f7fe f98e bl 8001820 + 8003532: 4b09 ldr r3, [pc, #36] ; (8003558 ) + 8003534: 681b ldr r3, [r3, #0] + 8003536: 4618 mov r0, r3 + 8003538: f7fe f98e bl 8001858 return HAL_OK; - 8003504: 2300 movs r3, #0 + 800353c: 2300 movs r3, #0 } - 8003506: 4618 mov r0, r3 - 8003508: 3710 adds r7, #16 - 800350a: 46bd mov sp, r7 - 800350c: bd80 pop {r7, pc} - 800350e: bf00 nop - 8003510: 40022000 .word 0x40022000 - 8003514: 40021000 .word 0x40021000 - 8003518: 080086dc .word 0x080086dc - 800351c: 20000000 .word 0x20000000 - 8003520: 20000004 .word 0x20000004 + 800353e: 4618 mov r0, r3 + 8003540: 3710 adds r7, #16 + 8003542: 46bd mov sp, r7 + 8003544: bd80 pop {r7, pc} + 8003546: bf00 nop + 8003548: 40022000 .word 0x40022000 + 800354c: 40021000 .word 0x40021000 + 8003550: 080089cc .word 0x080089cc + 8003554: 20000000 .word 0x20000000 + 8003558: 20000004 .word 0x20000004 -08003524 : +0800355c : * right SYSCLK value. Otherwise, any configuration based on this function will be incorrect. * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 8003524: b490 push {r4, r7} - 8003526: b08a sub sp, #40 ; 0x28 - 8003528: af00 add r7, sp, #0 + 800355c: b490 push {r4, r7} + 800355e: b08a sub sp, #40 ; 0x28 + 8003560: af00 add r7, sp, #0 #if defined(RCC_CFGR2_PREDIV1SRC) const uint8_t aPLLMULFactorTable[14] = {0, 0, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 13}; const uint8_t aPredivFactorTable[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; #else const uint8_t aPLLMULFactorTable[16] = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16}; - 800352a: 4b2a ldr r3, [pc, #168] ; (80035d4 ) - 800352c: 1d3c adds r4, r7, #4 - 800352e: cb0f ldmia r3, {r0, r1, r2, r3} - 8003530: e884 000f stmia.w r4, {r0, r1, r2, r3} + 8003562: 4b2a ldr r3, [pc, #168] ; (800360c ) + 8003564: 1d3c adds r4, r7, #4 + 8003566: cb0f ldmia r3, {r0, r1, r2, r3} + 8003568: e884 000f stmia.w r4, {r0, r1, r2, r3} #if defined(RCC_CFGR2_PREDIV1) const uint8_t aPredivFactorTable[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; #else const uint8_t aPredivFactorTable[2] = {1, 2}; - 8003534: f240 2301 movw r3, #513 ; 0x201 - 8003538: 803b strh r3, [r7, #0] + 800356c: f240 2301 movw r3, #513 ; 0x201 + 8003570: 803b strh r3, [r7, #0] #endif /*RCC_CFGR2_PREDIV1*/ #endif uint32_t tmpreg = 0U, prediv = 0U, pllclk = 0U, pllmul = 0U; - 800353a: 2300 movs r3, #0 - 800353c: 61fb str r3, [r7, #28] - 800353e: 2300 movs r3, #0 - 8003540: 61bb str r3, [r7, #24] - 8003542: 2300 movs r3, #0 - 8003544: 627b str r3, [r7, #36] ; 0x24 - 8003546: 2300 movs r3, #0 - 8003548: 617b str r3, [r7, #20] + 8003572: 2300 movs r3, #0 + 8003574: 61fb str r3, [r7, #28] + 8003576: 2300 movs r3, #0 + 8003578: 61bb str r3, [r7, #24] + 800357a: 2300 movs r3, #0 + 800357c: 627b str r3, [r7, #36] ; 0x24 + 800357e: 2300 movs r3, #0 + 8003580: 617b str r3, [r7, #20] uint32_t sysclockfreq = 0U; - 800354a: 2300 movs r3, #0 - 800354c: 623b str r3, [r7, #32] + 8003582: 2300 movs r3, #0 + 8003584: 623b str r3, [r7, #32] #if defined(RCC_CFGR2_PREDIV1SRC) uint32_t prediv2 = 0U, pll2mul = 0U; #endif /*RCC_CFGR2_PREDIV1SRC*/ tmpreg = RCC->CFGR; - 800354e: 4b22 ldr r3, [pc, #136] ; (80035d8 ) - 8003550: 685b ldr r3, [r3, #4] - 8003552: 61fb str r3, [r7, #28] + 8003586: 4b22 ldr r3, [pc, #136] ; (8003610 ) + 8003588: 685b ldr r3, [r3, #4] + 800358a: 61fb str r3, [r7, #28] /* Get SYSCLK source -------------------------------------------------------*/ switch (tmpreg & RCC_CFGR_SWS) - 8003554: 69fb ldr r3, [r7, #28] - 8003556: f003 030c and.w r3, r3, #12 - 800355a: 2b04 cmp r3, #4 - 800355c: d002 beq.n 8003564 - 800355e: 2b08 cmp r3, #8 - 8003560: d003 beq.n 800356a - 8003562: e02d b.n 80035c0 + 800358c: 69fb ldr r3, [r7, #28] + 800358e: f003 030c and.w r3, r3, #12 + 8003592: 2b04 cmp r3, #4 + 8003594: d002 beq.n 800359c + 8003596: 2b08 cmp r3, #8 + 8003598: d003 beq.n 80035a2 + 800359a: e02d b.n 80035f8 { case RCC_SYSCLKSOURCE_STATUS_HSE: /* HSE used as system clock */ { sysclockfreq = HSE_VALUE; - 8003564: 4b1d ldr r3, [pc, #116] ; (80035dc ) - 8003566: 623b str r3, [r7, #32] + 800359c: 4b1d ldr r3, [pc, #116] ; (8003614 ) + 800359e: 623b str r3, [r7, #32] break; - 8003568: e02d b.n 80035c6 + 80035a0: e02d b.n 80035fe } case RCC_SYSCLKSOURCE_STATUS_PLLCLK: /* PLL used as system clock */ { pllmul = aPLLMULFactorTable[(uint32_t)(tmpreg & RCC_CFGR_PLLMULL) >> RCC_CFGR_PLLMULL_Pos]; - 800356a: 69fb ldr r3, [r7, #28] - 800356c: 0c9b lsrs r3, r3, #18 - 800356e: f003 030f and.w r3, r3, #15 - 8003572: f107 0228 add.w r2, r7, #40 ; 0x28 - 8003576: 4413 add r3, r2 - 8003578: f813 3c24 ldrb.w r3, [r3, #-36] - 800357c: 617b str r3, [r7, #20] + 80035a2: 69fb ldr r3, [r7, #28] + 80035a4: 0c9b lsrs r3, r3, #18 + 80035a6: f003 030f and.w r3, r3, #15 + 80035aa: f107 0228 add.w r2, r7, #40 ; 0x28 + 80035ae: 4413 add r3, r2 + 80035b0: f813 3c24 ldrb.w r3, [r3, #-36] + 80035b4: 617b str r3, [r7, #20] if ((tmpreg & RCC_CFGR_PLLSRC) != RCC_PLLSOURCE_HSI_DIV2) - 800357e: 69fb ldr r3, [r7, #28] - 8003580: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8003584: 2b00 cmp r3, #0 - 8003586: d013 beq.n 80035b0 + 80035b6: 69fb ldr r3, [r7, #28] + 80035b8: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 80035bc: 2b00 cmp r3, #0 + 80035be: d013 beq.n 80035e8 { #if defined(RCC_CFGR2_PREDIV1) prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR2 & RCC_CFGR2_PREDIV1) >> RCC_CFGR2_PREDIV1_Pos]; #else prediv = aPredivFactorTable[(uint32_t)(RCC->CFGR & RCC_CFGR_PLLXTPRE) >> RCC_CFGR_PLLXTPRE_Pos]; - 8003588: 4b13 ldr r3, [pc, #76] ; (80035d8 ) - 800358a: 685b ldr r3, [r3, #4] - 800358c: 0c5b lsrs r3, r3, #17 - 800358e: f003 0301 and.w r3, r3, #1 - 8003592: f107 0228 add.w r2, r7, #40 ; 0x28 - 8003596: 4413 add r3, r2 - 8003598: f813 3c28 ldrb.w r3, [r3, #-40] - 800359c: 61bb str r3, [r7, #24] + 80035c0: 4b13 ldr r3, [pc, #76] ; (8003610 ) + 80035c2: 685b ldr r3, [r3, #4] + 80035c4: 0c5b lsrs r3, r3, #17 + 80035c6: f003 0301 and.w r3, r3, #1 + 80035ca: f107 0228 add.w r2, r7, #40 ; 0x28 + 80035ce: 4413 add r3, r2 + 80035d0: f813 3c28 ldrb.w r3, [r3, #-40] + 80035d4: 61bb str r3, [r7, #24] { pllclk = pllclk / 2; } #else /* HSE used as PLL clock source : PLLCLK = HSE/PREDIV1 * PLLMUL */ pllclk = (uint32_t)((HSE_VALUE * pllmul) / prediv); - 800359e: 697b ldr r3, [r7, #20] - 80035a0: 4a0e ldr r2, [pc, #56] ; (80035dc ) - 80035a2: fb02 f203 mul.w r2, r2, r3 - 80035a6: 69bb ldr r3, [r7, #24] - 80035a8: fbb2 f3f3 udiv r3, r2, r3 - 80035ac: 627b str r3, [r7, #36] ; 0x24 - 80035ae: e004 b.n 80035ba + 80035d6: 697b ldr r3, [r7, #20] + 80035d8: 4a0e ldr r2, [pc, #56] ; (8003614 ) + 80035da: fb02 f203 mul.w r2, r2, r3 + 80035de: 69bb ldr r3, [r7, #24] + 80035e0: fbb2 f3f3 udiv r3, r2, r3 + 80035e4: 627b str r3, [r7, #36] ; 0x24 + 80035e6: e004 b.n 80035f2 #endif /*RCC_CFGR2_PREDIV1SRC*/ } else { /* HSI used as PLL clock source : PLLCLK = HSI/2 * PLLMUL */ pllclk = (uint32_t)((HSI_VALUE >> 1) * pllmul); - 80035b0: 697b ldr r3, [r7, #20] - 80035b2: 4a0b ldr r2, [pc, #44] ; (80035e0 ) - 80035b4: fb02 f303 mul.w r3, r2, r3 - 80035b8: 627b str r3, [r7, #36] ; 0x24 + 80035e8: 697b ldr r3, [r7, #20] + 80035ea: 4a0b ldr r2, [pc, #44] ; (8003618 ) + 80035ec: fb02 f303 mul.w r3, r2, r3 + 80035f0: 627b str r3, [r7, #36] ; 0x24 } sysclockfreq = pllclk; - 80035ba: 6a7b ldr r3, [r7, #36] ; 0x24 - 80035bc: 623b str r3, [r7, #32] + 80035f2: 6a7b ldr r3, [r7, #36] ; 0x24 + 80035f4: 623b str r3, [r7, #32] break; - 80035be: e002 b.n 80035c6 + 80035f6: e002 b.n 80035fe } case RCC_SYSCLKSOURCE_STATUS_HSI: /* HSI used as system clock source */ default: /* HSI used as system clock */ { sysclockfreq = HSI_VALUE; - 80035c0: 4b06 ldr r3, [pc, #24] ; (80035dc ) - 80035c2: 623b str r3, [r7, #32] + 80035f8: 4b06 ldr r3, [pc, #24] ; (8003614 ) + 80035fa: 623b str r3, [r7, #32] break; - 80035c4: bf00 nop + 80035fc: bf00 nop } } return sysclockfreq; - 80035c6: 6a3b ldr r3, [r7, #32] + 80035fe: 6a3b ldr r3, [r7, #32] } - 80035c8: 4618 mov r0, r3 - 80035ca: 3728 adds r7, #40 ; 0x28 - 80035cc: 46bd mov sp, r7 - 80035ce: bc90 pop {r4, r7} - 80035d0: 4770 bx lr - 80035d2: bf00 nop - 80035d4: 08008608 .word 0x08008608 - 80035d8: 40021000 .word 0x40021000 - 80035dc: 007a1200 .word 0x007a1200 - 80035e0: 003d0900 .word 0x003d0900 + 8003600: 4618 mov r0, r3 + 8003602: 3728 adds r7, #40 ; 0x28 + 8003604: 46bd mov sp, r7 + 8003606: bc90 pop {r4, r7} + 8003608: 4770 bx lr + 800360a: bf00 nop + 800360c: 080088d8 .word 0x080088d8 + 8003610: 40021000 .word 0x40021000 + 8003614: 007a1200 .word 0x007a1200 + 8003618: 003d0900 .word 0x003d0900 -080035e4 : +0800361c : * @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) { - 80035e4: b480 push {r7} - 80035e6: af00 add r7, sp, #0 + 800361c: b480 push {r7} + 800361e: af00 add r7, sp, #0 return SystemCoreClock; - 80035e8: 4b02 ldr r3, [pc, #8] ; (80035f4 ) - 80035ea: 681b ldr r3, [r3, #0] + 8003620: 4b02 ldr r3, [pc, #8] ; (800362c ) + 8003622: 681b ldr r3, [r3, #0] } - 80035ec: 4618 mov r0, r3 - 80035ee: 46bd mov sp, r7 - 80035f0: bc80 pop {r7} - 80035f2: 4770 bx lr - 80035f4: 20000000 .word 0x20000000 + 8003624: 4618 mov r0, r3 + 8003626: 46bd mov sp, r7 + 8003628: bc80 pop {r7} + 800362a: 4770 bx lr + 800362c: 20000000 .word 0x20000000 -080035f8 : +08003630 : * @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) { - 80035f8: b580 push {r7, lr} - 80035fa: af00 add r7, sp, #0 + 8003630: b580 push {r7, lr} + 8003632: 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]); - 80035fc: f7ff fff2 bl 80035e4 - 8003600: 4602 mov r2, r0 - 8003602: 4b05 ldr r3, [pc, #20] ; (8003618 ) - 8003604: 685b ldr r3, [r3, #4] - 8003606: 0a1b lsrs r3, r3, #8 - 8003608: f003 0307 and.w r3, r3, #7 - 800360c: 4903 ldr r1, [pc, #12] ; (800361c ) - 800360e: 5ccb ldrb r3, [r1, r3] - 8003610: fa22 f303 lsr.w r3, r2, r3 + 8003634: f7ff fff2 bl 800361c + 8003638: 4602 mov r2, r0 + 800363a: 4b05 ldr r3, [pc, #20] ; (8003650 ) + 800363c: 685b ldr r3, [r3, #4] + 800363e: 0a1b lsrs r3, r3, #8 + 8003640: f003 0307 and.w r3, r3, #7 + 8003644: 4903 ldr r1, [pc, #12] ; (8003654 ) + 8003646: 5ccb ldrb r3, [r1, r3] + 8003648: fa22 f303 lsr.w r3, r2, r3 } - 8003614: 4618 mov r0, r3 - 8003616: bd80 pop {r7, pc} - 8003618: 40021000 .word 0x40021000 - 800361c: 080086ec .word 0x080086ec + 800364c: 4618 mov r0, r3 + 800364e: bd80 pop {r7, pc} + 8003650: 40021000 .word 0x40021000 + 8003654: 080089dc .word 0x080089dc -08003620 : +08003658 : * @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) { - 8003620: b480 push {r7} - 8003622: b085 sub sp, #20 - 8003624: af00 add r7, sp, #0 - 8003626: 6078 str r0, [r7, #4] + 8003658: b480 push {r7} + 800365a: b085 sub sp, #20 + 800365c: af00 add r7, sp, #0 + 800365e: 6078 str r0, [r7, #4] __IO uint32_t Delay = mdelay * (SystemCoreClock / 8U / 1000U); - 8003628: 4b0a ldr r3, [pc, #40] ; (8003654 ) - 800362a: 681b ldr r3, [r3, #0] - 800362c: 4a0a ldr r2, [pc, #40] ; (8003658 ) - 800362e: fba2 2303 umull r2, r3, r2, r3 - 8003632: 0a5b lsrs r3, r3, #9 - 8003634: 687a ldr r2, [r7, #4] - 8003636: fb02 f303 mul.w r3, r2, r3 - 800363a: 60fb str r3, [r7, #12] + 8003660: 4b0a ldr r3, [pc, #40] ; (800368c ) + 8003662: 681b ldr r3, [r3, #0] + 8003664: 4a0a ldr r2, [pc, #40] ; (8003690 ) + 8003666: fba2 2303 umull r2, r3, r2, r3 + 800366a: 0a5b lsrs r3, r3, #9 + 800366c: 687a ldr r2, [r7, #4] + 800366e: fb02 f303 mul.w r3, r2, r3 + 8003672: 60fb str r3, [r7, #12] do { __NOP(); - 800363c: bf00 nop + 8003674: bf00 nop } while (Delay --); - 800363e: 68fb ldr r3, [r7, #12] - 8003640: 1e5a subs r2, r3, #1 - 8003642: 60fa str r2, [r7, #12] - 8003644: 2b00 cmp r3, #0 - 8003646: d1f9 bne.n 800363c + 8003676: 68fb ldr r3, [r7, #12] + 8003678: 1e5a subs r2, r3, #1 + 800367a: 60fa str r2, [r7, #12] + 800367c: 2b00 cmp r3, #0 + 800367e: d1f9 bne.n 8003674 } - 8003648: bf00 nop - 800364a: bf00 nop - 800364c: 3714 adds r7, #20 - 800364e: 46bd mov sp, r7 - 8003650: bc80 pop {r7} - 8003652: 4770 bx lr - 8003654: 20000000 .word 0x20000000 - 8003658: 10624dd3 .word 0x10624dd3 + 8003680: bf00 nop + 8003682: bf00 nop + 8003684: 3714 adds r7, #20 + 8003686: 46bd mov sp, r7 + 8003688: bc80 pop {r7} + 800368a: 4770 bx lr + 800368c: 20000000 .word 0x20000000 + 8003690: 10624dd3 .word 0x10624dd3 -0800365c : +08003694 : * @param ExtTiming Pointer to SRAM extended mode timing structure * @retval HAL status */ HAL_StatusTypeDef HAL_SRAM_Init(SRAM_HandleTypeDef *hsram, FSMC_NORSRAM_TimingTypeDef *Timing, FSMC_NORSRAM_TimingTypeDef *ExtTiming) { - 800365c: b580 push {r7, lr} - 800365e: b084 sub sp, #16 - 8003660: af00 add r7, sp, #0 - 8003662: 60f8 str r0, [r7, #12] - 8003664: 60b9 str r1, [r7, #8] - 8003666: 607a str r2, [r7, #4] + 8003694: b580 push {r7, lr} + 8003696: b084 sub sp, #16 + 8003698: af00 add r7, sp, #0 + 800369a: 60f8 str r0, [r7, #12] + 800369c: 60b9 str r1, [r7, #8] + 800369e: 607a str r2, [r7, #4] /* Check the SRAM handle parameter */ if ((hsram == NULL) || (hsram->Init.BurstAccessMode == FSMC_BURST_ACCESS_MODE_ENABLE)) - 8003668: 68fb ldr r3, [r7, #12] - 800366a: 2b00 cmp r3, #0 - 800366c: d004 beq.n 8003678 - 800366e: 68fb ldr r3, [r7, #12] - 8003670: 699b ldr r3, [r3, #24] - 8003672: f5b3 7f80 cmp.w r3, #256 ; 0x100 - 8003676: d101 bne.n 800367c + 80036a0: 68fb ldr r3, [r7, #12] + 80036a2: 2b00 cmp r3, #0 + 80036a4: d004 beq.n 80036b0 + 80036a6: 68fb ldr r3, [r7, #12] + 80036a8: 699b ldr r3, [r3, #24] + 80036aa: f5b3 7f80 cmp.w r3, #256 ; 0x100 + 80036ae: d101 bne.n 80036b4 { return HAL_ERROR; - 8003678: 2301 movs r3, #1 - 800367a: e038 b.n 80036ee + 80036b0: 2301 movs r3, #1 + 80036b2: e038 b.n 8003726 } if (hsram->State == HAL_SRAM_STATE_RESET) - 800367c: 68fb ldr r3, [r7, #12] - 800367e: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 - 8003682: b2db uxtb r3, r3 - 8003684: 2b00 cmp r3, #0 - 8003686: d106 bne.n 8003696 + 80036b4: 68fb ldr r3, [r7, #12] + 80036b6: f893 3041 ldrb.w r3, [r3, #65] ; 0x41 + 80036ba: b2db uxtb r3, r3 + 80036bc: 2b00 cmp r3, #0 + 80036be: d106 bne.n 80036ce { /* Allocate lock resource and initialize it */ hsram->Lock = HAL_UNLOCKED; - 8003688: 68fb ldr r3, [r7, #12] - 800368a: 2200 movs r2, #0 - 800368c: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 80036c0: 68fb ldr r3, [r7, #12] + 80036c2: 2200 movs r2, #0 + 80036c4: f883 2040 strb.w r2, [r3, #64] ; 0x40 /* Init the low level hardware */ hsram->MspInitCallback(hsram); #else /* Initialize the low level hardware (MSP) */ HAL_SRAM_MspInit(hsram); - 8003690: 68f8 ldr r0, [r7, #12] - 8003692: f7fd ff91 bl 80015b8 + 80036c8: 68f8 ldr r0, [r7, #12] + 80036ca: f7fd ff91 bl 80015f0 #endif /* USE_HAL_SRAM_REGISTER_CALLBACKS */ } /* Initialize SRAM control Interface */ (void)FSMC_NORSRAM_Init(hsram->Instance, &(hsram->Init)); - 8003696: 68fb ldr r3, [r7, #12] - 8003698: 681a ldr r2, [r3, #0] - 800369a: 68fb ldr r3, [r7, #12] - 800369c: 3308 adds r3, #8 - 800369e: 4619 mov r1, r3 - 80036a0: 4610 mov r0, r2 - 80036a2: f000 f829 bl 80036f8 + 80036ce: 68fb ldr r3, [r7, #12] + 80036d0: 681a ldr r2, [r3, #0] + 80036d2: 68fb ldr r3, [r7, #12] + 80036d4: 3308 adds r3, #8 + 80036d6: 4619 mov r1, r3 + 80036d8: 4610 mov r0, r2 + 80036da: f000 f829 bl 8003730 /* Initialize SRAM timing Interface */ (void)FSMC_NORSRAM_Timing_Init(hsram->Instance, Timing, hsram->Init.NSBank); - 80036a6: 68fb ldr r3, [r7, #12] - 80036a8: 6818 ldr r0, [r3, #0] - 80036aa: 68fb ldr r3, [r7, #12] - 80036ac: 689b ldr r3, [r3, #8] - 80036ae: 461a mov r2, r3 - 80036b0: 68b9 ldr r1, [r7, #8] - 80036b2: f000 f88b bl 80037cc + 80036de: 68fb ldr r3, [r7, #12] + 80036e0: 6818 ldr r0, [r3, #0] + 80036e2: 68fb ldr r3, [r7, #12] + 80036e4: 689b ldr r3, [r3, #8] + 80036e6: 461a mov r2, r3 + 80036e8: 68b9 ldr r1, [r7, #8] + 80036ea: f000 f88b bl 8003804 /* Initialize SRAM extended mode timing Interface */ (void)FSMC_NORSRAM_Extended_Timing_Init(hsram->Extended, ExtTiming, hsram->Init.NSBank, - 80036b6: 68fb ldr r3, [r7, #12] - 80036b8: 6858 ldr r0, [r3, #4] - 80036ba: 68fb ldr r3, [r7, #12] - 80036bc: 689a ldr r2, [r3, #8] - 80036be: 68fb ldr r3, [r7, #12] - 80036c0: 6b1b ldr r3, [r3, #48] ; 0x30 - 80036c2: 6879 ldr r1, [r7, #4] - 80036c4: f000 f8b6 bl 8003834 + 80036ee: 68fb ldr r3, [r7, #12] + 80036f0: 6858 ldr r0, [r3, #4] + 80036f2: 68fb ldr r3, [r7, #12] + 80036f4: 689a ldr r2, [r3, #8] + 80036f6: 68fb ldr r3, [r7, #12] + 80036f8: 6b1b ldr r3, [r3, #48] ; 0x30 + 80036fa: 6879 ldr r1, [r7, #4] + 80036fc: f000 f8b6 bl 800386c hsram->Init.ExtendedMode); /* Enable the NORSRAM device */ __FSMC_NORSRAM_ENABLE(hsram->Instance, hsram->Init.NSBank); - 80036c8: 68fb ldr r3, [r7, #12] - 80036ca: 681b ldr r3, [r3, #0] - 80036cc: 68fa ldr r2, [r7, #12] - 80036ce: 6892 ldr r2, [r2, #8] - 80036d0: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 80036d4: 68fb ldr r3, [r7, #12] - 80036d6: 681b ldr r3, [r3, #0] - 80036d8: 68fa ldr r2, [r7, #12] - 80036da: 6892 ldr r2, [r2, #8] - 80036dc: f041 0101 orr.w r1, r1, #1 - 80036e0: f843 1022 str.w r1, [r3, r2, lsl #2] + 8003700: 68fb ldr r3, [r7, #12] + 8003702: 681b ldr r3, [r3, #0] + 8003704: 68fa ldr r2, [r7, #12] + 8003706: 6892 ldr r2, [r2, #8] + 8003708: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 800370c: 68fb ldr r3, [r7, #12] + 800370e: 681b ldr r3, [r3, #0] + 8003710: 68fa ldr r2, [r7, #12] + 8003712: 6892 ldr r2, [r2, #8] + 8003714: f041 0101 orr.w r1, r1, #1 + 8003718: f843 1022 str.w r1, [r3, r2, lsl #2] /* Initialize the SRAM controller state */ hsram->State = HAL_SRAM_STATE_READY; - 80036e4: 68fb ldr r3, [r7, #12] - 80036e6: 2201 movs r2, #1 - 80036e8: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 800371c: 68fb ldr r3, [r7, #12] + 800371e: 2201 movs r2, #1 + 8003720: f883 2041 strb.w r2, [r3, #65] ; 0x41 return HAL_OK; - 80036ec: 2300 movs r3, #0 + 8003724: 2300 movs r3, #0 } - 80036ee: 4618 mov r0, r3 - 80036f0: 3710 adds r7, #16 - 80036f2: 46bd mov sp, r7 - 80036f4: bd80 pop {r7, pc} + 8003726: 4618 mov r0, r3 + 8003728: 3710 adds r7, #16 + 800372a: 46bd mov sp, r7 + 800372c: bd80 pop {r7, pc} ... -080036f8 : +08003730 : * @param Init Pointer to NORSRAM Initialization structure * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Init(FSMC_NORSRAM_TypeDef *Device, FSMC_NORSRAM_InitTypeDef *Init) { - 80036f8: b480 push {r7} - 80036fa: b087 sub sp, #28 - 80036fc: af00 add r7, sp, #0 - 80036fe: 6078 str r0, [r7, #4] - 8003700: 6039 str r1, [r7, #0] + 8003730: b480 push {r7} + 8003732: b087 sub sp, #28 + 8003734: af00 add r7, sp, #0 + 8003736: 6078 str r0, [r7, #4] + 8003738: 6039 str r1, [r7, #0] assert_param(IS_FSMC_ASYNWAIT(Init->AsynchronousWait)); assert_param(IS_FSMC_WRITE_BURST(Init->WriteBurst)); assert_param(IS_FSMC_PAGESIZE(Init->PageSize)); /* Disable NORSRAM Device */ __FSMC_NORSRAM_DISABLE(Device, Init->NSBank); - 8003702: 683b ldr r3, [r7, #0] - 8003704: 681a ldr r2, [r3, #0] - 8003706: 687b ldr r3, [r7, #4] - 8003708: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800370c: 683a ldr r2, [r7, #0] - 800370e: 6812 ldr r2, [r2, #0] - 8003710: f023 0101 bic.w r1, r3, #1 - 8003714: 687b ldr r3, [r7, #4] - 8003716: f843 1022 str.w r1, [r3, r2, lsl #2] + 800373a: 683b ldr r3, [r7, #0] + 800373c: 681a ldr r2, [r3, #0] + 800373e: 687b ldr r3, [r7, #4] + 8003740: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8003744: 683a ldr r2, [r7, #0] + 8003746: 6812 ldr r2, [r2, #0] + 8003748: f023 0101 bic.w r1, r3, #1 + 800374c: 687b ldr r3, [r7, #4] + 800374e: f843 1022 str.w r1, [r3, r2, lsl #2] /* Set NORSRAM device control parameters */ if (Init->MemoryType == FSMC_MEMORY_TYPE_NOR) - 800371a: 683b ldr r3, [r7, #0] - 800371c: 689b ldr r3, [r3, #8] - 800371e: 2b08 cmp r3, #8 - 8003720: d102 bne.n 8003728 + 8003752: 683b ldr r3, [r7, #0] + 8003754: 689b ldr r3, [r3, #8] + 8003756: 2b08 cmp r3, #8 + 8003758: d102 bne.n 8003760 { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_ENABLE; - 8003722: 2340 movs r3, #64 ; 0x40 - 8003724: 617b str r3, [r7, #20] - 8003726: e001 b.n 800372c + 800375a: 2340 movs r3, #64 ; 0x40 + 800375c: 617b str r3, [r7, #20] + 800375e: e001 b.n 8003764 } else { flashaccess = FSMC_NORSRAM_FLASH_ACCESS_DISABLE; - 8003728: 2300 movs r3, #0 - 800372a: 617b str r3, [r7, #20] + 8003760: 2300 movs r3, #0 + 8003762: 617b str r3, [r7, #20] } btcr_reg = (flashaccess | \ Init->DataAddressMux | \ - 800372c: 683b ldr r3, [r7, #0] - 800372e: 685a ldr r2, [r3, #4] - btcr_reg = (flashaccess | \ - 8003730: 697b ldr r3, [r7, #20] - 8003732: 431a orrs r2, r3 - Init->MemoryType | \ - 8003734: 683b ldr r3, [r7, #0] - 8003736: 689b ldr r3, [r3, #8] - Init->DataAddressMux | \ - 8003738: 431a orrs r2, r3 - Init->MemoryDataWidth | \ - 800373a: 683b ldr r3, [r7, #0] - 800373c: 68db ldr r3, [r3, #12] - Init->MemoryType | \ - 800373e: 431a orrs r2, r3 - Init->BurstAccessMode | \ - 8003740: 683b ldr r3, [r7, #0] - 8003742: 691b ldr r3, [r3, #16] - Init->MemoryDataWidth | \ - 8003744: 431a orrs r2, r3 - Init->WaitSignalPolarity | \ - 8003746: 683b ldr r3, [r7, #0] - 8003748: 695b ldr r3, [r3, #20] - Init->BurstAccessMode | \ - 800374a: 431a orrs r2, r3 - Init->WaitSignalActive | \ - 800374c: 683b ldr r3, [r7, #0] - 800374e: 69db ldr r3, [r3, #28] - Init->WaitSignalPolarity | \ - 8003750: 431a orrs r2, r3 - Init->WriteOperation | \ - 8003752: 683b ldr r3, [r7, #0] - 8003754: 6a1b ldr r3, [r3, #32] - Init->WaitSignalActive | \ - 8003756: 431a orrs r2, r3 - Init->WaitSignal | \ - 8003758: 683b ldr r3, [r7, #0] - 800375a: 6a5b ldr r3, [r3, #36] ; 0x24 - Init->WriteOperation | \ - 800375c: 431a orrs r2, r3 - Init->ExtendedMode | \ - 800375e: 683b ldr r3, [r7, #0] - 8003760: 6a9b ldr r3, [r3, #40] ; 0x28 - Init->WaitSignal | \ - 8003762: 431a orrs r2, r3 - Init->AsynchronousWait | \ 8003764: 683b ldr r3, [r7, #0] - 8003766: 6adb ldr r3, [r3, #44] ; 0x2c - Init->ExtendedMode | \ - 8003768: 431a orrs r2, r3 - Init->WriteBurst); - 800376a: 683b ldr r3, [r7, #0] - 800376c: 6b1b ldr r3, [r3, #48] ; 0x30 + 8003766: 685a ldr r2, [r3, #4] btcr_reg = (flashaccess | \ - 800376e: 4313 orrs r3, r2 - 8003770: 613b str r3, [r7, #16] + 8003768: 697b ldr r3, [r7, #20] + 800376a: 431a orrs r2, r3 + Init->MemoryType | \ + 800376c: 683b ldr r3, [r7, #0] + 800376e: 689b ldr r3, [r3, #8] + Init->DataAddressMux | \ + 8003770: 431a orrs r2, r3 + Init->MemoryDataWidth | \ + 8003772: 683b ldr r3, [r7, #0] + 8003774: 68db ldr r3, [r3, #12] + Init->MemoryType | \ + 8003776: 431a orrs r2, r3 + Init->BurstAccessMode | \ + 8003778: 683b ldr r3, [r7, #0] + 800377a: 691b ldr r3, [r3, #16] + Init->MemoryDataWidth | \ + 800377c: 431a orrs r2, r3 + Init->WaitSignalPolarity | \ + 800377e: 683b ldr r3, [r7, #0] + 8003780: 695b ldr r3, [r3, #20] + Init->BurstAccessMode | \ + 8003782: 431a orrs r2, r3 + Init->WaitSignalActive | \ + 8003784: 683b ldr r3, [r7, #0] + 8003786: 69db ldr r3, [r3, #28] + Init->WaitSignalPolarity | \ + 8003788: 431a orrs r2, r3 + Init->WriteOperation | \ + 800378a: 683b ldr r3, [r7, #0] + 800378c: 6a1b ldr r3, [r3, #32] + Init->WaitSignalActive | \ + 800378e: 431a orrs r2, r3 + Init->WaitSignal | \ + 8003790: 683b ldr r3, [r7, #0] + 8003792: 6a5b ldr r3, [r3, #36] ; 0x24 + Init->WriteOperation | \ + 8003794: 431a orrs r2, r3 + Init->ExtendedMode | \ + 8003796: 683b ldr r3, [r7, #0] + 8003798: 6a9b ldr r3, [r3, #40] ; 0x28 + Init->WaitSignal | \ + 800379a: 431a orrs r2, r3 + Init->AsynchronousWait | \ + 800379c: 683b ldr r3, [r7, #0] + 800379e: 6adb ldr r3, [r3, #44] ; 0x2c + Init->ExtendedMode | \ + 80037a0: 431a orrs r2, r3 + Init->WriteBurst); + 80037a2: 683b ldr r3, [r7, #0] + 80037a4: 6b1b ldr r3, [r3, #48] ; 0x30 + btcr_reg = (flashaccess | \ + 80037a6: 4313 orrs r3, r2 + 80037a8: 613b str r3, [r7, #16] btcr_reg |= Init->WrapMode; - 8003772: 683b ldr r3, [r7, #0] - 8003774: 699b ldr r3, [r3, #24] - 8003776: 693a ldr r2, [r7, #16] - 8003778: 4313 orrs r3, r2 - 800377a: 613b str r3, [r7, #16] + 80037aa: 683b ldr r3, [r7, #0] + 80037ac: 699b ldr r3, [r3, #24] + 80037ae: 693a ldr r2, [r7, #16] + 80037b0: 4313 orrs r3, r2 + 80037b2: 613b str r3, [r7, #16] btcr_reg |= Init->PageSize; - 800377c: 683b ldr r3, [r7, #0] - 800377e: 6b5b ldr r3, [r3, #52] ; 0x34 - 8003780: 693a ldr r2, [r7, #16] - 8003782: 4313 orrs r3, r2 - 8003784: 613b str r3, [r7, #16] + 80037b4: 683b ldr r3, [r7, #0] + 80037b6: 6b5b ldr r3, [r3, #52] ; 0x34 + 80037b8: 693a ldr r2, [r7, #16] + 80037ba: 4313 orrs r3, r2 + 80037bc: 613b str r3, [r7, #16] mask = (FSMC_BCRx_MBKEN | - 8003786: 4b10 ldr r3, [pc, #64] ; (80037c8 ) - 8003788: 60fb str r3, [r7, #12] + 80037be: 4b10 ldr r3, [pc, #64] ; (8003800 ) + 80037c0: 60fb str r3, [r7, #12] FSMC_BCRx_WAITEN | FSMC_BCRx_EXTMOD | FSMC_BCRx_ASYNCWAIT | FSMC_BCRx_CBURSTRW); mask |= FSMC_BCRx_WRAPMOD; - 800378a: 68fb ldr r3, [r7, #12] - 800378c: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 8003790: 60fb str r3, [r7, #12] + 80037c2: 68fb ldr r3, [r7, #12] + 80037c4: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 80037c8: 60fb str r3, [r7, #12] mask |= 0x00070000U; /* CPSIZE to be defined in CMSIS file */ - 8003792: 68fb ldr r3, [r7, #12] - 8003794: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 - 8003798: 60fb str r3, [r7, #12] + 80037ca: 68fb ldr r3, [r7, #12] + 80037cc: f443 23e0 orr.w r3, r3, #458752 ; 0x70000 + 80037d0: 60fb str r3, [r7, #12] MODIFY_REG(Device->BTCR[Init->NSBank], mask, btcr_reg); - 800379a: 683b ldr r3, [r7, #0] - 800379c: 681a ldr r2, [r3, #0] - 800379e: 687b ldr r3, [r7, #4] - 80037a0: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 80037a4: 68fb ldr r3, [r7, #12] - 80037a6: 43db mvns r3, r3 - 80037a8: ea02 0103 and.w r1, r2, r3 - 80037ac: 683b ldr r3, [r7, #0] - 80037ae: 681a ldr r2, [r3, #0] - 80037b0: 693b ldr r3, [r7, #16] - 80037b2: 4319 orrs r1, r3 - 80037b4: 687b ldr r3, [r7, #4] - 80037b6: f843 1022 str.w r1, [r3, r2, lsl #2] + 80037d2: 683b ldr r3, [r7, #0] + 80037d4: 681a ldr r2, [r3, #0] + 80037d6: 687b ldr r3, [r7, #4] + 80037d8: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 80037dc: 68fb ldr r3, [r7, #12] + 80037de: 43db mvns r3, r3 + 80037e0: ea02 0103 and.w r1, r2, r3 + 80037e4: 683b ldr r3, [r7, #0] + 80037e6: 681a ldr r2, [r3, #0] + 80037e8: 693b ldr r3, [r7, #16] + 80037ea: 4319 orrs r1, r3 + 80037ec: 687b ldr r3, [r7, #4] + 80037ee: f843 1022 str.w r1, [r3, r2, lsl #2] return HAL_OK; - 80037ba: 2300 movs r3, #0 + 80037f2: 2300 movs r3, #0 } - 80037bc: 4618 mov r0, r3 - 80037be: 371c adds r7, #28 - 80037c0: 46bd mov sp, r7 - 80037c2: bc80 pop {r7} - 80037c4: 4770 bx lr - 80037c6: bf00 nop - 80037c8: 0008fb7f .word 0x0008fb7f + 80037f4: 4618 mov r0, r3 + 80037f6: 371c adds r7, #28 + 80037f8: 46bd mov sp, r7 + 80037fa: bc80 pop {r7} + 80037fc: 4770 bx lr + 80037fe: bf00 nop + 8003800: 0008fb7f .word 0x0008fb7f -080037cc : +08003804 : * @param Bank NORSRAM bank number * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Timing_Init(FSMC_NORSRAM_TypeDef *Device, FSMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank) { - 80037cc: b480 push {r7} - 80037ce: b085 sub sp, #20 - 80037d0: af00 add r7, sp, #0 - 80037d2: 60f8 str r0, [r7, #12] - 80037d4: 60b9 str r1, [r7, #8] - 80037d6: 607a str r2, [r7, #4] + 8003804: b480 push {r7} + 8003806: b085 sub sp, #20 + 8003808: af00 add r7, sp, #0 + 800380a: 60f8 str r0, [r7, #12] + 800380c: 60b9 str r1, [r7, #8] + 800380e: 607a str r2, [r7, #4] assert_param(IS_FSMC_DATA_LATENCY(Timing->DataLatency)); assert_param(IS_FSMC_ACCESS_MODE(Timing->AccessMode)); assert_param(IS_FSMC_NORSRAM_BANK(Bank)); /* Set FSMC_NORSRAM device timing parameters */ MODIFY_REG(Device->BTCR[Bank + 1U], BTR_CLEAR_MASK, (Timing->AddressSetupTime | - 80037d8: 687b ldr r3, [r7, #4] - 80037da: 1c5a adds r2, r3, #1 - 80037dc: 68fb ldr r3, [r7, #12] - 80037de: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80037e2: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 - 80037e6: 68bb ldr r3, [r7, #8] - 80037e8: 681a ldr r2, [r3, #0] - 80037ea: 68bb ldr r3, [r7, #8] - 80037ec: 685b ldr r3, [r3, #4] - 80037ee: 011b lsls r3, r3, #4 - 80037f0: 431a orrs r2, r3 - 80037f2: 68bb ldr r3, [r7, #8] - 80037f4: 689b ldr r3, [r3, #8] - 80037f6: 021b lsls r3, r3, #8 - 80037f8: 431a orrs r2, r3 - 80037fa: 68bb ldr r3, [r7, #8] - 80037fc: 68db ldr r3, [r3, #12] - 80037fe: 041b lsls r3, r3, #16 - 8003800: 431a orrs r2, r3 - 8003802: 68bb ldr r3, [r7, #8] - 8003804: 691b ldr r3, [r3, #16] - 8003806: 3b01 subs r3, #1 - 8003808: 051b lsls r3, r3, #20 - 800380a: 431a orrs r2, r3 - 800380c: 68bb ldr r3, [r7, #8] - 800380e: 695b ldr r3, [r3, #20] - 8003810: 3b02 subs r3, #2 - 8003812: 061b lsls r3, r3, #24 - 8003814: 431a orrs r2, r3 - 8003816: 68bb ldr r3, [r7, #8] - 8003818: 699b ldr r3, [r3, #24] - 800381a: 4313 orrs r3, r2 - 800381c: 687a ldr r2, [r7, #4] - 800381e: 3201 adds r2, #1 - 8003820: 4319 orrs r1, r3 - 8003822: 68fb ldr r3, [r7, #12] - 8003824: f843 1022 str.w r1, [r3, r2, lsl #2] + 8003810: 687b ldr r3, [r7, #4] + 8003812: 1c5a adds r2, r3, #1 + 8003814: 68fb ldr r3, [r7, #12] + 8003816: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800381a: f003 4140 and.w r1, r3, #3221225472 ; 0xc0000000 + 800381e: 68bb ldr r3, [r7, #8] + 8003820: 681a ldr r2, [r3, #0] + 8003822: 68bb ldr r3, [r7, #8] + 8003824: 685b ldr r3, [r3, #4] + 8003826: 011b lsls r3, r3, #4 + 8003828: 431a orrs r2, r3 + 800382a: 68bb ldr r3, [r7, #8] + 800382c: 689b ldr r3, [r3, #8] + 800382e: 021b lsls r3, r3, #8 + 8003830: 431a orrs r2, r3 + 8003832: 68bb ldr r3, [r7, #8] + 8003834: 68db ldr r3, [r3, #12] + 8003836: 041b lsls r3, r3, #16 + 8003838: 431a orrs r2, r3 + 800383a: 68bb ldr r3, [r7, #8] + 800383c: 691b ldr r3, [r3, #16] + 800383e: 3b01 subs r3, #1 + 8003840: 051b lsls r3, r3, #20 + 8003842: 431a orrs r2, r3 + 8003844: 68bb ldr r3, [r7, #8] + 8003846: 695b ldr r3, [r3, #20] + 8003848: 3b02 subs r3, #2 + 800384a: 061b lsls r3, r3, #24 + 800384c: 431a orrs r2, r3 + 800384e: 68bb ldr r3, [r7, #8] + 8003850: 699b ldr r3, [r3, #24] + 8003852: 4313 orrs r3, r2 + 8003854: 687a ldr r2, [r7, #4] + 8003856: 3201 adds r2, #1 + 8003858: 4319 orrs r1, r3 + 800385a: 68fb ldr r3, [r7, #12] + 800385c: f843 1022 str.w r1, [r3, r2, lsl #2] ((Timing->BusTurnAroundDuration) << FSMC_BTRx_BUSTURN_Pos) | (((Timing->CLKDivision) - 1U) << FSMC_BTRx_CLKDIV_Pos) | (((Timing->DataLatency) - 2U) << FSMC_BTRx_DATLAT_Pos) | (Timing->AccessMode))); return HAL_OK; - 8003828: 2300 movs r3, #0 + 8003860: 2300 movs r3, #0 } - 800382a: 4618 mov r0, r3 - 800382c: 3714 adds r7, #20 - 800382e: 46bd mov sp, r7 - 8003830: bc80 pop {r7} - 8003832: 4770 bx lr + 8003862: 4618 mov r0, r3 + 8003864: 3714 adds r7, #20 + 8003866: 46bd mov sp, r7 + 8003868: bc80 pop {r7} + 800386a: 4770 bx lr -08003834 : +0800386c : * @retval HAL status */ HAL_StatusTypeDef FSMC_NORSRAM_Extended_Timing_Init(FSMC_NORSRAM_EXTENDED_TypeDef *Device, FSMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank, uint32_t ExtendedMode) { - 8003834: b480 push {r7} - 8003836: b085 sub sp, #20 - 8003838: af00 add r7, sp, #0 - 800383a: 60f8 str r0, [r7, #12] - 800383c: 60b9 str r1, [r7, #8] - 800383e: 607a str r2, [r7, #4] - 8003840: 603b str r3, [r7, #0] + 800386c: b480 push {r7} + 800386e: b085 sub sp, #20 + 8003870: af00 add r7, sp, #0 + 8003872: 60f8 str r0, [r7, #12] + 8003874: 60b9 str r1, [r7, #8] + 8003876: 607a str r2, [r7, #4] + 8003878: 603b str r3, [r7, #0] /* Check the parameters */ assert_param(IS_FSMC_EXTENDED_MODE(ExtendedMode)); /* Set NORSRAM device timing register for write configuration, if extended mode is used */ if (ExtendedMode == FSMC_EXTENDED_MODE_ENABLE) - 8003842: 683b ldr r3, [r7, #0] - 8003844: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 - 8003848: d11d bne.n 8003886 + 800387a: 683b ldr r3, [r7, #0] + 800387c: f5b3 4f80 cmp.w r3, #16384 ; 0x4000 + 8003880: d11d bne.n 80038be assert_param(IS_FSMC_ACCESS_MODE(Timing->AccessMode)); assert_param(IS_FSMC_NORSRAM_BANK(Bank)); /* Set NORSRAM device timing register for write configuration, if extended mode is used */ #if defined(FSMC_BWTRx_BUSTURN) MODIFY_REG(Device->BWTR[Bank], BWTR_CLEAR_MASK, (Timing->AddressSetupTime | - 800384a: 68fb ldr r3, [r7, #12] - 800384c: 687a ldr r2, [r7, #4] - 800384e: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 8003852: 4b13 ldr r3, [pc, #76] ; (80038a0 ) - 8003854: 4013 ands r3, r2 - 8003856: 68ba ldr r2, [r7, #8] - 8003858: 6811 ldr r1, [r2, #0] - 800385a: 68ba ldr r2, [r7, #8] - 800385c: 6852 ldr r2, [r2, #4] - 800385e: 0112 lsls r2, r2, #4 - 8003860: 4311 orrs r1, r2 - 8003862: 68ba ldr r2, [r7, #8] - 8003864: 6892 ldr r2, [r2, #8] - 8003866: 0212 lsls r2, r2, #8 - 8003868: 4311 orrs r1, r2 - 800386a: 68ba ldr r2, [r7, #8] - 800386c: 6992 ldr r2, [r2, #24] - 800386e: 4311 orrs r1, r2 - 8003870: 68ba ldr r2, [r7, #8] - 8003872: 68d2 ldr r2, [r2, #12] - 8003874: 0412 lsls r2, r2, #16 - 8003876: 430a orrs r2, r1 - 8003878: ea43 0102 orr.w r1, r3, r2 - 800387c: 68fb ldr r3, [r7, #12] - 800387e: 687a ldr r2, [r7, #4] - 8003880: f843 1022 str.w r1, [r3, r2, lsl #2] - 8003884: e005 b.n 8003892 + 8003882: 68fb ldr r3, [r7, #12] + 8003884: 687a ldr r2, [r7, #4] + 8003886: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 800388a: 4b13 ldr r3, [pc, #76] ; (80038d8 ) + 800388c: 4013 ands r3, r2 + 800388e: 68ba ldr r2, [r7, #8] + 8003890: 6811 ldr r1, [r2, #0] + 8003892: 68ba ldr r2, [r7, #8] + 8003894: 6852 ldr r2, [r2, #4] + 8003896: 0112 lsls r2, r2, #4 + 8003898: 4311 orrs r1, r2 + 800389a: 68ba ldr r2, [r7, #8] + 800389c: 6892 ldr r2, [r2, #8] + 800389e: 0212 lsls r2, r2, #8 + 80038a0: 4311 orrs r1, r2 + 80038a2: 68ba ldr r2, [r7, #8] + 80038a4: 6992 ldr r2, [r2, #24] + 80038a6: 4311 orrs r1, r2 + 80038a8: 68ba ldr r2, [r7, #8] + 80038aa: 68d2 ldr r2, [r2, #12] + 80038ac: 0412 lsls r2, r2, #16 + 80038ae: 430a orrs r2, r1 + 80038b0: ea43 0102 orr.w r1, r3, r2 + 80038b4: 68fb ldr r3, [r7, #12] + 80038b6: 687a ldr r2, [r7, #4] + 80038b8: f843 1022 str.w r1, [r3, r2, lsl #2] + 80038bc: e005 b.n 80038ca (((Timing->DataLatency) - 2U) << FSMC_BWTRx_DATLAT_Pos))); #endif /* FSMC_BWTRx_BUSTURN */ } else { Device->BWTR[Bank] = 0x0FFFFFFFU; - 8003886: 68fb ldr r3, [r7, #12] - 8003888: 687a ldr r2, [r7, #4] - 800388a: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 - 800388e: f843 1022 str.w r1, [r3, r2, lsl #2] + 80038be: 68fb ldr r3, [r7, #12] + 80038c0: 687a ldr r2, [r7, #4] + 80038c2: f06f 4170 mvn.w r1, #4026531840 ; 0xf0000000 + 80038c6: f843 1022 str.w r1, [r3, r2, lsl #2] } return HAL_OK; - 8003892: 2300 movs r3, #0 + 80038ca: 2300 movs r3, #0 } - 8003894: 4618 mov r0, r3 - 8003896: 3714 adds r7, #20 - 8003898: 46bd mov sp, r7 - 800389a: bc80 pop {r7} - 800389c: 4770 bx lr - 800389e: bf00 nop - 80038a0: cff00000 .word 0xcff00000 + 80038cc: 4618 mov r0, r3 + 80038ce: 3714 adds r7, #20 + 80038d0: 46bd mov sp, r7 + 80038d2: bc80 pop {r7} + 80038d4: 4770 bx lr + 80038d6: bf00 nop + 80038d8: cff00000 .word 0xcff00000 -080038a4 : +080038dc : _lcd_dev lcddev; //管理LCD重要参数 //**************************************************几种快速接口 //写寄存器函数 //regval:寄存器值 void LCD_WR_REG(uint16_t regval) { - 80038a4: b480 push {r7} - 80038a6: b083 sub sp, #12 - 80038a8: af00 add r7, sp, #0 - 80038aa: 4603 mov r3, r0 - 80038ac: 80fb strh r3, [r7, #6] + 80038dc: b480 push {r7} + 80038de: b083 sub sp, #12 + 80038e0: af00 add r7, sp, #0 + 80038e2: 4603 mov r3, r0 + 80038e4: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=regval;//写入要写的寄存器序号 - 80038ae: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 80038b2: 88fb ldrh r3, [r7, #6] - 80038b4: 8013 strh r3, [r2, #0] + 80038e6: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 80038ea: 88fb ldrh r3, [r7, #6] + 80038ec: 8013 strh r3, [r2, #0] } - 80038b6: bf00 nop - 80038b8: 370c adds r7, #12 - 80038ba: 46bd mov sp, r7 - 80038bc: bc80 pop {r7} - 80038be: 4770 bx lr + 80038ee: bf00 nop + 80038f0: 370c adds r7, #12 + 80038f2: 46bd mov sp, r7 + 80038f4: bc80 pop {r7} + 80038f6: 4770 bx lr -080038c0 : +080038f8 : //写LCD数据 //data:要写入的值 void LCD_WR_DATA(uint16_t data) { - 80038c0: b480 push {r7} - 80038c2: b083 sub sp, #12 - 80038c4: af00 add r7, sp, #0 - 80038c6: 4603 mov r3, r0 - 80038c8: 80fb strh r3, [r7, #6] + 80038f8: b480 push {r7} + 80038fa: b083 sub sp, #12 + 80038fc: af00 add r7, sp, #0 + 80038fe: 4603 mov r3, r0 + 8003900: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=data; - 80038ca: 4a04 ldr r2, [pc, #16] ; (80038dc ) - 80038cc: 88fb ldrh r3, [r7, #6] - 80038ce: 8013 strh r3, [r2, #0] + 8003902: 4a04 ldr r2, [pc, #16] ; (8003914 ) + 8003904: 88fb ldrh r3, [r7, #6] + 8003906: 8013 strh r3, [r2, #0] } - 80038d0: bf00 nop - 80038d2: 370c adds r7, #12 - 80038d4: 46bd mov sp, r7 - 80038d6: bc80 pop {r7} - 80038d8: 4770 bx lr - 80038da: bf00 nop - 80038dc: 6c000800 .word 0x6c000800 + 8003908: bf00 nop + 800390a: 370c adds r7, #12 + 800390c: 46bd mov sp, r7 + 800390e: bc80 pop {r7} + 8003910: 4770 bx lr + 8003912: bf00 nop + 8003914: 6c000800 .word 0x6c000800 -080038e0 : +08003918 : } //写寄存器 //LCD_Reg:寄存器地址 //LCD_RegValue:要写入的数据 void LCD_WriteReg(uint16_t LCD_Reg, uint16_t LCD_RegValue) { - 80038e0: b480 push {r7} - 80038e2: b083 sub sp, #12 - 80038e4: af00 add r7, sp, #0 - 80038e6: 4603 mov r3, r0 - 80038e8: 460a mov r2, r1 - 80038ea: 80fb strh r3, [r7, #6] - 80038ec: 4613 mov r3, r2 - 80038ee: 80bb strh r3, [r7, #4] + 8003918: b480 push {r7} + 800391a: b083 sub sp, #12 + 800391c: af00 add r7, sp, #0 + 800391e: 4603 mov r3, r0 + 8003920: 460a mov r2, r1 + 8003922: 80fb strh r3, [r7, #6] + 8003924: 4613 mov r3, r2 + 8003926: 80bb strh r3, [r7, #4] LCD_REG_ADDRESS = LCD_Reg; //写入要写的寄存器序号 - 80038f0: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 80038f4: 88fb ldrh r3, [r7, #6] - 80038f6: 8013 strh r3, [r2, #0] + 8003928: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 800392c: 88fb ldrh r3, [r7, #6] + 800392e: 8013 strh r3, [r2, #0] LCD_DATA_ADDRESS = LCD_RegValue;//写入数据 - 80038f8: 4a03 ldr r2, [pc, #12] ; (8003908 ) - 80038fa: 88bb ldrh r3, [r7, #4] - 80038fc: 8013 strh r3, [r2, #0] + 8003930: 4a03 ldr r2, [pc, #12] ; (8003940 ) + 8003932: 88bb ldrh r3, [r7, #4] + 8003934: 8013 strh r3, [r2, #0] } - 80038fe: bf00 nop - 8003900: 370c adds r7, #12 - 8003902: 46bd mov sp, r7 - 8003904: bc80 pop {r7} - 8003906: 4770 bx lr - 8003908: 6c000800 .word 0x6c000800 + 8003936: bf00 nop + 8003938: 370c adds r7, #12 + 800393a: 46bd mov sp, r7 + 800393c: bc80 pop {r7} + 800393e: 4770 bx lr + 8003940: 6c000800 .word 0x6c000800 -0800390c : +08003944 : //读寄存器 //LCD_Reg:寄存器地址 //返回值:读到的数据 uint16_t LCD_ReadReg(uint16_t LCD_Reg) { - 800390c: b480 push {r7} - 800390e: b083 sub sp, #12 - 8003910: af00 add r7, sp, #0 - 8003912: 4603 mov r3, r0 - 8003914: 80fb strh r3, [r7, #6] + 8003944: b480 push {r7} + 8003946: b083 sub sp, #12 + 8003948: af00 add r7, sp, #0 + 800394a: 4603 mov r3, r0 + 800394c: 80fb strh r3, [r7, #6] LCD_REG_ADDRESS=LCD_Reg; //写入要读的寄存器序号 - 8003916: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 - 800391a: 88fb ldrh r3, [r7, #6] - 800391c: 8013 strh r3, [r2, #0] + 800394e: f04f 42d8 mov.w r2, #1811939328 ; 0x6c000000 + 8003952: 88fb ldrh r3, [r7, #6] + 8003954: 8013 strh r3, [r2, #0] //delay_us(5); return LCD_DATA_ADDRESS; //返回读到的值 - 800391e: 4b04 ldr r3, [pc, #16] ; (8003930 ) - 8003920: 881b ldrh r3, [r3, #0] - 8003922: b29b uxth r3, r3 + 8003956: 4b04 ldr r3, [pc, #16] ; (8003968 ) + 8003958: 881b ldrh r3, [r3, #0] + 800395a: b29b uxth r3, r3 } - 8003924: 4618 mov r0, r3 - 8003926: 370c adds r7, #12 - 8003928: 46bd mov sp, r7 - 800392a: bc80 pop {r7} - 800392c: 4770 bx lr - 800392e: bf00 nop - 8003930: 6c000800 .word 0x6c000800 + 800395c: 4618 mov r0, r3 + 800395e: 370c adds r7, #12 + 8003960: 46bd mov sp, r7 + 8003962: bc80 pop {r7} + 8003964: 4770 bx lr + 8003966: bf00 nop + 8003968: 6c000800 .word 0x6c000800 -08003934 : +0800396c : //注意:其他函数可能会受到此函数设置的影响(尤其是9341/6804这两个奇葩), //所以,一般设置为L2R_U2D即可,如果设置为其他扫描方式,可能导致显示不正常. //dir:0~7,代表8个方向(具体定义见lcd.h) //9320/9325/9328/4531/4535/1505/b505/8989/5408/9341/5310等IC已经实际测试 void LCD_Scan_Dir(uint8_t dir) { - 8003934: b580 push {r7, lr} - 8003936: b084 sub sp, #16 - 8003938: af00 add r7, sp, #0 - 800393a: 4603 mov r3, r0 - 800393c: 71fb strb r3, [r7, #7] + 800396c: b580 push {r7, lr} + 800396e: b084 sub sp, #16 + 8003970: af00 add r7, sp, #0 + 8003972: 4603 mov r3, r0 + 8003974: 71fb strb r3, [r7, #7] uint16_t regval=0; - 800393e: 2300 movs r3, #0 - 8003940: 81fb strh r3, [r7, #14] + 8003976: 2300 movs r3, #0 + 8003978: 81fb strh r3, [r7, #14] uint8_t dirreg=0; - 8003942: 2300 movs r3, #0 - 8003944: 737b strb r3, [r7, #13] + 800397a: 2300 movs r3, #0 + 800397c: 737b strb r3, [r7, #13] uint16_t temp; if(lcddev.dir==1&&lcddev.id!=0X6804)//横屏时,对6804不改变扫描方向! - 8003946: 4ba8 ldr r3, [pc, #672] ; (8003be8 ) - 8003948: 799b ldrb r3, [r3, #6] - 800394a: 2b01 cmp r3, #1 - 800394c: d134 bne.n 80039b8 - 800394e: 4ba6 ldr r3, [pc, #664] ; (8003be8 ) - 8003950: 889b ldrh r3, [r3, #4] - 8003952: f646 0204 movw r2, #26628 ; 0x6804 - 8003956: 4293 cmp r3, r2 - 8003958: d02e beq.n 80039b8 + 800397e: 4ba8 ldr r3, [pc, #672] ; (8003c20 ) + 8003980: 799b ldrb r3, [r3, #6] + 8003982: 2b01 cmp r3, #1 + 8003984: d134 bne.n 80039f0 + 8003986: 4ba6 ldr r3, [pc, #664] ; (8003c20 ) + 8003988: 889b ldrh r3, [r3, #4] + 800398a: f646 0204 movw r2, #26628 ; 0x6804 + 800398e: 4293 cmp r3, r2 + 8003990: d02e beq.n 80039f0 { switch(dir)//方向转换 - 800395a: 79fb ldrb r3, [r7, #7] - 800395c: 2b07 cmp r3, #7 - 800395e: d82c bhi.n 80039ba - 8003960: a201 add r2, pc, #4 ; (adr r2, 8003968 ) - 8003962: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8003966: bf00 nop - 8003968: 08003989 .word 0x08003989 - 800396c: 0800398f .word 0x0800398f - 8003970: 08003995 .word 0x08003995 - 8003974: 0800399b .word 0x0800399b - 8003978: 080039a1 .word 0x080039a1 - 800397c: 080039a7 .word 0x080039a7 - 8003980: 080039ad .word 0x080039ad - 8003984: 080039b3 .word 0x080039b3 + 8003992: 79fb ldrb r3, [r7, #7] + 8003994: 2b07 cmp r3, #7 + 8003996: d82c bhi.n 80039f2 + 8003998: a201 add r2, pc, #4 ; (adr r2, 80039a0 ) + 800399a: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800399e: bf00 nop + 80039a0: 080039c1 .word 0x080039c1 + 80039a4: 080039c7 .word 0x080039c7 + 80039a8: 080039cd .word 0x080039cd + 80039ac: 080039d3 .word 0x080039d3 + 80039b0: 080039d9 .word 0x080039d9 + 80039b4: 080039df .word 0x080039df + 80039b8: 080039e5 .word 0x080039e5 + 80039bc: 080039eb .word 0x080039eb { case 0:dir=6;break; - 8003988: 2306 movs r3, #6 - 800398a: 71fb strb r3, [r7, #7] - 800398c: e015 b.n 80039ba + 80039c0: 2306 movs r3, #6 + 80039c2: 71fb strb r3, [r7, #7] + 80039c4: e015 b.n 80039f2 case 1:dir=7;break; - 800398e: 2307 movs r3, #7 - 8003990: 71fb strb r3, [r7, #7] - 8003992: e012 b.n 80039ba + 80039c6: 2307 movs r3, #7 + 80039c8: 71fb strb r3, [r7, #7] + 80039ca: e012 b.n 80039f2 case 2:dir=4;break; - 8003994: 2304 movs r3, #4 - 8003996: 71fb strb r3, [r7, #7] - 8003998: e00f b.n 80039ba + 80039cc: 2304 movs r3, #4 + 80039ce: 71fb strb r3, [r7, #7] + 80039d0: e00f b.n 80039f2 case 3:dir=5;break; - 800399a: 2305 movs r3, #5 - 800399c: 71fb strb r3, [r7, #7] - 800399e: e00c b.n 80039ba + 80039d2: 2305 movs r3, #5 + 80039d4: 71fb strb r3, [r7, #7] + 80039d6: e00c b.n 80039f2 case 4:dir=1;break; - 80039a0: 2301 movs r3, #1 - 80039a2: 71fb strb r3, [r7, #7] - 80039a4: e009 b.n 80039ba + 80039d8: 2301 movs r3, #1 + 80039da: 71fb strb r3, [r7, #7] + 80039dc: e009 b.n 80039f2 case 5:dir=0;break; - 80039a6: 2300 movs r3, #0 - 80039a8: 71fb strb r3, [r7, #7] - 80039aa: e006 b.n 80039ba + 80039de: 2300 movs r3, #0 + 80039e0: 71fb strb r3, [r7, #7] + 80039e2: e006 b.n 80039f2 case 6:dir=3;break; - 80039ac: 2303 movs r3, #3 - 80039ae: 71fb strb r3, [r7, #7] - 80039b0: e003 b.n 80039ba + 80039e4: 2303 movs r3, #3 + 80039e6: 71fb strb r3, [r7, #7] + 80039e8: e003 b.n 80039f2 case 7:dir=2;break; - 80039b2: 2302 movs r3, #2 - 80039b4: 71fb strb r3, [r7, #7] - 80039b6: e000 b.n 80039ba + 80039ea: 2302 movs r3, #2 + 80039ec: 71fb strb r3, [r7, #7] + 80039ee: e000 b.n 80039f2 } } - 80039b8: bf00 nop + 80039f0: bf00 nop if(lcddev.id==0x9341||lcddev.id==0X6804||lcddev.id==0X5310)//9341/6804/5310,很特殊 - 80039ba: 4b8b ldr r3, [pc, #556] ; (8003be8 ) - 80039bc: 889b ldrh r3, [r3, #4] - 80039be: f249 3241 movw r2, #37697 ; 0x9341 - 80039c2: 4293 cmp r3, r2 - 80039c4: d00c beq.n 80039e0 - 80039c6: 4b88 ldr r3, [pc, #544] ; (8003be8 ) - 80039c8: 889b ldrh r3, [r3, #4] - 80039ca: f646 0204 movw r2, #26628 ; 0x6804 - 80039ce: 4293 cmp r3, r2 - 80039d0: d006 beq.n 80039e0 - 80039d2: 4b85 ldr r3, [pc, #532] ; (8003be8 ) - 80039d4: 889b ldrh r3, [r3, #4] - 80039d6: f245 3210 movw r2, #21264 ; 0x5310 - 80039da: 4293 cmp r3, r2 - 80039dc: f040 80bb bne.w 8003b56 + 80039f2: 4b8b ldr r3, [pc, #556] ; (8003c20 ) + 80039f4: 889b ldrh r3, [r3, #4] + 80039f6: f249 3241 movw r2, #37697 ; 0x9341 + 80039fa: 4293 cmp r3, r2 + 80039fc: d00c beq.n 8003a18 + 80039fe: 4b88 ldr r3, [pc, #544] ; (8003c20 ) + 8003a00: 889b ldrh r3, [r3, #4] + 8003a02: f646 0204 movw r2, #26628 ; 0x6804 + 8003a06: 4293 cmp r3, r2 + 8003a08: d006 beq.n 8003a18 + 8003a0a: 4b85 ldr r3, [pc, #532] ; (8003c20 ) + 8003a0c: 889b ldrh r3, [r3, #4] + 8003a0e: f245 3210 movw r2, #21264 ; 0x5310 + 8003a12: 4293 cmp r3, r2 + 8003a14: f040 80bb bne.w 8003b8e { switch(dir) - 80039e0: 79fb ldrb r3, [r7, #7] - 80039e2: 2b07 cmp r3, #7 - 80039e4: d835 bhi.n 8003a52 - 80039e6: a201 add r2, pc, #4 ; (adr r2, 80039ec ) - 80039e8: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80039ec: 08003a53 .word 0x08003a53 - 80039f0: 08003a0d .word 0x08003a0d - 80039f4: 08003a17 .word 0x08003a17 - 80039f8: 08003a21 .word 0x08003a21 - 80039fc: 08003a2b .word 0x08003a2b - 8003a00: 08003a35 .word 0x08003a35 - 8003a04: 08003a3f .word 0x08003a3f - 8003a08: 08003a49 .word 0x08003a49 + 8003a18: 79fb ldrb r3, [r7, #7] + 8003a1a: 2b07 cmp r3, #7 + 8003a1c: d835 bhi.n 8003a8a + 8003a1e: a201 add r2, pc, #4 ; (adr r2, 8003a24 ) + 8003a20: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8003a24: 08003a8b .word 0x08003a8b + 8003a28: 08003a45 .word 0x08003a45 + 8003a2c: 08003a4f .word 0x08003a4f + 8003a30: 08003a59 .word 0x08003a59 + 8003a34: 08003a63 .word 0x08003a63 + 8003a38: 08003a6d .word 0x08003a6d + 8003a3c: 08003a77 .word 0x08003a77 + 8003a40: 08003a81 .word 0x08003a81 { case L2R_U2D://从左到右,从上到下 regval|=(0<<7)|(0<<6)|(0<<5); break; case L2R_D2U://从左到右,从下到上 regval|=(1<<7)|(0<<6)|(0<<5); - 8003a0c: 89fb ldrh r3, [r7, #14] - 8003a0e: f043 0380 orr.w r3, r3, #128 ; 0x80 - 8003a12: 81fb strh r3, [r7, #14] + 8003a44: 89fb ldrh r3, [r7, #14] + 8003a46: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8003a4a: 81fb strh r3, [r7, #14] break; - 8003a14: e01d b.n 8003a52 + 8003a4c: e01d b.n 8003a8a case R2L_U2D://从右到左,从上到下 regval|=(0<<7)|(1<<6)|(0<<5); - 8003a16: 89fb ldrh r3, [r7, #14] - 8003a18: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8003a1c: 81fb strh r3, [r7, #14] + 8003a4e: 89fb ldrh r3, [r7, #14] + 8003a50: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8003a54: 81fb strh r3, [r7, #14] break; - 8003a1e: e018 b.n 8003a52 + 8003a56: e018 b.n 8003a8a case R2L_D2U://从右到左,从下到上 regval|=(1<<7)|(1<<6)|(0<<5); - 8003a20: 89fb ldrh r3, [r7, #14] - 8003a22: f043 03c0 orr.w r3, r3, #192 ; 0xc0 - 8003a26: 81fb strh r3, [r7, #14] + 8003a58: 89fb ldrh r3, [r7, #14] + 8003a5a: f043 03c0 orr.w r3, r3, #192 ; 0xc0 + 8003a5e: 81fb strh r3, [r7, #14] break; - 8003a28: e013 b.n 8003a52 + 8003a60: e013 b.n 8003a8a case U2D_L2R://从上到下,从左到右 regval|=(0<<7)|(0<<6)|(1<<5); - 8003a2a: 89fb ldrh r3, [r7, #14] - 8003a2c: f043 0320 orr.w r3, r3, #32 - 8003a30: 81fb strh r3, [r7, #14] + 8003a62: 89fb ldrh r3, [r7, #14] + 8003a64: f043 0320 orr.w r3, r3, #32 + 8003a68: 81fb strh r3, [r7, #14] break; - 8003a32: e00e b.n 8003a52 + 8003a6a: e00e b.n 8003a8a case U2D_R2L://从上到下,从右到左 regval|=(0<<7)|(1<<6)|(1<<5); - 8003a34: 89fb ldrh r3, [r7, #14] - 8003a36: f043 0360 orr.w r3, r3, #96 ; 0x60 - 8003a3a: 81fb strh r3, [r7, #14] + 8003a6c: 89fb ldrh r3, [r7, #14] + 8003a6e: f043 0360 orr.w r3, r3, #96 ; 0x60 + 8003a72: 81fb strh r3, [r7, #14] break; - 8003a3c: e009 b.n 8003a52 + 8003a74: e009 b.n 8003a8a case D2U_L2R://从下到上,从左到右 regval|=(1<<7)|(0<<6)|(1<<5); - 8003a3e: 89fb ldrh r3, [r7, #14] - 8003a40: f043 03a0 orr.w r3, r3, #160 ; 0xa0 - 8003a44: 81fb strh r3, [r7, #14] + 8003a76: 89fb ldrh r3, [r7, #14] + 8003a78: f043 03a0 orr.w r3, r3, #160 ; 0xa0 + 8003a7c: 81fb strh r3, [r7, #14] break; - 8003a46: e004 b.n 8003a52 + 8003a7e: e004 b.n 8003a8a case D2U_R2L://从下到上,从右到左 regval|=(1<<7)|(1<<6)|(1<<5); - 8003a48: 89fb ldrh r3, [r7, #14] - 8003a4a: f043 03e0 orr.w r3, r3, #224 ; 0xe0 - 8003a4e: 81fb strh r3, [r7, #14] + 8003a80: 89fb ldrh r3, [r7, #14] + 8003a82: f043 03e0 orr.w r3, r3, #224 ; 0xe0 + 8003a86: 81fb strh r3, [r7, #14] break; - 8003a50: bf00 nop + 8003a88: bf00 nop } dirreg=0X36; - 8003a52: 2336 movs r3, #54 ; 0x36 - 8003a54: 737b strb r3, [r7, #13] + 8003a8a: 2336 movs r3, #54 ; 0x36 + 8003a8c: 737b strb r3, [r7, #13] if(lcddev.id!=0X5310)regval|=0X08;//5310不需要BGR - 8003a56: 4b64 ldr r3, [pc, #400] ; (8003be8 ) - 8003a58: 889b ldrh r3, [r3, #4] - 8003a5a: f245 3210 movw r2, #21264 ; 0x5310 - 8003a5e: 4293 cmp r3, r2 - 8003a60: d003 beq.n 8003a6a - 8003a62: 89fb ldrh r3, [r7, #14] - 8003a64: f043 0308 orr.w r3, r3, #8 - 8003a68: 81fb strh r3, [r7, #14] + 8003a8e: 4b64 ldr r3, [pc, #400] ; (8003c20 ) + 8003a90: 889b ldrh r3, [r3, #4] + 8003a92: f245 3210 movw r2, #21264 ; 0x5310 + 8003a96: 4293 cmp r3, r2 + 8003a98: d003 beq.n 8003aa2 + 8003a9a: 89fb ldrh r3, [r7, #14] + 8003a9c: f043 0308 orr.w r3, r3, #8 + 8003aa0: 81fb strh r3, [r7, #14] if(lcddev.id==0X6804)regval|=0x02;//6804的BIT6和9341的反了 - 8003a6a: 4b5f ldr r3, [pc, #380] ; (8003be8 ) - 8003a6c: 889b ldrh r3, [r3, #4] - 8003a6e: f646 0204 movw r2, #26628 ; 0x6804 - 8003a72: 4293 cmp r3, r2 - 8003a74: d103 bne.n 8003a7e - 8003a76: 89fb ldrh r3, [r7, #14] - 8003a78: f043 0302 orr.w r3, r3, #2 - 8003a7c: 81fb strh r3, [r7, #14] + 8003aa2: 4b5f ldr r3, [pc, #380] ; (8003c20 ) + 8003aa4: 889b ldrh r3, [r3, #4] + 8003aa6: f646 0204 movw r2, #26628 ; 0x6804 + 8003aaa: 4293 cmp r3, r2 + 8003aac: d103 bne.n 8003ab6 + 8003aae: 89fb ldrh r3, [r7, #14] + 8003ab0: f043 0302 orr.w r3, r3, #2 + 8003ab4: 81fb strh r3, [r7, #14] LCD_WriteReg(dirreg,regval); - 8003a7e: 7b7b ldrb r3, [r7, #13] - 8003a80: b29b uxth r3, r3 - 8003a82: 89fa ldrh r2, [r7, #14] - 8003a84: 4611 mov r1, r2 - 8003a86: 4618 mov r0, r3 - 8003a88: f7ff ff2a bl 80038e0 + 8003ab6: 7b7b ldrb r3, [r7, #13] + 8003ab8: b29b uxth r3, r3 + 8003aba: 89fa ldrh r2, [r7, #14] + 8003abc: 4611 mov r1, r2 + 8003abe: 4618 mov r0, r3 + 8003ac0: f7ff ff2a bl 8003918 if((regval&0X20)||lcddev.dir==1) - 8003a8c: 89fb ldrh r3, [r7, #14] - 8003a8e: f003 0320 and.w r3, r3, #32 - 8003a92: 2b00 cmp r3, #0 - 8003a94: d103 bne.n 8003a9e - 8003a96: 4b54 ldr r3, [pc, #336] ; (8003be8 ) - 8003a98: 799b ldrb r3, [r3, #6] - 8003a9a: 2b01 cmp r3, #1 - 8003a9c: d110 bne.n 8003ac0 + 8003ac4: 89fb ldrh r3, [r7, #14] + 8003ac6: f003 0320 and.w r3, r3, #32 + 8003aca: 2b00 cmp r3, #0 + 8003acc: d103 bne.n 8003ad6 + 8003ace: 4b54 ldr r3, [pc, #336] ; (8003c20 ) + 8003ad0: 799b ldrb r3, [r3, #6] + 8003ad2: 2b01 cmp r3, #1 + 8003ad4: d110 bne.n 8003af8 { if(lcddev.width) - 8003aa0: 881a ldrh r2, [r3, #0] - 8003aa2: 4b51 ldr r3, [pc, #324] ; (8003be8 ) - 8003aa4: 885b ldrh r3, [r3, #2] - 8003aa6: 429a cmp r2, r3 - 8003aa8: d21a bcs.n 8003ae0 + 8003ad6: 4b52 ldr r3, [pc, #328] ; (8003c20 ) + 8003ad8: 881a ldrh r2, [r3, #0] + 8003ada: 4b51 ldr r3, [pc, #324] ; (8003c20 ) + 8003adc: 885b ldrh r3, [r3, #2] + 8003ade: 429a cmp r2, r3 + 8003ae0: d21a bcs.n 8003b18 { temp=lcddev.width; - 8003aaa: 4b4f ldr r3, [pc, #316] ; (8003be8 ) - 8003aac: 881b ldrh r3, [r3, #0] - 8003aae: 817b strh r3, [r7, #10] + 8003ae2: 4b4f ldr r3, [pc, #316] ; (8003c20 ) + 8003ae4: 881b ldrh r3, [r3, #0] + 8003ae6: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8003ab0: 4b4d ldr r3, [pc, #308] ; (8003be8 ) - 8003ab2: 885a ldrh r2, [r3, #2] - 8003ab4: 4b4c ldr r3, [pc, #304] ; (8003be8 ) - 8003ab6: 801a strh r2, [r3, #0] + 8003ae8: 4b4d ldr r3, [pc, #308] ; (8003c20 ) + 8003aea: 885a ldrh r2, [r3, #2] + 8003aec: 4b4c ldr r3, [pc, #304] ; (8003c20 ) + 8003aee: 801a strh r2, [r3, #0] lcddev.height=temp; - 8003ab8: 4a4b ldr r2, [pc, #300] ; (8003be8 ) - 8003aba: 897b ldrh r3, [r7, #10] - 8003abc: 8053 strh r3, [r2, #2] + 8003af0: 4a4b ldr r2, [pc, #300] ; (8003c20 ) + 8003af2: 897b ldrh r3, [r7, #10] + 8003af4: 8053 strh r3, [r2, #2] if(lcddev.width + 8003af6: e00f b.n 8003b18 } }else { if(lcddev.width>lcddev.height)//交换X,Y - 8003ac0: 4b49 ldr r3, [pc, #292] ; (8003be8 ) - 8003ac2: 881a ldrh r2, [r3, #0] - 8003ac4: 4b48 ldr r3, [pc, #288] ; (8003be8 ) - 8003ac6: 885b ldrh r3, [r3, #2] - 8003ac8: 429a cmp r2, r3 - 8003aca: d909 bls.n 8003ae0 + 8003af8: 4b49 ldr r3, [pc, #292] ; (8003c20 ) + 8003afa: 881a ldrh r2, [r3, #0] + 8003afc: 4b48 ldr r3, [pc, #288] ; (8003c20 ) + 8003afe: 885b ldrh r3, [r3, #2] + 8003b00: 429a cmp r2, r3 + 8003b02: d909 bls.n 8003b18 { temp=lcddev.width; - 8003acc: 4b46 ldr r3, [pc, #280] ; (8003be8 ) - 8003ace: 881b ldrh r3, [r3, #0] - 8003ad0: 817b strh r3, [r7, #10] + 8003b04: 4b46 ldr r3, [pc, #280] ; (8003c20 ) + 8003b06: 881b ldrh r3, [r3, #0] + 8003b08: 817b strh r3, [r7, #10] lcddev.width=lcddev.height; - 8003ad2: 4b45 ldr r3, [pc, #276] ; (8003be8 ) - 8003ad4: 885a ldrh r2, [r3, #2] - 8003ad6: 4b44 ldr r3, [pc, #272] ; (8003be8 ) - 8003ad8: 801a strh r2, [r3, #0] + 8003b0a: 4b45 ldr r3, [pc, #276] ; (8003c20 ) + 8003b0c: 885a ldrh r2, [r3, #2] + 8003b0e: 4b44 ldr r3, [pc, #272] ; (8003c20 ) + 8003b10: 801a strh r2, [r3, #0] lcddev.height=temp; - 8003ada: 4a43 ldr r2, [pc, #268] ; (8003be8 ) - 8003adc: 897b ldrh r3, [r7, #10] - 8003ade: 8053 strh r3, [r2, #2] + 8003b12: 4a43 ldr r2, [pc, #268] ; (8003c20 ) + 8003b14: 897b ldrh r3, [r7, #10] + 8003b16: 8053 strh r3, [r2, #2] } } LCD_WR_REG(lcddev.setxcmd); - 8003ae0: 4b41 ldr r3, [pc, #260] ; (8003be8 ) - 8003ae2: 7a1b ldrb r3, [r3, #8] - 8003ae4: b29b uxth r3, r3 - 8003ae6: 4618 mov r0, r3 - 8003ae8: f7ff fedc bl 80038a4 + 8003b18: 4b41 ldr r3, [pc, #260] ; (8003c20 ) + 8003b1a: 7a1b ldrb r3, [r3, #8] + 8003b1c: b29b uxth r3, r3 + 8003b1e: 4618 mov r0, r3 + 8003b20: f7ff fedc bl 80038dc LCD_WR_DATA(0);LCD_WR_DATA(0); - 8003aec: 2000 movs r0, #0 - 8003aee: f7ff fee7 bl 80038c0 - 8003af2: 2000 movs r0, #0 - 8003af4: f7ff fee4 bl 80038c0 + 8003b24: 2000 movs r0, #0 + 8003b26: f7ff fee7 bl 80038f8 + 8003b2a: 2000 movs r0, #0 + 8003b2c: f7ff fee4 bl 80038f8 LCD_WR_DATA((lcddev.width-1)>>8);LCD_WR_DATA((lcddev.width-1)&0XFF); - 8003af8: 4b3b ldr r3, [pc, #236] ; (8003be8 ) - 8003afa: 881b ldrh r3, [r3, #0] - 8003afc: 3b01 subs r3, #1 - 8003afe: 121b asrs r3, r3, #8 - 8003b00: b29b uxth r3, r3 - 8003b02: 4618 mov r0, r3 - 8003b04: f7ff fedc bl 80038c0 - 8003b08: 4b37 ldr r3, [pc, #220] ; (8003be8 ) - 8003b0a: 881b ldrh r3, [r3, #0] - 8003b0c: 3b01 subs r3, #1 - 8003b0e: b29b uxth r3, r3 - 8003b10: b2db uxtb r3, r3 - 8003b12: b29b uxth r3, r3 - 8003b14: 4618 mov r0, r3 - 8003b16: f7ff fed3 bl 80038c0 + 8003b30: 4b3b ldr r3, [pc, #236] ; (8003c20 ) + 8003b32: 881b ldrh r3, [r3, #0] + 8003b34: 3b01 subs r3, #1 + 8003b36: 121b asrs r3, r3, #8 + 8003b38: b29b uxth r3, r3 + 8003b3a: 4618 mov r0, r3 + 8003b3c: f7ff fedc bl 80038f8 + 8003b40: 4b37 ldr r3, [pc, #220] ; (8003c20 ) + 8003b42: 881b ldrh r3, [r3, #0] + 8003b44: 3b01 subs r3, #1 + 8003b46: b29b uxth r3, r3 + 8003b48: b2db uxtb r3, r3 + 8003b4a: b29b uxth r3, r3 + 8003b4c: 4618 mov r0, r3 + 8003b4e: f7ff fed3 bl 80038f8 LCD_WR_REG(lcddev.setycmd); - 8003b1a: 4b33 ldr r3, [pc, #204] ; (8003be8 ) - 8003b1c: 7a5b ldrb r3, [r3, #9] - 8003b1e: b29b uxth r3, r3 - 8003b20: 4618 mov r0, r3 - 8003b22: f7ff febf bl 80038a4 + 8003b52: 4b33 ldr r3, [pc, #204] ; (8003c20 ) + 8003b54: 7a5b ldrb r3, [r3, #9] + 8003b56: b29b uxth r3, r3 + 8003b58: 4618 mov r0, r3 + 8003b5a: f7ff febf bl 80038dc LCD_WR_DATA(0);LCD_WR_DATA(0); - 8003b26: 2000 movs r0, #0 - 8003b28: f7ff feca bl 80038c0 - 8003b2c: 2000 movs r0, #0 - 8003b2e: f7ff fec7 bl 80038c0 + 8003b5e: 2000 movs r0, #0 + 8003b60: f7ff feca bl 80038f8 + 8003b64: 2000 movs r0, #0 + 8003b66: f7ff fec7 bl 80038f8 LCD_WR_DATA((lcddev.height-1)>>8);LCD_WR_DATA((lcddev.height-1)&0XFF); - 8003b32: 4b2d ldr r3, [pc, #180] ; (8003be8 ) - 8003b34: 885b ldrh r3, [r3, #2] - 8003b36: 3b01 subs r3, #1 - 8003b38: 121b asrs r3, r3, #8 - 8003b3a: b29b uxth r3, r3 - 8003b3c: 4618 mov r0, r3 - 8003b3e: f7ff febf bl 80038c0 - 8003b42: 4b29 ldr r3, [pc, #164] ; (8003be8 ) - 8003b44: 885b ldrh r3, [r3, #2] - 8003b46: 3b01 subs r3, #1 - 8003b48: b29b uxth r3, r3 - 8003b4a: b2db uxtb r3, r3 - 8003b4c: b29b uxth r3, r3 - 8003b4e: 4618 mov r0, r3 - 8003b50: f7ff feb6 bl 80038c0 - 8003b54: e058 b.n 8003c08 + 8003b6a: 4b2d ldr r3, [pc, #180] ; (8003c20 ) + 8003b6c: 885b ldrh r3, [r3, #2] + 8003b6e: 3b01 subs r3, #1 + 8003b70: 121b asrs r3, r3, #8 + 8003b72: b29b uxth r3, r3 + 8003b74: 4618 mov r0, r3 + 8003b76: f7ff febf bl 80038f8 + 8003b7a: 4b29 ldr r3, [pc, #164] ; (8003c20 ) + 8003b7c: 885b ldrh r3, [r3, #2] + 8003b7e: 3b01 subs r3, #1 + 8003b80: b29b uxth r3, r3 + 8003b82: b2db uxtb r3, r3 + 8003b84: b29b uxth r3, r3 + 8003b86: 4618 mov r0, r3 + 8003b88: f7ff feb6 bl 80038f8 + 8003b8c: e058 b.n 8003c40 }else { switch(dir) - 8003b56: 79fb ldrb r3, [r7, #7] - 8003b58: 2b07 cmp r3, #7 - 8003b5a: d836 bhi.n 8003bca - 8003b5c: a201 add r2, pc, #4 ; (adr r2, 8003b64 ) - 8003b5e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8003b62: bf00 nop - 8003b64: 08003b85 .word 0x08003b85 - 8003b68: 08003b8f .word 0x08003b8f - 8003b6c: 08003b99 .word 0x08003b99 - 8003b70: 08003bcb .word 0x08003bcb - 8003b74: 08003ba3 .word 0x08003ba3 - 8003b78: 08003bad .word 0x08003bad - 8003b7c: 08003bb7 .word 0x08003bb7 - 8003b80: 08003bc1 .word 0x08003bc1 + 8003b8e: 79fb ldrb r3, [r7, #7] + 8003b90: 2b07 cmp r3, #7 + 8003b92: d836 bhi.n 8003c02 + 8003b94: a201 add r2, pc, #4 ; (adr r2, 8003b9c ) + 8003b96: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8003b9a: bf00 nop + 8003b9c: 08003bbd .word 0x08003bbd + 8003ba0: 08003bc7 .word 0x08003bc7 + 8003ba4: 08003bd1 .word 0x08003bd1 + 8003ba8: 08003c03 .word 0x08003c03 + 8003bac: 08003bdb .word 0x08003bdb + 8003bb0: 08003be5 .word 0x08003be5 + 8003bb4: 08003bef .word 0x08003bef + 8003bb8: 08003bf9 .word 0x08003bf9 { case L2R_U2D://从左到右,从上到下 regval|=(1<<5)|(1<<4)|(0<<3); - 8003b84: 89fb ldrh r3, [r7, #14] - 8003b86: f043 0330 orr.w r3, r3, #48 ; 0x30 - 8003b8a: 81fb strh r3, [r7, #14] + 8003bbc: 89fb ldrh r3, [r7, #14] + 8003bbe: f043 0330 orr.w r3, r3, #48 ; 0x30 + 8003bc2: 81fb strh r3, [r7, #14] break; - 8003b8c: e01d b.n 8003bca + 8003bc4: e01d b.n 8003c02 case L2R_D2U://从左到右,从下到上 regval|=(0<<5)|(1<<4)|(0<<3); - 8003b8e: 89fb ldrh r3, [r7, #14] - 8003b90: f043 0310 orr.w r3, r3, #16 - 8003b94: 81fb strh r3, [r7, #14] + 8003bc6: 89fb ldrh r3, [r7, #14] + 8003bc8: f043 0310 orr.w r3, r3, #16 + 8003bcc: 81fb strh r3, [r7, #14] break; - 8003b96: e018 b.n 8003bca + 8003bce: e018 b.n 8003c02 case R2L_U2D://从右到左,从上到下 regval|=(1<<5)|(0<<4)|(0<<3); - 8003b98: 89fb ldrh r3, [r7, #14] - 8003b9a: f043 0320 orr.w r3, r3, #32 - 8003b9e: 81fb strh r3, [r7, #14] + 8003bd0: 89fb ldrh r3, [r7, #14] + 8003bd2: f043 0320 orr.w r3, r3, #32 + 8003bd6: 81fb strh r3, [r7, #14] break; - 8003ba0: e013 b.n 8003bca + 8003bd8: e013 b.n 8003c02 case R2L_D2U://从右到左,从下到上 regval|=(0<<5)|(0<<4)|(0<<3); break; case U2D_L2R://从上到下,从左到右 regval|=(1<<5)|(1<<4)|(1<<3); - 8003ba2: 89fb ldrh r3, [r7, #14] - 8003ba4: f043 0338 orr.w r3, r3, #56 ; 0x38 - 8003ba8: 81fb strh r3, [r7, #14] + 8003bda: 89fb ldrh r3, [r7, #14] + 8003bdc: f043 0338 orr.w r3, r3, #56 ; 0x38 + 8003be0: 81fb strh r3, [r7, #14] break; - 8003baa: e00e b.n 8003bca + 8003be2: e00e b.n 8003c02 case U2D_R2L://从上到下,从右到左 regval|=(1<<5)|(0<<4)|(1<<3); - 8003bac: 89fb ldrh r3, [r7, #14] - 8003bae: f043 0328 orr.w r3, r3, #40 ; 0x28 - 8003bb2: 81fb strh r3, [r7, #14] + 8003be4: 89fb ldrh r3, [r7, #14] + 8003be6: f043 0328 orr.w r3, r3, #40 ; 0x28 + 8003bea: 81fb strh r3, [r7, #14] break; - 8003bb4: e009 b.n 8003bca + 8003bec: e009 b.n 8003c02 case D2U_L2R://从下到上,从左到右 regval|=(0<<5)|(1<<4)|(1<<3); - 8003bb6: 89fb ldrh r3, [r7, #14] - 8003bb8: f043 0318 orr.w r3, r3, #24 - 8003bbc: 81fb strh r3, [r7, #14] + 8003bee: 89fb ldrh r3, [r7, #14] + 8003bf0: f043 0318 orr.w r3, r3, #24 + 8003bf4: 81fb strh r3, [r7, #14] break; - 8003bbe: e004 b.n 8003bca + 8003bf6: e004 b.n 8003c02 case D2U_R2L://从下到上,从右到左 regval|=(0<<5)|(0<<4)|(1<<3); - 8003bc0: 89fb ldrh r3, [r7, #14] - 8003bc2: f043 0308 orr.w r3, r3, #8 - 8003bc6: 81fb strh r3, [r7, #14] + 8003bf8: 89fb ldrh r3, [r7, #14] + 8003bfa: f043 0308 orr.w r3, r3, #8 + 8003bfe: 81fb strh r3, [r7, #14] break; - 8003bc8: bf00 nop + 8003c00: bf00 nop } if(lcddev.id==0x8989)//8989 IC - 8003bca: 4b07 ldr r3, [pc, #28] ; (8003be8 ) - 8003bcc: 889b ldrh r3, [r3, #4] - 8003bce: f648 1289 movw r2, #35209 ; 0x8989 - 8003bd2: 4293 cmp r3, r2 - 8003bd4: d10a bne.n 8003bec + 8003c02: 4b07 ldr r3, [pc, #28] ; (8003c20 ) + 8003c04: 889b ldrh r3, [r3, #4] + 8003c06: f648 1289 movw r2, #35209 ; 0x8989 + 8003c0a: 4293 cmp r3, r2 + 8003c0c: d10a bne.n 8003c24 { dirreg=0X11; - 8003bd6: 2311 movs r3, #17 - 8003bd8: 737b strb r3, [r7, #13] + 8003c0e: 2311 movs r3, #17 + 8003c10: 737b strb r3, [r7, #13] regval|=0X6040; //65K - 8003bda: 89fb ldrh r3, [r7, #14] - 8003bdc: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 - 8003be0: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8003be4: 81fb strh r3, [r7, #14] - 8003be6: e007 b.n 8003bf8 - 8003be8: 200002a8 .word 0x200002a8 + 8003c12: 89fb ldrh r3, [r7, #14] + 8003c14: f443 43c0 orr.w r3, r3, #24576 ; 0x6000 + 8003c18: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8003c1c: 81fb strh r3, [r7, #14] + 8003c1e: e007 b.n 8003c30 + 8003c20: 200002a8 .word 0x200002a8 }else//其他驱动IC { dirreg=0X03; - 8003bec: 2303 movs r3, #3 - 8003bee: 737b strb r3, [r7, #13] + 8003c24: 2303 movs r3, #3 + 8003c26: 737b strb r3, [r7, #13] regval|=1<<12; - 8003bf0: 89fb ldrh r3, [r7, #14] - 8003bf2: f443 5380 orr.w r3, r3, #4096 ; 0x1000 - 8003bf6: 81fb strh r3, [r7, #14] + 8003c28: 89fb ldrh r3, [r7, #14] + 8003c2a: f443 5380 orr.w r3, r3, #4096 ; 0x1000 + 8003c2e: 81fb strh r3, [r7, #14] } LCD_WriteReg(dirreg,regval); - 8003bf8: 7b7b ldrb r3, [r7, #13] - 8003bfa: b29b uxth r3, r3 - 8003bfc: 89fa ldrh r2, [r7, #14] - 8003bfe: 4611 mov r1, r2 - 8003c00: 4618 mov r0, r3 - 8003c02: f7ff fe6d bl 80038e0 + 8003c30: 7b7b ldrb r3, [r7, #13] + 8003c32: b29b uxth r3, r3 + 8003c34: 89fa ldrh r2, [r7, #14] + 8003c36: 4611 mov r1, r2 + 8003c38: 4618 mov r0, r3 + 8003c3a: f7ff fe6d bl 8003918 } } - 8003c06: bf00 nop - 8003c08: bf00 nop - 8003c0a: 3710 adds r7, #16 - 8003c0c: 46bd mov sp, r7 - 8003c0e: bd80 pop {r7, pc} + 8003c3e: bf00 nop + 8003c40: bf00 nop + 8003c42: 3710 adds r7, #16 + 8003c44: 46bd mov sp, r7 + 8003c46: bd80 pop {r7, pc} -08003c10 : +08003c48 : //设置LCD显示方向 //dir:0,竖屏;1,横屏 void LCD_Display_Dir(uint8_t dir) { - 8003c10: b580 push {r7, lr} - 8003c12: b082 sub sp, #8 - 8003c14: af00 add r7, sp, #0 - 8003c16: 4603 mov r3, r0 - 8003c18: 71fb strb r3, [r7, #7] + 8003c48: b580 push {r7, lr} + 8003c4a: b082 sub sp, #8 + 8003c4c: af00 add r7, sp, #0 + 8003c4e: 4603 mov r3, r0 + 8003c50: 71fb strb r3, [r7, #7] if(dir==0) //竖屏 - 8003c1a: 79fb ldrb r3, [r7, #7] - 8003c1c: 2b00 cmp r3, #0 - 8003c1e: d154 bne.n 8003cca + 8003c52: 79fb ldrb r3, [r7, #7] + 8003c54: 2b00 cmp r3, #0 + 8003c56: d154 bne.n 8003d02 { lcddev.dir=0; //竖屏 - 8003c20: 4b5d ldr r3, [pc, #372] ; (8003d98 ) - 8003c22: 2200 movs r2, #0 - 8003c24: 719a strb r2, [r3, #6] + 8003c58: 4b5d ldr r3, [pc, #372] ; (8003dd0 ) + 8003c5a: 2200 movs r2, #0 + 8003c5c: 719a strb r2, [r3, #6] lcddev.width=240; - 8003c26: 4b5c ldr r3, [pc, #368] ; (8003d98 ) - 8003c28: 22f0 movs r2, #240 ; 0xf0 - 8003c2a: 801a strh r2, [r3, #0] + 8003c5e: 4b5c ldr r3, [pc, #368] ; (8003dd0 ) + 8003c60: 22f0 movs r2, #240 ; 0xf0 + 8003c62: 801a strh r2, [r3, #0] lcddev.height=320; - 8003c2c: 4b5a ldr r3, [pc, #360] ; (8003d98 ) - 8003c2e: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003c32: 805a strh r2, [r3, #2] + 8003c64: 4b5a ldr r3, [pc, #360] ; (8003dd0 ) + 8003c66: f44f 72a0 mov.w r2, #320 ; 0x140 + 8003c6a: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X6804||lcddev.id==0X5310) - 8003c34: 4b58 ldr r3, [pc, #352] ; (8003d98 ) - 8003c36: 889b ldrh r3, [r3, #4] - 8003c38: f249 3241 movw r2, #37697 ; 0x9341 - 8003c3c: 4293 cmp r3, r2 - 8003c3e: d00b beq.n 8003c58 - 8003c40: 4b55 ldr r3, [pc, #340] ; (8003d98 ) - 8003c42: 889b ldrh r3, [r3, #4] - 8003c44: f646 0204 movw r2, #26628 ; 0x6804 - 8003c48: 4293 cmp r3, r2 - 8003c4a: d005 beq.n 8003c58 - 8003c4c: 4b52 ldr r3, [pc, #328] ; (8003d98 ) - 8003c4e: 889b ldrh r3, [r3, #4] - 8003c50: f245 3210 movw r2, #21264 ; 0x5310 - 8003c54: 4293 cmp r3, r2 - 8003c56: d11e bne.n 8003c96 + 8003c6c: 4b58 ldr r3, [pc, #352] ; (8003dd0 ) + 8003c6e: 889b ldrh r3, [r3, #4] + 8003c70: f249 3241 movw r2, #37697 ; 0x9341 + 8003c74: 4293 cmp r3, r2 + 8003c76: d00b beq.n 8003c90 + 8003c78: 4b55 ldr r3, [pc, #340] ; (8003dd0 ) + 8003c7a: 889b ldrh r3, [r3, #4] + 8003c7c: f646 0204 movw r2, #26628 ; 0x6804 + 8003c80: 4293 cmp r3, r2 + 8003c82: d005 beq.n 8003c90 + 8003c84: 4b52 ldr r3, [pc, #328] ; (8003dd0 ) + 8003c86: 889b ldrh r3, [r3, #4] + 8003c88: f245 3210 movw r2, #21264 ; 0x5310 + 8003c8c: 4293 cmp r3, r2 + 8003c8e: d11e bne.n 8003cce { lcddev.wramcmd=0X2C; - 8003c58: 4b4f ldr r3, [pc, #316] ; (8003d98 ) - 8003c5a: 222c movs r2, #44 ; 0x2c - 8003c5c: 71da strb r2, [r3, #7] + 8003c90: 4b4f ldr r3, [pc, #316] ; (8003dd0 ) + 8003c92: 222c movs r2, #44 ; 0x2c + 8003c94: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8003c5e: 4b4e ldr r3, [pc, #312] ; (8003d98 ) - 8003c60: 222a movs r2, #42 ; 0x2a - 8003c62: 721a strb r2, [r3, #8] + 8003c96: 4b4e ldr r3, [pc, #312] ; (8003dd0 ) + 8003c98: 222a movs r2, #42 ; 0x2a + 8003c9a: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8003c64: 4b4c ldr r3, [pc, #304] ; (8003d98 ) - 8003c66: 222b movs r2, #43 ; 0x2b - 8003c68: 725a strb r2, [r3, #9] + 8003c9c: 4b4c ldr r3, [pc, #304] ; (8003dd0 ) + 8003c9e: 222b movs r2, #43 ; 0x2b + 8003ca0: 725a strb r2, [r3, #9] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003c6a: 4b4b ldr r3, [pc, #300] ; (8003d98 ) - 8003c6c: 889b ldrh r3, [r3, #4] - 8003c6e: f646 0204 movw r2, #26628 ; 0x6804 - 8003c72: 4293 cmp r3, r2 - 8003c74: d006 beq.n 8003c84 - 8003c76: 4b48 ldr r3, [pc, #288] ; (8003d98 ) - 8003c78: 889b ldrh r3, [r3, #4] - 8003c7a: f245 3210 movw r2, #21264 ; 0x5310 - 8003c7e: 4293 cmp r3, r2 - 8003c80: f040 8081 bne.w 8003d86 + 8003ca2: 4b4b ldr r3, [pc, #300] ; (8003dd0 ) + 8003ca4: 889b ldrh r3, [r3, #4] + 8003ca6: f646 0204 movw r2, #26628 ; 0x6804 + 8003caa: 4293 cmp r3, r2 + 8003cac: d006 beq.n 8003cbc + 8003cae: 4b48 ldr r3, [pc, #288] ; (8003dd0 ) + 8003cb0: 889b ldrh r3, [r3, #4] + 8003cb2: f245 3210 movw r2, #21264 ; 0x5310 + 8003cb6: 4293 cmp r3, r2 + 8003cb8: f040 8081 bne.w 8003dbe { lcddev.width=320; - 8003c84: 4b44 ldr r3, [pc, #272] ; (8003d98 ) - 8003c86: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003c8a: 801a strh r2, [r3, #0] + 8003cbc: 4b44 ldr r3, [pc, #272] ; (8003dd0 ) + 8003cbe: f44f 72a0 mov.w r2, #320 ; 0x140 + 8003cc2: 801a strh r2, [r3, #0] lcddev.height=480; - 8003c8c: 4b42 ldr r3, [pc, #264] ; (8003d98 ) - 8003c8e: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 8003c92: 805a strh r2, [r3, #2] + 8003cc4: 4b42 ldr r3, [pc, #264] ; (8003dd0 ) + 8003cc6: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 8003cca: 805a strh r2, [r3, #2] if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003c94: e077 b.n 8003d86 + 8003ccc: e077 b.n 8003dbe } }else if(lcddev.id==0X8989) - 8003c96: 4b40 ldr r3, [pc, #256] ; (8003d98 ) - 8003c98: 889b ldrh r3, [r3, #4] - 8003c9a: f648 1289 movw r2, #35209 ; 0x8989 - 8003c9e: 4293 cmp r3, r2 - 8003ca0: d109 bne.n 8003cb6 + 8003cce: 4b40 ldr r3, [pc, #256] ; (8003dd0 ) + 8003cd0: 889b ldrh r3, [r3, #4] + 8003cd2: f648 1289 movw r2, #35209 ; 0x8989 + 8003cd6: 4293 cmp r3, r2 + 8003cd8: d109 bne.n 8003cee { lcddev.wramcmd=R34; - 8003ca2: 4b3d ldr r3, [pc, #244] ; (8003d98 ) - 8003ca4: 2222 movs r2, #34 ; 0x22 - 8003ca6: 71da strb r2, [r3, #7] + 8003cda: 4b3d ldr r3, [pc, #244] ; (8003dd0 ) + 8003cdc: 2222 movs r2, #34 ; 0x22 + 8003cde: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4E; - 8003ca8: 4b3b ldr r3, [pc, #236] ; (8003d98 ) - 8003caa: 224e movs r2, #78 ; 0x4e - 8003cac: 721a strb r2, [r3, #8] + 8003ce0: 4b3b ldr r3, [pc, #236] ; (8003dd0 ) + 8003ce2: 224e movs r2, #78 ; 0x4e + 8003ce4: 721a strb r2, [r3, #8] lcddev.setycmd=0X4F; - 8003cae: 4b3a ldr r3, [pc, #232] ; (8003d98 ) - 8003cb0: 224f movs r2, #79 ; 0x4f - 8003cb2: 725a strb r2, [r3, #9] - 8003cb4: e068 b.n 8003d88 + 8003ce6: 4b3a ldr r3, [pc, #232] ; (8003dd0 ) + 8003ce8: 224f movs r2, #79 ; 0x4f + 8003cea: 725a strb r2, [r3, #9] + 8003cec: e068 b.n 8003dc0 }else { lcddev.wramcmd=R34; - 8003cb6: 4b38 ldr r3, [pc, #224] ; (8003d98 ) - 8003cb8: 2222 movs r2, #34 ; 0x22 - 8003cba: 71da strb r2, [r3, #7] + 8003cee: 4b38 ldr r3, [pc, #224] ; (8003dd0 ) + 8003cf0: 2222 movs r2, #34 ; 0x22 + 8003cf2: 71da strb r2, [r3, #7] lcddev.setxcmd=R32; - 8003cbc: 4b36 ldr r3, [pc, #216] ; (8003d98 ) - 8003cbe: 2220 movs r2, #32 - 8003cc0: 721a strb r2, [r3, #8] + 8003cf4: 4b36 ldr r3, [pc, #216] ; (8003dd0 ) + 8003cf6: 2220 movs r2, #32 + 8003cf8: 721a strb r2, [r3, #8] lcddev.setycmd=R33; - 8003cc2: 4b35 ldr r3, [pc, #212] ; (8003d98 ) - 8003cc4: 2221 movs r2, #33 ; 0x21 - 8003cc6: 725a strb r2, [r3, #9] - 8003cc8: e05e b.n 8003d88 + 8003cfa: 4b35 ldr r3, [pc, #212] ; (8003dd0 ) + 8003cfc: 2221 movs r2, #33 ; 0x21 + 8003cfe: 725a strb r2, [r3, #9] + 8003d00: e05e b.n 8003dc0 } }else //横屏 { lcddev.dir=1; //横屏 - 8003cca: 4b33 ldr r3, [pc, #204] ; (8003d98 ) - 8003ccc: 2201 movs r2, #1 - 8003cce: 719a strb r2, [r3, #6] + 8003d02: 4b33 ldr r3, [pc, #204] ; (8003dd0 ) + 8003d04: 2201 movs r2, #1 + 8003d06: 719a strb r2, [r3, #6] lcddev.width=320; - 8003cd0: 4b31 ldr r3, [pc, #196] ; (8003d98 ) - 8003cd2: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003cd6: 801a strh r2, [r3, #0] + 8003d08: 4b31 ldr r3, [pc, #196] ; (8003dd0 ) + 8003d0a: f44f 72a0 mov.w r2, #320 ; 0x140 + 8003d0e: 801a strh r2, [r3, #0] lcddev.height=240; - 8003cd8: 4b2f ldr r3, [pc, #188] ; (8003d98 ) - 8003cda: 22f0 movs r2, #240 ; 0xf0 - 8003cdc: 805a strh r2, [r3, #2] + 8003d10: 4b2f ldr r3, [pc, #188] ; (8003dd0 ) + 8003d12: 22f0 movs r2, #240 ; 0xf0 + 8003d14: 805a strh r2, [r3, #2] if(lcddev.id==0X9341||lcddev.id==0X5310) - 8003cde: 4b2e ldr r3, [pc, #184] ; (8003d98 ) - 8003ce0: 889b ldrh r3, [r3, #4] - 8003ce2: f249 3241 movw r2, #37697 ; 0x9341 - 8003ce6: 4293 cmp r3, r2 - 8003ce8: d005 beq.n 8003cf6 - 8003cea: 4b2b ldr r3, [pc, #172] ; (8003d98 ) - 8003cec: 889b ldrh r3, [r3, #4] - 8003cee: f245 3210 movw r2, #21264 ; 0x5310 - 8003cf2: 4293 cmp r3, r2 - 8003cf4: d109 bne.n 8003d0a + 8003d16: 4b2e ldr r3, [pc, #184] ; (8003dd0 ) + 8003d18: 889b ldrh r3, [r3, #4] + 8003d1a: f249 3241 movw r2, #37697 ; 0x9341 + 8003d1e: 4293 cmp r3, r2 + 8003d20: d005 beq.n 8003d2e + 8003d22: 4b2b ldr r3, [pc, #172] ; (8003dd0 ) + 8003d24: 889b ldrh r3, [r3, #4] + 8003d26: f245 3210 movw r2, #21264 ; 0x5310 + 8003d2a: 4293 cmp r3, r2 + 8003d2c: d109 bne.n 8003d42 { lcddev.wramcmd=0X2C; - 8003cf6: 4b28 ldr r3, [pc, #160] ; (8003d98 ) - 8003cf8: 222c movs r2, #44 ; 0x2c - 8003cfa: 71da strb r2, [r3, #7] + 8003d2e: 4b28 ldr r3, [pc, #160] ; (8003dd0 ) + 8003d30: 222c movs r2, #44 ; 0x2c + 8003d32: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2A; - 8003cfc: 4b26 ldr r3, [pc, #152] ; (8003d98 ) - 8003cfe: 222a movs r2, #42 ; 0x2a - 8003d00: 721a strb r2, [r3, #8] + 8003d34: 4b26 ldr r3, [pc, #152] ; (8003dd0 ) + 8003d36: 222a movs r2, #42 ; 0x2a + 8003d38: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 8003d02: 4b25 ldr r3, [pc, #148] ; (8003d98 ) - 8003d04: 222b movs r2, #43 ; 0x2b - 8003d06: 725a strb r2, [r3, #9] - 8003d08: e028 b.n 8003d5c + 8003d3a: 4b25 ldr r3, [pc, #148] ; (8003dd0 ) + 8003d3c: 222b movs r2, #43 ; 0x2b + 8003d3e: 725a strb r2, [r3, #9] + 8003d40: e028 b.n 8003d94 }else if(lcddev.id==0X6804) - 8003d0a: 4b23 ldr r3, [pc, #140] ; (8003d98 ) - 8003d0c: 889b ldrh r3, [r3, #4] - 8003d0e: f646 0204 movw r2, #26628 ; 0x6804 - 8003d12: 4293 cmp r3, r2 - 8003d14: d109 bne.n 8003d2a + 8003d42: 4b23 ldr r3, [pc, #140] ; (8003dd0 ) + 8003d44: 889b ldrh r3, [r3, #4] + 8003d46: f646 0204 movw r2, #26628 ; 0x6804 + 8003d4a: 4293 cmp r3, r2 + 8003d4c: d109 bne.n 8003d62 { lcddev.wramcmd=0X2C; - 8003d16: 4b20 ldr r3, [pc, #128] ; (8003d98 ) - 8003d18: 222c movs r2, #44 ; 0x2c - 8003d1a: 71da strb r2, [r3, #7] + 8003d4e: 4b20 ldr r3, [pc, #128] ; (8003dd0 ) + 8003d50: 222c movs r2, #44 ; 0x2c + 8003d52: 71da strb r2, [r3, #7] lcddev.setxcmd=0X2B; - 8003d1c: 4b1e ldr r3, [pc, #120] ; (8003d98 ) - 8003d1e: 222b movs r2, #43 ; 0x2b - 8003d20: 721a strb r2, [r3, #8] + 8003d54: 4b1e ldr r3, [pc, #120] ; (8003dd0 ) + 8003d56: 222b movs r2, #43 ; 0x2b + 8003d58: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8003d22: 4b1d ldr r3, [pc, #116] ; (8003d98 ) - 8003d24: 222a movs r2, #42 ; 0x2a - 8003d26: 725a strb r2, [r3, #9] - 8003d28: e018 b.n 8003d5c + 8003d5a: 4b1d ldr r3, [pc, #116] ; (8003dd0 ) + 8003d5c: 222a movs r2, #42 ; 0x2a + 8003d5e: 725a strb r2, [r3, #9] + 8003d60: e018 b.n 8003d94 }else if(lcddev.id==0X8989) - 8003d2a: 4b1b ldr r3, [pc, #108] ; (8003d98 ) - 8003d2c: 889b ldrh r3, [r3, #4] - 8003d2e: f648 1289 movw r2, #35209 ; 0x8989 - 8003d32: 4293 cmp r3, r2 - 8003d34: d109 bne.n 8003d4a + 8003d62: 4b1b ldr r3, [pc, #108] ; (8003dd0 ) + 8003d64: 889b ldrh r3, [r3, #4] + 8003d66: f648 1289 movw r2, #35209 ; 0x8989 + 8003d6a: 4293 cmp r3, r2 + 8003d6c: d109 bne.n 8003d82 { lcddev.wramcmd=R34; - 8003d36: 4b18 ldr r3, [pc, #96] ; (8003d98 ) - 8003d38: 2222 movs r2, #34 ; 0x22 - 8003d3a: 71da strb r2, [r3, #7] + 8003d6e: 4b18 ldr r3, [pc, #96] ; (8003dd0 ) + 8003d70: 2222 movs r2, #34 ; 0x22 + 8003d72: 71da strb r2, [r3, #7] lcddev.setxcmd=0X4F; - 8003d3c: 4b16 ldr r3, [pc, #88] ; (8003d98 ) - 8003d3e: 224f movs r2, #79 ; 0x4f - 8003d40: 721a strb r2, [r3, #8] + 8003d74: 4b16 ldr r3, [pc, #88] ; (8003dd0 ) + 8003d76: 224f movs r2, #79 ; 0x4f + 8003d78: 721a strb r2, [r3, #8] lcddev.setycmd=0X4E; - 8003d42: 4b15 ldr r3, [pc, #84] ; (8003d98 ) - 8003d44: 224e movs r2, #78 ; 0x4e - 8003d46: 725a strb r2, [r3, #9] - 8003d48: e008 b.n 8003d5c + 8003d7a: 4b15 ldr r3, [pc, #84] ; (8003dd0 ) + 8003d7c: 224e movs r2, #78 ; 0x4e + 8003d7e: 725a strb r2, [r3, #9] + 8003d80: e008 b.n 8003d94 }else { lcddev.wramcmd=R34; - 8003d4a: 4b13 ldr r3, [pc, #76] ; (8003d98 ) - 8003d4c: 2222 movs r2, #34 ; 0x22 - 8003d4e: 71da strb r2, [r3, #7] + 8003d82: 4b13 ldr r3, [pc, #76] ; (8003dd0 ) + 8003d84: 2222 movs r2, #34 ; 0x22 + 8003d86: 71da strb r2, [r3, #7] lcddev.setxcmd=R33; - 8003d50: 4b11 ldr r3, [pc, #68] ; (8003d98 ) - 8003d52: 2221 movs r2, #33 ; 0x21 - 8003d54: 721a strb r2, [r3, #8] + 8003d88: 4b11 ldr r3, [pc, #68] ; (8003dd0 ) + 8003d8a: 2221 movs r2, #33 ; 0x21 + 8003d8c: 721a strb r2, [r3, #8] lcddev.setycmd=R32; - 8003d56: 4b10 ldr r3, [pc, #64] ; (8003d98 ) - 8003d58: 2220 movs r2, #32 - 8003d5a: 725a strb r2, [r3, #9] + 8003d8e: 4b10 ldr r3, [pc, #64] ; (8003dd0 ) + 8003d90: 2220 movs r2, #32 + 8003d92: 725a strb r2, [r3, #9] } if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003d5c: 4b0e ldr r3, [pc, #56] ; (8003d98 ) - 8003d5e: 889b ldrh r3, [r3, #4] - 8003d60: f646 0204 movw r2, #26628 ; 0x6804 - 8003d64: 4293 cmp r3, r2 - 8003d66: d005 beq.n 8003d74 - 8003d68: 4b0b ldr r3, [pc, #44] ; (8003d98 ) - 8003d6a: 889b ldrh r3, [r3, #4] - 8003d6c: f245 3210 movw r2, #21264 ; 0x5310 - 8003d70: 4293 cmp r3, r2 - 8003d72: d109 bne.n 8003d88 + 8003d94: 4b0e ldr r3, [pc, #56] ; (8003dd0 ) + 8003d96: 889b ldrh r3, [r3, #4] + 8003d98: f646 0204 movw r2, #26628 ; 0x6804 + 8003d9c: 4293 cmp r3, r2 + 8003d9e: d005 beq.n 8003dac + 8003da0: 4b0b ldr r3, [pc, #44] ; (8003dd0 ) + 8003da2: 889b ldrh r3, [r3, #4] + 8003da4: f245 3210 movw r2, #21264 ; 0x5310 + 8003da8: 4293 cmp r3, r2 + 8003daa: d109 bne.n 8003dc0 { lcddev.width=480; - 8003d74: 4b08 ldr r3, [pc, #32] ; (8003d98 ) - 8003d76: f44f 72f0 mov.w r2, #480 ; 0x1e0 - 8003d7a: 801a strh r2, [r3, #0] + 8003dac: 4b08 ldr r3, [pc, #32] ; (8003dd0 ) + 8003dae: f44f 72f0 mov.w r2, #480 ; 0x1e0 + 8003db2: 801a strh r2, [r3, #0] lcddev.height=320; - 8003d7c: 4b06 ldr r3, [pc, #24] ; (8003d98 ) - 8003d7e: f44f 72a0 mov.w r2, #320 ; 0x140 - 8003d82: 805a strh r2, [r3, #2] - 8003d84: e000 b.n 8003d88 + 8003db4: 4b06 ldr r3, [pc, #24] ; (8003dd0 ) + 8003db6: f44f 72a0 mov.w r2, #320 ; 0x140 + 8003dba: 805a strh r2, [r3, #2] + 8003dbc: e000 b.n 8003dc0 if(lcddev.id==0X6804||lcddev.id==0X5310) - 8003d86: bf00 nop + 8003dbe: bf00 nop } } LCD_Scan_Dir(DFT_SCAN_DIR); //默认扫描方向 - 8003d88: 2000 movs r0, #0 - 8003d8a: f7ff fdd3 bl 8003934 + 8003dc0: 2000 movs r0, #0 + 8003dc2: f7ff fdd3 bl 800396c } - 8003d8e: bf00 nop - 8003d90: 3708 adds r7, #8 - 8003d92: 46bd mov sp, r7 - 8003d94: bd80 pop {r7, pc} - 8003d96: bf00 nop - 8003d98: 200002a8 .word 0x200002a8 + 8003dc6: bf00 nop + 8003dc8: 3708 adds r7, #8 + 8003dca: 46bd mov sp, r7 + 8003dcc: bd80 pop {r7, pc} + 8003dce: bf00 nop + 8003dd0: 200002a8 .word 0x200002a8 -08003d9c : +08003dd4 : //初始化lcd //该初始化函数可以初始化各种液晶! void LCDx_Init(void) { - 8003d9c: b580 push {r7, lr} - 8003d9e: af00 add r7, sp, #0 + 8003dd4: b580 push {r7, lr} + 8003dd6: af00 add r7, sp, #0 HAL_Delay(50); // delay 50 ms - 8003da0: 2032 movs r0, #50 ; 0x32 - 8003da2: f7fd fd89 bl 80018b8 + 8003dd8: 2032 movs r0, #50 ; 0x32 + 8003dda: f7fd fd89 bl 80018f0 LCD_WriteReg(0x0000,0x0001); - 8003da6: 2101 movs r1, #1 - 8003da8: 2000 movs r0, #0 - 8003daa: f7ff fd99 bl 80038e0 + 8003dde: 2101 movs r1, #1 + 8003de0: 2000 movs r0, #0 + 8003de2: f7ff fd99 bl 8003918 HAL_Delay(50); // delay 50 ms - 8003dae: 2032 movs r0, #50 ; 0x32 - 8003db0: f7fd fd82 bl 80018b8 + 8003de6: 2032 movs r0, #50 ; 0x32 + 8003de8: f7fd fd82 bl 80018f0 lcddev.id = LCD_ReadReg(0x0000); - 8003db4: 2000 movs r0, #0 - 8003db6: f7ff fda9 bl 800390c - 8003dba: 4603 mov r3, r0 - 8003dbc: 461a mov r2, r3 - 8003dbe: 4b70 ldr r3, [pc, #448] ; (8003f80 ) - 8003dc0: 809a strh r2, [r3, #4] + 8003dec: 2000 movs r0, #0 + 8003dee: f7ff fda9 bl 8003944 + 8003df2: 4603 mov r3, r0 + 8003df4: 461a mov r2, r3 + 8003df6: 4b70 ldr r3, [pc, #448] ; (8003fb8 ) + 8003df8: 809a strh r2, [r3, #4] LCD_WriteReg(0x00E5,0x78F0); - 8003dc2: f647 01f0 movw r1, #30960 ; 0x78f0 - 8003dc6: 20e5 movs r0, #229 ; 0xe5 - 8003dc8: f7ff fd8a bl 80038e0 + 8003dfa: f647 01f0 movw r1, #30960 ; 0x78f0 + 8003dfe: 20e5 movs r0, #229 ; 0xe5 + 8003e00: f7ff fd8a bl 8003918 LCD_WriteReg(0x0001,0x0100); - 8003dcc: f44f 7180 mov.w r1, #256 ; 0x100 - 8003dd0: 2001 movs r0, #1 - 8003dd2: f7ff fd85 bl 80038e0 + 8003e04: f44f 7180 mov.w r1, #256 ; 0x100 + 8003e08: 2001 movs r0, #1 + 8003e0a: f7ff fd85 bl 8003918 LCD_WriteReg(0x0002,0x0700); - 8003dd6: f44f 61e0 mov.w r1, #1792 ; 0x700 - 8003dda: 2002 movs r0, #2 - 8003ddc: f7ff fd80 bl 80038e0 + 8003e0e: f44f 61e0 mov.w r1, #1792 ; 0x700 + 8003e12: 2002 movs r0, #2 + 8003e14: f7ff fd80 bl 8003918 LCD_WriteReg(0x0003,0x1030); - 8003de0: f241 0130 movw r1, #4144 ; 0x1030 - 8003de4: 2003 movs r0, #3 - 8003de6: f7ff fd7b bl 80038e0 + 8003e18: f241 0130 movw r1, #4144 ; 0x1030 + 8003e1c: 2003 movs r0, #3 + 8003e1e: f7ff fd7b bl 8003918 LCD_WriteReg(0x0004,0x0000); - 8003dea: 2100 movs r1, #0 - 8003dec: 2004 movs r0, #4 - 8003dee: f7ff fd77 bl 80038e0 + 8003e22: 2100 movs r1, #0 + 8003e24: 2004 movs r0, #4 + 8003e26: f7ff fd77 bl 8003918 LCD_WriteReg(0x0008,0x0202); - 8003df2: f240 2102 movw r1, #514 ; 0x202 - 8003df6: 2008 movs r0, #8 - 8003df8: f7ff fd72 bl 80038e0 + 8003e2a: f240 2102 movw r1, #514 ; 0x202 + 8003e2e: 2008 movs r0, #8 + 8003e30: f7ff fd72 bl 8003918 LCD_WriteReg(0x0009,0x0000); - 8003dfc: 2100 movs r1, #0 - 8003dfe: 2009 movs r0, #9 - 8003e00: f7ff fd6e bl 80038e0 + 8003e34: 2100 movs r1, #0 + 8003e36: 2009 movs r0, #9 + 8003e38: f7ff fd6e bl 8003918 LCD_WriteReg(0x000A,0x0000); - 8003e04: 2100 movs r1, #0 - 8003e06: 200a movs r0, #10 - 8003e08: f7ff fd6a bl 80038e0 + 8003e3c: 2100 movs r1, #0 + 8003e3e: 200a movs r0, #10 + 8003e40: f7ff fd6a bl 8003918 LCD_WriteReg(0x000C,0x0000); - 8003e0c: 2100 movs r1, #0 - 8003e0e: 200c movs r0, #12 - 8003e10: f7ff fd66 bl 80038e0 + 8003e44: 2100 movs r1, #0 + 8003e46: 200c movs r0, #12 + 8003e48: f7ff fd66 bl 8003918 LCD_WriteReg(0x000D,0x0000); - 8003e14: 2100 movs r1, #0 - 8003e16: 200d movs r0, #13 - 8003e18: f7ff fd62 bl 80038e0 + 8003e4c: 2100 movs r1, #0 + 8003e4e: 200d movs r0, #13 + 8003e50: f7ff fd62 bl 8003918 LCD_WriteReg(0x000F,0x0000); - 8003e1c: 2100 movs r1, #0 - 8003e1e: 200f movs r0, #15 - 8003e20: f7ff fd5e bl 80038e0 + 8003e54: 2100 movs r1, #0 + 8003e56: 200f movs r0, #15 + 8003e58: f7ff fd5e bl 8003918 //power on sequence VGHVGL LCD_WriteReg(0x0010,0x0000); - 8003e24: 2100 movs r1, #0 - 8003e26: 2010 movs r0, #16 - 8003e28: f7ff fd5a bl 80038e0 + 8003e5c: 2100 movs r1, #0 + 8003e5e: 2010 movs r0, #16 + 8003e60: f7ff fd5a bl 8003918 LCD_WriteReg(0x0011,0x0007); - 8003e2c: 2107 movs r1, #7 - 8003e2e: 2011 movs r0, #17 - 8003e30: f7ff fd56 bl 80038e0 + 8003e64: 2107 movs r1, #7 + 8003e66: 2011 movs r0, #17 + 8003e68: f7ff fd56 bl 8003918 LCD_WriteReg(0x0012,0x0000); - 8003e34: 2100 movs r1, #0 - 8003e36: 2012 movs r0, #18 - 8003e38: f7ff fd52 bl 80038e0 + 8003e6c: 2100 movs r1, #0 + 8003e6e: 2012 movs r0, #18 + 8003e70: f7ff fd52 bl 8003918 LCD_WriteReg(0x0013,0x0000); - 8003e3c: 2100 movs r1, #0 - 8003e3e: 2013 movs r0, #19 - 8003e40: f7ff fd4e bl 80038e0 + 8003e74: 2100 movs r1, #0 + 8003e76: 2013 movs r0, #19 + 8003e78: f7ff fd4e bl 8003918 LCD_WriteReg(0x0007,0x0000); - 8003e44: 2100 movs r1, #0 - 8003e46: 2007 movs r0, #7 - 8003e48: f7ff fd4a bl 80038e0 + 8003e7c: 2100 movs r1, #0 + 8003e7e: 2007 movs r0, #7 + 8003e80: f7ff fd4a bl 8003918 //vgh LCD_WriteReg(0x0010,0x1690); - 8003e4c: f241 6190 movw r1, #5776 ; 0x1690 - 8003e50: 2010 movs r0, #16 - 8003e52: f7ff fd45 bl 80038e0 + 8003e84: f241 6190 movw r1, #5776 ; 0x1690 + 8003e88: 2010 movs r0, #16 + 8003e8a: f7ff fd45 bl 8003918 LCD_WriteReg(0x0011,0x0227); - 8003e56: f240 2127 movw r1, #551 ; 0x227 - 8003e5a: 2011 movs r0, #17 - 8003e5c: f7ff fd40 bl 80038e0 + 8003e8e: f240 2127 movw r1, #551 ; 0x227 + 8003e92: 2011 movs r0, #17 + 8003e94: f7ff fd40 bl 8003918 //delayms(100); //vregiout LCD_WriteReg(0x0012,0x009D); //0x001b - 8003e60: 219d movs r1, #157 ; 0x9d - 8003e62: 2012 movs r0, #18 - 8003e64: f7ff fd3c bl 80038e0 + 8003e98: 219d movs r1, #157 ; 0x9d + 8003e9a: 2012 movs r0, #18 + 8003e9c: f7ff fd3c bl 8003918 //delayms(100); //vom amplitude LCD_WriteReg(0x0013,0x1900); - 8003e68: f44f 51c8 mov.w r1, #6400 ; 0x1900 - 8003e6c: 2013 movs r0, #19 - 8003e6e: f7ff fd37 bl 80038e0 + 8003ea0: f44f 51c8 mov.w r1, #6400 ; 0x1900 + 8003ea4: 2013 movs r0, #19 + 8003ea6: f7ff fd37 bl 8003918 //delayms(100); //vom H LCD_WriteReg(0x0029,0x0025); - 8003e72: 2125 movs r1, #37 ; 0x25 - 8003e74: 2029 movs r0, #41 ; 0x29 - 8003e76: f7ff fd33 bl 80038e0 + 8003eaa: 2125 movs r1, #37 ; 0x25 + 8003eac: 2029 movs r0, #41 ; 0x29 + 8003eae: f7ff fd33 bl 8003918 LCD_WriteReg(0x002B,0x000D); - 8003e7a: 210d movs r1, #13 - 8003e7c: 202b movs r0, #43 ; 0x2b - 8003e7e: f7ff fd2f bl 80038e0 + 8003eb2: 210d movs r1, #13 + 8003eb4: 202b movs r0, #43 ; 0x2b + 8003eb6: f7ff fd2f bl 8003918 //gamma LCD_WriteReg(0x0030,0x0007); - 8003e82: 2107 movs r1, #7 - 8003e84: 2030 movs r0, #48 ; 0x30 - 8003e86: f7ff fd2b bl 80038e0 + 8003eba: 2107 movs r1, #7 + 8003ebc: 2030 movs r0, #48 ; 0x30 + 8003ebe: f7ff fd2b bl 8003918 LCD_WriteReg(0x0031,0x0303); - 8003e8a: f240 3103 movw r1, #771 ; 0x303 - 8003e8e: 2031 movs r0, #49 ; 0x31 - 8003e90: f7ff fd26 bl 80038e0 + 8003ec2: f240 3103 movw r1, #771 ; 0x303 + 8003ec6: 2031 movs r0, #49 ; 0x31 + 8003ec8: f7ff fd26 bl 8003918 LCD_WriteReg(0x0032,0x0003);// 0006 - 8003e94: 2103 movs r1, #3 - 8003e96: 2032 movs r0, #50 ; 0x32 - 8003e98: f7ff fd22 bl 80038e0 + 8003ecc: 2103 movs r1, #3 + 8003ece: 2032 movs r0, #50 ; 0x32 + 8003ed0: f7ff fd22 bl 8003918 LCD_WriteReg(0x0035,0x0206); - 8003e9c: f240 2106 movw r1, #518 ; 0x206 - 8003ea0: 2035 movs r0, #53 ; 0x35 - 8003ea2: f7ff fd1d bl 80038e0 + 8003ed4: f240 2106 movw r1, #518 ; 0x206 + 8003ed8: 2035 movs r0, #53 ; 0x35 + 8003eda: f7ff fd1d bl 8003918 LCD_WriteReg(0x0036,0x0008); - 8003ea6: 2108 movs r1, #8 - 8003ea8: 2036 movs r0, #54 ; 0x36 - 8003eaa: f7ff fd19 bl 80038e0 + 8003ede: 2108 movs r1, #8 + 8003ee0: 2036 movs r0, #54 ; 0x36 + 8003ee2: f7ff fd19 bl 8003918 LCD_WriteReg(0x0037,0x0406); - 8003eae: f240 4106 movw r1, #1030 ; 0x406 - 8003eb2: 2037 movs r0, #55 ; 0x37 - 8003eb4: f7ff fd14 bl 80038e0 + 8003ee6: f240 4106 movw r1, #1030 ; 0x406 + 8003eea: 2037 movs r0, #55 ; 0x37 + 8003eec: f7ff fd14 bl 8003918 LCD_WriteReg(0x0038,0x0304);//0200 - 8003eb8: f44f 7141 mov.w r1, #772 ; 0x304 - 8003ebc: 2038 movs r0, #56 ; 0x38 - 8003ebe: f7ff fd0f bl 80038e0 + 8003ef0: f44f 7141 mov.w r1, #772 ; 0x304 + 8003ef4: 2038 movs r0, #56 ; 0x38 + 8003ef6: f7ff fd0f bl 8003918 LCD_WriteReg(0x0039,0x0007); - 8003ec2: 2107 movs r1, #7 - 8003ec4: 2039 movs r0, #57 ; 0x39 - 8003ec6: f7ff fd0b bl 80038e0 + 8003efa: 2107 movs r1, #7 + 8003efc: 2039 movs r0, #57 ; 0x39 + 8003efe: f7ff fd0b bl 8003918 LCD_WriteReg(0x003C,0x0602);// 0504 - 8003eca: f240 6102 movw r1, #1538 ; 0x602 - 8003ece: 203c movs r0, #60 ; 0x3c - 8003ed0: f7ff fd06 bl 80038e0 + 8003f02: f240 6102 movw r1, #1538 ; 0x602 + 8003f06: 203c movs r0, #60 ; 0x3c + 8003f08: f7ff fd06 bl 8003918 LCD_WriteReg(0x003D,0x0008); - 8003ed4: 2108 movs r1, #8 - 8003ed6: 203d movs r0, #61 ; 0x3d - 8003ed8: f7ff fd02 bl 80038e0 + 8003f0c: 2108 movs r1, #8 + 8003f0e: 203d movs r0, #61 ; 0x3d + 8003f10: f7ff fd02 bl 8003918 //ram LCD_WriteReg(0x0050,0x0000); - 8003edc: 2100 movs r1, #0 - 8003ede: 2050 movs r0, #80 ; 0x50 - 8003ee0: f7ff fcfe bl 80038e0 + 8003f14: 2100 movs r1, #0 + 8003f16: 2050 movs r0, #80 ; 0x50 + 8003f18: f7ff fcfe bl 8003918 LCD_WriteReg(0x0051,0x00EF); - 8003ee4: 21ef movs r1, #239 ; 0xef - 8003ee6: 2051 movs r0, #81 ; 0x51 - 8003ee8: f7ff fcfa bl 80038e0 + 8003f1c: 21ef movs r1, #239 ; 0xef + 8003f1e: 2051 movs r0, #81 ; 0x51 + 8003f20: f7ff fcfa bl 8003918 LCD_WriteReg(0x0052,0x0000); - 8003eec: 2100 movs r1, #0 - 8003eee: 2052 movs r0, #82 ; 0x52 - 8003ef0: f7ff fcf6 bl 80038e0 + 8003f24: 2100 movs r1, #0 + 8003f26: 2052 movs r0, #82 ; 0x52 + 8003f28: f7ff fcf6 bl 8003918 LCD_WriteReg(0x0053,0x013F); - 8003ef4: f240 113f movw r1, #319 ; 0x13f - 8003ef8: 2053 movs r0, #83 ; 0x53 - 8003efa: f7ff fcf1 bl 80038e0 + 8003f2c: f240 113f movw r1, #319 ; 0x13f + 8003f30: 2053 movs r0, #83 ; 0x53 + 8003f32: f7ff fcf1 bl 8003918 LCD_WriteReg(0x0060,0xA700); - 8003efe: f44f 4127 mov.w r1, #42752 ; 0xa700 - 8003f02: 2060 movs r0, #96 ; 0x60 - 8003f04: f7ff fcec bl 80038e0 + 8003f36: f44f 4127 mov.w r1, #42752 ; 0xa700 + 8003f3a: 2060 movs r0, #96 ; 0x60 + 8003f3c: f7ff fcec bl 8003918 LCD_WriteReg(0x0061,0x0001); - 8003f08: 2101 movs r1, #1 - 8003f0a: 2061 movs r0, #97 ; 0x61 - 8003f0c: f7ff fce8 bl 80038e0 + 8003f40: 2101 movs r1, #1 + 8003f42: 2061 movs r0, #97 ; 0x61 + 8003f44: f7ff fce8 bl 8003918 LCD_WriteReg(0x006A,0x0000); - 8003f10: 2100 movs r1, #0 - 8003f12: 206a movs r0, #106 ; 0x6a - 8003f14: f7ff fce4 bl 80038e0 + 8003f48: 2100 movs r1, #0 + 8003f4a: 206a movs r0, #106 ; 0x6a + 8003f4c: f7ff fce4 bl 8003918 // LCD_WriteReg(0x0080,0x0000); - 8003f18: 2100 movs r1, #0 - 8003f1a: 2080 movs r0, #128 ; 0x80 - 8003f1c: f7ff fce0 bl 80038e0 + 8003f50: 2100 movs r1, #0 + 8003f52: 2080 movs r0, #128 ; 0x80 + 8003f54: f7ff fce0 bl 8003918 LCD_WriteReg(0x0081,0x0000); - 8003f20: 2100 movs r1, #0 - 8003f22: 2081 movs r0, #129 ; 0x81 - 8003f24: f7ff fcdc bl 80038e0 + 8003f58: 2100 movs r1, #0 + 8003f5a: 2081 movs r0, #129 ; 0x81 + 8003f5c: f7ff fcdc bl 8003918 LCD_WriteReg(0x0082,0x0000); - 8003f28: 2100 movs r1, #0 - 8003f2a: 2082 movs r0, #130 ; 0x82 - 8003f2c: f7ff fcd8 bl 80038e0 + 8003f60: 2100 movs r1, #0 + 8003f62: 2082 movs r0, #130 ; 0x82 + 8003f64: f7ff fcd8 bl 8003918 LCD_WriteReg(0x0083,0x0000); - 8003f30: 2100 movs r1, #0 - 8003f32: 2083 movs r0, #131 ; 0x83 - 8003f34: f7ff fcd4 bl 80038e0 + 8003f68: 2100 movs r1, #0 + 8003f6a: 2083 movs r0, #131 ; 0x83 + 8003f6c: f7ff fcd4 bl 8003918 LCD_WriteReg(0x0084,0x0000); - 8003f38: 2100 movs r1, #0 - 8003f3a: 2084 movs r0, #132 ; 0x84 - 8003f3c: f7ff fcd0 bl 80038e0 + 8003f70: 2100 movs r1, #0 + 8003f72: 2084 movs r0, #132 ; 0x84 + 8003f74: f7ff fcd0 bl 8003918 LCD_WriteReg(0x0085,0x0000); - 8003f40: 2100 movs r1, #0 - 8003f42: 2085 movs r0, #133 ; 0x85 - 8003f44: f7ff fccc bl 80038e0 + 8003f78: 2100 movs r1, #0 + 8003f7a: 2085 movs r0, #133 ; 0x85 + 8003f7c: f7ff fccc bl 8003918 // LCD_WriteReg(0x0090,0x0010); - 8003f48: 2110 movs r1, #16 - 8003f4a: 2090 movs r0, #144 ; 0x90 - 8003f4c: f7ff fcc8 bl 80038e0 + 8003f80: 2110 movs r1, #16 + 8003f82: 2090 movs r0, #144 ; 0x90 + 8003f84: f7ff fcc8 bl 8003918 LCD_WriteReg(0x0092,0x0600); - 8003f50: f44f 61c0 mov.w r1, #1536 ; 0x600 - 8003f54: 2092 movs r0, #146 ; 0x92 - 8003f56: f7ff fcc3 bl 80038e0 + 8003f88: f44f 61c0 mov.w r1, #1536 ; 0x600 + 8003f8c: 2092 movs r0, #146 ; 0x92 + 8003f8e: f7ff fcc3 bl 8003918 LCD_WriteReg(0x0007,0x0133); - 8003f5a: f240 1133 movw r1, #307 ; 0x133 - 8003f5e: 2007 movs r0, #7 - 8003f60: f7ff fcbe bl 80038e0 + 8003f92: f240 1133 movw r1, #307 ; 0x133 + 8003f96: 2007 movs r0, #7 + 8003f98: f7ff fcbe bl 8003918 LCD_WriteReg(0x00,0x0022);// - 8003f64: 2122 movs r1, #34 ; 0x22 - 8003f66: 2000 movs r0, #0 - 8003f68: f7ff fcba bl 80038e0 + 8003f9c: 2122 movs r1, #34 ; 0x22 + 8003f9e: 2000 movs r0, #0 + 8003fa0: f7ff fcba bl 8003918 LCD_Display_Dir(1); //默认为h屏 - 8003f6c: 2001 movs r0, #1 - 8003f6e: f7ff fe4f bl 8003c10 + 8003fa4: 2001 movs r0, #1 + 8003fa6: f7ff fe4f bl 8003c48 LCD_BL(0); - 8003f72: 2200 movs r2, #0 - 8003f74: 2101 movs r1, #1 - 8003f76: 4803 ldr r0, [pc, #12] ; (8003f84 ) - 8003f78: f7fd ff51 bl 8001e1e + 8003faa: 2200 movs r2, #0 + 8003fac: 2101 movs r1, #1 + 8003fae: 4803 ldr r0, [pc, #12] ; (8003fbc ) + 8003fb0: f7fd ff51 bl 8001e56 } - 8003f7c: bf00 nop - 8003f7e: bd80 pop {r7, pc} - 8003f80: 200002a8 .word 0x200002a8 - 8003f84: 40010c00 .word 0x40010c00 + 8003fb4: bf00 nop + 8003fb6: bd80 pop {r7, pc} + 8003fb8: 200002a8 .word 0x200002a8 + 8003fbc: 40010c00 .word 0x40010c00 -08003f88 : +08003fc0 : //***********************************************************打点 读点 什么的 //设置光标位置 //Xpos:横坐标 //Ypos:纵坐标 void LCD_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 8003f88: b580 push {r7, lr} - 8003f8a: b082 sub sp, #8 - 8003f8c: af00 add r7, sp, #0 - 8003f8e: 4603 mov r3, r0 - 8003f90: 460a mov r2, r1 - 8003f92: 80fb strh r3, [r7, #6] - 8003f94: 4613 mov r3, r2 - 8003f96: 80bb strh r3, [r7, #4] + 8003fc0: b580 push {r7, lr} + 8003fc2: b082 sub sp, #8 + 8003fc4: af00 add r7, sp, #0 + 8003fc6: 4603 mov r3, r0 + 8003fc8: 460a mov r2, r1 + 8003fca: 80fb strh r3, [r7, #6] + 8003fcc: 4613 mov r3, r2 + 8003fce: 80bb strh r3, [r7, #4] if(lcddev.id==0X9341||lcddev.id==0X5310) - 8003f98: 4b42 ldr r3, [pc, #264] ; (80040a4 ) - 8003f9a: 889b ldrh r3, [r3, #4] - 8003f9c: f249 3241 movw r2, #37697 ; 0x9341 - 8003fa0: 4293 cmp r3, r2 - 8003fa2: d005 beq.n 8003fb0 - 8003fa4: 4b3f ldr r3, [pc, #252] ; (80040a4 ) - 8003fa6: 889b ldrh r3, [r3, #4] - 8003fa8: f245 3210 movw r2, #21264 ; 0x5310 - 8003fac: 4293 cmp r3, r2 - 8003fae: d124 bne.n 8003ffa + 8003fd0: 4b42 ldr r3, [pc, #264] ; (80040dc ) + 8003fd2: 889b ldrh r3, [r3, #4] + 8003fd4: f249 3241 movw r2, #37697 ; 0x9341 + 8003fd8: 4293 cmp r3, r2 + 8003fda: d005 beq.n 8003fe8 + 8003fdc: 4b3f ldr r3, [pc, #252] ; (80040dc ) + 8003fde: 889b ldrh r3, [r3, #4] + 8003fe0: f245 3210 movw r2, #21264 ; 0x5310 + 8003fe4: 4293 cmp r3, r2 + 8003fe6: d124 bne.n 8004032 { LCD_WR_REG(lcddev.setxcmd); - 8003fb0: 4b3c ldr r3, [pc, #240] ; (80040a4 ) - 8003fb2: 7a1b ldrb r3, [r3, #8] - 8003fb4: b29b uxth r3, r3 - 8003fb6: 4618 mov r0, r3 - 8003fb8: f7ff fc74 bl 80038a4 + 8003fe8: 4b3c ldr r3, [pc, #240] ; (80040dc ) + 8003fea: 7a1b ldrb r3, [r3, #8] + 8003fec: b29b uxth r3, r3 + 8003fee: 4618 mov r0, r3 + 8003ff0: f7ff fc74 bl 80038dc LCD_WR_DATA(Xpos>>8); - 8003fbc: 88fb ldrh r3, [r7, #6] - 8003fbe: 0a1b lsrs r3, r3, #8 - 8003fc0: b29b uxth r3, r3 - 8003fc2: 4618 mov r0, r3 - 8003fc4: f7ff fc7c bl 80038c0 + 8003ff4: 88fb ldrh r3, [r7, #6] + 8003ff6: 0a1b lsrs r3, r3, #8 + 8003ff8: b29b uxth r3, r3 + 8003ffa: 4618 mov r0, r3 + 8003ffc: f7ff fc7c bl 80038f8 LCD_WR_DATA(Xpos&0XFF); - 8003fc8: 88fb ldrh r3, [r7, #6] - 8003fca: b2db uxtb r3, r3 - 8003fcc: b29b uxth r3, r3 - 8003fce: 4618 mov r0, r3 - 8003fd0: f7ff fc76 bl 80038c0 + 8004000: 88fb ldrh r3, [r7, #6] + 8004002: b2db uxtb r3, r3 + 8004004: b29b uxth r3, r3 + 8004006: 4618 mov r0, r3 + 8004008: f7ff fc76 bl 80038f8 LCD_WR_REG(lcddev.setycmd); - 8003fd4: 4b33 ldr r3, [pc, #204] ; (80040a4 ) - 8003fd6: 7a5b ldrb r3, [r3, #9] - 8003fd8: b29b uxth r3, r3 - 8003fda: 4618 mov r0, r3 - 8003fdc: f7ff fc62 bl 80038a4 + 800400c: 4b33 ldr r3, [pc, #204] ; (80040dc ) + 800400e: 7a5b ldrb r3, [r3, #9] + 8004010: b29b uxth r3, r3 + 8004012: 4618 mov r0, r3 + 8004014: f7ff fc62 bl 80038dc LCD_WR_DATA(Ypos>>8); - 8003fe0: 88bb ldrh r3, [r7, #4] - 8003fe2: 0a1b lsrs r3, r3, #8 - 8003fe4: b29b uxth r3, r3 - 8003fe6: 4618 mov r0, r3 - 8003fe8: f7ff fc6a bl 80038c0 + 8004018: 88bb ldrh r3, [r7, #4] + 800401a: 0a1b lsrs r3, r3, #8 + 800401c: b29b uxth r3, r3 + 800401e: 4618 mov r0, r3 + 8004020: f7ff fc6a bl 80038f8 LCD_WR_DATA(Ypos&0XFF); - 8003fec: 88bb ldrh r3, [r7, #4] - 8003fee: b2db uxtb r3, r3 - 8003ff0: b29b uxth r3, r3 - 8003ff2: 4618 mov r0, r3 - 8003ff4: f7ff fc64 bl 80038c0 + 8004024: 88bb ldrh r3, [r7, #4] + 8004026: b2db uxtb r3, r3 + 8004028: b29b uxth r3, r3 + 800402a: 4618 mov r0, r3 + 800402c: f7ff fc64 bl 80038f8 { if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 LCD_WriteReg(lcddev.setxcmd, Xpos); LCD_WriteReg(lcddev.setycmd, Ypos); } } - 8003ff8: e050 b.n 800409c + 8004030: e050 b.n 80040d4 }else if(lcddev.id==0X6804) - 8003ffa: 4b2a ldr r3, [pc, #168] ; (80040a4 ) - 8003ffc: 889b ldrh r3, [r3, #4] - 8003ffe: f646 0204 movw r2, #26628 ; 0x6804 - 8004002: 4293 cmp r3, r2 - 8004004: d12f bne.n 8004066 + 8004032: 4b2a ldr r3, [pc, #168] ; (80040dc ) + 8004034: 889b ldrh r3, [r3, #4] + 8004036: f646 0204 movw r2, #26628 ; 0x6804 + 800403a: 4293 cmp r3, r2 + 800403c: d12f bne.n 800409e if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏时处理 - 8004006: 4b27 ldr r3, [pc, #156] ; (80040a4 ) - 8004008: 799b ldrb r3, [r3, #6] - 800400a: 2b01 cmp r3, #1 - 800400c: d106 bne.n 800401c - 800400e: 4b25 ldr r3, [pc, #148] ; (80040a4 ) - 8004010: 881a ldrh r2, [r3, #0] - 8004012: 88fb ldrh r3, [r7, #6] - 8004014: 1ad3 subs r3, r2, r3 - 8004016: b29b uxth r3, r3 - 8004018: 3b01 subs r3, #1 - 800401a: 80fb strh r3, [r7, #6] + 800403e: 4b27 ldr r3, [pc, #156] ; (80040dc ) + 8004040: 799b ldrb r3, [r3, #6] + 8004042: 2b01 cmp r3, #1 + 8004044: d106 bne.n 8004054 + 8004046: 4b25 ldr r3, [pc, #148] ; (80040dc ) + 8004048: 881a ldrh r2, [r3, #0] + 800404a: 88fb ldrh r3, [r7, #6] + 800404c: 1ad3 subs r3, r2, r3 + 800404e: b29b uxth r3, r3 + 8004050: 3b01 subs r3, #1 + 8004052: 80fb strh r3, [r7, #6] LCD_WR_REG(lcddev.setxcmd); - 800401c: 4b21 ldr r3, [pc, #132] ; (80040a4 ) - 800401e: 7a1b ldrb r3, [r3, #8] - 8004020: b29b uxth r3, r3 - 8004022: 4618 mov r0, r3 - 8004024: f7ff fc3e bl 80038a4 + 8004054: 4b21 ldr r3, [pc, #132] ; (80040dc ) + 8004056: 7a1b ldrb r3, [r3, #8] + 8004058: b29b uxth r3, r3 + 800405a: 4618 mov r0, r3 + 800405c: f7ff fc3e bl 80038dc LCD_WR_DATA(Xpos>>8); - 8004028: 88fb ldrh r3, [r7, #6] - 800402a: 0a1b lsrs r3, r3, #8 - 800402c: b29b uxth r3, r3 - 800402e: 4618 mov r0, r3 - 8004030: f7ff fc46 bl 80038c0 + 8004060: 88fb ldrh r3, [r7, #6] + 8004062: 0a1b lsrs r3, r3, #8 + 8004064: b29b uxth r3, r3 + 8004066: 4618 mov r0, r3 + 8004068: f7ff fc46 bl 80038f8 LCD_WR_DATA(Xpos&0XFF); - 8004034: 88fb ldrh r3, [r7, #6] - 8004036: b2db uxtb r3, r3 - 8004038: b29b uxth r3, r3 - 800403a: 4618 mov r0, r3 - 800403c: f7ff fc40 bl 80038c0 + 800406c: 88fb ldrh r3, [r7, #6] + 800406e: b2db uxtb r3, r3 + 8004070: b29b uxth r3, r3 + 8004072: 4618 mov r0, r3 + 8004074: f7ff fc40 bl 80038f8 LCD_WR_REG(lcddev.setycmd); - 8004040: 4b18 ldr r3, [pc, #96] ; (80040a4 ) - 8004042: 7a5b ldrb r3, [r3, #9] - 8004044: b29b uxth r3, r3 - 8004046: 4618 mov r0, r3 - 8004048: f7ff fc2c bl 80038a4 + 8004078: 4b18 ldr r3, [pc, #96] ; (80040dc ) + 800407a: 7a5b ldrb r3, [r3, #9] + 800407c: b29b uxth r3, r3 + 800407e: 4618 mov r0, r3 + 8004080: f7ff fc2c bl 80038dc LCD_WR_DATA(Ypos>>8); - 800404c: 88bb ldrh r3, [r7, #4] - 800404e: 0a1b lsrs r3, r3, #8 - 8004050: b29b uxth r3, r3 - 8004052: 4618 mov r0, r3 - 8004054: f7ff fc34 bl 80038c0 + 8004084: 88bb ldrh r3, [r7, #4] + 8004086: 0a1b lsrs r3, r3, #8 + 8004088: b29b uxth r3, r3 + 800408a: 4618 mov r0, r3 + 800408c: f7ff fc34 bl 80038f8 LCD_WR_DATA(Ypos&0XFF); - 8004058: 88bb ldrh r3, [r7, #4] - 800405a: b2db uxtb r3, r3 - 800405c: b29b uxth r3, r3 - 800405e: 4618 mov r0, r3 - 8004060: f7ff fc2e bl 80038c0 -} - 8004064: e01a b.n 800409c - if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 - 8004066: 4b0f ldr r3, [pc, #60] ; (80040a4 ) - 8004068: 799b ldrb r3, [r3, #6] - 800406a: 2b01 cmp r3, #1 - 800406c: d106 bne.n 800407c - 800406e: 4b0d ldr r3, [pc, #52] ; (80040a4 ) - 8004070: 881a ldrh r2, [r3, #0] - 8004072: 88fb ldrh r3, [r7, #6] - 8004074: 1ad3 subs r3, r2, r3 - 8004076: b29b uxth r3, r3 - 8004078: 3b01 subs r3, #1 - 800407a: 80fb strh r3, [r7, #6] - LCD_WriteReg(lcddev.setxcmd, Xpos); - 800407c: 4b09 ldr r3, [pc, #36] ; (80040a4 ) - 800407e: 7a1b ldrb r3, [r3, #8] - 8004080: b29b uxth r3, r3 - 8004082: 88fa ldrh r2, [r7, #6] - 8004084: 4611 mov r1, r2 - 8004086: 4618 mov r0, r3 - 8004088: f7ff fc2a bl 80038e0 - LCD_WriteReg(lcddev.setycmd, Ypos); - 800408c: 4b05 ldr r3, [pc, #20] ; (80040a4 ) - 800408e: 7a5b ldrb r3, [r3, #9] - 8004090: b29b uxth r3, r3 - 8004092: 88ba ldrh r2, [r7, #4] - 8004094: 4611 mov r1, r2 + 8004090: 88bb ldrh r3, [r7, #4] + 8004092: b2db uxtb r3, r3 + 8004094: b29b uxth r3, r3 8004096: 4618 mov r0, r3 - 8004098: f7ff fc22 bl 80038e0 + 8004098: f7ff fc2e bl 80038f8 } - 800409c: bf00 nop - 800409e: 3708 adds r7, #8 - 80040a0: 46bd mov sp, r7 - 80040a2: bd80 pop {r7, pc} - 80040a4: 200002a8 .word 0x200002a8 + 800409c: e01a b.n 80040d4 + if(lcddev.dir==1)Xpos=lcddev.width-1-Xpos;//横屏其实就是调转x,y坐标 + 800409e: 4b0f ldr r3, [pc, #60] ; (80040dc ) + 80040a0: 799b ldrb r3, [r3, #6] + 80040a2: 2b01 cmp r3, #1 + 80040a4: d106 bne.n 80040b4 + 80040a6: 4b0d ldr r3, [pc, #52] ; (80040dc ) + 80040a8: 881a ldrh r2, [r3, #0] + 80040aa: 88fb ldrh r3, [r7, #6] + 80040ac: 1ad3 subs r3, r2, r3 + 80040ae: b29b uxth r3, r3 + 80040b0: 3b01 subs r3, #1 + 80040b2: 80fb strh r3, [r7, #6] + LCD_WriteReg(lcddev.setxcmd, Xpos); + 80040b4: 4b09 ldr r3, [pc, #36] ; (80040dc ) + 80040b6: 7a1b ldrb r3, [r3, #8] + 80040b8: b29b uxth r3, r3 + 80040ba: 88fa ldrh r2, [r7, #6] + 80040bc: 4611 mov r1, r2 + 80040be: 4618 mov r0, r3 + 80040c0: f7ff fc2a bl 8003918 + LCD_WriteReg(lcddev.setycmd, Ypos); + 80040c4: 4b05 ldr r3, [pc, #20] ; (80040dc ) + 80040c6: 7a5b ldrb r3, [r3, #9] + 80040c8: b29b uxth r3, r3 + 80040ca: 88ba ldrh r2, [r7, #4] + 80040cc: 4611 mov r1, r2 + 80040ce: 4618 mov r0, r3 + 80040d0: f7ff fc22 bl 8003918 +} + 80040d4: bf00 nop + 80040d6: 3708 adds r7, #8 + 80040d8: 46bd mov sp, r7 + 80040da: bd80 pop {r7, pc} + 80040dc: 200002a8 .word 0x200002a8 -080040a8 : +080040e0 : } //画点 //x,y:坐标 //POINT_COLOR:此点的颜色 void LCD_set_dot(uint16_t x,uint16_t y,uint16_t color) { - 80040a8: b580 push {r7, lr} - 80040aa: b082 sub sp, #8 - 80040ac: af00 add r7, sp, #0 - 80040ae: 4603 mov r3, r0 - 80040b0: 80fb strh r3, [r7, #6] - 80040b2: 460b mov r3, r1 - 80040b4: 80bb strh r3, [r7, #4] - 80040b6: 4613 mov r3, r2 - 80040b8: 807b strh r3, [r7, #2] + 80040e0: b580 push {r7, lr} + 80040e2: b082 sub sp, #8 + 80040e4: af00 add r7, sp, #0 + 80040e6: 4603 mov r3, r0 + 80040e8: 80fb strh r3, [r7, #6] + 80040ea: 460b mov r3, r1 + 80040ec: 80bb strh r3, [r7, #4] + 80040ee: 4613 mov r3, r2 + 80040f0: 807b strh r3, [r7, #2] LCD_SetCursor(x,y); //设置光标位置 - 80040ba: 88ba ldrh r2, [r7, #4] - 80040bc: 88fb ldrh r3, [r7, #6] - 80040be: 4611 mov r1, r2 - 80040c0: 4618 mov r0, r3 - 80040c2: f7ff ff61 bl 8003f88 + 80040f2: 88ba ldrh r2, [r7, #4] + 80040f4: 88fb ldrh r3, [r7, #6] + 80040f6: 4611 mov r1, r2 + 80040f8: 4618 mov r0, r3 + 80040fa: f7ff ff61 bl 8003fc0 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 80040c6: 4b06 ldr r3, [pc, #24] ; (80040e0 ) - 80040c8: 79da ldrb r2, [r3, #7] - 80040ca: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 80040ce: b292 uxth r2, r2 - 80040d0: 801a strh r2, [r3, #0] + 80040fe: 4b06 ldr r3, [pc, #24] ; (8004118 ) + 8004100: 79da ldrb r2, [r3, #7] + 8004102: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 8004106: b292 uxth r2, r2 + 8004108: 801a strh r2, [r3, #0] LCD_DATA_ADDRESS=color; - 80040d2: 4a04 ldr r2, [pc, #16] ; (80040e4 ) - 80040d4: 887b ldrh r3, [r7, #2] - 80040d6: 8013 strh r3, [r2, #0] + 800410a: 4a04 ldr r2, [pc, #16] ; (800411c ) + 800410c: 887b ldrh r3, [r7, #2] + 800410e: 8013 strh r3, [r2, #0] } - 80040d8: bf00 nop - 80040da: 3708 adds r7, #8 - 80040dc: 46bd mov sp, r7 - 80040de: bd80 pop {r7, pc} - 80040e0: 200002a8 .word 0x200002a8 - 80040e4: 6c000800 .word 0x6c000800 + 8004110: bf00 nop + 8004112: 3708 adds r7, #8 + 8004114: 46bd mov sp, r7 + 8004116: bd80 pop {r7, pc} + 8004118: 200002a8 .word 0x200002a8 + 800411c: 6c000800 .word 0x6c000800 -080040e8 : +08004120 : //清屏函数 //color:要清屏的填充色 void LCD_Clear(uint16_t color) { - 80040e8: b580 push {r7, lr} - 80040ea: b084 sub sp, #16 - 80040ec: af00 add r7, sp, #0 - 80040ee: 4603 mov r3, r0 - 80040f0: 80fb strh r3, [r7, #6] + 8004120: b580 push {r7, lr} + 8004122: b084 sub sp, #16 + 8004124: af00 add r7, sp, #0 + 8004126: 4603 mov r3, r0 + 8004128: 80fb strh r3, [r7, #6] uint32_t index=0; - 80040f2: 2300 movs r3, #0 - 80040f4: 60fb str r3, [r7, #12] + 800412a: 2300 movs r3, #0 + 800412c: 60fb str r3, [r7, #12] uint32_t totalpoint=lcddev.width; - 80040f6: 4b23 ldr r3, [pc, #140] ; (8004184 ) - 80040f8: 881b ldrh r3, [r3, #0] - 80040fa: 60bb str r3, [r7, #8] + 800412e: 4b23 ldr r3, [pc, #140] ; (80041bc ) + 8004130: 881b ldrh r3, [r3, #0] + 8004132: 60bb str r3, [r7, #8] totalpoint*=lcddev.height; //得到总点数 - 80040fc: 4b21 ldr r3, [pc, #132] ; (8004184 ) - 80040fe: 885b ldrh r3, [r3, #2] - 8004100: 461a mov r2, r3 - 8004102: 68bb ldr r3, [r7, #8] - 8004104: fb02 f303 mul.w r3, r2, r3 - 8004108: 60bb str r3, [r7, #8] + 8004134: 4b21 ldr r3, [pc, #132] ; (80041bc ) + 8004136: 885b ldrh r3, [r3, #2] + 8004138: 461a mov r2, r3 + 800413a: 68bb ldr r3, [r7, #8] + 800413c: fb02 f303 mul.w r3, r2, r3 + 8004140: 60bb str r3, [r7, #8] if((lcddev.id==0X6804)&&(lcddev.dir==1))//6804横屏的时候特殊处理 - 800410a: 4b1e ldr r3, [pc, #120] ; (8004184 ) - 800410c: 889b ldrh r3, [r3, #4] - 800410e: f646 0204 movw r2, #26628 ; 0x6804 - 8004112: 4293 cmp r3, r2 - 8004114: d11a bne.n 800414c - 8004116: 4b1b ldr r3, [pc, #108] ; (8004184 ) - 8004118: 799b ldrb r3, [r3, #6] - 800411a: 2b01 cmp r3, #1 - 800411c: d116 bne.n 800414c + 8004142: 4b1e ldr r3, [pc, #120] ; (80041bc ) + 8004144: 889b ldrh r3, [r3, #4] + 8004146: f646 0204 movw r2, #26628 ; 0x6804 + 800414a: 4293 cmp r3, r2 + 800414c: d11a bne.n 8004184 + 800414e: 4b1b ldr r3, [pc, #108] ; (80041bc ) + 8004150: 799b ldrb r3, [r3, #6] + 8004152: 2b01 cmp r3, #1 + 8004154: d116 bne.n 8004184 { lcddev.dir=0; - 800411e: 4b19 ldr r3, [pc, #100] ; (8004184 ) - 8004120: 2200 movs r2, #0 - 8004122: 719a strb r2, [r3, #6] + 8004156: 4b19 ldr r3, [pc, #100] ; (80041bc ) + 8004158: 2200 movs r2, #0 + 800415a: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2A; - 8004124: 4b17 ldr r3, [pc, #92] ; (8004184 ) - 8004126: 222a movs r2, #42 ; 0x2a - 8004128: 721a strb r2, [r3, #8] + 800415c: 4b17 ldr r3, [pc, #92] ; (80041bc ) + 800415e: 222a movs r2, #42 ; 0x2a + 8004160: 721a strb r2, [r3, #8] lcddev.setycmd=0X2B; - 800412a: 4b16 ldr r3, [pc, #88] ; (8004184 ) - 800412c: 222b movs r2, #43 ; 0x2b - 800412e: 725a strb r2, [r3, #9] + 8004162: 4b16 ldr r3, [pc, #88] ; (80041bc ) + 8004164: 222b movs r2, #43 ; 0x2b + 8004166: 725a strb r2, [r3, #9] LCD_SetCursor(0x00,0x0000); //设置光标位置 - 8004130: 2100 movs r1, #0 - 8004132: 2000 movs r0, #0 - 8004134: f7ff ff28 bl 8003f88 + 8004168: 2100 movs r1, #0 + 800416a: 2000 movs r0, #0 + 800416c: f7ff ff28 bl 8003fc0 lcddev.dir=1; - 8004138: 4b12 ldr r3, [pc, #72] ; (8004184 ) - 800413a: 2201 movs r2, #1 - 800413c: 719a strb r2, [r3, #6] + 8004170: 4b12 ldr r3, [pc, #72] ; (80041bc ) + 8004172: 2201 movs r2, #1 + 8004174: 719a strb r2, [r3, #6] lcddev.setxcmd=0X2B; - 800413e: 4b11 ldr r3, [pc, #68] ; (8004184 ) - 8004140: 222b movs r2, #43 ; 0x2b - 8004142: 721a strb r2, [r3, #8] + 8004176: 4b11 ldr r3, [pc, #68] ; (80041bc ) + 8004178: 222b movs r2, #43 ; 0x2b + 800417a: 721a strb r2, [r3, #8] lcddev.setycmd=0X2A; - 8004144: 4b0f ldr r3, [pc, #60] ; (8004184 ) - 8004146: 222a movs r2, #42 ; 0x2a - 8004148: 725a strb r2, [r3, #9] - 800414a: e003 b.n 8004154 + 800417c: 4b0f ldr r3, [pc, #60] ; (80041bc ) + 800417e: 222a movs r2, #42 ; 0x2a + 8004180: 725a strb r2, [r3, #9] + 8004182: e003 b.n 800418c }else LCD_SetCursor(0x00,0x0000); //设置光标位置 - 800414c: 2100 movs r1, #0 - 800414e: 2000 movs r0, #0 - 8004150: f7ff ff1a bl 8003f88 + 8004184: 2100 movs r1, #0 + 8004186: 2000 movs r0, #0 + 8004188: f7ff ff1a bl 8003fc0 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 8004154: 4b0b ldr r3, [pc, #44] ; (8004184 ) - 8004156: 79da ldrb r2, [r3, #7] - 8004158: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 800415c: b292 uxth r2, r2 - 800415e: 801a strh r2, [r3, #0] + 800418c: 4b0b ldr r3, [pc, #44] ; (80041bc ) + 800418e: 79da ldrb r2, [r3, #7] + 8004190: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 8004194: b292 uxth r2, r2 + 8004196: 801a strh r2, [r3, #0] for(index=0;index + 8004198: 2300 movs r3, #0 + 800419a: 60fb str r3, [r7, #12] + 800419c: e005 b.n 80041aa { LCD_DATA_ADDRESS=color; - 8004166: 4a08 ldr r2, [pc, #32] ; (8004188 ) - 8004168: 88fb ldrh r3, [r7, #6] - 800416a: 8013 strh r3, [r2, #0] + 800419e: 4a08 ldr r2, [pc, #32] ; (80041c0 ) + 80041a0: 88fb ldrh r3, [r7, #6] + 80041a2: 8013 strh r3, [r2, #0] for(index=0;index + 80041a4: 68fb ldr r3, [r7, #12] + 80041a6: 3301 adds r3, #1 + 80041a8: 60fb str r3, [r7, #12] + 80041aa: 68fa ldr r2, [r7, #12] + 80041ac: 68bb ldr r3, [r7, #8] + 80041ae: 429a cmp r2, r3 + 80041b0: d3f5 bcc.n 800419e } } - 800417a: bf00 nop - 800417c: bf00 nop - 800417e: 3710 adds r7, #16 - 8004180: 46bd mov sp, r7 - 8004182: bd80 pop {r7, pc} - 8004184: 200002a8 .word 0x200002a8 - 8004188: 6c000800 .word 0x6c000800 + 80041b2: bf00 nop + 80041b4: bf00 nop + 80041b6: 3710 adds r7, #16 + 80041b8: 46bd mov sp, r7 + 80041ba: bd80 pop {r7, pc} + 80041bc: 200002a8 .word 0x200002a8 + 80041c0: 6c000800 .word 0x6c000800 -0800418c : +080041c4 : //***********************************2D //画线 //x1,y1:起点坐标 //x2,y2:终点坐标 void LCD_DrawLine(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2,uint16_t color) { - 800418c: b590 push {r4, r7, lr} - 800418e: b08d sub sp, #52 ; 0x34 - 8004190: af00 add r7, sp, #0 - 8004192: 4604 mov r4, r0 - 8004194: 4608 mov r0, r1 - 8004196: 4611 mov r1, r2 - 8004198: 461a mov r2, r3 - 800419a: 4623 mov r3, r4 - 800419c: 80fb strh r3, [r7, #6] - 800419e: 4603 mov r3, r0 - 80041a0: 80bb strh r3, [r7, #4] - 80041a2: 460b mov r3, r1 - 80041a4: 807b strh r3, [r7, #2] - 80041a6: 4613 mov r3, r2 - 80041a8: 803b strh r3, [r7, #0] + 80041c4: b590 push {r4, r7, lr} + 80041c6: b08d sub sp, #52 ; 0x34 + 80041c8: af00 add r7, sp, #0 + 80041ca: 4604 mov r4, r0 + 80041cc: 4608 mov r0, r1 + 80041ce: 4611 mov r1, r2 + 80041d0: 461a mov r2, r3 + 80041d2: 4623 mov r3, r4 + 80041d4: 80fb strh r3, [r7, #6] + 80041d6: 4603 mov r3, r0 + 80041d8: 80bb strh r3, [r7, #4] + 80041da: 460b mov r3, r1 + 80041dc: 807b strh r3, [r7, #2] + 80041de: 4613 mov r3, r2 + 80041e0: 803b strh r3, [r7, #0] uint16_t t; int xerr=0,yerr=0,delta_x,delta_y,distance; - 80041aa: 2300 movs r3, #0 - 80041ac: 62bb str r3, [r7, #40] ; 0x28 - 80041ae: 2300 movs r3, #0 - 80041b0: 627b str r3, [r7, #36] ; 0x24 + 80041e2: 2300 movs r3, #0 + 80041e4: 62bb str r3, [r7, #40] ; 0x28 + 80041e6: 2300 movs r3, #0 + 80041e8: 627b str r3, [r7, #36] ; 0x24 int incx,incy,uRow,uCol; delta_x=x2-x1; //计算坐标增量 - 80041b2: 887a ldrh r2, [r7, #2] - 80041b4: 88fb ldrh r3, [r7, #6] - 80041b6: 1ad3 subs r3, r2, r3 - 80041b8: 623b str r3, [r7, #32] + 80041ea: 887a ldrh r2, [r7, #2] + 80041ec: 88fb ldrh r3, [r7, #6] + 80041ee: 1ad3 subs r3, r2, r3 + 80041f0: 623b str r3, [r7, #32] delta_y=y2-y1; - 80041ba: 883a ldrh r2, [r7, #0] - 80041bc: 88bb ldrh r3, [r7, #4] - 80041be: 1ad3 subs r3, r2, r3 - 80041c0: 61fb str r3, [r7, #28] + 80041f2: 883a ldrh r2, [r7, #0] + 80041f4: 88bb ldrh r3, [r7, #4] + 80041f6: 1ad3 subs r3, r2, r3 + 80041f8: 61fb str r3, [r7, #28] uRow=x1; - 80041c2: 88fb ldrh r3, [r7, #6] - 80041c4: 60fb str r3, [r7, #12] + 80041fa: 88fb ldrh r3, [r7, #6] + 80041fc: 60fb str r3, [r7, #12] uCol=y1; - 80041c6: 88bb ldrh r3, [r7, #4] - 80041c8: 60bb str r3, [r7, #8] + 80041fe: 88bb ldrh r3, [r7, #4] + 8004200: 60bb str r3, [r7, #8] if(delta_x>0)incx=1; //设置单步方向 - 80041ca: 6a3b ldr r3, [r7, #32] - 80041cc: 2b00 cmp r3, #0 - 80041ce: dd02 ble.n 80041d6 - 80041d0: 2301 movs r3, #1 - 80041d2: 617b str r3, [r7, #20] - 80041d4: e00b b.n 80041ee + 8004202: 6a3b ldr r3, [r7, #32] + 8004204: 2b00 cmp r3, #0 + 8004206: dd02 ble.n 800420e + 8004208: 2301 movs r3, #1 + 800420a: 617b str r3, [r7, #20] + 800420c: e00b b.n 8004226 else if(delta_x==0)incx=0;//垂直线 - 80041d6: 6a3b ldr r3, [r7, #32] - 80041d8: 2b00 cmp r3, #0 - 80041da: d102 bne.n 80041e2 - 80041dc: 2300 movs r3, #0 - 80041de: 617b str r3, [r7, #20] - 80041e0: e005 b.n 80041ee + 800420e: 6a3b ldr r3, [r7, #32] + 8004210: 2b00 cmp r3, #0 + 8004212: d102 bne.n 800421a + 8004214: 2300 movs r3, #0 + 8004216: 617b str r3, [r7, #20] + 8004218: e005 b.n 8004226 else {incx=-1;delta_x=-delta_x;} - 80041e2: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 80041e6: 617b str r3, [r7, #20] - 80041e8: 6a3b ldr r3, [r7, #32] - 80041ea: 425b negs r3, r3 - 80041ec: 623b str r3, [r7, #32] + 800421a: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 800421e: 617b str r3, [r7, #20] + 8004220: 6a3b ldr r3, [r7, #32] + 8004222: 425b negs r3, r3 + 8004224: 623b str r3, [r7, #32] if(delta_y>0)incy=1; - 80041ee: 69fb ldr r3, [r7, #28] - 80041f0: 2b00 cmp r3, #0 - 80041f2: dd02 ble.n 80041fa - 80041f4: 2301 movs r3, #1 - 80041f6: 613b str r3, [r7, #16] - 80041f8: e00b b.n 8004212 + 8004226: 69fb ldr r3, [r7, #28] + 8004228: 2b00 cmp r3, #0 + 800422a: dd02 ble.n 8004232 + 800422c: 2301 movs r3, #1 + 800422e: 613b str r3, [r7, #16] + 8004230: e00b b.n 800424a else if(delta_y==0)incy=0;//水平线 - 80041fa: 69fb ldr r3, [r7, #28] - 80041fc: 2b00 cmp r3, #0 - 80041fe: d102 bne.n 8004206 - 8004200: 2300 movs r3, #0 - 8004202: 613b str r3, [r7, #16] - 8004204: e005 b.n 8004212 + 8004232: 69fb ldr r3, [r7, #28] + 8004234: 2b00 cmp r3, #0 + 8004236: d102 bne.n 800423e + 8004238: 2300 movs r3, #0 + 800423a: 613b str r3, [r7, #16] + 800423c: e005 b.n 800424a else{incy=-1;delta_y=-delta_y;} - 8004206: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff - 800420a: 613b str r3, [r7, #16] - 800420c: 69fb ldr r3, [r7, #28] - 800420e: 425b negs r3, r3 - 8004210: 61fb str r3, [r7, #28] + 800423e: f04f 33ff mov.w r3, #4294967295 ; 0xffffffff + 8004242: 613b str r3, [r7, #16] + 8004244: 69fb ldr r3, [r7, #28] + 8004246: 425b negs r3, r3 + 8004248: 61fb str r3, [r7, #28] if( delta_x>delta_y)distance=delta_x; //选取基本增量坐标轴 - 8004212: 6a3a ldr r2, [r7, #32] - 8004214: 69fb ldr r3, [r7, #28] - 8004216: 429a cmp r2, r3 - 8004218: dd02 ble.n 8004220 - 800421a: 6a3b ldr r3, [r7, #32] - 800421c: 61bb str r3, [r7, #24] - 800421e: e001 b.n 8004224 + 800424a: 6a3a ldr r2, [r7, #32] + 800424c: 69fb ldr r3, [r7, #28] + 800424e: 429a cmp r2, r3 + 8004250: dd02 ble.n 8004258 + 8004252: 6a3b ldr r3, [r7, #32] + 8004254: 61bb str r3, [r7, #24] + 8004256: e001 b.n 800425c else distance=delta_y; - 8004220: 69fb ldr r3, [r7, #28] - 8004222: 61bb str r3, [r7, #24] + 8004258: 69fb ldr r3, [r7, #28] + 800425a: 61bb str r3, [r7, #24] for(t=0;t<=distance+1;t++ )//画线输出 - 8004224: 2300 movs r3, #0 - 8004226: 85fb strh r3, [r7, #46] ; 0x2e - 8004228: e02b b.n 8004282 + 800425c: 2300 movs r3, #0 + 800425e: 85fb strh r3, [r7, #46] ; 0x2e + 8004260: e02b b.n 80042ba { LCD_set_dot(uRow,uCol,color);//画点 - 800422a: 68fb ldr r3, [r7, #12] - 800422c: b29b uxth r3, r3 - 800422e: 68ba ldr r2, [r7, #8] - 8004230: b291 uxth r1, r2 - 8004232: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 - 8004236: 4618 mov r0, r3 - 8004238: f7ff ff36 bl 80040a8 + 8004262: 68fb ldr r3, [r7, #12] + 8004264: b29b uxth r3, r3 + 8004266: 68ba ldr r2, [r7, #8] + 8004268: b291 uxth r1, r2 + 800426a: f8b7 2040 ldrh.w r2, [r7, #64] ; 0x40 + 800426e: 4618 mov r0, r3 + 8004270: f7ff ff36 bl 80040e0 xerr+=delta_x ; - 800423c: 6aba ldr r2, [r7, #40] ; 0x28 - 800423e: 6a3b ldr r3, [r7, #32] - 8004240: 4413 add r3, r2 - 8004242: 62bb str r3, [r7, #40] ; 0x28 + 8004274: 6aba ldr r2, [r7, #40] ; 0x28 + 8004276: 6a3b ldr r3, [r7, #32] + 8004278: 4413 add r3, r2 + 800427a: 62bb str r3, [r7, #40] ; 0x28 yerr+=delta_y ; - 8004244: 6a7a ldr r2, [r7, #36] ; 0x24 - 8004246: 69fb ldr r3, [r7, #28] - 8004248: 4413 add r3, r2 - 800424a: 627b str r3, [r7, #36] ; 0x24 + 800427c: 6a7a ldr r2, [r7, #36] ; 0x24 + 800427e: 69fb ldr r3, [r7, #28] + 8004280: 4413 add r3, r2 + 8004282: 627b str r3, [r7, #36] ; 0x24 if(xerr>distance) - 800424c: 6aba ldr r2, [r7, #40] ; 0x28 - 800424e: 69bb ldr r3, [r7, #24] - 8004250: 429a cmp r2, r3 - 8004252: dd07 ble.n 8004264 + 8004284: 6aba ldr r2, [r7, #40] ; 0x28 + 8004286: 69bb ldr r3, [r7, #24] + 8004288: 429a cmp r2, r3 + 800428a: dd07 ble.n 800429c { xerr-=distance; - 8004254: 6aba ldr r2, [r7, #40] ; 0x28 - 8004256: 69bb ldr r3, [r7, #24] - 8004258: 1ad3 subs r3, r2, r3 - 800425a: 62bb str r3, [r7, #40] ; 0x28 + 800428c: 6aba ldr r2, [r7, #40] ; 0x28 + 800428e: 69bb ldr r3, [r7, #24] + 8004290: 1ad3 subs r3, r2, r3 + 8004292: 62bb str r3, [r7, #40] ; 0x28 uRow+=incx; - 800425c: 68fa ldr r2, [r7, #12] - 800425e: 697b ldr r3, [r7, #20] - 8004260: 4413 add r3, r2 - 8004262: 60fb str r3, [r7, #12] + 8004294: 68fa ldr r2, [r7, #12] + 8004296: 697b ldr r3, [r7, #20] + 8004298: 4413 add r3, r2 + 800429a: 60fb str r3, [r7, #12] } if(yerr>distance) - 8004264: 6a7a ldr r2, [r7, #36] ; 0x24 - 8004266: 69bb ldr r3, [r7, #24] - 8004268: 429a cmp r2, r3 - 800426a: dd07 ble.n 800427c + 800429c: 6a7a ldr r2, [r7, #36] ; 0x24 + 800429e: 69bb ldr r3, [r7, #24] + 80042a0: 429a cmp r2, r3 + 80042a2: dd07 ble.n 80042b4 { yerr-=distance; - 800426c: 6a7a ldr r2, [r7, #36] ; 0x24 - 800426e: 69bb ldr r3, [r7, #24] - 8004270: 1ad3 subs r3, r2, r3 - 8004272: 627b str r3, [r7, #36] ; 0x24 + 80042a4: 6a7a ldr r2, [r7, #36] ; 0x24 + 80042a6: 69bb ldr r3, [r7, #24] + 80042a8: 1ad3 subs r3, r2, r3 + 80042aa: 627b str r3, [r7, #36] ; 0x24 uCol+=incy; - 8004274: 68ba ldr r2, [r7, #8] - 8004276: 693b ldr r3, [r7, #16] - 8004278: 4413 add r3, r2 - 800427a: 60bb str r3, [r7, #8] + 80042ac: 68ba ldr r2, [r7, #8] + 80042ae: 693b ldr r3, [r7, #16] + 80042b0: 4413 add r3, r2 + 80042b2: 60bb str r3, [r7, #8] for(t=0;t<=distance+1;t++ )//画线输出 - 800427c: 8dfb ldrh r3, [r7, #46] ; 0x2e - 800427e: 3301 adds r3, #1 - 8004280: 85fb strh r3, [r7, #46] ; 0x2e - 8004282: 8dfa ldrh r2, [r7, #46] ; 0x2e - 8004284: 69bb ldr r3, [r7, #24] - 8004286: 3301 adds r3, #1 - 8004288: 429a cmp r2, r3 - 800428a: ddce ble.n 800422a + 80042b4: 8dfb ldrh r3, [r7, #46] ; 0x2e + 80042b6: 3301 adds r3, #1 + 80042b8: 85fb strh r3, [r7, #46] ; 0x2e + 80042ba: 8dfa ldrh r2, [r7, #46] ; 0x2e + 80042bc: 69bb ldr r3, [r7, #24] + 80042be: 3301 adds r3, #1 + 80042c0: 429a cmp r2, r3 + 80042c2: ddce ble.n 8004262 } } } - 800428c: bf00 nop - 800428e: bf00 nop - 8004290: 3734 adds r7, #52 ; 0x34 - 8004292: 46bd mov sp, r7 - 8004294: bd90 pop {r4, r7, pc} + 80042c4: bf00 nop + 80042c6: bf00 nop + 80042c8: 3734 adds r7, #52 ; 0x34 + 80042ca: 46bd mov sp, r7 + 80042cc: bd90 pop {r4, r7, pc} -08004296 : +080042ce : //在指定位置画一个指定大小的圆 //(x,y):中心点 //r :半径 void Draw_Circle(uint16_t x0,uint16_t y0,uint16_t r,uint16_t color) { - 8004296: b590 push {r4, r7, lr} - 8004298: b087 sub sp, #28 - 800429a: af00 add r7, sp, #0 - 800429c: 4604 mov r4, r0 - 800429e: 4608 mov r0, r1 - 80042a0: 4611 mov r1, r2 - 80042a2: 461a mov r2, r3 - 80042a4: 4623 mov r3, r4 - 80042a6: 80fb strh r3, [r7, #6] - 80042a8: 4603 mov r3, r0 - 80042aa: 80bb strh r3, [r7, #4] - 80042ac: 460b mov r3, r1 - 80042ae: 807b strh r3, [r7, #2] - 80042b0: 4613 mov r3, r2 - 80042b2: 803b strh r3, [r7, #0] + 80042ce: b590 push {r4, r7, lr} + 80042d0: b087 sub sp, #28 + 80042d2: af00 add r7, sp, #0 + 80042d4: 4604 mov r4, r0 + 80042d6: 4608 mov r0, r1 + 80042d8: 4611 mov r1, r2 + 80042da: 461a mov r2, r3 + 80042dc: 4623 mov r3, r4 + 80042de: 80fb strh r3, [r7, #6] + 80042e0: 4603 mov r3, r0 + 80042e2: 80bb strh r3, [r7, #4] + 80042e4: 460b mov r3, r1 + 80042e6: 807b strh r3, [r7, #2] + 80042e8: 4613 mov r3, r2 + 80042ea: 803b strh r3, [r7, #0] int a,b; int di; a=0;b=r; - 80042b4: 2300 movs r3, #0 - 80042b6: 617b str r3, [r7, #20] - 80042b8: 887b ldrh r3, [r7, #2] - 80042ba: 613b str r3, [r7, #16] + 80042ec: 2300 movs r3, #0 + 80042ee: 617b str r3, [r7, #20] + 80042f0: 887b ldrh r3, [r7, #2] + 80042f2: 613b str r3, [r7, #16] di=3-(r<<1); //判断下个点位置的标志 - 80042bc: 887b ldrh r3, [r7, #2] - 80042be: 005b lsls r3, r3, #1 - 80042c0: f1c3 0303 rsb r3, r3, #3 - 80042c4: 60fb str r3, [r7, #12] + 80042f4: 887b ldrh r3, [r7, #2] + 80042f6: 005b lsls r3, r3, #1 + 80042f8: f1c3 0303 rsb r3, r3, #3 + 80042fc: 60fb str r3, [r7, #12] while(a<=b) - 80042c6: e087 b.n 80043d8 + 80042fe: e087 b.n 8004410 { LCD_set_dot(x0+a,y0-b,color); //5 - 80042c8: 697b ldr r3, [r7, #20] - 80042ca: b29a uxth r2, r3 - 80042cc: 88fb ldrh r3, [r7, #6] - 80042ce: 4413 add r3, r2 - 80042d0: b298 uxth r0, r3 - 80042d2: 693b ldr r3, [r7, #16] - 80042d4: b29b uxth r3, r3 - 80042d6: 88ba ldrh r2, [r7, #4] - 80042d8: 1ad3 subs r3, r2, r3 - 80042da: b29b uxth r3, r3 - 80042dc: 883a ldrh r2, [r7, #0] - 80042de: 4619 mov r1, r3 - 80042e0: f7ff fee2 bl 80040a8 - LCD_set_dot(x0+b,y0-a,color); //0 - 80042e4: 693b ldr r3, [r7, #16] - 80042e6: b29a uxth r2, r3 - 80042e8: 88fb ldrh r3, [r7, #6] - 80042ea: 4413 add r3, r2 - 80042ec: b298 uxth r0, r3 - 80042ee: 697b ldr r3, [r7, #20] - 80042f0: b29b uxth r3, r3 - 80042f2: 88ba ldrh r2, [r7, #4] - 80042f4: 1ad3 subs r3, r2, r3 - 80042f6: b29b uxth r3, r3 - 80042f8: 883a ldrh r2, [r7, #0] - 80042fa: 4619 mov r1, r3 - 80042fc: f7ff fed4 bl 80040a8 - LCD_set_dot(x0+b,y0+a,color); //4 - 8004300: 693b ldr r3, [r7, #16] + 8004300: 697b ldr r3, [r7, #20] 8004302: b29a uxth r2, r3 8004304: 88fb ldrh r3, [r7, #6] 8004306: 4413 add r3, r2 8004308: b298 uxth r0, r3 - 800430a: 697b ldr r3, [r7, #20] - 800430c: b29a uxth r2, r3 - 800430e: 88bb ldrh r3, [r7, #4] - 8004310: 4413 add r3, r2 + 800430a: 693b ldr r3, [r7, #16] + 800430c: b29b uxth r3, r3 + 800430e: 88ba ldrh r2, [r7, #4] + 8004310: 1ad3 subs r3, r2, r3 8004312: b29b uxth r3, r3 8004314: 883a ldrh r2, [r7, #0] 8004316: 4619 mov r1, r3 - 8004318: f7ff fec6 bl 80040a8 - LCD_set_dot(x0+a,y0+b,color); //6 - 800431c: 697b ldr r3, [r7, #20] + 8004318: f7ff fee2 bl 80040e0 + LCD_set_dot(x0+b,y0-a,color); //0 + 800431c: 693b ldr r3, [r7, #16] 800431e: b29a uxth r2, r3 8004320: 88fb ldrh r3, [r7, #6] 8004322: 4413 add r3, r2 8004324: b298 uxth r0, r3 - 8004326: 693b ldr r3, [r7, #16] - 8004328: b29a uxth r2, r3 - 800432a: 88bb ldrh r3, [r7, #4] - 800432c: 4413 add r3, r2 + 8004326: 697b ldr r3, [r7, #20] + 8004328: b29b uxth r3, r3 + 800432a: 88ba ldrh r2, [r7, #4] + 800432c: 1ad3 subs r3, r2, r3 800432e: b29b uxth r3, r3 8004330: 883a ldrh r2, [r7, #0] 8004332: 4619 mov r1, r3 - 8004334: f7ff feb8 bl 80040a8 - LCD_set_dot(x0-a,y0+b,color); //1 - 8004338: 697b ldr r3, [r7, #20] - 800433a: b29b uxth r3, r3 - 800433c: 88fa ldrh r2, [r7, #6] - 800433e: 1ad3 subs r3, r2, r3 + 8004334: f7ff fed4 bl 80040e0 + LCD_set_dot(x0+b,y0+a,color); //4 + 8004338: 693b ldr r3, [r7, #16] + 800433a: b29a uxth r2, r3 + 800433c: 88fb ldrh r3, [r7, #6] + 800433e: 4413 add r3, r2 8004340: b298 uxth r0, r3 - 8004342: 693b ldr r3, [r7, #16] + 8004342: 697b ldr r3, [r7, #20] 8004344: b29a uxth r2, r3 8004346: 88bb ldrh r3, [r7, #4] 8004348: 4413 add r3, r2 800434a: b29b uxth r3, r3 800434c: 883a ldrh r2, [r7, #0] 800434e: 4619 mov r1, r3 - 8004350: f7ff feaa bl 80040a8 - LCD_set_dot(x0-b,y0+a,color); - 8004354: 693b ldr r3, [r7, #16] - 8004356: b29b uxth r3, r3 - 8004358: 88fa ldrh r2, [r7, #6] - 800435a: 1ad3 subs r3, r2, r3 + 8004350: f7ff fec6 bl 80040e0 + LCD_set_dot(x0+a,y0+b,color); //6 + 8004354: 697b ldr r3, [r7, #20] + 8004356: b29a uxth r2, r3 + 8004358: 88fb ldrh r3, [r7, #6] + 800435a: 4413 add r3, r2 800435c: b298 uxth r0, r3 - 800435e: 697b ldr r3, [r7, #20] + 800435e: 693b ldr r3, [r7, #16] 8004360: b29a uxth r2, r3 8004362: 88bb ldrh r3, [r7, #4] 8004364: 4413 add r3, r2 8004366: b29b uxth r3, r3 8004368: 883a ldrh r2, [r7, #0] 800436a: 4619 mov r1, r3 - 800436c: f7ff fe9c bl 80040a8 - LCD_set_dot(x0-a,y0-b,color); //2 + 800436c: f7ff feb8 bl 80040e0 + LCD_set_dot(x0-a,y0+b,color); //1 8004370: 697b ldr r3, [r7, #20] 8004372: b29b uxth r3, r3 8004374: 88fa ldrh r2, [r7, #6] 8004376: 1ad3 subs r3, r2, r3 8004378: b298 uxth r0, r3 800437a: 693b ldr r3, [r7, #16] - 800437c: b29b uxth r3, r3 - 800437e: 88ba ldrh r2, [r7, #4] - 8004380: 1ad3 subs r3, r2, r3 + 800437c: b29a uxth r2, r3 + 800437e: 88bb ldrh r3, [r7, #4] + 8004380: 4413 add r3, r2 8004382: b29b uxth r3, r3 8004384: 883a ldrh r2, [r7, #0] 8004386: 4619 mov r1, r3 - 8004388: f7ff fe8e bl 80040a8 - LCD_set_dot(x0-b,y0-a,color); //7 + 8004388: f7ff feaa bl 80040e0 + LCD_set_dot(x0-b,y0+a,color); 800438c: 693b ldr r3, [r7, #16] 800438e: b29b uxth r3, r3 8004390: 88fa ldrh r2, [r7, #6] 8004392: 1ad3 subs r3, r2, r3 8004394: b298 uxth r0, r3 8004396: 697b ldr r3, [r7, #20] - 8004398: b29b uxth r3, r3 - 800439a: 88ba ldrh r2, [r7, #4] - 800439c: 1ad3 subs r3, r2, r3 + 8004398: b29a uxth r2, r3 + 800439a: 88bb ldrh r3, [r7, #4] + 800439c: 4413 add r3, r2 800439e: b29b uxth r3, r3 80043a0: 883a ldrh r2, [r7, #0] 80043a2: 4619 mov r1, r3 - 80043a4: f7ff fe80 bl 80040a8 - a++; + 80043a4: f7ff fe9c bl 80040e0 + LCD_set_dot(x0-a,y0-b,color); //2 80043a8: 697b ldr r3, [r7, #20] - 80043aa: 3301 adds r3, #1 - 80043ac: 617b str r3, [r7, #20] + 80043aa: b29b uxth r3, r3 + 80043ac: 88fa ldrh r2, [r7, #6] + 80043ae: 1ad3 subs r3, r2, r3 + 80043b0: b298 uxth r0, r3 + 80043b2: 693b ldr r3, [r7, #16] + 80043b4: b29b uxth r3, r3 + 80043b6: 88ba ldrh r2, [r7, #4] + 80043b8: 1ad3 subs r3, r2, r3 + 80043ba: b29b uxth r3, r3 + 80043bc: 883a ldrh r2, [r7, #0] + 80043be: 4619 mov r1, r3 + 80043c0: f7ff fe8e bl 80040e0 + LCD_set_dot(x0-b,y0-a,color); //7 + 80043c4: 693b ldr r3, [r7, #16] + 80043c6: b29b uxth r3, r3 + 80043c8: 88fa ldrh r2, [r7, #6] + 80043ca: 1ad3 subs r3, r2, r3 + 80043cc: b298 uxth r0, r3 + 80043ce: 697b ldr r3, [r7, #20] + 80043d0: b29b uxth r3, r3 + 80043d2: 88ba ldrh r2, [r7, #4] + 80043d4: 1ad3 subs r3, r2, r3 + 80043d6: b29b uxth r3, r3 + 80043d8: 883a ldrh r2, [r7, #0] + 80043da: 4619 mov r1, r3 + 80043dc: f7ff fe80 bl 80040e0 + a++; + 80043e0: 697b ldr r3, [r7, #20] + 80043e2: 3301 adds r3, #1 + 80043e4: 617b str r3, [r7, #20] //使用Bresenham算法画圆 if(di<0)di +=4*a+6; - 80043ae: 68fb ldr r3, [r7, #12] - 80043b0: 2b00 cmp r3, #0 - 80043b2: da06 bge.n 80043c2 - 80043b4: 697b ldr r3, [r7, #20] - 80043b6: 009b lsls r3, r3, #2 - 80043b8: 3306 adds r3, #6 - 80043ba: 68fa ldr r2, [r7, #12] - 80043bc: 4413 add r3, r2 - 80043be: 60fb str r3, [r7, #12] - 80043c0: e00a b.n 80043d8 + 80043e6: 68fb ldr r3, [r7, #12] + 80043e8: 2b00 cmp r3, #0 + 80043ea: da06 bge.n 80043fa + 80043ec: 697b ldr r3, [r7, #20] + 80043ee: 009b lsls r3, r3, #2 + 80043f0: 3306 adds r3, #6 + 80043f2: 68fa ldr r2, [r7, #12] + 80043f4: 4413 add r3, r2 + 80043f6: 60fb str r3, [r7, #12] + 80043f8: e00a b.n 8004410 else { di+=10+4*(a-b); - 80043c2: 697a ldr r2, [r7, #20] - 80043c4: 693b ldr r3, [r7, #16] - 80043c6: 1ad3 subs r3, r2, r3 - 80043c8: 009b lsls r3, r3, #2 - 80043ca: 330a adds r3, #10 - 80043cc: 68fa ldr r2, [r7, #12] - 80043ce: 4413 add r3, r2 - 80043d0: 60fb str r3, [r7, #12] + 80043fa: 697a ldr r2, [r7, #20] + 80043fc: 693b ldr r3, [r7, #16] + 80043fe: 1ad3 subs r3, r2, r3 + 8004400: 009b lsls r3, r3, #2 + 8004402: 330a adds r3, #10 + 8004404: 68fa ldr r2, [r7, #12] + 8004406: 4413 add r3, r2 + 8004408: 60fb str r3, [r7, #12] b--; - 80043d2: 693b ldr r3, [r7, #16] - 80043d4: 3b01 subs r3, #1 - 80043d6: 613b str r3, [r7, #16] + 800440a: 693b ldr r3, [r7, #16] + 800440c: 3b01 subs r3, #1 + 800440e: 613b str r3, [r7, #16] while(a<=b) - 80043d8: 697a ldr r2, [r7, #20] - 80043da: 693b ldr r3, [r7, #16] - 80043dc: 429a cmp r2, r3 - 80043de: f77f af73 ble.w 80042c8 + 8004410: 697a ldr r2, [r7, #20] + 8004412: 693b ldr r3, [r7, #16] + 8004414: 429a cmp r2, r3 + 8004416: f77f af73 ble.w 8004300 } } } - 80043e2: bf00 nop - 80043e4: bf00 nop - 80043e6: 371c adds r7, #28 - 80043e8: 46bd mov sp, r7 - 80043ea: bd90 pop {r4, r7, pc} + 800441a: bf00 nop + 800441c: bf00 nop + 800441e: 371c adds r7, #28 + 8004420: 46bd mov sp, r7 + 8004422: bd90 pop {r4, r7, pc} -080043ec : +08004424 : //num:要显示的字符:" "--->"~" //size:字体大小 12/16 //mode:叠加方式(1)还是非叠加方式(0) void LCD_ShowChar(uint16_t x,uint16_t y,uint8_t num,uint8_t size,uint16_t bg,uint16_t color) { - 80043ec: b590 push {r4, r7, lr} - 80043ee: b085 sub sp, #20 - 80043f0: af00 add r7, sp, #0 - 80043f2: 4604 mov r4, r0 - 80043f4: 4608 mov r0, r1 - 80043f6: 4611 mov r1, r2 - 80043f8: 461a mov r2, r3 - 80043fa: 4623 mov r3, r4 - 80043fc: 80fb strh r3, [r7, #6] - 80043fe: 4603 mov r3, r0 - 8004400: 80bb strh r3, [r7, #4] - 8004402: 460b mov r3, r1 - 8004404: 70fb strb r3, [r7, #3] - 8004406: 4613 mov r3, r2 - 8004408: 70bb strb r3, [r7, #2] + 8004424: b590 push {r4, r7, lr} + 8004426: b085 sub sp, #20 + 8004428: af00 add r7, sp, #0 + 800442a: 4604 mov r4, r0 + 800442c: 4608 mov r0, r1 + 800442e: 4611 mov r1, r2 + 8004430: 461a mov r2, r3 + 8004432: 4623 mov r3, r4 + 8004434: 80fb strh r3, [r7, #6] + 8004436: 4603 mov r3, r0 + 8004438: 80bb strh r3, [r7, #4] + 800443a: 460b mov r3, r1 + 800443c: 70fb strb r3, [r7, #3] + 800443e: 4613 mov r3, r2 + 8004440: 70bb strb r3, [r7, #2] uint8_t temp,t1,t; uint16_t y0=y; - 800440a: 88bb ldrh r3, [r7, #4] - 800440c: 817b strh r3, [r7, #10] + 8004442: 88bb ldrh r3, [r7, #4] + 8004444: 817b strh r3, [r7, #10] //设置窗口 num=num-' ';//得到偏移后的值 - 800440e: 78fb ldrb r3, [r7, #3] - 8004410: 3b20 subs r3, #32 - 8004412: 70fb strb r3, [r7, #3] + 8004446: 78fb ldrb r3, [r7, #3] + 8004448: 3b20 subs r3, #32 + 800444a: 70fb strb r3, [r7, #3] for(t=0;t + 800444c: 2300 movs r3, #0 + 800444e: 737b strb r3, [r7, #13] + 8004450: e055 b.n 80044fe { if(size==12){temp=asc2_1206[num][t];} //调用1206字体 - 800441a: 78bb ldrb r3, [r7, #2] - 800441c: 2b0c cmp r3, #12 - 800441e: d10b bne.n 8004438 - 8004420: 78fa ldrb r2, [r7, #3] - 8004422: 7b79 ldrb r1, [r7, #13] - 8004424: 482c ldr r0, [pc, #176] ; (80044d8 ) - 8004426: 4613 mov r3, r2 - 8004428: 005b lsls r3, r3, #1 - 800442a: 4413 add r3, r2 - 800442c: 009b lsls r3, r3, #2 - 800442e: 4403 add r3, r0 - 8004430: 440b add r3, r1 - 8004432: 781b ldrb r3, [r3, #0] - 8004434: 73fb strb r3, [r7, #15] - 8004436: e007 b.n 8004448 + 8004452: 78bb ldrb r3, [r7, #2] + 8004454: 2b0c cmp r3, #12 + 8004456: d10b bne.n 8004470 + 8004458: 78fa ldrb r2, [r7, #3] + 800445a: 7b79 ldrb r1, [r7, #13] + 800445c: 482c ldr r0, [pc, #176] ; (8004510 ) + 800445e: 4613 mov r3, r2 + 8004460: 005b lsls r3, r3, #1 + 8004462: 4413 add r3, r2 + 8004464: 009b lsls r3, r3, #2 + 8004466: 4403 add r3, r0 + 8004468: 440b add r3, r1 + 800446a: 781b ldrb r3, [r3, #0] + 800446c: 73fb strb r3, [r7, #15] + 800446e: e007 b.n 8004480 else{ temp=asc2_1608[num][t]; } //调用1608字体 - 8004438: 78fa ldrb r2, [r7, #3] - 800443a: 7b7b ldrb r3, [r7, #13] - 800443c: 4927 ldr r1, [pc, #156] ; (80044dc ) - 800443e: 0112 lsls r2, r2, #4 - 8004440: 440a add r2, r1 - 8004442: 4413 add r3, r2 - 8004444: 781b ldrb r3, [r3, #0] - 8004446: 73fb strb r3, [r7, #15] + 8004470: 78fa ldrb r2, [r7, #3] + 8004472: 7b7b ldrb r3, [r7, #13] + 8004474: 4927 ldr r1, [pc, #156] ; (8004514 ) + 8004476: 0112 lsls r2, r2, #4 + 8004478: 440a add r2, r1 + 800447a: 4413 add r3, r2 + 800447c: 781b ldrb r3, [r3, #0] + 800447e: 73fb strb r3, [r7, #15] for(t1=0;t1<8;t1++) - 8004448: 2300 movs r3, #0 - 800444a: 73bb strb r3, [r7, #14] - 800444c: e033 b.n 80044b6 + 8004480: 2300 movs r3, #0 + 8004482: 73bb strb r3, [r7, #14] + 8004484: e033 b.n 80044ee { if(temp&0x80){LCD_set_dot(x,y,color);}else{if(bg!=color){LCD_set_dot(x,y,bg);}} - 800444e: f997 300f ldrsb.w r3, [r7, #15] - 8004452: 2b00 cmp r3, #0 - 8004454: da06 bge.n 8004464 - 8004456: 8cba ldrh r2, [r7, #36] ; 0x24 - 8004458: 88b9 ldrh r1, [r7, #4] - 800445a: 88fb ldrh r3, [r7, #6] - 800445c: 4618 mov r0, r3 - 800445e: f7ff fe23 bl 80040a8 - 8004462: e009 b.n 8004478 - 8004464: 8c3a ldrh r2, [r7, #32] - 8004466: 8cbb ldrh r3, [r7, #36] ; 0x24 - 8004468: 429a cmp r2, r3 - 800446a: d005 beq.n 8004478 - 800446c: 8c3a ldrh r2, [r7, #32] - 800446e: 88b9 ldrh r1, [r7, #4] - 8004470: 88fb ldrh r3, [r7, #6] - 8004472: 4618 mov r0, r3 - 8004474: f7ff fe18 bl 80040a8 + 8004486: f997 300f ldrsb.w r3, [r7, #15] + 800448a: 2b00 cmp r3, #0 + 800448c: da06 bge.n 800449c + 800448e: 8cba ldrh r2, [r7, #36] ; 0x24 + 8004490: 88b9 ldrh r1, [r7, #4] + 8004492: 88fb ldrh r3, [r7, #6] + 8004494: 4618 mov r0, r3 + 8004496: f7ff fe23 bl 80040e0 + 800449a: e009 b.n 80044b0 + 800449c: 8c3a ldrh r2, [r7, #32] + 800449e: 8cbb ldrh r3, [r7, #36] ; 0x24 + 80044a0: 429a cmp r2, r3 + 80044a2: d005 beq.n 80044b0 + 80044a4: 8c3a ldrh r2, [r7, #32] + 80044a6: 88b9 ldrh r1, [r7, #4] + 80044a8: 88fb ldrh r3, [r7, #6] + 80044aa: 4618 mov r0, r3 + 80044ac: f7ff fe18 bl 80040e0 temp<<=1; - 8004478: 7bfb ldrb r3, [r7, #15] - 800447a: 005b lsls r3, r3, #1 - 800447c: 73fb strb r3, [r7, #15] + 80044b0: 7bfb ldrb r3, [r7, #15] + 80044b2: 005b lsls r3, r3, #1 + 80044b4: 73fb strb r3, [r7, #15] y++; - 800447e: 88bb ldrh r3, [r7, #4] - 8004480: 3301 adds r3, #1 - 8004482: 80bb strh r3, [r7, #4] + 80044b6: 88bb ldrh r3, [r7, #4] + 80044b8: 3301 adds r3, #1 + 80044ba: 80bb strh r3, [r7, #4] if(x>=lcddev.width){return;}//超区域了 - 8004484: 4b16 ldr r3, [pc, #88] ; (80044e0 ) - 8004486: 881b ldrh r3, [r3, #0] - 8004488: 88fa ldrh r2, [r7, #6] - 800448a: 429a cmp r2, r3 - 800448c: d220 bcs.n 80044d0 + 80044bc: 4b16 ldr r3, [pc, #88] ; (8004518 ) + 80044be: 881b ldrh r3, [r3, #0] + 80044c0: 88fa ldrh r2, [r7, #6] + 80044c2: 429a cmp r2, r3 + 80044c4: d220 bcs.n 8004508 if((y-y0)==size) - 800448e: 88ba ldrh r2, [r7, #4] - 8004490: 897b ldrh r3, [r7, #10] - 8004492: 1ad2 subs r2, r2, r3 - 8004494: 78bb ldrb r3, [r7, #2] - 8004496: 429a cmp r2, r3 - 8004498: d10a bne.n 80044b0 + 80044c6: 88ba ldrh r2, [r7, #4] + 80044c8: 897b ldrh r3, [r7, #10] + 80044ca: 1ad2 subs r2, r2, r3 + 80044cc: 78bb ldrb r3, [r7, #2] + 80044ce: 429a cmp r2, r3 + 80044d0: d10a bne.n 80044e8 { y=y0; - 800449a: 897b ldrh r3, [r7, #10] - 800449c: 80bb strh r3, [r7, #4] + 80044d2: 897b ldrh r3, [r7, #10] + 80044d4: 80bb strh r3, [r7, #4] x++; - 800449e: 88fb ldrh r3, [r7, #6] - 80044a0: 3301 adds r3, #1 - 80044a2: 80fb strh r3, [r7, #6] + 80044d6: 88fb ldrh r3, [r7, #6] + 80044d8: 3301 adds r3, #1 + 80044da: 80fb strh r3, [r7, #6] if(x>=lcddev.width){return;}//超区域了 - 80044a4: 4b0e ldr r3, [pc, #56] ; (80044e0 ) - 80044a6: 881b ldrh r3, [r3, #0] - 80044a8: 88fa ldrh r2, [r7, #6] - 80044aa: 429a cmp r2, r3 - 80044ac: d307 bcc.n 80044be - 80044ae: e010 b.n 80044d2 + 80044dc: 4b0e ldr r3, [pc, #56] ; (8004518 ) + 80044de: 881b ldrh r3, [r3, #0] + 80044e0: 88fa ldrh r2, [r7, #6] + 80044e2: 429a cmp r2, r3 + 80044e4: d307 bcc.n 80044f6 + 80044e6: e010 b.n 800450a for(t1=0;t1<8;t1++) - 80044b0: 7bbb ldrb r3, [r7, #14] - 80044b2: 3301 adds r3, #1 - 80044b4: 73bb strb r3, [r7, #14] - 80044b6: 7bbb ldrb r3, [r7, #14] - 80044b8: 2b07 cmp r3, #7 - 80044ba: d9c8 bls.n 800444e - 80044bc: e000 b.n 80044c0 + 80044e8: 7bbb ldrb r3, [r7, #14] + 80044ea: 3301 adds r3, #1 + 80044ec: 73bb strb r3, [r7, #14] + 80044ee: 7bbb ldrb r3, [r7, #14] + 80044f0: 2b07 cmp r3, #7 + 80044f2: d9c8 bls.n 8004486 + 80044f4: e000 b.n 80044f8 break; - 80044be: bf00 nop + 80044f6: bf00 nop for(t=0;t - 80044ce: e000 b.n 80044d2 + 80044f8: 7b7b ldrb r3, [r7, #13] + 80044fa: 3301 adds r3, #1 + 80044fc: 737b strb r3, [r7, #13] + 80044fe: 7b7a ldrb r2, [r7, #13] + 8004500: 78bb ldrb r3, [r7, #2] + 8004502: 429a cmp r2, r3 + 8004504: d3a5 bcc.n 8004452 + 8004506: e000 b.n 800450a if(x>=lcddev.width){return;}//超区域了 - 80044d0: bf00 nop + 8004508: bf00 nop } } } - 80044d2: 3714 adds r7, #20 - 80044d4: 46bd mov sp, r7 - 80044d6: bd90 pop {r4, r7, pc} - 80044d8: 080086f4 .word 0x080086f4 - 80044dc: 08008b68 .word 0x08008b68 - 80044e0: 200002a8 .word 0x200002a8 + 800450a: 3714 adds r7, #20 + 800450c: 46bd mov sp, r7 + 800450e: bd90 pop {r4, r7, pc} + 8004510: 080089e4 .word 0x080089e4 + 8004514: 08008e58 .word 0x08008e58 + 8004518: 200002a8 .word 0x200002a8 -080044e4 : +0800451c : //width,height:区域大小 //size:字体大小 //*p:字符串起始地址 void LCD_ShowString(uint16_t x,uint16_t y,uint8_t *p,uint8_t size,uint16_t bg,uint16_t color) { - 80044e4: b590 push {r4, r7, lr} - 80044e6: b087 sub sp, #28 - 80044e8: af02 add r7, sp, #8 - 80044ea: 60ba str r2, [r7, #8] - 80044ec: 461a mov r2, r3 - 80044ee: 4603 mov r3, r0 - 80044f0: 81fb strh r3, [r7, #14] - 80044f2: 460b mov r3, r1 - 80044f4: 81bb strh r3, [r7, #12] - 80044f6: 4613 mov r3, r2 - 80044f8: 71fb strb r3, [r7, #7] + 800451c: b590 push {r4, r7, lr} + 800451e: b087 sub sp, #28 + 8004520: af02 add r7, sp, #8 + 8004522: 60ba str r2, [r7, #8] + 8004524: 461a mov r2, r3 + 8004526: 4603 mov r3, r0 + 8004528: 81fb strh r3, [r7, #14] + 800452a: 460b mov r3, r1 + 800452c: 81bb strh r3, [r7, #12] + 800452e: 4613 mov r3, r2 + 8004530: 71fb strb r3, [r7, #7] while(*p!='\0') - 80044fa: e026 b.n 800454a + 8004532: e026 b.n 8004582 { if(x>=lcddev.width||*p=='\n') - 80044fc: 4b17 ldr r3, [pc, #92] ; (800455c ) - 80044fe: 881b ldrh r3, [r3, #0] - 8004500: 89fa ldrh r2, [r7, #14] - 8004502: 429a cmp r2, r3 - 8004504: d203 bcs.n 800450e - 8004506: 68bb ldr r3, [r7, #8] - 8004508: 781b ldrb r3, [r3, #0] - 800450a: 2b0a cmp r3, #10 - 800450c: d107 bne.n 800451e + 8004534: 4b17 ldr r3, [pc, #92] ; (8004594 ) + 8004536: 881b ldrh r3, [r3, #0] + 8004538: 89fa ldrh r2, [r7, #14] + 800453a: 429a cmp r2, r3 + 800453c: d203 bcs.n 8004546 + 800453e: 68bb ldr r3, [r7, #8] + 8004540: 781b ldrb r3, [r3, #0] + 8004542: 2b0a cmp r3, #10 + 8004544: d107 bne.n 8004556 { x=0; - 800450e: 2300 movs r3, #0 - 8004510: 81fb strh r3, [r7, #14] + 8004546: 2300 movs r3, #0 + 8004548: 81fb strh r3, [r7, #14] y+=size; - 8004512: 79fb ldrb r3, [r7, #7] - 8004514: b29a uxth r2, r3 - 8004516: 89bb ldrh r3, [r7, #12] - 8004518: 4413 add r3, r2 - 800451a: 81bb strh r3, [r7, #12] - 800451c: e012 b.n 8004544 + 800454a: 79fb ldrb r3, [r7, #7] + 800454c: b29a uxth r2, r3 + 800454e: 89bb ldrh r3, [r7, #12] + 8004550: 4413 add r3, r2 + 8004552: 81bb strh r3, [r7, #12] + 8004554: e012 b.n 800457c }else { LCD_ShowChar(x,y,*p,size,bg,color); - 800451e: 68bb ldr r3, [r7, #8] - 8004520: 781a ldrb r2, [r3, #0] - 8004522: 79fc ldrb r4, [r7, #7] - 8004524: 89b9 ldrh r1, [r7, #12] - 8004526: 89f8 ldrh r0, [r7, #14] - 8004528: 8cbb ldrh r3, [r7, #36] ; 0x24 - 800452a: 9301 str r3, [sp, #4] - 800452c: 8c3b ldrh r3, [r7, #32] - 800452e: 9300 str r3, [sp, #0] - 8004530: 4623 mov r3, r4 - 8004532: f7ff ff5b bl 80043ec + 8004556: 68bb ldr r3, [r7, #8] + 8004558: 781a ldrb r2, [r3, #0] + 800455a: 79fc ldrb r4, [r7, #7] + 800455c: 89b9 ldrh r1, [r7, #12] + 800455e: 89f8 ldrh r0, [r7, #14] + 8004560: 8cbb ldrh r3, [r7, #36] ; 0x24 + 8004562: 9301 str r3, [sp, #4] + 8004564: 8c3b ldrh r3, [r7, #32] + 8004566: 9300 str r3, [sp, #0] + 8004568: 4623 mov r3, r4 + 800456a: f7ff ff5b bl 8004424 x+=(size/2); - 8004536: 79fb ldrb r3, [r7, #7] - 8004538: 085b lsrs r3, r3, #1 - 800453a: b2db uxtb r3, r3 - 800453c: b29a uxth r2, r3 - 800453e: 89fb ldrh r3, [r7, #14] - 8004540: 4413 add r3, r2 - 8004542: 81fb strh r3, [r7, #14] + 800456e: 79fb ldrb r3, [r7, #7] + 8004570: 085b lsrs r3, r3, #1 + 8004572: b2db uxtb r3, r3 + 8004574: b29a uxth r2, r3 + 8004576: 89fb ldrh r3, [r7, #14] + 8004578: 4413 add r3, r2 + 800457a: 81fb strh r3, [r7, #14] } p++; - 8004544: 68bb ldr r3, [r7, #8] - 8004546: 3301 adds r3, #1 - 8004548: 60bb str r3, [r7, #8] + 800457c: 68bb ldr r3, [r7, #8] + 800457e: 3301 adds r3, #1 + 8004580: 60bb str r3, [r7, #8] while(*p!='\0') - 800454a: 68bb ldr r3, [r7, #8] - 800454c: 781b ldrb r3, [r3, #0] - 800454e: 2b00 cmp r3, #0 - 8004550: d1d4 bne.n 80044fc + 8004582: 68bb ldr r3, [r7, #8] + 8004584: 781b ldrb r3, [r3, #0] + 8004586: 2b00 cmp r3, #0 + 8004588: d1d4 bne.n 8004534 } } - 8004552: bf00 nop - 8004554: bf00 nop - 8004556: 3714 adds r7, #20 - 8004558: 46bd mov sp, r7 - 800455a: bd90 pop {r4, r7, pc} - 800455c: 200002a8 .word 0x200002a8 + 800458a: bf00 nop + 800458c: bf00 nop + 800458e: 3714 adds r7, #20 + 8004590: 46bd mov sp, r7 + 8004592: bd90 pop {r4, r7, pc} + 8004594: 200002a8 .word 0x200002a8 -08004560 : - -//iic硬件接口 -extern I2C_HandleTypeDef hi2c2; - -void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) -{ - 8004560: b580 push {r7, lr} - 8004562: b088 sub sp, #32 - 8004564: af04 add r7, sp, #16 - 8004566: 60ba str r2, [r7, #8] - 8004568: 461a mov r2, r3 - 800456a: 4603 mov r3, r0 - 800456c: 81fb strh r3, [r7, #14] - 800456e: 460b mov r3, r1 - 8004570: 81bb strh r3, [r7, #12] - 8004572: 4613 mov r3, r2 - 8004574: 80fb strh r3, [r7, #6] - HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 8004576: 89ba ldrh r2, [r7, #12] - 8004578: 89f9 ldrh r1, [r7, #14] - 800457a: 2364 movs r3, #100 ; 0x64 - 800457c: 9302 str r3, [sp, #8] - 800457e: 88fb ldrh r3, [r7, #6] - 8004580: 9301 str r3, [sp, #4] - 8004582: 68bb ldr r3, [r7, #8] - 8004584: 9300 str r3, [sp, #0] - 8004586: 2301 movs r3, #1 - 8004588: 4803 ldr r0, [pc, #12] ; (8004598 ) - 800458a: f7fd fda5 bl 80020d8 -} - 800458e: bf00 nop - 8004590: 3710 adds r7, #16 - 8004592: 46bd mov sp, r7 - 8004594: bd80 pop {r7, pc} - 8004596: bf00 nop - 8004598: 20000208 .word 0x20000208 - -0800459c : - -void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) -{ - 800459c: b580 push {r7, lr} - 800459e: b088 sub sp, #32 - 80045a0: af04 add r7, sp, #16 - 80045a2: 60ba str r2, [r7, #8] - 80045a4: 461a mov r2, r3 - 80045a6: 4603 mov r3, r0 - 80045a8: 81fb strh r3, [r7, #14] - 80045aa: 460b mov r3, r1 - 80045ac: 81bb strh r3, [r7, #12] - 80045ae: 4613 mov r3, r2 - 80045b0: 80fb strh r3, [r7, #6] - HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); - 80045b2: 89ba ldrh r2, [r7, #12] - 80045b4: 89f9 ldrh r1, [r7, #14] - 80045b6: 2364 movs r3, #100 ; 0x64 - 80045b8: 9302 str r3, [sp, #8] - 80045ba: 88fb ldrh r3, [r7, #6] - 80045bc: 9301 str r3, [sp, #4] - 80045be: 68bb ldr r3, [r7, #8] - 80045c0: 9300 str r3, [sp, #0] - 80045c2: 2301 movs r3, #1 - 80045c4: 4803 ldr r0, [pc, #12] ; (80045d4 ) - 80045c6: f7fd fe81 bl 80022cc -} - 80045ca: bf00 nop - 80045cc: 3710 adds r7, #16 - 80045ce: 46bd mov sp, r7 - 80045d0: bd80 pop {r7, pc} - 80045d2: bf00 nop - 80045d4: 20000208 .word 0x20000208 - -080045d8 : +08004598 : //因为eeprom芯片的写入速度有限,每写入一个字符都需要等待一段时间才能完成写入 //整个系统不可能等它一个的,传统的解决方法可以使用定时器中断或者多线程开辟子任务在后台保存, //这里的解决方法是使用状态机,通过一个链表将要保存的数据串起来,再通过状态循环一个个保存,保存延时等于循环用时。 eeprom_write_buff_info eeprom_write_buffer; //创建链表 void EPPROM_SLOWWRITE_INIT() //初始化链表 { - 80045d8: b480 push {r7} - 80045da: af00 add r7, sp, #0 + 8004598: b480 push {r7} + 800459a: af00 add r7, sp, #0 eeprom_write_buffer.buff=NULL; - 80045dc: 4b0a ldr r3, [pc, #40] ; (8004608 ) - 80045de: 2200 movs r2, #0 - 80045e0: 601a str r2, [r3, #0] + 800459c: 4b0a ldr r3, [pc, #40] ; (80045c8 ) + 800459e: 2200 movs r2, #0 + 80045a0: 601a str r2, [r3, #0] eeprom_write_buffer.end=NULL; - 80045e2: 4b09 ldr r3, [pc, #36] ; (8004608 ) - 80045e4: 2200 movs r2, #0 - 80045e6: 609a str r2, [r3, #8] + 80045a2: 4b09 ldr r3, [pc, #36] ; (80045c8 ) + 80045a4: 2200 movs r2, #0 + 80045a6: 609a str r2, [r3, #8] eeprom_write_buffer.head=NULL; - 80045e8: 4b07 ldr r3, [pc, #28] ; (8004608 ) - 80045ea: 2200 movs r2, #0 - 80045ec: 605a str r2, [r3, #4] + 80045a8: 4b07 ldr r3, [pc, #28] ; (80045c8 ) + 80045aa: 2200 movs r2, #0 + 80045ac: 605a str r2, [r3, #4] eeprom_write_buffer.save_timeout=5; //避免状态机循环过快导致的保存失败,这个是最少延时。(感觉没必要写在这里,太浪费空间了) - 80045ee: 4b06 ldr r3, [pc, #24] ; (8004608 ) - 80045f0: 2205 movs r2, #5 - 80045f2: 741a strb r2, [r3, #16] + 80045ae: 4b06 ldr r3, [pc, #24] ; (80045c8 ) + 80045b0: 2205 movs r2, #5 + 80045b2: 741a strb r2, [r3, #16] eeprom_write_buffer.save_busy=0; //最小延时内为忙状态 - 80045f4: 4a04 ldr r2, [pc, #16] ; (8004608 ) - 80045f6: 7c53 ldrb r3, [r2, #17] - 80045f8: f36f 0300 bfc r3, #0, #1 - 80045fc: 7453 strb r3, [r2, #17] + 80045b4: 4a04 ldr r2, [pc, #16] ; (80045c8 ) + 80045b6: 7c53 ldrb r3, [r2, #17] + 80045b8: f36f 0300 bfc r3, #0, #1 + 80045bc: 7453 strb r3, [r2, #17] } - 80045fe: bf00 nop - 8004600: 46bd mov sp, r7 - 8004602: bc80 pop {r7} - 8004604: 4770 bx lr - 8004606: bf00 nop - 8004608: 200002b4 .word 0x200002b4 + 80045be: bf00 nop + 80045c0: 46bd mov sp, r7 + 80045c2: bc80 pop {r7} + 80045c4: 4770 bx lr + 80045c6: bf00 nop + 80045c8: 200002b4 .word 0x200002b4 -0800460c : +080045cc : //循环保存服务,检查链表头是否有数据是否忙。 void EEPROM_SLOWWRITE_SERVER() { - 800460c: b580 push {r7, lr} - 800460e: b082 sub sp, #8 - 8004610: af00 add r7, sp, #0 + 80045cc: b580 push {r7, lr} + 80045ce: b082 sub sp, #8 + 80045d0: af00 add r7, sp, #0 eeprom_write_buff *buff; char data; if(eeprom_write_buffer.save_busy) - 8004612: 4b20 ldr r3, [pc, #128] ; (8004694 ) - 8004614: 7c5b ldrb r3, [r3, #17] - 8004616: f003 0301 and.w r3, r3, #1 - 800461a: b2db uxtb r3, r3 - 800461c: 2b00 cmp r3, #0 - 800461e: d00c beq.n 800463a + 80045d2: 4b20 ldr r3, [pc, #128] ; (8004654 ) + 80045d4: 7c5b ldrb r3, [r3, #17] + 80045d6: f003 0301 and.w r3, r3, #1 + 80045da: b2db uxtb r3, r3 + 80045dc: 2b00 cmp r3, #0 + 80045de: d00c beq.n 80045fa { if(HAL_GetTick()>eeprom_write_buffer.save_time) - 8004620: f7fd f940 bl 80018a4 - 8004624: 4602 mov r2, r0 - 8004626: 4b1b ldr r3, [pc, #108] ; (8004694 ) - 8004628: 68db ldr r3, [r3, #12] - 800462a: 429a cmp r2, r3 - 800462c: d92e bls.n 800468c + 80045e0: f7fd f97c bl 80018dc + 80045e4: 4602 mov r2, r0 + 80045e6: 4b1b ldr r3, [pc, #108] ; (8004654 ) + 80045e8: 68db ldr r3, [r3, #12] + 80045ea: 429a cmp r2, r3 + 80045ec: d92e bls.n 800464c { eeprom_write_buffer.save_busy=0; - 800462e: 4a19 ldr r2, [pc, #100] ; (8004694 ) - 8004630: 7c53 ldrb r3, [r2, #17] - 8004632: f36f 0300 bfc r3, #0, #1 - 8004636: 7453 strb r3, [r2, #17] + 80045ee: 4a19 ldr r2, [pc, #100] ; (8004654 ) + 80045f0: 7c53 ldrb r3, [r2, #17] + 80045f2: f36f 0300 bfc r3, #0, #1 + 80045f6: 7453 strb r3, [r2, #17] free(eeprom_write_buffer.head); eeprom_write_buffer.head=buff; } } } - 8004638: e028 b.n 800468c + 80045f8: e028 b.n 800464c if(eeprom_write_buffer.head!=NULL) - 800463a: 4b16 ldr r3, [pc, #88] ; (8004694 ) - 800463c: 685b ldr r3, [r3, #4] - 800463e: 2b00 cmp r3, #0 - 8004640: d024 beq.n 800468c + 80045fa: 4b16 ldr r3, [pc, #88] ; (8004654 ) + 80045fc: 685b ldr r3, [r3, #4] + 80045fe: 2b00 cmp r3, #0 + 8004600: d024 beq.n 800464c eeprom_write_buffer.save_busy=1; - 8004642: 4a14 ldr r2, [pc, #80] ; (8004694 ) - 8004644: 7c53 ldrb r3, [r2, #17] - 8004646: f043 0301 orr.w r3, r3, #1 - 800464a: 7453 strb r3, [r2, #17] + 8004602: 4a14 ldr r2, [pc, #80] ; (8004654 ) + 8004604: 7c53 ldrb r3, [r2, #17] + 8004606: f043 0301 orr.w r3, r3, #1 + 800460a: 7453 strb r3, [r2, #17] eeprom_write_buffer.save_time=HAL_GetTick()+eeprom_write_buffer.save_timeout; - 800464c: f7fd f92a bl 80018a4 - 8004650: 4603 mov r3, r0 - 8004652: 4a10 ldr r2, [pc, #64] ; (8004694 ) - 8004654: 7c12 ldrb r2, [r2, #16] - 8004656: 4413 add r3, r2 - 8004658: 4a0e ldr r2, [pc, #56] ; (8004694 ) - 800465a: 60d3 str r3, [r2, #12] + 800460c: f7fd f966 bl 80018dc + 8004610: 4603 mov r3, r0 + 8004612: 4a10 ldr r2, [pc, #64] ; (8004654 ) + 8004614: 7c12 ldrb r2, [r2, #16] + 8004616: 4413 add r3, r2 + 8004618: 4a0e ldr r2, [pc, #56] ; (8004654 ) + 800461a: 60d3 str r3, [r2, #12] buff=eeprom_write_buffer.head->next; - 800465c: 4b0d ldr r3, [pc, #52] ; (8004694 ) - 800465e: 685b ldr r3, [r3, #4] - 8004660: 681b ldr r3, [r3, #0] - 8004662: 607b str r3, [r7, #4] + 800461c: 4b0d ldr r3, [pc, #52] ; (8004654 ) + 800461e: 685b ldr r3, [r3, #4] + 8004620: 681b ldr r3, [r3, #0] + 8004622: 607b str r3, [r7, #4] data=eeprom_write_buffer.head->date; - 8004664: 4b0b ldr r3, [pc, #44] ; (8004694 ) - 8004666: 685b ldr r3, [r3, #4] - 8004668: 799b ldrb r3, [r3, #6] - 800466a: 70fb strb r3, [r7, #3] + 8004624: 4b0b ldr r3, [pc, #44] ; (8004654 ) + 8004626: 685b ldr r3, [r3, #4] + 8004628: 799b ldrb r3, [r3, #6] + 800462a: 70fb strb r3, [r7, #3] IIC_SAND_DATE(EEPROM_ADDRESS,eeprom_write_buffer.head->add,&data,1); - 800466c: 4b09 ldr r3, [pc, #36] ; (8004694 ) - 800466e: 685b ldr r3, [r3, #4] - 8004670: 8899 ldrh r1, [r3, #4] - 8004672: 1cfa adds r2, r7, #3 - 8004674: 2301 movs r3, #1 - 8004676: 20a0 movs r0, #160 ; 0xa0 - 8004678: f7ff ff72 bl 8004560 + 800462c: 4b09 ldr r3, [pc, #36] ; (8004654 ) + 800462e: 685b ldr r3, [r3, #4] + 8004630: 8899 ldrh r1, [r3, #4] + 8004632: 1cfa adds r2, r7, #3 + 8004634: 2301 movs r3, #1 + 8004636: 20a0 movs r0, #160 ; 0xa0 + 8004638: f000 f866 bl 8004708 free(eeprom_write_buffer.head); - 800467c: 4b05 ldr r3, [pc, #20] ; (8004694 ) - 800467e: 685b ldr r3, [r3, #4] - 8004680: 4618 mov r0, r3 - 8004682: f001 f913 bl 80058ac + 800463c: 4b05 ldr r3, [pc, #20] ; (8004654 ) + 800463e: 685b ldr r3, [r3, #4] + 8004640: 4618 mov r0, r3 + 8004642: f001 fa9d bl 8005b80 eeprom_write_buffer.head=buff; - 8004686: 4a03 ldr r2, [pc, #12] ; (8004694 ) - 8004688: 687b ldr r3, [r7, #4] - 800468a: 6053 str r3, [r2, #4] + 8004646: 4a03 ldr r2, [pc, #12] ; (8004654 ) + 8004648: 687b ldr r3, [r7, #4] + 800464a: 6053 str r3, [r2, #4] } - 800468c: bf00 nop - 800468e: 3708 adds r7, #8 - 8004690: 46bd mov sp, r7 - 8004692: bd80 pop {r7, pc} - 8004694: 200002b4 .word 0x200002b4 + 800464c: bf00 nop + 800464e: 3708 adds r7, #8 + 8004650: 46bd mov sp, r7 + 8004652: bd80 pop {r7, pc} + 8004654: 200002b4 .word 0x200002b4 -08004698 : +08004658 : //从eeprom读取数据 void EEPROM_READ_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 8004698: b580 push {r7, lr} - 800469a: b082 sub sp, #8 - 800469c: af00 add r7, sp, #0 - 800469e: 4603 mov r3, r0 - 80046a0: 6039 str r1, [r7, #0] - 80046a2: 80fb strh r3, [r7, #6] - 80046a4: 4613 mov r3, r2 - 80046a6: 80bb strh r3, [r7, #4] + 8004658: b580 push {r7, lr} + 800465a: b082 sub sp, #8 + 800465c: af00 add r7, sp, #0 + 800465e: 4603 mov r3, r0 + 8004660: 6039 str r1, [r7, #0] + 8004662: 80fb strh r3, [r7, #6] + 8004664: 4613 mov r3, r2 + 8004666: 80bb strh r3, [r7, #4] IIC_READ_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); - 80046a8: 88bb ldrh r3, [r7, #4] - 80046aa: 88f9 ldrh r1, [r7, #6] - 80046ac: 683a ldr r2, [r7, #0] - 80046ae: 20a0 movs r0, #160 ; 0xa0 - 80046b0: f7ff ff74 bl 800459c + 8004668: 88bb ldrh r3, [r7, #4] + 800466a: 88f9 ldrh r1, [r7, #6] + 800466c: 683a ldr r2, [r7, #0] + 800466e: 20a0 movs r0, #160 ; 0xa0 + 8004670: f000 f868 bl 8004744 } - 80046b4: bf00 nop - 80046b6: 3708 adds r7, #8 - 80046b8: 46bd mov sp, r7 - 80046ba: bd80 pop {r7, pc} + 8004674: bf00 nop + 8004676: 3708 adds r7, #8 + 8004678: 46bd mov sp, r7 + 800467a: bd80 pop {r7, pc} -080046bc : +0800467c : //向eeprom写入数据 void EEPROM_WRITE_BATY(uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) { - 80046bc: b580 push {r7, lr} - 80046be: b086 sub sp, #24 - 80046c0: af00 add r7, sp, #0 - 80046c2: 4603 mov r3, r0 - 80046c4: 6039 str r1, [r7, #0] - 80046c6: 80fb strh r3, [r7, #6] - 80046c8: 4613 mov r3, r2 - 80046ca: 80bb strh r3, [r7, #4] + 800467c: b580 push {r7, lr} + 800467e: b086 sub sp, #24 + 8004680: af00 add r7, sp, #0 + 8004682: 4603 mov r3, r0 + 8004684: 6039 str r1, [r7, #0] + 8004686: 80fb strh r3, [r7, #6] + 8004688: 4613 mov r3, r2 + 800468a: 80bb strh r3, [r7, #4] //IIC_SAND_DATE(EEPROM_ADDRESS,IN_DEVICE_ADD,DATAS,LONG); uint16_t addoffset=0; - 80046cc: 2300 movs r3, #0 - 80046ce: 82fb strh r3, [r7, #22] + 800468c: 2300 movs r3, #0 + 800468e: 82fb strh r3, [r7, #22] eeprom_write_buff *buff; eeprom_write_buff *buff2; while(LONG--) - 80046d0: e02d b.n 800472e + 8004690: e02d b.n 80046ee { buff =(eeprom_write_buff*)malloc(sizeof(eeprom_write_buff)); - 80046d2: 2008 movs r0, #8 - 80046d4: f001 f8e2 bl 800589c - 80046d8: 4603 mov r3, r0 - 80046da: 613b str r3, [r7, #16] + 8004692: 2008 movs r0, #8 + 8004694: f001 fa6c bl 8005b70 + 8004698: 4603 mov r3, r0 + 800469a: 613b str r3, [r7, #16] if(buff!=NULL) - 80046dc: 693b ldr r3, [r7, #16] - 80046de: 2b00 cmp r3, #0 - 80046e0: d02b beq.n 800473a + 800469c: 693b ldr r3, [r7, #16] + 800469e: 2b00 cmp r3, #0 + 80046a0: d02b beq.n 80046fa { buff->add=IN_DEVICE_ADD+addoffset; - 80046e2: 88fa ldrh r2, [r7, #6] - 80046e4: 8afb ldrh r3, [r7, #22] - 80046e6: 4413 add r3, r2 - 80046e8: b29a uxth r2, r3 - 80046ea: 693b ldr r3, [r7, #16] - 80046ec: 809a strh r2, [r3, #4] + 80046a2: 88fa ldrh r2, [r7, #6] + 80046a4: 8afb ldrh r3, [r7, #22] + 80046a6: 4413 add r3, r2 + 80046a8: b29a uxth r2, r3 + 80046aa: 693b ldr r3, [r7, #16] + 80046ac: 809a strh r2, [r3, #4] buff->date=DATAS[addoffset]; - 80046ee: 8afb ldrh r3, [r7, #22] - 80046f0: 683a ldr r2, [r7, #0] - 80046f2: 4413 add r3, r2 - 80046f4: 781a ldrb r2, [r3, #0] - 80046f6: 693b ldr r3, [r7, #16] - 80046f8: 719a strb r2, [r3, #6] + 80046ae: 8afb ldrh r3, [r7, #22] + 80046b0: 683a ldr r2, [r7, #0] + 80046b2: 4413 add r3, r2 + 80046b4: 781a ldrb r2, [r3, #0] + 80046b6: 693b ldr r3, [r7, #16] + 80046b8: 719a strb r2, [r3, #6] buff->next=NULL; - 80046fa: 693b ldr r3, [r7, #16] - 80046fc: 2200 movs r2, #0 - 80046fe: 601a str r2, [r3, #0] + 80046ba: 693b ldr r3, [r7, #16] + 80046bc: 2200 movs r2, #0 + 80046be: 601a str r2, [r3, #0] }else{return ;} if(eeprom_write_buffer.head==NULL) - 8004700: 4b10 ldr r3, [pc, #64] ; (8004744 ) - 8004702: 685b ldr r3, [r3, #4] - 8004704: 2b00 cmp r3, #0 - 8004706: d106 bne.n 8004716 + 80046c0: 4b10 ldr r3, [pc, #64] ; (8004704 ) + 80046c2: 685b ldr r3, [r3, #4] + 80046c4: 2b00 cmp r3, #0 + 80046c6: d106 bne.n 80046d6 { eeprom_write_buffer.head=buff; - 8004708: 4a0e ldr r2, [pc, #56] ; (8004744 ) - 800470a: 693b ldr r3, [r7, #16] - 800470c: 6053 str r3, [r2, #4] + 80046c8: 4a0e ldr r2, [pc, #56] ; (8004704 ) + 80046ca: 693b ldr r3, [r7, #16] + 80046cc: 6053 str r3, [r2, #4] eeprom_write_buffer.end=buff; - 800470e: 4a0d ldr r2, [pc, #52] ; (8004744 ) - 8004710: 693b ldr r3, [r7, #16] - 8004712: 6093 str r3, [r2, #8] - 8004714: e008 b.n 8004728 + 80046ce: 4a0d ldr r2, [pc, #52] ; (8004704 ) + 80046d0: 693b ldr r3, [r7, #16] + 80046d2: 6093 str r3, [r2, #8] + 80046d4: e008 b.n 80046e8 }else { buff2=eeprom_write_buffer.end; - 8004716: 4b0b ldr r3, [pc, #44] ; (8004744 ) - 8004718: 689b ldr r3, [r3, #8] - 800471a: 60fb str r3, [r7, #12] + 80046d6: 4b0b ldr r3, [pc, #44] ; (8004704 ) + 80046d8: 689b ldr r3, [r3, #8] + 80046da: 60fb str r3, [r7, #12] buff2->next=buff; - 800471c: 68fb ldr r3, [r7, #12] - 800471e: 693a ldr r2, [r7, #16] - 8004720: 601a str r2, [r3, #0] + 80046dc: 68fb ldr r3, [r7, #12] + 80046de: 693a ldr r2, [r7, #16] + 80046e0: 601a str r2, [r3, #0] eeprom_write_buffer.end=buff; - 8004722: 4a08 ldr r2, [pc, #32] ; (8004744 ) - 8004724: 693b ldr r3, [r7, #16] - 8004726: 6093 str r3, [r2, #8] + 80046e2: 4a08 ldr r2, [pc, #32] ; (8004704 ) + 80046e4: 693b ldr r3, [r7, #16] + 80046e6: 6093 str r3, [r2, #8] } addoffset++; - 8004728: 8afb ldrh r3, [r7, #22] - 800472a: 3301 adds r3, #1 - 800472c: 82fb strh r3, [r7, #22] + 80046e8: 8afb ldrh r3, [r7, #22] + 80046ea: 3301 adds r3, #1 + 80046ec: 82fb strh r3, [r7, #22] while(LONG--) - 800472e: 88bb ldrh r3, [r7, #4] - 8004730: 1e5a subs r2, r3, #1 - 8004732: 80ba strh r2, [r7, #4] - 8004734: 2b00 cmp r3, #0 - 8004736: d1cc bne.n 80046d2 - 8004738: e000 b.n 800473c + 80046ee: 88bb ldrh r3, [r7, #4] + 80046f0: 1e5a subs r2, r3, #1 + 80046f2: 80ba strh r2, [r7, #4] + 80046f4: 2b00 cmp r3, #0 + 80046f6: d1cc bne.n 8004692 + 80046f8: e000 b.n 80046fc }else{return ;} - 800473a: bf00 nop + 80046fa: bf00 nop } } - 800473c: 3718 adds r7, #24 - 800473e: 46bd mov sp, r7 - 8004740: bd80 pop {r7, pc} - 8004742: bf00 nop - 8004744: 200002b4 .word 0x200002b4 + 80046fc: 3718 adds r7, #24 + 80046fe: 46bd mov sp, r7 + 8004700: bd80 pop {r7, pc} + 8004702: bf00 nop + 8004704: 200002b4 .word 0x200002b4 -08004748 : +08004708 : + +//iic硬件接口 +extern I2C_HandleTypeDef hi2c2; + +void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) +{ + 8004708: b580 push {r7, lr} + 800470a: b088 sub sp, #32 + 800470c: af04 add r7, sp, #16 + 800470e: 60ba str r2, [r7, #8] + 8004710: 461a mov r2, r3 + 8004712: 4603 mov r3, r0 + 8004714: 81fb strh r3, [r7, #14] + 8004716: 460b mov r3, r1 + 8004718: 81bb strh r3, [r7, #12] + 800471a: 4613 mov r3, r2 + 800471c: 80fb strh r3, [r7, #6] + HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); + 800471e: 89ba ldrh r2, [r7, #12] + 8004720: 89f9 ldrh r1, [r7, #14] + 8004722: 2364 movs r3, #100 ; 0x64 + 8004724: 9302 str r3, [sp, #8] + 8004726: 88fb ldrh r3, [r7, #6] + 8004728: 9301 str r3, [sp, #4] + 800472a: 68bb ldr r3, [r7, #8] + 800472c: 9300 str r3, [sp, #0] + 800472e: 2301 movs r3, #1 + 8004730: 4803 ldr r0, [pc, #12] ; (8004740 ) + 8004732: f7fd fced bl 8002110 +} + 8004736: bf00 nop + 8004738: 3710 adds r7, #16 + 800473a: 46bd mov sp, r7 + 800473c: bd80 pop {r7, pc} + 800473e: bf00 nop + 8004740: 20000208 .word 0x20000208 + +08004744 : + +void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) +{ + 8004744: b580 push {r7, lr} + 8004746: b088 sub sp, #32 + 8004748: af04 add r7, sp, #16 + 800474a: 60ba str r2, [r7, #8] + 800474c: 461a mov r2, r3 + 800474e: 4603 mov r3, r0 + 8004750: 81fb strh r3, [r7, #14] + 8004752: 460b mov r3, r1 + 8004754: 81bb strh r3, [r7, #12] + 8004756: 4613 mov r3, r2 + 8004758: 80fb strh r3, [r7, #6] + HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); + 800475a: 89ba ldrh r2, [r7, #12] + 800475c: 89f9 ldrh r1, [r7, #14] + 800475e: 2364 movs r3, #100 ; 0x64 + 8004760: 9302 str r3, [sp, #8] + 8004762: 88fb ldrh r3, [r7, #6] + 8004764: 9301 str r3, [sp, #4] + 8004766: 68bb ldr r3, [r7, #8] + 8004768: 9300 str r3, [sp, #0] + 800476a: 2301 movs r3, #1 + 800476c: 4803 ldr r0, [pc, #12] ; (800477c ) + 800476e: f7fd fdc9 bl 8002304 +} + 8004772: bf00 nop + 8004774: 3710 adds r7, #16 + 8004776: 46bd mov sp, r7 + 8004778: bd80 pop {r7, pc} + 800477a: bf00 nop + 800477c: 20000208 .word 0x20000208 + +08004780 : //SPI写数据 //向触摸屏IC写入1byte数据 //num:要写入的数据 void TP_Write_Byte(char num) { - 8004748: b580 push {r7, lr} - 800474a: b084 sub sp, #16 - 800474c: af00 add r7, sp, #0 - 800474e: 4603 mov r3, r0 - 8004750: 71fb strb r3, [r7, #7] + 8004780: b580 push {r7, lr} + 8004782: b084 sub sp, #16 + 8004784: af00 add r7, sp, #0 + 8004786: 4603 mov r3, r0 + 8004788: 71fb strb r3, [r7, #7] for(uint8_t count=0;count<8;count++) - 8004752: 2300 movs r3, #0 - 8004754: 73fb strb r3, [r7, #15] - 8004756: e020 b.n 800479a + 800478a: 2300 movs r3, #0 + 800478c: 73fb strb r3, [r7, #15] + 800478e: e020 b.n 80047d2 { if(num&0x80){TDIN(1);} - 8004758: f997 3007 ldrsb.w r3, [r7, #7] - 800475c: 2b00 cmp r3, #0 - 800475e: da06 bge.n 800476e - 8004760: 2201 movs r2, #1 - 8004762: f44f 7100 mov.w r1, #512 ; 0x200 - 8004766: 4811 ldr r0, [pc, #68] ; (80047ac ) - 8004768: f7fd fb59 bl 8001e1e - 800476c: e005 b.n 800477a + 8004790: f997 3007 ldrsb.w r3, [r7, #7] + 8004794: 2b00 cmp r3, #0 + 8004796: da06 bge.n 80047a6 + 8004798: 2201 movs r2, #1 + 800479a: f44f 7100 mov.w r1, #512 ; 0x200 + 800479e: 4811 ldr r0, [pc, #68] ; (80047e4 ) + 80047a0: f7fd fb59 bl 8001e56 + 80047a4: e005 b.n 80047b2 else {TDIN(0);} - 800476e: 2200 movs r2, #0 - 8004770: f44f 7100 mov.w r1, #512 ; 0x200 - 8004774: 480d ldr r0, [pc, #52] ; (80047ac ) - 8004776: f7fd fb52 bl 8001e1e + 80047a6: 2200 movs r2, #0 + 80047a8: f44f 7100 mov.w r1, #512 ; 0x200 + 80047ac: 480d ldr r0, [pc, #52] ; (80047e4 ) + 80047ae: f7fd fb52 bl 8001e56 num<<=1; - 800477a: 79fb ldrb r3, [r7, #7] - 800477c: 005b lsls r3, r3, #1 - 800477e: 71fb strb r3, [r7, #7] + 80047b2: 79fb ldrb r3, [r7, #7] + 80047b4: 005b lsls r3, r3, #1 + 80047b6: 71fb strb r3, [r7, #7] TCLK(0); - 8004780: 2200 movs r2, #0 - 8004782: 2102 movs r1, #2 - 8004784: 480a ldr r0, [pc, #40] ; (80047b0 ) - 8004786: f7fd fb4a bl 8001e1e + 80047b8: 2200 movs r2, #0 + 80047ba: 2102 movs r1, #2 + 80047bc: 480a ldr r0, [pc, #40] ; (80047e8 ) + 80047be: f7fd fb4a bl 8001e56 TCLK(1); //上升沿有效 - 800478a: 2201 movs r2, #1 - 800478c: 2102 movs r1, #2 - 800478e: 4808 ldr r0, [pc, #32] ; (80047b0 ) - 8004790: f7fd fb45 bl 8001e1e + 80047c2: 2201 movs r2, #1 + 80047c4: 2102 movs r1, #2 + 80047c6: 4808 ldr r0, [pc, #32] ; (80047e8 ) + 80047c8: f7fd fb45 bl 8001e56 for(uint8_t count=0;count<8;count++) - 8004794: 7bfb ldrb r3, [r7, #15] - 8004796: 3301 adds r3, #1 - 8004798: 73fb strb r3, [r7, #15] - 800479a: 7bfb ldrb r3, [r7, #15] - 800479c: 2b07 cmp r3, #7 - 800479e: d9db bls.n 8004758 + 80047cc: 7bfb ldrb r3, [r7, #15] + 80047ce: 3301 adds r3, #1 + 80047d0: 73fb strb r3, [r7, #15] + 80047d2: 7bfb ldrb r3, [r7, #15] + 80047d4: 2b07 cmp r3, #7 + 80047d6: d9db bls.n 8004790 } } - 80047a0: bf00 nop - 80047a2: bf00 nop - 80047a4: 3710 adds r7, #16 - 80047a6: 46bd mov sp, r7 - 80047a8: bd80 pop {r7, pc} - 80047aa: bf00 nop - 80047ac: 40011c00 .word 0x40011c00 - 80047b0: 40010c00 .word 0x40010c00 + 80047d8: bf00 nop + 80047da: bf00 nop + 80047dc: 3710 adds r7, #16 + 80047de: 46bd mov sp, r7 + 80047e0: bd80 pop {r7, pc} + 80047e2: bf00 nop + 80047e4: 40011c00 .word 0x40011c00 + 80047e8: 40010c00 .word 0x40010c00 -080047b4 : +080047ec : //SPI读数据 //从触摸屏IC读取adc值 //CMD:指令 //返回值:读到的数据 uint16_t TP_Read_AD(char CMD) { - 80047b4: b580 push {r7, lr} - 80047b6: b084 sub sp, #16 - 80047b8: af00 add r7, sp, #0 - 80047ba: 4603 mov r3, r0 - 80047bc: 71fb strb r3, [r7, #7] + 80047ec: b580 push {r7, lr} + 80047ee: b084 sub sp, #16 + 80047f0: af00 add r7, sp, #0 + 80047f2: 4603 mov r3, r0 + 80047f4: 71fb strb r3, [r7, #7] uint16_t Num=0; - 80047be: 2300 movs r3, #0 - 80047c0: 81fb strh r3, [r7, #14] + 80047f6: 2300 movs r3, #0 + 80047f8: 81fb strh r3, [r7, #14] TCLK(0); //先拉低时钟 - 80047c2: 2200 movs r2, #0 - 80047c4: 2102 movs r1, #2 - 80047c6: 482b ldr r0, [pc, #172] ; (8004874 ) - 80047c8: f7fd fb29 bl 8001e1e + 80047fa: 2200 movs r2, #0 + 80047fc: 2102 movs r1, #2 + 80047fe: 482b ldr r0, [pc, #172] ; (80048ac ) + 8004800: f7fd fb29 bl 8001e56 TDIN(0); //拉低数据线 - 80047cc: 2200 movs r2, #0 - 80047ce: f44f 7100 mov.w r1, #512 ; 0x200 - 80047d2: 4829 ldr r0, [pc, #164] ; (8004878 ) - 80047d4: f7fd fb23 bl 8001e1e + 8004804: 2200 movs r2, #0 + 8004806: f44f 7100 mov.w r1, #512 ; 0x200 + 800480a: 4829 ldr r0, [pc, #164] ; (80048b0 ) + 800480c: f7fd fb23 bl 8001e56 TCS(0); //选中触摸屏IC - 80047d8: 2200 movs r2, #0 - 80047da: 2104 movs r1, #4 - 80047dc: 4825 ldr r0, [pc, #148] ; (8004874 ) - 80047de: f7fd fb1e bl 8001e1e + 8004810: 2200 movs r2, #0 + 8004812: 2104 movs r1, #4 + 8004814: 4825 ldr r0, [pc, #148] ; (80048ac ) + 8004816: f7fd fb1e bl 8001e56 TP_Write_Byte(CMD);//发送命令字 - 80047e2: 79fb ldrb r3, [r7, #7] - 80047e4: 4618 mov r0, r3 - 80047e6: f7ff ffaf bl 8004748 + 800481a: 79fb ldrb r3, [r7, #7] + 800481c: 4618 mov r0, r3 + 800481e: f7ff ffaf bl 8004780 HAL_GetTick(); //稍微延时,ad转换需要时间 - 80047ea: f7fd f85b bl 80018a4 + 8004822: f7fd f85b bl 80018dc HAL_GetTick(); - 80047ee: f7fd f859 bl 80018a4 + 8004826: f7fd f859 bl 80018dc HAL_GetTick(); - 80047f2: f7fd f857 bl 80018a4 + 800482a: f7fd f857 bl 80018dc HAL_GetTick(); - 80047f6: f7fd f855 bl 80018a4 + 800482e: f7fd f855 bl 80018dc HAL_GetTick(); - 80047fa: f7fd f853 bl 80018a4 + 8004832: f7fd f853 bl 80018dc HAL_GetTick(); - 80047fe: f7fd f851 bl 80018a4 + 8004836: f7fd f851 bl 80018dc TCLK(1); //给1个时钟,清除BUSY - 8004802: 2201 movs r2, #1 - 8004804: 2102 movs r1, #2 - 8004806: 481b ldr r0, [pc, #108] ; (8004874 ) - 8004808: f7fd fb09 bl 8001e1e + 800483a: 2201 movs r2, #1 + 800483c: 2102 movs r1, #2 + 800483e: 481b ldr r0, [pc, #108] ; (80048ac ) + 8004840: f7fd fb09 bl 8001e56 TCLK(0); - 800480c: 2200 movs r2, #0 - 800480e: 2102 movs r1, #2 - 8004810: 4818 ldr r0, [pc, #96] ; (8004874 ) - 8004812: f7fd fb04 bl 8001e1e + 8004844: 2200 movs r2, #0 + 8004846: 2102 movs r1, #2 + 8004848: 4818 ldr r0, [pc, #96] ; (80048ac ) + 800484a: f7fd fb04 bl 8001e56 for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 8004816: 2300 movs r3, #0 - 8004818: 737b strb r3, [r7, #13] - 800481a: e01a b.n 8004852 + 800484e: 2300 movs r3, #0 + 8004850: 737b strb r3, [r7, #13] + 8004852: e01a b.n 800488a { Num<<=1; - 800481c: 89fb ldrh r3, [r7, #14] - 800481e: 005b lsls r3, r3, #1 - 8004820: 81fb strh r3, [r7, #14] + 8004854: 89fb ldrh r3, [r7, #14] + 8004856: 005b lsls r3, r3, #1 + 8004858: 81fb strh r3, [r7, #14] TCLK(0); //下降沿有效 - 8004822: 2200 movs r2, #0 - 8004824: 2102 movs r1, #2 - 8004826: 4813 ldr r0, [pc, #76] ; (8004874 ) - 8004828: f7fd faf9 bl 8001e1e + 800485a: 2200 movs r2, #0 + 800485c: 2102 movs r1, #2 + 800485e: 4813 ldr r0, [pc, #76] ; (80048ac ) + 8004860: f7fd faf9 bl 8001e56 TCLK(1);; - 800482c: 2201 movs r2, #1 - 800482e: 2102 movs r1, #2 - 8004830: 4810 ldr r0, [pc, #64] ; (8004874 ) - 8004832: f7fd faf4 bl 8001e1e + 8004864: 2201 movs r2, #1 + 8004866: 2102 movs r1, #2 + 8004868: 4810 ldr r0, [pc, #64] ; (80048ac ) + 800486a: f7fd faf4 bl 8001e56 if(TDOUT){Num++;} - 8004836: f44f 7180 mov.w r1, #256 ; 0x100 - 800483a: 480f ldr r0, [pc, #60] ; (8004878 ) - 800483c: f7fd fad8 bl 8001df0 - 8004840: 4603 mov r3, r0 - 8004842: 2b00 cmp r3, #0 - 8004844: d002 beq.n 800484c - 8004846: 89fb ldrh r3, [r7, #14] - 8004848: 3301 adds r3, #1 - 800484a: 81fb strh r3, [r7, #14] + 800486e: f44f 7180 mov.w r1, #256 ; 0x100 + 8004872: 480f ldr r0, [pc, #60] ; (80048b0 ) + 8004874: f7fd fad8 bl 8001e28 + 8004878: 4603 mov r3, r0 + 800487a: 2b00 cmp r3, #0 + 800487c: d002 beq.n 8004884 + 800487e: 89fb ldrh r3, [r7, #14] + 8004880: 3301 adds r3, #1 + 8004882: 81fb strh r3, [r7, #14] for(uint8_t count=0;count<16;count++)//读出16位数据,只有高12位有效 - 800484c: 7b7b ldrb r3, [r7, #13] - 800484e: 3301 adds r3, #1 - 8004850: 737b strb r3, [r7, #13] - 8004852: 7b7b ldrb r3, [r7, #13] - 8004854: 2b0f cmp r3, #15 - 8004856: d9e1 bls.n 800481c + 8004884: 7b7b ldrb r3, [r7, #13] + 8004886: 3301 adds r3, #1 + 8004888: 737b strb r3, [r7, #13] + 800488a: 7b7b ldrb r3, [r7, #13] + 800488c: 2b0f cmp r3, #15 + 800488e: d9e1 bls.n 8004854 } Num>>=4; //只有高12位有效. - 8004858: 89fb ldrh r3, [r7, #14] - 800485a: 091b lsrs r3, r3, #4 - 800485c: 81fb strh r3, [r7, #14] + 8004890: 89fb ldrh r3, [r7, #14] + 8004892: 091b lsrs r3, r3, #4 + 8004894: 81fb strh r3, [r7, #14] TCS(1); //释放片选 - 800485e: 2201 movs r2, #1 - 8004860: 2104 movs r1, #4 - 8004862: 4804 ldr r0, [pc, #16] ; (8004874 ) - 8004864: f7fd fadb bl 8001e1e + 8004896: 2201 movs r2, #1 + 8004898: 2104 movs r1, #4 + 800489a: 4804 ldr r0, [pc, #16] ; (80048ac ) + 800489c: f7fd fadb bl 8001e56 return(Num); - 8004868: 89fb ldrh r3, [r7, #14] + 80048a0: 89fb ldrh r3, [r7, #14] } - 800486a: 4618 mov r0, r3 - 800486c: 3710 adds r7, #16 - 800486e: 46bd mov sp, r7 - 8004870: bd80 pop {r7, pc} - 8004872: bf00 nop - 8004874: 40010c00 .word 0x40010c00 - 8004878: 40011c00 .word 0x40011c00 + 80048a2: 4618 mov r0, r3 + 80048a4: 3710 adds r7, #16 + 80048a6: 46bd mov sp, r7 + 80048a8: bd80 pop {r7, pc} + 80048aa: bf00 nop + 80048ac: 40010c00 .word 0x40010c00 + 80048b0: 40011c00 .word 0x40011c00 -0800487c : +080048b4 : //xy:指令(CMD_RDX/CMD_RDY) //返回值:读到的数据 #define READ_TIMES 5 //读取次数 #define LOST_VAL 1 //丢弃值 uint16_t TP_Read_XOY(uint8_t xy) { - 800487c: b590 push {r4, r7, lr} - 800487e: b089 sub sp, #36 ; 0x24 - 8004880: af00 add r7, sp, #0 - 8004882: 4603 mov r3, r0 - 8004884: 71fb strb r3, [r7, #7] + 80048b4: b590 push {r4, r7, lr} + 80048b6: b089 sub sp, #36 ; 0x24 + 80048b8: af00 add r7, sp, #0 + 80048ba: 4603 mov r3, r0 + 80048bc: 71fb strb r3, [r7, #7] uint16_t i, j; uint16_t buf[READ_TIMES]; uint16_t sum=0; - 8004886: 2300 movs r3, #0 - 8004888: 837b strh r3, [r7, #26] + 80048be: 2300 movs r3, #0 + 80048c0: 837b strh r3, [r7, #26] uint16_t temp; for(i=0;i - 8004890: 8bfc ldrh r4, [r7, #30] - 8004892: 79fb ldrb r3, [r7, #7] - 8004894: 4618 mov r0, r3 - 8004896: f7ff ff8d bl 80047b4 - 800489a: 4603 mov r3, r0 - 800489c: 461a mov r2, r3 - 800489e: 0063 lsls r3, r4, #1 - 80048a0: f107 0120 add.w r1, r7, #32 - 80048a4: 440b add r3, r1 - 80048a6: f823 2c14 strh.w r2, [r3, #-20] - 80048aa: 8bfb ldrh r3, [r7, #30] - 80048ac: 3301 adds r3, #1 - 80048ae: 83fb strh r3, [r7, #30] - 80048b0: 8bfb ldrh r3, [r7, #30] - 80048b2: 2b04 cmp r3, #4 - 80048b4: d9ec bls.n 8004890 + 80048c2: 2300 movs r3, #0 + 80048c4: 83fb strh r3, [r7, #30] + 80048c6: e00f b.n 80048e8 + 80048c8: 8bfc ldrh r4, [r7, #30] + 80048ca: 79fb ldrb r3, [r7, #7] + 80048cc: 4618 mov r0, r3 + 80048ce: f7ff ff8d bl 80047ec + 80048d2: 4603 mov r3, r0 + 80048d4: 461a mov r2, r3 + 80048d6: 0063 lsls r3, r4, #1 + 80048d8: f107 0120 add.w r1, r7, #32 + 80048dc: 440b add r3, r1 + 80048de: f823 2c14 strh.w r2, [r3, #-20] + 80048e2: 8bfb ldrh r3, [r7, #30] + 80048e4: 3301 adds r3, #1 + 80048e6: 83fb strh r3, [r7, #30] + 80048e8: 8bfb ldrh r3, [r7, #30] + 80048ea: 2b04 cmp r3, #4 + 80048ec: d9ec bls.n 80048c8 for(i=0;i + 80048ee: 2300 movs r3, #0 + 80048f0: 83fb strh r3, [r7, #30] + 80048f2: e03b b.n 800496c { for(j=i+1;j + 80048f4: 8bfb ldrh r3, [r7, #30] + 80048f6: 3301 adds r3, #1 + 80048f8: 83bb strh r3, [r7, #28] + 80048fa: e031 b.n 8004960 { if(buf[i]>buf[j])//升序排列 - 80048c4: 8bfb ldrh r3, [r7, #30] - 80048c6: 005b lsls r3, r3, #1 - 80048c8: f107 0220 add.w r2, r7, #32 - 80048cc: 4413 add r3, r2 - 80048ce: f833 2c14 ldrh.w r2, [r3, #-20] - 80048d2: 8bbb ldrh r3, [r7, #28] - 80048d4: 005b lsls r3, r3, #1 - 80048d6: f107 0120 add.w r1, r7, #32 - 80048da: 440b add r3, r1 - 80048dc: f833 3c14 ldrh.w r3, [r3, #-20] - 80048e0: 429a cmp r2, r3 - 80048e2: d91e bls.n 8004922 + 80048fc: 8bfb ldrh r3, [r7, #30] + 80048fe: 005b lsls r3, r3, #1 + 8004900: f107 0220 add.w r2, r7, #32 + 8004904: 4413 add r3, r2 + 8004906: f833 2c14 ldrh.w r2, [r3, #-20] + 800490a: 8bbb ldrh r3, [r7, #28] + 800490c: 005b lsls r3, r3, #1 + 800490e: f107 0120 add.w r1, r7, #32 + 8004912: 440b add r3, r1 + 8004914: f833 3c14 ldrh.w r3, [r3, #-20] + 8004918: 429a cmp r2, r3 + 800491a: d91e bls.n 800495a { temp=buf[i]; - 80048e4: 8bfb ldrh r3, [r7, #30] - 80048e6: 005b lsls r3, r3, #1 - 80048e8: f107 0220 add.w r2, r7, #32 - 80048ec: 4413 add r3, r2 - 80048ee: f833 3c14 ldrh.w r3, [r3, #-20] - 80048f2: 833b strh r3, [r7, #24] + 800491c: 8bfb ldrh r3, [r7, #30] + 800491e: 005b lsls r3, r3, #1 + 8004920: f107 0220 add.w r2, r7, #32 + 8004924: 4413 add r3, r2 + 8004926: f833 3c14 ldrh.w r3, [r3, #-20] + 800492a: 833b strh r3, [r7, #24] buf[i]=buf[j]; - 80048f4: 8bbb ldrh r3, [r7, #28] - 80048f6: 8bfa ldrh r2, [r7, #30] - 80048f8: 005b lsls r3, r3, #1 - 80048fa: f107 0120 add.w r1, r7, #32 - 80048fe: 440b add r3, r1 - 8004900: f833 1c14 ldrh.w r1, [r3, #-20] - 8004904: 0053 lsls r3, r2, #1 - 8004906: f107 0220 add.w r2, r7, #32 - 800490a: 4413 add r3, r2 - 800490c: 460a mov r2, r1 - 800490e: f823 2c14 strh.w r2, [r3, #-20] + 800492c: 8bbb ldrh r3, [r7, #28] + 800492e: 8bfa ldrh r2, [r7, #30] + 8004930: 005b lsls r3, r3, #1 + 8004932: f107 0120 add.w r1, r7, #32 + 8004936: 440b add r3, r1 + 8004938: f833 1c14 ldrh.w r1, [r3, #-20] + 800493c: 0053 lsls r3, r2, #1 + 800493e: f107 0220 add.w r2, r7, #32 + 8004942: 4413 add r3, r2 + 8004944: 460a mov r2, r1 + 8004946: f823 2c14 strh.w r2, [r3, #-20] buf[j]=temp; - 8004912: 8bbb ldrh r3, [r7, #28] - 8004914: 005b lsls r3, r3, #1 - 8004916: f107 0220 add.w r2, r7, #32 - 800491a: 4413 add r3, r2 - 800491c: 8b3a ldrh r2, [r7, #24] - 800491e: f823 2c14 strh.w r2, [r3, #-20] + 800494a: 8bbb ldrh r3, [r7, #28] + 800494c: 005b lsls r3, r3, #1 + 800494e: f107 0220 add.w r2, r7, #32 + 8004952: 4413 add r3, r2 + 8004954: 8b3a ldrh r2, [r7, #24] + 8004956: f823 2c14 strh.w r2, [r3, #-20] for(j=i+1;j + 800495a: 8bbb ldrh r3, [r7, #28] + 800495c: 3301 adds r3, #1 + 800495e: 83bb strh r3, [r7, #28] + 8004960: 8bbb ldrh r3, [r7, #28] + 8004962: 2b04 cmp r3, #4 + 8004964: d9ca bls.n 80048fc for(i=0;i + 8004966: 8bfb ldrh r3, [r7, #30] + 8004968: 3301 adds r3, #1 + 800496a: 83fb strh r3, [r7, #30] + 800496c: 8bfb ldrh r3, [r7, #30] + 800496e: 2b03 cmp r3, #3 + 8004970: d9c0 bls.n 80048f4 } } } sum=0; - 800493a: 2300 movs r3, #0 - 800493c: 837b strh r3, [r7, #26] + 8004972: 2300 movs r3, #0 + 8004974: 837b strh r3, [r7, #26] for(i=LOST_VAL;i - 8004944: 8bfb ldrh r3, [r7, #30] - 8004946: 005b lsls r3, r3, #1 - 8004948: f107 0220 add.w r2, r7, #32 - 800494c: 4413 add r3, r2 - 800494e: f833 2c14 ldrh.w r2, [r3, #-20] - 8004952: 8b7b ldrh r3, [r7, #26] - 8004954: 4413 add r3, r2 - 8004956: 837b strh r3, [r7, #26] - 8004958: 8bfb ldrh r3, [r7, #30] - 800495a: 3301 adds r3, #1 - 800495c: 83fb strh r3, [r7, #30] - 800495e: 8bfb ldrh r3, [r7, #30] - 8004960: 2b03 cmp r3, #3 - 8004962: d9ef bls.n 8004944 + 8004976: 2301 movs r3, #1 + 8004978: 83fb strh r3, [r7, #30] + 800497a: e00c b.n 8004996 + 800497c: 8bfb ldrh r3, [r7, #30] + 800497e: 005b lsls r3, r3, #1 + 8004980: f107 0220 add.w r2, r7, #32 + 8004984: 4413 add r3, r2 + 8004986: f833 2c14 ldrh.w r2, [r3, #-20] + 800498a: 8b7b ldrh r3, [r7, #26] + 800498c: 4413 add r3, r2 + 800498e: 837b strh r3, [r7, #26] + 8004990: 8bfb ldrh r3, [r7, #30] + 8004992: 3301 adds r3, #1 + 8004994: 83fb strh r3, [r7, #30] + 8004996: 8bfb ldrh r3, [r7, #30] + 8004998: 2b03 cmp r3, #3 + 800499a: d9ef bls.n 800497c temp=sum/(READ_TIMES-2*LOST_VAL); - 8004964: 8b7b ldrh r3, [r7, #26] - 8004966: 4a05 ldr r2, [pc, #20] ; (800497c ) - 8004968: fba2 2303 umull r2, r3, r2, r3 - 800496c: 085b lsrs r3, r3, #1 - 800496e: 833b strh r3, [r7, #24] + 800499c: 8b7b ldrh r3, [r7, #26] + 800499e: 4a05 ldr r2, [pc, #20] ; (80049b4 ) + 80049a0: fba2 2303 umull r2, r3, r2, r3 + 80049a4: 085b lsrs r3, r3, #1 + 80049a6: 833b strh r3, [r7, #24] return temp; - 8004970: 8b3b ldrh r3, [r7, #24] + 80049a8: 8b3b ldrh r3, [r7, #24] } - 8004972: 4618 mov r0, r3 - 8004974: 3724 adds r7, #36 ; 0x24 - 8004976: 46bd mov sp, r7 - 8004978: bd90 pop {r4, r7, pc} - 800497a: bf00 nop - 800497c: aaaaaaab .word 0xaaaaaaab + 80049aa: 4618 mov r0, r3 + 80049ac: 3724 adds r7, #36 ; 0x24 + 80049ae: 46bd mov sp, r7 + 80049b0: bd90 pop {r4, r7, pc} + 80049b2: bf00 nop + 80049b4: aaaaaaab .word 0xaaaaaaab -08004980 : +080049b8 : //读取x,y坐标 //x,y:读取到的坐标ADC值 void TP_Read_XY_ADC(int16_t *x,int16_t *y) { - 8004980: b580 push {r7, lr} - 8004982: b084 sub sp, #16 - 8004984: af00 add r7, sp, #0 - 8004986: 6078 str r0, [r7, #4] - 8004988: 6039 str r1, [r7, #0] + 80049b8: b580 push {r7, lr} + 80049ba: b084 sub sp, #16 + 80049bc: af00 add r7, sp, #0 + 80049be: 6078 str r0, [r7, #4] + 80049c0: 6039 str r1, [r7, #0] int16_t xtemp,ytemp; xtemp=TP_Read_XOY(CMD_RDX); - 800498a: 2090 movs r0, #144 ; 0x90 - 800498c: f7ff ff76 bl 800487c - 8004990: 4603 mov r3, r0 - 8004992: 81fb strh r3, [r7, #14] + 80049c2: 2090 movs r0, #144 ; 0x90 + 80049c4: f7ff ff76 bl 80048b4 + 80049c8: 4603 mov r3, r0 + 80049ca: 81fb strh r3, [r7, #14] ytemp=TP_Read_XOY(CMD_RDY); - 8004994: 20d0 movs r0, #208 ; 0xd0 - 8004996: f7ff ff71 bl 800487c - 800499a: 4603 mov r3, r0 - 800499c: 81bb strh r3, [r7, #12] + 80049cc: 20d0 movs r0, #208 ; 0xd0 + 80049ce: f7ff ff71 bl 80048b4 + 80049d2: 4603 mov r3, r0 + 80049d4: 81bb strh r3, [r7, #12] *x=xtemp; - 800499e: 687b ldr r3, [r7, #4] - 80049a0: 89fa ldrh r2, [r7, #14] - 80049a2: 801a strh r2, [r3, #0] + 80049d6: 687b ldr r3, [r7, #4] + 80049d8: 89fa ldrh r2, [r7, #14] + 80049da: 801a strh r2, [r3, #0] *y=ytemp; - 80049a4: 683b ldr r3, [r7, #0] - 80049a6: 89ba ldrh r2, [r7, #12] - 80049a8: 801a strh r2, [r3, #0] + 80049dc: 683b ldr r3, [r7, #0] + 80049de: 89ba ldrh r2, [r7, #12] + 80049e0: 801a strh r2, [r3, #0] } - 80049aa: bf00 nop - 80049ac: 3710 adds r7, #16 - 80049ae: 46bd mov sp, r7 - 80049b0: bd80 pop {r7, pc} + 80049e2: bf00 nop + 80049e4: 3710 adds r7, #16 + 80049e6: 46bd mov sp, r7 + 80049e8: bd80 pop {r7, pc} -080049b2 : +080049ea : //该函数能大大提高准确度 //x,y:读取到的坐标值 //返回值:0,失败;1,成功。 #define ERR_RANGE 10 //误差范围 uint8_t TP_Read_XY2(int16_t *x,int16_t *y) { - 80049b2: b580 push {r7, lr} - 80049b4: b084 sub sp, #16 - 80049b6: af00 add r7, sp, #0 - 80049b8: 6078 str r0, [r7, #4] - 80049ba: 6039 str r1, [r7, #0] + 80049ea: b580 push {r7, lr} + 80049ec: b084 sub sp, #16 + 80049ee: af00 add r7, sp, #0 + 80049f0: 6078 str r0, [r7, #4] + 80049f2: 6039 str r1, [r7, #0] int16_t x1,y1; int16_t x2,y2; TP_Read_XY_ADC(&x1,&y1); - 80049bc: f107 020c add.w r2, r7, #12 - 80049c0: f107 030e add.w r3, r7, #14 - 80049c4: 4611 mov r1, r2 - 80049c6: 4618 mov r0, r3 - 80049c8: f7ff ffda bl 8004980 + 80049f4: f107 020c add.w r2, r7, #12 + 80049f8: f107 030e add.w r3, r7, #14 + 80049fc: 4611 mov r1, r2 + 80049fe: 4618 mov r0, r3 + 8004a00: f7ff ffda bl 80049b8 TP_Read_XY_ADC(&x2,&y2); - 80049cc: f107 0208 add.w r2, r7, #8 - 80049d0: f107 030a add.w r3, r7, #10 - 80049d4: 4611 mov r1, r2 - 80049d6: 4618 mov r0, r3 - 80049d8: f7ff ffd2 bl 8004980 + 8004a04: f107 0208 add.w r2, r7, #8 + 8004a08: f107 030a add.w r3, r7, #10 + 8004a0c: 4611 mov r1, r2 + 8004a0e: 4618 mov r0, r3 + 8004a10: f7ff ffd2 bl 80049b8 if(((x2<=x1&&x1 - 80049e8: f9b7 300a ldrsh.w r3, [r7, #10] - 80049ec: 3309 adds r3, #9 - 80049ee: f9b7 200e ldrsh.w r2, [r7, #14] - 80049f2: 4293 cmp r3, r2 - 80049f4: da0c bge.n 8004a10 - 80049f6: f9b7 200e ldrsh.w r2, [r7, #14] - 80049fa: f9b7 300a ldrsh.w r3, [r7, #10] - 80049fe: 429a cmp r2, r3 - 8004a00: dc3a bgt.n 8004a78 - 8004a02: f9b7 300e ldrsh.w r3, [r7, #14] - 8004a06: 3309 adds r3, #9 - 8004a08: f9b7 200a ldrsh.w r2, [r7, #10] - 8004a0c: 4293 cmp r3, r2 - 8004a0e: db33 blt.n 8004a78 + 8004a14: f9b7 200a ldrsh.w r2, [r7, #10] + 8004a18: f9b7 300e ldrsh.w r3, [r7, #14] + 8004a1c: 429a cmp r2, r3 + 8004a1e: dc06 bgt.n 8004a2e + 8004a20: f9b7 300a ldrsh.w r3, [r7, #10] + 8004a24: 3309 adds r3, #9 + 8004a26: f9b7 200e ldrsh.w r2, [r7, #14] + 8004a2a: 4293 cmp r3, r2 + 8004a2c: da0c bge.n 8004a48 + 8004a2e: f9b7 200e ldrsh.w r2, [r7, #14] + 8004a32: f9b7 300a ldrsh.w r3, [r7, #10] + 8004a36: 429a cmp r2, r3 + 8004a38: dc3a bgt.n 8004ab0 + 8004a3a: f9b7 300e ldrsh.w r3, [r7, #14] + 8004a3e: 3309 adds r3, #9 + 8004a40: f9b7 200a ldrsh.w r2, [r7, #10] + 8004a44: 4293 cmp r3, r2 + 8004a46: db33 blt.n 8004ab0 &&((y2<=y1&&y1 - 8004a1c: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004a20: 3309 adds r3, #9 - 8004a22: f9b7 200c ldrsh.w r2, [r7, #12] - 8004a26: 4293 cmp r3, r2 - 8004a28: da0c bge.n 8004a44 - 8004a2a: f9b7 200c ldrsh.w r2, [r7, #12] - 8004a2e: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004a32: 429a cmp r2, r3 - 8004a34: dc20 bgt.n 8004a78 - 8004a36: f9b7 300c ldrsh.w r3, [r7, #12] - 8004a3a: 3309 adds r3, #9 - 8004a3c: f9b7 2008 ldrsh.w r2, [r7, #8] - 8004a40: 4293 cmp r3, r2 - 8004a42: db19 blt.n 8004a78 + 8004a48: f9b7 2008 ldrsh.w r2, [r7, #8] + 8004a4c: f9b7 300c ldrsh.w r3, [r7, #12] + 8004a50: 429a cmp r2, r3 + 8004a52: dc06 bgt.n 8004a62 + 8004a54: f9b7 3008 ldrsh.w r3, [r7, #8] + 8004a58: 3309 adds r3, #9 + 8004a5a: f9b7 200c ldrsh.w r2, [r7, #12] + 8004a5e: 4293 cmp r3, r2 + 8004a60: da0c bge.n 8004a7c + 8004a62: f9b7 200c ldrsh.w r2, [r7, #12] + 8004a66: f9b7 3008 ldrsh.w r3, [r7, #8] + 8004a6a: 429a cmp r2, r3 + 8004a6c: dc20 bgt.n 8004ab0 + 8004a6e: f9b7 300c ldrsh.w r3, [r7, #12] + 8004a72: 3309 adds r3, #9 + 8004a74: f9b7 2008 ldrsh.w r2, [r7, #8] + 8004a78: 4293 cmp r3, r2 + 8004a7a: db19 blt.n 8004ab0 { *x=(x1+x2)/2; - 8004a44: f9b7 300e ldrsh.w r3, [r7, #14] - 8004a48: 461a mov r2, r3 - 8004a4a: f9b7 300a ldrsh.w r3, [r7, #10] - 8004a4e: 4413 add r3, r2 - 8004a50: 0fda lsrs r2, r3, #31 - 8004a52: 4413 add r3, r2 - 8004a54: 105b asrs r3, r3, #1 - 8004a56: b21a sxth r2, r3 - 8004a58: 687b ldr r3, [r7, #4] - 8004a5a: 801a strh r2, [r3, #0] + 8004a7c: f9b7 300e ldrsh.w r3, [r7, #14] + 8004a80: 461a mov r2, r3 + 8004a82: f9b7 300a ldrsh.w r3, [r7, #10] + 8004a86: 4413 add r3, r2 + 8004a88: 0fda lsrs r2, r3, #31 + 8004a8a: 4413 add r3, r2 + 8004a8c: 105b asrs r3, r3, #1 + 8004a8e: b21a sxth r2, r3 + 8004a90: 687b ldr r3, [r7, #4] + 8004a92: 801a strh r2, [r3, #0] *y=(y1+y2)/2; - 8004a5c: f9b7 300c ldrsh.w r3, [r7, #12] - 8004a60: 461a mov r2, r3 - 8004a62: f9b7 3008 ldrsh.w r3, [r7, #8] - 8004a66: 4413 add r3, r2 - 8004a68: 0fda lsrs r2, r3, #31 - 8004a6a: 4413 add r3, r2 - 8004a6c: 105b asrs r3, r3, #1 - 8004a6e: b21a sxth r2, r3 - 8004a70: 683b ldr r3, [r7, #0] - 8004a72: 801a strh r2, [r3, #0] + 8004a94: f9b7 300c ldrsh.w r3, [r7, #12] + 8004a98: 461a mov r2, r3 + 8004a9a: f9b7 3008 ldrsh.w r3, [r7, #8] + 8004a9e: 4413 add r3, r2 + 8004aa0: 0fda lsrs r2, r3, #31 + 8004aa2: 4413 add r3, r2 + 8004aa4: 105b asrs r3, r3, #1 + 8004aa6: b21a sxth r2, r3 + 8004aa8: 683b ldr r3, [r7, #0] + 8004aaa: 801a strh r2, [r3, #0] return 1; - 8004a74: 2301 movs r3, #1 - 8004a76: e000 b.n 8004a7a + 8004aac: 2301 movs r3, #1 + 8004aae: e000 b.n 8004ab2 }else return 0; - 8004a78: 2300 movs r3, #0 + 8004ab0: 2300 movs r3, #0 } - 8004a7a: 4618 mov r0, r3 - 8004a7c: 3710 adds r7, #16 - 8004a7e: 46bd mov sp, r7 - 8004a80: bd80 pop {r7, pc} + 8004ab2: 4618 mov r0, r3 + 8004ab4: 3710 adds r7, #16 + 8004ab6: 46bd mov sp, r7 + 8004ab8: bd80 pop {r7, pc} ... -08004a84 : +08004abc : touch_device t0;// t0 yyds~ touch_config tconfig; //触摸更新服务,状态机写法,循环获取坐标 void TP_Server() { - 8004a84: b598 push {r3, r4, r7, lr} - 8004a86: af00 add r7, sp, #0 + 8004abc: b598 push {r3, r4, r7, lr} + 8004abe: af00 add r7, sp, #0 if(TPEN==0) //如果有触摸 - 8004a88: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004a8c: 4835 ldr r0, [pc, #212] ; (8004b64 ) - 8004a8e: f7fd f9af bl 8001df0 - 8004a92: 4603 mov r3, r0 - 8004a94: 2b00 cmp r3, #0 - 8004a96: d155 bne.n 8004b44 + 8004ac0: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004ac4: 4835 ldr r0, [pc, #212] ; (8004b9c ) + 8004ac6: f7fd f9af bl 8001e28 + 8004aca: 4603 mov r3, r0 + 8004acc: 2b00 cmp r3, #0 + 8004ace: d155 bne.n 8004b7c { if(TP_Read_XY2(&t0.adc_x,&t0.adc_y)) - 8004a98: 4933 ldr r1, [pc, #204] ; (8004b68 ) - 8004a9a: 4834 ldr r0, [pc, #208] ; (8004b6c ) - 8004a9c: f7ff ff89 bl 80049b2 - 8004aa0: 4603 mov r3, r0 - 8004aa2: 2b00 cmp r3, #0 - 8004aa4: d043 beq.n 8004b2e + 8004ad0: 4933 ldr r1, [pc, #204] ; (8004ba0 ) + 8004ad2: 4834 ldr r0, [pc, #208] ; (8004ba4 ) + 8004ad4: f7ff ff89 bl 80049ea + 8004ad8: 4603 mov r3, r0 + 8004ada: 2b00 cmp r3, #0 + 8004adc: d043 beq.n 8004b66 {//先读取ad值 t0.pix_x=(t0.adc_x/tconfig.x_acc)-tconfig.x_offset;//转换为像素坐标 - 8004aa6: 4b31 ldr r3, [pc, #196] ; (8004b6c ) - 8004aa8: 881b ldrh r3, [r3, #0] - 8004aaa: 4618 mov r0, r3 - 8004aac: f7fc f962 bl 8000d74 <__aeabi_i2f> - 8004ab0: 4602 mov r2, r0 - 8004ab2: 4b2f ldr r3, [pc, #188] ; (8004b70 ) - 8004ab4: 685b ldr r3, [r3, #4] - 8004ab6: 4619 mov r1, r3 - 8004ab8: 4610 mov r0, r2 - 8004aba: f7fc fa63 bl 8000f84 <__aeabi_fdiv> - 8004abe: 4603 mov r3, r0 - 8004ac0: 461c mov r4, r3 - 8004ac2: 4b2b ldr r3, [pc, #172] ; (8004b70 ) - 8004ac4: 68db ldr r3, [r3, #12] - 8004ac6: 4618 mov r0, r3 - 8004ac8: f7fc f954 bl 8000d74 <__aeabi_i2f> - 8004acc: 4603 mov r3, r0 - 8004ace: 4619 mov r1, r3 - 8004ad0: 4620 mov r0, r4 - 8004ad2: f7fc f899 bl 8000c08 <__aeabi_fsub> - 8004ad6: 4603 mov r3, r0 - 8004ad8: 4618 mov r0, r3 - 8004ada: f7fc faef bl 80010bc <__aeabi_f2iz> - 8004ade: 4603 mov r3, r0 - 8004ae0: 4a22 ldr r2, [pc, #136] ; (8004b6c ) - 8004ae2: 6053 str r3, [r2, #4] + 8004ade: 4b31 ldr r3, [pc, #196] ; (8004ba4 ) + 8004ae0: 881b ldrh r3, [r3, #0] + 8004ae2: 4618 mov r0, r3 + 8004ae4: f7fc f946 bl 8000d74 <__aeabi_i2f> + 8004ae8: 4602 mov r2, r0 + 8004aea: 4b2f ldr r3, [pc, #188] ; (8004ba8 ) + 8004aec: 685b ldr r3, [r3, #4] + 8004aee: 4619 mov r1, r3 + 8004af0: 4610 mov r0, r2 + 8004af2: f7fc fa47 bl 8000f84 <__aeabi_fdiv> + 8004af6: 4603 mov r3, r0 + 8004af8: 461c mov r4, r3 + 8004afa: 4b2b ldr r3, [pc, #172] ; (8004ba8 ) + 8004afc: 68db ldr r3, [r3, #12] + 8004afe: 4618 mov r0, r3 + 8004b00: f7fc f938 bl 8000d74 <__aeabi_i2f> + 8004b04: 4603 mov r3, r0 + 8004b06: 4619 mov r1, r3 + 8004b08: 4620 mov r0, r4 + 8004b0a: f7fc f87d bl 8000c08 <__aeabi_fsub> + 8004b0e: 4603 mov r3, r0 + 8004b10: 4618 mov r0, r3 + 8004b12: f7fc fad3 bl 80010bc <__aeabi_f2iz> + 8004b16: 4603 mov r3, r0 + 8004b18: 4a22 ldr r2, [pc, #136] ; (8004ba4 ) + 8004b1a: 6053 str r3, [r2, #4] t0.pix_y=(t0.adc_y/tconfig.y_acc)-tconfig.y_offset; - 8004ae4: 4b21 ldr r3, [pc, #132] ; (8004b6c ) - 8004ae6: 885b ldrh r3, [r3, #2] - 8004ae8: 4618 mov r0, r3 - 8004aea: f7fc f943 bl 8000d74 <__aeabi_i2f> - 8004aee: 4602 mov r2, r0 - 8004af0: 4b1f ldr r3, [pc, #124] ; (8004b70 ) - 8004af2: 689b ldr r3, [r3, #8] - 8004af4: 4619 mov r1, r3 - 8004af6: 4610 mov r0, r2 - 8004af8: f7fc fa44 bl 8000f84 <__aeabi_fdiv> - 8004afc: 4603 mov r3, r0 - 8004afe: 461c mov r4, r3 - 8004b00: 4b1b ldr r3, [pc, #108] ; (8004b70 ) - 8004b02: 691b ldr r3, [r3, #16] - 8004b04: 4618 mov r0, r3 - 8004b06: f7fc f935 bl 8000d74 <__aeabi_i2f> - 8004b0a: 4603 mov r3, r0 - 8004b0c: 4619 mov r1, r3 - 8004b0e: 4620 mov r0, r4 - 8004b10: f7fc f87a bl 8000c08 <__aeabi_fsub> - 8004b14: 4603 mov r3, r0 - 8004b16: 4618 mov r0, r3 - 8004b18: f7fc fad0 bl 80010bc <__aeabi_f2iz> - 8004b1c: 4603 mov r3, r0 - 8004b1e: 4a13 ldr r2, [pc, #76] ; (8004b6c ) - 8004b20: 6093 str r3, [r2, #8] + 8004b1c: 4b21 ldr r3, [pc, #132] ; (8004ba4 ) + 8004b1e: 885b ldrh r3, [r3, #2] + 8004b20: 4618 mov r0, r3 + 8004b22: f7fc f927 bl 8000d74 <__aeabi_i2f> + 8004b26: 4602 mov r2, r0 + 8004b28: 4b1f ldr r3, [pc, #124] ; (8004ba8 ) + 8004b2a: 689b ldr r3, [r3, #8] + 8004b2c: 4619 mov r1, r3 + 8004b2e: 4610 mov r0, r2 + 8004b30: f7fc fa28 bl 8000f84 <__aeabi_fdiv> + 8004b34: 4603 mov r3, r0 + 8004b36: 461c mov r4, r3 + 8004b38: 4b1b ldr r3, [pc, #108] ; (8004ba8 ) + 8004b3a: 691b ldr r3, [r3, #16] + 8004b3c: 4618 mov r0, r3 + 8004b3e: f7fc f919 bl 8000d74 <__aeabi_i2f> + 8004b42: 4603 mov r3, r0 + 8004b44: 4619 mov r1, r3 + 8004b46: 4620 mov r0, r4 + 8004b48: f7fc f85e bl 8000c08 <__aeabi_fsub> + 8004b4c: 4603 mov r3, r0 + 8004b4e: 4618 mov r0, r3 + 8004b50: f7fc fab4 bl 80010bc <__aeabi_f2iz> + 8004b54: 4603 mov r3, r0 + 8004b56: 4a13 ldr r2, [pc, #76] ; (8004ba4 ) + 8004b58: 6093 str r3, [r2, #8] t0.d=1; - 8004b22: 4a12 ldr r2, [pc, #72] ; (8004b6c ) - 8004b24: 7b13 ldrb r3, [r2, #12] - 8004b26: f043 0304 orr.w r3, r3, #4 - 8004b2a: 7313 strb r3, [r2, #12] - 8004b2c: e004 b.n 8004b38 + 8004b5a: 4a12 ldr r2, [pc, #72] ; (8004ba4 ) + 8004b5c: 7b13 ldrb r3, [r2, #12] + 8004b5e: f043 0304 orr.w r3, r3, #4 + 8004b62: 7313 strb r3, [r2, #12] + 8004b64: e004 b.n 8004b70 }else { t0.d=0; - 8004b2e: 4a0f ldr r2, [pc, #60] ; (8004b6c ) - 8004b30: 7b13 ldrb r3, [r2, #12] - 8004b32: f36f 0382 bfc r3, #2, #1 - 8004b36: 7313 strb r3, [r2, #12] + 8004b66: 4a0f ldr r2, [pc, #60] ; (8004ba4 ) + 8004b68: 7b13 ldrb r3, [r2, #12] + 8004b6a: f36f 0382 bfc r3, #2, #1 + 8004b6e: 7313 strb r3, [r2, #12] } t0.c=1; - 8004b38: 4a0c ldr r2, [pc, #48] ; (8004b6c ) - 8004b3a: 7b13 ldrb r3, [r2, #12] - 8004b3c: f043 0302 orr.w r3, r3, #2 - 8004b40: 7313 strb r3, [r2, #12] + 8004b70: 4a0c ldr r2, [pc, #48] ; (8004ba4 ) + 8004b72: 7b13 ldrb r3, [r2, #12] + 8004b74: f043 0302 orr.w r3, r3, #2 + 8004b78: 7313 strb r3, [r2, #12] { t0.c=0; t0.pix_x=-1; t0.pix_y=-1; } } - 8004b42: e00c b.n 8004b5e + 8004b7a: e00c b.n 8004b96 t0.c=0; - 8004b44: 4a09 ldr r2, [pc, #36] ; (8004b6c ) - 8004b46: 7b13 ldrb r3, [r2, #12] - 8004b48: f36f 0341 bfc r3, #1, #1 - 8004b4c: 7313 strb r3, [r2, #12] + 8004b7c: 4a09 ldr r2, [pc, #36] ; (8004ba4 ) + 8004b7e: 7b13 ldrb r3, [r2, #12] + 8004b80: f36f 0341 bfc r3, #1, #1 + 8004b84: 7313 strb r3, [r2, #12] t0.pix_x=-1; - 8004b4e: 4b07 ldr r3, [pc, #28] ; (8004b6c ) - 8004b50: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8004b54: 605a str r2, [r3, #4] + 8004b86: 4b07 ldr r3, [pc, #28] ; (8004ba4 ) + 8004b88: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8004b8c: 605a str r2, [r3, #4] t0.pix_y=-1; - 8004b56: 4b05 ldr r3, [pc, #20] ; (8004b6c ) - 8004b58: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8004b5c: 609a str r2, [r3, #8] + 8004b8e: 4b05 ldr r3, [pc, #20] ; (8004ba4 ) + 8004b90: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8004b94: 609a str r2, [r3, #8] } - 8004b5e: bf00 nop - 8004b60: bd98 pop {r3, r4, r7, pc} - 8004b62: bf00 nop - 8004b64: 40011c00 .word 0x40011c00 - 8004b68: 200002e2 .word 0x200002e2 - 8004b6c: 200002e0 .word 0x200002e0 - 8004b70: 200002c8 .word 0x200002c8 + 8004b96: bf00 nop + 8004b98: bd98 pop {r3, r4, r7, pc} + 8004b9a: bf00 nop + 8004b9c: 40011c00 .word 0x40011c00 + 8004ba0: 200002e2 .word 0x200002e2 + 8004ba4: 200002e0 .word 0x200002e0 + 8004ba8: 200002c8 .word 0x200002c8 -08004b74 : +08004bac : return 0; } //校准用,画一个目标坐标 //r=坐标半径,显示特效用 void TP_DrwaTrage(int x,int y,int r) { - 8004b74: b590 push {r4, r7, lr} - 8004b76: b087 sub sp, #28 - 8004b78: af02 add r7, sp, #8 - 8004b7a: 60f8 str r0, [r7, #12] - 8004b7c: 60b9 str r1, [r7, #8] - 8004b7e: 607a str r2, [r7, #4] + 8004bac: b590 push {r4, r7, lr} + 8004bae: b087 sub sp, #28 + 8004bb0: af02 add r7, sp, #8 + 8004bb2: 60f8 str r0, [r7, #12] + 8004bb4: 60b9 str r1, [r7, #8] + 8004bb6: 607a str r2, [r7, #4] Draw_Circle(x,y,r+1,GRAY); - 8004b80: 68fb ldr r3, [r7, #12] - 8004b82: b298 uxth r0, r3 - 8004b84: 68bb ldr r3, [r7, #8] - 8004b86: b299 uxth r1, r3 - 8004b88: 687b ldr r3, [r7, #4] - 8004b8a: b29b uxth r3, r3 - 8004b8c: 3301 adds r3, #1 - 8004b8e: b29a uxth r2, r3 - 8004b90: f248 4330 movw r3, #33840 ; 0x8430 - 8004b94: f7ff fb7f bl 8004296 - Draw_Circle(x,y,r,RED); - 8004b98: 68fb ldr r3, [r7, #12] - 8004b9a: b298 uxth r0, r3 - 8004b9c: 68bb ldr r3, [r7, #8] - 8004b9e: b299 uxth r1, r3 - 8004ba0: 687b ldr r3, [r7, #4] - 8004ba2: b29a uxth r2, r3 - 8004ba4: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004ba8: f7ff fb75 bl 8004296 - LCD_DrawLine(x,y,x+10,y,RED); - 8004bac: 68fb ldr r3, [r7, #12] - 8004bae: b298 uxth r0, r3 - 8004bb0: 68bb ldr r3, [r7, #8] - 8004bb2: b299 uxth r1, r3 - 8004bb4: 68fb ldr r3, [r7, #12] - 8004bb6: b29b uxth r3, r3 - 8004bb8: 330a adds r3, #10 - 8004bba: b29a uxth r2, r3 + 8004bb8: 68fb ldr r3, [r7, #12] + 8004bba: b298 uxth r0, r3 8004bbc: 68bb ldr r3, [r7, #8] - 8004bbe: b29b uxth r3, r3 - 8004bc0: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004bc4: 9400 str r4, [sp, #0] - 8004bc6: f7ff fae1 bl 800418c + 8004bbe: b299 uxth r1, r3 + 8004bc0: 687b ldr r3, [r7, #4] + 8004bc2: b29b uxth r3, r3 + 8004bc4: 3301 adds r3, #1 + 8004bc6: b29a uxth r2, r3 + 8004bc8: f248 4330 movw r3, #33840 ; 0x8430 + 8004bcc: f7ff fb7f bl 80042ce + Draw_Circle(x,y,r,RED); + 8004bd0: 68fb ldr r3, [r7, #12] + 8004bd2: b298 uxth r0, r3 + 8004bd4: 68bb ldr r3, [r7, #8] + 8004bd6: b299 uxth r1, r3 + 8004bd8: 687b ldr r3, [r7, #4] + 8004bda: b29a uxth r2, r3 + 8004bdc: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004be0: f7ff fb75 bl 80042ce + LCD_DrawLine(x,y,x+10,y,RED); + 8004be4: 68fb ldr r3, [r7, #12] + 8004be6: b298 uxth r0, r3 + 8004be8: 68bb ldr r3, [r7, #8] + 8004bea: b299 uxth r1, r3 + 8004bec: 68fb ldr r3, [r7, #12] + 8004bee: b29b uxth r3, r3 + 8004bf0: 330a adds r3, #10 + 8004bf2: b29a uxth r2, r3 + 8004bf4: 68bb ldr r3, [r7, #8] + 8004bf6: b29b uxth r3, r3 + 8004bf8: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8004bfc: 9400 str r4, [sp, #0] + 8004bfe: f7ff fae1 bl 80041c4 LCD_DrawLine(x,y,x,y+10,RED); - 8004bca: 68fb ldr r3, [r7, #12] - 8004bcc: b298 uxth r0, r3 - 8004bce: 68bb ldr r3, [r7, #8] - 8004bd0: b299 uxth r1, r3 - 8004bd2: 68fb ldr r3, [r7, #12] - 8004bd4: b29a uxth r2, r3 - 8004bd6: 68bb ldr r3, [r7, #8] - 8004bd8: b29b uxth r3, r3 - 8004bda: 330a adds r3, #10 - 8004bdc: b29b uxth r3, r3 - 8004bde: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004be2: 9400 str r4, [sp, #0] - 8004be4: f7ff fad2 bl 800418c - LCD_DrawLine(x,y,x-10,y,RED); - 8004be8: 68fb ldr r3, [r7, #12] - 8004bea: b298 uxth r0, r3 - 8004bec: 68bb ldr r3, [r7, #8] - 8004bee: b299 uxth r1, r3 - 8004bf0: 68fb ldr r3, [r7, #12] - 8004bf2: b29b uxth r3, r3 - 8004bf4: 3b0a subs r3, #10 - 8004bf6: b29a uxth r2, r3 - 8004bf8: 68bb ldr r3, [r7, #8] - 8004bfa: b29b uxth r3, r3 - 8004bfc: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004c00: 9400 str r4, [sp, #0] - 8004c02: f7ff fac3 bl 800418c - LCD_DrawLine(x,y,x,y-10,RED); - 8004c06: 68fb ldr r3, [r7, #12] - 8004c08: b298 uxth r0, r3 - 8004c0a: 68bb ldr r3, [r7, #8] - 8004c0c: b299 uxth r1, r3 - 8004c0e: 68fb ldr r3, [r7, #12] - 8004c10: b29a uxth r2, r3 - 8004c12: 68bb ldr r3, [r7, #8] + 8004c02: 68fb ldr r3, [r7, #12] + 8004c04: b298 uxth r0, r3 + 8004c06: 68bb ldr r3, [r7, #8] + 8004c08: b299 uxth r1, r3 + 8004c0a: 68fb ldr r3, [r7, #12] + 8004c0c: b29a uxth r2, r3 + 8004c0e: 68bb ldr r3, [r7, #8] + 8004c10: b29b uxth r3, r3 + 8004c12: 330a adds r3, #10 8004c14: b29b uxth r3, r3 - 8004c16: 3b0a subs r3, #10 - 8004c18: b29b uxth r3, r3 - 8004c1a: f44f 4478 mov.w r4, #63488 ; 0xf800 - 8004c1e: 9400 str r4, [sp, #0] - 8004c20: f7ff fab4 bl 800418c + 8004c16: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8004c1a: 9400 str r4, [sp, #0] + 8004c1c: f7ff fad2 bl 80041c4 + LCD_DrawLine(x,y,x-10,y,RED); + 8004c20: 68fb ldr r3, [r7, #12] + 8004c22: b298 uxth r0, r3 + 8004c24: 68bb ldr r3, [r7, #8] + 8004c26: b299 uxth r1, r3 + 8004c28: 68fb ldr r3, [r7, #12] + 8004c2a: b29b uxth r3, r3 + 8004c2c: 3b0a subs r3, #10 + 8004c2e: b29a uxth r2, r3 + 8004c30: 68bb ldr r3, [r7, #8] + 8004c32: b29b uxth r3, r3 + 8004c34: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8004c38: 9400 str r4, [sp, #0] + 8004c3a: f7ff fac3 bl 80041c4 + LCD_DrawLine(x,y,x,y-10,RED); + 8004c3e: 68fb ldr r3, [r7, #12] + 8004c40: b298 uxth r0, r3 + 8004c42: 68bb ldr r3, [r7, #8] + 8004c44: b299 uxth r1, r3 + 8004c46: 68fb ldr r3, [r7, #12] + 8004c48: b29a uxth r2, r3 + 8004c4a: 68bb ldr r3, [r7, #8] + 8004c4c: b29b uxth r3, r3 + 8004c4e: 3b0a subs r3, #10 + 8004c50: b29b uxth r3, r3 + 8004c52: f44f 4478 mov.w r4, #63488 ; 0xf800 + 8004c56: 9400 str r4, [sp, #0] + 8004c58: f7ff fab4 bl 80041c4 } - 8004c24: bf00 nop - 8004c26: 3714 adds r7, #20 - 8004c28: 46bd mov sp, r7 - 8004c2a: bd90 pop {r4, r7, pc} + 8004c5c: bf00 nop + 8004c5e: 3714 adds r7, #20 + 8004c60: 46bd mov sp, r7 + 8004c62: bd90 pop {r4, r7, pc} -08004c2c : +08004c64 : //触摸屏校准 void TP_adjustment() { - 8004c2c: b5b0 push {r4, r5, r7, lr} - 8004c2e: b0a4 sub sp, #144 ; 0x90 - 8004c30: af02 add r7, sp, #8 + 8004c64: b5b0 push {r4, r5, r7, lr} + 8004c66: b0a4 sub sp, #144 ; 0x90 + 8004c68: af02 add r7, sp, #8 //判断是否需要校准,从eeprom获取数据 EEPROM_READ_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 8004c32: 2218 movs r2, #24 - 8004c34: 4916 ldr r1, [pc, #88] ; (8004c90 ) - 8004c36: 2010 movs r0, #16 - 8004c38: f7ff fd2e bl 8004698 + 8004c6a: 2218 movs r2, #24 + 8004c6c: 4916 ldr r1, [pc, #88] ; (8004cc8 ) + 8004c6e: 2010 movs r0, #16 + 8004c70: f7ff fcf2 bl 8004658 if(tconfig.begin==0xab&&tconfig.end==0xcd) //判断校准标记 - 8004c3c: 4b14 ldr r3, [pc, #80] ; (8004c90 ) - 8004c3e: 781b ldrb r3, [r3, #0] - 8004c40: 2bab cmp r3, #171 ; 0xab - 8004c42: d104 bne.n 8004c4e - 8004c44: 4b12 ldr r3, [pc, #72] ; (8004c90 ) - 8004c46: 7d1b ldrb r3, [r3, #20] - 8004c48: 2bcd cmp r3, #205 ; 0xcd - 8004c4a: f000 82a5 beq.w 8005198 + 8004c74: 4b14 ldr r3, [pc, #80] ; (8004cc8 ) + 8004c76: 781b ldrb r3, [r3, #0] + 8004c78: 2bab cmp r3, #171 ; 0xab + 8004c7a: d104 bne.n 8004c86 + 8004c7c: 4b12 ldr r3, [pc, #72] ; (8004cc8 ) + 8004c7e: 7d1b ldrb r3, [r3, #20] + 8004c80: 2bcd cmp r3, #205 ; 0xcd + 8004c82: f000 82a5 beq.w 80051d0 { return; //已经校准过了 } //校准方法比较简单,读取4个坐标计算ad值与像素的关系 char str[64]; //用于字符串提示 uint16_t y_adc,x_adc,step=0,r=10; //adc缓存,校准步骤,坐标的半径 - 8004c4e: 2300 movs r3, #0 - 8004c50: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 - 8004c54: 230a movs r3, #10 - 8004c56: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004c86: 2300 movs r3, #0 + 8004c88: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004c8c: 230a movs r3, #10 + 8004c8e: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 uint16_t y1,y2,y3,y4,x1,x2,x3,x4; //4个点缓存 int y5,x5,xd,xl,yd,yl; //通过4个点算出xy的长边和短边 float acc_x,acc_y; //算出的关系倍率 int offset_x,offset_y; //算出的偏差 uint32_t wait=HAL_GetTick()+50000,ms100=0; //校准时间,50秒没操作就自动退出 - 8004c5a: f7fc fe23 bl 80018a4 - 8004c5e: 4603 mov r3, r0 - 8004c60: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 8004c64: 3350 adds r3, #80 ; 0x50 - 8004c66: 673b str r3, [r7, #112] ; 0x70 - 8004c68: 2300 movs r3, #0 - 8004c6a: 66fb str r3, [r7, #108] ; 0x6c + 8004c92: f7fc fe23 bl 80018dc + 8004c96: 4603 mov r3, r0 + 8004c98: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 8004c9c: 3350 adds r3, #80 ; 0x50 + 8004c9e: 673b str r3, [r7, #112] ; 0x70 + 8004ca0: 2300 movs r3, #0 + 8004ca2: 66fb str r3, [r7, #108] ; 0x6c //显示字符串提示 LCD_Clear(GRAY); - 8004c6c: f248 4030 movw r0, #33840 ; 0x8430 - 8004c70: f7ff fa3a bl 80040e8 + 8004ca4: f248 4030 movw r0, #33840 ; 0x8430 + 8004ca8: f7ff fa3a bl 8004120 LCD_ShowString(0,50,"Calibrate the touch screen",16,RED,RED); - 8004c74: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004c78: 9301 str r3, [sp, #4] - 8004c7a: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004c7e: 9300 str r3, [sp, #0] - 8004c80: 2310 movs r3, #16 - 8004c82: 4a04 ldr r2, [pc, #16] ; (8004c94 ) - 8004c84: 2132 movs r1, #50 ; 0x32 - 8004c86: 2000 movs r0, #0 - 8004c88: f7ff fc2c bl 80044e4 + 8004cac: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004cb0: 9301 str r3, [sp, #4] + 8004cb2: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004cb6: 9300 str r3, [sp, #0] + 8004cb8: 2310 movs r3, #16 + 8004cba: 4a04 ldr r2, [pc, #16] ; (8004ccc ) + 8004cbc: 2132 movs r1, #50 ; 0x32 + 8004cbe: 2000 movs r0, #0 + 8004cc0: f7ff fc2c bl 800451c //TP_DrwaTrage(30,30,10); //开始校准 while(HAL_GetTick() - 8004c8e: bf00 nop - 8004c90: 200002c8 .word 0x200002c8 - 8004c94: 08008618 .word 0x08008618 + 8004cc4: e27c b.n 80051c0 + 8004cc6: bf00 nop + 8004cc8: 200002c8 .word 0x200002c8 + 8004ccc: 080088e8 .word 0x080088e8 { if(TPEN==0) //如果屏幕被按下 - 8004c98: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004c9c: 48cf ldr r0, [pc, #828] ; (8004fdc ) - 8004c9e: f7fd f8a7 bl 8001df0 - 8004ca2: 4603 mov r3, r0 - 8004ca4: 2b00 cmp r3, #0 - 8004ca6: d146 bne.n 8004d36 + 8004cd0: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004cd4: 48cf ldr r0, [pc, #828] ; (8005014 ) + 8004cd6: f7fd f8a7 bl 8001e28 + 8004cda: 4603 mov r3, r0 + 8004cdc: 2b00 cmp r3, #0 + 8004cde: d146 bne.n 8004d6e { wait=HAL_GetTick()+50000; //重置50秒 - 8004ca8: f7fc fdfc bl 80018a4 - 8004cac: 4603 mov r3, r0 - 8004cae: f503 4343 add.w r3, r3, #49920 ; 0xc300 - 8004cb2: 3350 adds r3, #80 ; 0x50 - 8004cb4: 673b str r3, [r7, #112] ; 0x70 + 8004ce0: f7fc fdfc bl 80018dc + 8004ce4: 4603 mov r3, r0 + 8004ce6: f503 4343 add.w r3, r3, #49920 ; 0xc300 + 8004cea: 3350 adds r3, #80 ; 0x50 + 8004cec: 673b str r3, [r7, #112] ; 0x70 TP_Read_XY2(&x_adc,&y_adc); //读取xy ad值 - 8004cb6: 1cba adds r2, r7, #2 - 8004cb8: 463b mov r3, r7 - 8004cba: 4611 mov r1, r2 - 8004cbc: 4618 mov r0, r3 - 8004cbe: f7ff fe78 bl 80049b2 + 8004cee: 1cba adds r2, r7, #2 + 8004cf0: 463b mov r3, r7 + 8004cf2: 4611 mov r1, r2 + 8004cf4: 4618 mov r0, r3 + 8004cf6: f7ff fe78 bl 80049ea //将读到的值显示出来 sprintf(str,"ADC_X:%04d",x_adc); - 8004cc2: 883b ldrh r3, [r7, #0] - 8004cc4: 461a mov r2, r3 - 8004cc6: 1d3b adds r3, r7, #4 - 8004cc8: 49c5 ldr r1, [pc, #788] ; (8004fe0 ) - 8004cca: 4618 mov r0, r3 - 8004ccc: f001 fb14 bl 80062f8 + 8004cfa: 883b ldrh r3, [r7, #0] + 8004cfc: 461a mov r2, r3 + 8004cfe: 1d3b adds r3, r7, #4 + 8004d00: 49c5 ldr r1, [pc, #788] ; (8005018 ) + 8004d02: 4618 mov r0, r3 + 8004d04: f001 fc62 bl 80065cc LCD_ShowString(100, 0, str, 16, RED, GRAY); - 8004cd0: 1d3a adds r2, r7, #4 - 8004cd2: f248 4330 movw r3, #33840 ; 0x8430 - 8004cd6: 9301 str r3, [sp, #4] - 8004cd8: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004cdc: 9300 str r3, [sp, #0] - 8004cde: 2310 movs r3, #16 - 8004ce0: 2100 movs r1, #0 - 8004ce2: 2064 movs r0, #100 ; 0x64 - 8004ce4: f7ff fbfe bl 80044e4 + 8004d08: 1d3a adds r2, r7, #4 + 8004d0a: f248 4330 movw r3, #33840 ; 0x8430 + 8004d0e: 9301 str r3, [sp, #4] + 8004d10: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004d14: 9300 str r3, [sp, #0] + 8004d16: 2310 movs r3, #16 + 8004d18: 2100 movs r1, #0 + 8004d1a: 2064 movs r0, #100 ; 0x64 + 8004d1c: f7ff fbfe bl 800451c sprintf(str,"ADC_Y:%04d",y_adc); - 8004ce8: 887b ldrh r3, [r7, #2] - 8004cea: 461a mov r2, r3 - 8004cec: 1d3b adds r3, r7, #4 - 8004cee: 49bd ldr r1, [pc, #756] ; (8004fe4 ) - 8004cf0: 4618 mov r0, r3 - 8004cf2: f001 fb01 bl 80062f8 + 8004d20: 887b ldrh r3, [r7, #2] + 8004d22: 461a mov r2, r3 + 8004d24: 1d3b adds r3, r7, #4 + 8004d26: 49bd ldr r1, [pc, #756] ; (800501c ) + 8004d28: 4618 mov r0, r3 + 8004d2a: f001 fc4f bl 80065cc LCD_ShowString(100, 16, str, 16, RED, GRAY); - 8004cf6: 1d3a adds r2, r7, #4 - 8004cf8: f248 4330 movw r3, #33840 ; 0x8430 - 8004cfc: 9301 str r3, [sp, #4] - 8004cfe: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004d02: 9300 str r3, [sp, #0] - 8004d04: 2310 movs r3, #16 - 8004d06: 2110 movs r1, #16 - 8004d08: 2064 movs r0, #100 ; 0x64 - 8004d0a: f7ff fbeb bl 80044e4 + 8004d2e: 1d3a adds r2, r7, #4 + 8004d30: f248 4330 movw r3, #33840 ; 0x8430 + 8004d34: 9301 str r3, [sp, #4] + 8004d36: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004d3a: 9300 str r3, [sp, #0] + 8004d3c: 2310 movs r3, #16 + 8004d3e: 2110 movs r1, #16 + 8004d40: 2064 movs r0, #100 ; 0x64 + 8004d42: f7ff fbeb bl 800451c //特效,半径开始收缩 if(HAL_GetTick()>ms100) - 8004d0e: f7fc fdc9 bl 80018a4 - 8004d12: 4602 mov r2, r0 - 8004d14: 6efb ldr r3, [r7, #108] ; 0x6c - 8004d16: 4293 cmp r3, r2 - 8004d18: d20d bcs.n 8004d36 + 8004d46: f7fc fdc9 bl 80018dc + 8004d4a: 4602 mov r2, r0 + 8004d4c: 6efb ldr r3, [r7, #108] ; 0x6c + 8004d4e: 4293 cmp r3, r2 + 8004d50: d20d bcs.n 8004d6e { ms100=HAL_GetTick()+100; - 8004d1a: f7fc fdc3 bl 80018a4 - 8004d1e: 4603 mov r3, r0 - 8004d20: 3364 adds r3, #100 ; 0x64 - 8004d22: 66fb str r3, [r7, #108] ; 0x6c + 8004d52: f7fc fdc3 bl 80018dc + 8004d56: 4603 mov r3, r0 + 8004d58: 3364 adds r3, #100 ; 0x64 + 8004d5a: 66fb str r3, [r7, #108] ; 0x6c if(r>0){r--;} - 8004d24: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004d28: 2b00 cmp r3, #0 - 8004d2a: d004 beq.n 8004d36 - 8004d2c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004d30: 3b01 subs r3, #1 - 8004d32: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004d5c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004d60: 2b00 cmp r3, #0 + 8004d62: d004 beq.n 8004d6e + 8004d64: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004d68: 3b01 subs r3, #1 + 8004d6a: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //步骤0,将点画在(30,30)此时半径为10 if(step==0) - 8004d36: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004d3a: 2b00 cmp r3, #0 - 8004d3c: d129 bne.n 8004d92 + 8004d6e: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004d72: 2b00 cmp r3, #0 + 8004d74: d129 bne.n 8004dca { TP_DrwaTrage(30,30,r); - 8004d3e: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004d42: 461a mov r2, r3 - 8004d44: 211e movs r1, #30 - 8004d46: 201e movs r0, #30 - 8004d48: f7ff ff14 bl 8004b74 + 8004d76: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004d7a: 461a mov r2, r3 + 8004d7c: 211e movs r1, #30 + 8004d7e: 201e movs r0, #30 + 8004d80: f7ff ff14 bl 8004bac if(r==0)//当半径收缩为0的时候 - 8004d4c: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004d50: 2b00 cmp r3, #0 - 8004d52: d11e bne.n 8004d92 + 8004d84: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004d88: 2b00 cmp r3, #0 + 8004d8a: d11e bne.n 8004dca { //进入下一个步骤,缓存这个点的值,显示出来 step+=1; - 8004d54: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004d58: 3301 adds r3, #1 - 8004d5a: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004d8c: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004d90: 3301 adds r3, #1 + 8004d92: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y1=y_adc; - 8004d5e: 887b ldrh r3, [r7, #2] - 8004d60: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 + 8004d96: 887b ldrh r3, [r7, #2] + 8004d98: f8a7 3082 strh.w r3, [r7, #130] ; 0x82 x1=x_adc; - 8004d64: 883b ldrh r3, [r7, #0] - 8004d66: f8a7 307a strh.w r3, [r7, #122] ; 0x7a + 8004d9c: 883b ldrh r3, [r7, #0] + 8004d9e: f8a7 307a strh.w r3, [r7, #122] ; 0x7a sprintf(str,"point_1 x:%d y:%d",x1,y1); - 8004d6a: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a - 8004d6e: f8b7 3082 ldrh.w r3, [r7, #130] ; 0x82 - 8004d72: 1d38 adds r0, r7, #4 - 8004d74: 499c ldr r1, [pc, #624] ; (8004fe8 ) - 8004d76: f001 fabf bl 80062f8 + 8004da2: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a + 8004da6: f8b7 3082 ldrh.w r3, [r7, #130] ; 0x82 + 8004daa: 1d38 adds r0, r7, #4 + 8004dac: 499c ldr r1, [pc, #624] ; (8005020 ) + 8004dae: f001 fc0d bl 80065cc LCD_ShowString(0,66,str,16,RED,RED); - 8004d7a: 1d3a adds r2, r7, #4 - 8004d7c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004d80: 9301 str r3, [sp, #4] - 8004d82: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004d86: 9300 str r3, [sp, #0] - 8004d88: 2310 movs r3, #16 - 8004d8a: 2142 movs r1, #66 ; 0x42 - 8004d8c: 2000 movs r0, #0 - 8004d8e: f7ff fba9 bl 80044e4 + 8004db2: 1d3a adds r2, r7, #4 + 8004db4: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004db8: 9301 str r3, [sp, #4] + 8004dba: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004dbe: 9300 str r3, [sp, #0] + 8004dc0: 2310 movs r3, #16 + 8004dc2: 2142 movs r1, #66 ; 0x42 + 8004dc4: 2000 movs r0, #0 + 8004dc6: f7ff fba9 bl 800451c } } //步骤1,等待屏幕被松开,进入下一个步骤,重置半径 if(step==1) - 8004d92: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004d96: 2b01 cmp r3, #1 - 8004d98: d10f bne.n 8004dba + 8004dca: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004dce: 2b01 cmp r3, #1 + 8004dd0: d10f bne.n 8004df2 { if(TPEN==1) - 8004d9a: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004d9e: 488f ldr r0, [pc, #572] ; (8004fdc ) - 8004da0: f7fd f826 bl 8001df0 - 8004da4: 4603 mov r3, r0 - 8004da6: 2b01 cmp r3, #1 - 8004da8: d107 bne.n 8004dba + 8004dd2: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004dd6: 488f ldr r0, [pc, #572] ; (8005014 ) + 8004dd8: f7fd f826 bl 8001e28 + 8004ddc: 4603 mov r3, r0 + 8004dde: 2b01 cmp r3, #1 + 8004de0: d107 bne.n 8004df2 { step+=1; - 8004daa: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004dae: 3301 adds r3, #1 - 8004db0: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004de2: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004de6: 3301 adds r3, #1 + 8004de8: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004db4: 230a movs r3, #10 - 8004db6: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004dec: 230a movs r3, #10 + 8004dee: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //下面几个步骤和上面一样 if(step==2) - 8004dba: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004dbe: 2b02 cmp r3, #2 - 8004dc0: d12a bne.n 8004e18 + 8004df2: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004df6: 2b02 cmp r3, #2 + 8004df8: d12a bne.n 8004e50 { TP_DrwaTrage(290,30,r); - 8004dc2: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004dc6: 461a mov r2, r3 - 8004dc8: 211e movs r1, #30 - 8004dca: f44f 7091 mov.w r0, #290 ; 0x122 - 8004dce: f7ff fed1 bl 8004b74 + 8004dfa: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004dfe: 461a mov r2, r3 + 8004e00: 211e movs r1, #30 + 8004e02: f44f 7091 mov.w r0, #290 ; 0x122 + 8004e06: f7ff fed1 bl 8004bac if(r==0) - 8004dd2: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004dd6: 2b00 cmp r3, #0 - 8004dd8: d11e bne.n 8004e18 + 8004e0a: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004e0e: 2b00 cmp r3, #0 + 8004e10: d11e bne.n 8004e50 { step+=1; - 8004dda: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004dde: 3301 adds r3, #1 - 8004de0: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004e12: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004e16: 3301 adds r3, #1 + 8004e18: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y2=y_adc; - 8004de4: 887b ldrh r3, [r7, #2] - 8004de6: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 + 8004e1c: 887b ldrh r3, [r7, #2] + 8004e1e: f8a7 3080 strh.w r3, [r7, #128] ; 0x80 x2=x_adc; - 8004dea: 883b ldrh r3, [r7, #0] - 8004dec: f8a7 3078 strh.w r3, [r7, #120] ; 0x78 + 8004e22: 883b ldrh r3, [r7, #0] + 8004e24: f8a7 3078 strh.w r3, [r7, #120] ; 0x78 sprintf(str,"point_2 x:%d y:%d",x2,y2); - 8004df0: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 - 8004df4: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 - 8004df8: 1d38 adds r0, r7, #4 - 8004dfa: 497c ldr r1, [pc, #496] ; (8004fec ) - 8004dfc: f001 fa7c bl 80062f8 + 8004e28: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 + 8004e2c: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 + 8004e30: 1d38 adds r0, r7, #4 + 8004e32: 497c ldr r1, [pc, #496] ; (8005024 ) + 8004e34: f001 fbca bl 80065cc LCD_ShowString(0,66+16,str,16,RED,RED); - 8004e00: 1d3a adds r2, r7, #4 - 8004e02: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e06: 9301 str r3, [sp, #4] - 8004e08: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e0c: 9300 str r3, [sp, #0] - 8004e0e: 2310 movs r3, #16 - 8004e10: 2152 movs r1, #82 ; 0x52 - 8004e12: 2000 movs r0, #0 - 8004e14: f7ff fb66 bl 80044e4 + 8004e38: 1d3a adds r2, r7, #4 + 8004e3a: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004e3e: 9301 str r3, [sp, #4] + 8004e40: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004e44: 9300 str r3, [sp, #0] + 8004e46: 2310 movs r3, #16 + 8004e48: 2152 movs r1, #82 ; 0x52 + 8004e4a: 2000 movs r0, #0 + 8004e4c: f7ff fb66 bl 800451c } } if(step==3) - 8004e18: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004e1c: 2b03 cmp r3, #3 - 8004e1e: d10f bne.n 8004e40 + 8004e50: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004e54: 2b03 cmp r3, #3 + 8004e56: d10f bne.n 8004e78 { if(TPEN==1) - 8004e20: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004e24: 486d ldr r0, [pc, #436] ; (8004fdc ) - 8004e26: f7fc ffe3 bl 8001df0 - 8004e2a: 4603 mov r3, r0 - 8004e2c: 2b01 cmp r3, #1 - 8004e2e: d107 bne.n 8004e40 + 8004e58: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004e5c: 486d ldr r0, [pc, #436] ; (8005014 ) + 8004e5e: f7fc ffe3 bl 8001e28 + 8004e62: 4603 mov r3, r0 + 8004e64: 2b01 cmp r3, #1 + 8004e66: d107 bne.n 8004e78 { step+=1; - 8004e30: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004e34: 3301 adds r3, #1 - 8004e36: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004e68: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004e6c: 3301 adds r3, #1 + 8004e6e: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004e3a: 230a movs r3, #10 - 8004e3c: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004e72: 230a movs r3, #10 + 8004e74: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } if(step==4) - 8004e40: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004e44: 2b04 cmp r3, #4 - 8004e46: d129 bne.n 8004e9c + 8004e78: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004e7c: 2b04 cmp r3, #4 + 8004e7e: d129 bne.n 8004ed4 { TP_DrwaTrage(30,210,r); - 8004e48: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004e4c: 461a mov r2, r3 - 8004e4e: 21d2 movs r1, #210 ; 0xd2 - 8004e50: 201e movs r0, #30 - 8004e52: f7ff fe8f bl 8004b74 + 8004e80: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004e84: 461a mov r2, r3 + 8004e86: 21d2 movs r1, #210 ; 0xd2 + 8004e88: 201e movs r0, #30 + 8004e8a: f7ff fe8f bl 8004bac if(r==0) - 8004e56: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004e5a: 2b00 cmp r3, #0 - 8004e5c: d11e bne.n 8004e9c + 8004e8e: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004e92: 2b00 cmp r3, #0 + 8004e94: d11e bne.n 8004ed4 { step+=1; - 8004e5e: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004e62: 3301 adds r3, #1 - 8004e64: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004e96: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004e9a: 3301 adds r3, #1 + 8004e9c: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y3=y_adc; - 8004e68: 887b ldrh r3, [r7, #2] - 8004e6a: f8a7 307e strh.w r3, [r7, #126] ; 0x7e + 8004ea0: 887b ldrh r3, [r7, #2] + 8004ea2: f8a7 307e strh.w r3, [r7, #126] ; 0x7e x3=x_adc; - 8004e6e: 883b ldrh r3, [r7, #0] - 8004e70: f8a7 3076 strh.w r3, [r7, #118] ; 0x76 + 8004ea6: 883b ldrh r3, [r7, #0] + 8004ea8: f8a7 3076 strh.w r3, [r7, #118] ; 0x76 sprintf(str,"point_3 x:%d y:%d",x3,y3); - 8004e74: f8b7 2076 ldrh.w r2, [r7, #118] ; 0x76 - 8004e78: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e - 8004e7c: 1d38 adds r0, r7, #4 - 8004e7e: 495c ldr r1, [pc, #368] ; (8004ff0 ) - 8004e80: f001 fa3a bl 80062f8 + 8004eac: f8b7 2076 ldrh.w r2, [r7, #118] ; 0x76 + 8004eb0: f8b7 307e ldrh.w r3, [r7, #126] ; 0x7e + 8004eb4: 1d38 adds r0, r7, #4 + 8004eb6: 495c ldr r1, [pc, #368] ; (8005028 ) + 8004eb8: f001 fb88 bl 80065cc LCD_ShowString(0,66+16+16,str,16,RED,RED); - 8004e84: 1d3a adds r2, r7, #4 - 8004e86: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e8a: 9301 str r3, [sp, #4] - 8004e8c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004e90: 9300 str r3, [sp, #0] - 8004e92: 2310 movs r3, #16 - 8004e94: 2162 movs r1, #98 ; 0x62 - 8004e96: 2000 movs r0, #0 - 8004e98: f7ff fb24 bl 80044e4 + 8004ebc: 1d3a adds r2, r7, #4 + 8004ebe: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004ec2: 9301 str r3, [sp, #4] + 8004ec4: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004ec8: 9300 str r3, [sp, #0] + 8004eca: 2310 movs r3, #16 + 8004ecc: 2162 movs r1, #98 ; 0x62 + 8004ece: 2000 movs r0, #0 + 8004ed0: f7ff fb24 bl 800451c } } if(step==5) - 8004e9c: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ea0: 2b05 cmp r3, #5 - 8004ea2: d10f bne.n 8004ec4 + 8004ed4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004ed8: 2b05 cmp r3, #5 + 8004eda: d10f bne.n 8004efc { if(TPEN==1) - 8004ea4: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004ea8: 484c ldr r0, [pc, #304] ; (8004fdc ) - 8004eaa: f7fc ffa1 bl 8001df0 - 8004eae: 4603 mov r3, r0 - 8004eb0: 2b01 cmp r3, #1 - 8004eb2: d107 bne.n 8004ec4 + 8004edc: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004ee0: 484c ldr r0, [pc, #304] ; (8005014 ) + 8004ee2: f7fc ffa1 bl 8001e28 + 8004ee6: 4603 mov r3, r0 + 8004ee8: 2b01 cmp r3, #1 + 8004eea: d107 bne.n 8004efc { step+=1; - 8004eb4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004eb8: 3301 adds r3, #1 - 8004eba: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004eec: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004ef0: 3301 adds r3, #1 + 8004ef2: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004ebe: 230a movs r3, #10 - 8004ec0: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004ef6: 230a movs r3, #10 + 8004ef8: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } if(step==6) - 8004ec4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ec8: 2b06 cmp r3, #6 - 8004eca: d12a bne.n 8004f22 + 8004efc: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004f00: 2b06 cmp r3, #6 + 8004f02: d12a bne.n 8004f5a { TP_DrwaTrage(290,210,r); - 8004ecc: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004ed0: 461a mov r2, r3 - 8004ed2: 21d2 movs r1, #210 ; 0xd2 - 8004ed4: f44f 7091 mov.w r0, #290 ; 0x122 - 8004ed8: f7ff fe4c bl 8004b74 + 8004f04: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004f08: 461a mov r2, r3 + 8004f0a: 21d2 movs r1, #210 ; 0xd2 + 8004f0c: f44f 7091 mov.w r0, #290 ; 0x122 + 8004f10: f7ff fe4c bl 8004bac if(r==0) - 8004edc: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 - 8004ee0: 2b00 cmp r3, #0 - 8004ee2: d11e bne.n 8004f22 + 8004f14: f8b7 3084 ldrh.w r3, [r7, #132] ; 0x84 + 8004f18: 2b00 cmp r3, #0 + 8004f1a: d11e bne.n 8004f5a { step+=1; - 8004ee4: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004ee8: 3301 adds r3, #1 - 8004eea: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004f1c: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004f20: 3301 adds r3, #1 + 8004f22: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 y4=y_adc; - 8004eee: 887b ldrh r3, [r7, #2] - 8004ef0: f8a7 307c strh.w r3, [r7, #124] ; 0x7c + 8004f26: 887b ldrh r3, [r7, #2] + 8004f28: f8a7 307c strh.w r3, [r7, #124] ; 0x7c x4=x_adc; - 8004ef4: 883b ldrh r3, [r7, #0] - 8004ef6: f8a7 3074 strh.w r3, [r7, #116] ; 0x74 + 8004f2c: 883b ldrh r3, [r7, #0] + 8004f2e: f8a7 3074 strh.w r3, [r7, #116] ; 0x74 sprintf(str,"point_4 x:%d y:%d",x4,y4); - 8004efa: f8b7 2074 ldrh.w r2, [r7, #116] ; 0x74 - 8004efe: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c - 8004f02: 1d38 adds r0, r7, #4 - 8004f04: 493b ldr r1, [pc, #236] ; (8004ff4 ) - 8004f06: f001 f9f7 bl 80062f8 + 8004f32: f8b7 2074 ldrh.w r2, [r7, #116] ; 0x74 + 8004f36: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c + 8004f3a: 1d38 adds r0, r7, #4 + 8004f3c: 493b ldr r1, [pc, #236] ; (800502c ) + 8004f3e: f001 fb45 bl 80065cc LCD_ShowString(0,66+16+16+16,str,16,RED,RED); - 8004f0a: 1d3a adds r2, r7, #4 - 8004f0c: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004f10: 9301 str r3, [sp, #4] - 8004f12: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004f16: 9300 str r3, [sp, #0] - 8004f18: 2310 movs r3, #16 - 8004f1a: 2172 movs r1, #114 ; 0x72 - 8004f1c: 2000 movs r0, #0 - 8004f1e: f7ff fae1 bl 80044e4 + 8004f42: 1d3a adds r2, r7, #4 + 8004f44: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004f48: 9301 str r3, [sp, #4] + 8004f4a: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8004f4e: 9300 str r3, [sp, #0] + 8004f50: 2310 movs r3, #16 + 8004f52: 2172 movs r1, #114 ; 0x72 + 8004f54: 2000 movs r0, #0 + 8004f56: f7ff fae1 bl 800451c } } if(step==7) - 8004f22: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f26: 2b07 cmp r3, #7 - 8004f28: d10f bne.n 8004f4a + 8004f5a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004f5e: 2b07 cmp r3, #7 + 8004f60: d10f bne.n 8004f82 { if(TPEN==1) - 8004f2a: f44f 6180 mov.w r1, #1024 ; 0x400 - 8004f2e: 482b ldr r0, [pc, #172] ; (8004fdc ) - 8004f30: f7fc ff5e bl 8001df0 - 8004f34: 4603 mov r3, r0 - 8004f36: 2b01 cmp r3, #1 - 8004f38: d107 bne.n 8004f4a + 8004f62: f44f 6180 mov.w r1, #1024 ; 0x400 + 8004f66: 482b ldr r0, [pc, #172] ; (8005014 ) + 8004f68: f7fc ff5e bl 8001e28 + 8004f6c: 4603 mov r3, r0 + 8004f6e: 2b01 cmp r3, #1 + 8004f70: d107 bne.n 8004f82 { step+=1; - 8004f3a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f3e: 3301 adds r3, #1 - 8004f40: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 + 8004f72: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004f76: 3301 adds r3, #1 + 8004f78: f8a7 3086 strh.w r3, [r7, #134] ; 0x86 r=10; - 8004f44: 230a movs r3, #10 - 8004f46: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 + 8004f7c: 230a movs r3, #10 + 8004f7e: f8a7 3084 strh.w r3, [r7, #132] ; 0x84 } } //当4个点读取完,开始计算关系 if(step==8) - 8004f4a: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 - 8004f4e: 2b08 cmp r3, #8 - 8004f50: f040 811a bne.w 8005188 + 8004f82: f8b7 3086 ldrh.w r3, [r7, #134] ; 0x86 + 8004f86: 2b08 cmp r3, #8 + 8004f88: f040 811a bne.w 80051c0 { //其实只需要两个点就能校准,通过取平均值获得xy的长边和短边 xd=((x1+x3)/2); - 8004f54: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a - 8004f58: f8b7 3076 ldrh.w r3, [r7, #118] ; 0x76 - 8004f5c: 4413 add r3, r2 - 8004f5e: 0fda lsrs r2, r3, #31 - 8004f60: 4413 add r3, r2 - 8004f62: 105b asrs r3, r3, #1 - 8004f64: 66bb str r3, [r7, #104] ; 0x68 + 8004f8c: f8b7 207a ldrh.w r2, [r7, #122] ; 0x7a + 8004f90: f8b7 3076 ldrh.w r3, [r7, #118] ; 0x76 + 8004f94: 4413 add r3, r2 + 8004f96: 0fda lsrs r2, r3, #31 + 8004f98: 4413 add r3, r2 + 8004f9a: 105b asrs r3, r3, #1 + 8004f9c: 66bb str r3, [r7, #104] ; 0x68 xl=((x2+x4)/2); - 8004f66: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 - 8004f6a: f8b7 3074 ldrh.w r3, [r7, #116] ; 0x74 - 8004f6e: 4413 add r3, r2 - 8004f70: 0fda lsrs r2, r3, #31 - 8004f72: 4413 add r3, r2 - 8004f74: 105b asrs r3, r3, #1 - 8004f76: 667b str r3, [r7, #100] ; 0x64 + 8004f9e: f8b7 2078 ldrh.w r2, [r7, #120] ; 0x78 + 8004fa2: f8b7 3074 ldrh.w r3, [r7, #116] ; 0x74 + 8004fa6: 4413 add r3, r2 + 8004fa8: 0fda lsrs r2, r3, #31 + 8004faa: 4413 add r3, r2 + 8004fac: 105b asrs r3, r3, #1 + 8004fae: 667b str r3, [r7, #100] ; 0x64 yd=((y1+y2)/2); - 8004f78: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 - 8004f7c: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 - 8004f80: 4413 add r3, r2 - 8004f82: 0fda lsrs r2, r3, #31 - 8004f84: 4413 add r3, r2 - 8004f86: 105b asrs r3, r3, #1 - 8004f88: 663b str r3, [r7, #96] ; 0x60 + 8004fb0: f8b7 2082 ldrh.w r2, [r7, #130] ; 0x82 + 8004fb4: f8b7 3080 ldrh.w r3, [r7, #128] ; 0x80 + 8004fb8: 4413 add r3, r2 + 8004fba: 0fda lsrs r2, r3, #31 + 8004fbc: 4413 add r3, r2 + 8004fbe: 105b asrs r3, r3, #1 + 8004fc0: 663b str r3, [r7, #96] ; 0x60 yl=((y3+y4)/2); - 8004f8a: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e - 8004f8e: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c - 8004f92: 4413 add r3, r2 - 8004f94: 0fda lsrs r2, r3, #31 - 8004f96: 4413 add r3, r2 - 8004f98: 105b asrs r3, r3, #1 - 8004f9a: 65fb str r3, [r7, #92] ; 0x5c + 8004fc2: f8b7 207e ldrh.w r2, [r7, #126] ; 0x7e + 8004fc6: f8b7 307c ldrh.w r3, [r7, #124] ; 0x7c + 8004fca: 4413 add r3, r2 + 8004fcc: 0fda lsrs r2, r3, #31 + 8004fce: 4413 add r3, r2 + 8004fd0: 105b asrs r3, r3, #1 + 8004fd2: 65fb str r3, [r7, #92] ; 0x5c //长边减去短边可以再获得一个点 x5=xl-xd; - 8004f9c: 6e7a ldr r2, [r7, #100] ; 0x64 - 8004f9e: 6ebb ldr r3, [r7, #104] ; 0x68 - 8004fa0: 1ad3 subs r3, r2, r3 - 8004fa2: 65bb str r3, [r7, #88] ; 0x58 + 8004fd4: 6e7a ldr r2, [r7, #100] ; 0x64 + 8004fd6: 6ebb ldr r3, [r7, #104] ; 0x68 + 8004fd8: 1ad3 subs r3, r2, r3 + 8004fda: 65bb str r3, [r7, #88] ; 0x58 y5=yl-yd; - 8004fa4: 6dfa ldr r2, [r7, #92] ; 0x5c - 8004fa6: 6e3b ldr r3, [r7, #96] ; 0x60 - 8004fa8: 1ad3 subs r3, r2, r3 - 8004faa: 657b str r3, [r7, #84] ; 0x54 + 8004fdc: 6dfa ldr r2, [r7, #92] ; 0x5c + 8004fde: 6e3b ldr r3, [r7, #96] ; 0x60 + 8004fe0: 1ad3 subs r3, r2, r3 + 8004fe2: 657b str r3, [r7, #84] ; 0x54 //这个点如果是负数,肯定有错,可能是xy搞反了 if(x5<0||y5<0) - 8004fac: 6dbb ldr r3, [r7, #88] ; 0x58 - 8004fae: 2b00 cmp r3, #0 - 8004fb0: db02 blt.n 8004fb8 - 8004fb2: 6d7b ldr r3, [r7, #84] ; 0x54 - 8004fb4: 2b00 cmp r3, #0 - 8004fb6: da21 bge.n 8004ffc + 8004fe4: 6dbb ldr r3, [r7, #88] ; 0x58 + 8004fe6: 2b00 cmp r3, #0 + 8004fe8: db02 blt.n 8004ff0 + 8004fea: 6d7b ldr r3, [r7, #84] ; 0x54 + 8004fec: 2b00 cmp r3, #0 + 8004fee: da21 bge.n 8005034 { //显示error sprintf(str,"ERROR"); - 8004fb8: 1d3b adds r3, r7, #4 - 8004fba: 490f ldr r1, [pc, #60] ; (8004ff8 ) - 8004fbc: 4618 mov r0, r3 - 8004fbe: f001 f99b bl 80062f8 + 8004ff0: 1d3b adds r3, r7, #4 + 8004ff2: 490f ldr r1, [pc, #60] ; (8005030 ) + 8004ff4: 4618 mov r0, r3 + 8004ff6: f001 fae9 bl 80065cc LCD_ShowString(0,66+16+16+16+16,str,16,RED, GRAY); - 8004fc2: 1d3a adds r2, r7, #4 - 8004fc4: f248 4330 movw r3, #33840 ; 0x8430 - 8004fc8: 9301 str r3, [sp, #4] - 8004fca: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8004fce: 9300 str r3, [sp, #0] - 8004fd0: 2310 movs r3, #16 - 8004fd2: 2182 movs r1, #130 ; 0x82 - 8004fd4: 2000 movs r0, #0 - 8004fd6: f7ff fa85 bl 80044e4 + 8004ffa: 1d3a adds r2, r7, #4 + 8004ffc: f248 4330 movw r3, #33840 ; 0x8430 + 8005000: 9301 str r3, [sp, #4] + 8005002: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005006: 9300 str r3, [sp, #0] + 8005008: 2310 movs r3, #16 + 800500a: 2182 movs r1, #130 ; 0x82 + 800500c: 2000 movs r0, #0 + 800500e: f7ff fa85 bl 800451c { - 8004fda: e0cb b.n 8005174 - 8004fdc: 40011c00 .word 0x40011c00 - 8004fe0: 08008634 .word 0x08008634 - 8004fe4: 08008640 .word 0x08008640 - 8004fe8: 0800864c .word 0x0800864c - 8004fec: 08008660 .word 0x08008660 - 8004ff0: 08008674 .word 0x08008674 - 8004ff4: 08008688 .word 0x08008688 - 8004ff8: 0800869c .word 0x0800869c + 8005012: e0cb b.n 80051ac + 8005014: 40011c00 .word 0x40011c00 + 8005018: 08008904 .word 0x08008904 + 800501c: 08008910 .word 0x08008910 + 8005020: 0800891c .word 0x0800891c + 8005024: 08008930 .word 0x08008930 + 8005028: 08008944 .word 0x08008944 + 800502c: 08008958 .word 0x08008958 + 8005030: 0800896c .word 0x0800896c }else { //计算关系倍率 //ad的长边减去短边再除去实际屏幕像素的长边减短边(260=320-30-30,180=240-30-30) acc_x=x5/260.0; - 8004ffc: 6db8 ldr r0, [r7, #88] ; 0x58 - 8004ffe: f7fb fa6d bl 80004dc <__aeabi_i2d> - 8005002: f04f 0200 mov.w r2, #0 - 8005006: 4b66 ldr r3, [pc, #408] ; (80051a0 ) - 8005008: f7fb fbfc bl 8000804 <__aeabi_ddiv> - 800500c: 4602 mov r2, r0 - 800500e: 460b mov r3, r1 - 8005010: 4610 mov r0, r2 - 8005012: 4619 mov r1, r3 - 8005014: f7fb fda4 bl 8000b60 <__aeabi_d2f> - 8005018: 4603 mov r3, r0 - 800501a: 653b str r3, [r7, #80] ; 0x50 + 8005034: 6db8 ldr r0, [r7, #88] ; 0x58 + 8005036: f7fb fa51 bl 80004dc <__aeabi_i2d> + 800503a: f04f 0200 mov.w r2, #0 + 800503e: 4b66 ldr r3, [pc, #408] ; (80051d8 ) + 8005040: f7fb fbe0 bl 8000804 <__aeabi_ddiv> + 8005044: 4602 mov r2, r0 + 8005046: 460b mov r3, r1 + 8005048: 4610 mov r0, r2 + 800504a: 4619 mov r1, r3 + 800504c: f7fb fd88 bl 8000b60 <__aeabi_d2f> + 8005050: 4603 mov r3, r0 + 8005052: 653b str r3, [r7, #80] ; 0x50 acc_y=y5/180.0; - 800501c: 6d78 ldr r0, [r7, #84] ; 0x54 - 800501e: f7fb fa5d bl 80004dc <__aeabi_i2d> - 8005022: f04f 0200 mov.w r2, #0 - 8005026: 4b5f ldr r3, [pc, #380] ; (80051a4 ) - 8005028: f7fb fbec bl 8000804 <__aeabi_ddiv> - 800502c: 4602 mov r2, r0 - 800502e: 460b mov r3, r1 - 8005030: 4610 mov r0, r2 - 8005032: 4619 mov r1, r3 - 8005034: f7fb fd94 bl 8000b60 <__aeabi_d2f> - 8005038: 4603 mov r3, r0 - 800503a: 64fb str r3, [r7, #76] ; 0x4c + 8005054: 6d78 ldr r0, [r7, #84] ; 0x54 + 8005056: f7fb fa41 bl 80004dc <__aeabi_i2d> + 800505a: f04f 0200 mov.w r2, #0 + 800505e: 4b5f ldr r3, [pc, #380] ; (80051dc ) + 8005060: f7fb fbd0 bl 8000804 <__aeabi_ddiv> + 8005064: 4602 mov r2, r0 + 8005066: 460b mov r3, r1 + 8005068: 4610 mov r0, r2 + 800506a: 4619 mov r1, r3 + 800506c: f7fb fd78 bl 8000b60 <__aeabi_d2f> + 8005070: 4603 mov r3, r0 + 8005072: 64fb str r3, [r7, #76] ; 0x4c //验证倍率,将实际值减去验证值就等于误差值,因为有两个点,所以计算了两个误差后求了平均值 offset_x=(((xd/acc_x)-30)+((xl/acc_x)-290))/2; - 800503c: 6eb8 ldr r0, [r7, #104] ; 0x68 - 800503e: f7fb fe99 bl 8000d74 <__aeabi_i2f> - 8005042: 4603 mov r3, r0 - 8005044: 6d39 ldr r1, [r7, #80] ; 0x50 - 8005046: 4618 mov r0, r3 - 8005048: f7fb ff9c bl 8000f84 <__aeabi_fdiv> - 800504c: 4603 mov r3, r0 - 800504e: 4956 ldr r1, [pc, #344] ; (80051a8 ) - 8005050: 4618 mov r0, r3 - 8005052: f7fb fdd9 bl 8000c08 <__aeabi_fsub> - 8005056: 4603 mov r3, r0 - 8005058: 461c mov r4, r3 - 800505a: 6e78 ldr r0, [r7, #100] ; 0x64 - 800505c: f7fb fe8a bl 8000d74 <__aeabi_i2f> - 8005060: 4603 mov r3, r0 - 8005062: 6d39 ldr r1, [r7, #80] ; 0x50 - 8005064: 4618 mov r0, r3 - 8005066: f7fb ff8d bl 8000f84 <__aeabi_fdiv> - 800506a: 4603 mov r3, r0 - 800506c: 494f ldr r1, [pc, #316] ; (80051ac ) - 800506e: 4618 mov r0, r3 - 8005070: f7fb fdca bl 8000c08 <__aeabi_fsub> - 8005074: 4603 mov r3, r0 - 8005076: 4619 mov r1, r3 - 8005078: 4620 mov r0, r4 - 800507a: f7fb fdc7 bl 8000c0c <__addsf3> - 800507e: 4603 mov r3, r0 - 8005080: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 8005084: 4618 mov r0, r3 - 8005086: f7fb ff7d bl 8000f84 <__aeabi_fdiv> - 800508a: 4603 mov r3, r0 - 800508c: 4618 mov r0, r3 - 800508e: f7fc f815 bl 80010bc <__aeabi_f2iz> - 8005092: 4603 mov r3, r0 - 8005094: 64bb str r3, [r7, #72] ; 0x48 + 8005074: 6eb8 ldr r0, [r7, #104] ; 0x68 + 8005076: f7fb fe7d bl 8000d74 <__aeabi_i2f> + 800507a: 4603 mov r3, r0 + 800507c: 6d39 ldr r1, [r7, #80] ; 0x50 + 800507e: 4618 mov r0, r3 + 8005080: f7fb ff80 bl 8000f84 <__aeabi_fdiv> + 8005084: 4603 mov r3, r0 + 8005086: 4956 ldr r1, [pc, #344] ; (80051e0 ) + 8005088: 4618 mov r0, r3 + 800508a: f7fb fdbd bl 8000c08 <__aeabi_fsub> + 800508e: 4603 mov r3, r0 + 8005090: 461c mov r4, r3 + 8005092: 6e78 ldr r0, [r7, #100] ; 0x64 + 8005094: f7fb fe6e bl 8000d74 <__aeabi_i2f> + 8005098: 4603 mov r3, r0 + 800509a: 6d39 ldr r1, [r7, #80] ; 0x50 + 800509c: 4618 mov r0, r3 + 800509e: f7fb ff71 bl 8000f84 <__aeabi_fdiv> + 80050a2: 4603 mov r3, r0 + 80050a4: 494f ldr r1, [pc, #316] ; (80051e4 ) + 80050a6: 4618 mov r0, r3 + 80050a8: f7fb fdae bl 8000c08 <__aeabi_fsub> + 80050ac: 4603 mov r3, r0 + 80050ae: 4619 mov r1, r3 + 80050b0: 4620 mov r0, r4 + 80050b2: f7fb fdab bl 8000c0c <__addsf3> + 80050b6: 4603 mov r3, r0 + 80050b8: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 80050bc: 4618 mov r0, r3 + 80050be: f7fb ff61 bl 8000f84 <__aeabi_fdiv> + 80050c2: 4603 mov r3, r0 + 80050c4: 4618 mov r0, r3 + 80050c6: f7fb fff9 bl 80010bc <__aeabi_f2iz> + 80050ca: 4603 mov r3, r0 + 80050cc: 64bb str r3, [r7, #72] ; 0x48 offset_y=(((yd/acc_y)-30)+((yl/acc_y)-210))/2; - 8005096: 6e38 ldr r0, [r7, #96] ; 0x60 - 8005098: f7fb fe6c bl 8000d74 <__aeabi_i2f> - 800509c: 4603 mov r3, r0 - 800509e: 6cf9 ldr r1, [r7, #76] ; 0x4c - 80050a0: 4618 mov r0, r3 - 80050a2: f7fb ff6f bl 8000f84 <__aeabi_fdiv> - 80050a6: 4603 mov r3, r0 - 80050a8: 493f ldr r1, [pc, #252] ; (80051a8 ) - 80050aa: 4618 mov r0, r3 - 80050ac: f7fb fdac bl 8000c08 <__aeabi_fsub> - 80050b0: 4603 mov r3, r0 - 80050b2: 461c mov r4, r3 - 80050b4: 6df8 ldr r0, [r7, #92] ; 0x5c - 80050b6: f7fb fe5d bl 8000d74 <__aeabi_i2f> - 80050ba: 4603 mov r3, r0 - 80050bc: 6cf9 ldr r1, [r7, #76] ; 0x4c - 80050be: 4618 mov r0, r3 - 80050c0: f7fb ff60 bl 8000f84 <__aeabi_fdiv> - 80050c4: 4603 mov r3, r0 - 80050c6: 493a ldr r1, [pc, #232] ; (80051b0 ) - 80050c8: 4618 mov r0, r3 - 80050ca: f7fb fd9d bl 8000c08 <__aeabi_fsub> - 80050ce: 4603 mov r3, r0 - 80050d0: 4619 mov r1, r3 - 80050d2: 4620 mov r0, r4 - 80050d4: f7fb fd9a bl 8000c0c <__addsf3> - 80050d8: 4603 mov r3, r0 - 80050da: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 - 80050de: 4618 mov r0, r3 - 80050e0: f7fb ff50 bl 8000f84 <__aeabi_fdiv> - 80050e4: 4603 mov r3, r0 - 80050e6: 4618 mov r0, r3 - 80050e8: f7fb ffe8 bl 80010bc <__aeabi_f2iz> - 80050ec: 4603 mov r3, r0 - 80050ee: 647b str r3, [r7, #68] ; 0x44 + 80050ce: 6e38 ldr r0, [r7, #96] ; 0x60 + 80050d0: f7fb fe50 bl 8000d74 <__aeabi_i2f> + 80050d4: 4603 mov r3, r0 + 80050d6: 6cf9 ldr r1, [r7, #76] ; 0x4c + 80050d8: 4618 mov r0, r3 + 80050da: f7fb ff53 bl 8000f84 <__aeabi_fdiv> + 80050de: 4603 mov r3, r0 + 80050e0: 493f ldr r1, [pc, #252] ; (80051e0 ) + 80050e2: 4618 mov r0, r3 + 80050e4: f7fb fd90 bl 8000c08 <__aeabi_fsub> + 80050e8: 4603 mov r3, r0 + 80050ea: 461c mov r4, r3 + 80050ec: 6df8 ldr r0, [r7, #92] ; 0x5c + 80050ee: f7fb fe41 bl 8000d74 <__aeabi_i2f> + 80050f2: 4603 mov r3, r0 + 80050f4: 6cf9 ldr r1, [r7, #76] ; 0x4c + 80050f6: 4618 mov r0, r3 + 80050f8: f7fb ff44 bl 8000f84 <__aeabi_fdiv> + 80050fc: 4603 mov r3, r0 + 80050fe: 493a ldr r1, [pc, #232] ; (80051e8 ) + 8005100: 4618 mov r0, r3 + 8005102: f7fb fd81 bl 8000c08 <__aeabi_fsub> + 8005106: 4603 mov r3, r0 + 8005108: 4619 mov r1, r3 + 800510a: 4620 mov r0, r4 + 800510c: f7fb fd7e bl 8000c0c <__addsf3> + 8005110: 4603 mov r3, r0 + 8005112: f04f 4180 mov.w r1, #1073741824 ; 0x40000000 + 8005116: 4618 mov r0, r3 + 8005118: f7fb ff34 bl 8000f84 <__aeabi_fdiv> + 800511c: 4603 mov r3, r0 + 800511e: 4618 mov r0, r3 + 8005120: f7fb ffcc bl 80010bc <__aeabi_f2iz> + 8005124: 4603 mov r3, r0 + 8005126: 647b str r3, [r7, #68] ; 0x44 //保存计算结果 tconfig.x_acc=acc_x; - 80050f0: 4a30 ldr r2, [pc, #192] ; (80051b4 ) - 80050f2: 6d3b ldr r3, [r7, #80] ; 0x50 - 80050f4: 6053 str r3, [r2, #4] + 8005128: 4a30 ldr r2, [pc, #192] ; (80051ec ) + 800512a: 6d3b ldr r3, [r7, #80] ; 0x50 + 800512c: 6053 str r3, [r2, #4] tconfig.x_offset=offset_x; - 80050f6: 4a2f ldr r2, [pc, #188] ; (80051b4 ) - 80050f8: 6cbb ldr r3, [r7, #72] ; 0x48 - 80050fa: 60d3 str r3, [r2, #12] + 800512e: 4a2f ldr r2, [pc, #188] ; (80051ec ) + 8005130: 6cbb ldr r3, [r7, #72] ; 0x48 + 8005132: 60d3 str r3, [r2, #12] tconfig.y_acc=acc_y; - 80050fc: 4a2d ldr r2, [pc, #180] ; (80051b4 ) - 80050fe: 6cfb ldr r3, [r7, #76] ; 0x4c - 8005100: 6093 str r3, [r2, #8] + 8005134: 4a2d ldr r2, [pc, #180] ; (80051ec ) + 8005136: 6cfb ldr r3, [r7, #76] ; 0x4c + 8005138: 6093 str r3, [r2, #8] tconfig.y_offset=offset_y; - 8005102: 4a2c ldr r2, [pc, #176] ; (80051b4 ) - 8005104: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005106: 6113 str r3, [r2, #16] + 800513a: 4a2c ldr r2, [pc, #176] ; (80051ec ) + 800513c: 6c7b ldr r3, [r7, #68] ; 0x44 + 800513e: 6113 str r3, [r2, #16] //eeprom块标记 tconfig.begin=0xab; - 8005108: 4b2a ldr r3, [pc, #168] ; (80051b4 ) - 800510a: 22ab movs r2, #171 ; 0xab - 800510c: 701a strb r2, [r3, #0] + 8005140: 4b2a ldr r3, [pc, #168] ; (80051ec ) + 8005142: 22ab movs r2, #171 ; 0xab + 8005144: 701a strb r2, [r3, #0] tconfig.end=0xcd; - 800510e: 4b29 ldr r3, [pc, #164] ; (80051b4 ) - 8005110: 22cd movs r2, #205 ; 0xcd - 8005112: 751a strb r2, [r3, #20] + 8005146: 4b29 ldr r3, [pc, #164] ; (80051ec ) + 8005148: 22cd movs r2, #205 ; 0xcd + 800514a: 751a strb r2, [r3, #20] //显示计算结果 sprintf(str,"x_acc=%f y_acc=%f",acc_x,acc_y); - 8005114: 6d38 ldr r0, [r7, #80] ; 0x50 - 8005116: f7fb f9f3 bl 8000500 <__aeabi_f2d> - 800511a: 4604 mov r4, r0 - 800511c: 460d mov r5, r1 - 800511e: 6cf8 ldr r0, [r7, #76] ; 0x4c - 8005120: f7fb f9ee bl 8000500 <__aeabi_f2d> - 8005124: 4602 mov r2, r0 - 8005126: 460b mov r3, r1 - 8005128: 1d38 adds r0, r7, #4 - 800512a: e9cd 2300 strd r2, r3, [sp] - 800512e: 4622 mov r2, r4 - 8005130: 462b mov r3, r5 - 8005132: 4921 ldr r1, [pc, #132] ; (80051b8 ) - 8005134: f001 f8e0 bl 80062f8 + 800514c: 6d38 ldr r0, [r7, #80] ; 0x50 + 800514e: f7fb f9d7 bl 8000500 <__aeabi_f2d> + 8005152: 4604 mov r4, r0 + 8005154: 460d mov r5, r1 + 8005156: 6cf8 ldr r0, [r7, #76] ; 0x4c + 8005158: f7fb f9d2 bl 8000500 <__aeabi_f2d> + 800515c: 4602 mov r2, r0 + 800515e: 460b mov r3, r1 + 8005160: 1d38 adds r0, r7, #4 + 8005162: e9cd 2300 strd r2, r3, [sp] + 8005166: 4622 mov r2, r4 + 8005168: 462b mov r3, r5 + 800516a: 4921 ldr r1, [pc, #132] ; (80051f0 ) + 800516c: f001 fa2e bl 80065cc LCD_ShowString(0,66+16+16+16+16,str,16,RED,RED); - 8005138: 1d3a adds r2, r7, #4 - 800513a: f44f 4378 mov.w r3, #63488 ; 0xf800 - 800513e: 9301 str r3, [sp, #4] - 8005140: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005144: 9300 str r3, [sp, #0] - 8005146: 2310 movs r3, #16 - 8005148: 2182 movs r1, #130 ; 0x82 - 800514a: 2000 movs r0, #0 - 800514c: f7ff f9ca bl 80044e4 + 8005170: 1d3a adds r2, r7, #4 + 8005172: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005176: 9301 str r3, [sp, #4] + 8005178: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800517c: 9300 str r3, [sp, #0] + 800517e: 2310 movs r3, #16 + 8005180: 2182 movs r1, #130 ; 0x82 + 8005182: 2000 movs r0, #0 + 8005184: f7ff f9ca bl 800451c sprintf(str,"x_offset=%d y_offset=%d",offset_x,offset_y); - 8005150: 1d38 adds r0, r7, #4 - 8005152: 6c7b ldr r3, [r7, #68] ; 0x44 - 8005154: 6cba ldr r2, [r7, #72] ; 0x48 - 8005156: 4919 ldr r1, [pc, #100] ; (80051bc ) - 8005158: f001 f8ce bl 80062f8 + 8005188: 1d38 adds r0, r7, #4 + 800518a: 6c7b ldr r3, [r7, #68] ; 0x44 + 800518c: 6cba ldr r2, [r7, #72] ; 0x48 + 800518e: 4919 ldr r1, [pc, #100] ; (80051f4 ) + 8005190: f001 fa1c bl 80065cc LCD_ShowString(0,66+16+16+16+16+16,str,16,RED,RED); - 800515c: 1d3a adds r2, r7, #4 - 800515e: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005162: 9301 str r3, [sp, #4] - 8005164: f44f 4378 mov.w r3, #63488 ; 0xf800 - 8005168: 9300 str r3, [sp, #0] - 800516a: 2310 movs r3, #16 - 800516c: 2192 movs r1, #146 ; 0x92 - 800516e: 2000 movs r0, #0 - 8005170: f7ff f9b8 bl 80044e4 + 8005194: 1d3a adds r2, r7, #4 + 8005196: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800519a: 9301 str r3, [sp, #4] + 800519c: f44f 4378 mov.w r3, #63488 ; 0xf800 + 80051a0: 9300 str r3, [sp, #0] + 80051a2: 2310 movs r3, #16 + 80051a4: 2192 movs r1, #146 ; 0x92 + 80051a6: 2000 movs r0, #0 + 80051a8: f7ff f9b8 bl 800451c } //将结果保存起来 EEPROM_WRITE_BATY(16,(char *)&tconfig,sizeof(touch_config)); - 8005174: 2218 movs r2, #24 - 8005176: 490f ldr r1, [pc, #60] ; (80051b4 ) - 8005178: 2010 movs r0, #16 - 800517a: f7ff fa9f bl 80046bc + 80051ac: 2218 movs r2, #24 + 80051ae: 490f ldr r1, [pc, #60] ; (80051ec ) + 80051b0: 2010 movs r0, #16 + 80051b2: f7ff fa63 bl 800467c HAL_Delay(1000); - 800517e: f44f 707a mov.w r0, #1000 ; 0x3e8 - 8005182: f7fc fb99 bl 80018b8 + 80051b6: f44f 707a mov.w r0, #1000 ; 0x3e8 + 80051ba: f7fc fb99 bl 80018f0 return; - 8005186: e008 b.n 800519a + 80051be: e008 b.n 80051d2 while(HAL_GetTick() - 800518c: 4602 mov r2, r0 - 800518e: 6f3b ldr r3, [r7, #112] ; 0x70 - 8005190: 4293 cmp r3, r2 - 8005192: f63f ad81 bhi.w 8004c98 - 8005196: e000 b.n 800519a + 80051c0: f7fc fb8c bl 80018dc + 80051c4: 4602 mov r2, r0 + 80051c6: 6f3b ldr r3, [r7, #112] ; 0x70 + 80051c8: 4293 cmp r3, r2 + 80051ca: f63f ad81 bhi.w 8004cd0 + 80051ce: e000 b.n 80051d2 return; //已经校准过了 - 8005198: bf00 nop + 80051d0: bf00 nop } } } - 800519a: 3788 adds r7, #136 ; 0x88 - 800519c: 46bd mov sp, r7 - 800519e: bdb0 pop {r4, r5, r7, pc} - 80051a0: 40704000 .word 0x40704000 - 80051a4: 40668000 .word 0x40668000 - 80051a8: 41f00000 .word 0x41f00000 - 80051ac: 43910000 .word 0x43910000 - 80051b0: 43520000 .word 0x43520000 - 80051b4: 200002c8 .word 0x200002c8 - 80051b8: 080086a4 .word 0x080086a4 - 80051bc: 080086b8 .word 0x080086b8 - -080051c0 : -#include "APP_blood.h" + 80051d2: 3788 adds r7, #136 ; 0x88 + 80051d4: 46bd mov sp, r7 + 80051d6: bdb0 pop {r4, r5, r7, pc} + 80051d8: 40704000 .word 0x40704000 + 80051dc: 40668000 .word 0x40668000 + 80051e0: 41f00000 .word 0x41f00000 + 80051e4: 43910000 .word 0x43910000 + 80051e8: 43520000 .word 0x43520000 + 80051ec: 200002c8 .word 0x200002c8 + 80051f0: 08008974 .word 0x08008974 + 80051f4: 08008988 .word 0x08008988 +080051f8 : window *blood_win; +uint16_t fifo_red; +uint16_t fifo_ir; +char blood_str[64]; +uint8_t Max30102_reset(void) +{ + 80051f8: b580 push {r7, lr} + 80051fa: b082 sub sp, #8 + 80051fc: af00 add r7, sp, #0 + char a=0x40; + 80051fe: 2340 movs r3, #64 ; 0x40 + 8005200: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG, &a,1); + 8005202: 1dfa adds r2, r7, #7 + 8005204: 2301 movs r3, #1 + 8005206: 2109 movs r1, #9 + 8005208: 20ae movs r0, #174 ; 0xae + 800520a: f7ff fa7d bl 8004708 + +} + 800520e: bf00 nop + 8005210: 4618 mov r0, r3 + 8005212: 3708 adds r7, #8 + 8005214: 46bd mov sp, r7 + 8005216: bd80 pop {r7, pc} + +08005218 : +void MAX30102_Config(void) +{ + 8005218: b580 push {r7, lr} + 800521a: b082 sub sp, #8 + 800521c: af00 add r7, sp, #0 + char a; + a=0xc0; + 800521e: 23c0 movs r3, #192 ; 0xc0 + 8005220: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_1,&a,1);//// INTR setting + 8005222: 1dfa adds r2, r7, #7 + 8005224: 2301 movs r3, #1 + 8005226: 2102 movs r1, #2 + 8005228: 20ae movs r0, #174 ; 0xae + 800522a: f7ff fa6d bl 8004708 + a=0; + 800522e: 2300 movs r3, #0 + 8005230: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_2,&a,1);// + 8005232: 1dfa adds r2, r7, #7 + 8005234: 2301 movs r3, #1 + 8005236: 2103 movs r1, #3 + 8005238: 20ae movs r0, #174 ; 0xae + 800523a: f7ff fa65 bl 8004708 + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_WR_PTR,&a,1);//FIFO_WR_PTR[4:0] + 800523e: 1dfa adds r2, r7, #7 + 8005240: 2301 movs r3, #1 + 8005242: 2104 movs r1, #4 + 8005244: 20ae movs r0, #174 ; 0xae + 8005246: f7ff fa5f bl 8004708 + IIC_SAND_DATE(MAX30102_Device_address,REG_OVF_COUNTER,&a,1);//OVF_COUNTER[4:0] + 800524a: 1dfa adds r2, r7, #7 + 800524c: 2301 movs r3, #1 + 800524e: 2105 movs r1, #5 + 8005250: 20ae movs r0, #174 ; 0xae + 8005252: f7ff fa59 bl 8004708 + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_RD_PTR,&a,1);//FIFO_RD_PTR[4:0] + 8005256: 1dfa adds r2, r7, #7 + 8005258: 2301 movs r3, #1 + 800525a: 2106 movs r1, #6 + 800525c: 20ae movs r0, #174 ; 0xae + 800525e: f7ff fa53 bl 8004708 + + a=0x0f; + 8005262: 230f movs r3, #15 + 8005264: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_CONFIG,&a,1);//sample avg = 1, fifo rollover=false, fifo almost full = 17 + 8005266: 1dfa adds r2, r7, #7 + 8005268: 2301 movs r3, #1 + 800526a: 2108 movs r1, #8 + 800526c: 20ae movs r0, #174 ; 0xae + 800526e: f7ff fa4b bl 8004708 + a=0x03; + 8005272: 2303 movs r3, #3 + 8005274: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG,&a,1);//0x02 for Red only, 0x03 for SpO2 mode 0x07 multimode LED + 8005276: 1dfa adds r2, r7, #7 + 8005278: 2301 movs r3, #1 + 800527a: 2109 movs r1, #9 + 800527c: 20ae movs r0, #174 ; 0xae + 800527e: f7ff fa43 bl 8004708 + a=0x27; + 8005282: 2327 movs r3, #39 ; 0x27 + 8005284: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_SPO2_CONFIG,&a,1); // SPO2_ADC range = 4096nA, SPO2 sample rate (50 Hz), LED pulseWidth (400uS) + 8005286: 1dfa adds r2, r7, #7 + 8005288: 2301 movs r3, #1 + 800528a: 210a movs r1, #10 + 800528c: 20ae movs r0, #174 ; 0xae + 800528e: f7ff fa3b bl 8004708 + a=0x32; + 8005292: 2332 movs r3, #50 ; 0x32 + 8005294: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_LED1_PA,&a,1);//Choose value for ~ 10mA for LED1 + 8005296: 1dfa adds r2, r7, #7 + 8005298: 2301 movs r3, #1 + 800529a: 210c movs r1, #12 + 800529c: 20ae movs r0, #174 ; 0xae + 800529e: f7ff fa33 bl 8004708 + IIC_SAND_DATE(MAX30102_Device_address,REG_LED2_PA,&a,1);// Choose value for ~ 10mA for LED2 + 80052a2: 1dfa adds r2, r7, #7 + 80052a4: 2301 movs r3, #1 + 80052a6: 210d movs r1, #13 + 80052a8: 20ae movs r0, #174 ; 0xae + 80052aa: f7ff fa2d bl 8004708 + a=0x7f; + 80052ae: 237f movs r3, #127 ; 0x7f + 80052b0: 71fb strb r3, [r7, #7] + IIC_SAND_DATE(MAX30102_Device_address,REG_PILOT_PA,&a,1);// Choose value for ~ 25mA for Pilot LED + 80052b2: 1dfa adds r2, r7, #7 + 80052b4: 2301 movs r3, #1 + 80052b6: 2110 movs r1, #16 + 80052b8: 20ae movs r0, #174 ; 0xae + 80052ba: f7ff fa25 bl 8004708 +} + 80052be: bf00 nop + 80052c0: 3708 adds r7, #8 + 80052c2: 46bd mov sp, r7 + 80052c4: bd80 pop {r7, pc} + ... + +080052c8 : +void max30102_read_fifo(void) +{ + 80052c8: b580 push {r7, lr} + 80052ca: b082 sub sp, #8 + 80052cc: af00 add r7, sp, #0 + uint16_t un_temp; + fifo_red=0; + 80052ce: 4b3c ldr r3, [pc, #240] ; (80053c0 ) + 80052d0: 2200 movs r2, #0 + 80052d2: 801a strh r2, [r3, #0] + fifo_ir=0; + 80052d4: 4b3b ldr r3, [pc, #236] ; (80053c4 ) + 80052d6: 2200 movs r2, #0 + 80052d8: 801a strh r2, [r3, #0] + uint8_t ach_i2c_data[6]; + + //read and clear status register + IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_1,&ach_i2c_data,1); + 80052da: 463a mov r2, r7 + 80052dc: 2301 movs r3, #1 + 80052de: 2100 movs r1, #0 + 80052e0: 20ae movs r0, #174 ; 0xae + 80052e2: f7ff fa2f bl 8004744 + IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_2,&ach_i2c_data,1); + 80052e6: 463a mov r2, r7 + 80052e8: 2301 movs r3, #1 + 80052ea: 2101 movs r1, #1 + 80052ec: 20ae movs r0, #174 ; 0xae + 80052ee: f7ff fa29 bl 8004744 + + ach_i2c_data[0]=REG_FIFO_DATA; + 80052f2: 2307 movs r3, #7 + 80052f4: 703b strb r3, [r7, #0] + + IIC_READ_DATE(MAX30102_Device_address,REG_FIFO_DATA,&ach_i2c_data,6); + 80052f6: 463a mov r2, r7 + 80052f8: 2306 movs r3, #6 + 80052fa: 2107 movs r1, #7 + 80052fc: 20ae movs r0, #174 ; 0xae + 80052fe: f7ff fa21 bl 8004744 + + un_temp=ach_i2c_data[0]; + 8005302: 783b ldrb r3, [r7, #0] + 8005304: 80fb strh r3, [r7, #6] + un_temp<<=14; + 8005306: 88fb ldrh r3, [r7, #6] + 8005308: 039b lsls r3, r3, #14 + 800530a: 80fb strh r3, [r7, #6] + fifo_red+=un_temp; + 800530c: 4b2c ldr r3, [pc, #176] ; (80053c0 ) + 800530e: 881a ldrh r2, [r3, #0] + 8005310: 88fb ldrh r3, [r7, #6] + 8005312: 4413 add r3, r2 + 8005314: b29a uxth r2, r3 + 8005316: 4b2a ldr r3, [pc, #168] ; (80053c0 ) + 8005318: 801a strh r2, [r3, #0] + un_temp=ach_i2c_data[1]; + 800531a: 787b ldrb r3, [r7, #1] + 800531c: 80fb strh r3, [r7, #6] + un_temp<<=6; + 800531e: 88fb ldrh r3, [r7, #6] + 8005320: 019b lsls r3, r3, #6 + 8005322: 80fb strh r3, [r7, #6] + fifo_red+=un_temp; + 8005324: 4b26 ldr r3, [pc, #152] ; (80053c0 ) + 8005326: 881a ldrh r2, [r3, #0] + 8005328: 88fb ldrh r3, [r7, #6] + 800532a: 4413 add r3, r2 + 800532c: b29a uxth r2, r3 + 800532e: 4b24 ldr r3, [pc, #144] ; (80053c0 ) + 8005330: 801a strh r2, [r3, #0] + un_temp=ach_i2c_data[2]; + 8005332: 78bb ldrb r3, [r7, #2] + 8005334: 80fb strh r3, [r7, #6] + un_temp>>=2; + 8005336: 88fb ldrh r3, [r7, #6] + 8005338: 089b lsrs r3, r3, #2 + 800533a: 80fb strh r3, [r7, #6] + fifo_red+=un_temp; + 800533c: 4b20 ldr r3, [pc, #128] ; (80053c0 ) + 800533e: 881a ldrh r2, [r3, #0] + 8005340: 88fb ldrh r3, [r7, #6] + 8005342: 4413 add r3, r2 + 8005344: b29a uxth r2, r3 + 8005346: 4b1e ldr r3, [pc, #120] ; (80053c0 ) + 8005348: 801a strh r2, [r3, #0] + + un_temp=ach_i2c_data[3]; + 800534a: 78fb ldrb r3, [r7, #3] + 800534c: 80fb strh r3, [r7, #6] + un_temp<<=14; + 800534e: 88fb ldrh r3, [r7, #6] + 8005350: 039b lsls r3, r3, #14 + 8005352: 80fb strh r3, [r7, #6] + fifo_ir+=un_temp; + 8005354: 4b1b ldr r3, [pc, #108] ; (80053c4 ) + 8005356: 881a ldrh r2, [r3, #0] + 8005358: 88fb ldrh r3, [r7, #6] + 800535a: 4413 add r3, r2 + 800535c: b29a uxth r2, r3 + 800535e: 4b19 ldr r3, [pc, #100] ; (80053c4 ) + 8005360: 801a strh r2, [r3, #0] + un_temp=ach_i2c_data[4]; + 8005362: 793b ldrb r3, [r7, #4] + 8005364: 80fb strh r3, [r7, #6] + un_temp<<=6; + 8005366: 88fb ldrh r3, [r7, #6] + 8005368: 019b lsls r3, r3, #6 + 800536a: 80fb strh r3, [r7, #6] + fifo_ir+=un_temp; + 800536c: 4b15 ldr r3, [pc, #84] ; (80053c4 ) + 800536e: 881a ldrh r2, [r3, #0] + 8005370: 88fb ldrh r3, [r7, #6] + 8005372: 4413 add r3, r2 + 8005374: b29a uxth r2, r3 + 8005376: 4b13 ldr r3, [pc, #76] ; (80053c4 ) + 8005378: 801a strh r2, [r3, #0] + un_temp=ach_i2c_data[5]; + 800537a: 797b ldrb r3, [r7, #5] + 800537c: 80fb strh r3, [r7, #6] + un_temp>>=2; + 800537e: 88fb ldrh r3, [r7, #6] + 8005380: 089b lsrs r3, r3, #2 + 8005382: 80fb strh r3, [r7, #6] + fifo_ir+=un_temp; + 8005384: 4b0f ldr r3, [pc, #60] ; (80053c4 ) + 8005386: 881a ldrh r2, [r3, #0] + 8005388: 88fb ldrh r3, [r7, #6] + 800538a: 4413 add r3, r2 + 800538c: b29a uxth r2, r3 + 800538e: 4b0d ldr r3, [pc, #52] ; (80053c4 ) + 8005390: 801a strh r2, [r3, #0] + + if(fifo_ir<=10000) + 8005392: 4b0c ldr r3, [pc, #48] ; (80053c4 ) + 8005394: 881b ldrh r3, [r3, #0] + 8005396: f242 7210 movw r2, #10000 ; 0x2710 + 800539a: 4293 cmp r3, r2 + 800539c: d802 bhi.n 80053a4 + { + fifo_ir=0; + 800539e: 4b09 ldr r3, [pc, #36] ; (80053c4 ) + 80053a0: 2200 movs r2, #0 + 80053a2: 801a strh r2, [r3, #0] + } + if(fifo_red<=10000) + 80053a4: 4b06 ldr r3, [pc, #24] ; (80053c0 ) + 80053a6: 881b ldrh r3, [r3, #0] + 80053a8: f242 7210 movw r2, #10000 ; 0x2710 + 80053ac: 4293 cmp r3, r2 + 80053ae: d802 bhi.n 80053b6 + { + fifo_red=0; + 80053b0: 4b03 ldr r3, [pc, #12] ; (80053c0 ) + 80053b2: 2200 movs r2, #0 + 80053b4: 801a strh r2, [r3, #0] + } + +} + 80053b6: bf00 nop + 80053b8: 3708 adds r7, #8 + 80053ba: 46bd mov sp, r7 + 80053bc: bd80 pop {r7, pc} + 80053be: bf00 nop + 80053c0: 20000338 .word 0x20000338 + 80053c4: 20000330 .word 0x20000330 + +080053c8 : void APP_blood_init(window *a_window) { - 80051c0: b480 push {r7} - 80051c2: b083 sub sp, #12 - 80051c4: af00 add r7, sp, #0 - 80051c6: 6078 str r0, [r7, #4] + 80053c8: b580 push {r7, lr} + 80053ca: b082 sub sp, #8 + 80053cc: af00 add r7, sp, #0 + 80053ce: 6078 str r0, [r7, #4] blood_win=a_window; - 80051c8: 4a03 ldr r2, [pc, #12] ; (80051d8 ) - 80051ca: 687b ldr r3, [r7, #4] - 80051cc: 6013 str r3, [r2, #0] -} - 80051ce: bf00 nop - 80051d0: 370c adds r7, #12 - 80051d2: 46bd mov sp, r7 - 80051d4: bc80 pop {r7} - 80051d6: 4770 bx lr - 80051d8: 200002f0 .word 0x200002f0 + 80053d0: 4a05 ldr r2, [pc, #20] ; (80053e8 ) + 80053d2: 687b ldr r3, [r7, #4] + 80053d4: 6013 str r3, [r2, #0] + Max30102_reset(); + 80053d6: f7ff ff0f bl 80051f8 + MAX30102_Config(); + 80053da: f7ff ff1d bl 8005218 -080051dc : + //HAL_GPIO_WritePin(MAX_RD_GPIO_Port, MAX_RD_Pin, 0); +} + 80053de: bf00 nop + 80053e0: 3708 adds r7, #8 + 80053e2: 46bd mov sp, r7 + 80053e4: bd80 pop {r7, pc} + 80053e6: bf00 nop + 80053e8: 20000334 .word 0x20000334 + +080053ec : void APP_blood_loop() { - 80051dc: b480 push {r7} - 80051de: af00 add r7, sp, #0 + 80053ec: b580 push {r7, lr} + 80053ee: b082 sub sp, #8 + 80053f0: af02 add r7, sp, #8 + max30102_read_fifo(); + 80053f2: f7ff ff69 bl 80052c8 + sprintf(blood_str,"fifo_red:%d",fifo_red); + 80053f6: 4b29 ldr r3, [pc, #164] ; (800549c ) + 80053f8: 881b ldrh r3, [r3, #0] + 80053fa: 461a mov r2, r3 + 80053fc: 4928 ldr r1, [pc, #160] ; (80054a0 ) + 80053fe: 4829 ldr r0, [pc, #164] ; (80054a4 ) + 8005400: f001 f8e4 bl 80065cc + LCD_ShowString(blood_win->x, blood_win->y+16, &blood_str, 16, WHITE, RED); + 8005404: 4b28 ldr r3, [pc, #160] ; (80054a8 ) + 8005406: 681b ldr r3, [r3, #0] + 8005408: 8818 ldrh r0, [r3, #0] + 800540a: 4b27 ldr r3, [pc, #156] ; (80054a8 ) + 800540c: 681b ldr r3, [r3, #0] + 800540e: 885b ldrh r3, [r3, #2] + 8005410: 3310 adds r3, #16 + 8005412: b299 uxth r1, r3 + 8005414: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005418: 9301 str r3, [sp, #4] + 800541a: f64f 73ff movw r3, #65535 ; 0xffff + 800541e: 9300 str r3, [sp, #0] + 8005420: 2310 movs r3, #16 + 8005422: 4a20 ldr r2, [pc, #128] ; (80054a4 ) + 8005424: f7ff f87a bl 800451c + sprintf(blood_str,"fifo_ir:%d",fifo_ir); + 8005428: 4b20 ldr r3, [pc, #128] ; (80054ac ) + 800542a: 881b ldrh r3, [r3, #0] + 800542c: 461a mov r2, r3 + 800542e: 4920 ldr r1, [pc, #128] ; (80054b0 ) + 8005430: 481c ldr r0, [pc, #112] ; (80054a4 ) + 8005432: f001 f8cb bl 80065cc + LCD_ShowString(blood_win->x, blood_win->y+32, &blood_str, 16, WHITE, RED); + 8005436: 4b1c ldr r3, [pc, #112] ; (80054a8 ) + 8005438: 681b ldr r3, [r3, #0] + 800543a: 8818 ldrh r0, [r3, #0] + 800543c: 4b1a ldr r3, [pc, #104] ; (80054a8 ) + 800543e: 681b ldr r3, [r3, #0] + 8005440: 885b ldrh r3, [r3, #2] + 8005442: 3320 adds r3, #32 + 8005444: b299 uxth r1, r3 + 8005446: f44f 4378 mov.w r3, #63488 ; 0xf800 + 800544a: 9301 str r3, [sp, #4] + 800544c: f64f 73ff movw r3, #65535 ; 0xffff + 8005450: 9300 str r3, [sp, #0] + 8005452: 2310 movs r3, #16 + 8005454: 4a13 ldr r2, [pc, #76] ; (80054a4 ) + 8005456: f7ff f861 bl 800451c + sprintf(blood_str,"INT:%d",HAL_GPIO_ReadPin(MAX_INT_GPIO_Port, MAX_INT_Pin)); + 800545a: f44f 5100 mov.w r1, #8192 ; 0x2000 + 800545e: 4815 ldr r0, [pc, #84] ; (80054b4 ) + 8005460: f7fc fce2 bl 8001e28 + 8005464: 4603 mov r3, r0 + 8005466: 461a mov r2, r3 + 8005468: 4913 ldr r1, [pc, #76] ; (80054b8 ) + 800546a: 480e ldr r0, [pc, #56] ; (80054a4 ) + 800546c: f001 f8ae bl 80065cc + LCD_ShowString(blood_win->x, blood_win->y+48, &blood_str, 16, WHITE, RED); + 8005470: 4b0d ldr r3, [pc, #52] ; (80054a8 ) + 8005472: 681b ldr r3, [r3, #0] + 8005474: 8818 ldrh r0, [r3, #0] + 8005476: 4b0c ldr r3, [pc, #48] ; (80054a8 ) + 8005478: 681b ldr r3, [r3, #0] + 800547a: 885b ldrh r3, [r3, #2] + 800547c: 3330 adds r3, #48 ; 0x30 + 800547e: b299 uxth r1, r3 + 8005480: f44f 4378 mov.w r3, #63488 ; 0xf800 + 8005484: 9301 str r3, [sp, #4] + 8005486: f64f 73ff movw r3, #65535 ; 0xffff + 800548a: 9300 str r3, [sp, #0] + 800548c: 2310 movs r3, #16 + 800548e: 4a05 ldr r2, [pc, #20] ; (80054a4 ) + 8005490: f7ff f844 bl 800451c + } - 80051e0: bf00 nop - 80051e2: 46bd mov sp, r7 - 80051e4: bc80 pop {r7} - 80051e6: 4770 bx lr + 8005494: bf00 nop + 8005496: 46bd mov sp, r7 + 8005498: bd80 pop {r7, pc} + 800549a: bf00 nop + 800549c: 20000338 .word 0x20000338 + 80054a0: 080089a0 .word 0x080089a0 + 80054a4: 200002f0 .word 0x200002f0 + 80054a8: 20000334 .word 0x20000334 + 80054ac: 20000330 .word 0x20000330 + 80054b0: 080089ac .word 0x080089ac + 80054b4: 40010c00 .word 0x40010c00 + 80054b8: 080089b8 .word 0x080089b8 -080051e8 : +080054bc : extern touch_device t0; task run_loop;//主循环状态机 void main_app() { - 80051e8: b580 push {r7, lr} - 80051ea: b096 sub sp, #88 ; 0x58 - 80051ec: af04 add r7, sp, #16 + 80054bc: b580 push {r7, lr} + 80054be: b096 sub sp, #88 ; 0x58 + 80054c0: af04 add r7, sp, #16 char str[64]; LCDx_Init(); - 80051ee: f7fe fdd5 bl 8003d9c + 80054c2: f7fe fc87 bl 8003dd4 EPPROM_SLOWWRITE_INIT(); - 80051f2: f7ff f9f1 bl 80045d8 + 80054c6: f7ff f867 bl 8004598 TP_adjustment(); - 80051f6: f7ff fd19 bl 8004c2c + 80054ca: f7ff fbcb bl 8004c64 UI *ui=UI_Init(BLACK); - 80051fa: 2000 movs r0, #0 - 80051fc: f000 f850 bl 80052a0 - 8005200: 6478 str r0, [r7, #68] ; 0x44 + 80054ce: 2000 movs r0, #0 + 80054d0: f000 f850 bl 8005574 + 80054d4: 6478 str r0, [r7, #68] ; 0x44 APP_blood_init(New_Window(ui,10,10,128,128,WHITE,"MAX30102")); - 8005202: 4b11 ldr r3, [pc, #68] ; (8005248 ) - 8005204: 9302 str r3, [sp, #8] - 8005206: f64f 73ff movw r3, #65535 ; 0xffff - 800520a: 9301 str r3, [sp, #4] - 800520c: 2380 movs r3, #128 ; 0x80 - 800520e: 9300 str r3, [sp, #0] - 8005210: 2380 movs r3, #128 ; 0x80 - 8005212: 220a movs r2, #10 - 8005214: 210a movs r1, #10 - 8005216: 6c78 ldr r0, [r7, #68] ; 0x44 - 8005218: f000 f875 bl 8005306 - 800521c: 4603 mov r3, r0 - 800521e: 4618 mov r0, r3 - 8005220: f7ff ffce bl 80051c0 + 80054d6: 4b11 ldr r3, [pc, #68] ; (800551c ) + 80054d8: 9302 str r3, [sp, #8] + 80054da: f64f 73ff movw r3, #65535 ; 0xffff + 80054de: 9301 str r3, [sp, #4] + 80054e0: 2380 movs r3, #128 ; 0x80 + 80054e2: 9300 str r3, [sp, #0] + 80054e4: 2380 movs r3, #128 ; 0x80 + 80054e6: 220a movs r2, #10 + 80054e8: 210a movs r1, #10 + 80054ea: 6c78 ldr r0, [r7, #68] ; 0x44 + 80054ec: f000 f875 bl 80055da + 80054f0: 4603 mov r3, r0 + 80054f2: 4618 mov r0, r3 + 80054f4: f7ff ff68 bl 80053c8 //New_Window(ui,25,30,150,100,GREEN,"GREEN"); //New_Window(ui,80,80,60,90,YELLOW,"YELLOW"); //New_Window(ui,120,90,70,60,MAGENTA,"MAGENTA"); ui->refresh_ui_flag=1; - 8005224: 6c7a ldr r2, [r7, #68] ; 0x44 - 8005226: f892 3020 ldrb.w r3, [r2, #32] - 800522a: f043 0304 orr.w r3, r3, #4 - 800522e: f882 3020 strb.w r3, [r2, #32] + 80054f8: 6c7a ldr r2, [r7, #68] ; 0x44 + 80054fa: f892 3020 ldrb.w r3, [r2, #32] + 80054fe: f043 0304 orr.w r3, r3, #4 + 8005502: f882 3020 strb.w r3, [r2, #32] } */ APP_blood_loop(); - 8005232: f7ff ffd3 bl 80051dc + 8005506: f7ff ff71 bl 80053ec UI_Server(ui); - 8005236: 6c78 ldr r0, [r7, #68] ; 0x44 - 8005238: f000 fa0c bl 8005654 + 800550a: 6c78 ldr r0, [r7, #68] ; 0x44 + 800550c: f000 fa0c bl 8005928 TP_Server(); - 800523c: f7ff fc22 bl 8004a84 + 8005510: f7ff fad4 bl 8004abc EEPROM_SLOWWRITE_SERVER(); - 8005240: f7ff f9e4 bl 800460c + 8005514: f7ff f85a bl 80045cc { - 8005244: e7f5 b.n 8005232 - 8005246: bf00 nop - 8005248: 080086d0 .word 0x080086d0 + 8005518: e7f5 b.n 8005506 + 800551a: bf00 nop + 800551c: 080089c0 .word 0x080089c0 -0800524c : +08005520 : #include "touch.h" extern touch_device t0; //接口 //设置屏幕像素坐标 void Inteface_SetCursor(uint16_t Xpos, uint16_t Ypos) { - 800524c: b580 push {r7, lr} - 800524e: b082 sub sp, #8 - 8005250: af00 add r7, sp, #0 - 8005252: 4603 mov r3, r0 - 8005254: 460a mov r2, r1 - 8005256: 80fb strh r3, [r7, #6] - 8005258: 4613 mov r3, r2 - 800525a: 80bb strh r3, [r7, #4] + 8005520: b580 push {r7, lr} + 8005522: b082 sub sp, #8 + 8005524: af00 add r7, sp, #0 + 8005526: 4603 mov r3, r0 + 8005528: 460a mov r2, r1 + 800552a: 80fb strh r3, [r7, #6] + 800552c: 4613 mov r3, r2 + 800552e: 80bb strh r3, [r7, #4] LCD_SetCursor(Xpos,Ypos); //设置光标位置 - 800525c: 88ba ldrh r2, [r7, #4] - 800525e: 88fb ldrh r3, [r7, #6] - 8005260: 4611 mov r1, r2 - 8005262: 4618 mov r0, r3 - 8005264: f7fe fe90 bl 8003f88 + 8005530: 88ba ldrh r2, [r7, #4] + 8005532: 88fb ldrh r3, [r7, #6] + 8005534: 4611 mov r1, r2 + 8005536: 4618 mov r0, r3 + 8005538: f7fe fd42 bl 8003fc0 LCD_REG_ADDRESS=lcddev.wramcmd; //开始写入GRAM - 8005268: 4b04 ldr r3, [pc, #16] ; (800527c ) - 800526a: 79da ldrb r2, [r3, #7] - 800526c: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 - 8005270: b292 uxth r2, r2 - 8005272: 801a strh r2, [r3, #0] + 800553c: 4b04 ldr r3, [pc, #16] ; (8005550 ) + 800553e: 79da ldrb r2, [r3, #7] + 8005540: f04f 43d8 mov.w r3, #1811939328 ; 0x6c000000 + 8005544: b292 uxth r2, r2 + 8005546: 801a strh r2, [r3, #0] } - 8005274: bf00 nop - 8005276: 3708 adds r7, #8 - 8005278: 46bd mov sp, r7 - 800527a: bd80 pop {r7, pc} - 800527c: 200002a8 .word 0x200002a8 + 8005548: bf00 nop + 800554a: 3708 adds r7, #8 + 800554c: 46bd mov sp, r7 + 800554e: bd80 pop {r7, pc} + 8005550: 200002a8 .word 0x200002a8 -08005280 : +08005554 : //往像素坐标写入一个颜色 void Inteface_SetColor(uint16_t color) { - 8005280: b480 push {r7} - 8005282: b083 sub sp, #12 - 8005284: af00 add r7, sp, #0 - 8005286: 4603 mov r3, r0 - 8005288: 80fb strh r3, [r7, #6] + 8005554: b480 push {r7} + 8005556: b083 sub sp, #12 + 8005558: af00 add r7, sp, #0 + 800555a: 4603 mov r3, r0 + 800555c: 80fb strh r3, [r7, #6] LCD_DATA_ADDRESS=color; - 800528a: 4a04 ldr r2, [pc, #16] ; (800529c ) - 800528c: 88fb ldrh r3, [r7, #6] - 800528e: 8013 strh r3, [r2, #0] + 800555e: 4a04 ldr r2, [pc, #16] ; (8005570 ) + 8005560: 88fb ldrh r3, [r7, #6] + 8005562: 8013 strh r3, [r2, #0] } - 8005290: bf00 nop - 8005292: 370c adds r7, #12 - 8005294: 46bd mov sp, r7 - 8005296: bc80 pop {r7} - 8005298: 4770 bx lr - 800529a: bf00 nop - 800529c: 6c000800 .word 0x6c000800 + 8005564: bf00 nop + 8005566: 370c adds r7, #12 + 8005568: 46bd mov sp, r7 + 800556a: bc80 pop {r7} + 800556c: 4770 bx lr + 800556e: bf00 nop + 8005570: 6c000800 .word 0x6c000800 -080052a0 : +08005574 : //新建一个UI对象 //当时都想法是类似windows的多桌面,每个桌面都能有n个窗口 UI *UI_Init(COLOR_16 background) { - 80052a0: b580 push {r7, lr} - 80052a2: b084 sub sp, #16 - 80052a4: af00 add r7, sp, #0 - 80052a6: 6078 str r0, [r7, #4] + 8005574: b580 push {r7, lr} + 8005576: b084 sub sp, #16 + 8005578: af00 add r7, sp, #0 + 800557a: 6078 str r0, [r7, #4] UI *ui; ui = (UI*)malloc(sizeof(UI)); - 80052a8: 2024 movs r0, #36 ; 0x24 - 80052aa: f000 faf7 bl 800589c - 80052ae: 4603 mov r3, r0 - 80052b0: 60fb str r3, [r7, #12] + 800557c: 2024 movs r0, #36 ; 0x24 + 800557e: f000 faf7 bl 8005b70 + 8005582: 4603 mov r3, r0 + 8005584: 60fb str r3, [r7, #12] if(ui!=NULL) - 80052b2: 68fb ldr r3, [r7, #12] - 80052b4: 2b00 cmp r3, #0 - 80052b6: d021 beq.n 80052fc + 8005586: 68fb ldr r3, [r7, #12] + 8005588: 2b00 cmp r3, #0 + 800558a: d021 beq.n 80055d0 { ui->x=0; - 80052b8: 68fb ldr r3, [r7, #12] - 80052ba: 2200 movs r2, #0 - 80052bc: 809a strh r2, [r3, #4] + 800558c: 68fb ldr r3, [r7, #12] + 800558e: 2200 movs r2, #0 + 8005590: 809a strh r2, [r3, #4] ui->y=0; - 80052be: 68fb ldr r3, [r7, #12] - 80052c0: 2200 movs r2, #0 - 80052c2: 80da strh r2, [r3, #6] + 8005592: 68fb ldr r3, [r7, #12] + 8005594: 2200 movs r2, #0 + 8005596: 80da strh r2, [r3, #6] ui->high=240; - 80052c4: 68fb ldr r3, [r7, #12] - 80052c6: 22f0 movs r2, #240 ; 0xf0 - 80052c8: 815a strh r2, [r3, #10] + 8005598: 68fb ldr r3, [r7, #12] + 800559a: 22f0 movs r2, #240 ; 0xf0 + 800559c: 815a strh r2, [r3, #10] ui->width=320; - 80052ca: 68fb ldr r3, [r7, #12] - 80052cc: f44f 72a0 mov.w r2, #320 ; 0x140 - 80052d0: 811a strh r2, [r3, #8] + 800559e: 68fb ldr r3, [r7, #12] + 80055a0: f44f 72a0 mov.w r2, #320 ; 0x140 + 80055a4: 811a strh r2, [r3, #8] ui->background=background; - 80052d2: 68fb ldr r3, [r7, #12] - 80052d4: 687a ldr r2, [r7, #4] - 80052d6: 601a str r2, [r3, #0] + 80055a6: 68fb ldr r3, [r7, #12] + 80055a8: 687a ldr r2, [r7, #4] + 80055aa: 601a str r2, [r3, #0] ui->windows=NULL; - 80052d8: 68fb ldr r3, [r7, #12] - 80052da: 2200 movs r2, #0 - 80052dc: 60da str r2, [r3, #12] + 80055ac: 68fb ldr r3, [r7, #12] + 80055ae: 2200 movs r2, #0 + 80055b0: 60da str r2, [r3, #12] ui->last_windows=NULL; - 80052de: 68fb ldr r3, [r7, #12] - 80052e0: 2200 movs r2, #0 - 80052e2: 611a str r2, [r3, #16] + 80055b2: 68fb ldr r3, [r7, #12] + 80055b4: 2200 movs r2, #0 + 80055b6: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; - 80052e4: 68fa ldr r2, [r7, #12] - 80052e6: f892 3020 ldrb.w r3, [r2, #32] - 80052ea: f043 0304 orr.w r3, r3, #4 - 80052ee: f882 3020 strb.w r3, [r2, #32] + 80055b8: 68fa ldr r2, [r7, #12] + 80055ba: f892 3020 ldrb.w r3, [r2, #32] + 80055be: f043 0304 orr.w r3, r3, #4 + 80055c2: f882 3020 strb.w r3, [r2, #32] ui->moveed_windwos=NULL; - 80052f2: 68fb ldr r3, [r7, #12] - 80052f4: 2200 movs r2, #0 - 80052f6: 615a str r2, [r3, #20] + 80055c6: 68fb ldr r3, [r7, #12] + 80055c8: 2200 movs r2, #0 + 80055ca: 615a str r2, [r3, #20] ui->touch->acc_y=0; } */ return ui; - 80052f8: 68fb ldr r3, [r7, #12] - 80052fa: e000 b.n 80052fe + 80055cc: 68fb ldr r3, [r7, #12] + 80055ce: e000 b.n 80055d2 } return NULL; - 80052fc: 2300 movs r3, #0 + 80055d0: 2300 movs r3, #0 } - 80052fe: 4618 mov r0, r3 - 8005300: 3710 adds r7, #16 - 8005302: 46bd mov sp, r7 - 8005304: bd80 pop {r7, pc} + 80055d2: 4618 mov r0, r3 + 80055d4: 3710 adds r7, #16 + 80055d6: 46bd mov sp, r7 + 80055d8: bd80 pop {r7, pc} -08005306 : +080055da : //新建一个窗口 //返回窗口的指针 //将窗口挂载到某个ui window *New_Window(UI *ui,uint16_t x,uint16_t y,uint16_t width,uint16_t high,COLOR_16 background,const char *title) { - 8005306: b580 push {r7, lr} - 8005308: b088 sub sp, #32 - 800530a: af00 add r7, sp, #0 - 800530c: 60f8 str r0, [r7, #12] - 800530e: 4608 mov r0, r1 - 8005310: 4611 mov r1, r2 - 8005312: 461a mov r2, r3 - 8005314: 4603 mov r3, r0 - 8005316: 817b strh r3, [r7, #10] - 8005318: 460b mov r3, r1 - 800531a: 813b strh r3, [r7, #8] - 800531c: 4613 mov r3, r2 - 800531e: 80fb strh r3, [r7, #6] + 80055da: b580 push {r7, lr} + 80055dc: b088 sub sp, #32 + 80055de: af00 add r7, sp, #0 + 80055e0: 60f8 str r0, [r7, #12] + 80055e2: 4608 mov r0, r1 + 80055e4: 4611 mov r1, r2 + 80055e6: 461a mov r2, r3 + 80055e8: 4603 mov r3, r0 + 80055ea: 817b strh r3, [r7, #10] + 80055ec: 460b mov r3, r1 + 80055ee: 813b strh r3, [r7, #8] + 80055f0: 4613 mov r3, r2 + 80055f2: 80fb strh r3, [r7, #6] window *temp_window; temp_window = (window*)malloc(sizeof(window)); - 8005320: 201c movs r0, #28 - 8005322: f000 fabb bl 800589c - 8005326: 4603 mov r3, r0 - 8005328: 617b str r3, [r7, #20] + 80055f4: 201c movs r0, #28 + 80055f6: f000 fabb bl 8005b70 + 80055fa: 4603 mov r3, r0 + 80055fc: 617b str r3, [r7, #20] if(temp_window!=NULL) - 800532a: 697b ldr r3, [r7, #20] - 800532c: 2b00 cmp r3, #0 - 800532e: d022 beq.n 8005376 + 80055fe: 697b ldr r3, [r7, #20] + 8005600: 2b00 cmp r3, #0 + 8005602: d022 beq.n 800564a { temp_window->background=background; - 8005330: 697b ldr r3, [r7, #20] - 8005332: 6afa ldr r2, [r7, #44] ; 0x2c - 8005334: 609a str r2, [r3, #8] + 8005604: 697b ldr r3, [r7, #20] + 8005606: 6afa ldr r2, [r7, #44] ; 0x2c + 8005608: 609a str r2, [r3, #8] temp_window->high=high; - 8005336: 697b ldr r3, [r7, #20] - 8005338: 8d3a ldrh r2, [r7, #40] ; 0x28 - 800533a: 80da strh r2, [r3, #6] + 800560a: 697b ldr r3, [r7, #20] + 800560c: 8d3a ldrh r2, [r7, #40] ; 0x28 + 800560e: 80da strh r2, [r3, #6] temp_window->width=width; - 800533c: 697b ldr r3, [r7, #20] - 800533e: 88fa ldrh r2, [r7, #6] - 8005340: 809a strh r2, [r3, #4] + 8005610: 697b ldr r3, [r7, #20] + 8005612: 88fa ldrh r2, [r7, #6] + 8005614: 809a strh r2, [r3, #4] temp_window->x=x; - 8005342: 697b ldr r3, [r7, #20] - 8005344: 897a ldrh r2, [r7, #10] - 8005346: 801a strh r2, [r3, #0] + 8005616: 697b ldr r3, [r7, #20] + 8005618: 897a ldrh r2, [r7, #10] + 800561a: 801a strh r2, [r3, #0] temp_window->y=y; - 8005348: 697b ldr r3, [r7, #20] - 800534a: 893a ldrh r2, [r7, #8] - 800534c: 805a strh r2, [r3, #2] + 800561c: 697b ldr r3, [r7, #20] + 800561e: 893a ldrh r2, [r7, #8] + 8005620: 805a strh r2, [r3, #2] for(int a=0;a<16;a++) - 800534e: 2300 movs r3, #0 - 8005350: 61fb str r3, [r7, #28] - 8005352: e00c b.n 800536e + 8005622: 2300 movs r3, #0 + 8005624: 61fb str r3, [r7, #28] + 8005626: e00c b.n 8005642 { temp_window->title[a]=title[a]; - 8005354: 69fb ldr r3, [r7, #28] - 8005356: 6b3a ldr r2, [r7, #48] ; 0x30 - 8005358: 4413 add r3, r2 - 800535a: 7819 ldrb r1, [r3, #0] - 800535c: 697a ldr r2, [r7, #20] - 800535e: 69fb ldr r3, [r7, #28] - 8005360: 4413 add r3, r2 - 8005362: 330c adds r3, #12 - 8005364: 460a mov r2, r1 - 8005366: 701a strb r2, [r3, #0] + 8005628: 69fb ldr r3, [r7, #28] + 800562a: 6b3a ldr r2, [r7, #48] ; 0x30 + 800562c: 4413 add r3, r2 + 800562e: 7819 ldrb r1, [r3, #0] + 8005630: 697a ldr r2, [r7, #20] + 8005632: 69fb ldr r3, [r7, #28] + 8005634: 4413 add r3, r2 + 8005636: 330c adds r3, #12 + 8005638: 460a mov r2, r1 + 800563a: 701a strb r2, [r3, #0] for(int a=0;a<16;a++) - 8005368: 69fb ldr r3, [r7, #28] - 800536a: 3301 adds r3, #1 - 800536c: 61fb str r3, [r7, #28] - 800536e: 69fb ldr r3, [r7, #28] - 8005370: 2b0f cmp r3, #15 - 8005372: ddef ble.n 8005354 - 8005374: e001 b.n 800537a + 800563c: 69fb ldr r3, [r7, #28] + 800563e: 3301 adds r3, #1 + 8005640: 61fb str r3, [r7, #28] + 8005642: 69fb ldr r3, [r7, #28] + 8005644: 2b0f cmp r3, #15 + 8005646: ddef ble.n 8005628 + 8005648: e001 b.n 800564e } }else{return NULL;} - 8005376: 2300 movs r3, #0 - 8005378: e02a b.n 80053d0 + 800564a: 2300 movs r3, #0 + 800564c: e02a b.n 80056a4 windows_stack *temp_windows_stack; temp_windows_stack=ui->last_windows; - 800537a: 68fb ldr r3, [r7, #12] - 800537c: 691b ldr r3, [r3, #16] - 800537e: 61bb str r3, [r7, #24] + 800564e: 68fb ldr r3, [r7, #12] + 8005650: 691b ldr r3, [r3, #16] + 8005652: 61bb str r3, [r7, #24] if(temp_windows_stack==NULL) - 8005380: 69bb ldr r3, [r7, #24] - 8005382: 2b00 cmp r3, #0 - 8005384: d10b bne.n 800539e + 8005654: 69bb ldr r3, [r7, #24] + 8005656: 2b00 cmp r3, #0 + 8005658: d10b bne.n 8005672 { temp_windows_stack=(windows_stack*)malloc(sizeof(windows_stack)); - 8005386: 200c movs r0, #12 - 8005388: f000 fa88 bl 800589c - 800538c: 4603 mov r3, r0 - 800538e: 61bb str r3, [r7, #24] + 800565a: 200c movs r0, #12 + 800565c: f000 fa88 bl 8005b70 + 8005660: 4603 mov r3, r0 + 8005662: 61bb str r3, [r7, #24] temp_windows_stack->up=NULL; - 8005390: 69bb ldr r3, [r7, #24] - 8005392: 2200 movs r2, #0 - 8005394: 601a str r2, [r3, #0] + 8005664: 69bb ldr r3, [r7, #24] + 8005666: 2200 movs r2, #0 + 8005668: 601a str r2, [r3, #0] ui->windows=temp_windows_stack; - 8005396: 68fb ldr r3, [r7, #12] - 8005398: 69ba ldr r2, [r7, #24] - 800539a: 60da str r2, [r3, #12] - 800539c: e00e b.n 80053bc + 800566a: 68fb ldr r3, [r7, #12] + 800566c: 69ba ldr r2, [r7, #24] + 800566e: 60da str r2, [r3, #12] + 8005670: e00e b.n 8005690 while(temp_windows_stack->next!=NULL) { temp_windows_stack=temp_windows_stack->next; } */ windows_stack *up=temp_windows_stack;//备份当前对象指针 - 800539e: 69bb ldr r3, [r7, #24] - 80053a0: 613b str r3, [r7, #16] + 8005672: 69bb ldr r3, [r7, #24] + 8005674: 613b str r3, [r7, #16] temp_windows_stack->next=(windows_stack*)malloc(sizeof(windows_stack)); - 80053a2: 200c movs r0, #12 - 80053a4: f000 fa7a bl 800589c - 80053a8: 4603 mov r3, r0 - 80053aa: 461a mov r2, r3 - 80053ac: 69bb ldr r3, [r7, #24] - 80053ae: 609a str r2, [r3, #8] + 8005676: 200c movs r0, #12 + 8005678: f000 fa7a bl 8005b70 + 800567c: 4603 mov r3, r0 + 800567e: 461a mov r2, r3 + 8005680: 69bb ldr r3, [r7, #24] + 8005682: 609a str r2, [r3, #8] temp_windows_stack=temp_windows_stack->next; - 80053b0: 69bb ldr r3, [r7, #24] - 80053b2: 689b ldr r3, [r3, #8] - 80053b4: 61bb str r3, [r7, #24] + 8005684: 69bb ldr r3, [r7, #24] + 8005686: 689b ldr r3, [r3, #8] + 8005688: 61bb str r3, [r7, #24] temp_windows_stack->up=up; - 80053b6: 69bb ldr r3, [r7, #24] - 80053b8: 693a ldr r2, [r7, #16] - 80053ba: 601a str r2, [r3, #0] + 800568a: 69bb ldr r3, [r7, #24] + 800568c: 693a ldr r2, [r7, #16] + 800568e: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; - 80053bc: 69bb ldr r3, [r7, #24] - 80053be: 2200 movs r2, #0 - 80053c0: 609a str r2, [r3, #8] + 8005690: 69bb ldr r3, [r7, #24] + 8005692: 2200 movs r2, #0 + 8005694: 609a str r2, [r3, #8] temp_windows_stack->window=temp_window; - 80053c2: 69bb ldr r3, [r7, #24] - 80053c4: 697a ldr r2, [r7, #20] - 80053c6: 605a str r2, [r3, #4] + 8005696: 69bb ldr r3, [r7, #24] + 8005698: 697a ldr r2, [r7, #20] + 800569a: 605a str r2, [r3, #4] ui->last_windows=temp_windows_stack; - 80053c8: 68fb ldr r3, [r7, #12] - 80053ca: 69ba ldr r2, [r7, #24] - 80053cc: 611a str r2, [r3, #16] + 800569c: 68fb ldr r3, [r7, #12] + 800569e: 69ba ldr r2, [r7, #24] + 80056a0: 611a str r2, [r3, #16] return temp_window; - 80053ce: 697b ldr r3, [r7, #20] + 80056a2: 697b ldr r3, [r7, #20] } - 80053d0: 4618 mov r0, r3 - 80053d2: 3720 adds r7, #32 - 80053d4: 46bd mov sp, r7 - 80053d6: bd80 pop {r7, pc} + 80056a4: 4618 mov r0, r3 + 80056a6: 3720 adds r7, #32 + 80056a8: 46bd mov sp, r7 + 80056aa: bd80 pop {r7, pc} -080053d8 : +080056ac : temp_window->y=temp_window->y+acc_y; } //显示一个窗口 void Refresh_Window(UI *ui,window *temp_window) { - 80053d8: b580 push {r7, lr} - 80053da: b088 sub sp, #32 - 80053dc: af02 add r7, sp, #8 - 80053de: 6078 str r0, [r7, #4] - 80053e0: 6039 str r1, [r7, #0] + 80056ac: b580 push {r7, lr} + 80056ae: b088 sub sp, #32 + 80056b0: af02 add r7, sp, #8 + 80056b2: 6078 str r0, [r7, #4] + 80056b4: 6039 str r1, [r7, #0] //开始绘制窗口//填充窗口背景 int x,y; char z; for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 80053e2: 2300 movs r3, #0 - 80053e4: 82bb strh r3, [r7, #20] - 80053e6: e063 b.n 80054b0 + 80056b6: 2300 movs r3, #0 + 80056b8: 82bb strh r3, [r7, #20] + 80056ba: e063 b.n 8005784 { z=1; - 80053e8: 2301 movs r3, #1 - 80053ea: 75fb strb r3, [r7, #23] + 80056bc: 2301 movs r3, #1 + 80056be: 75fb strb r3, [r7, #23] for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 80053ec: 2300 movs r3, #0 - 80053ee: 827b strh r3, [r7, #18] - 80053f0: e056 b.n 80054a0 + 80056c0: 2300 movs r3, #0 + 80056c2: 827b strh r3, [r7, #18] + 80056c4: e056 b.n 8005774 { x=temp_window->x+temp_i; - 80053f2: 683b ldr r3, [r7, #0] - 80053f4: 881b ldrh r3, [r3, #0] - 80053f6: 461a mov r2, r3 - 80053f8: 8a7b ldrh r3, [r7, #18] - 80053fa: 4413 add r3, r2 - 80053fc: 60fb str r3, [r7, #12] + 80056c6: 683b ldr r3, [r7, #0] + 80056c8: 881b ldrh r3, [r3, #0] + 80056ca: 461a mov r2, r3 + 80056cc: 8a7b ldrh r3, [r7, #18] + 80056ce: 4413 add r3, r2 + 80056d0: 60fb str r3, [r7, #12] y=temp_window->y+temp_y; - 80053fe: 683b ldr r3, [r7, #0] - 8005400: 885b ldrh r3, [r3, #2] - 8005402: 461a mov r2, r3 - 8005404: 8abb ldrh r3, [r7, #20] - 8005406: 4413 add r3, r2 - 8005408: 60bb str r3, [r7, #8] + 80056d2: 683b ldr r3, [r7, #0] + 80056d4: 885b ldrh r3, [r3, #2] + 80056d6: 461a mov r2, r3 + 80056d8: 8abb ldrh r3, [r7, #20] + 80056da: 4413 add r3, r2 + 80056dc: 60bb str r3, [r7, #8] if(y>=ui->y&&z==1) - 800540a: 687b ldr r3, [r7, #4] - 800540c: 88db ldrh r3, [r3, #6] - 800540e: 461a mov r2, r3 - 8005410: 68bb ldr r3, [r7, #8] - 8005412: 4293 cmp r3, r2 - 8005414: db0c blt.n 8005430 - 8005416: 7dfb ldrb r3, [r7, #23] - 8005418: 2b01 cmp r3, #1 - 800541a: d109 bne.n 8005430 + 80056de: 687b ldr r3, [r7, #4] + 80056e0: 88db ldrh r3, [r3, #6] + 80056e2: 461a mov r2, r3 + 80056e4: 68bb ldr r3, [r7, #8] + 80056e6: 4293 cmp r3, r2 + 80056e8: db0c blt.n 8005704 + 80056ea: 7dfb ldrb r3, [r7, #23] + 80056ec: 2b01 cmp r3, #1 + 80056ee: d109 bne.n 8005704 { Inteface_SetCursor(x,y); - 800541c: 68fb ldr r3, [r7, #12] - 800541e: b29b uxth r3, r3 - 8005420: 68ba ldr r2, [r7, #8] - 8005422: b292 uxth r2, r2 - 8005424: 4611 mov r1, r2 - 8005426: 4618 mov r0, r3 - 8005428: f7ff ff10 bl 800524c + 80056f0: 68fb ldr r3, [r7, #12] + 80056f2: b29b uxth r3, r3 + 80056f4: 68ba ldr r2, [r7, #8] + 80056f6: b292 uxth r2, r2 + 80056f8: 4611 mov r1, r2 + 80056fa: 4618 mov r0, r3 + 80056fc: f7ff ff10 bl 8005520 z=0; - 800542c: 2300 movs r3, #0 - 800542e: 75fb strb r3, [r7, #23] + 8005700: 2300 movs r3, #0 + 8005702: 75fb strb r3, [r7, #23] } if(x>=ui->x) - 8005430: 687b ldr r3, [r7, #4] - 8005432: 889b ldrh r3, [r3, #4] - 8005434: 461a mov r2, r3 - 8005436: 68fb ldr r3, [r7, #12] - 8005438: 4293 cmp r3, r2 - 800543a: db2e blt.n 800549a + 8005704: 687b ldr r3, [r7, #4] + 8005706: 889b ldrh r3, [r3, #4] + 8005708: 461a mov r2, r3 + 800570a: 68fb ldr r3, [r7, #12] + 800570c: 4293 cmp r3, r2 + 800570e: db2e blt.n 800576e { if(temp_y<16) - 800543c: 8abb ldrh r3, [r7, #20] - 800543e: 2b0f cmp r3, #15 - 8005440: d80f bhi.n 8005462 + 8005710: 8abb ldrh r3, [r7, #20] + 8005712: 2b0f cmp r3, #15 + 8005714: d80f bhi.n 8005736 { if(temp_i>temp_window->width-16) - 8005442: 683b ldr r3, [r7, #0] - 8005444: 889b ldrh r3, [r3, #4] - 8005446: f1a3 020f sub.w r2, r3, #15 - 800544a: 8a7b ldrh r3, [r7, #18] - 800544c: 429a cmp r2, r3 - 800544e: dc04 bgt.n 800545a + 8005716: 683b ldr r3, [r7, #0] + 8005718: 889b ldrh r3, [r3, #4] + 800571a: f1a3 020f sub.w r2, r3, #15 + 800571e: 8a7b ldrh r3, [r7, #18] + 8005720: 429a cmp r2, r3 + 8005722: dc04 bgt.n 800572e { Inteface_SetColor(RED); - 8005450: f44f 4078 mov.w r0, #63488 ; 0xf800 - 8005454: f7ff ff14 bl 8005280 - 8005458: e01f b.n 800549a + 8005724: f44f 4078 mov.w r0, #63488 ; 0xf800 + 8005728: f7ff ff14 bl 8005554 + 800572c: e01f b.n 800576e }else { Inteface_SetColor(BLUE); - 800545a: 201f movs r0, #31 - 800545c: f7ff ff10 bl 8005280 - 8005460: e01b b.n 800549a + 800572e: 201f movs r0, #31 + 8005730: f7ff ff10 bl 8005554 + 8005734: e01b b.n 800576e } }else { if(temp_i==0||temp_y==0||temp_i==temp_window->width-1||temp_y==temp_window->high-1) - 8005462: 8a7b ldrh r3, [r7, #18] - 8005464: 2b00 cmp r3, #0 - 8005466: d00e beq.n 8005486 - 8005468: 8abb ldrh r3, [r7, #20] - 800546a: 2b00 cmp r3, #0 - 800546c: d00b beq.n 8005486 - 800546e: 8a7a ldrh r2, [r7, #18] - 8005470: 683b ldr r3, [r7, #0] - 8005472: 889b ldrh r3, [r3, #4] - 8005474: 3b01 subs r3, #1 - 8005476: 429a cmp r2, r3 - 8005478: d005 beq.n 8005486 - 800547a: 8aba ldrh r2, [r7, #20] - 800547c: 683b ldr r3, [r7, #0] - 800547e: 88db ldrh r3, [r3, #6] - 8005480: 3b01 subs r3, #1 - 8005482: 429a cmp r2, r3 - 8005484: d103 bne.n 800548e + 8005736: 8a7b ldrh r3, [r7, #18] + 8005738: 2b00 cmp r3, #0 + 800573a: d00e beq.n 800575a + 800573c: 8abb ldrh r3, [r7, #20] + 800573e: 2b00 cmp r3, #0 + 8005740: d00b beq.n 800575a + 8005742: 8a7a ldrh r2, [r7, #18] + 8005744: 683b ldr r3, [r7, #0] + 8005746: 889b ldrh r3, [r3, #4] + 8005748: 3b01 subs r3, #1 + 800574a: 429a cmp r2, r3 + 800574c: d005 beq.n 800575a + 800574e: 8aba ldrh r2, [r7, #20] + 8005750: 683b ldr r3, [r7, #0] + 8005752: 88db ldrh r3, [r3, #6] + 8005754: 3b01 subs r3, #1 + 8005756: 429a cmp r2, r3 + 8005758: d103 bne.n 8005762 { Inteface_SetColor(BLUE); - 8005486: 201f movs r0, #31 - 8005488: f7ff fefa bl 8005280 - 800548c: e005 b.n 800549a + 800575a: 201f movs r0, #31 + 800575c: f7ff fefa bl 8005554 + 8005760: e005 b.n 800576e }else { Inteface_SetColor(temp_window->background); - 800548e: 683b ldr r3, [r7, #0] - 8005490: 689b ldr r3, [r3, #8] - 8005492: b29b uxth r3, r3 - 8005494: 4618 mov r0, r3 - 8005496: f7ff fef3 bl 8005280 + 8005762: 683b ldr r3, [r7, #0] + 8005764: 689b ldr r3, [r3, #8] + 8005766: b29b uxth r3, r3 + 8005768: 4618 mov r0, r3 + 800576a: f7ff fef3 bl 8005554 for(uint16_t temp_i=0;temp_iwidth;temp_i++) - 800549a: 8a7b ldrh r3, [r7, #18] - 800549c: 3301 adds r3, #1 - 800549e: 827b strh r3, [r7, #18] - 80054a0: 683b ldr r3, [r7, #0] - 80054a2: 889b ldrh r3, [r3, #4] - 80054a4: 8a7a ldrh r2, [r7, #18] - 80054a6: 429a cmp r2, r3 - 80054a8: d3a3 bcc.n 80053f2 + 800576e: 8a7b ldrh r3, [r7, #18] + 8005770: 3301 adds r3, #1 + 8005772: 827b strh r3, [r7, #18] + 8005774: 683b ldr r3, [r7, #0] + 8005776: 889b ldrh r3, [r3, #4] + 8005778: 8a7a ldrh r2, [r7, #18] + 800577a: 429a cmp r2, r3 + 800577c: d3a3 bcc.n 80056c6 for(uint16_t temp_y=0;temp_yhigh;temp_y++) - 80054aa: 8abb ldrh r3, [r7, #20] - 80054ac: 3301 adds r3, #1 - 80054ae: 82bb strh r3, [r7, #20] - 80054b0: 683b ldr r3, [r7, #0] - 80054b2: 88db ldrh r3, [r3, #6] - 80054b4: 8aba ldrh r2, [r7, #20] - 80054b6: 429a cmp r2, r3 - 80054b8: d396 bcc.n 80053e8 + 800577e: 8abb ldrh r3, [r7, #20] + 8005780: 3301 adds r3, #1 + 8005782: 82bb strh r3, [r7, #20] + 8005784: 683b ldr r3, [r7, #0] + 8005786: 88db ldrh r3, [r3, #6] + 8005788: 8aba ldrh r2, [r7, #20] + 800578a: 429a cmp r2, r3 + 800578c: d396 bcc.n 80056bc } } */ //显示title LCD_ShowString(temp_window->x,temp_window->y,&temp_window->title,16,WHITE,WHITE); - 80054ba: 683b ldr r3, [r7, #0] - 80054bc: 8818 ldrh r0, [r3, #0] - 80054be: 683b ldr r3, [r7, #0] - 80054c0: 8859 ldrh r1, [r3, #2] - 80054c2: 683b ldr r3, [r7, #0] - 80054c4: f103 020c add.w r2, r3, #12 - 80054c8: f64f 73ff movw r3, #65535 ; 0xffff - 80054cc: 9301 str r3, [sp, #4] - 80054ce: f64f 73ff movw r3, #65535 ; 0xffff - 80054d2: 9300 str r3, [sp, #0] - 80054d4: 2310 movs r3, #16 - 80054d6: f7ff f805 bl 80044e4 + 800578e: 683b ldr r3, [r7, #0] + 8005790: 8818 ldrh r0, [r3, #0] + 8005792: 683b ldr r3, [r7, #0] + 8005794: 8859 ldrh r1, [r3, #2] + 8005796: 683b ldr r3, [r7, #0] + 8005798: f103 020c add.w r2, r3, #12 + 800579c: f64f 73ff movw r3, #65535 ; 0xffff + 80057a0: 9301 str r3, [sp, #4] + 80057a2: f64f 73ff movw r3, #65535 ; 0xffff + 80057a6: 9300 str r3, [sp, #0] + 80057a8: 2310 movs r3, #16 + 80057aa: f7fe feb7 bl 800451c } - 80054da: bf00 nop - 80054dc: 3718 adds r7, #24 - 80054de: 46bd mov sp, r7 - 80054e0: bd80 pop {r7, pc} + 80057ae: bf00 nop + 80057b0: 3718 adds r7, #24 + 80057b2: 46bd mov sp, r7 + 80057b4: bd80 pop {r7, pc} -080054e2 : +080057b6 : * 很可惜 辛辛苦苦写的代码要被放弃 * 用算法实现遮挡关系计算真挺蠢 * * */ void Refresh_UI(UI *ui) { - 80054e2: b580 push {r7, lr} - 80054e4: b086 sub sp, #24 - 80054e6: af00 add r7, sp, #0 - 80054e8: 6078 str r0, [r7, #4] + 80057b6: b580 push {r7, lr} + 80057b8: b086 sub sp, #24 + 80057ba: af00 add r7, sp, #0 + 80057bc: 6078 str r0, [r7, #4] int flag=0; - 80054ea: 2300 movs r3, #0 - 80054ec: 617b str r3, [r7, #20] + 80057be: 2300 movs r3, #0 + 80057c0: 617b str r3, [r7, #20] uint16_t dot_y=0,dot_x=0; - 80054ee: 2300 movs r3, #0 - 80054f0: 827b strh r3, [r7, #18] - 80054f2: 2300 movs r3, #0 - 80054f4: 823b strh r3, [r7, #16] + 80057c2: 2300 movs r3, #0 + 80057c4: 827b strh r3, [r7, #18] + 80057c6: 2300 movs r3, #0 + 80057c8: 823b strh r3, [r7, #16] //画背景 for(dot_y=ui->y;dot_yhigh;dot_y++) - 80054f6: 687b ldr r3, [r7, #4] - 80054f8: 88db ldrh r3, [r3, #6] - 80054fa: 827b strh r3, [r7, #18] - 80054fc: e01a b.n 8005534 + 80057ca: 687b ldr r3, [r7, #4] + 80057cc: 88db ldrh r3, [r3, #6] + 80057ce: 827b strh r3, [r7, #18] + 80057d0: e01a b.n 8005808 { Inteface_SetCursor(dot_x,dot_y); - 80054fe: 8a7a ldrh r2, [r7, #18] - 8005500: 8a3b ldrh r3, [r7, #16] - 8005502: 4611 mov r1, r2 - 8005504: 4618 mov r0, r3 - 8005506: f7ff fea1 bl 800524c + 80057d2: 8a7a ldrh r2, [r7, #18] + 80057d4: 8a3b ldrh r3, [r7, #16] + 80057d6: 4611 mov r1, r2 + 80057d8: 4618 mov r0, r3 + 80057da: f7ff fea1 bl 8005520 for(dot_x=ui->x;dot_xwidth;dot_x++) - 800550a: 687b ldr r3, [r7, #4] - 800550c: 889b ldrh r3, [r3, #4] - 800550e: 823b strh r3, [r7, #16] - 8005510: e008 b.n 8005524 + 80057de: 687b ldr r3, [r7, #4] + 80057e0: 889b ldrh r3, [r3, #4] + 80057e2: 823b strh r3, [r7, #16] + 80057e4: e008 b.n 80057f8 { Inteface_SetColor(ui->background); - 8005512: 687b ldr r3, [r7, #4] - 8005514: 681b ldr r3, [r3, #0] - 8005516: b29b uxth r3, r3 - 8005518: 4618 mov r0, r3 - 800551a: f7ff feb1 bl 8005280 + 80057e6: 687b ldr r3, [r7, #4] + 80057e8: 681b ldr r3, [r3, #0] + 80057ea: b29b uxth r3, r3 + 80057ec: 4618 mov r0, r3 + 80057ee: f7ff feb1 bl 8005554 for(dot_x=ui->x;dot_xwidth;dot_x++) - 800551e: 8a3b ldrh r3, [r7, #16] - 8005520: 3301 adds r3, #1 - 8005522: 823b strh r3, [r7, #16] - 8005524: 687b ldr r3, [r7, #4] - 8005526: 891b ldrh r3, [r3, #8] - 8005528: 8a3a ldrh r2, [r7, #16] - 800552a: 429a cmp r2, r3 - 800552c: d3f1 bcc.n 8005512 + 80057f2: 8a3b ldrh r3, [r7, #16] + 80057f4: 3301 adds r3, #1 + 80057f6: 823b strh r3, [r7, #16] + 80057f8: 687b ldr r3, [r7, #4] + 80057fa: 891b ldrh r3, [r3, #8] + 80057fc: 8a3a ldrh r2, [r7, #16] + 80057fe: 429a cmp r2, r3 + 8005800: d3f1 bcc.n 80057e6 for(dot_y=ui->y;dot_yhigh;dot_y++) - 800552e: 8a7b ldrh r3, [r7, #18] - 8005530: 3301 adds r3, #1 - 8005532: 827b strh r3, [r7, #18] - 8005534: 687b ldr r3, [r7, #4] - 8005536: 895b ldrh r3, [r3, #10] - 8005538: 8a7a ldrh r2, [r7, #18] - 800553a: 429a cmp r2, r3 - 800553c: d3df bcc.n 80054fe + 8005802: 8a7b ldrh r3, [r7, #18] + 8005804: 3301 adds r3, #1 + 8005806: 827b strh r3, [r7, #18] + 8005808: 687b ldr r3, [r7, #4] + 800580a: 895b ldrh r3, [r3, #10] + 800580c: 8a7a ldrh r2, [r7, #18] + 800580e: 429a cmp r2, r3 + 8005810: d3df bcc.n 80057d2 } } windows_stack *temp_windows_stack,*temp_windows_stack2; temp_windows_stack=ui->windows; - 800553e: 687b ldr r3, [r7, #4] - 8005540: 68db ldr r3, [r3, #12] - 8005542: 60fb str r3, [r7, #12] + 8005812: 687b ldr r3, [r7, #4] + 8005814: 68db ldr r3, [r3, #12] + 8005816: 60fb str r3, [r7, #12] do { if(temp_windows_stack!=NULL) - 8005544: 68fb ldr r3, [r7, #12] - 8005546: 2b00 cmp r3, #0 - 8005548: d00b beq.n 8005562 + 8005818: 68fb ldr r3, [r7, #12] + 800581a: 2b00 cmp r3, #0 + 800581c: d00b beq.n 8005836 { flag=1; - 800554a: 2301 movs r3, #1 - 800554c: 617b str r3, [r7, #20] + 800581e: 2301 movs r3, #1 + 8005820: 617b str r3, [r7, #20] Refresh_Window(ui,temp_windows_stack->window); - 800554e: 68fb ldr r3, [r7, #12] - 8005550: 685b ldr r3, [r3, #4] - 8005552: 4619 mov r1, r3 - 8005554: 6878 ldr r0, [r7, #4] - 8005556: f7ff ff3f bl 80053d8 + 8005822: 68fb ldr r3, [r7, #12] + 8005824: 685b ldr r3, [r3, #4] + 8005826: 4619 mov r1, r3 + 8005828: 6878 ldr r0, [r7, #4] + 800582a: f7ff ff3f bl 80056ac //绘制下一个窗口 temp_windows_stack=temp_windows_stack->next; - 800555a: 68fb ldr r3, [r7, #12] - 800555c: 689b ldr r3, [r3, #8] - 800555e: 60fb str r3, [r7, #12] - 8005560: e001 b.n 8005566 + 800582e: 68fb ldr r3, [r7, #12] + 8005830: 689b ldr r3, [r3, #8] + 8005832: 60fb str r3, [r7, #12] + 8005834: e001 b.n 800583a }else { flag=0; - 8005562: 2300 movs r3, #0 - 8005564: 617b str r3, [r7, #20] + 8005836: 2300 movs r3, #0 + 8005838: 617b str r3, [r7, #20] } }while(flag); - 8005566: 697b ldr r3, [r7, #20] - 8005568: 2b00 cmp r3, #0 - 800556a: d1eb bne.n 8005544 + 800583a: 697b ldr r3, [r7, #20] + 800583c: 2b00 cmp r3, #0 + 800583e: d1eb bne.n 8005818 } } */ } - 800556c: bf00 nop - 800556e: bf00 nop - 8005570: 3718 adds r7, #24 - 8005572: 46bd mov sp, r7 - 8005574: bd80 pop {r7, pc} + 8005840: bf00 nop + 8005842: bf00 nop + 8005844: 3718 adds r7, #24 + 8005846: 46bd mov sp, r7 + 8005848: bd80 pop {r7, pc} -08005576 : +0800584a : #define BODY 1 #define BAR 2 #define CLOSE 3 uint8_t Chack(window *this_window,int x,int y) { - 8005576: b480 push {r7} - 8005578: b087 sub sp, #28 - 800557a: af00 add r7, sp, #0 - 800557c: 60f8 str r0, [r7, #12] - 800557e: 60b9 str r1, [r7, #8] - 8005580: 607a str r2, [r7, #4] + 800584a: b480 push {r7} + 800584c: b087 sub sp, #28 + 800584e: af00 add r7, sp, #0 + 8005850: 60f8 str r0, [r7, #12] + 8005852: 60b9 str r1, [r7, #8] + 8005854: 607a str r2, [r7, #4] int a=0; - 8005582: 2300 movs r3, #0 - 8005584: 617b str r3, [r7, #20] + 8005856: 2300 movs r3, #0 + 8005858: 617b str r3, [r7, #20] if(((x>=this_window->x)&&(x<(this_window->x+this_window->width)))&&((y>=this_window->y+16)&&(y<(this_window->y+this_window->high)))) - 8005586: 68fb ldr r3, [r7, #12] - 8005588: 881b ldrh r3, [r3, #0] - 800558a: 461a mov r2, r3 - 800558c: 68bb ldr r3, [r7, #8] - 800558e: 4293 cmp r3, r2 - 8005590: db19 blt.n 80055c6 - 8005592: 68fb ldr r3, [r7, #12] - 8005594: 881b ldrh r3, [r3, #0] - 8005596: 461a mov r2, r3 - 8005598: 68fb ldr r3, [r7, #12] - 800559a: 889b ldrh r3, [r3, #4] - 800559c: 4413 add r3, r2 - 800559e: 68ba ldr r2, [r7, #8] - 80055a0: 429a cmp r2, r3 - 80055a2: da10 bge.n 80055c6 - 80055a4: 68fb ldr r3, [r7, #12] - 80055a6: 885b ldrh r3, [r3, #2] - 80055a8: 330f adds r3, #15 - 80055aa: 687a ldr r2, [r7, #4] - 80055ac: 429a cmp r2, r3 - 80055ae: dd0a ble.n 80055c6 - 80055b0: 68fb ldr r3, [r7, #12] - 80055b2: 885b ldrh r3, [r3, #2] - 80055b4: 461a mov r2, r3 - 80055b6: 68fb ldr r3, [r7, #12] - 80055b8: 88db ldrh r3, [r3, #6] - 80055ba: 4413 add r3, r2 - 80055bc: 687a ldr r2, [r7, #4] - 80055be: 429a cmp r2, r3 - 80055c0: da01 bge.n 80055c6 + 800585a: 68fb ldr r3, [r7, #12] + 800585c: 881b ldrh r3, [r3, #0] + 800585e: 461a mov r2, r3 + 8005860: 68bb ldr r3, [r7, #8] + 8005862: 4293 cmp r3, r2 + 8005864: db19 blt.n 800589a + 8005866: 68fb ldr r3, [r7, #12] + 8005868: 881b ldrh r3, [r3, #0] + 800586a: 461a mov r2, r3 + 800586c: 68fb ldr r3, [r7, #12] + 800586e: 889b ldrh r3, [r3, #4] + 8005870: 4413 add r3, r2 + 8005872: 68ba ldr r2, [r7, #8] + 8005874: 429a cmp r2, r3 + 8005876: da10 bge.n 800589a + 8005878: 68fb ldr r3, [r7, #12] + 800587a: 885b ldrh r3, [r3, #2] + 800587c: 330f adds r3, #15 + 800587e: 687a ldr r2, [r7, #4] + 8005880: 429a cmp r2, r3 + 8005882: dd0a ble.n 800589a + 8005884: 68fb ldr r3, [r7, #12] + 8005886: 885b ldrh r3, [r3, #2] + 8005888: 461a mov r2, r3 + 800588a: 68fb ldr r3, [r7, #12] + 800588c: 88db ldrh r3, [r3, #6] + 800588e: 4413 add r3, r2 + 8005890: 687a ldr r2, [r7, #4] + 8005892: 429a cmp r2, r3 + 8005894: da01 bge.n 800589a { a=1; - 80055c2: 2301 movs r3, #1 - 80055c4: 617b str r3, [r7, #20] + 8005896: 2301 movs r3, #1 + 8005898: 617b str r3, [r7, #20] } if(((x>=this_window->x)&&(x<(this_window->x+this_window->width-16)))&&((y>=this_window->y)&&(y<(this_window->y+16)))) - 80055c6: 68fb ldr r3, [r7, #12] - 80055c8: 881b ldrh r3, [r3, #0] - 80055ca: 461a mov r2, r3 - 80055cc: 68bb ldr r3, [r7, #8] - 80055ce: 4293 cmp r3, r2 - 80055d0: db17 blt.n 8005602 - 80055d2: 68fb ldr r3, [r7, #12] - 80055d4: 881b ldrh r3, [r3, #0] - 80055d6: 461a mov r2, r3 - 80055d8: 68fb ldr r3, [r7, #12] - 80055da: 889b ldrh r3, [r3, #4] - 80055dc: 4413 add r3, r2 - 80055de: 3b10 subs r3, #16 - 80055e0: 68ba ldr r2, [r7, #8] - 80055e2: 429a cmp r2, r3 - 80055e4: da0d bge.n 8005602 - 80055e6: 68fb ldr r3, [r7, #12] - 80055e8: 885b ldrh r3, [r3, #2] - 80055ea: 461a mov r2, r3 - 80055ec: 687b ldr r3, [r7, #4] - 80055ee: 4293 cmp r3, r2 - 80055f0: db07 blt.n 8005602 - 80055f2: 68fb ldr r3, [r7, #12] - 80055f4: 885b ldrh r3, [r3, #2] - 80055f6: 330f adds r3, #15 - 80055f8: 687a ldr r2, [r7, #4] - 80055fa: 429a cmp r2, r3 - 80055fc: dc01 bgt.n 8005602 + 800589a: 68fb ldr r3, [r7, #12] + 800589c: 881b ldrh r3, [r3, #0] + 800589e: 461a mov r2, r3 + 80058a0: 68bb ldr r3, [r7, #8] + 80058a2: 4293 cmp r3, r2 + 80058a4: db17 blt.n 80058d6 + 80058a6: 68fb ldr r3, [r7, #12] + 80058a8: 881b ldrh r3, [r3, #0] + 80058aa: 461a mov r2, r3 + 80058ac: 68fb ldr r3, [r7, #12] + 80058ae: 889b ldrh r3, [r3, #4] + 80058b0: 4413 add r3, r2 + 80058b2: 3b10 subs r3, #16 + 80058b4: 68ba ldr r2, [r7, #8] + 80058b6: 429a cmp r2, r3 + 80058b8: da0d bge.n 80058d6 + 80058ba: 68fb ldr r3, [r7, #12] + 80058bc: 885b ldrh r3, [r3, #2] + 80058be: 461a mov r2, r3 + 80058c0: 687b ldr r3, [r7, #4] + 80058c2: 4293 cmp r3, r2 + 80058c4: db07 blt.n 80058d6 + 80058c6: 68fb ldr r3, [r7, #12] + 80058c8: 885b ldrh r3, [r3, #2] + 80058ca: 330f adds r3, #15 + 80058cc: 687a ldr r2, [r7, #4] + 80058ce: 429a cmp r2, r3 + 80058d0: dc01 bgt.n 80058d6 { a=2; - 80055fe: 2302 movs r3, #2 - 8005600: 617b str r3, [r7, #20] + 80058d2: 2302 movs r3, #2 + 80058d4: 617b str r3, [r7, #20] } if((x>=(this_window->x+this_window->width-16))&&(x<(this_window->x+this_window->width))&&((y>=this_window->y)&&(y<(this_window->y+16)))) - 8005602: 68fb ldr r3, [r7, #12] - 8005604: 881b ldrh r3, [r3, #0] - 8005606: 461a mov r2, r3 - 8005608: 68fb ldr r3, [r7, #12] - 800560a: 889b ldrh r3, [r3, #4] - 800560c: 4413 add r3, r2 - 800560e: 3b10 subs r3, #16 - 8005610: 68ba ldr r2, [r7, #8] - 8005612: 429a cmp r2, r3 - 8005614: db16 blt.n 8005644 - 8005616: 68fb ldr r3, [r7, #12] - 8005618: 881b ldrh r3, [r3, #0] - 800561a: 461a mov r2, r3 - 800561c: 68fb ldr r3, [r7, #12] - 800561e: 889b ldrh r3, [r3, #4] - 8005620: 4413 add r3, r2 - 8005622: 68ba ldr r2, [r7, #8] - 8005624: 429a cmp r2, r3 - 8005626: da0d bge.n 8005644 - 8005628: 68fb ldr r3, [r7, #12] - 800562a: 885b ldrh r3, [r3, #2] - 800562c: 461a mov r2, r3 - 800562e: 687b ldr r3, [r7, #4] - 8005630: 4293 cmp r3, r2 - 8005632: db07 blt.n 8005644 - 8005634: 68fb ldr r3, [r7, #12] - 8005636: 885b ldrh r3, [r3, #2] - 8005638: 330f adds r3, #15 - 800563a: 687a ldr r2, [r7, #4] - 800563c: 429a cmp r2, r3 - 800563e: dc01 bgt.n 8005644 + 80058d6: 68fb ldr r3, [r7, #12] + 80058d8: 881b ldrh r3, [r3, #0] + 80058da: 461a mov r2, r3 + 80058dc: 68fb ldr r3, [r7, #12] + 80058de: 889b ldrh r3, [r3, #4] + 80058e0: 4413 add r3, r2 + 80058e2: 3b10 subs r3, #16 + 80058e4: 68ba ldr r2, [r7, #8] + 80058e6: 429a cmp r2, r3 + 80058e8: db16 blt.n 8005918 + 80058ea: 68fb ldr r3, [r7, #12] + 80058ec: 881b ldrh r3, [r3, #0] + 80058ee: 461a mov r2, r3 + 80058f0: 68fb ldr r3, [r7, #12] + 80058f2: 889b ldrh r3, [r3, #4] + 80058f4: 4413 add r3, r2 + 80058f6: 68ba ldr r2, [r7, #8] + 80058f8: 429a cmp r2, r3 + 80058fa: da0d bge.n 8005918 + 80058fc: 68fb ldr r3, [r7, #12] + 80058fe: 885b ldrh r3, [r3, #2] + 8005900: 461a mov r2, r3 + 8005902: 687b ldr r3, [r7, #4] + 8005904: 4293 cmp r3, r2 + 8005906: db07 blt.n 8005918 + 8005908: 68fb ldr r3, [r7, #12] + 800590a: 885b ldrh r3, [r3, #2] + 800590c: 330f adds r3, #15 + 800590e: 687a ldr r2, [r7, #4] + 8005910: 429a cmp r2, r3 + 8005912: dc01 bgt.n 8005918 { a=3; - 8005640: 2303 movs r3, #3 - 8005642: 617b str r3, [r7, #20] + 8005914: 2303 movs r3, #3 + 8005916: 617b str r3, [r7, #20] } return a; - 8005644: 697b ldr r3, [r7, #20] - 8005646: b2db uxtb r3, r3 + 8005918: 697b ldr r3, [r7, #20] + 800591a: b2db uxtb r3, r3 } - 8005648: 4618 mov r0, r3 - 800564a: 371c adds r7, #28 - 800564c: 46bd mov sp, r7 - 800564e: bc80 pop {r7} - 8005650: 4770 bx lr + 800591c: 4618 mov r0, r3 + 800591e: 371c adds r7, #28 + 8005920: 46bd mov sp, r7 + 8005922: bc80 pop {r7} + 8005924: 4770 bx lr ... -08005654 : +08005928 : void UI_Server(UI *ui) { - 8005654: b580 push {r7, lr} - 8005656: b088 sub sp, #32 - 8005658: af00 add r7, sp, #0 - 800565a: 6078 str r0, [r7, #4] + 8005928: b580 push {r7, lr} + 800592a: b088 sub sp, #32 + 800592c: af00 add r7, sp, #0 + 800592e: 6078 str r0, [r7, #4] windows_stack *temp_windows_stack=NULL; - 800565c: 2300 movs r3, #0 - 800565e: 61fb str r3, [r7, #28] + 8005930: 2300 movs r3, #0 + 8005932: 61fb str r3, [r7, #28] window *temp_window; //touch_device *temp_touch=NULL; int flag=0; - 8005660: 2300 movs r3, #0 - 8005662: 61bb str r3, [r7, #24] + 8005934: 2300 movs r3, #0 + 8005936: 61bb str r3, [r7, #24] uint8_t hit_flag=0; - 8005664: 2300 movs r3, #0 - 8005666: 75fb strb r3, [r7, #23] + 8005938: 2300 movs r3, #0 + 800593a: 75fb strb r3, [r7, #23] int t_x,t_y; //touch //temp_touch=ui->touch; if(t0.c)//TP_XY(&t_x, &t_y)) - 8005668: 4b76 ldr r3, [pc, #472] ; (8005844 ) - 800566a: 7b1b ldrb r3, [r3, #12] - 800566c: f003 0302 and.w r3, r3, #2 - 8005670: b2db uxtb r3, r3 - 8005672: 2b00 cmp r3, #0 - 8005674: f000 80ba beq.w 80057ec + 800593c: 4b76 ldr r3, [pc, #472] ; (8005b18 ) + 800593e: 7b1b ldrb r3, [r3, #12] + 8005940: f003 0302 and.w r3, r3, #2 + 8005944: b2db uxtb r3, r3 + 8005946: 2b00 cmp r3, #0 + 8005948: f000 80ba beq.w 8005ac0 { if(t0.d) - 8005678: 4b72 ldr r3, [pc, #456] ; (8005844 ) - 800567a: 7b1b ldrb r3, [r3, #12] - 800567c: f003 0304 and.w r3, r3, #4 - 8005680: b2db uxtb r3, r3 - 8005682: 2b00 cmp r3, #0 - 8005684: f000 80c8 beq.w 8005818 + 800594c: 4b72 ldr r3, [pc, #456] ; (8005b18 ) + 800594e: 7b1b ldrb r3, [r3, #12] + 8005950: f003 0304 and.w r3, r3, #4 + 8005954: b2db uxtb r3, r3 + 8005956: 2b00 cmp r3, #0 + 8005958: f000 80c8 beq.w 8005aec { t_x=t0.pix_x; - 8005688: 4b6e ldr r3, [pc, #440] ; (8005844 ) - 800568a: 685b ldr r3, [r3, #4] - 800568c: 613b str r3, [r7, #16] + 800595c: 4b6e ldr r3, [pc, #440] ; (8005b18 ) + 800595e: 685b ldr r3, [r3, #4] + 8005960: 613b str r3, [r7, #16] t_y=t0.pix_y; - 800568e: 4b6d ldr r3, [pc, #436] ; (8005844 ) - 8005690: 689b ldr r3, [r3, #8] - 8005692: 60fb str r3, [r7, #12] + 8005962: 4b6d ldr r3, [pc, #436] ; (8005b18 ) + 8005964: 689b ldr r3, [r3, #8] + 8005966: 60fb str r3, [r7, #12] temp_window=NULL; - 8005694: 2300 movs r3, #0 - 8005696: 60bb str r3, [r7, #8] + 8005968: 2300 movs r3, #0 + 800596a: 60bb str r3, [r7, #8] if(ui->moveed_windwos==NULL) - 8005698: 687b ldr r3, [r7, #4] - 800569a: 695b ldr r3, [r3, #20] - 800569c: 2b00 cmp r3, #0 - 800569e: f040 8088 bne.w 80057b2 + 800596c: 687b ldr r3, [r7, #4] + 800596e: 695b ldr r3, [r3, #20] + 8005970: 2b00 cmp r3, #0 + 8005972: f040 8088 bne.w 8005a86 { if(ui->First_click_flag==0) - 80056a2: 687b ldr r3, [r7, #4] - 80056a4: f893 3020 ldrb.w r3, [r3, #32] - 80056a8: f003 0302 and.w r3, r3, #2 - 80056ac: b2db uxtb r3, r3 - 80056ae: 2b00 cmp r3, #0 - 80056b0: f040 80b2 bne.w 8005818 + 8005976: 687b ldr r3, [r7, #4] + 8005978: f893 3020 ldrb.w r3, [r3, #32] + 800597c: f003 0302 and.w r3, r3, #2 + 8005980: b2db uxtb r3, r3 + 8005982: 2b00 cmp r3, #0 + 8005984: f040 80b2 bne.w 8005aec { ui->First_click_flag=1; - 80056b4: 687a ldr r2, [r7, #4] - 80056b6: f892 3020 ldrb.w r3, [r2, #32] - 80056ba: f043 0302 orr.w r3, r3, #2 - 80056be: f882 3020 strb.w r3, [r2, #32] + 8005988: 687a ldr r2, [r7, #4] + 800598a: f892 3020 ldrb.w r3, [r2, #32] + 800598e: f043 0302 orr.w r3, r3, #2 + 8005992: f882 3020 strb.w r3, [r2, #32] temp_windows_stack=ui->last_windows; //获取ui中最前端的窗口 从前往后扫描 - 80056c2: 687b ldr r3, [r7, #4] - 80056c4: 691b ldr r3, [r3, #16] - 80056c6: 61fb str r3, [r7, #28] + 8005996: 687b ldr r3, [r7, #4] + 8005998: 691b ldr r3, [r3, #16] + 800599a: 61fb str r3, [r7, #28] do { if(temp_windows_stack!=NULL) //如果有窗口就开始扫描 - 80056c8: 69fb ldr r3, [r7, #28] - 80056ca: 2b00 cmp r3, #0 - 80056cc: d06b beq.n 80057a6 + 800599c: 69fb ldr r3, [r7, #28] + 800599e: 2b00 cmp r3, #0 + 80059a0: d06b beq.n 8005a7a { flag=1; //检查到有窗口 需要循环一次以检查是否有下一个窗口 - 80056ce: 2301 movs r3, #1 - 80056d0: 61bb str r3, [r7, #24] + 80059a2: 2301 movs r3, #1 + 80059a4: 61bb str r3, [r7, #24] // temp_window=temp_windows_stack->window; //取出这个窗口 - 80056d2: 69fb ldr r3, [r7, #28] - 80056d4: 685b ldr r3, [r3, #4] - 80056d6: 60bb str r3, [r7, #8] + 80059a6: 69fb ldr r3, [r7, #28] + 80059a8: 685b ldr r3, [r3, #4] + 80059aa: 60bb str r3, [r7, #8] hit_flag=Chack(temp_window,t_x,t_y); //检查触摸是否命中 直接返回命中窗口的位置 - 80056d8: 68fa ldr r2, [r7, #12] - 80056da: 6939 ldr r1, [r7, #16] - 80056dc: 68b8 ldr r0, [r7, #8] - 80056de: f7ff ff4a bl 8005576 - 80056e2: 4603 mov r3, r0 - 80056e4: 75fb strb r3, [r7, #23] + 80059ac: 68fa ldr r2, [r7, #12] + 80059ae: 6939 ldr r1, [r7, #16] + 80059b0: 68b8 ldr r0, [r7, #8] + 80059b2: f7ff ff4a bl 800584a + 80059b6: 4603 mov r3, r0 + 80059b8: 75fb strb r3, [r7, #23] if(hit_flag) // 命中继续 - 80056e6: 7dfb ldrb r3, [r7, #23] - 80056e8: 2b00 cmp r3, #0 - 80056ea: d058 beq.n 800579e + 80059ba: 7dfb ldrb r3, [r7, #23] + 80059bc: 2b00 cmp r3, #0 + 80059be: d058 beq.n 8005a72 { if(temp_windows_stack!=ui->last_windows) //检查是否最前端的窗口 如果不是就放最前面 - 80056ec: 687b ldr r3, [r7, #4] - 80056ee: 691b ldr r3, [r3, #16] - 80056f0: 69fa ldr r2, [r7, #28] - 80056f2: 429a cmp r2, r3 - 80056f4: d02c beq.n 8005750 + 80059c0: 687b ldr r3, [r7, #4] + 80059c2: 691b ldr r3, [r3, #16] + 80059c4: 69fa ldr r2, [r7, #28] + 80059c6: 429a cmp r2, r3 + 80059c8: d02c beq.n 8005a24 { if(temp_windows_stack!=ui->windows) //检查是否最后端的窗口 因为显示是从最后端往前显示的 所以ui有最后端窗口的入口 - 80056f6: 687b ldr r3, [r7, #4] - 80056f8: 68db ldr r3, [r3, #12] - 80056fa: 69fa ldr r2, [r7, #28] - 80056fc: 429a cmp r2, r3 - 80056fe: d00a beq.n 8005716 + 80059ca: 687b ldr r3, [r7, #4] + 80059cc: 68db ldr r3, [r3, #12] + 80059ce: 69fa ldr r2, [r7, #28] + 80059d0: 429a cmp r2, r3 + 80059d2: d00a beq.n 80059ea { temp_windows_stack->up->next=temp_windows_stack->next; //取出这个节点 把节点的上下补上链接 - 8005700: 69fb ldr r3, [r7, #28] - 8005702: 681b ldr r3, [r3, #0] - 8005704: 69fa ldr r2, [r7, #28] - 8005706: 6892 ldr r2, [r2, #8] - 8005708: 609a str r2, [r3, #8] + 80059d4: 69fb ldr r3, [r7, #28] + 80059d6: 681b ldr r3, [r3, #0] + 80059d8: 69fa ldr r2, [r7, #28] + 80059da: 6892 ldr r2, [r2, #8] + 80059dc: 609a str r2, [r3, #8] temp_windows_stack->next->up=temp_windows_stack->up; - 800570a: 69fb ldr r3, [r7, #28] - 800570c: 689b ldr r3, [r3, #8] - 800570e: 69fa ldr r2, [r7, #28] - 8005710: 6812 ldr r2, [r2, #0] - 8005712: 601a str r2, [r3, #0] - 8005714: e007 b.n 8005726 + 80059de: 69fb ldr r3, [r7, #28] + 80059e0: 689b ldr r3, [r3, #8] + 80059e2: 69fa ldr r2, [r7, #28] + 80059e4: 6812 ldr r2, [r2, #0] + 80059e6: 601a str r2, [r3, #0] + 80059e8: e007 b.n 80059fa }else { ui->windows=temp_windows_stack->next; //如果是最后端的窗口 则取出这个节点后入口就变下一个节点了 - 8005716: 69fb ldr r3, [r7, #28] - 8005718: 689a ldr r2, [r3, #8] - 800571a: 687b ldr r3, [r7, #4] - 800571c: 60da str r2, [r3, #12] + 80059ea: 69fb ldr r3, [r7, #28] + 80059ec: 689a ldr r2, [r3, #8] + 80059ee: 687b ldr r3, [r7, #4] + 80059f0: 60da str r2, [r3, #12] ui->windows->up=NULL; //倒数第二变最后端 在走就没了 所以要清空指针 - 800571e: 687b ldr r3, [r7, #4] - 8005720: 68db ldr r3, [r3, #12] - 8005722: 2200 movs r2, #0 - 8005724: 601a str r2, [r3, #0] + 80059f2: 687b ldr r3, [r7, #4] + 80059f4: 68db ldr r3, [r3, #12] + 80059f6: 2200 movs r2, #0 + 80059f8: 601a str r2, [r3, #0] } temp_windows_stack->next=NULL; //取出的节点要放在最前端 所以 无法再往前 清空往前的指针 - 8005726: 69fb ldr r3, [r7, #28] - 8005728: 2200 movs r2, #0 - 800572a: 609a str r2, [r3, #8] + 80059fa: 69fb ldr r3, [r7, #28] + 80059fc: 2200 movs r2, #0 + 80059fe: 609a str r2, [r3, #8] temp_windows_stack->up=ui->last_windows; //上一个指针就是原来的最后一个 - 800572c: 687b ldr r3, [r7, #4] - 800572e: 691a ldr r2, [r3, #16] - 8005730: 69fb ldr r3, [r7, #28] - 8005732: 601a str r2, [r3, #0] + 8005a00: 687b ldr r3, [r7, #4] + 8005a02: 691a ldr r2, [r3, #16] + 8005a04: 69fb ldr r3, [r7, #28] + 8005a06: 601a str r2, [r3, #0] ui->last_windows->next=temp_windows_stack; //原来的最后一个指向现在的最后一个 - 8005734: 687b ldr r3, [r7, #4] - 8005736: 691b ldr r3, [r3, #16] - 8005738: 69fa ldr r2, [r7, #28] - 800573a: 609a str r2, [r3, #8] + 8005a08: 687b ldr r3, [r7, #4] + 8005a0a: 691b ldr r3, [r3, #16] + 8005a0c: 69fa ldr r2, [r7, #28] + 8005a0e: 609a str r2, [r3, #8] ui->last_windows=temp_windows_stack; //更新ui中的最后一个的入口 - 800573c: 687b ldr r3, [r7, #4] - 800573e: 69fa ldr r2, [r7, #28] - 8005740: 611a str r2, [r3, #16] + 8005a10: 687b ldr r3, [r7, #4] + 8005a12: 69fa ldr r2, [r7, #28] + 8005a14: 611a str r2, [r3, #16] ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 8005742: 687a ldr r2, [r7, #4] - 8005744: f892 3020 ldrb.w r3, [r2, #32] - 8005748: f043 0304 orr.w r3, r3, #4 - 800574c: f882 3020 strb.w r3, [r2, #32] + 8005a16: 687a ldr r2, [r7, #4] + 8005a18: f892 3020 ldrb.w r3, [r2, #32] + 8005a1c: f043 0304 orr.w r3, r3, #4 + 8005a20: f882 3020 strb.w r3, [r2, #32] } //检查标中窗口的什么位置 switch(hit_flag) - 8005750: 7dfb ldrb r3, [r7, #23] - 8005752: 2b03 cmp r3, #3 - 8005754: d006 beq.n 8005764 - 8005756: 2b03 cmp r3, #3 - 8005758: dc1f bgt.n 800579a - 800575a: 2b01 cmp r3, #1 - 800575c: d01c beq.n 8005798 - 800575e: 2b02 cmp r3, #2 - 8005760: d008 beq.n 8005774 - 8005762: e01a b.n 800579a + 8005a24: 7dfb ldrb r3, [r7, #23] + 8005a26: 2b03 cmp r3, #3 + 8005a28: d006 beq.n 8005a38 + 8005a2a: 2b03 cmp r3, #3 + 8005a2c: dc1f bgt.n 8005a6e + 8005a2e: 2b01 cmp r3, #1 + 8005a30: d01c beq.n 8005a6c + 8005a32: 2b02 cmp r3, #2 + 8005a34: d008 beq.n 8005a48 + 8005a36: e01a b.n 8005a6e { case CLOSE: //Close_Windows_Stack(ui,temp_windows_stack); ui->refresh_ui_flag=1; //发生了变化 刷新ui的显示 - 8005764: 687a ldr r2, [r7, #4] - 8005766: f892 3020 ldrb.w r3, [r2, #32] - 800576a: f043 0304 orr.w r3, r3, #4 - 800576e: f882 3020 strb.w r3, [r2, #32] + 8005a38: 687a ldr r2, [r7, #4] + 8005a3a: f892 3020 ldrb.w r3, [r2, #32] + 8005a3e: f043 0304 orr.w r3, r3, #4 + 8005a42: f882 3020 strb.w r3, [r2, #32] break; - 8005772: e012 b.n 800579a + 8005a46: e012 b.n 8005a6e case BAR: ui->moveed_windwos=temp_window; - 8005774: 687b ldr r3, [r7, #4] - 8005776: 68ba ldr r2, [r7, #8] - 8005778: 615a str r2, [r3, #20] + 8005a48: 687b ldr r3, [r7, #4] + 8005a4a: 68ba ldr r2, [r7, #8] + 8005a4c: 615a str r2, [r3, #20] ui->move_x=t_x-temp_window->x; - 800577a: 68bb ldr r3, [r7, #8] - 800577c: 881b ldrh r3, [r3, #0] - 800577e: 461a mov r2, r3 - 8005780: 693b ldr r3, [r7, #16] - 8005782: 1a9a subs r2, r3, r2 - 8005784: 687b ldr r3, [r7, #4] - 8005786: 619a str r2, [r3, #24] + 8005a4e: 68bb ldr r3, [r7, #8] + 8005a50: 881b ldrh r3, [r3, #0] + 8005a52: 461a mov r2, r3 + 8005a54: 693b ldr r3, [r7, #16] + 8005a56: 1a9a subs r2, r3, r2 + 8005a58: 687b ldr r3, [r7, #4] + 8005a5a: 619a str r2, [r3, #24] ui->move_y=t_y-temp_window->y; - 8005788: 68bb ldr r3, [r7, #8] - 800578a: 885b ldrh r3, [r3, #2] - 800578c: 461a mov r2, r3 - 800578e: 68fb ldr r3, [r7, #12] - 8005790: 1a9a subs r2, r3, r2 - 8005792: 687b ldr r3, [r7, #4] - 8005794: 61da str r2, [r3, #28] + 8005a5c: 68bb ldr r3, [r7, #8] + 8005a5e: 885b ldrh r3, [r3, #2] + 8005a60: 461a mov r2, r3 + 8005a62: 68fb ldr r3, [r7, #12] + 8005a64: 1a9a subs r2, r3, r2 + 8005a66: 687b ldr r3, [r7, #4] + 8005a68: 61da str r2, [r3, #28] break; - 8005796: e000 b.n 800579a + 8005a6a: e000 b.n 8005a6e case BODY: //ui->background=temp_windows_stack->window->background; //ui->refresh_ui_flag=1; break; - 8005798: bf00 nop + 8005a6c: bf00 nop } flag=0; //结束扫描 防止穿透当前窗口 - 800579a: 2300 movs r3, #0 - 800579c: 61bb str r3, [r7, #24] + 8005a6e: 2300 movs r3, #0 + 8005a70: 61bb str r3, [r7, #24] } temp_windows_stack=temp_windows_stack->up; //往前扫描 - 800579e: 69fb ldr r3, [r7, #28] - 80057a0: 681b ldr r3, [r3, #0] - 80057a2: 61fb str r3, [r7, #28] - 80057a4: e001 b.n 80057aa + 8005a72: 69fb ldr r3, [r7, #28] + 8005a74: 681b ldr r3, [r3, #0] + 8005a76: 61fb str r3, [r7, #28] + 8005a78: e001 b.n 8005a7e }else { flag=0; //一个窗口都没有 直接结束循环 - 80057a6: 2300 movs r3, #0 - 80057a8: 61bb str r3, [r7, #24] + 8005a7a: 2300 movs r3, #0 + 8005a7c: 61bb str r3, [r7, #24] } }while(flag); - 80057aa: 69bb ldr r3, [r7, #24] - 80057ac: 2b00 cmp r3, #0 - 80057ae: d18b bne.n 80056c8 - 80057b0: e032 b.n 8005818 + 8005a7e: 69bb ldr r3, [r7, #24] + 8005a80: 2b00 cmp r3, #0 + 8005a82: d18b bne.n 800599c + 8005a84: e032 b.n 8005aec } }else { temp_window=ui->moveed_windwos; - 80057b2: 687b ldr r3, [r7, #4] - 80057b4: 695b ldr r3, [r3, #20] - 80057b6: 60bb str r3, [r7, #8] + 8005a86: 687b ldr r3, [r7, #4] + 8005a88: 695b ldr r3, [r3, #20] + 8005a8a: 60bb str r3, [r7, #8] temp_window->x=t_x-ui->move_x; - 80057b8: 693b ldr r3, [r7, #16] - 80057ba: b29a uxth r2, r3 - 80057bc: 687b ldr r3, [r7, #4] - 80057be: 699b ldr r3, [r3, #24] - 80057c0: b29b uxth r3, r3 - 80057c2: 1ad3 subs r3, r2, r3 - 80057c4: b29a uxth r2, r3 - 80057c6: 68bb ldr r3, [r7, #8] - 80057c8: 801a strh r2, [r3, #0] + 8005a8c: 693b ldr r3, [r7, #16] + 8005a8e: b29a uxth r2, r3 + 8005a90: 687b ldr r3, [r7, #4] + 8005a92: 699b ldr r3, [r3, #24] + 8005a94: b29b uxth r3, r3 + 8005a96: 1ad3 subs r3, r2, r3 + 8005a98: b29a uxth r2, r3 + 8005a9a: 68bb ldr r3, [r7, #8] + 8005a9c: 801a strh r2, [r3, #0] temp_window->y=t_y-ui->move_y; - 80057ca: 68fb ldr r3, [r7, #12] - 80057cc: b29a uxth r2, r3 - 80057ce: 687b ldr r3, [r7, #4] - 80057d0: 69db ldr r3, [r3, #28] - 80057d2: b29b uxth r3, r3 - 80057d4: 1ad3 subs r3, r2, r3 - 80057d6: b29a uxth r2, r3 - 80057d8: 68bb ldr r3, [r7, #8] - 80057da: 805a strh r2, [r3, #2] + 8005a9e: 68fb ldr r3, [r7, #12] + 8005aa0: b29a uxth r2, r3 + 8005aa2: 687b ldr r3, [r7, #4] + 8005aa4: 69db ldr r3, [r3, #28] + 8005aa6: b29b uxth r3, r3 + 8005aa8: 1ad3 subs r3, r2, r3 + 8005aaa: b29a uxth r2, r3 + 8005aac: 68bb ldr r3, [r7, #8] + 8005aae: 805a strh r2, [r3, #2] ui->refresh_ui_flag=1; - 80057dc: 687a ldr r2, [r7, #4] - 80057de: f892 3020 ldrb.w r3, [r2, #32] - 80057e2: f043 0304 orr.w r3, r3, #4 - 80057e6: f882 3020 strb.w r3, [r2, #32] - 80057ea: e015 b.n 8005818 + 8005ab0: 687a ldr r2, [r7, #4] + 8005ab2: f892 3020 ldrb.w r3, [r2, #32] + 8005ab6: f043 0304 orr.w r3, r3, #4 + 8005aba: f882 3020 strb.w r3, [r2, #32] + 8005abe: e015 b.n 8005aec }else { if(ui->First_click_flag==1) - 80057ec: 687b ldr r3, [r7, #4] - 80057ee: f893 3020 ldrb.w r3, [r3, #32] - 80057f2: f003 0302 and.w r3, r3, #2 - 80057f6: b2db uxtb r3, r3 - 80057f8: 2b00 cmp r3, #0 - 80057fa: d006 beq.n 800580a + 8005ac0: 687b ldr r3, [r7, #4] + 8005ac2: f893 3020 ldrb.w r3, [r3, #32] + 8005ac6: f003 0302 and.w r3, r3, #2 + 8005aca: b2db uxtb r3, r3 + 8005acc: 2b00 cmp r3, #0 + 8005ace: d006 beq.n 8005ade { ui->First_click_flag=0; - 80057fc: 687a ldr r2, [r7, #4] - 80057fe: f892 3020 ldrb.w r3, [r2, #32] - 8005802: f36f 0341 bfc r3, #1, #1 - 8005806: f882 3020 strb.w r3, [r2, #32] + 8005ad0: 687a ldr r2, [r7, #4] + 8005ad2: f892 3020 ldrb.w r3, [r2, #32] + 8005ad6: f36f 0341 bfc r3, #1, #1 + 8005ada: f882 3020 strb.w r3, [r2, #32] } if(ui->moveed_windwos!=NULL) - 800580a: 687b ldr r3, [r7, #4] - 800580c: 695b ldr r3, [r3, #20] - 800580e: 2b00 cmp r3, #0 - 8005810: d002 beq.n 8005818 + 8005ade: 687b ldr r3, [r7, #4] + 8005ae0: 695b ldr r3, [r3, #20] + 8005ae2: 2b00 cmp r3, #0 + 8005ae4: d002 beq.n 8005aec { ui->moveed_windwos=NULL; - 8005812: 687b ldr r3, [r7, #4] - 8005814: 2200 movs r2, #0 - 8005816: 615a str r2, [r3, #20] + 8005ae6: 687b ldr r3, [r7, #4] + 8005ae8: 2200 movs r2, #0 + 8005aea: 615a str r2, [r3, #20] } } //display if(ui->refresh_ui_flag==1) - 8005818: 687b ldr r3, [r7, #4] - 800581a: f893 3020 ldrb.w r3, [r3, #32] - 800581e: f003 0304 and.w r3, r3, #4 - 8005822: b2db uxtb r3, r3 - 8005824: 2b00 cmp r3, #0 - 8005826: d009 beq.n 800583c + 8005aec: 687b ldr r3, [r7, #4] + 8005aee: f893 3020 ldrb.w r3, [r3, #32] + 8005af2: f003 0304 and.w r3, r3, #4 + 8005af6: b2db uxtb r3, r3 + 8005af8: 2b00 cmp r3, #0 + 8005afa: d009 beq.n 8005b10 { ui->refresh_ui_flag=0; - 8005828: 687a ldr r2, [r7, #4] - 800582a: f892 3020 ldrb.w r3, [r2, #32] - 800582e: f36f 0382 bfc r3, #2, #1 - 8005832: f882 3020 strb.w r3, [r2, #32] + 8005afc: 687a ldr r2, [r7, #4] + 8005afe: f892 3020 ldrb.w r3, [r2, #32] + 8005b02: f36f 0382 bfc r3, #2, #1 + 8005b06: f882 3020 strb.w r3, [r2, #32] Refresh_UI(ui); - 8005836: 6878 ldr r0, [r7, #4] - 8005838: f7ff fe53 bl 80054e2 + 8005b0a: 6878 ldr r0, [r7, #4] + 8005b0c: f7ff fe53 bl 80057b6 } } - 800583c: bf00 nop - 800583e: 3720 adds r7, #32 - 8005840: 46bd mov sp, r7 - 8005842: bd80 pop {r7, pc} - 8005844: 200002e0 .word 0x200002e0 + 8005b10: bf00 nop + 8005b12: 3720 adds r7, #32 + 8005b14: 46bd mov sp, r7 + 8005b16: bd80 pop {r7, pc} + 8005b18: 200002e0 .word 0x200002e0 -08005848 <__errno>: - 8005848: 4b01 ldr r3, [pc, #4] ; (8005850 <__errno+0x8>) - 800584a: 6818 ldr r0, [r3, #0] - 800584c: 4770 bx lr - 800584e: bf00 nop - 8005850: 2000000c .word 0x2000000c +08005b1c <__errno>: + 8005b1c: 4b01 ldr r3, [pc, #4] ; (8005b24 <__errno+0x8>) + 8005b1e: 6818 ldr r0, [r3, #0] + 8005b20: 4770 bx lr + 8005b22: bf00 nop + 8005b24: 2000000c .word 0x2000000c -08005854 <__libc_init_array>: - 8005854: b570 push {r4, r5, r6, lr} - 8005856: 2600 movs r6, #0 - 8005858: 4d0c ldr r5, [pc, #48] ; (800588c <__libc_init_array+0x38>) - 800585a: 4c0d ldr r4, [pc, #52] ; (8005890 <__libc_init_array+0x3c>) - 800585c: 1b64 subs r4, r4, r5 - 800585e: 10a4 asrs r4, r4, #2 - 8005860: 42a6 cmp r6, r4 - 8005862: d109 bne.n 8005878 <__libc_init_array+0x24> - 8005864: f002 fec4 bl 80085f0 <_init> - 8005868: 2600 movs r6, #0 - 800586a: 4d0a ldr r5, [pc, #40] ; (8005894 <__libc_init_array+0x40>) - 800586c: 4c0a ldr r4, [pc, #40] ; (8005898 <__libc_init_array+0x44>) - 800586e: 1b64 subs r4, r4, r5 - 8005870: 10a4 asrs r4, r4, #2 - 8005872: 42a6 cmp r6, r4 - 8005874: d105 bne.n 8005882 <__libc_init_array+0x2e> - 8005876: bd70 pop {r4, r5, r6, pc} - 8005878: f855 3b04 ldr.w r3, [r5], #4 - 800587c: 4798 blx r3 - 800587e: 3601 adds r6, #1 - 8005880: e7ee b.n 8005860 <__libc_init_array+0xc> - 8005882: f855 3b04 ldr.w r3, [r5], #4 - 8005886: 4798 blx r3 - 8005888: 3601 adds r6, #1 - 800588a: e7f2 b.n 8005872 <__libc_init_array+0x1e> - 800588c: 0800953c .word 0x0800953c - 8005890: 0800953c .word 0x0800953c - 8005894: 0800953c .word 0x0800953c - 8005898: 08009540 .word 0x08009540 +08005b28 <__libc_init_array>: + 8005b28: b570 push {r4, r5, r6, lr} + 8005b2a: 2600 movs r6, #0 + 8005b2c: 4d0c ldr r5, [pc, #48] ; (8005b60 <__libc_init_array+0x38>) + 8005b2e: 4c0d ldr r4, [pc, #52] ; (8005b64 <__libc_init_array+0x3c>) + 8005b30: 1b64 subs r4, r4, r5 + 8005b32: 10a4 asrs r4, r4, #2 + 8005b34: 42a6 cmp r6, r4 + 8005b36: d109 bne.n 8005b4c <__libc_init_array+0x24> + 8005b38: f002 fec2 bl 80088c0 <_init> + 8005b3c: 2600 movs r6, #0 + 8005b3e: 4d0a ldr r5, [pc, #40] ; (8005b68 <__libc_init_array+0x40>) + 8005b40: 4c0a ldr r4, [pc, #40] ; (8005b6c <__libc_init_array+0x44>) + 8005b42: 1b64 subs r4, r4, r5 + 8005b44: 10a4 asrs r4, r4, #2 + 8005b46: 42a6 cmp r6, r4 + 8005b48: d105 bne.n 8005b56 <__libc_init_array+0x2e> + 8005b4a: bd70 pop {r4, r5, r6, pc} + 8005b4c: f855 3b04 ldr.w r3, [r5], #4 + 8005b50: 4798 blx r3 + 8005b52: 3601 adds r6, #1 + 8005b54: e7ee b.n 8005b34 <__libc_init_array+0xc> + 8005b56: f855 3b04 ldr.w r3, [r5], #4 + 8005b5a: 4798 blx r3 + 8005b5c: 3601 adds r6, #1 + 8005b5e: e7f2 b.n 8005b46 <__libc_init_array+0x1e> + 8005b60: 0800982c .word 0x0800982c + 8005b64: 0800982c .word 0x0800982c + 8005b68: 0800982c .word 0x0800982c + 8005b6c: 08009830 .word 0x08009830 -0800589c : - 800589c: 4b02 ldr r3, [pc, #8] ; (80058a8 ) - 800589e: 4601 mov r1, r0 - 80058a0: 6818 ldr r0, [r3, #0] - 80058a2: f000 b85f b.w 8005964 <_malloc_r> - 80058a6: bf00 nop - 80058a8: 2000000c .word 0x2000000c +08005b70 : + 8005b70: 4b02 ldr r3, [pc, #8] ; (8005b7c ) + 8005b72: 4601 mov r1, r0 + 8005b74: 6818 ldr r0, [r3, #0] + 8005b76: f000 b85f b.w 8005c38 <_malloc_r> + 8005b7a: bf00 nop + 8005b7c: 2000000c .word 0x2000000c -080058ac : - 80058ac: 4b02 ldr r3, [pc, #8] ; (80058b8 ) - 80058ae: 4601 mov r1, r0 - 80058b0: 6818 ldr r0, [r3, #0] - 80058b2: f000 b80b b.w 80058cc <_free_r> - 80058b6: bf00 nop - 80058b8: 2000000c .word 0x2000000c +08005b80 : + 8005b80: 4b02 ldr r3, [pc, #8] ; (8005b8c ) + 8005b82: 4601 mov r1, r0 + 8005b84: 6818 ldr r0, [r3, #0] + 8005b86: f000 b80b b.w 8005ba0 <_free_r> + 8005b8a: bf00 nop + 8005b8c: 2000000c .word 0x2000000c -080058bc : - 80058bc: 4603 mov r3, r0 - 80058be: 4402 add r2, r0 - 80058c0: 4293 cmp r3, r2 - 80058c2: d100 bne.n 80058c6 - 80058c4: 4770 bx lr - 80058c6: f803 1b01 strb.w r1, [r3], #1 - 80058ca: e7f9 b.n 80058c0 +08005b90 : + 8005b90: 4603 mov r3, r0 + 8005b92: 4402 add r2, r0 + 8005b94: 4293 cmp r3, r2 + 8005b96: d100 bne.n 8005b9a + 8005b98: 4770 bx lr + 8005b9a: f803 1b01 strb.w r1, [r3], #1 + 8005b9e: e7f9 b.n 8005b94 -080058cc <_free_r>: - 80058cc: b538 push {r3, r4, r5, lr} - 80058ce: 4605 mov r5, r0 - 80058d0: 2900 cmp r1, #0 - 80058d2: d043 beq.n 800595c <_free_r+0x90> - 80058d4: f851 3c04 ldr.w r3, [r1, #-4] - 80058d8: 1f0c subs r4, r1, #4 - 80058da: 2b00 cmp r3, #0 - 80058dc: bfb8 it lt - 80058de: 18e4 addlt r4, r4, r3 - 80058e0: f001 fbc8 bl 8007074 <__malloc_lock> - 80058e4: 4a1e ldr r2, [pc, #120] ; (8005960 <_free_r+0x94>) - 80058e6: 6813 ldr r3, [r2, #0] - 80058e8: 4610 mov r0, r2 - 80058ea: b933 cbnz r3, 80058fa <_free_r+0x2e> - 80058ec: 6063 str r3, [r4, #4] - 80058ee: 6014 str r4, [r2, #0] - 80058f0: 4628 mov r0, r5 - 80058f2: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 80058f6: f001 bbc3 b.w 8007080 <__malloc_unlock> - 80058fa: 42a3 cmp r3, r4 - 80058fc: d90a bls.n 8005914 <_free_r+0x48> - 80058fe: 6821 ldr r1, [r4, #0] - 8005900: 1862 adds r2, r4, r1 - 8005902: 4293 cmp r3, r2 - 8005904: bf01 itttt eq - 8005906: 681a ldreq r2, [r3, #0] - 8005908: 685b ldreq r3, [r3, #4] - 800590a: 1852 addeq r2, r2, r1 - 800590c: 6022 streq r2, [r4, #0] - 800590e: 6063 str r3, [r4, #4] - 8005910: 6004 str r4, [r0, #0] - 8005912: e7ed b.n 80058f0 <_free_r+0x24> - 8005914: 461a mov r2, r3 - 8005916: 685b ldr r3, [r3, #4] - 8005918: b10b cbz r3, 800591e <_free_r+0x52> - 800591a: 42a3 cmp r3, r4 - 800591c: d9fa bls.n 8005914 <_free_r+0x48> - 800591e: 6811 ldr r1, [r2, #0] - 8005920: 1850 adds r0, r2, r1 - 8005922: 42a0 cmp r0, r4 - 8005924: d10b bne.n 800593e <_free_r+0x72> - 8005926: 6820 ldr r0, [r4, #0] - 8005928: 4401 add r1, r0 - 800592a: 1850 adds r0, r2, r1 - 800592c: 4283 cmp r3, r0 - 800592e: 6011 str r1, [r2, #0] - 8005930: d1de bne.n 80058f0 <_free_r+0x24> - 8005932: 6818 ldr r0, [r3, #0] - 8005934: 685b ldr r3, [r3, #4] - 8005936: 4401 add r1, r0 - 8005938: 6011 str r1, [r2, #0] - 800593a: 6053 str r3, [r2, #4] - 800593c: e7d8 b.n 80058f0 <_free_r+0x24> - 800593e: d902 bls.n 8005946 <_free_r+0x7a> - 8005940: 230c movs r3, #12 - 8005942: 602b str r3, [r5, #0] - 8005944: e7d4 b.n 80058f0 <_free_r+0x24> - 8005946: 6820 ldr r0, [r4, #0] - 8005948: 1821 adds r1, r4, r0 - 800594a: 428b cmp r3, r1 - 800594c: bf01 itttt eq - 800594e: 6819 ldreq r1, [r3, #0] - 8005950: 685b ldreq r3, [r3, #4] - 8005952: 1809 addeq r1, r1, r0 - 8005954: 6021 streq r1, [r4, #0] - 8005956: 6063 str r3, [r4, #4] - 8005958: 6054 str r4, [r2, #4] - 800595a: e7c9 b.n 80058f0 <_free_r+0x24> - 800595c: bd38 pop {r3, r4, r5, pc} - 800595e: bf00 nop - 8005960: 20000200 .word 0x20000200 +08005ba0 <_free_r>: + 8005ba0: b538 push {r3, r4, r5, lr} + 8005ba2: 4605 mov r5, r0 + 8005ba4: 2900 cmp r1, #0 + 8005ba6: d043 beq.n 8005c30 <_free_r+0x90> + 8005ba8: f851 3c04 ldr.w r3, [r1, #-4] + 8005bac: 1f0c subs r4, r1, #4 + 8005bae: 2b00 cmp r3, #0 + 8005bb0: bfb8 it lt + 8005bb2: 18e4 addlt r4, r4, r3 + 8005bb4: f001 fbc6 bl 8007344 <__malloc_lock> + 8005bb8: 4a1e ldr r2, [pc, #120] ; (8005c34 <_free_r+0x94>) + 8005bba: 6813 ldr r3, [r2, #0] + 8005bbc: 4610 mov r0, r2 + 8005bbe: b933 cbnz r3, 8005bce <_free_r+0x2e> + 8005bc0: 6063 str r3, [r4, #4] + 8005bc2: 6014 str r4, [r2, #0] + 8005bc4: 4628 mov r0, r5 + 8005bc6: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 8005bca: f001 bbc1 b.w 8007350 <__malloc_unlock> + 8005bce: 42a3 cmp r3, r4 + 8005bd0: d90a bls.n 8005be8 <_free_r+0x48> + 8005bd2: 6821 ldr r1, [r4, #0] + 8005bd4: 1862 adds r2, r4, r1 + 8005bd6: 4293 cmp r3, r2 + 8005bd8: bf01 itttt eq + 8005bda: 681a ldreq r2, [r3, #0] + 8005bdc: 685b ldreq r3, [r3, #4] + 8005bde: 1852 addeq r2, r2, r1 + 8005be0: 6022 streq r2, [r4, #0] + 8005be2: 6063 str r3, [r4, #4] + 8005be4: 6004 str r4, [r0, #0] + 8005be6: e7ed b.n 8005bc4 <_free_r+0x24> + 8005be8: 461a mov r2, r3 + 8005bea: 685b ldr r3, [r3, #4] + 8005bec: b10b cbz r3, 8005bf2 <_free_r+0x52> + 8005bee: 42a3 cmp r3, r4 + 8005bf0: d9fa bls.n 8005be8 <_free_r+0x48> + 8005bf2: 6811 ldr r1, [r2, #0] + 8005bf4: 1850 adds r0, r2, r1 + 8005bf6: 42a0 cmp r0, r4 + 8005bf8: d10b bne.n 8005c12 <_free_r+0x72> + 8005bfa: 6820 ldr r0, [r4, #0] + 8005bfc: 4401 add r1, r0 + 8005bfe: 1850 adds r0, r2, r1 + 8005c00: 4283 cmp r3, r0 + 8005c02: 6011 str r1, [r2, #0] + 8005c04: d1de bne.n 8005bc4 <_free_r+0x24> + 8005c06: 6818 ldr r0, [r3, #0] + 8005c08: 685b ldr r3, [r3, #4] + 8005c0a: 4401 add r1, r0 + 8005c0c: 6011 str r1, [r2, #0] + 8005c0e: 6053 str r3, [r2, #4] + 8005c10: e7d8 b.n 8005bc4 <_free_r+0x24> + 8005c12: d902 bls.n 8005c1a <_free_r+0x7a> + 8005c14: 230c movs r3, #12 + 8005c16: 602b str r3, [r5, #0] + 8005c18: e7d4 b.n 8005bc4 <_free_r+0x24> + 8005c1a: 6820 ldr r0, [r4, #0] + 8005c1c: 1821 adds r1, r4, r0 + 8005c1e: 428b cmp r3, r1 + 8005c20: bf01 itttt eq + 8005c22: 6819 ldreq r1, [r3, #0] + 8005c24: 685b ldreq r3, [r3, #4] + 8005c26: 1809 addeq r1, r1, r0 + 8005c28: 6021 streq r1, [r4, #0] + 8005c2a: 6063 str r3, [r4, #4] + 8005c2c: 6054 str r4, [r2, #4] + 8005c2e: e7c9 b.n 8005bc4 <_free_r+0x24> + 8005c30: bd38 pop {r3, r4, r5, pc} + 8005c32: bf00 nop + 8005c34: 20000200 .word 0x20000200 -08005964 <_malloc_r>: - 8005964: b5f8 push {r3, r4, r5, r6, r7, lr} - 8005966: 1ccd adds r5, r1, #3 - 8005968: f025 0503 bic.w r5, r5, #3 - 800596c: 3508 adds r5, #8 - 800596e: 2d0c cmp r5, #12 - 8005970: bf38 it cc - 8005972: 250c movcc r5, #12 - 8005974: 2d00 cmp r5, #0 - 8005976: 4606 mov r6, r0 - 8005978: db01 blt.n 800597e <_malloc_r+0x1a> - 800597a: 42a9 cmp r1, r5 - 800597c: d903 bls.n 8005986 <_malloc_r+0x22> - 800597e: 230c movs r3, #12 - 8005980: 6033 str r3, [r6, #0] - 8005982: 2000 movs r0, #0 - 8005984: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8005986: f001 fb75 bl 8007074 <__malloc_lock> - 800598a: 4921 ldr r1, [pc, #132] ; (8005a10 <_malloc_r+0xac>) - 800598c: 680a ldr r2, [r1, #0] - 800598e: 4614 mov r4, r2 - 8005990: b99c cbnz r4, 80059ba <_malloc_r+0x56> - 8005992: 4f20 ldr r7, [pc, #128] ; (8005a14 <_malloc_r+0xb0>) - 8005994: 683b ldr r3, [r7, #0] - 8005996: b923 cbnz r3, 80059a2 <_malloc_r+0x3e> - 8005998: 4621 mov r1, r4 - 800599a: 4630 mov r0, r6 - 800599c: f000 fc9c bl 80062d8 <_sbrk_r> - 80059a0: 6038 str r0, [r7, #0] - 80059a2: 4629 mov r1, r5 - 80059a4: 4630 mov r0, r6 - 80059a6: f000 fc97 bl 80062d8 <_sbrk_r> - 80059aa: 1c43 adds r3, r0, #1 - 80059ac: d123 bne.n 80059f6 <_malloc_r+0x92> - 80059ae: 230c movs r3, #12 - 80059b0: 4630 mov r0, r6 - 80059b2: 6033 str r3, [r6, #0] - 80059b4: f001 fb64 bl 8007080 <__malloc_unlock> - 80059b8: e7e3 b.n 8005982 <_malloc_r+0x1e> - 80059ba: 6823 ldr r3, [r4, #0] - 80059bc: 1b5b subs r3, r3, r5 - 80059be: d417 bmi.n 80059f0 <_malloc_r+0x8c> - 80059c0: 2b0b cmp r3, #11 - 80059c2: d903 bls.n 80059cc <_malloc_r+0x68> - 80059c4: 6023 str r3, [r4, #0] - 80059c6: 441c add r4, r3 - 80059c8: 6025 str r5, [r4, #0] - 80059ca: e004 b.n 80059d6 <_malloc_r+0x72> - 80059cc: 6863 ldr r3, [r4, #4] - 80059ce: 42a2 cmp r2, r4 - 80059d0: bf0c ite eq - 80059d2: 600b streq r3, [r1, #0] - 80059d4: 6053 strne r3, [r2, #4] - 80059d6: 4630 mov r0, r6 - 80059d8: f001 fb52 bl 8007080 <__malloc_unlock> - 80059dc: f104 000b add.w r0, r4, #11 - 80059e0: 1d23 adds r3, r4, #4 - 80059e2: f020 0007 bic.w r0, r0, #7 - 80059e6: 1ac2 subs r2, r0, r3 - 80059e8: d0cc beq.n 8005984 <_malloc_r+0x20> - 80059ea: 1a1b subs r3, r3, r0 - 80059ec: 50a3 str r3, [r4, r2] - 80059ee: e7c9 b.n 8005984 <_malloc_r+0x20> - 80059f0: 4622 mov r2, r4 - 80059f2: 6864 ldr r4, [r4, #4] - 80059f4: e7cc b.n 8005990 <_malloc_r+0x2c> - 80059f6: 1cc4 adds r4, r0, #3 - 80059f8: f024 0403 bic.w r4, r4, #3 - 80059fc: 42a0 cmp r0, r4 - 80059fe: d0e3 beq.n 80059c8 <_malloc_r+0x64> - 8005a00: 1a21 subs r1, r4, r0 - 8005a02: 4630 mov r0, r6 - 8005a04: f000 fc68 bl 80062d8 <_sbrk_r> - 8005a08: 3001 adds r0, #1 - 8005a0a: d1dd bne.n 80059c8 <_malloc_r+0x64> - 8005a0c: e7cf b.n 80059ae <_malloc_r+0x4a> - 8005a0e: bf00 nop - 8005a10: 20000200 .word 0x20000200 - 8005a14: 20000204 .word 0x20000204 +08005c38 <_malloc_r>: + 8005c38: b5f8 push {r3, r4, r5, r6, r7, lr} + 8005c3a: 1ccd adds r5, r1, #3 + 8005c3c: f025 0503 bic.w r5, r5, #3 + 8005c40: 3508 adds r5, #8 + 8005c42: 2d0c cmp r5, #12 + 8005c44: bf38 it cc + 8005c46: 250c movcc r5, #12 + 8005c48: 2d00 cmp r5, #0 + 8005c4a: 4606 mov r6, r0 + 8005c4c: db01 blt.n 8005c52 <_malloc_r+0x1a> + 8005c4e: 42a9 cmp r1, r5 + 8005c50: d903 bls.n 8005c5a <_malloc_r+0x22> + 8005c52: 230c movs r3, #12 + 8005c54: 6033 str r3, [r6, #0] + 8005c56: 2000 movs r0, #0 + 8005c58: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8005c5a: f001 fb73 bl 8007344 <__malloc_lock> + 8005c5e: 4921 ldr r1, [pc, #132] ; (8005ce4 <_malloc_r+0xac>) + 8005c60: 680a ldr r2, [r1, #0] + 8005c62: 4614 mov r4, r2 + 8005c64: b99c cbnz r4, 8005c8e <_malloc_r+0x56> + 8005c66: 4f20 ldr r7, [pc, #128] ; (8005ce8 <_malloc_r+0xb0>) + 8005c68: 683b ldr r3, [r7, #0] + 8005c6a: b923 cbnz r3, 8005c76 <_malloc_r+0x3e> + 8005c6c: 4621 mov r1, r4 + 8005c6e: 4630 mov r0, r6 + 8005c70: f000 fc9c bl 80065ac <_sbrk_r> + 8005c74: 6038 str r0, [r7, #0] + 8005c76: 4629 mov r1, r5 + 8005c78: 4630 mov r0, r6 + 8005c7a: f000 fc97 bl 80065ac <_sbrk_r> + 8005c7e: 1c43 adds r3, r0, #1 + 8005c80: d123 bne.n 8005cca <_malloc_r+0x92> + 8005c82: 230c movs r3, #12 + 8005c84: 4630 mov r0, r6 + 8005c86: 6033 str r3, [r6, #0] + 8005c88: f001 fb62 bl 8007350 <__malloc_unlock> + 8005c8c: e7e3 b.n 8005c56 <_malloc_r+0x1e> + 8005c8e: 6823 ldr r3, [r4, #0] + 8005c90: 1b5b subs r3, r3, r5 + 8005c92: d417 bmi.n 8005cc4 <_malloc_r+0x8c> + 8005c94: 2b0b cmp r3, #11 + 8005c96: d903 bls.n 8005ca0 <_malloc_r+0x68> + 8005c98: 6023 str r3, [r4, #0] + 8005c9a: 441c add r4, r3 + 8005c9c: 6025 str r5, [r4, #0] + 8005c9e: e004 b.n 8005caa <_malloc_r+0x72> + 8005ca0: 6863 ldr r3, [r4, #4] + 8005ca2: 42a2 cmp r2, r4 + 8005ca4: bf0c ite eq + 8005ca6: 600b streq r3, [r1, #0] + 8005ca8: 6053 strne r3, [r2, #4] + 8005caa: 4630 mov r0, r6 + 8005cac: f001 fb50 bl 8007350 <__malloc_unlock> + 8005cb0: f104 000b add.w r0, r4, #11 + 8005cb4: 1d23 adds r3, r4, #4 + 8005cb6: f020 0007 bic.w r0, r0, #7 + 8005cba: 1ac2 subs r2, r0, r3 + 8005cbc: d0cc beq.n 8005c58 <_malloc_r+0x20> + 8005cbe: 1a1b subs r3, r3, r0 + 8005cc0: 50a3 str r3, [r4, r2] + 8005cc2: e7c9 b.n 8005c58 <_malloc_r+0x20> + 8005cc4: 4622 mov r2, r4 + 8005cc6: 6864 ldr r4, [r4, #4] + 8005cc8: e7cc b.n 8005c64 <_malloc_r+0x2c> + 8005cca: 1cc4 adds r4, r0, #3 + 8005ccc: f024 0403 bic.w r4, r4, #3 + 8005cd0: 42a0 cmp r0, r4 + 8005cd2: d0e3 beq.n 8005c9c <_malloc_r+0x64> + 8005cd4: 1a21 subs r1, r4, r0 + 8005cd6: 4630 mov r0, r6 + 8005cd8: f000 fc68 bl 80065ac <_sbrk_r> + 8005cdc: 3001 adds r0, #1 + 8005cde: d1dd bne.n 8005c9c <_malloc_r+0x64> + 8005ce0: e7cf b.n 8005c82 <_malloc_r+0x4a> + 8005ce2: bf00 nop + 8005ce4: 20000200 .word 0x20000200 + 8005ce8: 20000204 .word 0x20000204 -08005a18 <__cvt>: - 8005a18: 2b00 cmp r3, #0 - 8005a1a: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8005a1e: 461f mov r7, r3 - 8005a20: bfbb ittet lt - 8005a22: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 - 8005a26: 461f movlt r7, r3 - 8005a28: 2300 movge r3, #0 - 8005a2a: 232d movlt r3, #45 ; 0x2d - 8005a2c: b088 sub sp, #32 - 8005a2e: 4614 mov r4, r2 - 8005a30: 9a12 ldr r2, [sp, #72] ; 0x48 - 8005a32: 9d10 ldr r5, [sp, #64] ; 0x40 - 8005a34: 7013 strb r3, [r2, #0] - 8005a36: 9b14 ldr r3, [sp, #80] ; 0x50 - 8005a38: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c - 8005a3c: f023 0820 bic.w r8, r3, #32 - 8005a40: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8005a44: d005 beq.n 8005a52 <__cvt+0x3a> - 8005a46: f1b8 0f45 cmp.w r8, #69 ; 0x45 - 8005a4a: d100 bne.n 8005a4e <__cvt+0x36> - 8005a4c: 3501 adds r5, #1 - 8005a4e: 2302 movs r3, #2 - 8005a50: e000 b.n 8005a54 <__cvt+0x3c> - 8005a52: 2303 movs r3, #3 - 8005a54: aa07 add r2, sp, #28 - 8005a56: 9204 str r2, [sp, #16] - 8005a58: aa06 add r2, sp, #24 - 8005a5a: e9cd a202 strd sl, r2, [sp, #8] - 8005a5e: e9cd 3500 strd r3, r5, [sp] - 8005a62: 4622 mov r2, r4 - 8005a64: 463b mov r3, r7 - 8005a66: f000 fcf7 bl 8006458 <_dtoa_r> - 8005a6a: f1b8 0f47 cmp.w r8, #71 ; 0x47 - 8005a6e: 4606 mov r6, r0 - 8005a70: d102 bne.n 8005a78 <__cvt+0x60> - 8005a72: 9b11 ldr r3, [sp, #68] ; 0x44 - 8005a74: 07db lsls r3, r3, #31 - 8005a76: d522 bpl.n 8005abe <__cvt+0xa6> - 8005a78: f1b8 0f46 cmp.w r8, #70 ; 0x46 - 8005a7c: eb06 0905 add.w r9, r6, r5 - 8005a80: d110 bne.n 8005aa4 <__cvt+0x8c> - 8005a82: 7833 ldrb r3, [r6, #0] - 8005a84: 2b30 cmp r3, #48 ; 0x30 - 8005a86: d10a bne.n 8005a9e <__cvt+0x86> - 8005a88: 2200 movs r2, #0 - 8005a8a: 2300 movs r3, #0 - 8005a8c: 4620 mov r0, r4 - 8005a8e: 4639 mov r1, r7 - 8005a90: f7fa fff6 bl 8000a80 <__aeabi_dcmpeq> - 8005a94: b918 cbnz r0, 8005a9e <__cvt+0x86> - 8005a96: f1c5 0501 rsb r5, r5, #1 - 8005a9a: f8ca 5000 str.w r5, [sl] - 8005a9e: f8da 3000 ldr.w r3, [sl] - 8005aa2: 4499 add r9, r3 - 8005aa4: 2200 movs r2, #0 - 8005aa6: 2300 movs r3, #0 - 8005aa8: 4620 mov r0, r4 - 8005aaa: 4639 mov r1, r7 - 8005aac: f7fa ffe8 bl 8000a80 <__aeabi_dcmpeq> - 8005ab0: b108 cbz r0, 8005ab6 <__cvt+0x9e> - 8005ab2: f8cd 901c str.w r9, [sp, #28] - 8005ab6: 2230 movs r2, #48 ; 0x30 - 8005ab8: 9b07 ldr r3, [sp, #28] - 8005aba: 454b cmp r3, r9 - 8005abc: d307 bcc.n 8005ace <__cvt+0xb6> - 8005abe: 4630 mov r0, r6 - 8005ac0: 9b07 ldr r3, [sp, #28] - 8005ac2: 9a15 ldr r2, [sp, #84] ; 0x54 - 8005ac4: 1b9b subs r3, r3, r6 - 8005ac6: 6013 str r3, [r2, #0] - 8005ac8: b008 add sp, #32 - 8005aca: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8005ace: 1c59 adds r1, r3, #1 - 8005ad0: 9107 str r1, [sp, #28] - 8005ad2: 701a strb r2, [r3, #0] - 8005ad4: e7f0 b.n 8005ab8 <__cvt+0xa0> +08005cec <__cvt>: + 8005cec: 2b00 cmp r3, #0 + 8005cee: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8005cf2: 461f mov r7, r3 + 8005cf4: bfbb ittet lt + 8005cf6: f103 4300 addlt.w r3, r3, #2147483648 ; 0x80000000 + 8005cfa: 461f movlt r7, r3 + 8005cfc: 2300 movge r3, #0 + 8005cfe: 232d movlt r3, #45 ; 0x2d + 8005d00: b088 sub sp, #32 + 8005d02: 4614 mov r4, r2 + 8005d04: 9a12 ldr r2, [sp, #72] ; 0x48 + 8005d06: 9d10 ldr r5, [sp, #64] ; 0x40 + 8005d08: 7013 strb r3, [r2, #0] + 8005d0a: 9b14 ldr r3, [sp, #80] ; 0x50 + 8005d0c: f8dd a04c ldr.w sl, [sp, #76] ; 0x4c + 8005d10: f023 0820 bic.w r8, r3, #32 + 8005d14: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 8005d18: d005 beq.n 8005d26 <__cvt+0x3a> + 8005d1a: f1b8 0f45 cmp.w r8, #69 ; 0x45 + 8005d1e: d100 bne.n 8005d22 <__cvt+0x36> + 8005d20: 3501 adds r5, #1 + 8005d22: 2302 movs r3, #2 + 8005d24: e000 b.n 8005d28 <__cvt+0x3c> + 8005d26: 2303 movs r3, #3 + 8005d28: aa07 add r2, sp, #28 + 8005d2a: 9204 str r2, [sp, #16] + 8005d2c: aa06 add r2, sp, #24 + 8005d2e: e9cd a202 strd sl, r2, [sp, #8] + 8005d32: e9cd 3500 strd r3, r5, [sp] + 8005d36: 4622 mov r2, r4 + 8005d38: 463b mov r3, r7 + 8005d3a: f000 fcf5 bl 8006728 <_dtoa_r> + 8005d3e: f1b8 0f47 cmp.w r8, #71 ; 0x47 + 8005d42: 4606 mov r6, r0 + 8005d44: d102 bne.n 8005d4c <__cvt+0x60> + 8005d46: 9b11 ldr r3, [sp, #68] ; 0x44 + 8005d48: 07db lsls r3, r3, #31 + 8005d4a: d522 bpl.n 8005d92 <__cvt+0xa6> + 8005d4c: f1b8 0f46 cmp.w r8, #70 ; 0x46 + 8005d50: eb06 0905 add.w r9, r6, r5 + 8005d54: d110 bne.n 8005d78 <__cvt+0x8c> + 8005d56: 7833 ldrb r3, [r6, #0] + 8005d58: 2b30 cmp r3, #48 ; 0x30 + 8005d5a: d10a bne.n 8005d72 <__cvt+0x86> + 8005d5c: 2200 movs r2, #0 + 8005d5e: 2300 movs r3, #0 + 8005d60: 4620 mov r0, r4 + 8005d62: 4639 mov r1, r7 + 8005d64: f7fa fe8c bl 8000a80 <__aeabi_dcmpeq> + 8005d68: b918 cbnz r0, 8005d72 <__cvt+0x86> + 8005d6a: f1c5 0501 rsb r5, r5, #1 + 8005d6e: f8ca 5000 str.w r5, [sl] + 8005d72: f8da 3000 ldr.w r3, [sl] + 8005d76: 4499 add r9, r3 + 8005d78: 2200 movs r2, #0 + 8005d7a: 2300 movs r3, #0 + 8005d7c: 4620 mov r0, r4 + 8005d7e: 4639 mov r1, r7 + 8005d80: f7fa fe7e bl 8000a80 <__aeabi_dcmpeq> + 8005d84: b108 cbz r0, 8005d8a <__cvt+0x9e> + 8005d86: f8cd 901c str.w r9, [sp, #28] + 8005d8a: 2230 movs r2, #48 ; 0x30 + 8005d8c: 9b07 ldr r3, [sp, #28] + 8005d8e: 454b cmp r3, r9 + 8005d90: d307 bcc.n 8005da2 <__cvt+0xb6> + 8005d92: 4630 mov r0, r6 + 8005d94: 9b07 ldr r3, [sp, #28] + 8005d96: 9a15 ldr r2, [sp, #84] ; 0x54 + 8005d98: 1b9b subs r3, r3, r6 + 8005d9a: 6013 str r3, [r2, #0] + 8005d9c: b008 add sp, #32 + 8005d9e: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8005da2: 1c59 adds r1, r3, #1 + 8005da4: 9107 str r1, [sp, #28] + 8005da6: 701a strb r2, [r3, #0] + 8005da8: e7f0 b.n 8005d8c <__cvt+0xa0> -08005ad6 <__exponent>: - 8005ad6: 4603 mov r3, r0 - 8005ad8: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} - 8005ada: 2900 cmp r1, #0 - 8005adc: f803 2b02 strb.w r2, [r3], #2 - 8005ae0: bfb6 itet lt - 8005ae2: 222d movlt r2, #45 ; 0x2d - 8005ae4: 222b movge r2, #43 ; 0x2b - 8005ae6: 4249 neglt r1, r1 - 8005ae8: 2909 cmp r1, #9 - 8005aea: 7042 strb r2, [r0, #1] - 8005aec: dd2b ble.n 8005b46 <__exponent+0x70> - 8005aee: f10d 0407 add.w r4, sp, #7 - 8005af2: 46a4 mov ip, r4 - 8005af4: 270a movs r7, #10 - 8005af6: fb91 f6f7 sdiv r6, r1, r7 - 8005afa: 460a mov r2, r1 - 8005afc: 46a6 mov lr, r4 - 8005afe: fb07 1516 mls r5, r7, r6, r1 - 8005b02: 2a63 cmp r2, #99 ; 0x63 - 8005b04: f105 0530 add.w r5, r5, #48 ; 0x30 - 8005b08: 4631 mov r1, r6 - 8005b0a: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff - 8005b0e: f80e 5c01 strb.w r5, [lr, #-1] - 8005b12: dcf0 bgt.n 8005af6 <__exponent+0x20> - 8005b14: 3130 adds r1, #48 ; 0x30 - 8005b16: f1ae 0502 sub.w r5, lr, #2 - 8005b1a: f804 1c01 strb.w r1, [r4, #-1] - 8005b1e: 4629 mov r1, r5 - 8005b20: 1c44 adds r4, r0, #1 - 8005b22: 4561 cmp r1, ip - 8005b24: d30a bcc.n 8005b3c <__exponent+0x66> - 8005b26: f10d 0209 add.w r2, sp, #9 - 8005b2a: eba2 020e sub.w r2, r2, lr - 8005b2e: 4565 cmp r5, ip - 8005b30: bf88 it hi - 8005b32: 2200 movhi r2, #0 - 8005b34: 4413 add r3, r2 - 8005b36: 1a18 subs r0, r3, r0 - 8005b38: b003 add sp, #12 - 8005b3a: bdf0 pop {r4, r5, r6, r7, pc} - 8005b3c: f811 2b01 ldrb.w r2, [r1], #1 - 8005b40: f804 2f01 strb.w r2, [r4, #1]! - 8005b44: e7ed b.n 8005b22 <__exponent+0x4c> - 8005b46: 2330 movs r3, #48 ; 0x30 - 8005b48: 3130 adds r1, #48 ; 0x30 - 8005b4a: 7083 strb r3, [r0, #2] - 8005b4c: 70c1 strb r1, [r0, #3] - 8005b4e: 1d03 adds r3, r0, #4 - 8005b50: e7f1 b.n 8005b36 <__exponent+0x60> +08005daa <__exponent>: + 8005daa: 4603 mov r3, r0 + 8005dac: b5f7 push {r0, r1, r2, r4, r5, r6, r7, lr} + 8005dae: 2900 cmp r1, #0 + 8005db0: f803 2b02 strb.w r2, [r3], #2 + 8005db4: bfb6 itet lt + 8005db6: 222d movlt r2, #45 ; 0x2d + 8005db8: 222b movge r2, #43 ; 0x2b + 8005dba: 4249 neglt r1, r1 + 8005dbc: 2909 cmp r1, #9 + 8005dbe: 7042 strb r2, [r0, #1] + 8005dc0: dd2b ble.n 8005e1a <__exponent+0x70> + 8005dc2: f10d 0407 add.w r4, sp, #7 + 8005dc6: 46a4 mov ip, r4 + 8005dc8: 270a movs r7, #10 + 8005dca: fb91 f6f7 sdiv r6, r1, r7 + 8005dce: 460a mov r2, r1 + 8005dd0: 46a6 mov lr, r4 + 8005dd2: fb07 1516 mls r5, r7, r6, r1 + 8005dd6: 2a63 cmp r2, #99 ; 0x63 + 8005dd8: f105 0530 add.w r5, r5, #48 ; 0x30 + 8005ddc: 4631 mov r1, r6 + 8005dde: f104 34ff add.w r4, r4, #4294967295 ; 0xffffffff + 8005de2: f80e 5c01 strb.w r5, [lr, #-1] + 8005de6: dcf0 bgt.n 8005dca <__exponent+0x20> + 8005de8: 3130 adds r1, #48 ; 0x30 + 8005dea: f1ae 0502 sub.w r5, lr, #2 + 8005dee: f804 1c01 strb.w r1, [r4, #-1] + 8005df2: 4629 mov r1, r5 + 8005df4: 1c44 adds r4, r0, #1 + 8005df6: 4561 cmp r1, ip + 8005df8: d30a bcc.n 8005e10 <__exponent+0x66> + 8005dfa: f10d 0209 add.w r2, sp, #9 + 8005dfe: eba2 020e sub.w r2, r2, lr + 8005e02: 4565 cmp r5, ip + 8005e04: bf88 it hi + 8005e06: 2200 movhi r2, #0 + 8005e08: 4413 add r3, r2 + 8005e0a: 1a18 subs r0, r3, r0 + 8005e0c: b003 add sp, #12 + 8005e0e: bdf0 pop {r4, r5, r6, r7, pc} + 8005e10: f811 2b01 ldrb.w r2, [r1], #1 + 8005e14: f804 2f01 strb.w r2, [r4, #1]! + 8005e18: e7ed b.n 8005df6 <__exponent+0x4c> + 8005e1a: 2330 movs r3, #48 ; 0x30 + 8005e1c: 3130 adds r1, #48 ; 0x30 + 8005e1e: 7083 strb r3, [r0, #2] + 8005e20: 70c1 strb r1, [r0, #3] + 8005e22: 1d03 adds r3, r0, #4 + 8005e24: e7f1 b.n 8005e0a <__exponent+0x60> ... -08005b54 <_printf_float>: - 8005b54: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8005b58: b091 sub sp, #68 ; 0x44 - 8005b5a: 460c mov r4, r1 - 8005b5c: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 - 8005b60: 4616 mov r6, r2 - 8005b62: 461f mov r7, r3 - 8005b64: 4605 mov r5, r0 - 8005b66: f001 fa65 bl 8007034 <_localeconv_r> - 8005b6a: 6803 ldr r3, [r0, #0] - 8005b6c: 4618 mov r0, r3 - 8005b6e: 9309 str r3, [sp, #36] ; 0x24 - 8005b70: f7fa fb5a bl 8000228 - 8005b74: 2300 movs r3, #0 - 8005b76: 930e str r3, [sp, #56] ; 0x38 - 8005b78: f8d8 3000 ldr.w r3, [r8] - 8005b7c: 900a str r0, [sp, #40] ; 0x28 - 8005b7e: 3307 adds r3, #7 - 8005b80: f023 0307 bic.w r3, r3, #7 - 8005b84: f103 0208 add.w r2, r3, #8 - 8005b88: f894 9018 ldrb.w r9, [r4, #24] - 8005b8c: f8d4 b000 ldr.w fp, [r4] - 8005b90: f8c8 2000 str.w r2, [r8] - 8005b94: e9d3 2300 ldrd r2, r3, [r3] - 8005b98: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 - 8005b9c: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 - 8005ba0: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 - 8005ba4: 930b str r3, [sp, #44] ; 0x2c - 8005ba6: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8005baa: 4640 mov r0, r8 - 8005bac: 4b9c ldr r3, [pc, #624] ; (8005e20 <_printf_float+0x2cc>) - 8005bae: 990b ldr r1, [sp, #44] ; 0x2c - 8005bb0: f7fa ff98 bl 8000ae4 <__aeabi_dcmpun> - 8005bb4: bb70 cbnz r0, 8005c14 <_printf_float+0xc0> - 8005bb6: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8005bba: 4640 mov r0, r8 - 8005bbc: 4b98 ldr r3, [pc, #608] ; (8005e20 <_printf_float+0x2cc>) - 8005bbe: 990b ldr r1, [sp, #44] ; 0x2c - 8005bc0: f7fa ff72 bl 8000aa8 <__aeabi_dcmple> - 8005bc4: bb30 cbnz r0, 8005c14 <_printf_float+0xc0> - 8005bc6: 2200 movs r2, #0 - 8005bc8: 2300 movs r3, #0 - 8005bca: 4640 mov r0, r8 - 8005bcc: 4651 mov r1, sl - 8005bce: f7fa ff61 bl 8000a94 <__aeabi_dcmplt> - 8005bd2: b110 cbz r0, 8005bda <_printf_float+0x86> - 8005bd4: 232d movs r3, #45 ; 0x2d - 8005bd6: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8005bda: 4b92 ldr r3, [pc, #584] ; (8005e24 <_printf_float+0x2d0>) - 8005bdc: 4892 ldr r0, [pc, #584] ; (8005e28 <_printf_float+0x2d4>) - 8005bde: f1b9 0f47 cmp.w r9, #71 ; 0x47 - 8005be2: bf94 ite ls - 8005be4: 4698 movls r8, r3 - 8005be6: 4680 movhi r8, r0 - 8005be8: 2303 movs r3, #3 - 8005bea: f04f 0a00 mov.w sl, #0 - 8005bee: 6123 str r3, [r4, #16] - 8005bf0: f02b 0304 bic.w r3, fp, #4 - 8005bf4: 6023 str r3, [r4, #0] - 8005bf6: 4633 mov r3, r6 - 8005bf8: 4621 mov r1, r4 - 8005bfa: 4628 mov r0, r5 - 8005bfc: 9700 str r7, [sp, #0] - 8005bfe: aa0f add r2, sp, #60 ; 0x3c - 8005c00: f000 f9d4 bl 8005fac <_printf_common> - 8005c04: 3001 adds r0, #1 - 8005c06: f040 8090 bne.w 8005d2a <_printf_float+0x1d6> - 8005c0a: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8005c0e: b011 add sp, #68 ; 0x44 - 8005c10: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8005c14: 4642 mov r2, r8 - 8005c16: 4653 mov r3, sl - 8005c18: 4640 mov r0, r8 - 8005c1a: 4651 mov r1, sl - 8005c1c: f7fa ff62 bl 8000ae4 <__aeabi_dcmpun> - 8005c20: b148 cbz r0, 8005c36 <_printf_float+0xe2> - 8005c22: f1ba 0f00 cmp.w sl, #0 - 8005c26: bfb8 it lt - 8005c28: 232d movlt r3, #45 ; 0x2d - 8005c2a: 4880 ldr r0, [pc, #512] ; (8005e2c <_printf_float+0x2d8>) - 8005c2c: bfb8 it lt - 8005c2e: f884 3043 strblt.w r3, [r4, #67] ; 0x43 - 8005c32: 4b7f ldr r3, [pc, #508] ; (8005e30 <_printf_float+0x2dc>) - 8005c34: e7d3 b.n 8005bde <_printf_float+0x8a> - 8005c36: 6863 ldr r3, [r4, #4] - 8005c38: f009 01df and.w r1, r9, #223 ; 0xdf - 8005c3c: 1c5a adds r2, r3, #1 - 8005c3e: d142 bne.n 8005cc6 <_printf_float+0x172> - 8005c40: 2306 movs r3, #6 - 8005c42: 6063 str r3, [r4, #4] - 8005c44: 2200 movs r2, #0 - 8005c46: 9206 str r2, [sp, #24] - 8005c48: aa0e add r2, sp, #56 ; 0x38 - 8005c4a: e9cd 9204 strd r9, r2, [sp, #16] - 8005c4e: aa0d add r2, sp, #52 ; 0x34 - 8005c50: f44b 6380 orr.w r3, fp, #1024 ; 0x400 - 8005c54: 9203 str r2, [sp, #12] - 8005c56: f10d 0233 add.w r2, sp, #51 ; 0x33 - 8005c5a: e9cd 3201 strd r3, r2, [sp, #4] - 8005c5e: 6023 str r3, [r4, #0] - 8005c60: 6863 ldr r3, [r4, #4] - 8005c62: 4642 mov r2, r8 - 8005c64: 9300 str r3, [sp, #0] - 8005c66: 4628 mov r0, r5 - 8005c68: 4653 mov r3, sl - 8005c6a: 910b str r1, [sp, #44] ; 0x2c - 8005c6c: f7ff fed4 bl 8005a18 <__cvt> - 8005c70: 990b ldr r1, [sp, #44] ; 0x2c - 8005c72: 4680 mov r8, r0 - 8005c74: 2947 cmp r1, #71 ; 0x47 - 8005c76: 990d ldr r1, [sp, #52] ; 0x34 - 8005c78: d108 bne.n 8005c8c <_printf_float+0x138> - 8005c7a: 1cc8 adds r0, r1, #3 - 8005c7c: db02 blt.n 8005c84 <_printf_float+0x130> - 8005c7e: 6863 ldr r3, [r4, #4] - 8005c80: 4299 cmp r1, r3 - 8005c82: dd40 ble.n 8005d06 <_printf_float+0x1b2> - 8005c84: f1a9 0902 sub.w r9, r9, #2 - 8005c88: fa5f f989 uxtb.w r9, r9 - 8005c8c: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8005c90: d81f bhi.n 8005cd2 <_printf_float+0x17e> - 8005c92: 464a mov r2, r9 - 8005c94: 3901 subs r1, #1 - 8005c96: f104 0050 add.w r0, r4, #80 ; 0x50 - 8005c9a: 910d str r1, [sp, #52] ; 0x34 - 8005c9c: f7ff ff1b bl 8005ad6 <__exponent> - 8005ca0: 9a0e ldr r2, [sp, #56] ; 0x38 - 8005ca2: 4682 mov sl, r0 - 8005ca4: 1813 adds r3, r2, r0 - 8005ca6: 2a01 cmp r2, #1 - 8005ca8: 6123 str r3, [r4, #16] - 8005caa: dc02 bgt.n 8005cb2 <_printf_float+0x15e> - 8005cac: 6822 ldr r2, [r4, #0] - 8005cae: 07d2 lsls r2, r2, #31 - 8005cb0: d501 bpl.n 8005cb6 <_printf_float+0x162> - 8005cb2: 3301 adds r3, #1 - 8005cb4: 6123 str r3, [r4, #16] - 8005cb6: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 - 8005cba: 2b00 cmp r3, #0 - 8005cbc: d09b beq.n 8005bf6 <_printf_float+0xa2> - 8005cbe: 232d movs r3, #45 ; 0x2d - 8005cc0: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8005cc4: e797 b.n 8005bf6 <_printf_float+0xa2> - 8005cc6: 2947 cmp r1, #71 ; 0x47 - 8005cc8: d1bc bne.n 8005c44 <_printf_float+0xf0> - 8005cca: 2b00 cmp r3, #0 - 8005ccc: d1ba bne.n 8005c44 <_printf_float+0xf0> - 8005cce: 2301 movs r3, #1 - 8005cd0: e7b7 b.n 8005c42 <_printf_float+0xee> - 8005cd2: f1b9 0f66 cmp.w r9, #102 ; 0x66 - 8005cd6: d118 bne.n 8005d0a <_printf_float+0x1b6> - 8005cd8: 2900 cmp r1, #0 - 8005cda: 6863 ldr r3, [r4, #4] - 8005cdc: dd0b ble.n 8005cf6 <_printf_float+0x1a2> - 8005cde: 6121 str r1, [r4, #16] - 8005ce0: b913 cbnz r3, 8005ce8 <_printf_float+0x194> - 8005ce2: 6822 ldr r2, [r4, #0] - 8005ce4: 07d0 lsls r0, r2, #31 - 8005ce6: d502 bpl.n 8005cee <_printf_float+0x19a> - 8005ce8: 3301 adds r3, #1 - 8005cea: 440b add r3, r1 - 8005cec: 6123 str r3, [r4, #16] - 8005cee: f04f 0a00 mov.w sl, #0 - 8005cf2: 65a1 str r1, [r4, #88] ; 0x58 - 8005cf4: e7df b.n 8005cb6 <_printf_float+0x162> - 8005cf6: b913 cbnz r3, 8005cfe <_printf_float+0x1aa> - 8005cf8: 6822 ldr r2, [r4, #0] - 8005cfa: 07d2 lsls r2, r2, #31 - 8005cfc: d501 bpl.n 8005d02 <_printf_float+0x1ae> - 8005cfe: 3302 adds r3, #2 - 8005d00: e7f4 b.n 8005cec <_printf_float+0x198> - 8005d02: 2301 movs r3, #1 - 8005d04: e7f2 b.n 8005cec <_printf_float+0x198> - 8005d06: f04f 0967 mov.w r9, #103 ; 0x67 - 8005d0a: 9b0e ldr r3, [sp, #56] ; 0x38 - 8005d0c: 4299 cmp r1, r3 - 8005d0e: db05 blt.n 8005d1c <_printf_float+0x1c8> - 8005d10: 6823 ldr r3, [r4, #0] - 8005d12: 6121 str r1, [r4, #16] - 8005d14: 07d8 lsls r0, r3, #31 - 8005d16: d5ea bpl.n 8005cee <_printf_float+0x19a> - 8005d18: 1c4b adds r3, r1, #1 - 8005d1a: e7e7 b.n 8005cec <_printf_float+0x198> - 8005d1c: 2900 cmp r1, #0 - 8005d1e: bfcc ite gt - 8005d20: 2201 movgt r2, #1 - 8005d22: f1c1 0202 rsble r2, r1, #2 - 8005d26: 4413 add r3, r2 - 8005d28: e7e0 b.n 8005cec <_printf_float+0x198> - 8005d2a: 6823 ldr r3, [r4, #0] - 8005d2c: 055a lsls r2, r3, #21 - 8005d2e: d407 bmi.n 8005d40 <_printf_float+0x1ec> - 8005d30: 6923 ldr r3, [r4, #16] - 8005d32: 4642 mov r2, r8 - 8005d34: 4631 mov r1, r6 - 8005d36: 4628 mov r0, r5 - 8005d38: 47b8 blx r7 - 8005d3a: 3001 adds r0, #1 - 8005d3c: d12b bne.n 8005d96 <_printf_float+0x242> - 8005d3e: e764 b.n 8005c0a <_printf_float+0xb6> - 8005d40: f1b9 0f65 cmp.w r9, #101 ; 0x65 - 8005d44: f240 80dd bls.w 8005f02 <_printf_float+0x3ae> - 8005d48: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 8005d4c: 2200 movs r2, #0 - 8005d4e: 2300 movs r3, #0 - 8005d50: f7fa fe96 bl 8000a80 <__aeabi_dcmpeq> - 8005d54: 2800 cmp r0, #0 - 8005d56: d033 beq.n 8005dc0 <_printf_float+0x26c> - 8005d58: 2301 movs r3, #1 - 8005d5a: 4631 mov r1, r6 - 8005d5c: 4628 mov r0, r5 - 8005d5e: 4a35 ldr r2, [pc, #212] ; (8005e34 <_printf_float+0x2e0>) - 8005d60: 47b8 blx r7 - 8005d62: 3001 adds r0, #1 - 8005d64: f43f af51 beq.w 8005c0a <_printf_float+0xb6> - 8005d68: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8005d6c: 429a cmp r2, r3 - 8005d6e: db02 blt.n 8005d76 <_printf_float+0x222> - 8005d70: 6823 ldr r3, [r4, #0] - 8005d72: 07d8 lsls r0, r3, #31 - 8005d74: d50f bpl.n 8005d96 <_printf_float+0x242> - 8005d76: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8005d7a: 4631 mov r1, r6 - 8005d7c: 4628 mov r0, r5 - 8005d7e: 47b8 blx r7 - 8005d80: 3001 adds r0, #1 - 8005d82: f43f af42 beq.w 8005c0a <_printf_float+0xb6> - 8005d86: f04f 0800 mov.w r8, #0 - 8005d8a: f104 091a add.w r9, r4, #26 - 8005d8e: 9b0e ldr r3, [sp, #56] ; 0x38 - 8005d90: 3b01 subs r3, #1 - 8005d92: 4543 cmp r3, r8 - 8005d94: dc09 bgt.n 8005daa <_printf_float+0x256> - 8005d96: 6823 ldr r3, [r4, #0] - 8005d98: 079b lsls r3, r3, #30 - 8005d9a: f100 8102 bmi.w 8005fa2 <_printf_float+0x44e> - 8005d9e: 68e0 ldr r0, [r4, #12] - 8005da0: 9b0f ldr r3, [sp, #60] ; 0x3c - 8005da2: 4298 cmp r0, r3 - 8005da4: bfb8 it lt - 8005da6: 4618 movlt r0, r3 - 8005da8: e731 b.n 8005c0e <_printf_float+0xba> - 8005daa: 2301 movs r3, #1 - 8005dac: 464a mov r2, r9 - 8005dae: 4631 mov r1, r6 - 8005db0: 4628 mov r0, r5 - 8005db2: 47b8 blx r7 - 8005db4: 3001 adds r0, #1 - 8005db6: f43f af28 beq.w 8005c0a <_printf_float+0xb6> - 8005dba: f108 0801 add.w r8, r8, #1 - 8005dbe: e7e6 b.n 8005d8e <_printf_float+0x23a> - 8005dc0: 9b0d ldr r3, [sp, #52] ; 0x34 - 8005dc2: 2b00 cmp r3, #0 - 8005dc4: dc38 bgt.n 8005e38 <_printf_float+0x2e4> - 8005dc6: 2301 movs r3, #1 - 8005dc8: 4631 mov r1, r6 - 8005dca: 4628 mov r0, r5 - 8005dcc: 4a19 ldr r2, [pc, #100] ; (8005e34 <_printf_float+0x2e0>) - 8005dce: 47b8 blx r7 - 8005dd0: 3001 adds r0, #1 - 8005dd2: f43f af1a beq.w 8005c0a <_printf_float+0xb6> - 8005dd6: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8005dda: 4313 orrs r3, r2 - 8005ddc: d102 bne.n 8005de4 <_printf_float+0x290> - 8005dde: 6823 ldr r3, [r4, #0] - 8005de0: 07d9 lsls r1, r3, #31 - 8005de2: d5d8 bpl.n 8005d96 <_printf_float+0x242> - 8005de4: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8005de8: 4631 mov r1, r6 - 8005dea: 4628 mov r0, r5 - 8005dec: 47b8 blx r7 - 8005dee: 3001 adds r0, #1 - 8005df0: f43f af0b beq.w 8005c0a <_printf_float+0xb6> - 8005df4: f04f 0900 mov.w r9, #0 - 8005df8: f104 0a1a add.w sl, r4, #26 - 8005dfc: 9b0d ldr r3, [sp, #52] ; 0x34 - 8005dfe: 425b negs r3, r3 - 8005e00: 454b cmp r3, r9 - 8005e02: dc01 bgt.n 8005e08 <_printf_float+0x2b4> - 8005e04: 9b0e ldr r3, [sp, #56] ; 0x38 - 8005e06: e794 b.n 8005d32 <_printf_float+0x1de> - 8005e08: 2301 movs r3, #1 - 8005e0a: 4652 mov r2, sl - 8005e0c: 4631 mov r1, r6 - 8005e0e: 4628 mov r0, r5 - 8005e10: 47b8 blx r7 - 8005e12: 3001 adds r0, #1 - 8005e14: f43f aef9 beq.w 8005c0a <_printf_float+0xb6> - 8005e18: f109 0901 add.w r9, r9, #1 - 8005e1c: e7ee b.n 8005dfc <_printf_float+0x2a8> - 8005e1e: bf00 nop - 8005e20: 7fefffff .word 0x7fefffff - 8005e24: 0800915c .word 0x0800915c - 8005e28: 08009160 .word 0x08009160 - 8005e2c: 08009168 .word 0x08009168 - 8005e30: 08009164 .word 0x08009164 - 8005e34: 0800916c .word 0x0800916c - 8005e38: 9a0e ldr r2, [sp, #56] ; 0x38 - 8005e3a: 6da3 ldr r3, [r4, #88] ; 0x58 - 8005e3c: 429a cmp r2, r3 - 8005e3e: bfa8 it ge - 8005e40: 461a movge r2, r3 - 8005e42: 2a00 cmp r2, #0 - 8005e44: 4691 mov r9, r2 - 8005e46: dc37 bgt.n 8005eb8 <_printf_float+0x364> - 8005e48: f04f 0b00 mov.w fp, #0 - 8005e4c: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8005e50: f104 021a add.w r2, r4, #26 - 8005e54: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 - 8005e58: ebaa 0309 sub.w r3, sl, r9 - 8005e5c: 455b cmp r3, fp - 8005e5e: dc33 bgt.n 8005ec8 <_printf_float+0x374> - 8005e60: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8005e64: 429a cmp r2, r3 - 8005e66: db3b blt.n 8005ee0 <_printf_float+0x38c> - 8005e68: 6823 ldr r3, [r4, #0] - 8005e6a: 07da lsls r2, r3, #31 - 8005e6c: d438 bmi.n 8005ee0 <_printf_float+0x38c> - 8005e6e: 9a0e ldr r2, [sp, #56] ; 0x38 - 8005e70: 990d ldr r1, [sp, #52] ; 0x34 - 8005e72: eba2 030a sub.w r3, r2, sl - 8005e76: eba2 0901 sub.w r9, r2, r1 - 8005e7a: 4599 cmp r9, r3 - 8005e7c: bfa8 it ge - 8005e7e: 4699 movge r9, r3 - 8005e80: f1b9 0f00 cmp.w r9, #0 - 8005e84: dc34 bgt.n 8005ef0 <_printf_float+0x39c> - 8005e86: f04f 0800 mov.w r8, #0 - 8005e8a: ea29 79e9 bic.w r9, r9, r9, asr #31 - 8005e8e: f104 0a1a add.w sl, r4, #26 - 8005e92: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 - 8005e96: 1a9b subs r3, r3, r2 - 8005e98: eba3 0309 sub.w r3, r3, r9 - 8005e9c: 4543 cmp r3, r8 - 8005e9e: f77f af7a ble.w 8005d96 <_printf_float+0x242> - 8005ea2: 2301 movs r3, #1 - 8005ea4: 4652 mov r2, sl - 8005ea6: 4631 mov r1, r6 - 8005ea8: 4628 mov r0, r5 - 8005eaa: 47b8 blx r7 - 8005eac: 3001 adds r0, #1 - 8005eae: f43f aeac beq.w 8005c0a <_printf_float+0xb6> - 8005eb2: f108 0801 add.w r8, r8, #1 - 8005eb6: e7ec b.n 8005e92 <_printf_float+0x33e> - 8005eb8: 4613 mov r3, r2 - 8005eba: 4631 mov r1, r6 - 8005ebc: 4642 mov r2, r8 - 8005ebe: 4628 mov r0, r5 - 8005ec0: 47b8 blx r7 - 8005ec2: 3001 adds r0, #1 - 8005ec4: d1c0 bne.n 8005e48 <_printf_float+0x2f4> - 8005ec6: e6a0 b.n 8005c0a <_printf_float+0xb6> - 8005ec8: 2301 movs r3, #1 - 8005eca: 4631 mov r1, r6 - 8005ecc: 4628 mov r0, r5 - 8005ece: 920b str r2, [sp, #44] ; 0x2c - 8005ed0: 47b8 blx r7 - 8005ed2: 3001 adds r0, #1 - 8005ed4: f43f ae99 beq.w 8005c0a <_printf_float+0xb6> - 8005ed8: 9a0b ldr r2, [sp, #44] ; 0x2c - 8005eda: f10b 0b01 add.w fp, fp, #1 - 8005ede: e7b9 b.n 8005e54 <_printf_float+0x300> - 8005ee0: 4631 mov r1, r6 - 8005ee2: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8005ee6: 4628 mov r0, r5 - 8005ee8: 47b8 blx r7 - 8005eea: 3001 adds r0, #1 - 8005eec: d1bf bne.n 8005e6e <_printf_float+0x31a> - 8005eee: e68c b.n 8005c0a <_printf_float+0xb6> - 8005ef0: 464b mov r3, r9 - 8005ef2: 4631 mov r1, r6 - 8005ef4: 4628 mov r0, r5 - 8005ef6: eb08 020a add.w r2, r8, sl - 8005efa: 47b8 blx r7 - 8005efc: 3001 adds r0, #1 - 8005efe: d1c2 bne.n 8005e86 <_printf_float+0x332> - 8005f00: e683 b.n 8005c0a <_printf_float+0xb6> - 8005f02: 9a0e ldr r2, [sp, #56] ; 0x38 - 8005f04: 2a01 cmp r2, #1 - 8005f06: dc01 bgt.n 8005f0c <_printf_float+0x3b8> - 8005f08: 07db lsls r3, r3, #31 - 8005f0a: d537 bpl.n 8005f7c <_printf_float+0x428> - 8005f0c: 2301 movs r3, #1 - 8005f0e: 4642 mov r2, r8 - 8005f10: 4631 mov r1, r6 - 8005f12: 4628 mov r0, r5 - 8005f14: 47b8 blx r7 - 8005f16: 3001 adds r0, #1 - 8005f18: f43f ae77 beq.w 8005c0a <_printf_float+0xb6> - 8005f1c: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 - 8005f20: 4631 mov r1, r6 - 8005f22: 4628 mov r0, r5 - 8005f24: 47b8 blx r7 - 8005f26: 3001 adds r0, #1 - 8005f28: f43f ae6f beq.w 8005c0a <_printf_float+0xb6> - 8005f2c: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 - 8005f30: 2200 movs r2, #0 - 8005f32: 2300 movs r3, #0 - 8005f34: f7fa fda4 bl 8000a80 <__aeabi_dcmpeq> - 8005f38: b9d8 cbnz r0, 8005f72 <_printf_float+0x41e> - 8005f3a: 9b0e ldr r3, [sp, #56] ; 0x38 - 8005f3c: f108 0201 add.w r2, r8, #1 - 8005f40: 3b01 subs r3, #1 - 8005f42: 4631 mov r1, r6 - 8005f44: 4628 mov r0, r5 - 8005f46: 47b8 blx r7 - 8005f48: 3001 adds r0, #1 - 8005f4a: d10e bne.n 8005f6a <_printf_float+0x416> - 8005f4c: e65d b.n 8005c0a <_printf_float+0xb6> - 8005f4e: 2301 movs r3, #1 - 8005f50: 464a mov r2, r9 - 8005f52: 4631 mov r1, r6 - 8005f54: 4628 mov r0, r5 - 8005f56: 47b8 blx r7 - 8005f58: 3001 adds r0, #1 - 8005f5a: f43f ae56 beq.w 8005c0a <_printf_float+0xb6> - 8005f5e: f108 0801 add.w r8, r8, #1 - 8005f62: 9b0e ldr r3, [sp, #56] ; 0x38 - 8005f64: 3b01 subs r3, #1 - 8005f66: 4543 cmp r3, r8 - 8005f68: dcf1 bgt.n 8005f4e <_printf_float+0x3fa> - 8005f6a: 4653 mov r3, sl - 8005f6c: f104 0250 add.w r2, r4, #80 ; 0x50 - 8005f70: e6e0 b.n 8005d34 <_printf_float+0x1e0> - 8005f72: f04f 0800 mov.w r8, #0 - 8005f76: f104 091a add.w r9, r4, #26 - 8005f7a: e7f2 b.n 8005f62 <_printf_float+0x40e> - 8005f7c: 2301 movs r3, #1 - 8005f7e: 4642 mov r2, r8 - 8005f80: e7df b.n 8005f42 <_printf_float+0x3ee> - 8005f82: 2301 movs r3, #1 - 8005f84: 464a mov r2, r9 - 8005f86: 4631 mov r1, r6 - 8005f88: 4628 mov r0, r5 - 8005f8a: 47b8 blx r7 - 8005f8c: 3001 adds r0, #1 - 8005f8e: f43f ae3c beq.w 8005c0a <_printf_float+0xb6> - 8005f92: f108 0801 add.w r8, r8, #1 - 8005f96: 68e3 ldr r3, [r4, #12] - 8005f98: 990f ldr r1, [sp, #60] ; 0x3c - 8005f9a: 1a5b subs r3, r3, r1 - 8005f9c: 4543 cmp r3, r8 - 8005f9e: dcf0 bgt.n 8005f82 <_printf_float+0x42e> - 8005fa0: e6fd b.n 8005d9e <_printf_float+0x24a> - 8005fa2: f04f 0800 mov.w r8, #0 - 8005fa6: f104 0919 add.w r9, r4, #25 - 8005faa: e7f4 b.n 8005f96 <_printf_float+0x442> - -08005fac <_printf_common>: - 8005fac: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 8005fb0: 4616 mov r6, r2 - 8005fb2: 4699 mov r9, r3 - 8005fb4: 688a ldr r2, [r1, #8] - 8005fb6: 690b ldr r3, [r1, #16] - 8005fb8: 4607 mov r7, r0 - 8005fba: 4293 cmp r3, r2 - 8005fbc: bfb8 it lt - 8005fbe: 4613 movlt r3, r2 - 8005fc0: 6033 str r3, [r6, #0] - 8005fc2: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 - 8005fc6: 460c mov r4, r1 - 8005fc8: f8dd 8020 ldr.w r8, [sp, #32] - 8005fcc: b10a cbz r2, 8005fd2 <_printf_common+0x26> - 8005fce: 3301 adds r3, #1 - 8005fd0: 6033 str r3, [r6, #0] - 8005fd2: 6823 ldr r3, [r4, #0] - 8005fd4: 0699 lsls r1, r3, #26 - 8005fd6: bf42 ittt mi - 8005fd8: 6833 ldrmi r3, [r6, #0] - 8005fda: 3302 addmi r3, #2 - 8005fdc: 6033 strmi r3, [r6, #0] - 8005fde: 6825 ldr r5, [r4, #0] - 8005fe0: f015 0506 ands.w r5, r5, #6 - 8005fe4: d106 bne.n 8005ff4 <_printf_common+0x48> - 8005fe6: f104 0a19 add.w sl, r4, #25 - 8005fea: 68e3 ldr r3, [r4, #12] - 8005fec: 6832 ldr r2, [r6, #0] - 8005fee: 1a9b subs r3, r3, r2 - 8005ff0: 42ab cmp r3, r5 - 8005ff2: dc28 bgt.n 8006046 <_printf_common+0x9a> - 8005ff4: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 - 8005ff8: 1e13 subs r3, r2, #0 - 8005ffa: 6822 ldr r2, [r4, #0] - 8005ffc: bf18 it ne - 8005ffe: 2301 movne r3, #1 - 8006000: 0692 lsls r2, r2, #26 - 8006002: d42d bmi.n 8006060 <_printf_common+0xb4> - 8006004: 4649 mov r1, r9 - 8006006: 4638 mov r0, r7 - 8006008: f104 0243 add.w r2, r4, #67 ; 0x43 - 800600c: 47c0 blx r8 +08005e28 <_printf_float>: + 8005e28: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8005e2c: b091 sub sp, #68 ; 0x44 + 8005e2e: 460c mov r4, r1 + 8005e30: f8dd 8068 ldr.w r8, [sp, #104] ; 0x68 + 8005e34: 4616 mov r6, r2 + 8005e36: 461f mov r7, r3 + 8005e38: 4605 mov r5, r0 + 8005e3a: f001 fa63 bl 8007304 <_localeconv_r> + 8005e3e: 6803 ldr r3, [r0, #0] + 8005e40: 4618 mov r0, r3 + 8005e42: 9309 str r3, [sp, #36] ; 0x24 + 8005e44: f7fa f9f0 bl 8000228 + 8005e48: 2300 movs r3, #0 + 8005e4a: 930e str r3, [sp, #56] ; 0x38 + 8005e4c: f8d8 3000 ldr.w r3, [r8] + 8005e50: 900a str r0, [sp, #40] ; 0x28 + 8005e52: 3307 adds r3, #7 + 8005e54: f023 0307 bic.w r3, r3, #7 + 8005e58: f103 0208 add.w r2, r3, #8 + 8005e5c: f894 9018 ldrb.w r9, [r4, #24] + 8005e60: f8d4 b000 ldr.w fp, [r4] + 8005e64: f8c8 2000 str.w r2, [r8] + 8005e68: e9d3 2300 ldrd r2, r3, [r3] + 8005e6c: e9c4 2312 strd r2, r3, [r4, #72] ; 0x48 + 8005e70: e9d4 8a12 ldrd r8, sl, [r4, #72] ; 0x48 + 8005e74: f02a 4300 bic.w r3, sl, #2147483648 ; 0x80000000 + 8005e78: 930b str r3, [sp, #44] ; 0x2c + 8005e7a: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8005e7e: 4640 mov r0, r8 + 8005e80: 4b9c ldr r3, [pc, #624] ; (80060f4 <_printf_float+0x2cc>) + 8005e82: 990b ldr r1, [sp, #44] ; 0x2c + 8005e84: f7fa fe2e bl 8000ae4 <__aeabi_dcmpun> + 8005e88: bb70 cbnz r0, 8005ee8 <_printf_float+0xc0> + 8005e8a: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8005e8e: 4640 mov r0, r8 + 8005e90: 4b98 ldr r3, [pc, #608] ; (80060f4 <_printf_float+0x2cc>) + 8005e92: 990b ldr r1, [sp, #44] ; 0x2c + 8005e94: f7fa fe08 bl 8000aa8 <__aeabi_dcmple> + 8005e98: bb30 cbnz r0, 8005ee8 <_printf_float+0xc0> + 8005e9a: 2200 movs r2, #0 + 8005e9c: 2300 movs r3, #0 + 8005e9e: 4640 mov r0, r8 + 8005ea0: 4651 mov r1, sl + 8005ea2: f7fa fdf7 bl 8000a94 <__aeabi_dcmplt> + 8005ea6: b110 cbz r0, 8005eae <_printf_float+0x86> + 8005ea8: 232d movs r3, #45 ; 0x2d + 8005eaa: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8005eae: 4b92 ldr r3, [pc, #584] ; (80060f8 <_printf_float+0x2d0>) + 8005eb0: 4892 ldr r0, [pc, #584] ; (80060fc <_printf_float+0x2d4>) + 8005eb2: f1b9 0f47 cmp.w r9, #71 ; 0x47 + 8005eb6: bf94 ite ls + 8005eb8: 4698 movls r8, r3 + 8005eba: 4680 movhi r8, r0 + 8005ebc: 2303 movs r3, #3 + 8005ebe: f04f 0a00 mov.w sl, #0 + 8005ec2: 6123 str r3, [r4, #16] + 8005ec4: f02b 0304 bic.w r3, fp, #4 + 8005ec8: 6023 str r3, [r4, #0] + 8005eca: 4633 mov r3, r6 + 8005ecc: 4621 mov r1, r4 + 8005ece: 4628 mov r0, r5 + 8005ed0: 9700 str r7, [sp, #0] + 8005ed2: aa0f add r2, sp, #60 ; 0x3c + 8005ed4: f000 f9d4 bl 8006280 <_printf_common> + 8005ed8: 3001 adds r0, #1 + 8005eda: f040 8090 bne.w 8005ffe <_printf_float+0x1d6> + 8005ede: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8005ee2: b011 add sp, #68 ; 0x44 + 8005ee4: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8005ee8: 4642 mov r2, r8 + 8005eea: 4653 mov r3, sl + 8005eec: 4640 mov r0, r8 + 8005eee: 4651 mov r1, sl + 8005ef0: f7fa fdf8 bl 8000ae4 <__aeabi_dcmpun> + 8005ef4: b148 cbz r0, 8005f0a <_printf_float+0xe2> + 8005ef6: f1ba 0f00 cmp.w sl, #0 + 8005efa: bfb8 it lt + 8005efc: 232d movlt r3, #45 ; 0x2d + 8005efe: 4880 ldr r0, [pc, #512] ; (8006100 <_printf_float+0x2d8>) + 8005f00: bfb8 it lt + 8005f02: f884 3043 strblt.w r3, [r4, #67] ; 0x43 + 8005f06: 4b7f ldr r3, [pc, #508] ; (8006104 <_printf_float+0x2dc>) + 8005f08: e7d3 b.n 8005eb2 <_printf_float+0x8a> + 8005f0a: 6863 ldr r3, [r4, #4] + 8005f0c: f009 01df and.w r1, r9, #223 ; 0xdf + 8005f10: 1c5a adds r2, r3, #1 + 8005f12: d142 bne.n 8005f9a <_printf_float+0x172> + 8005f14: 2306 movs r3, #6 + 8005f16: 6063 str r3, [r4, #4] + 8005f18: 2200 movs r2, #0 + 8005f1a: 9206 str r2, [sp, #24] + 8005f1c: aa0e add r2, sp, #56 ; 0x38 + 8005f1e: e9cd 9204 strd r9, r2, [sp, #16] + 8005f22: aa0d add r2, sp, #52 ; 0x34 + 8005f24: f44b 6380 orr.w r3, fp, #1024 ; 0x400 + 8005f28: 9203 str r2, [sp, #12] + 8005f2a: f10d 0233 add.w r2, sp, #51 ; 0x33 + 8005f2e: e9cd 3201 strd r3, r2, [sp, #4] + 8005f32: 6023 str r3, [r4, #0] + 8005f34: 6863 ldr r3, [r4, #4] + 8005f36: 4642 mov r2, r8 + 8005f38: 9300 str r3, [sp, #0] + 8005f3a: 4628 mov r0, r5 + 8005f3c: 4653 mov r3, sl + 8005f3e: 910b str r1, [sp, #44] ; 0x2c + 8005f40: f7ff fed4 bl 8005cec <__cvt> + 8005f44: 990b ldr r1, [sp, #44] ; 0x2c + 8005f46: 4680 mov r8, r0 + 8005f48: 2947 cmp r1, #71 ; 0x47 + 8005f4a: 990d ldr r1, [sp, #52] ; 0x34 + 8005f4c: d108 bne.n 8005f60 <_printf_float+0x138> + 8005f4e: 1cc8 adds r0, r1, #3 + 8005f50: db02 blt.n 8005f58 <_printf_float+0x130> + 8005f52: 6863 ldr r3, [r4, #4] + 8005f54: 4299 cmp r1, r3 + 8005f56: dd40 ble.n 8005fda <_printf_float+0x1b2> + 8005f58: f1a9 0902 sub.w r9, r9, #2 + 8005f5c: fa5f f989 uxtb.w r9, r9 + 8005f60: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 8005f64: d81f bhi.n 8005fa6 <_printf_float+0x17e> + 8005f66: 464a mov r2, r9 + 8005f68: 3901 subs r1, #1 + 8005f6a: f104 0050 add.w r0, r4, #80 ; 0x50 + 8005f6e: 910d str r1, [sp, #52] ; 0x34 + 8005f70: f7ff ff1b bl 8005daa <__exponent> + 8005f74: 9a0e ldr r2, [sp, #56] ; 0x38 + 8005f76: 4682 mov sl, r0 + 8005f78: 1813 adds r3, r2, r0 + 8005f7a: 2a01 cmp r2, #1 + 8005f7c: 6123 str r3, [r4, #16] + 8005f7e: dc02 bgt.n 8005f86 <_printf_float+0x15e> + 8005f80: 6822 ldr r2, [r4, #0] + 8005f82: 07d2 lsls r2, r2, #31 + 8005f84: d501 bpl.n 8005f8a <_printf_float+0x162> + 8005f86: 3301 adds r3, #1 + 8005f88: 6123 str r3, [r4, #16] + 8005f8a: f89d 3033 ldrb.w r3, [sp, #51] ; 0x33 + 8005f8e: 2b00 cmp r3, #0 + 8005f90: d09b beq.n 8005eca <_printf_float+0xa2> + 8005f92: 232d movs r3, #45 ; 0x2d + 8005f94: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8005f98: e797 b.n 8005eca <_printf_float+0xa2> + 8005f9a: 2947 cmp r1, #71 ; 0x47 + 8005f9c: d1bc bne.n 8005f18 <_printf_float+0xf0> + 8005f9e: 2b00 cmp r3, #0 + 8005fa0: d1ba bne.n 8005f18 <_printf_float+0xf0> + 8005fa2: 2301 movs r3, #1 + 8005fa4: e7b7 b.n 8005f16 <_printf_float+0xee> + 8005fa6: f1b9 0f66 cmp.w r9, #102 ; 0x66 + 8005faa: d118 bne.n 8005fde <_printf_float+0x1b6> + 8005fac: 2900 cmp r1, #0 + 8005fae: 6863 ldr r3, [r4, #4] + 8005fb0: dd0b ble.n 8005fca <_printf_float+0x1a2> + 8005fb2: 6121 str r1, [r4, #16] + 8005fb4: b913 cbnz r3, 8005fbc <_printf_float+0x194> + 8005fb6: 6822 ldr r2, [r4, #0] + 8005fb8: 07d0 lsls r0, r2, #31 + 8005fba: d502 bpl.n 8005fc2 <_printf_float+0x19a> + 8005fbc: 3301 adds r3, #1 + 8005fbe: 440b add r3, r1 + 8005fc0: 6123 str r3, [r4, #16] + 8005fc2: f04f 0a00 mov.w sl, #0 + 8005fc6: 65a1 str r1, [r4, #88] ; 0x58 + 8005fc8: e7df b.n 8005f8a <_printf_float+0x162> + 8005fca: b913 cbnz r3, 8005fd2 <_printf_float+0x1aa> + 8005fcc: 6822 ldr r2, [r4, #0] + 8005fce: 07d2 lsls r2, r2, #31 + 8005fd0: d501 bpl.n 8005fd6 <_printf_float+0x1ae> + 8005fd2: 3302 adds r3, #2 + 8005fd4: e7f4 b.n 8005fc0 <_printf_float+0x198> + 8005fd6: 2301 movs r3, #1 + 8005fd8: e7f2 b.n 8005fc0 <_printf_float+0x198> + 8005fda: f04f 0967 mov.w r9, #103 ; 0x67 + 8005fde: 9b0e ldr r3, [sp, #56] ; 0x38 + 8005fe0: 4299 cmp r1, r3 + 8005fe2: db05 blt.n 8005ff0 <_printf_float+0x1c8> + 8005fe4: 6823 ldr r3, [r4, #0] + 8005fe6: 6121 str r1, [r4, #16] + 8005fe8: 07d8 lsls r0, r3, #31 + 8005fea: d5ea bpl.n 8005fc2 <_printf_float+0x19a> + 8005fec: 1c4b adds r3, r1, #1 + 8005fee: e7e7 b.n 8005fc0 <_printf_float+0x198> + 8005ff0: 2900 cmp r1, #0 + 8005ff2: bfcc ite gt + 8005ff4: 2201 movgt r2, #1 + 8005ff6: f1c1 0202 rsble r2, r1, #2 + 8005ffa: 4413 add r3, r2 + 8005ffc: e7e0 b.n 8005fc0 <_printf_float+0x198> + 8005ffe: 6823 ldr r3, [r4, #0] + 8006000: 055a lsls r2, r3, #21 + 8006002: d407 bmi.n 8006014 <_printf_float+0x1ec> + 8006004: 6923 ldr r3, [r4, #16] + 8006006: 4642 mov r2, r8 + 8006008: 4631 mov r1, r6 + 800600a: 4628 mov r0, r5 + 800600c: 47b8 blx r7 800600e: 3001 adds r0, #1 - 8006010: d020 beq.n 8006054 <_printf_common+0xa8> - 8006012: 6823 ldr r3, [r4, #0] - 8006014: 68e5 ldr r5, [r4, #12] - 8006016: f003 0306 and.w r3, r3, #6 - 800601a: 2b04 cmp r3, #4 - 800601c: bf18 it ne - 800601e: 2500 movne r5, #0 - 8006020: 6832 ldr r2, [r6, #0] - 8006022: f04f 0600 mov.w r6, #0 - 8006026: 68a3 ldr r3, [r4, #8] - 8006028: bf08 it eq - 800602a: 1aad subeq r5, r5, r2 - 800602c: 6922 ldr r2, [r4, #16] - 800602e: bf08 it eq - 8006030: ea25 75e5 biceq.w r5, r5, r5, asr #31 - 8006034: 4293 cmp r3, r2 - 8006036: bfc4 itt gt - 8006038: 1a9b subgt r3, r3, r2 - 800603a: 18ed addgt r5, r5, r3 - 800603c: 341a adds r4, #26 - 800603e: 42b5 cmp r5, r6 - 8006040: d11a bne.n 8006078 <_printf_common+0xcc> - 8006042: 2000 movs r0, #0 - 8006044: e008 b.n 8006058 <_printf_common+0xac> - 8006046: 2301 movs r3, #1 - 8006048: 4652 mov r2, sl - 800604a: 4649 mov r1, r9 - 800604c: 4638 mov r0, r7 - 800604e: 47c0 blx r8 - 8006050: 3001 adds r0, #1 - 8006052: d103 bne.n 800605c <_printf_common+0xb0> - 8006054: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8006058: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 800605c: 3501 adds r5, #1 - 800605e: e7c4 b.n 8005fea <_printf_common+0x3e> - 8006060: 2030 movs r0, #48 ; 0x30 - 8006062: 18e1 adds r1, r4, r3 - 8006064: f881 0043 strb.w r0, [r1, #67] ; 0x43 - 8006068: 1c5a adds r2, r3, #1 - 800606a: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 - 800606e: 4422 add r2, r4 - 8006070: 3302 adds r3, #2 - 8006072: f882 1043 strb.w r1, [r2, #67] ; 0x43 - 8006076: e7c5 b.n 8006004 <_printf_common+0x58> - 8006078: 2301 movs r3, #1 - 800607a: 4622 mov r2, r4 - 800607c: 4649 mov r1, r9 - 800607e: 4638 mov r0, r7 - 8006080: 47c0 blx r8 - 8006082: 3001 adds r0, #1 - 8006084: d0e6 beq.n 8006054 <_printf_common+0xa8> - 8006086: 3601 adds r6, #1 - 8006088: e7d9 b.n 800603e <_printf_common+0x92> + 8006010: d12b bne.n 800606a <_printf_float+0x242> + 8006012: e764 b.n 8005ede <_printf_float+0xb6> + 8006014: f1b9 0f65 cmp.w r9, #101 ; 0x65 + 8006018: f240 80dd bls.w 80061d6 <_printf_float+0x3ae> + 800601c: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 8006020: 2200 movs r2, #0 + 8006022: 2300 movs r3, #0 + 8006024: f7fa fd2c bl 8000a80 <__aeabi_dcmpeq> + 8006028: 2800 cmp r0, #0 + 800602a: d033 beq.n 8006094 <_printf_float+0x26c> + 800602c: 2301 movs r3, #1 + 800602e: 4631 mov r1, r6 + 8006030: 4628 mov r0, r5 + 8006032: 4a35 ldr r2, [pc, #212] ; (8006108 <_printf_float+0x2e0>) + 8006034: 47b8 blx r7 + 8006036: 3001 adds r0, #1 + 8006038: f43f af51 beq.w 8005ede <_printf_float+0xb6> + 800603c: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8006040: 429a cmp r2, r3 + 8006042: db02 blt.n 800604a <_printf_float+0x222> + 8006044: 6823 ldr r3, [r4, #0] + 8006046: 07d8 lsls r0, r3, #31 + 8006048: d50f bpl.n 800606a <_printf_float+0x242> + 800604a: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 800604e: 4631 mov r1, r6 + 8006050: 4628 mov r0, r5 + 8006052: 47b8 blx r7 + 8006054: 3001 adds r0, #1 + 8006056: f43f af42 beq.w 8005ede <_printf_float+0xb6> + 800605a: f04f 0800 mov.w r8, #0 + 800605e: f104 091a add.w r9, r4, #26 + 8006062: 9b0e ldr r3, [sp, #56] ; 0x38 + 8006064: 3b01 subs r3, #1 + 8006066: 4543 cmp r3, r8 + 8006068: dc09 bgt.n 800607e <_printf_float+0x256> + 800606a: 6823 ldr r3, [r4, #0] + 800606c: 079b lsls r3, r3, #30 + 800606e: f100 8102 bmi.w 8006276 <_printf_float+0x44e> + 8006072: 68e0 ldr r0, [r4, #12] + 8006074: 9b0f ldr r3, [sp, #60] ; 0x3c + 8006076: 4298 cmp r0, r3 + 8006078: bfb8 it lt + 800607a: 4618 movlt r0, r3 + 800607c: e731 b.n 8005ee2 <_printf_float+0xba> + 800607e: 2301 movs r3, #1 + 8006080: 464a mov r2, r9 + 8006082: 4631 mov r1, r6 + 8006084: 4628 mov r0, r5 + 8006086: 47b8 blx r7 + 8006088: 3001 adds r0, #1 + 800608a: f43f af28 beq.w 8005ede <_printf_float+0xb6> + 800608e: f108 0801 add.w r8, r8, #1 + 8006092: e7e6 b.n 8006062 <_printf_float+0x23a> + 8006094: 9b0d ldr r3, [sp, #52] ; 0x34 + 8006096: 2b00 cmp r3, #0 + 8006098: dc38 bgt.n 800610c <_printf_float+0x2e4> + 800609a: 2301 movs r3, #1 + 800609c: 4631 mov r1, r6 + 800609e: 4628 mov r0, r5 + 80060a0: 4a19 ldr r2, [pc, #100] ; (8006108 <_printf_float+0x2e0>) + 80060a2: 47b8 blx r7 + 80060a4: 3001 adds r0, #1 + 80060a6: f43f af1a beq.w 8005ede <_printf_float+0xb6> + 80060aa: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 80060ae: 4313 orrs r3, r2 + 80060b0: d102 bne.n 80060b8 <_printf_float+0x290> + 80060b2: 6823 ldr r3, [r4, #0] + 80060b4: 07d9 lsls r1, r3, #31 + 80060b6: d5d8 bpl.n 800606a <_printf_float+0x242> + 80060b8: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 80060bc: 4631 mov r1, r6 + 80060be: 4628 mov r0, r5 + 80060c0: 47b8 blx r7 + 80060c2: 3001 adds r0, #1 + 80060c4: f43f af0b beq.w 8005ede <_printf_float+0xb6> + 80060c8: f04f 0900 mov.w r9, #0 + 80060cc: f104 0a1a add.w sl, r4, #26 + 80060d0: 9b0d ldr r3, [sp, #52] ; 0x34 + 80060d2: 425b negs r3, r3 + 80060d4: 454b cmp r3, r9 + 80060d6: dc01 bgt.n 80060dc <_printf_float+0x2b4> + 80060d8: 9b0e ldr r3, [sp, #56] ; 0x38 + 80060da: e794 b.n 8006006 <_printf_float+0x1de> + 80060dc: 2301 movs r3, #1 + 80060de: 4652 mov r2, sl + 80060e0: 4631 mov r1, r6 + 80060e2: 4628 mov r0, r5 + 80060e4: 47b8 blx r7 + 80060e6: 3001 adds r0, #1 + 80060e8: f43f aef9 beq.w 8005ede <_printf_float+0xb6> + 80060ec: f109 0901 add.w r9, r9, #1 + 80060f0: e7ee b.n 80060d0 <_printf_float+0x2a8> + 80060f2: bf00 nop + 80060f4: 7fefffff .word 0x7fefffff + 80060f8: 0800944c .word 0x0800944c + 80060fc: 08009450 .word 0x08009450 + 8006100: 08009458 .word 0x08009458 + 8006104: 08009454 .word 0x08009454 + 8006108: 0800945c .word 0x0800945c + 800610c: 9a0e ldr r2, [sp, #56] ; 0x38 + 800610e: 6da3 ldr r3, [r4, #88] ; 0x58 + 8006110: 429a cmp r2, r3 + 8006112: bfa8 it ge + 8006114: 461a movge r2, r3 + 8006116: 2a00 cmp r2, #0 + 8006118: 4691 mov r9, r2 + 800611a: dc37 bgt.n 800618c <_printf_float+0x364> + 800611c: f04f 0b00 mov.w fp, #0 + 8006120: ea29 79e9 bic.w r9, r9, r9, asr #31 + 8006124: f104 021a add.w r2, r4, #26 + 8006128: f8d4 a058 ldr.w sl, [r4, #88] ; 0x58 + 800612c: ebaa 0309 sub.w r3, sl, r9 + 8006130: 455b cmp r3, fp + 8006132: dc33 bgt.n 800619c <_printf_float+0x374> + 8006134: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 8006138: 429a cmp r2, r3 + 800613a: db3b blt.n 80061b4 <_printf_float+0x38c> + 800613c: 6823 ldr r3, [r4, #0] + 800613e: 07da lsls r2, r3, #31 + 8006140: d438 bmi.n 80061b4 <_printf_float+0x38c> + 8006142: 9a0e ldr r2, [sp, #56] ; 0x38 + 8006144: 990d ldr r1, [sp, #52] ; 0x34 + 8006146: eba2 030a sub.w r3, r2, sl + 800614a: eba2 0901 sub.w r9, r2, r1 + 800614e: 4599 cmp r9, r3 + 8006150: bfa8 it ge + 8006152: 4699 movge r9, r3 + 8006154: f1b9 0f00 cmp.w r9, #0 + 8006158: dc34 bgt.n 80061c4 <_printf_float+0x39c> + 800615a: f04f 0800 mov.w r8, #0 + 800615e: ea29 79e9 bic.w r9, r9, r9, asr #31 + 8006162: f104 0a1a add.w sl, r4, #26 + 8006166: e9dd 230d ldrd r2, r3, [sp, #52] ; 0x34 + 800616a: 1a9b subs r3, r3, r2 + 800616c: eba3 0309 sub.w r3, r3, r9 + 8006170: 4543 cmp r3, r8 + 8006172: f77f af7a ble.w 800606a <_printf_float+0x242> + 8006176: 2301 movs r3, #1 + 8006178: 4652 mov r2, sl + 800617a: 4631 mov r1, r6 + 800617c: 4628 mov r0, r5 + 800617e: 47b8 blx r7 + 8006180: 3001 adds r0, #1 + 8006182: f43f aeac beq.w 8005ede <_printf_float+0xb6> + 8006186: f108 0801 add.w r8, r8, #1 + 800618a: e7ec b.n 8006166 <_printf_float+0x33e> + 800618c: 4613 mov r3, r2 + 800618e: 4631 mov r1, r6 + 8006190: 4642 mov r2, r8 + 8006192: 4628 mov r0, r5 + 8006194: 47b8 blx r7 + 8006196: 3001 adds r0, #1 + 8006198: d1c0 bne.n 800611c <_printf_float+0x2f4> + 800619a: e6a0 b.n 8005ede <_printf_float+0xb6> + 800619c: 2301 movs r3, #1 + 800619e: 4631 mov r1, r6 + 80061a0: 4628 mov r0, r5 + 80061a2: 920b str r2, [sp, #44] ; 0x2c + 80061a4: 47b8 blx r7 + 80061a6: 3001 adds r0, #1 + 80061a8: f43f ae99 beq.w 8005ede <_printf_float+0xb6> + 80061ac: 9a0b ldr r2, [sp, #44] ; 0x2c + 80061ae: f10b 0b01 add.w fp, fp, #1 + 80061b2: e7b9 b.n 8006128 <_printf_float+0x300> + 80061b4: 4631 mov r1, r6 + 80061b6: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 80061ba: 4628 mov r0, r5 + 80061bc: 47b8 blx r7 + 80061be: 3001 adds r0, #1 + 80061c0: d1bf bne.n 8006142 <_printf_float+0x31a> + 80061c2: e68c b.n 8005ede <_printf_float+0xb6> + 80061c4: 464b mov r3, r9 + 80061c6: 4631 mov r1, r6 + 80061c8: 4628 mov r0, r5 + 80061ca: eb08 020a add.w r2, r8, sl + 80061ce: 47b8 blx r7 + 80061d0: 3001 adds r0, #1 + 80061d2: d1c2 bne.n 800615a <_printf_float+0x332> + 80061d4: e683 b.n 8005ede <_printf_float+0xb6> + 80061d6: 9a0e ldr r2, [sp, #56] ; 0x38 + 80061d8: 2a01 cmp r2, #1 + 80061da: dc01 bgt.n 80061e0 <_printf_float+0x3b8> + 80061dc: 07db lsls r3, r3, #31 + 80061de: d537 bpl.n 8006250 <_printf_float+0x428> + 80061e0: 2301 movs r3, #1 + 80061e2: 4642 mov r2, r8 + 80061e4: 4631 mov r1, r6 + 80061e6: 4628 mov r0, r5 + 80061e8: 47b8 blx r7 + 80061ea: 3001 adds r0, #1 + 80061ec: f43f ae77 beq.w 8005ede <_printf_float+0xb6> + 80061f0: e9dd 2309 ldrd r2, r3, [sp, #36] ; 0x24 + 80061f4: 4631 mov r1, r6 + 80061f6: 4628 mov r0, r5 + 80061f8: 47b8 blx r7 + 80061fa: 3001 adds r0, #1 + 80061fc: f43f ae6f beq.w 8005ede <_printf_float+0xb6> + 8006200: e9d4 0112 ldrd r0, r1, [r4, #72] ; 0x48 + 8006204: 2200 movs r2, #0 + 8006206: 2300 movs r3, #0 + 8006208: f7fa fc3a bl 8000a80 <__aeabi_dcmpeq> + 800620c: b9d8 cbnz r0, 8006246 <_printf_float+0x41e> + 800620e: 9b0e ldr r3, [sp, #56] ; 0x38 + 8006210: f108 0201 add.w r2, r8, #1 + 8006214: 3b01 subs r3, #1 + 8006216: 4631 mov r1, r6 + 8006218: 4628 mov r0, r5 + 800621a: 47b8 blx r7 + 800621c: 3001 adds r0, #1 + 800621e: d10e bne.n 800623e <_printf_float+0x416> + 8006220: e65d b.n 8005ede <_printf_float+0xb6> + 8006222: 2301 movs r3, #1 + 8006224: 464a mov r2, r9 + 8006226: 4631 mov r1, r6 + 8006228: 4628 mov r0, r5 + 800622a: 47b8 blx r7 + 800622c: 3001 adds r0, #1 + 800622e: f43f ae56 beq.w 8005ede <_printf_float+0xb6> + 8006232: f108 0801 add.w r8, r8, #1 + 8006236: 9b0e ldr r3, [sp, #56] ; 0x38 + 8006238: 3b01 subs r3, #1 + 800623a: 4543 cmp r3, r8 + 800623c: dcf1 bgt.n 8006222 <_printf_float+0x3fa> + 800623e: 4653 mov r3, sl + 8006240: f104 0250 add.w r2, r4, #80 ; 0x50 + 8006244: e6e0 b.n 8006008 <_printf_float+0x1e0> + 8006246: f04f 0800 mov.w r8, #0 + 800624a: f104 091a add.w r9, r4, #26 + 800624e: e7f2 b.n 8006236 <_printf_float+0x40e> + 8006250: 2301 movs r3, #1 + 8006252: 4642 mov r2, r8 + 8006254: e7df b.n 8006216 <_printf_float+0x3ee> + 8006256: 2301 movs r3, #1 + 8006258: 464a mov r2, r9 + 800625a: 4631 mov r1, r6 + 800625c: 4628 mov r0, r5 + 800625e: 47b8 blx r7 + 8006260: 3001 adds r0, #1 + 8006262: f43f ae3c beq.w 8005ede <_printf_float+0xb6> + 8006266: f108 0801 add.w r8, r8, #1 + 800626a: 68e3 ldr r3, [r4, #12] + 800626c: 990f ldr r1, [sp, #60] ; 0x3c + 800626e: 1a5b subs r3, r3, r1 + 8006270: 4543 cmp r3, r8 + 8006272: dcf0 bgt.n 8006256 <_printf_float+0x42e> + 8006274: e6fd b.n 8006072 <_printf_float+0x24a> + 8006276: f04f 0800 mov.w r8, #0 + 800627a: f104 0919 add.w r9, r4, #25 + 800627e: e7f4 b.n 800626a <_printf_float+0x442> + +08006280 <_printf_common>: + 8006280: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8006284: 4616 mov r6, r2 + 8006286: 4699 mov r9, r3 + 8006288: 688a ldr r2, [r1, #8] + 800628a: 690b ldr r3, [r1, #16] + 800628c: 4607 mov r7, r0 + 800628e: 4293 cmp r3, r2 + 8006290: bfb8 it lt + 8006292: 4613 movlt r3, r2 + 8006294: 6033 str r3, [r6, #0] + 8006296: f891 2043 ldrb.w r2, [r1, #67] ; 0x43 + 800629a: 460c mov r4, r1 + 800629c: f8dd 8020 ldr.w r8, [sp, #32] + 80062a0: b10a cbz r2, 80062a6 <_printf_common+0x26> + 80062a2: 3301 adds r3, #1 + 80062a4: 6033 str r3, [r6, #0] + 80062a6: 6823 ldr r3, [r4, #0] + 80062a8: 0699 lsls r1, r3, #26 + 80062aa: bf42 ittt mi + 80062ac: 6833 ldrmi r3, [r6, #0] + 80062ae: 3302 addmi r3, #2 + 80062b0: 6033 strmi r3, [r6, #0] + 80062b2: 6825 ldr r5, [r4, #0] + 80062b4: f015 0506 ands.w r5, r5, #6 + 80062b8: d106 bne.n 80062c8 <_printf_common+0x48> + 80062ba: f104 0a19 add.w sl, r4, #25 + 80062be: 68e3 ldr r3, [r4, #12] + 80062c0: 6832 ldr r2, [r6, #0] + 80062c2: 1a9b subs r3, r3, r2 + 80062c4: 42ab cmp r3, r5 + 80062c6: dc28 bgt.n 800631a <_printf_common+0x9a> + 80062c8: f894 2043 ldrb.w r2, [r4, #67] ; 0x43 + 80062cc: 1e13 subs r3, r2, #0 + 80062ce: 6822 ldr r2, [r4, #0] + 80062d0: bf18 it ne + 80062d2: 2301 movne r3, #1 + 80062d4: 0692 lsls r2, r2, #26 + 80062d6: d42d bmi.n 8006334 <_printf_common+0xb4> + 80062d8: 4649 mov r1, r9 + 80062da: 4638 mov r0, r7 + 80062dc: f104 0243 add.w r2, r4, #67 ; 0x43 + 80062e0: 47c0 blx r8 + 80062e2: 3001 adds r0, #1 + 80062e4: d020 beq.n 8006328 <_printf_common+0xa8> + 80062e6: 6823 ldr r3, [r4, #0] + 80062e8: 68e5 ldr r5, [r4, #12] + 80062ea: f003 0306 and.w r3, r3, #6 + 80062ee: 2b04 cmp r3, #4 + 80062f0: bf18 it ne + 80062f2: 2500 movne r5, #0 + 80062f4: 6832 ldr r2, [r6, #0] + 80062f6: f04f 0600 mov.w r6, #0 + 80062fa: 68a3 ldr r3, [r4, #8] + 80062fc: bf08 it eq + 80062fe: 1aad subeq r5, r5, r2 + 8006300: 6922 ldr r2, [r4, #16] + 8006302: bf08 it eq + 8006304: ea25 75e5 biceq.w r5, r5, r5, asr #31 + 8006308: 4293 cmp r3, r2 + 800630a: bfc4 itt gt + 800630c: 1a9b subgt r3, r3, r2 + 800630e: 18ed addgt r5, r5, r3 + 8006310: 341a adds r4, #26 + 8006312: 42b5 cmp r5, r6 + 8006314: d11a bne.n 800634c <_printf_common+0xcc> + 8006316: 2000 movs r0, #0 + 8006318: e008 b.n 800632c <_printf_common+0xac> + 800631a: 2301 movs r3, #1 + 800631c: 4652 mov r2, sl + 800631e: 4649 mov r1, r9 + 8006320: 4638 mov r0, r7 + 8006322: 47c0 blx r8 + 8006324: 3001 adds r0, #1 + 8006326: d103 bne.n 8006330 <_printf_common+0xb0> + 8006328: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800632c: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8006330: 3501 adds r5, #1 + 8006332: e7c4 b.n 80062be <_printf_common+0x3e> + 8006334: 2030 movs r0, #48 ; 0x30 + 8006336: 18e1 adds r1, r4, r3 + 8006338: f881 0043 strb.w r0, [r1, #67] ; 0x43 + 800633c: 1c5a adds r2, r3, #1 + 800633e: f894 1045 ldrb.w r1, [r4, #69] ; 0x45 + 8006342: 4422 add r2, r4 + 8006344: 3302 adds r3, #2 + 8006346: f882 1043 strb.w r1, [r2, #67] ; 0x43 + 800634a: e7c5 b.n 80062d8 <_printf_common+0x58> + 800634c: 2301 movs r3, #1 + 800634e: 4622 mov r2, r4 + 8006350: 4649 mov r1, r9 + 8006352: 4638 mov r0, r7 + 8006354: 47c0 blx r8 + 8006356: 3001 adds r0, #1 + 8006358: d0e6 beq.n 8006328 <_printf_common+0xa8> + 800635a: 3601 adds r6, #1 + 800635c: e7d9 b.n 8006312 <_printf_common+0x92> ... -0800608c <_printf_i>: - 800608c: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} - 8006090: 460c mov r4, r1 - 8006092: 7e27 ldrb r7, [r4, #24] - 8006094: 4691 mov r9, r2 - 8006096: 2f78 cmp r7, #120 ; 0x78 - 8006098: 4680 mov r8, r0 - 800609a: 469a mov sl, r3 - 800609c: 990c ldr r1, [sp, #48] ; 0x30 - 800609e: f104 0243 add.w r2, r4, #67 ; 0x43 - 80060a2: d807 bhi.n 80060b4 <_printf_i+0x28> - 80060a4: 2f62 cmp r7, #98 ; 0x62 - 80060a6: d80a bhi.n 80060be <_printf_i+0x32> - 80060a8: 2f00 cmp r7, #0 - 80060aa: f000 80d9 beq.w 8006260 <_printf_i+0x1d4> - 80060ae: 2f58 cmp r7, #88 ; 0x58 - 80060b0: f000 80a4 beq.w 80061fc <_printf_i+0x170> - 80060b4: f104 0642 add.w r6, r4, #66 ; 0x42 - 80060b8: f884 7042 strb.w r7, [r4, #66] ; 0x42 - 80060bc: e03a b.n 8006134 <_printf_i+0xa8> - 80060be: f1a7 0363 sub.w r3, r7, #99 ; 0x63 - 80060c2: 2b15 cmp r3, #21 - 80060c4: d8f6 bhi.n 80060b4 <_printf_i+0x28> - 80060c6: a001 add r0, pc, #4 ; (adr r0, 80060cc <_printf_i+0x40>) - 80060c8: f850 f023 ldr.w pc, [r0, r3, lsl #2] - 80060cc: 08006125 .word 0x08006125 - 80060d0: 08006139 .word 0x08006139 - 80060d4: 080060b5 .word 0x080060b5 - 80060d8: 080060b5 .word 0x080060b5 - 80060dc: 080060b5 .word 0x080060b5 - 80060e0: 080060b5 .word 0x080060b5 - 80060e4: 08006139 .word 0x08006139 - 80060e8: 080060b5 .word 0x080060b5 - 80060ec: 080060b5 .word 0x080060b5 - 80060f0: 080060b5 .word 0x080060b5 - 80060f4: 080060b5 .word 0x080060b5 - 80060f8: 08006247 .word 0x08006247 - 80060fc: 08006169 .word 0x08006169 - 8006100: 08006229 .word 0x08006229 - 8006104: 080060b5 .word 0x080060b5 - 8006108: 080060b5 .word 0x080060b5 - 800610c: 08006269 .word 0x08006269 - 8006110: 080060b5 .word 0x080060b5 - 8006114: 08006169 .word 0x08006169 - 8006118: 080060b5 .word 0x080060b5 - 800611c: 080060b5 .word 0x080060b5 - 8006120: 08006231 .word 0x08006231 - 8006124: 680b ldr r3, [r1, #0] - 8006126: f104 0642 add.w r6, r4, #66 ; 0x42 - 800612a: 1d1a adds r2, r3, #4 - 800612c: 681b ldr r3, [r3, #0] - 800612e: 600a str r2, [r1, #0] - 8006130: f884 3042 strb.w r3, [r4, #66] ; 0x42 - 8006134: 2301 movs r3, #1 - 8006136: e0a4 b.n 8006282 <_printf_i+0x1f6> - 8006138: 6825 ldr r5, [r4, #0] - 800613a: 6808 ldr r0, [r1, #0] - 800613c: 062e lsls r6, r5, #24 - 800613e: f100 0304 add.w r3, r0, #4 - 8006142: d50a bpl.n 800615a <_printf_i+0xce> - 8006144: 6805 ldr r5, [r0, #0] - 8006146: 600b str r3, [r1, #0] - 8006148: 2d00 cmp r5, #0 - 800614a: da03 bge.n 8006154 <_printf_i+0xc8> - 800614c: 232d movs r3, #45 ; 0x2d - 800614e: 426d negs r5, r5 - 8006150: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 8006154: 230a movs r3, #10 - 8006156: 485e ldr r0, [pc, #376] ; (80062d0 <_printf_i+0x244>) - 8006158: e019 b.n 800618e <_printf_i+0x102> - 800615a: f015 0f40 tst.w r5, #64 ; 0x40 - 800615e: 6805 ldr r5, [r0, #0] - 8006160: 600b str r3, [r1, #0] - 8006162: bf18 it ne - 8006164: b22d sxthne r5, r5 - 8006166: e7ef b.n 8006148 <_printf_i+0xbc> - 8006168: 680b ldr r3, [r1, #0] - 800616a: 6825 ldr r5, [r4, #0] - 800616c: 1d18 adds r0, r3, #4 - 800616e: 6008 str r0, [r1, #0] - 8006170: 0628 lsls r0, r5, #24 - 8006172: d501 bpl.n 8006178 <_printf_i+0xec> - 8006174: 681d ldr r5, [r3, #0] - 8006176: e002 b.n 800617e <_printf_i+0xf2> - 8006178: 0669 lsls r1, r5, #25 - 800617a: d5fb bpl.n 8006174 <_printf_i+0xe8> - 800617c: 881d ldrh r5, [r3, #0] - 800617e: 2f6f cmp r7, #111 ; 0x6f - 8006180: bf0c ite eq - 8006182: 2308 moveq r3, #8 - 8006184: 230a movne r3, #10 - 8006186: 4852 ldr r0, [pc, #328] ; (80062d0 <_printf_i+0x244>) - 8006188: 2100 movs r1, #0 - 800618a: f884 1043 strb.w r1, [r4, #67] ; 0x43 - 800618e: 6866 ldr r6, [r4, #4] - 8006190: 2e00 cmp r6, #0 - 8006192: bfa8 it ge - 8006194: 6821 ldrge r1, [r4, #0] - 8006196: 60a6 str r6, [r4, #8] - 8006198: bfa4 itt ge - 800619a: f021 0104 bicge.w r1, r1, #4 - 800619e: 6021 strge r1, [r4, #0] - 80061a0: b90d cbnz r5, 80061a6 <_printf_i+0x11a> - 80061a2: 2e00 cmp r6, #0 - 80061a4: d04d beq.n 8006242 <_printf_i+0x1b6> - 80061a6: 4616 mov r6, r2 - 80061a8: fbb5 f1f3 udiv r1, r5, r3 - 80061ac: fb03 5711 mls r7, r3, r1, r5 - 80061b0: 5dc7 ldrb r7, [r0, r7] - 80061b2: f806 7d01 strb.w r7, [r6, #-1]! - 80061b6: 462f mov r7, r5 - 80061b8: 42bb cmp r3, r7 - 80061ba: 460d mov r5, r1 - 80061bc: d9f4 bls.n 80061a8 <_printf_i+0x11c> - 80061be: 2b08 cmp r3, #8 - 80061c0: d10b bne.n 80061da <_printf_i+0x14e> - 80061c2: 6823 ldr r3, [r4, #0] - 80061c4: 07df lsls r7, r3, #31 - 80061c6: d508 bpl.n 80061da <_printf_i+0x14e> - 80061c8: 6923 ldr r3, [r4, #16] - 80061ca: 6861 ldr r1, [r4, #4] - 80061cc: 4299 cmp r1, r3 - 80061ce: bfde ittt le - 80061d0: 2330 movle r3, #48 ; 0x30 - 80061d2: f806 3c01 strble.w r3, [r6, #-1] - 80061d6: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff - 80061da: 1b92 subs r2, r2, r6 - 80061dc: 6122 str r2, [r4, #16] - 80061de: 464b mov r3, r9 - 80061e0: 4621 mov r1, r4 - 80061e2: 4640 mov r0, r8 - 80061e4: f8cd a000 str.w sl, [sp] - 80061e8: aa03 add r2, sp, #12 - 80061ea: f7ff fedf bl 8005fac <_printf_common> - 80061ee: 3001 adds r0, #1 - 80061f0: d14c bne.n 800628c <_printf_i+0x200> - 80061f2: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80061f6: b004 add sp, #16 - 80061f8: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 80061fc: 4834 ldr r0, [pc, #208] ; (80062d0 <_printf_i+0x244>) - 80061fe: f884 7045 strb.w r7, [r4, #69] ; 0x45 - 8006202: 680e ldr r6, [r1, #0] - 8006204: 6823 ldr r3, [r4, #0] - 8006206: f856 5b04 ldr.w r5, [r6], #4 - 800620a: 061f lsls r7, r3, #24 - 800620c: 600e str r6, [r1, #0] - 800620e: d514 bpl.n 800623a <_printf_i+0x1ae> - 8006210: 07d9 lsls r1, r3, #31 - 8006212: bf44 itt mi - 8006214: f043 0320 orrmi.w r3, r3, #32 - 8006218: 6023 strmi r3, [r4, #0] - 800621a: b91d cbnz r5, 8006224 <_printf_i+0x198> - 800621c: 6823 ldr r3, [r4, #0] - 800621e: f023 0320 bic.w r3, r3, #32 - 8006222: 6023 str r3, [r4, #0] - 8006224: 2310 movs r3, #16 - 8006226: e7af b.n 8006188 <_printf_i+0xfc> - 8006228: 6823 ldr r3, [r4, #0] - 800622a: f043 0320 orr.w r3, r3, #32 - 800622e: 6023 str r3, [r4, #0] - 8006230: 2378 movs r3, #120 ; 0x78 - 8006232: 4828 ldr r0, [pc, #160] ; (80062d4 <_printf_i+0x248>) - 8006234: f884 3045 strb.w r3, [r4, #69] ; 0x45 - 8006238: e7e3 b.n 8006202 <_printf_i+0x176> - 800623a: 065e lsls r6, r3, #25 - 800623c: bf48 it mi - 800623e: b2ad uxthmi r5, r5 - 8006240: e7e6 b.n 8006210 <_printf_i+0x184> - 8006242: 4616 mov r6, r2 - 8006244: e7bb b.n 80061be <_printf_i+0x132> - 8006246: 680b ldr r3, [r1, #0] - 8006248: 6826 ldr r6, [r4, #0] - 800624a: 1d1d adds r5, r3, #4 - 800624c: 6960 ldr r0, [r4, #20] - 800624e: 600d str r5, [r1, #0] - 8006250: 0635 lsls r5, r6, #24 - 8006252: 681b ldr r3, [r3, #0] - 8006254: d501 bpl.n 800625a <_printf_i+0x1ce> - 8006256: 6018 str r0, [r3, #0] - 8006258: e002 b.n 8006260 <_printf_i+0x1d4> - 800625a: 0671 lsls r1, r6, #25 - 800625c: d5fb bpl.n 8006256 <_printf_i+0x1ca> - 800625e: 8018 strh r0, [r3, #0] - 8006260: 2300 movs r3, #0 - 8006262: 4616 mov r6, r2 - 8006264: 6123 str r3, [r4, #16] - 8006266: e7ba b.n 80061de <_printf_i+0x152> - 8006268: 680b ldr r3, [r1, #0] - 800626a: 1d1a adds r2, r3, #4 - 800626c: 600a str r2, [r1, #0] - 800626e: 681e ldr r6, [r3, #0] - 8006270: 2100 movs r1, #0 - 8006272: 4630 mov r0, r6 - 8006274: 6862 ldr r2, [r4, #4] - 8006276: f000 fee1 bl 800703c - 800627a: b108 cbz r0, 8006280 <_printf_i+0x1f4> - 800627c: 1b80 subs r0, r0, r6 - 800627e: 6060 str r0, [r4, #4] - 8006280: 6863 ldr r3, [r4, #4] - 8006282: 6123 str r3, [r4, #16] - 8006284: 2300 movs r3, #0 - 8006286: f884 3043 strb.w r3, [r4, #67] ; 0x43 - 800628a: e7a8 b.n 80061de <_printf_i+0x152> - 800628c: 4632 mov r2, r6 - 800628e: 4649 mov r1, r9 - 8006290: 4640 mov r0, r8 - 8006292: 6923 ldr r3, [r4, #16] - 8006294: 47d0 blx sl - 8006296: 3001 adds r0, #1 - 8006298: d0ab beq.n 80061f2 <_printf_i+0x166> - 800629a: 6823 ldr r3, [r4, #0] - 800629c: 079b lsls r3, r3, #30 - 800629e: d413 bmi.n 80062c8 <_printf_i+0x23c> - 80062a0: 68e0 ldr r0, [r4, #12] - 80062a2: 9b03 ldr r3, [sp, #12] - 80062a4: 4298 cmp r0, r3 - 80062a6: bfb8 it lt - 80062a8: 4618 movlt r0, r3 - 80062aa: e7a4 b.n 80061f6 <_printf_i+0x16a> - 80062ac: 2301 movs r3, #1 - 80062ae: 4632 mov r2, r6 - 80062b0: 4649 mov r1, r9 - 80062b2: 4640 mov r0, r8 - 80062b4: 47d0 blx sl - 80062b6: 3001 adds r0, #1 - 80062b8: d09b beq.n 80061f2 <_printf_i+0x166> - 80062ba: 3501 adds r5, #1 - 80062bc: 68e3 ldr r3, [r4, #12] - 80062be: 9903 ldr r1, [sp, #12] - 80062c0: 1a5b subs r3, r3, r1 - 80062c2: 42ab cmp r3, r5 - 80062c4: dcf2 bgt.n 80062ac <_printf_i+0x220> - 80062c6: e7eb b.n 80062a0 <_printf_i+0x214> - 80062c8: 2500 movs r5, #0 - 80062ca: f104 0619 add.w r6, r4, #25 - 80062ce: e7f5 b.n 80062bc <_printf_i+0x230> - 80062d0: 0800916e .word 0x0800916e - 80062d4: 0800917f .word 0x0800917f +08006360 <_printf_i>: + 8006360: e92d 47ff stmdb sp!, {r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, sl, lr} + 8006364: 460c mov r4, r1 + 8006366: 7e27 ldrb r7, [r4, #24] + 8006368: 4691 mov r9, r2 + 800636a: 2f78 cmp r7, #120 ; 0x78 + 800636c: 4680 mov r8, r0 + 800636e: 469a mov sl, r3 + 8006370: 990c ldr r1, [sp, #48] ; 0x30 + 8006372: f104 0243 add.w r2, r4, #67 ; 0x43 + 8006376: d807 bhi.n 8006388 <_printf_i+0x28> + 8006378: 2f62 cmp r7, #98 ; 0x62 + 800637a: d80a bhi.n 8006392 <_printf_i+0x32> + 800637c: 2f00 cmp r7, #0 + 800637e: f000 80d9 beq.w 8006534 <_printf_i+0x1d4> + 8006382: 2f58 cmp r7, #88 ; 0x58 + 8006384: f000 80a4 beq.w 80064d0 <_printf_i+0x170> + 8006388: f104 0642 add.w r6, r4, #66 ; 0x42 + 800638c: f884 7042 strb.w r7, [r4, #66] ; 0x42 + 8006390: e03a b.n 8006408 <_printf_i+0xa8> + 8006392: f1a7 0363 sub.w r3, r7, #99 ; 0x63 + 8006396: 2b15 cmp r3, #21 + 8006398: d8f6 bhi.n 8006388 <_printf_i+0x28> + 800639a: a001 add r0, pc, #4 ; (adr r0, 80063a0 <_printf_i+0x40>) + 800639c: f850 f023 ldr.w pc, [r0, r3, lsl #2] + 80063a0: 080063f9 .word 0x080063f9 + 80063a4: 0800640d .word 0x0800640d + 80063a8: 08006389 .word 0x08006389 + 80063ac: 08006389 .word 0x08006389 + 80063b0: 08006389 .word 0x08006389 + 80063b4: 08006389 .word 0x08006389 + 80063b8: 0800640d .word 0x0800640d + 80063bc: 08006389 .word 0x08006389 + 80063c0: 08006389 .word 0x08006389 + 80063c4: 08006389 .word 0x08006389 + 80063c8: 08006389 .word 0x08006389 + 80063cc: 0800651b .word 0x0800651b + 80063d0: 0800643d .word 0x0800643d + 80063d4: 080064fd .word 0x080064fd + 80063d8: 08006389 .word 0x08006389 + 80063dc: 08006389 .word 0x08006389 + 80063e0: 0800653d .word 0x0800653d + 80063e4: 08006389 .word 0x08006389 + 80063e8: 0800643d .word 0x0800643d + 80063ec: 08006389 .word 0x08006389 + 80063f0: 08006389 .word 0x08006389 + 80063f4: 08006505 .word 0x08006505 + 80063f8: 680b ldr r3, [r1, #0] + 80063fa: f104 0642 add.w r6, r4, #66 ; 0x42 + 80063fe: 1d1a adds r2, r3, #4 + 8006400: 681b ldr r3, [r3, #0] + 8006402: 600a str r2, [r1, #0] + 8006404: f884 3042 strb.w r3, [r4, #66] ; 0x42 + 8006408: 2301 movs r3, #1 + 800640a: e0a4 b.n 8006556 <_printf_i+0x1f6> + 800640c: 6825 ldr r5, [r4, #0] + 800640e: 6808 ldr r0, [r1, #0] + 8006410: 062e lsls r6, r5, #24 + 8006412: f100 0304 add.w r3, r0, #4 + 8006416: d50a bpl.n 800642e <_printf_i+0xce> + 8006418: 6805 ldr r5, [r0, #0] + 800641a: 600b str r3, [r1, #0] + 800641c: 2d00 cmp r5, #0 + 800641e: da03 bge.n 8006428 <_printf_i+0xc8> + 8006420: 232d movs r3, #45 ; 0x2d + 8006422: 426d negs r5, r5 + 8006424: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 8006428: 230a movs r3, #10 + 800642a: 485e ldr r0, [pc, #376] ; (80065a4 <_printf_i+0x244>) + 800642c: e019 b.n 8006462 <_printf_i+0x102> + 800642e: f015 0f40 tst.w r5, #64 ; 0x40 + 8006432: 6805 ldr r5, [r0, #0] + 8006434: 600b str r3, [r1, #0] + 8006436: bf18 it ne + 8006438: b22d sxthne r5, r5 + 800643a: e7ef b.n 800641c <_printf_i+0xbc> + 800643c: 680b ldr r3, [r1, #0] + 800643e: 6825 ldr r5, [r4, #0] + 8006440: 1d18 adds r0, r3, #4 + 8006442: 6008 str r0, [r1, #0] + 8006444: 0628 lsls r0, r5, #24 + 8006446: d501 bpl.n 800644c <_printf_i+0xec> + 8006448: 681d ldr r5, [r3, #0] + 800644a: e002 b.n 8006452 <_printf_i+0xf2> + 800644c: 0669 lsls r1, r5, #25 + 800644e: d5fb bpl.n 8006448 <_printf_i+0xe8> + 8006450: 881d ldrh r5, [r3, #0] + 8006452: 2f6f cmp r7, #111 ; 0x6f + 8006454: bf0c ite eq + 8006456: 2308 moveq r3, #8 + 8006458: 230a movne r3, #10 + 800645a: 4852 ldr r0, [pc, #328] ; (80065a4 <_printf_i+0x244>) + 800645c: 2100 movs r1, #0 + 800645e: f884 1043 strb.w r1, [r4, #67] ; 0x43 + 8006462: 6866 ldr r6, [r4, #4] + 8006464: 2e00 cmp r6, #0 + 8006466: bfa8 it ge + 8006468: 6821 ldrge r1, [r4, #0] + 800646a: 60a6 str r6, [r4, #8] + 800646c: bfa4 itt ge + 800646e: f021 0104 bicge.w r1, r1, #4 + 8006472: 6021 strge r1, [r4, #0] + 8006474: b90d cbnz r5, 800647a <_printf_i+0x11a> + 8006476: 2e00 cmp r6, #0 + 8006478: d04d beq.n 8006516 <_printf_i+0x1b6> + 800647a: 4616 mov r6, r2 + 800647c: fbb5 f1f3 udiv r1, r5, r3 + 8006480: fb03 5711 mls r7, r3, r1, r5 + 8006484: 5dc7 ldrb r7, [r0, r7] + 8006486: f806 7d01 strb.w r7, [r6, #-1]! + 800648a: 462f mov r7, r5 + 800648c: 42bb cmp r3, r7 + 800648e: 460d mov r5, r1 + 8006490: d9f4 bls.n 800647c <_printf_i+0x11c> + 8006492: 2b08 cmp r3, #8 + 8006494: d10b bne.n 80064ae <_printf_i+0x14e> + 8006496: 6823 ldr r3, [r4, #0] + 8006498: 07df lsls r7, r3, #31 + 800649a: d508 bpl.n 80064ae <_printf_i+0x14e> + 800649c: 6923 ldr r3, [r4, #16] + 800649e: 6861 ldr r1, [r4, #4] + 80064a0: 4299 cmp r1, r3 + 80064a2: bfde ittt le + 80064a4: 2330 movle r3, #48 ; 0x30 + 80064a6: f806 3c01 strble.w r3, [r6, #-1] + 80064aa: f106 36ff addle.w r6, r6, #4294967295 ; 0xffffffff + 80064ae: 1b92 subs r2, r2, r6 + 80064b0: 6122 str r2, [r4, #16] + 80064b2: 464b mov r3, r9 + 80064b4: 4621 mov r1, r4 + 80064b6: 4640 mov r0, r8 + 80064b8: f8cd a000 str.w sl, [sp] + 80064bc: aa03 add r2, sp, #12 + 80064be: f7ff fedf bl 8006280 <_printf_common> + 80064c2: 3001 adds r0, #1 + 80064c4: d14c bne.n 8006560 <_printf_i+0x200> + 80064c6: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80064ca: b004 add sp, #16 + 80064cc: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 80064d0: 4834 ldr r0, [pc, #208] ; (80065a4 <_printf_i+0x244>) + 80064d2: f884 7045 strb.w r7, [r4, #69] ; 0x45 + 80064d6: 680e ldr r6, [r1, #0] + 80064d8: 6823 ldr r3, [r4, #0] + 80064da: f856 5b04 ldr.w r5, [r6], #4 + 80064de: 061f lsls r7, r3, #24 + 80064e0: 600e str r6, [r1, #0] + 80064e2: d514 bpl.n 800650e <_printf_i+0x1ae> + 80064e4: 07d9 lsls r1, r3, #31 + 80064e6: bf44 itt mi + 80064e8: f043 0320 orrmi.w r3, r3, #32 + 80064ec: 6023 strmi r3, [r4, #0] + 80064ee: b91d cbnz r5, 80064f8 <_printf_i+0x198> + 80064f0: 6823 ldr r3, [r4, #0] + 80064f2: f023 0320 bic.w r3, r3, #32 + 80064f6: 6023 str r3, [r4, #0] + 80064f8: 2310 movs r3, #16 + 80064fa: e7af b.n 800645c <_printf_i+0xfc> + 80064fc: 6823 ldr r3, [r4, #0] + 80064fe: f043 0320 orr.w r3, r3, #32 + 8006502: 6023 str r3, [r4, #0] + 8006504: 2378 movs r3, #120 ; 0x78 + 8006506: 4828 ldr r0, [pc, #160] ; (80065a8 <_printf_i+0x248>) + 8006508: f884 3045 strb.w r3, [r4, #69] ; 0x45 + 800650c: e7e3 b.n 80064d6 <_printf_i+0x176> + 800650e: 065e lsls r6, r3, #25 + 8006510: bf48 it mi + 8006512: b2ad uxthmi r5, r5 + 8006514: e7e6 b.n 80064e4 <_printf_i+0x184> + 8006516: 4616 mov r6, r2 + 8006518: e7bb b.n 8006492 <_printf_i+0x132> + 800651a: 680b ldr r3, [r1, #0] + 800651c: 6826 ldr r6, [r4, #0] + 800651e: 1d1d adds r5, r3, #4 + 8006520: 6960 ldr r0, [r4, #20] + 8006522: 600d str r5, [r1, #0] + 8006524: 0635 lsls r5, r6, #24 + 8006526: 681b ldr r3, [r3, #0] + 8006528: d501 bpl.n 800652e <_printf_i+0x1ce> + 800652a: 6018 str r0, [r3, #0] + 800652c: e002 b.n 8006534 <_printf_i+0x1d4> + 800652e: 0671 lsls r1, r6, #25 + 8006530: d5fb bpl.n 800652a <_printf_i+0x1ca> + 8006532: 8018 strh r0, [r3, #0] + 8006534: 2300 movs r3, #0 + 8006536: 4616 mov r6, r2 + 8006538: 6123 str r3, [r4, #16] + 800653a: e7ba b.n 80064b2 <_printf_i+0x152> + 800653c: 680b ldr r3, [r1, #0] + 800653e: 1d1a adds r2, r3, #4 + 8006540: 600a str r2, [r1, #0] + 8006542: 681e ldr r6, [r3, #0] + 8006544: 2100 movs r1, #0 + 8006546: 4630 mov r0, r6 + 8006548: 6862 ldr r2, [r4, #4] + 800654a: f000 fedf bl 800730c + 800654e: b108 cbz r0, 8006554 <_printf_i+0x1f4> + 8006550: 1b80 subs r0, r0, r6 + 8006552: 6060 str r0, [r4, #4] + 8006554: 6863 ldr r3, [r4, #4] + 8006556: 6123 str r3, [r4, #16] + 8006558: 2300 movs r3, #0 + 800655a: f884 3043 strb.w r3, [r4, #67] ; 0x43 + 800655e: e7a8 b.n 80064b2 <_printf_i+0x152> + 8006560: 4632 mov r2, r6 + 8006562: 4649 mov r1, r9 + 8006564: 4640 mov r0, r8 + 8006566: 6923 ldr r3, [r4, #16] + 8006568: 47d0 blx sl + 800656a: 3001 adds r0, #1 + 800656c: d0ab beq.n 80064c6 <_printf_i+0x166> + 800656e: 6823 ldr r3, [r4, #0] + 8006570: 079b lsls r3, r3, #30 + 8006572: d413 bmi.n 800659c <_printf_i+0x23c> + 8006574: 68e0 ldr r0, [r4, #12] + 8006576: 9b03 ldr r3, [sp, #12] + 8006578: 4298 cmp r0, r3 + 800657a: bfb8 it lt + 800657c: 4618 movlt r0, r3 + 800657e: e7a4 b.n 80064ca <_printf_i+0x16a> + 8006580: 2301 movs r3, #1 + 8006582: 4632 mov r2, r6 + 8006584: 4649 mov r1, r9 + 8006586: 4640 mov r0, r8 + 8006588: 47d0 blx sl + 800658a: 3001 adds r0, #1 + 800658c: d09b beq.n 80064c6 <_printf_i+0x166> + 800658e: 3501 adds r5, #1 + 8006590: 68e3 ldr r3, [r4, #12] + 8006592: 9903 ldr r1, [sp, #12] + 8006594: 1a5b subs r3, r3, r1 + 8006596: 42ab cmp r3, r5 + 8006598: dcf2 bgt.n 8006580 <_printf_i+0x220> + 800659a: e7eb b.n 8006574 <_printf_i+0x214> + 800659c: 2500 movs r5, #0 + 800659e: f104 0619 add.w r6, r4, #25 + 80065a2: e7f5 b.n 8006590 <_printf_i+0x230> + 80065a4: 0800945e .word 0x0800945e + 80065a8: 0800946f .word 0x0800946f -080062d8 <_sbrk_r>: - 80062d8: b538 push {r3, r4, r5, lr} - 80062da: 2300 movs r3, #0 - 80062dc: 4d05 ldr r5, [pc, #20] ; (80062f4 <_sbrk_r+0x1c>) - 80062de: 4604 mov r4, r0 - 80062e0: 4608 mov r0, r1 - 80062e2: 602b str r3, [r5, #0] - 80062e4: f7fb fa24 bl 8001730 <_sbrk> - 80062e8: 1c43 adds r3, r0, #1 - 80062ea: d102 bne.n 80062f2 <_sbrk_r+0x1a> - 80062ec: 682b ldr r3, [r5, #0] - 80062ee: b103 cbz r3, 80062f2 <_sbrk_r+0x1a> - 80062f0: 6023 str r3, [r4, #0] - 80062f2: bd38 pop {r3, r4, r5, pc} - 80062f4: 200002f4 .word 0x200002f4 +080065ac <_sbrk_r>: + 80065ac: b538 push {r3, r4, r5, lr} + 80065ae: 2300 movs r3, #0 + 80065b0: 4d05 ldr r5, [pc, #20] ; (80065c8 <_sbrk_r+0x1c>) + 80065b2: 4604 mov r4, r0 + 80065b4: 4608 mov r0, r1 + 80065b6: 602b str r3, [r5, #0] + 80065b8: f7fb f8d6 bl 8001768 <_sbrk> + 80065bc: 1c43 adds r3, r0, #1 + 80065be: d102 bne.n 80065c6 <_sbrk_r+0x1a> + 80065c0: 682b ldr r3, [r5, #0] + 80065c2: b103 cbz r3, 80065c6 <_sbrk_r+0x1a> + 80065c4: 6023 str r3, [r4, #0] + 80065c6: bd38 pop {r3, r4, r5, pc} + 80065c8: 2000033c .word 0x2000033c -080062f8 : - 80062f8: b40e push {r1, r2, r3} - 80062fa: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 - 80062fe: b500 push {lr} - 8006300: b09c sub sp, #112 ; 0x70 - 8006302: ab1d add r3, sp, #116 ; 0x74 - 8006304: 9002 str r0, [sp, #8] - 8006306: 9006 str r0, [sp, #24] - 8006308: 9107 str r1, [sp, #28] - 800630a: 9104 str r1, [sp, #16] - 800630c: 4808 ldr r0, [pc, #32] ; (8006330 ) - 800630e: 4909 ldr r1, [pc, #36] ; (8006334 ) - 8006310: f853 2b04 ldr.w r2, [r3], #4 - 8006314: 9105 str r1, [sp, #20] - 8006316: 6800 ldr r0, [r0, #0] - 8006318: a902 add r1, sp, #8 - 800631a: 9301 str r3, [sp, #4] - 800631c: f001 faa2 bl 8007864 <_svfiprintf_r> - 8006320: 2200 movs r2, #0 - 8006322: 9b02 ldr r3, [sp, #8] - 8006324: 701a strb r2, [r3, #0] - 8006326: b01c add sp, #112 ; 0x70 - 8006328: f85d eb04 ldr.w lr, [sp], #4 - 800632c: b003 add sp, #12 - 800632e: 4770 bx lr - 8006330: 2000000c .word 0x2000000c - 8006334: ffff0208 .word 0xffff0208 +080065cc : + 80065cc: b40e push {r1, r2, r3} + 80065ce: f06f 4100 mvn.w r1, #2147483648 ; 0x80000000 + 80065d2: b500 push {lr} + 80065d4: b09c sub sp, #112 ; 0x70 + 80065d6: ab1d add r3, sp, #116 ; 0x74 + 80065d8: 9002 str r0, [sp, #8] + 80065da: 9006 str r0, [sp, #24] + 80065dc: 9107 str r1, [sp, #28] + 80065de: 9104 str r1, [sp, #16] + 80065e0: 4808 ldr r0, [pc, #32] ; (8006604 ) + 80065e2: 4909 ldr r1, [pc, #36] ; (8006608 ) + 80065e4: f853 2b04 ldr.w r2, [r3], #4 + 80065e8: 9105 str r1, [sp, #20] + 80065ea: 6800 ldr r0, [r0, #0] + 80065ec: a902 add r1, sp, #8 + 80065ee: 9301 str r3, [sp, #4] + 80065f0: f001 faa0 bl 8007b34 <_svfiprintf_r> + 80065f4: 2200 movs r2, #0 + 80065f6: 9b02 ldr r3, [sp, #8] + 80065f8: 701a strb r2, [r3, #0] + 80065fa: b01c add sp, #112 ; 0x70 + 80065fc: f85d eb04 ldr.w lr, [sp], #4 + 8006600: b003 add sp, #12 + 8006602: 4770 bx lr + 8006604: 2000000c .word 0x2000000c + 8006608: ffff0208 .word 0xffff0208 -08006338 : - 8006338: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 800633c: 6903 ldr r3, [r0, #16] - 800633e: 690c ldr r4, [r1, #16] - 8006340: 4607 mov r7, r0 - 8006342: 42a3 cmp r3, r4 - 8006344: f2c0 8083 blt.w 800644e - 8006348: 3c01 subs r4, #1 - 800634a: f100 0514 add.w r5, r0, #20 - 800634e: f101 0814 add.w r8, r1, #20 - 8006352: eb05 0384 add.w r3, r5, r4, lsl #2 - 8006356: 9301 str r3, [sp, #4] - 8006358: f858 3024 ldr.w r3, [r8, r4, lsl #2] - 800635c: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 8006360: 3301 adds r3, #1 - 8006362: 429a cmp r2, r3 - 8006364: fbb2 f6f3 udiv r6, r2, r3 - 8006368: ea4f 0b84 mov.w fp, r4, lsl #2 - 800636c: eb08 0984 add.w r9, r8, r4, lsl #2 - 8006370: d332 bcc.n 80063d8 - 8006372: f04f 0e00 mov.w lr, #0 - 8006376: 4640 mov r0, r8 - 8006378: 46ac mov ip, r5 - 800637a: 46f2 mov sl, lr - 800637c: f850 2b04 ldr.w r2, [r0], #4 - 8006380: b293 uxth r3, r2 - 8006382: fb06 e303 mla r3, r6, r3, lr - 8006386: 0c12 lsrs r2, r2, #16 - 8006388: ea4f 4e13 mov.w lr, r3, lsr #16 - 800638c: fb06 e202 mla r2, r6, r2, lr - 8006390: b29b uxth r3, r3 - 8006392: ebaa 0303 sub.w r3, sl, r3 - 8006396: f8dc a000 ldr.w sl, [ip] - 800639a: ea4f 4e12 mov.w lr, r2, lsr #16 - 800639e: fa1f fa8a uxth.w sl, sl - 80063a2: 4453 add r3, sl - 80063a4: fa1f fa82 uxth.w sl, r2 - 80063a8: f8dc 2000 ldr.w r2, [ip] - 80063ac: 4581 cmp r9, r0 - 80063ae: ebca 4212 rsb r2, sl, r2, lsr #16 - 80063b2: eb02 4223 add.w r2, r2, r3, asr #16 - 80063b6: b29b uxth r3, r3 - 80063b8: ea43 4302 orr.w r3, r3, r2, lsl #16 - 80063bc: ea4f 4a22 mov.w sl, r2, asr #16 - 80063c0: f84c 3b04 str.w r3, [ip], #4 - 80063c4: d2da bcs.n 800637c - 80063c6: f855 300b ldr.w r3, [r5, fp] - 80063ca: b92b cbnz r3, 80063d8 - 80063cc: 9b01 ldr r3, [sp, #4] - 80063ce: 3b04 subs r3, #4 - 80063d0: 429d cmp r5, r3 - 80063d2: 461a mov r2, r3 - 80063d4: d32f bcc.n 8006436 - 80063d6: 613c str r4, [r7, #16] - 80063d8: 4638 mov r0, r7 - 80063da: f001 f8d1 bl 8007580 <__mcmp> - 80063de: 2800 cmp r0, #0 - 80063e0: db25 blt.n 800642e - 80063e2: 4628 mov r0, r5 - 80063e4: f04f 0c00 mov.w ip, #0 - 80063e8: 3601 adds r6, #1 - 80063ea: f858 1b04 ldr.w r1, [r8], #4 - 80063ee: f8d0 e000 ldr.w lr, [r0] - 80063f2: b28b uxth r3, r1 - 80063f4: ebac 0303 sub.w r3, ip, r3 - 80063f8: fa1f f28e uxth.w r2, lr - 80063fc: 4413 add r3, r2 - 80063fe: 0c0a lsrs r2, r1, #16 - 8006400: ebc2 421e rsb r2, r2, lr, lsr #16 - 8006404: eb02 4223 add.w r2, r2, r3, asr #16 - 8006408: b29b uxth r3, r3 - 800640a: ea43 4302 orr.w r3, r3, r2, lsl #16 - 800640e: 45c1 cmp r9, r8 - 8006410: ea4f 4c22 mov.w ip, r2, asr #16 - 8006414: f840 3b04 str.w r3, [r0], #4 - 8006418: d2e7 bcs.n 80063ea - 800641a: f855 2024 ldr.w r2, [r5, r4, lsl #2] - 800641e: eb05 0384 add.w r3, r5, r4, lsl #2 - 8006422: b922 cbnz r2, 800642e - 8006424: 3b04 subs r3, #4 - 8006426: 429d cmp r5, r3 - 8006428: 461a mov r2, r3 - 800642a: d30a bcc.n 8006442 - 800642c: 613c str r4, [r7, #16] - 800642e: 4630 mov r0, r6 - 8006430: b003 add sp, #12 - 8006432: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8006436: 6812 ldr r2, [r2, #0] - 8006438: 3b04 subs r3, #4 - 800643a: 2a00 cmp r2, #0 - 800643c: d1cb bne.n 80063d6 - 800643e: 3c01 subs r4, #1 - 8006440: e7c6 b.n 80063d0 - 8006442: 6812 ldr r2, [r2, #0] - 8006444: 3b04 subs r3, #4 - 8006446: 2a00 cmp r2, #0 - 8006448: d1f0 bne.n 800642c - 800644a: 3c01 subs r4, #1 - 800644c: e7eb b.n 8006426 - 800644e: 2000 movs r0, #0 - 8006450: e7ee b.n 8006430 - 8006452: 0000 movs r0, r0 - 8006454: 0000 movs r0, r0 +0800660c : + 800660c: e92d 4ff7 stmdb sp!, {r0, r1, r2, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8006610: 6903 ldr r3, [r0, #16] + 8006612: 690c ldr r4, [r1, #16] + 8006614: 4607 mov r7, r0 + 8006616: 42a3 cmp r3, r4 + 8006618: f2c0 8083 blt.w 8006722 + 800661c: 3c01 subs r4, #1 + 800661e: f100 0514 add.w r5, r0, #20 + 8006622: f101 0814 add.w r8, r1, #20 + 8006626: eb05 0384 add.w r3, r5, r4, lsl #2 + 800662a: 9301 str r3, [sp, #4] + 800662c: f858 3024 ldr.w r3, [r8, r4, lsl #2] + 8006630: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 8006634: 3301 adds r3, #1 + 8006636: 429a cmp r2, r3 + 8006638: fbb2 f6f3 udiv r6, r2, r3 + 800663c: ea4f 0b84 mov.w fp, r4, lsl #2 + 8006640: eb08 0984 add.w r9, r8, r4, lsl #2 + 8006644: d332 bcc.n 80066ac + 8006646: f04f 0e00 mov.w lr, #0 + 800664a: 4640 mov r0, r8 + 800664c: 46ac mov ip, r5 + 800664e: 46f2 mov sl, lr + 8006650: f850 2b04 ldr.w r2, [r0], #4 + 8006654: b293 uxth r3, r2 + 8006656: fb06 e303 mla r3, r6, r3, lr + 800665a: 0c12 lsrs r2, r2, #16 + 800665c: ea4f 4e13 mov.w lr, r3, lsr #16 + 8006660: fb06 e202 mla r2, r6, r2, lr + 8006664: b29b uxth r3, r3 + 8006666: ebaa 0303 sub.w r3, sl, r3 + 800666a: f8dc a000 ldr.w sl, [ip] + 800666e: ea4f 4e12 mov.w lr, r2, lsr #16 + 8006672: fa1f fa8a uxth.w sl, sl + 8006676: 4453 add r3, sl + 8006678: fa1f fa82 uxth.w sl, r2 + 800667c: f8dc 2000 ldr.w r2, [ip] + 8006680: 4581 cmp r9, r0 + 8006682: ebca 4212 rsb r2, sl, r2, lsr #16 + 8006686: eb02 4223 add.w r2, r2, r3, asr #16 + 800668a: b29b uxth r3, r3 + 800668c: ea43 4302 orr.w r3, r3, r2, lsl #16 + 8006690: ea4f 4a22 mov.w sl, r2, asr #16 + 8006694: f84c 3b04 str.w r3, [ip], #4 + 8006698: d2da bcs.n 8006650 + 800669a: f855 300b ldr.w r3, [r5, fp] + 800669e: b92b cbnz r3, 80066ac + 80066a0: 9b01 ldr r3, [sp, #4] + 80066a2: 3b04 subs r3, #4 + 80066a4: 429d cmp r5, r3 + 80066a6: 461a mov r2, r3 + 80066a8: d32f bcc.n 800670a + 80066aa: 613c str r4, [r7, #16] + 80066ac: 4638 mov r0, r7 + 80066ae: f001 f8cf bl 8007850 <__mcmp> + 80066b2: 2800 cmp r0, #0 + 80066b4: db25 blt.n 8006702 + 80066b6: 4628 mov r0, r5 + 80066b8: f04f 0c00 mov.w ip, #0 + 80066bc: 3601 adds r6, #1 + 80066be: f858 1b04 ldr.w r1, [r8], #4 + 80066c2: f8d0 e000 ldr.w lr, [r0] + 80066c6: b28b uxth r3, r1 + 80066c8: ebac 0303 sub.w r3, ip, r3 + 80066cc: fa1f f28e uxth.w r2, lr + 80066d0: 4413 add r3, r2 + 80066d2: 0c0a lsrs r2, r1, #16 + 80066d4: ebc2 421e rsb r2, r2, lr, lsr #16 + 80066d8: eb02 4223 add.w r2, r2, r3, asr #16 + 80066dc: b29b uxth r3, r3 + 80066de: ea43 4302 orr.w r3, r3, r2, lsl #16 + 80066e2: 45c1 cmp r9, r8 + 80066e4: ea4f 4c22 mov.w ip, r2, asr #16 + 80066e8: f840 3b04 str.w r3, [r0], #4 + 80066ec: d2e7 bcs.n 80066be + 80066ee: f855 2024 ldr.w r2, [r5, r4, lsl #2] + 80066f2: eb05 0384 add.w r3, r5, r4, lsl #2 + 80066f6: b922 cbnz r2, 8006702 + 80066f8: 3b04 subs r3, #4 + 80066fa: 429d cmp r5, r3 + 80066fc: 461a mov r2, r3 + 80066fe: d30a bcc.n 8006716 + 8006700: 613c str r4, [r7, #16] + 8006702: 4630 mov r0, r6 + 8006704: b003 add sp, #12 + 8006706: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800670a: 6812 ldr r2, [r2, #0] + 800670c: 3b04 subs r3, #4 + 800670e: 2a00 cmp r2, #0 + 8006710: d1cb bne.n 80066aa + 8006712: 3c01 subs r4, #1 + 8006714: e7c6 b.n 80066a4 + 8006716: 6812 ldr r2, [r2, #0] + 8006718: 3b04 subs r3, #4 + 800671a: 2a00 cmp r2, #0 + 800671c: d1f0 bne.n 8006700 + 800671e: 3c01 subs r4, #1 + 8006720: e7eb b.n 80066fa + 8006722: 2000 movs r0, #0 + 8006724: e7ee b.n 8006704 ... -08006458 <_dtoa_r>: - 8006458: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 800645c: 4616 mov r6, r2 - 800645e: 461f mov r7, r3 - 8006460: 6a44 ldr r4, [r0, #36] ; 0x24 - 8006462: b099 sub sp, #100 ; 0x64 - 8006464: 4605 mov r5, r0 - 8006466: e9cd 6704 strd r6, r7, [sp, #16] - 800646a: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 - 800646e: b974 cbnz r4, 800648e <_dtoa_r+0x36> - 8006470: 2010 movs r0, #16 - 8006472: f7ff fa13 bl 800589c - 8006476: 4602 mov r2, r0 - 8006478: 6268 str r0, [r5, #36] ; 0x24 - 800647a: b920 cbnz r0, 8006486 <_dtoa_r+0x2e> - 800647c: 21ea movs r1, #234 ; 0xea - 800647e: 4bae ldr r3, [pc, #696] ; (8006738 <_dtoa_r+0x2e0>) - 8006480: 48ae ldr r0, [pc, #696] ; (800673c <_dtoa_r+0x2e4>) - 8006482: f001 faef bl 8007a64 <__assert_func> - 8006486: e9c0 4401 strd r4, r4, [r0, #4] - 800648a: 6004 str r4, [r0, #0] - 800648c: 60c4 str r4, [r0, #12] - 800648e: 6a6b ldr r3, [r5, #36] ; 0x24 - 8006490: 6819 ldr r1, [r3, #0] - 8006492: b151 cbz r1, 80064aa <_dtoa_r+0x52> - 8006494: 685a ldr r2, [r3, #4] - 8006496: 2301 movs r3, #1 - 8006498: 4093 lsls r3, r2 - 800649a: 604a str r2, [r1, #4] - 800649c: 608b str r3, [r1, #8] - 800649e: 4628 mov r0, r5 - 80064a0: f000 fe34 bl 800710c <_Bfree> - 80064a4: 2200 movs r2, #0 - 80064a6: 6a6b ldr r3, [r5, #36] ; 0x24 - 80064a8: 601a str r2, [r3, #0] - 80064aa: 1e3b subs r3, r7, #0 - 80064ac: bfaf iteee ge - 80064ae: 2300 movge r3, #0 - 80064b0: 2201 movlt r2, #1 - 80064b2: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 - 80064b6: 9305 strlt r3, [sp, #20] - 80064b8: bfa8 it ge - 80064ba: f8c8 3000 strge.w r3, [r8] - 80064be: f8dd 9014 ldr.w r9, [sp, #20] - 80064c2: 4b9f ldr r3, [pc, #636] ; (8006740 <_dtoa_r+0x2e8>) - 80064c4: bfb8 it lt - 80064c6: f8c8 2000 strlt.w r2, [r8] - 80064ca: ea33 0309 bics.w r3, r3, r9 - 80064ce: d119 bne.n 8006504 <_dtoa_r+0xac> - 80064d0: f242 730f movw r3, #9999 ; 0x270f - 80064d4: 9a24 ldr r2, [sp, #144] ; 0x90 - 80064d6: 6013 str r3, [r2, #0] - 80064d8: f3c9 0313 ubfx r3, r9, #0, #20 - 80064dc: 4333 orrs r3, r6 - 80064de: f000 8580 beq.w 8006fe2 <_dtoa_r+0xb8a> - 80064e2: 9b26 ldr r3, [sp, #152] ; 0x98 - 80064e4: b953 cbnz r3, 80064fc <_dtoa_r+0xa4> - 80064e6: 4b97 ldr r3, [pc, #604] ; (8006744 <_dtoa_r+0x2ec>) - 80064e8: e022 b.n 8006530 <_dtoa_r+0xd8> - 80064ea: 4b97 ldr r3, [pc, #604] ; (8006748 <_dtoa_r+0x2f0>) - 80064ec: 9308 str r3, [sp, #32] - 80064ee: 3308 adds r3, #8 - 80064f0: 9a26 ldr r2, [sp, #152] ; 0x98 - 80064f2: 6013 str r3, [r2, #0] - 80064f4: 9808 ldr r0, [sp, #32] - 80064f6: b019 add sp, #100 ; 0x64 - 80064f8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80064fc: 4b91 ldr r3, [pc, #580] ; (8006744 <_dtoa_r+0x2ec>) - 80064fe: 9308 str r3, [sp, #32] - 8006500: 3303 adds r3, #3 - 8006502: e7f5 b.n 80064f0 <_dtoa_r+0x98> - 8006504: e9dd 3404 ldrd r3, r4, [sp, #16] - 8006508: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 - 800650c: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8006510: 2200 movs r2, #0 - 8006512: 2300 movs r3, #0 - 8006514: f7fa fab4 bl 8000a80 <__aeabi_dcmpeq> - 8006518: 4680 mov r8, r0 - 800651a: b158 cbz r0, 8006534 <_dtoa_r+0xdc> - 800651c: 2301 movs r3, #1 - 800651e: 9a24 ldr r2, [sp, #144] ; 0x90 - 8006520: 6013 str r3, [r2, #0] - 8006522: 9b26 ldr r3, [sp, #152] ; 0x98 - 8006524: 2b00 cmp r3, #0 - 8006526: f000 8559 beq.w 8006fdc <_dtoa_r+0xb84> - 800652a: 4888 ldr r0, [pc, #544] ; (800674c <_dtoa_r+0x2f4>) - 800652c: 6018 str r0, [r3, #0] - 800652e: 1e43 subs r3, r0, #1 - 8006530: 9308 str r3, [sp, #32] - 8006532: e7df b.n 80064f4 <_dtoa_r+0x9c> - 8006534: ab16 add r3, sp, #88 ; 0x58 - 8006536: 9301 str r3, [sp, #4] - 8006538: ab17 add r3, sp, #92 ; 0x5c - 800653a: 9300 str r3, [sp, #0] - 800653c: 4628 mov r0, r5 - 800653e: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 - 8006542: f001 f8c9 bl 80076d8 <__d2b> - 8006546: f3c9 540a ubfx r4, r9, #20, #11 - 800654a: 4682 mov sl, r0 - 800654c: 2c00 cmp r4, #0 - 800654e: d07e beq.n 800664e <_dtoa_r+0x1f6> - 8006550: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8006554: 9b0d ldr r3, [sp, #52] ; 0x34 - 8006556: f2a4 34ff subw r4, r4, #1023 ; 0x3ff - 800655a: f3c3 0313 ubfx r3, r3, #0, #20 - 800655e: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 - 8006562: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 - 8006566: f8cd 804c str.w r8, [sp, #76] ; 0x4c - 800656a: 2200 movs r2, #0 - 800656c: 4b78 ldr r3, [pc, #480] ; (8006750 <_dtoa_r+0x2f8>) - 800656e: f7f9 fe67 bl 8000240 <__aeabi_dsub> - 8006572: a36b add r3, pc, #428 ; (adr r3, 8006720 <_dtoa_r+0x2c8>) - 8006574: e9d3 2300 ldrd r2, r3, [r3] - 8006578: f7fa f81a bl 80005b0 <__aeabi_dmul> - 800657c: a36a add r3, pc, #424 ; (adr r3, 8006728 <_dtoa_r+0x2d0>) - 800657e: e9d3 2300 ldrd r2, r3, [r3] - 8006582: f7f9 fe5f bl 8000244 <__adddf3> - 8006586: 4606 mov r6, r0 - 8006588: 4620 mov r0, r4 - 800658a: 460f mov r7, r1 - 800658c: f7f9 ffa6 bl 80004dc <__aeabi_i2d> - 8006590: a367 add r3, pc, #412 ; (adr r3, 8006730 <_dtoa_r+0x2d8>) - 8006592: e9d3 2300 ldrd r2, r3, [r3] - 8006596: f7fa f80b bl 80005b0 <__aeabi_dmul> - 800659a: 4602 mov r2, r0 - 800659c: 460b mov r3, r1 - 800659e: 4630 mov r0, r6 - 80065a0: 4639 mov r1, r7 - 80065a2: f7f9 fe4f bl 8000244 <__adddf3> - 80065a6: 4606 mov r6, r0 - 80065a8: 460f mov r7, r1 - 80065aa: f7fa fab1 bl 8000b10 <__aeabi_d2iz> - 80065ae: 2200 movs r2, #0 - 80065b0: 4681 mov r9, r0 - 80065b2: 2300 movs r3, #0 - 80065b4: 4630 mov r0, r6 - 80065b6: 4639 mov r1, r7 - 80065b8: f7fa fa6c bl 8000a94 <__aeabi_dcmplt> - 80065bc: b148 cbz r0, 80065d2 <_dtoa_r+0x17a> - 80065be: 4648 mov r0, r9 - 80065c0: f7f9 ff8c bl 80004dc <__aeabi_i2d> - 80065c4: 4632 mov r2, r6 - 80065c6: 463b mov r3, r7 - 80065c8: f7fa fa5a bl 8000a80 <__aeabi_dcmpeq> - 80065cc: b908 cbnz r0, 80065d2 <_dtoa_r+0x17a> - 80065ce: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 80065d2: f1b9 0f16 cmp.w r9, #22 - 80065d6: d857 bhi.n 8006688 <_dtoa_r+0x230> - 80065d8: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80065dc: 4b5d ldr r3, [pc, #372] ; (8006754 <_dtoa_r+0x2fc>) - 80065de: eb03 03c9 add.w r3, r3, r9, lsl #3 - 80065e2: e9d3 2300 ldrd r2, r3, [r3] - 80065e6: f7fa fa55 bl 8000a94 <__aeabi_dcmplt> - 80065ea: 2800 cmp r0, #0 - 80065ec: d04e beq.n 800668c <_dtoa_r+0x234> - 80065ee: 2300 movs r3, #0 - 80065f0: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 80065f4: 930f str r3, [sp, #60] ; 0x3c - 80065f6: 9b16 ldr r3, [sp, #88] ; 0x58 - 80065f8: 1b1c subs r4, r3, r4 - 80065fa: 1e63 subs r3, r4, #1 - 80065fc: 9309 str r3, [sp, #36] ; 0x24 - 80065fe: bf49 itett mi - 8006600: f1c4 0301 rsbmi r3, r4, #1 - 8006604: 2300 movpl r3, #0 - 8006606: 9306 strmi r3, [sp, #24] - 8006608: 2300 movmi r3, #0 - 800660a: bf54 ite pl - 800660c: 9306 strpl r3, [sp, #24] - 800660e: 9309 strmi r3, [sp, #36] ; 0x24 - 8006610: f1b9 0f00 cmp.w r9, #0 - 8006614: db3c blt.n 8006690 <_dtoa_r+0x238> - 8006616: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006618: f8cd 9038 str.w r9, [sp, #56] ; 0x38 - 800661c: 444b add r3, r9 - 800661e: 9309 str r3, [sp, #36] ; 0x24 - 8006620: 2300 movs r3, #0 - 8006622: 930a str r3, [sp, #40] ; 0x28 - 8006624: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006626: 2b09 cmp r3, #9 - 8006628: d86c bhi.n 8006704 <_dtoa_r+0x2ac> - 800662a: 2b05 cmp r3, #5 - 800662c: bfc4 itt gt - 800662e: 3b04 subgt r3, #4 - 8006630: 9322 strgt r3, [sp, #136] ; 0x88 - 8006632: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006634: bfc8 it gt - 8006636: 2400 movgt r4, #0 - 8006638: f1a3 0302 sub.w r3, r3, #2 - 800663c: bfd8 it le - 800663e: 2401 movle r4, #1 - 8006640: 2b03 cmp r3, #3 - 8006642: f200 808b bhi.w 800675c <_dtoa_r+0x304> - 8006646: e8df f003 tbb [pc, r3] - 800664a: 4f2d .short 0x4f2d - 800664c: 5b4d .short 0x5b4d - 800664e: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 - 8006652: 441c add r4, r3 - 8006654: f204 4332 addw r3, r4, #1074 ; 0x432 - 8006658: 2b20 cmp r3, #32 - 800665a: bfc3 ittte gt - 800665c: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 - 8006660: f204 4012 addwgt r0, r4, #1042 ; 0x412 - 8006664: fa09 f303 lslgt.w r3, r9, r3 - 8006668: f1c3 0320 rsble r3, r3, #32 - 800666c: bfc6 itte gt - 800666e: fa26 f000 lsrgt.w r0, r6, r0 - 8006672: 4318 orrgt r0, r3 - 8006674: fa06 f003 lslle.w r0, r6, r3 - 8006678: f7f9 ff20 bl 80004bc <__aeabi_ui2d> - 800667c: 2301 movs r3, #1 - 800667e: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 - 8006682: 3c01 subs r4, #1 - 8006684: 9313 str r3, [sp, #76] ; 0x4c - 8006686: e770 b.n 800656a <_dtoa_r+0x112> - 8006688: 2301 movs r3, #1 - 800668a: e7b3 b.n 80065f4 <_dtoa_r+0x19c> - 800668c: 900f str r0, [sp, #60] ; 0x3c - 800668e: e7b2 b.n 80065f6 <_dtoa_r+0x19e> - 8006690: 9b06 ldr r3, [sp, #24] - 8006692: eba3 0309 sub.w r3, r3, r9 - 8006696: 9306 str r3, [sp, #24] - 8006698: f1c9 0300 rsb r3, r9, #0 - 800669c: 930a str r3, [sp, #40] ; 0x28 - 800669e: 2300 movs r3, #0 - 80066a0: 930e str r3, [sp, #56] ; 0x38 - 80066a2: e7bf b.n 8006624 <_dtoa_r+0x1cc> - 80066a4: 2300 movs r3, #0 - 80066a6: 930b str r3, [sp, #44] ; 0x2c - 80066a8: 9b23 ldr r3, [sp, #140] ; 0x8c - 80066aa: 2b00 cmp r3, #0 - 80066ac: dc59 bgt.n 8006762 <_dtoa_r+0x30a> - 80066ae: f04f 0b01 mov.w fp, #1 - 80066b2: 465b mov r3, fp - 80066b4: f8cd b008 str.w fp, [sp, #8] - 80066b8: f8cd b08c str.w fp, [sp, #140] ; 0x8c - 80066bc: 2200 movs r2, #0 - 80066be: 6a68 ldr r0, [r5, #36] ; 0x24 - 80066c0: 6042 str r2, [r0, #4] - 80066c2: 2204 movs r2, #4 - 80066c4: f102 0614 add.w r6, r2, #20 - 80066c8: 429e cmp r6, r3 - 80066ca: 6841 ldr r1, [r0, #4] - 80066cc: d94f bls.n 800676e <_dtoa_r+0x316> - 80066ce: 4628 mov r0, r5 - 80066d0: f000 fcdc bl 800708c <_Balloc> - 80066d4: 9008 str r0, [sp, #32] - 80066d6: 2800 cmp r0, #0 - 80066d8: d14d bne.n 8006776 <_dtoa_r+0x31e> - 80066da: 4602 mov r2, r0 - 80066dc: f44f 71d5 mov.w r1, #426 ; 0x1aa - 80066e0: 4b1d ldr r3, [pc, #116] ; (8006758 <_dtoa_r+0x300>) - 80066e2: e6cd b.n 8006480 <_dtoa_r+0x28> - 80066e4: 2301 movs r3, #1 - 80066e6: e7de b.n 80066a6 <_dtoa_r+0x24e> - 80066e8: 2300 movs r3, #0 - 80066ea: 930b str r3, [sp, #44] ; 0x2c - 80066ec: 9b23 ldr r3, [sp, #140] ; 0x8c - 80066ee: eb09 0b03 add.w fp, r9, r3 - 80066f2: f10b 0301 add.w r3, fp, #1 - 80066f6: 2b01 cmp r3, #1 - 80066f8: 9302 str r3, [sp, #8] - 80066fa: bfb8 it lt - 80066fc: 2301 movlt r3, #1 - 80066fe: e7dd b.n 80066bc <_dtoa_r+0x264> - 8006700: 2301 movs r3, #1 - 8006702: e7f2 b.n 80066ea <_dtoa_r+0x292> - 8006704: 2401 movs r4, #1 - 8006706: 2300 movs r3, #0 - 8006708: 940b str r4, [sp, #44] ; 0x2c - 800670a: 9322 str r3, [sp, #136] ; 0x88 - 800670c: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff - 8006710: 2200 movs r2, #0 - 8006712: 2312 movs r3, #18 - 8006714: f8cd b008 str.w fp, [sp, #8] - 8006718: 9223 str r2, [sp, #140] ; 0x8c - 800671a: e7cf b.n 80066bc <_dtoa_r+0x264> - 800671c: f3af 8000 nop.w - 8006720: 636f4361 .word 0x636f4361 - 8006724: 3fd287a7 .word 0x3fd287a7 - 8006728: 8b60c8b3 .word 0x8b60c8b3 - 800672c: 3fc68a28 .word 0x3fc68a28 - 8006730: 509f79fb .word 0x509f79fb - 8006734: 3fd34413 .word 0x3fd34413 - 8006738: 0800919d .word 0x0800919d - 800673c: 080091b4 .word 0x080091b4 - 8006740: 7ff00000 .word 0x7ff00000 - 8006744: 08009199 .word 0x08009199 - 8006748: 08009190 .word 0x08009190 - 800674c: 0800916d .word 0x0800916d - 8006750: 3ff80000 .word 0x3ff80000 - 8006754: 080092b0 .word 0x080092b0 - 8006758: 08009213 .word 0x08009213 - 800675c: 2301 movs r3, #1 - 800675e: 930b str r3, [sp, #44] ; 0x2c - 8006760: e7d4 b.n 800670c <_dtoa_r+0x2b4> - 8006762: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c - 8006766: 465b mov r3, fp - 8006768: f8cd b008 str.w fp, [sp, #8] - 800676c: e7a6 b.n 80066bc <_dtoa_r+0x264> - 800676e: 3101 adds r1, #1 - 8006770: 6041 str r1, [r0, #4] - 8006772: 0052 lsls r2, r2, #1 - 8006774: e7a6 b.n 80066c4 <_dtoa_r+0x26c> +08006728 <_dtoa_r>: + 8006728: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 800672c: 4616 mov r6, r2 + 800672e: 461f mov r7, r3 + 8006730: 6a44 ldr r4, [r0, #36] ; 0x24 + 8006732: b099 sub sp, #100 ; 0x64 + 8006734: 4605 mov r5, r0 + 8006736: e9cd 6704 strd r6, r7, [sp, #16] + 800673a: f8dd 8094 ldr.w r8, [sp, #148] ; 0x94 + 800673e: b974 cbnz r4, 800675e <_dtoa_r+0x36> + 8006740: 2010 movs r0, #16 + 8006742: f7ff fa15 bl 8005b70 + 8006746: 4602 mov r2, r0 + 8006748: 6268 str r0, [r5, #36] ; 0x24 + 800674a: b920 cbnz r0, 8006756 <_dtoa_r+0x2e> + 800674c: 21ea movs r1, #234 ; 0xea + 800674e: 4bae ldr r3, [pc, #696] ; (8006a08 <_dtoa_r+0x2e0>) + 8006750: 48ae ldr r0, [pc, #696] ; (8006a0c <_dtoa_r+0x2e4>) + 8006752: f001 faef bl 8007d34 <__assert_func> + 8006756: e9c0 4401 strd r4, r4, [r0, #4] + 800675a: 6004 str r4, [r0, #0] + 800675c: 60c4 str r4, [r0, #12] + 800675e: 6a6b ldr r3, [r5, #36] ; 0x24 + 8006760: 6819 ldr r1, [r3, #0] + 8006762: b151 cbz r1, 800677a <_dtoa_r+0x52> + 8006764: 685a ldr r2, [r3, #4] + 8006766: 2301 movs r3, #1 + 8006768: 4093 lsls r3, r2 + 800676a: 604a str r2, [r1, #4] + 800676c: 608b str r3, [r1, #8] + 800676e: 4628 mov r0, r5 + 8006770: f000 fe34 bl 80073dc <_Bfree> + 8006774: 2200 movs r2, #0 8006776: 6a6b ldr r3, [r5, #36] ; 0x24 - 8006778: 9a08 ldr r2, [sp, #32] - 800677a: 601a str r2, [r3, #0] - 800677c: 9b02 ldr r3, [sp, #8] - 800677e: 2b0e cmp r3, #14 - 8006780: f200 80a8 bhi.w 80068d4 <_dtoa_r+0x47c> - 8006784: 2c00 cmp r4, #0 - 8006786: f000 80a5 beq.w 80068d4 <_dtoa_r+0x47c> - 800678a: f1b9 0f00 cmp.w r9, #0 - 800678e: dd34 ble.n 80067fa <_dtoa_r+0x3a2> - 8006790: 4a9a ldr r2, [pc, #616] ; (80069fc <_dtoa_r+0x5a4>) - 8006792: f009 030f and.w r3, r9, #15 - 8006796: eb02 03c3 add.w r3, r2, r3, lsl #3 - 800679a: f419 7f80 tst.w r9, #256 ; 0x100 - 800679e: e9d3 3400 ldrd r3, r4, [r3] - 80067a2: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 80067a6: ea4f 1429 mov.w r4, r9, asr #4 - 80067aa: d016 beq.n 80067da <_dtoa_r+0x382> - 80067ac: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 80067b0: 4b93 ldr r3, [pc, #588] ; (8006a00 <_dtoa_r+0x5a8>) - 80067b2: 2703 movs r7, #3 - 80067b4: e9d3 2308 ldrd r2, r3, [r3, #32] - 80067b8: f7fa f824 bl 8000804 <__aeabi_ddiv> - 80067bc: e9cd 0104 strd r0, r1, [sp, #16] - 80067c0: f004 040f and.w r4, r4, #15 - 80067c4: 4e8e ldr r6, [pc, #568] ; (8006a00 <_dtoa_r+0x5a8>) - 80067c6: b954 cbnz r4, 80067de <_dtoa_r+0x386> - 80067c8: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 80067cc: e9dd 0104 ldrd r0, r1, [sp, #16] - 80067d0: f7fa f818 bl 8000804 <__aeabi_ddiv> - 80067d4: e9cd 0104 strd r0, r1, [sp, #16] - 80067d8: e029 b.n 800682e <_dtoa_r+0x3d6> - 80067da: 2702 movs r7, #2 - 80067dc: e7f2 b.n 80067c4 <_dtoa_r+0x36c> - 80067de: 07e1 lsls r1, r4, #31 - 80067e0: d508 bpl.n 80067f4 <_dtoa_r+0x39c> - 80067e2: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 80067e6: e9d6 2300 ldrd r2, r3, [r6] - 80067ea: f7f9 fee1 bl 80005b0 <__aeabi_dmul> - 80067ee: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80067f2: 3701 adds r7, #1 - 80067f4: 1064 asrs r4, r4, #1 - 80067f6: 3608 adds r6, #8 - 80067f8: e7e5 b.n 80067c6 <_dtoa_r+0x36e> - 80067fa: f000 80a5 beq.w 8006948 <_dtoa_r+0x4f0> - 80067fe: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 - 8006802: f1c9 0400 rsb r4, r9, #0 - 8006806: 4b7d ldr r3, [pc, #500] ; (80069fc <_dtoa_r+0x5a4>) - 8006808: f004 020f and.w r2, r4, #15 - 800680c: eb03 03c2 add.w r3, r3, r2, lsl #3 - 8006810: e9d3 2300 ldrd r2, r3, [r3] - 8006814: f7f9 fecc bl 80005b0 <__aeabi_dmul> - 8006818: 2702 movs r7, #2 - 800681a: 2300 movs r3, #0 - 800681c: e9cd 0104 strd r0, r1, [sp, #16] - 8006820: 4e77 ldr r6, [pc, #476] ; (8006a00 <_dtoa_r+0x5a8>) - 8006822: 1124 asrs r4, r4, #4 - 8006824: 2c00 cmp r4, #0 - 8006826: f040 8084 bne.w 8006932 <_dtoa_r+0x4da> - 800682a: 2b00 cmp r3, #0 - 800682c: d1d2 bne.n 80067d4 <_dtoa_r+0x37c> - 800682e: 9b0f ldr r3, [sp, #60] ; 0x3c - 8006830: 2b00 cmp r3, #0 - 8006832: f000 808b beq.w 800694c <_dtoa_r+0x4f4> - 8006836: e9dd 3404 ldrd r3, r4, [sp, #16] - 800683a: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 - 800683e: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8006842: 2200 movs r2, #0 - 8006844: 4b6f ldr r3, [pc, #444] ; (8006a04 <_dtoa_r+0x5ac>) - 8006846: f7fa f925 bl 8000a94 <__aeabi_dcmplt> - 800684a: 2800 cmp r0, #0 - 800684c: d07e beq.n 800694c <_dtoa_r+0x4f4> - 800684e: 9b02 ldr r3, [sp, #8] - 8006850: 2b00 cmp r3, #0 - 8006852: d07b beq.n 800694c <_dtoa_r+0x4f4> - 8006854: f1bb 0f00 cmp.w fp, #0 - 8006858: dd38 ble.n 80068cc <_dtoa_r+0x474> - 800685a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 800685e: 2200 movs r2, #0 - 8006860: 4b69 ldr r3, [pc, #420] ; (8006a08 <_dtoa_r+0x5b0>) - 8006862: f7f9 fea5 bl 80005b0 <__aeabi_dmul> - 8006866: 465c mov r4, fp - 8006868: e9cd 0104 strd r0, r1, [sp, #16] - 800686c: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff - 8006870: 3701 adds r7, #1 - 8006872: 4638 mov r0, r7 - 8006874: f7f9 fe32 bl 80004dc <__aeabi_i2d> - 8006878: e9dd 2304 ldrd r2, r3, [sp, #16] - 800687c: f7f9 fe98 bl 80005b0 <__aeabi_dmul> - 8006880: 2200 movs r2, #0 - 8006882: 4b62 ldr r3, [pc, #392] ; (8006a0c <_dtoa_r+0x5b4>) - 8006884: f7f9 fcde bl 8000244 <__adddf3> - 8006888: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 - 800688c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8006890: 9611 str r6, [sp, #68] ; 0x44 - 8006892: 2c00 cmp r4, #0 - 8006894: d15d bne.n 8006952 <_dtoa_r+0x4fa> - 8006896: e9dd 0104 ldrd r0, r1, [sp, #16] - 800689a: 2200 movs r2, #0 - 800689c: 4b5c ldr r3, [pc, #368] ; (8006a10 <_dtoa_r+0x5b8>) - 800689e: f7f9 fccf bl 8000240 <__aeabi_dsub> - 80068a2: 4602 mov r2, r0 - 80068a4: 460b mov r3, r1 - 80068a6: e9cd 2304 strd r2, r3, [sp, #16] - 80068aa: 4633 mov r3, r6 - 80068ac: 9a10 ldr r2, [sp, #64] ; 0x40 - 80068ae: f7fa f90f bl 8000ad0 <__aeabi_dcmpgt> - 80068b2: 2800 cmp r0, #0 - 80068b4: f040 829e bne.w 8006df4 <_dtoa_r+0x99c> - 80068b8: e9dd 0104 ldrd r0, r1, [sp, #16] - 80068bc: 9a10 ldr r2, [sp, #64] ; 0x40 - 80068be: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 - 80068c2: f7fa f8e7 bl 8000a94 <__aeabi_dcmplt> - 80068c6: 2800 cmp r0, #0 - 80068c8: f040 8292 bne.w 8006df0 <_dtoa_r+0x998> - 80068cc: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 - 80068d0: e9cd 3404 strd r3, r4, [sp, #16] - 80068d4: 9b17 ldr r3, [sp, #92] ; 0x5c - 80068d6: 2b00 cmp r3, #0 - 80068d8: f2c0 8153 blt.w 8006b82 <_dtoa_r+0x72a> - 80068dc: f1b9 0f0e cmp.w r9, #14 - 80068e0: f300 814f bgt.w 8006b82 <_dtoa_r+0x72a> - 80068e4: 4b45 ldr r3, [pc, #276] ; (80069fc <_dtoa_r+0x5a4>) - 80068e6: eb03 03c9 add.w r3, r3, r9, lsl #3 - 80068ea: e9d3 3400 ldrd r3, r4, [r3] - 80068ee: e9cd 3406 strd r3, r4, [sp, #24] - 80068f2: 9b23 ldr r3, [sp, #140] ; 0x8c - 80068f4: 2b00 cmp r3, #0 - 80068f6: f280 80db bge.w 8006ab0 <_dtoa_r+0x658> - 80068fa: 9b02 ldr r3, [sp, #8] - 80068fc: 2b00 cmp r3, #0 - 80068fe: f300 80d7 bgt.w 8006ab0 <_dtoa_r+0x658> - 8006902: f040 8274 bne.w 8006dee <_dtoa_r+0x996> - 8006906: e9dd 0106 ldrd r0, r1, [sp, #24] - 800690a: 2200 movs r2, #0 - 800690c: 4b40 ldr r3, [pc, #256] ; (8006a10 <_dtoa_r+0x5b8>) - 800690e: f7f9 fe4f bl 80005b0 <__aeabi_dmul> - 8006912: e9dd 2304 ldrd r2, r3, [sp, #16] - 8006916: f7fa f8d1 bl 8000abc <__aeabi_dcmpge> - 800691a: 9c02 ldr r4, [sp, #8] - 800691c: 4626 mov r6, r4 - 800691e: 2800 cmp r0, #0 - 8006920: f040 824a bne.w 8006db8 <_dtoa_r+0x960> - 8006924: 2331 movs r3, #49 ; 0x31 - 8006926: 9f08 ldr r7, [sp, #32] - 8006928: f109 0901 add.w r9, r9, #1 - 800692c: f807 3b01 strb.w r3, [r7], #1 - 8006930: e246 b.n 8006dc0 <_dtoa_r+0x968> - 8006932: 07e2 lsls r2, r4, #31 - 8006934: d505 bpl.n 8006942 <_dtoa_r+0x4ea> - 8006936: e9d6 2300 ldrd r2, r3, [r6] - 800693a: f7f9 fe39 bl 80005b0 <__aeabi_dmul> - 800693e: 2301 movs r3, #1 - 8006940: 3701 adds r7, #1 - 8006942: 1064 asrs r4, r4, #1 - 8006944: 3608 adds r6, #8 - 8006946: e76d b.n 8006824 <_dtoa_r+0x3cc> - 8006948: 2702 movs r7, #2 - 800694a: e770 b.n 800682e <_dtoa_r+0x3d6> - 800694c: 46c8 mov r8, r9 - 800694e: 9c02 ldr r4, [sp, #8] - 8006950: e78f b.n 8006872 <_dtoa_r+0x41a> - 8006952: 9908 ldr r1, [sp, #32] - 8006954: 4b29 ldr r3, [pc, #164] ; (80069fc <_dtoa_r+0x5a4>) - 8006956: 4421 add r1, r4 - 8006958: 9112 str r1, [sp, #72] ; 0x48 - 800695a: 990b ldr r1, [sp, #44] ; 0x2c - 800695c: eb03 03c4 add.w r3, r3, r4, lsl #3 - 8006960: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 - 8006964: e953 2302 ldrd r2, r3, [r3, #-8] - 8006968: 2900 cmp r1, #0 - 800696a: d055 beq.n 8006a18 <_dtoa_r+0x5c0> - 800696c: 2000 movs r0, #0 - 800696e: 4929 ldr r1, [pc, #164] ; (8006a14 <_dtoa_r+0x5bc>) - 8006970: f7f9 ff48 bl 8000804 <__aeabi_ddiv> - 8006974: 463b mov r3, r7 - 8006976: 4632 mov r2, r6 - 8006978: f7f9 fc62 bl 8000240 <__aeabi_dsub> - 800697c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8006980: 9f08 ldr r7, [sp, #32] - 8006982: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006986: f7fa f8c3 bl 8000b10 <__aeabi_d2iz> - 800698a: 4604 mov r4, r0 - 800698c: f7f9 fda6 bl 80004dc <__aeabi_i2d> - 8006990: 4602 mov r2, r0 - 8006992: 460b mov r3, r1 - 8006994: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006998: f7f9 fc52 bl 8000240 <__aeabi_dsub> - 800699c: 4602 mov r2, r0 - 800699e: 460b mov r3, r1 - 80069a0: 3430 adds r4, #48 ; 0x30 - 80069a2: e9cd 2304 strd r2, r3, [sp, #16] - 80069a6: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 80069aa: f807 4b01 strb.w r4, [r7], #1 - 80069ae: f7fa f871 bl 8000a94 <__aeabi_dcmplt> - 80069b2: 2800 cmp r0, #0 - 80069b4: d174 bne.n 8006aa0 <_dtoa_r+0x648> - 80069b6: e9dd 2304 ldrd r2, r3, [sp, #16] - 80069ba: 2000 movs r0, #0 - 80069bc: 4911 ldr r1, [pc, #68] ; (8006a04 <_dtoa_r+0x5ac>) - 80069be: f7f9 fc3f bl 8000240 <__aeabi_dsub> - 80069c2: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 80069c6: f7fa f865 bl 8000a94 <__aeabi_dcmplt> - 80069ca: 2800 cmp r0, #0 - 80069cc: f040 80b6 bne.w 8006b3c <_dtoa_r+0x6e4> - 80069d0: 9b12 ldr r3, [sp, #72] ; 0x48 - 80069d2: 429f cmp r7, r3 - 80069d4: f43f af7a beq.w 80068cc <_dtoa_r+0x474> - 80069d8: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 80069dc: 2200 movs r2, #0 - 80069de: 4b0a ldr r3, [pc, #40] ; (8006a08 <_dtoa_r+0x5b0>) - 80069e0: f7f9 fde6 bl 80005b0 <__aeabi_dmul> - 80069e4: 2200 movs r2, #0 - 80069e6: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 80069ea: e9dd 0104 ldrd r0, r1, [sp, #16] - 80069ee: 4b06 ldr r3, [pc, #24] ; (8006a08 <_dtoa_r+0x5b0>) - 80069f0: f7f9 fdde bl 80005b0 <__aeabi_dmul> - 80069f4: e9cd 0104 strd r0, r1, [sp, #16] - 80069f8: e7c3 b.n 8006982 <_dtoa_r+0x52a> - 80069fa: bf00 nop - 80069fc: 080092b0 .word 0x080092b0 - 8006a00: 08009288 .word 0x08009288 - 8006a04: 3ff00000 .word 0x3ff00000 - 8006a08: 40240000 .word 0x40240000 - 8006a0c: 401c0000 .word 0x401c0000 - 8006a10: 40140000 .word 0x40140000 - 8006a14: 3fe00000 .word 0x3fe00000 - 8006a18: 4630 mov r0, r6 - 8006a1a: 4639 mov r1, r7 - 8006a1c: f7f9 fdc8 bl 80005b0 <__aeabi_dmul> - 8006a20: 9b12 ldr r3, [sp, #72] ; 0x48 - 8006a22: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 - 8006a26: 9c08 ldr r4, [sp, #32] - 8006a28: 9314 str r3, [sp, #80] ; 0x50 - 8006a2a: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006a2e: f7fa f86f bl 8000b10 <__aeabi_d2iz> - 8006a32: 9015 str r0, [sp, #84] ; 0x54 - 8006a34: f7f9 fd52 bl 80004dc <__aeabi_i2d> - 8006a38: 4602 mov r2, r0 - 8006a3a: 460b mov r3, r1 - 8006a3c: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006a40: f7f9 fbfe bl 8000240 <__aeabi_dsub> - 8006a44: 9b15 ldr r3, [sp, #84] ; 0x54 - 8006a46: 4606 mov r6, r0 - 8006a48: 3330 adds r3, #48 ; 0x30 - 8006a4a: f804 3b01 strb.w r3, [r4], #1 - 8006a4e: 9b12 ldr r3, [sp, #72] ; 0x48 - 8006a50: 460f mov r7, r1 - 8006a52: 429c cmp r4, r3 - 8006a54: f04f 0200 mov.w r2, #0 - 8006a58: d124 bne.n 8006aa4 <_dtoa_r+0x64c> - 8006a5a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 - 8006a5e: 4bb3 ldr r3, [pc, #716] ; (8006d2c <_dtoa_r+0x8d4>) - 8006a60: f7f9 fbf0 bl 8000244 <__adddf3> - 8006a64: 4602 mov r2, r0 - 8006a66: 460b mov r3, r1 - 8006a68: 4630 mov r0, r6 - 8006a6a: 4639 mov r1, r7 - 8006a6c: f7fa f830 bl 8000ad0 <__aeabi_dcmpgt> - 8006a70: 2800 cmp r0, #0 - 8006a72: d162 bne.n 8006b3a <_dtoa_r+0x6e2> - 8006a74: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 - 8006a78: 2000 movs r0, #0 - 8006a7a: 49ac ldr r1, [pc, #688] ; (8006d2c <_dtoa_r+0x8d4>) - 8006a7c: f7f9 fbe0 bl 8000240 <__aeabi_dsub> - 8006a80: 4602 mov r2, r0 - 8006a82: 460b mov r3, r1 - 8006a84: 4630 mov r0, r6 - 8006a86: 4639 mov r1, r7 - 8006a88: f7fa f804 bl 8000a94 <__aeabi_dcmplt> - 8006a8c: 2800 cmp r0, #0 - 8006a8e: f43f af1d beq.w 80068cc <_dtoa_r+0x474> - 8006a92: 9f14 ldr r7, [sp, #80] ; 0x50 - 8006a94: 1e7b subs r3, r7, #1 - 8006a96: 9314 str r3, [sp, #80] ; 0x50 - 8006a98: f817 3c01 ldrb.w r3, [r7, #-1] - 8006a9c: 2b30 cmp r3, #48 ; 0x30 - 8006a9e: d0f8 beq.n 8006a92 <_dtoa_r+0x63a> - 8006aa0: 46c1 mov r9, r8 - 8006aa2: e03a b.n 8006b1a <_dtoa_r+0x6c2> - 8006aa4: 4ba2 ldr r3, [pc, #648] ; (8006d30 <_dtoa_r+0x8d8>) - 8006aa6: f7f9 fd83 bl 80005b0 <__aeabi_dmul> - 8006aaa: e9cd 0104 strd r0, r1, [sp, #16] - 8006aae: e7bc b.n 8006a2a <_dtoa_r+0x5d2> - 8006ab0: 9f08 ldr r7, [sp, #32] - 8006ab2: e9dd 2306 ldrd r2, r3, [sp, #24] - 8006ab6: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006aba: f7f9 fea3 bl 8000804 <__aeabi_ddiv> - 8006abe: f7fa f827 bl 8000b10 <__aeabi_d2iz> - 8006ac2: 4604 mov r4, r0 - 8006ac4: f7f9 fd0a bl 80004dc <__aeabi_i2d> - 8006ac8: e9dd 2306 ldrd r2, r3, [sp, #24] - 8006acc: f7f9 fd70 bl 80005b0 <__aeabi_dmul> - 8006ad0: f104 0630 add.w r6, r4, #48 ; 0x30 - 8006ad4: 460b mov r3, r1 - 8006ad6: 4602 mov r2, r0 - 8006ad8: e9dd 0104 ldrd r0, r1, [sp, #16] - 8006adc: f7f9 fbb0 bl 8000240 <__aeabi_dsub> - 8006ae0: f807 6b01 strb.w r6, [r7], #1 - 8006ae4: 9e08 ldr r6, [sp, #32] - 8006ae6: 9b02 ldr r3, [sp, #8] - 8006ae8: 1bbe subs r6, r7, r6 - 8006aea: 42b3 cmp r3, r6 - 8006aec: d13a bne.n 8006b64 <_dtoa_r+0x70c> - 8006aee: 4602 mov r2, r0 - 8006af0: 460b mov r3, r1 - 8006af2: f7f9 fba7 bl 8000244 <__adddf3> - 8006af6: 4602 mov r2, r0 - 8006af8: 460b mov r3, r1 - 8006afa: e9cd 2302 strd r2, r3, [sp, #8] - 8006afe: e9dd 2306 ldrd r2, r3, [sp, #24] - 8006b02: f7f9 ffe5 bl 8000ad0 <__aeabi_dcmpgt> - 8006b06: bb58 cbnz r0, 8006b60 <_dtoa_r+0x708> - 8006b08: e9dd 2306 ldrd r2, r3, [sp, #24] - 8006b0c: e9dd 0102 ldrd r0, r1, [sp, #8] - 8006b10: f7f9 ffb6 bl 8000a80 <__aeabi_dcmpeq> - 8006b14: b108 cbz r0, 8006b1a <_dtoa_r+0x6c2> - 8006b16: 07e1 lsls r1, r4, #31 - 8006b18: d422 bmi.n 8006b60 <_dtoa_r+0x708> - 8006b1a: 4628 mov r0, r5 - 8006b1c: 4651 mov r1, sl - 8006b1e: f000 faf5 bl 800710c <_Bfree> - 8006b22: 2300 movs r3, #0 - 8006b24: 703b strb r3, [r7, #0] - 8006b26: 9b24 ldr r3, [sp, #144] ; 0x90 - 8006b28: f109 0001 add.w r0, r9, #1 - 8006b2c: 6018 str r0, [r3, #0] - 8006b2e: 9b26 ldr r3, [sp, #152] ; 0x98 - 8006b30: 2b00 cmp r3, #0 - 8006b32: f43f acdf beq.w 80064f4 <_dtoa_r+0x9c> - 8006b36: 601f str r7, [r3, #0] - 8006b38: e4dc b.n 80064f4 <_dtoa_r+0x9c> - 8006b3a: 4627 mov r7, r4 - 8006b3c: 463b mov r3, r7 - 8006b3e: 461f mov r7, r3 - 8006b40: f813 2d01 ldrb.w r2, [r3, #-1]! - 8006b44: 2a39 cmp r2, #57 ; 0x39 - 8006b46: d107 bne.n 8006b58 <_dtoa_r+0x700> - 8006b48: 9a08 ldr r2, [sp, #32] - 8006b4a: 429a cmp r2, r3 - 8006b4c: d1f7 bne.n 8006b3e <_dtoa_r+0x6e6> - 8006b4e: 2230 movs r2, #48 ; 0x30 - 8006b50: 9908 ldr r1, [sp, #32] - 8006b52: f108 0801 add.w r8, r8, #1 - 8006b56: 700a strb r2, [r1, #0] - 8006b58: 781a ldrb r2, [r3, #0] - 8006b5a: 3201 adds r2, #1 - 8006b5c: 701a strb r2, [r3, #0] - 8006b5e: e79f b.n 8006aa0 <_dtoa_r+0x648> - 8006b60: 46c8 mov r8, r9 - 8006b62: e7eb b.n 8006b3c <_dtoa_r+0x6e4> - 8006b64: 2200 movs r2, #0 - 8006b66: 4b72 ldr r3, [pc, #456] ; (8006d30 <_dtoa_r+0x8d8>) - 8006b68: f7f9 fd22 bl 80005b0 <__aeabi_dmul> - 8006b6c: 4602 mov r2, r0 - 8006b6e: 460b mov r3, r1 - 8006b70: e9cd 2304 strd r2, r3, [sp, #16] - 8006b74: 2200 movs r2, #0 - 8006b76: 2300 movs r3, #0 - 8006b78: f7f9 ff82 bl 8000a80 <__aeabi_dcmpeq> - 8006b7c: 2800 cmp r0, #0 - 8006b7e: d098 beq.n 8006ab2 <_dtoa_r+0x65a> - 8006b80: e7cb b.n 8006b1a <_dtoa_r+0x6c2> - 8006b82: 9a0b ldr r2, [sp, #44] ; 0x2c - 8006b84: 2a00 cmp r2, #0 - 8006b86: f000 80cd beq.w 8006d24 <_dtoa_r+0x8cc> - 8006b8a: 9a22 ldr r2, [sp, #136] ; 0x88 - 8006b8c: 2a01 cmp r2, #1 - 8006b8e: f300 80af bgt.w 8006cf0 <_dtoa_r+0x898> - 8006b92: 9a13 ldr r2, [sp, #76] ; 0x4c - 8006b94: 2a00 cmp r2, #0 - 8006b96: f000 80a7 beq.w 8006ce8 <_dtoa_r+0x890> - 8006b9a: f203 4333 addw r3, r3, #1075 ; 0x433 - 8006b9e: 9c0a ldr r4, [sp, #40] ; 0x28 - 8006ba0: 9f06 ldr r7, [sp, #24] - 8006ba2: 9a06 ldr r2, [sp, #24] - 8006ba4: 2101 movs r1, #1 - 8006ba6: 441a add r2, r3 - 8006ba8: 9206 str r2, [sp, #24] - 8006baa: 9a09 ldr r2, [sp, #36] ; 0x24 - 8006bac: 4628 mov r0, r5 - 8006bae: 441a add r2, r3 - 8006bb0: 9209 str r2, [sp, #36] ; 0x24 - 8006bb2: f000 fb65 bl 8007280 <__i2b> - 8006bb6: 4606 mov r6, r0 - 8006bb8: 2f00 cmp r7, #0 - 8006bba: dd0c ble.n 8006bd6 <_dtoa_r+0x77e> - 8006bbc: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006bbe: 2b00 cmp r3, #0 - 8006bc0: dd09 ble.n 8006bd6 <_dtoa_r+0x77e> - 8006bc2: 42bb cmp r3, r7 - 8006bc4: bfa8 it ge - 8006bc6: 463b movge r3, r7 - 8006bc8: 9a06 ldr r2, [sp, #24] - 8006bca: 1aff subs r7, r7, r3 - 8006bcc: 1ad2 subs r2, r2, r3 - 8006bce: 9206 str r2, [sp, #24] - 8006bd0: 9a09 ldr r2, [sp, #36] ; 0x24 - 8006bd2: 1ad3 subs r3, r2, r3 - 8006bd4: 9309 str r3, [sp, #36] ; 0x24 - 8006bd6: 9b0a ldr r3, [sp, #40] ; 0x28 - 8006bd8: b1f3 cbz r3, 8006c18 <_dtoa_r+0x7c0> - 8006bda: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006bdc: 2b00 cmp r3, #0 - 8006bde: f000 80a9 beq.w 8006d34 <_dtoa_r+0x8dc> - 8006be2: 2c00 cmp r4, #0 - 8006be4: dd10 ble.n 8006c08 <_dtoa_r+0x7b0> - 8006be6: 4631 mov r1, r6 - 8006be8: 4622 mov r2, r4 - 8006bea: 4628 mov r0, r5 - 8006bec: f000 fc02 bl 80073f4 <__pow5mult> - 8006bf0: 4652 mov r2, sl - 8006bf2: 4601 mov r1, r0 - 8006bf4: 4606 mov r6, r0 - 8006bf6: 4628 mov r0, r5 - 8006bf8: f000 fb58 bl 80072ac <__multiply> - 8006bfc: 4680 mov r8, r0 - 8006bfe: 4651 mov r1, sl - 8006c00: 4628 mov r0, r5 - 8006c02: f000 fa83 bl 800710c <_Bfree> - 8006c06: 46c2 mov sl, r8 - 8006c08: 9b0a ldr r3, [sp, #40] ; 0x28 - 8006c0a: 1b1a subs r2, r3, r4 - 8006c0c: d004 beq.n 8006c18 <_dtoa_r+0x7c0> - 8006c0e: 4651 mov r1, sl - 8006c10: 4628 mov r0, r5 - 8006c12: f000 fbef bl 80073f4 <__pow5mult> - 8006c16: 4682 mov sl, r0 - 8006c18: 2101 movs r1, #1 - 8006c1a: 4628 mov r0, r5 - 8006c1c: f000 fb30 bl 8007280 <__i2b> - 8006c20: 9b0e ldr r3, [sp, #56] ; 0x38 - 8006c22: 4604 mov r4, r0 - 8006c24: 2b00 cmp r3, #0 - 8006c26: f340 8087 ble.w 8006d38 <_dtoa_r+0x8e0> - 8006c2a: 461a mov r2, r3 - 8006c2c: 4601 mov r1, r0 - 8006c2e: 4628 mov r0, r5 - 8006c30: f000 fbe0 bl 80073f4 <__pow5mult> - 8006c34: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006c36: 4604 mov r4, r0 - 8006c38: 2b01 cmp r3, #1 - 8006c3a: f340 8080 ble.w 8006d3e <_dtoa_r+0x8e6> - 8006c3e: f04f 0800 mov.w r8, #0 - 8006c42: 6923 ldr r3, [r4, #16] - 8006c44: eb04 0383 add.w r3, r4, r3, lsl #2 - 8006c48: 6918 ldr r0, [r3, #16] - 8006c4a: f000 facb bl 80071e4 <__hi0bits> - 8006c4e: f1c0 0020 rsb r0, r0, #32 - 8006c52: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006c54: 4418 add r0, r3 - 8006c56: f010 001f ands.w r0, r0, #31 - 8006c5a: f000 8092 beq.w 8006d82 <_dtoa_r+0x92a> - 8006c5e: f1c0 0320 rsb r3, r0, #32 - 8006c62: 2b04 cmp r3, #4 - 8006c64: f340 808a ble.w 8006d7c <_dtoa_r+0x924> - 8006c68: f1c0 001c rsb r0, r0, #28 - 8006c6c: 9b06 ldr r3, [sp, #24] - 8006c6e: 4407 add r7, r0 - 8006c70: 4403 add r3, r0 - 8006c72: 9306 str r3, [sp, #24] - 8006c74: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006c76: 4403 add r3, r0 - 8006c78: 9309 str r3, [sp, #36] ; 0x24 - 8006c7a: 9b06 ldr r3, [sp, #24] - 8006c7c: 2b00 cmp r3, #0 - 8006c7e: dd05 ble.n 8006c8c <_dtoa_r+0x834> - 8006c80: 4651 mov r1, sl - 8006c82: 461a mov r2, r3 - 8006c84: 4628 mov r0, r5 - 8006c86: f000 fc0f bl 80074a8 <__lshift> - 8006c8a: 4682 mov sl, r0 - 8006c8c: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006c8e: 2b00 cmp r3, #0 - 8006c90: dd05 ble.n 8006c9e <_dtoa_r+0x846> - 8006c92: 4621 mov r1, r4 - 8006c94: 461a mov r2, r3 - 8006c96: 4628 mov r0, r5 - 8006c98: f000 fc06 bl 80074a8 <__lshift> - 8006c9c: 4604 mov r4, r0 - 8006c9e: 9b0f ldr r3, [sp, #60] ; 0x3c - 8006ca0: 2b00 cmp r3, #0 - 8006ca2: d070 beq.n 8006d86 <_dtoa_r+0x92e> - 8006ca4: 4621 mov r1, r4 - 8006ca6: 4650 mov r0, sl - 8006ca8: f000 fc6a bl 8007580 <__mcmp> - 8006cac: 2800 cmp r0, #0 - 8006cae: da6a bge.n 8006d86 <_dtoa_r+0x92e> - 8006cb0: 2300 movs r3, #0 - 8006cb2: 4651 mov r1, sl - 8006cb4: 220a movs r2, #10 - 8006cb6: 4628 mov r0, r5 - 8006cb8: f000 fa4a bl 8007150 <__multadd> - 8006cbc: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006cbe: 4682 mov sl, r0 - 8006cc0: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff - 8006cc4: 2b00 cmp r3, #0 - 8006cc6: f000 8193 beq.w 8006ff0 <_dtoa_r+0xb98> - 8006cca: 4631 mov r1, r6 - 8006ccc: 2300 movs r3, #0 - 8006cce: 220a movs r2, #10 - 8006cd0: 4628 mov r0, r5 - 8006cd2: f000 fa3d bl 8007150 <__multadd> - 8006cd6: f1bb 0f00 cmp.w fp, #0 - 8006cda: 4606 mov r6, r0 - 8006cdc: f300 8093 bgt.w 8006e06 <_dtoa_r+0x9ae> - 8006ce0: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006ce2: 2b02 cmp r3, #2 - 8006ce4: dc57 bgt.n 8006d96 <_dtoa_r+0x93e> - 8006ce6: e08e b.n 8006e06 <_dtoa_r+0x9ae> - 8006ce8: 9b16 ldr r3, [sp, #88] ; 0x58 - 8006cea: f1c3 0336 rsb r3, r3, #54 ; 0x36 - 8006cee: e756 b.n 8006b9e <_dtoa_r+0x746> - 8006cf0: 9b02 ldr r3, [sp, #8] - 8006cf2: 1e5c subs r4, r3, #1 - 8006cf4: 9b0a ldr r3, [sp, #40] ; 0x28 - 8006cf6: 42a3 cmp r3, r4 - 8006cf8: bfb7 itett lt - 8006cfa: 9b0a ldrlt r3, [sp, #40] ; 0x28 - 8006cfc: 1b1c subge r4, r3, r4 - 8006cfe: 1ae2 sublt r2, r4, r3 - 8006d00: 9b0e ldrlt r3, [sp, #56] ; 0x38 - 8006d02: bfbe ittt lt - 8006d04: 940a strlt r4, [sp, #40] ; 0x28 - 8006d06: 189b addlt r3, r3, r2 - 8006d08: 930e strlt r3, [sp, #56] ; 0x38 - 8006d0a: 9b02 ldr r3, [sp, #8] - 8006d0c: bfb8 it lt - 8006d0e: 2400 movlt r4, #0 - 8006d10: 2b00 cmp r3, #0 - 8006d12: bfbb ittet lt - 8006d14: 9b06 ldrlt r3, [sp, #24] - 8006d16: 9a02 ldrlt r2, [sp, #8] - 8006d18: 9f06 ldrge r7, [sp, #24] - 8006d1a: 1a9f sublt r7, r3, r2 - 8006d1c: bfac ite ge - 8006d1e: 9b02 ldrge r3, [sp, #8] - 8006d20: 2300 movlt r3, #0 - 8006d22: e73e b.n 8006ba2 <_dtoa_r+0x74a> - 8006d24: 9c0a ldr r4, [sp, #40] ; 0x28 - 8006d26: 9f06 ldr r7, [sp, #24] - 8006d28: 9e0b ldr r6, [sp, #44] ; 0x2c - 8006d2a: e745 b.n 8006bb8 <_dtoa_r+0x760> - 8006d2c: 3fe00000 .word 0x3fe00000 - 8006d30: 40240000 .word 0x40240000 - 8006d34: 9a0a ldr r2, [sp, #40] ; 0x28 - 8006d36: e76a b.n 8006c0e <_dtoa_r+0x7b6> - 8006d38: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006d3a: 2b01 cmp r3, #1 - 8006d3c: dc19 bgt.n 8006d72 <_dtoa_r+0x91a> - 8006d3e: 9b04 ldr r3, [sp, #16] - 8006d40: b9bb cbnz r3, 8006d72 <_dtoa_r+0x91a> - 8006d42: 9b05 ldr r3, [sp, #20] - 8006d44: f3c3 0313 ubfx r3, r3, #0, #20 - 8006d48: b99b cbnz r3, 8006d72 <_dtoa_r+0x91a> - 8006d4a: 9b05 ldr r3, [sp, #20] - 8006d4c: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 - 8006d50: 0d1b lsrs r3, r3, #20 - 8006d52: 051b lsls r3, r3, #20 - 8006d54: b183 cbz r3, 8006d78 <_dtoa_r+0x920> - 8006d56: f04f 0801 mov.w r8, #1 - 8006d5a: 9b06 ldr r3, [sp, #24] - 8006d5c: 3301 adds r3, #1 - 8006d5e: 9306 str r3, [sp, #24] - 8006d60: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006d62: 3301 adds r3, #1 - 8006d64: 9309 str r3, [sp, #36] ; 0x24 - 8006d66: 9b0e ldr r3, [sp, #56] ; 0x38 - 8006d68: 2b00 cmp r3, #0 - 8006d6a: f47f af6a bne.w 8006c42 <_dtoa_r+0x7ea> - 8006d6e: 2001 movs r0, #1 - 8006d70: e76f b.n 8006c52 <_dtoa_r+0x7fa> - 8006d72: f04f 0800 mov.w r8, #0 - 8006d76: e7f6 b.n 8006d66 <_dtoa_r+0x90e> - 8006d78: 4698 mov r8, r3 - 8006d7a: e7f4 b.n 8006d66 <_dtoa_r+0x90e> - 8006d7c: f43f af7d beq.w 8006c7a <_dtoa_r+0x822> - 8006d80: 4618 mov r0, r3 - 8006d82: 301c adds r0, #28 - 8006d84: e772 b.n 8006c6c <_dtoa_r+0x814> - 8006d86: 9b02 ldr r3, [sp, #8] - 8006d88: 2b00 cmp r3, #0 - 8006d8a: dc36 bgt.n 8006dfa <_dtoa_r+0x9a2> - 8006d8c: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006d8e: 2b02 cmp r3, #2 - 8006d90: dd33 ble.n 8006dfa <_dtoa_r+0x9a2> - 8006d92: f8dd b008 ldr.w fp, [sp, #8] - 8006d96: f1bb 0f00 cmp.w fp, #0 - 8006d9a: d10d bne.n 8006db8 <_dtoa_r+0x960> - 8006d9c: 4621 mov r1, r4 - 8006d9e: 465b mov r3, fp - 8006da0: 2205 movs r2, #5 - 8006da2: 4628 mov r0, r5 - 8006da4: f000 f9d4 bl 8007150 <__multadd> - 8006da8: 4601 mov r1, r0 - 8006daa: 4604 mov r4, r0 - 8006dac: 4650 mov r0, sl - 8006dae: f000 fbe7 bl 8007580 <__mcmp> - 8006db2: 2800 cmp r0, #0 - 8006db4: f73f adb6 bgt.w 8006924 <_dtoa_r+0x4cc> - 8006db8: 9b23 ldr r3, [sp, #140] ; 0x8c - 8006dba: 9f08 ldr r7, [sp, #32] - 8006dbc: ea6f 0903 mvn.w r9, r3 - 8006dc0: f04f 0800 mov.w r8, #0 - 8006dc4: 4621 mov r1, r4 - 8006dc6: 4628 mov r0, r5 - 8006dc8: f000 f9a0 bl 800710c <_Bfree> - 8006dcc: 2e00 cmp r6, #0 - 8006dce: f43f aea4 beq.w 8006b1a <_dtoa_r+0x6c2> - 8006dd2: f1b8 0f00 cmp.w r8, #0 - 8006dd6: d005 beq.n 8006de4 <_dtoa_r+0x98c> - 8006dd8: 45b0 cmp r8, r6 - 8006dda: d003 beq.n 8006de4 <_dtoa_r+0x98c> - 8006ddc: 4641 mov r1, r8 - 8006dde: 4628 mov r0, r5 - 8006de0: f000 f994 bl 800710c <_Bfree> - 8006de4: 4631 mov r1, r6 - 8006de6: 4628 mov r0, r5 - 8006de8: f000 f990 bl 800710c <_Bfree> - 8006dec: e695 b.n 8006b1a <_dtoa_r+0x6c2> - 8006dee: 2400 movs r4, #0 - 8006df0: 4626 mov r6, r4 - 8006df2: e7e1 b.n 8006db8 <_dtoa_r+0x960> - 8006df4: 46c1 mov r9, r8 - 8006df6: 4626 mov r6, r4 - 8006df8: e594 b.n 8006924 <_dtoa_r+0x4cc> - 8006dfa: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006dfc: f8dd b008 ldr.w fp, [sp, #8] + 8006778: 601a str r2, [r3, #0] + 800677a: 1e3b subs r3, r7, #0 + 800677c: bfaf iteee ge + 800677e: 2300 movge r3, #0 + 8006780: 2201 movlt r2, #1 + 8006782: f023 4300 biclt.w r3, r3, #2147483648 ; 0x80000000 + 8006786: 9305 strlt r3, [sp, #20] + 8006788: bfa8 it ge + 800678a: f8c8 3000 strge.w r3, [r8] + 800678e: f8dd 9014 ldr.w r9, [sp, #20] + 8006792: 4b9f ldr r3, [pc, #636] ; (8006a10 <_dtoa_r+0x2e8>) + 8006794: bfb8 it lt + 8006796: f8c8 2000 strlt.w r2, [r8] + 800679a: ea33 0309 bics.w r3, r3, r9 + 800679e: d119 bne.n 80067d4 <_dtoa_r+0xac> + 80067a0: f242 730f movw r3, #9999 ; 0x270f + 80067a4: 9a24 ldr r2, [sp, #144] ; 0x90 + 80067a6: 6013 str r3, [r2, #0] + 80067a8: f3c9 0313 ubfx r3, r9, #0, #20 + 80067ac: 4333 orrs r3, r6 + 80067ae: f000 8580 beq.w 80072b2 <_dtoa_r+0xb8a> + 80067b2: 9b26 ldr r3, [sp, #152] ; 0x98 + 80067b4: b953 cbnz r3, 80067cc <_dtoa_r+0xa4> + 80067b6: 4b97 ldr r3, [pc, #604] ; (8006a14 <_dtoa_r+0x2ec>) + 80067b8: e022 b.n 8006800 <_dtoa_r+0xd8> + 80067ba: 4b97 ldr r3, [pc, #604] ; (8006a18 <_dtoa_r+0x2f0>) + 80067bc: 9308 str r3, [sp, #32] + 80067be: 3308 adds r3, #8 + 80067c0: 9a26 ldr r2, [sp, #152] ; 0x98 + 80067c2: 6013 str r3, [r2, #0] + 80067c4: 9808 ldr r0, [sp, #32] + 80067c6: b019 add sp, #100 ; 0x64 + 80067c8: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 80067cc: 4b91 ldr r3, [pc, #580] ; (8006a14 <_dtoa_r+0x2ec>) + 80067ce: 9308 str r3, [sp, #32] + 80067d0: 3303 adds r3, #3 + 80067d2: e7f5 b.n 80067c0 <_dtoa_r+0x98> + 80067d4: e9dd 3404 ldrd r3, r4, [sp, #16] + 80067d8: e9cd 340c strd r3, r4, [sp, #48] ; 0x30 + 80067dc: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80067e0: 2200 movs r2, #0 + 80067e2: 2300 movs r3, #0 + 80067e4: f7fa f94c bl 8000a80 <__aeabi_dcmpeq> + 80067e8: 4680 mov r8, r0 + 80067ea: b158 cbz r0, 8006804 <_dtoa_r+0xdc> + 80067ec: 2301 movs r3, #1 + 80067ee: 9a24 ldr r2, [sp, #144] ; 0x90 + 80067f0: 6013 str r3, [r2, #0] + 80067f2: 9b26 ldr r3, [sp, #152] ; 0x98 + 80067f4: 2b00 cmp r3, #0 + 80067f6: f000 8559 beq.w 80072ac <_dtoa_r+0xb84> + 80067fa: 4888 ldr r0, [pc, #544] ; (8006a1c <_dtoa_r+0x2f4>) + 80067fc: 6018 str r0, [r3, #0] + 80067fe: 1e43 subs r3, r0, #1 + 8006800: 9308 str r3, [sp, #32] + 8006802: e7df b.n 80067c4 <_dtoa_r+0x9c> + 8006804: ab16 add r3, sp, #88 ; 0x58 + 8006806: 9301 str r3, [sp, #4] + 8006808: ab17 add r3, sp, #92 ; 0x5c + 800680a: 9300 str r3, [sp, #0] + 800680c: 4628 mov r0, r5 + 800680e: e9dd 230c ldrd r2, r3, [sp, #48] ; 0x30 + 8006812: f001 f8c9 bl 80079a8 <__d2b> + 8006816: f3c9 540a ubfx r4, r9, #20, #11 + 800681a: 4682 mov sl, r0 + 800681c: 2c00 cmp r4, #0 + 800681e: d07e beq.n 800691e <_dtoa_r+0x1f6> + 8006820: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8006824: 9b0d ldr r3, [sp, #52] ; 0x34 + 8006826: f2a4 34ff subw r4, r4, #1023 ; 0x3ff + 800682a: f3c3 0313 ubfx r3, r3, #0, #20 + 800682e: f043 517f orr.w r1, r3, #1069547520 ; 0x3fc00000 + 8006832: f441 1140 orr.w r1, r1, #3145728 ; 0x300000 + 8006836: f8cd 804c str.w r8, [sp, #76] ; 0x4c + 800683a: 2200 movs r2, #0 + 800683c: 4b78 ldr r3, [pc, #480] ; (8006a20 <_dtoa_r+0x2f8>) + 800683e: f7f9 fcff bl 8000240 <__aeabi_dsub> + 8006842: a36b add r3, pc, #428 ; (adr r3, 80069f0 <_dtoa_r+0x2c8>) + 8006844: e9d3 2300 ldrd r2, r3, [r3] + 8006848: f7f9 feb2 bl 80005b0 <__aeabi_dmul> + 800684c: a36a add r3, pc, #424 ; (adr r3, 80069f8 <_dtoa_r+0x2d0>) + 800684e: e9d3 2300 ldrd r2, r3, [r3] + 8006852: f7f9 fcf7 bl 8000244 <__adddf3> + 8006856: 4606 mov r6, r0 + 8006858: 4620 mov r0, r4 + 800685a: 460f mov r7, r1 + 800685c: f7f9 fe3e bl 80004dc <__aeabi_i2d> + 8006860: a367 add r3, pc, #412 ; (adr r3, 8006a00 <_dtoa_r+0x2d8>) + 8006862: e9d3 2300 ldrd r2, r3, [r3] + 8006866: f7f9 fea3 bl 80005b0 <__aeabi_dmul> + 800686a: 4602 mov r2, r0 + 800686c: 460b mov r3, r1 + 800686e: 4630 mov r0, r6 + 8006870: 4639 mov r1, r7 + 8006872: f7f9 fce7 bl 8000244 <__adddf3> + 8006876: 4606 mov r6, r0 + 8006878: 460f mov r7, r1 + 800687a: f7fa f949 bl 8000b10 <__aeabi_d2iz> + 800687e: 2200 movs r2, #0 + 8006880: 4681 mov r9, r0 + 8006882: 2300 movs r3, #0 + 8006884: 4630 mov r0, r6 + 8006886: 4639 mov r1, r7 + 8006888: f7fa f904 bl 8000a94 <__aeabi_dcmplt> + 800688c: b148 cbz r0, 80068a2 <_dtoa_r+0x17a> + 800688e: 4648 mov r0, r9 + 8006890: f7f9 fe24 bl 80004dc <__aeabi_i2d> + 8006894: 4632 mov r2, r6 + 8006896: 463b mov r3, r7 + 8006898: f7fa f8f2 bl 8000a80 <__aeabi_dcmpeq> + 800689c: b908 cbnz r0, 80068a2 <_dtoa_r+0x17a> + 800689e: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 80068a2: f1b9 0f16 cmp.w r9, #22 + 80068a6: d857 bhi.n 8006958 <_dtoa_r+0x230> + 80068a8: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 80068ac: 4b5d ldr r3, [pc, #372] ; (8006a24 <_dtoa_r+0x2fc>) + 80068ae: eb03 03c9 add.w r3, r3, r9, lsl #3 + 80068b2: e9d3 2300 ldrd r2, r3, [r3] + 80068b6: f7fa f8ed bl 8000a94 <__aeabi_dcmplt> + 80068ba: 2800 cmp r0, #0 + 80068bc: d04e beq.n 800695c <_dtoa_r+0x234> + 80068be: 2300 movs r3, #0 + 80068c0: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 80068c4: 930f str r3, [sp, #60] ; 0x3c + 80068c6: 9b16 ldr r3, [sp, #88] ; 0x58 + 80068c8: 1b1c subs r4, r3, r4 + 80068ca: 1e63 subs r3, r4, #1 + 80068cc: 9309 str r3, [sp, #36] ; 0x24 + 80068ce: bf49 itett mi + 80068d0: f1c4 0301 rsbmi r3, r4, #1 + 80068d4: 2300 movpl r3, #0 + 80068d6: 9306 strmi r3, [sp, #24] + 80068d8: 2300 movmi r3, #0 + 80068da: bf54 ite pl + 80068dc: 9306 strpl r3, [sp, #24] + 80068de: 9309 strmi r3, [sp, #36] ; 0x24 + 80068e0: f1b9 0f00 cmp.w r9, #0 + 80068e4: db3c blt.n 8006960 <_dtoa_r+0x238> + 80068e6: 9b09 ldr r3, [sp, #36] ; 0x24 + 80068e8: f8cd 9038 str.w r9, [sp, #56] ; 0x38 + 80068ec: 444b add r3, r9 + 80068ee: 9309 str r3, [sp, #36] ; 0x24 + 80068f0: 2300 movs r3, #0 + 80068f2: 930a str r3, [sp, #40] ; 0x28 + 80068f4: 9b22 ldr r3, [sp, #136] ; 0x88 + 80068f6: 2b09 cmp r3, #9 + 80068f8: d86c bhi.n 80069d4 <_dtoa_r+0x2ac> + 80068fa: 2b05 cmp r3, #5 + 80068fc: bfc4 itt gt + 80068fe: 3b04 subgt r3, #4 + 8006900: 9322 strgt r3, [sp, #136] ; 0x88 + 8006902: 9b22 ldr r3, [sp, #136] ; 0x88 + 8006904: bfc8 it gt + 8006906: 2400 movgt r4, #0 + 8006908: f1a3 0302 sub.w r3, r3, #2 + 800690c: bfd8 it le + 800690e: 2401 movle r4, #1 + 8006910: 2b03 cmp r3, #3 + 8006912: f200 808b bhi.w 8006a2c <_dtoa_r+0x304> + 8006916: e8df f003 tbb [pc, r3] + 800691a: 4f2d .short 0x4f2d + 800691c: 5b4d .short 0x5b4d + 800691e: e9dd 4316 ldrd r4, r3, [sp, #88] ; 0x58 + 8006922: 441c add r4, r3 + 8006924: f204 4332 addw r3, r4, #1074 ; 0x432 + 8006928: 2b20 cmp r3, #32 + 800692a: bfc3 ittte gt + 800692c: f1c3 0340 rsbgt r3, r3, #64 ; 0x40 + 8006930: f204 4012 addwgt r0, r4, #1042 ; 0x412 + 8006934: fa09 f303 lslgt.w r3, r9, r3 + 8006938: f1c3 0320 rsble r3, r3, #32 + 800693c: bfc6 itte gt + 800693e: fa26 f000 lsrgt.w r0, r6, r0 + 8006942: 4318 orrgt r0, r3 + 8006944: fa06 f003 lslle.w r0, r6, r3 + 8006948: f7f9 fdb8 bl 80004bc <__aeabi_ui2d> + 800694c: 2301 movs r3, #1 + 800694e: f1a1 71f8 sub.w r1, r1, #32505856 ; 0x1f00000 + 8006952: 3c01 subs r4, #1 + 8006954: 9313 str r3, [sp, #76] ; 0x4c + 8006956: e770 b.n 800683a <_dtoa_r+0x112> + 8006958: 2301 movs r3, #1 + 800695a: e7b3 b.n 80068c4 <_dtoa_r+0x19c> + 800695c: 900f str r0, [sp, #60] ; 0x3c + 800695e: e7b2 b.n 80068c6 <_dtoa_r+0x19e> + 8006960: 9b06 ldr r3, [sp, #24] + 8006962: eba3 0309 sub.w r3, r3, r9 + 8006966: 9306 str r3, [sp, #24] + 8006968: f1c9 0300 rsb r3, r9, #0 + 800696c: 930a str r3, [sp, #40] ; 0x28 + 800696e: 2300 movs r3, #0 + 8006970: 930e str r3, [sp, #56] ; 0x38 + 8006972: e7bf b.n 80068f4 <_dtoa_r+0x1cc> + 8006974: 2300 movs r3, #0 + 8006976: 930b str r3, [sp, #44] ; 0x2c + 8006978: 9b23 ldr r3, [sp, #140] ; 0x8c + 800697a: 2b00 cmp r3, #0 + 800697c: dc59 bgt.n 8006a32 <_dtoa_r+0x30a> + 800697e: f04f 0b01 mov.w fp, #1 + 8006982: 465b mov r3, fp + 8006984: f8cd b008 str.w fp, [sp, #8] + 8006988: f8cd b08c str.w fp, [sp, #140] ; 0x8c + 800698c: 2200 movs r2, #0 + 800698e: 6a68 ldr r0, [r5, #36] ; 0x24 + 8006990: 6042 str r2, [r0, #4] + 8006992: 2204 movs r2, #4 + 8006994: f102 0614 add.w r6, r2, #20 + 8006998: 429e cmp r6, r3 + 800699a: 6841 ldr r1, [r0, #4] + 800699c: d94f bls.n 8006a3e <_dtoa_r+0x316> + 800699e: 4628 mov r0, r5 + 80069a0: f000 fcdc bl 800735c <_Balloc> + 80069a4: 9008 str r0, [sp, #32] + 80069a6: 2800 cmp r0, #0 + 80069a8: d14d bne.n 8006a46 <_dtoa_r+0x31e> + 80069aa: 4602 mov r2, r0 + 80069ac: f44f 71d5 mov.w r1, #426 ; 0x1aa + 80069b0: 4b1d ldr r3, [pc, #116] ; (8006a28 <_dtoa_r+0x300>) + 80069b2: e6cd b.n 8006750 <_dtoa_r+0x28> + 80069b4: 2301 movs r3, #1 + 80069b6: e7de b.n 8006976 <_dtoa_r+0x24e> + 80069b8: 2300 movs r3, #0 + 80069ba: 930b str r3, [sp, #44] ; 0x2c + 80069bc: 9b23 ldr r3, [sp, #140] ; 0x8c + 80069be: eb09 0b03 add.w fp, r9, r3 + 80069c2: f10b 0301 add.w r3, fp, #1 + 80069c6: 2b01 cmp r3, #1 + 80069c8: 9302 str r3, [sp, #8] + 80069ca: bfb8 it lt + 80069cc: 2301 movlt r3, #1 + 80069ce: e7dd b.n 800698c <_dtoa_r+0x264> + 80069d0: 2301 movs r3, #1 + 80069d2: e7f2 b.n 80069ba <_dtoa_r+0x292> + 80069d4: 2401 movs r4, #1 + 80069d6: 2300 movs r3, #0 + 80069d8: 940b str r4, [sp, #44] ; 0x2c + 80069da: 9322 str r3, [sp, #136] ; 0x88 + 80069dc: f04f 3bff mov.w fp, #4294967295 ; 0xffffffff + 80069e0: 2200 movs r2, #0 + 80069e2: 2312 movs r3, #18 + 80069e4: f8cd b008 str.w fp, [sp, #8] + 80069e8: 9223 str r2, [sp, #140] ; 0x8c + 80069ea: e7cf b.n 800698c <_dtoa_r+0x264> + 80069ec: f3af 8000 nop.w + 80069f0: 636f4361 .word 0x636f4361 + 80069f4: 3fd287a7 .word 0x3fd287a7 + 80069f8: 8b60c8b3 .word 0x8b60c8b3 + 80069fc: 3fc68a28 .word 0x3fc68a28 + 8006a00: 509f79fb .word 0x509f79fb + 8006a04: 3fd34413 .word 0x3fd34413 + 8006a08: 0800948d .word 0x0800948d + 8006a0c: 080094a4 .word 0x080094a4 + 8006a10: 7ff00000 .word 0x7ff00000 + 8006a14: 08009489 .word 0x08009489 + 8006a18: 08009480 .word 0x08009480 + 8006a1c: 0800945d .word 0x0800945d + 8006a20: 3ff80000 .word 0x3ff80000 + 8006a24: 080095a0 .word 0x080095a0 + 8006a28: 08009503 .word 0x08009503 + 8006a2c: 2301 movs r3, #1 + 8006a2e: 930b str r3, [sp, #44] ; 0x2c + 8006a30: e7d4 b.n 80069dc <_dtoa_r+0x2b4> + 8006a32: f8dd b08c ldr.w fp, [sp, #140] ; 0x8c + 8006a36: 465b mov r3, fp + 8006a38: f8cd b008 str.w fp, [sp, #8] + 8006a3c: e7a6 b.n 800698c <_dtoa_r+0x264> + 8006a3e: 3101 adds r1, #1 + 8006a40: 6041 str r1, [r0, #4] + 8006a42: 0052 lsls r2, r2, #1 + 8006a44: e7a6 b.n 8006994 <_dtoa_r+0x26c> + 8006a46: 6a6b ldr r3, [r5, #36] ; 0x24 + 8006a48: 9a08 ldr r2, [sp, #32] + 8006a4a: 601a str r2, [r3, #0] + 8006a4c: 9b02 ldr r3, [sp, #8] + 8006a4e: 2b0e cmp r3, #14 + 8006a50: f200 80a8 bhi.w 8006ba4 <_dtoa_r+0x47c> + 8006a54: 2c00 cmp r4, #0 + 8006a56: f000 80a5 beq.w 8006ba4 <_dtoa_r+0x47c> + 8006a5a: f1b9 0f00 cmp.w r9, #0 + 8006a5e: dd34 ble.n 8006aca <_dtoa_r+0x3a2> + 8006a60: 4a9a ldr r2, [pc, #616] ; (8006ccc <_dtoa_r+0x5a4>) + 8006a62: f009 030f and.w r3, r9, #15 + 8006a66: eb02 03c3 add.w r3, r2, r3, lsl #3 + 8006a6a: f419 7f80 tst.w r9, #256 ; 0x100 + 8006a6e: e9d3 3400 ldrd r3, r4, [r3] + 8006a72: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 8006a76: ea4f 1429 mov.w r4, r9, asr #4 + 8006a7a: d016 beq.n 8006aaa <_dtoa_r+0x382> + 8006a7c: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8006a80: 4b93 ldr r3, [pc, #588] ; (8006cd0 <_dtoa_r+0x5a8>) + 8006a82: 2703 movs r7, #3 + 8006a84: e9d3 2308 ldrd r2, r3, [r3, #32] + 8006a88: f7f9 febc bl 8000804 <__aeabi_ddiv> + 8006a8c: e9cd 0104 strd r0, r1, [sp, #16] + 8006a90: f004 040f and.w r4, r4, #15 + 8006a94: 4e8e ldr r6, [pc, #568] ; (8006cd0 <_dtoa_r+0x5a8>) + 8006a96: b954 cbnz r4, 8006aae <_dtoa_r+0x386> + 8006a98: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8006a9c: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006aa0: f7f9 feb0 bl 8000804 <__aeabi_ddiv> + 8006aa4: e9cd 0104 strd r0, r1, [sp, #16] + 8006aa8: e029 b.n 8006afe <_dtoa_r+0x3d6> + 8006aaa: 2702 movs r7, #2 + 8006aac: e7f2 b.n 8006a94 <_dtoa_r+0x36c> + 8006aae: 07e1 lsls r1, r4, #31 + 8006ab0: d508 bpl.n 8006ac4 <_dtoa_r+0x39c> + 8006ab2: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8006ab6: e9d6 2300 ldrd r2, r3, [r6] + 8006aba: f7f9 fd79 bl 80005b0 <__aeabi_dmul> + 8006abe: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8006ac2: 3701 adds r7, #1 + 8006ac4: 1064 asrs r4, r4, #1 + 8006ac6: 3608 adds r6, #8 + 8006ac8: e7e5 b.n 8006a96 <_dtoa_r+0x36e> + 8006aca: f000 80a5 beq.w 8006c18 <_dtoa_r+0x4f0> + 8006ace: e9dd 010c ldrd r0, r1, [sp, #48] ; 0x30 + 8006ad2: f1c9 0400 rsb r4, r9, #0 + 8006ad6: 4b7d ldr r3, [pc, #500] ; (8006ccc <_dtoa_r+0x5a4>) + 8006ad8: f004 020f and.w r2, r4, #15 + 8006adc: eb03 03c2 add.w r3, r3, r2, lsl #3 + 8006ae0: e9d3 2300 ldrd r2, r3, [r3] + 8006ae4: f7f9 fd64 bl 80005b0 <__aeabi_dmul> + 8006ae8: 2702 movs r7, #2 + 8006aea: 2300 movs r3, #0 + 8006aec: e9cd 0104 strd r0, r1, [sp, #16] + 8006af0: 4e77 ldr r6, [pc, #476] ; (8006cd0 <_dtoa_r+0x5a8>) + 8006af2: 1124 asrs r4, r4, #4 + 8006af4: 2c00 cmp r4, #0 + 8006af6: f040 8084 bne.w 8006c02 <_dtoa_r+0x4da> + 8006afa: 2b00 cmp r3, #0 + 8006afc: d1d2 bne.n 8006aa4 <_dtoa_r+0x37c> + 8006afe: 9b0f ldr r3, [sp, #60] ; 0x3c + 8006b00: 2b00 cmp r3, #0 + 8006b02: f000 808b beq.w 8006c1c <_dtoa_r+0x4f4> + 8006b06: e9dd 3404 ldrd r3, r4, [sp, #16] + 8006b0a: e9cd 3410 strd r3, r4, [sp, #64] ; 0x40 + 8006b0e: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8006b12: 2200 movs r2, #0 + 8006b14: 4b6f ldr r3, [pc, #444] ; (8006cd4 <_dtoa_r+0x5ac>) + 8006b16: f7f9 ffbd bl 8000a94 <__aeabi_dcmplt> + 8006b1a: 2800 cmp r0, #0 + 8006b1c: d07e beq.n 8006c1c <_dtoa_r+0x4f4> + 8006b1e: 9b02 ldr r3, [sp, #8] + 8006b20: 2b00 cmp r3, #0 + 8006b22: d07b beq.n 8006c1c <_dtoa_r+0x4f4> + 8006b24: f1bb 0f00 cmp.w fp, #0 + 8006b28: dd38 ble.n 8006b9c <_dtoa_r+0x474> + 8006b2a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8006b2e: 2200 movs r2, #0 + 8006b30: 4b69 ldr r3, [pc, #420] ; (8006cd8 <_dtoa_r+0x5b0>) + 8006b32: f7f9 fd3d bl 80005b0 <__aeabi_dmul> + 8006b36: 465c mov r4, fp + 8006b38: e9cd 0104 strd r0, r1, [sp, #16] + 8006b3c: f109 38ff add.w r8, r9, #4294967295 ; 0xffffffff + 8006b40: 3701 adds r7, #1 + 8006b42: 4638 mov r0, r7 + 8006b44: f7f9 fcca bl 80004dc <__aeabi_i2d> + 8006b48: e9dd 2304 ldrd r2, r3, [sp, #16] + 8006b4c: f7f9 fd30 bl 80005b0 <__aeabi_dmul> + 8006b50: 2200 movs r2, #0 + 8006b52: 4b62 ldr r3, [pc, #392] ; (8006cdc <_dtoa_r+0x5b4>) + 8006b54: f7f9 fb76 bl 8000244 <__adddf3> + 8006b58: f1a1 7650 sub.w r6, r1, #54525952 ; 0x3400000 + 8006b5c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8006b60: 9611 str r6, [sp, #68] ; 0x44 + 8006b62: 2c00 cmp r4, #0 + 8006b64: d15d bne.n 8006c22 <_dtoa_r+0x4fa> + 8006b66: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006b6a: 2200 movs r2, #0 + 8006b6c: 4b5c ldr r3, [pc, #368] ; (8006ce0 <_dtoa_r+0x5b8>) + 8006b6e: f7f9 fb67 bl 8000240 <__aeabi_dsub> + 8006b72: 4602 mov r2, r0 + 8006b74: 460b mov r3, r1 + 8006b76: e9cd 2304 strd r2, r3, [sp, #16] + 8006b7a: 4633 mov r3, r6 + 8006b7c: 9a10 ldr r2, [sp, #64] ; 0x40 + 8006b7e: f7f9 ffa7 bl 8000ad0 <__aeabi_dcmpgt> + 8006b82: 2800 cmp r0, #0 + 8006b84: f040 829e bne.w 80070c4 <_dtoa_r+0x99c> + 8006b88: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006b8c: 9a10 ldr r2, [sp, #64] ; 0x40 + 8006b8e: f106 4300 add.w r3, r6, #2147483648 ; 0x80000000 + 8006b92: f7f9 ff7f bl 8000a94 <__aeabi_dcmplt> + 8006b96: 2800 cmp r0, #0 + 8006b98: f040 8292 bne.w 80070c0 <_dtoa_r+0x998> + 8006b9c: e9dd 340c ldrd r3, r4, [sp, #48] ; 0x30 + 8006ba0: e9cd 3404 strd r3, r4, [sp, #16] + 8006ba4: 9b17 ldr r3, [sp, #92] ; 0x5c + 8006ba6: 2b00 cmp r3, #0 + 8006ba8: f2c0 8153 blt.w 8006e52 <_dtoa_r+0x72a> + 8006bac: f1b9 0f0e cmp.w r9, #14 + 8006bb0: f300 814f bgt.w 8006e52 <_dtoa_r+0x72a> + 8006bb4: 4b45 ldr r3, [pc, #276] ; (8006ccc <_dtoa_r+0x5a4>) + 8006bb6: eb03 03c9 add.w r3, r3, r9, lsl #3 + 8006bba: e9d3 3400 ldrd r3, r4, [r3] + 8006bbe: e9cd 3406 strd r3, r4, [sp, #24] + 8006bc2: 9b23 ldr r3, [sp, #140] ; 0x8c + 8006bc4: 2b00 cmp r3, #0 + 8006bc6: f280 80db bge.w 8006d80 <_dtoa_r+0x658> + 8006bca: 9b02 ldr r3, [sp, #8] + 8006bcc: 2b00 cmp r3, #0 + 8006bce: f300 80d7 bgt.w 8006d80 <_dtoa_r+0x658> + 8006bd2: f040 8274 bne.w 80070be <_dtoa_r+0x996> + 8006bd6: e9dd 0106 ldrd r0, r1, [sp, #24] + 8006bda: 2200 movs r2, #0 + 8006bdc: 4b40 ldr r3, [pc, #256] ; (8006ce0 <_dtoa_r+0x5b8>) + 8006bde: f7f9 fce7 bl 80005b0 <__aeabi_dmul> + 8006be2: e9dd 2304 ldrd r2, r3, [sp, #16] + 8006be6: f7f9 ff69 bl 8000abc <__aeabi_dcmpge> + 8006bea: 9c02 ldr r4, [sp, #8] + 8006bec: 4626 mov r6, r4 + 8006bee: 2800 cmp r0, #0 + 8006bf0: f040 824a bne.w 8007088 <_dtoa_r+0x960> + 8006bf4: 2331 movs r3, #49 ; 0x31 + 8006bf6: 9f08 ldr r7, [sp, #32] + 8006bf8: f109 0901 add.w r9, r9, #1 + 8006bfc: f807 3b01 strb.w r3, [r7], #1 + 8006c00: e246 b.n 8007090 <_dtoa_r+0x968> + 8006c02: 07e2 lsls r2, r4, #31 + 8006c04: d505 bpl.n 8006c12 <_dtoa_r+0x4ea> + 8006c06: e9d6 2300 ldrd r2, r3, [r6] + 8006c0a: f7f9 fcd1 bl 80005b0 <__aeabi_dmul> + 8006c0e: 2301 movs r3, #1 + 8006c10: 3701 adds r7, #1 + 8006c12: 1064 asrs r4, r4, #1 + 8006c14: 3608 adds r6, #8 + 8006c16: e76d b.n 8006af4 <_dtoa_r+0x3cc> + 8006c18: 2702 movs r7, #2 + 8006c1a: e770 b.n 8006afe <_dtoa_r+0x3d6> + 8006c1c: 46c8 mov r8, r9 + 8006c1e: 9c02 ldr r4, [sp, #8] + 8006c20: e78f b.n 8006b42 <_dtoa_r+0x41a> + 8006c22: 9908 ldr r1, [sp, #32] + 8006c24: 4b29 ldr r3, [pc, #164] ; (8006ccc <_dtoa_r+0x5a4>) + 8006c26: 4421 add r1, r4 + 8006c28: 9112 str r1, [sp, #72] ; 0x48 + 8006c2a: 990b ldr r1, [sp, #44] ; 0x2c + 8006c2c: eb03 03c4 add.w r3, r3, r4, lsl #3 + 8006c30: e9dd 6710 ldrd r6, r7, [sp, #64] ; 0x40 + 8006c34: e953 2302 ldrd r2, r3, [r3, #-8] + 8006c38: 2900 cmp r1, #0 + 8006c3a: d055 beq.n 8006ce8 <_dtoa_r+0x5c0> + 8006c3c: 2000 movs r0, #0 + 8006c3e: 4929 ldr r1, [pc, #164] ; (8006ce4 <_dtoa_r+0x5bc>) + 8006c40: f7f9 fde0 bl 8000804 <__aeabi_ddiv> + 8006c44: 463b mov r3, r7 + 8006c46: 4632 mov r2, r6 + 8006c48: f7f9 fafa bl 8000240 <__aeabi_dsub> + 8006c4c: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8006c50: 9f08 ldr r7, [sp, #32] + 8006c52: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006c56: f7f9 ff5b bl 8000b10 <__aeabi_d2iz> + 8006c5a: 4604 mov r4, r0 + 8006c5c: f7f9 fc3e bl 80004dc <__aeabi_i2d> + 8006c60: 4602 mov r2, r0 + 8006c62: 460b mov r3, r1 + 8006c64: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006c68: f7f9 faea bl 8000240 <__aeabi_dsub> + 8006c6c: 4602 mov r2, r0 + 8006c6e: 460b mov r3, r1 + 8006c70: 3430 adds r4, #48 ; 0x30 + 8006c72: e9cd 2304 strd r2, r3, [sp, #16] + 8006c76: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8006c7a: f807 4b01 strb.w r4, [r7], #1 + 8006c7e: f7f9 ff09 bl 8000a94 <__aeabi_dcmplt> + 8006c82: 2800 cmp r0, #0 + 8006c84: d174 bne.n 8006d70 <_dtoa_r+0x648> + 8006c86: e9dd 2304 ldrd r2, r3, [sp, #16] + 8006c8a: 2000 movs r0, #0 + 8006c8c: 4911 ldr r1, [pc, #68] ; (8006cd4 <_dtoa_r+0x5ac>) + 8006c8e: f7f9 fad7 bl 8000240 <__aeabi_dsub> + 8006c92: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8006c96: f7f9 fefd bl 8000a94 <__aeabi_dcmplt> + 8006c9a: 2800 cmp r0, #0 + 8006c9c: f040 80b6 bne.w 8006e0c <_dtoa_r+0x6e4> + 8006ca0: 9b12 ldr r3, [sp, #72] ; 0x48 + 8006ca2: 429f cmp r7, r3 + 8006ca4: f43f af7a beq.w 8006b9c <_dtoa_r+0x474> + 8006ca8: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8006cac: 2200 movs r2, #0 + 8006cae: 4b0a ldr r3, [pc, #40] ; (8006cd8 <_dtoa_r+0x5b0>) + 8006cb0: f7f9 fc7e bl 80005b0 <__aeabi_dmul> + 8006cb4: 2200 movs r2, #0 + 8006cb6: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8006cba: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006cbe: 4b06 ldr r3, [pc, #24] ; (8006cd8 <_dtoa_r+0x5b0>) + 8006cc0: f7f9 fc76 bl 80005b0 <__aeabi_dmul> + 8006cc4: e9cd 0104 strd r0, r1, [sp, #16] + 8006cc8: e7c3 b.n 8006c52 <_dtoa_r+0x52a> + 8006cca: bf00 nop + 8006ccc: 080095a0 .word 0x080095a0 + 8006cd0: 08009578 .word 0x08009578 + 8006cd4: 3ff00000 .word 0x3ff00000 + 8006cd8: 40240000 .word 0x40240000 + 8006cdc: 401c0000 .word 0x401c0000 + 8006ce0: 40140000 .word 0x40140000 + 8006ce4: 3fe00000 .word 0x3fe00000 + 8006ce8: 4630 mov r0, r6 + 8006cea: 4639 mov r1, r7 + 8006cec: f7f9 fc60 bl 80005b0 <__aeabi_dmul> + 8006cf0: 9b12 ldr r3, [sp, #72] ; 0x48 + 8006cf2: e9cd 0110 strd r0, r1, [sp, #64] ; 0x40 + 8006cf6: 9c08 ldr r4, [sp, #32] + 8006cf8: 9314 str r3, [sp, #80] ; 0x50 + 8006cfa: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006cfe: f7f9 ff07 bl 8000b10 <__aeabi_d2iz> + 8006d02: 9015 str r0, [sp, #84] ; 0x54 + 8006d04: f7f9 fbea bl 80004dc <__aeabi_i2d> + 8006d08: 4602 mov r2, r0 + 8006d0a: 460b mov r3, r1 + 8006d0c: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006d10: f7f9 fa96 bl 8000240 <__aeabi_dsub> + 8006d14: 9b15 ldr r3, [sp, #84] ; 0x54 + 8006d16: 4606 mov r6, r0 + 8006d18: 3330 adds r3, #48 ; 0x30 + 8006d1a: f804 3b01 strb.w r3, [r4], #1 + 8006d1e: 9b12 ldr r3, [sp, #72] ; 0x48 + 8006d20: 460f mov r7, r1 + 8006d22: 429c cmp r4, r3 + 8006d24: f04f 0200 mov.w r2, #0 + 8006d28: d124 bne.n 8006d74 <_dtoa_r+0x64c> + 8006d2a: e9dd 0110 ldrd r0, r1, [sp, #64] ; 0x40 + 8006d2e: 4bb3 ldr r3, [pc, #716] ; (8006ffc <_dtoa_r+0x8d4>) + 8006d30: f7f9 fa88 bl 8000244 <__adddf3> + 8006d34: 4602 mov r2, r0 + 8006d36: 460b mov r3, r1 + 8006d38: 4630 mov r0, r6 + 8006d3a: 4639 mov r1, r7 + 8006d3c: f7f9 fec8 bl 8000ad0 <__aeabi_dcmpgt> + 8006d40: 2800 cmp r0, #0 + 8006d42: d162 bne.n 8006e0a <_dtoa_r+0x6e2> + 8006d44: e9dd 2310 ldrd r2, r3, [sp, #64] ; 0x40 + 8006d48: 2000 movs r0, #0 + 8006d4a: 49ac ldr r1, [pc, #688] ; (8006ffc <_dtoa_r+0x8d4>) + 8006d4c: f7f9 fa78 bl 8000240 <__aeabi_dsub> + 8006d50: 4602 mov r2, r0 + 8006d52: 460b mov r3, r1 + 8006d54: 4630 mov r0, r6 + 8006d56: 4639 mov r1, r7 + 8006d58: f7f9 fe9c bl 8000a94 <__aeabi_dcmplt> + 8006d5c: 2800 cmp r0, #0 + 8006d5e: f43f af1d beq.w 8006b9c <_dtoa_r+0x474> + 8006d62: 9f14 ldr r7, [sp, #80] ; 0x50 + 8006d64: 1e7b subs r3, r7, #1 + 8006d66: 9314 str r3, [sp, #80] ; 0x50 + 8006d68: f817 3c01 ldrb.w r3, [r7, #-1] + 8006d6c: 2b30 cmp r3, #48 ; 0x30 + 8006d6e: d0f8 beq.n 8006d62 <_dtoa_r+0x63a> + 8006d70: 46c1 mov r9, r8 + 8006d72: e03a b.n 8006dea <_dtoa_r+0x6c2> + 8006d74: 4ba2 ldr r3, [pc, #648] ; (8007000 <_dtoa_r+0x8d8>) + 8006d76: f7f9 fc1b bl 80005b0 <__aeabi_dmul> + 8006d7a: e9cd 0104 strd r0, r1, [sp, #16] + 8006d7e: e7bc b.n 8006cfa <_dtoa_r+0x5d2> + 8006d80: 9f08 ldr r7, [sp, #32] + 8006d82: e9dd 2306 ldrd r2, r3, [sp, #24] + 8006d86: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006d8a: f7f9 fd3b bl 8000804 <__aeabi_ddiv> + 8006d8e: f7f9 febf bl 8000b10 <__aeabi_d2iz> + 8006d92: 4604 mov r4, r0 + 8006d94: f7f9 fba2 bl 80004dc <__aeabi_i2d> + 8006d98: e9dd 2306 ldrd r2, r3, [sp, #24] + 8006d9c: f7f9 fc08 bl 80005b0 <__aeabi_dmul> + 8006da0: f104 0630 add.w r6, r4, #48 ; 0x30 + 8006da4: 460b mov r3, r1 + 8006da6: 4602 mov r2, r0 + 8006da8: e9dd 0104 ldrd r0, r1, [sp, #16] + 8006dac: f7f9 fa48 bl 8000240 <__aeabi_dsub> + 8006db0: f807 6b01 strb.w r6, [r7], #1 + 8006db4: 9e08 ldr r6, [sp, #32] + 8006db6: 9b02 ldr r3, [sp, #8] + 8006db8: 1bbe subs r6, r7, r6 + 8006dba: 42b3 cmp r3, r6 + 8006dbc: d13a bne.n 8006e34 <_dtoa_r+0x70c> + 8006dbe: 4602 mov r2, r0 + 8006dc0: 460b mov r3, r1 + 8006dc2: f7f9 fa3f bl 8000244 <__adddf3> + 8006dc6: 4602 mov r2, r0 + 8006dc8: 460b mov r3, r1 + 8006dca: e9cd 2302 strd r2, r3, [sp, #8] + 8006dce: e9dd 2306 ldrd r2, r3, [sp, #24] + 8006dd2: f7f9 fe7d bl 8000ad0 <__aeabi_dcmpgt> + 8006dd6: bb58 cbnz r0, 8006e30 <_dtoa_r+0x708> + 8006dd8: e9dd 2306 ldrd r2, r3, [sp, #24] + 8006ddc: e9dd 0102 ldrd r0, r1, [sp, #8] + 8006de0: f7f9 fe4e bl 8000a80 <__aeabi_dcmpeq> + 8006de4: b108 cbz r0, 8006dea <_dtoa_r+0x6c2> + 8006de6: 07e1 lsls r1, r4, #31 + 8006de8: d422 bmi.n 8006e30 <_dtoa_r+0x708> + 8006dea: 4628 mov r0, r5 + 8006dec: 4651 mov r1, sl + 8006dee: f000 faf5 bl 80073dc <_Bfree> + 8006df2: 2300 movs r3, #0 + 8006df4: 703b strb r3, [r7, #0] + 8006df6: 9b24 ldr r3, [sp, #144] ; 0x90 + 8006df8: f109 0001 add.w r0, r9, #1 + 8006dfc: 6018 str r0, [r3, #0] + 8006dfe: 9b26 ldr r3, [sp, #152] ; 0x98 8006e00: 2b00 cmp r3, #0 - 8006e02: f000 80fc beq.w 8006ffe <_dtoa_r+0xba6> - 8006e06: 2f00 cmp r7, #0 - 8006e08: dd05 ble.n 8006e16 <_dtoa_r+0x9be> - 8006e0a: 4631 mov r1, r6 - 8006e0c: 463a mov r2, r7 - 8006e0e: 4628 mov r0, r5 - 8006e10: f000 fb4a bl 80074a8 <__lshift> - 8006e14: 4606 mov r6, r0 - 8006e16: f1b8 0f00 cmp.w r8, #0 - 8006e1a: d05c beq.n 8006ed6 <_dtoa_r+0xa7e> - 8006e1c: 4628 mov r0, r5 - 8006e1e: 6871 ldr r1, [r6, #4] - 8006e20: f000 f934 bl 800708c <_Balloc> - 8006e24: 4607 mov r7, r0 - 8006e26: b928 cbnz r0, 8006e34 <_dtoa_r+0x9dc> - 8006e28: 4602 mov r2, r0 - 8006e2a: f240 21ea movw r1, #746 ; 0x2ea - 8006e2e: 4b7e ldr r3, [pc, #504] ; (8007028 <_dtoa_r+0xbd0>) - 8006e30: f7ff bb26 b.w 8006480 <_dtoa_r+0x28> - 8006e34: 6932 ldr r2, [r6, #16] - 8006e36: f106 010c add.w r1, r6, #12 - 8006e3a: 3202 adds r2, #2 - 8006e3c: 0092 lsls r2, r2, #2 - 8006e3e: 300c adds r0, #12 - 8006e40: f000 f90a bl 8007058 - 8006e44: 2201 movs r2, #1 - 8006e46: 4639 mov r1, r7 - 8006e48: 4628 mov r0, r5 - 8006e4a: f000 fb2d bl 80074a8 <__lshift> - 8006e4e: 46b0 mov r8, r6 - 8006e50: 4606 mov r6, r0 - 8006e52: 9b08 ldr r3, [sp, #32] - 8006e54: 3301 adds r3, #1 - 8006e56: 9302 str r3, [sp, #8] - 8006e58: 9b08 ldr r3, [sp, #32] - 8006e5a: 445b add r3, fp - 8006e5c: 930a str r3, [sp, #40] ; 0x28 - 8006e5e: 9b04 ldr r3, [sp, #16] - 8006e60: f003 0301 and.w r3, r3, #1 - 8006e64: 9309 str r3, [sp, #36] ; 0x24 - 8006e66: 9b02 ldr r3, [sp, #8] - 8006e68: 4621 mov r1, r4 - 8006e6a: 4650 mov r0, sl - 8006e6c: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff - 8006e70: f7ff fa62 bl 8006338 - 8006e74: 4603 mov r3, r0 - 8006e76: 4641 mov r1, r8 - 8006e78: 3330 adds r3, #48 ; 0x30 - 8006e7a: 9004 str r0, [sp, #16] - 8006e7c: 4650 mov r0, sl - 8006e7e: 930b str r3, [sp, #44] ; 0x2c - 8006e80: f000 fb7e bl 8007580 <__mcmp> - 8006e84: 4632 mov r2, r6 - 8006e86: 9006 str r0, [sp, #24] - 8006e88: 4621 mov r1, r4 - 8006e8a: 4628 mov r0, r5 - 8006e8c: f000 fb94 bl 80075b8 <__mdiff> - 8006e90: 68c2 ldr r2, [r0, #12] - 8006e92: 4607 mov r7, r0 - 8006e94: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006e96: bb02 cbnz r2, 8006eda <_dtoa_r+0xa82> - 8006e98: 4601 mov r1, r0 - 8006e9a: 4650 mov r0, sl - 8006e9c: f000 fb70 bl 8007580 <__mcmp> - 8006ea0: 4602 mov r2, r0 - 8006ea2: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006ea4: 4639 mov r1, r7 - 8006ea6: 4628 mov r0, r5 - 8006ea8: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c - 8006eac: f000 f92e bl 800710c <_Bfree> - 8006eb0: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006eb2: 9a0c ldr r2, [sp, #48] ; 0x30 - 8006eb4: 9f02 ldr r7, [sp, #8] - 8006eb6: ea43 0102 orr.w r1, r3, r2 - 8006eba: 9b09 ldr r3, [sp, #36] ; 0x24 - 8006ebc: 430b orrs r3, r1 - 8006ebe: 9b0b ldr r3, [sp, #44] ; 0x2c - 8006ec0: d10d bne.n 8006ede <_dtoa_r+0xa86> - 8006ec2: 2b39 cmp r3, #57 ; 0x39 - 8006ec4: d027 beq.n 8006f16 <_dtoa_r+0xabe> - 8006ec6: 9a06 ldr r2, [sp, #24] - 8006ec8: 2a00 cmp r2, #0 - 8006eca: dd01 ble.n 8006ed0 <_dtoa_r+0xa78> - 8006ecc: 9b04 ldr r3, [sp, #16] - 8006ece: 3331 adds r3, #49 ; 0x31 - 8006ed0: f88b 3000 strb.w r3, [fp] - 8006ed4: e776 b.n 8006dc4 <_dtoa_r+0x96c> - 8006ed6: 4630 mov r0, r6 - 8006ed8: e7b9 b.n 8006e4e <_dtoa_r+0x9f6> - 8006eda: 2201 movs r2, #1 - 8006edc: e7e2 b.n 8006ea4 <_dtoa_r+0xa4c> - 8006ede: 9906 ldr r1, [sp, #24] - 8006ee0: 2900 cmp r1, #0 - 8006ee2: db04 blt.n 8006eee <_dtoa_r+0xa96> - 8006ee4: 9822 ldr r0, [sp, #136] ; 0x88 - 8006ee6: 4301 orrs r1, r0 - 8006ee8: 9809 ldr r0, [sp, #36] ; 0x24 - 8006eea: 4301 orrs r1, r0 - 8006eec: d120 bne.n 8006f30 <_dtoa_r+0xad8> - 8006eee: 2a00 cmp r2, #0 - 8006ef0: ddee ble.n 8006ed0 <_dtoa_r+0xa78> - 8006ef2: 4651 mov r1, sl - 8006ef4: 2201 movs r2, #1 - 8006ef6: 4628 mov r0, r5 - 8006ef8: 9302 str r3, [sp, #8] - 8006efa: f000 fad5 bl 80074a8 <__lshift> - 8006efe: 4621 mov r1, r4 - 8006f00: 4682 mov sl, r0 - 8006f02: f000 fb3d bl 8007580 <__mcmp> - 8006f06: 2800 cmp r0, #0 - 8006f08: 9b02 ldr r3, [sp, #8] - 8006f0a: dc02 bgt.n 8006f12 <_dtoa_r+0xaba> - 8006f0c: d1e0 bne.n 8006ed0 <_dtoa_r+0xa78> - 8006f0e: 07da lsls r2, r3, #31 - 8006f10: d5de bpl.n 8006ed0 <_dtoa_r+0xa78> - 8006f12: 2b39 cmp r3, #57 ; 0x39 - 8006f14: d1da bne.n 8006ecc <_dtoa_r+0xa74> - 8006f16: 2339 movs r3, #57 ; 0x39 - 8006f18: f88b 3000 strb.w r3, [fp] - 8006f1c: 463b mov r3, r7 - 8006f1e: 461f mov r7, r3 - 8006f20: f817 2c01 ldrb.w r2, [r7, #-1] - 8006f24: 3b01 subs r3, #1 - 8006f26: 2a39 cmp r2, #57 ; 0x39 - 8006f28: d050 beq.n 8006fcc <_dtoa_r+0xb74> - 8006f2a: 3201 adds r2, #1 - 8006f2c: 701a strb r2, [r3, #0] - 8006f2e: e749 b.n 8006dc4 <_dtoa_r+0x96c> - 8006f30: 2a00 cmp r2, #0 - 8006f32: dd03 ble.n 8006f3c <_dtoa_r+0xae4> - 8006f34: 2b39 cmp r3, #57 ; 0x39 - 8006f36: d0ee beq.n 8006f16 <_dtoa_r+0xabe> - 8006f38: 3301 adds r3, #1 - 8006f3a: e7c9 b.n 8006ed0 <_dtoa_r+0xa78> - 8006f3c: 9a02 ldr r2, [sp, #8] - 8006f3e: 990a ldr r1, [sp, #40] ; 0x28 - 8006f40: f802 3c01 strb.w r3, [r2, #-1] - 8006f44: 428a cmp r2, r1 - 8006f46: d02a beq.n 8006f9e <_dtoa_r+0xb46> - 8006f48: 4651 mov r1, sl - 8006f4a: 2300 movs r3, #0 - 8006f4c: 220a movs r2, #10 - 8006f4e: 4628 mov r0, r5 - 8006f50: f000 f8fe bl 8007150 <__multadd> - 8006f54: 45b0 cmp r8, r6 - 8006f56: 4682 mov sl, r0 - 8006f58: f04f 0300 mov.w r3, #0 - 8006f5c: f04f 020a mov.w r2, #10 - 8006f60: 4641 mov r1, r8 - 8006f62: 4628 mov r0, r5 - 8006f64: d107 bne.n 8006f76 <_dtoa_r+0xb1e> - 8006f66: f000 f8f3 bl 8007150 <__multadd> - 8006f6a: 4680 mov r8, r0 - 8006f6c: 4606 mov r6, r0 - 8006f6e: 9b02 ldr r3, [sp, #8] - 8006f70: 3301 adds r3, #1 - 8006f72: 9302 str r3, [sp, #8] - 8006f74: e777 b.n 8006e66 <_dtoa_r+0xa0e> - 8006f76: f000 f8eb bl 8007150 <__multadd> - 8006f7a: 4631 mov r1, r6 - 8006f7c: 4680 mov r8, r0 - 8006f7e: 2300 movs r3, #0 - 8006f80: 220a movs r2, #10 - 8006f82: 4628 mov r0, r5 - 8006f84: f000 f8e4 bl 8007150 <__multadd> - 8006f88: 4606 mov r6, r0 - 8006f8a: e7f0 b.n 8006f6e <_dtoa_r+0xb16> - 8006f8c: f1bb 0f00 cmp.w fp, #0 - 8006f90: bfcc ite gt - 8006f92: 465f movgt r7, fp - 8006f94: 2701 movle r7, #1 - 8006f96: f04f 0800 mov.w r8, #0 - 8006f9a: 9a08 ldr r2, [sp, #32] - 8006f9c: 4417 add r7, r2 - 8006f9e: 4651 mov r1, sl - 8006fa0: 2201 movs r2, #1 - 8006fa2: 4628 mov r0, r5 - 8006fa4: 9302 str r3, [sp, #8] - 8006fa6: f000 fa7f bl 80074a8 <__lshift> - 8006faa: 4621 mov r1, r4 - 8006fac: 4682 mov sl, r0 - 8006fae: f000 fae7 bl 8007580 <__mcmp> - 8006fb2: 2800 cmp r0, #0 - 8006fb4: dcb2 bgt.n 8006f1c <_dtoa_r+0xac4> - 8006fb6: d102 bne.n 8006fbe <_dtoa_r+0xb66> - 8006fb8: 9b02 ldr r3, [sp, #8] - 8006fba: 07db lsls r3, r3, #31 - 8006fbc: d4ae bmi.n 8006f1c <_dtoa_r+0xac4> - 8006fbe: 463b mov r3, r7 - 8006fc0: 461f mov r7, r3 - 8006fc2: f813 2d01 ldrb.w r2, [r3, #-1]! - 8006fc6: 2a30 cmp r2, #48 ; 0x30 - 8006fc8: d0fa beq.n 8006fc0 <_dtoa_r+0xb68> - 8006fca: e6fb b.n 8006dc4 <_dtoa_r+0x96c> - 8006fcc: 9a08 ldr r2, [sp, #32] - 8006fce: 429a cmp r2, r3 - 8006fd0: d1a5 bne.n 8006f1e <_dtoa_r+0xac6> - 8006fd2: 2331 movs r3, #49 ; 0x31 - 8006fd4: f109 0901 add.w r9, r9, #1 - 8006fd8: 7013 strb r3, [r2, #0] - 8006fda: e6f3 b.n 8006dc4 <_dtoa_r+0x96c> - 8006fdc: 4b13 ldr r3, [pc, #76] ; (800702c <_dtoa_r+0xbd4>) - 8006fde: f7ff baa7 b.w 8006530 <_dtoa_r+0xd8> - 8006fe2: 9b26 ldr r3, [sp, #152] ; 0x98 - 8006fe4: 2b00 cmp r3, #0 - 8006fe6: f47f aa80 bne.w 80064ea <_dtoa_r+0x92> - 8006fea: 4b11 ldr r3, [pc, #68] ; (8007030 <_dtoa_r+0xbd8>) - 8006fec: f7ff baa0 b.w 8006530 <_dtoa_r+0xd8> - 8006ff0: f1bb 0f00 cmp.w fp, #0 - 8006ff4: dc03 bgt.n 8006ffe <_dtoa_r+0xba6> - 8006ff6: 9b22 ldr r3, [sp, #136] ; 0x88 - 8006ff8: 2b02 cmp r3, #2 - 8006ffa: f73f aecc bgt.w 8006d96 <_dtoa_r+0x93e> - 8006ffe: 9f08 ldr r7, [sp, #32] - 8007000: 4621 mov r1, r4 - 8007002: 4650 mov r0, sl - 8007004: f7ff f998 bl 8006338 - 8007008: 9a08 ldr r2, [sp, #32] - 800700a: f100 0330 add.w r3, r0, #48 ; 0x30 - 800700e: f807 3b01 strb.w r3, [r7], #1 - 8007012: 1aba subs r2, r7, r2 - 8007014: 4593 cmp fp, r2 - 8007016: ddb9 ble.n 8006f8c <_dtoa_r+0xb34> - 8007018: 4651 mov r1, sl - 800701a: 2300 movs r3, #0 - 800701c: 220a movs r2, #10 - 800701e: 4628 mov r0, r5 - 8007020: f000 f896 bl 8007150 <__multadd> - 8007024: 4682 mov sl, r0 - 8007026: e7eb b.n 8007000 <_dtoa_r+0xba8> - 8007028: 08009213 .word 0x08009213 - 800702c: 0800916c .word 0x0800916c - 8007030: 08009190 .word 0x08009190 + 8006e02: f43f acdf beq.w 80067c4 <_dtoa_r+0x9c> + 8006e06: 601f str r7, [r3, #0] + 8006e08: e4dc b.n 80067c4 <_dtoa_r+0x9c> + 8006e0a: 4627 mov r7, r4 + 8006e0c: 463b mov r3, r7 + 8006e0e: 461f mov r7, r3 + 8006e10: f813 2d01 ldrb.w r2, [r3, #-1]! + 8006e14: 2a39 cmp r2, #57 ; 0x39 + 8006e16: d107 bne.n 8006e28 <_dtoa_r+0x700> + 8006e18: 9a08 ldr r2, [sp, #32] + 8006e1a: 429a cmp r2, r3 + 8006e1c: d1f7 bne.n 8006e0e <_dtoa_r+0x6e6> + 8006e1e: 2230 movs r2, #48 ; 0x30 + 8006e20: 9908 ldr r1, [sp, #32] + 8006e22: f108 0801 add.w r8, r8, #1 + 8006e26: 700a strb r2, [r1, #0] + 8006e28: 781a ldrb r2, [r3, #0] + 8006e2a: 3201 adds r2, #1 + 8006e2c: 701a strb r2, [r3, #0] + 8006e2e: e79f b.n 8006d70 <_dtoa_r+0x648> + 8006e30: 46c8 mov r8, r9 + 8006e32: e7eb b.n 8006e0c <_dtoa_r+0x6e4> + 8006e34: 2200 movs r2, #0 + 8006e36: 4b72 ldr r3, [pc, #456] ; (8007000 <_dtoa_r+0x8d8>) + 8006e38: f7f9 fbba bl 80005b0 <__aeabi_dmul> + 8006e3c: 4602 mov r2, r0 + 8006e3e: 460b mov r3, r1 + 8006e40: e9cd 2304 strd r2, r3, [sp, #16] + 8006e44: 2200 movs r2, #0 + 8006e46: 2300 movs r3, #0 + 8006e48: f7f9 fe1a bl 8000a80 <__aeabi_dcmpeq> + 8006e4c: 2800 cmp r0, #0 + 8006e4e: d098 beq.n 8006d82 <_dtoa_r+0x65a> + 8006e50: e7cb b.n 8006dea <_dtoa_r+0x6c2> + 8006e52: 9a0b ldr r2, [sp, #44] ; 0x2c + 8006e54: 2a00 cmp r2, #0 + 8006e56: f000 80cd beq.w 8006ff4 <_dtoa_r+0x8cc> + 8006e5a: 9a22 ldr r2, [sp, #136] ; 0x88 + 8006e5c: 2a01 cmp r2, #1 + 8006e5e: f300 80af bgt.w 8006fc0 <_dtoa_r+0x898> + 8006e62: 9a13 ldr r2, [sp, #76] ; 0x4c + 8006e64: 2a00 cmp r2, #0 + 8006e66: f000 80a7 beq.w 8006fb8 <_dtoa_r+0x890> + 8006e6a: f203 4333 addw r3, r3, #1075 ; 0x433 + 8006e6e: 9c0a ldr r4, [sp, #40] ; 0x28 + 8006e70: 9f06 ldr r7, [sp, #24] + 8006e72: 9a06 ldr r2, [sp, #24] + 8006e74: 2101 movs r1, #1 + 8006e76: 441a add r2, r3 + 8006e78: 9206 str r2, [sp, #24] + 8006e7a: 9a09 ldr r2, [sp, #36] ; 0x24 + 8006e7c: 4628 mov r0, r5 + 8006e7e: 441a add r2, r3 + 8006e80: 9209 str r2, [sp, #36] ; 0x24 + 8006e82: f000 fb65 bl 8007550 <__i2b> + 8006e86: 4606 mov r6, r0 + 8006e88: 2f00 cmp r7, #0 + 8006e8a: dd0c ble.n 8006ea6 <_dtoa_r+0x77e> + 8006e8c: 9b09 ldr r3, [sp, #36] ; 0x24 + 8006e8e: 2b00 cmp r3, #0 + 8006e90: dd09 ble.n 8006ea6 <_dtoa_r+0x77e> + 8006e92: 42bb cmp r3, r7 + 8006e94: bfa8 it ge + 8006e96: 463b movge r3, r7 + 8006e98: 9a06 ldr r2, [sp, #24] + 8006e9a: 1aff subs r7, r7, r3 + 8006e9c: 1ad2 subs r2, r2, r3 + 8006e9e: 9206 str r2, [sp, #24] + 8006ea0: 9a09 ldr r2, [sp, #36] ; 0x24 + 8006ea2: 1ad3 subs r3, r2, r3 + 8006ea4: 9309 str r3, [sp, #36] ; 0x24 + 8006ea6: 9b0a ldr r3, [sp, #40] ; 0x28 + 8006ea8: b1f3 cbz r3, 8006ee8 <_dtoa_r+0x7c0> + 8006eaa: 9b0b ldr r3, [sp, #44] ; 0x2c + 8006eac: 2b00 cmp r3, #0 + 8006eae: f000 80a9 beq.w 8007004 <_dtoa_r+0x8dc> + 8006eb2: 2c00 cmp r4, #0 + 8006eb4: dd10 ble.n 8006ed8 <_dtoa_r+0x7b0> + 8006eb6: 4631 mov r1, r6 + 8006eb8: 4622 mov r2, r4 + 8006eba: 4628 mov r0, r5 + 8006ebc: f000 fc02 bl 80076c4 <__pow5mult> + 8006ec0: 4652 mov r2, sl + 8006ec2: 4601 mov r1, r0 + 8006ec4: 4606 mov r6, r0 + 8006ec6: 4628 mov r0, r5 + 8006ec8: f000 fb58 bl 800757c <__multiply> + 8006ecc: 4680 mov r8, r0 + 8006ece: 4651 mov r1, sl + 8006ed0: 4628 mov r0, r5 + 8006ed2: f000 fa83 bl 80073dc <_Bfree> + 8006ed6: 46c2 mov sl, r8 + 8006ed8: 9b0a ldr r3, [sp, #40] ; 0x28 + 8006eda: 1b1a subs r2, r3, r4 + 8006edc: d004 beq.n 8006ee8 <_dtoa_r+0x7c0> + 8006ede: 4651 mov r1, sl + 8006ee0: 4628 mov r0, r5 + 8006ee2: f000 fbef bl 80076c4 <__pow5mult> + 8006ee6: 4682 mov sl, r0 + 8006ee8: 2101 movs r1, #1 + 8006eea: 4628 mov r0, r5 + 8006eec: f000 fb30 bl 8007550 <__i2b> + 8006ef0: 9b0e ldr r3, [sp, #56] ; 0x38 + 8006ef2: 4604 mov r4, r0 + 8006ef4: 2b00 cmp r3, #0 + 8006ef6: f340 8087 ble.w 8007008 <_dtoa_r+0x8e0> + 8006efa: 461a mov r2, r3 + 8006efc: 4601 mov r1, r0 + 8006efe: 4628 mov r0, r5 + 8006f00: f000 fbe0 bl 80076c4 <__pow5mult> + 8006f04: 9b22 ldr r3, [sp, #136] ; 0x88 + 8006f06: 4604 mov r4, r0 + 8006f08: 2b01 cmp r3, #1 + 8006f0a: f340 8080 ble.w 800700e <_dtoa_r+0x8e6> + 8006f0e: f04f 0800 mov.w r8, #0 + 8006f12: 6923 ldr r3, [r4, #16] + 8006f14: eb04 0383 add.w r3, r4, r3, lsl #2 + 8006f18: 6918 ldr r0, [r3, #16] + 8006f1a: f000 facb bl 80074b4 <__hi0bits> + 8006f1e: f1c0 0020 rsb r0, r0, #32 + 8006f22: 9b09 ldr r3, [sp, #36] ; 0x24 + 8006f24: 4418 add r0, r3 + 8006f26: f010 001f ands.w r0, r0, #31 + 8006f2a: f000 8092 beq.w 8007052 <_dtoa_r+0x92a> + 8006f2e: f1c0 0320 rsb r3, r0, #32 + 8006f32: 2b04 cmp r3, #4 + 8006f34: f340 808a ble.w 800704c <_dtoa_r+0x924> + 8006f38: f1c0 001c rsb r0, r0, #28 + 8006f3c: 9b06 ldr r3, [sp, #24] + 8006f3e: 4407 add r7, r0 + 8006f40: 4403 add r3, r0 + 8006f42: 9306 str r3, [sp, #24] + 8006f44: 9b09 ldr r3, [sp, #36] ; 0x24 + 8006f46: 4403 add r3, r0 + 8006f48: 9309 str r3, [sp, #36] ; 0x24 + 8006f4a: 9b06 ldr r3, [sp, #24] + 8006f4c: 2b00 cmp r3, #0 + 8006f4e: dd05 ble.n 8006f5c <_dtoa_r+0x834> + 8006f50: 4651 mov r1, sl + 8006f52: 461a mov r2, r3 + 8006f54: 4628 mov r0, r5 + 8006f56: f000 fc0f bl 8007778 <__lshift> + 8006f5a: 4682 mov sl, r0 + 8006f5c: 9b09 ldr r3, [sp, #36] ; 0x24 + 8006f5e: 2b00 cmp r3, #0 + 8006f60: dd05 ble.n 8006f6e <_dtoa_r+0x846> + 8006f62: 4621 mov r1, r4 + 8006f64: 461a mov r2, r3 + 8006f66: 4628 mov r0, r5 + 8006f68: f000 fc06 bl 8007778 <__lshift> + 8006f6c: 4604 mov r4, r0 + 8006f6e: 9b0f ldr r3, [sp, #60] ; 0x3c + 8006f70: 2b00 cmp r3, #0 + 8006f72: d070 beq.n 8007056 <_dtoa_r+0x92e> + 8006f74: 4621 mov r1, r4 + 8006f76: 4650 mov r0, sl + 8006f78: f000 fc6a bl 8007850 <__mcmp> + 8006f7c: 2800 cmp r0, #0 + 8006f7e: da6a bge.n 8007056 <_dtoa_r+0x92e> + 8006f80: 2300 movs r3, #0 + 8006f82: 4651 mov r1, sl + 8006f84: 220a movs r2, #10 + 8006f86: 4628 mov r0, r5 + 8006f88: f000 fa4a bl 8007420 <__multadd> + 8006f8c: 9b0b ldr r3, [sp, #44] ; 0x2c + 8006f8e: 4682 mov sl, r0 + 8006f90: f109 39ff add.w r9, r9, #4294967295 ; 0xffffffff + 8006f94: 2b00 cmp r3, #0 + 8006f96: f000 8193 beq.w 80072c0 <_dtoa_r+0xb98> + 8006f9a: 4631 mov r1, r6 + 8006f9c: 2300 movs r3, #0 + 8006f9e: 220a movs r2, #10 + 8006fa0: 4628 mov r0, r5 + 8006fa2: f000 fa3d bl 8007420 <__multadd> + 8006fa6: f1bb 0f00 cmp.w fp, #0 + 8006faa: 4606 mov r6, r0 + 8006fac: f300 8093 bgt.w 80070d6 <_dtoa_r+0x9ae> + 8006fb0: 9b22 ldr r3, [sp, #136] ; 0x88 + 8006fb2: 2b02 cmp r3, #2 + 8006fb4: dc57 bgt.n 8007066 <_dtoa_r+0x93e> + 8006fb6: e08e b.n 80070d6 <_dtoa_r+0x9ae> + 8006fb8: 9b16 ldr r3, [sp, #88] ; 0x58 + 8006fba: f1c3 0336 rsb r3, r3, #54 ; 0x36 + 8006fbe: e756 b.n 8006e6e <_dtoa_r+0x746> + 8006fc0: 9b02 ldr r3, [sp, #8] + 8006fc2: 1e5c subs r4, r3, #1 + 8006fc4: 9b0a ldr r3, [sp, #40] ; 0x28 + 8006fc6: 42a3 cmp r3, r4 + 8006fc8: bfb7 itett lt + 8006fca: 9b0a ldrlt r3, [sp, #40] ; 0x28 + 8006fcc: 1b1c subge r4, r3, r4 + 8006fce: 1ae2 sublt r2, r4, r3 + 8006fd0: 9b0e ldrlt r3, [sp, #56] ; 0x38 + 8006fd2: bfbe ittt lt + 8006fd4: 940a strlt r4, [sp, #40] ; 0x28 + 8006fd6: 189b addlt r3, r3, r2 + 8006fd8: 930e strlt r3, [sp, #56] ; 0x38 + 8006fda: 9b02 ldr r3, [sp, #8] + 8006fdc: bfb8 it lt + 8006fde: 2400 movlt r4, #0 + 8006fe0: 2b00 cmp r3, #0 + 8006fe2: bfbb ittet lt + 8006fe4: 9b06 ldrlt r3, [sp, #24] + 8006fe6: 9a02 ldrlt r2, [sp, #8] + 8006fe8: 9f06 ldrge r7, [sp, #24] + 8006fea: 1a9f sublt r7, r3, r2 + 8006fec: bfac ite ge + 8006fee: 9b02 ldrge r3, [sp, #8] + 8006ff0: 2300 movlt r3, #0 + 8006ff2: e73e b.n 8006e72 <_dtoa_r+0x74a> + 8006ff4: 9c0a ldr r4, [sp, #40] ; 0x28 + 8006ff6: 9f06 ldr r7, [sp, #24] + 8006ff8: 9e0b ldr r6, [sp, #44] ; 0x2c + 8006ffa: e745 b.n 8006e88 <_dtoa_r+0x760> + 8006ffc: 3fe00000 .word 0x3fe00000 + 8007000: 40240000 .word 0x40240000 + 8007004: 9a0a ldr r2, [sp, #40] ; 0x28 + 8007006: e76a b.n 8006ede <_dtoa_r+0x7b6> + 8007008: 9b22 ldr r3, [sp, #136] ; 0x88 + 800700a: 2b01 cmp r3, #1 + 800700c: dc19 bgt.n 8007042 <_dtoa_r+0x91a> + 800700e: 9b04 ldr r3, [sp, #16] + 8007010: b9bb cbnz r3, 8007042 <_dtoa_r+0x91a> + 8007012: 9b05 ldr r3, [sp, #20] + 8007014: f3c3 0313 ubfx r3, r3, #0, #20 + 8007018: b99b cbnz r3, 8007042 <_dtoa_r+0x91a> + 800701a: 9b05 ldr r3, [sp, #20] + 800701c: f023 4300 bic.w r3, r3, #2147483648 ; 0x80000000 + 8007020: 0d1b lsrs r3, r3, #20 + 8007022: 051b lsls r3, r3, #20 + 8007024: b183 cbz r3, 8007048 <_dtoa_r+0x920> + 8007026: f04f 0801 mov.w r8, #1 + 800702a: 9b06 ldr r3, [sp, #24] + 800702c: 3301 adds r3, #1 + 800702e: 9306 str r3, [sp, #24] + 8007030: 9b09 ldr r3, [sp, #36] ; 0x24 + 8007032: 3301 adds r3, #1 + 8007034: 9309 str r3, [sp, #36] ; 0x24 + 8007036: 9b0e ldr r3, [sp, #56] ; 0x38 + 8007038: 2b00 cmp r3, #0 + 800703a: f47f af6a bne.w 8006f12 <_dtoa_r+0x7ea> + 800703e: 2001 movs r0, #1 + 8007040: e76f b.n 8006f22 <_dtoa_r+0x7fa> + 8007042: f04f 0800 mov.w r8, #0 + 8007046: e7f6 b.n 8007036 <_dtoa_r+0x90e> + 8007048: 4698 mov r8, r3 + 800704a: e7f4 b.n 8007036 <_dtoa_r+0x90e> + 800704c: f43f af7d beq.w 8006f4a <_dtoa_r+0x822> + 8007050: 4618 mov r0, r3 + 8007052: 301c adds r0, #28 + 8007054: e772 b.n 8006f3c <_dtoa_r+0x814> + 8007056: 9b02 ldr r3, [sp, #8] + 8007058: 2b00 cmp r3, #0 + 800705a: dc36 bgt.n 80070ca <_dtoa_r+0x9a2> + 800705c: 9b22 ldr r3, [sp, #136] ; 0x88 + 800705e: 2b02 cmp r3, #2 + 8007060: dd33 ble.n 80070ca <_dtoa_r+0x9a2> + 8007062: f8dd b008 ldr.w fp, [sp, #8] + 8007066: f1bb 0f00 cmp.w fp, #0 + 800706a: d10d bne.n 8007088 <_dtoa_r+0x960> + 800706c: 4621 mov r1, r4 + 800706e: 465b mov r3, fp + 8007070: 2205 movs r2, #5 + 8007072: 4628 mov r0, r5 + 8007074: f000 f9d4 bl 8007420 <__multadd> + 8007078: 4601 mov r1, r0 + 800707a: 4604 mov r4, r0 + 800707c: 4650 mov r0, sl + 800707e: f000 fbe7 bl 8007850 <__mcmp> + 8007082: 2800 cmp r0, #0 + 8007084: f73f adb6 bgt.w 8006bf4 <_dtoa_r+0x4cc> + 8007088: 9b23 ldr r3, [sp, #140] ; 0x8c + 800708a: 9f08 ldr r7, [sp, #32] + 800708c: ea6f 0903 mvn.w r9, r3 + 8007090: f04f 0800 mov.w r8, #0 + 8007094: 4621 mov r1, r4 + 8007096: 4628 mov r0, r5 + 8007098: f000 f9a0 bl 80073dc <_Bfree> + 800709c: 2e00 cmp r6, #0 + 800709e: f43f aea4 beq.w 8006dea <_dtoa_r+0x6c2> + 80070a2: f1b8 0f00 cmp.w r8, #0 + 80070a6: d005 beq.n 80070b4 <_dtoa_r+0x98c> + 80070a8: 45b0 cmp r8, r6 + 80070aa: d003 beq.n 80070b4 <_dtoa_r+0x98c> + 80070ac: 4641 mov r1, r8 + 80070ae: 4628 mov r0, r5 + 80070b0: f000 f994 bl 80073dc <_Bfree> + 80070b4: 4631 mov r1, r6 + 80070b6: 4628 mov r0, r5 + 80070b8: f000 f990 bl 80073dc <_Bfree> + 80070bc: e695 b.n 8006dea <_dtoa_r+0x6c2> + 80070be: 2400 movs r4, #0 + 80070c0: 4626 mov r6, r4 + 80070c2: e7e1 b.n 8007088 <_dtoa_r+0x960> + 80070c4: 46c1 mov r9, r8 + 80070c6: 4626 mov r6, r4 + 80070c8: e594 b.n 8006bf4 <_dtoa_r+0x4cc> + 80070ca: 9b0b ldr r3, [sp, #44] ; 0x2c + 80070cc: f8dd b008 ldr.w fp, [sp, #8] + 80070d0: 2b00 cmp r3, #0 + 80070d2: f000 80fc beq.w 80072ce <_dtoa_r+0xba6> + 80070d6: 2f00 cmp r7, #0 + 80070d8: dd05 ble.n 80070e6 <_dtoa_r+0x9be> + 80070da: 4631 mov r1, r6 + 80070dc: 463a mov r2, r7 + 80070de: 4628 mov r0, r5 + 80070e0: f000 fb4a bl 8007778 <__lshift> + 80070e4: 4606 mov r6, r0 + 80070e6: f1b8 0f00 cmp.w r8, #0 + 80070ea: d05c beq.n 80071a6 <_dtoa_r+0xa7e> + 80070ec: 4628 mov r0, r5 + 80070ee: 6871 ldr r1, [r6, #4] + 80070f0: f000 f934 bl 800735c <_Balloc> + 80070f4: 4607 mov r7, r0 + 80070f6: b928 cbnz r0, 8007104 <_dtoa_r+0x9dc> + 80070f8: 4602 mov r2, r0 + 80070fa: f240 21ea movw r1, #746 ; 0x2ea + 80070fe: 4b7e ldr r3, [pc, #504] ; (80072f8 <_dtoa_r+0xbd0>) + 8007100: f7ff bb26 b.w 8006750 <_dtoa_r+0x28> + 8007104: 6932 ldr r2, [r6, #16] + 8007106: f106 010c add.w r1, r6, #12 + 800710a: 3202 adds r2, #2 + 800710c: 0092 lsls r2, r2, #2 + 800710e: 300c adds r0, #12 + 8007110: f000 f90a bl 8007328 + 8007114: 2201 movs r2, #1 + 8007116: 4639 mov r1, r7 + 8007118: 4628 mov r0, r5 + 800711a: f000 fb2d bl 8007778 <__lshift> + 800711e: 46b0 mov r8, r6 + 8007120: 4606 mov r6, r0 + 8007122: 9b08 ldr r3, [sp, #32] + 8007124: 3301 adds r3, #1 + 8007126: 9302 str r3, [sp, #8] + 8007128: 9b08 ldr r3, [sp, #32] + 800712a: 445b add r3, fp + 800712c: 930a str r3, [sp, #40] ; 0x28 + 800712e: 9b04 ldr r3, [sp, #16] + 8007130: f003 0301 and.w r3, r3, #1 + 8007134: 9309 str r3, [sp, #36] ; 0x24 + 8007136: 9b02 ldr r3, [sp, #8] + 8007138: 4621 mov r1, r4 + 800713a: 4650 mov r0, sl + 800713c: f103 3bff add.w fp, r3, #4294967295 ; 0xffffffff + 8007140: f7ff fa64 bl 800660c + 8007144: 4603 mov r3, r0 + 8007146: 4641 mov r1, r8 + 8007148: 3330 adds r3, #48 ; 0x30 + 800714a: 9004 str r0, [sp, #16] + 800714c: 4650 mov r0, sl + 800714e: 930b str r3, [sp, #44] ; 0x2c + 8007150: f000 fb7e bl 8007850 <__mcmp> + 8007154: 4632 mov r2, r6 + 8007156: 9006 str r0, [sp, #24] + 8007158: 4621 mov r1, r4 + 800715a: 4628 mov r0, r5 + 800715c: f000 fb94 bl 8007888 <__mdiff> + 8007160: 68c2 ldr r2, [r0, #12] + 8007162: 4607 mov r7, r0 + 8007164: 9b0b ldr r3, [sp, #44] ; 0x2c + 8007166: bb02 cbnz r2, 80071aa <_dtoa_r+0xa82> + 8007168: 4601 mov r1, r0 + 800716a: 4650 mov r0, sl + 800716c: f000 fb70 bl 8007850 <__mcmp> + 8007170: 4602 mov r2, r0 + 8007172: 9b0b ldr r3, [sp, #44] ; 0x2c + 8007174: 4639 mov r1, r7 + 8007176: 4628 mov r0, r5 + 8007178: e9cd 320b strd r3, r2, [sp, #44] ; 0x2c + 800717c: f000 f92e bl 80073dc <_Bfree> + 8007180: 9b22 ldr r3, [sp, #136] ; 0x88 + 8007182: 9a0c ldr r2, [sp, #48] ; 0x30 + 8007184: 9f02 ldr r7, [sp, #8] + 8007186: ea43 0102 orr.w r1, r3, r2 + 800718a: 9b09 ldr r3, [sp, #36] ; 0x24 + 800718c: 430b orrs r3, r1 + 800718e: 9b0b ldr r3, [sp, #44] ; 0x2c + 8007190: d10d bne.n 80071ae <_dtoa_r+0xa86> + 8007192: 2b39 cmp r3, #57 ; 0x39 + 8007194: d027 beq.n 80071e6 <_dtoa_r+0xabe> + 8007196: 9a06 ldr r2, [sp, #24] + 8007198: 2a00 cmp r2, #0 + 800719a: dd01 ble.n 80071a0 <_dtoa_r+0xa78> + 800719c: 9b04 ldr r3, [sp, #16] + 800719e: 3331 adds r3, #49 ; 0x31 + 80071a0: f88b 3000 strb.w r3, [fp] + 80071a4: e776 b.n 8007094 <_dtoa_r+0x96c> + 80071a6: 4630 mov r0, r6 + 80071a8: e7b9 b.n 800711e <_dtoa_r+0x9f6> + 80071aa: 2201 movs r2, #1 + 80071ac: e7e2 b.n 8007174 <_dtoa_r+0xa4c> + 80071ae: 9906 ldr r1, [sp, #24] + 80071b0: 2900 cmp r1, #0 + 80071b2: db04 blt.n 80071be <_dtoa_r+0xa96> + 80071b4: 9822 ldr r0, [sp, #136] ; 0x88 + 80071b6: 4301 orrs r1, r0 + 80071b8: 9809 ldr r0, [sp, #36] ; 0x24 + 80071ba: 4301 orrs r1, r0 + 80071bc: d120 bne.n 8007200 <_dtoa_r+0xad8> + 80071be: 2a00 cmp r2, #0 + 80071c0: ddee ble.n 80071a0 <_dtoa_r+0xa78> + 80071c2: 4651 mov r1, sl + 80071c4: 2201 movs r2, #1 + 80071c6: 4628 mov r0, r5 + 80071c8: 9302 str r3, [sp, #8] + 80071ca: f000 fad5 bl 8007778 <__lshift> + 80071ce: 4621 mov r1, r4 + 80071d0: 4682 mov sl, r0 + 80071d2: f000 fb3d bl 8007850 <__mcmp> + 80071d6: 2800 cmp r0, #0 + 80071d8: 9b02 ldr r3, [sp, #8] + 80071da: dc02 bgt.n 80071e2 <_dtoa_r+0xaba> + 80071dc: d1e0 bne.n 80071a0 <_dtoa_r+0xa78> + 80071de: 07da lsls r2, r3, #31 + 80071e0: d5de bpl.n 80071a0 <_dtoa_r+0xa78> + 80071e2: 2b39 cmp r3, #57 ; 0x39 + 80071e4: d1da bne.n 800719c <_dtoa_r+0xa74> + 80071e6: 2339 movs r3, #57 ; 0x39 + 80071e8: f88b 3000 strb.w r3, [fp] + 80071ec: 463b mov r3, r7 + 80071ee: 461f mov r7, r3 + 80071f0: f817 2c01 ldrb.w r2, [r7, #-1] + 80071f4: 3b01 subs r3, #1 + 80071f6: 2a39 cmp r2, #57 ; 0x39 + 80071f8: d050 beq.n 800729c <_dtoa_r+0xb74> + 80071fa: 3201 adds r2, #1 + 80071fc: 701a strb r2, [r3, #0] + 80071fe: e749 b.n 8007094 <_dtoa_r+0x96c> + 8007200: 2a00 cmp r2, #0 + 8007202: dd03 ble.n 800720c <_dtoa_r+0xae4> + 8007204: 2b39 cmp r3, #57 ; 0x39 + 8007206: d0ee beq.n 80071e6 <_dtoa_r+0xabe> + 8007208: 3301 adds r3, #1 + 800720a: e7c9 b.n 80071a0 <_dtoa_r+0xa78> + 800720c: 9a02 ldr r2, [sp, #8] + 800720e: 990a ldr r1, [sp, #40] ; 0x28 + 8007210: f802 3c01 strb.w r3, [r2, #-1] + 8007214: 428a cmp r2, r1 + 8007216: d02a beq.n 800726e <_dtoa_r+0xb46> + 8007218: 4651 mov r1, sl + 800721a: 2300 movs r3, #0 + 800721c: 220a movs r2, #10 + 800721e: 4628 mov r0, r5 + 8007220: f000 f8fe bl 8007420 <__multadd> + 8007224: 45b0 cmp r8, r6 + 8007226: 4682 mov sl, r0 + 8007228: f04f 0300 mov.w r3, #0 + 800722c: f04f 020a mov.w r2, #10 + 8007230: 4641 mov r1, r8 + 8007232: 4628 mov r0, r5 + 8007234: d107 bne.n 8007246 <_dtoa_r+0xb1e> + 8007236: f000 f8f3 bl 8007420 <__multadd> + 800723a: 4680 mov r8, r0 + 800723c: 4606 mov r6, r0 + 800723e: 9b02 ldr r3, [sp, #8] + 8007240: 3301 adds r3, #1 + 8007242: 9302 str r3, [sp, #8] + 8007244: e777 b.n 8007136 <_dtoa_r+0xa0e> + 8007246: f000 f8eb bl 8007420 <__multadd> + 800724a: 4631 mov r1, r6 + 800724c: 4680 mov r8, r0 + 800724e: 2300 movs r3, #0 + 8007250: 220a movs r2, #10 + 8007252: 4628 mov r0, r5 + 8007254: f000 f8e4 bl 8007420 <__multadd> + 8007258: 4606 mov r6, r0 + 800725a: e7f0 b.n 800723e <_dtoa_r+0xb16> + 800725c: f1bb 0f00 cmp.w fp, #0 + 8007260: bfcc ite gt + 8007262: 465f movgt r7, fp + 8007264: 2701 movle r7, #1 + 8007266: f04f 0800 mov.w r8, #0 + 800726a: 9a08 ldr r2, [sp, #32] + 800726c: 4417 add r7, r2 + 800726e: 4651 mov r1, sl + 8007270: 2201 movs r2, #1 + 8007272: 4628 mov r0, r5 + 8007274: 9302 str r3, [sp, #8] + 8007276: f000 fa7f bl 8007778 <__lshift> + 800727a: 4621 mov r1, r4 + 800727c: 4682 mov sl, r0 + 800727e: f000 fae7 bl 8007850 <__mcmp> + 8007282: 2800 cmp r0, #0 + 8007284: dcb2 bgt.n 80071ec <_dtoa_r+0xac4> + 8007286: d102 bne.n 800728e <_dtoa_r+0xb66> + 8007288: 9b02 ldr r3, [sp, #8] + 800728a: 07db lsls r3, r3, #31 + 800728c: d4ae bmi.n 80071ec <_dtoa_r+0xac4> + 800728e: 463b mov r3, r7 + 8007290: 461f mov r7, r3 + 8007292: f813 2d01 ldrb.w r2, [r3, #-1]! + 8007296: 2a30 cmp r2, #48 ; 0x30 + 8007298: d0fa beq.n 8007290 <_dtoa_r+0xb68> + 800729a: e6fb b.n 8007094 <_dtoa_r+0x96c> + 800729c: 9a08 ldr r2, [sp, #32] + 800729e: 429a cmp r2, r3 + 80072a0: d1a5 bne.n 80071ee <_dtoa_r+0xac6> + 80072a2: 2331 movs r3, #49 ; 0x31 + 80072a4: f109 0901 add.w r9, r9, #1 + 80072a8: 7013 strb r3, [r2, #0] + 80072aa: e6f3 b.n 8007094 <_dtoa_r+0x96c> + 80072ac: 4b13 ldr r3, [pc, #76] ; (80072fc <_dtoa_r+0xbd4>) + 80072ae: f7ff baa7 b.w 8006800 <_dtoa_r+0xd8> + 80072b2: 9b26 ldr r3, [sp, #152] ; 0x98 + 80072b4: 2b00 cmp r3, #0 + 80072b6: f47f aa80 bne.w 80067ba <_dtoa_r+0x92> + 80072ba: 4b11 ldr r3, [pc, #68] ; (8007300 <_dtoa_r+0xbd8>) + 80072bc: f7ff baa0 b.w 8006800 <_dtoa_r+0xd8> + 80072c0: f1bb 0f00 cmp.w fp, #0 + 80072c4: dc03 bgt.n 80072ce <_dtoa_r+0xba6> + 80072c6: 9b22 ldr r3, [sp, #136] ; 0x88 + 80072c8: 2b02 cmp r3, #2 + 80072ca: f73f aecc bgt.w 8007066 <_dtoa_r+0x93e> + 80072ce: 9f08 ldr r7, [sp, #32] + 80072d0: 4621 mov r1, r4 + 80072d2: 4650 mov r0, sl + 80072d4: f7ff f99a bl 800660c + 80072d8: 9a08 ldr r2, [sp, #32] + 80072da: f100 0330 add.w r3, r0, #48 ; 0x30 + 80072de: f807 3b01 strb.w r3, [r7], #1 + 80072e2: 1aba subs r2, r7, r2 + 80072e4: 4593 cmp fp, r2 + 80072e6: ddb9 ble.n 800725c <_dtoa_r+0xb34> + 80072e8: 4651 mov r1, sl + 80072ea: 2300 movs r3, #0 + 80072ec: 220a movs r2, #10 + 80072ee: 4628 mov r0, r5 + 80072f0: f000 f896 bl 8007420 <__multadd> + 80072f4: 4682 mov sl, r0 + 80072f6: e7eb b.n 80072d0 <_dtoa_r+0xba8> + 80072f8: 08009503 .word 0x08009503 + 80072fc: 0800945c .word 0x0800945c + 8007300: 08009480 .word 0x08009480 -08007034 <_localeconv_r>: - 8007034: 4800 ldr r0, [pc, #0] ; (8007038 <_localeconv_r+0x4>) - 8007036: 4770 bx lr - 8007038: 20000160 .word 0x20000160 +08007304 <_localeconv_r>: + 8007304: 4800 ldr r0, [pc, #0] ; (8007308 <_localeconv_r+0x4>) + 8007306: 4770 bx lr + 8007308: 20000160 .word 0x20000160 -0800703c : - 800703c: 4603 mov r3, r0 - 800703e: b510 push {r4, lr} - 8007040: b2c9 uxtb r1, r1 - 8007042: 4402 add r2, r0 - 8007044: 4293 cmp r3, r2 - 8007046: 4618 mov r0, r3 - 8007048: d101 bne.n 800704e - 800704a: 2000 movs r0, #0 - 800704c: e003 b.n 8007056 - 800704e: 7804 ldrb r4, [r0, #0] - 8007050: 3301 adds r3, #1 - 8007052: 428c cmp r4, r1 - 8007054: d1f6 bne.n 8007044 - 8007056: bd10 pop {r4, pc} +0800730c : + 800730c: 4603 mov r3, r0 + 800730e: b510 push {r4, lr} + 8007310: b2c9 uxtb r1, r1 + 8007312: 4402 add r2, r0 + 8007314: 4293 cmp r3, r2 + 8007316: 4618 mov r0, r3 + 8007318: d101 bne.n 800731e + 800731a: 2000 movs r0, #0 + 800731c: e003 b.n 8007326 + 800731e: 7804 ldrb r4, [r0, #0] + 8007320: 3301 adds r3, #1 + 8007322: 428c cmp r4, r1 + 8007324: d1f6 bne.n 8007314 + 8007326: bd10 pop {r4, pc} -08007058 : - 8007058: 440a add r2, r1 - 800705a: 4291 cmp r1, r2 - 800705c: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff - 8007060: d100 bne.n 8007064 - 8007062: 4770 bx lr - 8007064: b510 push {r4, lr} - 8007066: f811 4b01 ldrb.w r4, [r1], #1 - 800706a: 4291 cmp r1, r2 - 800706c: f803 4f01 strb.w r4, [r3, #1]! - 8007070: d1f9 bne.n 8007066 - 8007072: bd10 pop {r4, pc} +08007328 : + 8007328: 440a add r2, r1 + 800732a: 4291 cmp r1, r2 + 800732c: f100 33ff add.w r3, r0, #4294967295 ; 0xffffffff + 8007330: d100 bne.n 8007334 + 8007332: 4770 bx lr + 8007334: b510 push {r4, lr} + 8007336: f811 4b01 ldrb.w r4, [r1], #1 + 800733a: 4291 cmp r1, r2 + 800733c: f803 4f01 strb.w r4, [r3, #1]! + 8007340: d1f9 bne.n 8007336 + 8007342: bd10 pop {r4, pc} -08007074 <__malloc_lock>: - 8007074: 4801 ldr r0, [pc, #4] ; (800707c <__malloc_lock+0x8>) - 8007076: f000 bd26 b.w 8007ac6 <__retarget_lock_acquire_recursive> - 800707a: bf00 nop - 800707c: 200002fc .word 0x200002fc +08007344 <__malloc_lock>: + 8007344: 4801 ldr r0, [pc, #4] ; (800734c <__malloc_lock+0x8>) + 8007346: f000 bd26 b.w 8007d96 <__retarget_lock_acquire_recursive> + 800734a: bf00 nop + 800734c: 20000344 .word 0x20000344 -08007080 <__malloc_unlock>: - 8007080: 4801 ldr r0, [pc, #4] ; (8007088 <__malloc_unlock+0x8>) - 8007082: f000 bd21 b.w 8007ac8 <__retarget_lock_release_recursive> - 8007086: bf00 nop - 8007088: 200002fc .word 0x200002fc +08007350 <__malloc_unlock>: + 8007350: 4801 ldr r0, [pc, #4] ; (8007358 <__malloc_unlock+0x8>) + 8007352: f000 bd21 b.w 8007d98 <__retarget_lock_release_recursive> + 8007356: bf00 nop + 8007358: 20000344 .word 0x20000344 -0800708c <_Balloc>: - 800708c: b570 push {r4, r5, r6, lr} - 800708e: 6a46 ldr r6, [r0, #36] ; 0x24 - 8007090: 4604 mov r4, r0 - 8007092: 460d mov r5, r1 - 8007094: b976 cbnz r6, 80070b4 <_Balloc+0x28> - 8007096: 2010 movs r0, #16 - 8007098: f7fe fc00 bl 800589c - 800709c: 4602 mov r2, r0 - 800709e: 6260 str r0, [r4, #36] ; 0x24 - 80070a0: b920 cbnz r0, 80070ac <_Balloc+0x20> - 80070a2: 2166 movs r1, #102 ; 0x66 - 80070a4: 4b17 ldr r3, [pc, #92] ; (8007104 <_Balloc+0x78>) - 80070a6: 4818 ldr r0, [pc, #96] ; (8007108 <_Balloc+0x7c>) - 80070a8: f000 fcdc bl 8007a64 <__assert_func> - 80070ac: e9c0 6601 strd r6, r6, [r0, #4] - 80070b0: 6006 str r6, [r0, #0] - 80070b2: 60c6 str r6, [r0, #12] - 80070b4: 6a66 ldr r6, [r4, #36] ; 0x24 - 80070b6: 68f3 ldr r3, [r6, #12] - 80070b8: b183 cbz r3, 80070dc <_Balloc+0x50> - 80070ba: 6a63 ldr r3, [r4, #36] ; 0x24 - 80070bc: 68db ldr r3, [r3, #12] - 80070be: f853 0025 ldr.w r0, [r3, r5, lsl #2] - 80070c2: b9b8 cbnz r0, 80070f4 <_Balloc+0x68> - 80070c4: 2101 movs r1, #1 - 80070c6: fa01 f605 lsl.w r6, r1, r5 - 80070ca: 1d72 adds r2, r6, #5 - 80070cc: 4620 mov r0, r4 - 80070ce: 0092 lsls r2, r2, #2 - 80070d0: f000 fb5e bl 8007790 <_calloc_r> - 80070d4: b160 cbz r0, 80070f0 <_Balloc+0x64> - 80070d6: e9c0 5601 strd r5, r6, [r0, #4] - 80070da: e00e b.n 80070fa <_Balloc+0x6e> - 80070dc: 2221 movs r2, #33 ; 0x21 - 80070de: 2104 movs r1, #4 - 80070e0: 4620 mov r0, r4 - 80070e2: f000 fb55 bl 8007790 <_calloc_r> - 80070e6: 6a63 ldr r3, [r4, #36] ; 0x24 - 80070e8: 60f0 str r0, [r6, #12] - 80070ea: 68db ldr r3, [r3, #12] - 80070ec: 2b00 cmp r3, #0 - 80070ee: d1e4 bne.n 80070ba <_Balloc+0x2e> - 80070f0: 2000 movs r0, #0 - 80070f2: bd70 pop {r4, r5, r6, pc} - 80070f4: 6802 ldr r2, [r0, #0] - 80070f6: f843 2025 str.w r2, [r3, r5, lsl #2] - 80070fa: 2300 movs r3, #0 - 80070fc: e9c0 3303 strd r3, r3, [r0, #12] - 8007100: e7f7 b.n 80070f2 <_Balloc+0x66> - 8007102: bf00 nop - 8007104: 0800919d .word 0x0800919d - 8007108: 08009224 .word 0x08009224 +0800735c <_Balloc>: + 800735c: b570 push {r4, r5, r6, lr} + 800735e: 6a46 ldr r6, [r0, #36] ; 0x24 + 8007360: 4604 mov r4, r0 + 8007362: 460d mov r5, r1 + 8007364: b976 cbnz r6, 8007384 <_Balloc+0x28> + 8007366: 2010 movs r0, #16 + 8007368: f7fe fc02 bl 8005b70 + 800736c: 4602 mov r2, r0 + 800736e: 6260 str r0, [r4, #36] ; 0x24 + 8007370: b920 cbnz r0, 800737c <_Balloc+0x20> + 8007372: 2166 movs r1, #102 ; 0x66 + 8007374: 4b17 ldr r3, [pc, #92] ; (80073d4 <_Balloc+0x78>) + 8007376: 4818 ldr r0, [pc, #96] ; (80073d8 <_Balloc+0x7c>) + 8007378: f000 fcdc bl 8007d34 <__assert_func> + 800737c: e9c0 6601 strd r6, r6, [r0, #4] + 8007380: 6006 str r6, [r0, #0] + 8007382: 60c6 str r6, [r0, #12] + 8007384: 6a66 ldr r6, [r4, #36] ; 0x24 + 8007386: 68f3 ldr r3, [r6, #12] + 8007388: b183 cbz r3, 80073ac <_Balloc+0x50> + 800738a: 6a63 ldr r3, [r4, #36] ; 0x24 + 800738c: 68db ldr r3, [r3, #12] + 800738e: f853 0025 ldr.w r0, [r3, r5, lsl #2] + 8007392: b9b8 cbnz r0, 80073c4 <_Balloc+0x68> + 8007394: 2101 movs r1, #1 + 8007396: fa01 f605 lsl.w r6, r1, r5 + 800739a: 1d72 adds r2, r6, #5 + 800739c: 4620 mov r0, r4 + 800739e: 0092 lsls r2, r2, #2 + 80073a0: f000 fb5e bl 8007a60 <_calloc_r> + 80073a4: b160 cbz r0, 80073c0 <_Balloc+0x64> + 80073a6: e9c0 5601 strd r5, r6, [r0, #4] + 80073aa: e00e b.n 80073ca <_Balloc+0x6e> + 80073ac: 2221 movs r2, #33 ; 0x21 + 80073ae: 2104 movs r1, #4 + 80073b0: 4620 mov r0, r4 + 80073b2: f000 fb55 bl 8007a60 <_calloc_r> + 80073b6: 6a63 ldr r3, [r4, #36] ; 0x24 + 80073b8: 60f0 str r0, [r6, #12] + 80073ba: 68db ldr r3, [r3, #12] + 80073bc: 2b00 cmp r3, #0 + 80073be: d1e4 bne.n 800738a <_Balloc+0x2e> + 80073c0: 2000 movs r0, #0 + 80073c2: bd70 pop {r4, r5, r6, pc} + 80073c4: 6802 ldr r2, [r0, #0] + 80073c6: f843 2025 str.w r2, [r3, r5, lsl #2] + 80073ca: 2300 movs r3, #0 + 80073cc: e9c0 3303 strd r3, r3, [r0, #12] + 80073d0: e7f7 b.n 80073c2 <_Balloc+0x66> + 80073d2: bf00 nop + 80073d4: 0800948d .word 0x0800948d + 80073d8: 08009514 .word 0x08009514 -0800710c <_Bfree>: - 800710c: b570 push {r4, r5, r6, lr} - 800710e: 6a46 ldr r6, [r0, #36] ; 0x24 - 8007110: 4605 mov r5, r0 - 8007112: 460c mov r4, r1 - 8007114: b976 cbnz r6, 8007134 <_Bfree+0x28> - 8007116: 2010 movs r0, #16 - 8007118: f7fe fbc0 bl 800589c - 800711c: 4602 mov r2, r0 - 800711e: 6268 str r0, [r5, #36] ; 0x24 - 8007120: b920 cbnz r0, 800712c <_Bfree+0x20> - 8007122: 218a movs r1, #138 ; 0x8a - 8007124: 4b08 ldr r3, [pc, #32] ; (8007148 <_Bfree+0x3c>) - 8007126: 4809 ldr r0, [pc, #36] ; (800714c <_Bfree+0x40>) - 8007128: f000 fc9c bl 8007a64 <__assert_func> - 800712c: e9c0 6601 strd r6, r6, [r0, #4] - 8007130: 6006 str r6, [r0, #0] - 8007132: 60c6 str r6, [r0, #12] - 8007134: b13c cbz r4, 8007146 <_Bfree+0x3a> - 8007136: 6a6b ldr r3, [r5, #36] ; 0x24 - 8007138: 6862 ldr r2, [r4, #4] - 800713a: 68db ldr r3, [r3, #12] - 800713c: f853 1022 ldr.w r1, [r3, r2, lsl #2] - 8007140: 6021 str r1, [r4, #0] - 8007142: f843 4022 str.w r4, [r3, r2, lsl #2] - 8007146: bd70 pop {r4, r5, r6, pc} - 8007148: 0800919d .word 0x0800919d - 800714c: 08009224 .word 0x08009224 +080073dc <_Bfree>: + 80073dc: b570 push {r4, r5, r6, lr} + 80073de: 6a46 ldr r6, [r0, #36] ; 0x24 + 80073e0: 4605 mov r5, r0 + 80073e2: 460c mov r4, r1 + 80073e4: b976 cbnz r6, 8007404 <_Bfree+0x28> + 80073e6: 2010 movs r0, #16 + 80073e8: f7fe fbc2 bl 8005b70 + 80073ec: 4602 mov r2, r0 + 80073ee: 6268 str r0, [r5, #36] ; 0x24 + 80073f0: b920 cbnz r0, 80073fc <_Bfree+0x20> + 80073f2: 218a movs r1, #138 ; 0x8a + 80073f4: 4b08 ldr r3, [pc, #32] ; (8007418 <_Bfree+0x3c>) + 80073f6: 4809 ldr r0, [pc, #36] ; (800741c <_Bfree+0x40>) + 80073f8: f000 fc9c bl 8007d34 <__assert_func> + 80073fc: e9c0 6601 strd r6, r6, [r0, #4] + 8007400: 6006 str r6, [r0, #0] + 8007402: 60c6 str r6, [r0, #12] + 8007404: b13c cbz r4, 8007416 <_Bfree+0x3a> + 8007406: 6a6b ldr r3, [r5, #36] ; 0x24 + 8007408: 6862 ldr r2, [r4, #4] + 800740a: 68db ldr r3, [r3, #12] + 800740c: f853 1022 ldr.w r1, [r3, r2, lsl #2] + 8007410: 6021 str r1, [r4, #0] + 8007412: f843 4022 str.w r4, [r3, r2, lsl #2] + 8007416: bd70 pop {r4, r5, r6, pc} + 8007418: 0800948d .word 0x0800948d + 800741c: 08009514 .word 0x08009514 -08007150 <__multadd>: - 8007150: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8007154: 4698 mov r8, r3 - 8007156: 460c mov r4, r1 - 8007158: 2300 movs r3, #0 - 800715a: 690e ldr r6, [r1, #16] - 800715c: 4607 mov r7, r0 - 800715e: f101 0014 add.w r0, r1, #20 - 8007162: 6805 ldr r5, [r0, #0] - 8007164: 3301 adds r3, #1 - 8007166: b2a9 uxth r1, r5 - 8007168: fb02 8101 mla r1, r2, r1, r8 - 800716c: 0c2d lsrs r5, r5, #16 - 800716e: ea4f 4c11 mov.w ip, r1, lsr #16 - 8007172: fb02 c505 mla r5, r2, r5, ip - 8007176: b289 uxth r1, r1 - 8007178: eb01 4105 add.w r1, r1, r5, lsl #16 - 800717c: 429e cmp r6, r3 - 800717e: ea4f 4815 mov.w r8, r5, lsr #16 - 8007182: f840 1b04 str.w r1, [r0], #4 - 8007186: dcec bgt.n 8007162 <__multadd+0x12> - 8007188: f1b8 0f00 cmp.w r8, #0 - 800718c: d022 beq.n 80071d4 <__multadd+0x84> - 800718e: 68a3 ldr r3, [r4, #8] - 8007190: 42b3 cmp r3, r6 - 8007192: dc19 bgt.n 80071c8 <__multadd+0x78> - 8007194: 6861 ldr r1, [r4, #4] - 8007196: 4638 mov r0, r7 - 8007198: 3101 adds r1, #1 - 800719a: f7ff ff77 bl 800708c <_Balloc> - 800719e: 4605 mov r5, r0 - 80071a0: b928 cbnz r0, 80071ae <__multadd+0x5e> - 80071a2: 4602 mov r2, r0 - 80071a4: 21b5 movs r1, #181 ; 0xb5 - 80071a6: 4b0d ldr r3, [pc, #52] ; (80071dc <__multadd+0x8c>) - 80071a8: 480d ldr r0, [pc, #52] ; (80071e0 <__multadd+0x90>) - 80071aa: f000 fc5b bl 8007a64 <__assert_func> - 80071ae: 6922 ldr r2, [r4, #16] - 80071b0: f104 010c add.w r1, r4, #12 - 80071b4: 3202 adds r2, #2 - 80071b6: 0092 lsls r2, r2, #2 - 80071b8: 300c adds r0, #12 - 80071ba: f7ff ff4d bl 8007058 - 80071be: 4621 mov r1, r4 - 80071c0: 4638 mov r0, r7 - 80071c2: f7ff ffa3 bl 800710c <_Bfree> - 80071c6: 462c mov r4, r5 - 80071c8: eb04 0386 add.w r3, r4, r6, lsl #2 - 80071cc: 3601 adds r6, #1 - 80071ce: f8c3 8014 str.w r8, [r3, #20] - 80071d2: 6126 str r6, [r4, #16] - 80071d4: 4620 mov r0, r4 - 80071d6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 80071da: bf00 nop - 80071dc: 08009213 .word 0x08009213 - 80071e0: 08009224 .word 0x08009224 +08007420 <__multadd>: + 8007420: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 8007424: 4698 mov r8, r3 + 8007426: 460c mov r4, r1 + 8007428: 2300 movs r3, #0 + 800742a: 690e ldr r6, [r1, #16] + 800742c: 4607 mov r7, r0 + 800742e: f101 0014 add.w r0, r1, #20 + 8007432: 6805 ldr r5, [r0, #0] + 8007434: 3301 adds r3, #1 + 8007436: b2a9 uxth r1, r5 + 8007438: fb02 8101 mla r1, r2, r1, r8 + 800743c: 0c2d lsrs r5, r5, #16 + 800743e: ea4f 4c11 mov.w ip, r1, lsr #16 + 8007442: fb02 c505 mla r5, r2, r5, ip + 8007446: b289 uxth r1, r1 + 8007448: eb01 4105 add.w r1, r1, r5, lsl #16 + 800744c: 429e cmp r6, r3 + 800744e: ea4f 4815 mov.w r8, r5, lsr #16 + 8007452: f840 1b04 str.w r1, [r0], #4 + 8007456: dcec bgt.n 8007432 <__multadd+0x12> + 8007458: f1b8 0f00 cmp.w r8, #0 + 800745c: d022 beq.n 80074a4 <__multadd+0x84> + 800745e: 68a3 ldr r3, [r4, #8] + 8007460: 42b3 cmp r3, r6 + 8007462: dc19 bgt.n 8007498 <__multadd+0x78> + 8007464: 6861 ldr r1, [r4, #4] + 8007466: 4638 mov r0, r7 + 8007468: 3101 adds r1, #1 + 800746a: f7ff ff77 bl 800735c <_Balloc> + 800746e: 4605 mov r5, r0 + 8007470: b928 cbnz r0, 800747e <__multadd+0x5e> + 8007472: 4602 mov r2, r0 + 8007474: 21b5 movs r1, #181 ; 0xb5 + 8007476: 4b0d ldr r3, [pc, #52] ; (80074ac <__multadd+0x8c>) + 8007478: 480d ldr r0, [pc, #52] ; (80074b0 <__multadd+0x90>) + 800747a: f000 fc5b bl 8007d34 <__assert_func> + 800747e: 6922 ldr r2, [r4, #16] + 8007480: f104 010c add.w r1, r4, #12 + 8007484: 3202 adds r2, #2 + 8007486: 0092 lsls r2, r2, #2 + 8007488: 300c adds r0, #12 + 800748a: f7ff ff4d bl 8007328 + 800748e: 4621 mov r1, r4 + 8007490: 4638 mov r0, r7 + 8007492: f7ff ffa3 bl 80073dc <_Bfree> + 8007496: 462c mov r4, r5 + 8007498: eb04 0386 add.w r3, r4, r6, lsl #2 + 800749c: 3601 adds r6, #1 + 800749e: f8c3 8014 str.w r8, [r3, #20] + 80074a2: 6126 str r6, [r4, #16] + 80074a4: 4620 mov r0, r4 + 80074a6: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 80074aa: bf00 nop + 80074ac: 08009503 .word 0x08009503 + 80074b0: 08009514 .word 0x08009514 -080071e4 <__hi0bits>: - 80071e4: 0c02 lsrs r2, r0, #16 - 80071e6: 0412 lsls r2, r2, #16 - 80071e8: 4603 mov r3, r0 - 80071ea: b9ca cbnz r2, 8007220 <__hi0bits+0x3c> - 80071ec: 0403 lsls r3, r0, #16 - 80071ee: 2010 movs r0, #16 - 80071f0: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 - 80071f4: bf04 itt eq - 80071f6: 021b lsleq r3, r3, #8 - 80071f8: 3008 addeq r0, #8 - 80071fa: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 - 80071fe: bf04 itt eq - 8007200: 011b lsleq r3, r3, #4 - 8007202: 3004 addeq r0, #4 - 8007204: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 - 8007208: bf04 itt eq - 800720a: 009b lsleq r3, r3, #2 - 800720c: 3002 addeq r0, #2 - 800720e: 2b00 cmp r3, #0 - 8007210: db05 blt.n 800721e <__hi0bits+0x3a> - 8007212: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 - 8007216: f100 0001 add.w r0, r0, #1 - 800721a: bf08 it eq - 800721c: 2020 moveq r0, #32 - 800721e: 4770 bx lr - 8007220: 2000 movs r0, #0 - 8007222: e7e5 b.n 80071f0 <__hi0bits+0xc> +080074b4 <__hi0bits>: + 80074b4: 0c02 lsrs r2, r0, #16 + 80074b6: 0412 lsls r2, r2, #16 + 80074b8: 4603 mov r3, r0 + 80074ba: b9ca cbnz r2, 80074f0 <__hi0bits+0x3c> + 80074bc: 0403 lsls r3, r0, #16 + 80074be: 2010 movs r0, #16 + 80074c0: f013 4f7f tst.w r3, #4278190080 ; 0xff000000 + 80074c4: bf04 itt eq + 80074c6: 021b lsleq r3, r3, #8 + 80074c8: 3008 addeq r0, #8 + 80074ca: f013 4f70 tst.w r3, #4026531840 ; 0xf0000000 + 80074ce: bf04 itt eq + 80074d0: 011b lsleq r3, r3, #4 + 80074d2: 3004 addeq r0, #4 + 80074d4: f013 4f40 tst.w r3, #3221225472 ; 0xc0000000 + 80074d8: bf04 itt eq + 80074da: 009b lsleq r3, r3, #2 + 80074dc: 3002 addeq r0, #2 + 80074de: 2b00 cmp r3, #0 + 80074e0: db05 blt.n 80074ee <__hi0bits+0x3a> + 80074e2: f013 4f80 tst.w r3, #1073741824 ; 0x40000000 + 80074e6: f100 0001 add.w r0, r0, #1 + 80074ea: bf08 it eq + 80074ec: 2020 moveq r0, #32 + 80074ee: 4770 bx lr + 80074f0: 2000 movs r0, #0 + 80074f2: e7e5 b.n 80074c0 <__hi0bits+0xc> -08007224 <__lo0bits>: - 8007224: 6803 ldr r3, [r0, #0] - 8007226: 4602 mov r2, r0 - 8007228: f013 0007 ands.w r0, r3, #7 - 800722c: d00b beq.n 8007246 <__lo0bits+0x22> - 800722e: 07d9 lsls r1, r3, #31 - 8007230: d422 bmi.n 8007278 <__lo0bits+0x54> - 8007232: 0798 lsls r0, r3, #30 - 8007234: bf49 itett mi - 8007236: 085b lsrmi r3, r3, #1 - 8007238: 089b lsrpl r3, r3, #2 - 800723a: 2001 movmi r0, #1 - 800723c: 6013 strmi r3, [r2, #0] - 800723e: bf5c itt pl - 8007240: 2002 movpl r0, #2 - 8007242: 6013 strpl r3, [r2, #0] - 8007244: 4770 bx lr - 8007246: b299 uxth r1, r3 - 8007248: b909 cbnz r1, 800724e <__lo0bits+0x2a> - 800724a: 2010 movs r0, #16 - 800724c: 0c1b lsrs r3, r3, #16 - 800724e: f013 0fff tst.w r3, #255 ; 0xff - 8007252: bf04 itt eq - 8007254: 0a1b lsreq r3, r3, #8 - 8007256: 3008 addeq r0, #8 - 8007258: 0719 lsls r1, r3, #28 - 800725a: bf04 itt eq - 800725c: 091b lsreq r3, r3, #4 - 800725e: 3004 addeq r0, #4 - 8007260: 0799 lsls r1, r3, #30 - 8007262: bf04 itt eq - 8007264: 089b lsreq r3, r3, #2 - 8007266: 3002 addeq r0, #2 - 8007268: 07d9 lsls r1, r3, #31 - 800726a: d403 bmi.n 8007274 <__lo0bits+0x50> - 800726c: 085b lsrs r3, r3, #1 - 800726e: f100 0001 add.w r0, r0, #1 - 8007272: d003 beq.n 800727c <__lo0bits+0x58> - 8007274: 6013 str r3, [r2, #0] - 8007276: 4770 bx lr - 8007278: 2000 movs r0, #0 - 800727a: 4770 bx lr - 800727c: 2020 movs r0, #32 - 800727e: 4770 bx lr +080074f4 <__lo0bits>: + 80074f4: 6803 ldr r3, [r0, #0] + 80074f6: 4602 mov r2, r0 + 80074f8: f013 0007 ands.w r0, r3, #7 + 80074fc: d00b beq.n 8007516 <__lo0bits+0x22> + 80074fe: 07d9 lsls r1, r3, #31 + 8007500: d422 bmi.n 8007548 <__lo0bits+0x54> + 8007502: 0798 lsls r0, r3, #30 + 8007504: bf49 itett mi + 8007506: 085b lsrmi r3, r3, #1 + 8007508: 089b lsrpl r3, r3, #2 + 800750a: 2001 movmi r0, #1 + 800750c: 6013 strmi r3, [r2, #0] + 800750e: bf5c itt pl + 8007510: 2002 movpl r0, #2 + 8007512: 6013 strpl r3, [r2, #0] + 8007514: 4770 bx lr + 8007516: b299 uxth r1, r3 + 8007518: b909 cbnz r1, 800751e <__lo0bits+0x2a> + 800751a: 2010 movs r0, #16 + 800751c: 0c1b lsrs r3, r3, #16 + 800751e: f013 0fff tst.w r3, #255 ; 0xff + 8007522: bf04 itt eq + 8007524: 0a1b lsreq r3, r3, #8 + 8007526: 3008 addeq r0, #8 + 8007528: 0719 lsls r1, r3, #28 + 800752a: bf04 itt eq + 800752c: 091b lsreq r3, r3, #4 + 800752e: 3004 addeq r0, #4 + 8007530: 0799 lsls r1, r3, #30 + 8007532: bf04 itt eq + 8007534: 089b lsreq r3, r3, #2 + 8007536: 3002 addeq r0, #2 + 8007538: 07d9 lsls r1, r3, #31 + 800753a: d403 bmi.n 8007544 <__lo0bits+0x50> + 800753c: 085b lsrs r3, r3, #1 + 800753e: f100 0001 add.w r0, r0, #1 + 8007542: d003 beq.n 800754c <__lo0bits+0x58> + 8007544: 6013 str r3, [r2, #0] + 8007546: 4770 bx lr + 8007548: 2000 movs r0, #0 + 800754a: 4770 bx lr + 800754c: 2020 movs r0, #32 + 800754e: 4770 bx lr -08007280 <__i2b>: - 8007280: b510 push {r4, lr} - 8007282: 460c mov r4, r1 - 8007284: 2101 movs r1, #1 - 8007286: f7ff ff01 bl 800708c <_Balloc> - 800728a: 4602 mov r2, r0 - 800728c: b928 cbnz r0, 800729a <__i2b+0x1a> - 800728e: f44f 71a0 mov.w r1, #320 ; 0x140 - 8007292: 4b04 ldr r3, [pc, #16] ; (80072a4 <__i2b+0x24>) - 8007294: 4804 ldr r0, [pc, #16] ; (80072a8 <__i2b+0x28>) - 8007296: f000 fbe5 bl 8007a64 <__assert_func> - 800729a: 2301 movs r3, #1 - 800729c: 6144 str r4, [r0, #20] - 800729e: 6103 str r3, [r0, #16] - 80072a0: bd10 pop {r4, pc} - 80072a2: bf00 nop - 80072a4: 08009213 .word 0x08009213 - 80072a8: 08009224 .word 0x08009224 +08007550 <__i2b>: + 8007550: b510 push {r4, lr} + 8007552: 460c mov r4, r1 + 8007554: 2101 movs r1, #1 + 8007556: f7ff ff01 bl 800735c <_Balloc> + 800755a: 4602 mov r2, r0 + 800755c: b928 cbnz r0, 800756a <__i2b+0x1a> + 800755e: f44f 71a0 mov.w r1, #320 ; 0x140 + 8007562: 4b04 ldr r3, [pc, #16] ; (8007574 <__i2b+0x24>) + 8007564: 4804 ldr r0, [pc, #16] ; (8007578 <__i2b+0x28>) + 8007566: f000 fbe5 bl 8007d34 <__assert_func> + 800756a: 2301 movs r3, #1 + 800756c: 6144 str r4, [r0, #20] + 800756e: 6103 str r3, [r0, #16] + 8007570: bd10 pop {r4, pc} + 8007572: bf00 nop + 8007574: 08009503 .word 0x08009503 + 8007578: 08009514 .word 0x08009514 -080072ac <__multiply>: - 80072ac: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 80072b0: 4614 mov r4, r2 - 80072b2: 690a ldr r2, [r1, #16] - 80072b4: 6923 ldr r3, [r4, #16] - 80072b6: 460d mov r5, r1 - 80072b8: 429a cmp r2, r3 - 80072ba: bfbe ittt lt - 80072bc: 460b movlt r3, r1 - 80072be: 4625 movlt r5, r4 - 80072c0: 461c movlt r4, r3 - 80072c2: f8d5 a010 ldr.w sl, [r5, #16] - 80072c6: f8d4 9010 ldr.w r9, [r4, #16] - 80072ca: 68ab ldr r3, [r5, #8] - 80072cc: 6869 ldr r1, [r5, #4] - 80072ce: eb0a 0709 add.w r7, sl, r9 - 80072d2: 42bb cmp r3, r7 - 80072d4: b085 sub sp, #20 - 80072d6: bfb8 it lt - 80072d8: 3101 addlt r1, #1 - 80072da: f7ff fed7 bl 800708c <_Balloc> - 80072de: b930 cbnz r0, 80072ee <__multiply+0x42> - 80072e0: 4602 mov r2, r0 - 80072e2: f240 115d movw r1, #349 ; 0x15d - 80072e6: 4b41 ldr r3, [pc, #260] ; (80073ec <__multiply+0x140>) - 80072e8: 4841 ldr r0, [pc, #260] ; (80073f0 <__multiply+0x144>) - 80072ea: f000 fbbb bl 8007a64 <__assert_func> - 80072ee: f100 0614 add.w r6, r0, #20 - 80072f2: 4633 mov r3, r6 - 80072f4: 2200 movs r2, #0 - 80072f6: eb06 0887 add.w r8, r6, r7, lsl #2 - 80072fa: 4543 cmp r3, r8 - 80072fc: d31e bcc.n 800733c <__multiply+0x90> - 80072fe: f105 0c14 add.w ip, r5, #20 - 8007302: f104 0314 add.w r3, r4, #20 - 8007306: eb0c 0c8a add.w ip, ip, sl, lsl #2 - 800730a: eb03 0289 add.w r2, r3, r9, lsl #2 - 800730e: 9202 str r2, [sp, #8] - 8007310: ebac 0205 sub.w r2, ip, r5 - 8007314: 3a15 subs r2, #21 - 8007316: f022 0203 bic.w r2, r2, #3 - 800731a: 3204 adds r2, #4 - 800731c: f105 0115 add.w r1, r5, #21 - 8007320: 458c cmp ip, r1 - 8007322: bf38 it cc - 8007324: 2204 movcc r2, #4 - 8007326: 9201 str r2, [sp, #4] - 8007328: 9a02 ldr r2, [sp, #8] - 800732a: 9303 str r3, [sp, #12] - 800732c: 429a cmp r2, r3 - 800732e: d808 bhi.n 8007342 <__multiply+0x96> - 8007330: 2f00 cmp r7, #0 - 8007332: dc55 bgt.n 80073e0 <__multiply+0x134> - 8007334: 6107 str r7, [r0, #16] - 8007336: b005 add sp, #20 - 8007338: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 800733c: f843 2b04 str.w r2, [r3], #4 - 8007340: e7db b.n 80072fa <__multiply+0x4e> - 8007342: f8b3 a000 ldrh.w sl, [r3] - 8007346: f1ba 0f00 cmp.w sl, #0 - 800734a: d020 beq.n 800738e <__multiply+0xe2> - 800734c: 46b1 mov r9, r6 - 800734e: 2200 movs r2, #0 - 8007350: f105 0e14 add.w lr, r5, #20 - 8007354: f85e 4b04 ldr.w r4, [lr], #4 - 8007358: f8d9 b000 ldr.w fp, [r9] - 800735c: b2a1 uxth r1, r4 - 800735e: fa1f fb8b uxth.w fp, fp - 8007362: fb0a b101 mla r1, sl, r1, fp - 8007366: 4411 add r1, r2 - 8007368: f8d9 2000 ldr.w r2, [r9] - 800736c: 0c24 lsrs r4, r4, #16 - 800736e: 0c12 lsrs r2, r2, #16 - 8007370: fb0a 2404 mla r4, sl, r4, r2 - 8007374: eb04 4411 add.w r4, r4, r1, lsr #16 - 8007378: b289 uxth r1, r1 - 800737a: ea41 4104 orr.w r1, r1, r4, lsl #16 - 800737e: 45f4 cmp ip, lr - 8007380: ea4f 4214 mov.w r2, r4, lsr #16 - 8007384: f849 1b04 str.w r1, [r9], #4 - 8007388: d8e4 bhi.n 8007354 <__multiply+0xa8> - 800738a: 9901 ldr r1, [sp, #4] - 800738c: 5072 str r2, [r6, r1] - 800738e: 9a03 ldr r2, [sp, #12] - 8007390: 3304 adds r3, #4 - 8007392: f8b2 9002 ldrh.w r9, [r2, #2] - 8007396: f1b9 0f00 cmp.w r9, #0 - 800739a: d01f beq.n 80073dc <__multiply+0x130> - 800739c: 46b6 mov lr, r6 - 800739e: f04f 0a00 mov.w sl, #0 - 80073a2: 6834 ldr r4, [r6, #0] - 80073a4: f105 0114 add.w r1, r5, #20 - 80073a8: 880a ldrh r2, [r1, #0] - 80073aa: f8be b002 ldrh.w fp, [lr, #2] - 80073ae: b2a4 uxth r4, r4 - 80073b0: fb09 b202 mla r2, r9, r2, fp - 80073b4: 4492 add sl, r2 - 80073b6: ea44 440a orr.w r4, r4, sl, lsl #16 - 80073ba: f84e 4b04 str.w r4, [lr], #4 - 80073be: f851 4b04 ldr.w r4, [r1], #4 - 80073c2: f8be 2000 ldrh.w r2, [lr] - 80073c6: 0c24 lsrs r4, r4, #16 - 80073c8: fb09 2404 mla r4, r9, r4, r2 - 80073cc: 458c cmp ip, r1 - 80073ce: eb04 441a add.w r4, r4, sl, lsr #16 - 80073d2: ea4f 4a14 mov.w sl, r4, lsr #16 - 80073d6: d8e7 bhi.n 80073a8 <__multiply+0xfc> - 80073d8: 9a01 ldr r2, [sp, #4] - 80073da: 50b4 str r4, [r6, r2] - 80073dc: 3604 adds r6, #4 - 80073de: e7a3 b.n 8007328 <__multiply+0x7c> - 80073e0: f858 3d04 ldr.w r3, [r8, #-4]! - 80073e4: 2b00 cmp r3, #0 - 80073e6: d1a5 bne.n 8007334 <__multiply+0x88> - 80073e8: 3f01 subs r7, #1 - 80073ea: e7a1 b.n 8007330 <__multiply+0x84> - 80073ec: 08009213 .word 0x08009213 - 80073f0: 08009224 .word 0x08009224 - -080073f4 <__pow5mult>: - 80073f4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 80073f8: 4615 mov r5, r2 - 80073fa: f012 0203 ands.w r2, r2, #3 - 80073fe: 4606 mov r6, r0 - 8007400: 460f mov r7, r1 - 8007402: d007 beq.n 8007414 <__pow5mult+0x20> - 8007404: 4c25 ldr r4, [pc, #148] ; (800749c <__pow5mult+0xa8>) - 8007406: 3a01 subs r2, #1 - 8007408: 2300 movs r3, #0 - 800740a: f854 2022 ldr.w r2, [r4, r2, lsl #2] - 800740e: f7ff fe9f bl 8007150 <__multadd> - 8007412: 4607 mov r7, r0 - 8007414: 10ad asrs r5, r5, #2 - 8007416: d03d beq.n 8007494 <__pow5mult+0xa0> - 8007418: 6a74 ldr r4, [r6, #36] ; 0x24 - 800741a: b97c cbnz r4, 800743c <__pow5mult+0x48> - 800741c: 2010 movs r0, #16 - 800741e: f7fe fa3d bl 800589c - 8007422: 4602 mov r2, r0 - 8007424: 6270 str r0, [r6, #36] ; 0x24 - 8007426: b928 cbnz r0, 8007434 <__pow5mult+0x40> - 8007428: f44f 71d7 mov.w r1, #430 ; 0x1ae - 800742c: 4b1c ldr r3, [pc, #112] ; (80074a0 <__pow5mult+0xac>) - 800742e: 481d ldr r0, [pc, #116] ; (80074a4 <__pow5mult+0xb0>) - 8007430: f000 fb18 bl 8007a64 <__assert_func> - 8007434: e9c0 4401 strd r4, r4, [r0, #4] - 8007438: 6004 str r4, [r0, #0] - 800743a: 60c4 str r4, [r0, #12] - 800743c: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 - 8007440: f8d8 4008 ldr.w r4, [r8, #8] - 8007444: b94c cbnz r4, 800745a <__pow5mult+0x66> - 8007446: f240 2171 movw r1, #625 ; 0x271 - 800744a: 4630 mov r0, r6 - 800744c: f7ff ff18 bl 8007280 <__i2b> - 8007450: 2300 movs r3, #0 - 8007452: 4604 mov r4, r0 - 8007454: f8c8 0008 str.w r0, [r8, #8] - 8007458: 6003 str r3, [r0, #0] - 800745a: f04f 0900 mov.w r9, #0 - 800745e: 07eb lsls r3, r5, #31 - 8007460: d50a bpl.n 8007478 <__pow5mult+0x84> - 8007462: 4639 mov r1, r7 - 8007464: 4622 mov r2, r4 - 8007466: 4630 mov r0, r6 - 8007468: f7ff ff20 bl 80072ac <__multiply> - 800746c: 4680 mov r8, r0 - 800746e: 4639 mov r1, r7 - 8007470: 4630 mov r0, r6 - 8007472: f7ff fe4b bl 800710c <_Bfree> - 8007476: 4647 mov r7, r8 - 8007478: 106d asrs r5, r5, #1 - 800747a: d00b beq.n 8007494 <__pow5mult+0xa0> - 800747c: 6820 ldr r0, [r4, #0] - 800747e: b938 cbnz r0, 8007490 <__pow5mult+0x9c> - 8007480: 4622 mov r2, r4 - 8007482: 4621 mov r1, r4 - 8007484: 4630 mov r0, r6 - 8007486: f7ff ff11 bl 80072ac <__multiply> - 800748a: 6020 str r0, [r4, #0] - 800748c: f8c0 9000 str.w r9, [r0] - 8007490: 4604 mov r4, r0 - 8007492: e7e4 b.n 800745e <__pow5mult+0x6a> - 8007494: 4638 mov r0, r7 - 8007496: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 800749a: bf00 nop - 800749c: 08009378 .word 0x08009378 - 80074a0: 0800919d .word 0x0800919d - 80074a4: 08009224 .word 0x08009224 - -080074a8 <__lshift>: - 80074a8: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 80074ac: 460c mov r4, r1 - 80074ae: 4607 mov r7, r0 - 80074b0: 4691 mov r9, r2 - 80074b2: 6923 ldr r3, [r4, #16] - 80074b4: 6849 ldr r1, [r1, #4] - 80074b6: eb03 1862 add.w r8, r3, r2, asr #5 - 80074ba: 68a3 ldr r3, [r4, #8] - 80074bc: ea4f 1a62 mov.w sl, r2, asr #5 - 80074c0: f108 0601 add.w r6, r8, #1 - 80074c4: 42b3 cmp r3, r6 - 80074c6: db0b blt.n 80074e0 <__lshift+0x38> - 80074c8: 4638 mov r0, r7 - 80074ca: f7ff fddf bl 800708c <_Balloc> - 80074ce: 4605 mov r5, r0 - 80074d0: b948 cbnz r0, 80074e6 <__lshift+0x3e> - 80074d2: 4602 mov r2, r0 - 80074d4: f240 11d9 movw r1, #473 ; 0x1d9 - 80074d8: 4b27 ldr r3, [pc, #156] ; (8007578 <__lshift+0xd0>) - 80074da: 4828 ldr r0, [pc, #160] ; (800757c <__lshift+0xd4>) - 80074dc: f000 fac2 bl 8007a64 <__assert_func> - 80074e0: 3101 adds r1, #1 - 80074e2: 005b lsls r3, r3, #1 - 80074e4: e7ee b.n 80074c4 <__lshift+0x1c> - 80074e6: 2300 movs r3, #0 - 80074e8: f100 0114 add.w r1, r0, #20 - 80074ec: f100 0210 add.w r2, r0, #16 - 80074f0: 4618 mov r0, r3 - 80074f2: 4553 cmp r3, sl - 80074f4: db33 blt.n 800755e <__lshift+0xb6> - 80074f6: 6920 ldr r0, [r4, #16] - 80074f8: ea2a 7aea bic.w sl, sl, sl, asr #31 - 80074fc: f104 0314 add.w r3, r4, #20 - 8007500: f019 091f ands.w r9, r9, #31 - 8007504: eb01 018a add.w r1, r1, sl, lsl #2 - 8007508: eb03 0c80 add.w ip, r3, r0, lsl #2 - 800750c: d02b beq.n 8007566 <__lshift+0xbe> - 800750e: 468a mov sl, r1 - 8007510: 2200 movs r2, #0 - 8007512: f1c9 0e20 rsb lr, r9, #32 - 8007516: 6818 ldr r0, [r3, #0] - 8007518: fa00 f009 lsl.w r0, r0, r9 - 800751c: 4302 orrs r2, r0 - 800751e: f84a 2b04 str.w r2, [sl], #4 - 8007522: f853 2b04 ldr.w r2, [r3], #4 - 8007526: 459c cmp ip, r3 - 8007528: fa22 f20e lsr.w r2, r2, lr - 800752c: d8f3 bhi.n 8007516 <__lshift+0x6e> - 800752e: ebac 0304 sub.w r3, ip, r4 - 8007532: 3b15 subs r3, #21 - 8007534: f023 0303 bic.w r3, r3, #3 - 8007538: 3304 adds r3, #4 - 800753a: f104 0015 add.w r0, r4, #21 - 800753e: 4584 cmp ip, r0 - 8007540: bf38 it cc - 8007542: 2304 movcc r3, #4 - 8007544: 50ca str r2, [r1, r3] - 8007546: b10a cbz r2, 800754c <__lshift+0xa4> - 8007548: f108 0602 add.w r6, r8, #2 - 800754c: 3e01 subs r6, #1 - 800754e: 4638 mov r0, r7 - 8007550: 4621 mov r1, r4 - 8007552: 612e str r6, [r5, #16] - 8007554: f7ff fdda bl 800710c <_Bfree> - 8007558: 4628 mov r0, r5 - 800755a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 800755e: f842 0f04 str.w r0, [r2, #4]! - 8007562: 3301 adds r3, #1 - 8007564: e7c5 b.n 80074f2 <__lshift+0x4a> - 8007566: 3904 subs r1, #4 - 8007568: f853 2b04 ldr.w r2, [r3], #4 - 800756c: 459c cmp ip, r3 - 800756e: f841 2f04 str.w r2, [r1, #4]! - 8007572: d8f9 bhi.n 8007568 <__lshift+0xc0> - 8007574: e7ea b.n 800754c <__lshift+0xa4> - 8007576: bf00 nop - 8007578: 08009213 .word 0x08009213 - 800757c: 08009224 .word 0x08009224 - -08007580 <__mcmp>: - 8007580: 4603 mov r3, r0 +0800757c <__multiply>: + 800757c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007580: 4614 mov r4, r2 8007582: 690a ldr r2, [r1, #16] - 8007584: 6900 ldr r0, [r0, #16] - 8007586: b530 push {r4, r5, lr} - 8007588: 1a80 subs r0, r0, r2 - 800758a: d10d bne.n 80075a8 <__mcmp+0x28> - 800758c: 3314 adds r3, #20 - 800758e: 3114 adds r1, #20 - 8007590: eb03 0482 add.w r4, r3, r2, lsl #2 - 8007594: eb01 0182 add.w r1, r1, r2, lsl #2 - 8007598: f854 5d04 ldr.w r5, [r4, #-4]! - 800759c: f851 2d04 ldr.w r2, [r1, #-4]! - 80075a0: 4295 cmp r5, r2 - 80075a2: d002 beq.n 80075aa <__mcmp+0x2a> - 80075a4: d304 bcc.n 80075b0 <__mcmp+0x30> - 80075a6: 2001 movs r0, #1 - 80075a8: bd30 pop {r4, r5, pc} - 80075aa: 42a3 cmp r3, r4 - 80075ac: d3f4 bcc.n 8007598 <__mcmp+0x18> - 80075ae: e7fb b.n 80075a8 <__mcmp+0x28> - 80075b0: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80075b4: e7f8 b.n 80075a8 <__mcmp+0x28> + 8007584: 6923 ldr r3, [r4, #16] + 8007586: 460d mov r5, r1 + 8007588: 429a cmp r2, r3 + 800758a: bfbe ittt lt + 800758c: 460b movlt r3, r1 + 800758e: 4625 movlt r5, r4 + 8007590: 461c movlt r4, r3 + 8007592: f8d5 a010 ldr.w sl, [r5, #16] + 8007596: f8d4 9010 ldr.w r9, [r4, #16] + 800759a: 68ab ldr r3, [r5, #8] + 800759c: 6869 ldr r1, [r5, #4] + 800759e: eb0a 0709 add.w r7, sl, r9 + 80075a2: 42bb cmp r3, r7 + 80075a4: b085 sub sp, #20 + 80075a6: bfb8 it lt + 80075a8: 3101 addlt r1, #1 + 80075aa: f7ff fed7 bl 800735c <_Balloc> + 80075ae: b930 cbnz r0, 80075be <__multiply+0x42> + 80075b0: 4602 mov r2, r0 + 80075b2: f240 115d movw r1, #349 ; 0x15d + 80075b6: 4b41 ldr r3, [pc, #260] ; (80076bc <__multiply+0x140>) + 80075b8: 4841 ldr r0, [pc, #260] ; (80076c0 <__multiply+0x144>) + 80075ba: f000 fbbb bl 8007d34 <__assert_func> + 80075be: f100 0614 add.w r6, r0, #20 + 80075c2: 4633 mov r3, r6 + 80075c4: 2200 movs r2, #0 + 80075c6: eb06 0887 add.w r8, r6, r7, lsl #2 + 80075ca: 4543 cmp r3, r8 + 80075cc: d31e bcc.n 800760c <__multiply+0x90> + 80075ce: f105 0c14 add.w ip, r5, #20 + 80075d2: f104 0314 add.w r3, r4, #20 + 80075d6: eb0c 0c8a add.w ip, ip, sl, lsl #2 + 80075da: eb03 0289 add.w r2, r3, r9, lsl #2 + 80075de: 9202 str r2, [sp, #8] + 80075e0: ebac 0205 sub.w r2, ip, r5 + 80075e4: 3a15 subs r2, #21 + 80075e6: f022 0203 bic.w r2, r2, #3 + 80075ea: 3204 adds r2, #4 + 80075ec: f105 0115 add.w r1, r5, #21 + 80075f0: 458c cmp ip, r1 + 80075f2: bf38 it cc + 80075f4: 2204 movcc r2, #4 + 80075f6: 9201 str r2, [sp, #4] + 80075f8: 9a02 ldr r2, [sp, #8] + 80075fa: 9303 str r3, [sp, #12] + 80075fc: 429a cmp r2, r3 + 80075fe: d808 bhi.n 8007612 <__multiply+0x96> + 8007600: 2f00 cmp r7, #0 + 8007602: dc55 bgt.n 80076b0 <__multiply+0x134> + 8007604: 6107 str r7, [r0, #16] + 8007606: b005 add sp, #20 + 8007608: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 800760c: f843 2b04 str.w r2, [r3], #4 + 8007610: e7db b.n 80075ca <__multiply+0x4e> + 8007612: f8b3 a000 ldrh.w sl, [r3] + 8007616: f1ba 0f00 cmp.w sl, #0 + 800761a: d020 beq.n 800765e <__multiply+0xe2> + 800761c: 46b1 mov r9, r6 + 800761e: 2200 movs r2, #0 + 8007620: f105 0e14 add.w lr, r5, #20 + 8007624: f85e 4b04 ldr.w r4, [lr], #4 + 8007628: f8d9 b000 ldr.w fp, [r9] + 800762c: b2a1 uxth r1, r4 + 800762e: fa1f fb8b uxth.w fp, fp + 8007632: fb0a b101 mla r1, sl, r1, fp + 8007636: 4411 add r1, r2 + 8007638: f8d9 2000 ldr.w r2, [r9] + 800763c: 0c24 lsrs r4, r4, #16 + 800763e: 0c12 lsrs r2, r2, #16 + 8007640: fb0a 2404 mla r4, sl, r4, r2 + 8007644: eb04 4411 add.w r4, r4, r1, lsr #16 + 8007648: b289 uxth r1, r1 + 800764a: ea41 4104 orr.w r1, r1, r4, lsl #16 + 800764e: 45f4 cmp ip, lr + 8007650: ea4f 4214 mov.w r2, r4, lsr #16 + 8007654: f849 1b04 str.w r1, [r9], #4 + 8007658: d8e4 bhi.n 8007624 <__multiply+0xa8> + 800765a: 9901 ldr r1, [sp, #4] + 800765c: 5072 str r2, [r6, r1] + 800765e: 9a03 ldr r2, [sp, #12] + 8007660: 3304 adds r3, #4 + 8007662: f8b2 9002 ldrh.w r9, [r2, #2] + 8007666: f1b9 0f00 cmp.w r9, #0 + 800766a: d01f beq.n 80076ac <__multiply+0x130> + 800766c: 46b6 mov lr, r6 + 800766e: f04f 0a00 mov.w sl, #0 + 8007672: 6834 ldr r4, [r6, #0] + 8007674: f105 0114 add.w r1, r5, #20 + 8007678: 880a ldrh r2, [r1, #0] + 800767a: f8be b002 ldrh.w fp, [lr, #2] + 800767e: b2a4 uxth r4, r4 + 8007680: fb09 b202 mla r2, r9, r2, fp + 8007684: 4492 add sl, r2 + 8007686: ea44 440a orr.w r4, r4, sl, lsl #16 + 800768a: f84e 4b04 str.w r4, [lr], #4 + 800768e: f851 4b04 ldr.w r4, [r1], #4 + 8007692: f8be 2000 ldrh.w r2, [lr] + 8007696: 0c24 lsrs r4, r4, #16 + 8007698: fb09 2404 mla r4, r9, r4, r2 + 800769c: 458c cmp ip, r1 + 800769e: eb04 441a add.w r4, r4, sl, lsr #16 + 80076a2: ea4f 4a14 mov.w sl, r4, lsr #16 + 80076a6: d8e7 bhi.n 8007678 <__multiply+0xfc> + 80076a8: 9a01 ldr r2, [sp, #4] + 80076aa: 50b4 str r4, [r6, r2] + 80076ac: 3604 adds r6, #4 + 80076ae: e7a3 b.n 80075f8 <__multiply+0x7c> + 80076b0: f858 3d04 ldr.w r3, [r8, #-4]! + 80076b4: 2b00 cmp r3, #0 + 80076b6: d1a5 bne.n 8007604 <__multiply+0x88> + 80076b8: 3f01 subs r7, #1 + 80076ba: e7a1 b.n 8007600 <__multiply+0x84> + 80076bc: 08009503 .word 0x08009503 + 80076c0: 08009514 .word 0x08009514 + +080076c4 <__pow5mult>: + 80076c4: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 80076c8: 4615 mov r5, r2 + 80076ca: f012 0203 ands.w r2, r2, #3 + 80076ce: 4606 mov r6, r0 + 80076d0: 460f mov r7, r1 + 80076d2: d007 beq.n 80076e4 <__pow5mult+0x20> + 80076d4: 4c25 ldr r4, [pc, #148] ; (800776c <__pow5mult+0xa8>) + 80076d6: 3a01 subs r2, #1 + 80076d8: 2300 movs r3, #0 + 80076da: f854 2022 ldr.w r2, [r4, r2, lsl #2] + 80076de: f7ff fe9f bl 8007420 <__multadd> + 80076e2: 4607 mov r7, r0 + 80076e4: 10ad asrs r5, r5, #2 + 80076e6: d03d beq.n 8007764 <__pow5mult+0xa0> + 80076e8: 6a74 ldr r4, [r6, #36] ; 0x24 + 80076ea: b97c cbnz r4, 800770c <__pow5mult+0x48> + 80076ec: 2010 movs r0, #16 + 80076ee: f7fe fa3f bl 8005b70 + 80076f2: 4602 mov r2, r0 + 80076f4: 6270 str r0, [r6, #36] ; 0x24 + 80076f6: b928 cbnz r0, 8007704 <__pow5mult+0x40> + 80076f8: f44f 71d7 mov.w r1, #430 ; 0x1ae + 80076fc: 4b1c ldr r3, [pc, #112] ; (8007770 <__pow5mult+0xac>) + 80076fe: 481d ldr r0, [pc, #116] ; (8007774 <__pow5mult+0xb0>) + 8007700: f000 fb18 bl 8007d34 <__assert_func> + 8007704: e9c0 4401 strd r4, r4, [r0, #4] + 8007708: 6004 str r4, [r0, #0] + 800770a: 60c4 str r4, [r0, #12] + 800770c: f8d6 8024 ldr.w r8, [r6, #36] ; 0x24 + 8007710: f8d8 4008 ldr.w r4, [r8, #8] + 8007714: b94c cbnz r4, 800772a <__pow5mult+0x66> + 8007716: f240 2171 movw r1, #625 ; 0x271 + 800771a: 4630 mov r0, r6 + 800771c: f7ff ff18 bl 8007550 <__i2b> + 8007720: 2300 movs r3, #0 + 8007722: 4604 mov r4, r0 + 8007724: f8c8 0008 str.w r0, [r8, #8] + 8007728: 6003 str r3, [r0, #0] + 800772a: f04f 0900 mov.w r9, #0 + 800772e: 07eb lsls r3, r5, #31 + 8007730: d50a bpl.n 8007748 <__pow5mult+0x84> + 8007732: 4639 mov r1, r7 + 8007734: 4622 mov r2, r4 + 8007736: 4630 mov r0, r6 + 8007738: f7ff ff20 bl 800757c <__multiply> + 800773c: 4680 mov r8, r0 + 800773e: 4639 mov r1, r7 + 8007740: 4630 mov r0, r6 + 8007742: f7ff fe4b bl 80073dc <_Bfree> + 8007746: 4647 mov r7, r8 + 8007748: 106d asrs r5, r5, #1 + 800774a: d00b beq.n 8007764 <__pow5mult+0xa0> + 800774c: 6820 ldr r0, [r4, #0] + 800774e: b938 cbnz r0, 8007760 <__pow5mult+0x9c> + 8007750: 4622 mov r2, r4 + 8007752: 4621 mov r1, r4 + 8007754: 4630 mov r0, r6 + 8007756: f7ff ff11 bl 800757c <__multiply> + 800775a: 6020 str r0, [r4, #0] + 800775c: f8c0 9000 str.w r9, [r0] + 8007760: 4604 mov r4, r0 + 8007762: e7e4 b.n 800772e <__pow5mult+0x6a> + 8007764: 4638 mov r0, r7 + 8007766: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 800776a: bf00 nop + 800776c: 08009668 .word 0x08009668 + 8007770: 0800948d .word 0x0800948d + 8007774: 08009514 .word 0x08009514 + +08007778 <__lshift>: + 8007778: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 800777c: 460c mov r4, r1 + 800777e: 4607 mov r7, r0 + 8007780: 4691 mov r9, r2 + 8007782: 6923 ldr r3, [r4, #16] + 8007784: 6849 ldr r1, [r1, #4] + 8007786: eb03 1862 add.w r8, r3, r2, asr #5 + 800778a: 68a3 ldr r3, [r4, #8] + 800778c: ea4f 1a62 mov.w sl, r2, asr #5 + 8007790: f108 0601 add.w r6, r8, #1 + 8007794: 42b3 cmp r3, r6 + 8007796: db0b blt.n 80077b0 <__lshift+0x38> + 8007798: 4638 mov r0, r7 + 800779a: f7ff fddf bl 800735c <_Balloc> + 800779e: 4605 mov r5, r0 + 80077a0: b948 cbnz r0, 80077b6 <__lshift+0x3e> + 80077a2: 4602 mov r2, r0 + 80077a4: f240 11d9 movw r1, #473 ; 0x1d9 + 80077a8: 4b27 ldr r3, [pc, #156] ; (8007848 <__lshift+0xd0>) + 80077aa: 4828 ldr r0, [pc, #160] ; (800784c <__lshift+0xd4>) + 80077ac: f000 fac2 bl 8007d34 <__assert_func> + 80077b0: 3101 adds r1, #1 + 80077b2: 005b lsls r3, r3, #1 + 80077b4: e7ee b.n 8007794 <__lshift+0x1c> + 80077b6: 2300 movs r3, #0 + 80077b8: f100 0114 add.w r1, r0, #20 + 80077bc: f100 0210 add.w r2, r0, #16 + 80077c0: 4618 mov r0, r3 + 80077c2: 4553 cmp r3, sl + 80077c4: db33 blt.n 800782e <__lshift+0xb6> + 80077c6: 6920 ldr r0, [r4, #16] + 80077c8: ea2a 7aea bic.w sl, sl, sl, asr #31 + 80077cc: f104 0314 add.w r3, r4, #20 + 80077d0: f019 091f ands.w r9, r9, #31 + 80077d4: eb01 018a add.w r1, r1, sl, lsl #2 + 80077d8: eb03 0c80 add.w ip, r3, r0, lsl #2 + 80077dc: d02b beq.n 8007836 <__lshift+0xbe> + 80077de: 468a mov sl, r1 + 80077e0: 2200 movs r2, #0 + 80077e2: f1c9 0e20 rsb lr, r9, #32 + 80077e6: 6818 ldr r0, [r3, #0] + 80077e8: fa00 f009 lsl.w r0, r0, r9 + 80077ec: 4302 orrs r2, r0 + 80077ee: f84a 2b04 str.w r2, [sl], #4 + 80077f2: f853 2b04 ldr.w r2, [r3], #4 + 80077f6: 459c cmp ip, r3 + 80077f8: fa22 f20e lsr.w r2, r2, lr + 80077fc: d8f3 bhi.n 80077e6 <__lshift+0x6e> + 80077fe: ebac 0304 sub.w r3, ip, r4 + 8007802: 3b15 subs r3, #21 + 8007804: f023 0303 bic.w r3, r3, #3 + 8007808: 3304 adds r3, #4 + 800780a: f104 0015 add.w r0, r4, #21 + 800780e: 4584 cmp ip, r0 + 8007810: bf38 it cc + 8007812: 2304 movcc r3, #4 + 8007814: 50ca str r2, [r1, r3] + 8007816: b10a cbz r2, 800781c <__lshift+0xa4> + 8007818: f108 0602 add.w r6, r8, #2 + 800781c: 3e01 subs r6, #1 + 800781e: 4638 mov r0, r7 + 8007820: 4621 mov r1, r4 + 8007822: 612e str r6, [r5, #16] + 8007824: f7ff fdda bl 80073dc <_Bfree> + 8007828: 4628 mov r0, r5 + 800782a: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 800782e: f842 0f04 str.w r0, [r2, #4]! + 8007832: 3301 adds r3, #1 + 8007834: e7c5 b.n 80077c2 <__lshift+0x4a> + 8007836: 3904 subs r1, #4 + 8007838: f853 2b04 ldr.w r2, [r3], #4 + 800783c: 459c cmp ip, r3 + 800783e: f841 2f04 str.w r2, [r1, #4]! + 8007842: d8f9 bhi.n 8007838 <__lshift+0xc0> + 8007844: e7ea b.n 800781c <__lshift+0xa4> + 8007846: bf00 nop + 8007848: 08009503 .word 0x08009503 + 800784c: 08009514 .word 0x08009514 + +08007850 <__mcmp>: + 8007850: 4603 mov r3, r0 + 8007852: 690a ldr r2, [r1, #16] + 8007854: 6900 ldr r0, [r0, #16] + 8007856: b530 push {r4, r5, lr} + 8007858: 1a80 subs r0, r0, r2 + 800785a: d10d bne.n 8007878 <__mcmp+0x28> + 800785c: 3314 adds r3, #20 + 800785e: 3114 adds r1, #20 + 8007860: eb03 0482 add.w r4, r3, r2, lsl #2 + 8007864: eb01 0182 add.w r1, r1, r2, lsl #2 + 8007868: f854 5d04 ldr.w r5, [r4, #-4]! + 800786c: f851 2d04 ldr.w r2, [r1, #-4]! + 8007870: 4295 cmp r5, r2 + 8007872: d002 beq.n 800787a <__mcmp+0x2a> + 8007874: d304 bcc.n 8007880 <__mcmp+0x30> + 8007876: 2001 movs r0, #1 + 8007878: bd30 pop {r4, r5, pc} + 800787a: 42a3 cmp r3, r4 + 800787c: d3f4 bcc.n 8007868 <__mcmp+0x18> + 800787e: e7fb b.n 8007878 <__mcmp+0x28> + 8007880: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007884: e7f8 b.n 8007878 <__mcmp+0x28> ... -080075b8 <__mdiff>: - 80075b8: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} - 80075bc: 460c mov r4, r1 - 80075be: 4606 mov r6, r0 - 80075c0: 4611 mov r1, r2 - 80075c2: 4620 mov r0, r4 - 80075c4: 4692 mov sl, r2 - 80075c6: f7ff ffdb bl 8007580 <__mcmp> - 80075ca: 1e05 subs r5, r0, #0 - 80075cc: d111 bne.n 80075f2 <__mdiff+0x3a> - 80075ce: 4629 mov r1, r5 - 80075d0: 4630 mov r0, r6 - 80075d2: f7ff fd5b bl 800708c <_Balloc> - 80075d6: 4602 mov r2, r0 - 80075d8: b928 cbnz r0, 80075e6 <__mdiff+0x2e> - 80075da: f240 2132 movw r1, #562 ; 0x232 - 80075de: 4b3c ldr r3, [pc, #240] ; (80076d0 <__mdiff+0x118>) - 80075e0: 483c ldr r0, [pc, #240] ; (80076d4 <__mdiff+0x11c>) - 80075e2: f000 fa3f bl 8007a64 <__assert_func> - 80075e6: 2301 movs r3, #1 - 80075e8: e9c0 3504 strd r3, r5, [r0, #16] - 80075ec: 4610 mov r0, r2 - 80075ee: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} - 80075f2: bfa4 itt ge - 80075f4: 4653 movge r3, sl - 80075f6: 46a2 movge sl, r4 - 80075f8: 4630 mov r0, r6 - 80075fa: f8da 1004 ldr.w r1, [sl, #4] - 80075fe: bfa6 itte ge - 8007600: 461c movge r4, r3 - 8007602: 2500 movge r5, #0 - 8007604: 2501 movlt r5, #1 - 8007606: f7ff fd41 bl 800708c <_Balloc> - 800760a: 4602 mov r2, r0 - 800760c: b918 cbnz r0, 8007616 <__mdiff+0x5e> - 800760e: f44f 7110 mov.w r1, #576 ; 0x240 - 8007612: 4b2f ldr r3, [pc, #188] ; (80076d0 <__mdiff+0x118>) - 8007614: e7e4 b.n 80075e0 <__mdiff+0x28> - 8007616: f100 0814 add.w r8, r0, #20 - 800761a: f8da 7010 ldr.w r7, [sl, #16] - 800761e: 60c5 str r5, [r0, #12] - 8007620: f04f 0c00 mov.w ip, #0 - 8007624: f10a 0514 add.w r5, sl, #20 - 8007628: f10a 0010 add.w r0, sl, #16 - 800762c: 46c2 mov sl, r8 - 800762e: 6926 ldr r6, [r4, #16] - 8007630: f104 0914 add.w r9, r4, #20 - 8007634: eb05 0e87 add.w lr, r5, r7, lsl #2 - 8007638: eb09 0686 add.w r6, r9, r6, lsl #2 - 800763c: f850 bf04 ldr.w fp, [r0, #4]! - 8007640: f859 3b04 ldr.w r3, [r9], #4 - 8007644: fa1f f18b uxth.w r1, fp - 8007648: 4461 add r1, ip - 800764a: fa1f fc83 uxth.w ip, r3 - 800764e: 0c1b lsrs r3, r3, #16 - 8007650: eba1 010c sub.w r1, r1, ip - 8007654: ebc3 431b rsb r3, r3, fp, lsr #16 - 8007658: eb03 4321 add.w r3, r3, r1, asr #16 - 800765c: b289 uxth r1, r1 - 800765e: ea4f 4c23 mov.w ip, r3, asr #16 - 8007662: 454e cmp r6, r9 - 8007664: ea41 4303 orr.w r3, r1, r3, lsl #16 - 8007668: f84a 3b04 str.w r3, [sl], #4 - 800766c: d8e6 bhi.n 800763c <__mdiff+0x84> - 800766e: 1b33 subs r3, r6, r4 - 8007670: 3b15 subs r3, #21 - 8007672: f023 0303 bic.w r3, r3, #3 - 8007676: 3415 adds r4, #21 - 8007678: 3304 adds r3, #4 - 800767a: 42a6 cmp r6, r4 - 800767c: bf38 it cc - 800767e: 2304 movcc r3, #4 - 8007680: 441d add r5, r3 - 8007682: 4443 add r3, r8 - 8007684: 461e mov r6, r3 - 8007686: 462c mov r4, r5 - 8007688: 4574 cmp r4, lr - 800768a: d30e bcc.n 80076aa <__mdiff+0xf2> - 800768c: f10e 0103 add.w r1, lr, #3 - 8007690: 1b49 subs r1, r1, r5 - 8007692: f021 0103 bic.w r1, r1, #3 - 8007696: 3d03 subs r5, #3 - 8007698: 45ae cmp lr, r5 - 800769a: bf38 it cc - 800769c: 2100 movcc r1, #0 - 800769e: 4419 add r1, r3 - 80076a0: f851 3d04 ldr.w r3, [r1, #-4]! - 80076a4: b18b cbz r3, 80076ca <__mdiff+0x112> - 80076a6: 6117 str r7, [r2, #16] - 80076a8: e7a0 b.n 80075ec <__mdiff+0x34> - 80076aa: f854 8b04 ldr.w r8, [r4], #4 - 80076ae: fa1f f188 uxth.w r1, r8 - 80076b2: 4461 add r1, ip - 80076b4: 1408 asrs r0, r1, #16 - 80076b6: eb00 4018 add.w r0, r0, r8, lsr #16 - 80076ba: b289 uxth r1, r1 - 80076bc: ea41 4100 orr.w r1, r1, r0, lsl #16 - 80076c0: ea4f 4c20 mov.w ip, r0, asr #16 - 80076c4: f846 1b04 str.w r1, [r6], #4 - 80076c8: e7de b.n 8007688 <__mdiff+0xd0> - 80076ca: 3f01 subs r7, #1 - 80076cc: e7e8 b.n 80076a0 <__mdiff+0xe8> - 80076ce: bf00 nop - 80076d0: 08009213 .word 0x08009213 - 80076d4: 08009224 .word 0x08009224 +08007888 <__mdiff>: + 8007888: e92d 4ff8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, lr} + 800788c: 460c mov r4, r1 + 800788e: 4606 mov r6, r0 + 8007890: 4611 mov r1, r2 + 8007892: 4620 mov r0, r4 + 8007894: 4692 mov sl, r2 + 8007896: f7ff ffdb bl 8007850 <__mcmp> + 800789a: 1e05 subs r5, r0, #0 + 800789c: d111 bne.n 80078c2 <__mdiff+0x3a> + 800789e: 4629 mov r1, r5 + 80078a0: 4630 mov r0, r6 + 80078a2: f7ff fd5b bl 800735c <_Balloc> + 80078a6: 4602 mov r2, r0 + 80078a8: b928 cbnz r0, 80078b6 <__mdiff+0x2e> + 80078aa: f240 2132 movw r1, #562 ; 0x232 + 80078ae: 4b3c ldr r3, [pc, #240] ; (80079a0 <__mdiff+0x118>) + 80078b0: 483c ldr r0, [pc, #240] ; (80079a4 <__mdiff+0x11c>) + 80078b2: f000 fa3f bl 8007d34 <__assert_func> + 80078b6: 2301 movs r3, #1 + 80078b8: e9c0 3504 strd r3, r5, [r0, #16] + 80078bc: 4610 mov r0, r2 + 80078be: e8bd 8ff8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, sl, fp, pc} + 80078c2: bfa4 itt ge + 80078c4: 4653 movge r3, sl + 80078c6: 46a2 movge sl, r4 + 80078c8: 4630 mov r0, r6 + 80078ca: f8da 1004 ldr.w r1, [sl, #4] + 80078ce: bfa6 itte ge + 80078d0: 461c movge r4, r3 + 80078d2: 2500 movge r5, #0 + 80078d4: 2501 movlt r5, #1 + 80078d6: f7ff fd41 bl 800735c <_Balloc> + 80078da: 4602 mov r2, r0 + 80078dc: b918 cbnz r0, 80078e6 <__mdiff+0x5e> + 80078de: f44f 7110 mov.w r1, #576 ; 0x240 + 80078e2: 4b2f ldr r3, [pc, #188] ; (80079a0 <__mdiff+0x118>) + 80078e4: e7e4 b.n 80078b0 <__mdiff+0x28> + 80078e6: f100 0814 add.w r8, r0, #20 + 80078ea: f8da 7010 ldr.w r7, [sl, #16] + 80078ee: 60c5 str r5, [r0, #12] + 80078f0: f04f 0c00 mov.w ip, #0 + 80078f4: f10a 0514 add.w r5, sl, #20 + 80078f8: f10a 0010 add.w r0, sl, #16 + 80078fc: 46c2 mov sl, r8 + 80078fe: 6926 ldr r6, [r4, #16] + 8007900: f104 0914 add.w r9, r4, #20 + 8007904: eb05 0e87 add.w lr, r5, r7, lsl #2 + 8007908: eb09 0686 add.w r6, r9, r6, lsl #2 + 800790c: f850 bf04 ldr.w fp, [r0, #4]! + 8007910: f859 3b04 ldr.w r3, [r9], #4 + 8007914: fa1f f18b uxth.w r1, fp + 8007918: 4461 add r1, ip + 800791a: fa1f fc83 uxth.w ip, r3 + 800791e: 0c1b lsrs r3, r3, #16 + 8007920: eba1 010c sub.w r1, r1, ip + 8007924: ebc3 431b rsb r3, r3, fp, lsr #16 + 8007928: eb03 4321 add.w r3, r3, r1, asr #16 + 800792c: b289 uxth r1, r1 + 800792e: ea4f 4c23 mov.w ip, r3, asr #16 + 8007932: 454e cmp r6, r9 + 8007934: ea41 4303 orr.w r3, r1, r3, lsl #16 + 8007938: f84a 3b04 str.w r3, [sl], #4 + 800793c: d8e6 bhi.n 800790c <__mdiff+0x84> + 800793e: 1b33 subs r3, r6, r4 + 8007940: 3b15 subs r3, #21 + 8007942: f023 0303 bic.w r3, r3, #3 + 8007946: 3415 adds r4, #21 + 8007948: 3304 adds r3, #4 + 800794a: 42a6 cmp r6, r4 + 800794c: bf38 it cc + 800794e: 2304 movcc r3, #4 + 8007950: 441d add r5, r3 + 8007952: 4443 add r3, r8 + 8007954: 461e mov r6, r3 + 8007956: 462c mov r4, r5 + 8007958: 4574 cmp r4, lr + 800795a: d30e bcc.n 800797a <__mdiff+0xf2> + 800795c: f10e 0103 add.w r1, lr, #3 + 8007960: 1b49 subs r1, r1, r5 + 8007962: f021 0103 bic.w r1, r1, #3 + 8007966: 3d03 subs r5, #3 + 8007968: 45ae cmp lr, r5 + 800796a: bf38 it cc + 800796c: 2100 movcc r1, #0 + 800796e: 4419 add r1, r3 + 8007970: f851 3d04 ldr.w r3, [r1, #-4]! + 8007974: b18b cbz r3, 800799a <__mdiff+0x112> + 8007976: 6117 str r7, [r2, #16] + 8007978: e7a0 b.n 80078bc <__mdiff+0x34> + 800797a: f854 8b04 ldr.w r8, [r4], #4 + 800797e: fa1f f188 uxth.w r1, r8 + 8007982: 4461 add r1, ip + 8007984: 1408 asrs r0, r1, #16 + 8007986: eb00 4018 add.w r0, r0, r8, lsr #16 + 800798a: b289 uxth r1, r1 + 800798c: ea41 4100 orr.w r1, r1, r0, lsl #16 + 8007990: ea4f 4c20 mov.w ip, r0, asr #16 + 8007994: f846 1b04 str.w r1, [r6], #4 + 8007998: e7de b.n 8007958 <__mdiff+0xd0> + 800799a: 3f01 subs r7, #1 + 800799c: e7e8 b.n 8007970 <__mdiff+0xe8> + 800799e: bf00 nop + 80079a0: 08009503 .word 0x08009503 + 80079a4: 08009514 .word 0x08009514 -080076d8 <__d2b>: - 80076d8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} - 80076dc: 2101 movs r1, #1 - 80076de: e9dd 7608 ldrd r7, r6, [sp, #32] - 80076e2: 4690 mov r8, r2 - 80076e4: 461d mov r5, r3 - 80076e6: f7ff fcd1 bl 800708c <_Balloc> - 80076ea: 4604 mov r4, r0 - 80076ec: b930 cbnz r0, 80076fc <__d2b+0x24> - 80076ee: 4602 mov r2, r0 - 80076f0: f240 310a movw r1, #778 ; 0x30a - 80076f4: 4b24 ldr r3, [pc, #144] ; (8007788 <__d2b+0xb0>) - 80076f6: 4825 ldr r0, [pc, #148] ; (800778c <__d2b+0xb4>) - 80076f8: f000 f9b4 bl 8007a64 <__assert_func> - 80076fc: f3c5 0313 ubfx r3, r5, #0, #20 - 8007700: f3c5 550a ubfx r5, r5, #20, #11 - 8007704: bb2d cbnz r5, 8007752 <__d2b+0x7a> - 8007706: 9301 str r3, [sp, #4] - 8007708: f1b8 0300 subs.w r3, r8, #0 - 800770c: d026 beq.n 800775c <__d2b+0x84> - 800770e: 4668 mov r0, sp - 8007710: 9300 str r3, [sp, #0] - 8007712: f7ff fd87 bl 8007224 <__lo0bits> - 8007716: 9900 ldr r1, [sp, #0] - 8007718: b1f0 cbz r0, 8007758 <__d2b+0x80> - 800771a: 9a01 ldr r2, [sp, #4] - 800771c: f1c0 0320 rsb r3, r0, #32 - 8007720: fa02 f303 lsl.w r3, r2, r3 - 8007724: 430b orrs r3, r1 - 8007726: 40c2 lsrs r2, r0 - 8007728: 6163 str r3, [r4, #20] - 800772a: 9201 str r2, [sp, #4] - 800772c: 9b01 ldr r3, [sp, #4] - 800772e: 2b00 cmp r3, #0 - 8007730: bf14 ite ne - 8007732: 2102 movne r1, #2 - 8007734: 2101 moveq r1, #1 - 8007736: 61a3 str r3, [r4, #24] - 8007738: 6121 str r1, [r4, #16] - 800773a: b1c5 cbz r5, 800776e <__d2b+0x96> - 800773c: f2a5 4533 subw r5, r5, #1075 ; 0x433 - 8007740: 4405 add r5, r0 - 8007742: f1c0 0035 rsb r0, r0, #53 ; 0x35 - 8007746: 603d str r5, [r7, #0] - 8007748: 6030 str r0, [r6, #0] - 800774a: 4620 mov r0, r4 - 800774c: b002 add sp, #8 - 800774e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8007752: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 - 8007756: e7d6 b.n 8007706 <__d2b+0x2e> - 8007758: 6161 str r1, [r4, #20] - 800775a: e7e7 b.n 800772c <__d2b+0x54> - 800775c: a801 add r0, sp, #4 - 800775e: f7ff fd61 bl 8007224 <__lo0bits> - 8007762: 2101 movs r1, #1 - 8007764: 9b01 ldr r3, [sp, #4] - 8007766: 6121 str r1, [r4, #16] - 8007768: 6163 str r3, [r4, #20] - 800776a: 3020 adds r0, #32 - 800776c: e7e5 b.n 800773a <__d2b+0x62> - 800776e: eb04 0381 add.w r3, r4, r1, lsl #2 - 8007772: f2a0 4032 subw r0, r0, #1074 ; 0x432 - 8007776: 6038 str r0, [r7, #0] - 8007778: 6918 ldr r0, [r3, #16] - 800777a: f7ff fd33 bl 80071e4 <__hi0bits> - 800777e: ebc0 1141 rsb r1, r0, r1, lsl #5 - 8007782: 6031 str r1, [r6, #0] - 8007784: e7e1 b.n 800774a <__d2b+0x72> - 8007786: bf00 nop - 8007788: 08009213 .word 0x08009213 - 800778c: 08009224 .word 0x08009224 +080079a8 <__d2b>: + 80079a8: e92d 41f3 stmdb sp!, {r0, r1, r4, r5, r6, r7, r8, lr} + 80079ac: 2101 movs r1, #1 + 80079ae: e9dd 7608 ldrd r7, r6, [sp, #32] + 80079b2: 4690 mov r8, r2 + 80079b4: 461d mov r5, r3 + 80079b6: f7ff fcd1 bl 800735c <_Balloc> + 80079ba: 4604 mov r4, r0 + 80079bc: b930 cbnz r0, 80079cc <__d2b+0x24> + 80079be: 4602 mov r2, r0 + 80079c0: f240 310a movw r1, #778 ; 0x30a + 80079c4: 4b24 ldr r3, [pc, #144] ; (8007a58 <__d2b+0xb0>) + 80079c6: 4825 ldr r0, [pc, #148] ; (8007a5c <__d2b+0xb4>) + 80079c8: f000 f9b4 bl 8007d34 <__assert_func> + 80079cc: f3c5 0313 ubfx r3, r5, #0, #20 + 80079d0: f3c5 550a ubfx r5, r5, #20, #11 + 80079d4: bb2d cbnz r5, 8007a22 <__d2b+0x7a> + 80079d6: 9301 str r3, [sp, #4] + 80079d8: f1b8 0300 subs.w r3, r8, #0 + 80079dc: d026 beq.n 8007a2c <__d2b+0x84> + 80079de: 4668 mov r0, sp + 80079e0: 9300 str r3, [sp, #0] + 80079e2: f7ff fd87 bl 80074f4 <__lo0bits> + 80079e6: 9900 ldr r1, [sp, #0] + 80079e8: b1f0 cbz r0, 8007a28 <__d2b+0x80> + 80079ea: 9a01 ldr r2, [sp, #4] + 80079ec: f1c0 0320 rsb r3, r0, #32 + 80079f0: fa02 f303 lsl.w r3, r2, r3 + 80079f4: 430b orrs r3, r1 + 80079f6: 40c2 lsrs r2, r0 + 80079f8: 6163 str r3, [r4, #20] + 80079fa: 9201 str r2, [sp, #4] + 80079fc: 9b01 ldr r3, [sp, #4] + 80079fe: 2b00 cmp r3, #0 + 8007a00: bf14 ite ne + 8007a02: 2102 movne r1, #2 + 8007a04: 2101 moveq r1, #1 + 8007a06: 61a3 str r3, [r4, #24] + 8007a08: 6121 str r1, [r4, #16] + 8007a0a: b1c5 cbz r5, 8007a3e <__d2b+0x96> + 8007a0c: f2a5 4533 subw r5, r5, #1075 ; 0x433 + 8007a10: 4405 add r5, r0 + 8007a12: f1c0 0035 rsb r0, r0, #53 ; 0x35 + 8007a16: 603d str r5, [r7, #0] + 8007a18: 6030 str r0, [r6, #0] + 8007a1a: 4620 mov r0, r4 + 8007a1c: b002 add sp, #8 + 8007a1e: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 8007a22: f443 1380 orr.w r3, r3, #1048576 ; 0x100000 + 8007a26: e7d6 b.n 80079d6 <__d2b+0x2e> + 8007a28: 6161 str r1, [r4, #20] + 8007a2a: e7e7 b.n 80079fc <__d2b+0x54> + 8007a2c: a801 add r0, sp, #4 + 8007a2e: f7ff fd61 bl 80074f4 <__lo0bits> + 8007a32: 2101 movs r1, #1 + 8007a34: 9b01 ldr r3, [sp, #4] + 8007a36: 6121 str r1, [r4, #16] + 8007a38: 6163 str r3, [r4, #20] + 8007a3a: 3020 adds r0, #32 + 8007a3c: e7e5 b.n 8007a0a <__d2b+0x62> + 8007a3e: eb04 0381 add.w r3, r4, r1, lsl #2 + 8007a42: f2a0 4032 subw r0, r0, #1074 ; 0x432 + 8007a46: 6038 str r0, [r7, #0] + 8007a48: 6918 ldr r0, [r3, #16] + 8007a4a: f7ff fd33 bl 80074b4 <__hi0bits> + 8007a4e: ebc0 1141 rsb r1, r0, r1, lsl #5 + 8007a52: 6031 str r1, [r6, #0] + 8007a54: e7e1 b.n 8007a1a <__d2b+0x72> + 8007a56: bf00 nop + 8007a58: 08009503 .word 0x08009503 + 8007a5c: 08009514 .word 0x08009514 -08007790 <_calloc_r>: - 8007790: b538 push {r3, r4, r5, lr} - 8007792: fb02 f501 mul.w r5, r2, r1 - 8007796: 4629 mov r1, r5 - 8007798: f7fe f8e4 bl 8005964 <_malloc_r> - 800779c: 4604 mov r4, r0 - 800779e: b118 cbz r0, 80077a8 <_calloc_r+0x18> - 80077a0: 462a mov r2, r5 - 80077a2: 2100 movs r1, #0 - 80077a4: f7fe f88a bl 80058bc - 80077a8: 4620 mov r0, r4 - 80077aa: bd38 pop {r3, r4, r5, pc} +08007a60 <_calloc_r>: + 8007a60: b538 push {r3, r4, r5, lr} + 8007a62: fb02 f501 mul.w r5, r2, r1 + 8007a66: 4629 mov r1, r5 + 8007a68: f7fe f8e6 bl 8005c38 <_malloc_r> + 8007a6c: 4604 mov r4, r0 + 8007a6e: b118 cbz r0, 8007a78 <_calloc_r+0x18> + 8007a70: 462a mov r2, r5 + 8007a72: 2100 movs r1, #0 + 8007a74: f7fe f88c bl 8005b90 + 8007a78: 4620 mov r0, r4 + 8007a7a: bd38 pop {r3, r4, r5, pc} -080077ac <__ssputs_r>: - 80077ac: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} - 80077b0: 688e ldr r6, [r1, #8] - 80077b2: 4682 mov sl, r0 - 80077b4: 429e cmp r6, r3 - 80077b6: 460c mov r4, r1 - 80077b8: 4690 mov r8, r2 - 80077ba: 461f mov r7, r3 - 80077bc: d838 bhi.n 8007830 <__ssputs_r+0x84> - 80077be: 898a ldrh r2, [r1, #12] - 80077c0: f412 6f90 tst.w r2, #1152 ; 0x480 - 80077c4: d032 beq.n 800782c <__ssputs_r+0x80> - 80077c6: 6825 ldr r5, [r4, #0] - 80077c8: 6909 ldr r1, [r1, #16] - 80077ca: 3301 adds r3, #1 - 80077cc: eba5 0901 sub.w r9, r5, r1 - 80077d0: 6965 ldr r5, [r4, #20] - 80077d2: 444b add r3, r9 - 80077d4: eb05 0545 add.w r5, r5, r5, lsl #1 - 80077d8: eb05 75d5 add.w r5, r5, r5, lsr #31 - 80077dc: 106d asrs r5, r5, #1 - 80077de: 429d cmp r5, r3 - 80077e0: bf38 it cc - 80077e2: 461d movcc r5, r3 - 80077e4: 0553 lsls r3, r2, #21 - 80077e6: d531 bpl.n 800784c <__ssputs_r+0xa0> - 80077e8: 4629 mov r1, r5 - 80077ea: f7fe f8bb bl 8005964 <_malloc_r> - 80077ee: 4606 mov r6, r0 - 80077f0: b950 cbnz r0, 8007808 <__ssputs_r+0x5c> - 80077f2: 230c movs r3, #12 - 80077f4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80077f8: f8ca 3000 str.w r3, [sl] - 80077fc: 89a3 ldrh r3, [r4, #12] - 80077fe: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8007802: 81a3 strh r3, [r4, #12] - 8007804: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} - 8007808: 464a mov r2, r9 - 800780a: 6921 ldr r1, [r4, #16] - 800780c: f7ff fc24 bl 8007058 - 8007810: 89a3 ldrh r3, [r4, #12] - 8007812: f423 6390 bic.w r3, r3, #1152 ; 0x480 - 8007816: f043 0380 orr.w r3, r3, #128 ; 0x80 - 800781a: 81a3 strh r3, [r4, #12] - 800781c: 6126 str r6, [r4, #16] - 800781e: 444e add r6, r9 - 8007820: 6026 str r6, [r4, #0] - 8007822: 463e mov r6, r7 - 8007824: 6165 str r5, [r4, #20] - 8007826: eba5 0509 sub.w r5, r5, r9 - 800782a: 60a5 str r5, [r4, #8] - 800782c: 42be cmp r6, r7 - 800782e: d900 bls.n 8007832 <__ssputs_r+0x86> - 8007830: 463e mov r6, r7 - 8007832: 4632 mov r2, r6 - 8007834: 4641 mov r1, r8 - 8007836: 6820 ldr r0, [r4, #0] - 8007838: f000 f959 bl 8007aee - 800783c: 68a3 ldr r3, [r4, #8] - 800783e: 6822 ldr r2, [r4, #0] - 8007840: 1b9b subs r3, r3, r6 - 8007842: 4432 add r2, r6 - 8007844: 2000 movs r0, #0 - 8007846: 60a3 str r3, [r4, #8] - 8007848: 6022 str r2, [r4, #0] - 800784a: e7db b.n 8007804 <__ssputs_r+0x58> - 800784c: 462a mov r2, r5 - 800784e: f000 f968 bl 8007b22 <_realloc_r> - 8007852: 4606 mov r6, r0 - 8007854: 2800 cmp r0, #0 - 8007856: d1e1 bne.n 800781c <__ssputs_r+0x70> - 8007858: 4650 mov r0, sl - 800785a: 6921 ldr r1, [r4, #16] - 800785c: f7fe f836 bl 80058cc <_free_r> - 8007860: e7c7 b.n 80077f2 <__ssputs_r+0x46> +08007a7c <__ssputs_r>: + 8007a7c: e92d 47f0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, lr} + 8007a80: 688e ldr r6, [r1, #8] + 8007a82: 4682 mov sl, r0 + 8007a84: 429e cmp r6, r3 + 8007a86: 460c mov r4, r1 + 8007a88: 4690 mov r8, r2 + 8007a8a: 461f mov r7, r3 + 8007a8c: d838 bhi.n 8007b00 <__ssputs_r+0x84> + 8007a8e: 898a ldrh r2, [r1, #12] + 8007a90: f412 6f90 tst.w r2, #1152 ; 0x480 + 8007a94: d032 beq.n 8007afc <__ssputs_r+0x80> + 8007a96: 6825 ldr r5, [r4, #0] + 8007a98: 6909 ldr r1, [r1, #16] + 8007a9a: 3301 adds r3, #1 + 8007a9c: eba5 0901 sub.w r9, r5, r1 + 8007aa0: 6965 ldr r5, [r4, #20] + 8007aa2: 444b add r3, r9 + 8007aa4: eb05 0545 add.w r5, r5, r5, lsl #1 + 8007aa8: eb05 75d5 add.w r5, r5, r5, lsr #31 + 8007aac: 106d asrs r5, r5, #1 + 8007aae: 429d cmp r5, r3 + 8007ab0: bf38 it cc + 8007ab2: 461d movcc r5, r3 + 8007ab4: 0553 lsls r3, r2, #21 + 8007ab6: d531 bpl.n 8007b1c <__ssputs_r+0xa0> + 8007ab8: 4629 mov r1, r5 + 8007aba: f7fe f8bd bl 8005c38 <_malloc_r> + 8007abe: 4606 mov r6, r0 + 8007ac0: b950 cbnz r0, 8007ad8 <__ssputs_r+0x5c> + 8007ac2: 230c movs r3, #12 + 8007ac4: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007ac8: f8ca 3000 str.w r3, [sl] + 8007acc: 89a3 ldrh r3, [r4, #12] + 8007ace: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8007ad2: 81a3 strh r3, [r4, #12] + 8007ad4: e8bd 87f0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, pc} + 8007ad8: 464a mov r2, r9 + 8007ada: 6921 ldr r1, [r4, #16] + 8007adc: f7ff fc24 bl 8007328 + 8007ae0: 89a3 ldrh r3, [r4, #12] + 8007ae2: f423 6390 bic.w r3, r3, #1152 ; 0x480 + 8007ae6: f043 0380 orr.w r3, r3, #128 ; 0x80 + 8007aea: 81a3 strh r3, [r4, #12] + 8007aec: 6126 str r6, [r4, #16] + 8007aee: 444e add r6, r9 + 8007af0: 6026 str r6, [r4, #0] + 8007af2: 463e mov r6, r7 + 8007af4: 6165 str r5, [r4, #20] + 8007af6: eba5 0509 sub.w r5, r5, r9 + 8007afa: 60a5 str r5, [r4, #8] + 8007afc: 42be cmp r6, r7 + 8007afe: d900 bls.n 8007b02 <__ssputs_r+0x86> + 8007b00: 463e mov r6, r7 + 8007b02: 4632 mov r2, r6 + 8007b04: 4641 mov r1, r8 + 8007b06: 6820 ldr r0, [r4, #0] + 8007b08: f000 f959 bl 8007dbe + 8007b0c: 68a3 ldr r3, [r4, #8] + 8007b0e: 6822 ldr r2, [r4, #0] + 8007b10: 1b9b subs r3, r3, r6 + 8007b12: 4432 add r2, r6 + 8007b14: 2000 movs r0, #0 + 8007b16: 60a3 str r3, [r4, #8] + 8007b18: 6022 str r2, [r4, #0] + 8007b1a: e7db b.n 8007ad4 <__ssputs_r+0x58> + 8007b1c: 462a mov r2, r5 + 8007b1e: f000 f968 bl 8007df2 <_realloc_r> + 8007b22: 4606 mov r6, r0 + 8007b24: 2800 cmp r0, #0 + 8007b26: d1e1 bne.n 8007aec <__ssputs_r+0x70> + 8007b28: 4650 mov r0, sl + 8007b2a: 6921 ldr r1, [r4, #16] + 8007b2c: f7fe f838 bl 8005ba0 <_free_r> + 8007b30: e7c7 b.n 8007ac2 <__ssputs_r+0x46> ... -08007864 <_svfiprintf_r>: - 8007864: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8007868: 4698 mov r8, r3 - 800786a: 898b ldrh r3, [r1, #12] - 800786c: 4607 mov r7, r0 - 800786e: 061b lsls r3, r3, #24 - 8007870: 460d mov r5, r1 - 8007872: 4614 mov r4, r2 - 8007874: b09d sub sp, #116 ; 0x74 - 8007876: d50e bpl.n 8007896 <_svfiprintf_r+0x32> - 8007878: 690b ldr r3, [r1, #16] - 800787a: b963 cbnz r3, 8007896 <_svfiprintf_r+0x32> - 800787c: 2140 movs r1, #64 ; 0x40 - 800787e: f7fe f871 bl 8005964 <_malloc_r> - 8007882: 6028 str r0, [r5, #0] - 8007884: 6128 str r0, [r5, #16] - 8007886: b920 cbnz r0, 8007892 <_svfiprintf_r+0x2e> - 8007888: 230c movs r3, #12 - 800788a: 603b str r3, [r7, #0] - 800788c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007890: e0d1 b.n 8007a36 <_svfiprintf_r+0x1d2> - 8007892: 2340 movs r3, #64 ; 0x40 - 8007894: 616b str r3, [r5, #20] - 8007896: 2300 movs r3, #0 - 8007898: 9309 str r3, [sp, #36] ; 0x24 - 800789a: 2320 movs r3, #32 - 800789c: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 80078a0: 2330 movs r3, #48 ; 0x30 - 80078a2: f04f 0901 mov.w r9, #1 - 80078a6: f8cd 800c str.w r8, [sp, #12] - 80078aa: f8df 81a4 ldr.w r8, [pc, #420] ; 8007a50 <_svfiprintf_r+0x1ec> - 80078ae: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 80078b2: 4623 mov r3, r4 - 80078b4: 469a mov sl, r3 - 80078b6: f813 2b01 ldrb.w r2, [r3], #1 - 80078ba: b10a cbz r2, 80078c0 <_svfiprintf_r+0x5c> - 80078bc: 2a25 cmp r2, #37 ; 0x25 - 80078be: d1f9 bne.n 80078b4 <_svfiprintf_r+0x50> - 80078c0: ebba 0b04 subs.w fp, sl, r4 - 80078c4: d00b beq.n 80078de <_svfiprintf_r+0x7a> - 80078c6: 465b mov r3, fp - 80078c8: 4622 mov r2, r4 - 80078ca: 4629 mov r1, r5 - 80078cc: 4638 mov r0, r7 - 80078ce: f7ff ff6d bl 80077ac <__ssputs_r> - 80078d2: 3001 adds r0, #1 - 80078d4: f000 80aa beq.w 8007a2c <_svfiprintf_r+0x1c8> - 80078d8: 9a09 ldr r2, [sp, #36] ; 0x24 - 80078da: 445a add r2, fp - 80078dc: 9209 str r2, [sp, #36] ; 0x24 - 80078de: f89a 3000 ldrb.w r3, [sl] - 80078e2: 2b00 cmp r3, #0 - 80078e4: f000 80a2 beq.w 8007a2c <_svfiprintf_r+0x1c8> - 80078e8: 2300 movs r3, #0 - 80078ea: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 80078ee: e9cd 2305 strd r2, r3, [sp, #20] - 80078f2: f10a 0a01 add.w sl, sl, #1 - 80078f6: 9304 str r3, [sp, #16] - 80078f8: 9307 str r3, [sp, #28] - 80078fa: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 80078fe: 931a str r3, [sp, #104] ; 0x68 - 8007900: 4654 mov r4, sl - 8007902: 2205 movs r2, #5 - 8007904: f814 1b01 ldrb.w r1, [r4], #1 - 8007908: 4851 ldr r0, [pc, #324] ; (8007a50 <_svfiprintf_r+0x1ec>) - 800790a: f7ff fb97 bl 800703c - 800790e: 9a04 ldr r2, [sp, #16] - 8007910: b9d8 cbnz r0, 800794a <_svfiprintf_r+0xe6> - 8007912: 06d0 lsls r0, r2, #27 - 8007914: bf44 itt mi - 8007916: 2320 movmi r3, #32 - 8007918: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 800791c: 0711 lsls r1, r2, #28 - 800791e: bf44 itt mi - 8007920: 232b movmi r3, #43 ; 0x2b - 8007922: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8007926: f89a 3000 ldrb.w r3, [sl] - 800792a: 2b2a cmp r3, #42 ; 0x2a - 800792c: d015 beq.n 800795a <_svfiprintf_r+0xf6> - 800792e: 4654 mov r4, sl - 8007930: 2000 movs r0, #0 - 8007932: f04f 0c0a mov.w ip, #10 - 8007936: 9a07 ldr r2, [sp, #28] - 8007938: 4621 mov r1, r4 - 800793a: f811 3b01 ldrb.w r3, [r1], #1 - 800793e: 3b30 subs r3, #48 ; 0x30 - 8007940: 2b09 cmp r3, #9 - 8007942: d94e bls.n 80079e2 <_svfiprintf_r+0x17e> - 8007944: b1b0 cbz r0, 8007974 <_svfiprintf_r+0x110> - 8007946: 9207 str r2, [sp, #28] - 8007948: e014 b.n 8007974 <_svfiprintf_r+0x110> - 800794a: eba0 0308 sub.w r3, r0, r8 - 800794e: fa09 f303 lsl.w r3, r9, r3 - 8007952: 4313 orrs r3, r2 - 8007954: 46a2 mov sl, r4 - 8007956: 9304 str r3, [sp, #16] - 8007958: e7d2 b.n 8007900 <_svfiprintf_r+0x9c> - 800795a: 9b03 ldr r3, [sp, #12] - 800795c: 1d19 adds r1, r3, #4 - 800795e: 681b ldr r3, [r3, #0] - 8007960: 9103 str r1, [sp, #12] - 8007962: 2b00 cmp r3, #0 - 8007964: bfbb ittet lt - 8007966: 425b neglt r3, r3 - 8007968: f042 0202 orrlt.w r2, r2, #2 - 800796c: 9307 strge r3, [sp, #28] - 800796e: 9307 strlt r3, [sp, #28] - 8007970: bfb8 it lt - 8007972: 9204 strlt r2, [sp, #16] - 8007974: 7823 ldrb r3, [r4, #0] - 8007976: 2b2e cmp r3, #46 ; 0x2e - 8007978: d10c bne.n 8007994 <_svfiprintf_r+0x130> - 800797a: 7863 ldrb r3, [r4, #1] - 800797c: 2b2a cmp r3, #42 ; 0x2a - 800797e: d135 bne.n 80079ec <_svfiprintf_r+0x188> - 8007980: 9b03 ldr r3, [sp, #12] - 8007982: 3402 adds r4, #2 - 8007984: 1d1a adds r2, r3, #4 - 8007986: 681b ldr r3, [r3, #0] - 8007988: 9203 str r2, [sp, #12] - 800798a: 2b00 cmp r3, #0 - 800798c: bfb8 it lt - 800798e: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 8007992: 9305 str r3, [sp, #20] - 8007994: f8df a0c8 ldr.w sl, [pc, #200] ; 8007a60 <_svfiprintf_r+0x1fc> - 8007998: 2203 movs r2, #3 - 800799a: 4650 mov r0, sl - 800799c: 7821 ldrb r1, [r4, #0] - 800799e: f7ff fb4d bl 800703c - 80079a2: b140 cbz r0, 80079b6 <_svfiprintf_r+0x152> - 80079a4: 2340 movs r3, #64 ; 0x40 - 80079a6: eba0 000a sub.w r0, r0, sl - 80079aa: fa03 f000 lsl.w r0, r3, r0 - 80079ae: 9b04 ldr r3, [sp, #16] - 80079b0: 3401 adds r4, #1 - 80079b2: 4303 orrs r3, r0 - 80079b4: 9304 str r3, [sp, #16] - 80079b6: f814 1b01 ldrb.w r1, [r4], #1 - 80079ba: 2206 movs r2, #6 - 80079bc: 4825 ldr r0, [pc, #148] ; (8007a54 <_svfiprintf_r+0x1f0>) - 80079be: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 80079c2: f7ff fb3b bl 800703c - 80079c6: 2800 cmp r0, #0 - 80079c8: d038 beq.n 8007a3c <_svfiprintf_r+0x1d8> - 80079ca: 4b23 ldr r3, [pc, #140] ; (8007a58 <_svfiprintf_r+0x1f4>) - 80079cc: bb1b cbnz r3, 8007a16 <_svfiprintf_r+0x1b2> - 80079ce: 9b03 ldr r3, [sp, #12] - 80079d0: 3307 adds r3, #7 - 80079d2: f023 0307 bic.w r3, r3, #7 - 80079d6: 3308 adds r3, #8 - 80079d8: 9303 str r3, [sp, #12] - 80079da: 9b09 ldr r3, [sp, #36] ; 0x24 - 80079dc: 4433 add r3, r6 - 80079de: 9309 str r3, [sp, #36] ; 0x24 - 80079e0: e767 b.n 80078b2 <_svfiprintf_r+0x4e> - 80079e2: 460c mov r4, r1 - 80079e4: 2001 movs r0, #1 - 80079e6: fb0c 3202 mla r2, ip, r2, r3 - 80079ea: e7a5 b.n 8007938 <_svfiprintf_r+0xd4> - 80079ec: 2300 movs r3, #0 - 80079ee: f04f 0c0a mov.w ip, #10 - 80079f2: 4619 mov r1, r3 - 80079f4: 3401 adds r4, #1 - 80079f6: 9305 str r3, [sp, #20] - 80079f8: 4620 mov r0, r4 - 80079fa: f810 2b01 ldrb.w r2, [r0], #1 - 80079fe: 3a30 subs r2, #48 ; 0x30 - 8007a00: 2a09 cmp r2, #9 - 8007a02: d903 bls.n 8007a0c <_svfiprintf_r+0x1a8> - 8007a04: 2b00 cmp r3, #0 - 8007a06: d0c5 beq.n 8007994 <_svfiprintf_r+0x130> - 8007a08: 9105 str r1, [sp, #20] - 8007a0a: e7c3 b.n 8007994 <_svfiprintf_r+0x130> - 8007a0c: 4604 mov r4, r0 - 8007a0e: 2301 movs r3, #1 - 8007a10: fb0c 2101 mla r1, ip, r1, r2 - 8007a14: e7f0 b.n 80079f8 <_svfiprintf_r+0x194> - 8007a16: ab03 add r3, sp, #12 - 8007a18: 9300 str r3, [sp, #0] - 8007a1a: 462a mov r2, r5 - 8007a1c: 4638 mov r0, r7 - 8007a1e: 4b0f ldr r3, [pc, #60] ; (8007a5c <_svfiprintf_r+0x1f8>) - 8007a20: a904 add r1, sp, #16 - 8007a22: f7fe f897 bl 8005b54 <_printf_float> - 8007a26: 1c42 adds r2, r0, #1 - 8007a28: 4606 mov r6, r0 - 8007a2a: d1d6 bne.n 80079da <_svfiprintf_r+0x176> - 8007a2c: 89ab ldrh r3, [r5, #12] - 8007a2e: 065b lsls r3, r3, #25 - 8007a30: f53f af2c bmi.w 800788c <_svfiprintf_r+0x28> - 8007a34: 9809 ldr r0, [sp, #36] ; 0x24 - 8007a36: b01d add sp, #116 ; 0x74 - 8007a38: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8007a3c: ab03 add r3, sp, #12 - 8007a3e: 9300 str r3, [sp, #0] - 8007a40: 462a mov r2, r5 - 8007a42: 4638 mov r0, r7 - 8007a44: 4b05 ldr r3, [pc, #20] ; (8007a5c <_svfiprintf_r+0x1f8>) - 8007a46: a904 add r1, sp, #16 - 8007a48: f7fe fb20 bl 800608c <_printf_i> - 8007a4c: e7eb b.n 8007a26 <_svfiprintf_r+0x1c2> - 8007a4e: bf00 nop - 8007a50: 08009384 .word 0x08009384 - 8007a54: 0800938e .word 0x0800938e - 8007a58: 08005b55 .word 0x08005b55 - 8007a5c: 080077ad .word 0x080077ad - 8007a60: 0800938a .word 0x0800938a +08007b34 <_svfiprintf_r>: + 8007b34: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007b38: 4698 mov r8, r3 + 8007b3a: 898b ldrh r3, [r1, #12] + 8007b3c: 4607 mov r7, r0 + 8007b3e: 061b lsls r3, r3, #24 + 8007b40: 460d mov r5, r1 + 8007b42: 4614 mov r4, r2 + 8007b44: b09d sub sp, #116 ; 0x74 + 8007b46: d50e bpl.n 8007b66 <_svfiprintf_r+0x32> + 8007b48: 690b ldr r3, [r1, #16] + 8007b4a: b963 cbnz r3, 8007b66 <_svfiprintf_r+0x32> + 8007b4c: 2140 movs r1, #64 ; 0x40 + 8007b4e: f7fe f873 bl 8005c38 <_malloc_r> + 8007b52: 6028 str r0, [r5, #0] + 8007b54: 6128 str r0, [r5, #16] + 8007b56: b920 cbnz r0, 8007b62 <_svfiprintf_r+0x2e> + 8007b58: 230c movs r3, #12 + 8007b5a: 603b str r3, [r7, #0] + 8007b5c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007b60: e0d1 b.n 8007d06 <_svfiprintf_r+0x1d2> + 8007b62: 2340 movs r3, #64 ; 0x40 + 8007b64: 616b str r3, [r5, #20] + 8007b66: 2300 movs r3, #0 + 8007b68: 9309 str r3, [sp, #36] ; 0x24 + 8007b6a: 2320 movs r3, #32 + 8007b6c: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 8007b70: 2330 movs r3, #48 ; 0x30 + 8007b72: f04f 0901 mov.w r9, #1 + 8007b76: f8cd 800c str.w r8, [sp, #12] + 8007b7a: f8df 81a4 ldr.w r8, [pc, #420] ; 8007d20 <_svfiprintf_r+0x1ec> + 8007b7e: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 8007b82: 4623 mov r3, r4 + 8007b84: 469a mov sl, r3 + 8007b86: f813 2b01 ldrb.w r2, [r3], #1 + 8007b8a: b10a cbz r2, 8007b90 <_svfiprintf_r+0x5c> + 8007b8c: 2a25 cmp r2, #37 ; 0x25 + 8007b8e: d1f9 bne.n 8007b84 <_svfiprintf_r+0x50> + 8007b90: ebba 0b04 subs.w fp, sl, r4 + 8007b94: d00b beq.n 8007bae <_svfiprintf_r+0x7a> + 8007b96: 465b mov r3, fp + 8007b98: 4622 mov r2, r4 + 8007b9a: 4629 mov r1, r5 + 8007b9c: 4638 mov r0, r7 + 8007b9e: f7ff ff6d bl 8007a7c <__ssputs_r> + 8007ba2: 3001 adds r0, #1 + 8007ba4: f000 80aa beq.w 8007cfc <_svfiprintf_r+0x1c8> + 8007ba8: 9a09 ldr r2, [sp, #36] ; 0x24 + 8007baa: 445a add r2, fp + 8007bac: 9209 str r2, [sp, #36] ; 0x24 + 8007bae: f89a 3000 ldrb.w r3, [sl] + 8007bb2: 2b00 cmp r3, #0 + 8007bb4: f000 80a2 beq.w 8007cfc <_svfiprintf_r+0x1c8> + 8007bb8: 2300 movs r3, #0 + 8007bba: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8007bbe: e9cd 2305 strd r2, r3, [sp, #20] + 8007bc2: f10a 0a01 add.w sl, sl, #1 + 8007bc6: 9304 str r3, [sp, #16] + 8007bc8: 9307 str r3, [sp, #28] + 8007bca: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 8007bce: 931a str r3, [sp, #104] ; 0x68 + 8007bd0: 4654 mov r4, sl + 8007bd2: 2205 movs r2, #5 + 8007bd4: f814 1b01 ldrb.w r1, [r4], #1 + 8007bd8: 4851 ldr r0, [pc, #324] ; (8007d20 <_svfiprintf_r+0x1ec>) + 8007bda: f7ff fb97 bl 800730c + 8007bde: 9a04 ldr r2, [sp, #16] + 8007be0: b9d8 cbnz r0, 8007c1a <_svfiprintf_r+0xe6> + 8007be2: 06d0 lsls r0, r2, #27 + 8007be4: bf44 itt mi + 8007be6: 2320 movmi r3, #32 + 8007be8: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8007bec: 0711 lsls r1, r2, #28 + 8007bee: bf44 itt mi + 8007bf0: 232b movmi r3, #43 ; 0x2b + 8007bf2: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8007bf6: f89a 3000 ldrb.w r3, [sl] + 8007bfa: 2b2a cmp r3, #42 ; 0x2a + 8007bfc: d015 beq.n 8007c2a <_svfiprintf_r+0xf6> + 8007bfe: 4654 mov r4, sl + 8007c00: 2000 movs r0, #0 + 8007c02: f04f 0c0a mov.w ip, #10 + 8007c06: 9a07 ldr r2, [sp, #28] + 8007c08: 4621 mov r1, r4 + 8007c0a: f811 3b01 ldrb.w r3, [r1], #1 + 8007c0e: 3b30 subs r3, #48 ; 0x30 + 8007c10: 2b09 cmp r3, #9 + 8007c12: d94e bls.n 8007cb2 <_svfiprintf_r+0x17e> + 8007c14: b1b0 cbz r0, 8007c44 <_svfiprintf_r+0x110> + 8007c16: 9207 str r2, [sp, #28] + 8007c18: e014 b.n 8007c44 <_svfiprintf_r+0x110> + 8007c1a: eba0 0308 sub.w r3, r0, r8 + 8007c1e: fa09 f303 lsl.w r3, r9, r3 + 8007c22: 4313 orrs r3, r2 + 8007c24: 46a2 mov sl, r4 + 8007c26: 9304 str r3, [sp, #16] + 8007c28: e7d2 b.n 8007bd0 <_svfiprintf_r+0x9c> + 8007c2a: 9b03 ldr r3, [sp, #12] + 8007c2c: 1d19 adds r1, r3, #4 + 8007c2e: 681b ldr r3, [r3, #0] + 8007c30: 9103 str r1, [sp, #12] + 8007c32: 2b00 cmp r3, #0 + 8007c34: bfbb ittet lt + 8007c36: 425b neglt r3, r3 + 8007c38: f042 0202 orrlt.w r2, r2, #2 + 8007c3c: 9307 strge r3, [sp, #28] + 8007c3e: 9307 strlt r3, [sp, #28] + 8007c40: bfb8 it lt + 8007c42: 9204 strlt r2, [sp, #16] + 8007c44: 7823 ldrb r3, [r4, #0] + 8007c46: 2b2e cmp r3, #46 ; 0x2e + 8007c48: d10c bne.n 8007c64 <_svfiprintf_r+0x130> + 8007c4a: 7863 ldrb r3, [r4, #1] + 8007c4c: 2b2a cmp r3, #42 ; 0x2a + 8007c4e: d135 bne.n 8007cbc <_svfiprintf_r+0x188> + 8007c50: 9b03 ldr r3, [sp, #12] + 8007c52: 3402 adds r4, #2 + 8007c54: 1d1a adds r2, r3, #4 + 8007c56: 681b ldr r3, [r3, #0] + 8007c58: 9203 str r2, [sp, #12] + 8007c5a: 2b00 cmp r3, #0 + 8007c5c: bfb8 it lt + 8007c5e: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 8007c62: 9305 str r3, [sp, #20] + 8007c64: f8df a0c8 ldr.w sl, [pc, #200] ; 8007d30 <_svfiprintf_r+0x1fc> + 8007c68: 2203 movs r2, #3 + 8007c6a: 4650 mov r0, sl + 8007c6c: 7821 ldrb r1, [r4, #0] + 8007c6e: f7ff fb4d bl 800730c + 8007c72: b140 cbz r0, 8007c86 <_svfiprintf_r+0x152> + 8007c74: 2340 movs r3, #64 ; 0x40 + 8007c76: eba0 000a sub.w r0, r0, sl + 8007c7a: fa03 f000 lsl.w r0, r3, r0 + 8007c7e: 9b04 ldr r3, [sp, #16] + 8007c80: 3401 adds r4, #1 + 8007c82: 4303 orrs r3, r0 + 8007c84: 9304 str r3, [sp, #16] + 8007c86: f814 1b01 ldrb.w r1, [r4], #1 + 8007c8a: 2206 movs r2, #6 + 8007c8c: 4825 ldr r0, [pc, #148] ; (8007d24 <_svfiprintf_r+0x1f0>) + 8007c8e: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 8007c92: f7ff fb3b bl 800730c + 8007c96: 2800 cmp r0, #0 + 8007c98: d038 beq.n 8007d0c <_svfiprintf_r+0x1d8> + 8007c9a: 4b23 ldr r3, [pc, #140] ; (8007d28 <_svfiprintf_r+0x1f4>) + 8007c9c: bb1b cbnz r3, 8007ce6 <_svfiprintf_r+0x1b2> + 8007c9e: 9b03 ldr r3, [sp, #12] + 8007ca0: 3307 adds r3, #7 + 8007ca2: f023 0307 bic.w r3, r3, #7 + 8007ca6: 3308 adds r3, #8 + 8007ca8: 9303 str r3, [sp, #12] + 8007caa: 9b09 ldr r3, [sp, #36] ; 0x24 + 8007cac: 4433 add r3, r6 + 8007cae: 9309 str r3, [sp, #36] ; 0x24 + 8007cb0: e767 b.n 8007b82 <_svfiprintf_r+0x4e> + 8007cb2: 460c mov r4, r1 + 8007cb4: 2001 movs r0, #1 + 8007cb6: fb0c 3202 mla r2, ip, r2, r3 + 8007cba: e7a5 b.n 8007c08 <_svfiprintf_r+0xd4> + 8007cbc: 2300 movs r3, #0 + 8007cbe: f04f 0c0a mov.w ip, #10 + 8007cc2: 4619 mov r1, r3 + 8007cc4: 3401 adds r4, #1 + 8007cc6: 9305 str r3, [sp, #20] + 8007cc8: 4620 mov r0, r4 + 8007cca: f810 2b01 ldrb.w r2, [r0], #1 + 8007cce: 3a30 subs r2, #48 ; 0x30 + 8007cd0: 2a09 cmp r2, #9 + 8007cd2: d903 bls.n 8007cdc <_svfiprintf_r+0x1a8> + 8007cd4: 2b00 cmp r3, #0 + 8007cd6: d0c5 beq.n 8007c64 <_svfiprintf_r+0x130> + 8007cd8: 9105 str r1, [sp, #20] + 8007cda: e7c3 b.n 8007c64 <_svfiprintf_r+0x130> + 8007cdc: 4604 mov r4, r0 + 8007cde: 2301 movs r3, #1 + 8007ce0: fb0c 2101 mla r1, ip, r1, r2 + 8007ce4: e7f0 b.n 8007cc8 <_svfiprintf_r+0x194> + 8007ce6: ab03 add r3, sp, #12 + 8007ce8: 9300 str r3, [sp, #0] + 8007cea: 462a mov r2, r5 + 8007cec: 4638 mov r0, r7 + 8007cee: 4b0f ldr r3, [pc, #60] ; (8007d2c <_svfiprintf_r+0x1f8>) + 8007cf0: a904 add r1, sp, #16 + 8007cf2: f7fe f899 bl 8005e28 <_printf_float> + 8007cf6: 1c42 adds r2, r0, #1 + 8007cf8: 4606 mov r6, r0 + 8007cfa: d1d6 bne.n 8007caa <_svfiprintf_r+0x176> + 8007cfc: 89ab ldrh r3, [r5, #12] + 8007cfe: 065b lsls r3, r3, #25 + 8007d00: f53f af2c bmi.w 8007b5c <_svfiprintf_r+0x28> + 8007d04: 9809 ldr r0, [sp, #36] ; 0x24 + 8007d06: b01d add sp, #116 ; 0x74 + 8007d08: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007d0c: ab03 add r3, sp, #12 + 8007d0e: 9300 str r3, [sp, #0] + 8007d10: 462a mov r2, r5 + 8007d12: 4638 mov r0, r7 + 8007d14: 4b05 ldr r3, [pc, #20] ; (8007d2c <_svfiprintf_r+0x1f8>) + 8007d16: a904 add r1, sp, #16 + 8007d18: f7fe fb22 bl 8006360 <_printf_i> + 8007d1c: e7eb b.n 8007cf6 <_svfiprintf_r+0x1c2> + 8007d1e: bf00 nop + 8007d20: 08009674 .word 0x08009674 + 8007d24: 0800967e .word 0x0800967e + 8007d28: 08005e29 .word 0x08005e29 + 8007d2c: 08007a7d .word 0x08007a7d + 8007d30: 0800967a .word 0x0800967a -08007a64 <__assert_func>: - 8007a64: b51f push {r0, r1, r2, r3, r4, lr} - 8007a66: 4614 mov r4, r2 - 8007a68: 461a mov r2, r3 - 8007a6a: 4b09 ldr r3, [pc, #36] ; (8007a90 <__assert_func+0x2c>) - 8007a6c: 4605 mov r5, r0 - 8007a6e: 681b ldr r3, [r3, #0] - 8007a70: 68d8 ldr r0, [r3, #12] - 8007a72: b14c cbz r4, 8007a88 <__assert_func+0x24> - 8007a74: 4b07 ldr r3, [pc, #28] ; (8007a94 <__assert_func+0x30>) - 8007a76: e9cd 3401 strd r3, r4, [sp, #4] - 8007a7a: 9100 str r1, [sp, #0] - 8007a7c: 462b mov r3, r5 - 8007a7e: 4906 ldr r1, [pc, #24] ; (8007a98 <__assert_func+0x34>) - 8007a80: f000 f80e bl 8007aa0 - 8007a84: f000 fa98 bl 8007fb8 - 8007a88: 4b04 ldr r3, [pc, #16] ; (8007a9c <__assert_func+0x38>) - 8007a8a: 461c mov r4, r3 - 8007a8c: e7f3 b.n 8007a76 <__assert_func+0x12> - 8007a8e: bf00 nop - 8007a90: 2000000c .word 0x2000000c - 8007a94: 08009395 .word 0x08009395 - 8007a98: 080093a2 .word 0x080093a2 - 8007a9c: 080093d0 .word 0x080093d0 +08007d34 <__assert_func>: + 8007d34: b51f push {r0, r1, r2, r3, r4, lr} + 8007d36: 4614 mov r4, r2 + 8007d38: 461a mov r2, r3 + 8007d3a: 4b09 ldr r3, [pc, #36] ; (8007d60 <__assert_func+0x2c>) + 8007d3c: 4605 mov r5, r0 + 8007d3e: 681b ldr r3, [r3, #0] + 8007d40: 68d8 ldr r0, [r3, #12] + 8007d42: b14c cbz r4, 8007d58 <__assert_func+0x24> + 8007d44: 4b07 ldr r3, [pc, #28] ; (8007d64 <__assert_func+0x30>) + 8007d46: e9cd 3401 strd r3, r4, [sp, #4] + 8007d4a: 9100 str r1, [sp, #0] + 8007d4c: 462b mov r3, r5 + 8007d4e: 4906 ldr r1, [pc, #24] ; (8007d68 <__assert_func+0x34>) + 8007d50: f000 f80e bl 8007d70 + 8007d54: f000 fa98 bl 8008288 + 8007d58: 4b04 ldr r3, [pc, #16] ; (8007d6c <__assert_func+0x38>) + 8007d5a: 461c mov r4, r3 + 8007d5c: e7f3 b.n 8007d46 <__assert_func+0x12> + 8007d5e: bf00 nop + 8007d60: 2000000c .word 0x2000000c + 8007d64: 08009685 .word 0x08009685 + 8007d68: 08009692 .word 0x08009692 + 8007d6c: 080096c0 .word 0x080096c0 -08007aa0 : - 8007aa0: b40e push {r1, r2, r3} - 8007aa2: b503 push {r0, r1, lr} - 8007aa4: 4601 mov r1, r0 - 8007aa6: ab03 add r3, sp, #12 - 8007aa8: 4805 ldr r0, [pc, #20] ; (8007ac0 ) - 8007aaa: f853 2b04 ldr.w r2, [r3], #4 - 8007aae: 6800 ldr r0, [r0, #0] - 8007ab0: 9301 str r3, [sp, #4] - 8007ab2: f000 f883 bl 8007bbc <_vfiprintf_r> - 8007ab6: b002 add sp, #8 - 8007ab8: f85d eb04 ldr.w lr, [sp], #4 - 8007abc: b003 add sp, #12 - 8007abe: 4770 bx lr - 8007ac0: 2000000c .word 0x2000000c +08007d70 : + 8007d70: b40e push {r1, r2, r3} + 8007d72: b503 push {r0, r1, lr} + 8007d74: 4601 mov r1, r0 + 8007d76: ab03 add r3, sp, #12 + 8007d78: 4805 ldr r0, [pc, #20] ; (8007d90 ) + 8007d7a: f853 2b04 ldr.w r2, [r3], #4 + 8007d7e: 6800 ldr r0, [r0, #0] + 8007d80: 9301 str r3, [sp, #4] + 8007d82: f000 f883 bl 8007e8c <_vfiprintf_r> + 8007d86: b002 add sp, #8 + 8007d88: f85d eb04 ldr.w lr, [sp], #4 + 8007d8c: b003 add sp, #12 + 8007d8e: 4770 bx lr + 8007d90: 2000000c .word 0x2000000c -08007ac4 <__retarget_lock_init_recursive>: - 8007ac4: 4770 bx lr +08007d94 <__retarget_lock_init_recursive>: + 8007d94: 4770 bx lr -08007ac6 <__retarget_lock_acquire_recursive>: - 8007ac6: 4770 bx lr +08007d96 <__retarget_lock_acquire_recursive>: + 8007d96: 4770 bx lr -08007ac8 <__retarget_lock_release_recursive>: - 8007ac8: 4770 bx lr +08007d98 <__retarget_lock_release_recursive>: + 8007d98: 4770 bx lr -08007aca <__ascii_mbtowc>: - 8007aca: b082 sub sp, #8 - 8007acc: b901 cbnz r1, 8007ad0 <__ascii_mbtowc+0x6> - 8007ace: a901 add r1, sp, #4 - 8007ad0: b142 cbz r2, 8007ae4 <__ascii_mbtowc+0x1a> - 8007ad2: b14b cbz r3, 8007ae8 <__ascii_mbtowc+0x1e> - 8007ad4: 7813 ldrb r3, [r2, #0] - 8007ad6: 600b str r3, [r1, #0] - 8007ad8: 7812 ldrb r2, [r2, #0] - 8007ada: 1e10 subs r0, r2, #0 - 8007adc: bf18 it ne - 8007ade: 2001 movne r0, #1 - 8007ae0: b002 add sp, #8 - 8007ae2: 4770 bx lr - 8007ae4: 4610 mov r0, r2 - 8007ae6: e7fb b.n 8007ae0 <__ascii_mbtowc+0x16> - 8007ae8: f06f 0001 mvn.w r0, #1 - 8007aec: e7f8 b.n 8007ae0 <__ascii_mbtowc+0x16> +08007d9a <__ascii_mbtowc>: + 8007d9a: b082 sub sp, #8 + 8007d9c: b901 cbnz r1, 8007da0 <__ascii_mbtowc+0x6> + 8007d9e: a901 add r1, sp, #4 + 8007da0: b142 cbz r2, 8007db4 <__ascii_mbtowc+0x1a> + 8007da2: b14b cbz r3, 8007db8 <__ascii_mbtowc+0x1e> + 8007da4: 7813 ldrb r3, [r2, #0] + 8007da6: 600b str r3, [r1, #0] + 8007da8: 7812 ldrb r2, [r2, #0] + 8007daa: 1e10 subs r0, r2, #0 + 8007dac: bf18 it ne + 8007dae: 2001 movne r0, #1 + 8007db0: b002 add sp, #8 + 8007db2: 4770 bx lr + 8007db4: 4610 mov r0, r2 + 8007db6: e7fb b.n 8007db0 <__ascii_mbtowc+0x16> + 8007db8: f06f 0001 mvn.w r0, #1 + 8007dbc: e7f8 b.n 8007db0 <__ascii_mbtowc+0x16> -08007aee : - 8007aee: 4288 cmp r0, r1 - 8007af0: b510 push {r4, lr} - 8007af2: eb01 0402 add.w r4, r1, r2 - 8007af6: d902 bls.n 8007afe - 8007af8: 4284 cmp r4, r0 - 8007afa: 4623 mov r3, r4 - 8007afc: d807 bhi.n 8007b0e - 8007afe: 1e43 subs r3, r0, #1 - 8007b00: 42a1 cmp r1, r4 - 8007b02: d008 beq.n 8007b16 - 8007b04: f811 2b01 ldrb.w r2, [r1], #1 - 8007b08: f803 2f01 strb.w r2, [r3, #1]! - 8007b0c: e7f8 b.n 8007b00 - 8007b0e: 4601 mov r1, r0 - 8007b10: 4402 add r2, r0 - 8007b12: 428a cmp r2, r1 - 8007b14: d100 bne.n 8007b18 - 8007b16: bd10 pop {r4, pc} - 8007b18: f813 4d01 ldrb.w r4, [r3, #-1]! - 8007b1c: f802 4d01 strb.w r4, [r2, #-1]! - 8007b20: e7f7 b.n 8007b12 +08007dbe : + 8007dbe: 4288 cmp r0, r1 + 8007dc0: b510 push {r4, lr} + 8007dc2: eb01 0402 add.w r4, r1, r2 + 8007dc6: d902 bls.n 8007dce + 8007dc8: 4284 cmp r4, r0 + 8007dca: 4623 mov r3, r4 + 8007dcc: d807 bhi.n 8007dde + 8007dce: 1e43 subs r3, r0, #1 + 8007dd0: 42a1 cmp r1, r4 + 8007dd2: d008 beq.n 8007de6 + 8007dd4: f811 2b01 ldrb.w r2, [r1], #1 + 8007dd8: f803 2f01 strb.w r2, [r3, #1]! + 8007ddc: e7f8 b.n 8007dd0 + 8007dde: 4601 mov r1, r0 + 8007de0: 4402 add r2, r0 + 8007de2: 428a cmp r2, r1 + 8007de4: d100 bne.n 8007de8 + 8007de6: bd10 pop {r4, pc} + 8007de8: f813 4d01 ldrb.w r4, [r3, #-1]! + 8007dec: f802 4d01 strb.w r4, [r2, #-1]! + 8007df0: e7f7 b.n 8007de2 -08007b22 <_realloc_r>: - 8007b22: b5f8 push {r3, r4, r5, r6, r7, lr} - 8007b24: 4607 mov r7, r0 - 8007b26: 4614 mov r4, r2 - 8007b28: 460e mov r6, r1 - 8007b2a: b921 cbnz r1, 8007b36 <_realloc_r+0x14> - 8007b2c: 4611 mov r1, r2 - 8007b2e: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} - 8007b32: f7fd bf17 b.w 8005964 <_malloc_r> - 8007b36: b922 cbnz r2, 8007b42 <_realloc_r+0x20> - 8007b38: f7fd fec8 bl 80058cc <_free_r> - 8007b3c: 4625 mov r5, r4 - 8007b3e: 4628 mov r0, r5 - 8007b40: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8007b42: f000 fc5d bl 8008400 <_malloc_usable_size_r> - 8007b46: 42a0 cmp r0, r4 - 8007b48: d20f bcs.n 8007b6a <_realloc_r+0x48> - 8007b4a: 4621 mov r1, r4 - 8007b4c: 4638 mov r0, r7 - 8007b4e: f7fd ff09 bl 8005964 <_malloc_r> - 8007b52: 4605 mov r5, r0 - 8007b54: 2800 cmp r0, #0 - 8007b56: d0f2 beq.n 8007b3e <_realloc_r+0x1c> - 8007b58: 4631 mov r1, r6 - 8007b5a: 4622 mov r2, r4 - 8007b5c: f7ff fa7c bl 8007058 - 8007b60: 4631 mov r1, r6 - 8007b62: 4638 mov r0, r7 - 8007b64: f7fd feb2 bl 80058cc <_free_r> - 8007b68: e7e9 b.n 8007b3e <_realloc_r+0x1c> - 8007b6a: 4635 mov r5, r6 - 8007b6c: e7e7 b.n 8007b3e <_realloc_r+0x1c> - -08007b6e <__sfputc_r>: - 8007b6e: 6893 ldr r3, [r2, #8] - 8007b70: b410 push {r4} - 8007b72: 3b01 subs r3, #1 - 8007b74: 2b00 cmp r3, #0 - 8007b76: 6093 str r3, [r2, #8] - 8007b78: da07 bge.n 8007b8a <__sfputc_r+0x1c> - 8007b7a: 6994 ldr r4, [r2, #24] - 8007b7c: 42a3 cmp r3, r4 - 8007b7e: db01 blt.n 8007b84 <__sfputc_r+0x16> - 8007b80: 290a cmp r1, #10 - 8007b82: d102 bne.n 8007b8a <__sfputc_r+0x1c> - 8007b84: bc10 pop {r4} - 8007b86: f000 b949 b.w 8007e1c <__swbuf_r> - 8007b8a: 6813 ldr r3, [r2, #0] - 8007b8c: 1c58 adds r0, r3, #1 - 8007b8e: 6010 str r0, [r2, #0] - 8007b90: 7019 strb r1, [r3, #0] - 8007b92: 4608 mov r0, r1 - 8007b94: bc10 pop {r4} - 8007b96: 4770 bx lr - -08007b98 <__sfputs_r>: - 8007b98: b5f8 push {r3, r4, r5, r6, r7, lr} - 8007b9a: 4606 mov r6, r0 - 8007b9c: 460f mov r7, r1 - 8007b9e: 4614 mov r4, r2 - 8007ba0: 18d5 adds r5, r2, r3 - 8007ba2: 42ac cmp r4, r5 - 8007ba4: d101 bne.n 8007baa <__sfputs_r+0x12> - 8007ba6: 2000 movs r0, #0 - 8007ba8: e007 b.n 8007bba <__sfputs_r+0x22> - 8007baa: 463a mov r2, r7 - 8007bac: 4630 mov r0, r6 - 8007bae: f814 1b01 ldrb.w r1, [r4], #1 - 8007bb2: f7ff ffdc bl 8007b6e <__sfputc_r> - 8007bb6: 1c43 adds r3, r0, #1 - 8007bb8: d1f3 bne.n 8007ba2 <__sfputs_r+0xa> - 8007bba: bdf8 pop {r3, r4, r5, r6, r7, pc} - -08007bbc <_vfiprintf_r>: - 8007bbc: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8007bc0: 460d mov r5, r1 - 8007bc2: 4614 mov r4, r2 - 8007bc4: 4698 mov r8, r3 - 8007bc6: 4606 mov r6, r0 - 8007bc8: b09d sub sp, #116 ; 0x74 - 8007bca: b118 cbz r0, 8007bd4 <_vfiprintf_r+0x18> - 8007bcc: 6983 ldr r3, [r0, #24] - 8007bce: b90b cbnz r3, 8007bd4 <_vfiprintf_r+0x18> - 8007bd0: f000 fb14 bl 80081fc <__sinit> - 8007bd4: 4b89 ldr r3, [pc, #548] ; (8007dfc <_vfiprintf_r+0x240>) - 8007bd6: 429d cmp r5, r3 - 8007bd8: d11b bne.n 8007c12 <_vfiprintf_r+0x56> - 8007bda: 6875 ldr r5, [r6, #4] - 8007bdc: 6e6b ldr r3, [r5, #100] ; 0x64 - 8007bde: 07d9 lsls r1, r3, #31 - 8007be0: d405 bmi.n 8007bee <_vfiprintf_r+0x32> - 8007be2: 89ab ldrh r3, [r5, #12] - 8007be4: 059a lsls r2, r3, #22 - 8007be6: d402 bmi.n 8007bee <_vfiprintf_r+0x32> - 8007be8: 6da8 ldr r0, [r5, #88] ; 0x58 - 8007bea: f7ff ff6c bl 8007ac6 <__retarget_lock_acquire_recursive> - 8007bee: 89ab ldrh r3, [r5, #12] - 8007bf0: 071b lsls r3, r3, #28 - 8007bf2: d501 bpl.n 8007bf8 <_vfiprintf_r+0x3c> - 8007bf4: 692b ldr r3, [r5, #16] - 8007bf6: b9eb cbnz r3, 8007c34 <_vfiprintf_r+0x78> - 8007bf8: 4629 mov r1, r5 - 8007bfa: 4630 mov r0, r6 - 8007bfc: f000 f96e bl 8007edc <__swsetup_r> - 8007c00: b1c0 cbz r0, 8007c34 <_vfiprintf_r+0x78> - 8007c02: 6e6b ldr r3, [r5, #100] ; 0x64 - 8007c04: 07dc lsls r4, r3, #31 - 8007c06: d50e bpl.n 8007c26 <_vfiprintf_r+0x6a> - 8007c08: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007c0c: b01d add sp, #116 ; 0x74 - 8007c0e: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} - 8007c12: 4b7b ldr r3, [pc, #492] ; (8007e00 <_vfiprintf_r+0x244>) - 8007c14: 429d cmp r5, r3 - 8007c16: d101 bne.n 8007c1c <_vfiprintf_r+0x60> - 8007c18: 68b5 ldr r5, [r6, #8] - 8007c1a: e7df b.n 8007bdc <_vfiprintf_r+0x20> - 8007c1c: 4b79 ldr r3, [pc, #484] ; (8007e04 <_vfiprintf_r+0x248>) - 8007c1e: 429d cmp r5, r3 - 8007c20: bf08 it eq - 8007c22: 68f5 ldreq r5, [r6, #12] - 8007c24: e7da b.n 8007bdc <_vfiprintf_r+0x20> - 8007c26: 89ab ldrh r3, [r5, #12] - 8007c28: 0598 lsls r0, r3, #22 - 8007c2a: d4ed bmi.n 8007c08 <_vfiprintf_r+0x4c> - 8007c2c: 6da8 ldr r0, [r5, #88] ; 0x58 - 8007c2e: f7ff ff4b bl 8007ac8 <__retarget_lock_release_recursive> - 8007c32: e7e9 b.n 8007c08 <_vfiprintf_r+0x4c> - 8007c34: 2300 movs r3, #0 - 8007c36: 9309 str r3, [sp, #36] ; 0x24 - 8007c38: 2320 movs r3, #32 - 8007c3a: f88d 3029 strb.w r3, [sp, #41] ; 0x29 - 8007c3e: 2330 movs r3, #48 ; 0x30 - 8007c40: f04f 0901 mov.w r9, #1 - 8007c44: f8cd 800c str.w r8, [sp, #12] - 8007c48: f8df 81bc ldr.w r8, [pc, #444] ; 8007e08 <_vfiprintf_r+0x24c> - 8007c4c: f88d 302a strb.w r3, [sp, #42] ; 0x2a - 8007c50: 4623 mov r3, r4 - 8007c52: 469a mov sl, r3 - 8007c54: f813 2b01 ldrb.w r2, [r3], #1 - 8007c58: b10a cbz r2, 8007c5e <_vfiprintf_r+0xa2> - 8007c5a: 2a25 cmp r2, #37 ; 0x25 - 8007c5c: d1f9 bne.n 8007c52 <_vfiprintf_r+0x96> - 8007c5e: ebba 0b04 subs.w fp, sl, r4 - 8007c62: d00b beq.n 8007c7c <_vfiprintf_r+0xc0> - 8007c64: 465b mov r3, fp - 8007c66: 4622 mov r2, r4 - 8007c68: 4629 mov r1, r5 - 8007c6a: 4630 mov r0, r6 - 8007c6c: f7ff ff94 bl 8007b98 <__sfputs_r> - 8007c70: 3001 adds r0, #1 - 8007c72: f000 80aa beq.w 8007dca <_vfiprintf_r+0x20e> - 8007c76: 9a09 ldr r2, [sp, #36] ; 0x24 - 8007c78: 445a add r2, fp - 8007c7a: 9209 str r2, [sp, #36] ; 0x24 - 8007c7c: f89a 3000 ldrb.w r3, [sl] - 8007c80: 2b00 cmp r3, #0 - 8007c82: f000 80a2 beq.w 8007dca <_vfiprintf_r+0x20e> - 8007c86: 2300 movs r3, #0 - 8007c88: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff - 8007c8c: e9cd 2305 strd r2, r3, [sp, #20] - 8007c90: f10a 0a01 add.w sl, sl, #1 - 8007c94: 9304 str r3, [sp, #16] - 8007c96: 9307 str r3, [sp, #28] - 8007c98: f88d 3053 strb.w r3, [sp, #83] ; 0x53 - 8007c9c: 931a str r3, [sp, #104] ; 0x68 - 8007c9e: 4654 mov r4, sl - 8007ca0: 2205 movs r2, #5 - 8007ca2: f814 1b01 ldrb.w r1, [r4], #1 - 8007ca6: 4858 ldr r0, [pc, #352] ; (8007e08 <_vfiprintf_r+0x24c>) - 8007ca8: f7ff f9c8 bl 800703c - 8007cac: 9a04 ldr r2, [sp, #16] - 8007cae: b9d8 cbnz r0, 8007ce8 <_vfiprintf_r+0x12c> - 8007cb0: 06d1 lsls r1, r2, #27 - 8007cb2: bf44 itt mi - 8007cb4: 2320 movmi r3, #32 - 8007cb6: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8007cba: 0713 lsls r3, r2, #28 - 8007cbc: bf44 itt mi - 8007cbe: 232b movmi r3, #43 ; 0x2b - 8007cc0: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 - 8007cc4: f89a 3000 ldrb.w r3, [sl] - 8007cc8: 2b2a cmp r3, #42 ; 0x2a - 8007cca: d015 beq.n 8007cf8 <_vfiprintf_r+0x13c> - 8007ccc: 4654 mov r4, sl - 8007cce: 2000 movs r0, #0 - 8007cd0: f04f 0c0a mov.w ip, #10 - 8007cd4: 9a07 ldr r2, [sp, #28] - 8007cd6: 4621 mov r1, r4 - 8007cd8: f811 3b01 ldrb.w r3, [r1], #1 - 8007cdc: 3b30 subs r3, #48 ; 0x30 - 8007cde: 2b09 cmp r3, #9 - 8007ce0: d94e bls.n 8007d80 <_vfiprintf_r+0x1c4> - 8007ce2: b1b0 cbz r0, 8007d12 <_vfiprintf_r+0x156> - 8007ce4: 9207 str r2, [sp, #28] - 8007ce6: e014 b.n 8007d12 <_vfiprintf_r+0x156> - 8007ce8: eba0 0308 sub.w r3, r0, r8 - 8007cec: fa09 f303 lsl.w r3, r9, r3 - 8007cf0: 4313 orrs r3, r2 - 8007cf2: 46a2 mov sl, r4 - 8007cf4: 9304 str r3, [sp, #16] - 8007cf6: e7d2 b.n 8007c9e <_vfiprintf_r+0xe2> - 8007cf8: 9b03 ldr r3, [sp, #12] - 8007cfa: 1d19 adds r1, r3, #4 - 8007cfc: 681b ldr r3, [r3, #0] - 8007cfe: 9103 str r1, [sp, #12] - 8007d00: 2b00 cmp r3, #0 - 8007d02: bfbb ittet lt - 8007d04: 425b neglt r3, r3 - 8007d06: f042 0202 orrlt.w r2, r2, #2 - 8007d0a: 9307 strge r3, [sp, #28] - 8007d0c: 9307 strlt r3, [sp, #28] - 8007d0e: bfb8 it lt - 8007d10: 9204 strlt r2, [sp, #16] - 8007d12: 7823 ldrb r3, [r4, #0] - 8007d14: 2b2e cmp r3, #46 ; 0x2e - 8007d16: d10c bne.n 8007d32 <_vfiprintf_r+0x176> - 8007d18: 7863 ldrb r3, [r4, #1] - 8007d1a: 2b2a cmp r3, #42 ; 0x2a - 8007d1c: d135 bne.n 8007d8a <_vfiprintf_r+0x1ce> - 8007d1e: 9b03 ldr r3, [sp, #12] - 8007d20: 3402 adds r4, #2 - 8007d22: 1d1a adds r2, r3, #4 - 8007d24: 681b ldr r3, [r3, #0] - 8007d26: 9203 str r2, [sp, #12] - 8007d28: 2b00 cmp r3, #0 - 8007d2a: bfb8 it lt - 8007d2c: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff - 8007d30: 9305 str r3, [sp, #20] - 8007d32: f8df a0e4 ldr.w sl, [pc, #228] ; 8007e18 <_vfiprintf_r+0x25c> - 8007d36: 2203 movs r2, #3 - 8007d38: 4650 mov r0, sl - 8007d3a: 7821 ldrb r1, [r4, #0] - 8007d3c: f7ff f97e bl 800703c - 8007d40: b140 cbz r0, 8007d54 <_vfiprintf_r+0x198> - 8007d42: 2340 movs r3, #64 ; 0x40 - 8007d44: eba0 000a sub.w r0, r0, sl - 8007d48: fa03 f000 lsl.w r0, r3, r0 - 8007d4c: 9b04 ldr r3, [sp, #16] - 8007d4e: 3401 adds r4, #1 - 8007d50: 4303 orrs r3, r0 - 8007d52: 9304 str r3, [sp, #16] - 8007d54: f814 1b01 ldrb.w r1, [r4], #1 - 8007d58: 2206 movs r2, #6 - 8007d5a: 482c ldr r0, [pc, #176] ; (8007e0c <_vfiprintf_r+0x250>) - 8007d5c: f88d 1028 strb.w r1, [sp, #40] ; 0x28 - 8007d60: f7ff f96c bl 800703c - 8007d64: 2800 cmp r0, #0 - 8007d66: d03f beq.n 8007de8 <_vfiprintf_r+0x22c> - 8007d68: 4b29 ldr r3, [pc, #164] ; (8007e10 <_vfiprintf_r+0x254>) - 8007d6a: bb1b cbnz r3, 8007db4 <_vfiprintf_r+0x1f8> - 8007d6c: 9b03 ldr r3, [sp, #12] - 8007d6e: 3307 adds r3, #7 - 8007d70: f023 0307 bic.w r3, r3, #7 - 8007d74: 3308 adds r3, #8 - 8007d76: 9303 str r3, [sp, #12] - 8007d78: 9b09 ldr r3, [sp, #36] ; 0x24 - 8007d7a: 443b add r3, r7 - 8007d7c: 9309 str r3, [sp, #36] ; 0x24 - 8007d7e: e767 b.n 8007c50 <_vfiprintf_r+0x94> - 8007d80: 460c mov r4, r1 - 8007d82: 2001 movs r0, #1 - 8007d84: fb0c 3202 mla r2, ip, r2, r3 - 8007d88: e7a5 b.n 8007cd6 <_vfiprintf_r+0x11a> - 8007d8a: 2300 movs r3, #0 - 8007d8c: f04f 0c0a mov.w ip, #10 - 8007d90: 4619 mov r1, r3 - 8007d92: 3401 adds r4, #1 - 8007d94: 9305 str r3, [sp, #20] - 8007d96: 4620 mov r0, r4 - 8007d98: f810 2b01 ldrb.w r2, [r0], #1 - 8007d9c: 3a30 subs r2, #48 ; 0x30 - 8007d9e: 2a09 cmp r2, #9 - 8007da0: d903 bls.n 8007daa <_vfiprintf_r+0x1ee> - 8007da2: 2b00 cmp r3, #0 - 8007da4: d0c5 beq.n 8007d32 <_vfiprintf_r+0x176> - 8007da6: 9105 str r1, [sp, #20] - 8007da8: e7c3 b.n 8007d32 <_vfiprintf_r+0x176> - 8007daa: 4604 mov r4, r0 - 8007dac: 2301 movs r3, #1 - 8007dae: fb0c 2101 mla r1, ip, r1, r2 - 8007db2: e7f0 b.n 8007d96 <_vfiprintf_r+0x1da> - 8007db4: ab03 add r3, sp, #12 - 8007db6: 9300 str r3, [sp, #0] - 8007db8: 462a mov r2, r5 - 8007dba: 4630 mov r0, r6 - 8007dbc: 4b15 ldr r3, [pc, #84] ; (8007e14 <_vfiprintf_r+0x258>) - 8007dbe: a904 add r1, sp, #16 - 8007dc0: f7fd fec8 bl 8005b54 <_printf_float> - 8007dc4: 4607 mov r7, r0 - 8007dc6: 1c78 adds r0, r7, #1 - 8007dc8: d1d6 bne.n 8007d78 <_vfiprintf_r+0x1bc> - 8007dca: 6e6b ldr r3, [r5, #100] ; 0x64 - 8007dcc: 07d9 lsls r1, r3, #31 - 8007dce: d405 bmi.n 8007ddc <_vfiprintf_r+0x220> - 8007dd0: 89ab ldrh r3, [r5, #12] - 8007dd2: 059a lsls r2, r3, #22 - 8007dd4: d402 bmi.n 8007ddc <_vfiprintf_r+0x220> - 8007dd6: 6da8 ldr r0, [r5, #88] ; 0x58 - 8007dd8: f7ff fe76 bl 8007ac8 <__retarget_lock_release_recursive> - 8007ddc: 89ab ldrh r3, [r5, #12] - 8007dde: 065b lsls r3, r3, #25 - 8007de0: f53f af12 bmi.w 8007c08 <_vfiprintf_r+0x4c> - 8007de4: 9809 ldr r0, [sp, #36] ; 0x24 - 8007de6: e711 b.n 8007c0c <_vfiprintf_r+0x50> - 8007de8: ab03 add r3, sp, #12 - 8007dea: 9300 str r3, [sp, #0] - 8007dec: 462a mov r2, r5 - 8007dee: 4630 mov r0, r6 - 8007df0: 4b08 ldr r3, [pc, #32] ; (8007e14 <_vfiprintf_r+0x258>) - 8007df2: a904 add r1, sp, #16 - 8007df4: f7fe f94a bl 800608c <_printf_i> - 8007df8: e7e4 b.n 8007dc4 <_vfiprintf_r+0x208> - 8007dfa: bf00 nop - 8007dfc: 080094fc .word 0x080094fc - 8007e00: 0800951c .word 0x0800951c - 8007e04: 080094dc .word 0x080094dc - 8007e08: 08009384 .word 0x08009384 - 8007e0c: 0800938e .word 0x0800938e - 8007e10: 08005b55 .word 0x08005b55 - 8007e14: 08007b99 .word 0x08007b99 - 8007e18: 0800938a .word 0x0800938a - -08007e1c <__swbuf_r>: - 8007e1c: b5f8 push {r3, r4, r5, r6, r7, lr} - 8007e1e: 460e mov r6, r1 - 8007e20: 4614 mov r4, r2 +08007df2 <_realloc_r>: + 8007df2: b5f8 push {r3, r4, r5, r6, r7, lr} + 8007df4: 4607 mov r7, r0 + 8007df6: 4614 mov r4, r2 + 8007df8: 460e mov r6, r1 + 8007dfa: b921 cbnz r1, 8007e06 <_realloc_r+0x14> + 8007dfc: 4611 mov r1, r2 + 8007dfe: e8bd 40f8 ldmia.w sp!, {r3, r4, r5, r6, r7, lr} + 8007e02: f7fd bf19 b.w 8005c38 <_malloc_r> + 8007e06: b922 cbnz r2, 8007e12 <_realloc_r+0x20> + 8007e08: f7fd feca bl 8005ba0 <_free_r> + 8007e0c: 4625 mov r5, r4 + 8007e0e: 4628 mov r0, r5 + 8007e10: bdf8 pop {r3, r4, r5, r6, r7, pc} + 8007e12: f000 fc5d bl 80086d0 <_malloc_usable_size_r> + 8007e16: 42a0 cmp r0, r4 + 8007e18: d20f bcs.n 8007e3a <_realloc_r+0x48> + 8007e1a: 4621 mov r1, r4 + 8007e1c: 4638 mov r0, r7 + 8007e1e: f7fd ff0b bl 8005c38 <_malloc_r> 8007e22: 4605 mov r5, r0 - 8007e24: b118 cbz r0, 8007e2e <__swbuf_r+0x12> - 8007e26: 6983 ldr r3, [r0, #24] - 8007e28: b90b cbnz r3, 8007e2e <__swbuf_r+0x12> - 8007e2a: f000 f9e7 bl 80081fc <__sinit> - 8007e2e: 4b21 ldr r3, [pc, #132] ; (8007eb4 <__swbuf_r+0x98>) - 8007e30: 429c cmp r4, r3 - 8007e32: d12b bne.n 8007e8c <__swbuf_r+0x70> - 8007e34: 686c ldr r4, [r5, #4] - 8007e36: 69a3 ldr r3, [r4, #24] - 8007e38: 60a3 str r3, [r4, #8] - 8007e3a: 89a3 ldrh r3, [r4, #12] - 8007e3c: 071a lsls r2, r3, #28 - 8007e3e: d52f bpl.n 8007ea0 <__swbuf_r+0x84> - 8007e40: 6923 ldr r3, [r4, #16] - 8007e42: b36b cbz r3, 8007ea0 <__swbuf_r+0x84> - 8007e44: 6923 ldr r3, [r4, #16] - 8007e46: 6820 ldr r0, [r4, #0] - 8007e48: b2f6 uxtb r6, r6 - 8007e4a: 1ac0 subs r0, r0, r3 - 8007e4c: 6963 ldr r3, [r4, #20] - 8007e4e: 4637 mov r7, r6 - 8007e50: 4283 cmp r3, r0 - 8007e52: dc04 bgt.n 8007e5e <__swbuf_r+0x42> - 8007e54: 4621 mov r1, r4 - 8007e56: 4628 mov r0, r5 - 8007e58: f000 f93c bl 80080d4 <_fflush_r> - 8007e5c: bb30 cbnz r0, 8007eac <__swbuf_r+0x90> - 8007e5e: 68a3 ldr r3, [r4, #8] - 8007e60: 3001 adds r0, #1 - 8007e62: 3b01 subs r3, #1 - 8007e64: 60a3 str r3, [r4, #8] - 8007e66: 6823 ldr r3, [r4, #0] - 8007e68: 1c5a adds r2, r3, #1 - 8007e6a: 6022 str r2, [r4, #0] - 8007e6c: 701e strb r6, [r3, #0] - 8007e6e: 6963 ldr r3, [r4, #20] - 8007e70: 4283 cmp r3, r0 - 8007e72: d004 beq.n 8007e7e <__swbuf_r+0x62> - 8007e74: 89a3 ldrh r3, [r4, #12] - 8007e76: 07db lsls r3, r3, #31 - 8007e78: d506 bpl.n 8007e88 <__swbuf_r+0x6c> - 8007e7a: 2e0a cmp r6, #10 - 8007e7c: d104 bne.n 8007e88 <__swbuf_r+0x6c> - 8007e7e: 4621 mov r1, r4 - 8007e80: 4628 mov r0, r5 - 8007e82: f000 f927 bl 80080d4 <_fflush_r> - 8007e86: b988 cbnz r0, 8007eac <__swbuf_r+0x90> - 8007e88: 4638 mov r0, r7 + 8007e24: 2800 cmp r0, #0 + 8007e26: d0f2 beq.n 8007e0e <_realloc_r+0x1c> + 8007e28: 4631 mov r1, r6 + 8007e2a: 4622 mov r2, r4 + 8007e2c: f7ff fa7c bl 8007328 + 8007e30: 4631 mov r1, r6 + 8007e32: 4638 mov r0, r7 + 8007e34: f7fd feb4 bl 8005ba0 <_free_r> + 8007e38: e7e9 b.n 8007e0e <_realloc_r+0x1c> + 8007e3a: 4635 mov r5, r6 + 8007e3c: e7e7 b.n 8007e0e <_realloc_r+0x1c> + +08007e3e <__sfputc_r>: + 8007e3e: 6893 ldr r3, [r2, #8] + 8007e40: b410 push {r4} + 8007e42: 3b01 subs r3, #1 + 8007e44: 2b00 cmp r3, #0 + 8007e46: 6093 str r3, [r2, #8] + 8007e48: da07 bge.n 8007e5a <__sfputc_r+0x1c> + 8007e4a: 6994 ldr r4, [r2, #24] + 8007e4c: 42a3 cmp r3, r4 + 8007e4e: db01 blt.n 8007e54 <__sfputc_r+0x16> + 8007e50: 290a cmp r1, #10 + 8007e52: d102 bne.n 8007e5a <__sfputc_r+0x1c> + 8007e54: bc10 pop {r4} + 8007e56: f000 b949 b.w 80080ec <__swbuf_r> + 8007e5a: 6813 ldr r3, [r2, #0] + 8007e5c: 1c58 adds r0, r3, #1 + 8007e5e: 6010 str r0, [r2, #0] + 8007e60: 7019 strb r1, [r3, #0] + 8007e62: 4608 mov r0, r1 + 8007e64: bc10 pop {r4} + 8007e66: 4770 bx lr + +08007e68 <__sfputs_r>: + 8007e68: b5f8 push {r3, r4, r5, r6, r7, lr} + 8007e6a: 4606 mov r6, r0 + 8007e6c: 460f mov r7, r1 + 8007e6e: 4614 mov r4, r2 + 8007e70: 18d5 adds r5, r2, r3 + 8007e72: 42ac cmp r4, r5 + 8007e74: d101 bne.n 8007e7a <__sfputs_r+0x12> + 8007e76: 2000 movs r0, #0 + 8007e78: e007 b.n 8007e8a <__sfputs_r+0x22> + 8007e7a: 463a mov r2, r7 + 8007e7c: 4630 mov r0, r6 + 8007e7e: f814 1b01 ldrb.w r1, [r4], #1 + 8007e82: f7ff ffdc bl 8007e3e <__sfputc_r> + 8007e86: 1c43 adds r3, r0, #1 + 8007e88: d1f3 bne.n 8007e72 <__sfputs_r+0xa> 8007e8a: bdf8 pop {r3, r4, r5, r6, r7, pc} - 8007e8c: 4b0a ldr r3, [pc, #40] ; (8007eb8 <__swbuf_r+0x9c>) - 8007e8e: 429c cmp r4, r3 - 8007e90: d101 bne.n 8007e96 <__swbuf_r+0x7a> - 8007e92: 68ac ldr r4, [r5, #8] - 8007e94: e7cf b.n 8007e36 <__swbuf_r+0x1a> - 8007e96: 4b09 ldr r3, [pc, #36] ; (8007ebc <__swbuf_r+0xa0>) - 8007e98: 429c cmp r4, r3 - 8007e9a: bf08 it eq - 8007e9c: 68ec ldreq r4, [r5, #12] - 8007e9e: e7ca b.n 8007e36 <__swbuf_r+0x1a> - 8007ea0: 4621 mov r1, r4 - 8007ea2: 4628 mov r0, r5 - 8007ea4: f000 f81a bl 8007edc <__swsetup_r> - 8007ea8: 2800 cmp r0, #0 - 8007eaa: d0cb beq.n 8007e44 <__swbuf_r+0x28> - 8007eac: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff - 8007eb0: e7ea b.n 8007e88 <__swbuf_r+0x6c> - 8007eb2: bf00 nop - 8007eb4: 080094fc .word 0x080094fc - 8007eb8: 0800951c .word 0x0800951c - 8007ebc: 080094dc .word 0x080094dc -08007ec0 <__ascii_wctomb>: - 8007ec0: 4603 mov r3, r0 - 8007ec2: 4608 mov r0, r1 - 8007ec4: b141 cbz r1, 8007ed8 <__ascii_wctomb+0x18> - 8007ec6: 2aff cmp r2, #255 ; 0xff - 8007ec8: d904 bls.n 8007ed4 <__ascii_wctomb+0x14> - 8007eca: 228a movs r2, #138 ; 0x8a - 8007ecc: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007ed0: 601a str r2, [r3, #0] - 8007ed2: 4770 bx lr - 8007ed4: 2001 movs r0, #1 - 8007ed6: 700a strb r2, [r1, #0] - 8007ed8: 4770 bx lr - ... +08007e8c <_vfiprintf_r>: + 8007e8c: e92d 4ff0 stmdb sp!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8007e90: 460d mov r5, r1 + 8007e92: 4614 mov r4, r2 + 8007e94: 4698 mov r8, r3 + 8007e96: 4606 mov r6, r0 + 8007e98: b09d sub sp, #116 ; 0x74 + 8007e9a: b118 cbz r0, 8007ea4 <_vfiprintf_r+0x18> + 8007e9c: 6983 ldr r3, [r0, #24] + 8007e9e: b90b cbnz r3, 8007ea4 <_vfiprintf_r+0x18> + 8007ea0: f000 fb14 bl 80084cc <__sinit> + 8007ea4: 4b89 ldr r3, [pc, #548] ; (80080cc <_vfiprintf_r+0x240>) + 8007ea6: 429d cmp r5, r3 + 8007ea8: d11b bne.n 8007ee2 <_vfiprintf_r+0x56> + 8007eaa: 6875 ldr r5, [r6, #4] + 8007eac: 6e6b ldr r3, [r5, #100] ; 0x64 + 8007eae: 07d9 lsls r1, r3, #31 + 8007eb0: d405 bmi.n 8007ebe <_vfiprintf_r+0x32> + 8007eb2: 89ab ldrh r3, [r5, #12] + 8007eb4: 059a lsls r2, r3, #22 + 8007eb6: d402 bmi.n 8007ebe <_vfiprintf_r+0x32> + 8007eb8: 6da8 ldr r0, [r5, #88] ; 0x58 + 8007eba: f7ff ff6c bl 8007d96 <__retarget_lock_acquire_recursive> + 8007ebe: 89ab ldrh r3, [r5, #12] + 8007ec0: 071b lsls r3, r3, #28 + 8007ec2: d501 bpl.n 8007ec8 <_vfiprintf_r+0x3c> + 8007ec4: 692b ldr r3, [r5, #16] + 8007ec6: b9eb cbnz r3, 8007f04 <_vfiprintf_r+0x78> + 8007ec8: 4629 mov r1, r5 + 8007eca: 4630 mov r0, r6 + 8007ecc: f000 f96e bl 80081ac <__swsetup_r> + 8007ed0: b1c0 cbz r0, 8007f04 <_vfiprintf_r+0x78> + 8007ed2: 6e6b ldr r3, [r5, #100] ; 0x64 + 8007ed4: 07dc lsls r4, r3, #31 + 8007ed6: d50e bpl.n 8007ef6 <_vfiprintf_r+0x6a> + 8007ed8: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 8007edc: b01d add sp, #116 ; 0x74 + 8007ede: e8bd 8ff0 ldmia.w sp!, {r4, r5, r6, r7, r8, r9, sl, fp, pc} + 8007ee2: 4b7b ldr r3, [pc, #492] ; (80080d0 <_vfiprintf_r+0x244>) + 8007ee4: 429d cmp r5, r3 + 8007ee6: d101 bne.n 8007eec <_vfiprintf_r+0x60> + 8007ee8: 68b5 ldr r5, [r6, #8] + 8007eea: e7df b.n 8007eac <_vfiprintf_r+0x20> + 8007eec: 4b79 ldr r3, [pc, #484] ; (80080d4 <_vfiprintf_r+0x248>) + 8007eee: 429d cmp r5, r3 + 8007ef0: bf08 it eq + 8007ef2: 68f5 ldreq r5, [r6, #12] + 8007ef4: e7da b.n 8007eac <_vfiprintf_r+0x20> + 8007ef6: 89ab ldrh r3, [r5, #12] + 8007ef8: 0598 lsls r0, r3, #22 + 8007efa: d4ed bmi.n 8007ed8 <_vfiprintf_r+0x4c> + 8007efc: 6da8 ldr r0, [r5, #88] ; 0x58 + 8007efe: f7ff ff4b bl 8007d98 <__retarget_lock_release_recursive> + 8007f02: e7e9 b.n 8007ed8 <_vfiprintf_r+0x4c> + 8007f04: 2300 movs r3, #0 + 8007f06: 9309 str r3, [sp, #36] ; 0x24 + 8007f08: 2320 movs r3, #32 + 8007f0a: f88d 3029 strb.w r3, [sp, #41] ; 0x29 + 8007f0e: 2330 movs r3, #48 ; 0x30 + 8007f10: f04f 0901 mov.w r9, #1 + 8007f14: f8cd 800c str.w r8, [sp, #12] + 8007f18: f8df 81bc ldr.w r8, [pc, #444] ; 80080d8 <_vfiprintf_r+0x24c> + 8007f1c: f88d 302a strb.w r3, [sp, #42] ; 0x2a + 8007f20: 4623 mov r3, r4 + 8007f22: 469a mov sl, r3 + 8007f24: f813 2b01 ldrb.w r2, [r3], #1 + 8007f28: b10a cbz r2, 8007f2e <_vfiprintf_r+0xa2> + 8007f2a: 2a25 cmp r2, #37 ; 0x25 + 8007f2c: d1f9 bne.n 8007f22 <_vfiprintf_r+0x96> + 8007f2e: ebba 0b04 subs.w fp, sl, r4 + 8007f32: d00b beq.n 8007f4c <_vfiprintf_r+0xc0> + 8007f34: 465b mov r3, fp + 8007f36: 4622 mov r2, r4 + 8007f38: 4629 mov r1, r5 + 8007f3a: 4630 mov r0, r6 + 8007f3c: f7ff ff94 bl 8007e68 <__sfputs_r> + 8007f40: 3001 adds r0, #1 + 8007f42: f000 80aa beq.w 800809a <_vfiprintf_r+0x20e> + 8007f46: 9a09 ldr r2, [sp, #36] ; 0x24 + 8007f48: 445a add r2, fp + 8007f4a: 9209 str r2, [sp, #36] ; 0x24 + 8007f4c: f89a 3000 ldrb.w r3, [sl] + 8007f50: 2b00 cmp r3, #0 + 8007f52: f000 80a2 beq.w 800809a <_vfiprintf_r+0x20e> + 8007f56: 2300 movs r3, #0 + 8007f58: f04f 32ff mov.w r2, #4294967295 ; 0xffffffff + 8007f5c: e9cd 2305 strd r2, r3, [sp, #20] + 8007f60: f10a 0a01 add.w sl, sl, #1 + 8007f64: 9304 str r3, [sp, #16] + 8007f66: 9307 str r3, [sp, #28] + 8007f68: f88d 3053 strb.w r3, [sp, #83] ; 0x53 + 8007f6c: 931a str r3, [sp, #104] ; 0x68 + 8007f6e: 4654 mov r4, sl + 8007f70: 2205 movs r2, #5 + 8007f72: f814 1b01 ldrb.w r1, [r4], #1 + 8007f76: 4858 ldr r0, [pc, #352] ; (80080d8 <_vfiprintf_r+0x24c>) + 8007f78: f7ff f9c8 bl 800730c + 8007f7c: 9a04 ldr r2, [sp, #16] + 8007f7e: b9d8 cbnz r0, 8007fb8 <_vfiprintf_r+0x12c> + 8007f80: 06d1 lsls r1, r2, #27 + 8007f82: bf44 itt mi + 8007f84: 2320 movmi r3, #32 + 8007f86: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8007f8a: 0713 lsls r3, r2, #28 + 8007f8c: bf44 itt mi + 8007f8e: 232b movmi r3, #43 ; 0x2b + 8007f90: f88d 3053 strbmi.w r3, [sp, #83] ; 0x53 + 8007f94: f89a 3000 ldrb.w r3, [sl] + 8007f98: 2b2a cmp r3, #42 ; 0x2a + 8007f9a: d015 beq.n 8007fc8 <_vfiprintf_r+0x13c> + 8007f9c: 4654 mov r4, sl + 8007f9e: 2000 movs r0, #0 + 8007fa0: f04f 0c0a mov.w ip, #10 + 8007fa4: 9a07 ldr r2, [sp, #28] + 8007fa6: 4621 mov r1, r4 + 8007fa8: f811 3b01 ldrb.w r3, [r1], #1 + 8007fac: 3b30 subs r3, #48 ; 0x30 + 8007fae: 2b09 cmp r3, #9 + 8007fb0: d94e bls.n 8008050 <_vfiprintf_r+0x1c4> + 8007fb2: b1b0 cbz r0, 8007fe2 <_vfiprintf_r+0x156> + 8007fb4: 9207 str r2, [sp, #28] + 8007fb6: e014 b.n 8007fe2 <_vfiprintf_r+0x156> + 8007fb8: eba0 0308 sub.w r3, r0, r8 + 8007fbc: fa09 f303 lsl.w r3, r9, r3 + 8007fc0: 4313 orrs r3, r2 + 8007fc2: 46a2 mov sl, r4 + 8007fc4: 9304 str r3, [sp, #16] + 8007fc6: e7d2 b.n 8007f6e <_vfiprintf_r+0xe2> + 8007fc8: 9b03 ldr r3, [sp, #12] + 8007fca: 1d19 adds r1, r3, #4 + 8007fcc: 681b ldr r3, [r3, #0] + 8007fce: 9103 str r1, [sp, #12] + 8007fd0: 2b00 cmp r3, #0 + 8007fd2: bfbb ittet lt + 8007fd4: 425b neglt r3, r3 + 8007fd6: f042 0202 orrlt.w r2, r2, #2 + 8007fda: 9307 strge r3, [sp, #28] + 8007fdc: 9307 strlt r3, [sp, #28] + 8007fde: bfb8 it lt + 8007fe0: 9204 strlt r2, [sp, #16] + 8007fe2: 7823 ldrb r3, [r4, #0] + 8007fe4: 2b2e cmp r3, #46 ; 0x2e + 8007fe6: d10c bne.n 8008002 <_vfiprintf_r+0x176> + 8007fe8: 7863 ldrb r3, [r4, #1] + 8007fea: 2b2a cmp r3, #42 ; 0x2a + 8007fec: d135 bne.n 800805a <_vfiprintf_r+0x1ce> + 8007fee: 9b03 ldr r3, [sp, #12] + 8007ff0: 3402 adds r4, #2 + 8007ff2: 1d1a adds r2, r3, #4 + 8007ff4: 681b ldr r3, [r3, #0] + 8007ff6: 9203 str r2, [sp, #12] + 8007ff8: 2b00 cmp r3, #0 + 8007ffa: bfb8 it lt + 8007ffc: f04f 33ff movlt.w r3, #4294967295 ; 0xffffffff + 8008000: 9305 str r3, [sp, #20] + 8008002: f8df a0e4 ldr.w sl, [pc, #228] ; 80080e8 <_vfiprintf_r+0x25c> + 8008006: 2203 movs r2, #3 + 8008008: 4650 mov r0, sl + 800800a: 7821 ldrb r1, [r4, #0] + 800800c: f7ff f97e bl 800730c + 8008010: b140 cbz r0, 8008024 <_vfiprintf_r+0x198> + 8008012: 2340 movs r3, #64 ; 0x40 + 8008014: eba0 000a sub.w r0, r0, sl + 8008018: fa03 f000 lsl.w r0, r3, r0 + 800801c: 9b04 ldr r3, [sp, #16] + 800801e: 3401 adds r4, #1 + 8008020: 4303 orrs r3, r0 + 8008022: 9304 str r3, [sp, #16] + 8008024: f814 1b01 ldrb.w r1, [r4], #1 + 8008028: 2206 movs r2, #6 + 800802a: 482c ldr r0, [pc, #176] ; (80080dc <_vfiprintf_r+0x250>) + 800802c: f88d 1028 strb.w r1, [sp, #40] ; 0x28 + 8008030: f7ff f96c bl 800730c + 8008034: 2800 cmp r0, #0 + 8008036: d03f beq.n 80080b8 <_vfiprintf_r+0x22c> + 8008038: 4b29 ldr r3, [pc, #164] ; (80080e0 <_vfiprintf_r+0x254>) + 800803a: bb1b cbnz r3, 8008084 <_vfiprintf_r+0x1f8> + 800803c: 9b03 ldr r3, [sp, #12] + 800803e: 3307 adds r3, #7 + 8008040: f023 0307 bic.w r3, r3, #7 + 8008044: 3308 adds r3, #8 + 8008046: 9303 str r3, [sp, #12] + 8008048: 9b09 ldr r3, [sp, #36] ; 0x24 + 800804a: 443b add r3, r7 + 800804c: 9309 str r3, [sp, #36] ; 0x24 + 800804e: e767 b.n 8007f20 <_vfiprintf_r+0x94> + 8008050: 460c mov r4, r1 + 8008052: 2001 movs r0, #1 + 8008054: fb0c 3202 mla r2, ip, r2, r3 + 8008058: e7a5 b.n 8007fa6 <_vfiprintf_r+0x11a> + 800805a: 2300 movs r3, #0 + 800805c: f04f 0c0a mov.w ip, #10 + 8008060: 4619 mov r1, r3 + 8008062: 3401 adds r4, #1 + 8008064: 9305 str r3, [sp, #20] + 8008066: 4620 mov r0, r4 + 8008068: f810 2b01 ldrb.w r2, [r0], #1 + 800806c: 3a30 subs r2, #48 ; 0x30 + 800806e: 2a09 cmp r2, #9 + 8008070: d903 bls.n 800807a <_vfiprintf_r+0x1ee> + 8008072: 2b00 cmp r3, #0 + 8008074: d0c5 beq.n 8008002 <_vfiprintf_r+0x176> + 8008076: 9105 str r1, [sp, #20] + 8008078: e7c3 b.n 8008002 <_vfiprintf_r+0x176> + 800807a: 4604 mov r4, r0 + 800807c: 2301 movs r3, #1 + 800807e: fb0c 2101 mla r1, ip, r1, r2 + 8008082: e7f0 b.n 8008066 <_vfiprintf_r+0x1da> + 8008084: ab03 add r3, sp, #12 + 8008086: 9300 str r3, [sp, #0] + 8008088: 462a mov r2, r5 + 800808a: 4630 mov r0, r6 + 800808c: 4b15 ldr r3, [pc, #84] ; (80080e4 <_vfiprintf_r+0x258>) + 800808e: a904 add r1, sp, #16 + 8008090: f7fd feca bl 8005e28 <_printf_float> + 8008094: 4607 mov r7, r0 + 8008096: 1c78 adds r0, r7, #1 + 8008098: d1d6 bne.n 8008048 <_vfiprintf_r+0x1bc> + 800809a: 6e6b ldr r3, [r5, #100] ; 0x64 + 800809c: 07d9 lsls r1, r3, #31 + 800809e: d405 bmi.n 80080ac <_vfiprintf_r+0x220> + 80080a0: 89ab ldrh r3, [r5, #12] + 80080a2: 059a lsls r2, r3, #22 + 80080a4: d402 bmi.n 80080ac <_vfiprintf_r+0x220> + 80080a6: 6da8 ldr r0, [r5, #88] ; 0x58 + 80080a8: f7ff fe76 bl 8007d98 <__retarget_lock_release_recursive> + 80080ac: 89ab ldrh r3, [r5, #12] + 80080ae: 065b lsls r3, r3, #25 + 80080b0: f53f af12 bmi.w 8007ed8 <_vfiprintf_r+0x4c> + 80080b4: 9809 ldr r0, [sp, #36] ; 0x24 + 80080b6: e711 b.n 8007edc <_vfiprintf_r+0x50> + 80080b8: ab03 add r3, sp, #12 + 80080ba: 9300 str r3, [sp, #0] + 80080bc: 462a mov r2, r5 + 80080be: 4630 mov r0, r6 + 80080c0: 4b08 ldr r3, [pc, #32] ; (80080e4 <_vfiprintf_r+0x258>) + 80080c2: a904 add r1, sp, #16 + 80080c4: f7fe f94c bl 8006360 <_printf_i> + 80080c8: e7e4 b.n 8008094 <_vfiprintf_r+0x208> + 80080ca: bf00 nop + 80080cc: 080097ec .word 0x080097ec + 80080d0: 0800980c .word 0x0800980c + 80080d4: 080097cc .word 0x080097cc + 80080d8: 08009674 .word 0x08009674 + 80080dc: 0800967e .word 0x0800967e + 80080e0: 08005e29 .word 0x08005e29 + 80080e4: 08007e69 .word 0x08007e69 + 80080e8: 0800967a .word 0x0800967a -08007edc <__swsetup_r>: - 8007edc: 4b32 ldr r3, [pc, #200] ; (8007fa8 <__swsetup_r+0xcc>) - 8007ede: b570 push {r4, r5, r6, lr} - 8007ee0: 681d ldr r5, [r3, #0] - 8007ee2: 4606 mov r6, r0 - 8007ee4: 460c mov r4, r1 - 8007ee6: b125 cbz r5, 8007ef2 <__swsetup_r+0x16> - 8007ee8: 69ab ldr r3, [r5, #24] - 8007eea: b913 cbnz r3, 8007ef2 <__swsetup_r+0x16> - 8007eec: 4628 mov r0, r5 - 8007eee: f000 f985 bl 80081fc <__sinit> - 8007ef2: 4b2e ldr r3, [pc, #184] ; (8007fac <__swsetup_r+0xd0>) - 8007ef4: 429c cmp r4, r3 - 8007ef6: d10f bne.n 8007f18 <__swsetup_r+0x3c> - 8007ef8: 686c ldr r4, [r5, #4] - 8007efa: 89a3 ldrh r3, [r4, #12] - 8007efc: f9b4 200c ldrsh.w r2, [r4, #12] - 8007f00: 0719 lsls r1, r3, #28 - 8007f02: d42c bmi.n 8007f5e <__swsetup_r+0x82> - 8007f04: 06dd lsls r5, r3, #27 - 8007f06: d411 bmi.n 8007f2c <__swsetup_r+0x50> - 8007f08: 2309 movs r3, #9 - 8007f0a: 6033 str r3, [r6, #0] - 8007f0c: f042 0340 orr.w r3, r2, #64 ; 0x40 - 8007f10: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8007f14: 81a3 strh r3, [r4, #12] - 8007f16: e03e b.n 8007f96 <__swsetup_r+0xba> - 8007f18: 4b25 ldr r3, [pc, #148] ; (8007fb0 <__swsetup_r+0xd4>) - 8007f1a: 429c cmp r4, r3 - 8007f1c: d101 bne.n 8007f22 <__swsetup_r+0x46> - 8007f1e: 68ac ldr r4, [r5, #8] - 8007f20: e7eb b.n 8007efa <__swsetup_r+0x1e> - 8007f22: 4b24 ldr r3, [pc, #144] ; (8007fb4 <__swsetup_r+0xd8>) - 8007f24: 429c cmp r4, r3 - 8007f26: bf08 it eq - 8007f28: 68ec ldreq r4, [r5, #12] - 8007f2a: e7e6 b.n 8007efa <__swsetup_r+0x1e> - 8007f2c: 0758 lsls r0, r3, #29 - 8007f2e: d512 bpl.n 8007f56 <__swsetup_r+0x7a> - 8007f30: 6b61 ldr r1, [r4, #52] ; 0x34 - 8007f32: b141 cbz r1, 8007f46 <__swsetup_r+0x6a> - 8007f34: f104 0344 add.w r3, r4, #68 ; 0x44 - 8007f38: 4299 cmp r1, r3 - 8007f3a: d002 beq.n 8007f42 <__swsetup_r+0x66> - 8007f3c: 4630 mov r0, r6 - 8007f3e: f7fd fcc5 bl 80058cc <_free_r> - 8007f42: 2300 movs r3, #0 - 8007f44: 6363 str r3, [r4, #52] ; 0x34 - 8007f46: 89a3 ldrh r3, [r4, #12] - 8007f48: f023 0324 bic.w r3, r3, #36 ; 0x24 - 8007f4c: 81a3 strh r3, [r4, #12] - 8007f4e: 2300 movs r3, #0 - 8007f50: 6063 str r3, [r4, #4] - 8007f52: 6923 ldr r3, [r4, #16] - 8007f54: 6023 str r3, [r4, #0] - 8007f56: 89a3 ldrh r3, [r4, #12] - 8007f58: f043 0308 orr.w r3, r3, #8 - 8007f5c: 81a3 strh r3, [r4, #12] - 8007f5e: 6923 ldr r3, [r4, #16] - 8007f60: b94b cbnz r3, 8007f76 <__swsetup_r+0x9a> - 8007f62: 89a3 ldrh r3, [r4, #12] - 8007f64: f403 7320 and.w r3, r3, #640 ; 0x280 - 8007f68: f5b3 7f00 cmp.w r3, #512 ; 0x200 - 8007f6c: d003 beq.n 8007f76 <__swsetup_r+0x9a> - 8007f6e: 4621 mov r1, r4 - 8007f70: 4630 mov r0, r6 - 8007f72: f000 fa05 bl 8008380 <__smakebuf_r> - 8007f76: 89a0 ldrh r0, [r4, #12] - 8007f78: f9b4 200c ldrsh.w r2, [r4, #12] - 8007f7c: f010 0301 ands.w r3, r0, #1 - 8007f80: d00a beq.n 8007f98 <__swsetup_r+0xbc> - 8007f82: 2300 movs r3, #0 - 8007f84: 60a3 str r3, [r4, #8] - 8007f86: 6963 ldr r3, [r4, #20] - 8007f88: 425b negs r3, r3 - 8007f8a: 61a3 str r3, [r4, #24] - 8007f8c: 6923 ldr r3, [r4, #16] - 8007f8e: b943 cbnz r3, 8007fa2 <__swsetup_r+0xc6> - 8007f90: f010 0080 ands.w r0, r0, #128 ; 0x80 - 8007f94: d1ba bne.n 8007f0c <__swsetup_r+0x30> - 8007f96: bd70 pop {r4, r5, r6, pc} - 8007f98: 0781 lsls r1, r0, #30 - 8007f9a: bf58 it pl - 8007f9c: 6963 ldrpl r3, [r4, #20] - 8007f9e: 60a3 str r3, [r4, #8] - 8007fa0: e7f4 b.n 8007f8c <__swsetup_r+0xb0> - 8007fa2: 2000 movs r0, #0 - 8007fa4: e7f7 b.n 8007f96 <__swsetup_r+0xba> - 8007fa6: bf00 nop - 8007fa8: 2000000c .word 0x2000000c - 8007fac: 080094fc .word 0x080094fc - 8007fb0: 0800951c .word 0x0800951c - 8007fb4: 080094dc .word 0x080094dc - -08007fb8 : - 8007fb8: 2006 movs r0, #6 - 8007fba: b508 push {r3, lr} - 8007fbc: f000 fa50 bl 8008460 - 8007fc0: 2001 movs r0, #1 - 8007fc2: f7f9 fb41 bl 8001648 <_exit> - ... - -08007fc8 <__sflush_r>: - 8007fc8: 898a ldrh r2, [r1, #12] - 8007fca: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 8007fce: 4605 mov r5, r0 - 8007fd0: 0710 lsls r0, r2, #28 - 8007fd2: 460c mov r4, r1 - 8007fd4: d458 bmi.n 8008088 <__sflush_r+0xc0> - 8007fd6: 684b ldr r3, [r1, #4] - 8007fd8: 2b00 cmp r3, #0 - 8007fda: dc05 bgt.n 8007fe8 <__sflush_r+0x20> - 8007fdc: 6c0b ldr r3, [r1, #64] ; 0x40 - 8007fde: 2b00 cmp r3, #0 - 8007fe0: dc02 bgt.n 8007fe8 <__sflush_r+0x20> - 8007fe2: 2000 movs r0, #0 - 8007fe4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} - 8007fe8: 6ae6 ldr r6, [r4, #44] ; 0x2c - 8007fea: 2e00 cmp r6, #0 - 8007fec: d0f9 beq.n 8007fe2 <__sflush_r+0x1a> - 8007fee: 2300 movs r3, #0 - 8007ff0: f412 5280 ands.w r2, r2, #4096 ; 0x1000 - 8007ff4: 682f ldr r7, [r5, #0] - 8007ff6: 602b str r3, [r5, #0] - 8007ff8: d032 beq.n 8008060 <__sflush_r+0x98> - 8007ffa: 6d60 ldr r0, [r4, #84] ; 0x54 - 8007ffc: 89a3 ldrh r3, [r4, #12] - 8007ffe: 075a lsls r2, r3, #29 - 8008000: d505 bpl.n 800800e <__sflush_r+0x46> - 8008002: 6863 ldr r3, [r4, #4] - 8008004: 1ac0 subs r0, r0, r3 - 8008006: 6b63 ldr r3, [r4, #52] ; 0x34 - 8008008: b10b cbz r3, 800800e <__sflush_r+0x46> - 800800a: 6c23 ldr r3, [r4, #64] ; 0x40 - 800800c: 1ac0 subs r0, r0, r3 - 800800e: 2300 movs r3, #0 - 8008010: 4602 mov r2, r0 - 8008012: 6ae6 ldr r6, [r4, #44] ; 0x2c - 8008014: 4628 mov r0, r5 - 8008016: 6a21 ldr r1, [r4, #32] - 8008018: 47b0 blx r6 - 800801a: 1c43 adds r3, r0, #1 - 800801c: 89a3 ldrh r3, [r4, #12] - 800801e: d106 bne.n 800802e <__sflush_r+0x66> - 8008020: 6829 ldr r1, [r5, #0] - 8008022: 291d cmp r1, #29 - 8008024: d82c bhi.n 8008080 <__sflush_r+0xb8> - 8008026: 4a2a ldr r2, [pc, #168] ; (80080d0 <__sflush_r+0x108>) - 8008028: 40ca lsrs r2, r1 - 800802a: 07d6 lsls r6, r2, #31 - 800802c: d528 bpl.n 8008080 <__sflush_r+0xb8> - 800802e: 2200 movs r2, #0 - 8008030: 6062 str r2, [r4, #4] - 8008032: 6922 ldr r2, [r4, #16] - 8008034: 04d9 lsls r1, r3, #19 - 8008036: 6022 str r2, [r4, #0] - 8008038: d504 bpl.n 8008044 <__sflush_r+0x7c> - 800803a: 1c42 adds r2, r0, #1 - 800803c: d101 bne.n 8008042 <__sflush_r+0x7a> - 800803e: 682b ldr r3, [r5, #0] - 8008040: b903 cbnz r3, 8008044 <__sflush_r+0x7c> - 8008042: 6560 str r0, [r4, #84] ; 0x54 - 8008044: 6b61 ldr r1, [r4, #52] ; 0x34 - 8008046: 602f str r7, [r5, #0] - 8008048: 2900 cmp r1, #0 - 800804a: d0ca beq.n 8007fe2 <__sflush_r+0x1a> - 800804c: f104 0344 add.w r3, r4, #68 ; 0x44 - 8008050: 4299 cmp r1, r3 - 8008052: d002 beq.n 800805a <__sflush_r+0x92> - 8008054: 4628 mov r0, r5 - 8008056: f7fd fc39 bl 80058cc <_free_r> - 800805a: 2000 movs r0, #0 - 800805c: 6360 str r0, [r4, #52] ; 0x34 - 800805e: e7c1 b.n 8007fe4 <__sflush_r+0x1c> - 8008060: 6a21 ldr r1, [r4, #32] - 8008062: 2301 movs r3, #1 - 8008064: 4628 mov r0, r5 - 8008066: 47b0 blx r6 - 8008068: 1c41 adds r1, r0, #1 - 800806a: d1c7 bne.n 8007ffc <__sflush_r+0x34> - 800806c: 682b ldr r3, [r5, #0] - 800806e: 2b00 cmp r3, #0 - 8008070: d0c4 beq.n 8007ffc <__sflush_r+0x34> - 8008072: 2b1d cmp r3, #29 - 8008074: d001 beq.n 800807a <__sflush_r+0xb2> - 8008076: 2b16 cmp r3, #22 - 8008078: d101 bne.n 800807e <__sflush_r+0xb6> - 800807a: 602f str r7, [r5, #0] - 800807c: e7b1 b.n 8007fe2 <__sflush_r+0x1a> - 800807e: 89a3 ldrh r3, [r4, #12] - 8008080: f043 0340 orr.w r3, r3, #64 ; 0x40 - 8008084: 81a3 strh r3, [r4, #12] - 8008086: e7ad b.n 8007fe4 <__sflush_r+0x1c> - 8008088: 690f ldr r7, [r1, #16] - 800808a: 2f00 cmp r7, #0 - 800808c: d0a9 beq.n 8007fe2 <__sflush_r+0x1a> - 800808e: 0793 lsls r3, r2, #30 - 8008090: bf18 it ne - 8008092: 2300 movne r3, #0 - 8008094: 680e ldr r6, [r1, #0] - 8008096: bf08 it eq - 8008098: 694b ldreq r3, [r1, #20] - 800809a: eba6 0807 sub.w r8, r6, r7 - 800809e: 600f str r7, [r1, #0] - 80080a0: 608b str r3, [r1, #8] - 80080a2: f1b8 0f00 cmp.w r8, #0 - 80080a6: dd9c ble.n 8007fe2 <__sflush_r+0x1a> - 80080a8: 4643 mov r3, r8 - 80080aa: 463a mov r2, r7 - 80080ac: 4628 mov r0, r5 - 80080ae: 6a21 ldr r1, [r4, #32] - 80080b0: 6aa6 ldr r6, [r4, #40] ; 0x28 - 80080b2: 47b0 blx r6 - 80080b4: 2800 cmp r0, #0 - 80080b6: dc06 bgt.n 80080c6 <__sflush_r+0xfe> - 80080b8: 89a3 ldrh r3, [r4, #12] - 80080ba: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 80080be: f043 0340 orr.w r3, r3, #64 ; 0x40 - 80080c2: 81a3 strh r3, [r4, #12] - 80080c4: e78e b.n 8007fe4 <__sflush_r+0x1c> - 80080c6: 4407 add r7, r0 - 80080c8: eba8 0800 sub.w r8, r8, r0 - 80080cc: e7e9 b.n 80080a2 <__sflush_r+0xda> - 80080ce: bf00 nop - 80080d0: 20400001 .word 0x20400001 - -080080d4 <_fflush_r>: - 80080d4: b538 push {r3, r4, r5, lr} - 80080d6: 690b ldr r3, [r1, #16] - 80080d8: 4605 mov r5, r0 - 80080da: 460c mov r4, r1 - 80080dc: b913 cbnz r3, 80080e4 <_fflush_r+0x10> - 80080de: 2500 movs r5, #0 - 80080e0: 4628 mov r0, r5 - 80080e2: bd38 pop {r3, r4, r5, pc} - 80080e4: b118 cbz r0, 80080ee <_fflush_r+0x1a> - 80080e6: 6983 ldr r3, [r0, #24] - 80080e8: b90b cbnz r3, 80080ee <_fflush_r+0x1a> - 80080ea: f000 f887 bl 80081fc <__sinit> - 80080ee: 4b14 ldr r3, [pc, #80] ; (8008140 <_fflush_r+0x6c>) - 80080f0: 429c cmp r4, r3 - 80080f2: d11b bne.n 800812c <_fflush_r+0x58> - 80080f4: 686c ldr r4, [r5, #4] - 80080f6: f9b4 300c ldrsh.w r3, [r4, #12] - 80080fa: 2b00 cmp r3, #0 - 80080fc: d0ef beq.n 80080de <_fflush_r+0xa> - 80080fe: 6e62 ldr r2, [r4, #100] ; 0x64 - 8008100: 07d0 lsls r0, r2, #31 - 8008102: d404 bmi.n 800810e <_fflush_r+0x3a> - 8008104: 0599 lsls r1, r3, #22 - 8008106: d402 bmi.n 800810e <_fflush_r+0x3a> - 8008108: 6da0 ldr r0, [r4, #88] ; 0x58 - 800810a: f7ff fcdc bl 8007ac6 <__retarget_lock_acquire_recursive> - 800810e: 4628 mov r0, r5 - 8008110: 4621 mov r1, r4 - 8008112: f7ff ff59 bl 8007fc8 <__sflush_r> - 8008116: 6e63 ldr r3, [r4, #100] ; 0x64 - 8008118: 4605 mov r5, r0 - 800811a: 07da lsls r2, r3, #31 - 800811c: d4e0 bmi.n 80080e0 <_fflush_r+0xc> - 800811e: 89a3 ldrh r3, [r4, #12] - 8008120: 059b lsls r3, r3, #22 - 8008122: d4dd bmi.n 80080e0 <_fflush_r+0xc> - 8008124: 6da0 ldr r0, [r4, #88] ; 0x58 - 8008126: f7ff fccf bl 8007ac8 <__retarget_lock_release_recursive> - 800812a: e7d9 b.n 80080e0 <_fflush_r+0xc> - 800812c: 4b05 ldr r3, [pc, #20] ; (8008144 <_fflush_r+0x70>) - 800812e: 429c cmp r4, r3 - 8008130: d101 bne.n 8008136 <_fflush_r+0x62> - 8008132: 68ac ldr r4, [r5, #8] - 8008134: e7df b.n 80080f6 <_fflush_r+0x22> - 8008136: 4b04 ldr r3, [pc, #16] ; (8008148 <_fflush_r+0x74>) - 8008138: 429c cmp r4, r3 - 800813a: bf08 it eq - 800813c: 68ec ldreq r4, [r5, #12] - 800813e: e7da b.n 80080f6 <_fflush_r+0x22> - 8008140: 080094fc .word 0x080094fc - 8008144: 0800951c .word 0x0800951c - 8008148: 080094dc .word 0x080094dc - -0800814c : - 800814c: 2300 movs r3, #0 - 800814e: b510 push {r4, lr} - 8008150: 4604 mov r4, r0 - 8008152: e9c0 3300 strd r3, r3, [r0] - 8008156: e9c0 3304 strd r3, r3, [r0, #16] - 800815a: 6083 str r3, [r0, #8] - 800815c: 8181 strh r1, [r0, #12] - 800815e: 6643 str r3, [r0, #100] ; 0x64 - 8008160: 81c2 strh r2, [r0, #14] - 8008162: 6183 str r3, [r0, #24] - 8008164: 4619 mov r1, r3 - 8008166: 2208 movs r2, #8 - 8008168: 305c adds r0, #92 ; 0x5c - 800816a: f7fd fba7 bl 80058bc - 800816e: 4b05 ldr r3, [pc, #20] ; (8008184 ) - 8008170: 6224 str r4, [r4, #32] - 8008172: 6263 str r3, [r4, #36] ; 0x24 - 8008174: 4b04 ldr r3, [pc, #16] ; (8008188 ) - 8008176: 62a3 str r3, [r4, #40] ; 0x28 - 8008178: 4b04 ldr r3, [pc, #16] ; (800818c ) - 800817a: 62e3 str r3, [r4, #44] ; 0x2c - 800817c: 4b04 ldr r3, [pc, #16] ; (8008190 ) - 800817e: 6323 str r3, [r4, #48] ; 0x30 - 8008180: bd10 pop {r4, pc} +080080ec <__swbuf_r>: + 80080ec: b5f8 push {r3, r4, r5, r6, r7, lr} + 80080ee: 460e mov r6, r1 + 80080f0: 4614 mov r4, r2 + 80080f2: 4605 mov r5, r0 + 80080f4: b118 cbz r0, 80080fe <__swbuf_r+0x12> + 80080f6: 6983 ldr r3, [r0, #24] + 80080f8: b90b cbnz r3, 80080fe <__swbuf_r+0x12> + 80080fa: f000 f9e7 bl 80084cc <__sinit> + 80080fe: 4b21 ldr r3, [pc, #132] ; (8008184 <__swbuf_r+0x98>) + 8008100: 429c cmp r4, r3 + 8008102: d12b bne.n 800815c <__swbuf_r+0x70> + 8008104: 686c ldr r4, [r5, #4] + 8008106: 69a3 ldr r3, [r4, #24] + 8008108: 60a3 str r3, [r4, #8] + 800810a: 89a3 ldrh r3, [r4, #12] + 800810c: 071a lsls r2, r3, #28 + 800810e: d52f bpl.n 8008170 <__swbuf_r+0x84> + 8008110: 6923 ldr r3, [r4, #16] + 8008112: b36b cbz r3, 8008170 <__swbuf_r+0x84> + 8008114: 6923 ldr r3, [r4, #16] + 8008116: 6820 ldr r0, [r4, #0] + 8008118: b2f6 uxtb r6, r6 + 800811a: 1ac0 subs r0, r0, r3 + 800811c: 6963 ldr r3, [r4, #20] + 800811e: 4637 mov r7, r6 + 8008120: 4283 cmp r3, r0 + 8008122: dc04 bgt.n 800812e <__swbuf_r+0x42> + 8008124: 4621 mov r1, r4 + 8008126: 4628 mov r0, r5 + 8008128: f000 f93c bl 80083a4 <_fflush_r> + 800812c: bb30 cbnz r0, 800817c <__swbuf_r+0x90> + 800812e: 68a3 ldr r3, [r4, #8] + 8008130: 3001 adds r0, #1 + 8008132: 3b01 subs r3, #1 + 8008134: 60a3 str r3, [r4, #8] + 8008136: 6823 ldr r3, [r4, #0] + 8008138: 1c5a adds r2, r3, #1 + 800813a: 6022 str r2, [r4, #0] + 800813c: 701e strb r6, [r3, #0] + 800813e: 6963 ldr r3, [r4, #20] + 8008140: 4283 cmp r3, r0 + 8008142: d004 beq.n 800814e <__swbuf_r+0x62> + 8008144: 89a3 ldrh r3, [r4, #12] + 8008146: 07db lsls r3, r3, #31 + 8008148: d506 bpl.n 8008158 <__swbuf_r+0x6c> + 800814a: 2e0a cmp r6, #10 + 800814c: d104 bne.n 8008158 <__swbuf_r+0x6c> + 800814e: 4621 mov r1, r4 + 8008150: 4628 mov r0, r5 + 8008152: f000 f927 bl 80083a4 <_fflush_r> + 8008156: b988 cbnz r0, 800817c <__swbuf_r+0x90> + 8008158: 4638 mov r0, r7 + 800815a: bdf8 pop {r3, r4, r5, r6, r7, pc} + 800815c: 4b0a ldr r3, [pc, #40] ; (8008188 <__swbuf_r+0x9c>) + 800815e: 429c cmp r4, r3 + 8008160: d101 bne.n 8008166 <__swbuf_r+0x7a> + 8008162: 68ac ldr r4, [r5, #8] + 8008164: e7cf b.n 8008106 <__swbuf_r+0x1a> + 8008166: 4b09 ldr r3, [pc, #36] ; (800818c <__swbuf_r+0xa0>) + 8008168: 429c cmp r4, r3 + 800816a: bf08 it eq + 800816c: 68ec ldreq r4, [r5, #12] + 800816e: e7ca b.n 8008106 <__swbuf_r+0x1a> + 8008170: 4621 mov r1, r4 + 8008172: 4628 mov r0, r5 + 8008174: f000 f81a bl 80081ac <__swsetup_r> + 8008178: 2800 cmp r0, #0 + 800817a: d0cb beq.n 8008114 <__swbuf_r+0x28> + 800817c: f04f 37ff mov.w r7, #4294967295 ; 0xffffffff + 8008180: e7ea b.n 8008158 <__swbuf_r+0x6c> 8008182: bf00 nop - 8008184: 08008499 .word 0x08008499 - 8008188: 080084bb .word 0x080084bb - 800818c: 080084f3 .word 0x080084f3 - 8008190: 08008517 .word 0x08008517 + 8008184: 080097ec .word 0x080097ec + 8008188: 0800980c .word 0x0800980c + 800818c: 080097cc .word 0x080097cc -08008194 <_cleanup_r>: - 8008194: 4901 ldr r1, [pc, #4] ; (800819c <_cleanup_r+0x8>) - 8008196: f000 b8af b.w 80082f8 <_fwalk_reent> - 800819a: bf00 nop - 800819c: 080080d5 .word 0x080080d5 - -080081a0 <__sfmoreglue>: - 80081a0: b570 push {r4, r5, r6, lr} - 80081a2: 2568 movs r5, #104 ; 0x68 - 80081a4: 1e4a subs r2, r1, #1 - 80081a6: 4355 muls r5, r2 - 80081a8: 460e mov r6, r1 - 80081aa: f105 0174 add.w r1, r5, #116 ; 0x74 - 80081ae: f7fd fbd9 bl 8005964 <_malloc_r> - 80081b2: 4604 mov r4, r0 - 80081b4: b140 cbz r0, 80081c8 <__sfmoreglue+0x28> - 80081b6: 2100 movs r1, #0 - 80081b8: e9c0 1600 strd r1, r6, [r0] - 80081bc: 300c adds r0, #12 - 80081be: 60a0 str r0, [r4, #8] - 80081c0: f105 0268 add.w r2, r5, #104 ; 0x68 - 80081c4: f7fd fb7a bl 80058bc - 80081c8: 4620 mov r0, r4 - 80081ca: bd70 pop {r4, r5, r6, pc} - -080081cc <__sfp_lock_acquire>: - 80081cc: 4801 ldr r0, [pc, #4] ; (80081d4 <__sfp_lock_acquire+0x8>) - 80081ce: f7ff bc7a b.w 8007ac6 <__retarget_lock_acquire_recursive> - 80081d2: bf00 nop - 80081d4: 20000300 .word 0x20000300 - -080081d8 <__sfp_lock_release>: - 80081d8: 4801 ldr r0, [pc, #4] ; (80081e0 <__sfp_lock_release+0x8>) - 80081da: f7ff bc75 b.w 8007ac8 <__retarget_lock_release_recursive> - 80081de: bf00 nop - 80081e0: 20000300 .word 0x20000300 - -080081e4 <__sinit_lock_acquire>: - 80081e4: 4801 ldr r0, [pc, #4] ; (80081ec <__sinit_lock_acquire+0x8>) - 80081e6: f7ff bc6e b.w 8007ac6 <__retarget_lock_acquire_recursive> - 80081ea: bf00 nop - 80081ec: 200002fb .word 0x200002fb - -080081f0 <__sinit_lock_release>: - 80081f0: 4801 ldr r0, [pc, #4] ; (80081f8 <__sinit_lock_release+0x8>) - 80081f2: f7ff bc69 b.w 8007ac8 <__retarget_lock_release_recursive> - 80081f6: bf00 nop - 80081f8: 200002fb .word 0x200002fb - -080081fc <__sinit>: - 80081fc: b510 push {r4, lr} - 80081fe: 4604 mov r4, r0 - 8008200: f7ff fff0 bl 80081e4 <__sinit_lock_acquire> - 8008204: 69a3 ldr r3, [r4, #24] - 8008206: b11b cbz r3, 8008210 <__sinit+0x14> - 8008208: e8bd 4010 ldmia.w sp!, {r4, lr} - 800820c: f7ff bff0 b.w 80081f0 <__sinit_lock_release> - 8008210: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 - 8008214: 6523 str r3, [r4, #80] ; 0x50 - 8008216: 4b13 ldr r3, [pc, #76] ; (8008264 <__sinit+0x68>) - 8008218: 4a13 ldr r2, [pc, #76] ; (8008268 <__sinit+0x6c>) - 800821a: 681b ldr r3, [r3, #0] - 800821c: 62a2 str r2, [r4, #40] ; 0x28 - 800821e: 42a3 cmp r3, r4 - 8008220: bf08 it eq - 8008222: 2301 moveq r3, #1 - 8008224: 4620 mov r0, r4 - 8008226: bf08 it eq - 8008228: 61a3 streq r3, [r4, #24] - 800822a: f000 f81f bl 800826c <__sfp> - 800822e: 6060 str r0, [r4, #4] - 8008230: 4620 mov r0, r4 - 8008232: f000 f81b bl 800826c <__sfp> - 8008236: 60a0 str r0, [r4, #8] - 8008238: 4620 mov r0, r4 - 800823a: f000 f817 bl 800826c <__sfp> - 800823e: 2200 movs r2, #0 - 8008240: 2104 movs r1, #4 - 8008242: 60e0 str r0, [r4, #12] - 8008244: 6860 ldr r0, [r4, #4] - 8008246: f7ff ff81 bl 800814c - 800824a: 2201 movs r2, #1 - 800824c: 2109 movs r1, #9 - 800824e: 68a0 ldr r0, [r4, #8] - 8008250: f7ff ff7c bl 800814c - 8008254: 2202 movs r2, #2 - 8008256: 2112 movs r1, #18 - 8008258: 68e0 ldr r0, [r4, #12] - 800825a: f7ff ff77 bl 800814c - 800825e: 2301 movs r3, #1 - 8008260: 61a3 str r3, [r4, #24] - 8008262: e7d1 b.n 8008208 <__sinit+0xc> - 8008264: 08009158 .word 0x08009158 - 8008268: 08008195 .word 0x08008195 - -0800826c <__sfp>: - 800826c: b5f8 push {r3, r4, r5, r6, r7, lr} - 800826e: 4607 mov r7, r0 - 8008270: f7ff ffac bl 80081cc <__sfp_lock_acquire> - 8008274: 4b1e ldr r3, [pc, #120] ; (80082f0 <__sfp+0x84>) - 8008276: 681e ldr r6, [r3, #0] - 8008278: 69b3 ldr r3, [r6, #24] - 800827a: b913 cbnz r3, 8008282 <__sfp+0x16> - 800827c: 4630 mov r0, r6 - 800827e: f7ff ffbd bl 80081fc <__sinit> - 8008282: 3648 adds r6, #72 ; 0x48 - 8008284: e9d6 3401 ldrd r3, r4, [r6, #4] - 8008288: 3b01 subs r3, #1 - 800828a: d503 bpl.n 8008294 <__sfp+0x28> - 800828c: 6833 ldr r3, [r6, #0] - 800828e: b30b cbz r3, 80082d4 <__sfp+0x68> - 8008290: 6836 ldr r6, [r6, #0] - 8008292: e7f7 b.n 8008284 <__sfp+0x18> - 8008294: f9b4 500c ldrsh.w r5, [r4, #12] - 8008298: b9d5 cbnz r5, 80082d0 <__sfp+0x64> - 800829a: 4b16 ldr r3, [pc, #88] ; (80082f4 <__sfp+0x88>) - 800829c: f104 0058 add.w r0, r4, #88 ; 0x58 - 80082a0: 60e3 str r3, [r4, #12] - 80082a2: 6665 str r5, [r4, #100] ; 0x64 - 80082a4: f7ff fc0e bl 8007ac4 <__retarget_lock_init_recursive> - 80082a8: f7ff ff96 bl 80081d8 <__sfp_lock_release> - 80082ac: 2208 movs r2, #8 - 80082ae: 4629 mov r1, r5 - 80082b0: e9c4 5501 strd r5, r5, [r4, #4] - 80082b4: e9c4 5504 strd r5, r5, [r4, #16] - 80082b8: 6025 str r5, [r4, #0] - 80082ba: 61a5 str r5, [r4, #24] - 80082bc: f104 005c add.w r0, r4, #92 ; 0x5c - 80082c0: f7fd fafc bl 80058bc - 80082c4: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 - 80082c8: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 - 80082cc: 4620 mov r0, r4 - 80082ce: bdf8 pop {r3, r4, r5, r6, r7, pc} - 80082d0: 3468 adds r4, #104 ; 0x68 - 80082d2: e7d9 b.n 8008288 <__sfp+0x1c> - 80082d4: 2104 movs r1, #4 - 80082d6: 4638 mov r0, r7 - 80082d8: f7ff ff62 bl 80081a0 <__sfmoreglue> - 80082dc: 4604 mov r4, r0 - 80082de: 6030 str r0, [r6, #0] - 80082e0: 2800 cmp r0, #0 - 80082e2: d1d5 bne.n 8008290 <__sfp+0x24> - 80082e4: f7ff ff78 bl 80081d8 <__sfp_lock_release> - 80082e8: 230c movs r3, #12 - 80082ea: 603b str r3, [r7, #0] - 80082ec: e7ee b.n 80082cc <__sfp+0x60> - 80082ee: bf00 nop - 80082f0: 08009158 .word 0x08009158 - 80082f4: ffff0001 .word 0xffff0001 - -080082f8 <_fwalk_reent>: - 80082f8: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} - 80082fc: 4606 mov r6, r0 - 80082fe: 4688 mov r8, r1 - 8008300: 2700 movs r7, #0 - 8008302: f100 0448 add.w r4, r0, #72 ; 0x48 - 8008306: e9d4 9501 ldrd r9, r5, [r4, #4] - 800830a: f1b9 0901 subs.w r9, r9, #1 - 800830e: d505 bpl.n 800831c <_fwalk_reent+0x24> - 8008310: 6824 ldr r4, [r4, #0] - 8008312: 2c00 cmp r4, #0 - 8008314: d1f7 bne.n 8008306 <_fwalk_reent+0xe> - 8008316: 4638 mov r0, r7 - 8008318: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} - 800831c: 89ab ldrh r3, [r5, #12] - 800831e: 2b01 cmp r3, #1 - 8008320: d907 bls.n 8008332 <_fwalk_reent+0x3a> - 8008322: f9b5 300e ldrsh.w r3, [r5, #14] - 8008326: 3301 adds r3, #1 - 8008328: d003 beq.n 8008332 <_fwalk_reent+0x3a> - 800832a: 4629 mov r1, r5 - 800832c: 4630 mov r0, r6 - 800832e: 47c0 blx r8 - 8008330: 4307 orrs r7, r0 - 8008332: 3568 adds r5, #104 ; 0x68 - 8008334: e7e9 b.n 800830a <_fwalk_reent+0x12> - -08008336 <__swhatbuf_r>: - 8008336: b570 push {r4, r5, r6, lr} - 8008338: 460e mov r6, r1 - 800833a: f9b1 100e ldrsh.w r1, [r1, #14] - 800833e: 4614 mov r4, r2 - 8008340: 2900 cmp r1, #0 - 8008342: 461d mov r5, r3 - 8008344: b096 sub sp, #88 ; 0x58 - 8008346: da07 bge.n 8008358 <__swhatbuf_r+0x22> - 8008348: 2300 movs r3, #0 - 800834a: 602b str r3, [r5, #0] - 800834c: 89b3 ldrh r3, [r6, #12] - 800834e: 061a lsls r2, r3, #24 - 8008350: d410 bmi.n 8008374 <__swhatbuf_r+0x3e> - 8008352: f44f 6380 mov.w r3, #1024 ; 0x400 - 8008356: e00e b.n 8008376 <__swhatbuf_r+0x40> - 8008358: 466a mov r2, sp - 800835a: f000 f903 bl 8008564 <_fstat_r> - 800835e: 2800 cmp r0, #0 - 8008360: dbf2 blt.n 8008348 <__swhatbuf_r+0x12> - 8008362: 9a01 ldr r2, [sp, #4] - 8008364: f402 4270 and.w r2, r2, #61440 ; 0xf000 - 8008368: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 - 800836c: 425a negs r2, r3 - 800836e: 415a adcs r2, r3 - 8008370: 602a str r2, [r5, #0] - 8008372: e7ee b.n 8008352 <__swhatbuf_r+0x1c> - 8008374: 2340 movs r3, #64 ; 0x40 - 8008376: 2000 movs r0, #0 - 8008378: 6023 str r3, [r4, #0] - 800837a: b016 add sp, #88 ; 0x58 - 800837c: bd70 pop {r4, r5, r6, pc} +08008190 <__ascii_wctomb>: + 8008190: 4603 mov r3, r0 + 8008192: 4608 mov r0, r1 + 8008194: b141 cbz r1, 80081a8 <__ascii_wctomb+0x18> + 8008196: 2aff cmp r2, #255 ; 0xff + 8008198: d904 bls.n 80081a4 <__ascii_wctomb+0x14> + 800819a: 228a movs r2, #138 ; 0x8a + 800819c: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80081a0: 601a str r2, [r3, #0] + 80081a2: 4770 bx lr + 80081a4: 2001 movs r0, #1 + 80081a6: 700a strb r2, [r1, #0] + 80081a8: 4770 bx lr ... -08008380 <__smakebuf_r>: - 8008380: 898b ldrh r3, [r1, #12] - 8008382: b573 push {r0, r1, r4, r5, r6, lr} - 8008384: 079d lsls r5, r3, #30 - 8008386: 4606 mov r6, r0 - 8008388: 460c mov r4, r1 - 800838a: d507 bpl.n 800839c <__smakebuf_r+0x1c> - 800838c: f104 0347 add.w r3, r4, #71 ; 0x47 - 8008390: 6023 str r3, [r4, #0] - 8008392: 6123 str r3, [r4, #16] - 8008394: 2301 movs r3, #1 - 8008396: 6163 str r3, [r4, #20] - 8008398: b002 add sp, #8 - 800839a: bd70 pop {r4, r5, r6, pc} - 800839c: 466a mov r2, sp - 800839e: ab01 add r3, sp, #4 - 80083a0: f7ff ffc9 bl 8008336 <__swhatbuf_r> - 80083a4: 9900 ldr r1, [sp, #0] - 80083a6: 4605 mov r5, r0 - 80083a8: 4630 mov r0, r6 - 80083aa: f7fd fadb bl 8005964 <_malloc_r> - 80083ae: b948 cbnz r0, 80083c4 <__smakebuf_r+0x44> - 80083b0: f9b4 300c ldrsh.w r3, [r4, #12] - 80083b4: 059a lsls r2, r3, #22 - 80083b6: d4ef bmi.n 8008398 <__smakebuf_r+0x18> - 80083b8: f023 0303 bic.w r3, r3, #3 - 80083bc: f043 0302 orr.w r3, r3, #2 - 80083c0: 81a3 strh r3, [r4, #12] - 80083c2: e7e3 b.n 800838c <__smakebuf_r+0xc> - 80083c4: 4b0d ldr r3, [pc, #52] ; (80083fc <__smakebuf_r+0x7c>) - 80083c6: 62b3 str r3, [r6, #40] ; 0x28 - 80083c8: 89a3 ldrh r3, [r4, #12] - 80083ca: 6020 str r0, [r4, #0] - 80083cc: f043 0380 orr.w r3, r3, #128 ; 0x80 - 80083d0: 81a3 strh r3, [r4, #12] - 80083d2: 9b00 ldr r3, [sp, #0] - 80083d4: 6120 str r0, [r4, #16] - 80083d6: 6163 str r3, [r4, #20] - 80083d8: 9b01 ldr r3, [sp, #4] - 80083da: b15b cbz r3, 80083f4 <__smakebuf_r+0x74> - 80083dc: 4630 mov r0, r6 - 80083de: f9b4 100e ldrsh.w r1, [r4, #14] - 80083e2: f000 f8d1 bl 8008588 <_isatty_r> - 80083e6: b128 cbz r0, 80083f4 <__smakebuf_r+0x74> - 80083e8: 89a3 ldrh r3, [r4, #12] - 80083ea: f023 0303 bic.w r3, r3, #3 - 80083ee: f043 0301 orr.w r3, r3, #1 - 80083f2: 81a3 strh r3, [r4, #12] - 80083f4: 89a0 ldrh r0, [r4, #12] - 80083f6: 4305 orrs r5, r0 - 80083f8: 81a5 strh r5, [r4, #12] - 80083fa: e7cd b.n 8008398 <__smakebuf_r+0x18> - 80083fc: 08008195 .word 0x08008195 +080081ac <__swsetup_r>: + 80081ac: 4b32 ldr r3, [pc, #200] ; (8008278 <__swsetup_r+0xcc>) + 80081ae: b570 push {r4, r5, r6, lr} + 80081b0: 681d ldr r5, [r3, #0] + 80081b2: 4606 mov r6, r0 + 80081b4: 460c mov r4, r1 + 80081b6: b125 cbz r5, 80081c2 <__swsetup_r+0x16> + 80081b8: 69ab ldr r3, [r5, #24] + 80081ba: b913 cbnz r3, 80081c2 <__swsetup_r+0x16> + 80081bc: 4628 mov r0, r5 + 80081be: f000 f985 bl 80084cc <__sinit> + 80081c2: 4b2e ldr r3, [pc, #184] ; (800827c <__swsetup_r+0xd0>) + 80081c4: 429c cmp r4, r3 + 80081c6: d10f bne.n 80081e8 <__swsetup_r+0x3c> + 80081c8: 686c ldr r4, [r5, #4] + 80081ca: 89a3 ldrh r3, [r4, #12] + 80081cc: f9b4 200c ldrsh.w r2, [r4, #12] + 80081d0: 0719 lsls r1, r3, #28 + 80081d2: d42c bmi.n 800822e <__swsetup_r+0x82> + 80081d4: 06dd lsls r5, r3, #27 + 80081d6: d411 bmi.n 80081fc <__swsetup_r+0x50> + 80081d8: 2309 movs r3, #9 + 80081da: 6033 str r3, [r6, #0] + 80081dc: f042 0340 orr.w r3, r2, #64 ; 0x40 + 80081e0: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80081e4: 81a3 strh r3, [r4, #12] + 80081e6: e03e b.n 8008266 <__swsetup_r+0xba> + 80081e8: 4b25 ldr r3, [pc, #148] ; (8008280 <__swsetup_r+0xd4>) + 80081ea: 429c cmp r4, r3 + 80081ec: d101 bne.n 80081f2 <__swsetup_r+0x46> + 80081ee: 68ac ldr r4, [r5, #8] + 80081f0: e7eb b.n 80081ca <__swsetup_r+0x1e> + 80081f2: 4b24 ldr r3, [pc, #144] ; (8008284 <__swsetup_r+0xd8>) + 80081f4: 429c cmp r4, r3 + 80081f6: bf08 it eq + 80081f8: 68ec ldreq r4, [r5, #12] + 80081fa: e7e6 b.n 80081ca <__swsetup_r+0x1e> + 80081fc: 0758 lsls r0, r3, #29 + 80081fe: d512 bpl.n 8008226 <__swsetup_r+0x7a> + 8008200: 6b61 ldr r1, [r4, #52] ; 0x34 + 8008202: b141 cbz r1, 8008216 <__swsetup_r+0x6a> + 8008204: f104 0344 add.w r3, r4, #68 ; 0x44 + 8008208: 4299 cmp r1, r3 + 800820a: d002 beq.n 8008212 <__swsetup_r+0x66> + 800820c: 4630 mov r0, r6 + 800820e: f7fd fcc7 bl 8005ba0 <_free_r> + 8008212: 2300 movs r3, #0 + 8008214: 6363 str r3, [r4, #52] ; 0x34 + 8008216: 89a3 ldrh r3, [r4, #12] + 8008218: f023 0324 bic.w r3, r3, #36 ; 0x24 + 800821c: 81a3 strh r3, [r4, #12] + 800821e: 2300 movs r3, #0 + 8008220: 6063 str r3, [r4, #4] + 8008222: 6923 ldr r3, [r4, #16] + 8008224: 6023 str r3, [r4, #0] + 8008226: 89a3 ldrh r3, [r4, #12] + 8008228: f043 0308 orr.w r3, r3, #8 + 800822c: 81a3 strh r3, [r4, #12] + 800822e: 6923 ldr r3, [r4, #16] + 8008230: b94b cbnz r3, 8008246 <__swsetup_r+0x9a> + 8008232: 89a3 ldrh r3, [r4, #12] + 8008234: f403 7320 and.w r3, r3, #640 ; 0x280 + 8008238: f5b3 7f00 cmp.w r3, #512 ; 0x200 + 800823c: d003 beq.n 8008246 <__swsetup_r+0x9a> + 800823e: 4621 mov r1, r4 + 8008240: 4630 mov r0, r6 + 8008242: f000 fa05 bl 8008650 <__smakebuf_r> + 8008246: 89a0 ldrh r0, [r4, #12] + 8008248: f9b4 200c ldrsh.w r2, [r4, #12] + 800824c: f010 0301 ands.w r3, r0, #1 + 8008250: d00a beq.n 8008268 <__swsetup_r+0xbc> + 8008252: 2300 movs r3, #0 + 8008254: 60a3 str r3, [r4, #8] + 8008256: 6963 ldr r3, [r4, #20] + 8008258: 425b negs r3, r3 + 800825a: 61a3 str r3, [r4, #24] + 800825c: 6923 ldr r3, [r4, #16] + 800825e: b943 cbnz r3, 8008272 <__swsetup_r+0xc6> + 8008260: f010 0080 ands.w r0, r0, #128 ; 0x80 + 8008264: d1ba bne.n 80081dc <__swsetup_r+0x30> + 8008266: bd70 pop {r4, r5, r6, pc} + 8008268: 0781 lsls r1, r0, #30 + 800826a: bf58 it pl + 800826c: 6963 ldrpl r3, [r4, #20] + 800826e: 60a3 str r3, [r4, #8] + 8008270: e7f4 b.n 800825c <__swsetup_r+0xb0> + 8008272: 2000 movs r0, #0 + 8008274: e7f7 b.n 8008266 <__swsetup_r+0xba> + 8008276: bf00 nop + 8008278: 2000000c .word 0x2000000c + 800827c: 080097ec .word 0x080097ec + 8008280: 0800980c .word 0x0800980c + 8008284: 080097cc .word 0x080097cc -08008400 <_malloc_usable_size_r>: - 8008400: f851 3c04 ldr.w r3, [r1, #-4] - 8008404: 1f18 subs r0, r3, #4 - 8008406: 2b00 cmp r3, #0 - 8008408: bfbc itt lt - 800840a: 580b ldrlt r3, [r1, r0] - 800840c: 18c0 addlt r0, r0, r3 - 800840e: 4770 bx lr +08008288 : + 8008288: 2006 movs r0, #6 + 800828a: b508 push {r3, lr} + 800828c: f000 fa50 bl 8008730 + 8008290: 2001 movs r0, #1 + 8008292: f7f9 f9f5 bl 8001680 <_exit> + ... -08008410 <_raise_r>: - 8008410: 291f cmp r1, #31 - 8008412: b538 push {r3, r4, r5, lr} - 8008414: 4604 mov r4, r0 - 8008416: 460d mov r5, r1 - 8008418: d904 bls.n 8008424 <_raise_r+0x14> - 800841a: 2316 movs r3, #22 - 800841c: 6003 str r3, [r0, #0] - 800841e: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff - 8008422: bd38 pop {r3, r4, r5, pc} - 8008424: 6c42 ldr r2, [r0, #68] ; 0x44 - 8008426: b112 cbz r2, 800842e <_raise_r+0x1e> - 8008428: f852 3021 ldr.w r3, [r2, r1, lsl #2] - 800842c: b94b cbnz r3, 8008442 <_raise_r+0x32> - 800842e: 4620 mov r0, r4 - 8008430: f000 f830 bl 8008494 <_getpid_r> - 8008434: 462a mov r2, r5 - 8008436: 4601 mov r1, r0 - 8008438: 4620 mov r0, r4 - 800843a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} - 800843e: f000 b817 b.w 8008470 <_kill_r> - 8008442: 2b01 cmp r3, #1 - 8008444: d00a beq.n 800845c <_raise_r+0x4c> - 8008446: 1c59 adds r1, r3, #1 - 8008448: d103 bne.n 8008452 <_raise_r+0x42> - 800844a: 2316 movs r3, #22 - 800844c: 6003 str r3, [r0, #0] - 800844e: 2001 movs r0, #1 - 8008450: e7e7 b.n 8008422 <_raise_r+0x12> - 8008452: 2400 movs r4, #0 - 8008454: 4628 mov r0, r5 - 8008456: f842 4025 str.w r4, [r2, r5, lsl #2] - 800845a: 4798 blx r3 - 800845c: 2000 movs r0, #0 - 800845e: e7e0 b.n 8008422 <_raise_r+0x12> +08008298 <__sflush_r>: + 8008298: 898a ldrh r2, [r1, #12] + 800829a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 800829e: 4605 mov r5, r0 + 80082a0: 0710 lsls r0, r2, #28 + 80082a2: 460c mov r4, r1 + 80082a4: d458 bmi.n 8008358 <__sflush_r+0xc0> + 80082a6: 684b ldr r3, [r1, #4] + 80082a8: 2b00 cmp r3, #0 + 80082aa: dc05 bgt.n 80082b8 <__sflush_r+0x20> + 80082ac: 6c0b ldr r3, [r1, #64] ; 0x40 + 80082ae: 2b00 cmp r3, #0 + 80082b0: dc02 bgt.n 80082b8 <__sflush_r+0x20> + 80082b2: 2000 movs r0, #0 + 80082b4: e8bd 81f0 ldmia.w sp!, {r4, r5, r6, r7, r8, pc} + 80082b8: 6ae6 ldr r6, [r4, #44] ; 0x2c + 80082ba: 2e00 cmp r6, #0 + 80082bc: d0f9 beq.n 80082b2 <__sflush_r+0x1a> + 80082be: 2300 movs r3, #0 + 80082c0: f412 5280 ands.w r2, r2, #4096 ; 0x1000 + 80082c4: 682f ldr r7, [r5, #0] + 80082c6: 602b str r3, [r5, #0] + 80082c8: d032 beq.n 8008330 <__sflush_r+0x98> + 80082ca: 6d60 ldr r0, [r4, #84] ; 0x54 + 80082cc: 89a3 ldrh r3, [r4, #12] + 80082ce: 075a lsls r2, r3, #29 + 80082d0: d505 bpl.n 80082de <__sflush_r+0x46> + 80082d2: 6863 ldr r3, [r4, #4] + 80082d4: 1ac0 subs r0, r0, r3 + 80082d6: 6b63 ldr r3, [r4, #52] ; 0x34 + 80082d8: b10b cbz r3, 80082de <__sflush_r+0x46> + 80082da: 6c23 ldr r3, [r4, #64] ; 0x40 + 80082dc: 1ac0 subs r0, r0, r3 + 80082de: 2300 movs r3, #0 + 80082e0: 4602 mov r2, r0 + 80082e2: 6ae6 ldr r6, [r4, #44] ; 0x2c + 80082e4: 4628 mov r0, r5 + 80082e6: 6a21 ldr r1, [r4, #32] + 80082e8: 47b0 blx r6 + 80082ea: 1c43 adds r3, r0, #1 + 80082ec: 89a3 ldrh r3, [r4, #12] + 80082ee: d106 bne.n 80082fe <__sflush_r+0x66> + 80082f0: 6829 ldr r1, [r5, #0] + 80082f2: 291d cmp r1, #29 + 80082f4: d82c bhi.n 8008350 <__sflush_r+0xb8> + 80082f6: 4a2a ldr r2, [pc, #168] ; (80083a0 <__sflush_r+0x108>) + 80082f8: 40ca lsrs r2, r1 + 80082fa: 07d6 lsls r6, r2, #31 + 80082fc: d528 bpl.n 8008350 <__sflush_r+0xb8> + 80082fe: 2200 movs r2, #0 + 8008300: 6062 str r2, [r4, #4] + 8008302: 6922 ldr r2, [r4, #16] + 8008304: 04d9 lsls r1, r3, #19 + 8008306: 6022 str r2, [r4, #0] + 8008308: d504 bpl.n 8008314 <__sflush_r+0x7c> + 800830a: 1c42 adds r2, r0, #1 + 800830c: d101 bne.n 8008312 <__sflush_r+0x7a> + 800830e: 682b ldr r3, [r5, #0] + 8008310: b903 cbnz r3, 8008314 <__sflush_r+0x7c> + 8008312: 6560 str r0, [r4, #84] ; 0x54 + 8008314: 6b61 ldr r1, [r4, #52] ; 0x34 + 8008316: 602f str r7, [r5, #0] + 8008318: 2900 cmp r1, #0 + 800831a: d0ca beq.n 80082b2 <__sflush_r+0x1a> + 800831c: f104 0344 add.w r3, r4, #68 ; 0x44 + 8008320: 4299 cmp r1, r3 + 8008322: d002 beq.n 800832a <__sflush_r+0x92> + 8008324: 4628 mov r0, r5 + 8008326: f7fd fc3b bl 8005ba0 <_free_r> + 800832a: 2000 movs r0, #0 + 800832c: 6360 str r0, [r4, #52] ; 0x34 + 800832e: e7c1 b.n 80082b4 <__sflush_r+0x1c> + 8008330: 6a21 ldr r1, [r4, #32] + 8008332: 2301 movs r3, #1 + 8008334: 4628 mov r0, r5 + 8008336: 47b0 blx r6 + 8008338: 1c41 adds r1, r0, #1 + 800833a: d1c7 bne.n 80082cc <__sflush_r+0x34> + 800833c: 682b ldr r3, [r5, #0] + 800833e: 2b00 cmp r3, #0 + 8008340: d0c4 beq.n 80082cc <__sflush_r+0x34> + 8008342: 2b1d cmp r3, #29 + 8008344: d001 beq.n 800834a <__sflush_r+0xb2> + 8008346: 2b16 cmp r3, #22 + 8008348: d101 bne.n 800834e <__sflush_r+0xb6> + 800834a: 602f str r7, [r5, #0] + 800834c: e7b1 b.n 80082b2 <__sflush_r+0x1a> + 800834e: 89a3 ldrh r3, [r4, #12] + 8008350: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8008354: 81a3 strh r3, [r4, #12] + 8008356: e7ad b.n 80082b4 <__sflush_r+0x1c> + 8008358: 690f ldr r7, [r1, #16] + 800835a: 2f00 cmp r7, #0 + 800835c: d0a9 beq.n 80082b2 <__sflush_r+0x1a> + 800835e: 0793 lsls r3, r2, #30 + 8008360: bf18 it ne + 8008362: 2300 movne r3, #0 + 8008364: 680e ldr r6, [r1, #0] + 8008366: bf08 it eq + 8008368: 694b ldreq r3, [r1, #20] + 800836a: eba6 0807 sub.w r8, r6, r7 + 800836e: 600f str r7, [r1, #0] + 8008370: 608b str r3, [r1, #8] + 8008372: f1b8 0f00 cmp.w r8, #0 + 8008376: dd9c ble.n 80082b2 <__sflush_r+0x1a> + 8008378: 4643 mov r3, r8 + 800837a: 463a mov r2, r7 + 800837c: 4628 mov r0, r5 + 800837e: 6a21 ldr r1, [r4, #32] + 8008380: 6aa6 ldr r6, [r4, #40] ; 0x28 + 8008382: 47b0 blx r6 + 8008384: 2800 cmp r0, #0 + 8008386: dc06 bgt.n 8008396 <__sflush_r+0xfe> + 8008388: 89a3 ldrh r3, [r4, #12] + 800838a: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 800838e: f043 0340 orr.w r3, r3, #64 ; 0x40 + 8008392: 81a3 strh r3, [r4, #12] + 8008394: e78e b.n 80082b4 <__sflush_r+0x1c> + 8008396: 4407 add r7, r0 + 8008398: eba8 0800 sub.w r8, r8, r0 + 800839c: e7e9 b.n 8008372 <__sflush_r+0xda> + 800839e: bf00 nop + 80083a0: 20400001 .word 0x20400001 -08008460 : - 8008460: 4b02 ldr r3, [pc, #8] ; (800846c ) - 8008462: 4601 mov r1, r0 - 8008464: 6818 ldr r0, [r3, #0] - 8008466: f7ff bfd3 b.w 8008410 <_raise_r> +080083a4 <_fflush_r>: + 80083a4: b538 push {r3, r4, r5, lr} + 80083a6: 690b ldr r3, [r1, #16] + 80083a8: 4605 mov r5, r0 + 80083aa: 460c mov r4, r1 + 80083ac: b913 cbnz r3, 80083b4 <_fflush_r+0x10> + 80083ae: 2500 movs r5, #0 + 80083b0: 4628 mov r0, r5 + 80083b2: bd38 pop {r3, r4, r5, pc} + 80083b4: b118 cbz r0, 80083be <_fflush_r+0x1a> + 80083b6: 6983 ldr r3, [r0, #24] + 80083b8: b90b cbnz r3, 80083be <_fflush_r+0x1a> + 80083ba: f000 f887 bl 80084cc <__sinit> + 80083be: 4b14 ldr r3, [pc, #80] ; (8008410 <_fflush_r+0x6c>) + 80083c0: 429c cmp r4, r3 + 80083c2: d11b bne.n 80083fc <_fflush_r+0x58> + 80083c4: 686c ldr r4, [r5, #4] + 80083c6: f9b4 300c ldrsh.w r3, [r4, #12] + 80083ca: 2b00 cmp r3, #0 + 80083cc: d0ef beq.n 80083ae <_fflush_r+0xa> + 80083ce: 6e62 ldr r2, [r4, #100] ; 0x64 + 80083d0: 07d0 lsls r0, r2, #31 + 80083d2: d404 bmi.n 80083de <_fflush_r+0x3a> + 80083d4: 0599 lsls r1, r3, #22 + 80083d6: d402 bmi.n 80083de <_fflush_r+0x3a> + 80083d8: 6da0 ldr r0, [r4, #88] ; 0x58 + 80083da: f7ff fcdc bl 8007d96 <__retarget_lock_acquire_recursive> + 80083de: 4628 mov r0, r5 + 80083e0: 4621 mov r1, r4 + 80083e2: f7ff ff59 bl 8008298 <__sflush_r> + 80083e6: 6e63 ldr r3, [r4, #100] ; 0x64 + 80083e8: 4605 mov r5, r0 + 80083ea: 07da lsls r2, r3, #31 + 80083ec: d4e0 bmi.n 80083b0 <_fflush_r+0xc> + 80083ee: 89a3 ldrh r3, [r4, #12] + 80083f0: 059b lsls r3, r3, #22 + 80083f2: d4dd bmi.n 80083b0 <_fflush_r+0xc> + 80083f4: 6da0 ldr r0, [r4, #88] ; 0x58 + 80083f6: f7ff fccf bl 8007d98 <__retarget_lock_release_recursive> + 80083fa: e7d9 b.n 80083b0 <_fflush_r+0xc> + 80083fc: 4b05 ldr r3, [pc, #20] ; (8008414 <_fflush_r+0x70>) + 80083fe: 429c cmp r4, r3 + 8008400: d101 bne.n 8008406 <_fflush_r+0x62> + 8008402: 68ac ldr r4, [r5, #8] + 8008404: e7df b.n 80083c6 <_fflush_r+0x22> + 8008406: 4b04 ldr r3, [pc, #16] ; (8008418 <_fflush_r+0x74>) + 8008408: 429c cmp r4, r3 + 800840a: bf08 it eq + 800840c: 68ec ldreq r4, [r5, #12] + 800840e: e7da b.n 80083c6 <_fflush_r+0x22> + 8008410: 080097ec .word 0x080097ec + 8008414: 0800980c .word 0x0800980c + 8008418: 080097cc .word 0x080097cc + +0800841c : + 800841c: 2300 movs r3, #0 + 800841e: b510 push {r4, lr} + 8008420: 4604 mov r4, r0 + 8008422: e9c0 3300 strd r3, r3, [r0] + 8008426: e9c0 3304 strd r3, r3, [r0, #16] + 800842a: 6083 str r3, [r0, #8] + 800842c: 8181 strh r1, [r0, #12] + 800842e: 6643 str r3, [r0, #100] ; 0x64 + 8008430: 81c2 strh r2, [r0, #14] + 8008432: 6183 str r3, [r0, #24] + 8008434: 4619 mov r1, r3 + 8008436: 2208 movs r2, #8 + 8008438: 305c adds r0, #92 ; 0x5c + 800843a: f7fd fba9 bl 8005b90 + 800843e: 4b05 ldr r3, [pc, #20] ; (8008454 ) + 8008440: 6224 str r4, [r4, #32] + 8008442: 6263 str r3, [r4, #36] ; 0x24 + 8008444: 4b04 ldr r3, [pc, #16] ; (8008458 ) + 8008446: 62a3 str r3, [r4, #40] ; 0x28 + 8008448: 4b04 ldr r3, [pc, #16] ; (800845c ) + 800844a: 62e3 str r3, [r4, #44] ; 0x2c + 800844c: 4b04 ldr r3, [pc, #16] ; (8008460 ) + 800844e: 6323 str r3, [r4, #48] ; 0x30 + 8008450: bd10 pop {r4, pc} + 8008452: bf00 nop + 8008454: 08008769 .word 0x08008769 + 8008458: 0800878b .word 0x0800878b + 800845c: 080087c3 .word 0x080087c3 + 8008460: 080087e7 .word 0x080087e7 + +08008464 <_cleanup_r>: + 8008464: 4901 ldr r1, [pc, #4] ; (800846c <_cleanup_r+0x8>) + 8008466: f000 b8af b.w 80085c8 <_fwalk_reent> 800846a: bf00 nop - 800846c: 2000000c .word 0x2000000c + 800846c: 080083a5 .word 0x080083a5 -08008470 <_kill_r>: - 8008470: b538 push {r3, r4, r5, lr} - 8008472: 2300 movs r3, #0 - 8008474: 4d06 ldr r5, [pc, #24] ; (8008490 <_kill_r+0x20>) - 8008476: 4604 mov r4, r0 - 8008478: 4608 mov r0, r1 - 800847a: 4611 mov r1, r2 - 800847c: 602b str r3, [r5, #0] - 800847e: f7f9 f8d3 bl 8001628 <_kill> - 8008482: 1c43 adds r3, r0, #1 - 8008484: d102 bne.n 800848c <_kill_r+0x1c> - 8008486: 682b ldr r3, [r5, #0] - 8008488: b103 cbz r3, 800848c <_kill_r+0x1c> - 800848a: 6023 str r3, [r4, #0] - 800848c: bd38 pop {r3, r4, r5, pc} - 800848e: bf00 nop - 8008490: 200002f4 .word 0x200002f4 +08008470 <__sfmoreglue>: + 8008470: b570 push {r4, r5, r6, lr} + 8008472: 2568 movs r5, #104 ; 0x68 + 8008474: 1e4a subs r2, r1, #1 + 8008476: 4355 muls r5, r2 + 8008478: 460e mov r6, r1 + 800847a: f105 0174 add.w r1, r5, #116 ; 0x74 + 800847e: f7fd fbdb bl 8005c38 <_malloc_r> + 8008482: 4604 mov r4, r0 + 8008484: b140 cbz r0, 8008498 <__sfmoreglue+0x28> + 8008486: 2100 movs r1, #0 + 8008488: e9c0 1600 strd r1, r6, [r0] + 800848c: 300c adds r0, #12 + 800848e: 60a0 str r0, [r4, #8] + 8008490: f105 0268 add.w r2, r5, #104 ; 0x68 + 8008494: f7fd fb7c bl 8005b90 + 8008498: 4620 mov r0, r4 + 800849a: bd70 pop {r4, r5, r6, pc} -08008494 <_getpid_r>: - 8008494: f7f9 b8c1 b.w 800161a <_getpid> +0800849c <__sfp_lock_acquire>: + 800849c: 4801 ldr r0, [pc, #4] ; (80084a4 <__sfp_lock_acquire+0x8>) + 800849e: f7ff bc7a b.w 8007d96 <__retarget_lock_acquire_recursive> + 80084a2: bf00 nop + 80084a4: 20000348 .word 0x20000348 -08008498 <__sread>: - 8008498: b510 push {r4, lr} - 800849a: 460c mov r4, r1 - 800849c: f9b1 100e ldrsh.w r1, [r1, #14] - 80084a0: f000 f894 bl 80085cc <_read_r> - 80084a4: 2800 cmp r0, #0 - 80084a6: bfab itete ge - 80084a8: 6d63 ldrge r3, [r4, #84] ; 0x54 - 80084aa: 89a3 ldrhlt r3, [r4, #12] - 80084ac: 181b addge r3, r3, r0 - 80084ae: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 - 80084b2: bfac ite ge - 80084b4: 6563 strge r3, [r4, #84] ; 0x54 - 80084b6: 81a3 strhlt r3, [r4, #12] - 80084b8: bd10 pop {r4, pc} +080084a8 <__sfp_lock_release>: + 80084a8: 4801 ldr r0, [pc, #4] ; (80084b0 <__sfp_lock_release+0x8>) + 80084aa: f7ff bc75 b.w 8007d98 <__retarget_lock_release_recursive> + 80084ae: bf00 nop + 80084b0: 20000348 .word 0x20000348 -080084ba <__swrite>: - 80084ba: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} - 80084be: 461f mov r7, r3 - 80084c0: 898b ldrh r3, [r1, #12] - 80084c2: 4605 mov r5, r0 - 80084c4: 05db lsls r3, r3, #23 - 80084c6: 460c mov r4, r1 - 80084c8: 4616 mov r6, r2 - 80084ca: d505 bpl.n 80084d8 <__swrite+0x1e> - 80084cc: 2302 movs r3, #2 - 80084ce: 2200 movs r2, #0 - 80084d0: f9b1 100e ldrsh.w r1, [r1, #14] - 80084d4: f000 f868 bl 80085a8 <_lseek_r> - 80084d8: 89a3 ldrh r3, [r4, #12] - 80084da: 4632 mov r2, r6 - 80084dc: f423 5380 bic.w r3, r3, #4096 ; 0x1000 - 80084e0: 81a3 strh r3, [r4, #12] - 80084e2: 4628 mov r0, r5 - 80084e4: 463b mov r3, r7 - 80084e6: f9b4 100e ldrsh.w r1, [r4, #14] - 80084ea: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} - 80084ee: f000 b817 b.w 8008520 <_write_r> +080084b4 <__sinit_lock_acquire>: + 80084b4: 4801 ldr r0, [pc, #4] ; (80084bc <__sinit_lock_acquire+0x8>) + 80084b6: f7ff bc6e b.w 8007d96 <__retarget_lock_acquire_recursive> + 80084ba: bf00 nop + 80084bc: 20000343 .word 0x20000343 -080084f2 <__sseek>: - 80084f2: b510 push {r4, lr} - 80084f4: 460c mov r4, r1 - 80084f6: f9b1 100e ldrsh.w r1, [r1, #14] - 80084fa: f000 f855 bl 80085a8 <_lseek_r> - 80084fe: 1c43 adds r3, r0, #1 - 8008500: 89a3 ldrh r3, [r4, #12] - 8008502: bf15 itete ne - 8008504: 6560 strne r0, [r4, #84] ; 0x54 - 8008506: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 - 800850a: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 - 800850e: 81a3 strheq r3, [r4, #12] - 8008510: bf18 it ne - 8008512: 81a3 strhne r3, [r4, #12] - 8008514: bd10 pop {r4, pc} +080084c0 <__sinit_lock_release>: + 80084c0: 4801 ldr r0, [pc, #4] ; (80084c8 <__sinit_lock_release+0x8>) + 80084c2: f7ff bc69 b.w 8007d98 <__retarget_lock_release_recursive> + 80084c6: bf00 nop + 80084c8: 20000343 .word 0x20000343 -08008516 <__sclose>: - 8008516: f9b1 100e ldrsh.w r1, [r1, #14] - 800851a: f000 b813 b.w 8008544 <_close_r> +080084cc <__sinit>: + 80084cc: b510 push {r4, lr} + 80084ce: 4604 mov r4, r0 + 80084d0: f7ff fff0 bl 80084b4 <__sinit_lock_acquire> + 80084d4: 69a3 ldr r3, [r4, #24] + 80084d6: b11b cbz r3, 80084e0 <__sinit+0x14> + 80084d8: e8bd 4010 ldmia.w sp!, {r4, lr} + 80084dc: f7ff bff0 b.w 80084c0 <__sinit_lock_release> + 80084e0: e9c4 3312 strd r3, r3, [r4, #72] ; 0x48 + 80084e4: 6523 str r3, [r4, #80] ; 0x50 + 80084e6: 4b13 ldr r3, [pc, #76] ; (8008534 <__sinit+0x68>) + 80084e8: 4a13 ldr r2, [pc, #76] ; (8008538 <__sinit+0x6c>) + 80084ea: 681b ldr r3, [r3, #0] + 80084ec: 62a2 str r2, [r4, #40] ; 0x28 + 80084ee: 42a3 cmp r3, r4 + 80084f0: bf08 it eq + 80084f2: 2301 moveq r3, #1 + 80084f4: 4620 mov r0, r4 + 80084f6: bf08 it eq + 80084f8: 61a3 streq r3, [r4, #24] + 80084fa: f000 f81f bl 800853c <__sfp> + 80084fe: 6060 str r0, [r4, #4] + 8008500: 4620 mov r0, r4 + 8008502: f000 f81b bl 800853c <__sfp> + 8008506: 60a0 str r0, [r4, #8] + 8008508: 4620 mov r0, r4 + 800850a: f000 f817 bl 800853c <__sfp> + 800850e: 2200 movs r2, #0 + 8008510: 2104 movs r1, #4 + 8008512: 60e0 str r0, [r4, #12] + 8008514: 6860 ldr r0, [r4, #4] + 8008516: f7ff ff81 bl 800841c + 800851a: 2201 movs r2, #1 + 800851c: 2109 movs r1, #9 + 800851e: 68a0 ldr r0, [r4, #8] + 8008520: f7ff ff7c bl 800841c + 8008524: 2202 movs r2, #2 + 8008526: 2112 movs r1, #18 + 8008528: 68e0 ldr r0, [r4, #12] + 800852a: f7ff ff77 bl 800841c + 800852e: 2301 movs r3, #1 + 8008530: 61a3 str r3, [r4, #24] + 8008532: e7d1 b.n 80084d8 <__sinit+0xc> + 8008534: 08009448 .word 0x08009448 + 8008538: 08008465 .word 0x08008465 + +0800853c <__sfp>: + 800853c: b5f8 push {r3, r4, r5, r6, r7, lr} + 800853e: 4607 mov r7, r0 + 8008540: f7ff ffac bl 800849c <__sfp_lock_acquire> + 8008544: 4b1e ldr r3, [pc, #120] ; (80085c0 <__sfp+0x84>) + 8008546: 681e ldr r6, [r3, #0] + 8008548: 69b3 ldr r3, [r6, #24] + 800854a: b913 cbnz r3, 8008552 <__sfp+0x16> + 800854c: 4630 mov r0, r6 + 800854e: f7ff ffbd bl 80084cc <__sinit> + 8008552: 3648 adds r6, #72 ; 0x48 + 8008554: e9d6 3401 ldrd r3, r4, [r6, #4] + 8008558: 3b01 subs r3, #1 + 800855a: d503 bpl.n 8008564 <__sfp+0x28> + 800855c: 6833 ldr r3, [r6, #0] + 800855e: b30b cbz r3, 80085a4 <__sfp+0x68> + 8008560: 6836 ldr r6, [r6, #0] + 8008562: e7f7 b.n 8008554 <__sfp+0x18> + 8008564: f9b4 500c ldrsh.w r5, [r4, #12] + 8008568: b9d5 cbnz r5, 80085a0 <__sfp+0x64> + 800856a: 4b16 ldr r3, [pc, #88] ; (80085c4 <__sfp+0x88>) + 800856c: f104 0058 add.w r0, r4, #88 ; 0x58 + 8008570: 60e3 str r3, [r4, #12] + 8008572: 6665 str r5, [r4, #100] ; 0x64 + 8008574: f7ff fc0e bl 8007d94 <__retarget_lock_init_recursive> + 8008578: f7ff ff96 bl 80084a8 <__sfp_lock_release> + 800857c: 2208 movs r2, #8 + 800857e: 4629 mov r1, r5 + 8008580: e9c4 5501 strd r5, r5, [r4, #4] + 8008584: e9c4 5504 strd r5, r5, [r4, #16] + 8008588: 6025 str r5, [r4, #0] + 800858a: 61a5 str r5, [r4, #24] + 800858c: f104 005c add.w r0, r4, #92 ; 0x5c + 8008590: f7fd fafe bl 8005b90 + 8008594: e9c4 550d strd r5, r5, [r4, #52] ; 0x34 + 8008598: e9c4 5512 strd r5, r5, [r4, #72] ; 0x48 + 800859c: 4620 mov r0, r4 + 800859e: bdf8 pop {r3, r4, r5, r6, r7, pc} + 80085a0: 3468 adds r4, #104 ; 0x68 + 80085a2: e7d9 b.n 8008558 <__sfp+0x1c> + 80085a4: 2104 movs r1, #4 + 80085a6: 4638 mov r0, r7 + 80085a8: f7ff ff62 bl 8008470 <__sfmoreglue> + 80085ac: 4604 mov r4, r0 + 80085ae: 6030 str r0, [r6, #0] + 80085b0: 2800 cmp r0, #0 + 80085b2: d1d5 bne.n 8008560 <__sfp+0x24> + 80085b4: f7ff ff78 bl 80084a8 <__sfp_lock_release> + 80085b8: 230c movs r3, #12 + 80085ba: 603b str r3, [r7, #0] + 80085bc: e7ee b.n 800859c <__sfp+0x60> + 80085be: bf00 nop + 80085c0: 08009448 .word 0x08009448 + 80085c4: ffff0001 .word 0xffff0001 + +080085c8 <_fwalk_reent>: + 80085c8: e92d 43f8 stmdb sp!, {r3, r4, r5, r6, r7, r8, r9, lr} + 80085cc: 4606 mov r6, r0 + 80085ce: 4688 mov r8, r1 + 80085d0: 2700 movs r7, #0 + 80085d2: f100 0448 add.w r4, r0, #72 ; 0x48 + 80085d6: e9d4 9501 ldrd r9, r5, [r4, #4] + 80085da: f1b9 0901 subs.w r9, r9, #1 + 80085de: d505 bpl.n 80085ec <_fwalk_reent+0x24> + 80085e0: 6824 ldr r4, [r4, #0] + 80085e2: 2c00 cmp r4, #0 + 80085e4: d1f7 bne.n 80085d6 <_fwalk_reent+0xe> + 80085e6: 4638 mov r0, r7 + 80085e8: e8bd 83f8 ldmia.w sp!, {r3, r4, r5, r6, r7, r8, r9, pc} + 80085ec: 89ab ldrh r3, [r5, #12] + 80085ee: 2b01 cmp r3, #1 + 80085f0: d907 bls.n 8008602 <_fwalk_reent+0x3a> + 80085f2: f9b5 300e ldrsh.w r3, [r5, #14] + 80085f6: 3301 adds r3, #1 + 80085f8: d003 beq.n 8008602 <_fwalk_reent+0x3a> + 80085fa: 4629 mov r1, r5 + 80085fc: 4630 mov r0, r6 + 80085fe: 47c0 blx r8 + 8008600: 4307 orrs r7, r0 + 8008602: 3568 adds r5, #104 ; 0x68 + 8008604: e7e9 b.n 80085da <_fwalk_reent+0x12> + +08008606 <__swhatbuf_r>: + 8008606: b570 push {r4, r5, r6, lr} + 8008608: 460e mov r6, r1 + 800860a: f9b1 100e ldrsh.w r1, [r1, #14] + 800860e: 4614 mov r4, r2 + 8008610: 2900 cmp r1, #0 + 8008612: 461d mov r5, r3 + 8008614: b096 sub sp, #88 ; 0x58 + 8008616: da07 bge.n 8008628 <__swhatbuf_r+0x22> + 8008618: 2300 movs r3, #0 + 800861a: 602b str r3, [r5, #0] + 800861c: 89b3 ldrh r3, [r6, #12] + 800861e: 061a lsls r2, r3, #24 + 8008620: d410 bmi.n 8008644 <__swhatbuf_r+0x3e> + 8008622: f44f 6380 mov.w r3, #1024 ; 0x400 + 8008626: e00e b.n 8008646 <__swhatbuf_r+0x40> + 8008628: 466a mov r2, sp + 800862a: f000 f903 bl 8008834 <_fstat_r> + 800862e: 2800 cmp r0, #0 + 8008630: dbf2 blt.n 8008618 <__swhatbuf_r+0x12> + 8008632: 9a01 ldr r2, [sp, #4] + 8008634: f402 4270 and.w r2, r2, #61440 ; 0xf000 + 8008638: f5a2 5300 sub.w r3, r2, #8192 ; 0x2000 + 800863c: 425a negs r2, r3 + 800863e: 415a adcs r2, r3 + 8008640: 602a str r2, [r5, #0] + 8008642: e7ee b.n 8008622 <__swhatbuf_r+0x1c> + 8008644: 2340 movs r3, #64 ; 0x40 + 8008646: 2000 movs r0, #0 + 8008648: 6023 str r3, [r4, #0] + 800864a: b016 add sp, #88 ; 0x58 + 800864c: bd70 pop {r4, r5, r6, pc} ... -08008520 <_write_r>: - 8008520: b538 push {r3, r4, r5, lr} - 8008522: 4604 mov r4, r0 - 8008524: 4608 mov r0, r1 - 8008526: 4611 mov r1, r2 - 8008528: 2200 movs r2, #0 - 800852a: 4d05 ldr r5, [pc, #20] ; (8008540 <_write_r+0x20>) - 800852c: 602a str r2, [r5, #0] - 800852e: 461a mov r2, r3 - 8008530: f7f9 f8b1 bl 8001696 <_write> - 8008534: 1c43 adds r3, r0, #1 - 8008536: d102 bne.n 800853e <_write_r+0x1e> - 8008538: 682b ldr r3, [r5, #0] - 800853a: b103 cbz r3, 800853e <_write_r+0x1e> - 800853c: 6023 str r3, [r4, #0] - 800853e: bd38 pop {r3, r4, r5, pc} - 8008540: 200002f4 .word 0x200002f4 +08008650 <__smakebuf_r>: + 8008650: 898b ldrh r3, [r1, #12] + 8008652: b573 push {r0, r1, r4, r5, r6, lr} + 8008654: 079d lsls r5, r3, #30 + 8008656: 4606 mov r6, r0 + 8008658: 460c mov r4, r1 + 800865a: d507 bpl.n 800866c <__smakebuf_r+0x1c> + 800865c: f104 0347 add.w r3, r4, #71 ; 0x47 + 8008660: 6023 str r3, [r4, #0] + 8008662: 6123 str r3, [r4, #16] + 8008664: 2301 movs r3, #1 + 8008666: 6163 str r3, [r4, #20] + 8008668: b002 add sp, #8 + 800866a: bd70 pop {r4, r5, r6, pc} + 800866c: 466a mov r2, sp + 800866e: ab01 add r3, sp, #4 + 8008670: f7ff ffc9 bl 8008606 <__swhatbuf_r> + 8008674: 9900 ldr r1, [sp, #0] + 8008676: 4605 mov r5, r0 + 8008678: 4630 mov r0, r6 + 800867a: f7fd fadd bl 8005c38 <_malloc_r> + 800867e: b948 cbnz r0, 8008694 <__smakebuf_r+0x44> + 8008680: f9b4 300c ldrsh.w r3, [r4, #12] + 8008684: 059a lsls r2, r3, #22 + 8008686: d4ef bmi.n 8008668 <__smakebuf_r+0x18> + 8008688: f023 0303 bic.w r3, r3, #3 + 800868c: f043 0302 orr.w r3, r3, #2 + 8008690: 81a3 strh r3, [r4, #12] + 8008692: e7e3 b.n 800865c <__smakebuf_r+0xc> + 8008694: 4b0d ldr r3, [pc, #52] ; (80086cc <__smakebuf_r+0x7c>) + 8008696: 62b3 str r3, [r6, #40] ; 0x28 + 8008698: 89a3 ldrh r3, [r4, #12] + 800869a: 6020 str r0, [r4, #0] + 800869c: f043 0380 orr.w r3, r3, #128 ; 0x80 + 80086a0: 81a3 strh r3, [r4, #12] + 80086a2: 9b00 ldr r3, [sp, #0] + 80086a4: 6120 str r0, [r4, #16] + 80086a6: 6163 str r3, [r4, #20] + 80086a8: 9b01 ldr r3, [sp, #4] + 80086aa: b15b cbz r3, 80086c4 <__smakebuf_r+0x74> + 80086ac: 4630 mov r0, r6 + 80086ae: f9b4 100e ldrsh.w r1, [r4, #14] + 80086b2: f000 f8d1 bl 8008858 <_isatty_r> + 80086b6: b128 cbz r0, 80086c4 <__smakebuf_r+0x74> + 80086b8: 89a3 ldrh r3, [r4, #12] + 80086ba: f023 0303 bic.w r3, r3, #3 + 80086be: f043 0301 orr.w r3, r3, #1 + 80086c2: 81a3 strh r3, [r4, #12] + 80086c4: 89a0 ldrh r0, [r4, #12] + 80086c6: 4305 orrs r5, r0 + 80086c8: 81a5 strh r5, [r4, #12] + 80086ca: e7cd b.n 8008668 <__smakebuf_r+0x18> + 80086cc: 08008465 .word 0x08008465 -08008544 <_close_r>: - 8008544: b538 push {r3, r4, r5, lr} - 8008546: 2300 movs r3, #0 - 8008548: 4d05 ldr r5, [pc, #20] ; (8008560 <_close_r+0x1c>) - 800854a: 4604 mov r4, r0 - 800854c: 4608 mov r0, r1 - 800854e: 602b str r3, [r5, #0] - 8008550: f7f9 f8bd bl 80016ce <_close> - 8008554: 1c43 adds r3, r0, #1 - 8008556: d102 bne.n 800855e <_close_r+0x1a> - 8008558: 682b ldr r3, [r5, #0] - 800855a: b103 cbz r3, 800855e <_close_r+0x1a> - 800855c: 6023 str r3, [r4, #0] - 800855e: bd38 pop {r3, r4, r5, pc} - 8008560: 200002f4 .word 0x200002f4 +080086d0 <_malloc_usable_size_r>: + 80086d0: f851 3c04 ldr.w r3, [r1, #-4] + 80086d4: 1f18 subs r0, r3, #4 + 80086d6: 2b00 cmp r3, #0 + 80086d8: bfbc itt lt + 80086da: 580b ldrlt r3, [r1, r0] + 80086dc: 18c0 addlt r0, r0, r3 + 80086de: 4770 bx lr -08008564 <_fstat_r>: - 8008564: b538 push {r3, r4, r5, lr} - 8008566: 2300 movs r3, #0 - 8008568: 4d06 ldr r5, [pc, #24] ; (8008584 <_fstat_r+0x20>) - 800856a: 4604 mov r4, r0 - 800856c: 4608 mov r0, r1 - 800856e: 4611 mov r1, r2 - 8008570: 602b str r3, [r5, #0] - 8008572: f7f9 f8b7 bl 80016e4 <_fstat> - 8008576: 1c43 adds r3, r0, #1 - 8008578: d102 bne.n 8008580 <_fstat_r+0x1c> - 800857a: 682b ldr r3, [r5, #0] - 800857c: b103 cbz r3, 8008580 <_fstat_r+0x1c> - 800857e: 6023 str r3, [r4, #0] - 8008580: bd38 pop {r3, r4, r5, pc} - 8008582: bf00 nop - 8008584: 200002f4 .word 0x200002f4 +080086e0 <_raise_r>: + 80086e0: 291f cmp r1, #31 + 80086e2: b538 push {r3, r4, r5, lr} + 80086e4: 4604 mov r4, r0 + 80086e6: 460d mov r5, r1 + 80086e8: d904 bls.n 80086f4 <_raise_r+0x14> + 80086ea: 2316 movs r3, #22 + 80086ec: 6003 str r3, [r0, #0] + 80086ee: f04f 30ff mov.w r0, #4294967295 ; 0xffffffff + 80086f2: bd38 pop {r3, r4, r5, pc} + 80086f4: 6c42 ldr r2, [r0, #68] ; 0x44 + 80086f6: b112 cbz r2, 80086fe <_raise_r+0x1e> + 80086f8: f852 3021 ldr.w r3, [r2, r1, lsl #2] + 80086fc: b94b cbnz r3, 8008712 <_raise_r+0x32> + 80086fe: 4620 mov r0, r4 + 8008700: f000 f830 bl 8008764 <_getpid_r> + 8008704: 462a mov r2, r5 + 8008706: 4601 mov r1, r0 + 8008708: 4620 mov r0, r4 + 800870a: e8bd 4038 ldmia.w sp!, {r3, r4, r5, lr} + 800870e: f000 b817 b.w 8008740 <_kill_r> + 8008712: 2b01 cmp r3, #1 + 8008714: d00a beq.n 800872c <_raise_r+0x4c> + 8008716: 1c59 adds r1, r3, #1 + 8008718: d103 bne.n 8008722 <_raise_r+0x42> + 800871a: 2316 movs r3, #22 + 800871c: 6003 str r3, [r0, #0] + 800871e: 2001 movs r0, #1 + 8008720: e7e7 b.n 80086f2 <_raise_r+0x12> + 8008722: 2400 movs r4, #0 + 8008724: 4628 mov r0, r5 + 8008726: f842 4025 str.w r4, [r2, r5, lsl #2] + 800872a: 4798 blx r3 + 800872c: 2000 movs r0, #0 + 800872e: e7e0 b.n 80086f2 <_raise_r+0x12> -08008588 <_isatty_r>: - 8008588: b538 push {r3, r4, r5, lr} - 800858a: 2300 movs r3, #0 - 800858c: 4d05 ldr r5, [pc, #20] ; (80085a4 <_isatty_r+0x1c>) - 800858e: 4604 mov r4, r0 - 8008590: 4608 mov r0, r1 - 8008592: 602b str r3, [r5, #0] - 8008594: f7f9 f8b5 bl 8001702 <_isatty> - 8008598: 1c43 adds r3, r0, #1 - 800859a: d102 bne.n 80085a2 <_isatty_r+0x1a> - 800859c: 682b ldr r3, [r5, #0] - 800859e: b103 cbz r3, 80085a2 <_isatty_r+0x1a> - 80085a0: 6023 str r3, [r4, #0] - 80085a2: bd38 pop {r3, r4, r5, pc} - 80085a4: 200002f4 .word 0x200002f4 +08008730 : + 8008730: 4b02 ldr r3, [pc, #8] ; (800873c ) + 8008732: 4601 mov r1, r0 + 8008734: 6818 ldr r0, [r3, #0] + 8008736: f7ff bfd3 b.w 80086e0 <_raise_r> + 800873a: bf00 nop + 800873c: 2000000c .word 0x2000000c -080085a8 <_lseek_r>: - 80085a8: b538 push {r3, r4, r5, lr} - 80085aa: 4604 mov r4, r0 - 80085ac: 4608 mov r0, r1 - 80085ae: 4611 mov r1, r2 - 80085b0: 2200 movs r2, #0 - 80085b2: 4d05 ldr r5, [pc, #20] ; (80085c8 <_lseek_r+0x20>) - 80085b4: 602a str r2, [r5, #0] - 80085b6: 461a mov r2, r3 - 80085b8: f7f9 f8ad bl 8001716 <_lseek> - 80085bc: 1c43 adds r3, r0, #1 - 80085be: d102 bne.n 80085c6 <_lseek_r+0x1e> - 80085c0: 682b ldr r3, [r5, #0] - 80085c2: b103 cbz r3, 80085c6 <_lseek_r+0x1e> - 80085c4: 6023 str r3, [r4, #0] - 80085c6: bd38 pop {r3, r4, r5, pc} - 80085c8: 200002f4 .word 0x200002f4 +08008740 <_kill_r>: + 8008740: b538 push {r3, r4, r5, lr} + 8008742: 2300 movs r3, #0 + 8008744: 4d06 ldr r5, [pc, #24] ; (8008760 <_kill_r+0x20>) + 8008746: 4604 mov r4, r0 + 8008748: 4608 mov r0, r1 + 800874a: 4611 mov r1, r2 + 800874c: 602b str r3, [r5, #0] + 800874e: f7f8 ff87 bl 8001660 <_kill> + 8008752: 1c43 adds r3, r0, #1 + 8008754: d102 bne.n 800875c <_kill_r+0x1c> + 8008756: 682b ldr r3, [r5, #0] + 8008758: b103 cbz r3, 800875c <_kill_r+0x1c> + 800875a: 6023 str r3, [r4, #0] + 800875c: bd38 pop {r3, r4, r5, pc} + 800875e: bf00 nop + 8008760: 2000033c .word 0x2000033c -080085cc <_read_r>: - 80085cc: b538 push {r3, r4, r5, lr} - 80085ce: 4604 mov r4, r0 - 80085d0: 4608 mov r0, r1 - 80085d2: 4611 mov r1, r2 - 80085d4: 2200 movs r2, #0 - 80085d6: 4d05 ldr r5, [pc, #20] ; (80085ec <_read_r+0x20>) - 80085d8: 602a str r2, [r5, #0] - 80085da: 461a mov r2, r3 - 80085dc: f7f9 f83e bl 800165c <_read> - 80085e0: 1c43 adds r3, r0, #1 - 80085e2: d102 bne.n 80085ea <_read_r+0x1e> - 80085e4: 682b ldr r3, [r5, #0] - 80085e6: b103 cbz r3, 80085ea <_read_r+0x1e> - 80085e8: 6023 str r3, [r4, #0] - 80085ea: bd38 pop {r3, r4, r5, pc} - 80085ec: 200002f4 .word 0x200002f4 +08008764 <_getpid_r>: + 8008764: f7f8 bf75 b.w 8001652 <_getpid> -080085f0 <_init>: - 80085f0: b5f8 push {r3, r4, r5, r6, r7, lr} - 80085f2: bf00 nop - 80085f4: bcf8 pop {r3, r4, r5, r6, r7} - 80085f6: bc08 pop {r3} - 80085f8: 469e mov lr, r3 - 80085fa: 4770 bx lr +08008768 <__sread>: + 8008768: b510 push {r4, lr} + 800876a: 460c mov r4, r1 + 800876c: f9b1 100e ldrsh.w r1, [r1, #14] + 8008770: f000 f894 bl 800889c <_read_r> + 8008774: 2800 cmp r0, #0 + 8008776: bfab itete ge + 8008778: 6d63 ldrge r3, [r4, #84] ; 0x54 + 800877a: 89a3 ldrhlt r3, [r4, #12] + 800877c: 181b addge r3, r3, r0 + 800877e: f423 5380 biclt.w r3, r3, #4096 ; 0x1000 + 8008782: bfac ite ge + 8008784: 6563 strge r3, [r4, #84] ; 0x54 + 8008786: 81a3 strhlt r3, [r4, #12] + 8008788: bd10 pop {r4, pc} -080085fc <_fini>: - 80085fc: b5f8 push {r3, r4, r5, r6, r7, lr} - 80085fe: bf00 nop - 8008600: bcf8 pop {r3, r4, r5, r6, r7} - 8008602: bc08 pop {r3} - 8008604: 469e mov lr, r3 - 8008606: 4770 bx lr +0800878a <__swrite>: + 800878a: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} + 800878e: 461f mov r7, r3 + 8008790: 898b ldrh r3, [r1, #12] + 8008792: 4605 mov r5, r0 + 8008794: 05db lsls r3, r3, #23 + 8008796: 460c mov r4, r1 + 8008798: 4616 mov r6, r2 + 800879a: d505 bpl.n 80087a8 <__swrite+0x1e> + 800879c: 2302 movs r3, #2 + 800879e: 2200 movs r2, #0 + 80087a0: f9b1 100e ldrsh.w r1, [r1, #14] + 80087a4: f000 f868 bl 8008878 <_lseek_r> + 80087a8: 89a3 ldrh r3, [r4, #12] + 80087aa: 4632 mov r2, r6 + 80087ac: f423 5380 bic.w r3, r3, #4096 ; 0x1000 + 80087b0: 81a3 strh r3, [r4, #12] + 80087b2: 4628 mov r0, r5 + 80087b4: 463b mov r3, r7 + 80087b6: f9b4 100e ldrsh.w r1, [r4, #14] + 80087ba: e8bd 41f0 ldmia.w sp!, {r4, r5, r6, r7, r8, lr} + 80087be: f000 b817 b.w 80087f0 <_write_r> + +080087c2 <__sseek>: + 80087c2: b510 push {r4, lr} + 80087c4: 460c mov r4, r1 + 80087c6: f9b1 100e ldrsh.w r1, [r1, #14] + 80087ca: f000 f855 bl 8008878 <_lseek_r> + 80087ce: 1c43 adds r3, r0, #1 + 80087d0: 89a3 ldrh r3, [r4, #12] + 80087d2: bf15 itete ne + 80087d4: 6560 strne r0, [r4, #84] ; 0x54 + 80087d6: f423 5380 biceq.w r3, r3, #4096 ; 0x1000 + 80087da: f443 5380 orrne.w r3, r3, #4096 ; 0x1000 + 80087de: 81a3 strheq r3, [r4, #12] + 80087e0: bf18 it ne + 80087e2: 81a3 strhne r3, [r4, #12] + 80087e4: bd10 pop {r4, pc} + +080087e6 <__sclose>: + 80087e6: f9b1 100e ldrsh.w r1, [r1, #14] + 80087ea: f000 b813 b.w 8008814 <_close_r> + ... + +080087f0 <_write_r>: + 80087f0: b538 push {r3, r4, r5, lr} + 80087f2: 4604 mov r4, r0 + 80087f4: 4608 mov r0, r1 + 80087f6: 4611 mov r1, r2 + 80087f8: 2200 movs r2, #0 + 80087fa: 4d05 ldr r5, [pc, #20] ; (8008810 <_write_r+0x20>) + 80087fc: 602a str r2, [r5, #0] + 80087fe: 461a mov r2, r3 + 8008800: f7f8 ff65 bl 80016ce <_write> + 8008804: 1c43 adds r3, r0, #1 + 8008806: d102 bne.n 800880e <_write_r+0x1e> + 8008808: 682b ldr r3, [r5, #0] + 800880a: b103 cbz r3, 800880e <_write_r+0x1e> + 800880c: 6023 str r3, [r4, #0] + 800880e: bd38 pop {r3, r4, r5, pc} + 8008810: 2000033c .word 0x2000033c + +08008814 <_close_r>: + 8008814: b538 push {r3, r4, r5, lr} + 8008816: 2300 movs r3, #0 + 8008818: 4d05 ldr r5, [pc, #20] ; (8008830 <_close_r+0x1c>) + 800881a: 4604 mov r4, r0 + 800881c: 4608 mov r0, r1 + 800881e: 602b str r3, [r5, #0] + 8008820: f7f8 ff71 bl 8001706 <_close> + 8008824: 1c43 adds r3, r0, #1 + 8008826: d102 bne.n 800882e <_close_r+0x1a> + 8008828: 682b ldr r3, [r5, #0] + 800882a: b103 cbz r3, 800882e <_close_r+0x1a> + 800882c: 6023 str r3, [r4, #0] + 800882e: bd38 pop {r3, r4, r5, pc} + 8008830: 2000033c .word 0x2000033c + +08008834 <_fstat_r>: + 8008834: b538 push {r3, r4, r5, lr} + 8008836: 2300 movs r3, #0 + 8008838: 4d06 ldr r5, [pc, #24] ; (8008854 <_fstat_r+0x20>) + 800883a: 4604 mov r4, r0 + 800883c: 4608 mov r0, r1 + 800883e: 4611 mov r1, r2 + 8008840: 602b str r3, [r5, #0] + 8008842: f7f8 ff6b bl 800171c <_fstat> + 8008846: 1c43 adds r3, r0, #1 + 8008848: d102 bne.n 8008850 <_fstat_r+0x1c> + 800884a: 682b ldr r3, [r5, #0] + 800884c: b103 cbz r3, 8008850 <_fstat_r+0x1c> + 800884e: 6023 str r3, [r4, #0] + 8008850: bd38 pop {r3, r4, r5, pc} + 8008852: bf00 nop + 8008854: 2000033c .word 0x2000033c + +08008858 <_isatty_r>: + 8008858: b538 push {r3, r4, r5, lr} + 800885a: 2300 movs r3, #0 + 800885c: 4d05 ldr r5, [pc, #20] ; (8008874 <_isatty_r+0x1c>) + 800885e: 4604 mov r4, r0 + 8008860: 4608 mov r0, r1 + 8008862: 602b str r3, [r5, #0] + 8008864: f7f8 ff69 bl 800173a <_isatty> + 8008868: 1c43 adds r3, r0, #1 + 800886a: d102 bne.n 8008872 <_isatty_r+0x1a> + 800886c: 682b ldr r3, [r5, #0] + 800886e: b103 cbz r3, 8008872 <_isatty_r+0x1a> + 8008870: 6023 str r3, [r4, #0] + 8008872: bd38 pop {r3, r4, r5, pc} + 8008874: 2000033c .word 0x2000033c + +08008878 <_lseek_r>: + 8008878: b538 push {r3, r4, r5, lr} + 800887a: 4604 mov r4, r0 + 800887c: 4608 mov r0, r1 + 800887e: 4611 mov r1, r2 + 8008880: 2200 movs r2, #0 + 8008882: 4d05 ldr r5, [pc, #20] ; (8008898 <_lseek_r+0x20>) + 8008884: 602a str r2, [r5, #0] + 8008886: 461a mov r2, r3 + 8008888: f7f8 ff61 bl 800174e <_lseek> + 800888c: 1c43 adds r3, r0, #1 + 800888e: d102 bne.n 8008896 <_lseek_r+0x1e> + 8008890: 682b ldr r3, [r5, #0] + 8008892: b103 cbz r3, 8008896 <_lseek_r+0x1e> + 8008894: 6023 str r3, [r4, #0] + 8008896: bd38 pop {r3, r4, r5, pc} + 8008898: 2000033c .word 0x2000033c + +0800889c <_read_r>: + 800889c: b538 push {r3, r4, r5, lr} + 800889e: 4604 mov r4, r0 + 80088a0: 4608 mov r0, r1 + 80088a2: 4611 mov r1, r2 + 80088a4: 2200 movs r2, #0 + 80088a6: 4d05 ldr r5, [pc, #20] ; (80088bc <_read_r+0x20>) + 80088a8: 602a str r2, [r5, #0] + 80088aa: 461a mov r2, r3 + 80088ac: f7f8 fef2 bl 8001694 <_read> + 80088b0: 1c43 adds r3, r0, #1 + 80088b2: d102 bne.n 80088ba <_read_r+0x1e> + 80088b4: 682b ldr r3, [r5, #0] + 80088b6: b103 cbz r3, 80088ba <_read_r+0x1e> + 80088b8: 6023 str r3, [r4, #0] + 80088ba: bd38 pop {r3, r4, r5, pc} + 80088bc: 2000033c .word 0x2000033c + +080088c0 <_init>: + 80088c0: b5f8 push {r3, r4, r5, r6, r7, lr} + 80088c2: bf00 nop + 80088c4: bcf8 pop {r3, r4, r5, r6, r7} + 80088c6: bc08 pop {r3} + 80088c8: 469e mov lr, r3 + 80088ca: 4770 bx lr + +080088cc <_fini>: + 80088cc: b5f8 push {r3, r4, r5, r6, r7, lr} + 80088ce: bf00 nop + 80088d0: bcf8 pop {r3, r4, r5, r6, r7} + 80088d2: bc08 pop {r3} + 80088d4: 469e mov lr, r3 + 80088d6: 4770 bx lr diff --git a/Debug/m3s.map b/Debug/m3s.map index e6fe0c2..91a9e6d 100644 --- a/Debug/m3s.map +++ b/Debug/m3s.map @@ -126,12 +126,14 @@ Archive member included to satisfy reference by file (symbol) Allocating common symbols Common symbol size file +blood_str 0x40 ./SW_APPs/APP_blood.o run_loop 0x8 ./SW_APPs/Main_APP.o __lock___atexit_recursive_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) __lock___arc4random_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) errno 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) +fifo_ir 0x2 ./SW_APPs/APP_blood.o tconfig 0x18 ./HW_Devices/touch.o hi2c2 0x54 ./Core/Src/main.o uwTick 0x4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o @@ -153,6 +155,7 @@ __lock___at_quick_exit_mutex __lock___dd_hash_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) __lock___tz_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) +fifo_red 0x2 ./SW_APPs/APP_blood.o __lock___sfp_recursive_mutex 0x1 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) @@ -293,7 +296,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0x141 ./Core/Src/stm32f1xx_hal_msp.o .debug_macro 0x0000000000000000 0xb5 ./Core/Src/stm32f1xx_hal_msp.o - .debug_macro 0x0000000000000000 0x4c ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f1xx_hal_msp.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/stm32f1xx_it.o @@ -370,7 +373,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0x141 ./Core/Src/stm32f1xx_it.o .debug_macro 0x0000000000000000 0xb5 ./Core/Src/stm32f1xx_it.o - .debug_macro 0x0000000000000000 0x4c ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000000000 0x70 ./Core/Src/stm32f1xx_it.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o .group 0x0000000000000000 0xc ./Core/Src/syscalls.o @@ -2432,7 +2435,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/LCD.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/LCD.o - .debug_macro 0x0000000000000000 0x4c ./HW_Devices/LCD.o + .debug_macro 0x0000000000000000 0x70 ./HW_Devices/LCD.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o .group 0x0000000000000000 0xc ./HW_Devices/eeprom.o @@ -2509,7 +2512,84 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/eeprom.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/eeprom.o - .debug_macro 0x0000000000000000 0x4c ./HW_Devices/eeprom.o + .debug_macro 0x0000000000000000 0x70 ./HW_Devices/eeprom.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .group 0x0000000000000000 0xc ./HW_Devices/iic.o + .text 0x0000000000000000 0x0 ./HW_Devices/iic.o + .data 0x0000000000000000 0x0 ./HW_Devices/iic.o + .bss 0x0000000000000000 0x0 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xa9c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x21b ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x2e ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x8e ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x51 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x103 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x6a ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1df ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x22 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xc3 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xd23 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xfd8c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x6d ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x3468 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x174 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x5c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x5be ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x4d5 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1cb ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x114 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1ea ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x27 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x144 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x1bc ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x30 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x3c ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x57 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x88 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x24f ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x356 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x287 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x141 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/iic.o + .debug_macro 0x0000000000000000 0x70 ./HW_Devices/iic.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o .group 0x0000000000000000 0xc ./HW_Devices/touch.o @@ -2590,7 +2670,8 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0x141 ./HW_Devices/touch.o .debug_macro 0x0000000000000000 0xb5 ./HW_Devices/touch.o - .debug_macro 0x0000000000000000 0x4c ./HW_Devices/touch.o + .debug_macro 0x0000000000000000 0x70 ./HW_Devices/touch.o + .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o .group 0x0000000000000000 0xc ./SW_APPs/APP_blood.o @@ -2668,7 +2749,8 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/APP_blood.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/APP_blood.o - .debug_macro 0x0000000000000000 0x4c ./SW_APPs/APP_blood.o + .debug_macro 0x0000000000000000 0x70 ./SW_APPs/APP_blood.o + .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o .group 0x0000000000000000 0xc ./SW_APPs/Main_APP.o @@ -2748,7 +2830,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/Main_APP.o - .debug_macro 0x0000000000000000 0x4c ./SW_APPs/Main_APP.o + .debug_macro 0x0000000000000000 0x70 ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x38b ./SW_APPs/Main_APP.o .debug_macro 0x0000000000000000 0x10 ./SW_APPs/Main_APP.o COMMON 0x0000000000000000 0x8 ./SW_APPs/Main_APP.o @@ -2836,7 +2918,7 @@ Discarded input sections .debug_macro 0x0000000000000000 0x287 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x141 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0xb5 ./SW_APPs/windows.o - .debug_macro 0x0000000000000000 0x4c ./SW_APPs/windows.o + .debug_macro 0x0000000000000000 0x70 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x391 ./SW_APPs/windows.o .debug_macro 0x0000000000000000 0x28 ./SW_APPs/windows.o .text 0x0000000000000000 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) @@ -3158,6 +3240,7 @@ LOAD ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.o LOAD ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o LOAD ./HW_Devices/LCD.o LOAD ./HW_Devices/eeprom.o +LOAD ./HW_Devices/iic.o LOAD ./HW_Devices/touch.o LOAD ./SW_APPs/APP_blood.o LOAD ./SW_APPs/Main_APP.o @@ -3193,7 +3276,7 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x0000000008000000 g_pfnVectors 0x00000000080001e4 . = ALIGN (0x4) -.text 0x00000000080001e8 0x8420 +.text 0x00000000080001e8 0x86f0 0x00000000080001e8 . = ALIGN (0x4) *(.text) .text 0x00000000080001e8 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o @@ -3276,718 +3359,730 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .text.MX_I2C2_Init 0x00000000080011b0 0x5c ./Core/Src/main.o .text.MX_GPIO_Init - 0x000000000800120c 0x14c ./Core/Src/main.o + 0x000000000800120c 0x184 ./Core/Src/main.o .text.MX_FSMC_Init - 0x0000000008001358 0xc8 ./Core/Src/main.o + 0x0000000008001390 0xc8 ./Core/Src/main.o .text.Error_Handler - 0x0000000008001420 0xa ./Core/Src/main.o - 0x0000000008001420 Error_Handler - *fill* 0x000000000800142a 0x2 + 0x0000000008001458 0xa ./Core/Src/main.o + 0x0000000008001458 Error_Handler + *fill* 0x0000000008001462 0x2 .text.HAL_MspInit - 0x000000000800142c 0x64 ./Core/Src/stm32f1xx_hal_msp.o - 0x000000000800142c HAL_MspInit + 0x0000000008001464 0x64 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001464 HAL_MspInit .text.HAL_I2C_MspInit - 0x0000000008001490 0x80 ./Core/Src/stm32f1xx_hal_msp.o - 0x0000000008001490 HAL_I2C_MspInit + 0x00000000080014c8 0x80 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080014c8 HAL_I2C_MspInit .text.HAL_FSMC_MspInit - 0x0000000008001510 0xa8 ./Core/Src/stm32f1xx_hal_msp.o + 0x0000000008001548 0xa8 ./Core/Src/stm32f1xx_hal_msp.o .text.HAL_SRAM_MspInit - 0x00000000080015b8 0x14 ./Core/Src/stm32f1xx_hal_msp.o - 0x00000000080015b8 HAL_SRAM_MspInit + 0x00000000080015f0 0x14 ./Core/Src/stm32f1xx_hal_msp.o + 0x00000000080015f0 HAL_SRAM_MspInit .text.NMI_Handler - 0x00000000080015cc 0x6 ./Core/Src/stm32f1xx_it.o - 0x00000000080015cc NMI_Handler + 0x0000000008001604 0x6 ./Core/Src/stm32f1xx_it.o + 0x0000000008001604 NMI_Handler .text.HardFault_Handler - 0x00000000080015d2 0x6 ./Core/Src/stm32f1xx_it.o - 0x00000000080015d2 HardFault_Handler + 0x000000000800160a 0x6 ./Core/Src/stm32f1xx_it.o + 0x000000000800160a HardFault_Handler .text.MemManage_Handler - 0x00000000080015d8 0x6 ./Core/Src/stm32f1xx_it.o - 0x00000000080015d8 MemManage_Handler + 0x0000000008001610 0x6 ./Core/Src/stm32f1xx_it.o + 0x0000000008001610 MemManage_Handler .text.BusFault_Handler - 0x00000000080015de 0x6 ./Core/Src/stm32f1xx_it.o - 0x00000000080015de BusFault_Handler + 0x0000000008001616 0x6 ./Core/Src/stm32f1xx_it.o + 0x0000000008001616 BusFault_Handler .text.UsageFault_Handler - 0x00000000080015e4 0x6 ./Core/Src/stm32f1xx_it.o - 0x00000000080015e4 UsageFault_Handler + 0x000000000800161c 0x6 ./Core/Src/stm32f1xx_it.o + 0x000000000800161c UsageFault_Handler .text.SVC_Handler - 0x00000000080015ea 0xc ./Core/Src/stm32f1xx_it.o - 0x00000000080015ea SVC_Handler + 0x0000000008001622 0xc ./Core/Src/stm32f1xx_it.o + 0x0000000008001622 SVC_Handler .text.DebugMon_Handler - 0x00000000080015f6 0xc ./Core/Src/stm32f1xx_it.o - 0x00000000080015f6 DebugMon_Handler + 0x000000000800162e 0xc ./Core/Src/stm32f1xx_it.o + 0x000000000800162e DebugMon_Handler .text.PendSV_Handler - 0x0000000008001602 0xc ./Core/Src/stm32f1xx_it.o - 0x0000000008001602 PendSV_Handler + 0x000000000800163a 0xc ./Core/Src/stm32f1xx_it.o + 0x000000000800163a PendSV_Handler .text.SysTick_Handler - 0x000000000800160e 0xc ./Core/Src/stm32f1xx_it.o - 0x000000000800160e SysTick_Handler - .text._getpid 0x000000000800161a 0xe ./Core/Src/syscalls.o - 0x000000000800161a _getpid - .text._kill 0x0000000008001628 0x20 ./Core/Src/syscalls.o - 0x0000000008001628 _kill - .text._exit 0x0000000008001648 0x14 ./Core/Src/syscalls.o - 0x0000000008001648 _exit - .text._read 0x000000000800165c 0x3a ./Core/Src/syscalls.o - 0x000000000800165c _read - .text._write 0x0000000008001696 0x38 ./Core/Src/syscalls.o - 0x0000000008001696 _write - .text._close 0x00000000080016ce 0x16 ./Core/Src/syscalls.o - 0x00000000080016ce _close - .text._fstat 0x00000000080016e4 0x1e ./Core/Src/syscalls.o - 0x00000000080016e4 _fstat - .text._isatty 0x0000000008001702 0x14 ./Core/Src/syscalls.o - 0x0000000008001702 _isatty - .text._lseek 0x0000000008001716 0x18 ./Core/Src/syscalls.o - 0x0000000008001716 _lseek - *fill* 0x000000000800172e 0x2 - .text._sbrk 0x0000000008001730 0x6c ./Core/Src/sysmem.o - 0x0000000008001730 _sbrk + 0x0000000008001646 0xc ./Core/Src/stm32f1xx_it.o + 0x0000000008001646 SysTick_Handler + .text._getpid 0x0000000008001652 0xe ./Core/Src/syscalls.o + 0x0000000008001652 _getpid + .text._kill 0x0000000008001660 0x20 ./Core/Src/syscalls.o + 0x0000000008001660 _kill + .text._exit 0x0000000008001680 0x14 ./Core/Src/syscalls.o + 0x0000000008001680 _exit + .text._read 0x0000000008001694 0x3a ./Core/Src/syscalls.o + 0x0000000008001694 _read + .text._write 0x00000000080016ce 0x38 ./Core/Src/syscalls.o + 0x00000000080016ce _write + .text._close 0x0000000008001706 0x16 ./Core/Src/syscalls.o + 0x0000000008001706 _close + .text._fstat 0x000000000800171c 0x1e ./Core/Src/syscalls.o + 0x000000000800171c _fstat + .text._isatty 0x000000000800173a 0x14 ./Core/Src/syscalls.o + 0x000000000800173a _isatty + .text._lseek 0x000000000800174e 0x18 ./Core/Src/syscalls.o + 0x000000000800174e _lseek + *fill* 0x0000000008001766 0x2 + .text._sbrk 0x0000000008001768 0x6c ./Core/Src/sysmem.o + 0x0000000008001768 _sbrk .text.SystemInit - 0x000000000800179c 0xc ./Core/Src/system_stm32f1xx.o - 0x000000000800179c SystemInit + 0x00000000080017d4 0xc ./Core/Src/system_stm32f1xx.o + 0x00000000080017d4 SystemInit .text.Reset_Handler - 0x00000000080017a8 0x48 ./Core/Startup/startup_stm32f103zetx.o - 0x00000000080017a8 Reset_Handler + 0x00000000080017e0 0x48 ./Core/Startup/startup_stm32f103zetx.o + 0x00000000080017e0 Reset_Handler .text.Default_Handler - 0x00000000080017f0 0x2 ./Core/Startup/startup_stm32f103zetx.o - 0x00000000080017f0 DMA2_Channel3_IRQHandler - 0x00000000080017f0 EXTI2_IRQHandler - 0x00000000080017f0 TIM8_TRG_COM_IRQHandler - 0x00000000080017f0 TIM8_CC_IRQHandler - 0x00000000080017f0 TIM1_CC_IRQHandler - 0x00000000080017f0 TIM6_IRQHandler - 0x00000000080017f0 PVD_IRQHandler - 0x00000000080017f0 SDIO_IRQHandler - 0x00000000080017f0 EXTI3_IRQHandler - 0x00000000080017f0 EXTI0_IRQHandler - 0x00000000080017f0 I2C2_EV_IRQHandler - 0x00000000080017f0 ADC1_2_IRQHandler - 0x00000000080017f0 SPI1_IRQHandler - 0x00000000080017f0 TAMPER_IRQHandler - 0x00000000080017f0 TIM8_UP_IRQHandler - 0x00000000080017f0 DMA2_Channel2_IRQHandler - 0x00000000080017f0 DMA1_Channel4_IRQHandler - 0x00000000080017f0 USART3_IRQHandler - 0x00000000080017f0 RTC_IRQHandler - 0x00000000080017f0 DMA1_Channel7_IRQHandler - 0x00000000080017f0 CAN1_RX1_IRQHandler - 0x00000000080017f0 UART5_IRQHandler - 0x00000000080017f0 ADC3_IRQHandler - 0x00000000080017f0 TIM4_IRQHandler - 0x00000000080017f0 DMA2_Channel1_IRQHandler - 0x00000000080017f0 I2C1_EV_IRQHandler - 0x00000000080017f0 DMA1_Channel6_IRQHandler - 0x00000000080017f0 UART4_IRQHandler - 0x00000000080017f0 TIM3_IRQHandler - 0x00000000080017f0 RCC_IRQHandler - 0x00000000080017f0 TIM1_TRG_COM_IRQHandler - 0x00000000080017f0 DMA1_Channel1_IRQHandler - 0x00000000080017f0 Default_Handler - 0x00000000080017f0 EXTI15_10_IRQHandler - 0x00000000080017f0 TIM7_IRQHandler - 0x00000000080017f0 TIM5_IRQHandler - 0x00000000080017f0 EXTI9_5_IRQHandler - 0x00000000080017f0 SPI2_IRQHandler - 0x00000000080017f0 DMA1_Channel5_IRQHandler - 0x00000000080017f0 EXTI4_IRQHandler - 0x00000000080017f0 USB_LP_CAN1_RX0_IRQHandler - 0x00000000080017f0 USB_HP_CAN1_TX_IRQHandler - 0x00000000080017f0 DMA1_Channel3_IRQHandler - 0x00000000080017f0 FSMC_IRQHandler - 0x00000000080017f0 TIM1_UP_IRQHandler - 0x00000000080017f0 WWDG_IRQHandler - 0x00000000080017f0 TIM2_IRQHandler - 0x00000000080017f0 TIM1_BRK_IRQHandler - 0x00000000080017f0 EXTI1_IRQHandler - 0x00000000080017f0 DMA2_Channel4_5_IRQHandler - 0x00000000080017f0 USART2_IRQHandler - 0x00000000080017f0 I2C2_ER_IRQHandler - 0x00000000080017f0 DMA1_Channel2_IRQHandler - 0x00000000080017f0 TIM8_BRK_IRQHandler - 0x00000000080017f0 CAN1_SCE_IRQHandler - 0x00000000080017f0 FLASH_IRQHandler - 0x00000000080017f0 USART1_IRQHandler - 0x00000000080017f0 SPI3_IRQHandler - 0x00000000080017f0 I2C1_ER_IRQHandler - 0x00000000080017f0 USBWakeUp_IRQHandler - 0x00000000080017f0 RTC_Alarm_IRQHandler - *fill* 0x00000000080017f2 0x2 + 0x0000000008001828 0x2 ./Core/Startup/startup_stm32f103zetx.o + 0x0000000008001828 DMA2_Channel3_IRQHandler + 0x0000000008001828 EXTI2_IRQHandler + 0x0000000008001828 TIM8_TRG_COM_IRQHandler + 0x0000000008001828 TIM8_CC_IRQHandler + 0x0000000008001828 TIM1_CC_IRQHandler + 0x0000000008001828 TIM6_IRQHandler + 0x0000000008001828 PVD_IRQHandler + 0x0000000008001828 SDIO_IRQHandler + 0x0000000008001828 EXTI3_IRQHandler + 0x0000000008001828 EXTI0_IRQHandler + 0x0000000008001828 I2C2_EV_IRQHandler + 0x0000000008001828 ADC1_2_IRQHandler + 0x0000000008001828 SPI1_IRQHandler + 0x0000000008001828 TAMPER_IRQHandler + 0x0000000008001828 TIM8_UP_IRQHandler + 0x0000000008001828 DMA2_Channel2_IRQHandler + 0x0000000008001828 DMA1_Channel4_IRQHandler + 0x0000000008001828 USART3_IRQHandler + 0x0000000008001828 RTC_IRQHandler + 0x0000000008001828 DMA1_Channel7_IRQHandler + 0x0000000008001828 CAN1_RX1_IRQHandler + 0x0000000008001828 UART5_IRQHandler + 0x0000000008001828 ADC3_IRQHandler + 0x0000000008001828 TIM4_IRQHandler + 0x0000000008001828 DMA2_Channel1_IRQHandler + 0x0000000008001828 I2C1_EV_IRQHandler + 0x0000000008001828 DMA1_Channel6_IRQHandler + 0x0000000008001828 UART4_IRQHandler + 0x0000000008001828 TIM3_IRQHandler + 0x0000000008001828 RCC_IRQHandler + 0x0000000008001828 TIM1_TRG_COM_IRQHandler + 0x0000000008001828 DMA1_Channel1_IRQHandler + 0x0000000008001828 Default_Handler + 0x0000000008001828 EXTI15_10_IRQHandler + 0x0000000008001828 TIM7_IRQHandler + 0x0000000008001828 TIM5_IRQHandler + 0x0000000008001828 EXTI9_5_IRQHandler + 0x0000000008001828 SPI2_IRQHandler + 0x0000000008001828 DMA1_Channel5_IRQHandler + 0x0000000008001828 EXTI4_IRQHandler + 0x0000000008001828 USB_LP_CAN1_RX0_IRQHandler + 0x0000000008001828 USB_HP_CAN1_TX_IRQHandler + 0x0000000008001828 DMA1_Channel3_IRQHandler + 0x0000000008001828 FSMC_IRQHandler + 0x0000000008001828 TIM1_UP_IRQHandler + 0x0000000008001828 WWDG_IRQHandler + 0x0000000008001828 TIM2_IRQHandler + 0x0000000008001828 TIM1_BRK_IRQHandler + 0x0000000008001828 EXTI1_IRQHandler + 0x0000000008001828 DMA2_Channel4_5_IRQHandler + 0x0000000008001828 USART2_IRQHandler + 0x0000000008001828 I2C2_ER_IRQHandler + 0x0000000008001828 DMA1_Channel2_IRQHandler + 0x0000000008001828 TIM8_BRK_IRQHandler + 0x0000000008001828 CAN1_SCE_IRQHandler + 0x0000000008001828 FLASH_IRQHandler + 0x0000000008001828 USART1_IRQHandler + 0x0000000008001828 SPI3_IRQHandler + 0x0000000008001828 I2C1_ER_IRQHandler + 0x0000000008001828 USBWakeUp_IRQHandler + 0x0000000008001828 RTC_Alarm_IRQHandler + *fill* 0x000000000800182a 0x2 .text.HAL_Init - 0x00000000080017f4 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000080017f4 HAL_Init + 0x000000000800182c 0x2c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x000000000800182c HAL_Init .text.HAL_InitTick - 0x0000000008001820 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001820 HAL_InitTick + 0x0000000008001858 0x60 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x0000000008001858 HAL_InitTick .text.HAL_IncTick - 0x0000000008001880 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x0000000008001880 HAL_IncTick + 0x00000000080018b8 0x24 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x00000000080018b8 HAL_IncTick .text.HAL_GetTick - 0x00000000080018a4 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000080018a4 HAL_GetTick + 0x00000000080018dc 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x00000000080018dc HAL_GetTick .text.HAL_Delay - 0x00000000080018b8 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - 0x00000000080018b8 HAL_Delay + 0x00000000080018f0 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + 0x00000000080018f0 HAL_Delay .text.__NVIC_SetPriorityGrouping - 0x0000000008001900 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001938 0x48 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x0000000008001948 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001980 0x1c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.__NVIC_SetPriority - 0x0000000008001964 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x000000000800199c 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.NVIC_EncodePriority - 0x00000000080019b8 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x00000000080019f0 0x64 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.SysTick_Config - 0x0000000008001a1c 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001a54 0x44 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x0000000008001a60 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001a60 HAL_NVIC_SetPriorityGrouping + 0x0000000008001a98 0x16 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001a98 HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x0000000008001a76 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001a76 HAL_NVIC_SetPriority + 0x0000000008001aae 0x38 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001aae HAL_NVIC_SetPriority .text.HAL_SYSTICK_Config - 0x0000000008001aae 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - 0x0000000008001aae HAL_SYSTICK_Config - *fill* 0x0000000008001ac6 0x2 + 0x0000000008001ae6 0x18 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + 0x0000000008001ae6 HAL_SYSTICK_Config + *fill* 0x0000000008001afe 0x2 .text.HAL_GPIO_Init - 0x0000000008001ac8 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001ac8 HAL_GPIO_Init + 0x0000000008001b00 0x328 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008001b00 HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x0000000008001df0 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001df0 HAL_GPIO_ReadPin + 0x0000000008001e28 0x2e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008001e28 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x0000000008001e1e 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - 0x0000000008001e1e HAL_GPIO_WritePin - *fill* 0x0000000008001e4e 0x2 + 0x0000000008001e56 0x30 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + 0x0000000008001e56 HAL_GPIO_WritePin + *fill* 0x0000000008001e86 0x2 .text.HAL_I2C_Init - 0x0000000008001e50 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x0000000008001e50 HAL_I2C_Init + 0x0000000008001e88 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008001e88 HAL_I2C_Init .text.HAL_I2C_Mem_Write - 0x00000000080020d8 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x00000000080020d8 HAL_I2C_Mem_Write + 0x0000000008002110 0x1f4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002110 HAL_I2C_Mem_Write .text.HAL_I2C_Mem_Read - 0x00000000080022cc 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - 0x00000000080022cc HAL_I2C_Mem_Read + 0x0000000008002304 0x4d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002304 HAL_I2C_Mem_Read .text.I2C_RequestMemoryWrite - 0x000000000800279c 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x00000000080027d4 0x12c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_RequestMemoryRead - 0x00000000080028c8 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002900 0x1d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnFlagUntilTimeout - 0x0000000008002a98 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002ad0 0xae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnMasterAddressFlagUntilTimeout - 0x0000000008002b46 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002b7e 0xfe ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnTXEFlagUntilTimeout - 0x0000000008002c44 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002c7c 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnBTFFlagUntilTimeout - 0x0000000008002cc6 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002cfe 0x82 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_WaitOnRXNEFlagUntilTimeout - 0x0000000008002d48 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002d80 0xac ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.I2C_IsAcknowledgeFailed - 0x0000000008002df4 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + 0x0000000008002e2c 0x5c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o .text.HAL_RCC_OscConfig - 0x0000000008002e50 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008002e50 HAL_RCC_OscConfig + 0x0000000008002e88 0x500 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008002e88 HAL_RCC_OscConfig .text.HAL_RCC_ClockConfig - 0x0000000008003350 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003350 HAL_RCC_ClockConfig + 0x0000000008003388 0x1d4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003388 HAL_RCC_ClockConfig .text.HAL_RCC_GetSysClockFreq - 0x0000000008003524 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x0000000008003524 HAL_RCC_GetSysClockFreq + 0x000000000800355c 0xc0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x000000000800355c HAL_RCC_GetSysClockFreq .text.HAL_RCC_GetHCLKFreq - 0x00000000080035e4 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080035e4 HAL_RCC_GetHCLKFreq + 0x000000000800361c 0x14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x000000000800361c HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x00000000080035f8 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - 0x00000000080035f8 HAL_RCC_GetPCLK1Freq + 0x0000000008003630 0x28 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003630 HAL_RCC_GetPCLK1Freq .text.RCC_Delay - 0x0000000008003620 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + 0x0000000008003658 0x3c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o .text.HAL_SRAM_Init - 0x000000000800365c 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - 0x000000000800365c HAL_SRAM_Init - *fill* 0x00000000080036f6 0x2 + 0x0000000008003694 0x9a ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + 0x0000000008003694 HAL_SRAM_Init + *fill* 0x000000000800372e 0x2 .text.FSMC_NORSRAM_Init - 0x00000000080036f8 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x00000000080036f8 FSMC_NORSRAM_Init + 0x0000000008003730 0xd4 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008003730 FSMC_NORSRAM_Init .text.FSMC_NORSRAM_Timing_Init - 0x00000000080037cc 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x00000000080037cc FSMC_NORSRAM_Timing_Init + 0x0000000008003804 0x68 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x0000000008003804 FSMC_NORSRAM_Timing_Init .text.FSMC_NORSRAM_Extended_Timing_Init - 0x0000000008003834 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - 0x0000000008003834 FSMC_NORSRAM_Extended_Timing_Init + 0x000000000800386c 0x70 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + 0x000000000800386c FSMC_NORSRAM_Extended_Timing_Init .text.LCD_WR_REG - 0x00000000080038a4 0x1c ./HW_Devices/LCD.o - 0x00000000080038a4 LCD_WR_REG + 0x00000000080038dc 0x1c ./HW_Devices/LCD.o + 0x00000000080038dc LCD_WR_REG .text.LCD_WR_DATA - 0x00000000080038c0 0x20 ./HW_Devices/LCD.o - 0x00000000080038c0 LCD_WR_DATA + 0x00000000080038f8 0x20 ./HW_Devices/LCD.o + 0x00000000080038f8 LCD_WR_DATA .text.LCD_WriteReg - 0x00000000080038e0 0x2c ./HW_Devices/LCD.o - 0x00000000080038e0 LCD_WriteReg + 0x0000000008003918 0x2c ./HW_Devices/LCD.o + 0x0000000008003918 LCD_WriteReg .text.LCD_ReadReg - 0x000000000800390c 0x28 ./HW_Devices/LCD.o - 0x000000000800390c LCD_ReadReg + 0x0000000008003944 0x28 ./HW_Devices/LCD.o + 0x0000000008003944 LCD_ReadReg .text.LCD_Scan_Dir - 0x0000000008003934 0x2dc ./HW_Devices/LCD.o - 0x0000000008003934 LCD_Scan_Dir + 0x000000000800396c 0x2dc ./HW_Devices/LCD.o + 0x000000000800396c LCD_Scan_Dir .text.LCD_Display_Dir - 0x0000000008003c10 0x18c ./HW_Devices/LCD.o - 0x0000000008003c10 LCD_Display_Dir + 0x0000000008003c48 0x18c ./HW_Devices/LCD.o + 0x0000000008003c48 LCD_Display_Dir .text.LCDx_Init - 0x0000000008003d9c 0x1ec ./HW_Devices/LCD.o - 0x0000000008003d9c LCDx_Init + 0x0000000008003dd4 0x1ec ./HW_Devices/LCD.o + 0x0000000008003dd4 LCDx_Init .text.LCD_SetCursor - 0x0000000008003f88 0x120 ./HW_Devices/LCD.o - 0x0000000008003f88 LCD_SetCursor + 0x0000000008003fc0 0x120 ./HW_Devices/LCD.o + 0x0000000008003fc0 LCD_SetCursor .text.LCD_set_dot - 0x00000000080040a8 0x40 ./HW_Devices/LCD.o - 0x00000000080040a8 LCD_set_dot + 0x00000000080040e0 0x40 ./HW_Devices/LCD.o + 0x00000000080040e0 LCD_set_dot .text.LCD_Clear - 0x00000000080040e8 0xa4 ./HW_Devices/LCD.o - 0x00000000080040e8 LCD_Clear + 0x0000000008004120 0xa4 ./HW_Devices/LCD.o + 0x0000000008004120 LCD_Clear .text.LCD_DrawLine - 0x000000000800418c 0x10a ./HW_Devices/LCD.o - 0x000000000800418c LCD_DrawLine + 0x00000000080041c4 0x10a ./HW_Devices/LCD.o + 0x00000000080041c4 LCD_DrawLine .text.Draw_Circle - 0x0000000008004296 0x156 ./HW_Devices/LCD.o - 0x0000000008004296 Draw_Circle + 0x00000000080042ce 0x156 ./HW_Devices/LCD.o + 0x00000000080042ce Draw_Circle .text.LCD_ShowChar - 0x00000000080043ec 0xf8 ./HW_Devices/LCD.o - 0x00000000080043ec LCD_ShowChar + 0x0000000008004424 0xf8 ./HW_Devices/LCD.o + 0x0000000008004424 LCD_ShowChar .text.LCD_ShowString - 0x00000000080044e4 0x7c ./HW_Devices/LCD.o - 0x00000000080044e4 LCD_ShowString - .text.IIC_SAND_DATE - 0x0000000008004560 0x3c ./HW_Devices/eeprom.o - 0x0000000008004560 IIC_SAND_DATE - .text.IIC_READ_DATE - 0x000000000800459c 0x3c ./HW_Devices/eeprom.o - 0x000000000800459c IIC_READ_DATE + 0x000000000800451c 0x7c ./HW_Devices/LCD.o + 0x000000000800451c LCD_ShowString .text.EPPROM_SLOWWRITE_INIT - 0x00000000080045d8 0x34 ./HW_Devices/eeprom.o - 0x00000000080045d8 EPPROM_SLOWWRITE_INIT + 0x0000000008004598 0x34 ./HW_Devices/eeprom.o + 0x0000000008004598 EPPROM_SLOWWRITE_INIT .text.EEPROM_SLOWWRITE_SERVER - 0x000000000800460c 0x8c ./HW_Devices/eeprom.o - 0x000000000800460c EEPROM_SLOWWRITE_SERVER + 0x00000000080045cc 0x8c ./HW_Devices/eeprom.o + 0x00000000080045cc EEPROM_SLOWWRITE_SERVER .text.EEPROM_READ_BATY - 0x0000000008004698 0x24 ./HW_Devices/eeprom.o - 0x0000000008004698 EEPROM_READ_BATY + 0x0000000008004658 0x24 ./HW_Devices/eeprom.o + 0x0000000008004658 EEPROM_READ_BATY .text.EEPROM_WRITE_BATY - 0x00000000080046bc 0x8c ./HW_Devices/eeprom.o - 0x00000000080046bc EEPROM_WRITE_BATY + 0x000000000800467c 0x8c ./HW_Devices/eeprom.o + 0x000000000800467c EEPROM_WRITE_BATY + .text.IIC_SAND_DATE + 0x0000000008004708 0x3c ./HW_Devices/iic.o + 0x0000000008004708 IIC_SAND_DATE + .text.IIC_READ_DATE + 0x0000000008004744 0x3c ./HW_Devices/iic.o + 0x0000000008004744 IIC_READ_DATE .text.TP_Write_Byte - 0x0000000008004748 0x6c ./HW_Devices/touch.o - 0x0000000008004748 TP_Write_Byte + 0x0000000008004780 0x6c ./HW_Devices/touch.o + 0x0000000008004780 TP_Write_Byte .text.TP_Read_AD - 0x00000000080047b4 0xc8 ./HW_Devices/touch.o - 0x00000000080047b4 TP_Read_AD + 0x00000000080047ec 0xc8 ./HW_Devices/touch.o + 0x00000000080047ec TP_Read_AD .text.TP_Read_XOY - 0x000000000800487c 0x104 ./HW_Devices/touch.o - 0x000000000800487c TP_Read_XOY + 0x00000000080048b4 0x104 ./HW_Devices/touch.o + 0x00000000080048b4 TP_Read_XOY .text.TP_Read_XY_ADC - 0x0000000008004980 0x32 ./HW_Devices/touch.o - 0x0000000008004980 TP_Read_XY_ADC + 0x00000000080049b8 0x32 ./HW_Devices/touch.o + 0x00000000080049b8 TP_Read_XY_ADC .text.TP_Read_XY2 - 0x00000000080049b2 0xd0 ./HW_Devices/touch.o - 0x00000000080049b2 TP_Read_XY2 - *fill* 0x0000000008004a82 0x2 + 0x00000000080049ea 0xd0 ./HW_Devices/touch.o + 0x00000000080049ea TP_Read_XY2 + *fill* 0x0000000008004aba 0x2 .text.TP_Server - 0x0000000008004a84 0xf0 ./HW_Devices/touch.o - 0x0000000008004a84 TP_Server + 0x0000000008004abc 0xf0 ./HW_Devices/touch.o + 0x0000000008004abc TP_Server .text.TP_DrwaTrage - 0x0000000008004b74 0xb8 ./HW_Devices/touch.o - 0x0000000008004b74 TP_DrwaTrage + 0x0000000008004bac 0xb8 ./HW_Devices/touch.o + 0x0000000008004bac TP_DrwaTrage .text.TP_adjustment - 0x0000000008004c2c 0x594 ./HW_Devices/touch.o - 0x0000000008004c2c TP_adjustment + 0x0000000008004c64 0x594 ./HW_Devices/touch.o + 0x0000000008004c64 TP_adjustment + .text.Max30102_reset + 0x00000000080051f8 0x20 ./SW_APPs/APP_blood.o + 0x00000000080051f8 Max30102_reset + .text.MAX30102_Config + 0x0000000008005218 0xae ./SW_APPs/APP_blood.o + 0x0000000008005218 MAX30102_Config + *fill* 0x00000000080052c6 0x2 + .text.max30102_read_fifo + 0x00000000080052c8 0x100 ./SW_APPs/APP_blood.o + 0x00000000080052c8 max30102_read_fifo .text.APP_blood_init - 0x00000000080051c0 0x1c ./SW_APPs/APP_blood.o - 0x00000000080051c0 APP_blood_init + 0x00000000080053c8 0x24 ./SW_APPs/APP_blood.o + 0x00000000080053c8 APP_blood_init .text.APP_blood_loop - 0x00000000080051dc 0xc ./SW_APPs/APP_blood.o - 0x00000000080051dc APP_blood_loop + 0x00000000080053ec 0xd0 ./SW_APPs/APP_blood.o + 0x00000000080053ec APP_blood_loop .text.main_app - 0x00000000080051e8 0x64 ./SW_APPs/Main_APP.o - 0x00000000080051e8 main_app + 0x00000000080054bc 0x64 ./SW_APPs/Main_APP.o + 0x00000000080054bc main_app .text.Inteface_SetCursor - 0x000000000800524c 0x34 ./SW_APPs/windows.o - 0x000000000800524c Inteface_SetCursor + 0x0000000008005520 0x34 ./SW_APPs/windows.o + 0x0000000008005520 Inteface_SetCursor .text.Inteface_SetColor - 0x0000000008005280 0x20 ./SW_APPs/windows.o - 0x0000000008005280 Inteface_SetColor - .text.UI_Init 0x00000000080052a0 0x66 ./SW_APPs/windows.o - 0x00000000080052a0 UI_Init + 0x0000000008005554 0x20 ./SW_APPs/windows.o + 0x0000000008005554 Inteface_SetColor + .text.UI_Init 0x0000000008005574 0x66 ./SW_APPs/windows.o + 0x0000000008005574 UI_Init .text.New_Window - 0x0000000008005306 0xd2 ./SW_APPs/windows.o - 0x0000000008005306 New_Window + 0x00000000080055da 0xd2 ./SW_APPs/windows.o + 0x00000000080055da New_Window .text.Refresh_Window - 0x00000000080053d8 0x10a ./SW_APPs/windows.o - 0x00000000080053d8 Refresh_Window + 0x00000000080056ac 0x10a ./SW_APPs/windows.o + 0x00000000080056ac Refresh_Window .text.Refresh_UI - 0x00000000080054e2 0x94 ./SW_APPs/windows.o - 0x00000000080054e2 Refresh_UI - .text.Chack 0x0000000008005576 0xdc ./SW_APPs/windows.o - 0x0000000008005576 Chack - *fill* 0x0000000008005652 0x2 + 0x00000000080057b6 0x94 ./SW_APPs/windows.o + 0x00000000080057b6 Refresh_UI + .text.Chack 0x000000000800584a 0xdc ./SW_APPs/windows.o + 0x000000000800584a Chack + *fill* 0x0000000008005926 0x2 .text.UI_Server - 0x0000000008005654 0x1f4 ./SW_APPs/windows.o - 0x0000000008005654 UI_Server - .text.__errno 0x0000000008005848 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) - 0x0000000008005848 __errno + 0x0000000008005928 0x1f4 ./SW_APPs/windows.o + 0x0000000008005928 UI_Server + .text.__errno 0x0000000008005b1c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + 0x0000000008005b1c __errno .text.__libc_init_array - 0x0000000008005854 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) - 0x0000000008005854 __libc_init_array - .text.malloc 0x000000000800589c 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - 0x000000000800589c malloc - .text.free 0x00000000080058ac 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - 0x00000000080058ac free - .text.memset 0x00000000080058bc 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) - 0x00000000080058bc memset - .text._free_r 0x00000000080058cc 0x98 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) - 0x00000000080058cc _free_r + 0x0000000008005b28 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + 0x0000000008005b28 __libc_init_array + .text.malloc 0x0000000008005b70 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x0000000008005b70 malloc + .text.free 0x0000000008005b80 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x0000000008005b80 free + .text.memset 0x0000000008005b90 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + 0x0000000008005b90 memset + .text._free_r 0x0000000008005ba0 0x98 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + 0x0000000008005ba0 _free_r .text._malloc_r - 0x0000000008005964 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) - 0x0000000008005964 _malloc_r - .text.__cvt 0x0000000008005a18 0xbe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008005a18 __cvt + 0x0000000008005c38 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + 0x0000000008005c38 _malloc_r + .text.__cvt 0x0000000008005cec 0xbe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008005cec __cvt .text.__exponent - 0x0000000008005ad6 0x7c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008005ad6 __exponent - *fill* 0x0000000008005b52 0x2 + 0x0000000008005daa 0x7c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008005daa __exponent + *fill* 0x0000000008005e26 0x2 .text._printf_float - 0x0000000008005b54 0x458 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - 0x0000000008005b54 _printf_float + 0x0000000008005e28 0x458 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x0000000008005e28 _printf_float .text._printf_common - 0x0000000008005fac 0xde /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - 0x0000000008005fac _printf_common - *fill* 0x000000000800608a 0x2 + 0x0000000008006280 0xde /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x0000000008006280 _printf_common + *fill* 0x000000000800635e 0x2 .text._printf_i - 0x000000000800608c 0x24c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - 0x000000000800608c _printf_i - .text._sbrk_r 0x00000000080062d8 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) - 0x00000000080062d8 _sbrk_r - .text.sprintf 0x00000000080062f8 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) - 0x00000000080062f8 sprintf - 0x00000000080062f8 siprintf - .text.quorem 0x0000000008006338 0x11a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - *fill* 0x0000000008006452 0x6 - .text._dtoa_r 0x0000000008006458 0xbdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - 0x0000000008006458 _dtoa_r + 0x0000000008006360 0x24c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x0000000008006360 _printf_i + .text._sbrk_r 0x00000000080065ac 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + 0x00000000080065ac _sbrk_r + .text.sprintf 0x00000000080065cc 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + 0x00000000080065cc sprintf + 0x00000000080065cc siprintf + .text.quorem 0x000000000800660c 0x11a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + *fill* 0x0000000008006726 0x2 + .text._dtoa_r 0x0000000008006728 0xbdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x0000000008006728 _dtoa_r .text._localeconv_r - 0x0000000008007034 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) - 0x0000000008007034 _localeconv_r - .text.memchr 0x000000000800703c 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) - 0x000000000800703c memchr - .text.memcpy 0x0000000008007058 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) - 0x0000000008007058 memcpy + 0x0000000008007304 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + 0x0000000008007304 _localeconv_r + .text.memchr 0x000000000800730c 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + 0x000000000800730c memchr + .text.memcpy 0x0000000008007328 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + 0x0000000008007328 memcpy .text.__malloc_lock - 0x0000000008007074 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - 0x0000000008007074 __malloc_lock + 0x0000000008007344 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x0000000008007344 __malloc_lock .text.__malloc_unlock - 0x0000000008007080 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - 0x0000000008007080 __malloc_unlock - .text._Balloc 0x000000000800708c 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800708c _Balloc - .text._Bfree 0x000000000800710c 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x000000000800710c _Bfree + 0x0000000008007350 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x0000000008007350 __malloc_unlock + .text._Balloc 0x000000000800735c 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800735c _Balloc + .text._Bfree 0x00000000080073dc 0x44 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080073dc _Bfree .text.__multadd - 0x0000000008007150 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008007150 __multadd + 0x0000000008007420 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008007420 __multadd .text.__hi0bits - 0x00000000080071e4 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080071e4 __hi0bits + 0x00000000080074b4 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080074b4 __hi0bits .text.__lo0bits - 0x0000000008007224 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008007224 __lo0bits - .text.__i2b 0x0000000008007280 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008007280 __i2b + 0x00000000080074f4 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080074f4 __lo0bits + .text.__i2b 0x0000000008007550 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008007550 __i2b .text.__multiply - 0x00000000080072ac 0x148 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080072ac __multiply + 0x000000000800757c 0x148 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x000000000800757c __multiply .text.__pow5mult - 0x00000000080073f4 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080073f4 __pow5mult + 0x00000000080076c4 0xb4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080076c4 __pow5mult .text.__lshift - 0x00000000080074a8 0xd8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080074a8 __lshift - .text.__mcmp 0x0000000008007580 0x36 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008007580 __mcmp - *fill* 0x00000000080075b6 0x2 - .text.__mdiff 0x00000000080075b8 0x120 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080075b8 __mdiff - .text.__d2b 0x00000000080076d8 0xb8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080076d8 __d2b + 0x0000000008007778 0xd8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008007778 __lshift + .text.__mcmp 0x0000000008007850 0x36 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008007850 __mcmp + *fill* 0x0000000008007886 0x2 + .text.__mdiff 0x0000000008007888 0x120 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008007888 __mdiff + .text.__d2b 0x00000000080079a8 0xb8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080079a8 __d2b .text._calloc_r - 0x0000000008007790 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) - 0x0000000008007790 _calloc_r + 0x0000000008007a60 0x1c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + 0x0000000008007a60 _calloc_r .text.__ssputs_r - 0x00000000080077ac 0xb6 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - 0x00000000080077ac __ssputs_r - *fill* 0x0000000008007862 0x2 + 0x0000000008007a7c 0xb6 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x0000000008007a7c __ssputs_r + *fill* 0x0000000008007b32 0x2 .text._svfprintf_r - 0x0000000008007864 0x200 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - 0x0000000008007864 _svfprintf_r - 0x0000000008007864 _svfiprintf_r + 0x0000000008007b34 0x200 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x0000000008007b34 _svfprintf_r + 0x0000000008007b34 _svfiprintf_r .text.__assert_func - 0x0000000008007a64 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) - 0x0000000008007a64 __assert_func - .text.fprintf 0x0000000008007aa0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) - 0x0000000008007aa0 fprintf - 0x0000000008007aa0 fiprintf + 0x0000000008007d34 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x0000000008007d34 __assert_func + .text.fprintf 0x0000000008007d70 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + 0x0000000008007d70 fprintf + 0x0000000008007d70 fiprintf .text.__retarget_lock_init_recursive - 0x0000000008007ac4 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008007ac4 __retarget_lock_init_recursive + 0x0000000008007d94 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x0000000008007d94 __retarget_lock_init_recursive .text.__retarget_lock_acquire_recursive - 0x0000000008007ac6 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008007ac6 __retarget_lock_acquire_recursive + 0x0000000008007d96 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x0000000008007d96 __retarget_lock_acquire_recursive .text.__retarget_lock_release_recursive - 0x0000000008007ac8 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x0000000008007ac8 __retarget_lock_release_recursive + 0x0000000008007d98 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x0000000008007d98 __retarget_lock_release_recursive .text.__ascii_mbtowc - 0x0000000008007aca 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) - 0x0000000008007aca __ascii_mbtowc - .text.memmove 0x0000000008007aee 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) - 0x0000000008007aee memmove + 0x0000000008007d9a 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + 0x0000000008007d9a __ascii_mbtowc + .text.memmove 0x0000000008007dbe 0x34 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + 0x0000000008007dbe memmove .text._realloc_r - 0x0000000008007b22 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) - 0x0000000008007b22 _realloc_r + 0x0000000008007df2 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + 0x0000000008007df2 _realloc_r .text.__sfputc_r - 0x0000000008007b6e 0x2a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x0000000008007e3e 0x2a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .text.__sfputs_r - 0x0000000008007b98 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - 0x0000000008007b98 __sfputs_r + 0x0000000008007e68 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x0000000008007e68 __sfputs_r .text._vfprintf_r - 0x0000000008007bbc 0x260 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - 0x0000000008007bbc _vfiprintf_r - 0x0000000008007bbc _vfprintf_r + 0x0000000008007e8c 0x260 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x0000000008007e8c _vfiprintf_r + 0x0000000008007e8c _vfprintf_r .text.__swbuf_r - 0x0000000008007e1c 0xa4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - 0x0000000008007e1c __swbuf_r + 0x00000000080080ec 0xa4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + 0x00000000080080ec __swbuf_r .text.__ascii_wctomb - 0x0000000008007ec0 0x1a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) - 0x0000000008007ec0 __ascii_wctomb - *fill* 0x0000000008007eda 0x2 + 0x0000000008008190 0x1a /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + 0x0000000008008190 __ascii_wctomb + *fill* 0x00000000080081aa 0x2 .text.__swsetup_r - 0x0000000008007edc 0xdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - 0x0000000008007edc __swsetup_r - .text.abort 0x0000000008007fb8 0xe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) - 0x0000000008007fb8 abort - *fill* 0x0000000008007fc6 0x2 + 0x00000000080081ac 0xdc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + 0x00000000080081ac __swsetup_r + .text.abort 0x0000000008008288 0xe /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + 0x0000000008008288 abort + *fill* 0x0000000008008296 0x2 .text.__sflush_r - 0x0000000008007fc8 0x10c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - 0x0000000008007fc8 __sflush_r + 0x0000000008008298 0x10c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x0000000008008298 __sflush_r .text._fflush_r - 0x00000000080080d4 0x78 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - 0x00000000080080d4 _fflush_r - .text.std 0x000000000800814c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080083a4 0x78 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x00000000080083a4 _fflush_r + .text.std 0x000000000800841c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) .text._cleanup_r - 0x0000000008008194 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x0000000008008194 _cleanup_r + 0x0000000008008464 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008008464 _cleanup_r .text.__sfmoreglue - 0x00000000080081a0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081a0 __sfmoreglue + 0x0000000008008470 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x0000000008008470 __sfmoreglue .text.__sfp_lock_acquire - 0x00000000080081cc 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081cc __sfp_lock_acquire + 0x000000000800849c 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800849c __sfp_lock_acquire .text.__sfp_lock_release - 0x00000000080081d8 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081d8 __sfp_lock_release + 0x00000000080084a8 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080084a8 __sfp_lock_release .text.__sinit_lock_acquire - 0x00000000080081e4 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081e4 __sinit_lock_acquire + 0x00000000080084b4 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080084b4 __sinit_lock_acquire .text.__sinit_lock_release - 0x00000000080081f0 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081f0 __sinit_lock_release - .text.__sinit 0x00000000080081fc 0x70 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080081fc __sinit - .text.__sfp 0x000000000800826c 0x8c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800826c __sfp + 0x00000000080084c0 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080084c0 __sinit_lock_release + .text.__sinit 0x00000000080084cc 0x70 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080084cc __sinit + .text.__sfp 0x000000000800853c 0x8c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800853c __sfp .text._fwalk_reent - 0x00000000080082f8 0x3e /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - 0x00000000080082f8 _fwalk_reent + 0x00000000080085c8 0x3e /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + 0x00000000080085c8 _fwalk_reent .text.__swhatbuf_r - 0x0000000008008336 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - 0x0000000008008336 __swhatbuf_r - *fill* 0x000000000800837e 0x2 + 0x0000000008008606 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000008008606 __swhatbuf_r + *fill* 0x000000000800864e 0x2 .text.__smakebuf_r - 0x0000000008008380 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - 0x0000000008008380 __smakebuf_r + 0x0000000008008650 0x80 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000008008650 __smakebuf_r .text._malloc_usable_size_r - 0x0000000008008400 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) - 0x0000000008008400 _malloc_usable_size_r + 0x00000000080086d0 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + 0x00000000080086d0 _malloc_usable_size_r .text._raise_r - 0x0000000008008410 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - 0x0000000008008410 _raise_r - .text.raise 0x0000000008008460 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - 0x0000000008008460 raise - .text._kill_r 0x0000000008008470 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - 0x0000000008008470 _kill_r + 0x00000000080086e0 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x00000000080086e0 _raise_r + .text.raise 0x0000000008008730 0x10 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x0000000008008730 raise + .text._kill_r 0x0000000008008740 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000008008740 _kill_r .text._getpid_r - 0x0000000008008494 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - 0x0000000008008494 _getpid_r - .text.__sread 0x0000000008008498 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x0000000008008498 __sread + 0x0000000008008764 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000008008764 _getpid_r + .text.__sread 0x0000000008008768 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000008008768 __sread .text.__swrite - 0x00000000080084ba 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x00000000080084ba __swrite - .text.__sseek 0x00000000080084f2 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x00000000080084f2 __sseek + 0x000000000800878a 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x000000000800878a __swrite + .text.__sseek 0x00000000080087c2 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x00000000080087c2 __sseek .text.__sclose - 0x0000000008008516 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - 0x0000000008008516 __sclose - *fill* 0x000000000800851e 0x2 + 0x00000000080087e6 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x00000000080087e6 __sclose + *fill* 0x00000000080087ee 0x2 .text._write_r - 0x0000000008008520 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - 0x0000000008008520 _write_r + 0x00000000080087f0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + 0x00000000080087f0 _write_r .text._close_r - 0x0000000008008544 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - 0x0000000008008544 _close_r + 0x0000000008008814 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + 0x0000000008008814 _close_r .text._fstat_r - 0x0000000008008564 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - 0x0000000008008564 _fstat_r + 0x0000000008008834 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + 0x0000000008008834 _fstat_r .text._isatty_r - 0x0000000008008588 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - 0x0000000008008588 _isatty_r + 0x0000000008008858 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + 0x0000000008008858 _isatty_r .text._lseek_r - 0x00000000080085a8 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - 0x00000000080085a8 _lseek_r - .text._read_r 0x00000000080085cc 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - 0x00000000080085cc _read_r + 0x0000000008008878 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + 0x0000000008008878 _lseek_r + .text._read_r 0x000000000800889c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + 0x000000000800889c _read_r *(.glue_7) - .glue_7 0x00000000080085f0 0x0 linker stubs + .glue_7 0x00000000080088c0 0x0 linker stubs *(.glue_7t) - .glue_7t 0x00000000080085f0 0x0 linker stubs + .glue_7t 0x00000000080088c0 0x0 linker stubs *(.eh_frame) - .eh_frame 0x00000000080085f0 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + .eh_frame 0x00000000080088c0 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o *(.init) - .init 0x00000000080085f0 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o - 0x00000000080085f0 _init - .init 0x00000000080085f4 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + .init 0x00000000080088c0 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o + 0x00000000080088c0 _init + .init 0x00000000080088c4 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o *(.fini) - .fini 0x00000000080085fc 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o - 0x00000000080085fc _fini - .fini 0x0000000008008600 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o - 0x0000000008008608 . = ALIGN (0x4) - 0x0000000008008608 _etext = . + .fini 0x00000000080088cc 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crti.o + 0x00000000080088cc _fini + .fini 0x00000000080088d0 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + 0x00000000080088d8 . = ALIGN (0x4) + 0x00000000080088d8 _etext = . -.vfp11_veneer 0x0000000008008608 0x0 - .vfp11_veneer 0x0000000008008608 0x0 linker stubs +.vfp11_veneer 0x00000000080088d8 0x0 + .vfp11_veneer 0x00000000080088d8 0x0 linker stubs -.v4_bx 0x0000000008008608 0x0 - .v4_bx 0x0000000008008608 0x0 linker stubs +.v4_bx 0x00000000080088d8 0x0 + .v4_bx 0x00000000080088d8 0x0 linker stubs -.iplt 0x0000000008008608 0x0 - .iplt 0x0000000008008608 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o +.iplt 0x00000000080088d8 0x0 + .iplt 0x00000000080088d8 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o -.rodata 0x0000000008008608 0xf34 - 0x0000000008008608 . = ALIGN (0x4) +.rodata 0x00000000080088d8 0xf54 + 0x00000000080088d8 . = ALIGN (0x4) *(.rodata) - .rodata 0x0000000008008608 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .rodata 0x0000000008008618 0xb8 ./HW_Devices/touch.o - .rodata 0x00000000080086d0 0x9 ./SW_APPs/Main_APP.o + .rodata 0x00000000080088d8 0x10 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .rodata 0x00000000080088e8 0xb8 ./HW_Devices/touch.o + .rodata 0x00000000080089a0 0x1f ./SW_APPs/APP_blood.o + *fill* 0x00000000080089bf 0x1 + .rodata 0x00000000080089c0 0x9 ./SW_APPs/Main_APP.o *(.rodata*) - *fill* 0x00000000080086d9 0x3 + *fill* 0x00000000080089c9 0x3 .rodata.AHBPrescTable - 0x00000000080086dc 0x10 ./Core/Src/system_stm32f1xx.o - 0x00000000080086dc AHBPrescTable + 0x00000000080089cc 0x10 ./Core/Src/system_stm32f1xx.o + 0x00000000080089cc AHBPrescTable .rodata.APBPrescTable - 0x00000000080086ec 0x8 ./Core/Src/system_stm32f1xx.o - 0x00000000080086ec APBPrescTable + 0x00000000080089dc 0x8 ./Core/Src/system_stm32f1xx.o + 0x00000000080089dc APBPrescTable .rodata.asc2_1206 - 0x00000000080086f4 0x474 ./HW_Devices/LCD.o - 0x00000000080086f4 asc2_1206 + 0x00000000080089e4 0x474 ./HW_Devices/LCD.o + 0x00000000080089e4 asc2_1206 .rodata.asc2_1608 - 0x0000000008008b68 0x5f0 ./HW_Devices/LCD.o - 0x0000000008008b68 asc2_1608 + 0x0000000008008e58 0x5f0 ./HW_Devices/LCD.o + 0x0000000008008e58 asc2_1608 .rodata._global_impure_ptr - 0x0000000008009158 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) - 0x0000000008009158 _global_impure_ptr + 0x0000000008009448 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) + 0x0000000008009448 _global_impure_ptr .rodata._printf_float.str1.1 - 0x000000000800915c 0x12 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x000000000800944c 0x12 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) .rodata._printf_i.str1.1 - 0x000000000800916e 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x000000000800945e 0x22 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .rodata._dtoa_r.str1.1 - 0x0000000008009190 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x0000000008009480 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) 0x96 (size before relaxing) .rodata._Balloc.str1.1 - 0x0000000008009224 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008009514 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) 0x77 (size before relaxing) .rodata.__multadd.str1.1 - 0x0000000008009284 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - *fill* 0x0000000008009284 0x4 + 0x0000000008009574 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + *fill* 0x0000000008009574 0x4 .rodata.__mprec_bigtens - 0x0000000008009288 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x0000000008009288 __mprec_bigtens + 0x0000000008009578 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008009578 __mprec_bigtens .rodata.__mprec_tens - 0x00000000080092b0 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - 0x00000000080092b0 __mprec_tens + 0x00000000080095a0 0xc8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000080095a0 __mprec_tens .rodata.p05.6150 - 0x0000000008009378 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x0000000008009668 0xc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) .rodata._svfprintf_r.str1.1 - 0x0000000008009384 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x0000000008009674 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) .rodata.__assert_func.str1.1 - 0x0000000008009395 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x0000000008009685 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) 0x3d (size before relaxing) .rodata._setlocale_r.str1.1 - 0x00000000080093d1 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x00000000080096c1 0x8 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) 0x9 (size before relaxing) .rodata.str1.1 - 0x00000000080093d9 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x00000000080096c9 0x2 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .rodata._vfprintf_r.str1.1 - 0x00000000080093db 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x00000000080096cb 0x11 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .rodata._ctype_ - 0x00000000080093db 0x101 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) - 0x00000000080093db _ctype_ + 0x00000000080096cb 0x101 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) + 0x00000000080096cb _ctype_ .rodata.__sf_fake_stderr - 0x00000000080094dc 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080094dc __sf_fake_stderr + 0x00000000080097cc 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080097cc __sf_fake_stderr .rodata.__sf_fake_stdin - 0x00000000080094fc 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x00000000080094fc __sf_fake_stdin + 0x00000000080097ec 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000080097ec __sf_fake_stdin .rodata.__sf_fake_stdout - 0x000000000800951c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - 0x000000000800951c __sf_fake_stdout - 0x000000000800953c . = ALIGN (0x4) + 0x000000000800980c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x000000000800980c __sf_fake_stdout + 0x000000000800982c . = ALIGN (0x4) -.rel.dyn 0x000000000800953c 0x0 - .rel.iplt 0x000000000800953c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o +.rel.dyn 0x000000000800982c 0x0 + .rel.iplt 0x000000000800982c 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o -.ARM.extab 0x000000000800953c 0x0 - 0x000000000800953c . = ALIGN (0x4) +.ARM.extab 0x000000000800982c 0x0 + 0x000000000800982c . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x000000000800953c . = ALIGN (0x4) + 0x000000000800982c . = ALIGN (0x4) -.ARM 0x000000000800953c 0x0 - 0x000000000800953c . = ALIGN (0x4) - 0x000000000800953c __exidx_start = . +.ARM 0x000000000800982c 0x0 + 0x000000000800982c . = ALIGN (0x4) + 0x000000000800982c __exidx_start = . *(.ARM.exidx*) - 0x000000000800953c __exidx_end = . - 0x000000000800953c . = ALIGN (0x4) + 0x000000000800982c __exidx_end = . + 0x000000000800982c . = ALIGN (0x4) -.preinit_array 0x000000000800953c 0x0 - 0x000000000800953c . = ALIGN (0x4) - 0x000000000800953c PROVIDE (__preinit_array_start = .) +.preinit_array 0x000000000800982c 0x0 + 0x000000000800982c . = ALIGN (0x4) + 0x000000000800982c PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x000000000800953c PROVIDE (__preinit_array_end = .) - 0x000000000800953c . = ALIGN (0x4) + 0x000000000800982c PROVIDE (__preinit_array_end = .) + 0x000000000800982c . = ALIGN (0x4) -.init_array 0x000000000800953c 0x4 - 0x000000000800953c . = ALIGN (0x4) - 0x000000000800953c PROVIDE (__init_array_start = .) +.init_array 0x000000000800982c 0x4 + 0x000000000800982c . = ALIGN (0x4) + 0x000000000800982c PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x000000000800953c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o - 0x0000000008009540 PROVIDE (__init_array_end = .) - 0x0000000008009540 . = ALIGN (0x4) + .init_array 0x000000000800982c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + 0x0000000008009830 PROVIDE (__init_array_end = .) + 0x0000000008009830 . = ALIGN (0x4) -.fini_array 0x0000000008009540 0x4 - 0x0000000008009540 . = ALIGN (0x4) +.fini_array 0x0000000008009830 0x4 + 0x0000000008009830 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x0000000008009540 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o + .fini_array 0x0000000008009830 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x0000000008009544 . = ALIGN (0x4) - 0x0000000008009544 _sidata = LOADADDR (.data) + 0x0000000008009834 . = ALIGN (0x4) + 0x0000000008009834 _sidata = LOADADDR (.data) -.data 0x0000000020000000 0x1dc load address 0x0000000008009544 +.data 0x0000000020000000 0x1dc load address 0x0000000008009834 0x0000000020000000 . = ALIGN (0x4) 0x0000000020000000 _sdata = . *(.data) @@ -4015,11 +4110,11 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id 0x00000000200001dc . = ALIGN (0x4) 0x00000000200001dc _edata = . -.igot.plt 0x00000000200001dc 0x0 load address 0x0000000008009720 +.igot.plt 0x00000000200001dc 0x0 load address 0x0000000008009a10 .igot.plt 0x00000000200001dc 0x0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtbegin.o 0x00000000200001dc . = ALIGN (0x4) -.bss 0x00000000200001dc 0x128 load address 0x0000000008009720 +.bss 0x00000000200001dc 0x170 load address 0x0000000008009a10 0x00000000200001dc _sbss = . 0x00000000200001dc __bss_start__ = _sbss *(.bss) @@ -4049,36 +4144,40 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id COMMON 0x00000000200002c8 0x28 ./HW_Devices/touch.o 0x00000000200002c8 tconfig 0x00000000200002e0 t0 - COMMON 0x00000000200002f0 0x4 ./SW_APPs/APP_blood.o - 0x00000000200002f0 blood_win - COMMON 0x00000000200002f4 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) - 0x00000000200002f4 errno - COMMON 0x00000000200002f8 0x9 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - 0x00000000200002f8 __lock___atexit_recursive_mutex - 0x00000000200002f9 __lock___arc4random_mutex - 0x00000000200002fa __lock___env_recursive_mutex - 0x00000000200002fb __lock___sinit_recursive_mutex - 0x00000000200002fc __lock___malloc_recursive_mutex - 0x00000000200002fd __lock___at_quick_exit_mutex - 0x00000000200002fe __lock___dd_hash_mutex - 0x00000000200002ff __lock___tz_mutex - 0x0000000020000300 __lock___sfp_recursive_mutex - 0x0000000020000304 . = ALIGN (0x4) - *fill* 0x0000000020000301 0x3 - 0x0000000020000304 _ebss = . - 0x0000000020000304 __bss_end__ = _ebss + COMMON 0x00000000200002f0 0x4a ./SW_APPs/APP_blood.o + 0x00000000200002f0 blood_str + 0x0000000020000330 fifo_ir + 0x0000000020000334 blood_win + 0x0000000020000338 fifo_red + *fill* 0x000000002000033a 0x2 + COMMON 0x000000002000033c 0x4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + 0x000000002000033c errno + COMMON 0x0000000020000340 0x9 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x0000000020000340 __lock___atexit_recursive_mutex + 0x0000000020000341 __lock___arc4random_mutex + 0x0000000020000342 __lock___env_recursive_mutex + 0x0000000020000343 __lock___sinit_recursive_mutex + 0x0000000020000344 __lock___malloc_recursive_mutex + 0x0000000020000345 __lock___at_quick_exit_mutex + 0x0000000020000346 __lock___dd_hash_mutex + 0x0000000020000347 __lock___tz_mutex + 0x0000000020000348 __lock___sfp_recursive_mutex + 0x000000002000034c . = ALIGN (0x4) + *fill* 0x0000000020000349 0x3 + 0x000000002000034c _ebss = . + 0x000000002000034c __bss_end__ = _ebss ._user_heap_stack - 0x0000000020000304 0xc04 load address 0x0000000008009720 - 0x0000000020000308 . = ALIGN (0x8) - *fill* 0x0000000020000304 0x4 + 0x000000002000034c 0xc04 load address 0x0000000008009a10 + 0x0000000020000350 . = ALIGN (0x8) + *fill* 0x000000002000034c 0x4 [!provide] PROVIDE (end = .) - 0x0000000020000308 PROVIDE (_end = .) - 0x0000000020000708 . = (. + _Min_Heap_Size) - *fill* 0x0000000020000308 0x400 - 0x0000000020000f08 . = (. + _Min_Stack_Size) - *fill* 0x0000000020000708 0x800 - 0x0000000020000f08 . = ALIGN (0x8) + 0x0000000020000350 PROVIDE (_end = .) + 0x0000000020000750 . = (. + _Min_Heap_Size) + *fill* 0x0000000020000350 0x400 + 0x0000000020000f50 . = (. + _Min_Stack_Size) + *fill* 0x0000000020000750 0x800 + 0x0000000020000f50 . = ALIGN (0x8) /DISCARD/ libc.a(*) @@ -4125,180 +4224,184 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .ARM.attributes 0x00000000000002e1 0x2d ./HW_Devices/eeprom.o .ARM.attributes - 0x000000000000030e 0x2d ./HW_Devices/touch.o + 0x000000000000030e 0x2d ./HW_Devices/iic.o .ARM.attributes - 0x000000000000033b 0x2d ./SW_APPs/APP_blood.o + 0x000000000000033b 0x2d ./HW_Devices/touch.o .ARM.attributes - 0x0000000000000368 0x2d ./SW_APPs/Main_APP.o + 0x0000000000000368 0x2d ./SW_APPs/APP_blood.o .ARM.attributes - 0x0000000000000395 0x2d ./SW_APPs/windows.o + 0x0000000000000395 0x2d ./SW_APPs/Main_APP.o .ARM.attributes - 0x00000000000003c2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + 0x00000000000003c2 0x2d ./SW_APPs/windows.o .ARM.attributes - 0x00000000000003ef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) + 0x00000000000003ef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) .ARM.attributes - 0x000000000000041c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + 0x000000000000041c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-impure.o) .ARM.attributes - 0x0000000000000449 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + 0x0000000000000449 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) .ARM.attributes - 0x0000000000000476 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + 0x0000000000000476 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) .ARM.attributes - 0x00000000000004a3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + 0x00000000000004a3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) .ARM.attributes - 0x00000000000004d0 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + 0x00000000000004d0 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) .ARM.attributes - 0x00000000000004fd 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + 0x00000000000004fd 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) .ARM.attributes - 0x000000000000052a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + 0x000000000000052a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) .ARM.attributes - 0x0000000000000557 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + 0x0000000000000557 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) .ARM.attributes - 0x0000000000000584 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + 0x0000000000000584 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) .ARM.attributes - 0x00000000000005b1 0x17 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) + 0x00000000000005b1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) .ARM.attributes - 0x00000000000005c8 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + 0x00000000000005de 0x17 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-strlen.o) .ARM.attributes - 0x00000000000005f5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + 0x00000000000005f5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) .ARM.attributes - 0x0000000000000622 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + 0x0000000000000622 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) .ARM.attributes - 0x000000000000064f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + 0x000000000000064f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) .ARM.attributes - 0x000000000000067c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + 0x000000000000067c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) .ARM.attributes - 0x00000000000006a9 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + 0x00000000000006a9 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) .ARM.attributes - 0x00000000000006d6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + 0x00000000000006d6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) .ARM.attributes - 0x0000000000000703 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + 0x0000000000000703 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) .ARM.attributes - 0x0000000000000730 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + 0x0000000000000730 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) .ARM.attributes - 0x000000000000075d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + 0x000000000000075d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) .ARM.attributes - 0x000000000000078a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + 0x000000000000078a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) .ARM.attributes - 0x00000000000007b7 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + 0x00000000000007b7 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) .ARM.attributes - 0x00000000000007e4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + 0x00000000000007e4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) .ARM.attributes - 0x0000000000000811 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + 0x0000000000000811 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) .ARM.attributes - 0x000000000000083e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + 0x000000000000083e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) .ARM.attributes - 0x000000000000086b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + 0x000000000000086b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) .ARM.attributes - 0x0000000000000898 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + 0x0000000000000898 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) .ARM.attributes - 0x00000000000008c5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + 0x00000000000008c5 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) .ARM.attributes - 0x00000000000008f2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + 0x00000000000008f2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) .ARM.attributes - 0x000000000000091f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + 0x000000000000091f 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) .ARM.attributes - 0x000000000000094c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + 0x000000000000094c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) .ARM.attributes - 0x0000000000000979 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) + 0x0000000000000979 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) .ARM.attributes - 0x00000000000009a6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + 0x00000000000009a6 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-ctype_.o) .ARM.attributes - 0x00000000000009d3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + 0x00000000000009d3 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) .ARM.attributes - 0x0000000000000a00 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + 0x0000000000000a00 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) .ARM.attributes - 0x0000000000000a2d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + 0x0000000000000a2d 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) .ARM.attributes - 0x0000000000000a5a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + 0x0000000000000a5a 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) .ARM.attributes - 0x0000000000000a87 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + 0x0000000000000a87 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) .ARM.attributes - 0x0000000000000ab4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + 0x0000000000000ab4 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) .ARM.attributes - 0x0000000000000ae1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + 0x0000000000000ae1 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) .ARM.attributes - 0x0000000000000b0e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + 0x0000000000000b0e 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) .ARM.attributes - 0x0000000000000b3b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + 0x0000000000000b3b 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) .ARM.attributes - 0x0000000000000b68 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + 0x0000000000000b68 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) .ARM.attributes - 0x0000000000000b95 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + 0x0000000000000b95 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) .ARM.attributes - 0x0000000000000bc2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + 0x0000000000000bc2 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) .ARM.attributes - 0x0000000000000bef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + 0x0000000000000bef 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) .ARM.attributes - 0x0000000000000c1c 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) + 0x0000000000000c1c 0x2d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) .ARM.attributes - 0x0000000000000c39 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) + 0x0000000000000c49 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) .ARM.attributes - 0x0000000000000c56 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) + 0x0000000000000c66 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) .ARM.attributes - 0x0000000000000c73 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) + 0x0000000000000c83 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) .ARM.attributes - 0x0000000000000c90 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) + 0x0000000000000ca0 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) .ARM.attributes - 0x0000000000000cad 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) + 0x0000000000000cbd 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) .ARM.attributes - 0x0000000000000cca 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) + 0x0000000000000cda 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) .ARM.attributes - 0x0000000000000ce7 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) + 0x0000000000000cf7 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) .ARM.attributes - 0x0000000000000d04 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) + 0x0000000000000d14 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) .ARM.attributes - 0x0000000000000d21 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o + 0x0000000000000d31 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) + .ARM.attributes + 0x0000000000000d4e 0x1d /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/crtn.o OUTPUT(m3s.elf elf32-littlearm) LOAD linker stubs LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc.a LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libm.a LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a -.debug_info 0x0000000000000000 0xc7ed - .debug_info 0x0000000000000000 0xda0 ./Core/Src/main.o - .debug_info 0x0000000000000da0 0xc09 ./Core/Src/stm32f1xx_hal_msp.o - .debug_info 0x00000000000019a9 0x222 ./Core/Src/stm32f1xx_it.o - .debug_info 0x0000000000001bcb 0xfa8 ./Core/Src/syscalls.o - .debug_info 0x0000000000002b73 0xa25 ./Core/Src/sysmem.o - .debug_info 0x0000000000003598 0x2be ./Core/Src/system_stm32f1xx.o - .debug_info 0x0000000000003856 0x22 ./Core/Startup/startup_stm32f103zetx.o - .debug_info 0x0000000000003878 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_info 0x0000000000004048 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_info 0x0000000000004c8a 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_info 0x000000000000538b 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_info 0x0000000000007b19 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_info 0x00000000000083a7 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_info 0x00000000000090f2 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_info 0x0000000000009bd9 0xa30 ./HW_Devices/LCD.o - .debug_info 0x000000000000a609 0x928 ./HW_Devices/eeprom.o - .debug_info 0x000000000000af31 0x8b1 ./HW_Devices/touch.o - .debug_info 0x000000000000b7e2 0x2d7 ./SW_APPs/APP_blood.o - .debug_info 0x000000000000bab9 0x4cc ./SW_APPs/Main_APP.o - .debug_info 0x000000000000bf85 0x868 ./SW_APPs/windows.o +.debug_info 0x0000000000000000 0xcb14 + .debug_info 0x0000000000000000 0xda2 ./Core/Src/main.o + .debug_info 0x0000000000000da2 0xc09 ./Core/Src/stm32f1xx_hal_msp.o + .debug_info 0x00000000000019ab 0x222 ./Core/Src/stm32f1xx_it.o + .debug_info 0x0000000000001bcd 0xfa8 ./Core/Src/syscalls.o + .debug_info 0x0000000000002b75 0xa25 ./Core/Src/sysmem.o + .debug_info 0x000000000000359a 0x2be ./Core/Src/system_stm32f1xx.o + .debug_info 0x0000000000003858 0x22 ./Core/Startup/startup_stm32f103zetx.o + .debug_info 0x000000000000387a 0x7d0 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_info 0x000000000000404a 0xc42 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_info 0x0000000000004c8c 0x701 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_info 0x000000000000538d 0x278e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_info 0x0000000000007b1b 0x88e ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_info 0x00000000000083a9 0xd4b ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_info 0x00000000000090f4 0xae7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_info 0x0000000000009bdb 0xa30 ./HW_Devices/LCD.o + .debug_info 0x000000000000a60b 0x39b ./HW_Devices/eeprom.o + .debug_info 0x000000000000a9a6 0x734 ./HW_Devices/iic.o + .debug_info 0x000000000000b0da 0x8b1 ./HW_Devices/touch.o + .debug_info 0x000000000000b98b 0x455 ./SW_APPs/APP_blood.o + .debug_info 0x000000000000bde0 0x4cc ./SW_APPs/Main_APP.o + .debug_info 0x000000000000c2ac 0x868 ./SW_APPs/windows.o -.debug_abbrev 0x0000000000000000 0x26cb - .debug_abbrev 0x0000000000000000 0x220 ./Core/Src/main.o - .debug_abbrev 0x0000000000000220 0x20b ./Core/Src/stm32f1xx_hal_msp.o - .debug_abbrev 0x000000000000042b 0xd2 ./Core/Src/stm32f1xx_it.o - .debug_abbrev 0x00000000000004fd 0x286 ./Core/Src/syscalls.o - .debug_abbrev 0x0000000000000783 0x1bf ./Core/Src/sysmem.o - .debug_abbrev 0x0000000000000942 0x14e ./Core/Src/system_stm32f1xx.o - .debug_abbrev 0x0000000000000a90 0x12 ./Core/Startup/startup_stm32f103zetx.o - .debug_abbrev 0x0000000000000aa2 0x1ed ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_abbrev 0x0000000000000c8f 0x313 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_abbrev 0x0000000000000fa2 0x1e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_abbrev 0x000000000000118a 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_abbrev 0x0000000000001412 0x273 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_abbrev 0x0000000000001685 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_abbrev 0x0000000000001877 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_abbrev 0x0000000000001a25 0x28b ./HW_Devices/LCD.o - .debug_abbrev 0x0000000000001cb0 0x228 ./HW_Devices/eeprom.o - .debug_abbrev 0x0000000000001ed8 0x258 ./HW_Devices/touch.o - .debug_abbrev 0x0000000000002130 0x12e ./SW_APPs/APP_blood.o - .debug_abbrev 0x000000000000225e 0x198 ./SW_APPs/Main_APP.o - .debug_abbrev 0x00000000000023f6 0x2d5 ./SW_APPs/windows.o +.debug_abbrev 0x0000000000000000 0x289b + .debug_abbrev 0x0000000000000000 0x24b ./Core/Src/main.o + .debug_abbrev 0x000000000000024b 0x20b ./Core/Src/stm32f1xx_hal_msp.o + .debug_abbrev 0x0000000000000456 0xd2 ./Core/Src/stm32f1xx_it.o + .debug_abbrev 0x0000000000000528 0x286 ./Core/Src/syscalls.o + .debug_abbrev 0x00000000000007ae 0x1bf ./Core/Src/sysmem.o + .debug_abbrev 0x000000000000096d 0x14e ./Core/Src/system_stm32f1xx.o + .debug_abbrev 0x0000000000000abb 0x12 ./Core/Startup/startup_stm32f103zetx.o + .debug_abbrev 0x0000000000000acd 0x1ed ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_abbrev 0x0000000000000cba 0x313 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_abbrev 0x0000000000000fcd 0x1e8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_abbrev 0x00000000000011b5 0x288 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_abbrev 0x000000000000143d 0x273 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_abbrev 0x00000000000016b0 0x1f2 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_abbrev 0x00000000000018a2 0x1ae ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_abbrev 0x0000000000001a50 0x28b ./HW_Devices/LCD.o + .debug_abbrev 0x0000000000001cdb 0x1b6 ./HW_Devices/eeprom.o + .debug_abbrev 0x0000000000001e91 0x176 ./HW_Devices/iic.o + .debug_abbrev 0x0000000000002007 0x258 ./HW_Devices/touch.o + .debug_abbrev 0x000000000000225f 0x1cf ./SW_APPs/APP_blood.o + .debug_abbrev 0x000000000000242e 0x198 ./SW_APPs/Main_APP.o + .debug_abbrev 0x00000000000025c6 0x2d5 ./SW_APPs/windows.o -.debug_aranges 0x0000000000000000 0xb00 +.debug_aranges 0x0000000000000000 0xb30 .debug_aranges 0x0000000000000000 0x48 ./Core/Src/main.o .debug_aranges @@ -4330,17 +4433,19 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .debug_aranges 0x00000000000008d8 0xc8 ./HW_Devices/LCD.o .debug_aranges - 0x00000000000009a0 0x48 ./HW_Devices/eeprom.o + 0x00000000000009a0 0x38 ./HW_Devices/eeprom.o .debug_aranges - 0x00000000000009e8 0x60 ./HW_Devices/touch.o + 0x00000000000009d8 0x28 ./HW_Devices/iic.o .debug_aranges - 0x0000000000000a48 0x28 ./SW_APPs/APP_blood.o + 0x0000000000000a00 0x60 ./HW_Devices/touch.o .debug_aranges - 0x0000000000000a70 0x20 ./SW_APPs/Main_APP.o + 0x0000000000000a60 0x40 ./SW_APPs/APP_blood.o .debug_aranges - 0x0000000000000a90 0x70 ./SW_APPs/windows.o + 0x0000000000000aa0 0x20 ./SW_APPs/Main_APP.o + .debug_aranges + 0x0000000000000ac0 0x70 ./SW_APPs/windows.o -.debug_ranges 0x0000000000000000 0xa08 +.debug_ranges 0x0000000000000000 0xa28 .debug_ranges 0x0000000000000000 0x38 ./Core/Src/main.o .debug_ranges 0x0000000000000038 0x40 ./Core/Src/stm32f1xx_hal_msp.o .debug_ranges 0x0000000000000078 0x50 ./Core/Src/stm32f1xx_it.o @@ -4356,13 +4461,14 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .debug_ranges 0x00000000000006e8 0xa8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_ranges 0x0000000000000790 0x98 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_ranges 0x0000000000000828 0xb8 ./HW_Devices/LCD.o - .debug_ranges 0x00000000000008e0 0x50 ./HW_Devices/eeprom.o - .debug_ranges 0x0000000000000930 0x50 ./HW_Devices/touch.o - .debug_ranges 0x0000000000000980 0x18 ./SW_APPs/APP_blood.o - .debug_ranges 0x0000000000000998 0x10 ./SW_APPs/Main_APP.o - .debug_ranges 0x00000000000009a8 0x60 ./SW_APPs/windows.o + .debug_ranges 0x00000000000008e0 0x40 ./HW_Devices/eeprom.o + .debug_ranges 0x0000000000000920 0x18 ./HW_Devices/iic.o + .debug_ranges 0x0000000000000938 0x50 ./HW_Devices/touch.o + .debug_ranges 0x0000000000000988 0x30 ./SW_APPs/APP_blood.o + .debug_ranges 0x00000000000009b8 0x10 ./SW_APPs/Main_APP.o + .debug_ranges 0x00000000000009c8 0x60 ./SW_APPs/windows.o -.debug_macro 0x0000000000000000 0x1b37b +.debug_macro 0x0000000000000000 0x1b6a6 .debug_macro 0x0000000000000000 0x1c1 ./Core/Src/main.o .debug_macro 0x00000000000001c1 0xa9c ./Core/Src/main.o .debug_macro 0x0000000000000c5d 0x21b ./Core/Src/main.o @@ -4400,139 +4506,145 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .debug_macro 0x0000000000016edd 0x287 ./Core/Src/main.o .debug_macro 0x0000000000017164 0x141 ./Core/Src/main.o .debug_macro 0x00000000000172a5 0xb5 ./Core/Src/main.o - .debug_macro 0x000000000001735a 0x4c ./Core/Src/main.o - .debug_macro 0x00000000000173a6 0x1b7 ./Core/Src/stm32f1xx_hal_msp.o - .debug_macro 0x000000000001755d 0x1c1 ./Core/Src/stm32f1xx_it.o - .debug_macro 0x000000000001771e 0x24c ./Core/Src/syscalls.o - .debug_macro 0x000000000001796a 0x4c ./Core/Src/syscalls.o - .debug_macro 0x00000000000179b6 0x18 ./Core/Src/syscalls.o - .debug_macro 0x00000000000179ce 0x94 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017a62 0x3c ./Core/Src/syscalls.o - .debug_macro 0x0000000000017a9e 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017ad2 0x57 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017b29 0x339 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017e62 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017e78 0x43 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017ebb 0x34 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017eef 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017eff 0x58 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017f57 0x71 ./Core/Src/syscalls.o - .debug_macro 0x0000000000017fc8 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000017fe4 0x12a ./Core/Src/syscalls.o - .debug_macro 0x000000000001810e 0x10 ./Core/Src/syscalls.o - .debug_macro 0x000000000001811e 0x35 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018153 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018163 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018173 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018183 0x1c ./Core/Src/syscalls.o - .debug_macro 0x000000000001819f 0x52 ./Core/Src/syscalls.o - .debug_macro 0x00000000000181f1 0x22 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018213 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018223 0x40 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018263 0xd5 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018338 0x1c ./Core/Src/syscalls.o - .debug_macro 0x0000000000018354 0x3d ./Core/Src/syscalls.o - .debug_macro 0x0000000000018391 0x35 ./Core/Src/syscalls.o - .debug_macro 0x00000000000183c6 0x12c ./Core/Src/syscalls.o - .debug_macro 0x00000000000184f2 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018508 0x16 ./Core/Src/syscalls.o - .debug_macro 0x000000000001851e 0x29 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018547 0x10 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018557 0x241 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018798 0x1c ./Core/Src/syscalls.o - .debug_macro 0x00000000000187b4 0x10 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187c4 0x10 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187d4 0x16 ./Core/Src/syscalls.o - .debug_macro 0x00000000000187ea 0x145 ./Core/Src/syscalls.o - .debug_macro 0x000000000001892f 0x189 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018ab8 0x16 ./Core/Src/syscalls.o - .debug_macro 0x0000000000018ace 0xce ./Core/Src/syscalls.o - .debug_macro 0x0000000000018b9c 0xff ./Core/Src/sysmem.o - .debug_macro 0x0000000000018c9b 0x23b ./Core/Src/sysmem.o - .debug_macro 0x0000000000018ed6 0x1a8 ./Core/Src/system_stm32f1xx.o - .debug_macro 0x000000000001907e 0x1cc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_macro 0x000000000001924a 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_macro 0x00000000000193f2 0x213 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_macro 0x0000000000019605 0x1ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_macro 0x00000000000197f4 0x1ba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_macro 0x00000000000199ae 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_macro 0x0000000000019b56 0x1e1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_macro 0x0000000000019d37 0x1c6 ./HW_Devices/LCD.o - .debug_macro 0x0000000000019efd 0x38b ./HW_Devices/LCD.o - .debug_macro 0x000000000001a288 0x1c7 ./HW_Devices/eeprom.o - .debug_macro 0x000000000001a44f 0x1f6 ./HW_Devices/touch.o - .debug_macro 0x000000000001a645 0x22 ./HW_Devices/touch.o - .debug_macro 0x000000000001a667 0x391 ./HW_Devices/touch.o - .debug_macro 0x000000000001a9f8 0x10 ./HW_Devices/touch.o - .debug_macro 0x000000000001aa08 0x1d8 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001abe0 0x391 ./SW_APPs/APP_blood.o - .debug_macro 0x000000000001af71 0x1fa ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001b16b 0x28 ./SW_APPs/Main_APP.o - .debug_macro 0x000000000001b193 0x1e8 ./SW_APPs/windows.o + .debug_macro 0x000000000001735a 0x70 ./Core/Src/main.o + .debug_macro 0x00000000000173ca 0x1b7 ./Core/Src/stm32f1xx_hal_msp.o + .debug_macro 0x0000000000017581 0x1c1 ./Core/Src/stm32f1xx_it.o + .debug_macro 0x0000000000017742 0x24c ./Core/Src/syscalls.o + .debug_macro 0x000000000001798e 0x4c ./Core/Src/syscalls.o + .debug_macro 0x00000000000179da 0x18 ./Core/Src/syscalls.o + .debug_macro 0x00000000000179f2 0x94 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017a86 0x3c ./Core/Src/syscalls.o + .debug_macro 0x0000000000017ac2 0x34 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017af6 0x57 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017b4d 0x339 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017e86 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017e9c 0x43 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017edf 0x34 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017f13 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017f23 0x58 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017f7b 0x71 ./Core/Src/syscalls.o + .debug_macro 0x0000000000017fec 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018008 0x12a ./Core/Src/syscalls.o + .debug_macro 0x0000000000018132 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018142 0x35 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018177 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018187 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018197 0x10 ./Core/Src/syscalls.o + .debug_macro 0x00000000000181a7 0x1c ./Core/Src/syscalls.o + .debug_macro 0x00000000000181c3 0x52 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018215 0x22 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018237 0x10 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018247 0x40 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018287 0xd5 ./Core/Src/syscalls.o + .debug_macro 0x000000000001835c 0x1c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018378 0x3d ./Core/Src/syscalls.o + .debug_macro 0x00000000000183b5 0x35 ./Core/Src/syscalls.o + .debug_macro 0x00000000000183ea 0x12c ./Core/Src/syscalls.o + .debug_macro 0x0000000000018516 0x16 ./Core/Src/syscalls.o + .debug_macro 0x000000000001852c 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018542 0x29 ./Core/Src/syscalls.o + .debug_macro 0x000000000001856b 0x10 ./Core/Src/syscalls.o + .debug_macro 0x000000000001857b 0x241 ./Core/Src/syscalls.o + .debug_macro 0x00000000000187bc 0x1c ./Core/Src/syscalls.o + .debug_macro 0x00000000000187d8 0x10 ./Core/Src/syscalls.o + .debug_macro 0x00000000000187e8 0x10 ./Core/Src/syscalls.o + .debug_macro 0x00000000000187f8 0x16 ./Core/Src/syscalls.o + .debug_macro 0x000000000001880e 0x145 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018953 0x189 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018adc 0x16 ./Core/Src/syscalls.o + .debug_macro 0x0000000000018af2 0xce ./Core/Src/syscalls.o + .debug_macro 0x0000000000018bc0 0xff ./Core/Src/sysmem.o + .debug_macro 0x0000000000018cbf 0x23b ./Core/Src/sysmem.o + .debug_macro 0x0000000000018efa 0x1a8 ./Core/Src/system_stm32f1xx.o + .debug_macro 0x00000000000190a2 0x1cc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_macro 0x000000000001926e 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_macro 0x0000000000019416 0x213 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_macro 0x0000000000019629 0x1ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_macro 0x0000000000019818 0x1ba ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_macro 0x00000000000199d2 0x1a8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_macro 0x0000000000019b7a 0x1e1 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_macro 0x0000000000019d5b 0x1c6 ./HW_Devices/LCD.o + .debug_macro 0x0000000000019f21 0x38b ./HW_Devices/LCD.o + .debug_macro 0x000000000001a2ac 0x1d1 ./HW_Devices/eeprom.o + .debug_macro 0x000000000001a47d 0x1c1 ./HW_Devices/iic.o + .debug_macro 0x000000000001a63e 0x1f6 ./HW_Devices/touch.o + .debug_macro 0x000000000001a834 0x22 ./HW_Devices/touch.o + .debug_macro 0x000000000001a856 0x391 ./HW_Devices/touch.o + .debug_macro 0x000000000001abe7 0x10 ./HW_Devices/touch.o + .debug_macro 0x000000000001abf7 0x1e7 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001adde 0x391 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001b16f 0x94 ./SW_APPs/APP_blood.o + .debug_macro 0x000000000001b203 0x1f9 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001b3fc 0x28 ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001b424 0x9a ./SW_APPs/Main_APP.o + .debug_macro 0x000000000001b4be 0x1e8 ./SW_APPs/windows.o -.debug_line 0x0000000000000000 0xe769 - .debug_line 0x0000000000000000 0x85b ./Core/Src/main.o - .debug_line 0x000000000000085b 0x7a3 ./Core/Src/stm32f1xx_hal_msp.o - .debug_line 0x0000000000000ffe 0x76c ./Core/Src/stm32f1xx_it.o - .debug_line 0x000000000000176a 0x83e ./Core/Src/syscalls.o - .debug_line 0x0000000000001fa8 0x534 ./Core/Src/sysmem.o - .debug_line 0x00000000000024dc 0x728 ./Core/Src/system_stm32f1xx.o - .debug_line 0x0000000000002c04 0x87 ./Core/Startup/startup_stm32f103zetx.o - .debug_line 0x0000000000002c8b 0x955 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o - .debug_line 0x00000000000035e0 0xb3d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o - .debug_line 0x000000000000411d 0xa14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o - .debug_line 0x0000000000004b31 0x3a3f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o - .debug_line 0x0000000000008570 0xd63 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o - .debug_line 0x00000000000092d3 0xcc8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o - .debug_line 0x0000000000009f9b 0x9b3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o - .debug_line 0x000000000000a94e 0x10c1 ./HW_Devices/LCD.o - .debug_line 0x000000000000ba0f 0x7bc ./HW_Devices/eeprom.o - .debug_line 0x000000000000c1cb 0xb13 ./HW_Devices/touch.o - .debug_line 0x000000000000ccde 0x71c ./SW_APPs/APP_blood.o - .debug_line 0x000000000000d3fa 0x758 ./SW_APPs/Main_APP.o - .debug_line 0x000000000000db52 0xc17 ./SW_APPs/windows.o +.debug_line 0x0000000000000000 0xef31 + .debug_line 0x0000000000000000 0x872 ./Core/Src/main.o + .debug_line 0x0000000000000872 0x7a3 ./Core/Src/stm32f1xx_hal_msp.o + .debug_line 0x0000000000001015 0x76c ./Core/Src/stm32f1xx_it.o + .debug_line 0x0000000000001781 0x83e ./Core/Src/syscalls.o + .debug_line 0x0000000000001fbf 0x534 ./Core/Src/sysmem.o + .debug_line 0x00000000000024f3 0x728 ./Core/Src/system_stm32f1xx.o + .debug_line 0x0000000000002c1b 0x87 ./Core/Startup/startup_stm32f103zetx.o + .debug_line 0x0000000000002ca2 0x955 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_line 0x00000000000035f7 0xb3d ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_line 0x0000000000004134 0xa14 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_line 0x0000000000004b48 0x3a3f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_line 0x0000000000008587 0xd63 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_line 0x00000000000092ea 0xcc8 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_line 0x0000000000009fb2 0x9b3 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_line 0x000000000000a965 0x10c1 ./HW_Devices/LCD.o + .debug_line 0x000000000000ba26 0x795 ./HW_Devices/eeprom.o + .debug_line 0x000000000000c1bb 0x6bc ./HW_Devices/iic.o + .debug_line 0x000000000000c877 0xb13 ./HW_Devices/touch.o + .debug_line 0x000000000000d38a 0x838 ./SW_APPs/APP_blood.o + .debug_line 0x000000000000dbc2 0x758 ./SW_APPs/Main_APP.o + .debug_line 0x000000000000e31a 0xc17 ./SW_APPs/windows.o -.debug_str 0x0000000000000000 0x95c18 - .debug_str 0x0000000000000000 0x8d07d ./Core/Src/main.o - 0x8d562 (size before relaxing) - .debug_str 0x000000000008d07d 0xc5 ./Core/Src/stm32f1xx_hal_msp.o - 0x8d3c3 (size before relaxing) - .debug_str 0x000000000008d142 0xbd ./Core/Src/stm32f1xx_it.o - 0x8ccf3 (size before relaxing) - .debug_str 0x000000000008d1ff 0x578e ./Core/Src/syscalls.o +.debug_str 0x0000000000000000 0x95f1a + .debug_str 0x0000000000000000 0x8d10b ./Core/Src/main.o + 0x8d5f0 (size before relaxing) + .debug_str 0x000000000008d10b 0xc5 ./Core/Src/stm32f1xx_hal_msp.o + 0x8d451 (size before relaxing) + .debug_str 0x000000000008d1d0 0xbd ./Core/Src/stm32f1xx_it.o + 0x8cd81 (size before relaxing) + .debug_str 0x000000000008d28d 0x5788 ./Core/Src/syscalls.o 0x8e87 (size before relaxing) - .debug_str 0x000000000009298d 0x6b ./Core/Src/sysmem.o + .debug_str 0x0000000000092a15 0x6b ./Core/Src/sysmem.o 0x625a (size before relaxing) - .debug_str 0x00000000000929f8 0x52 ./Core/Src/system_stm32f1xx.o + .debug_str 0x0000000000092a80 0x52 ./Core/Src/system_stm32f1xx.o 0x8cbc8 (size before relaxing) - .debug_str 0x0000000000092a4a 0x36 ./Core/Startup/startup_stm32f103zetx.o + .debug_str 0x0000000000092ad2 0x36 ./Core/Startup/startup_stm32f103zetx.o 0x6e (size before relaxing) - .debug_str 0x0000000000092a80 0x5fb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o + .debug_str 0x0000000000092b08 0x5fb ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.o 0x8d33d (size before relaxing) - .debug_str 0x000000000009307b 0x300 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o + .debug_str 0x0000000000093103 0x300 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.o 0x8d345 (size before relaxing) - .debug_str 0x000000000009337b 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o + .debug_str 0x0000000000093403 0x31f ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.o 0x8cf8c (size before relaxing) - .debug_str 0x000000000009369a 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o + .debug_str 0x0000000000093722 0xb47 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_i2c.o 0x8dc04 (size before relaxing) - .debug_str 0x00000000000941e1 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o + .debug_str 0x0000000000094269 0x244 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.o 0x8cfc5 (size before relaxing) - .debug_str 0x0000000000094425 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o + .debug_str 0x00000000000944ad 0x1f7 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o 0x8d1be (size before relaxing) - .debug_str 0x000000000009461c 0x7ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o + .debug_str 0x00000000000946a4 0x7ef ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o 0x8d55f (size before relaxing) - .debug_str 0x0000000000094e0b 0x81a ./HW_Devices/LCD.o - 0x8d48a (size before relaxing) - .debug_str 0x0000000000095625 0x13b ./HW_Devices/eeprom.o - 0x8d200 (size before relaxing) - .debug_str 0x0000000000095760 0x288 ./HW_Devices/touch.o - 0x8d574 (size before relaxing) - .debug_str 0x00000000000959e8 0x78 ./SW_APPs/APP_blood.o - 0x8d31d (size before relaxing) - .debug_str 0x0000000000095a60 0x98 ./SW_APPs/Main_APP.o - 0x8d4f0 (size before relaxing) - .debug_str 0x0000000000095af8 0x120 ./SW_APPs/windows.o - 0x8d5ca (size before relaxing) + .debug_str 0x0000000000094e93 0x81a ./HW_Devices/LCD.o + 0x8d518 (size before relaxing) + .debug_str 0x00000000000956ad 0x127 ./HW_Devices/eeprom.o + 0x8ce13 (size before relaxing) + .debug_str 0x00000000000957d4 0x30 ./HW_Devices/iic.o + 0x8d190 (size before relaxing) + .debug_str 0x0000000000095804 0x288 ./HW_Devices/touch.o + 0x8d602 (size before relaxing) + .debug_str 0x0000000000095a8c 0x2d6 ./SW_APPs/APP_blood.o + 0x8d630 (size before relaxing) + .debug_str 0x0000000000095d62 0x98 ./SW_APPs/Main_APP.o + 0x8d77a (size before relaxing) + .debug_str 0x0000000000095dfa 0x120 ./SW_APPs/windows.o + 0x8d658 (size before relaxing) .comment 0x0000000000000000 0x53 .comment 0x0000000000000000 0x53 ./Core/Src/main.o @@ -4551,12 +4663,13 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .comment 0x0000000000000053 0x54 ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .comment 0x0000000000000053 0x54 ./HW_Devices/LCD.o .comment 0x0000000000000053 0x54 ./HW_Devices/eeprom.o + .comment 0x0000000000000053 0x54 ./HW_Devices/iic.o .comment 0x0000000000000053 0x54 ./HW_Devices/touch.o .comment 0x0000000000000053 0x54 ./SW_APPs/APP_blood.o .comment 0x0000000000000053 0x54 ./SW_APPs/Main_APP.o .comment 0x0000000000000053 0x54 ./SW_APPs/windows.o -.debug_frame 0x0000000000000000 0x3d9c +.debug_frame 0x0000000000000000 0x3e18 .debug_frame 0x0000000000000000 0xcc ./Core/Src/main.o .debug_frame 0x00000000000000cc 0x108 ./Core/Src/stm32f1xx_hal_msp.o .debug_frame 0x00000000000001d4 0x104 ./Core/Src/stm32f1xx_it.o @@ -4571,62 +4684,63 @@ LOAD /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.id .debug_frame 0x0000000000001d30 0x30c ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_sram.o .debug_frame 0x000000000000203c 0x2dc ./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o .debug_frame 0x0000000000002318 0x33c ./HW_Devices/LCD.o - .debug_frame 0x0000000000002654 0xe4 ./HW_Devices/eeprom.o - .debug_frame 0x0000000000002738 0x164 ./HW_Devices/touch.o - .debug_frame 0x000000000000289c 0x58 ./SW_APPs/APP_blood.o - .debug_frame 0x00000000000028f4 0x30 ./SW_APPs/Main_APP.o - .debug_frame 0x0000000000002924 0x1b0 ./SW_APPs/windows.o - .debug_frame 0x0000000000002ad4 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) - .debug_frame 0x0000000000002af4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) - .debug_frame 0x0000000000002b20 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) - .debug_frame 0x0000000000002b50 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) - .debug_frame 0x0000000000002b70 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) - .debug_frame 0x0000000000002ba8 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) - .debug_frame 0x0000000000002bd8 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) - .debug_frame 0x0000000000002c6c 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) - .debug_frame 0x0000000000002ccc 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) - .debug_frame 0x0000000000002cf8 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) - .debug_frame 0x0000000000002d64 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) - .debug_frame 0x0000000000002dd0 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) - .debug_frame 0x0000000000002e10 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) - .debug_frame 0x0000000000002e38 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x0000000000002e60 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) - .debug_frame 0x0000000000002e90 0x254 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) - .debug_frame 0x00000000000030e4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) - .debug_frame 0x0000000000003110 0x90 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) - .debug_frame 0x00000000000031a0 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) - .debug_frame 0x00000000000031fc 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) - .debug_frame 0x000000000000323c 0x64 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) - .debug_frame 0x00000000000032a0 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) - .debug_frame 0x00000000000032e8 0xb0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) - .debug_frame 0x0000000000003398 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) - .debug_frame 0x00000000000033e0 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) - .debug_frame 0x0000000000003408 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) - .debug_frame 0x0000000000003444 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) - .debug_frame 0x00000000000034f0 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) - .debug_frame 0x0000000000003530 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) - .debug_frame 0x000000000000356c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) - .debug_frame 0x0000000000003598 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) - .debug_frame 0x00000000000035c0 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) - .debug_frame 0x000000000000361c 0x14c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) - .debug_frame 0x0000000000003768 0x54 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) - .debug_frame 0x00000000000037bc 0x58 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) - .debug_frame 0x0000000000003814 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) - .debug_frame 0x0000000000003834 0xcc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) - .debug_frame 0x0000000000003900 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) - .debug_frame 0x000000000000393c 0x88 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) - .debug_frame 0x00000000000039c4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) - .debug_frame 0x00000000000039f0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) - .debug_frame 0x0000000000003a1c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) - .debug_frame 0x0000000000003a48 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) - .debug_frame 0x0000000000003a74 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) - .debug_frame 0x0000000000003aa0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) - .debug_frame 0x0000000000003acc 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) - .debug_frame 0x0000000000003b78 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) - .debug_frame 0x0000000000003bc8 0xc4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) - .debug_frame 0x0000000000003c8c 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) - .debug_frame 0x0000000000003cac 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) - .debug_frame 0x0000000000003cd0 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) - .debug_frame 0x0000000000003cf4 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) - .debug_frame 0x0000000000003d40 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) - .debug_frame 0x0000000000003d78 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) + .debug_frame 0x0000000000002654 0x9c ./HW_Devices/eeprom.o + .debug_frame 0x00000000000026f0 0x58 ./HW_Devices/iic.o + .debug_frame 0x0000000000002748 0x164 ./HW_Devices/touch.o + .debug_frame 0x00000000000028ac 0xc4 ./SW_APPs/APP_blood.o + .debug_frame 0x0000000000002970 0x30 ./SW_APPs/Main_APP.o + .debug_frame 0x00000000000029a0 0x1b0 ./SW_APPs/windows.o + .debug_frame 0x0000000000002b50 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-errno.o) + .debug_frame 0x0000000000002b70 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-init.o) + .debug_frame 0x0000000000002b9c 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-malloc.o) + .debug_frame 0x0000000000002bcc 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memset.o) + .debug_frame 0x0000000000002bec 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-freer.o) + .debug_frame 0x0000000000002c24 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-mallocr.o) + .debug_frame 0x0000000000002c54 0x94 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_float.o) + .debug_frame 0x0000000000002ce8 0x60 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf_i.o) + .debug_frame 0x0000000000002d48 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sbrkr.o) + .debug_frame 0x0000000000002d74 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-sprintf.o) + .debug_frame 0x0000000000002de0 0x6c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-dtoa.o) + .debug_frame 0x0000000000002e4c 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-localeconv.o) + .debug_frame 0x0000000000002e8c 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memchr-stub.o) + .debug_frame 0x0000000000002eb4 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x0000000000002edc 0x30 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mlock.o) + .debug_frame 0x0000000000002f0c 0x254 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mprec.o) + .debug_frame 0x0000000000003160 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-callocr.o) + .debug_frame 0x000000000000318c 0x90 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-svfprintf.o) + .debug_frame 0x000000000000321c 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-reent.o) + .debug_frame 0x0000000000003278 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-assert.o) + .debug_frame 0x00000000000032b8 0x64 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fprintf.o) + .debug_frame 0x000000000000331c 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-locale.o) + .debug_frame 0x0000000000003364 0xb0 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lock.o) + .debug_frame 0x0000000000003414 0x48 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-mbtowc_r.o) + .debug_frame 0x000000000000345c 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-memmove.o) + .debug_frame 0x0000000000003484 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-reallocr.o) + .debug_frame 0x00000000000034c0 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-vfprintf.o) + .debug_frame 0x000000000000356c 0x40 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wbuf.o) + .debug_frame 0x00000000000035ac 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wctomb_r.o) + .debug_frame 0x00000000000035e8 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-wsetup.o) + .debug_frame 0x0000000000003614 0x28 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-abort.o) + .debug_frame 0x000000000000363c 0x5c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fflush.o) + .debug_frame 0x0000000000003698 0x14c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-findfp.o) + .debug_frame 0x00000000000037e4 0x54 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fwalk.o) + .debug_frame 0x0000000000003838 0x58 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-makebuf.o) + .debug_frame 0x0000000000003890 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-nano-msizer.o) + .debug_frame 0x00000000000038b0 0xcc /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signal.o) + .debug_frame 0x000000000000397c 0x3c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-signalr.o) + .debug_frame 0x00000000000039b8 0x88 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-stdio.o) + .debug_frame 0x0000000000003a40 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-writer.o) + .debug_frame 0x0000000000003a6c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-closer.o) + .debug_frame 0x0000000000003a98 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-fstatr.o) + .debug_frame 0x0000000000003ac4 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-isattyr.o) + .debug_frame 0x0000000000003af0 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-lseekr.o) + .debug_frame 0x0000000000003b1c 0x2c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/../../../../arm-none-eabi/lib/thumb/v7-m/nofp/libc_nano.a(lib_a-readr.o) + .debug_frame 0x0000000000003b48 0xac /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x0000000000003bf4 0x50 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x0000000000003c44 0xc4 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x0000000000003d08 0x20 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_unorddf2.o) + .debug_frame 0x0000000000003d28 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixdfsi.o) + .debug_frame 0x0000000000003d4c 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x0000000000003d70 0x4c /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_addsubsf3.o) + .debug_frame 0x0000000000003dbc 0x38 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_muldivsf3.o) + .debug_frame 0x0000000000003df4 0x24 /Applications/STM32CubeIDE.app/Contents/Eclipse/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.macos64_2.0.0.202105311346/tools/bin/../lib/gcc/arm-none-eabi/9.3.1/thumb/v7-m/nofp/libgcc.a(_arm_fixsfsi.o) diff --git a/Debug/objects.list b/Debug/objects.list index a9369c1..1804bc7 100644 --- a/Debug/objects.list +++ b/Debug/objects.list @@ -23,6 +23,7 @@ "./Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_ll_fsmc.o" "./HW_Devices/LCD.o" "./HW_Devices/eeprom.o" +"./HW_Devices/iic.o" "./HW_Devices/touch.o" "./SW_APPs/APP_blood.o" "./SW_APPs/Main_APP.o" diff --git a/HW_Devices/eeprom.c b/HW_Devices/eeprom.c index 45f7f9b..43171a4 100644 --- a/HW_Devices/eeprom.c +++ b/HW_Devices/eeprom.c @@ -7,19 +7,9 @@ #include "eeprom.h" +#include "iic.h" -//iic硬件接口 -extern I2C_HandleTypeDef hi2c2; -void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) -{ - HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); -} - -void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) -{ - HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); -} //因为eeprom芯片的写入速度有限,每写入一个字符都需要等待一段时间才能完成写入 //整个系统不可能等它一个的,传统的解决方法可以使用定时器中断或者多线程开辟子任务在后台保存, //这里的解决方法是使用状态机,通过一个链表将要保存的数据串起来,再通过状态循环一个个保存,保存延时等于循环用时。 diff --git a/HW_Devices/iic.c b/HW_Devices/iic.c new file mode 100644 index 0000000..fe5571f --- /dev/null +++ b/HW_Devices/iic.c @@ -0,0 +1,21 @@ +/* + * iic.c + * + * Created on: Aug 21, 2021 + * Author: wuwenfeng + */ + +#include "iic.h" + +//iic硬件接口 +extern I2C_HandleTypeDef hi2c2; + +void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) +{ + HAL_I2C_Mem_Write(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); +} + +void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG) +{ + HAL_I2C_Mem_Read(&hi2c2,DEVICE_ADD,IN_DEVICE_ADD,I2C_MEMADD_SIZE_8BIT,DATAS,LONG,100); +} diff --git a/HW_Devices/iic.h b/HW_Devices/iic.h new file mode 100644 index 0000000..0f5d428 --- /dev/null +++ b/HW_Devices/iic.h @@ -0,0 +1,15 @@ +/* + * iic.h + * + * Created on: Aug 21, 2021 + * Author: wuwenfeng + */ + +#ifndef IIC_H_ +#define IIC_H_ +#include "main.h" + +void IIC_SAND_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG); +void IIC_READ_DATE(uint16_t DEVICE_ADD,uint16_t IN_DEVICE_ADD,char *DATAS,uint16_t LONG); + +#endif /* IIC_H_ */ diff --git a/SW_APPs/APP_blood.c b/SW_APPs/APP_blood.c index 90da4ce..a184b1a 100644 --- a/SW_APPs/APP_blood.c +++ b/SW_APPs/APP_blood.c @@ -6,15 +6,104 @@ */ #include "APP_blood.h" - +#include "iic.h" window *blood_win; +uint16_t fifo_red; +uint16_t fifo_ir; +char blood_str[64]; +uint8_t Max30102_reset(void) +{ + char a=0x40; + IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG, &a,1); + +} +void MAX30102_Config(void) +{ + char a; + a=0xc0; + IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_1,&a,1);//// INTR setting + a=0; + IIC_SAND_DATE(MAX30102_Device_address,REG_INTR_ENABLE_2,&a,1);// + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_WR_PTR,&a,1);//FIFO_WR_PTR[4:0] + IIC_SAND_DATE(MAX30102_Device_address,REG_OVF_COUNTER,&a,1);//OVF_COUNTER[4:0] + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_RD_PTR,&a,1);//FIFO_RD_PTR[4:0] + + a=0x0f; + IIC_SAND_DATE(MAX30102_Device_address,REG_FIFO_CONFIG,&a,1);//sample avg = 1, fifo rollover=false, fifo almost full = 17 + a=0x03; + IIC_SAND_DATE(MAX30102_Device_address,REG_MODE_CONFIG,&a,1);//0x02 for Red only, 0x03 for SpO2 mode 0x07 multimode LED + a=0x27; + IIC_SAND_DATE(MAX30102_Device_address,REG_SPO2_CONFIG,&a,1); // SPO2_ADC range = 4096nA, SPO2 sample rate (50 Hz), LED pulseWidth (400uS) + a=0x32; + IIC_SAND_DATE(MAX30102_Device_address,REG_LED1_PA,&a,1);//Choose value for ~ 10mA for LED1 + IIC_SAND_DATE(MAX30102_Device_address,REG_LED2_PA,&a,1);// Choose value for ~ 10mA for LED2 + a=0x7f; + IIC_SAND_DATE(MAX30102_Device_address,REG_PILOT_PA,&a,1);// Choose value for ~ 25mA for Pilot LED +} +void max30102_read_fifo(void) +{ + uint16_t un_temp; + fifo_red=0; + fifo_ir=0; + uint8_t ach_i2c_data[6]; + + //read and clear status register + IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_1,&ach_i2c_data,1); + IIC_READ_DATE(MAX30102_Device_address,REG_INTR_STATUS_2,&ach_i2c_data,1); + + ach_i2c_data[0]=REG_FIFO_DATA; + + IIC_READ_DATE(MAX30102_Device_address,REG_FIFO_DATA,&ach_i2c_data,6); + + un_temp=ach_i2c_data[0]; + un_temp<<=14; + fifo_red+=un_temp; + un_temp=ach_i2c_data[1]; + un_temp<<=6; + fifo_red+=un_temp; + un_temp=ach_i2c_data[2]; + un_temp>>=2; + fifo_red+=un_temp; + + un_temp=ach_i2c_data[3]; + un_temp<<=14; + fifo_ir+=un_temp; + un_temp=ach_i2c_data[4]; + un_temp<<=6; + fifo_ir+=un_temp; + un_temp=ach_i2c_data[5]; + un_temp>>=2; + fifo_ir+=un_temp; + + if(fifo_ir<=10000) + { + fifo_ir=0; + } + if(fifo_red<=10000) + { + fifo_red=0; + } + +} void APP_blood_init(window *a_window) { blood_win=a_window; + Max30102_reset(); + MAX30102_Config(); + + //HAL_GPIO_WritePin(MAX_RD_GPIO_Port, MAX_RD_Pin, 0); } void APP_blood_loop() { + max30102_read_fifo(); + sprintf(blood_str,"fifo_red:%d",fifo_red); + LCD_ShowString(blood_win->x, blood_win->y+16, &blood_str, 16, WHITE, RED); + sprintf(blood_str,"fifo_ir:%d",fifo_ir); + LCD_ShowString(blood_win->x, blood_win->y+32, &blood_str, 16, WHITE, RED); + sprintf(blood_str,"INT:%d",HAL_GPIO_ReadPin(MAX_INT_GPIO_Port, MAX_INT_Pin)); + LCD_ShowString(blood_win->x, blood_win->y+48, &blood_str, 16, WHITE, RED); + } diff --git a/SW_APPs/APP_blood.h b/SW_APPs/APP_blood.h index be02ef7..81d29f7 100644 --- a/SW_APPs/APP_blood.h +++ b/SW_APPs/APP_blood.h @@ -11,6 +11,33 @@ #include "windows.h" #include "LCD.h" +#define MAX30102_Device_address 0xAE +//register addresses +#define REG_INTR_STATUS_1 0x00 +#define REG_INTR_STATUS_2 0x01 +#define REG_INTR_ENABLE_1 0x02 +#define REG_INTR_ENABLE_2 0x03 +#define REG_FIFO_WR_PTR 0x04 +#define REG_OVF_COUNTER 0x05 +#define REG_FIFO_RD_PTR 0x06 +#define REG_FIFO_DATA 0x07 +#define REG_FIFO_CONFIG 0x08 +#define REG_MODE_CONFIG 0x09 +#define REG_SPO2_CONFIG 0x0A +#define REG_LED1_PA 0x0C +#define REG_LED2_PA 0x0D +#define REG_PILOT_PA 0x10 +#define REG_MULTI_LED_CTRL1 0x11 +#define REG_MULTI_LED_CTRL2 0x12 +#define REG_TEMP_INTR 0x1F +#define REG_TEMP_FRAC 0x20 +#define REG_TEMP_CONFIG 0x21 +#define REG_PROX_INT_THRESH 0x30 +#define REG_REV_ID 0xFE +#define REG_PART_ID 0xFF + +#define SAMPLES_PER_SECOND 100 //检测频率 + void APP_blood_init(window *a_window); void APP_blood_loop(); diff --git a/m3s.ioc b/m3s.ioc index d2f6ce6..9fbd03b 100644 --- a/m3s.ioc +++ b/m3s.ioc @@ -27,26 +27,29 @@ Mcu.Pin17=PE15 Mcu.Pin18=PB10 Mcu.Pin19=PB11 Mcu.Pin2=PF10 -Mcu.Pin20=PD8 -Mcu.Pin21=PD9 -Mcu.Pin22=PD10 -Mcu.Pin23=PD14 -Mcu.Pin24=PD15 -Mcu.Pin25=PD0 -Mcu.Pin26=PD1 -Mcu.Pin27=PD4 -Mcu.Pin28=PD5 -Mcu.Pin29=PG12 +Mcu.Pin20=PB12 +Mcu.Pin21=PB13 +Mcu.Pin22=PB14 +Mcu.Pin23=PD8 +Mcu.Pin24=PD9 +Mcu.Pin25=PD10 +Mcu.Pin26=PD14 +Mcu.Pin27=PD15 +Mcu.Pin28=PD0 +Mcu.Pin29=PD1 Mcu.Pin3=OSC_IN -Mcu.Pin30=VP_SYS_VS_ND -Mcu.Pin31=VP_SYS_VS_Systick +Mcu.Pin30=PD4 +Mcu.Pin31=PD5 +Mcu.Pin32=PG12 +Mcu.Pin33=VP_SYS_VS_ND +Mcu.Pin34=VP_SYS_VS_Systick Mcu.Pin4=OSC_OUT Mcu.Pin5=PB0 Mcu.Pin6=PB1 Mcu.Pin7=PB2 Mcu.Pin8=PG0 Mcu.Pin9=PE7 -Mcu.PinsNb=32 +Mcu.PinsNb=35 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F103ZETx @@ -81,6 +84,24 @@ PB10.Mode=I2C PB10.Signal=I2C2_SCL PB11.Mode=I2C PB11.Signal=I2C2_SDA +PB12.GPIOParameters=GPIO_Speed,PinState,GPIO_PuPd,GPIO_Label +PB12.GPIO_Label=MAX_IRD +PB12.GPIO_PuPd=GPIO_PULLUP +PB12.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PB12.Locked=true +PB12.PinState=GPIO_PIN_SET +PB12.Signal=GPIO_Output +PB13.GPIOParameters=GPIO_Label +PB13.GPIO_Label=MAX_INT +PB13.Locked=true +PB13.Signal=GPIO_Input +PB14.GPIOParameters=GPIO_Speed,PinState,GPIO_PuPd,GPIO_Label +PB14.GPIO_Label=MAX_RD +PB14.GPIO_PuPd=GPIO_PULLUP +PB14.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PB14.Locked=true +PB14.PinState=GPIO_PIN_SET +PB14.Signal=GPIO_Output PB2.GPIOParameters=GPIO_Speed,PinState,GPIO_Label PB2.GPIO_Label=TCS PB2.GPIO_Speed=GPIO_SPEED_FREQ_HIGH