From 168fa6030e5cd5bfda8fea26f0b98e8f21ebd16f Mon Sep 17 00:00:00 2001 From: Kymkim Date: Sun, 28 Sep 2025 18:18:49 -0700 Subject: [PATCH] handshake event implementation --- firmware/modularkbd/Core/Src/main.c | 38 +- firmware/modularkbd/Debug/Core/Src/main.cyclo | 16 +- firmware/modularkbd/Debug/Core/Src/main.o | Bin 1189312 -> 1189428 bytes firmware/modularkbd/Debug/Core/Src/main.su | 18 +- firmware/modularkbd/Debug/modularkbd.elf | Bin 1401576 -> 1401484 bytes firmware/modularkbd/Debug/modularkbd.list | 36551 ++++++++-------- firmware/modularkbd/Debug/modularkbd.map | 1497 +- 7 files changed, 18920 insertions(+), 19200 deletions(-) diff --git a/firmware/modularkbd/Core/Src/main.c b/firmware/modularkbd/Core/Src/main.c index 3ba76a3f..ec21222c 100644 --- a/firmware/modularkbd/Core/Src/main.c +++ b/firmware/modularkbd/Core/Src/main.c @@ -187,7 +187,6 @@ int main(void) HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); - /* USER CODE END 2 */ /* Infinite loop */ @@ -198,6 +197,11 @@ int main(void) case MODE_ACTIVE: resetReport(); matrixScan(); + UARTMessage UARTREPORT; + UARTREPORT.DEPTH = DEPTH; + UARTREPORT.TYPE = 0xEE; + memcpy(UARTREPORT.KEYPRESS, REPORT.KEYPRESS, sizeof(UARTREPORT.KEYPRESS)); + HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); break; case MODE_INACTIVE: @@ -228,7 +232,11 @@ int main(void) matrixScan(); USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); break; + + default: + break; } + HAL_Delay(50); /* USER CODE END WHILE */ @@ -287,19 +295,19 @@ void SystemClock_Config(void) // UART Message Requests Goes Here void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { if (huart->Instance == USART1) { - handleUARTMessages((uint8_t*)&RX1Msg, huart); + handleUARTMessages((uint8_t*)&RX1Msg, &huart1); HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); } else if (huart->Instance == USART2) { - handleUARTMessages((uint8_t*)&RX2Msg, huart); + handleUARTMessages((uint8_t*)&RX2Msg, &huart2); HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); } else if (huart->Instance == UART4) { - handleUARTMessages((uint8_t*)&RX4Msg, huart); + handleUARTMessages((uint8_t*)&RX4Msg, &huart4); HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); } else if (huart->Instance == UART5) { - handleUARTMessages((uint8_t*)&RX5Msg, huart); + handleUARTMessages((uint8_t*)&RX5Msg, &huart5); HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); } } @@ -320,6 +328,8 @@ void findBestParent(){ if(least_val < 0xFF){ PARENT = least_port; DEPTH = least_val + 1; + MODE = MODE_ACTIVE; + HAL_Delay(500); } } @@ -348,13 +358,21 @@ void handleUARTMessages(uint8_t *data, UART_HandleTypeDef *sender) { // Requested to be a parent case 0xFF: - reply.TYPE = 0xAA; - reply.DEPTH = DEPTH; // use your local DEPTH - memset(reply.KEYPRESS, 0, sizeof(reply.KEYPRESS)); - - HAL_UART_Transmit(sender, (uint8_t*)&reply, sizeof(reply), HAL_MAX_DELAY); + if(MODE!=MODE_INACTIVE){ + reply.TYPE = 0xAA; + reply.DEPTH = DEPTH; // use your local DEPTH + memset(reply.KEYPRESS, 0, sizeof(reply.KEYPRESS)); + HAL_UART_Transmit_DMA(sender, (uint8_t*)&reply, sizeof(reply)); + } break; + case 0xEE: + //TODO: Append message to the thingy + break; + + default: + break; + } } diff --git a/firmware/modularkbd/Debug/Core/Src/main.cyclo b/firmware/modularkbd/Debug/Core/Src/main.cyclo index ef49be72..24e65e5d 100644 --- a/firmware/modularkbd/Debug/Core/Src/main.cyclo +++ b/firmware/modularkbd/Debug/Core/Src/main.cyclo @@ -1,9 +1,9 @@ ../Core/Src/main.c:149:5:main 6 -../Core/Src/main.c:244:6:SystemClock_Config 3 -../Core/Src/main.c:288:6:HAL_UART_RxCpltCallback 5 -../Core/Src/main.c:308:6:findBestParent 4 -../Core/Src/main.c:327:6:handleUARTMessages 7 -../Core/Src/main.c:362:6:addUSBReport 3 -../Core/Src/main.c:370:6:matrixScan 4 -../Core/Src/main.c:383:6:resetReport 1 -../Core/Src/main.c:394:6:Error_Handler 1 +../Core/Src/main.c:252:6:SystemClock_Config 3 +../Core/Src/main.c:296:6:HAL_UART_RxCpltCallback 5 +../Core/Src/main.c:316:6:findBestParent 4 +../Core/Src/main.c:337:6:handleUARTMessages 8 +../Core/Src/main.c:376:6:addUSBReport 3 +../Core/Src/main.c:384:6:matrixScan 4 +../Core/Src/main.c:397:6:resetReport 1 +../Core/Src/main.c:408:6:Error_Handler 1 diff --git a/firmware/modularkbd/Debug/Core/Src/main.o b/firmware/modularkbd/Debug/Core/Src/main.o index 06e667bf20cf15ed1871e647b10b02c39cb3f9c5..16e28b622856a7938a30f4e3719256cf160c7894 100644 GIT binary patch delta 139047 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

7IIaR^OPy6 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ⅆh5M7unj{>+dGY(+PjhQhA zk-Pt|u`iFSX$$*5YpuQasdP%ocnz7yd&%WqTrOQ)GM9OtLgsnAI8rpo5V1(8Xpksl zilQ`-p^$mX6pE5ek?Z$;a_;+ne*e8b&Uw!BtY=zl@4fa~&wAF1-wQ@Fdh;L}U;FTT z)lpYp{x%kltm99S!eYd*cTy&(>$#3zm>c-}Ch%k<_d5mMJNO0*2nO;emr%BopUa0c z5j_4fEbZq>n0o!VNygIze8^*tmKfTJ9`#{sKH+<~EyZL;{6pcmk&nWmX;hsW&^|hy z&V3p)9a)D)b?h&VU}@Zd9{3(#KudxXZqaE}6D4hIca7@^UnhN{K*8iQ84#XwVicU1 zx_Ka!&hnT7p7}v~@GL$_@%1IuX`RKBxzLuDHLTunl&@t2mO*4An5gC(qAWiK62<7@1DbC|!*j!UL-yY_SFImu@MBVZoWnq27o!n*6>(>K;Q8_K@3 z6O=aM&i&nCb{qG1MdeQLyRx6gs~WG+7~mAM7zfp-S$18pB(k%P07*=AgV{5zH=QVO zmR+RK>IIfYtCyMVO(ER9$dc)zUt&q$pz|`TN!j{W*x{bAm&I}^UgMa+g8?=wr=4Xl(EQEX{7KT2~X58i`D>z;fZ?HpRqWA*}U z;7u;V-;KP<8E|grzBDD=!EX(R(m-zb2gJR+Ze_IHK3;?78ezQ95?+M!4i!O+;nCD< z#`0h5(10YKH>BL~1pb{uTc@~LA=I4a?S2DK8fP>!Pv_rUAeh0AZ--Ck`LF9Bca^Wk zjjdke!IWx!otIKin8UBo%;f>U@Gr_9@~u~)>=8fzGs<##t(x%SG4ECbEcx7aHU&2e zxLXpmz20o9&`<0b z2Z=yoKLsE}cyvUQMv7xg;nQJp_dL8v6ZdFQ{*J%^2#$*0^!{^KJ}!lcUCJ1GVaF%| z4rs2kO4o~E$x^Z>LGGc_EDWGTiR}ULugVLYb5s6kXRAA9t{F$t(F@ckPp$hMD)Q9~ z>Lm+RhYkSm)Y>Ot<&!$|DjML6n&<@VyXsF%51v}i-?|@~?4BTEq7M64hx(0ZSO(`Q&Jg@ezs!fF7?%!yw8DXjW%m^jDO zEU=`q$O;foV{Iu8oX%Fr-WI%GE!!M$USg~1vR`Hal-O~FSy7lXiv>$x3p8&X3$*J! z7IGWlKC5vOjy_&NJv^!oYftj~ox(=$yTw z^a6injw)T^Dc>QO#Z%LPUE?)r?thb)%!j}OJ|`NSdHfpfE%p!thMHFE?S7+^wubqv zf|21z$D*PmY$#keazqnYAC>P2jiZz4MCvimnnT~@nUR#dJw;~V+pQ@EAL`VTlpHm$ z5~W_u-%3fM3nJ)oUAQj^lttzYh8MS`bcm&9=TQ1jD6Q{!vZq0?vxXJZ!?>Qw$*{eF z{m}>pH?qVl0GpUmRQ-()!Pkp+xF*(yGHD0KRBcUnpb z;WaT$q({rB+I{c>_a^q0a)|udBN{U9U>%)sNdno%<#1~!bDvl4U1T@N>|>d9C`}k^ zLpRbv_UlckKg2#$5GjTY&jw2@3#K67Nw$bK;KsA2l+%;Ij!@F;Io5_om#M5ijXp0K zSpeM;mstaP)8AwXV^HN=%!0NfK4Lz!D3i+;bVg%8X0L9-#1rPBq6S5*u|Kf4%$Wip zYxt_;sQG5DxWEKbL+H$*0Pa2)I=AwyNQiIaH_c&4@>9o9ww>>L4cB&XV=X;ZlwY!d znw`84MbCryum1w<;wdyJ+s#iNgEM>haY}>@=3CyOEQGII0PG@P^99%=enSWGG?7Lt zQ|Th%HRLkHJjymbFP=3)B`yem57^BVU2dW5qL|_exl7`)w70@daE|i%PARu`z{AtZ z2$~`$Dm~HrsYy!jM-Vupw5DkAS;gi7>as(v-UJx3B&wsjJJnT`tq`QXYY)y{>K=Nz z?N$@AVRnz&<`zJ(I^P+@5Va@mpi5Lo3~@!zjx;Q}d?~@Lg?IKFsH8rL=3>PhY1av?S|$7=UHyXZ8V0 zroMDNh)?ui7o)X4>HWIEQBSijD@`dculP$!Onk!)l~7*HUmb`NaPShKHZ|)T!Wf7yXI>R*Pqp*X1EBDR%2AzSA6fjhHwQWoyMW zN{96lE1ts%Z}GkW%6!C9I^)Dw{GI`K*NL>h0Q`hV1XwTTUk1wtam9E5N;e9=5UiWT zUt8dIloEsQfPzKmL;f8 zh#E#a)I!zw6#3kze)|l|WIvQBCYV@YH$3yC;ORyWO?)e?g98sI*LE@OY z>>;odYCZ*SD}{B{O&W4^6C3JHh{{0p|s(te?G3AQ5{fR1{Kad+e59(jZUFSeFOeOuWk>aVvkr!p|? zWRso%3u5+zAr#4~92$xC+|Pd94^45*meyEKvt}~B5+1N>p1{7d{%0Yviuaj?X7=Dk z^tgHQN68TI;uk6Bz?&bk#@l@h@74s$0=Q*;2t;y!+5{WRuQ|c(6TDZGA1_J_I=BG^ z_xLh;*WTxa7ASwfk2i#-hrHcCkbT65;ps49HDdiixS7wlQpUg={tH7x7V`JCffe&@ zG@EDEPcyTpkU~U)Vi_&s#+jojSfB6EpjAe+XU7_^6_^B(17esIxOlOMjG{d~G%0@|+}^{PhoWi-${vaRIjBXh zSiS(-UW$#YL3}0l(%M_T=toOv@5CX0I8!1z(Y*4jD4=0fnOI2^!*8NK1@rzDy;TUT zRbC6qIPy}KjD}O*O2flw1Rv$y2LNBCXe+$fthm$q!WQMYE93)|1IaKSq`X`O;x1)U zI9S4zYw1uLuI!G2`50v}#e!m$M$rH#m2tN~j8~RZH=L|gxC4-)xRd~7Do-VV@uFf* zIa$}0z0^15DD5dwbYHngBd-U_!x+dvR|e4-El;r@g*v@ZR%j?IQq-{!c&ps&2$s)E z?ooJHs;piJ?2Gc$0%fb!e`$xDhw4B90#6(;1F%M|MA-@J)#bh5{RW)q+Yy4>RE?Hg zr0RSJt-f7VyWj!^t7qvY9!}fI5 zh9)Z+YQNX0N|qW?7iHOM6M8vcRqxh^ooi}O3e{d$BV1uTM?J3t%MJDOWL$`wY9bA3 zZmD&KLHxFQ_%n!i)Z6sNy{p>MHpnOHjHUoj)y#R2d#1iHZbad8_1AylXPz2L8I*t+5ze?LbQ9-D~D<){(u)zS`uaP9nj(;&_GAE->sqZn0BHSh^I7X z+Esj7tKASFQCmo%gd}YfO(xT|@Y$j+np^wY97?marK=&Bt(AB~_iZiv7#zN%xyg6c z(2obXp)5};rnv13?Q2`GywrZ)3+%1-+!~G+Yb*gQrP`z^u=_>pN#Vn9oj}roTq(CFyz#TiDCc zm#hPJUO%P)7B1)=`$1WzzHts*x~TWh0Cq_~qYA)feIXqlaz)>Pwj5;Xw@^-Lwtj^@ zz*W67ZMVCoUr*~o*Y)F!6tc|G_qq($8~RSv*FDhNXuuxoU$_B#q+ie(SgyXY0X{v} zXLtZS(f28YiKqGj-Y{68Z_*T6Uh7v=4%HjIk@i9t>c<{~qr1%R9fm-x*;Pvzj5Ay0 z1@lQ}{}e$y+syEpvgsb1#Zhp(*vz$jal-sDjm|ci&)kQyJ?3mN1dp0OKo}IuHs>ti z({1x5=TP>_{H!IwJM+XLF#p9o;39Odws39>-98pSjRWRyv9KvxG{|DP3h_t_;~c1t zv)DyLn~N59jVb*!*WwAK%)GM*Y7Rk<3KP>I7*L_wZ@|JTJlG8RgbGg2VJWMEO9jY3 zs4(C)Kz@aB8{o{>3ax`s=41JxH?E|#d~*bH+buKlpe5AO`8H}FX6aKEl{jgcK*Ng! z%g~>}a@O*fU(9s&YO3Yf$1@!3*q4$d;mUUY`mDnqqeXrOh5&}&fb zZ>Vz#)!k-LB7ki-T)6{mr=h(CuwcUo8uWx3N~jkOGfdwO?;{QI##F$Ah9(rFh%pS> z2W>|TCm)0LxFP&Du#<+>N$@Gzu;U0=QVsqzD9SXL(dx-%gOeM|atvYpQTD(v-3G*` zhS3w@+ABjSbvlIxoZN&*+AvT>T}liC9AR&*)g+pUds`Lx86oIvRofY?epZP#xFQ>@ zD&2#8fK|{;V1ZT-X+|7u_09?)-0EyYxE5_S_!G*GSWT@24->4W<)dZJT5Wp>*V3(m z>~x^wf8`aleA;K*KuGp8QVaF}Y73SDQHM}EQ0#?m

2R1Jy^-!!XI7$mdVFcr0F8}>jU%Gc@a$^a(D?{ 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

85@; zhA_j_bQEowroGF+nPqxy1z568v2-3W$F!DiO+R6}{Tf(uO-;0`%QKBH1!ul#;oBeu zrm-)`FJ5TcLz7RD=?}_`IB5!@ERRxCxG!uvWom5#OqmH0Tf7aXM=wD|h3Uv)$XA-4 zqLjue(*`9Tu4+>^g>q|5Wpq&Ov?+Kuz-mpqUO?L!(<^xpKWloEUe`L)44qo9H&rVC z`zIPx?k4~}Z}O&O;|r!}nusr&HqxQ6CR0TShWnC9XoN(w>GUe}qQ!Ld4B9T6?&m}O z71QpEV7Y3VrCmg;>5u^^*Gv&7P--(-`oY<5+T;fH9i~zN6m^bFgYDfTvO@_!#Po>La6yoT5N@xi(Z02xcO-}U`LprrWq*G{0e!5qs)neXp1&4Jp+Ll zbMv!cIc#1}yMQBRg_<6cShM*bs6T4ncM_~|<|Pi`i8ph<1a^X%O(%U4&3osgGRd4v zHwGn}a~}ieG4q@ZRHm34lfiP_9GMN2RI|tTXiGCcO(Car^LEN1&oK8|VN9lZ@qLgi zb4fBtws{R+7~8xY^Y%DMoG^bl1(It{{Q)ZS%r+iM`R3>H(d`0reLsGmLbKBks4Oy1 zyoXY;Ii40oC1y!ADo>i1-b1O>ys8=sPnq9(1uDwSX_O{WZr)Of$_n!{UFdeDIlLcj zRc0=ISM6zyEZgbB7@RZa90xSlo3Bt(V}toaavYsA$7}+6qxno6O6Se>Z-M24Ii7aP z7tP;42F@n)BFa>|WM20NP@2unWq4{@%wJ}qblJR>X6GwrXBBi^HLsvNrB*ZF5na4y z-kgBSHuFo5Ql3=1nP*>fo@Wa`iEi|m@B9ns>*j~)%7q)|b3Z~uulZCpp!>|t7Lc3f zuUEseezWU;sTlYP0XAsv835;y`TQb4-ZIZT4n?=kdlv&`*zEo{N_WhkQs&BC^CAk^ zjhOkBKp8a;k-O@idA@B68pq7tyDC^-?alexe1Gx23ZMDts(2RYR|@rHOnshb>!Rcpt zH5;J*mJ*7~+bt{oK>{qLAEFb1mR=jW9b{>uBO$?-T1xZ@vGmgZBGht=iMB9{IvCL5 zmX*(vPawkLM!TIz%d__33sT!RH^3QdagGN$YKeUjJ&Utw=%7Ws(T7n-yPnsp@C{WTZ*%aBxusGB9 zG1Ib#(y6m7kI*(X+w!Wd2emnt?-!tW!eS|aM6TuL0L;#_tf8n{zGdtTY$~u!(YLqI za*e|DMV3e(Xeze2y$ekx7PB)@PFkM#LS?C?@hOx}Sw8vBB`JWt6#6_%7S zXsEP=(cdLiSvZX}c-5BIt$?YuJgr6J8OvK_@L9_&J!=h?g{7!GXPF=;Zlk5L9D)}u zGgb^?ljSVAtu9&I>8x+NW$j&5c33{4W6zzIA@WjpS>|tsK(|HJk5Z3CQirzdmOtpr zc*DZpKoeB2Dda=_m_@W6EaR5O_aS%RGVmDv zKkI}gW-jC>Eu~u_IAw{wg+5JNejmX&&ser^gQX8FJUQBCEk%{6bhNgwgS?Y9;wjkc zY|TjksEgH++FY&76)?@sy63;cQ`Q1iUZbXX~TEW+LH!3o2T_P z3cPt)_vWJLZT(pYyM3&GuY^KhtJoiHhpgY{0mjc-Nv-9IG$!;ATKqr`v{?m%pi$QJ zZ2*n7&Xhq@jJ5O=U>~;HJkfT<+Cf{vSnJ8lAo14MXknXR-T4Ht6RmR;P?%&5D?rzh zt&5|f_n7tb0Vqtdt`tMzaccnW+ET3!$AFn;ZP*F%bnAl}D9W(feCRutX1WJZrfYn)0oS0{~NCJ(B|!h1MZEIE$4qtt9Z5jKnqu}k#bjBtra6cxn|uiK&j0d za0S}itzP!h7M`uU9qM|l2WbO&-Fp2#kZ)N1D7e&XP526JeO4FRzuvSuP64FfI!p1_ z0qd?FfDBr{O$FqTwTB+qTh`IP(97Faw*qT7c7w%YB&BeIfwNAc@(ug&V^2SE3 zYocKLJ?o&2LYQOLLliI=w>CvW@V+&n4|*r8m%fDHr1cUlV5Y2<3BaDVzT*Oz8SAQ@ z7}f{YL*z1>wO&1fN=FAarItB49Ebsmvx5(X*p{zLnUP%v6|XSXQv@uJ5l;)!RYv#Mu=g5cKY5?| zjK!r;rhuW!L#vQcO$GBsjLaA?EoOZ54+u&a&*^sV>x}PLg7*!E@9!WeWgJVxSQ#Ul zDtB%&&h3GOa)#Cg;1;9Bf>*Y}!Qj&NvXT)#9EYBgnj&Y0XVec_=koa}F&-jP(^Yx6!(&0znCXYhn^avzxXFm_T^LocJ8%6j@3HT0eAXB;4Z{wc#mzwl>_?BvKU3zDonOi8Jv4@Q_xtb!X5zI$xpv7tCcb*uFWWG!O z*BPepG6E8T8C& zPN$mq0;czPj1@9>9D<%j%v)EWLosvKU$CKs`5r}&t~1-{b-KY^N}1tOrc(yS%9w{o zA>k(T)&z`|GrgKIc8fXWxQ%87b1Qk9mCVfZn7iA|7>c1)F&EJVP1VfAK7c#S4i}8o zFu$kAdY5Uu04-{nKk%V%9dq|>jNN0tPLcWhO#68HX))K6_6^Jey27TBdFylN`+zz8 zGXym;%VuD*9x~tQqH?%qrtK8CwJ_7j({E*-%m!f_bIle|v@_pfg5nX=#o zK?hTo45ppT-j9LO#e8`!jOk{YCSdFdbH{Gz)Wdw;1zdWW+v>oxk2xn9t!K=QY>Yi; zrn~|20p{B?#^J3RWD0n|8Db8R=P=AXL`m!sW_b{Jk22phz_c;uX8JBWvqbcD-@{sb z2n2gsOc~g?uwv-!>^|218~|5V--nnWH&$jBfIDk5rL;X*UKBg?WW7M2%l)i%bPVGF zi;4K7!|5QawGvOwi)H;Uz|4|U2+o_e&IX%&SRFf|(_vOF#RGj=$jN#wgIEI_Ko`uadkAohHE$hQA7?Fm9a@}Var&W} zBZQSsYu`!MtDV3(#hP*sgrTh3*I;iLE9EvMg|oIrgCc@8r~}1m*1xOK8Oi!lh1MCC z*Qc1EDAwXx;2q5h-HKKWYt3n(#Io#KC=ykihyr6^bUZ+9!h`Nygf+ zAE;+pzlA}>IoAKE>MEJFemumdus)??z*N?x_b`^mT1dOY^Q`yZgre!J&`$s|SkL{s z8>Ttz6d=fBZTkp_S6MAH!TK62NdrOotg%{v0@fdN*rt#*D-iY-vA(06PBH6~7ok}R zt0EENuCtz{W2}_5cPYloSPSV0!cA5pCA-U68&(757K>2>lnPe12`H7UKj;wuZPq+f z4+g98=rNObSn;bNzJ}E+1L0j({7T@|vV`@}qK@@T3BWzp=>~M(X9*|+Ue7X+%hAB< z+6~aiTIW~Rh$|y0Lf_1q>kEuFRz@)dw6m0S65tVQ!rK6kS&Lo=lMYr1G3jJ+oiOuV ztT#;%-pzWI0zFSy3n&xP!}8>yvzHb4I#BvpZ&K=`pY=0sR-UpXo)~+^@;?Cy&sp-T znDGJD%X8*~_aLit6)YNJ9h?C+!>l(b%r?Sm@N+y^*o(a(=P>)G7<9hu z#W!KQA3LfHPt%`$e<@l=*k9At3`g0m|2b=Hkz*=Q1KD|0&lJR7Pg$s7cEV?nbd0^? z3b-9-e-wrJJi*@U3c?V!|5~(8vUA=9!6~-q0K|u~^+6C3#(smUYQx!9svwGBk8guc zr`cb(fJ-F1b2U)Tup4L@iee}3fHJY{N8899jbpFT0>rb$%@Ci!p0^6EMD_tEOj8p3 z&LJpsj{O3q>XX?E2&AxgZ36F9c08?SY3xsDK;U^cYdqG2boLb5h-a{m?FMEhd!`pq zF0dnc;Bt}u8^tuU*k4isQ#Lz2f<`WX=MuY~4Z>XZ;ZxvtnLUT{!B^N*vOtl? z-as4bt88~lyj)`!k*A!`E~YB;0(LWfLkij7*Q2wDtz@B9%%1K95hd(ciZNVg7e#~a z23ty%!lmrSo8Vc-{;~Jf7yKd~&T|ZsyLFq*q`g)ZThaiMYPOm-EqB;|oCc_2chOhi zE_>QHc=)yKSMPyc9s4^mTKCvdyP*Dk_H8C4*0XEKVQ*l6`UU73*#lI2_mCa28M-yI zH&Wqa3!4`Pf>!n^3I(;X84fxF+s;172I?dB=F^b$n4LhO)ebhx6`+$nleTJIY%f~t zy4kU_0G_b#(`LViy^-FwUbfqN!0cyVdljvx?6d~7p0Sf&#SA@X+pF+m46s8f;5o>4 zO-5^oJ&RoQVfJU!{BoP8I%HJO?#>ye526QWHO0?8IRgpMY(K}3enkg4*%T!6;y9=Z z>=4I=zBb;Rm1ofD!T7? zJ(qBf^S7A82+mb1B{Y z<8r}=M4O61IJ1Jfi<%2{wb%b89a+;g0?ASj&7X`o};DV*WyFfEl6 zBnDj?C(ewq^PJwhpiAdOP@!f9=fNFxW^#mdWak3sRdTj2a^l0lEQ{ktInHd(qA;N3 za=wkE-0Ee{McVpb;TV^KB9F7q846$Jl=lH#;}jjiv=wkx`~%*FoL~NgYDJtw-Vj*K zDcc25!m)&5W^QmElB-+Fne;D2lyMU2>w1$jT?CYJ&YwR6rGk?)9dau_qhEqkU$Ge>8v@5LTJS{+H9cP&bz&*}3a`WzU{-t`$ zdd|Ap(7u6FM=_vAPKOa99&qxEu(yeGpc*_Ma*}I7*UY&_D@zM!N)&juay%Nq#nHxD zdjNy&oP$Q#`-sCxLGNSE`a?kN;N-P|TPJ5SB^jS^Vrdi5!&!J8W4)ZDbkOy2G(Vx$ z&pFlwEuM1X2hsVQ6VZp(0B5uuS`2cQl!I=F6H7tjVa`fA;5W)iYsZrub8!BpO{p{Y zYA%%8!&TA==DplAWnj9G`>6+jD_5xjiW~RFL7=#E->2V}2bV_?KTqx;owwT0&A5%u z16*4X1RmtheF>OeT>U?ophH|Meeu1y3Ob$X!!4rn)WclwN0=F3?g#TL(e&enTQTU* zZ6pWp2sdOk29I*}G(!R0MSj1vPjfVW13|~Q96D8Uocoq9S|_+Co}(4QUG@*~L%E|! zmOF)Uy(yv}&V8{721amCod@P=?u`J9MRK=q1Bl|r)9M_}-AMH&G2B0fAv~5l<1N?_ z$DK)8<^*nD6*?2Swtg^6;%;;N1d6lVIyqE2$2IQ+?-Xt|DbBzH_&2G^X2u}rR=KEW5bJO2-@i(D36D3-;|rQK&X_hTuT<#6v&4b~;D3ky2s za(gI#eVOap2z{?`Il1&h&EvkY6-=*k6OV)b8aGT1)O_xF`cV~dA07m1A$Rd707YE) zd3egj+-)y|cL{eLUE_A0o4OsX8{AVtAh^l>(FhUc+_`^&^)0UGPq41wX49^!k~`0i z)@|-6<*ci?@2cs8b%$F`b6LY3pu<>qxp}mr)pAvh0Cn8bT!4GrII0x5&z(^T5e-}& zJ*GykcOeXY!1d~c7ERnKdSE`}PNcJ3&0NI^bhdEMP_Va^`;=U{Hm(368mD&dTU49- zh`YJ=1^iGuxQUZ6*vUP48%(>nvb_M^+%~#z@d>w!^5H$)Kgplz<+7lXABsNZ zCQk?NXWYCO(D|JEzbH)J05|zJ&<%1w>_+Dhclay>j&Rv}C^O1sPep5tJ1YdQfHRN% z9x$zYc(N}sxR+N;g|XgSL+sd0*s!B8yk>E9kR%0{T2(;+>&PS}yO$Fc4nmovugc6=4yofB=Qp(%+26&e7G=UI% zlee~kjz5?4TxgSYi&v@zn+o1HR3lr->!K`26|Z?5KsE2z0np#!z3%r`*EB~Koo%Y) z3Fvl*d%VtMFuTutk3Pipyvr$gE)Bdj!=oU0%=;}8V;#I(nGn>;dw~|WE}o8Ry1IFvIJ&{+32%-c zPt{P_w#bw@j#yPI^PF)#*0}9xzBm!bl7%)7cd`Y4)J1XlQhiRErf^> zUg$>9jq*IpV9OY9?gX&j%RfrjUb*nsz6^o;`0I9})0JQOE#$fJJrQoli_V|%1WgbA zvjni&&%b*V6bJZ9TJ{g}2d03+i?56W<{|#dufWEef8a1WefVCNKKe7>Th2{z7jklgKyJPozLDf0RDtXZbHvCG9!>7mL9r znQym&K7~Jf0M9p#uc24qJU`qW%B1t7VnLt5m(W|4$dJm=>AK{LzIVzrt^#{n1svzZH|`xW><s<-*WT+mhVUsJ)BJN)Go_N#I5z38CGU4G}w7_8;jQVDP!|Fteq+~aSj5XpVM zb_6I5d<%Wf8~H0=Ota^a*zr{CyWqH$g=O=EPmFpaqgV1j%Kv*HaKq7w+#DT;zcF zK|%F2u<;Un{5?b*5^N+t%Uh63nLi)Flsu^IC)hB6IrJAW=#z3paFl$%qk;%2S^rWEOM!J4BGe?rjnF;GJUig&^Lq~Q4>Xn0ES7Nvti1uan! zA1*ku4FV$sGbcfd(}JQuKoBXoNDjmq!9wzlq68=A07MJYazGFx81Dy^Sizn!h>sJ* zl9L)Q_&bp9hfEY?S79(oP(b0Hvw~C#ot+cJe+}!C1)ElYB1JGY7$8;9kprF13-S(v zK3%XZ6d*&ebs-2c1%9-;UJ$IJ%QUhDzfd_>jv($kv@Qv{RskhfF#R{QE(@&mUR)6{ z40Ih!p5WIgNV+EYh(hf7g7w`nv_Npu9XN#o&zUf^NU)Ax%VI(C7>p?qyiYdW5Y$r| zsZ_9N2FS|K=$nN6N3kYea;Z!CH$BU8XOWXqOH8QP&@@X`3P&qL7BtCC?=Tt3dQtAJ|bi% zqVuS*p~G*_(^-z7U~oAmoJ{NKabZvcG&~{9&4+3s!UZQV2`7bBpMd<7@Vk@X87iFi zF+iBGi2TBE;dpY2B7{MdMn5g=-3)?AVL7Gm&j`(wcZm{)U4&-Q!eR-=;)G{6pcOCN z-vPP=;ebO4oJ3(At=vh%`tQN!tZ;TMP|pb`kVBd*{J0w^DMAMYMpK3JXlBxcYT6~G z3#-=xGegLE1y*MYBh!F+LAZfD^^3w6=&W>>&}R*7$rg4*qBBRRS`Xtd2?Nb|Ai2Vb zNSffwLPIl@$`kVG_kL9vxfS4=P{jtw7xF2ITOj=FGk`+jczV1=!dflpi-os+KvyD+ z9EKLxg%aAZ-VjPY07{wAnW`ag3LB~VxLnx7g!o&+YcZg!5XKk7`bwdoZ8d_TtX`HtUaf=z>P_&LNk3THH8f*uGj(|Xt>R2)U?p^$Av zt64Z>CA4S}t{nz>n{eJwFuPq?Ly^2kLM7d&@>qD_D#kj5!_xpdg=Y@}rAxR(0=90(GylE9=MyFar(bx`ujct|$BmWf929O60&_^1Mdw0>g_}8$J|bjO z8T+Vk*3VFPOgK3QV)uw1h6C&sc?W`ti|8EfcJ_%rD#5(EiZ0P{AUDz6OPC6Gk^LXg zd5C(qVa!uB&4|{1k;E4g4u~#}0rQY3*D(i6kGE(Fl@0rdrea-k@)M1tNR7WJoTAxB zL?dc|qoSo9pa>Av|Anz2(c1&iH&`^0HVDT=vnVBcTqLJ})(H{wE0}arU#Q0T;SOi*_9Xh!Gt<3@c(qJyP(F z6M54|C|pI`MYPfc5vih~Gmx7m+Df~m^P*Sj z;8}(!j*iM?ie93X8_L_QFjzY0eVSO7dT>i{5wxI^7VhC<3!G zQDzu0Z;CF|f@irX^BBc#Zi$vqsHH;mUbRS7Etbq(&-OB>qRYppw%FfQ`uOfX#eX_v`Hi)PwS!R0Bxn3MI+H@ zwTOa~09r*)JJ9K97wtO^rjJC6c4BHCi^k|%)+u^Sb%0%>X%4XI7Tuxz;}cQ(QnY$R zb8bUKzliGu@Kki1P7gj4?e+rG=b~OY$OlAo=7HIuXcsLdL!tv>v_?dEmH$k`#D5(lPx#7Vm`Lwm)(^cisxuOd&_RoqLJ0&e0R^-#uLe4e!M5O3NBxt`)U z8|e3o^XQz@0r6Y((ex5;%mKrWam7K1j}@8BGSKIXL+FcBDDLS(XOY-+3$0@DGAd~( z5x+Yb;JWxD%6{Dt&)tGnnHc}fj#pkRxdQTX@y$`RZi$_)Lu`fEErsHymEvkTK~W{% zLmBL9@i?m1xFh~#HMFP^XHA6qcg5Kq(7RSFpikp{vEgNKs}~=p$!icdBM;!zDBgM( z?iy?8! za%ev+{%i`yM#P@9Opb})rVWd;WbJ>&dXjCFqIZ!@rd@$!pJW^DU0o%96w~sM43m59 zDY@_)l-VzNLy6Ww$%_<6^paGs0O29YE-Lu)mh{q(%SZCZK6Ls@wo;hdPqKOxz+dvl zAjXbJcI&|9sN_Ha2m&Otgcu8yxX|glAjyIy7z=es3aPF=Omd#8{K6$6bPg>-vi&l^ zY020ufJjL_g~!iGUY`gpq9h;EWgF3w738ADNIs$vOswSVV6@^Si#I`;cuAcEoe7d> z*MONQxgr92lEgOyoo6MDJlJ_o;!OeVWQk)6RpqBhyuLwis-(US6ls!6fj~VkDWmLG zx}=vX$1)^K_-JKHtn|CTAhG|1S-U6+Aipn5a*FD}vLyo+fE>xpYS?>8QbX58Wd6G|SAn&Tg8F@Pp+rlCLPZkI6)00I zVc!9LiDYO2z;($yCJ1gw{%&ZHA)@?EE_j&nu9eL6VxoZNs06pN$5S0w@TLj3!ZHf zpXZpac8TINIv+_stwrmxZYQAXz@=J(Nnsg zwjukad9>OckoHZ3q6eklOvRX&bR-0whon2`7wRoFQ@M|i)J8ARVd>ht5bG=DI>>qO zlh)LMjla~7s=|&)OXwfJj!M6J2XX_XR(~)Jlt!?jOptU1{g{KLE9nh5CY?hL^>L{u z1x!y!Kk@^Y5b6I>+44#0^l!oJlyuflzzmiCH4V(dqycnCPPjDt5?T>b-wFqsr=_jS zfD zrTrJcG)a2k5#*kg&R7JLbJG4Cytv6yH5HqrNau?%GpW)~zXH!R=?o|O54H2sZHs`D zF6B}MWQKGN-58xI4WwxK1!+w!3wGKze|3y@gUUePW8FXMZ4{r&xNCPPCOsi zIy?bdv`bA?n)XQANPgpEDW7!ekp8X&mriK{6)|@)q>JWbuv=<*5h9*QA17e2N19Oz zZoSgKDHPc!T}DaBXVP$AP&}7b1Uo|RiCvR{}+OrFo z&a(L}n6*7JuYlDc&}4pzma8mf2{d$*v5!K6r|ft>z<$~6WRM?_P5lD89F)mvCG(Pb zv;*^y%rOHkZ`r_Y$n%l823&9&x4_X#0g|3eyYeySE?6d~ zSM`{TJsv!d%bckO?u5)Q9P&bB8>md_q->yzej>8HHz6TZc5Vqkn9P|X@Zqv6|H9}9 z*$cFTJT0qp0%oMF;ulQF8QBg86H^%_8#fAp(Xz4?=#7zWp&U%CY?yNQak5o(vMgS9 zkM=(avM<{J5@qUj07>WP2N|`bjde|3aCrROpGG8j+&yua8k6E^C8C5*y$aEgi;*#tp zEoiy2x^U26mX%+CX;);E86eM-eM*G{S7jsNAipMye1NfhS=dfs7Ra{IMz&BUqdi8E z?2H9t#j-my=|-;-nJayouFFmZK++A_0G)O#mHGStE6QZ6{)84cWmhO*P%it2iqdY$ zUfK&u6|z5fKvJcwd=Xl=Wli+Wuaf;rl`Yk>G$Y9G%2@Q1u9bbDLuZ|AFTKY1WM1U$ z-j{9pjRIEnvcmVEeuHcrr4AZp=3k)O1KCgHn>ERv(5*oaWmQ|yYL?BSUqg%RZY0>W z%4%s-)F#_PSA4X~GV;)RBzv7!(8sde=U~<$t4W5woigD&kkBP-nE=o&OaB^}Ph}e)?0_M5t)GrE~By)MAe)KZtOXmxrU}E>}_YwTJw7x~0rhe)&BR?w6nL0yi)D3EB@Fl9%-X#aq6> zA7egp=PYy{mX8mEBwx9NV$yzc%~W*y%Vpu{JR<*$%07?EQ`%r)fP6NEI|AhnRw{6U zgy{{7Lyz3e%jDCj>y>P`OVJv$ zorbY+`BwTyM93YKvpQb4Jku=DSmhYp2&lq{yatdF^%1_b0 zI!?a%A#md5%cg*7g1m#an~Cxj6b4R`H&Na5S$RI?BG1WrUqIhv`CDIrTZ-I3Wxc8L zU@A;alYbDf=+$wv9cwzF#Rd5f6v@9RFQ$9YvgD;1;F&GI_84Mwg8@;AQ%LABgLbqsgpg%My@BhT0my1R1gI2chYpGI4``|{U! zLVUfv^=}874RX~nsNX1G@CdyRthHiNPJ?tm)5;_slBd>Xj zLgBsgV2b4T$=}@o&@Z=iLBvye>ve!*pPg*9g>FS zU(h-=BL6K5W25pfe}%v?`7;jY$yxFF{~&OWqJk~}+^g`M2c29LZshUoQ_T8-s!v@N z?2p0CP0{cabK$OtreC;+;@21PU_2FdIY8a7c;i=~98f6f<9Sfg76ueAMJdhtA;lZ} zfpS=}_j3sJRh*N;P(MZdOvv?D%%kH2M-+#upwm%>ODaHsqVzM62P#G`gTN7_h|EDV zSm8!NpJNIIIY-A84gWyW2}SG}v}z6Zq>MR-8XB>Y5QUxk?|Pz02NzEIKS3M+~fyUW3*Sn=hjP_#r*z7JfkD~joT zyrF3N00gCqY%-}#@g03yZz{GcKv%BNP|13w;$tdfzO7jJ1LRdH+||IWR!ksw=8j?~ z6$jNQ)G^?BS25-wkGNJbnM&^J6wkZC?Vf@|b#3<*S(8CuuUPRrP#Y8<5@=McZ3M~# z#a>FrG%22*0(hu66a(JPid__0Y*8$y;;&Xk)lrPKDZDp=u3fR2Zen_*@c9SEKUT;` zp+$$n>%Rl(XHSRqdz6Lapxa*Mu3`vuQI4bF+CJrGicGpGZ9Nd-uFQKMz(d)v1!JDd-ANF* zU-^U*@CTIhshH}Z^4TX4;iY_w3_Ya$q6o~ql{fq_=A&$(U)o`1g#k0;tGoreRZf1& zqm*OxSLV~3a6}nJhjRm!Bb1&FQrhV%gJ7jO1D(f|uE@DN9asKM3565NHrjiJDAlxH zoK&*t4LqfEl7b*qxkLsKrrZ=@eG41I=4_BhD#uga@r?3EDwB*-Uc}i*r)cE@DoBq} zX8j*n$0}oQfJ>Y*nIa7F%Coznc7jsYjj=@K0L2oLlsAXK?5r|Q3I)$8nJo~MtSs0B zb5oQqUf`Lk+&>wbr77Q@0rK<8Z#GbPHC;J)2^1O1#aY0~R7P(F(+kS128>-)j!+su zOS$C~P_mVdtB{nVyfhD(my{AJr^{7-L-!M0R*v%k$`z#x)%fQrZ;?ZBRk?aO2(Bqt z1{f!gTj2O68FrQ^hvtIkb!Bt_B-~Jr(MP*fd7b>HGUX>Yx$bmRnL|~4k>K5| zOs30tTaD%7fcnTm?qluH9-Q(zfij?OOSQA%8QD@&<@;)(LU1mb&?FFE7U^(tq$ zgP>1&_9rOQul$vM(NC4{(;3QV%G30U4Js{n(K)2-ECJoH@^1=uj3^J%fvZtv;scD0 zDS!P1mN~0#ZO7Oi)kezb>{VTNP)(qVYC#vc?Ne?03`V%B!u|koQ{{aPo!nK?6yNhu zS=>PAsTxPg^!=*9RuCLedC+}a2URso(DG8f@iOc@q#92lF>lqP6&UkTP3wS!!zv5y ze|=T?F3`zO6+xb?zv|e(pC<&h&*Pw0I(qq5UVAElCR zguG~#y9mr;R9%zNidFej4Q`w&mP?zVc-6#hAWTqgnG2f|RSR!}TaxPaQTmCfzS|9* z&Z#2k2b!$f?Euph)rSGnY2#+Ux$h;g$xsc)L77aICSc>VaU4e%CD5*@ewzV-d8#ow z(|%R;ga_8wRL5_CAYYa8J3xWz>l|Pfs*X_3w^$WTFK3DBr)Q9UU3HP(?Hj5&bTX_| zwSXMxGF4D2nB7#xUWL4J)x=)ta!Zv#pUDbU;^*L5sfu(QL-V$3JXNn$skGj}sa9E* zgW`^A)fjl!sFstLdRG3p?+t_+ikgUd5(z!vGyOXh-LK;^rU0yu-JgB0HwQa%10gTtzo-(uQER0~3YGp6#| z3PNXfT_HO6sJV0z;9hmpD`>f>(e{mA1#rXDu} zg5&BdZD^fP&!^&w5cS;O@IJ9ls=r==!Bgs(ouCg@Pb>roQ-4UY-EehRC@hRnpB)0~ zY4wzF7!#>Z*%V-#Id1At-$;QIqc+(fF;?APg*k~+PyG_=$E&qdFqWYHO$+)&buoFn zN$T!(=sc?yz6EaQ)WH`)kgT3U1w|?9g|A^|Q`O69{ZCU1cL8LmZ2|c+@v{%0IBJf1 z6(zJTsekeY$W@ocLz&C!-q+B&qAsSuPoCO?c9~bzh2$4sQ-2u;lzjCUq*;M_ANfCp z>M^=^wn*JTpNL}hY^nt)Q7f*1;JP}317hvOjyXu!|g{f6H(eJ2EJ%uU^?x`10jp2Ru z3x5IBt9xDqw+HIiJ_MI0b!j`Mf>~nvR(a0 zDaaqGnU2@-EFY_R^nP@x6$MbSQ{C%~&Mvh%9XQ?U$J=4|6ZL}sQjKaQEhfEcs~wmbM7=K7 zf##@sA|+17)E#tPfU{;b{W$k%-ly`Sy_&7`&|Nei(B^TUX7+!*i3x&D0h&_!=Zip1=+_V!r0M(( zB7!wWs%JW(2}lHHh-U2-jGff5Cjp$&yxtCGp_yyoAZ!8SqT`7<~qYAVThO40^b8U?u> z*EN4pRl^O<^e}q)H7-=gUZy!iTcw*CpF2P)*X));&@D|S#Z)RZlfR(VyHYd60Jqzk zzT2Rv(iF`BeYHkJIjuXI-INEd(FBw8b5~PMVZ>UEEgx3YY1UJT#669WHVyYRtyDr- zuW5;eP7Ru`=7FG5vs(eo2bzT&fZ3$^I2qufW*gPPG;55xwA*gcc;$gv-K`UVuIwLe5dw@9sa0W>|MT|jSe zl=c+`D5AA5k?$6x&Fle))xKT_5U2g&JqV1~wyg$1g7&8`FeQoFadXj1(l!gh^Q`t4 z+U1|qy6pw)WbNXQfRdt}Mgj0Nts`#(lsd1?u)@N0?TeY9xS-uL2Gon%PiacCv}Y-Z zl&u}2t3h(K1-{^YNh_n1$XB#~uLkct?Kf1Fc2&!x>-!3{^;9fesJ$@@T#B^I>d{%O zeSr=ylxTD4G~{({_CuI-L)$oG8AOz7chKuqrtP7sh@0AbYXfrUj+^ROL20E*?Mr8X zb6b0zs$QzJet$v5YHf8sWZco(=satUc78sLx~u(SI>u_XGrKWXr!97Yiubhrt1)(8 z>p@x7dhMtGWhu2y5-@Ajp1%k1Kr2s%^-bD&i$L&D`w_j}&Dt2p7wB!#@@;6gYPIC- zwrN*hfTr!*l@fqQ+KNCheXJd#?Nx{N9SW6nYG15?7G2s9iZ6F-zn%i7Pqh2#3~HZt zEk)A$wPy13o@y6;1k0XjfBFUBx%RRLcn)am3(y+WX8lg7h9PahE~q%HT}KzmjA%c6 z56X;cpOG6hru~3?1ZQ0Y7hsRBfokse>fCjpchPmXK;S-I6oq76b)~V;$xS!mAzJRb zRnx)RL-%elczWtM0sQw6R0$eGr;o044lobv_V56Fb$OvM!cSL4#Zdmb%S=c=qT7%M z%%i%`+`%kJ_tzN22I~@D1?DkbSt~k2bi-6!bW-=;_rN@*(^f#2P+c>fEeO-S90IZ7 zIz5#b#p=Rnb&u1%=Ae&VyzT@gZ4z{=Q_xD(70^B>Nw;(ku|dwMFp zOp0y}UGJ5uyHk$NG+nw4nCEp50x*`Y^A7><3|%<+g_*kl-3R#v-J5R%<)W^K;t*N7 z!@EG2t@ArWanBsx+cP2llJ19>fRn3p(2XINb&KDJ6<2gqQ@|!q7d-})tGeZsnz*K0 zYJm8B-I?QP73iv|0$-l6zkrJ0eOjT-Zb#Mu4|=denXcp0P9kn{lCDj z?sYFJ!M~|{hXPdPy1)O0-nVqcv}jl8o-71vrEc0qfZMvFzrednSE_*AYF#}sy`!rf zf!rEh0QnSmb*U6AsMYyVbzPlKPdmqZx+S!|y00@PgP>m5TmaS$x||v4Y}8%AFU;Ze zK=(QQ(wcS2y^z$RYo#DmtFDiZKey{vw?d~!y2SS|_E?uk-$?|;1k`tZeaH4G9Lo;>b@SulkC&oS%p@=jw8ZUKGk(=(R!x)L<=sC=ej>% zM(=>`9eQ&Ib*JbA?~u+;KlEW8*B9bPbg#KW?@`?!KLT@1r}+sjXZ=103&DDp59aBZJ|zvzj_a4vuK$Gov_CpS^ju2qoz!n=2Ei%4F)AR=&Jg_;hFV6&hx_;`X=*`go zPRI5#^>3O%aY28RZjrdC&yNOXmj3QiSeUKi2vIE=BswGD@=+>!0eCO>D%-F3aRtg#{TBKc zq-Xjh`iu*Wg5{L_fm=nizkBnD*2Gh8a{y7HF7D=XZh(7D{j&H~78@ z)+Y@2r=k^N5M2ajsNn+TXu}L=PeNX}VXhN)vGInV=~9~n!x{=5CmMc7x*IFMq3|5& zlMQodCy-)z?>h{p8ov7)ooNPVx=-f3VaYBq%`^n};3d0YSVf!Kiv|b%vU3ck%@A?P zP#K6;u3;bnaxWXc(1F<%!-u|LmS=c-3&0J-Qi@-e8iMEvmKl;hr`+64gTx;emK(Me z!`@qlm#8eK!jL@zrj>@)4}o&qu#~>RRfcprlT>YxEC;w_=%sqj8pCfCWV~x|2}WnF z!7CiR?-|C(ExB*_cM#gw8^Vr&b%SBya8^~EQf*53?&FSIh>vwzCy6YX~6I$)h7=cw$Xh~ zLxzJZA$QpDJr&-K7+$Ay$D@XTNnko=I4FT!XX9;3&+IY&P9dVbMh$s!E=J>GsJ+ja zL#Oy$jZ8W$;AYg`2c5gI<_>sz7<*PqZ;_K2Tze%SymH)_5wQVG(i(4!YAS(fIosbS4=Gwt()evGp?Koio<> zK;2}cuL{$fVr=XINHto6(3xh8qN=C!#)75jOgGM=OVu)rJ#+vd(>Sde@-7;kmx5=G zv9%HNns1Dx1Wtj`^8_Rm8h5<}%pzm3!w-YS#v8QSlo(G{g7@sf5LbKZ_UI%5K81F1atH-#M@|nHHG+MFyj4c%7=r=y0 zPuf$XcooDyGcFDU@8`xe%2^H=i|M;DX#AD@wjtxcI*bh)f2XrDBgVCKaADN=-CVTB zj4^Z*m$Pa63i7S?nBJh%aC=R^7vc4AG0puHyxmNnJ_2wzy+!*|57T=;K?_gQ)(phc3YwGSGeHEAed zanAHp4aSm9k57Y3nrV3{xSThAO<$;V(=W7uXP8o6g`$}zWf{mXm`XA+hZjwg2f-!F zHj&GiM&C6gl>^tq-DbjU2v6xIj&tEMmeq0==Jm*QfDrVq)`B2$SU zz|8x>fUo75YCdCSCgoIta} zG=Z`Tl_ps@xZO7W5(-ddy8b)lR+~;m0QHV(4S9Gqrc^Tfu4!T>MAVvorZ8rmsggX} zd!~()Qn_!cpa59CX>>UV8cZYmplG9MS2eVMU>bi0iZ+=tO`v;dify6KSF=gB9wJ&y z{|X_u)l^0W0d1zaR2bQA@}|Ebd1T^Jwaa7Ek{^KCVOmc+rA|}iPH^iox%fjwx9M;4 zxu2L4X|LO3>ZNzR*R-29-hHMNDx&H)nW!lHsp z1HI4ul@GLVHD3ya_HO1sDZ}h;7E@J%r@4fVGw(Og?WdZK1Li$XL4U}cO0i9E^Tt)c z@iCVjMW>(ne^eOkZ~pWd=HiI?^6yYI&^({wLqXP2BFr3ULo3`I=?v8(%qOA%&X`+B`zZ6y*C4?WZT`6c@T@sO3O47=GpU3o+59(E z@1~fqQAJp)`P!f8Of!e}qm^!Ucf(kQxtWK~O!Gw2@PheE6?D329-&*qvdnWSa-VHJ z9}Sco^Nu(WQ3$IprDjy>5P`6`eQC6;m+5rRMDhjFp+6O@@Xy&5Ku|v)nv653FyQ zxl|lfVg7-l&6Q>mB`-adFujL*lf-efLV)KOt&kynypkW(q*V#TOQE|#n-ZZ9a{dD+2lqZu~arf@KMXR49Ezul+)rFX!)xKbU~IK^a=)B zT1mul%XC_yPFQBrsg)2*-ePo~w1m=e$5R#!714)U24kRFnB_xL4Y);G#@+!qV;Q0Z zQMBdMBv8ayURHu>tYxtjAkK1ZB@~UfEL4I`g2hamg>#mATF{d%rEg;_#j-1){&Q?~ zCeiL9(~>a>k}g=rQ%)n>a^V};l4IF_9;`1}meE0;T+54BF?QLqWe*;Do<%_?6t7we zH)8CXrH;NF`Idinf=iLba0!BnEsOpEd5PuQuR(X+QWJ^R4a*R2G;u1mG~Nf7GRtd@ zg@EN2*;~-?mZhA6C>0i`^I%$Oxk}06+m`3~n93@PTM-*0)&J z`eLxv^72H0N0w=~AnCECaV|iIg>8WrotDmpP`}G^jcQoBEk)U2+GB~M5K^z@{%L?d z%X|e?>$l|pmx{GKqT;auOU|$0IcWJr3%Vi8yW|25TljARbHq||gcjXV%Yi}Ak6EM} zAj#P}hn|*;_1Z~L?6Yp96tJuHHA-N+S-Vnz>27srpmV=<)eM+@z$!_Ch=bOKCNTA~ ze%1u?L)IN-An>-XZH5+ytwV9>^tBHD4Do)}rK9Ndx904l(EbtYVJ{FKweFyeOrUj? zHg!SP4a6yc>@z$vT0GHO^W0P{KahnoN%=#kz$&sZ{G9Ij}d)D*G8@=dFjxFG{!m zPzsP?&HWavGp+gGK&K11SswB(T3-}^JnL8MD=a9LZFP?WPLA~?g;XwCt$%=Nu60rq zz-6m~yqzo7(+AMXvxZP~?5Z_;I$GDPla_!@zV#6W>PGRx`_?rdf=j)19QjcV z*2^WB!ba<7jyIr8ll7|^(D0$Pjy`J5*0F35wpraNMb&QYCYSt?wL2IZKDH|8qt;=a zLZ5?9YupxC-DORB41wL&N%S#%Vs-isB6_U5wqvZ<8Way(`mB@X=FK3z#5be@q^YYatsbxkB7siVXJ8l1ddqG?gHVcb;;k*V$2$z3h~ai zpS4hQkL^+dMC`Q{Qw-n5mR${keYW~L0K9FZWQC7yj7lgD+dNY+3BI;VpFu-E+xMG6?{B;E1g)dC z51OE8fX$JI&On>yQ*;K|G6z8yY&%2+9LH?^y(F>0YmE4x5N_rTMlJ+8-3y zKBqKep>0X)0)j5vS}KU|wmm1W;)$)D{P7;!YuVu0 zYg^nJFtyAafG+nj{Xr?yu{q0%$k7wItQx$PUOLLIPm&^k6~`}sGthHN}#3pf2VdJQ6klvp$n}&k!&h|&%px9$yPCMYec0RpSF7~2b;Jwd2O4qcx+HKvy zbhEEN3f0{0AKw7*u&;d&^XX~-k`f5}?Hg(JKVVN<1p^P-wS}PbvQM`H9I~tGV4%0% z2bI705!sF3f$*?BJYcH;K8EXN&>ywOQ1xqoU3eX)1=X`fjH z%v1J;YM_MLf1x!e%--sR&T#wxi2)+)SDt|Gw7sbSQxa*PDuSRhb}QAgM%kVE0ix~h zRE-p4FQwmptbM)XL-fYkH+_QMc>8iH7)-D)9)yTQyL=W}N%psB&wAGWD<$sE*;mn) zEZJUL1JzRO^M8bhRJ-QCpNoCA7Gvk__xzzuy4|S&djMrUJMF#5 z%Q~F8>?SMdyZ@h~>yC@^Xu=vb(HM=1Ni>?oXo}IOF^MVGR87<5i`RSa{my7Knv*67 z2vYPwK%`g@5D=vcQtTj7L{y5PfC7qi6_M|m{58Mboq1+<-+TAnotfQR-*pyxyVne3w{C1!20n&!O+3=o$t^ufBhbs+aIq#`!}$ktS|ip z0z>QnrA6-3^>y?iA6_qh0P<{oCb_dl);}!(%63L{Ju01Uj6|Ao-5DP}K&=Pkm;uIk zGOnzJ3NOYL`dIH^Bv9A98BKIH+lOI%6D&I!t+b@`WxP;^k?~_ZE`}BUjAcVmv5OH& z-mn11&lHaiWbEUjw43qMc90;(X>!N}Grp>Vz7Ut^s?l#dACXf(j8RdA4uvz;(+v>& z81K`R9Km?B5`2-2FTaNFC`QNvaPDV(y8*z_jK89w?Epi(8FDcUH~K2ZGCB)^AIDhx zD+J;h>E&QK$XIn5x(_iD>d|(XF?TiEjxbc;040Gj(>VYYM;R~BHz$!XF%=R?j5mHn z_mUZf8}ZvX#%QNM-%DXEZH0=sC`QN`}6~XrW(kDdT4fKa??+Zi1%E zj4hNsUCtP$%U7>3meV9t!FawB_Es_$#6zx%vGP4sRx{owclcGtlcQ*>VJusYF}TJs z(|4$rvF$#@uQTS(hY>dzi-SOJGCJz$rC|gJ=vz?FSVB&n21cI~3L6k@nXQ-WgI>W@q3IC+IzG!vM3F+gAw7X{1zQd zr>$K#BYZ*PI$^lBX7nqBZTtBo-vYyXd7W@$U(cExr{E1aAW#Dgg$qs+3AZ~4`x9w zh$k~~9YDR9nUpEDgLzI0z23~h{{hs8`AruDcQQ}iN1HEGyAJYx%nv8SUVrA~|B~34 zqt8MhfH`Ud)CV$i=cBZnSw(kY1TohIq1PeImIn|BWiGG4Q0!qobf*#B%dAL)dKWWw zA=HO4=TgdH1an$6R75g`iRfVzGi?R*?q{+K@O+|~v+2mj0pGGCp>&A(Dt#pnGqWjOrt~;ElgWICVoX`gN0hvp%}k;* zuQ|-mpGPT|*-c)yJf@u1(x;dw*PxWo{B;??3Yh-S(LXtzX6BDYv5?s>gC~=FI1diDkyjFEc2ID;5^4Xya#CKnIBqEy1;ywyj>TW-_f%B67!9>U|K1& zR|!(aTu0l4%glV*c$G7oDO>ysGe!it3T7UKgPfI2<4mAcF^xZ>wwfv208Lk!Upg?r zHO$H6g1*K~It!a>nFlDb^*Xa=JxVv2&m{u;Ci5wMnCh5qVsO?oH&KwNff;`orAFpi zie=nly4VnCVmgN*-i#~tV9af12F(a}oXm0f7x-~4%yDbL+REfl#0a%9E1aR<`+)^*3C@*31B_U ziL{3AWp+JAsgF5T34Q&{ND0ITn9eEWsvKm#Mv2~!nB7Z&J;b~&0_#)ej?Y1cnGE_e zJY(kMf^&rFL2;3VPyb5@Wi97mm`}2fsbFXZYfCW<&16lwfl?OBMw!_;tncPiqIWLqK@J-8 zSdLmqoMJ6m4=eInKhs~+pJv4^ghV0hJ=dRWuo@r#6r5*R?&N$r&+0giwhJuT0_eTS z`X6O-USe&22Fy}c4n4v$Rt&wqms!5#{3&Nm8UwShup%hIqk^@#8{(C$Ryqby#ab5% zxoXy|0BE?%y3r2}HLOXK!Fi44ISQ4vtVm}Jlnm9#+DaMHw^->%f!4(O!3`a3Ws$ax2P<;{1Ugx+C+Ng|*4C-?gLuHI*a^Wd)>3j2K4djher7l8sugWLti_KZ z*von_3le=SDf!|0S(P%FJ-~YLF9_@36 z?PSZNV45#GF#<4t?C)Mhr9azEgt6Ggo-u-v31BCk2KH|DF-l7aVt3LCB$)jMZQw%K zX^X%T%C7VW${zL?1r!qB%ig;ewJx?d{Z_-+|IpRX;q0DpbZsA-PZ6XDcGP0PM6&ZK z@)X6kQ)bnE_G$|9MziN{1NH&7Js)Pruv1zg5YPUm1S|*H%mBz8Vjm>e?_qZ6Y?O|$ zf2Q{}fi1iZwPTL5H@a^BJbKRiFIE99mHkpINE$ok8caOS7BW#vXUl^DdV+o2HSZTJ z1^!3rExGJ%^#0_rgVq7&6npaT7?ON;KDqi%vrFjfUC5Sv2vWrEJAt-hcIt7IO4z&U zQ2rVAm@VkwS$6naXuHVvqc8I%_E0_AO4$LFB2mVEbrO1ZnO#oargF9q-3xMsJ;q77 zC>87|^1)WIYvjZS3Elq46%ely)um*w+G}shz!23BeBbH=ja9C!6;R1n#p}Q$(bT{fZS` zd&pip0W96@l<#0n4|@+e9(viW#wn)1U5a=j>)fy&GpY9lvzv{A>oA2WRnD(Cf+B zwi9h$oC><)Xa{G}Ea>&-1W|y%hjW>d>vnRMQdW;IXCA#GyEty!$Uzjqv8uom$mzZg zg}XUft6*sm$Jz>>V9x7HAQ8d|`5LB$a(ozo*~1AXH~L=AAM|`&oV$tmCE(x2R)8g( zlXV4c`#AgP5Of4*!7^A8$@zk!$x)ms@U4tH!pXV|mIMy#CA2vcIh!UxFp1;b3@eg3 z<)P@sG0v^oXiVW;IS1BMPB&#nrg7e)Q9sV<7z2groY%<(e1h}sr>H#1;e8Di8JwO? zC}na^kjpxYbC+D!*_^8sZph)}P)r;pL22r)E983wW3d_ zIVRFu$O)@PTM@^HG75@0FVZz)C7kCMqwNewaT)SwIldH%Jjc10i^}ty$2U=Vf%6?1 zdXcl9f;^WviL^W^I?n28cs})<^mXV<11Gfz zoQ<4Q^orf${7?#%CQdkISvPb3kb~Uj9CQAN#ygyRJFr_g0u~guazaJuOdH2K0mj_r z{J0aPdz_|JptW;$QgTNJr<#6`ot$6EV|1VMGo3Adz^S|jfiBLXIcR&xDQ^bp=3EQF zgX!UX^$zUq<;?#Zm3^G-bg1v=#Ced%Xn^zgLKr;A`LZ7-KH_Yq$^J2C-M3(U!U-*e zg+rXLgy4M2`Cu+8hdDcoQTdFsdnw2W=j-24>CTNj11mhZpH2j}CpW(d0$$vohoN@| zck3U};LZI)3Kk#kX1d8_CwEF4rGfZzFT9Jv_v7}{NfUqW&%Hp~#r31`K>)XZ2YMLD zZKG2IySasQk|Bs&M(KaS+)cF93*p}U2PBmHE=B$KaNnbtz+UbOx^mmaWl}bH826kz zpu@S_+%bmxxNXG{h~WCId;#xYB=_Y~NJMe@4DjsdN?t~vqPcYr48j5K-A}<9!+rfB zU}Cw!SJ4*7J(dE_ciA4j=O6cb3~ zj-?$$689RpbCS6}w*c)t#!c`9XbN|_4@fHaI8Cf++_x$Ib(|Y)!pNj^H7lU$1lKPg z*eAKNJP2lRtLToeOs+2_ux4>PD62J_yZJRJ%;6R;hx%M@EN%4ixI+{$JH=&CfIXjk zDg`J7+*CVCr=8p%6HqMVHYR|zh#MpTS~2&$0oWy6Azd(XhP#;djpw;Pl7IOUm;EbL zlyd7|1!x&}A$<)mbF~sEEa$Ed#yDN!eoFZt6N5LaGh(WL+~1Ru@Q~6+?gtL^g4Hv7Cbk&o0=ealglK>e;qem4J+!o(NXAV1NUbd z*+%aB@4<>&+<7jbG;wc`m%5qjB>(?yE-Me6xWm1k4GUYi_*Xu>TijlHDciVX>HWFO zZE?olfq8IY7J5ec>TW54d4;qPL6Nw+h$~xqJ$qbaS6A zLR$~_X#voBxi3tCKp(eZB2@Hqcad9jfb0D=1O~Y))qsA)^-2NfWA3ym5P!n;$akV~ znA`4$9zNp+(z0%ZJLx1~w)0NkN2MFjQw!qGTe};TUOdN62=3r57XZzhx5|h%UtXRX zW8uf^bpXttH;0Z@?&5t+*&G49hDNjn@|Mp7XE3k94AVk*$J|f~<#}1h;r-jgyGd^K zy*z#nh>Q0rrGuY)A>)IZ@dALE_XLPZMiWjTyVY^(H1Oo|@+f~d zkN2Gg!+nakcLGZJyf+8Y-vVCMAt*e}dxa*}Lf*T1z%Js+7l0J=YH02(;Y}@q`ZK&d znnKU=UZB_E9508w&*yo&$zywgcj#Lvy2yKOFWN3Sd50QMEalCnMSK}=B_$eP<~6(u zz2&^k^zRN=c-LvqU%~s!im|NZO{HI86|d0`R#fxy>AkW@%vc!-sO$gW1Q~sydFTVop)~oI6HX1Q;@2Y_ZH1_ z_jxZ}1j_^7C-l&|c$ba?^C2&nwwv9&xBt7etB1E-4u!qEQFI+aAMY6#D*AbosoMj* zi^*skBhoL=;|MzWFhV!rKK=$!dou8wJ5&YS-7~anp(&9gw{~4v} z9N=4N6C20>`%ARN^Otx5^dSE<&3Z@py@LM zv=K?=f8L4?rtyb3C>`ggtcKa?{K65)o!~ouaH8=ff5Hk#WbjQCvCia&)4`xD{!dJx zW%H+z!!n2eU)GMs^ZfTGqT3hv??yx7B46P$vf-78 zAWvmEpHDZfUE#k(4&e&^)GYMAlD~s?3swAPvZNO1D;LOa!5=bI1_`E)Ktr&g ze*pUS2$oW&?_Pn^NvRz!!4}%`gbC)p1JH1Rdm_j_!ON6F8X=f3ghZsE^j{bgB{)u* zO8W(`uf@Pb3+9{v%KP@cA$VG#ri{))LC7blEE1SpTY01B zIAgL=DizG`L|d7l(G3<}7CfT`MY&)Zr7vC)yhPuv3W0-xwrat9w7j?~SUVpqHG+RB zl7CH*X#+~Fpvwh;>w;%z!FfXr`gtR$ympm1IsSc8SP9bgR+*3zZ* zp~5E=FLepuKa0vR;VBQ0aA7@d8zY6?wCar#UcC)X`-OMt>{^WQ4{D1QIuoHOPB=*C zU=InUU!wPig|9siMMs1g85p)i;rDAOvn5G5iDubk;lj!E6B70;LSvdRm=AJXc=LO- zofNMAZ(}T6K+(iZ;oKvzB1c$JhElGOxr%-z!hdP~RUl+g1n0C+NlS=A;q|#-DG|<= zLw%{RmeOp>gf0UVT^4%Ipnn7|7aBf6@ruw!PVP$Kvq_Mz658plsuni<4Z*8II}fEA zA>SSLUKhSb`Jp$2E?Upr6e=E}R42SY1EqT5CYs3_h3`>L$SvUrZBUzpnpGgp!p`3@ z>bHgbW?0`M{IGEp7H+M=Pw6qY3BUgWdhZIwNwDIcF#BDQb|FIx!A{|@7-;u}7jB~T zK$ta%j&=#Ly1-9ID2#zzw{SFt=zE3pE}^nd_$__R`h{Chz@`DAn&yi^;oo#r@Uifh zR&?o!@EU!ooI}ECUqRDTVM7vZ8y0>?LE~q_j&`t)2;V-5(st1|6i{&!aVhZbF4{@K zbq~>~c*uK-0>*)OiFSMefgK|4DVXLh%K0C_c8c0*6X`2r|Az7P6LkbY++UR0jLKc2 zO^1OQ;1vBd0<=KUz7fa=i@fQaW{BuBJ$OPz*(A6}v`+>L_lm~74|$g;eKQ2YMc>oH ze4nU#dS~U9@N(V#}{m>R88l*j0tZ2+{kc$&J zkI|PoUUc9+upSbrj8K1AMu>M?1h-BMRSy9$piT!|?E0N9pzsxcK)2=liQ~wL>n~nPVUJznJ{w8_;^VWSDNsCNKUjjr&-DQ`L|m~4 znnJ~Ib^&ycxcqG>+$+97%TJehFKvLr#Jo3v5-$Fi>=)Z60WDg5X*19ch#O~sCq_Jq3B9r6ATH$N#Ick!5-Qkk=x?exfkLNg_|<{)xVT^|IGyR@ zLOMovLM*39!AbFaI`f(#K0?{;nc^8o(cdibiTPm77EdL|R*rbu8>q|`k6i`OJaME5 zrBmYJZ(&8gIQB763dCzEee$$e-w5bJv4rNLA~EN8a2AU{PJvvBxc)a(o^y&PJ;Z}O zFaC&5mR=Bx$%R%SPW}Z$QYk(_0o5w;B=U<@i~X{Jc2)ec6{JR7PU)A|#6?VyTJc6o zYrQUhZ5U?X5F_ydbG|t4HGtKLCzBh$UVM5JN)6%<_;^|C3DkYlZT}9G*~<(KT`n9OY$e}*>^~0_Bhe#Ey*>a=p(756QVmMpV1`f zE74LWgP-I=CKUQh!YG$>mqhdkPb5Gx^CyrX$@@RR`e4Zyl<5{C*;@h?p_0;d=*u2S zLJq|DN)rBt2A4$B2GhbMky4bxC86|f+$X6&PSpjN<|Voz0=NO$vri!DUo!mfObamV-a}HN-6}f>6~QCeN>*8 zG?7c`f@C>Or57b^^fNx92j(7d58a>0gml8+XC12&i zs18Z7A3EGAIT-?&F3G~LAox%c{t+H?w`AQ;sPBCe7?cE(=kAFl*9~MyGDvghQ_0V?O&*r~BgLpclWeR5=7_}I=?8fq>0ZiQ+bL~g zK;BpSza?PxlLq!e-e3CFZ72+sW^aZ0yQN#yU6hss`=vkJ22Zq< z>50+->1G<)SgGYB3`v~y3tI8UOTXO@6$ho;LO>2lUo1xDVX1!y(2h#qn*u8mrJt-u zWs-Cm#ZXeD8|bKVs&uLv_NGb4{ESYdOGlH_>x8t`{t|X)C#Ab7CoDtCru?={>3qta z%$BZU0VYTKHu-dNrJ?jv=SiOs+9~N4*KZo^tfx^_xk%bgrxuE(qM1-wBISP%>(5Eo zeg<-0sxzQV7o=P1bt;vX&>Eyns-#`_Whsl!rd3E=JfXc(`bi8dtdfok1XztUg}#Q@ zq}qRBM6HxZ)A~)R)(Qjbq~j=!s$M$RNqKy?r0J9%*Cd_l4wz=?OSGG8k$z4&1g%o} zWk|G1*WLt6yVUy;Z0e9&2O-}nEja`$x}-1C0q=*>N3_T5mOf8$*&b=>Gg#3pJwi_X zKIvxKxb;hG$g4ge^`^bup!B05$}e~%y-SHmkEL&Ff%Zh|422a>rLR+HVpw{M4$(c6 zPC5m&5$R`hK(@<9Z3U;BEOryH-DO$iDe;u8TL3G(WE<(vBX-E%rtBnd*^CX)>m&QJ z4{|$Y9{;6d%1V>bK|fiQ_Bqu0%OVe>qq}6QU0qr{k$-5394fmz1T>dy0y!+hWN(mb zCR}!sZgSoy`-9wa5wia&Kq6&6o#;%IY}P-J+b_Fb4~5Y(O&KZ=$jr2=i;)%Ag2c+c zrYLKiZ2Do8;$^>1N9mw!;3IVYknG`0kUK0Z|1aa?i0oW6OiPeC7NQqNWz8B$B+82T z08NtdlhBqdn>ZP5$7J_c!n72bhLY7&WwA6sX|nn+0D4@ujn;_ivQ^O-t`oAU8dRQ? z#ggkGL#7x9uuNH<7p%yVRnS%|TNeAx^I*-9nO&3h7>il+fL0)@`V(C{EqkdJtc5be zN$4$-ZKV04SeCsXpe3@M>MRRRLh=F zLf%!`s9Ipx$UZy?v}>|>+C$gM_S3=ko3dJR0o2J3hJ)10EN_9OK~{AZa*Z0^T;A8pn6wUJ`X(iWIz52 ziFVoISb%oO^52EtPT745qurNXq7;z_GVa^3zDxEp6JQTze<&c{E!#qijvm?Xqkz&Y zoBIOf`eZ^+l=@|SnokF0@BTrb?Lpb|l+E}^c3cD%k7e$(JbEHq7=hA|Z238;cqZ$5 z6Y?Xn8`n_UE^nhft($!EOjzMAuau$9L%xf0b3NrhQihh7e0K>rcgXE7X!4eOyb2Z{ zdGwzkJLQdwQ0XiGDUSYs!B3t;`7ZwQ-`X*VyW}e<$s<6%lKc^Y^6}(<*)9KT1uP7b zCm%y)uskXN9SxDsqQlXl@;~528@EUPssw|-SN_Q=fVt##v|JC9Z=uy$xIF${pzM>! zd;pdR`H%%Dk@EeW;B-dGC(u*dFMqHYFwt_}M3fH5^&3!%k!YD5LB7cyy+10S-~>vdyt*8QCdn7l_cmGn za0D#J_n zzol!KisdioQHE!UJf#+vo|A8JrJ3+j7EpAzT3)gMny$)Q>9Asryc~~f+%@^pc%aqF z*$<)qy8KBi$PIZc<%Hdo`}=~_%U>ync!NBG7PF1=;3}ZplK)bOwkG*374$aCH}+zH z?#N4MDr=EjDAl}G&Tauqn|!5nALw0q3$5Dk$>-B*qg|fr0BDEYJc71P`P{vzyf05O zL&XF6bc$Yd$$um7#6x-U&rsMc-#-;S>ya;|rF^eEvkunx$#;{Bv|m1+T*(9SSL`Sa z%3C~O%pzW`bQX--t&sIYFi2q@552*Pio;+HQM6Q`GE_144OH$? z4A6#Tufq2Vh)bb)7Yf4^hAtQrq41|QVx;0L`fNujiZmFK{fbSrCyZ9yM3U9G1B#RM zF^p0CC8U(JScOH3L5Ne#ON15iigT14a!?V-1NI>Wi@X|#6=9U(ctkOpvZoUiS~KL2 zDkjXu^G#H&h=)Lu;u0SUlNAHuP=8F3tb*PY#fooHN>!{N4?vp2MWK-63O#L;(-l+c zxjIiMu9Fw{q+$joA7m-UQOJJ4zJSr-J32qU%FwIE8}!Ks73D~hBpkP4?_ z{SDMsDtu`tU#0l)W2moIY>kF7HHwS^$X`<|=m$%!VjU&>-B6?yfZSAYKE{KoQ+!HJ zw|d1*3R5;HeCf+^OOZ+LswPD}IoX>PzOacLe5?NLlJ z;1TvK7IcDhKrx3d`5jc4N5iH^ijPuZ%wt9SG>AV@tl&ZYkmBBApgdJDoa7N3R&1nc z+Dmz!va)t4$FWiAtxTjW2_I!9rJw9nVy}W9vhrgMh@WzNFIfDQQz?CAmy%ECO#_sn zS0E6mZ1@4#yOq2)kRWAu8rnjXhfjg*Q9j-QvR7IB8hYkZ`V~_!Bux382!kK4oI=j> zeM%dprbQ?ZveBnV<&zj_ic+>`z{35?mdhZ~%7XV`#Q~-7W(-%Hays2c5U>1l5Myyr z*+N15L&^nbzS|yL>|FNx#{XN;eMVGn9Y$K|WKtC=b?WDQl}Bo~=A|5iB{%1B0+P zS9y_+a^)#M3`Aw2auvNzMasn|(feZMU2;B^C`)hvL^AG-a&0?QoK?O^JI!;--L#=N zudMkAbH3dtr99Qu`LjRpk zy?2%6^Z~i2?D!a@Q|Yq?ZTFS?N1^S3(m58TF69&Qem+!I{RjiQl_B)7dz6w!wDl@| zxq$9dJ|(wWzw#Rw>>N-o+kmz~W#tx>o+{m(KVm3{m9LQJ?wQh)7D*$@totC_RUf_# zy>6=aD)6w~RXP2@_E7Dmt7AP?)*sR4r7EDbpdG4~7>N6+lC}cdU-jq{DBPtAp=^u* z6_?(IK-H@=@HXsLebNPiAk{_61q)XF{H_ydA*$9i2!^UUe?n=GYU(ra>{F!`Lq&w@ z$rO-Cl_xFpqf}!)2HCIj^?*&$D#m=s9Z>yn04icsWwStHRd2iDDaENK(-DSv)pryC zOHifL7Wk-Y_o zRk90~o>t`?gi(d6ade2_tZD&ylFzA>YbIfA&Z}Obi-s|hj05pffAR{%cc_<; zo61`q^E{04QFplh+%)>N1+UD96}#2R6(B+CN3;+MR!32?U5L7HHH-*V_xuJ6_oxT- zuAoh$rz#s8As?mwAAJG#tJ~~gjaHY-QF%Ze{V`07QBNsFWvu!=%G!=o@A@yFPpzZR zeS&)9WY~06y^owJiRzgY-bqrwza1o5{VP5CW9r;ZuJM15p6%SU9*VQnm(RkCY<2uz zfaa)QrW}u4^@}u-=c%VB!HQFA8M#06)o;HIm;&`C@}-_uvuSBttR6>kzY_JrG>|ju zS>!T5tDb(1emZKOH5m2t>cA@yxTxl*!NN=GIwka#s-vCsktkDtJ_|gT)s8vnOu72| zFQKVctt9`{b+!6BU~Z^;TOe^$ohk#VQ?Ii@Z@v2V>tJb6KL~+9qq<@Wz;3A}4^Y{p zo_+(RX7zj%Y`U$UuE2x2qqfgQUs}}TC|9plT|bZB?YrvfJ^;O^zPb-E?dqK=;OS6@ zQAo2>{g_^d2Wkb);9crg1==2}|2Kpl_NbjUXzEpq9T=xRwUQjl{pzo1<29gu_yBT` z)elBcdZIq@I(|Vz>SkKrJXL#!f()y(V(5O>XX-mzSTUmhVn0B)YxXaLgq!Aj0nGQ% zETW~cr)JrQ(B!4b{T+fkG)pgocx%3hgoQquHgB-_YO*OR?x(r^6~z5DQp$hYrI``} zdjm9&hfxaDObCUB-I{cAMh4;R4<&C0YtGUlIz;oa8^$D5!(I>2J({@lkl3p^L%)2N z=GSEy#4t?&eSg9=v7~9ArtuoEBQ*Jxoe`?U0uL-4Re?jw9gSJx5$mftN(`-BdfyBT(3{X{*bG!lC z(K{dzsC_d4WVdz(O@Tq$B>LqBYeW0cvk+|pWz~ji-DwKkqwS!q&AnRxi8On-wEP^@ zhG{p@OdhV?_$eCqY1h))FhbiD1k)n5<6lH)qO`G7z_MTaMiJyLg?~_TUe#WpT!0$wFh#DeX*W}f z%XRG!15kfM`@cjOd{g_@w-|&v?IucEsMiX9L|cQl_A%sdX;;(P<|eK1J1A_{zW6gL zZ)=y+!r+d!CkL1x|3^w60EyH zJGBtql3$=ORQF{G#P{fyQ~se#cZA;5FkQ5hUgL1x5M}f4)2*c|9wT)3-T-K%?$1*w z?blg$04-X#DHo*!x&(57$Lf-4M-Zob=R1&i-EWytaZnd5hrNe%O_XAMME4=(W+mtr z_k-oAZX1zAUFkTWBH&xv^d&g#DY2E}taYNT(QKjRpfW6haoRb)*tGcbj;H=Sk(gyXq zE}0_aH*}v*g4|6VA3-hWxH{cLHYDnGOP|BAHRx7-0GLMI4?2L}(!Cl0i6-663ZOOX zj(5Pc+q!o@g1vWiW4UN+(M_NS)2gdu1GG&SMUI-gI-jHH=sjIH9X4#&F({bOp<8qd zqt>bOk%8sDuBHYh=L4OLk3Mzj_I!ZiL)~1u{i0j<-K$XFqm!u7)~ow#4l4U}?oUzK zuX~-&0uAVNw8$FNZK2KjBV8};86N98euBUgopccl9nv+^%KEA96m1BGb)Rw3vuCG+cBfuM56De_mNwSz`pa}5g@=9{MFu_fXGCE2(*Jz~Z9e+f$(6fPziA0n z`068aQMpTBNv}hIK7$@%pgx^~F2VYW72pifD<^=2>K876CYSzw`a*{3t+Wvd*Edo; zHd61rJsO&#^rz|15%%jR(egJ&Kc6xvV)dpfpvCE@-hfSq^fp=x9M<#c9-kw66J1h~ zsDF_H=1Ka^e}g3J#pL2h)&D{XHfj1U@)I4`Z|y1{r(-$kE{ zB7J@>)EDbHZD=deze2zKGx`%7A#hfIiEdLor?;;|@6YSI%qU&ZA7;YBi+aP4t6|0^ zy=F58p;T}50ce^24*k|I>w8`ROu0UbHs)9K)icmmp>O;aDk}9_1<YwVua5%h&?|xf_CU`eCuWyEjeb@S_0Kag+THr!ennf4zRgL$ zgg*Te>S4cr%>*)GhF}gq?qADIwZf#FfDW*8UqY& zZ$duM@FrbXv)j=69aIDvR-{2b*l?a!`ymF6>#^79nQv<^p%iA2KEa5F8{VaCs(pqZ z&!ZG!_{8<;j?u5Z%%yDnXu~)<0(ih+b}@I1p69$plSrb${3*nf3^8;oVX|Qj1?`U+ zd?+-RVmRD~%2dO5qal}W_@)^~oG^@{z3)lGQZI~shM_hcoSBA6h0u^?82khR*@mw# zKzokiw^)!|L)DMakY}i-U-~ISW)b?AZ}``_6u*@M!wbcbKW%6Y11U7rQ~0dNkVbx~ zV#96%Eiq)!4)Kh^cL}i18hY--m~)1IX;*XJkVg^43x$>19YX^hr)n`g zrL}jf;ZF)_w;B9i1Lj==kCF`T8E(;A-){J&8KlGT?mIA|)3E9;x^&+#I|FhL3>|NS zv&+D}f=)a%ETElew}IiL{O%q@;as5g8m44IQ=j3E0HfA#IR6M_z;J{<#g7bQIk4%m z;rsw#o)}t6V8xJOaUd*wYRLRA<<9UKg{?;nNfeLSZuF+@v4`<-K1!a(uW2UnGH#-W zw!=8B4eGs(?K{a6>tig<0nbjOBpFut8k08y)X%6Rf1|(A-~)+W#!o2+Ex;JcMk&x3 zkN}%@8;8tL7-SqTg+Q?JDg)vnM%x|e4K+SL3*vi>yXJy(uQ53Sl`doZpCDnzr`6yL zHy&2f=XRgb!+>IhQPT|*BaKHcz?dlG%ePRu-^id7`_aaK3!wLa@gI6oV~nZkV2L$; zzXjNF#yPY-jyDEV5a6KkMOx4wGG3y*(gY)01C*mi{W(A<8rkG^Niwcph~6g~|J05j zwP@Tiqmzzirx^eC07*4Y7!TGoi^@u)KkXx`jO)m|TW$2B3y7{6chQ;VTH_B>K&~6(s?m1CIL8Wd)A;n8V$eFH zrV9P7H=Zm8X)rF{3M(3o2Wby^%h;KV%4XxpMOc5^`1Bmc>5g$dxh7hSf4QDeC;F4X z*M18cM59zjDxo@zWv7WDu6vQ zu6z!akBtH3%XnhEMB8`|)52D$^)v-~pl4pDZRN0RhiTLh*UvO6 z0-F3y?~z|=m&yJy`Ws+c`Y%`mO?rwg?KUl`go+^3>*VVSHvLJtG9jk=1E>r&u{S_q zkEwVMRO~f%XF_k7sn3MAaMLGr41b>~^#{mBnC{XxJkqq41VA1=IN~NL)1iJr-TNWZFl|%~F#;9r`IVy-&Zj%clK*fwSDSlrmYa zm}bzgvchz7ImWrt^lAbGs!XQ}(6egO8j6b6nBw5G9p}7mQcXtV4O7i(z}z(Lp@l@9 zDTUTZ^`@~uVGtWkt(3psX!>p(O1Dfq$X(fF3VI&hZZ?@)q4&0Ft_>`AOm!JxX))=> zqq5c1u@F|YndXcFW|v7sfw_mK!+hA(ZMykAH1s%4zI42z*EDB6(E3apDWKnPD(OV! zfT<}Gr9qSQW3WClv1v{B*u(q7&7#>5a5Fdm0Zw=GpO?YnVeWksV4h~htg8_8GVAFm_zttzLJ)6rD@AU6%*ETl zy3@SD02W_!{p%?CnOirZqyFYTN_*O6zL5tKV9q-amO%3pT2k&d=hIp}$o%;%s0cQ{ z?dlFd#K&DpFNb*w{mYoke1+boF!Kwvc?&n^-$QrznU~S*9ATbCo8(Ay2)Pua%nN@2 z=6aOG@qumV3K+M44@^O*Dr*oW9G?IA(3M4dH|Ac?$3g0C(JV1ai27Q@GV#}%%7}) zT&DT>Oq8)?Cc^AIb8;F?J7sQ~0+MgONYA{$9C{omr_J}?r+sCi z`8M6}R%EUo04X+KA@5R&`Sk)|pD}l~f}AtQkiY%B+3g9Q#07J{H?S|7kC3D8lKFdb zh?bdGlP~bHx%0n;h?!3Z@hZ$m$rn*+4y12VmHD}H=)G#b*Z>P_%$;fE*STg6q3uAe z`Tl6YTsO~{4NY}s%SM=1Z;qG-i3W4|O(<+Mf3OLlx6I$|f1rMu>7w9LF`eyb7#)NbDPJWx8!_2g&oG$;T0B0`S$%{?<=_XBgy zGGKR^U+IJ3L-Tz)tq5;*(J{I}88Z!V+s^#OA`O}&HWGt`Mk z<`utSNFJMmyiobXEOAML@HO#Xj7m34>}iO*TY4!3?qLy8O0TD7&Kp4SvTUZ4X*(<> zDdGv{582((-mG#G@?B>BF(#Qur@yininhfW%sOWgu~uhydt~w^XeLIc!<80oEU} z3{$K(nnb}sg|pwz?x=xp2F(smKD`tIbn%8 zi=XpJOB)%JVOb-B`b^7udIVXPNg2S*wv^QaCC4%n1(aM%CPnV@EEf7qpR&Au9xSIV z(z#ntHQ4ahwUCUDXkleFOqzzuX zCDTcvfewquGK^-Yg_Dii`<6udqnHO434KVqEd5t7C=V@7jksH@8Q}D=rsYG0r?s2TEqht5>EPU9 z6<4Fu+d52lD*9M|Ag9kx>l5u$PjGuxBij_Lw8xP#DgWky679aJR#8f zFJ14l+nV=Z+}r9#*I5Kxom;>YVh!pA_FilDJ5cDd#?o#q%)0Y8l)|lI`Y!CV#;=Az zgmof4v`DM!6Ic;t{ffSg`>iM5hu&zb!Ub}`YF~ja#aK5|26e1;=3ctIB+fdUvc}@A znUuPE*!q(RtVgVI6H!XAc2QjNsC5c?91^WZiqMv1y-oQz$yRPBj5%h#cNB)ESf@{d zp{dqp74)WAJAX&Fk6TaRcQ!8F8czwVC#>_UAeU*qwicCHR@*{AJF~6FXcw7deVT_} z+~PdR%o5J7MhBzk0>x$Y@PWl+DfeF zC=7MRD*FR0XRUKK0PLKVk%Y?g)~O?~;)3=59aLVlGTR|{$!XpADvT<%hEWPlnYFY8 zJeRGD=zu_l^;$97Dy=m%dsbOr8jH$m>vB3FdewUFAYf{&d*8x1U9+}*2vTd^LGRpk z>k9f=-LP(>^H4Xf%h#Z?&N@gFN4@ncay&FxKO)D@E$iE6I)l(;m0UpYo2{>y0eaiI zj$XVw)@!bJT$rb)(N!DwtY6bJagtTk$vNf(m+YXy& zCeXZX3n=pHV=KRoww<<5>o88fwysG4^Rw+pMPK}FM<|@M%N9Kbr2tz_2Ur4a-p`S(OZjW*qJwiy?oA>Ou($U$5FKTvzf z)-oH44%;dwqVkB%s{y41TN@kC^{8zEZDkW}1(Z6SWGj9FYLjhWL}Or%*+i5RpJIFb zISfp-Z3{zXnyrU!PC9POpglvnP2tP{+6midl%#Od7Dy>68Ma=UZZd7t1Mw)bY||5< zDcj~~M=8g4_%op8+Q!quG0*k`Ek94$)^vd6+rFU0*88Mn(Eg>0lCAJ6Qz&vA{HikkrXKf$362eE%ahl$P!KF4Y`hu0&6nZ?g%eK{SKr6RB z3d2}jvB{ZWsjyw7oSjPBT3W+Y*>2MuRBdaaS>vkh1zKv>*lz9x%QagHWhU0zKB3Um zb=%i7QMzHPqY3e*t>#-`*4fTb(68PW<{W^D4Ys!^FxY6D?vC19worP6O}5%n*wk!` zVgUQLZCN-t@7U5PAktzhqPS$Mt&A=cZ?k2XF`{>E3#-s}&-UhLP}pwUMk}cMwl9KE zdSDxx2F@;9{F`8TXw$!fE_K`fcB4R9kFEA3NUv=XJ&HctWb(B4+aCXkjt($vIoD6UhJ^HL1^CgaWgR%KK7J;DBNlPClQst z_7fC-^0TYyIEBCcL)zZ&vd=vXxd3}g20#PtNllR3ZSSTW)gXKDOOOk;zd^3`5PR$o zup-p{;c}2Y_B@~eu0OOtSdB)PJ&}^U!|W%1K)1u~jF|x4XFu@~N)h(D2LO$6B1eDl@|FZZ9JAl~1wtwI1FkKRm<5C9L-vF{Z3fs*+Fu?6mJEAL4YXw1 zuTT&(%O29&2Y5j?H-UuY}TX1__t`|sKZ zD6ZOJ|0y1Vop8#agZJ(Ik0AKaKA;8Zwtw4!wjTQwDM+vVJ6baL**C{QMZZ1V29^PP zz7v&$_AL|ueq_H?0P@&w{s4-e*uV974WL8zPo6;jnf)4hbw=z_u4Vi2cvy7Hr?+E} zHt0T%dtZWOr(;0JqTR5%ZSb)RGQI*!9YYl6cL!91ux z;)tVLHWM7~W$feMDqT|X;U?w@{R6}pFZ)TieU@q*&$XlNnq&HN zz^rvlandL6y5rJj)YdtUE`-8*$Eua+M1$i8+I=@V&c6cdZ#i1&?{S(OGY+G4$FYbe z_7(@L6xO#orcDOtJ;%*FptL(qk>jPq5%UlNosQq=%YNU%{|zh;90QbI+U2OFP~JmF zjoT{lbUP-Hv#`feFdenMj<T?W!4#9p$8{Gjh;E1{b>_NwzRVY1j^e;o79y@|v zV`E0oF<8@K#fW1ZP1D;qy#6MvciV7yKdf-y@KqbYJT`1G1KM-LFBC`h+TdFbvSY(n z4Y0|3Lo6-KeKs)VDDB*Er4SbSZa5CV^f37 z!@`5GFnELE|14bxR8-f~cN=9FkQKJGS(aTju|{KwCD9l)YK+FNvBt!xi6t@HRLs(g zbVO-VEP$dYVnaj(r6^Jrq&KBlC;}Ex!S6T!^PS`2I&)`!GxzS>_wJpU`I-W z%7Q9A8Fd5HDb1;AaP+jM*mwqtaT*pqY~nSuXgijm@qGlvGn%_U zp*gFGiG;(6nu%0!e@>&^4D9oo|2knQNt68>&@N~yC{BD)GxZ(DlB}6b$AK?t)Payp z(Zp^9^Qz_)t@f{J#_d7hb^)q&c&8$ zTxk>!H52+E`AEa#qpwUeGYCz&M!Xg?`&g4rX}b!|bE*=k)JR;QP_3EN41a4h@xkz- zR`V_wO`T@r0!(_nhBcPrwGEm}EWk8szTODMCz@q+eC4U;Y&#ro)@;#YN?J4p7opgy z`OFh&&oxqaFkfgEe+$W%8jb_h+ckf6z>5wIi)OS_GkP5)yEL1=gukyeiIg(!))Z`o zLXW2LM=11ad@0#!e69In1pI!ZxibQyZ#8k0-+8C`cor~ynln`E(60%n+|7Fpiy}oI zG=(z2eAEm^KyN^^IvXF%pr*nDK7G<0q9BQr_C^WJJ8OkMK;1=KG!#r%?dKG0bknZ< z2xxchURq~+7_~o81-hs9QYd7+wAPf5^47jS1{Zy`zvhAIr>)ovY=5mh7F2+?&kt0f zmPxyXAnnce80w+gsj)C0rnRK^283&k(J&vO{hd~fk=hUE zAbDJC{HYjdQQF01B3f%jDVZ2;E|qVc&w)`PmD<^KfHtJ+y~ishPiXA_$1+5s(?soJ=`K)a!Bn~5e( zYk3m0c2m18^m!b9d+0E{xT9_U2+17nWqP*cYEx+^k*EEODjV-> z{~#(~8_z`F1MMPu$9sYH1MQ>>wQcnA6lq_)1!l2UM7gFCtqV;|sa74jCmzq8?0i61 zXj1~vSE)TT0$^3z%k*B#YVBQGH`QqU)tKHoZ2$}7tJhAUxo^2 z2g#?}-0#rWtX=jJeJ$Ff^t5f&R(}T1+O!KIAo5JR_ZXVzTF(}E_Co7wT#C+@+C6ju zwrfw@!kG^3cDm1WYJKU6(WTu(XPjPXBg>)Dt@V+E*`qyH1(;r~h>dxDt=&iwz&G0W zCt{1TG#|7%sTj*g?XQ&l7|^cJVVr|n#sjE-(v}^gz`c`>M>k7nT@Agv z)kXIgy_nTa7e%MP+;vA>AnKtjz5y>hbq!Q3&17P~< zQb$40PghN~Y5}^=pP(10^9n)}qzfK{i#k}h)C-bFbe;9|I};%~8>$*Psxwl`^_Z^Q z0R2$ib$XPC>Asu{>~P(<=Wy+~j!6d(qjZ_Sz;3io@(`}Y=$I0K#_9qR0D3}qfNC;M z>Qd>6aY}cG>J3lpHq#0%PWL073y9a9B#{K26G||RoHIH(<>$}pd?>}7s1tvL;yE3U z)@|o?%R@0UNjmWaICDW~^aJyvu7JYo$+{&^fqhALaUpz4(K&1eby?^553sN3_MJs@ zRToKnt82PlR5x^8mq;OsR9z}nU)<2?#)C4Z=^7}kc2g(c2QSifUbN-8t()(L&P?6( z1i)nJu29hFj&9QwxPMpYVg|Hq-RW;3nWL-u36qzr+eK$2@^mIi0K2D)nt<`%*TvA{ zK3`Wx>#hg719fn_Kxan*p+cR;1DHkAbuXI$Q>=6915Al-{S!2$x(Rfk^`VX{g2p4A z8AZ;@blUMSU#@E|0NP{Sl+ase@%^!-El-W^oD-O}x-C=(UZ-OXf?2N{N3Z5>&)k&Y|N|8oq{lDQ*bkXligI!mB!Xb3J>EEq`qPu=OdEucSHwx42ssDj) zxnBBxREg=U_pgIpKmFVwp!n+(XrmLLzx5w11?mf%Fwh`2*1OZP1Cc1l0}e+9yNU;023^j$hQb4EYR1I;kh!X_q-Du9{l%X^UDt1Y1J_dZV`xQt zLqE$CXleS63@|hF_5wI_Tfdx=D4F`mEHqjAwG?~3qhAs_{XE0LeDygD`<}kRDspGMTdS4?HoGwg3v8V*o`xU@To_CdLvMJ^^Y20{+aL8$LeMv$PvW8()CY3m(kFceJ!zZ_ z=@i6wHjJh;u#169N3UHC@y0e-ax=8j7RTM-^BK4vhT-(4TW>=%)vz2kEIWe6$8dpG z#J+|lv!L&1_?*^z{)XQu#TIB-)qp0*aGa{Af(`v|FqR_*b2^q6VyLF?O{f8HCdTz^ zn6wA}h8ynh!2CoQN+(hAexzY>9k7oZ0+yhOGFVfYV zG6pgEX@*zBfSqoL`yJ}H45O$xG{fLO4%BVK+GsW1 z3`%;vWwW7&3xzg=&v4Al3qzV5O^2b4%zrWjcA(FDztugM_urpw0V-(!7J7SH$bQEa zP&Y>I|AjVF(fc=3RQvS)n%STd_J6B~ix>9$(UFpj{rk3JyaoGbd;`$O`)$(5i~Uol zqG{c~s|J!U_AgeUuV?>udb`la{UsFQb33ra4NTtyzZ8QCInbzr-RJ{5KERoT17RQF z=sDwoRXfpMKCqS2=cxzo9)V2Hf%(b69y~Co3D_P7A0%MbLk`L|KqUO&+(e+AI2g1A zKAk(L_z^R6`QX2_kiT{C>?nAjcd()rk`E3x)6=NzV95{+wB}$JEl3&;Ufh7D&T#`R;}RTK&^_pkH)U2*JV!_rm9ge*97-Elh=8m2nV zT7~9@qa+^+X^t7IAbHbqPiW>P+*vAXFbSECCVQcf<#?7}271@gj#d)cj@>)K%yAq- zhH@P@(6%ej@d@28?mMoguyVd*=wb9da15l-V}av5T8I}q%G$v!cI>2RYl-7?x~fYZ z2MicXjpH234AeXRJsebnqiB(}IVJ=D?lQ0|!yTHj^d&yca>f%{CRQ+((E6^5v4-Br zQp4!~5k~761U)I-0Q&TML0a(t-+PCSRgG)s!e9dZ(`02k@_VCE@S1_um0}`ZsijXU2~0nAw?^ z=xozBaqIE-+iP@)ch*?CZO?xAFC6^N@e-|~=XB9|-0wRZ&@p#C9dw!(OBJs3S5YDS z57)Qg{|gc*cD>N$0{*|qwG>YLnA!j{i%%a0#9a6?2146{ z#x&Xk`X*CNJNR_w9|APDm>Z0AoKEc ztko+ZQqGEEL*X%t8v&|SvC7H z2~Di%K3I6davnu50eQ;WFbAT|ti_aGYGIAK3xln!&;!73W3|xI?-|RK>hhkmEdQ6Q zWfcYi?Ip|hUr4sI>ffU2U{!cw5;|G!kucH4lFBg9SFA1c=;&sxpv$d?b&XCj_p*BL zgZY}(g7n=toHwkSBA9r~+VK>f?^v;4g6d<_pIl~q49zBs1YVUvfPJ) z8em<$6q<1juZ^25g`x}l52{^qWy_bM(~W)M0Gx7Xdr`fp2m2F+Gd$T=OrUwOr_gB! zZ?-?ZWa2P;f*qJX?CZaw31t6F>-8XZ^E*siDO*T+rHAaP9&rB=JL()z%Gk>fL$93O z>Ijs_?48ChKvu9#mqEXhy(AX;RqT&L9boy<2)V#y<;YB^8g)cGKq3kVJ5?9Lv!3DgP!eC zCjVTeODNjJ^8=>xQK+ zlY<*z;+4trx9ICODWD>_9+T{+V7@j{=flG{CKmVM%v+NwB{1~PDa z((OfC`S&JSbcEuA$y9TU{)n0V9bku;X>I`Ks96h9$IM>;1pQF6r}PX7Gu!k#u*1#1 zaDm+jvy*h_;hfp%8c^rW)@_5xRkIrui@jzR-3;~XX1Wt_E!C{x59no?NpC^&j+tW> zYY3Zj*KB%dWh%qrcN=TmwjP-AX}?flc83Btg=Sl+)Uwp<4|=`PL$fnhU_LVIqC8ZU z*Co>b;xxF;&mZNDmn@07B9cJSM@S@A?^&b%FHq%nbqsOf5kI+pwum>rjOZb!7 zE(#esnYS!}r_SbEXF$}|{Es{g#?8FzD*F7)mrug5{mpA;W7Y%A!~O<#p!o@kKL(rM zrh2y{=JP219%5d!3n)j;4O=m^Q1ekszzj2Ap95xu`Nv;zc|@A~(#;^s+;@T+Xwl|l zzJN@ud9E1EN%Pa|AbQHYVE-!Aj3Rls~@zEUNCMz{GPipBPtC(?uP zwfSe6=zL>7m3G)~&4r=u1^MB}O^2ywVUK#Jim8Qa=3wQD>h`4gK z=i!qZ*Yp6)U*_Ju1@l+9zH4CU8n=LA``5YVblfzRYorXr4enlg)ZFBD(AOZHTe=C7 z8Qh=F0rNKZB7I-)aYKz9DBkC`js$i-H-{3a54b)Gm@nX_xB;z@J4oM{B5vJrFpIgd zbn`3Wu84wODYue#?GL$iw}4j76}myBhWoP@s5dy_OBhM(&Iv_|(Kz{R<2I z++S!Z^`7f-+77e+k^7EPYXe-y1&9uExdos;anr|!D$|jJx%C{g=gRxR9x86U@f2Hf z=gpu;tOsxMOEjLmb>Be5i)TrpRd1d+0#kFC*S7@1E-% z0s{`T_|^=}aEm7gK}A?F{7*mvm${r%o79YM1U6#R+E|EsT@Og`s zH_;?n45#J%1&bEi{$I4%A)#5YaH2KiB@1phyhyQ_G#t%ki=hF4xoUBhmL1nD#!4Y_ z-C|+rjSRfSC-W&hOt&~{3Y1$G4LgC7VR0<y%Ba6@JYf)w~Jp@g;g$o^DsIXWm232K| z9SmP;E#{AhLY+kky<4E(;u6)VHCY740`sXwjFAqBHCwFz89udGETP?StHpXNFxxEV zl|ts3Mcx^F=r1hByF;_*}?TTe_ve;Tp?dx}n%$xpN*I zZnXUKDw-zCnbENO#4=|EB%3Xldm%R`i5Y_ptijk$Pc+0YD;cFVsgd)Q&wupE7z zmWo#xM3-gdAyD0xZcKR5V`=|24E0({uF;!5UR#Q%LF27uO)r{vmKk)T>a#qy7@+-@ zbAQ2LK3KLkLh++z5Cu{OEQhk;#h~S*H(+{Mt&D|&w^cYTiVs`G3otYvtBgp1`C5Jb z75ea*kU0(;=Bqt35lx4YSf7fZar^ehEf+&T1DQ zFz2n(ccU-K>O1;!T(DBi1I$IMIx4wJw(_Oz^9`#dR2`LOWm$y2n^q;xkW9C_w+r59 zShf0rnPb&U0nl8l+4Kt;c~;54!>2X(tTxeUsY0t@dSDk>?O6!WVyoX4!hDI9<9rOJ z%xX~(nsTcj|Afe6tBGfzP+_(IDIBe|a!-S$Dyu&hU=Y<-`yatljn%Hu`YeWQ_1w=f z&s|o3Rib%iCAY!^bz5y450oCO`fOO}wQ8iS{cEd(U2x`&)sQwAdTTY4u7`J4`Lv?% zvvQ)CZok!!8zA}K>fDRarFR&g8yW3z)Mco_6oYXaI^PHS?n7PalJ^*z`#F5_9J=B< z#_K(FJe30-9_mFa3ZJ33DHZBFG}a7_-_UO&0O~(9qXp^#Ll6FeK?Dw+T@AgUp@BGD z!wDWbnaaOHhWboK<6?beB^p=j;{Uy#*3G*04zPW#-(3TCh_%TkXdJbkuny*rSu5Rv z9ctZ6yRr!D-NV3)wBAW+m*dv#!!Q_St@#F15^X&|@zWUV%3?6jSihnTMY8q9HZ+&4 zU(&`c#X5RET)S+&dj>|GYi+uR!hCtw)pVBWo^=`>87r|~Mo*mT|tpm(u#{T);fBw#kI~r`9cA!0xb~ZUvZ5>(=pLc3JA5QAOD7h z0qYjZgbrGN+Y9C=>oR&KI`JFmXoE9dY(U?%Ab<>A%`Gxfxnw}5EuD# zOE68?iA%uFeNe=3@X{H*<8KH}Gw z)6X%K@pV+qSI(cyhr!4EPMU-Y{zBSSRr25V1GI`ijUp!1{5iS!C~Ekp)KIA9@1WX{ zdcI`}m<{|_r{Gf~-+BqKoA_!C6rS*XhC<{izw{QGX8yrmOhOBPCIwSk`L@%bU~J<* zyNh{##(y^n+~@q0bHIJUAMXc^m;7`qV0ZGrqDWU4zoiF#ulUe>?3Z-|!C|gThBXD-+BCem$L>8RYMzc)}; z9mc1ni`%f#^tg8)7C=c*k6{9OBzq29^a737Fk33@@g7z_7v>KSyYj!N(XcHtc<(!G zmJdKr+l(2GLB!iki^4$9*i=tOU!skQ1!vCNG*CMFf{o)uFq3V1X>*ifW7MvKrE4~4 zDAQPGqomq}Mw=`2HmW9@pb}6|Z2r9l>ZuKvK9OddmA+7Hv5BLjgk3fhX+QGHX2t?Y zzP4$5f+=}xvyQ?E?`#$ig%^D`yy;-}+c2q^>%C3&7&!C6=9>zDeYA-+Qc2B#%@umz z+@Q@m${&8R`JEO*PPVfY(08`&st0x0R^0=GKDIUv&=0qb{0E>Bwx$%$IBq+MLRnF^ zO;k`GZ7V$sg&11~9mPFi`{h|+p0^!F?_Nl$an4zn5ye{RtA~EBZEX{ndA6nwe6xKGHteLO1SpS z_S+j!e{LHa359lBlb;~cVf%s-*qyfW0=U*?t5Ada$`(N_eE+&_)`Nv+ks5j{a|ZJcZiR+`g1TbU^|ru$wAxI>p^|8{ayouPJ&gF z0Ol+hHv^X31OtT_y}Mw;K~Nro14m%NQ}7LCguDcybjIHpF8FE;EJX-r(+>5x!0iM& zqXa&5CBzD*(9wbu0#P9JPYQlI0)wXnCups8TJW_!e2NpCqwq4R=L6WC1>7$~-V!6>-d51EUCxwJn|7WDoN&`W}} zc$i2LL_UJS%L3PP5WOP!>ltML+}$-z~2^#W`fET{C17j(piGz!=Zmikg^RX?h3{qgGRRC zXaxFl1kWiNnk#77g?Y{sOlyVyJwZKfeC`X5eT2b$K@>&19tg7O7cL3}x*<>~6ogR% zuShT~^uz;%i3>+#WR(ItN=sJ>##2hPT2Mq!vl_wY0YIr09H2Lg;C$*{OhvuGHv{$> z1Qzt9Y!qz&2h1kHAA#`fiJQFv8Jyf(0KjmOg=L4w`;JG@UeiFA!6x;e+5{ zMd;-M1Ulc+8rn&?XCoAyg{523xCp-(iN;kpwHae_6KVGYj5(3u{+mEQf`jkHPd2{=&g*`wA1NJjqXJ`XxN{7amvxDnQs35A%V-f4o5j z3H3%QaSRqt8U*MOVG(6ZLWFZ@nSN9#Er;D>!ghLTP^d7i5{h9$5oJchh4DTRi4e-W zU_Mg#$28bIE=)ZF52J+l=3s)Ng^M==EJip$=iOq3x71KLA-qRXxs$@x-=R4r%r;O7 z_i3S+p3rf^VK&f@7apT>k_6$gdMKU|9;X_^v%0T6GxCE4BVb?d%yChshhaXaef(HP*EWCUfUR)8rT>+7+!amiI&_zWI zp7DGS;8KMXj{y9J@CQ1Hk|x~!4F2B~E^Gxrx-f+9*0+S)4q$8cu!G5N& zd<@{SgzM;2yCaOFAl+Tz0Sc>U3t!RH6{Ie7?EyCwtL$OtObSO-;2`5*>;4|TPI^O(T z=<*#zUI_DOZTeC;hYFM0g(f?I(jinV0(7Tv2*ujFgiDg)(<@=hTJ&`bJy?+J5q>T+ zg4-*+^C!sH!qJp8dL!IX2J>%)NA7}pCv2l57k$E;=`hhRRP)gHUU-b2n;(P$RAKN@ zILianfY4BmzCq!L8Z@7TwN#PkBvR5*Z)edeTZp)brqa&GRaBo0FWf{v7b*YdE;9XJ zfrM!7ZJ6*BW!%J=yhI~uc!p%5Ud zqr%oe(LeF%3le3}DmYm5`)Bath-ebMT_8lX&jad5MKY={Iwm@oZGz`tsA!ENWWq#? zXcrnTnn+8&2+`#{G?Ai`v2ggfNb(;vqC_jHj51o}Sq(>HMB^z48!IX-0q6a(=^eg zOi(vPH55ik7yU+O`EH4>(Y7~3WJ8O*+af!9>}QIiV_+gn^!*8d-Vs>_L*%Y#9=!!P zTg2D~ksQ(F4D{uS9#e)ePgFY!>i0xe6oI=hI>&%WzEPBZ4jKZccdSBp0PiKa&M^CGxbD>9ya53)|wP6c4~qOAdNszKyUZ%k+u zeK7{iCQ%S=1D}Z29Ru}LIl_6M|2BP}K7an4d)7WrA`N*Y2@}`_AG#syK5I2hhFWRcs#W{0I;1GEXRaiWk#* z-AlZ%8j9ZHIt83LEVlB(V0^@HkHQOIaX4KNe&UK!*!34j& zS&!kyiE9SIj2ADbTS|gBlL>`0;t{nFIV*nj8$=St`U=_^pA%Om0sFl8_p5L?N&Kk> zq8G$FZ@{&S;=eP{B#VQy(OeSWFGOF8n3IC>UKZEUp67}>RP{B`|Zv3+P6kCw?&%*!RQ-s-bXS+z|$Y z`Qj)ljC~-sp}S6j`0*pST_{%3DS#qz$119?Ef%|agIgjF7y{5zaquaKJ`@)d_9OAQ zbud^a_Wlbn<>Gug)%92$Kug66ap3~MREnb(gIOgm^@L=#cp)8#su9=GM_4NkGvF$z z6MIgEhxOv&U%*0x_!~M((I_7M36!x(Jh&b(PsD9>qVB2Kjus)!;=rHaev5eM9-y^~ zqqai7O{}AteI|an39daCcdmin3vv7e`1?|P;}8_u#S8w%SUSWTsUE9Sd@T%^UE-N_ z=zAsZw?oq{t{Mlu9bVL0peiICs0r3ag>DGY;-X~s8(=3(oF_ozk|c_XOHw4;PT@npEO8^y zE0W6;vAilNd<74$NkWdHxh{z@gI=m+2~{23khsi&WSZpc4p28GCiYNBmpr2j>6Rq0 z7|h#}lMiTRkSP&Rd@M_{rw7j5k(AGd=v~PDoFj_A8a~`~SED0Hbz6!}GIxAW!d9)m8RT4j{gs7HW zpm=SKq)!inwUVD)AyOx)o(`&BGMnDK(;%5cwP}r#{#-DdB=QD~<%z_cu9BycqITLD zH%mTj0ofw4IfYNHRl=e&$2N%tMMa)TnjXNX=aK{({R_!8N|n8oT$qhvw@dC;K(9mc z3zgY+O3qVtf0sn@0bab4uw-C%OQNYtqDQiY_UFBl%%yPVwPe{n4C##|ib@}hZzZYW zXx~XR6tC)&jG=S0{gM~-^IY#GGTO;}kc6#A^HI`K0<-~17~PNuC2P0A;3vs;$`Cq9 z|Mi4|vve>DuDM7z><6Z+bjU?qY;MwLl-YNex*Uh3hqP%mJoJ?QT?nR^QCgn^QE%yG z3xFP$&f5nWAL+aVc;PFJqztm3G>dA={iSQ^>I{%71n3KtM%+XbB>i(c1`{k*_F-s8 zq-J#fJ4EVFF@vL0&X;iJm~=hm1Vg2#RX_=oHc>@xxODLqn2(Se8z}=7DYfhc+HtAJ zBEUpRi_`HrMN1#j%`Zm!XB$k!N>i-CJRudd0{f)&FK_gnk}jJJ?9*xgwpcf!(XpNzI_HNdvz^-*su}Z7@@%o4*3{ zhV%{-j;2XBQn=}+w1d9)>C#ME72cBC(M6ge4f~q1Vz;F~romvQ)IdiZvZU6Oskfo^a#nSWcz$}rP`*9&!D&5%$v@$6-)VdZc62FV+tdic=LbO`? zBSk)Hq;G$QPqosoH$b6I+Oie~>!oX@FxVh>n_@rC~{Mrbk*t1qQv+)_>8wmZnko=Z!S(7f^4d84&<|C(Sa! zN7yHQXbNV(lvfP%@1@C+aP5QiM~X6hl)fp1-hk9EnC>Zq(u0&d{UrU4UKHUh8y^IN zF0w9K zf*B(lDTP9;tm+wd?m86+o4b@3(Lkw_fTd+?+$z<^Y%hhCfhNe zs!_^i4c$`@uUStToxz>8|xS65)ZM&?E#{#qHk3?g;1kJ~}j z%aTH~8Zed=x}QFkeNM*sc7gPqEwsD6 z7tA8NT?x=DwmWN2pPijK9n~+j6FdR+&~D5gC_J(YqDWSm-Ktvvdu;b_9(`tZc9s;I zsI;3yKWkiVH=Pda*4WLX7j@U#rI=z&b#_@46Ro$KKL?f??51qPBsAKsQe$XMc7N@M z$P>G+E|`C6H{%5Qn(b1I=xebX;S9Z2yS@f6+w4?w`1{Q6-7F|Pw^KL5!V9}~m{=p{ zrQKdyrnlRTrjwaaLN7!< zZ9627%6mq@wPSLBSM-I-yQafnm^^I@)WhY?^qh;3yMFgMDf3?^56ZTaZP@e4v$}#kDYrTfGkc?DIpWXqclqsftvGTuXHu6*7e*v*qqNP=(o z|CxqQwy7{p`wo`-<0kk6%Cb)|f?1Kk^{u$yD= zQw@<^`yJcR%@%-%iwi7EwP^6gI#fkuJ-%3+`i?Tct*T4|rK0E$)iDS}qQr;FKcu|z zxSW*=8_3iuM-PBor!=9G^Lpi-wHQo;^7l!g8kN%ZXquFLp_$L{p_PsS)v8R6hC-(@ zy9$nWDLWH^{Z6@pY9soT7j8kMU-<)VdEYCKY=AQ#l#4&dlzdcPDh2d_GVlVZL8ZgD zK>4Jc_7+Sh2e|<1&JOSBOX%X@&p_kq@I5_6+#JTA!~oAY$VY$9f+_qPDH?&v{d}zz z{*Kyy2SapY)KOH;osmmb1|Ez>q5nN+I2cdP297V|0#(}kF{0P9hnPe&A{{aLHyDSH zV)SW@iL?*D$*6aS8|e)B8^GUU#I=CRV0=c0g>Ex8TEdM?#u*w#7Gn*S-`-(-lMm`H zBgq{D&1Nw8K*?c5xuD5q%&~;oJjPZd?dtC_zAJ~!ea20C&X+L80Kp$gr0wEd7tfKsS7&EPpuCj3EWQz7gFq!MjhnOTV56L-0OzM~g*bkcouyW`r z7{YQz?8hX6m4^3xnZ&SCN5WDpD~W?pMLm3ilN81A?mK{##`p&T#rVu&LK7?Oi z(#6x9<`ziCaqMWD6wj&r76vbH_Fo6sMb1xDB6^*3a~331 zIZGx&B$JbU+X($EPJcTFbDy(g0Pg2=MhG!pXVYgoG%luVKgY}jnLa6mVz4R46lf<* zZRrTiNz+|FL*$g{7gQL3+B7yE%>K{3b^_Z;v6KhOQ{n#|`ur6i?qXy|6(O{-Kdv}U zNAgZ7dgf5!OrpZW3*;q*{%6RfD*mIIlN*X@Z4gaUT%ip7O$E<@zH~*0Kj!I{Vh)A( zGZa@Npm$r5L!VEkLNXr;1&SRam@ibU%SK<3LPE*?Vujlx=#?n89)V=3;+ZG<9x6W9 z&>MUnDJSc<16f%9Ri1{0{UZJp*0J+wjfQCo5EiAoI?6?b*ZiUJWqwi6?rc*s{6+J2_^eIwVaQliWpcs0ZeQZCdoAxs(o^s3n6x9r8*jvAWrF{Dz z*}yKfmt~=^(tgz`NH*A;(Xqu=`$QvL>#$!v2+Y^^2{Pz?uzyKkHWy{(C+K-AM{Y%5 zpzdJep(QU*Q2TvRJd?cha? zQckbVsa00|4D~wYGb+@sSB{`fSA)`n${re(o%BMsCgn}zN62(2uTZT^r}FazP+iI? zl*)ajTtKm~ZsjqGXY?o!)0>Zbl|KjLqj;@M8-&Ok<(J1{@U61_7);=ibR3d>%2%}I z>{k}pLjAomi9%W*lz9}v|EQEw)L=lFL?o6zUw5J6Mo?ZBcV9fuvBF2V?X9M-17gs%hF z4UL~e6i^R#STY~xk2w5Mk0!<;Y#d0R8f9QG{7 zkh&ebxnF3&zq%O`<0^WhdZ~h`yx&_@ z{~1(#RF{RY@2d)`f(bvBdm{S$RSUy`8lX~tf;WMxd(rSMT(z6dyhNy;*}-t6s%Ihk zj;m(aqc2)@oPsnlDiak(7^~V!g%KxIRSNVasvgoF=$tCzrv#8mD$gd^y`VDEDmPiB zqO(|+RF6Kvi!_z48!$Ij^*Ugut9od$dP^k>N0XttJ{+L8RdMu+i%iw>(4Tv-{+V+W zec7sY*TKwD-C6^bT-BmgK*>{0Oa=5k)w1uPcVE>^nUZ|fZVE9yP<2ubRDo(8-9igh zbBCfSR%LzyvqWW~0A{J`&{I$kRms0V?~!Ux37BQ7Y!>FHTqUJD%VSlTu?2&uP-)je zv{DuKA7-XX^^o>;)v8}<7f_?>--y0im5&&%)v2b{z_ohSbvh^2pbDd_x>5DE2ntQA zvIA&dsM2!Kyi}c?3Xyiz?isMqp(>}^-AoVn`>EwrE8?$Cz5BVD;Yr#a7iD zsWU{)r$E6`^|=AS98({Ng-EFSclsp5)OW7H{c!cgm0(7wg&SZZL48pQXU?b>MnWM` zea9?x#%olb-KPv(x_b6ze3TjL@`4t#Ukvf_l)Wz!D05m1) z&(6csQgtysZy&0?Da-sweg9ABm8nNsqpw_Ta~jZ()z|1dU7?=+5em zy;^N$JO~$S)a87bs8zpw1uyE<0c$a|di5C!Xf~=33n9{^{;&dQPt^A*-u6^IY6~ni ztL=(FwWuvADBG(3uoqOD`b<2UXX-Vj80d5LwAoO9pzL*09r zmW!S0dlDGzQh%EO>XrKK5LoI~ub_(S9`)udh<;Lk*M~l*;kkdqlJoF0S3tQ8=Z}LI zuEPf?e(N@T=LuX;?!(>bLF+MGG6Q{H!~ePm1@GbCv}1sWhrc@mFrVQqze2%xxJv^I zH$T7Otw&(qe|X9w%uv8^@d?aV{@4>T=sS&@N#)qi^!-rxrFGmc4htI#Xqp!-_FaP`lC{7bXh0ybv&=vw`LMCJ< zm|?jPGhyG~@aD{f)>SZ=JmH(IK)XI6(ibwB6XIH6;@*Tyy+A9OkWmR{#e@zS9wZGD zUM@gi>x8sFpwKxXxCJKOObDC@^R<)uc7SS|q+SK+my_O8a=mMkawIIgo^*y@fz>}L zE(eYA_T<7dfXSTfN;$?mlW!)%#Rrokm%#6W$+uacDkoP_D6(pD{6&ngdh&eQ6*Nw^ zw}F1^WHT8|v`v0V5&Y+qH=l%uu2T|&pm1c$7OI*Jnc_>alY}YL4}!Wj#kK?LX;bD= zwM4pcilqp4Gp5WpM`z{~oO6X2Q&!T$ID3k*8Ls6{**gdmMN`bCgIO}=7H!p^PdV@} znwL|ehM@1&l#EA3(kTawI3-DYRF#!NM%&>|A<-_=jN>Ke6EC08FVjO7((|C*# z5Dyd4jGD0^V;JLU^%culO|@%h7$5!@Q(>Gb2Q!f|l>&h07%SJq>Se}4U+7(7WYG6I zoiTeUL~st0?#UU9Lv+ODHsfC^K)BB+p^Arm#(xWd`GBFNYKj8J;T!0CY-Ai*3bYD_ zHv{ug$=GxSCaM@)FN4{{=y;D2KVh^{g8M0ciVkCLX7o~IsD&}PAE2#_0?PZgF|M6J z-!sO3^7lDIOog!BjM-f<(Zkq$3+la$^Ay8<&9Gv@i#Lp1dh!l1j5j#Y7-amq4&)~W zgYM!^%oJKmIx}}T!h{QRUnKNhnUg+)q#ILg21nhQe@27yU`9=Yq$hLp3K;Za+9qRY z-poHsVd*flluj1-F#n>>lP_~+7exG+EiUlapSj-#O#pL;kv3+5%-`t(4`RNdBB5aB z_YYy>2($1npoK7hc?;%I=Bm%&#WChH3iyXIA7`R3j5&A|dg09BOW}P4Q$H3Wk<2O= z_;j3khTdBj#dH`7W;E0A2Ik}Ok_<>DFuxlOy^GAR@~Ff<*;Wc> z8nfmpm^Ya(Mx#k*YBmAp7Ss9`>}D_@QFbYpIZFyEk9p`nh}>f?VZzb-%&pN-&u5;T z1rraL2a6z5z??-DQZ>vmR5Me{?5Cx69aAuma)Njm&{YX7@8C7Sq2n5S>_bV^=FN52Jjx{ie}NV60q#Xs5WP%1nbk@+>~vNZ z9Xh(j`Y{H58LYGW;o5Ch_&$7SnXFfB5XoYt_M^GWy7Du8%4Vf0;b;y^N?ZF});&rz z=ds2nL;W7Bd^$wRSf)%+H7wUYcyD~d`lS}+bJnmZSbD{JL(B1Zteay2Gswz)MOPWS zE)n@fj0PP1I-@h2=iWk;l= zdC7i2RZ#8hWzV6|!8Xonfkr30%n>kMY`++c@D+PM6>4>}pHn8khrOL@D+bwqo8ZMK z_J0%MniD6u6^%1zZZQ;GILm1V>B<>KdrddaSvp|t&bdkjF`hUnipGmmPm2<7&eyaG zI?QpQB1Rw1=SIrh`f^ybO!ebzcmxyvoNZg-Vkl>K513(`QFH(@ob$FBpb?z7&0t1y zMp91VI0|Bc7R_PPg&4#6;sDfRIU{{Bv=f{O$DnYMqYH!iQ=EOdpiXnf(UH(3j*gxo z7dRHCp?3yw;{RzL&{8;ePebN1CyT16u5t!8!QpG1;&M21os-fC6RDi;4={0qBlN=P z(>SJ7GjNk*u@B62&R7bl<#5K!A(_j`r!ZF@XYOh=_c%ol(cI_Ed5U4@C**`tR3 zW6s*CXr6L@qO@N#XR-(STJU?YkZk1~YJ;UV&PS>vddAr}7tk*_?O$S?FF6zFMU(BE z6IYBNJ8+f|)7Hs(aUP;woJcyK^pP`~O5g@?3LLHta`u@5^b_Y4Ezq1yUjBwYXA{R? zVZy~Eg2F;>CL2zo&)wuV`Zju)6h56WnQ$8B zPnxhP_;Jc)={Z$k))zG>Kmfl=~(DuPA0y zW72;fvsY^p6N1k7CWq)mMV#s2C!l4S8eRhCj;X~-Fsn>Q>tLzYv~?r&+f0wUz_m`( z1$DrFV>+w_&b&2krK5))X8F&c;As|26%#>b{S`D8vv4i?E|_gx3FsSUE2w71m}T~i z?pIZ2i<{tSr`bY2C^z#pX6OtupFIW47;`CQACt`U%K@5V-nbkvx#qp+Aem?W?bi@F z%>DImIOE5ywuNi{+`2zN1#s_pdaw{#Nca1x`1AW)Iuj#T%<(ksBIG<}|YS0#NBiIlv=KdIt z<{|gr`7lw&eM5om$J~e`@S>7C=1VYZxHFQ#Y~*@-gL39gr2{jryroo-+3kotgqKB6(wtTbSs@Kf$cS_`9l~5|*pw zw*j{%I39o3h8@S>bvG#z_zPPD<@IMMr@G;#43ZmdE#Us9UV6#X<`O5E-Qq9A-(NeE z(Yy8TXOR5uU#ge>ee!}i4M#|WeH6n{np-P;2g3N4s{jH#Jm zhBNs6a65wW!#@CzWc-4R0Oum(_Hy)HH!|Y>mkwftuZEL(4B1&U#f*O!n*IN@OqhuO z)R-Z#|J?jH4CQV$+gGKis+p+p=N8|p)<^Ekdlz$W=WQqhiEfXdfvyF z?b!}ytl1tZs1s(k?$AGJmQRbG1T!nD&^lu_oYp62&GIGzCDE+$zfdKcX)`p50?#RC z>N<#CHX9TAJ)8N3@%tQL=bI_6f*HXb)d{~#d0%>&Llgf787CfN%%2z=X+E8p7pM-+ znK|t(#9Ww+TmB zIE}Z4ty6zeU}4%++H*7gm;;QM*>O08&UKp(nngV|pjnnd5%uL6G`)9cpS?l4p4A_V z{tax%O0aBV7Anm2XW^O99>5M-0cbZf}+jWp6&970$Yn znn<>}6+kqr?GIBAu*c)UpTiV-IA387Dzsl^ey!p0HTH|<_1BsGDJZ=9eG8@?2>&g0PcLCa{1S7|6&eQr{c;3Tw%p_-oXjJ9^(%qbP20U zYv_fN%o>e>+!VH$rVYng!bGS}WmoEtzc_W=0u%ap~`ZsIL7 zKpMzfxj=Rh&mRk+$QZ5yat}Xifx(U7)oDc%$&2Yrs(X2XDUk7e7(Gc7xK$lcCi7-g zfu6!6DO7fxn-)V#D$j2Rl1v^&i~20ShdxAemfO>gz;nE_5BRP&^=d|o>EUvoYZHWhI@3TYPeU|MsP z@Sa^kQp!!}<6&=jfiHx;<+Ywd!#m!N9ysrLEG1Dt@Y1=k@FUNi0b!r`Nhg^0nLk?$ zU%v1M_MrUAN77~Ujd!66BkDF2$7^v@Wo4=TVsGuNWCtCBuBbE6@2+p>qvli z(x|>*|0WgVi#cUCyY`CQgL1uh10ocooC)RZi=N)-Sok0E~dUa^oN2w|tA22)f8)ehLsb?qY3pIvkz> z_6gf5PvaOfCW zqAoDR7@q$H(j0y!3qD=r4Jc4>i@#e0k~}^?1`40?bsBX0v7U{f za1%Ro8Ni=ypt9!x=2j65K`fds^BwHs18CjJ-XLayx5X9;tc9>EB0WhHm}wD66WKO; z_@%K!^fEimEb;)(GiRDR<*u|vbqdc?v9f#elyLwE5<)_DT@T==xn zP#C})3sAV5*TjOe?EbU(?g3(dR!X%=0c<^OKMG=xY^fS=2Wz()cI{-17nYe9-5Wd+ zETa}kBUux=l44ozO^A0?C~YxTTtKwQ7#tR^H8($I)_U$}RADUD?iDLYLJmNJ>3*x60 z@{?y9K*~=3HjMn_xj$&~7{X^z5yCD$fzmFa+};=OoAZl5rj+>B?8ylFRsb=D&rikhk&uS{#f#iZF)ECG{n%!leX3}i5f%Wcs+P-Ub z)03Cn?;%E@h#xk`kiX%Z4uk6hKRX4kf8l0yA9#ofjU_<*Uujr8`1de(iXKL=1sx$f zlI^DH%U(8+o-|QxDoyaB*^j>g_OTdeh~3YMX2XdCtZE)eVwjC~9>nkF0bfBA&WBUc z#D1Pl^;QS?It%!8mmA47J?3jWY9Z|juR@i@Px)C2rWf)BlxKa# z=gtQIM?RZMMn3T_VX*r%H=PN7SMfa+2CWmH(EG$qJhTnc+{H*LMO!cGPeI=Xu|hmr z9%6&1FwIlk@e0Dc#5(67%vR?c-mGe-8Lv}m0CDI0nd%pp1FDL9VEb@S0WCi@SC z&_ub{F-S|27gH81S+pARr=onzz4aas1 zX>-89=M>l)Wc!BF)Pw!$v<*?eL&Q*9swf_I^Eim?&r^)kVPFb=$B&}Dz7q`h;&|fL zl`zXOH5ei$&7fK`=aKF>p7p6Oeiw}kgq+12mw{$UsspTBJO6L|YB$iibzy#o(C}nC zg2Cs-`eyC{oi{s8Tl0L_{+_^YWOKGdL_B+41Eh(pfHEd&tUqn`I?X)X(087#X^Xxb z=Jyuo@g}RI+E(QCwOJj&?!p_>ym zd(y>0X&Af=ai|sT$37ue6M;P`-X98`r^GuH!#FJl^aafsv11wpW{UP|k4l)FRiJg? zdGVi2D7zrq(emh`7&;w%+2X05xXLeyY41UDSuCOze~y?zg-=(+xJIzzsyJX8NOHx; z-Eq?Hii>F4eNTKuS@-**7cKbnM3eW>o-d|_q3?k>_y)`_5Zx9-*bA|pb{()U#eS6Y zD-=gk>h7&Lf|A4U#K%j)_)UCEb1!^(oEDWo#Pby0`YFDVz_3BuOvyG6sWwF?J*A6f z**z)n1DyAkO18m@&5|eOFSbajPGH|E4W-0t(a5B2d< zE!tUEIoJQ_|GUx{>Jf^0|GltK&x8+7-zo`XcUAIrj$!>Y2Qc z>Me`$Pb8qTME*u@m&yvw1m4ISDO&SZeovFvckY!bfYH>iWQ)=}BiJNkUZUZ0X-Bo&CZ&Z>-LWQrg?GvotVQ+-Ay4hN2x;@=_^W*CuHAIZXbcc zxr&L}u^LWOPugMeOnF0b-RH{gb|877G~a_(sp3QH(>F>~GDyBC8P5e<(LrgJivC2~GJoXa>B3O&*%CXs~-Cp@Sju(tM;fg15$O5J-G9gR6mW zqo&ZF3Kq6%X4C-9HqE@=5V~DcgJR*T#LazhEWUF zgwQ1yp;@vM>LWG1O3>P?nMWz1C`}c$ZFM;K`WafsH3vpQN~%V11306ZP0`Lw&9!hC zlch;8gTAwxcRpyH(@3=W@Vw^vKnS~_X>kK4UDR|qi&nPAyfVNgO){ z9aM69MdMx<;HqW}?f$!_*-Ck(>l#Nb#W!zgO0z+FQ}g&bH05a$Wwi1&zBABzpsC&+ ztpd#@BiQs%GlyP3k2H40Q1Mvvk>*RUG*(R@<+a9&3bcwemOX(i*2uJTCPdHmAQ%$# z?ifK~qTU)0s882hRRZ=adWS#J;_abcI>o-<=oxfF%T?cl=2!mu6(i6J)z@1F#>4t< zh?yeKGt&q*-O;ao8htPIr%_h!t$x}lsQ;?J^CD!gGZ;!cZoCZYJE9d};M@cw8f;Ks z279!D<$Q=vGzg)|$wh;dMznYL_KhilUG*tXx%s0b3JJIK5v~vK?q-s=j2z-G?m!CmOxY4KE@IKPWzY3g4 zGIFE|LW)s%bC8@cy3w4rp;3YZD4!WAU7+Hnkulx#=TL3z}8?;W&~jJ?uf(@Ep*hd^@1xWjk& zdBIqZQZAQ_hs;3V4XyEj!RX90o@EB?V`Fg&YGn^(rlVsYhu+=1B4q7`*+<%hwCU5D(ReMdQS;Dj! z6NgXeJ7hAmA}mZX(N-wL(3~)_&WCMTCczfE`B0?>uc6Ft`*5%hvZN6jyxSZkL-xmk zZ}`4&C?8QEL)6GYzK}a=>lDZt^PXPKV;}Va-hSy0{H|l`2kPR7l{(CZi!Qtt6>Pck zBUD7TPRl<&0GS(a;tt@>wSNJu=b`%{$DemKg5m(a(hdG2B|&q=9o%&)G==l}E701* zd(tf%!B>2MSuy<63b4oW6BNLS=wW zD&)o#y?@2e(}$s6^9Z#`9ZXmcQ^n3N9!iF~h{tG|>naXz11amoUZ)}2O{`A!!-%`l z=PEqJ63RPziuY)1m%rG7-i86xwcU3Vqj< ze#fBVhBCwzd^eTJ@1WwglI#j&auw5KK;Bgb$D(y#iLM6rJf-U(@Z~EOv{rwl6z$YU z0q--V=THcJu5_LSV_qn}A`E`5T)}kk_qw+FT2ME+TM3po??AE9udI?Y6n|sWXQSoD zy9Lo8^2NWvu%077glPkBrPip&Ys|WF9DTdFg+63N@Q({X63Nq7pcTg_QU)NNAEW&* z34H81jB^rS(jN@TJhVQ>IfY-MSm!BTnX(|K`QuYyIKwSo!nI89mb zia0ICuZEN}Vh(K!%oK-F#oJkNg%4Wi#8yGD;)3{+o;nvr&)J4}WnLD4QfB$8*m46j zT^Do5f#Zg_jrMNmioW{L`$Syr2cMpbbvr=JbJ4{KBrn9Q9lBV`P8L3tMu$x(g+U?g z^L>~e$pU-O=rDV#E{tM*DI0x~-D(WvDP~v%t znbopF-&OX6>PK#{4pq^2lNp?bvA5XucWB*acd4v8m$eaLdOqtm5DX7kmp))9VAs6? z9SWO z<9N(H?52{(+Bw6(ahfPl+IQT8U#&wE4iOWo%!0~^yJtd>qq73cB%3ifo_yaKL{l<6 zVYJg+Q;3-Q+ys=Epty4^8|p3!SiAoxEA2!_YfBkDkYKve!ex+%p*6N*%IQa(Yk^_NQM?YjIsj=L>C2xq!$(qM#5 z4r0r4kAJ8%y5|LL28en+p#*8~mH9yR=}kN7{y9!bguYk5fz-Aw74!Bhc?O#PgJsYU zxN#R4yU&erJn&U7C>|959+<%&YC+kM29(7dI-(Iw8CJJ53?2S{9xx-aCc%i2o;2*E zr_q+NG2`}Y!7z4uS%UxNLWr=pp+~htJBluiuhtU^CXDC|%*4A7A;NLeR0y5CoXV=E z*wB=~=`-a9r>@NeW?KGE98X_+7QZv9)&|$ijJ+_E^ut_ znd_AAnb(i9ee=_Q;&;I-Dm+=(wGDn36;XVAse>i(%QjSiamzpb1wkt^tW z9tVvVJ97x`c(b7!f%RcZOK@yt59^}k%g!Hzv`uU+oqK;ao#y!gOrS~PW@dK`B-_{= zx=*&VEtD`*nLjNo0$G>aur7$Lp?CQXWo*duNcO5GG)1$6wB*{yez^kdXEMF84zPVx zlODr*hk!DcrOW^_jvb@KL_E_Q0-F+;2?Zw)GVNFjTOMMI2z!`)$%Eb_?89{MA7#!I zn?1(b(AQ@Y*(=oPmfZ;&3rf}2$fML`a{GzYr=wutsK;aP~d5UaW}4FgLKgWCQey`d*3zXR=* zOe&l6kk)763hlJR-~cMb=z1jb#J<{5;P10o|Ti>k?*=-`}Rs8o@x^UZD zPlVD=maAb>XTNE{Sl>PgOxLT)IPSLL4Jf-0?hVI#UJnAkm(w>;_I?(G-a(w6ghM0l z!-WY6lwO@^e*?zOnqLaTXWy9x%K6ULb^r@*u7~19CUw!VxX*LwDW&YK5wrs^hdc2Ax67pBPF$D=QRNxPwK3;RG1=LnW~ z8X%I{6~g4b%{q;ko}5JQad;0HJYX=7^w}Si3Qj_!~=d906+1?0WfS8JJS0nQVgYw?~pi4 zbpeAmh>A4}#Nlt@ZlSpHDC~VDR;UP)58|F2u=_~1YoOLwYT6q5Hc3AyAL}pK(!*r4 z)O#0N!P4HE=nIoR4TG=B*=|#Q_$^*ToeT{ ziSkU^$dxRwcm!mcy!Ho%GDB`m;k}b`GZlTA^7N;$`~0mE%MWeX_p$jj}}cVD)r zxn-Wb{XNt_k}p!OR5NvbDFa&5PQ?o(5_Y46x-d8J;!nG#p0#HP{Q|*(@X)m=?iw zhFbLshvYT|R5RK30@XFPx1ktn$6IGH0$mbeq};Wcu`b~{DESfwWKvz)$hw)S9b0gd zrlFK#jODg8HH+i!6c3H(GilR90{@39l@9Wv(dbL#yVM0OkWX+9hs=xoFM3^MbA5WA zT;fr)VCrQa*cZBE#9h0gCQFRLlcmgmL-jQf6;{xfGpcW@cl;xPcbrCwK|CqnY2 zCwG+eC;$?orRgIuru(EHeIRzf)TJ7<9+1YEpcNz4r|@m8G=pB8aguNzt$3;ZS+FNa zz1N|2P}=?-twYkD+Hmu*6ig4TBhrp*07s>LT2n|nCiNKv{zS=VKNKcOAE-_zS=!bZ z94V5`1|W}1i)f=>s??-9T4|C^H>gjS^mk!6+?3>NK)NeWhC%3hr7!J*-Jr~z0HlX< zl@xj^J*GmDmvW&KklxB|npXNKqgHES+eXFxCe-^XvpR!xlTt*lyd6rf*Wd_KI!y*i ztP=Pf90|&dnxH(S+&PFr-J(feuX`!?vZY7Pz-Baa8rCXIcSiVkDnU1H=mfEq9{19{ zUPsrYI`uJ`!(ho+?d`cRc3gTS{BYRe2GsZrO6g2!N;^a*<}Spq<264RG$|zk!Y2FC z2A?TL6vB6Uy9)GEb16DMGu{;V**28Ln)5CZl*?;VIA%p6P48A-CYM(0(R;&{)vyDp z2m9FyIIS;RB?4|?di3=NmBl)PcPGnHK(mWw;ey9ZC?*qLN3c9v`tN12)zFG!3u)dO z&8#Thxt~p~1FH`(m(J*mVcjXBbc8)^4rGaxum+ZtN>Pnq=w?}uw(i8s)o7`5T`PZj z4x?_!Gij&jO}XI(D7+<~e*oET$`*=;xhrF6aJ`j7lObla!ulCtQ1HKT*<;4!F1<)h z|D6TMdWX+(K`{=^f*}?DZm63vbUaEEduylZ5Z`s_Q;6*zLPhv>dbwwSJ({J)=}x6y z<6Ssire(4#6saxRpuqT+4`_NDXyE=o&9;Hf_V5x2>OY&pfp&Z*{2FwNVkg7wZv#I( zVj{-G(TXrr8qu<5TEcf6&ny}apJ%^a1)9a@smyuJYP#^(GY#q?%Y5pp(!{i9?nfy6 zXD$T=haC!_O@gD2Sb=Mtixp7g>(XA%3Fh=rnCR0NmF$4G@|IkTy-Cg=lM|5YyREJpjX}Q0Ft$qb99_-B-AU#<-u7#Ce z?0qo!y_ru#F#51}aiH;KztUi@AG=D`^#086FpvRkd07O7rJO6S@#>*JiH3MQ|*~K1eKwE^G4$@5g5W98^`cuR` zchO20{WpQ*lz89*RAq^74Rx=r!S^WVH1s>IRfj*P1@j0t2}3h-N_`xUo}K|4#>Ck` zslB!<@RLpEz?>--G|p2qKZ18!ZJO52_tHa*Oi%At-oxFDcS-X-nw4ZhH|x*vT;{;H*p#D8P(Mz)&~EwzEm&S@b2u5 zYTSd5X!#R@ELzG^SDB5)+OWJO-XfE@EQ*Oz3z^lEn5-{md-(U@_!IFbCHnV}1MNN5 zg~<3*@Tb9_9{%+4XOOrq#PEBXY88UQNH2S%#?#Dfd)Q4J*<;vbWqKPG%&jV76bM$kvyokhp}ds zdSsHRrP2zA+%|E`B-2Zr8L5+;OgAwn^^KEhOBS41Z>s4#Q)Zo5X$hKavD#;;>AZgU z0)k*JOco}X{VQ1zD&TPHf3=sP4U+^cCqeHdxc^uG_Qay4ri;z~r*o>Kr)hgN(9<+V z8v|YgIF>}PD-&>ol|dvk%iw(-d_u4r6J8MP&IH7e1cS~@cuNp(d|dp3fejNR7({eN zfE;DK6$s*!M2JEQyfzc65=5OWX4wL-!`cXS>EJIWG$aTtXa(Mw3C##%!iratz!9u( zORxbGI;zIrri--@?GKeCI*=elBjj2pI)Wg|A)^UGasoj}reP(?P6VNjhK(aAGn=3# z6Xp|y2FlVH^kuYhqikrr3EJx9gFg)IVI-hT5ez6(1fOUu|Gz>ADpOR03H3<;9(7g( zF*ddY2QXn8LBvQmmh~q(`V^RYYGMVw4U})4|yUn+n1zUE5m+qjfMz2Tu^hSm)^4 z`8rsn!{f_jWd;}$w1gqL_Fn`?z_QkKfRkpU>lmbi<8^pvU3;aj?WSvQ)xl7Lbp#mKl4Kb-9Gq7i)%+B)! zAq44;GC8XWLQX0{3^ZO4WpbLSmA;tu?N@endJ4a8OTHy_Td)g}h!4dmsXrh=_Hlnx#73b~`!(=)HAZZt5j zz)yIoy9~@5$;ibCNx$*;3ID=NEhc;^@QZ)rn;Du{kY{+C3U$>Uh7g5SuW;md*J|qW zM3=1^KwVY!1YySSu55JiE8c3pA*8tguVblc1pFOuwS^JzZ86QO`l*} zJOXGV)l~yyQ-PLItt4DiuNpx^D<4y#RQ-ZO)<&&m4B|=k1i?`qI@z?M>R=2Rb=5h9 zJ_$5@Cv*&<=c{QzEBZKBbtJX3i8(&p_4~i1?W&21c_U_}wlgtr%)@r56VQ|e40n`T zuMv!}Gl75#YAm|tsJ{iF#c#P~Xe;#xp>G0hRSxZ_4m1V&2hjEZpt*mHy2}*8>)_n^ zmBS~+sKtbj1%BusJkDp=3b6Vo&>|zN>+_^o)vp3bS$jcn{zJ-N#HsnfE3<%q@S7G+ zH#dV7{W}Um&2prH2i3J^5HSt-^429CR4)_W6ZmiC=nD?2wap>gtrITb3T0+sIOdqc zvaS6vo;qza)HI+phx-e{gy~G}Vq#v8-^o%viMNK%*T69KCvopCWP(FEZj7!4NPhqwY4m$ou7s<*EMQ|ecHh0!|1Hr*Eg~`> z#)V4%N=#L|RRUQU3S`1`xY9J$4>;LI;zHyfE&N=DnoqP(fuE!E(M4@u86!Fj0U3{S z7e_~R4WV=OxG?dL1YFOT2;EVi3+>BMyQsCQz^=K5Txg?{i{S)H4m09H@PAOI5!xC_ zobngla@Dvh1ULhIROdu=wmP9IoTy{Q|KpqnURL7>-vjtte@x>iE~`I*SE^t+(pV=W zAx9ll4Yb{`?c>ECTDTEX4OTQllEAAR+Da_~T8Rg`NbmPqIB`wwRvi+8@#Wp&e@J=h zebtZfCBW}5=ieALuR0_L)#bvLa%e}jc@3bOHQ++ZA1Q2zx&~63*`Ag zw=IXZRmT(Bya^X7mqUB1v4pk)+WHTghZU+nYeBdZ@bk;rSWu`Astx>&W?ZOHj{Zfl zx{L5nfG;PWe=b&w3I7%N{(tCkCw8p^wY^bNRNhEO)tAuAfi5pSutd$T11X-skNG2o zN0+EA>H=Q?e7PqRJ(BA}%-k0IKOP}TrRrsnE8f6kD^b~#=}xIyyB*uKpnO zt^cIv(eKqk4IunA@OA%?^AqpYU4%Dk!-ZMp@CEPHV!|&2-n881IYaH*5aKtq{g1ny zzxbs3H3a!n;O*4phImIgs(GMPTKC|BSVuLmG_TLvs?9CIyxh@L=&g>mG;hG8KdWmk n!IwJ8^xrd>YKhlgDcUF0t00jRmYU*a^aY2kqgtzxd6oYMU$^zg diff --git a/firmware/modularkbd/Debug/Core/Src/main.su b/firmware/modularkbd/Debug/Core/Src/main.su index a4b1820e..048f4bf2 100644 --- a/firmware/modularkbd/Debug/Core/Src/main.su +++ b/firmware/modularkbd/Debug/Core/Src/main.su @@ -1,9 +1,9 @@ -../Core/Src/main.c:149:5:main 24 static -../Core/Src/main.c:244:6:SystemClock_Config 88 static -../Core/Src/main.c:288:6:HAL_UART_RxCpltCallback 16 static -../Core/Src/main.c:308:6:findBestParent 24 static -../Core/Src/main.c:327:6:handleUARTMessages 48 static -../Core/Src/main.c:362:6:addUSBReport 24 static -../Core/Src/main.c:370:6:matrixScan 16 static -../Core/Src/main.c:383:6:resetReport 8 static -../Core/Src/main.c:394:6:Error_Handler 4 static,ignoring_inline_asm +../Core/Src/main.c:149:5:main 40 static +../Core/Src/main.c:252:6:SystemClock_Config 88 static +../Core/Src/main.c:296:6:HAL_UART_RxCpltCallback 16 static +../Core/Src/main.c:316:6:findBestParent 24 static +../Core/Src/main.c:337:6:handleUARTMessages 48 static +../Core/Src/main.c:376:6:addUSBReport 24 static +../Core/Src/main.c:384:6:matrixScan 16 static +../Core/Src/main.c:397:6:resetReport 8 static +../Core/Src/main.c:408:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/firmware/modularkbd/Debug/modularkbd.elf b/firmware/modularkbd/Debug/modularkbd.elf index 746257786a07b10f1d24085dc6f22e5eb12b41b2..2a2404f95acdbe6d0300768519475fb02390f36a 100755 GIT binary patch delta 97763 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ϔZq&{byT&wQ$H2n-1_-XT_XPl?3<1d5<{phSVtt<-H zIO~K>MDwG)=dkhYeu>(hhqZN!DCPocomE7)TyR=imy2l91*etOc^+-O;9P4V*5UaJ zPUq_EzW05JZ6xkK%+?N(WmNYSy6>Vh*(!Y{eC(n#HqJ6$rTed{bD?^mhx zs*@UIN4{?vrgd^hJFb%*KZqxN*&e;{)v*09=d(COu?g>q^*dVS)>B9B{jwtlUJ-q{roW!` z`QpECtLevIEdJu~7mvRR_^XJ&1pHOPUuFCy;x7q*Rl?h9CJ#7C2O7CO!Z{V(Wy#@# z8Sd5O`0fRFbi1Qnm)q~?7H)E#yTALaxZY^AT8@}dNPf%3xKqVbH z>Q>EDB=K-13Y00zha#(UrPzXm1b&{Cl?|cd*W5a|YVKg2Q|JtI;`kBwx?2n1XYt@Z zHGJK@F4PTK@vNm#7xQ-$n)ty_rt=v)_D|^Qy_l3TIMHxG>ZBz#T>61GgZ>;e9Ak@GdG?;8wL+zCW#0*-;{k1B_YXRu|0q5$38$ zcDs@ruH@kBfD(uG#Z;!=3*2i&K1IvtYWdbOFRJK9%Szljaa(ZS5D%2n%EfLnoh@-= z%q{eDiF<>chA*tssNq7lhQnDLiSJtIW(e|e8oki1CCE4h&nfoEt7t2v%``f(5F?mI z35(q8?0m;CvZ!zo+Ra(K`Ju9YXArF?f3MgkatXTD=G}A)od^UEF0*#FM8~ zxWG-eE<2R7*saFty(`>mVm!*gI1G->1!mCH#cmCeJxj|LyVV`0;yC@OSGN8VH-n4C zFL5(DWgKFed_2I~UQ7XR>Zf3y^%N6UyfVZx{0ZVuO`rA&32i>ABws1|Z}~iRRr#A` z`B1qEcnT?jc7IX<&rQX@nh{p?A>3`dT|MLp|gZ^8iy6`{sz`y77a8`3< zWB!n*A#b>@JuIH5=A<{U$#8ZPEqeoNk+b`0C#dEyI`;-9^)Q+Qqv<>$lvPGQ%+{Fg&U*Dtt>c5mwcp{C|ns&b@^tCoExObu#y6V1=l)Gp!+*ug~=SC4tUjeH|(Xtg#IEr>55sXXp8yF(Hn9^5z*(p@8QpgQJBABH#T~b!A zLJ{^DrzCfDq zU?iEco$}s6HJrUf-H`=zG?++=WwJvO&%EQ_;JA1}HMcJ1tip6~snaTmyEJ?i#LJS+ z5}lMu(rUrGQ6_~lnJSZ&GBMW(5ijYw2G;O4=@PQ6citMW&qbCi+${nPBIxTliBM=r!4o4L1mWj}1b_7>PW z=&Lx+^QS3|e@93hKp6;niKpm)Oa8O~*9LpaQ{Z!(MvDH;vje}?r%bX{Bt5BA` z6}>mN27US#*56zj3W#LpR%s;?QFk{w0fxw8pWfzK+M*RT+UC}`yJYjCAFvG)oV|;t ztL!LRjjY*)_HBd0E@XbBl3LX9BNz8ysPH4$(S^o?V|S@7t|^kT^CMC6oJ2|6g;>Mw zZUcwKrWNq1 zF&&XY_9yNQW-hh-1SNB+5Q&wWL-jv!YpWFGuRcMYxpYM)*`)$?lF7(YQSwD3c5aSg z9H-5t=#W3^%D~PI^3G3%{5hG-+bMLl{7hE=nLtUB_it?af2k*qE#}W!n)w+nWVtl> zb79H!&xIvi?W;ljM(riQ4S+q zOYFtDG)7X2WwP}vIWl{^%Tq2T?GYuK?7=P`HDms7G1_tFYf;~SO1LImKX_i*`$UO6 znRMSLtiybEY5G35G6d#H(q@@>sOvYfzhn|YHRAYk!n0!v%>z?R6!C5pUBQ>PGVUrm z1Fjf@`4srp%TA$|$fC|dnN0dt*tSe2o%RcKMWSqpJmN@+<{{y>T|MevZ=R+r`=RYL z)jWXNcDlJ-ok+!OJ594e2KQZ=9FU25P!O|aa;r>+%4DXO91oyPlkjeFoNAB1SYj6F@=K}9kKiQYD`18Hsj@oS9o zX=-;=NY6Yftn`xA677@8m80$ru~}^}diUb%d+shb4M72V97BOD8Y7cpBvw`%dZ`rg zoBLkEg*l6ojzhCdL}}g?sP%C-2x6h+O_j;YTEaqhBGCL* zZcre8Z%!b+5$sHeh={-iT)-14p9n3hxIq5fLS**$!mJJDl7y3j=q0^?yoO}v2hn4q zTcG151M)cr>e)RiEuQ%be$T;QY;ke+FMr2S1 zof1Pj>6BY1hjsBAejFL1tiC~9-^*n;rG!lbXwNA(Q&a^1##NPvk0bsvZXIAS)_sUu z2VRPvnf`+qjg?45DR@D?`N7Q;HL7?FWi=+E#yjOr1=S0?2U6|RUK6?urrS=tt(;LE zaB6#)o;~g6h&((d8&AV3rnenN&u;Vb4-BJ9XK>PEx_HBouIzBDQkOI6Dy9X8)4gXr z9s3`nry(ootw+#Z_#!0o@Qr)}dMwNHTZmM;--TcQM^8n{NXq#U2dh!k=|>#eSgP*h z^jArmr$~pNppQWkY&cHNt2~@1)qe8maGF z=jX9$pzkgSfh&@eEs;kYDbYNcY`q|KoRkPUZg863iNonr)cK;Dk;8cviK5)BvVd@N zm1h;pWKE_ykQZg)6Gq5#}PoqzTU!&UU?&zNE? zCSKsA@$1~`eDqDE{9|rR_WEvyAztG|&1Dt^G0z{0%=7hh?q>`wi^9WH?HB0gJiJV} zYms5Dr(VB!?7mOagO||d%!Z3;IoP?JS3xeyYT$1K-L)DZ!vQcT_pqBLO2ZLV?N_fN zIHOu2pU0Y1IE-?dv|H0GBi^9pWq^W~jM;Oz(_|o>Mvhb(iC?*O6A1;9eGguW~klmNK8NqKFs=#&Es?X9`~5`BeLg zn-Rx!@y;y`$J7z5E%WJNutXj%HWm|kxY^bqZ*!5pbmg*JD~Gcx&PQ4MwY$*VewNu^ zOtr6Kq}%txihPZFU&R*Ip2lBAJDCJ0+|sM4h4bBBr%#d3<-7|0QKp)QNLxWH!>{&I zm#tVqjNpiC_AgHpoN>L8k7YVLIIA_RS`l7aGvBxPDxA)AG0(D%421p0fT@HVIiqymm}O zFS*slj9?Occw?;qk43TNH4H&XKDGjl;!YQ0YA-?DAlm#kf5R`vq^j5tJM|LE^aW}= zO_3kBggX0Bye|#+1+K;ON%MSx@ExmAimmhEAAb^;DjXAq;km&lrHt=HVevqRk+zf; z#ssd0IM{~}Ff4KNKM_wNDI7#5Uc-67nHp{goT1^Cz#KLN2|kvQivM+tOR|x#@jIil zYdL`=t7r*b?*uwmN%M?0pyOEx!^k;ISB=3t493Txr!1vkoIr0YacTH2f8d}Q>We1` zLB~hd%1;z3%(eE9k6^ZnpEA_>7d6a$_GIe(SsG?OyEQd_$moJ+2Ngk7pkX%Pa}6_} zpEXqS%*PX?WtjQ={GraDuVG<;hSN;y7azz-Vm$^tkg8lh75W3oE!k(PNL-YCr8;IG zsgBtHIDlW|62UVyg24fpbj+ccbUZ=BS7k?XP$nf(#WIW~wPYMj?wD-gmcT4DnJ{->*I>)4vBsm-B z*NI?O!BMIdpYbIPj}$7>bL&P#M6+@tc&ZQyaa1c^%i-Me__n+Vo`;?o+Cl~f<)I4m z(6*8RLK*J@?%rGm5LH9Tfv|M_91=^zi2scMr5eHDC|Nq@NLf1Om{~ez-;s{bM_~@9 zrSmzimckv32Ds~p7AOMuBS+j)m^*EYhQAY?md63Oln58$NL)G|rQs{0NQ+GxiM5U@ zC|`shSXL^;P-&P}1Ojf&EgFR@E!8lWzzyF(phoCoH2LO;VlhoL%*C?WmFMScnEAPX zDbH`JVdl4PUydJwS1CeZfu}Ug2CUUE^NTt}gjb*zvpSPTUMdKIw8L1E^?GX`pl!^m^tGq5R<)Dky(vDcSbJXtFN6HfLV3rSv?cKKM4u&-eH@ z#e@u_1O$%Is|xVFc|bwof#AFI0z!f@-(0Yo%_-GX7 zSbI93@1g6M!|&;s0de zs8Giov9JvDyc{)7BLKG@UmkND!?FU%a705Lb8JH$vlBqa>;};BYZ@-(7I64OU4Y-q z&@l%?)GB%4C@>67NW9I+H-~yF19YeM|_wLMt<{MmX%FD29r;y)$6A!rWf=N+`_yAR3}D^RqO} z{1F;vevyWme_6xehm736M-;L^E?SBNAGuX>2ug*SKSRU9Kn*j0i-wucFUsiUFKIZH z&-5J2QWwZY*DA~kILf7t*L^PuCe(0E8A3EmPnmS$_h1mz9^VticV~)Y8;m*Pjq7g)( zaUFArP91ZwP91aDPK8&?j^(hOiu55S^hscjKh4XAJG$=k5xy834KshfhD%XCn-CEk z2L>*G2)NTr`1Mjx-%r3_0eAB*qgQRr)_O&eueb@g7dsnxkXIlL_zLhH9?k{6eO}~i zIUB&CMv>qn4d#%eI_B7;3UdRxXgC!=AcH6R%M0YrjbN^zZ4_q5k5b5d4ri(`SC9pR z6>dT2GBJBO)TttI5e|B)WA+N^xHHA6L8*p6Xv;6lOW_}vvk>DezW0r=Qe~*U6^yBx(guGY5I1O_J?CDbcNigUD@K_L( zLEAMx%X6GsCI37n)eh7OahzI3VjJqd9>H9ML)R)kV}317$LtZ)F?+vs%n@#N%&~42 zMtvb;ght>B*fFLA81w6CI$j%v*-57J*-fTn4xFnnH*m3r#i@;h=_&!PkOS)Kn4M=j zX1|$^*>k324!Nsi4!)~n4#Qi9yCBD}yp<7*+6!i>HM`Ceud1sSg;(* zSBY>D{wYRaF5 zCE(_8@9;|?jNbtM7VCir9XMoc1|i=vf{7p`p{ut84=9ws$-o932G$MyB?>zjkt;TS znaY$EBm>_)QU1^fSC|c)h3$Ml?jf@NM!@sZ7Hdq(J`O2J>eD>jo|YZh#7u{CeQD82-jD4fq&%rz(%zl*Sb%@d=!8@ zCQZEYBJc+6kZMvb1wN68Wd}Z&-vB%>grCsxa4E2E(1|E~iRDKi2)~+iJROsI${)mH zg=xU;aJwVZQK`<&B!Q)seEbt=mXl)-@0X!bNu$qKn;1f7Zx58AB*Bo0B%@KdLp^LX~3Zbv|z7S;AIeIV5#z6!IR_-;Dj6HPa|;)-v@pH zN9_@w{2pMvg=c{0qP$!MamFR!Y;74=z(qipuTcr>FAqDPnp8JHK%aE&fOlYH%J(Wn z@F8Of#Z#NV$ zVL1d^VpcEq@Ox1TKLf5g9KT}Wt?O@r$D@a~dGbF+$;VbUj4_y`eLa2^VBNsX5D54o z8n4Uaje5Yd<03-pa<|OY@KWXFUvl_2ef7R1n^MojQpjX zEBHIGZorGcHIpM3r)9vGyrW&B5sEk70pSepDz5Mpd;pw2Mt%!tg}Z=%OOe-eUN(n- zXO5S@iOu{UfoH>@EU$cJyzDu(TUiT@Okmxh>w$~awS=$#oj_jt34* zh^*^bz^U4*DFN<_F|HzdD9%_5JbIkGJIDs^0M-pS0z3<=hL?GWC&g(HI$$Tu# z;LCR8KoJAYZGDj;r~s@htPWg^olWhG^??z#So|a^8*pQkd`I9#a-)*h|9&8hz9}-v zjzyjE@T`ilTHE<%03XBEucK%1tH4E?!OMZ0;|!<_S_iydJ0a}=wx{FwD^2hEe*lC4 z6k_)hljsz%-a-U?GyJ$|pk{p{@aq_o7M^?#@J_Ty8PpQ^EnI#Zd;G4zU9{`}J-{{( zAz%Nwiw1)bnU(RzNZ|e`z+=R-{z+inplMO~_X2)nA+G;w-98F}-oo)wcnQ%~V=;L&O)L;2}Z z<>y7=HNf?}Im8Xza1E~i0qubB84JYXOy`Z^Zs4KVNCtTo9s$lSjx0N)D!wafW10e7 zh#pkSvI(%>Bkh6nAdjoG=;3ZvvHo`5895LPjVdq^I1$T`3-B_08u%WJVTQnQ#tXoI zdlo<5Zgr*;Aw3%oi9&NFPET;Vgog_wkDNJ@a4^uQt0tMC(G zy$6m0577+x9(Xk#qd3j-eEt7DssNrqET4|28{;}!XVzdas7`srhrgK>(aTv^Dw47#;kB1@K!tlp*E7wfahaY zgDsBTdw_Rq=YzKK`o*jQKb~mpyf@NA7l04p>e&NK&?CDwi9?142p#oHfS$!Ho9C*va?b0eDbIVSNU3RS=Rs_J{FIFpgcDK_lM-x z&e#7;?CmW<&@1d3h5G?F*LolXjFAgMmzdSlqU09gx3bd=&ImVb1!#uu`Uf#e&;4jCkWrSr2JYB1x8Sv`D$hD7xjF5fr`cLY9$ zjc%zY-v@X}IB-*7gD?DJ8@#0u?%X}_b{t*p9cX2pT|}+=-~|)DC9~>X>enZbiMJJK zav!|p!QbB!*U{Td!CnEl+!oxvH1x7+&56myopi^0~~Cl z0EwNl19v@XXdxJP(@ds>o7+Zr+5n1OG1G6nM<C<*y7 h0b^4$+;c-y5aOa=pt^mwRlpcZ%UGxv?dlh(`ae$Cc7p%_ delta 99003 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≀hjm6+-xZ*Pvxz?)_6mn# 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: 80001e8: b508 push {r3, lr} @@ -76,7 +76,7 @@ Disassembly of section .text: 80001f6: bd08 pop {r3, pc} 80001f8: 00000000 .word 0x00000000 80001fc: 200001a4 .word 0x200001a4 - 8000200: 0800ab14 .word 0x0800ab14 + 8000200: 0800a99c .word 0x0800a99c 08000204 <__aeabi_uldivmod>: 8000204: b953 cbnz r3, 800021c <__aeabi_uldivmod+0x18> @@ -414,73 +414,73 @@ void MX_DMA_Init(void) 800056e: 2200 movs r2, #0 8000570: 2100 movs r1, #0 8000572: 200b movs r0, #11 - 8000574: f001 fb33 bl 8001bde + 8000574: f001 fb5b bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream0_IRQn); 8000578: 200b movs r0, #11 - 800057a: f001 fb4c bl 8001c16 + 800057a: f001 fb74 bl 8001c66 /* DMA1_Stream2_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream2_IRQn, 0, 0); 800057e: 2200 movs r2, #0 8000580: 2100 movs r1, #0 8000582: 200d movs r0, #13 - 8000584: f001 fb2b bl 8001bde + 8000584: f001 fb53 bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream2_IRQn); 8000588: 200d movs r0, #13 - 800058a: f001 fb44 bl 8001c16 + 800058a: f001 fb6c bl 8001c66 /* DMA1_Stream4_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream4_IRQn, 0, 0); 800058e: 2200 movs r2, #0 8000590: 2100 movs r1, #0 8000592: 200f movs r0, #15 - 8000594: f001 fb23 bl 8001bde + 8000594: f001 fb4b bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream4_IRQn); 8000598: 200f movs r0, #15 - 800059a: f001 fb3c bl 8001c16 + 800059a: f001 fb64 bl 8001c66 /* DMA1_Stream5_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream5_IRQn, 0, 0); 800059e: 2200 movs r2, #0 80005a0: 2100 movs r1, #0 80005a2: 2010 movs r0, #16 - 80005a4: f001 fb1b bl 8001bde + 80005a4: f001 fb43 bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream5_IRQn); 80005a8: 2010 movs r0, #16 - 80005aa: f001 fb34 bl 8001c16 + 80005aa: f001 fb5c bl 8001c66 /* DMA1_Stream6_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream6_IRQn, 0, 0); 80005ae: 2200 movs r2, #0 80005b0: 2100 movs r1, #0 80005b2: 2011 movs r0, #17 - 80005b4: f001 fb13 bl 8001bde + 80005b4: f001 fb3b bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream6_IRQn); 80005b8: 2011 movs r0, #17 - 80005ba: f001 fb2c bl 8001c16 + 80005ba: f001 fb54 bl 8001c66 /* DMA1_Stream7_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA1_Stream7_IRQn, 0, 0); 80005be: 2200 movs r2, #0 80005c0: 2100 movs r1, #0 80005c2: 202f movs r0, #47 @ 0x2f - 80005c4: f001 fb0b bl 8001bde + 80005c4: f001 fb33 bl 8001c2e HAL_NVIC_EnableIRQ(DMA1_Stream7_IRQn); 80005c8: 202f movs r0, #47 @ 0x2f - 80005ca: f001 fb24 bl 8001c16 + 80005ca: f001 fb4c bl 8001c66 /* DMA2_Stream2_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA2_Stream2_IRQn, 0, 0); 80005ce: 2200 movs r2, #0 80005d0: 2100 movs r1, #0 80005d2: 203a movs r0, #58 @ 0x3a - 80005d4: f001 fb03 bl 8001bde + 80005d4: f001 fb2b bl 8001c2e HAL_NVIC_EnableIRQ(DMA2_Stream2_IRQn); 80005d8: 203a movs r0, #58 @ 0x3a - 80005da: f001 fb1c bl 8001c16 + 80005da: f001 fb44 bl 8001c66 /* DMA2_Stream7_IRQn interrupt configuration */ HAL_NVIC_SetPriority(DMA2_Stream7_IRQn, 0, 0); 80005de: 2200 movs r2, #0 80005e0: 2100 movs r1, #0 80005e2: 2046 movs r0, #70 @ 0x46 - 80005e4: f001 fafb bl 8001bde + 80005e4: f001 fb23 bl 8001c2e HAL_NVIC_EnableIRQ(DMA2_Stream7_IRQn); 80005e8: 2046 movs r0, #70 @ 0x46 - 80005ea: f001 fb14 bl 8001c16 + 80005ea: f001 fb3c bl 8001c66 } 80005ee: bf00 nop @@ -582,14 +582,14 @@ void MX_GPIO_Init(void) 800069e: 2200 movs r2, #0 80006a0: f44f 7170 mov.w r1, #960 @ 0x3c0 80006a4: 4822 ldr r0, [pc, #136] @ (8000730 ) - 80006a6: f002 f87f bl 80027a8 + 80006a6: f002 f8a7 bl 80027f8 /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOA, GPIO_PIN_8, GPIO_PIN_RESET); 80006aa: 2200 movs r2, #0 80006ac: f44f 7180 mov.w r1, #256 @ 0x100 80006b0: 4820 ldr r0, [pc, #128] @ (8000734 ) - 80006b2: f002 f879 bl 80027a8 + 80006b2: f002 f8a1 bl 80027f8 /*Configure GPIO pins : PC4 PC5 */ GPIO_InitStruct.Pin = GPIO_PIN_4|GPIO_PIN_5; @@ -605,7 +605,7 @@ void MX_GPIO_Init(void) 80006c2: f107 0314 add.w r3, r7, #20 80006c6: 4619 mov r1, r3 80006c8: 4819 ldr r0, [pc, #100] @ (8000730 ) - 80006ca: f001 fec1 bl 8002450 + 80006ca: f001 fee9 bl 80024a0 /*Configure GPIO pins : PB0 PB1 PB2 PB10 */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_10; @@ -621,7 +621,7 @@ void MX_GPIO_Init(void) 80006dc: f107 0314 add.w r3, r7, #20 80006e0: 4619 mov r1, r3 80006e2: 4815 ldr r0, [pc, #84] @ (8000738 ) - 80006e4: f001 feb4 bl 8002450 + 80006e4: f001 fedc bl 80024a0 /*Configure GPIO pins : PC6 PC7 PC8 PC9 */ GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7|GPIO_PIN_8|GPIO_PIN_9; @@ -640,7 +640,7 @@ void MX_GPIO_Init(void) 80006fa: f107 0314 add.w r3, r7, #20 80006fe: 4619 mov r1, r3 8000700: 480b ldr r0, [pc, #44] @ (8000730 ) - 8000702: f001 fea5 bl 8002450 + 8000702: f001 fecd bl 80024a0 /*Configure GPIO pin : PA8 */ GPIO_InitStruct.Pin = GPIO_PIN_8; @@ -659,7 +659,7 @@ void MX_GPIO_Init(void) 8000718: f107 0314 add.w r3, r7, #20 800071c: 4619 mov r1, r3 800071e: 4805 ldr r0, [pc, #20] @ (8000734 ) - 8000720: f001 fe96 bl 8002450 + 8000720: f001 febe bl 80024a0 } 8000724: bf00 nop @@ -723,13 +723,13 @@ void MX_I2C1_Init(void) 8000776: 621a str r2, [r3, #32] if (HAL_I2C_Init(&hi2c1) != HAL_OK) 8000778: 4804 ldr r0, [pc, #16] @ (800078c ) - 800077a: f002 f82f bl 80027dc + 800077a: f002 f857 bl 800282c 800077e: 4603 mov r3, r0 8000780: 2b00 cmp r3, #0 8000782: d001 beq.n 8000788 { Error_Handler(); - 8000784: f000 fae8 bl 8000d58 + 8000784: f000 fb10 bl 8000da8 } /* USER CODE BEGIN I2C1_Init 2 */ @@ -806,7 +806,7 @@ void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) 80007ea: f107 0314 add.w r3, r7, #20 80007ee: 4619 mov r1, r3 80007f0: 480c ldr r0, [pc, #48] @ (8000824 ) - 80007f2: f001 fe2d bl 8002450 + 80007f2: f001 fe55 bl 80024a0 /* I2C1 clock enable */ __HAL_RCC_I2C1_CLK_ENABLE(); @@ -844,7 +844,7 @@ void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) int main(void) { 8000828: b580 push {r7, lr} - 800082a: b084 sub sp, #16 + 800082a: b088 sub sp, #32 800082c: af00 add r7, sp, #0 /* USER CODE END 1 */ @@ -852,14 +852,14 @@ int main(void) /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); - 800082e: f001 f865 bl 80018fc + 800082e: f001 f88d bl 800194c /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); - 8000832: f000 f897 bl 8000964 + 8000832: f000 f8af bl 8000994 /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ @@ -870,22306 +870,22269 @@ int main(void) MX_DMA_Init(); 800083a: f7ff fe79 bl 8000530 MX_TIM2_Init(); - 800083e: f000 fb7d bl 8000f3c + 800083e: f000 fba5 bl 8000f8c MX_TIM3_Init(); - 8000842: f000 fbd3 bl 8000fec + 8000842: f000 fbfb bl 800103c MX_UART4_Init(); - 8000846: f000 fcc5 bl 80011d4 + 8000846: f000 fced bl 8001224 MX_UART5_Init(); - 800084a: f000 fced bl 8001228 + 800084a: f000 fd15 bl 8001278 MX_USART1_UART_Init(); - 800084e: f000 fd15 bl 800127c + 800084e: f000 fd3d bl 80012cc MX_USART2_UART_Init(); - 8000852: f000 fd3d bl 80012d0 + 8000852: f000 fd65 bl 8001320 MX_I2C1_Init(); 8000856: f7ff ff71 bl 800073c MX_USB_DEVICE_Init(); - 800085a: f009 fc73 bl 800a144 + 800085a: f009 fbb7 bl 8009fcc /* USER CODE BEGIN 2 */ //Enable UART RX DMA for all ports HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); 800085e: 2210 movs r2, #16 - 8000860: 4934 ldr r1, [pc, #208] @ (8000934 ) - 8000862: 4835 ldr r0, [pc, #212] @ (8000938 ) - 8000864: f005 fa12 bl 8005c8c + 8000860: 493f ldr r1, [pc, #252] @ (8000960 ) + 8000862: 4840 ldr r0, [pc, #256] @ (8000964 ) + 8000864: f005 f9ae bl 8005bc4 HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); 8000868: 2210 movs r2, #16 - 800086a: 4934 ldr r1, [pc, #208] @ (800093c ) - 800086c: 4834 ldr r0, [pc, #208] @ (8000940 ) - 800086e: f005 fa0d bl 8005c8c + 800086a: 493f ldr r1, [pc, #252] @ (8000968 ) + 800086c: 483f ldr r0, [pc, #252] @ (800096c ) + 800086e: f005 f9a9 bl 8005bc4 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); 8000872: 2210 movs r2, #16 - 8000874: 4933 ldr r1, [pc, #204] @ (8000944 ) - 8000876: 4834 ldr r0, [pc, #208] @ (8000948 ) - 8000878: f005 fa08 bl 8005c8c + 8000874: 493e ldr r1, [pc, #248] @ (8000970 ) + 8000876: 483f ldr r0, [pc, #252] @ (8000974 ) + 8000878: f005 f9a4 bl 8005bc4 HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); 800087c: 2210 movs r2, #16 - 800087e: 4933 ldr r1, [pc, #204] @ (800094c ) - 8000880: 4833 ldr r0, [pc, #204] @ (8000950 ) - 8000882: f005 fa03 bl 8005c8c + 800087e: 493e ldr r1, [pc, #248] @ (8000978 ) + 8000880: 483e ldr r0, [pc, #248] @ (800097c ) + 8000882: f005 f99f bl 8005bc4 /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { switch (MODE){ - 8000886: 4b33 ldr r3, [pc, #204] @ (8000954 ) + 8000886: 4b3e ldr r3, [pc, #248] @ (8000980 ) 8000888: 781b ldrb r3, [r3, #0] 800088a: b2db uxtb r3, r3 800088c: 2b02 cmp r3, #2 800088e: d006 beq.n 800089e 8000890: 2b02 cmp r3, #2 - 8000892: dc4a bgt.n 800092a + 8000892: dc5f bgt.n 8000954 8000894: 2b00 cmp r3, #0 - 8000896: d007 beq.n 80008a8 + 8000896: d01c beq.n 80008d2 8000898: 2b01 cmp r3, #1 - 800089a: d03c beq.n 8000916 - 800089c: e045 b.n 800092a - case MODE_ACTIVE: - resetReport(); - 800089e: f000 fa4b bl 8000d38 + 800089a: d051 beq.n 8000940 matrixScan(); - 80008a2: f000 f9ef bl 8000c84 - break; - 80008a6: e040 b.n 800092a - - case MODE_INACTIVE: - //If the module is connected through the USB then mode is mainboard - if(hUsbDeviceFS.dev_state == USBD_STATE_CONFIGURED){ - 80008a8: 4b2b ldr r3, [pc, #172] @ (8000958 ) - 80008aa: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80008ae: b2db uxtb r3, r3 - 80008b0: 2b03 cmp r3, #3 - 80008b2: d106 bne.n 80008c2 - MODE = MODE_MAINBOARD; - 80008b4: 4b27 ldr r3, [pc, #156] @ (8000954 ) - 80008b6: 2201 movs r2, #1 - 80008b8: 701a strb r2, [r3, #0] - DEPTH = 0; - 80008ba: 4b28 ldr r3, [pc, #160] @ (800095c ) - 80008bc: 2200 movs r2, #0 - 80008be: 801a strh r2, [r3, #0] - HAL_UART_Transmit_DMA(&huart4, (uint8_t*)&REQ, sizeof(REQ)); - HAL_UART_Transmit_DMA(&huart5, (uint8_t*)&REQ, sizeof(REQ)); - HAL_Delay(500); - findBestParent(); //So true... - } - break; - 80008c0: e033 b.n 800092a - REQ.DEPTH = 0; - 80008c2: 2300 movs r3, #0 - 80008c4: 803b strh r3, [r7, #0] - REQ.TYPE = 0xFF; //Message code for request is 0xFF - 80008c6: 23ff movs r3, #255 @ 0xff - 80008c8: 807b strh r3, [r7, #2] - memset(REQ.KEYPRESS, 0, sizeof(REQ.KEYPRESS)); - 80008ca: 463b mov r3, r7 - 80008cc: 3304 adds r3, #4 - 80008ce: 220c movs r2, #12 - 80008d0: 2100 movs r1, #0 - 80008d2: 4618 mov r0, r3 - 80008d4: f00a f8e4 bl 800aaa0 - HAL_UART_Transmit_DMA(&huart1, (uint8_t*)&REQ, sizeof(REQ)); - 80008d8: 463b mov r3, r7 - 80008da: 2210 movs r2, #16 - 80008dc: 4619 mov r1, r3 - 80008de: 4816 ldr r0, [pc, #88] @ (8000938 ) - 80008e0: f005 f958 bl 8005b94 - HAL_UART_Transmit_DMA(&huart2, (uint8_t*)&REQ, sizeof(REQ)); - 80008e4: 463b mov r3, r7 - 80008e6: 2210 movs r2, #16 - 80008e8: 4619 mov r1, r3 - 80008ea: 4815 ldr r0, [pc, #84] @ (8000940 ) - 80008ec: f005 f952 bl 8005b94 - HAL_UART_Transmit_DMA(&huart4, (uint8_t*)&REQ, sizeof(REQ)); - 80008f0: 463b mov r3, r7 - 80008f2: 2210 movs r2, #16 - 80008f4: 4619 mov r1, r3 - 80008f6: 4814 ldr r0, [pc, #80] @ (8000948 ) - 80008f8: f005 f94c bl 8005b94 - HAL_UART_Transmit_DMA(&huart5, (uint8_t*)&REQ, sizeof(REQ)); - 80008fc: 463b mov r3, r7 - 80008fe: 2210 movs r2, #16 - 8000900: 4619 mov r1, r3 - 8000902: 4813 ldr r0, [pc, #76] @ (8000950 ) - 8000904: f005 f946 bl 8005b94 - HAL_Delay(500); - 8000908: f44f 70fa mov.w r0, #500 @ 0x1f4 - 800090c: f001 f868 bl 80019e0 - findBestParent(); //So true... - 8000910: f000 f8f0 bl 8000af4 - break; - 8000914: e009 b.n 800092a - - case MODE_MAINBOARD: - resetReport(); - 8000916: f000 fa0f bl 8000d38 - matrixScan(); - 800091a: f000 f9b3 bl 8000c84 USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); - 800091e: 220e movs r2, #14 - 8000920: 490f ldr r1, [pc, #60] @ (8000960 ) - 8000922: 480d ldr r0, [pc, #52] @ (8000958 ) - 8000924: f008 f842 bl 80089ac break; - 8000928: bf00 nop - } - HAL_Delay(50); - 800092a: 2032 movs r0, #50 @ 0x32 - 800092c: f001 f858 bl 80019e0 - switch (MODE){ - 8000930: e7a9 b.n 8000886 - 8000932: bf00 nop - 8000934: 20000230 .word 0x20000230 - 8000938: 2000038c .word 0x2000038c - 800093c: 20000240 .word 0x20000240 - 8000940: 200003d4 .word 0x200003d4 - 8000944: 20000250 .word 0x20000250 - 8000948: 200002fc .word 0x200002fc - 800094c: 20000220 .word 0x20000220 - 8000950: 20000344 .word 0x20000344 - 8000954: 20000268 .word 0x20000268 - 8000958: 20000724 .word 0x20000724 - 800095c: 20000260 .word 0x20000260 - 8000960: 20000210 .word 0x20000210 -08000964 : + default: + break; + 800089c: e05a b.n 8000954 + resetReport(); + 800089e: f000 fa73 bl 8000d88 + matrixScan(); + 80008a2: f000 fa17 bl 8000cd4 + UARTREPORT.DEPTH = DEPTH; + 80008a6: 4b37 ldr r3, [pc, #220] @ (8000984 ) + 80008a8: 881b ldrh r3, [r3, #0] + 80008aa: 823b strh r3, [r7, #16] + UARTREPORT.TYPE = 0xEE; + 80008ac: 23ee movs r3, #238 @ 0xee + 80008ae: 827b strh r3, [r7, #18] + memset(UARTREPORT.KEYPRESS, 1, sizeof(UARTREPORT.KEYPRESS)); + 80008b0: f107 0310 add.w r3, r7, #16 + 80008b4: 3304 adds r3, #4 + 80008b6: 220c movs r2, #12 + 80008b8: 2101 movs r1, #1 + 80008ba: 4618 mov r0, r3 + 80008bc: f00a f834 bl 800a928 + HAL_UART_Transmit_DMA(PARENT, (uint8_t*)&UARTREPORT, sizeof(UARTREPORT)); + 80008c0: 4b31 ldr r3, [pc, #196] @ (8000988 ) + 80008c2: 681b ldr r3, [r3, #0] + 80008c4: f107 0110 add.w r1, r7, #16 + 80008c8: 2210 movs r2, #16 + 80008ca: 4618 mov r0, r3 + 80008cc: f005 f8fe bl 8005acc + break; + 80008d0: e041 b.n 8000956 + if(hUsbDeviceFS.dev_state == USBD_STATE_CONFIGURED){ + 80008d2: 4b2e ldr r3, [pc, #184] @ (800098c ) + 80008d4: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80008d8: b2db uxtb r3, r3 + 80008da: 2b03 cmp r3, #3 + 80008dc: d106 bne.n 80008ec + MODE = MODE_MAINBOARD; + 80008de: 4b28 ldr r3, [pc, #160] @ (8000980 ) + 80008e0: 2201 movs r2, #1 + 80008e2: 701a strb r2, [r3, #0] + DEPTH = 0; + 80008e4: 4b27 ldr r3, [pc, #156] @ (8000984 ) + 80008e6: 2200 movs r2, #0 + 80008e8: 801a strh r2, [r3, #0] + break; + 80008ea: e034 b.n 8000956 + REQ.DEPTH = 0; + 80008ec: 2300 movs r3, #0 + 80008ee: 803b strh r3, [r7, #0] + REQ.TYPE = 0xFF; //Message code for request is 0xFF + 80008f0: 23ff movs r3, #255 @ 0xff + 80008f2: 807b strh r3, [r7, #2] + memset(REQ.KEYPRESS, 0, sizeof(REQ.KEYPRESS)); + 80008f4: 463b mov r3, r7 + 80008f6: 3304 adds r3, #4 + 80008f8: 220c movs r2, #12 + 80008fa: 2100 movs r1, #0 + 80008fc: 4618 mov r0, r3 + 80008fe: f00a f813 bl 800a928 + HAL_UART_Transmit_DMA(&huart1, (uint8_t*)&REQ, sizeof(REQ)); + 8000902: 463b mov r3, r7 + 8000904: 2210 movs r2, #16 + 8000906: 4619 mov r1, r3 + 8000908: 4816 ldr r0, [pc, #88] @ (8000964 ) + 800090a: f005 f8df bl 8005acc + HAL_UART_Transmit_DMA(&huart2, (uint8_t*)&REQ, sizeof(REQ)); + 800090e: 463b mov r3, r7 + 8000910: 2210 movs r2, #16 + 8000912: 4619 mov r1, r3 + 8000914: 4815 ldr r0, [pc, #84] @ (800096c ) + 8000916: f005 f8d9 bl 8005acc + HAL_UART_Transmit_DMA(&huart4, (uint8_t*)&REQ, sizeof(REQ)); + 800091a: 463b mov r3, r7 + 800091c: 2210 movs r2, #16 + 800091e: 4619 mov r1, r3 + 8000920: 4814 ldr r0, [pc, #80] @ (8000974 ) + 8000922: f005 f8d3 bl 8005acc + HAL_UART_Transmit_DMA(&huart5, (uint8_t*)&REQ, sizeof(REQ)); + 8000926: 463b mov r3, r7 + 8000928: 2210 movs r2, #16 + 800092a: 4619 mov r1, r3 + 800092c: 4813 ldr r0, [pc, #76] @ (800097c ) + 800092e: f005 f8cd bl 8005acc + HAL_Delay(500); + 8000932: f44f 70fa mov.w r0, #500 @ 0x1f4 + 8000936: f001 f87b bl 8001a30 + findBestParent(); //So true... + 800093a: f000 f8f3 bl 8000b24 + break; + 800093e: e00a b.n 8000956 + resetReport(); + 8000940: f000 fa22 bl 8000d88 + matrixScan(); + 8000944: f000 f9c6 bl 8000cd4 + USBD_HID_SendReport(&hUsbDeviceFS, (uint8_t*)&REPORT, sizeof(REPORT)); + 8000948: 220e movs r2, #14 + 800094a: 4911 ldr r1, [pc, #68] @ (8000990 ) + 800094c: 480f ldr r0, [pc, #60] @ (800098c ) + 800094e: f007 ff71 bl 8008834 + break; + 8000952: e000 b.n 8000956 + break; + 8000954: bf00 nop + } + + HAL_Delay(50); + 8000956: 2032 movs r0, #50 @ 0x32 + 8000958: f001 f86a bl 8001a30 + switch (MODE){ + 800095c: e793 b.n 8000886 + 800095e: bf00 nop + 8000960: 20000230 .word 0x20000230 + 8000964: 2000038c .word 0x2000038c + 8000968: 20000240 .word 0x20000240 + 800096c: 200003d4 .word 0x200003d4 + 8000970: 20000250 .word 0x20000250 + 8000974: 200002fc .word 0x200002fc + 8000978: 20000220 .word 0x20000220 + 800097c: 20000344 .word 0x20000344 + 8000980: 20000268 .word 0x20000268 + 8000984: 20000260 .word 0x20000260 + 8000988: 20000264 .word 0x20000264 + 800098c: 20000724 .word 0x20000724 + 8000990: 20000210 .word 0x20000210 + +08000994 : /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { - 8000964: b580 push {r7, lr} - 8000966: b094 sub sp, #80 @ 0x50 - 8000968: af00 add r7, sp, #0 + 8000994: b580 push {r7, lr} + 8000996: b094 sub sp, #80 @ 0x50 + 8000998: af00 add r7, sp, #0 RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - 800096a: f107 031c add.w r3, r7, #28 - 800096e: 2234 movs r2, #52 @ 0x34 - 8000970: 2100 movs r1, #0 - 8000972: 4618 mov r0, r3 - 8000974: f00a f894 bl 800aaa0 + 800099a: f107 031c add.w r3, r7, #28 + 800099e: 2234 movs r2, #52 @ 0x34 + 80009a0: 2100 movs r1, #0 + 80009a2: 4618 mov r0, r3 + 80009a4: f009 ffc0 bl 800a928 RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; - 8000978: f107 0308 add.w r3, r7, #8 - 800097c: 2200 movs r2, #0 - 800097e: 601a str r2, [r3, #0] - 8000980: 605a str r2, [r3, #4] - 8000982: 609a str r2, [r3, #8] - 8000984: 60da str r2, [r3, #12] - 8000986: 611a str r2, [r3, #16] + 80009a8: f107 0308 add.w r3, r7, #8 + 80009ac: 2200 movs r2, #0 + 80009ae: 601a str r2, [r3, #0] + 80009b0: 605a str r2, [r3, #4] + 80009b2: 609a str r2, [r3, #8] + 80009b4: 60da str r2, [r3, #12] + 80009b6: 611a str r2, [r3, #16] /** Configure the main internal regulator output voltage */ __HAL_RCC_PWR_CLK_ENABLE(); - 8000988: 2300 movs r3, #0 - 800098a: 607b str r3, [r7, #4] - 800098c: 4b29 ldr r3, [pc, #164] @ (8000a34 ) - 800098e: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000990: 4a28 ldr r2, [pc, #160] @ (8000a34 ) - 8000992: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8000996: 6413 str r3, [r2, #64] @ 0x40 - 8000998: 4b26 ldr r3, [pc, #152] @ (8000a34 ) - 800099a: 6c1b ldr r3, [r3, #64] @ 0x40 - 800099c: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80009a0: 607b str r3, [r7, #4] - 80009a2: 687b ldr r3, [r7, #4] + 80009b8: 2300 movs r3, #0 + 80009ba: 607b str r3, [r7, #4] + 80009bc: 4b29 ldr r3, [pc, #164] @ (8000a64 ) + 80009be: 6c1b ldr r3, [r3, #64] @ 0x40 + 80009c0: 4a28 ldr r2, [pc, #160] @ (8000a64 ) + 80009c2: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80009c6: 6413 str r3, [r2, #64] @ 0x40 + 80009c8: 4b26 ldr r3, [pc, #152] @ (8000a64 ) + 80009ca: 6c1b ldr r3, [r3, #64] @ 0x40 + 80009cc: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 80009d0: 607b str r3, [r7, #4] + 80009d2: 687b ldr r3, [r7, #4] __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE3); - 80009a4: 2300 movs r3, #0 - 80009a6: 603b str r3, [r7, #0] - 80009a8: 4b23 ldr r3, [pc, #140] @ (8000a38 ) - 80009aa: 681b ldr r3, [r3, #0] - 80009ac: f423 4340 bic.w r3, r3, #49152 @ 0xc000 - 80009b0: 4a21 ldr r2, [pc, #132] @ (8000a38 ) - 80009b2: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 80009b6: 6013 str r3, [r2, #0] - 80009b8: 4b1f ldr r3, [pc, #124] @ (8000a38 ) - 80009ba: 681b ldr r3, [r3, #0] - 80009bc: f403 4340 and.w r3, r3, #49152 @ 0xc000 - 80009c0: 603b str r3, [r7, #0] - 80009c2: 683b ldr r3, [r7, #0] + 80009d4: 2300 movs r3, #0 + 80009d6: 603b str r3, [r7, #0] + 80009d8: 4b23 ldr r3, [pc, #140] @ (8000a68 ) + 80009da: 681b ldr r3, [r3, #0] + 80009dc: f423 4340 bic.w r3, r3, #49152 @ 0xc000 + 80009e0: 4a21 ldr r2, [pc, #132] @ (8000a68 ) + 80009e2: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 80009e6: 6013 str r3, [r2, #0] + 80009e8: 4b1f ldr r3, [pc, #124] @ (8000a68 ) + 80009ea: 681b ldr r3, [r3, #0] + 80009ec: f403 4340 and.w r3, r3, #49152 @ 0xc000 + 80009f0: 603b str r3, [r7, #0] + 80009f2: 683b ldr r3, [r7, #0] /** Initializes the RCC Oscillators according to the specified parameters * in the RCC_OscInitTypeDef structure. */ RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; - 80009c4: 2301 movs r3, #1 - 80009c6: 61fb str r3, [r7, #28] + 80009f4: 2301 movs r3, #1 + 80009f6: 61fb str r3, [r7, #28] RCC_OscInitStruct.HSEState = RCC_HSE_ON; - 80009c8: f44f 3380 mov.w r3, #65536 @ 0x10000 - 80009cc: 623b str r3, [r7, #32] + 80009f8: f44f 3380 mov.w r3, #65536 @ 0x10000 + 80009fc: 623b str r3, [r7, #32] RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; - 80009ce: 2302 movs r3, #2 - 80009d0: 637b str r3, [r7, #52] @ 0x34 + 80009fe: 2302 movs r3, #2 + 8000a00: 637b str r3, [r7, #52] @ 0x34 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; - 80009d2: f44f 0380 mov.w r3, #4194304 @ 0x400000 - 80009d6: 63bb str r3, [r7, #56] @ 0x38 + 8000a02: f44f 0380 mov.w r3, #4194304 @ 0x400000 + 8000a06: 63bb str r3, [r7, #56] @ 0x38 RCC_OscInitStruct.PLL.PLLM = 4; - 80009d8: 2304 movs r3, #4 - 80009da: 63fb str r3, [r7, #60] @ 0x3c + 8000a08: 2304 movs r3, #4 + 8000a0a: 63fb str r3, [r7, #60] @ 0x3c RCC_OscInitStruct.PLL.PLLN = 96; - 80009dc: 2360 movs r3, #96 @ 0x60 - 80009de: 643b str r3, [r7, #64] @ 0x40 + 8000a0c: 2360 movs r3, #96 @ 0x60 + 8000a0e: 643b str r3, [r7, #64] @ 0x40 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; - 80009e0: 2302 movs r3, #2 - 80009e2: 647b str r3, [r7, #68] @ 0x44 + 8000a10: 2302 movs r3, #2 + 8000a12: 647b str r3, [r7, #68] @ 0x44 RCC_OscInitStruct.PLL.PLLQ = 4; - 80009e4: 2304 movs r3, #4 - 80009e6: 64bb str r3, [r7, #72] @ 0x48 + 8000a14: 2304 movs r3, #4 + 8000a16: 64bb str r3, [r7, #72] @ 0x48 RCC_OscInitStruct.PLL.PLLR = 2; - 80009e8: 2302 movs r3, #2 - 80009ea: 64fb str r3, [r7, #76] @ 0x4c + 8000a18: 2302 movs r3, #2 + 8000a1a: 64fb str r3, [r7, #76] @ 0x4c if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - 80009ec: f107 031c add.w r3, r7, #28 - 80009f0: 4618 mov r0, r3 - 80009f2: f004 f931 bl 8004c58 - 80009f6: 4603 mov r3, r0 - 80009f8: 2b00 cmp r3, #0 - 80009fa: d001 beq.n 8000a00 + 8000a1c: f107 031c add.w r3, r7, #28 + 8000a20: 4618 mov r0, r3 + 8000a22: f004 f941 bl 8004ca8 + 8000a26: 4603 mov r3, r0 + 8000a28: 2b00 cmp r3, #0 + 8000a2a: d001 beq.n 8000a30 { Error_Handler(); - 80009fc: f000 f9ac bl 8000d58 + 8000a2c: f000 f9bc bl 8000da8 } /** Initializes the CPU, AHB and APB buses clocks */ RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - 8000a00: 230f movs r3, #15 - 8000a02: 60bb str r3, [r7, #8] + 8000a30: 230f movs r3, #15 + 8000a32: 60bb str r3, [r7, #8] |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; - 8000a04: 2302 movs r3, #2 - 8000a06: 60fb str r3, [r7, #12] + 8000a34: 2302 movs r3, #2 + 8000a36: 60fb str r3, [r7, #12] RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV2; - 8000a08: 2380 movs r3, #128 @ 0x80 - 8000a0a: 613b str r3, [r7, #16] + 8000a38: 2380 movs r3, #128 @ 0x80 + 8000a3a: 613b str r3, [r7, #16] RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; - 8000a0c: f44f 5380 mov.w r3, #4096 @ 0x1000 - 8000a10: 617b str r3, [r7, #20] + 8000a3c: f44f 5380 mov.w r3, #4096 @ 0x1000 + 8000a40: 617b str r3, [r7, #20] RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - 8000a12: 2300 movs r3, #0 - 8000a14: 61bb str r3, [r7, #24] + 8000a42: 2300 movs r3, #0 + 8000a44: 61bb str r3, [r7, #24] if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_1) != HAL_OK) - 8000a16: f107 0308 add.w r3, r7, #8 - 8000a1a: 2101 movs r1, #1 - 8000a1c: 4618 mov r0, r3 - 8000a1e: f003 faa7 bl 8003f70 - 8000a22: 4603 mov r3, r0 - 8000a24: 2b00 cmp r3, #0 - 8000a26: d001 beq.n 8000a2c + 8000a46: f107 0308 add.w r3, r7, #8 + 8000a4a: 2101 movs r1, #1 + 8000a4c: 4618 mov r0, r3 + 8000a4e: f003 fab7 bl 8003fc0 + 8000a52: 4603 mov r3, r0 + 8000a54: 2b00 cmp r3, #0 + 8000a56: d001 beq.n 8000a5c { Error_Handler(); - 8000a28: f000 f996 bl 8000d58 + 8000a58: f000 f9a6 bl 8000da8 } } - 8000a2c: bf00 nop - 8000a2e: 3750 adds r7, #80 @ 0x50 - 8000a30: 46bd mov sp, r7 - 8000a32: bd80 pop {r7, pc} - 8000a34: 40023800 .word 0x40023800 - 8000a38: 40007000 .word 0x40007000 + 8000a5c: bf00 nop + 8000a5e: 3750 adds r7, #80 @ 0x50 + 8000a60: 46bd mov sp, r7 + 8000a62: bd80 pop {r7, pc} + 8000a64: 40023800 .word 0x40023800 + 8000a68: 40007000 .word 0x40007000 -08000a3c : +08000a6c : /* USER CODE BEGIN 4 */ // UART Message Requests Goes Here void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { - 8000a3c: b580 push {r7, lr} - 8000a3e: b082 sub sp, #8 - 8000a40: af00 add r7, sp, #0 - 8000a42: 6078 str r0, [r7, #4] + 8000a6c: b580 push {r7, lr} + 8000a6e: b082 sub sp, #8 + 8000a70: af00 add r7, sp, #0 + 8000a72: 6078 str r0, [r7, #4] if (huart->Instance == USART1) { - 8000a44: 687b ldr r3, [r7, #4] - 8000a46: 681b ldr r3, [r3, #0] - 8000a48: 4a1e ldr r2, [pc, #120] @ (8000ac4 ) - 8000a4a: 4293 cmp r3, r2 - 8000a4c: d109 bne.n 8000a62 - handleUARTMessages((uint8_t*)&RX1Msg, huart); - 8000a4e: 6879 ldr r1, [r7, #4] - 8000a50: 481d ldr r0, [pc, #116] @ (8000ac8 ) - 8000a52: f000 f889 bl 8000b68 + 8000a74: 687b ldr r3, [r7, #4] + 8000a76: 681b ldr r3, [r3, #0] + 8000a78: 4a1e ldr r2, [pc, #120] @ (8000af4 ) + 8000a7a: 4293 cmp r3, r2 + 8000a7c: d109 bne.n 8000a92 + handleUARTMessages((uint8_t*)&RX1Msg, &huart1); + 8000a7e: 491e ldr r1, [pc, #120] @ (8000af8 ) + 8000a80: 481e ldr r0, [pc, #120] @ (8000afc ) + 8000a82: f000 f891 bl 8000ba8 HAL_UART_Receive_DMA(&huart1, (uint8_t*)&RX1Msg, sizeof(UARTMessage)); - 8000a56: 2210 movs r2, #16 - 8000a58: 491b ldr r1, [pc, #108] @ (8000ac8 ) - 8000a5a: 481c ldr r0, [pc, #112] @ (8000acc ) - 8000a5c: f005 f916 bl 8005c8c + 8000a86: 2210 movs r2, #16 + 8000a88: 491c ldr r1, [pc, #112] @ (8000afc ) + 8000a8a: 481b ldr r0, [pc, #108] @ (8000af8 ) + 8000a8c: f005 f89a bl 8005bc4 } else if (huart->Instance == UART5) { - handleUARTMessages((uint8_t*)&RX5Msg, huart); + handleUARTMessages((uint8_t*)&RX5Msg, &huart5); HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); } } - 8000a60: e02b b.n 8000aba + 8000a90: e02b b.n 8000aea else if (huart->Instance == USART2) { - 8000a62: 687b ldr r3, [r7, #4] - 8000a64: 681b ldr r3, [r3, #0] - 8000a66: 4a1a ldr r2, [pc, #104] @ (8000ad0 ) - 8000a68: 4293 cmp r3, r2 - 8000a6a: d109 bne.n 8000a80 - handleUARTMessages((uint8_t*)&RX2Msg, huart); - 8000a6c: 6879 ldr r1, [r7, #4] - 8000a6e: 4819 ldr r0, [pc, #100] @ (8000ad4 ) - 8000a70: f000 f87a bl 8000b68 + 8000a92: 687b ldr r3, [r7, #4] + 8000a94: 681b ldr r3, [r3, #0] + 8000a96: 4a1a ldr r2, [pc, #104] @ (8000b00 ) + 8000a98: 4293 cmp r3, r2 + 8000a9a: d109 bne.n 8000ab0 + handleUARTMessages((uint8_t*)&RX2Msg, &huart2); + 8000a9c: 4919 ldr r1, [pc, #100] @ (8000b04 ) + 8000a9e: 481a ldr r0, [pc, #104] @ (8000b08 ) + 8000aa0: f000 f882 bl 8000ba8 HAL_UART_Receive_DMA(&huart2, (uint8_t*)&RX2Msg, sizeof(UARTMessage)); - 8000a74: 2210 movs r2, #16 - 8000a76: 4917 ldr r1, [pc, #92] @ (8000ad4 ) - 8000a78: 4817 ldr r0, [pc, #92] @ (8000ad8 ) - 8000a7a: f005 f907 bl 8005c8c + 8000aa4: 2210 movs r2, #16 + 8000aa6: 4918 ldr r1, [pc, #96] @ (8000b08 ) + 8000aa8: 4816 ldr r0, [pc, #88] @ (8000b04 ) + 8000aaa: f005 f88b bl 8005bc4 } - 8000a7e: e01c b.n 8000aba + 8000aae: e01c b.n 8000aea else if (huart->Instance == UART4) { - 8000a80: 687b ldr r3, [r7, #4] - 8000a82: 681b ldr r3, [r3, #0] - 8000a84: 4a15 ldr r2, [pc, #84] @ (8000adc ) - 8000a86: 4293 cmp r3, r2 - 8000a88: d109 bne.n 8000a9e - handleUARTMessages((uint8_t*)&RX4Msg, huart); - 8000a8a: 6879 ldr r1, [r7, #4] - 8000a8c: 4814 ldr r0, [pc, #80] @ (8000ae0 ) - 8000a8e: f000 f86b bl 8000b68 + 8000ab0: 687b ldr r3, [r7, #4] + 8000ab2: 681b ldr r3, [r3, #0] + 8000ab4: 4a15 ldr r2, [pc, #84] @ (8000b0c ) + 8000ab6: 4293 cmp r3, r2 + 8000ab8: d109 bne.n 8000ace + handleUARTMessages((uint8_t*)&RX4Msg, &huart4); + 8000aba: 4915 ldr r1, [pc, #84] @ (8000b10 ) + 8000abc: 4815 ldr r0, [pc, #84] @ (8000b14 ) + 8000abe: f000 f873 bl 8000ba8 HAL_UART_Receive_DMA(&huart4, (uint8_t*)&RX4Msg, sizeof(UARTMessage)); - 8000a92: 2210 movs r2, #16 - 8000a94: 4912 ldr r1, [pc, #72] @ (8000ae0 ) - 8000a96: 4813 ldr r0, [pc, #76] @ (8000ae4 ) - 8000a98: f005 f8f8 bl 8005c8c + 8000ac2: 2210 movs r2, #16 + 8000ac4: 4913 ldr r1, [pc, #76] @ (8000b14 ) + 8000ac6: 4812 ldr r0, [pc, #72] @ (8000b10 ) + 8000ac8: f005 f87c bl 8005bc4 } - 8000a9c: e00d b.n 8000aba + 8000acc: e00d b.n 8000aea else if (huart->Instance == UART5) { - 8000a9e: 687b ldr r3, [r7, #4] - 8000aa0: 681b ldr r3, [r3, #0] - 8000aa2: 4a11 ldr r2, [pc, #68] @ (8000ae8 ) - 8000aa4: 4293 cmp r3, r2 - 8000aa6: d108 bne.n 8000aba - handleUARTMessages((uint8_t*)&RX5Msg, huart); - 8000aa8: 6879 ldr r1, [r7, #4] - 8000aaa: 4810 ldr r0, [pc, #64] @ (8000aec ) - 8000aac: f000 f85c bl 8000b68 + 8000ace: 687b ldr r3, [r7, #4] + 8000ad0: 681b ldr r3, [r3, #0] + 8000ad2: 4a11 ldr r2, [pc, #68] @ (8000b18 ) + 8000ad4: 4293 cmp r3, r2 + 8000ad6: d108 bne.n 8000aea + handleUARTMessages((uint8_t*)&RX5Msg, &huart5); + 8000ad8: 4910 ldr r1, [pc, #64] @ (8000b1c ) + 8000ada: 4811 ldr r0, [pc, #68] @ (8000b20 ) + 8000adc: f000 f864 bl 8000ba8 HAL_UART_Receive_DMA(&huart5, (uint8_t*)&RX5Msg, sizeof(UARTMessage)); - 8000ab0: 2210 movs r2, #16 - 8000ab2: 490e ldr r1, [pc, #56] @ (8000aec ) - 8000ab4: 480e ldr r0, [pc, #56] @ (8000af0 ) - 8000ab6: f005 f8e9 bl 8005c8c + 8000ae0: 2210 movs r2, #16 + 8000ae2: 490f ldr r1, [pc, #60] @ (8000b20 ) + 8000ae4: 480d ldr r0, [pc, #52] @ (8000b1c ) + 8000ae6: f005 f86d bl 8005bc4 } - 8000aba: bf00 nop - 8000abc: 3708 adds r7, #8 - 8000abe: 46bd mov sp, r7 - 8000ac0: bd80 pop {r7, pc} - 8000ac2: bf00 nop - 8000ac4: 40011000 .word 0x40011000 - 8000ac8: 20000230 .word 0x20000230 - 8000acc: 2000038c .word 0x2000038c - 8000ad0: 40004400 .word 0x40004400 - 8000ad4: 20000240 .word 0x20000240 - 8000ad8: 200003d4 .word 0x200003d4 - 8000adc: 40004c00 .word 0x40004c00 - 8000ae0: 20000250 .word 0x20000250 - 8000ae4: 200002fc .word 0x200002fc - 8000ae8: 40005000 .word 0x40005000 - 8000aec: 20000220 .word 0x20000220 - 8000af0: 20000344 .word 0x20000344 + 8000aea: bf00 nop + 8000aec: 3708 adds r7, #8 + 8000aee: 46bd mov sp, r7 + 8000af0: bd80 pop {r7, pc} + 8000af2: bf00 nop + 8000af4: 40011000 .word 0x40011000 + 8000af8: 2000038c .word 0x2000038c + 8000afc: 20000230 .word 0x20000230 + 8000b00: 40004400 .word 0x40004400 + 8000b04: 200003d4 .word 0x200003d4 + 8000b08: 20000240 .word 0x20000240 + 8000b0c: 40004c00 .word 0x40004c00 + 8000b10: 200002fc .word 0x200002fc + 8000b14: 20000250 .word 0x20000250 + 8000b18: 40005000 .word 0x40005000 + 8000b1c: 20000344 .word 0x20000344 + 8000b20: 20000220 .word 0x20000220 -08000af4 : +08000b24 : void findBestParent(){ - 8000af4: b480 push {r7} - 8000af6: b085 sub sp, #20 - 8000af8: af00 add r7, sp, #0 + 8000b24: b580 push {r7, lr} + 8000b26: b084 sub sp, #16 + 8000b28: af00 add r7, sp, #0 //Find least depth parent uint16_t least_val = 0xFF; - 8000afa: 23ff movs r3, #255 @ 0xff - 8000afc: 81fb strh r3, [r7, #14] + 8000b2a: 23ff movs r3, #255 @ 0xff + 8000b2c: 81fb strh r3, [r7, #14] UART_HandleTypeDef* least_port = NULL; - 8000afe: 2300 movs r3, #0 - 8000b00: 60bb str r3, [r7, #8] + 8000b2e: 2300 movs r3, #0 + 8000b30: 60bb str r3, [r7, #8] for(uint8_t i = 0; i < 4; i++){ - 8000b02: 2300 movs r3, #0 - 8000b04: 71fb strb r3, [r7, #7] - 8000b06: e013 b.n 8000b30 + 8000b32: 2300 movs r3, #0 + 8000b34: 71fb strb r3, [r7, #7] + 8000b36: e013 b.n 8000b60 if(PORT_DEPTH[i]) - 8000b0c: f832 3013 ldrh.w r3, [r2, r3, lsl #1] - 8000b10: 89fa ldrh r2, [r7, #14] - 8000b12: 429a cmp r2, r3 - 8000b14: d909 bls.n 8000b2a + 8000b38: 79fb ldrb r3, [r7, #7] + 8000b3a: 4a16 ldr r2, [pc, #88] @ (8000b94 ) + 8000b3c: f832 3013 ldrh.w r3, [r2, r3, lsl #1] + 8000b40: 89fa ldrh r2, [r7, #14] + 8000b42: 429a cmp r2, r3 + 8000b44: d909 bls.n 8000b5a least_port = PORTS[i]; - 8000b16: 79fb ldrb r3, [r7, #7] - 8000b18: 4a10 ldr r2, [pc, #64] @ (8000b5c ) - 8000b1a: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8000b1e: 60bb str r3, [r7, #8] + 8000b46: 79fb ldrb r3, [r7, #7] + 8000b48: 4a13 ldr r2, [pc, #76] @ (8000b98 ) + 8000b4a: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 8000b4e: 60bb str r3, [r7, #8] least_val = PORT_DEPTH[i]; - 8000b20: 79fb ldrb r3, [r7, #7] - 8000b22: 4a0d ldr r2, [pc, #52] @ (8000b58 ) - 8000b24: f832 3013 ldrh.w r3, [r2, r3, lsl #1] - 8000b28: 81fb strh r3, [r7, #14] + 8000b50: 79fb ldrb r3, [r7, #7] + 8000b52: 4a10 ldr r2, [pc, #64] @ (8000b94 ) + 8000b54: f832 3013 ldrh.w r3, [r2, r3, lsl #1] + 8000b58: 81fb strh r3, [r7, #14] for(uint8_t i = 0; i < 4; i++){ - 8000b2a: 79fb ldrb r3, [r7, #7] - 8000b2c: 3301 adds r3, #1 - 8000b2e: 71fb strb r3, [r7, #7] - 8000b30: 79fb ldrb r3, [r7, #7] - 8000b32: 2b03 cmp r3, #3 - 8000b34: d9e8 bls.n 8000b08 + 8000b5a: 79fb ldrb r3, [r7, #7] + 8000b5c: 3301 adds r3, #1 + 8000b5e: 71fb strb r3, [r7, #7] + 8000b60: 79fb ldrb r3, [r7, #7] + 8000b62: 2b03 cmp r3, #3 + 8000b64: d9e8 bls.n 8000b38 } } //Assign if valid if(least_val < 0xFF){ - 8000b36: 89fb ldrh r3, [r7, #14] - 8000b38: 2bfe cmp r3, #254 @ 0xfe - 8000b3a: d807 bhi.n 8000b4c + 8000b66: 89fb ldrh r3, [r7, #14] + 8000b68: 2bfe cmp r3, #254 @ 0xfe + 8000b6a: d80e bhi.n 8000b8a PARENT = least_port; - 8000b3c: 4a08 ldr r2, [pc, #32] @ (8000b60 ) - 8000b3e: 68bb ldr r3, [r7, #8] - 8000b40: 6013 str r3, [r2, #0] + 8000b6c: 4a0b ldr r2, [pc, #44] @ (8000b9c ) + 8000b6e: 68bb ldr r3, [r7, #8] + 8000b70: 6013 str r3, [r2, #0] DEPTH = least_val + 1; - 8000b42: 89fb ldrh r3, [r7, #14] - 8000b44: 3301 adds r3, #1 - 8000b46: b29a uxth r2, r3 - 8000b48: 4b06 ldr r3, [pc, #24] @ (8000b64 ) - 8000b4a: 801a strh r2, [r3, #0] + 8000b72: 89fb ldrh r3, [r7, #14] + 8000b74: 3301 adds r3, #1 + 8000b76: b29a uxth r2, r3 + 8000b78: 4b09 ldr r3, [pc, #36] @ (8000ba0 ) + 8000b7a: 801a strh r2, [r3, #0] + MODE = MODE_ACTIVE; + 8000b7c: 4b09 ldr r3, [pc, #36] @ (8000ba4 ) + 8000b7e: 2202 movs r2, #2 + 8000b80: 701a strb r2, [r3, #0] + HAL_Delay(500); + 8000b82: f44f 70fa mov.w r0, #500 @ 0x1f4 + 8000b86: f000 ff53 bl 8001a30 } } - 8000b4c: bf00 nop - 8000b4e: 3714 adds r7, #20 - 8000b50: 46bd mov sp, r7 - 8000b52: f85d 7b04 ldr.w r7, [sp], #4 - 8000b56: 4770 bx lr - 8000b58: 20000078 .word 0x20000078 - 8000b5c: 20000080 .word 0x20000080 - 8000b60: 20000264 .word 0x20000264 - 8000b64: 20000260 .word 0x20000260 + 8000b8a: bf00 nop + 8000b8c: 3710 adds r7, #16 + 8000b8e: 46bd mov sp, r7 + 8000b90: bd80 pop {r7, pc} + 8000b92: bf00 nop + 8000b94: 20000078 .word 0x20000078 + 8000b98: 20000080 .word 0x20000080 + 8000b9c: 20000264 .word 0x20000264 + 8000ba0: 20000260 .word 0x20000260 + 8000ba4: 20000268 .word 0x20000268 -08000b68 : +08000ba8 : // Called when UART RX interrupt completes void handleUARTMessages(uint8_t *data, UART_HandleTypeDef *sender) { - 8000b68: b580 push {r7, lr} - 8000b6a: b08a sub sp, #40 @ 0x28 - 8000b6c: af00 add r7, sp, #0 - 8000b6e: 6078 str r0, [r7, #4] - 8000b70: 6039 str r1, [r7, #0] + 8000ba8: b580 push {r7, lr} + 8000baa: b08a sub sp, #40 @ 0x28 + 8000bac: af00 add r7, sp, #0 + 8000bae: 6078 str r0, [r7, #4] + 8000bb0: 6039 str r1, [r7, #0] UARTMessage msg; UARTMessage reply; // Parse incoming message into struct memcpy(&msg, data, sizeof(UARTMessage)); - 8000b72: f107 0318 add.w r3, r7, #24 - 8000b76: 2210 movs r2, #16 - 8000b78: 6879 ldr r1, [r7, #4] - 8000b7a: 4618 mov r0, r3 - 8000b7c: f009 ffbc bl 800aaf8 + 8000bb2: f107 0318 add.w r3, r7, #24 + 8000bb6: 2210 movs r2, #16 + 8000bb8: 6879 ldr r1, [r7, #4] + 8000bba: 4618 mov r0, r3 + 8000bbc: f009 fee0 bl 800a980 switch(msg.TYPE) { - 8000b80: 8b7b ldrh r3, [r7, #26] - 8000b82: 2baa cmp r3, #170 @ 0xaa - 8000b84: d002 beq.n 8000b8c - 8000b86: 2bff cmp r3, #255 @ 0xff - 8000b88: d020 beq.n 8000bcc - - HAL_UART_Transmit(sender, (uint8_t*)&reply, sizeof(reply), HAL_MAX_DELAY); + 8000bc0: 8b7b ldrh r3, [r7, #26] + 8000bc2: 2baa cmp r3, #170 @ 0xaa + 8000bc4: d002 beq.n 8000bcc + 8000bc6: 2bff cmp r3, #255 @ 0xff + 8000bc8: d020 beq.n 8000c0c + HAL_UART_Transmit_DMA(sender, (uint8_t*)&reply, sizeof(reply)); + } break; + default: + break; + 8000bca: e03c b.n 8000c46 + if(sender == &huart5) { + 8000bcc: 683b ldr r3, [r7, #0] + 8000bce: 4a20 ldr r2, [pc, #128] @ (8000c50 ) + 8000bd0: 4293 cmp r3, r2 + 8000bd2: d103 bne.n 8000bdc + PORT_DEPTH[0] = msg.DEPTH; + 8000bd4: 8b3a ldrh r2, [r7, #24] + 8000bd6: 4b1f ldr r3, [pc, #124] @ (8000c54 ) + 8000bd8: 801a strh r2, [r3, #0] + break; + 8000bda: e031 b.n 8000c40 + } else if(sender == &huart1) { + 8000bdc: 683b ldr r3, [r7, #0] + 8000bde: 4a1e ldr r2, [pc, #120] @ (8000c58 ) + 8000be0: 4293 cmp r3, r2 + 8000be2: d103 bne.n 8000bec + PORT_DEPTH[1] = msg.DEPTH; + 8000be4: 8b3a ldrh r2, [r7, #24] + 8000be6: 4b1b ldr r3, [pc, #108] @ (8000c54 ) + 8000be8: 805a strh r2, [r3, #2] + break; + 8000bea: e029 b.n 8000c40 + } else if(sender == &huart2) { + 8000bec: 683b ldr r3, [r7, #0] + 8000bee: 4a1b ldr r2, [pc, #108] @ (8000c5c ) + 8000bf0: 4293 cmp r3, r2 + 8000bf2: d103 bne.n 8000bfc + PORT_DEPTH[2] = msg.DEPTH; + 8000bf4: 8b3a ldrh r2, [r7, #24] + 8000bf6: 4b17 ldr r3, [pc, #92] @ (8000c54 ) + 8000bf8: 809a strh r2, [r3, #4] + break; + 8000bfa: e021 b.n 8000c40 + } else if(sender == &huart4) { + 8000bfc: 683b ldr r3, [r7, #0] + 8000bfe: 4a18 ldr r2, [pc, #96] @ (8000c60 ) + 8000c00: 4293 cmp r3, r2 + 8000c02: d11d bne.n 8000c40 + PORT_DEPTH[3] = msg.DEPTH; + 8000c04: 8b3a ldrh r2, [r7, #24] + 8000c06: 4b13 ldr r3, [pc, #76] @ (8000c54 ) + 8000c08: 80da strh r2, [r3, #6] + break; + 8000c0a: e019 b.n 8000c40 + if(MODE!=MODE_INACTIVE){ + 8000c0c: 4b15 ldr r3, [pc, #84] @ (8000c64 ) + 8000c0e: 781b ldrb r3, [r3, #0] + 8000c10: b2db uxtb r3, r3 + 8000c12: 2b00 cmp r3, #0 + 8000c14: d016 beq.n 8000c44 + reply.TYPE = 0xAA; + 8000c16: 23aa movs r3, #170 @ 0xaa + 8000c18: 817b strh r3, [r7, #10] + reply.DEPTH = DEPTH; // use your local DEPTH + 8000c1a: 4b13 ldr r3, [pc, #76] @ (8000c68 ) + 8000c1c: 881b ldrh r3, [r3, #0] + 8000c1e: 813b strh r3, [r7, #8] + memset(reply.KEYPRESS, 0, sizeof(reply.KEYPRESS)); + 8000c20: f107 0308 add.w r3, r7, #8 + 8000c24: 3304 adds r3, #4 + 8000c26: 220c movs r2, #12 + 8000c28: 2100 movs r1, #0 + 8000c2a: 4618 mov r0, r3 + 8000c2c: f009 fe7c bl 800a928 + HAL_UART_Transmit_DMA(sender, (uint8_t*)&reply, sizeof(reply)); + 8000c30: f107 0308 add.w r3, r7, #8 + 8000c34: 2210 movs r2, #16 + 8000c36: 4619 mov r1, r3 + 8000c38: 6838 ldr r0, [r7, #0] + 8000c3a: f004 ff47 bl 8005acc + break; + 8000c3e: e001 b.n 8000c44 + break; + 8000c40: bf00 nop + 8000c42: e000 b.n 8000c46 + break; + 8000c44: bf00 nop + } } - 8000b8a: e036 b.n 8000bfa - if(sender == &huart5) { - 8000b8c: 683b ldr r3, [r7, #0] - 8000b8e: 4a1d ldr r2, [pc, #116] @ (8000c04 ) - 8000b90: 4293 cmp r3, r2 - 8000b92: d103 bne.n 8000b9c - PORT_DEPTH[0] = msg.DEPTH; - 8000b94: 8b3a ldrh r2, [r7, #24] - 8000b96: 4b1c ldr r3, [pc, #112] @ (8000c08 ) - 8000b98: 801a strh r2, [r3, #0] - break; - 8000b9a: e02d b.n 8000bf8 - } else if(sender == &huart1) { - 8000b9c: 683b ldr r3, [r7, #0] - 8000b9e: 4a1b ldr r2, [pc, #108] @ (8000c0c ) - 8000ba0: 4293 cmp r3, r2 - 8000ba2: d103 bne.n 8000bac - PORT_DEPTH[1] = msg.DEPTH; - 8000ba4: 8b3a ldrh r2, [r7, #24] - 8000ba6: 4b18 ldr r3, [pc, #96] @ (8000c08 ) - 8000ba8: 805a strh r2, [r3, #2] - break; - 8000baa: e025 b.n 8000bf8 - } else if(sender == &huart2) { - 8000bac: 683b ldr r3, [r7, #0] - 8000bae: 4a18 ldr r2, [pc, #96] @ (8000c10 ) - 8000bb0: 4293 cmp r3, r2 - 8000bb2: d103 bne.n 8000bbc - PORT_DEPTH[2] = msg.DEPTH; - 8000bb4: 8b3a ldrh r2, [r7, #24] - 8000bb6: 4b14 ldr r3, [pc, #80] @ (8000c08 ) - 8000bb8: 809a strh r2, [r3, #4] - break; - 8000bba: e01d b.n 8000bf8 - } else if(sender == &huart4) { - 8000bbc: 683b ldr r3, [r7, #0] - 8000bbe: 4a15 ldr r2, [pc, #84] @ (8000c14 ) - 8000bc0: 4293 cmp r3, r2 - 8000bc2: d119 bne.n 8000bf8 - PORT_DEPTH[3] = msg.DEPTH; - 8000bc4: 8b3a ldrh r2, [r7, #24] - 8000bc6: 4b10 ldr r3, [pc, #64] @ (8000c08 ) - 8000bc8: 80da strh r2, [r3, #6] - break; - 8000bca: e015 b.n 8000bf8 - reply.TYPE = 0xAA; - 8000bcc: 23aa movs r3, #170 @ 0xaa - 8000bce: 817b strh r3, [r7, #10] - reply.DEPTH = DEPTH; // use your local DEPTH - 8000bd0: 4b11 ldr r3, [pc, #68] @ (8000c18 ) - 8000bd2: 881b ldrh r3, [r3, #0] - 8000bd4: 813b strh r3, [r7, #8] - memset(reply.KEYPRESS, 0, sizeof(reply.KEYPRESS)); - 8000bd6: f107 0308 add.w r3, r7, #8 - 8000bda: 3304 adds r3, #4 - 8000bdc: 220c movs r2, #12 - 8000bde: 2100 movs r1, #0 - 8000be0: 4618 mov r0, r3 - 8000be2: f009 ff5d bl 800aaa0 - HAL_UART_Transmit(sender, (uint8_t*)&reply, sizeof(reply), HAL_MAX_DELAY); - 8000be6: f107 0108 add.w r1, r7, #8 - 8000bea: f04f 33ff mov.w r3, #4294967295 @ 0xffffffff - 8000bee: 2210 movs r2, #16 - 8000bf0: 6838 ldr r0, [r7, #0] - 8000bf2: f004 ff43 bl 8005a7c - break; - 8000bf6: e000 b.n 8000bfa - break; - 8000bf8: bf00 nop -} - 8000bfa: bf00 nop - 8000bfc: 3728 adds r7, #40 @ 0x28 - 8000bfe: 46bd mov sp, r7 - 8000c00: bd80 pop {r7, pc} - 8000c02: bf00 nop - 8000c04: 20000344 .word 0x20000344 - 8000c08: 20000078 .word 0x20000078 - 8000c0c: 2000038c .word 0x2000038c - 8000c10: 200003d4 .word 0x200003d4 - 8000c14: 200002fc .word 0x200002fc - 8000c18: 20000260 .word 0x20000260 + 8000c46: bf00 nop + 8000c48: 3728 adds r7, #40 @ 0x28 + 8000c4a: 46bd mov sp, r7 + 8000c4c: bd80 pop {r7, pc} + 8000c4e: bf00 nop + 8000c50: 20000344 .word 0x20000344 + 8000c54: 20000078 .word 0x20000078 + 8000c58: 2000038c .word 0x2000038c + 8000c5c: 200003d4 .word 0x200003d4 + 8000c60: 200002fc .word 0x200002fc + 8000c64: 20000268 .word 0x20000268 + 8000c68: 20000260 .word 0x20000260 -08000c1c : +08000c6c : void addUSBReport(uint8_t usageID){ - 8000c1c: b480 push {r7} - 8000c1e: b085 sub sp, #20 - 8000c20: af00 add r7, sp, #0 - 8000c22: 4603 mov r3, r0 - 8000c24: 71fb strb r3, [r7, #7] + 8000c6c: b480 push {r7} + 8000c6e: b085 sub sp, #20 + 8000c70: af00 add r7, sp, #0 + 8000c72: 4603 mov r3, r0 + 8000c74: 71fb strb r3, [r7, #7] if(usageID < 0x04 || usageID > 0x73) return; //Usage ID is out of bounds - 8000c26: 79fb ldrb r3, [r7, #7] - 8000c28: 2b03 cmp r3, #3 - 8000c2a: d922 bls.n 8000c72 - 8000c2c: 79fb ldrb r3, [r7, #7] - 8000c2e: 2b73 cmp r3, #115 @ 0x73 - 8000c30: d81f bhi.n 8000c72 + 8000c76: 79fb ldrb r3, [r7, #7] + 8000c78: 2b03 cmp r3, #3 + 8000c7a: d922 bls.n 8000cc2 + 8000c7c: 79fb ldrb r3, [r7, #7] + 8000c7e: 2b73 cmp r3, #115 @ 0x73 + 8000c80: d81f bhi.n 8000cc2 uint16_t bit_index = usageID - 0x04; //Offset, UsageID starts with 0x04. Gives us the actual value of the bit - 8000c32: 79fb ldrb r3, [r7, #7] - 8000c34: b29b uxth r3, r3 - 8000c36: 3b04 subs r3, #4 - 8000c38: 81fb strh r3, [r7, #14] + 8000c82: 79fb ldrb r3, [r7, #7] + 8000c84: b29b uxth r3, r3 + 8000c86: 3b04 subs r3, #4 + 8000c88: 81fb strh r3, [r7, #14] uint8_t byte_index = bit_index/8; //Calculates which byte in the REPORT array - 8000c3a: 89fb ldrh r3, [r7, #14] - 8000c3c: 08db lsrs r3, r3, #3 - 8000c3e: b29b uxth r3, r3 - 8000c40: 737b strb r3, [r7, #13] + 8000c8a: 89fb ldrh r3, [r7, #14] + 8000c8c: 08db lsrs r3, r3, #3 + 8000c8e: b29b uxth r3, r3 + 8000c90: 737b strb r3, [r7, #13] uint8_t bit_offset = bit_index%8; //Calculates which bits in the REPORT[byte_index] should be set/unset - 8000c42: 89fb ldrh r3, [r7, #14] - 8000c44: b2db uxtb r3, r3 - 8000c46: f003 0307 and.w r3, r3, #7 - 8000c4a: 733b strb r3, [r7, #12] + 8000c92: 89fb ldrh r3, [r7, #14] + 8000c94: b2db uxtb r3, r3 + 8000c96: f003 0307 and.w r3, r3, #7 + 8000c9a: 733b strb r3, [r7, #12] REPORT.KEYPRESS[byte_index] |= (1 << bit_offset); - 8000c4c: 7b7b ldrb r3, [r7, #13] - 8000c4e: 4a0c ldr r2, [pc, #48] @ (8000c80 ) - 8000c50: 4413 add r3, r2 - 8000c52: 789b ldrb r3, [r3, #2] - 8000c54: b25a sxtb r2, r3 - 8000c56: 7b3b ldrb r3, [r7, #12] - 8000c58: 2101 movs r1, #1 - 8000c5a: fa01 f303 lsl.w r3, r1, r3 - 8000c5e: b25b sxtb r3, r3 - 8000c60: 4313 orrs r3, r2 - 8000c62: b25a sxtb r2, r3 - 8000c64: 7b7b ldrb r3, [r7, #13] - 8000c66: b2d1 uxtb r1, r2 - 8000c68: 4a05 ldr r2, [pc, #20] @ (8000c80 ) - 8000c6a: 4413 add r3, r2 - 8000c6c: 460a mov r2, r1 - 8000c6e: 709a strb r2, [r3, #2] - 8000c70: e000 b.n 8000c74 + 8000c9c: 7b7b ldrb r3, [r7, #13] + 8000c9e: 4a0c ldr r2, [pc, #48] @ (8000cd0 ) + 8000ca0: 4413 add r3, r2 + 8000ca2: 789b ldrb r3, [r3, #2] + 8000ca4: b25a sxtb r2, r3 + 8000ca6: 7b3b ldrb r3, [r7, #12] + 8000ca8: 2101 movs r1, #1 + 8000caa: fa01 f303 lsl.w r3, r1, r3 + 8000cae: b25b sxtb r3, r3 + 8000cb0: 4313 orrs r3, r2 + 8000cb2: b25a sxtb r2, r3 + 8000cb4: 7b7b ldrb r3, [r7, #13] + 8000cb6: b2d1 uxtb r1, r2 + 8000cb8: 4a05 ldr r2, [pc, #20] @ (8000cd0 ) + 8000cba: 4413 add r3, r2 + 8000cbc: 460a mov r2, r1 + 8000cbe: 709a strb r2, [r3, #2] + 8000cc0: e000 b.n 8000cc4 if(usageID < 0x04 || usageID > 0x73) return; //Usage ID is out of bounds - 8000c72: bf00 nop + 8000cc2: bf00 nop } - 8000c74: 3714 adds r7, #20 - 8000c76: 46bd mov sp, r7 - 8000c78: f85d 7b04 ldr.w r7, [sp], #4 - 8000c7c: 4770 bx lr - 8000c7e: bf00 nop - 8000c80: 20000210 .word 0x20000210 + 8000cc4: 3714 adds r7, #20 + 8000cc6: 46bd mov sp, r7 + 8000cc8: f85d 7b04 ldr.w r7, [sp], #4 + 8000ccc: 4770 bx lr + 8000cce: bf00 nop + 8000cd0: 20000210 .word 0x20000210 -08000c84 : +08000cd4 : void matrixScan(void){ - 8000c84: b580 push {r7, lr} - 8000c86: b082 sub sp, #8 - 8000c88: af00 add r7, sp, #0 + 8000cd4: b580 push {r7, lr} + 8000cd6: b082 sub sp, #8 + 8000cd8: af00 add r7, sp, #0 for (uint8_t col = 0; col < COL; col++){ - 8000c8a: 2300 movs r3, #0 - 8000c8c: 71fb strb r3, [r7, #7] - 8000c8e: e044 b.n 8000d1a + 8000cda: 2300 movs r3, #0 + 8000cdc: 71fb strb r3, [r7, #7] + 8000cde: e044 b.n 8000d6a HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_SET); - 8000c90: 79fb ldrb r3, [r7, #7] - 8000c92: 4a26 ldr r2, [pc, #152] @ (8000d2c ) - 8000c94: f852 0033 ldr.w r0, [r2, r3, lsl #3] - 8000c98: 79fb ldrb r3, [r7, #7] - 8000c9a: 4a24 ldr r2, [pc, #144] @ (8000d2c ) - 8000c9c: 00db lsls r3, r3, #3 - 8000c9e: 4413 add r3, r2 - 8000ca0: 889b ldrh r3, [r3, #4] - 8000ca2: 2201 movs r2, #1 - 8000ca4: 4619 mov r1, r3 - 8000ca6: f001 fd7f bl 80027a8 + 8000ce0: 79fb ldrb r3, [r7, #7] + 8000ce2: 4a26 ldr r2, [pc, #152] @ (8000d7c ) + 8000ce4: f852 0033 ldr.w r0, [r2, r3, lsl #3] + 8000ce8: 79fb ldrb r3, [r7, #7] + 8000cea: 4a24 ldr r2, [pc, #144] @ (8000d7c ) + 8000cec: 00db lsls r3, r3, #3 + 8000cee: 4413 add r3, r2 + 8000cf0: 889b ldrh r3, [r3, #4] + 8000cf2: 2201 movs r2, #1 + 8000cf4: 4619 mov r1, r3 + 8000cf6: f001 fd7f bl 80027f8 HAL_Delay(1); - 8000caa: 2001 movs r0, #1 - 8000cac: f000 fe98 bl 80019e0 + 8000cfa: 2001 movs r0, #1 + 8000cfc: f000 fe98 bl 8001a30 for(uint8_t row = 0; row < ROW; row++){ - 8000cb0: 2300 movs r3, #0 - 8000cb2: 71bb strb r3, [r7, #6] - 8000cb4: e01e b.n 8000cf4 + 8000d00: 2300 movs r3, #0 + 8000d02: 71bb strb r3, [r7, #6] + 8000d04: e01e b.n 8000d44 if(HAL_GPIO_ReadPin(ROW_PINS[row].GPIOx, ROW_PINS[row].PIN)){ - 8000cb6: 79bb ldrb r3, [r7, #6] - 8000cb8: 4a1d ldr r2, [pc, #116] @ (8000d30 ) - 8000cba: f852 2033 ldr.w r2, [r2, r3, lsl #3] - 8000cbe: 79bb ldrb r3, [r7, #6] - 8000cc0: 491b ldr r1, [pc, #108] @ (8000d30 ) - 8000cc2: 00db lsls r3, r3, #3 - 8000cc4: 440b add r3, r1 - 8000cc6: 889b ldrh r3, [r3, #4] - 8000cc8: 4619 mov r1, r3 - 8000cca: 4610 mov r0, r2 - 8000ccc: f001 fd54 bl 8002778 - 8000cd0: 4603 mov r3, r0 - 8000cd2: 2b00 cmp r3, #0 - 8000cd4: d00b beq.n 8000cee + 8000d06: 79bb ldrb r3, [r7, #6] + 8000d08: 4a1d ldr r2, [pc, #116] @ (8000d80 ) + 8000d0a: f852 2033 ldr.w r2, [r2, r3, lsl #3] + 8000d0e: 79bb ldrb r3, [r7, #6] + 8000d10: 491b ldr r1, [pc, #108] @ (8000d80 ) + 8000d12: 00db lsls r3, r3, #3 + 8000d14: 440b add r3, r1 + 8000d16: 889b ldrh r3, [r3, #4] + 8000d18: 4619 mov r1, r3 + 8000d1a: 4610 mov r0, r2 + 8000d1c: f001 fd54 bl 80027c8 + 8000d20: 4603 mov r3, r0 + 8000d22: 2b00 cmp r3, #0 + 8000d24: d00b beq.n 8000d3e addUSBReport(KEYCODES[row][col]); - 8000cd6: 79ba ldrb r2, [r7, #6] - 8000cd8: 79f9 ldrb r1, [r7, #7] - 8000cda: 4816 ldr r0, [pc, #88] @ (8000d34 ) - 8000cdc: 4613 mov r3, r2 - 8000cde: 009b lsls r3, r3, #2 - 8000ce0: 4413 add r3, r2 - 8000ce2: 4403 add r3, r0 - 8000ce4: 440b add r3, r1 - 8000ce6: 781b ldrb r3, [r3, #0] - 8000ce8: 4618 mov r0, r3 - 8000cea: f7ff ff97 bl 8000c1c + 8000d26: 79ba ldrb r2, [r7, #6] + 8000d28: 79f9 ldrb r1, [r7, #7] + 8000d2a: 4816 ldr r0, [pc, #88] @ (8000d84 ) + 8000d2c: 4613 mov r3, r2 + 8000d2e: 009b lsls r3, r3, #2 + 8000d30: 4413 add r3, r2 + 8000d32: 4403 add r3, r0 + 8000d34: 440b add r3, r1 + 8000d36: 781b ldrb r3, [r3, #0] + 8000d38: 4618 mov r0, r3 + 8000d3a: f7ff ff97 bl 8000c6c for(uint8_t row = 0; row < ROW; row++){ - 8000cee: 79bb ldrb r3, [r7, #6] - 8000cf0: 3301 adds r3, #1 - 8000cf2: 71bb strb r3, [r7, #6] - 8000cf4: 79bb ldrb r3, [r7, #6] - 8000cf6: 2b05 cmp r3, #5 - 8000cf8: d9dd bls.n 8000cb6 + 8000d3e: 79bb ldrb r3, [r7, #6] + 8000d40: 3301 adds r3, #1 + 8000d42: 71bb strb r3, [r7, #6] + 8000d44: 79bb ldrb r3, [r7, #6] + 8000d46: 2b05 cmp r3, #5 + 8000d48: d9dd bls.n 8000d06 } } HAL_GPIO_WritePin(COLUMN_PINS[col].GPIOx, COLUMN_PINS[col].PIN, GPIO_PIN_RESET); - 8000cfa: 79fb ldrb r3, [r7, #7] - 8000cfc: 4a0b ldr r2, [pc, #44] @ (8000d2c ) - 8000cfe: f852 0033 ldr.w r0, [r2, r3, lsl #3] - 8000d02: 79fb ldrb r3, [r7, #7] - 8000d04: 4a09 ldr r2, [pc, #36] @ (8000d2c ) - 8000d06: 00db lsls r3, r3, #3 - 8000d08: 4413 add r3, r2 - 8000d0a: 889b ldrh r3, [r3, #4] - 8000d0c: 2200 movs r2, #0 - 8000d0e: 4619 mov r1, r3 - 8000d10: f001 fd4a bl 80027a8 + 8000d4a: 79fb ldrb r3, [r7, #7] + 8000d4c: 4a0b ldr r2, [pc, #44] @ (8000d7c ) + 8000d4e: f852 0033 ldr.w r0, [r2, r3, lsl #3] + 8000d52: 79fb ldrb r3, [r7, #7] + 8000d54: 4a09 ldr r2, [pc, #36] @ (8000d7c ) + 8000d56: 00db lsls r3, r3, #3 + 8000d58: 4413 add r3, r2 + 8000d5a: 889b ldrh r3, [r3, #4] + 8000d5c: 2200 movs r2, #0 + 8000d5e: 4619 mov r1, r3 + 8000d60: f001 fd4a bl 80027f8 for (uint8_t col = 0; col < COL; col++){ - 8000d14: 79fb ldrb r3, [r7, #7] - 8000d16: 3301 adds r3, #1 - 8000d18: 71fb strb r3, [r7, #7] - 8000d1a: 79fb ldrb r3, [r7, #7] - 8000d1c: 2b04 cmp r3, #4 - 8000d1e: d9b7 bls.n 8000c90 + 8000d64: 79fb ldrb r3, [r7, #7] + 8000d66: 3301 adds r3, #1 + 8000d68: 71fb strb r3, [r7, #7] + 8000d6a: 79fb ldrb r3, [r7, #7] + 8000d6c: 2b04 cmp r3, #4 + 8000d6e: d9b7 bls.n 8000ce0 } } - 8000d20: bf00 nop - 8000d22: bf00 nop - 8000d24: 3708 adds r7, #8 - 8000d26: 46bd mov sp, r7 - 8000d28: bd80 pop {r7, pc} - 8000d2a: bf00 nop - 8000d2c: 20000030 .word 0x20000030 - 8000d30: 20000000 .word 0x20000000 - 8000d34: 20000058 .word 0x20000058 + 8000d70: bf00 nop + 8000d72: bf00 nop + 8000d74: 3708 adds r7, #8 + 8000d76: 46bd mov sp, r7 + 8000d78: bd80 pop {r7, pc} + 8000d7a: bf00 nop + 8000d7c: 20000030 .word 0x20000030 + 8000d80: 20000000 .word 0x20000000 + 8000d84: 20000058 .word 0x20000058 -08000d38 : +08000d88 : void resetReport(void){ - 8000d38: b580 push {r7, lr} - 8000d3a: af00 add r7, sp, #0 + 8000d88: b580 push {r7, lr} + 8000d8a: af00 add r7, sp, #0 REPORT.MODIFIER = 0; - 8000d3c: 4b04 ldr r3, [pc, #16] @ (8000d50 ) - 8000d3e: 2200 movs r2, #0 - 8000d40: 701a strb r2, [r3, #0] + 8000d8c: 4b04 ldr r3, [pc, #16] @ (8000da0 ) + 8000d8e: 2200 movs r2, #0 + 8000d90: 701a strb r2, [r3, #0] memset(REPORT.KEYPRESS, 0, sizeof(REPORT.KEYPRESS)); - 8000d42: 220c movs r2, #12 - 8000d44: 2100 movs r1, #0 - 8000d46: 4803 ldr r0, [pc, #12] @ (8000d54 ) - 8000d48: f009 feaa bl 800aaa0 + 8000d92: 220c movs r2, #12 + 8000d94: 2100 movs r1, #0 + 8000d96: 4803 ldr r0, [pc, #12] @ (8000da4 ) + 8000d98: f009 fdc6 bl 800a928 } - 8000d4c: bf00 nop - 8000d4e: bd80 pop {r7, pc} - 8000d50: 20000210 .word 0x20000210 - 8000d54: 20000212 .word 0x20000212 + 8000d9c: bf00 nop + 8000d9e: bd80 pop {r7, pc} + 8000da0: 20000210 .word 0x20000210 + 8000da4: 20000212 .word 0x20000212 -08000d58 : +08000da8 : /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { - 8000d58: b480 push {r7} - 8000d5a: af00 add r7, sp, #0 + 8000da8: b480 push {r7} + 8000daa: af00 add r7, sp, #0 \details Disables IRQ interrupts by setting special-purpose register PRIMASK. Can only be executed in Privileged modes. */ __STATIC_FORCEINLINE void __disable_irq(void) { __ASM volatile ("cpsid i" : : : "memory"); - 8000d5c: b672 cpsid i + 8000dac: b672 cpsid i } - 8000d5e: bf00 nop + 8000dae: 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) - 8000d60: bf00 nop - 8000d62: e7fd b.n 8000d60 + 8000db0: bf00 nop + 8000db2: e7fd b.n 8000db0 -08000d64 : +08000db4 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 8000d64: b480 push {r7} - 8000d66: b083 sub sp, #12 - 8000d68: af00 add r7, sp, #0 + 8000db4: b480 push {r7} + 8000db6: b083 sub sp, #12 + 8000db8: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8000d6a: 2300 movs r3, #0 - 8000d6c: 607b str r3, [r7, #4] - 8000d6e: 4b10 ldr r3, [pc, #64] @ (8000db0 ) - 8000d70: 6c5b ldr r3, [r3, #68] @ 0x44 - 8000d72: 4a0f ldr r2, [pc, #60] @ (8000db0 ) - 8000d74: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 8000d78: 6453 str r3, [r2, #68] @ 0x44 - 8000d7a: 4b0d ldr r3, [pc, #52] @ (8000db0 ) - 8000d7c: 6c5b ldr r3, [r3, #68] @ 0x44 - 8000d7e: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 8000d82: 607b str r3, [r7, #4] - 8000d84: 687b ldr r3, [r7, #4] + 8000dba: 2300 movs r3, #0 + 8000dbc: 607b str r3, [r7, #4] + 8000dbe: 4b10 ldr r3, [pc, #64] @ (8000e00 ) + 8000dc0: 6c5b ldr r3, [r3, #68] @ 0x44 + 8000dc2: 4a0f ldr r2, [pc, #60] @ (8000e00 ) + 8000dc4: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 8000dc8: 6453 str r3, [r2, #68] @ 0x44 + 8000dca: 4b0d ldr r3, [pc, #52] @ (8000e00 ) + 8000dcc: 6c5b ldr r3, [r3, #68] @ 0x44 + 8000dce: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 8000dd2: 607b str r3, [r7, #4] + 8000dd4: 687b ldr r3, [r7, #4] __HAL_RCC_PWR_CLK_ENABLE(); - 8000d86: 2300 movs r3, #0 - 8000d88: 603b str r3, [r7, #0] - 8000d8a: 4b09 ldr r3, [pc, #36] @ (8000db0 ) - 8000d8c: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000d8e: 4a08 ldr r2, [pc, #32] @ (8000db0 ) - 8000d90: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8000d94: 6413 str r3, [r2, #64] @ 0x40 - 8000d96: 4b06 ldr r3, [pc, #24] @ (8000db0 ) - 8000d98: 6c1b ldr r3, [r3, #64] @ 0x40 - 8000d9a: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8000d9e: 603b str r3, [r7, #0] - 8000da0: 683b ldr r3, [r7, #0] + 8000dd6: 2300 movs r3, #0 + 8000dd8: 603b str r3, [r7, #0] + 8000dda: 4b09 ldr r3, [pc, #36] @ (8000e00 ) + 8000ddc: 6c1b ldr r3, [r3, #64] @ 0x40 + 8000dde: 4a08 ldr r2, [pc, #32] @ (8000e00 ) + 8000de0: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8000de4: 6413 str r3, [r2, #64] @ 0x40 + 8000de6: 4b06 ldr r3, [pc, #24] @ (8000e00 ) + 8000de8: 6c1b ldr r3, [r3, #64] @ 0x40 + 8000dea: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8000dee: 603b str r3, [r7, #0] + 8000df0: 683b ldr r3, [r7, #0] /* System interrupt init*/ /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 8000da2: bf00 nop - 8000da4: 370c adds r7, #12 - 8000da6: 46bd mov sp, r7 - 8000da8: f85d 7b04 ldr.w r7, [sp], #4 - 8000dac: 4770 bx lr - 8000dae: bf00 nop - 8000db0: 40023800 .word 0x40023800 + 8000df2: bf00 nop + 8000df4: 370c adds r7, #12 + 8000df6: 46bd mov sp, r7 + 8000df8: f85d 7b04 ldr.w r7, [sp], #4 + 8000dfc: 4770 bx lr + 8000dfe: bf00 nop + 8000e00: 40023800 .word 0x40023800 -08000db4 : +08000e04 : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 8000db4: b480 push {r7} - 8000db6: af00 add r7, sp, #0 + 8000e04: b480 push {r7} + 8000e06: 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) - 8000db8: bf00 nop - 8000dba: e7fd b.n 8000db8 + 8000e08: bf00 nop + 8000e0a: e7fd b.n 8000e08 -08000dbc : +08000e0c : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8000dbc: b480 push {r7} - 8000dbe: af00 add r7, sp, #0 + 8000e0c: b480 push {r7} + 8000e0e: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8000dc0: bf00 nop - 8000dc2: e7fd b.n 8000dc0 + 8000e10: bf00 nop + 8000e12: e7fd b.n 8000e10 -08000dc4 : +08000e14 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8000dc4: b480 push {r7} - 8000dc6: af00 add r7, sp, #0 + 8000e14: b480 push {r7} + 8000e16: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 8000dc8: bf00 nop - 8000dca: e7fd b.n 8000dc8 + 8000e18: bf00 nop + 8000e1a: e7fd b.n 8000e18 -08000dcc : +08000e1c : /** * @brief This function handles Pre-fetch fault, memory access fault. */ void BusFault_Handler(void) { - 8000dcc: b480 push {r7} - 8000dce: af00 add r7, sp, #0 + 8000e1c: b480 push {r7} + 8000e1e: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8000dd0: bf00 nop - 8000dd2: e7fd b.n 8000dd0 + 8000e20: bf00 nop + 8000e22: e7fd b.n 8000e20 -08000dd4 : +08000e24 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8000dd4: b480 push {r7} - 8000dd6: af00 add r7, sp, #0 + 8000e24: b480 push {r7} + 8000e26: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8000dd8: bf00 nop - 8000dda: e7fd b.n 8000dd8 + 8000e28: bf00 nop + 8000e2a: e7fd b.n 8000e28 -08000ddc : +08000e2c : /** * @brief This function handles System service call via SWI instruction. */ void SVC_Handler(void) { - 8000ddc: b480 push {r7} - 8000dde: af00 add r7, sp, #0 + 8000e2c: b480 push {r7} + 8000e2e: af00 add r7, sp, #0 /* USER CODE END SVCall_IRQn 0 */ /* USER CODE BEGIN SVCall_IRQn 1 */ /* USER CODE END SVCall_IRQn 1 */ } - 8000de0: bf00 nop - 8000de2: 46bd mov sp, r7 - 8000de4: f85d 7b04 ldr.w r7, [sp], #4 - 8000de8: 4770 bx lr + 8000e30: bf00 nop + 8000e32: 46bd mov sp, r7 + 8000e34: f85d 7b04 ldr.w r7, [sp], #4 + 8000e38: 4770 bx lr -08000dea : +08000e3a : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8000dea: b480 push {r7} - 8000dec: af00 add r7, sp, #0 + 8000e3a: b480 push {r7} + 8000e3c: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 8000dee: bf00 nop - 8000df0: 46bd mov sp, r7 - 8000df2: f85d 7b04 ldr.w r7, [sp], #4 - 8000df6: 4770 bx lr + 8000e3e: bf00 nop + 8000e40: 46bd mov sp, r7 + 8000e42: f85d 7b04 ldr.w r7, [sp], #4 + 8000e46: 4770 bx lr -08000df8 : +08000e48 : /** * @brief This function handles Pendable request for system service. */ void PendSV_Handler(void) { - 8000df8: b480 push {r7} - 8000dfa: af00 add r7, sp, #0 + 8000e48: b480 push {r7} + 8000e4a: af00 add r7, sp, #0 /* USER CODE END PendSV_IRQn 0 */ /* USER CODE BEGIN PendSV_IRQn 1 */ /* USER CODE END PendSV_IRQn 1 */ } - 8000dfc: bf00 nop - 8000dfe: 46bd mov sp, r7 - 8000e00: f85d 7b04 ldr.w r7, [sp], #4 - 8000e04: 4770 bx lr + 8000e4c: bf00 nop + 8000e4e: 46bd mov sp, r7 + 8000e50: f85d 7b04 ldr.w r7, [sp], #4 + 8000e54: 4770 bx lr -08000e06 : +08000e56 : /** * @brief This function handles System tick timer. */ void SysTick_Handler(void) { - 8000e06: b580 push {r7, lr} - 8000e08: af00 add r7, sp, #0 + 8000e56: b580 push {r7, lr} + 8000e58: af00 add r7, sp, #0 /* USER CODE BEGIN SysTick_IRQn 0 */ /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); - 8000e0a: f000 fdc9 bl 80019a0 + 8000e5a: f000 fdc9 bl 80019f0 /* USER CODE BEGIN SysTick_IRQn 1 */ /* USER CODE END SysTick_IRQn 1 */ } - 8000e0e: bf00 nop - 8000e10: bd80 pop {r7, pc} + 8000e5e: bf00 nop + 8000e60: bd80 pop {r7, pc} ... -08000e14 : +08000e64 : /** * @brief This function handles DMA1 stream0 global interrupt. */ void DMA1_Stream0_IRQHandler(void) { - 8000e14: b580 push {r7, lr} - 8000e16: af00 add r7, sp, #0 + 8000e64: b580 push {r7, lr} + 8000e66: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream0_IRQn 0 */ /* USER CODE END DMA1_Stream0_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart5_rx); - 8000e18: 4802 ldr r0, [pc, #8] @ (8000e24 ) - 8000e1a: f001 f8af bl 8001f7c + 8000e68: 4802 ldr r0, [pc, #8] @ (8000e74 ) + 8000e6a: f001 f8af bl 8001fcc /* USER CODE BEGIN DMA1_Stream0_IRQn 1 */ /* USER CODE END DMA1_Stream0_IRQn 1 */ } - 8000e1e: bf00 nop - 8000e20: bd80 pop {r7, pc} - 8000e22: bf00 nop - 8000e24: 200004dc .word 0x200004dc + 8000e6e: bf00 nop + 8000e70: bd80 pop {r7, pc} + 8000e72: bf00 nop + 8000e74: 200004dc .word 0x200004dc -08000e28 : +08000e78 : /** * @brief This function handles DMA1 stream2 global interrupt. */ void DMA1_Stream2_IRQHandler(void) { - 8000e28: b580 push {r7, lr} - 8000e2a: af00 add r7, sp, #0 + 8000e78: b580 push {r7, lr} + 8000e7a: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream2_IRQn 0 */ /* USER CODE END DMA1_Stream2_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart4_rx); - 8000e2c: 4802 ldr r0, [pc, #8] @ (8000e38 ) - 8000e2e: f001 f8a5 bl 8001f7c + 8000e7c: 4802 ldr r0, [pc, #8] @ (8000e88 ) + 8000e7e: f001 f8a5 bl 8001fcc /* USER CODE BEGIN DMA1_Stream2_IRQn 1 */ /* USER CODE END DMA1_Stream2_IRQn 1 */ } - 8000e32: bf00 nop - 8000e34: bd80 pop {r7, pc} - 8000e36: bf00 nop - 8000e38: 2000041c .word 0x2000041c + 8000e82: bf00 nop + 8000e84: bd80 pop {r7, pc} + 8000e86: bf00 nop + 8000e88: 2000041c .word 0x2000041c -08000e3c : +08000e8c : /** * @brief This function handles DMA1 stream4 global interrupt. */ void DMA1_Stream4_IRQHandler(void) { - 8000e3c: b580 push {r7, lr} - 8000e3e: af00 add r7, sp, #0 + 8000e8c: b580 push {r7, lr} + 8000e8e: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream4_IRQn 0 */ /* USER CODE END DMA1_Stream4_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart4_tx); - 8000e40: 4802 ldr r0, [pc, #8] @ (8000e4c ) - 8000e42: f001 f89b bl 8001f7c + 8000e90: 4802 ldr r0, [pc, #8] @ (8000e9c ) + 8000e92: f001 f89b bl 8001fcc /* USER CODE BEGIN DMA1_Stream4_IRQn 1 */ /* USER CODE END DMA1_Stream4_IRQn 1 */ } - 8000e46: bf00 nop - 8000e48: bd80 pop {r7, pc} - 8000e4a: bf00 nop - 8000e4c: 2000047c .word 0x2000047c + 8000e96: bf00 nop + 8000e98: bd80 pop {r7, pc} + 8000e9a: bf00 nop + 8000e9c: 2000047c .word 0x2000047c -08000e50 : +08000ea0 : /** * @brief This function handles DMA1 stream5 global interrupt. */ void DMA1_Stream5_IRQHandler(void) { - 8000e50: b580 push {r7, lr} - 8000e52: af00 add r7, sp, #0 + 8000ea0: b580 push {r7, lr} + 8000ea2: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream5_IRQn 0 */ /* USER CODE END DMA1_Stream5_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart2_rx); - 8000e54: 4802 ldr r0, [pc, #8] @ (8000e60 ) - 8000e56: f001 f891 bl 8001f7c + 8000ea4: 4802 ldr r0, [pc, #8] @ (8000eb0 ) + 8000ea6: f001 f891 bl 8001fcc /* USER CODE BEGIN DMA1_Stream5_IRQn 1 */ /* USER CODE END DMA1_Stream5_IRQn 1 */ } - 8000e5a: bf00 nop - 8000e5c: bd80 pop {r7, pc} - 8000e5e: bf00 nop - 8000e60: 2000065c .word 0x2000065c + 8000eaa: bf00 nop + 8000eac: bd80 pop {r7, pc} + 8000eae: bf00 nop + 8000eb0: 2000065c .word 0x2000065c -08000e64 : +08000eb4 : /** * @brief This function handles DMA1 stream6 global interrupt. */ void DMA1_Stream6_IRQHandler(void) { - 8000e64: b580 push {r7, lr} - 8000e66: af00 add r7, sp, #0 + 8000eb4: b580 push {r7, lr} + 8000eb6: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream6_IRQn 0 */ /* USER CODE END DMA1_Stream6_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart2_tx); - 8000e68: 4802 ldr r0, [pc, #8] @ (8000e74 ) - 8000e6a: f001 f887 bl 8001f7c + 8000eb8: 4802 ldr r0, [pc, #8] @ (8000ec4 ) + 8000eba: f001 f887 bl 8001fcc /* USER CODE BEGIN DMA1_Stream6_IRQn 1 */ /* USER CODE END DMA1_Stream6_IRQn 1 */ } - 8000e6e: bf00 nop - 8000e70: bd80 pop {r7, pc} - 8000e72: bf00 nop - 8000e74: 200006bc .word 0x200006bc + 8000ebe: bf00 nop + 8000ec0: bd80 pop {r7, pc} + 8000ec2: bf00 nop + 8000ec4: 200006bc .word 0x200006bc -08000e78 : +08000ec8 : /** * @brief This function handles USART1 global interrupt. */ void USART1_IRQHandler(void) { - 8000e78: b580 push {r7, lr} - 8000e7a: af00 add r7, sp, #0 + 8000ec8: b580 push {r7, lr} + 8000eca: af00 add r7, sp, #0 /* USER CODE BEGIN USART1_IRQn 0 */ /* USER CODE END USART1_IRQn 0 */ HAL_UART_IRQHandler(&huart1); - 8000e7c: 4802 ldr r0, [pc, #8] @ (8000e88 ) - 8000e7e: f004 ff2b bl 8005cd8 + 8000ecc: 4802 ldr r0, [pc, #8] @ (8000ed8 ) + 8000ece: f004 fe9f bl 8005c10 /* USER CODE BEGIN USART1_IRQn 1 */ /* USER CODE END USART1_IRQn 1 */ } - 8000e82: bf00 nop - 8000e84: bd80 pop {r7, pc} - 8000e86: bf00 nop - 8000e88: 2000038c .word 0x2000038c + 8000ed2: bf00 nop + 8000ed4: bd80 pop {r7, pc} + 8000ed6: bf00 nop + 8000ed8: 2000038c .word 0x2000038c -08000e8c : +08000edc : /** * @brief This function handles USART2 global interrupt. */ void USART2_IRQHandler(void) { - 8000e8c: b580 push {r7, lr} - 8000e8e: af00 add r7, sp, #0 + 8000edc: b580 push {r7, lr} + 8000ede: af00 add r7, sp, #0 /* USER CODE BEGIN USART2_IRQn 0 */ /* USER CODE END USART2_IRQn 0 */ HAL_UART_IRQHandler(&huart2); - 8000e90: 4802 ldr r0, [pc, #8] @ (8000e9c ) - 8000e92: f004 ff21 bl 8005cd8 + 8000ee0: 4802 ldr r0, [pc, #8] @ (8000eec ) + 8000ee2: f004 fe95 bl 8005c10 /* USER CODE BEGIN USART2_IRQn 1 */ /* USER CODE END USART2_IRQn 1 */ } - 8000e96: bf00 nop - 8000e98: bd80 pop {r7, pc} - 8000e9a: bf00 nop - 8000e9c: 200003d4 .word 0x200003d4 + 8000ee6: bf00 nop + 8000ee8: bd80 pop {r7, pc} + 8000eea: bf00 nop + 8000eec: 200003d4 .word 0x200003d4 -08000ea0 : +08000ef0 : /** * @brief This function handles DMA1 stream7 global interrupt. */ void DMA1_Stream7_IRQHandler(void) { - 8000ea0: b580 push {r7, lr} - 8000ea2: af00 add r7, sp, #0 + 8000ef0: b580 push {r7, lr} + 8000ef2: af00 add r7, sp, #0 /* USER CODE BEGIN DMA1_Stream7_IRQn 0 */ /* USER CODE END DMA1_Stream7_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_uart5_tx); - 8000ea4: 4802 ldr r0, [pc, #8] @ (8000eb0 ) - 8000ea6: f001 f869 bl 8001f7c + 8000ef4: 4802 ldr r0, [pc, #8] @ (8000f00 ) + 8000ef6: f001 f869 bl 8001fcc /* USER CODE BEGIN DMA1_Stream7_IRQn 1 */ /* USER CODE END DMA1_Stream7_IRQn 1 */ } - 8000eaa: bf00 nop - 8000eac: bd80 pop {r7, pc} - 8000eae: bf00 nop - 8000eb0: 2000053c .word 0x2000053c + 8000efa: bf00 nop + 8000efc: bd80 pop {r7, pc} + 8000efe: bf00 nop + 8000f00: 2000053c .word 0x2000053c -08000eb4 : +08000f04 : /** * @brief This function handles UART4 global interrupt. */ void UART4_IRQHandler(void) { - 8000eb4: b580 push {r7, lr} - 8000eb6: af00 add r7, sp, #0 + 8000f04: b580 push {r7, lr} + 8000f06: af00 add r7, sp, #0 /* USER CODE BEGIN UART4_IRQn 0 */ /* USER CODE END UART4_IRQn 0 */ HAL_UART_IRQHandler(&huart4); - 8000eb8: 4802 ldr r0, [pc, #8] @ (8000ec4 ) - 8000eba: f004 ff0d bl 8005cd8 + 8000f08: 4802 ldr r0, [pc, #8] @ (8000f14 ) + 8000f0a: f004 fe81 bl 8005c10 /* USER CODE BEGIN UART4_IRQn 1 */ /* USER CODE END UART4_IRQn 1 */ } - 8000ebe: bf00 nop - 8000ec0: bd80 pop {r7, pc} - 8000ec2: bf00 nop - 8000ec4: 200002fc .word 0x200002fc + 8000f0e: bf00 nop + 8000f10: bd80 pop {r7, pc} + 8000f12: bf00 nop + 8000f14: 200002fc .word 0x200002fc -08000ec8 : +08000f18 : /** * @brief This function handles UART5 global interrupt. */ void UART5_IRQHandler(void) { - 8000ec8: b580 push {r7, lr} - 8000eca: af00 add r7, sp, #0 + 8000f18: b580 push {r7, lr} + 8000f1a: af00 add r7, sp, #0 /* USER CODE BEGIN UART5_IRQn 0 */ /* USER CODE END UART5_IRQn 0 */ HAL_UART_IRQHandler(&huart5); - 8000ecc: 4802 ldr r0, [pc, #8] @ (8000ed8 ) - 8000ece: f004 ff03 bl 8005cd8 + 8000f1c: 4802 ldr r0, [pc, #8] @ (8000f28 ) + 8000f1e: f004 fe77 bl 8005c10 /* USER CODE BEGIN UART5_IRQn 1 */ /* USER CODE END UART5_IRQn 1 */ } - 8000ed2: bf00 nop - 8000ed4: bd80 pop {r7, pc} - 8000ed6: bf00 nop - 8000ed8: 20000344 .word 0x20000344 + 8000f22: bf00 nop + 8000f24: bd80 pop {r7, pc} + 8000f26: bf00 nop + 8000f28: 20000344 .word 0x20000344 -08000edc : +08000f2c : /** * @brief This function handles DMA2 stream2 global interrupt. */ void DMA2_Stream2_IRQHandler(void) { - 8000edc: b580 push {r7, lr} - 8000ede: af00 add r7, sp, #0 + 8000f2c: b580 push {r7, lr} + 8000f2e: af00 add r7, sp, #0 /* USER CODE BEGIN DMA2_Stream2_IRQn 0 */ /* USER CODE END DMA2_Stream2_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart1_rx); - 8000ee0: 4802 ldr r0, [pc, #8] @ (8000eec ) - 8000ee2: f001 f84b bl 8001f7c + 8000f30: 4802 ldr r0, [pc, #8] @ (8000f3c ) + 8000f32: f001 f84b bl 8001fcc /* USER CODE BEGIN DMA2_Stream2_IRQn 1 */ /* USER CODE END DMA2_Stream2_IRQn 1 */ } - 8000ee6: bf00 nop - 8000ee8: bd80 pop {r7, pc} - 8000eea: bf00 nop - 8000eec: 2000059c .word 0x2000059c + 8000f36: bf00 nop + 8000f38: bd80 pop {r7, pc} + 8000f3a: bf00 nop + 8000f3c: 2000059c .word 0x2000059c -08000ef0 : +08000f40 : /** * @brief This function handles USB On The Go FS global interrupt. */ void OTG_FS_IRQHandler(void) { - 8000ef0: b580 push {r7, lr} - 8000ef2: af00 add r7, sp, #0 + 8000f40: b580 push {r7, lr} + 8000f42: af00 add r7, sp, #0 /* USER CODE BEGIN OTG_FS_IRQn 0 */ /* USER CODE END OTG_FS_IRQn 0 */ HAL_PCD_IRQHandler(&hpcd_USB_OTG_FS); - 8000ef4: 4802 ldr r0, [pc, #8] @ (8000f00 ) - 8000ef6: f001 ff00 bl 8002cfa + 8000f44: 4802 ldr r0, [pc, #8] @ (8000f50 ) + 8000f46: f001 ff00 bl 8002d4a /* USER CODE BEGIN OTG_FS_IRQn 1 */ /* USER CODE END OTG_FS_IRQn 1 */ } - 8000efa: bf00 nop - 8000efc: bd80 pop {r7, pc} - 8000efe: bf00 nop - 8000f00: 20000c00 .word 0x20000c00 + 8000f4a: bf00 nop + 8000f4c: bd80 pop {r7, pc} + 8000f4e: bf00 nop + 8000f50: 20000c00 .word 0x20000c00 -08000f04 : +08000f54 : /** * @brief This function handles DMA2 stream7 global interrupt. */ void DMA2_Stream7_IRQHandler(void) { - 8000f04: b580 push {r7, lr} - 8000f06: af00 add r7, sp, #0 + 8000f54: b580 push {r7, lr} + 8000f56: af00 add r7, sp, #0 /* USER CODE BEGIN DMA2_Stream7_IRQn 0 */ /* USER CODE END DMA2_Stream7_IRQn 0 */ HAL_DMA_IRQHandler(&hdma_usart1_tx); - 8000f08: 4802 ldr r0, [pc, #8] @ (8000f14 ) - 8000f0a: f001 f837 bl 8001f7c + 8000f58: 4802 ldr r0, [pc, #8] @ (8000f64 ) + 8000f5a: f001 f837 bl 8001fcc /* USER CODE BEGIN DMA2_Stream7_IRQn 1 */ /* USER CODE END DMA2_Stream7_IRQn 1 */ } - 8000f0e: bf00 nop - 8000f10: bd80 pop {r7, pc} - 8000f12: bf00 nop - 8000f14: 200005fc .word 0x200005fc + 8000f5e: bf00 nop + 8000f60: bd80 pop {r7, pc} + 8000f62: bf00 nop + 8000f64: 200005fc .word 0x200005fc -08000f18 : +08000f68 : * configuration. * @param None * @retval None */ void SystemInit(void) { - 8000f18: b480 push {r7} - 8000f1a: af00 add r7, sp, #0 + 8000f68: b480 push {r7} + 8000f6a: af00 add r7, sp, #0 /* FPU settings ------------------------------------------------------------*/ #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ - 8000f1c: 4b06 ldr r3, [pc, #24] @ (8000f38 ) - 8000f1e: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 8000f22: 4a05 ldr r2, [pc, #20] @ (8000f38 ) - 8000f24: f443 0370 orr.w r3, r3, #15728640 @ 0xf00000 - 8000f28: f8c2 3088 str.w r3, [r2, #136] @ 0x88 + 8000f6c: 4b06 ldr r3, [pc, #24] @ (8000f88 ) + 8000f6e: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 8000f72: 4a05 ldr r2, [pc, #20] @ (8000f88 ) + 8000f74: f443 0370 orr.w r3, r3, #15728640 @ 0xf00000 + 8000f78: f8c2 3088 str.w r3, [r2, #136] @ 0x88 /* Configure the Vector Table location -------------------------------------*/ #if defined(USER_VECT_TAB_ADDRESS) SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ #endif /* USER_VECT_TAB_ADDRESS */ } - 8000f2c: bf00 nop - 8000f2e: 46bd mov sp, r7 - 8000f30: f85d 7b04 ldr.w r7, [sp], #4 - 8000f34: 4770 bx lr - 8000f36: bf00 nop - 8000f38: e000ed00 .word 0xe000ed00 + 8000f7c: bf00 nop + 8000f7e: 46bd mov sp, r7 + 8000f80: f85d 7b04 ldr.w r7, [sp], #4 + 8000f84: 4770 bx lr + 8000f86: bf00 nop + 8000f88: e000ed00 .word 0xe000ed00 -08000f3c : +08000f8c : TIM_HandleTypeDef htim2; TIM_HandleTypeDef htim3; /* TIM2 init function */ void MX_TIM2_Init(void) { - 8000f3c: b580 push {r7, lr} - 8000f3e: b08a sub sp, #40 @ 0x28 - 8000f40: af00 add r7, sp, #0 + 8000f8c: b580 push {r7, lr} + 8000f8e: b08a sub sp, #40 @ 0x28 + 8000f90: af00 add r7, sp, #0 /* USER CODE BEGIN TIM2_Init 0 */ /* USER CODE END TIM2_Init 0 */ TIM_MasterConfigTypeDef sMasterConfig = {0}; - 8000f42: f107 0320 add.w r3, r7, #32 - 8000f46: 2200 movs r2, #0 - 8000f48: 601a str r2, [r3, #0] - 8000f4a: 605a str r2, [r3, #4] + 8000f92: f107 0320 add.w r3, r7, #32 + 8000f96: 2200 movs r2, #0 + 8000f98: 601a str r2, [r3, #0] + 8000f9a: 605a str r2, [r3, #4] TIM_OC_InitTypeDef sConfigOC = {0}; - 8000f4c: 1d3b adds r3, r7, #4 - 8000f4e: 2200 movs r2, #0 - 8000f50: 601a str r2, [r3, #0] - 8000f52: 605a str r2, [r3, #4] - 8000f54: 609a str r2, [r3, #8] - 8000f56: 60da str r2, [r3, #12] - 8000f58: 611a str r2, [r3, #16] - 8000f5a: 615a str r2, [r3, #20] - 8000f5c: 619a str r2, [r3, #24] + 8000f9c: 1d3b adds r3, r7, #4 + 8000f9e: 2200 movs r2, #0 + 8000fa0: 601a str r2, [r3, #0] + 8000fa2: 605a str r2, [r3, #4] + 8000fa4: 609a str r2, [r3, #8] + 8000fa6: 60da str r2, [r3, #12] + 8000fa8: 611a str r2, [r3, #16] + 8000faa: 615a str r2, [r3, #20] + 8000fac: 619a str r2, [r3, #24] /* USER CODE BEGIN TIM2_Init 1 */ /* USER CODE END TIM2_Init 1 */ htim2.Instance = TIM2; - 8000f5e: 4b22 ldr r3, [pc, #136] @ (8000fe8 ) - 8000f60: f04f 4280 mov.w r2, #1073741824 @ 0x40000000 - 8000f64: 601a str r2, [r3, #0] + 8000fae: 4b22 ldr r3, [pc, #136] @ (8001038 ) + 8000fb0: f04f 4280 mov.w r2, #1073741824 @ 0x40000000 + 8000fb4: 601a str r2, [r3, #0] htim2.Init.Prescaler = 0; - 8000f66: 4b20 ldr r3, [pc, #128] @ (8000fe8 ) - 8000f68: 2200 movs r2, #0 - 8000f6a: 605a str r2, [r3, #4] + 8000fb6: 4b20 ldr r3, [pc, #128] @ (8001038 ) + 8000fb8: 2200 movs r2, #0 + 8000fba: 605a str r2, [r3, #4] htim2.Init.CounterMode = TIM_COUNTERMODE_UP; - 8000f6c: 4b1e ldr r3, [pc, #120] @ (8000fe8 ) - 8000f6e: 2200 movs r2, #0 - 8000f70: 609a str r2, [r3, #8] + 8000fbc: 4b1e ldr r3, [pc, #120] @ (8001038 ) + 8000fbe: 2200 movs r2, #0 + 8000fc0: 609a str r2, [r3, #8] htim2.Init.Period = 4294967295; - 8000f72: 4b1d ldr r3, [pc, #116] @ (8000fe8 ) - 8000f74: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff - 8000f78: 60da str r2, [r3, #12] + 8000fc2: 4b1d ldr r3, [pc, #116] @ (8001038 ) + 8000fc4: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff + 8000fc8: 60da str r2, [r3, #12] htim2.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 8000f7a: 4b1b ldr r3, [pc, #108] @ (8000fe8 ) - 8000f7c: 2200 movs r2, #0 - 8000f7e: 611a str r2, [r3, #16] + 8000fca: 4b1b ldr r3, [pc, #108] @ (8001038 ) + 8000fcc: 2200 movs r2, #0 + 8000fce: 611a str r2, [r3, #16] htim2.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 8000f80: 4b19 ldr r3, [pc, #100] @ (8000fe8 ) - 8000f82: 2200 movs r2, #0 - 8000f84: 619a str r2, [r3, #24] + 8000fd0: 4b19 ldr r3, [pc, #100] @ (8001038 ) + 8000fd2: 2200 movs r2, #0 + 8000fd4: 619a str r2, [r3, #24] if (HAL_TIM_OC_Init(&htim2) != HAL_OK) - 8000f86: 4818 ldr r0, [pc, #96] @ (8000fe8 ) - 8000f88: f004 f904 bl 8005194 - 8000f8c: 4603 mov r3, r0 - 8000f8e: 2b00 cmp r3, #0 - 8000f90: d001 beq.n 8000f96 + 8000fd6: 4818 ldr r0, [pc, #96] @ (8001038 ) + 8000fd8: f004 f904 bl 80051e4 + 8000fdc: 4603 mov r3, r0 + 8000fde: 2b00 cmp r3, #0 + 8000fe0: d001 beq.n 8000fe6 { Error_Handler(); - 8000f92: f7ff fee1 bl 8000d58 + 8000fe2: f7ff fee1 bl 8000da8 } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 8000f96: 2300 movs r3, #0 - 8000f98: 623b str r3, [r7, #32] + 8000fe6: 2300 movs r3, #0 + 8000fe8: 623b str r3, [r7, #32] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 8000f9a: 2300 movs r3, #0 - 8000f9c: 627b str r3, [r7, #36] @ 0x24 + 8000fea: 2300 movs r3, #0 + 8000fec: 627b str r3, [r7, #36] @ 0x24 if (HAL_TIMEx_MasterConfigSynchronization(&htim2, &sMasterConfig) != HAL_OK) - 8000f9e: f107 0320 add.w r3, r7, #32 - 8000fa2: 4619 mov r1, r3 - 8000fa4: 4810 ldr r0, [pc, #64] @ (8000fe8 ) - 8000fa6: f004 fc9d bl 80058e4 - 8000faa: 4603 mov r3, r0 - 8000fac: 2b00 cmp r3, #0 - 8000fae: d001 beq.n 8000fb4 + 8000fee: f107 0320 add.w r3, r7, #32 + 8000ff2: 4619 mov r1, r3 + 8000ff4: 4810 ldr r0, [pc, #64] @ (8001038 ) + 8000ff6: f004 fc9d bl 8005934 + 8000ffa: 4603 mov r3, r0 + 8000ffc: 2b00 cmp r3, #0 + 8000ffe: d001 beq.n 8001004 { Error_Handler(); - 8000fb0: f7ff fed2 bl 8000d58 + 8001000: f7ff fed2 bl 8000da8 } sConfigOC.OCMode = TIM_OCMODE_FORCED_ACTIVE; - 8000fb4: 2350 movs r3, #80 @ 0x50 - 8000fb6: 607b str r3, [r7, #4] + 8001004: 2350 movs r3, #80 @ 0x50 + 8001006: 607b str r3, [r7, #4] sConfigOC.Pulse = 0; - 8000fb8: 2300 movs r3, #0 - 8000fba: 60bb str r3, [r7, #8] + 8001008: 2300 movs r3, #0 + 800100a: 60bb str r3, [r7, #8] sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; - 8000fbc: 2300 movs r3, #0 - 8000fbe: 60fb str r3, [r7, #12] + 800100c: 2300 movs r3, #0 + 800100e: 60fb str r3, [r7, #12] sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; - 8000fc0: 2300 movs r3, #0 - 8000fc2: 617b str r3, [r7, #20] + 8001010: 2300 movs r3, #0 + 8001012: 617b str r3, [r7, #20] if (HAL_TIM_OC_ConfigChannel(&htim2, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) - 8000fc4: 1d3b adds r3, r7, #4 - 8000fc6: 2200 movs r2, #0 - 8000fc8: 4619 mov r1, r3 - 8000fca: 4807 ldr r0, [pc, #28] @ (8000fe8 ) - 8000fcc: f004 f9d8 bl 8005380 - 8000fd0: 4603 mov r3, r0 - 8000fd2: 2b00 cmp r3, #0 - 8000fd4: d001 beq.n 8000fda + 8001014: 1d3b adds r3, r7, #4 + 8001016: 2200 movs r2, #0 + 8001018: 4619 mov r1, r3 + 800101a: 4807 ldr r0, [pc, #28] @ (8001038 ) + 800101c: f004 f9d8 bl 80053d0 + 8001020: 4603 mov r3, r0 + 8001022: 2b00 cmp r3, #0 + 8001024: d001 beq.n 800102a { Error_Handler(); - 8000fd6: f7ff febf bl 8000d58 + 8001026: f7ff febf bl 8000da8 } /* USER CODE BEGIN TIM2_Init 2 */ /* USER CODE END TIM2_Init 2 */ HAL_TIM_MspPostInit(&htim2); - 8000fda: 4803 ldr r0, [pc, #12] @ (8000fe8 ) - 8000fdc: f000 f8c2 bl 8001164 + 800102a: 4803 ldr r0, [pc, #12] @ (8001038 ) + 800102c: f000 f8c2 bl 80011b4 } - 8000fe0: bf00 nop - 8000fe2: 3728 adds r7, #40 @ 0x28 - 8000fe4: 46bd mov sp, r7 - 8000fe6: bd80 pop {r7, pc} - 8000fe8: 2000026c .word 0x2000026c + 8001030: bf00 nop + 8001032: 3728 adds r7, #40 @ 0x28 + 8001034: 46bd mov sp, r7 + 8001036: bd80 pop {r7, pc} + 8001038: 2000026c .word 0x2000026c -08000fec : +0800103c : /* TIM3 init function */ void MX_TIM3_Init(void) { - 8000fec: b580 push {r7, lr} - 8000fee: b08c sub sp, #48 @ 0x30 - 8000ff0: af00 add r7, sp, #0 + 800103c: b580 push {r7, lr} + 800103e: b08c sub sp, #48 @ 0x30 + 8001040: af00 add r7, sp, #0 /* USER CODE BEGIN TIM3_Init 0 */ /* USER CODE END TIM3_Init 0 */ TIM_Encoder_InitTypeDef sConfig = {0}; - 8000ff2: f107 030c add.w r3, r7, #12 - 8000ff6: 2224 movs r2, #36 @ 0x24 - 8000ff8: 2100 movs r1, #0 - 8000ffa: 4618 mov r0, r3 - 8000ffc: f009 fd50 bl 800aaa0 + 8001042: f107 030c add.w r3, r7, #12 + 8001046: 2224 movs r2, #36 @ 0x24 + 8001048: 2100 movs r1, #0 + 800104a: 4618 mov r0, r3 + 800104c: f009 fc6c bl 800a928 TIM_MasterConfigTypeDef sMasterConfig = {0}; - 8001000: 1d3b adds r3, r7, #4 - 8001002: 2200 movs r2, #0 - 8001004: 601a str r2, [r3, #0] - 8001006: 605a str r2, [r3, #4] + 8001050: 1d3b adds r3, r7, #4 + 8001052: 2200 movs r2, #0 + 8001054: 601a str r2, [r3, #0] + 8001056: 605a str r2, [r3, #4] /* USER CODE BEGIN TIM3_Init 1 */ /* USER CODE END TIM3_Init 1 */ htim3.Instance = TIM3; - 8001008: 4b20 ldr r3, [pc, #128] @ (800108c ) - 800100a: 4a21 ldr r2, [pc, #132] @ (8001090 ) - 800100c: 601a str r2, [r3, #0] + 8001058: 4b20 ldr r3, [pc, #128] @ (80010dc ) + 800105a: 4a21 ldr r2, [pc, #132] @ (80010e0 ) + 800105c: 601a str r2, [r3, #0] htim3.Init.Prescaler = 0; - 800100e: 4b1f ldr r3, [pc, #124] @ (800108c ) - 8001010: 2200 movs r2, #0 - 8001012: 605a str r2, [r3, #4] + 800105e: 4b1f ldr r3, [pc, #124] @ (80010dc ) + 8001060: 2200 movs r2, #0 + 8001062: 605a str r2, [r3, #4] htim3.Init.CounterMode = TIM_COUNTERMODE_UP; - 8001014: 4b1d ldr r3, [pc, #116] @ (800108c ) - 8001016: 2200 movs r2, #0 - 8001018: 609a str r2, [r3, #8] + 8001064: 4b1d ldr r3, [pc, #116] @ (80010dc ) + 8001066: 2200 movs r2, #0 + 8001068: 609a str r2, [r3, #8] htim3.Init.Period = 65535; - 800101a: 4b1c ldr r3, [pc, #112] @ (800108c ) - 800101c: f64f 72ff movw r2, #65535 @ 0xffff - 8001020: 60da str r2, [r3, #12] + 800106a: 4b1c ldr r3, [pc, #112] @ (80010dc ) + 800106c: f64f 72ff movw r2, #65535 @ 0xffff + 8001070: 60da str r2, [r3, #12] htim3.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - 8001022: 4b1a ldr r3, [pc, #104] @ (800108c ) - 8001024: 2200 movs r2, #0 - 8001026: 611a str r2, [r3, #16] + 8001072: 4b1a ldr r3, [pc, #104] @ (80010dc ) + 8001074: 2200 movs r2, #0 + 8001076: 611a str r2, [r3, #16] htim3.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 8001028: 4b18 ldr r3, [pc, #96] @ (800108c ) - 800102a: 2200 movs r2, #0 - 800102c: 619a str r2, [r3, #24] + 8001078: 4b18 ldr r3, [pc, #96] @ (80010dc ) + 800107a: 2200 movs r2, #0 + 800107c: 619a str r2, [r3, #24] sConfig.EncoderMode = TIM_ENCODERMODE_TI1; - 800102e: 2301 movs r3, #1 - 8001030: 60fb str r3, [r7, #12] + 800107e: 2301 movs r3, #1 + 8001080: 60fb str r3, [r7, #12] sConfig.IC1Polarity = TIM_ICPOLARITY_RISING; - 8001032: 2300 movs r3, #0 - 8001034: 613b str r3, [r7, #16] + 8001082: 2300 movs r3, #0 + 8001084: 613b str r3, [r7, #16] sConfig.IC1Selection = TIM_ICSELECTION_DIRECTTI; - 8001036: 2301 movs r3, #1 - 8001038: 617b str r3, [r7, #20] + 8001086: 2301 movs r3, #1 + 8001088: 617b str r3, [r7, #20] sConfig.IC1Prescaler = TIM_ICPSC_DIV1; - 800103a: 2300 movs r3, #0 - 800103c: 61bb str r3, [r7, #24] + 800108a: 2300 movs r3, #0 + 800108c: 61bb str r3, [r7, #24] sConfig.IC1Filter = 0; - 800103e: 2300 movs r3, #0 - 8001040: 61fb str r3, [r7, #28] + 800108e: 2300 movs r3, #0 + 8001090: 61fb str r3, [r7, #28] sConfig.IC2Polarity = TIM_ICPOLARITY_RISING; - 8001042: 2300 movs r3, #0 - 8001044: 623b str r3, [r7, #32] + 8001092: 2300 movs r3, #0 + 8001094: 623b str r3, [r7, #32] sConfig.IC2Selection = TIM_ICSELECTION_DIRECTTI; - 8001046: 2301 movs r3, #1 - 8001048: 627b str r3, [r7, #36] @ 0x24 + 8001096: 2301 movs r3, #1 + 8001098: 627b str r3, [r7, #36] @ 0x24 sConfig.IC2Prescaler = TIM_ICPSC_DIV1; - 800104a: 2300 movs r3, #0 - 800104c: 62bb str r3, [r7, #40] @ 0x28 + 800109a: 2300 movs r3, #0 + 800109c: 62bb str r3, [r7, #40] @ 0x28 sConfig.IC2Filter = 0; - 800104e: 2300 movs r3, #0 - 8001050: 62fb str r3, [r7, #44] @ 0x2c + 800109e: 2300 movs r3, #0 + 80010a0: 62fb str r3, [r7, #44] @ 0x2c if (HAL_TIM_Encoder_Init(&htim3, &sConfig) != HAL_OK) - 8001052: f107 030c add.w r3, r7, #12 - 8001056: 4619 mov r1, r3 - 8001058: 480c ldr r0, [pc, #48] @ (800108c ) - 800105a: f004 f8ea bl 8005232 - 800105e: 4603 mov r3, r0 - 8001060: 2b00 cmp r3, #0 - 8001062: d001 beq.n 8001068 + 80010a2: f107 030c add.w r3, r7, #12 + 80010a6: 4619 mov r1, r3 + 80010a8: 480c ldr r0, [pc, #48] @ (80010dc ) + 80010aa: f004 f8ea bl 8005282 + 80010ae: 4603 mov r3, r0 + 80010b0: 2b00 cmp r3, #0 + 80010b2: d001 beq.n 80010b8 { Error_Handler(); - 8001064: f7ff fe78 bl 8000d58 + 80010b4: f7ff fe78 bl 8000da8 } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; - 8001068: 2300 movs r3, #0 - 800106a: 607b str r3, [r7, #4] + 80010b8: 2300 movs r3, #0 + 80010ba: 607b str r3, [r7, #4] sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - 800106c: 2300 movs r3, #0 - 800106e: 60bb str r3, [r7, #8] + 80010bc: 2300 movs r3, #0 + 80010be: 60bb str r3, [r7, #8] if (HAL_TIMEx_MasterConfigSynchronization(&htim3, &sMasterConfig) != HAL_OK) - 8001070: 1d3b adds r3, r7, #4 - 8001072: 4619 mov r1, r3 - 8001074: 4805 ldr r0, [pc, #20] @ (800108c ) - 8001076: f004 fc35 bl 80058e4 - 800107a: 4603 mov r3, r0 - 800107c: 2b00 cmp r3, #0 - 800107e: d001 beq.n 8001084 + 80010c0: 1d3b adds r3, r7, #4 + 80010c2: 4619 mov r1, r3 + 80010c4: 4805 ldr r0, [pc, #20] @ (80010dc ) + 80010c6: f004 fc35 bl 8005934 + 80010ca: 4603 mov r3, r0 + 80010cc: 2b00 cmp r3, #0 + 80010ce: d001 beq.n 80010d4 { Error_Handler(); - 8001080: f7ff fe6a bl 8000d58 + 80010d0: f7ff fe6a bl 8000da8 } /* USER CODE BEGIN TIM3_Init 2 */ /* USER CODE END TIM3_Init 2 */ } - 8001084: bf00 nop - 8001086: 3730 adds r7, #48 @ 0x30 - 8001088: 46bd mov sp, r7 - 800108a: bd80 pop {r7, pc} - 800108c: 200002b4 .word 0x200002b4 - 8001090: 40000400 .word 0x40000400 + 80010d4: bf00 nop + 80010d6: 3730 adds r7, #48 @ 0x30 + 80010d8: 46bd mov sp, r7 + 80010da: bd80 pop {r7, pc} + 80010dc: 200002b4 .word 0x200002b4 + 80010e0: 40000400 .word 0x40000400 -08001094 : +080010e4 : void HAL_TIM_OC_MspInit(TIM_HandleTypeDef* tim_ocHandle) { - 8001094: b480 push {r7} - 8001096: b085 sub sp, #20 - 8001098: af00 add r7, sp, #0 - 800109a: 6078 str r0, [r7, #4] + 80010e4: b480 push {r7} + 80010e6: b085 sub sp, #20 + 80010e8: af00 add r7, sp, #0 + 80010ea: 6078 str r0, [r7, #4] if(tim_ocHandle->Instance==TIM2) - 800109c: 687b ldr r3, [r7, #4] - 800109e: 681b ldr r3, [r3, #0] - 80010a0: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 80010a4: d10d bne.n 80010c2 + 80010ec: 687b ldr r3, [r7, #4] + 80010ee: 681b ldr r3, [r3, #0] + 80010f0: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80010f4: d10d bne.n 8001112 { /* USER CODE BEGIN TIM2_MspInit 0 */ /* USER CODE END TIM2_MspInit 0 */ /* TIM2 clock enable */ __HAL_RCC_TIM2_CLK_ENABLE(); - 80010a6: 2300 movs r3, #0 - 80010a8: 60fb str r3, [r7, #12] - 80010aa: 4b09 ldr r3, [pc, #36] @ (80010d0 ) - 80010ac: 6c1b ldr r3, [r3, #64] @ 0x40 - 80010ae: 4a08 ldr r2, [pc, #32] @ (80010d0 ) - 80010b0: f043 0301 orr.w r3, r3, #1 - 80010b4: 6413 str r3, [r2, #64] @ 0x40 - 80010b6: 4b06 ldr r3, [pc, #24] @ (80010d0 ) - 80010b8: 6c1b ldr r3, [r3, #64] @ 0x40 - 80010ba: f003 0301 and.w r3, r3, #1 - 80010be: 60fb str r3, [r7, #12] - 80010c0: 68fb ldr r3, [r7, #12] + 80010f6: 2300 movs r3, #0 + 80010f8: 60fb str r3, [r7, #12] + 80010fa: 4b09 ldr r3, [pc, #36] @ (8001120 ) + 80010fc: 6c1b ldr r3, [r3, #64] @ 0x40 + 80010fe: 4a08 ldr r2, [pc, #32] @ (8001120 ) + 8001100: f043 0301 orr.w r3, r3, #1 + 8001104: 6413 str r3, [r2, #64] @ 0x40 + 8001106: 4b06 ldr r3, [pc, #24] @ (8001120 ) + 8001108: 6c1b ldr r3, [r3, #64] @ 0x40 + 800110a: f003 0301 and.w r3, r3, #1 + 800110e: 60fb str r3, [r7, #12] + 8001110: 68fb ldr r3, [r7, #12] /* USER CODE BEGIN TIM2_MspInit 1 */ /* USER CODE END TIM2_MspInit 1 */ } } - 80010c2: bf00 nop - 80010c4: 3714 adds r7, #20 - 80010c6: 46bd mov sp, r7 - 80010c8: f85d 7b04 ldr.w r7, [sp], #4 - 80010cc: 4770 bx lr - 80010ce: bf00 nop - 80010d0: 40023800 .word 0x40023800 + 8001112: bf00 nop + 8001114: 3714 adds r7, #20 + 8001116: 46bd mov sp, r7 + 8001118: f85d 7b04 ldr.w r7, [sp], #4 + 800111c: 4770 bx lr + 800111e: bf00 nop + 8001120: 40023800 .word 0x40023800 -080010d4 : +08001124 : void HAL_TIM_Encoder_MspInit(TIM_HandleTypeDef* tim_encoderHandle) { - 80010d4: b580 push {r7, lr} - 80010d6: b08a sub sp, #40 @ 0x28 - 80010d8: af00 add r7, sp, #0 - 80010da: 6078 str r0, [r7, #4] + 8001124: b580 push {r7, lr} + 8001126: b08a sub sp, #40 @ 0x28 + 8001128: af00 add r7, sp, #0 + 800112a: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80010dc: f107 0314 add.w r3, r7, #20 - 80010e0: 2200 movs r2, #0 - 80010e2: 601a str r2, [r3, #0] - 80010e4: 605a str r2, [r3, #4] - 80010e6: 609a str r2, [r3, #8] - 80010e8: 60da str r2, [r3, #12] - 80010ea: 611a str r2, [r3, #16] + 800112c: f107 0314 add.w r3, r7, #20 + 8001130: 2200 movs r2, #0 + 8001132: 601a str r2, [r3, #0] + 8001134: 605a str r2, [r3, #4] + 8001136: 609a str r2, [r3, #8] + 8001138: 60da str r2, [r3, #12] + 800113a: 611a str r2, [r3, #16] if(tim_encoderHandle->Instance==TIM3) - 80010ec: 687b ldr r3, [r7, #4] - 80010ee: 681b ldr r3, [r3, #0] - 80010f0: 4a19 ldr r2, [pc, #100] @ (8001158 ) - 80010f2: 4293 cmp r3, r2 - 80010f4: d12b bne.n 800114e + 800113c: 687b ldr r3, [r7, #4] + 800113e: 681b ldr r3, [r3, #0] + 8001140: 4a19 ldr r2, [pc, #100] @ (80011a8 ) + 8001142: 4293 cmp r3, r2 + 8001144: d12b bne.n 800119e { /* USER CODE BEGIN TIM3_MspInit 0 */ /* USER CODE END TIM3_MspInit 0 */ /* TIM3 clock enable */ __HAL_RCC_TIM3_CLK_ENABLE(); - 80010f6: 2300 movs r3, #0 - 80010f8: 613b str r3, [r7, #16] - 80010fa: 4b18 ldr r3, [pc, #96] @ (800115c ) - 80010fc: 6c1b ldr r3, [r3, #64] @ 0x40 - 80010fe: 4a17 ldr r2, [pc, #92] @ (800115c ) - 8001100: f043 0302 orr.w r3, r3, #2 - 8001104: 6413 str r3, [r2, #64] @ 0x40 - 8001106: 4b15 ldr r3, [pc, #84] @ (800115c ) - 8001108: 6c1b ldr r3, [r3, #64] @ 0x40 - 800110a: f003 0302 and.w r3, r3, #2 - 800110e: 613b str r3, [r7, #16] - 8001110: 693b ldr r3, [r7, #16] + 8001146: 2300 movs r3, #0 + 8001148: 613b str r3, [r7, #16] + 800114a: 4b18 ldr r3, [pc, #96] @ (80011ac ) + 800114c: 6c1b ldr r3, [r3, #64] @ 0x40 + 800114e: 4a17 ldr r2, [pc, #92] @ (80011ac ) + 8001150: f043 0302 orr.w r3, r3, #2 + 8001154: 6413 str r3, [r2, #64] @ 0x40 + 8001156: 4b15 ldr r3, [pc, #84] @ (80011ac ) + 8001158: 6c1b ldr r3, [r3, #64] @ 0x40 + 800115a: f003 0302 and.w r3, r3, #2 + 800115e: 613b str r3, [r7, #16] + 8001160: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001112: 2300 movs r3, #0 - 8001114: 60fb str r3, [r7, #12] - 8001116: 4b11 ldr r3, [pc, #68] @ (800115c ) - 8001118: 6b1b ldr r3, [r3, #48] @ 0x30 - 800111a: 4a10 ldr r2, [pc, #64] @ (800115c ) - 800111c: f043 0301 orr.w r3, r3, #1 - 8001120: 6313 str r3, [r2, #48] @ 0x30 - 8001122: 4b0e ldr r3, [pc, #56] @ (800115c ) - 8001124: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001126: f003 0301 and.w r3, r3, #1 - 800112a: 60fb str r3, [r7, #12] - 800112c: 68fb ldr r3, [r7, #12] + 8001162: 2300 movs r3, #0 + 8001164: 60fb str r3, [r7, #12] + 8001166: 4b11 ldr r3, [pc, #68] @ (80011ac ) + 8001168: 6b1b ldr r3, [r3, #48] @ 0x30 + 800116a: 4a10 ldr r2, [pc, #64] @ (80011ac ) + 800116c: f043 0301 orr.w r3, r3, #1 + 8001170: 6313 str r3, [r2, #48] @ 0x30 + 8001172: 4b0e ldr r3, [pc, #56] @ (80011ac ) + 8001174: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001176: f003 0301 and.w r3, r3, #1 + 800117a: 60fb str r3, [r7, #12] + 800117c: 68fb ldr r3, [r7, #12] /**TIM3 GPIO Configuration PA6 ------> TIM3_CH1 PA7 ------> TIM3_CH2 */ GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7; - 800112e: 23c0 movs r3, #192 @ 0xc0 - 8001130: 617b str r3, [r7, #20] + 800117e: 23c0 movs r3, #192 @ 0xc0 + 8001180: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001132: 2302 movs r3, #2 - 8001134: 61bb str r3, [r7, #24] + 8001182: 2302 movs r3, #2 + 8001184: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001136: 2300 movs r3, #0 - 8001138: 61fb str r3, [r7, #28] + 8001186: 2300 movs r3, #0 + 8001188: 61fb str r3, [r7, #28] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 800113a: 2300 movs r3, #0 - 800113c: 623b str r3, [r7, #32] + 800118a: 2300 movs r3, #0 + 800118c: 623b str r3, [r7, #32] GPIO_InitStruct.Alternate = GPIO_AF2_TIM3; - 800113e: 2302 movs r3, #2 - 8001140: 627b str r3, [r7, #36] @ 0x24 + 800118e: 2302 movs r3, #2 + 8001190: 627b str r3, [r7, #36] @ 0x24 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001142: f107 0314 add.w r3, r7, #20 - 8001146: 4619 mov r1, r3 - 8001148: 4805 ldr r0, [pc, #20] @ (8001160 ) - 800114a: f001 f981 bl 8002450 + 8001192: f107 0314 add.w r3, r7, #20 + 8001196: 4619 mov r1, r3 + 8001198: 4805 ldr r0, [pc, #20] @ (80011b0 ) + 800119a: f001 f981 bl 80024a0 /* USER CODE BEGIN TIM3_MspInit 1 */ /* USER CODE END TIM3_MspInit 1 */ } } - 800114e: bf00 nop - 8001150: 3728 adds r7, #40 @ 0x28 - 8001152: 46bd mov sp, r7 - 8001154: bd80 pop {r7, pc} - 8001156: bf00 nop - 8001158: 40000400 .word 0x40000400 - 800115c: 40023800 .word 0x40023800 - 8001160: 40020000 .word 0x40020000 + 800119e: bf00 nop + 80011a0: 3728 adds r7, #40 @ 0x28 + 80011a2: 46bd mov sp, r7 + 80011a4: bd80 pop {r7, pc} + 80011a6: bf00 nop + 80011a8: 40000400 .word 0x40000400 + 80011ac: 40023800 .word 0x40023800 + 80011b0: 40020000 .word 0x40020000 -08001164 : +080011b4 : void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) { - 8001164: b580 push {r7, lr} - 8001166: b088 sub sp, #32 - 8001168: af00 add r7, sp, #0 - 800116a: 6078 str r0, [r7, #4] + 80011b4: b580 push {r7, lr} + 80011b6: b088 sub sp, #32 + 80011b8: af00 add r7, sp, #0 + 80011ba: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800116c: f107 030c add.w r3, r7, #12 - 8001170: 2200 movs r2, #0 - 8001172: 601a str r2, [r3, #0] - 8001174: 605a str r2, [r3, #4] - 8001176: 609a str r2, [r3, #8] - 8001178: 60da str r2, [r3, #12] - 800117a: 611a str r2, [r3, #16] + 80011bc: f107 030c add.w r3, r7, #12 + 80011c0: 2200 movs r2, #0 + 80011c2: 601a str r2, [r3, #0] + 80011c4: 605a str r2, [r3, #4] + 80011c6: 609a str r2, [r3, #8] + 80011c8: 60da str r2, [r3, #12] + 80011ca: 611a str r2, [r3, #16] if(timHandle->Instance==TIM2) - 800117c: 687b ldr r3, [r7, #4] - 800117e: 681b ldr r3, [r3, #0] - 8001180: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8001184: d11d bne.n 80011c2 + 80011cc: 687b ldr r3, [r7, #4] + 80011ce: 681b ldr r3, [r3, #0] + 80011d0: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80011d4: d11d bne.n 8001212 { /* USER CODE BEGIN TIM2_MspPostInit 0 */ /* USER CODE END TIM2_MspPostInit 0 */ __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001186: 2300 movs r3, #0 - 8001188: 60bb str r3, [r7, #8] - 800118a: 4b10 ldr r3, [pc, #64] @ (80011cc ) - 800118c: 6b1b ldr r3, [r3, #48] @ 0x30 - 800118e: 4a0f ldr r2, [pc, #60] @ (80011cc ) - 8001190: f043 0301 orr.w r3, r3, #1 - 8001194: 6313 str r3, [r2, #48] @ 0x30 - 8001196: 4b0d ldr r3, [pc, #52] @ (80011cc ) - 8001198: 6b1b ldr r3, [r3, #48] @ 0x30 - 800119a: f003 0301 and.w r3, r3, #1 - 800119e: 60bb str r3, [r7, #8] - 80011a0: 68bb ldr r3, [r7, #8] + 80011d6: 2300 movs r3, #0 + 80011d8: 60bb str r3, [r7, #8] + 80011da: 4b10 ldr r3, [pc, #64] @ (800121c ) + 80011dc: 6b1b ldr r3, [r3, #48] @ 0x30 + 80011de: 4a0f ldr r2, [pc, #60] @ (800121c ) + 80011e0: f043 0301 orr.w r3, r3, #1 + 80011e4: 6313 str r3, [r2, #48] @ 0x30 + 80011e6: 4b0d ldr r3, [pc, #52] @ (800121c ) + 80011e8: 6b1b ldr r3, [r3, #48] @ 0x30 + 80011ea: f003 0301 and.w r3, r3, #1 + 80011ee: 60bb str r3, [r7, #8] + 80011f0: 68bb ldr r3, [r7, #8] /**TIM2 GPIO Configuration PA5 ------> TIM2_CH1 */ GPIO_InitStruct.Pin = GPIO_PIN_5; - 80011a2: 2320 movs r3, #32 - 80011a4: 60fb str r3, [r7, #12] + 80011f2: 2320 movs r3, #32 + 80011f4: 60fb str r3, [r7, #12] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80011a6: 2302 movs r3, #2 - 80011a8: 613b str r3, [r7, #16] + 80011f6: 2302 movs r3, #2 + 80011f8: 613b str r3, [r7, #16] GPIO_InitStruct.Pull = GPIO_NOPULL; - 80011aa: 2300 movs r3, #0 - 80011ac: 617b str r3, [r7, #20] + 80011fa: 2300 movs r3, #0 + 80011fc: 617b str r3, [r7, #20] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - 80011ae: 2300 movs r3, #0 - 80011b0: 61bb str r3, [r7, #24] + 80011fe: 2300 movs r3, #0 + 8001200: 61bb str r3, [r7, #24] GPIO_InitStruct.Alternate = GPIO_AF1_TIM2; - 80011b2: 2301 movs r3, #1 - 80011b4: 61fb str r3, [r7, #28] + 8001202: 2301 movs r3, #1 + 8001204: 61fb str r3, [r7, #28] HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 80011b6: f107 030c add.w r3, r7, #12 - 80011ba: 4619 mov r1, r3 - 80011bc: 4804 ldr r0, [pc, #16] @ (80011d0 ) - 80011be: f001 f947 bl 8002450 + 8001206: f107 030c add.w r3, r7, #12 + 800120a: 4619 mov r1, r3 + 800120c: 4804 ldr r0, [pc, #16] @ (8001220 ) + 800120e: f001 f947 bl 80024a0 /* USER CODE BEGIN TIM2_MspPostInit 1 */ /* USER CODE END TIM2_MspPostInit 1 */ } } - 80011c2: bf00 nop - 80011c4: 3720 adds r7, #32 - 80011c6: 46bd mov sp, r7 - 80011c8: bd80 pop {r7, pc} - 80011ca: bf00 nop - 80011cc: 40023800 .word 0x40023800 - 80011d0: 40020000 .word 0x40020000 + 8001212: bf00 nop + 8001214: 3720 adds r7, #32 + 8001216: 46bd mov sp, r7 + 8001218: bd80 pop {r7, pc} + 800121a: bf00 nop + 800121c: 40023800 .word 0x40023800 + 8001220: 40020000 .word 0x40020000 -080011d4 : +08001224 : DMA_HandleTypeDef hdma_usart2_rx; DMA_HandleTypeDef hdma_usart2_tx; /* UART4 init function */ void MX_UART4_Init(void) { - 80011d4: b580 push {r7, lr} - 80011d6: af00 add r7, sp, #0 + 8001224: b580 push {r7, lr} + 8001226: af00 add r7, sp, #0 /* USER CODE END UART4_Init 0 */ /* USER CODE BEGIN UART4_Init 1 */ /* USER CODE END UART4_Init 1 */ huart4.Instance = UART4; - 80011d8: 4b11 ldr r3, [pc, #68] @ (8001220 ) - 80011da: 4a12 ldr r2, [pc, #72] @ (8001224 ) - 80011dc: 601a str r2, [r3, #0] + 8001228: 4b11 ldr r3, [pc, #68] @ (8001270 ) + 800122a: 4a12 ldr r2, [pc, #72] @ (8001274 ) + 800122c: 601a str r2, [r3, #0] huart4.Init.BaudRate = 115200; - 80011de: 4b10 ldr r3, [pc, #64] @ (8001220 ) - 80011e0: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 80011e4: 605a str r2, [r3, #4] + 800122e: 4b10 ldr r3, [pc, #64] @ (8001270 ) + 8001230: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 8001234: 605a str r2, [r3, #4] huart4.Init.WordLength = UART_WORDLENGTH_8B; - 80011e6: 4b0e ldr r3, [pc, #56] @ (8001220 ) - 80011e8: 2200 movs r2, #0 - 80011ea: 609a str r2, [r3, #8] + 8001236: 4b0e ldr r3, [pc, #56] @ (8001270 ) + 8001238: 2200 movs r2, #0 + 800123a: 609a str r2, [r3, #8] huart4.Init.StopBits = UART_STOPBITS_1; - 80011ec: 4b0c ldr r3, [pc, #48] @ (8001220 ) - 80011ee: 2200 movs r2, #0 - 80011f0: 60da str r2, [r3, #12] + 800123c: 4b0c ldr r3, [pc, #48] @ (8001270 ) + 800123e: 2200 movs r2, #0 + 8001240: 60da str r2, [r3, #12] huart4.Init.Parity = UART_PARITY_NONE; - 80011f2: 4b0b ldr r3, [pc, #44] @ (8001220 ) - 80011f4: 2200 movs r2, #0 - 80011f6: 611a str r2, [r3, #16] + 8001242: 4b0b ldr r3, [pc, #44] @ (8001270 ) + 8001244: 2200 movs r2, #0 + 8001246: 611a str r2, [r3, #16] huart4.Init.Mode = UART_MODE_TX_RX; - 80011f8: 4b09 ldr r3, [pc, #36] @ (8001220 ) - 80011fa: 220c movs r2, #12 - 80011fc: 615a str r2, [r3, #20] + 8001248: 4b09 ldr r3, [pc, #36] @ (8001270 ) + 800124a: 220c movs r2, #12 + 800124c: 615a str r2, [r3, #20] huart4.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 80011fe: 4b08 ldr r3, [pc, #32] @ (8001220 ) - 8001200: 2200 movs r2, #0 - 8001202: 619a str r2, [r3, #24] + 800124e: 4b08 ldr r3, [pc, #32] @ (8001270 ) + 8001250: 2200 movs r2, #0 + 8001252: 619a str r2, [r3, #24] huart4.Init.OverSampling = UART_OVERSAMPLING_16; - 8001204: 4b06 ldr r3, [pc, #24] @ (8001220 ) - 8001206: 2200 movs r2, #0 - 8001208: 61da str r2, [r3, #28] + 8001254: 4b06 ldr r3, [pc, #24] @ (8001270 ) + 8001256: 2200 movs r2, #0 + 8001258: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart4) != HAL_OK) - 800120a: 4805 ldr r0, [pc, #20] @ (8001220 ) - 800120c: f004 fbe6 bl 80059dc - 8001210: 4603 mov r3, r0 - 8001212: 2b00 cmp r3, #0 - 8001214: d001 beq.n 800121a + 800125a: 4805 ldr r0, [pc, #20] @ (8001270 ) + 800125c: f004 fbe6 bl 8005a2c + 8001260: 4603 mov r3, r0 + 8001262: 2b00 cmp r3, #0 + 8001264: d001 beq.n 800126a { Error_Handler(); - 8001216: f7ff fd9f bl 8000d58 + 8001266: f7ff fd9f bl 8000da8 } /* USER CODE BEGIN UART4_Init 2 */ /* USER CODE END UART4_Init 2 */ } - 800121a: bf00 nop - 800121c: bd80 pop {r7, pc} - 800121e: bf00 nop - 8001220: 200002fc .word 0x200002fc - 8001224: 40004c00 .word 0x40004c00 + 800126a: bf00 nop + 800126c: bd80 pop {r7, pc} + 800126e: bf00 nop + 8001270: 200002fc .word 0x200002fc + 8001274: 40004c00 .word 0x40004c00 -08001228 : +08001278 : /* UART5 init function */ void MX_UART5_Init(void) { - 8001228: b580 push {r7, lr} - 800122a: af00 add r7, sp, #0 + 8001278: b580 push {r7, lr} + 800127a: af00 add r7, sp, #0 /* USER CODE END UART5_Init 0 */ /* USER CODE BEGIN UART5_Init 1 */ /* USER CODE END UART5_Init 1 */ huart5.Instance = UART5; - 800122c: 4b11 ldr r3, [pc, #68] @ (8001274 ) - 800122e: 4a12 ldr r2, [pc, #72] @ (8001278 ) - 8001230: 601a str r2, [r3, #0] + 800127c: 4b11 ldr r3, [pc, #68] @ (80012c4 ) + 800127e: 4a12 ldr r2, [pc, #72] @ (80012c8 ) + 8001280: 601a str r2, [r3, #0] huart5.Init.BaudRate = 115200; - 8001232: 4b10 ldr r3, [pc, #64] @ (8001274 ) - 8001234: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 8001238: 605a str r2, [r3, #4] + 8001282: 4b10 ldr r3, [pc, #64] @ (80012c4 ) + 8001284: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 8001288: 605a str r2, [r3, #4] huart5.Init.WordLength = UART_WORDLENGTH_8B; - 800123a: 4b0e ldr r3, [pc, #56] @ (8001274 ) - 800123c: 2200 movs r2, #0 - 800123e: 609a str r2, [r3, #8] + 800128a: 4b0e ldr r3, [pc, #56] @ (80012c4 ) + 800128c: 2200 movs r2, #0 + 800128e: 609a str r2, [r3, #8] huart5.Init.StopBits = UART_STOPBITS_1; - 8001240: 4b0c ldr r3, [pc, #48] @ (8001274 ) - 8001242: 2200 movs r2, #0 - 8001244: 60da str r2, [r3, #12] + 8001290: 4b0c ldr r3, [pc, #48] @ (80012c4 ) + 8001292: 2200 movs r2, #0 + 8001294: 60da str r2, [r3, #12] huart5.Init.Parity = UART_PARITY_NONE; - 8001246: 4b0b ldr r3, [pc, #44] @ (8001274 ) - 8001248: 2200 movs r2, #0 - 800124a: 611a str r2, [r3, #16] + 8001296: 4b0b ldr r3, [pc, #44] @ (80012c4 ) + 8001298: 2200 movs r2, #0 + 800129a: 611a str r2, [r3, #16] huart5.Init.Mode = UART_MODE_TX_RX; - 800124c: 4b09 ldr r3, [pc, #36] @ (8001274 ) - 800124e: 220c movs r2, #12 - 8001250: 615a str r2, [r3, #20] + 800129c: 4b09 ldr r3, [pc, #36] @ (80012c4 ) + 800129e: 220c movs r2, #12 + 80012a0: 615a str r2, [r3, #20] huart5.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 8001252: 4b08 ldr r3, [pc, #32] @ (8001274 ) - 8001254: 2200 movs r2, #0 - 8001256: 619a str r2, [r3, #24] + 80012a2: 4b08 ldr r3, [pc, #32] @ (80012c4 ) + 80012a4: 2200 movs r2, #0 + 80012a6: 619a str r2, [r3, #24] huart5.Init.OverSampling = UART_OVERSAMPLING_16; - 8001258: 4b06 ldr r3, [pc, #24] @ (8001274 ) - 800125a: 2200 movs r2, #0 - 800125c: 61da str r2, [r3, #28] + 80012a8: 4b06 ldr r3, [pc, #24] @ (80012c4 ) + 80012aa: 2200 movs r2, #0 + 80012ac: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart5) != HAL_OK) - 800125e: 4805 ldr r0, [pc, #20] @ (8001274 ) - 8001260: f004 fbbc bl 80059dc - 8001264: 4603 mov r3, r0 - 8001266: 2b00 cmp r3, #0 - 8001268: d001 beq.n 800126e + 80012ae: 4805 ldr r0, [pc, #20] @ (80012c4 ) + 80012b0: f004 fbbc bl 8005a2c + 80012b4: 4603 mov r3, r0 + 80012b6: 2b00 cmp r3, #0 + 80012b8: d001 beq.n 80012be { Error_Handler(); - 800126a: f7ff fd75 bl 8000d58 + 80012ba: f7ff fd75 bl 8000da8 } /* USER CODE BEGIN UART5_Init 2 */ /* USER CODE END UART5_Init 2 */ } - 800126e: bf00 nop - 8001270: bd80 pop {r7, pc} - 8001272: bf00 nop - 8001274: 20000344 .word 0x20000344 - 8001278: 40005000 .word 0x40005000 + 80012be: bf00 nop + 80012c0: bd80 pop {r7, pc} + 80012c2: bf00 nop + 80012c4: 20000344 .word 0x20000344 + 80012c8: 40005000 .word 0x40005000 -0800127c : +080012cc : /* USART1 init function */ void MX_USART1_UART_Init(void) { - 800127c: b580 push {r7, lr} - 800127e: af00 add r7, sp, #0 + 80012cc: b580 push {r7, lr} + 80012ce: af00 add r7, sp, #0 /* USER CODE END USART1_Init 0 */ /* USER CODE BEGIN USART1_Init 1 */ /* USER CODE END USART1_Init 1 */ huart1.Instance = USART1; - 8001280: 4b11 ldr r3, [pc, #68] @ (80012c8 ) - 8001282: 4a12 ldr r2, [pc, #72] @ (80012cc ) - 8001284: 601a str r2, [r3, #0] + 80012d0: 4b11 ldr r3, [pc, #68] @ (8001318 ) + 80012d2: 4a12 ldr r2, [pc, #72] @ (800131c ) + 80012d4: 601a str r2, [r3, #0] huart1.Init.BaudRate = 115200; - 8001286: 4b10 ldr r3, [pc, #64] @ (80012c8 ) - 8001288: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 800128c: 605a str r2, [r3, #4] + 80012d6: 4b10 ldr r3, [pc, #64] @ (8001318 ) + 80012d8: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 80012dc: 605a str r2, [r3, #4] huart1.Init.WordLength = UART_WORDLENGTH_8B; - 800128e: 4b0e ldr r3, [pc, #56] @ (80012c8 ) - 8001290: 2200 movs r2, #0 - 8001292: 609a str r2, [r3, #8] + 80012de: 4b0e ldr r3, [pc, #56] @ (8001318 ) + 80012e0: 2200 movs r2, #0 + 80012e2: 609a str r2, [r3, #8] huart1.Init.StopBits = UART_STOPBITS_1; - 8001294: 4b0c ldr r3, [pc, #48] @ (80012c8 ) - 8001296: 2200 movs r2, #0 - 8001298: 60da str r2, [r3, #12] + 80012e4: 4b0c ldr r3, [pc, #48] @ (8001318 ) + 80012e6: 2200 movs r2, #0 + 80012e8: 60da str r2, [r3, #12] huart1.Init.Parity = UART_PARITY_NONE; - 800129a: 4b0b ldr r3, [pc, #44] @ (80012c8 ) - 800129c: 2200 movs r2, #0 - 800129e: 611a str r2, [r3, #16] + 80012ea: 4b0b ldr r3, [pc, #44] @ (8001318 ) + 80012ec: 2200 movs r2, #0 + 80012ee: 611a str r2, [r3, #16] huart1.Init.Mode = UART_MODE_TX_RX; - 80012a0: 4b09 ldr r3, [pc, #36] @ (80012c8 ) - 80012a2: 220c movs r2, #12 - 80012a4: 615a str r2, [r3, #20] + 80012f0: 4b09 ldr r3, [pc, #36] @ (8001318 ) + 80012f2: 220c movs r2, #12 + 80012f4: 615a str r2, [r3, #20] huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 80012a6: 4b08 ldr r3, [pc, #32] @ (80012c8 ) - 80012a8: 2200 movs r2, #0 - 80012aa: 619a str r2, [r3, #24] + 80012f6: 4b08 ldr r3, [pc, #32] @ (8001318 ) + 80012f8: 2200 movs r2, #0 + 80012fa: 619a str r2, [r3, #24] huart1.Init.OverSampling = UART_OVERSAMPLING_16; - 80012ac: 4b06 ldr r3, [pc, #24] @ (80012c8 ) - 80012ae: 2200 movs r2, #0 - 80012b0: 61da str r2, [r3, #28] + 80012fc: 4b06 ldr r3, [pc, #24] @ (8001318 ) + 80012fe: 2200 movs r2, #0 + 8001300: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart1) != HAL_OK) - 80012b2: 4805 ldr r0, [pc, #20] @ (80012c8 ) - 80012b4: f004 fb92 bl 80059dc - 80012b8: 4603 mov r3, r0 - 80012ba: 2b00 cmp r3, #0 - 80012bc: d001 beq.n 80012c2 + 8001302: 4805 ldr r0, [pc, #20] @ (8001318 ) + 8001304: f004 fb92 bl 8005a2c + 8001308: 4603 mov r3, r0 + 800130a: 2b00 cmp r3, #0 + 800130c: d001 beq.n 8001312 { Error_Handler(); - 80012be: f7ff fd4b bl 8000d58 + 800130e: f7ff fd4b bl 8000da8 } /* USER CODE BEGIN USART1_Init 2 */ /* USER CODE END USART1_Init 2 */ } - 80012c2: bf00 nop - 80012c4: bd80 pop {r7, pc} - 80012c6: bf00 nop - 80012c8: 2000038c .word 0x2000038c - 80012cc: 40011000 .word 0x40011000 + 8001312: bf00 nop + 8001314: bd80 pop {r7, pc} + 8001316: bf00 nop + 8001318: 2000038c .word 0x2000038c + 800131c: 40011000 .word 0x40011000 -080012d0 : +08001320 : /* USART2 init function */ void MX_USART2_UART_Init(void) { - 80012d0: b580 push {r7, lr} - 80012d2: af00 add r7, sp, #0 + 8001320: b580 push {r7, lr} + 8001322: af00 add r7, sp, #0 /* USER CODE END USART2_Init 0 */ /* USER CODE BEGIN USART2_Init 1 */ /* USER CODE END USART2_Init 1 */ huart2.Instance = USART2; - 80012d4: 4b11 ldr r3, [pc, #68] @ (800131c ) - 80012d6: 4a12 ldr r2, [pc, #72] @ (8001320 ) - 80012d8: 601a str r2, [r3, #0] + 8001324: 4b11 ldr r3, [pc, #68] @ (800136c ) + 8001326: 4a12 ldr r2, [pc, #72] @ (8001370 ) + 8001328: 601a str r2, [r3, #0] huart2.Init.BaudRate = 115200; - 80012da: 4b10 ldr r3, [pc, #64] @ (800131c ) - 80012dc: f44f 32e1 mov.w r2, #115200 @ 0x1c200 - 80012e0: 605a str r2, [r3, #4] + 800132a: 4b10 ldr r3, [pc, #64] @ (800136c ) + 800132c: f44f 32e1 mov.w r2, #115200 @ 0x1c200 + 8001330: 605a str r2, [r3, #4] huart2.Init.WordLength = UART_WORDLENGTH_8B; - 80012e2: 4b0e ldr r3, [pc, #56] @ (800131c ) - 80012e4: 2200 movs r2, #0 - 80012e6: 609a str r2, [r3, #8] + 8001332: 4b0e ldr r3, [pc, #56] @ (800136c ) + 8001334: 2200 movs r2, #0 + 8001336: 609a str r2, [r3, #8] huart2.Init.StopBits = UART_STOPBITS_1; - 80012e8: 4b0c ldr r3, [pc, #48] @ (800131c ) - 80012ea: 2200 movs r2, #0 - 80012ec: 60da str r2, [r3, #12] + 8001338: 4b0c ldr r3, [pc, #48] @ (800136c ) + 800133a: 2200 movs r2, #0 + 800133c: 60da str r2, [r3, #12] huart2.Init.Parity = UART_PARITY_NONE; - 80012ee: 4b0b ldr r3, [pc, #44] @ (800131c ) - 80012f0: 2200 movs r2, #0 - 80012f2: 611a str r2, [r3, #16] + 800133e: 4b0b ldr r3, [pc, #44] @ (800136c ) + 8001340: 2200 movs r2, #0 + 8001342: 611a str r2, [r3, #16] huart2.Init.Mode = UART_MODE_TX_RX; - 80012f4: 4b09 ldr r3, [pc, #36] @ (800131c ) - 80012f6: 220c movs r2, #12 - 80012f8: 615a str r2, [r3, #20] + 8001344: 4b09 ldr r3, [pc, #36] @ (800136c ) + 8001346: 220c movs r2, #12 + 8001348: 615a str r2, [r3, #20] huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; - 80012fa: 4b08 ldr r3, [pc, #32] @ (800131c ) - 80012fc: 2200 movs r2, #0 - 80012fe: 619a str r2, [r3, #24] + 800134a: 4b08 ldr r3, [pc, #32] @ (800136c ) + 800134c: 2200 movs r2, #0 + 800134e: 619a str r2, [r3, #24] huart2.Init.OverSampling = UART_OVERSAMPLING_16; - 8001300: 4b06 ldr r3, [pc, #24] @ (800131c ) - 8001302: 2200 movs r2, #0 - 8001304: 61da str r2, [r3, #28] + 8001350: 4b06 ldr r3, [pc, #24] @ (800136c ) + 8001352: 2200 movs r2, #0 + 8001354: 61da str r2, [r3, #28] if (HAL_UART_Init(&huart2) != HAL_OK) - 8001306: 4805 ldr r0, [pc, #20] @ (800131c ) - 8001308: f004 fb68 bl 80059dc - 800130c: 4603 mov r3, r0 - 800130e: 2b00 cmp r3, #0 - 8001310: d001 beq.n 8001316 + 8001356: 4805 ldr r0, [pc, #20] @ (800136c ) + 8001358: f004 fb68 bl 8005a2c + 800135c: 4603 mov r3, r0 + 800135e: 2b00 cmp r3, #0 + 8001360: d001 beq.n 8001366 { Error_Handler(); - 8001312: f7ff fd21 bl 8000d58 + 8001362: f7ff fd21 bl 8000da8 } /* USER CODE BEGIN USART2_Init 2 */ /* USER CODE END USART2_Init 2 */ } - 8001316: bf00 nop - 8001318: bd80 pop {r7, pc} - 800131a: bf00 nop - 800131c: 200003d4 .word 0x200003d4 - 8001320: 40004400 .word 0x40004400 + 8001366: bf00 nop + 8001368: bd80 pop {r7, pc} + 800136a: bf00 nop + 800136c: 200003d4 .word 0x200003d4 + 8001370: 40004400 .word 0x40004400 -08001324 : +08001374 : void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle) { - 8001324: b580 push {r7, lr} - 8001326: b090 sub sp, #64 @ 0x40 - 8001328: af00 add r7, sp, #0 - 800132a: 6078 str r0, [r7, #4] + 8001374: b580 push {r7, lr} + 8001376: b090 sub sp, #64 @ 0x40 + 8001378: af00 add r7, sp, #0 + 800137a: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800132c: f107 032c add.w r3, r7, #44 @ 0x2c - 8001330: 2200 movs r2, #0 - 8001332: 601a str r2, [r3, #0] - 8001334: 605a str r2, [r3, #4] - 8001336: 609a str r2, [r3, #8] - 8001338: 60da str r2, [r3, #12] - 800133a: 611a str r2, [r3, #16] + 800137c: f107 032c add.w r3, r7, #44 @ 0x2c + 8001380: 2200 movs r2, #0 + 8001382: 601a str r2, [r3, #0] + 8001384: 605a str r2, [r3, #4] + 8001386: 609a str r2, [r3, #8] + 8001388: 60da str r2, [r3, #12] + 800138a: 611a str r2, [r3, #16] if(uartHandle->Instance==UART4) - 800133c: 687b ldr r3, [r7, #4] - 800133e: 681b ldr r3, [r3, #0] - 8001340: 4a4a ldr r2, [pc, #296] @ (800146c ) - 8001342: 4293 cmp r3, r2 - 8001344: f040 80a0 bne.w 8001488 + 800138c: 687b ldr r3, [r7, #4] + 800138e: 681b ldr r3, [r3, #0] + 8001390: 4a4a ldr r2, [pc, #296] @ (80014bc ) + 8001392: 4293 cmp r3, r2 + 8001394: f040 80a0 bne.w 80014d8 { /* USER CODE BEGIN UART4_MspInit 0 */ /* USER CODE END UART4_MspInit 0 */ /* UART4 clock enable */ __HAL_RCC_UART4_CLK_ENABLE(); - 8001348: 2300 movs r3, #0 - 800134a: 62bb str r3, [r7, #40] @ 0x28 - 800134c: 4b48 ldr r3, [pc, #288] @ (8001470 ) - 800134e: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001350: 4a47 ldr r2, [pc, #284] @ (8001470 ) - 8001352: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8001356: 6413 str r3, [r2, #64] @ 0x40 - 8001358: 4b45 ldr r3, [pc, #276] @ (8001470 ) - 800135a: 6c1b ldr r3, [r3, #64] @ 0x40 - 800135c: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8001360: 62bb str r3, [r7, #40] @ 0x28 - 8001362: 6abb ldr r3, [r7, #40] @ 0x28 + 8001398: 2300 movs r3, #0 + 800139a: 62bb str r3, [r7, #40] @ 0x28 + 800139c: 4b48 ldr r3, [pc, #288] @ (80014c0 ) + 800139e: 6c1b ldr r3, [r3, #64] @ 0x40 + 80013a0: 4a47 ldr r2, [pc, #284] @ (80014c0 ) + 80013a2: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 80013a6: 6413 str r3, [r2, #64] @ 0x40 + 80013a8: 4b45 ldr r3, [pc, #276] @ (80014c0 ) + 80013aa: 6c1b ldr r3, [r3, #64] @ 0x40 + 80013ac: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 80013b0: 62bb str r3, [r7, #40] @ 0x28 + 80013b2: 6abb ldr r3, [r7, #40] @ 0x28 __HAL_RCC_GPIOA_CLK_ENABLE(); - 8001364: 2300 movs r3, #0 - 8001366: 627b str r3, [r7, #36] @ 0x24 - 8001368: 4b41 ldr r3, [pc, #260] @ (8001470 ) - 800136a: 6b1b ldr r3, [r3, #48] @ 0x30 - 800136c: 4a40 ldr r2, [pc, #256] @ (8001470 ) - 800136e: f043 0301 orr.w r3, r3, #1 - 8001372: 6313 str r3, [r2, #48] @ 0x30 - 8001374: 4b3e ldr r3, [pc, #248] @ (8001470 ) - 8001376: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001378: f003 0301 and.w r3, r3, #1 - 800137c: 627b str r3, [r7, #36] @ 0x24 - 800137e: 6a7b ldr r3, [r7, #36] @ 0x24 + 80013b4: 2300 movs r3, #0 + 80013b6: 627b str r3, [r7, #36] @ 0x24 + 80013b8: 4b41 ldr r3, [pc, #260] @ (80014c0 ) + 80013ba: 6b1b ldr r3, [r3, #48] @ 0x30 + 80013bc: 4a40 ldr r2, [pc, #256] @ (80014c0 ) + 80013be: f043 0301 orr.w r3, r3, #1 + 80013c2: 6313 str r3, [r2, #48] @ 0x30 + 80013c4: 4b3e ldr r3, [pc, #248] @ (80014c0 ) + 80013c6: 6b1b ldr r3, [r3, #48] @ 0x30 + 80013c8: f003 0301 and.w r3, r3, #1 + 80013cc: 627b str r3, [r7, #36] @ 0x24 + 80013ce: 6a7b ldr r3, [r7, #36] @ 0x24 /**UART4 GPIO Configuration PA0-WKUP ------> UART4_TX PA1 ------> UART4_RX */ GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1; - 8001380: 2303 movs r3, #3 - 8001382: 62fb str r3, [r7, #44] @ 0x2c + 80013d0: 2303 movs r3, #3 + 80013d2: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8001384: 2302 movs r3, #2 - 8001386: 633b str r3, [r7, #48] @ 0x30 + 80013d4: 2302 movs r3, #2 + 80013d6: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001388: 2300 movs r3, #0 - 800138a: 637b str r3, [r7, #52] @ 0x34 + 80013d8: 2300 movs r3, #0 + 80013da: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 800138c: 2303 movs r3, #3 - 800138e: 63bb str r3, [r7, #56] @ 0x38 + 80013dc: 2303 movs r3, #3 + 80013de: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART4; - 8001390: 2308 movs r3, #8 - 8001392: 63fb str r3, [r7, #60] @ 0x3c + 80013e0: 2308 movs r3, #8 + 80013e2: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8001394: f107 032c add.w r3, r7, #44 @ 0x2c - 8001398: 4619 mov r1, r3 - 800139a: 4836 ldr r0, [pc, #216] @ (8001474 ) - 800139c: f001 f858 bl 8002450 + 80013e4: f107 032c add.w r3, r7, #44 @ 0x2c + 80013e8: 4619 mov r1, r3 + 80013ea: 4836 ldr r0, [pc, #216] @ (80014c4 ) + 80013ec: f001 f858 bl 80024a0 /* UART4 DMA Init */ /* UART4_RX Init */ hdma_uart4_rx.Instance = DMA1_Stream2; - 80013a0: 4b35 ldr r3, [pc, #212] @ (8001478 ) - 80013a2: 4a36 ldr r2, [pc, #216] @ (800147c ) - 80013a4: 601a str r2, [r3, #0] + 80013f0: 4b35 ldr r3, [pc, #212] @ (80014c8 ) + 80013f2: 4a36 ldr r2, [pc, #216] @ (80014cc ) + 80013f4: 601a str r2, [r3, #0] hdma_uart4_rx.Init.Channel = DMA_CHANNEL_4; - 80013a6: 4b34 ldr r3, [pc, #208] @ (8001478 ) - 80013a8: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80013ac: 605a str r2, [r3, #4] + 80013f6: 4b34 ldr r3, [pc, #208] @ (80014c8 ) + 80013f8: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 80013fc: 605a str r2, [r3, #4] hdma_uart4_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 80013ae: 4b32 ldr r3, [pc, #200] @ (8001478 ) - 80013b0: 2200 movs r2, #0 - 80013b2: 609a str r2, [r3, #8] + 80013fe: 4b32 ldr r3, [pc, #200] @ (80014c8 ) + 8001400: 2200 movs r2, #0 + 8001402: 609a str r2, [r3, #8] hdma_uart4_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 80013b4: 4b30 ldr r3, [pc, #192] @ (8001478 ) - 80013b6: 2200 movs r2, #0 - 80013b8: 60da str r2, [r3, #12] + 8001404: 4b30 ldr r3, [pc, #192] @ (80014c8 ) + 8001406: 2200 movs r2, #0 + 8001408: 60da str r2, [r3, #12] hdma_uart4_rx.Init.MemInc = DMA_MINC_ENABLE; - 80013ba: 4b2f ldr r3, [pc, #188] @ (8001478 ) - 80013bc: f44f 6280 mov.w r2, #1024 @ 0x400 - 80013c0: 611a str r2, [r3, #16] + 800140a: 4b2f ldr r3, [pc, #188] @ (80014c8 ) + 800140c: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001410: 611a str r2, [r3, #16] hdma_uart4_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80013c2: 4b2d ldr r3, [pc, #180] @ (8001478 ) - 80013c4: 2200 movs r2, #0 - 80013c6: 615a str r2, [r3, #20] + 8001412: 4b2d ldr r3, [pc, #180] @ (80014c8 ) + 8001414: 2200 movs r2, #0 + 8001416: 615a str r2, [r3, #20] hdma_uart4_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80013c8: 4b2b ldr r3, [pc, #172] @ (8001478 ) - 80013ca: 2200 movs r2, #0 - 80013cc: 619a str r2, [r3, #24] + 8001418: 4b2b ldr r3, [pc, #172] @ (80014c8 ) + 800141a: 2200 movs r2, #0 + 800141c: 619a str r2, [r3, #24] hdma_uart4_rx.Init.Mode = DMA_NORMAL; - 80013ce: 4b2a ldr r3, [pc, #168] @ (8001478 ) - 80013d0: 2200 movs r2, #0 - 80013d2: 61da str r2, [r3, #28] + 800141e: 4b2a ldr r3, [pc, #168] @ (80014c8 ) + 8001420: 2200 movs r2, #0 + 8001422: 61da str r2, [r3, #28] hdma_uart4_rx.Init.Priority = DMA_PRIORITY_LOW; - 80013d4: 4b28 ldr r3, [pc, #160] @ (8001478 ) - 80013d6: 2200 movs r2, #0 - 80013d8: 621a str r2, [r3, #32] + 8001424: 4b28 ldr r3, [pc, #160] @ (80014c8 ) + 8001426: 2200 movs r2, #0 + 8001428: 621a str r2, [r3, #32] hdma_uart4_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80013da: 4b27 ldr r3, [pc, #156] @ (8001478 ) - 80013dc: 2200 movs r2, #0 - 80013de: 625a str r2, [r3, #36] @ 0x24 + 800142a: 4b27 ldr r3, [pc, #156] @ (80014c8 ) + 800142c: 2200 movs r2, #0 + 800142e: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_uart4_rx) != HAL_OK) - 80013e0: 4825 ldr r0, [pc, #148] @ (8001478 ) - 80013e2: f000 fc33 bl 8001c4c - 80013e6: 4603 mov r3, r0 - 80013e8: 2b00 cmp r3, #0 - 80013ea: d001 beq.n 80013f0 + 8001430: 4825 ldr r0, [pc, #148] @ (80014c8 ) + 8001432: f000 fc33 bl 8001c9c + 8001436: 4603 mov r3, r0 + 8001438: 2b00 cmp r3, #0 + 800143a: d001 beq.n 8001440 { Error_Handler(); - 80013ec: f7ff fcb4 bl 8000d58 + 800143c: f7ff fcb4 bl 8000da8 } __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart4_rx); - 80013f0: 687b ldr r3, [r7, #4] - 80013f2: 4a21 ldr r2, [pc, #132] @ (8001478 ) - 80013f4: 63da str r2, [r3, #60] @ 0x3c - 80013f6: 4a20 ldr r2, [pc, #128] @ (8001478 ) - 80013f8: 687b ldr r3, [r7, #4] - 80013fa: 6393 str r3, [r2, #56] @ 0x38 + 8001440: 687b ldr r3, [r7, #4] + 8001442: 4a21 ldr r2, [pc, #132] @ (80014c8 ) + 8001444: 63da str r2, [r3, #60] @ 0x3c + 8001446: 4a20 ldr r2, [pc, #128] @ (80014c8 ) + 8001448: 687b ldr r3, [r7, #4] + 800144a: 6393 str r3, [r2, #56] @ 0x38 /* UART4_TX Init */ hdma_uart4_tx.Instance = DMA1_Stream4; - 80013fc: 4b20 ldr r3, [pc, #128] @ (8001480 ) - 80013fe: 4a21 ldr r2, [pc, #132] @ (8001484 ) - 8001400: 601a str r2, [r3, #0] + 800144c: 4b20 ldr r3, [pc, #128] @ (80014d0 ) + 800144e: 4a21 ldr r2, [pc, #132] @ (80014d4 ) + 8001450: 601a str r2, [r3, #0] hdma_uart4_tx.Init.Channel = DMA_CHANNEL_4; - 8001402: 4b1f ldr r3, [pc, #124] @ (8001480 ) - 8001404: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001408: 605a str r2, [r3, #4] + 8001452: 4b1f ldr r3, [pc, #124] @ (80014d0 ) + 8001454: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001458: 605a str r2, [r3, #4] hdma_uart4_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 800140a: 4b1d ldr r3, [pc, #116] @ (8001480 ) - 800140c: 2240 movs r2, #64 @ 0x40 - 800140e: 609a str r2, [r3, #8] + 800145a: 4b1d ldr r3, [pc, #116] @ (80014d0 ) + 800145c: 2240 movs r2, #64 @ 0x40 + 800145e: 609a str r2, [r3, #8] hdma_uart4_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 8001410: 4b1b ldr r3, [pc, #108] @ (8001480 ) - 8001412: 2200 movs r2, #0 - 8001414: 60da str r2, [r3, #12] + 8001460: 4b1b ldr r3, [pc, #108] @ (80014d0 ) + 8001462: 2200 movs r2, #0 + 8001464: 60da str r2, [r3, #12] hdma_uart4_tx.Init.MemInc = DMA_MINC_ENABLE; - 8001416: 4b1a ldr r3, [pc, #104] @ (8001480 ) - 8001418: f44f 6280 mov.w r2, #1024 @ 0x400 - 800141c: 611a str r2, [r3, #16] + 8001466: 4b1a ldr r3, [pc, #104] @ (80014d0 ) + 8001468: f44f 6280 mov.w r2, #1024 @ 0x400 + 800146c: 611a str r2, [r3, #16] hdma_uart4_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800141e: 4b18 ldr r3, [pc, #96] @ (8001480 ) - 8001420: 2200 movs r2, #0 - 8001422: 615a str r2, [r3, #20] + 800146e: 4b18 ldr r3, [pc, #96] @ (80014d0 ) + 8001470: 2200 movs r2, #0 + 8001472: 615a str r2, [r3, #20] hdma_uart4_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 8001424: 4b16 ldr r3, [pc, #88] @ (8001480 ) - 8001426: 2200 movs r2, #0 - 8001428: 619a str r2, [r3, #24] + 8001474: 4b16 ldr r3, [pc, #88] @ (80014d0 ) + 8001476: 2200 movs r2, #0 + 8001478: 619a str r2, [r3, #24] hdma_uart4_tx.Init.Mode = DMA_NORMAL; - 800142a: 4b15 ldr r3, [pc, #84] @ (8001480 ) - 800142c: 2200 movs r2, #0 - 800142e: 61da str r2, [r3, #28] + 800147a: 4b15 ldr r3, [pc, #84] @ (80014d0 ) + 800147c: 2200 movs r2, #0 + 800147e: 61da str r2, [r3, #28] hdma_uart4_tx.Init.Priority = DMA_PRIORITY_LOW; - 8001430: 4b13 ldr r3, [pc, #76] @ (8001480 ) - 8001432: 2200 movs r2, #0 - 8001434: 621a str r2, [r3, #32] + 8001480: 4b13 ldr r3, [pc, #76] @ (80014d0 ) + 8001482: 2200 movs r2, #0 + 8001484: 621a str r2, [r3, #32] hdma_uart4_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001436: 4b12 ldr r3, [pc, #72] @ (8001480 ) - 8001438: 2200 movs r2, #0 - 800143a: 625a str r2, [r3, #36] @ 0x24 + 8001486: 4b12 ldr r3, [pc, #72] @ (80014d0 ) + 8001488: 2200 movs r2, #0 + 800148a: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_uart4_tx) != HAL_OK) - 800143c: 4810 ldr r0, [pc, #64] @ (8001480 ) - 800143e: f000 fc05 bl 8001c4c - 8001442: 4603 mov r3, r0 - 8001444: 2b00 cmp r3, #0 - 8001446: d001 beq.n 800144c + 800148c: 4810 ldr r0, [pc, #64] @ (80014d0 ) + 800148e: f000 fc05 bl 8001c9c + 8001492: 4603 mov r3, r0 + 8001494: 2b00 cmp r3, #0 + 8001496: d001 beq.n 800149c { Error_Handler(); - 8001448: f7ff fc86 bl 8000d58 + 8001498: f7ff fc86 bl 8000da8 } __HAL_LINKDMA(uartHandle,hdmatx,hdma_uart4_tx); - 800144c: 687b ldr r3, [r7, #4] - 800144e: 4a0c ldr r2, [pc, #48] @ (8001480 ) - 8001450: 639a str r2, [r3, #56] @ 0x38 - 8001452: 4a0b ldr r2, [pc, #44] @ (8001480 ) - 8001454: 687b ldr r3, [r7, #4] - 8001456: 6393 str r3, [r2, #56] @ 0x38 + 800149c: 687b ldr r3, [r7, #4] + 800149e: 4a0c ldr r2, [pc, #48] @ (80014d0 ) + 80014a0: 639a str r2, [r3, #56] @ 0x38 + 80014a2: 4a0b ldr r2, [pc, #44] @ (80014d0 ) + 80014a4: 687b ldr r3, [r7, #4] + 80014a6: 6393 str r3, [r2, #56] @ 0x38 /* UART4 interrupt Init */ HAL_NVIC_SetPriority(UART4_IRQn, 0, 0); - 8001458: 2200 movs r2, #0 - 800145a: 2100 movs r1, #0 - 800145c: 2034 movs r0, #52 @ 0x34 - 800145e: f000 fbbe bl 8001bde + 80014a8: 2200 movs r2, #0 + 80014aa: 2100 movs r1, #0 + 80014ac: 2034 movs r0, #52 @ 0x34 + 80014ae: f000 fbbe bl 8001c2e HAL_NVIC_EnableIRQ(UART4_IRQn); - 8001462: 2034 movs r0, #52 @ 0x34 - 8001464: f000 fbd7 bl 8001c16 + 80014b2: 2034 movs r0, #52 @ 0x34 + 80014b4: f000 fbd7 bl 8001c66 HAL_NVIC_EnableIRQ(USART2_IRQn); /* USER CODE BEGIN USART2_MspInit 1 */ /* USER CODE END USART2_MspInit 1 */ } } - 8001468: e202 b.n 8001870 - 800146a: bf00 nop - 800146c: 40004c00 .word 0x40004c00 - 8001470: 40023800 .word 0x40023800 - 8001474: 40020000 .word 0x40020000 - 8001478: 2000041c .word 0x2000041c - 800147c: 40026040 .word 0x40026040 - 8001480: 2000047c .word 0x2000047c - 8001484: 40026070 .word 0x40026070 + 80014b8: e202 b.n 80018c0 + 80014ba: bf00 nop + 80014bc: 40004c00 .word 0x40004c00 + 80014c0: 40023800 .word 0x40023800 + 80014c4: 40020000 .word 0x40020000 + 80014c8: 2000041c .word 0x2000041c + 80014cc: 40026040 .word 0x40026040 + 80014d0: 2000047c .word 0x2000047c + 80014d4: 40026070 .word 0x40026070 else if(uartHandle->Instance==UART5) - 8001488: 687b ldr r3, [r7, #4] - 800148a: 681b ldr r3, [r3, #0] - 800148c: 4a59 ldr r2, [pc, #356] @ (80015f4 ) - 800148e: 4293 cmp r3, r2 - 8001490: f040 80c0 bne.w 8001614 + 80014d8: 687b ldr r3, [r7, #4] + 80014da: 681b ldr r3, [r3, #0] + 80014dc: 4a59 ldr r2, [pc, #356] @ (8001644 ) + 80014de: 4293 cmp r3, r2 + 80014e0: f040 80c0 bne.w 8001664 __HAL_RCC_UART5_CLK_ENABLE(); - 8001494: 2300 movs r3, #0 - 8001496: 623b str r3, [r7, #32] - 8001498: 4b57 ldr r3, [pc, #348] @ (80015f8 ) - 800149a: 6c1b ldr r3, [r3, #64] @ 0x40 - 800149c: 4a56 ldr r2, [pc, #344] @ (80015f8 ) - 800149e: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 - 80014a2: 6413 str r3, [r2, #64] @ 0x40 - 80014a4: 4b54 ldr r3, [pc, #336] @ (80015f8 ) - 80014a6: 6c1b ldr r3, [r3, #64] @ 0x40 - 80014a8: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 80014ac: 623b str r3, [r7, #32] - 80014ae: 6a3b ldr r3, [r7, #32] + 80014e4: 2300 movs r3, #0 + 80014e6: 623b str r3, [r7, #32] + 80014e8: 4b57 ldr r3, [pc, #348] @ (8001648 ) + 80014ea: 6c1b ldr r3, [r3, #64] @ 0x40 + 80014ec: 4a56 ldr r2, [pc, #344] @ (8001648 ) + 80014ee: f443 1380 orr.w r3, r3, #1048576 @ 0x100000 + 80014f2: 6413 str r3, [r2, #64] @ 0x40 + 80014f4: 4b54 ldr r3, [pc, #336] @ (8001648 ) + 80014f6: 6c1b ldr r3, [r3, #64] @ 0x40 + 80014f8: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 80014fc: 623b str r3, [r7, #32] + 80014fe: 6a3b ldr r3, [r7, #32] __HAL_RCC_GPIOC_CLK_ENABLE(); - 80014b0: 2300 movs r3, #0 - 80014b2: 61fb str r3, [r7, #28] - 80014b4: 4b50 ldr r3, [pc, #320] @ (80015f8 ) - 80014b6: 6b1b ldr r3, [r3, #48] @ 0x30 - 80014b8: 4a4f ldr r2, [pc, #316] @ (80015f8 ) - 80014ba: f043 0304 orr.w r3, r3, #4 - 80014be: 6313 str r3, [r2, #48] @ 0x30 - 80014c0: 4b4d ldr r3, [pc, #308] @ (80015f8 ) - 80014c2: 6b1b ldr r3, [r3, #48] @ 0x30 - 80014c4: f003 0304 and.w r3, r3, #4 - 80014c8: 61fb str r3, [r7, #28] - 80014ca: 69fb ldr r3, [r7, #28] + 8001500: 2300 movs r3, #0 + 8001502: 61fb str r3, [r7, #28] + 8001504: 4b50 ldr r3, [pc, #320] @ (8001648 ) + 8001506: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001508: 4a4f ldr r2, [pc, #316] @ (8001648 ) + 800150a: f043 0304 orr.w r3, r3, #4 + 800150e: 6313 str r3, [r2, #48] @ 0x30 + 8001510: 4b4d ldr r3, [pc, #308] @ (8001648 ) + 8001512: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001514: f003 0304 and.w r3, r3, #4 + 8001518: 61fb str r3, [r7, #28] + 800151a: 69fb ldr r3, [r7, #28] __HAL_RCC_GPIOD_CLK_ENABLE(); - 80014cc: 2300 movs r3, #0 - 80014ce: 61bb str r3, [r7, #24] - 80014d0: 4b49 ldr r3, [pc, #292] @ (80015f8 ) - 80014d2: 6b1b ldr r3, [r3, #48] @ 0x30 - 80014d4: 4a48 ldr r2, [pc, #288] @ (80015f8 ) - 80014d6: f043 0308 orr.w r3, r3, #8 - 80014da: 6313 str r3, [r2, #48] @ 0x30 - 80014dc: 4b46 ldr r3, [pc, #280] @ (80015f8 ) - 80014de: 6b1b ldr r3, [r3, #48] @ 0x30 - 80014e0: f003 0308 and.w r3, r3, #8 - 80014e4: 61bb str r3, [r7, #24] - 80014e6: 69bb ldr r3, [r7, #24] + 800151c: 2300 movs r3, #0 + 800151e: 61bb str r3, [r7, #24] + 8001520: 4b49 ldr r3, [pc, #292] @ (8001648 ) + 8001522: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001524: 4a48 ldr r2, [pc, #288] @ (8001648 ) + 8001526: f043 0308 orr.w r3, r3, #8 + 800152a: 6313 str r3, [r2, #48] @ 0x30 + 800152c: 4b46 ldr r3, [pc, #280] @ (8001648 ) + 800152e: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001530: f003 0308 and.w r3, r3, #8 + 8001534: 61bb str r3, [r7, #24] + 8001536: 69bb ldr r3, [r7, #24] GPIO_InitStruct.Pin = GPIO_PIN_12; - 80014e8: f44f 5380 mov.w r3, #4096 @ 0x1000 - 80014ec: 62fb str r3, [r7, #44] @ 0x2c + 8001538: f44f 5380 mov.w r3, #4096 @ 0x1000 + 800153c: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 80014ee: 2302 movs r3, #2 - 80014f0: 633b str r3, [r7, #48] @ 0x30 + 800153e: 2302 movs r3, #2 + 8001540: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 80014f2: 2300 movs r3, #0 - 80014f4: 637b str r3, [r7, #52] @ 0x34 + 8001542: 2300 movs r3, #0 + 8001544: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 80014f6: 2303 movs r3, #3 - 80014f8: 63bb str r3, [r7, #56] @ 0x38 + 8001546: 2303 movs r3, #3 + 8001548: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART5; - 80014fa: 2308 movs r3, #8 - 80014fc: 63fb str r3, [r7, #60] @ 0x3c + 800154a: 2308 movs r3, #8 + 800154c: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); - 80014fe: f107 032c add.w r3, r7, #44 @ 0x2c - 8001502: 4619 mov r1, r3 - 8001504: 483d ldr r0, [pc, #244] @ (80015fc ) - 8001506: f000 ffa3 bl 8002450 + 800154e: f107 032c add.w r3, r7, #44 @ 0x2c + 8001552: 4619 mov r1, r3 + 8001554: 483d ldr r0, [pc, #244] @ (800164c ) + 8001556: f000 ffa3 bl 80024a0 GPIO_InitStruct.Pin = GPIO_PIN_2; - 800150a: 2304 movs r3, #4 - 800150c: 62fb str r3, [r7, #44] @ 0x2c + 800155a: 2304 movs r3, #4 + 800155c: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800150e: 2302 movs r3, #2 - 8001510: 633b str r3, [r7, #48] @ 0x30 + 800155e: 2302 movs r3, #2 + 8001560: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001512: 2300 movs r3, #0 - 8001514: 637b str r3, [r7, #52] @ 0x34 + 8001562: 2300 movs r3, #0 + 8001564: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8001516: 2303 movs r3, #3 - 8001518: 63bb str r3, [r7, #56] @ 0x38 + 8001566: 2303 movs r3, #3 + 8001568: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF8_UART5; - 800151a: 2308 movs r3, #8 - 800151c: 63fb str r3, [r7, #60] @ 0x3c + 800156a: 2308 movs r3, #8 + 800156c: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); - 800151e: f107 032c add.w r3, r7, #44 @ 0x2c - 8001522: 4619 mov r1, r3 - 8001524: 4836 ldr r0, [pc, #216] @ (8001600 ) - 8001526: f000 ff93 bl 8002450 + 800156e: f107 032c add.w r3, r7, #44 @ 0x2c + 8001572: 4619 mov r1, r3 + 8001574: 4836 ldr r0, [pc, #216] @ (8001650 ) + 8001576: f000 ff93 bl 80024a0 hdma_uart5_rx.Instance = DMA1_Stream0; - 800152a: 4b36 ldr r3, [pc, #216] @ (8001604 ) - 800152c: 4a36 ldr r2, [pc, #216] @ (8001608 ) - 800152e: 601a str r2, [r3, #0] + 800157a: 4b36 ldr r3, [pc, #216] @ (8001654 ) + 800157c: 4a36 ldr r2, [pc, #216] @ (8001658 ) + 800157e: 601a str r2, [r3, #0] hdma_uart5_rx.Init.Channel = DMA_CHANNEL_4; - 8001530: 4b34 ldr r3, [pc, #208] @ (8001604 ) - 8001532: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001536: 605a str r2, [r3, #4] + 8001580: 4b34 ldr r3, [pc, #208] @ (8001654 ) + 8001582: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001586: 605a str r2, [r3, #4] hdma_uart5_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 8001538: 4b32 ldr r3, [pc, #200] @ (8001604 ) - 800153a: 2200 movs r2, #0 - 800153c: 609a str r2, [r3, #8] + 8001588: 4b32 ldr r3, [pc, #200] @ (8001654 ) + 800158a: 2200 movs r2, #0 + 800158c: 609a str r2, [r3, #8] hdma_uart5_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 800153e: 4b31 ldr r3, [pc, #196] @ (8001604 ) - 8001540: 2200 movs r2, #0 - 8001542: 60da str r2, [r3, #12] + 800158e: 4b31 ldr r3, [pc, #196] @ (8001654 ) + 8001590: 2200 movs r2, #0 + 8001592: 60da str r2, [r3, #12] hdma_uart5_rx.Init.MemInc = DMA_MINC_ENABLE; - 8001544: 4b2f ldr r3, [pc, #188] @ (8001604 ) - 8001546: f44f 6280 mov.w r2, #1024 @ 0x400 - 800154a: 611a str r2, [r3, #16] + 8001594: 4b2f ldr r3, [pc, #188] @ (8001654 ) + 8001596: f44f 6280 mov.w r2, #1024 @ 0x400 + 800159a: 611a str r2, [r3, #16] hdma_uart5_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800154c: 4b2d ldr r3, [pc, #180] @ (8001604 ) - 800154e: 2200 movs r2, #0 - 8001550: 615a str r2, [r3, #20] + 800159c: 4b2d ldr r3, [pc, #180] @ (8001654 ) + 800159e: 2200 movs r2, #0 + 80015a0: 615a str r2, [r3, #20] hdma_uart5_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 8001552: 4b2c ldr r3, [pc, #176] @ (8001604 ) - 8001554: 2200 movs r2, #0 - 8001556: 619a str r2, [r3, #24] + 80015a2: 4b2c ldr r3, [pc, #176] @ (8001654 ) + 80015a4: 2200 movs r2, #0 + 80015a6: 619a str r2, [r3, #24] hdma_uart5_rx.Init.Mode = DMA_NORMAL; - 8001558: 4b2a ldr r3, [pc, #168] @ (8001604 ) - 800155a: 2200 movs r2, #0 - 800155c: 61da str r2, [r3, #28] - hdma_uart5_rx.Init.Priority = DMA_PRIORITY_LOW; - 800155e: 4b29 ldr r3, [pc, #164] @ (8001604 ) - 8001560: 2200 movs r2, #0 - 8001562: 621a str r2, [r3, #32] - hdma_uart5_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001564: 4b27 ldr r3, [pc, #156] @ (8001604 ) - 8001566: 2200 movs r2, #0 - 8001568: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_uart5_rx) != HAL_OK) - 800156a: 4826 ldr r0, [pc, #152] @ (8001604 ) - 800156c: f000 fb6e bl 8001c4c - 8001570: 4603 mov r3, r0 - 8001572: 2b00 cmp r3, #0 - 8001574: d001 beq.n 800157a - Error_Handler(); - 8001576: f7ff fbef bl 8000d58 - __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart5_rx); - 800157a: 687b ldr r3, [r7, #4] - 800157c: 4a21 ldr r2, [pc, #132] @ (8001604 ) - 800157e: 63da str r2, [r3, #60] @ 0x3c - 8001580: 4a20 ldr r2, [pc, #128] @ (8001604 ) - 8001582: 687b ldr r3, [r7, #4] - 8001584: 6393 str r3, [r2, #56] @ 0x38 - hdma_uart5_tx.Instance = DMA1_Stream7; - 8001586: 4b21 ldr r3, [pc, #132] @ (800160c ) - 8001588: 4a21 ldr r2, [pc, #132] @ (8001610 ) - 800158a: 601a str r2, [r3, #0] - hdma_uart5_tx.Init.Channel = DMA_CHANNEL_4; - 800158c: 4b1f ldr r3, [pc, #124] @ (800160c ) - 800158e: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001592: 605a str r2, [r3, #4] - hdma_uart5_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 8001594: 4b1d ldr r3, [pc, #116] @ (800160c ) - 8001596: 2240 movs r2, #64 @ 0x40 - 8001598: 609a str r2, [r3, #8] - hdma_uart5_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 800159a: 4b1c ldr r3, [pc, #112] @ (800160c ) - 800159c: 2200 movs r2, #0 - 800159e: 60da str r2, [r3, #12] - hdma_uart5_tx.Init.MemInc = DMA_MINC_ENABLE; - 80015a0: 4b1a ldr r3, [pc, #104] @ (800160c ) - 80015a2: f44f 6280 mov.w r2, #1024 @ 0x400 - 80015a6: 611a str r2, [r3, #16] - hdma_uart5_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80015a8: 4b18 ldr r3, [pc, #96] @ (800160c ) + 80015a8: 4b2a ldr r3, [pc, #168] @ (8001654 ) 80015aa: 2200 movs r2, #0 - 80015ac: 615a str r2, [r3, #20] - hdma_uart5_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80015ae: 4b17 ldr r3, [pc, #92] @ (800160c ) + 80015ac: 61da str r2, [r3, #28] + hdma_uart5_rx.Init.Priority = DMA_PRIORITY_LOW; + 80015ae: 4b29 ldr r3, [pc, #164] @ (8001654 ) 80015b0: 2200 movs r2, #0 - 80015b2: 619a str r2, [r3, #24] - hdma_uart5_tx.Init.Mode = DMA_NORMAL; - 80015b4: 4b15 ldr r3, [pc, #84] @ (800160c ) + 80015b2: 621a str r2, [r3, #32] + hdma_uart5_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 80015b4: 4b27 ldr r3, [pc, #156] @ (8001654 ) 80015b6: 2200 movs r2, #0 - 80015b8: 61da str r2, [r3, #28] + 80015b8: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_uart5_rx) != HAL_OK) + 80015ba: 4826 ldr r0, [pc, #152] @ (8001654 ) + 80015bc: f000 fb6e bl 8001c9c + 80015c0: 4603 mov r3, r0 + 80015c2: 2b00 cmp r3, #0 + 80015c4: d001 beq.n 80015ca + Error_Handler(); + 80015c6: f7ff fbef bl 8000da8 + __HAL_LINKDMA(uartHandle,hdmarx,hdma_uart5_rx); + 80015ca: 687b ldr r3, [r7, #4] + 80015cc: 4a21 ldr r2, [pc, #132] @ (8001654 ) + 80015ce: 63da str r2, [r3, #60] @ 0x3c + 80015d0: 4a20 ldr r2, [pc, #128] @ (8001654 ) + 80015d2: 687b ldr r3, [r7, #4] + 80015d4: 6393 str r3, [r2, #56] @ 0x38 + hdma_uart5_tx.Instance = DMA1_Stream7; + 80015d6: 4b21 ldr r3, [pc, #132] @ (800165c ) + 80015d8: 4a21 ldr r2, [pc, #132] @ (8001660 ) + 80015da: 601a str r2, [r3, #0] + hdma_uart5_tx.Init.Channel = DMA_CHANNEL_4; + 80015dc: 4b1f ldr r3, [pc, #124] @ (800165c ) + 80015de: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 80015e2: 605a str r2, [r3, #4] + hdma_uart5_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 80015e4: 4b1d ldr r3, [pc, #116] @ (800165c ) + 80015e6: 2240 movs r2, #64 @ 0x40 + 80015e8: 609a str r2, [r3, #8] + hdma_uart5_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 80015ea: 4b1c ldr r3, [pc, #112] @ (800165c ) + 80015ec: 2200 movs r2, #0 + 80015ee: 60da str r2, [r3, #12] + hdma_uart5_tx.Init.MemInc = DMA_MINC_ENABLE; + 80015f0: 4b1a ldr r3, [pc, #104] @ (800165c ) + 80015f2: f44f 6280 mov.w r2, #1024 @ 0x400 + 80015f6: 611a str r2, [r3, #16] + hdma_uart5_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 80015f8: 4b18 ldr r3, [pc, #96] @ (800165c ) + 80015fa: 2200 movs r2, #0 + 80015fc: 615a str r2, [r3, #20] + hdma_uart5_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 80015fe: 4b17 ldr r3, [pc, #92] @ (800165c ) + 8001600: 2200 movs r2, #0 + 8001602: 619a str r2, [r3, #24] + hdma_uart5_tx.Init.Mode = DMA_NORMAL; + 8001604: 4b15 ldr r3, [pc, #84] @ (800165c ) + 8001606: 2200 movs r2, #0 + 8001608: 61da str r2, [r3, #28] hdma_uart5_tx.Init.Priority = DMA_PRIORITY_LOW; - 80015ba: 4b14 ldr r3, [pc, #80] @ (800160c ) - 80015bc: 2200 movs r2, #0 - 80015be: 621a str r2, [r3, #32] + 800160a: 4b14 ldr r3, [pc, #80] @ (800165c ) + 800160c: 2200 movs r2, #0 + 800160e: 621a str r2, [r3, #32] hdma_uart5_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80015c0: 4b12 ldr r3, [pc, #72] @ (800160c ) - 80015c2: 2200 movs r2, #0 - 80015c4: 625a str r2, [r3, #36] @ 0x24 + 8001610: 4b12 ldr r3, [pc, #72] @ (800165c ) + 8001612: 2200 movs r2, #0 + 8001614: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_uart5_tx) != HAL_OK) - 80015c6: 4811 ldr r0, [pc, #68] @ (800160c ) - 80015c8: f000 fb40 bl 8001c4c - 80015cc: 4603 mov r3, r0 - 80015ce: 2b00 cmp r3, #0 - 80015d0: d001 beq.n 80015d6 + 8001616: 4811 ldr r0, [pc, #68] @ (800165c ) + 8001618: f000 fb40 bl 8001c9c + 800161c: 4603 mov r3, r0 + 800161e: 2b00 cmp r3, #0 + 8001620: d001 beq.n 8001626 Error_Handler(); - 80015d2: f7ff fbc1 bl 8000d58 + 8001622: f7ff fbc1 bl 8000da8 __HAL_LINKDMA(uartHandle,hdmatx,hdma_uart5_tx); - 80015d6: 687b ldr r3, [r7, #4] - 80015d8: 4a0c ldr r2, [pc, #48] @ (800160c ) - 80015da: 639a str r2, [r3, #56] @ 0x38 - 80015dc: 4a0b ldr r2, [pc, #44] @ (800160c ) - 80015de: 687b ldr r3, [r7, #4] - 80015e0: 6393 str r3, [r2, #56] @ 0x38 + 8001626: 687b ldr r3, [r7, #4] + 8001628: 4a0c ldr r2, [pc, #48] @ (800165c ) + 800162a: 639a str r2, [r3, #56] @ 0x38 + 800162c: 4a0b ldr r2, [pc, #44] @ (800165c ) + 800162e: 687b ldr r3, [r7, #4] + 8001630: 6393 str r3, [r2, #56] @ 0x38 HAL_NVIC_SetPriority(UART5_IRQn, 0, 0); - 80015e2: 2200 movs r2, #0 - 80015e4: 2100 movs r1, #0 - 80015e6: 2035 movs r0, #53 @ 0x35 - 80015e8: f000 faf9 bl 8001bde + 8001632: 2200 movs r2, #0 + 8001634: 2100 movs r1, #0 + 8001636: 2035 movs r0, #53 @ 0x35 + 8001638: f000 faf9 bl 8001c2e HAL_NVIC_EnableIRQ(UART5_IRQn); - 80015ec: 2035 movs r0, #53 @ 0x35 - 80015ee: f000 fb12 bl 8001c16 + 800163c: 2035 movs r0, #53 @ 0x35 + 800163e: f000 fb12 bl 8001c66 } - 80015f2: e13d b.n 8001870 - 80015f4: 40005000 .word 0x40005000 - 80015f8: 40023800 .word 0x40023800 - 80015fc: 40020800 .word 0x40020800 - 8001600: 40020c00 .word 0x40020c00 - 8001604: 200004dc .word 0x200004dc - 8001608: 40026010 .word 0x40026010 - 800160c: 2000053c .word 0x2000053c - 8001610: 400260b8 .word 0x400260b8 + 8001642: e13d b.n 80018c0 + 8001644: 40005000 .word 0x40005000 + 8001648: 40023800 .word 0x40023800 + 800164c: 40020800 .word 0x40020800 + 8001650: 40020c00 .word 0x40020c00 + 8001654: 200004dc .word 0x200004dc + 8001658: 40026010 .word 0x40026010 + 800165c: 2000053c .word 0x2000053c + 8001660: 400260b8 .word 0x400260b8 else if(uartHandle->Instance==USART1) - 8001614: 687b ldr r3, [r7, #4] - 8001616: 681b ldr r3, [r3, #0] - 8001618: 4a97 ldr r2, [pc, #604] @ (8001878 ) - 800161a: 4293 cmp r3, r2 - 800161c: f040 8092 bne.w 8001744 + 8001664: 687b ldr r3, [r7, #4] + 8001666: 681b ldr r3, [r3, #0] + 8001668: 4a97 ldr r2, [pc, #604] @ (80018c8 ) + 800166a: 4293 cmp r3, r2 + 800166c: f040 8092 bne.w 8001794 __HAL_RCC_USART1_CLK_ENABLE(); - 8001620: 2300 movs r3, #0 - 8001622: 617b str r3, [r7, #20] - 8001624: 4b95 ldr r3, [pc, #596] @ (800187c ) - 8001626: 6c5b ldr r3, [r3, #68] @ 0x44 - 8001628: 4a94 ldr r2, [pc, #592] @ (800187c ) - 800162a: f043 0310 orr.w r3, r3, #16 - 800162e: 6453 str r3, [r2, #68] @ 0x44 - 8001630: 4b92 ldr r3, [pc, #584] @ (800187c ) - 8001632: 6c5b ldr r3, [r3, #68] @ 0x44 - 8001634: f003 0310 and.w r3, r3, #16 - 8001638: 617b str r3, [r7, #20] - 800163a: 697b ldr r3, [r7, #20] + 8001670: 2300 movs r3, #0 + 8001672: 617b str r3, [r7, #20] + 8001674: 4b95 ldr r3, [pc, #596] @ (80018cc ) + 8001676: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001678: 4a94 ldr r2, [pc, #592] @ (80018cc ) + 800167a: f043 0310 orr.w r3, r3, #16 + 800167e: 6453 str r3, [r2, #68] @ 0x44 + 8001680: 4b92 ldr r3, [pc, #584] @ (80018cc ) + 8001682: 6c5b ldr r3, [r3, #68] @ 0x44 + 8001684: f003 0310 and.w r3, r3, #16 + 8001688: 617b str r3, [r7, #20] + 800168a: 697b ldr r3, [r7, #20] __HAL_RCC_GPIOA_CLK_ENABLE(); - 800163c: 2300 movs r3, #0 - 800163e: 613b str r3, [r7, #16] - 8001640: 4b8e ldr r3, [pc, #568] @ (800187c ) - 8001642: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001644: 4a8d ldr r2, [pc, #564] @ (800187c ) - 8001646: f043 0301 orr.w r3, r3, #1 - 800164a: 6313 str r3, [r2, #48] @ 0x30 - 800164c: 4b8b ldr r3, [pc, #556] @ (800187c ) - 800164e: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001650: f003 0301 and.w r3, r3, #1 - 8001654: 613b str r3, [r7, #16] - 8001656: 693b ldr r3, [r7, #16] + 800168c: 2300 movs r3, #0 + 800168e: 613b str r3, [r7, #16] + 8001690: 4b8e ldr r3, [pc, #568] @ (80018cc ) + 8001692: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001694: 4a8d ldr r2, [pc, #564] @ (80018cc ) + 8001696: f043 0301 orr.w r3, r3, #1 + 800169a: 6313 str r3, [r2, #48] @ 0x30 + 800169c: 4b8b ldr r3, [pc, #556] @ (80018cc ) + 800169e: 6b1b ldr r3, [r3, #48] @ 0x30 + 80016a0: f003 0301 and.w r3, r3, #1 + 80016a4: 613b str r3, [r7, #16] + 80016a6: 693b ldr r3, [r7, #16] GPIO_InitStruct.Pin = GPIO_PIN_9|GPIO_PIN_10; - 8001658: f44f 63c0 mov.w r3, #1536 @ 0x600 - 800165c: 62fb str r3, [r7, #44] @ 0x2c + 80016a8: f44f 63c0 mov.w r3, #1536 @ 0x600 + 80016ac: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800165e: 2302 movs r3, #2 - 8001660: 633b str r3, [r7, #48] @ 0x30 + 80016ae: 2302 movs r3, #2 + 80016b0: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001662: 2300 movs r3, #0 - 8001664: 637b str r3, [r7, #52] @ 0x34 + 80016b2: 2300 movs r3, #0 + 80016b4: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8001666: 2303 movs r3, #3 - 8001668: 63bb str r3, [r7, #56] @ 0x38 + 80016b6: 2303 movs r3, #3 + 80016b8: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF7_USART1; - 800166a: 2307 movs r3, #7 - 800166c: 63fb str r3, [r7, #60] @ 0x3c + 80016ba: 2307 movs r3, #7 + 80016bc: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800166e: f107 032c add.w r3, r7, #44 @ 0x2c - 8001672: 4619 mov r1, r3 - 8001674: 4882 ldr r0, [pc, #520] @ (8001880 ) - 8001676: f000 feeb bl 8002450 + 80016be: f107 032c add.w r3, r7, #44 @ 0x2c + 80016c2: 4619 mov r1, r3 + 80016c4: 4882 ldr r0, [pc, #520] @ (80018d0 ) + 80016c6: f000 feeb bl 80024a0 hdma_usart1_rx.Instance = DMA2_Stream2; - 800167a: 4b82 ldr r3, [pc, #520] @ (8001884 ) - 800167c: 4a82 ldr r2, [pc, #520] @ (8001888 ) - 800167e: 601a str r2, [r3, #0] + 80016ca: 4b82 ldr r3, [pc, #520] @ (80018d4 ) + 80016cc: 4a82 ldr r2, [pc, #520] @ (80018d8 ) + 80016ce: 601a str r2, [r3, #0] hdma_usart1_rx.Init.Channel = DMA_CHANNEL_4; - 8001680: 4b80 ldr r3, [pc, #512] @ (8001884 ) - 8001682: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001686: 605a str r2, [r3, #4] + 80016d0: 4b80 ldr r3, [pc, #512] @ (80018d4 ) + 80016d2: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 80016d6: 605a str r2, [r3, #4] hdma_usart1_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 8001688: 4b7e ldr r3, [pc, #504] @ (8001884 ) - 800168a: 2200 movs r2, #0 - 800168c: 609a str r2, [r3, #8] + 80016d8: 4b7e ldr r3, [pc, #504] @ (80018d4 ) + 80016da: 2200 movs r2, #0 + 80016dc: 609a str r2, [r3, #8] hdma_usart1_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 800168e: 4b7d ldr r3, [pc, #500] @ (8001884 ) - 8001690: 2200 movs r2, #0 - 8001692: 60da str r2, [r3, #12] + 80016de: 4b7d ldr r3, [pc, #500] @ (80018d4 ) + 80016e0: 2200 movs r2, #0 + 80016e2: 60da str r2, [r3, #12] hdma_usart1_rx.Init.MemInc = DMA_MINC_ENABLE; - 8001694: 4b7b ldr r3, [pc, #492] @ (8001884 ) - 8001696: f44f 6280 mov.w r2, #1024 @ 0x400 - 800169a: 611a str r2, [r3, #16] + 80016e4: 4b7b ldr r3, [pc, #492] @ (80018d4 ) + 80016e6: f44f 6280 mov.w r2, #1024 @ 0x400 + 80016ea: 611a str r2, [r3, #16] hdma_usart1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 800169c: 4b79 ldr r3, [pc, #484] @ (8001884 ) - 800169e: 2200 movs r2, #0 - 80016a0: 615a str r2, [r3, #20] + 80016ec: 4b79 ldr r3, [pc, #484] @ (80018d4 ) + 80016ee: 2200 movs r2, #0 + 80016f0: 615a str r2, [r3, #20] hdma_usart1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80016a2: 4b78 ldr r3, [pc, #480] @ (8001884 ) - 80016a4: 2200 movs r2, #0 - 80016a6: 619a str r2, [r3, #24] + 80016f2: 4b78 ldr r3, [pc, #480] @ (80018d4 ) + 80016f4: 2200 movs r2, #0 + 80016f6: 619a str r2, [r3, #24] hdma_usart1_rx.Init.Mode = DMA_NORMAL; - 80016a8: 4b76 ldr r3, [pc, #472] @ (8001884 ) - 80016aa: 2200 movs r2, #0 - 80016ac: 61da str r2, [r3, #28] - hdma_usart1_rx.Init.Priority = DMA_PRIORITY_LOW; - 80016ae: 4b75 ldr r3, [pc, #468] @ (8001884 ) - 80016b0: 2200 movs r2, #0 - 80016b2: 621a str r2, [r3, #32] - hdma_usart1_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80016b4: 4b73 ldr r3, [pc, #460] @ (8001884 ) - 80016b6: 2200 movs r2, #0 - 80016b8: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK) - 80016ba: 4872 ldr r0, [pc, #456] @ (8001884 ) - 80016bc: f000 fac6 bl 8001c4c - 80016c0: 4603 mov r3, r0 - 80016c2: 2b00 cmp r3, #0 - 80016c4: d001 beq.n 80016ca - Error_Handler(); - 80016c6: f7ff fb47 bl 8000d58 - __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart1_rx); - 80016ca: 687b ldr r3, [r7, #4] - 80016cc: 4a6d ldr r2, [pc, #436] @ (8001884 ) - 80016ce: 63da str r2, [r3, #60] @ 0x3c - 80016d0: 4a6c ldr r2, [pc, #432] @ (8001884 ) - 80016d2: 687b ldr r3, [r7, #4] - 80016d4: 6393 str r3, [r2, #56] @ 0x38 - hdma_usart1_tx.Instance = DMA2_Stream7; - 80016d6: 4b6d ldr r3, [pc, #436] @ (800188c ) - 80016d8: 4a6d ldr r2, [pc, #436] @ (8001890 ) - 80016da: 601a str r2, [r3, #0] - hdma_usart1_tx.Init.Channel = DMA_CHANNEL_4; - 80016dc: 4b6b ldr r3, [pc, #428] @ (800188c ) - 80016de: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80016e2: 605a str r2, [r3, #4] - hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 80016e4: 4b69 ldr r3, [pc, #420] @ (800188c ) - 80016e6: 2240 movs r2, #64 @ 0x40 - 80016e8: 609a str r2, [r3, #8] - hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 80016ea: 4b68 ldr r3, [pc, #416] @ (800188c ) - 80016ec: 2200 movs r2, #0 - 80016ee: 60da str r2, [r3, #12] - hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE; - 80016f0: 4b66 ldr r3, [pc, #408] @ (800188c ) - 80016f2: f44f 6280 mov.w r2, #1024 @ 0x400 - 80016f6: 611a str r2, [r3, #16] - hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80016f8: 4b64 ldr r3, [pc, #400] @ (800188c ) + 80016f8: 4b76 ldr r3, [pc, #472] @ (80018d4 ) 80016fa: 2200 movs r2, #0 - 80016fc: 615a str r2, [r3, #20] - hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80016fe: 4b63 ldr r3, [pc, #396] @ (800188c ) + 80016fc: 61da str r2, [r3, #28] + hdma_usart1_rx.Init.Priority = DMA_PRIORITY_LOW; + 80016fe: 4b75 ldr r3, [pc, #468] @ (80018d4 ) 8001700: 2200 movs r2, #0 - 8001702: 619a str r2, [r3, #24] - hdma_usart1_tx.Init.Mode = DMA_NORMAL; - 8001704: 4b61 ldr r3, [pc, #388] @ (800188c ) + 8001702: 621a str r2, [r3, #32] + hdma_usart1_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001704: 4b73 ldr r3, [pc, #460] @ (80018d4 ) 8001706: 2200 movs r2, #0 - 8001708: 61da str r2, [r3, #28] + 8001708: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK) + 800170a: 4872 ldr r0, [pc, #456] @ (80018d4 ) + 800170c: f000 fac6 bl 8001c9c + 8001710: 4603 mov r3, r0 + 8001712: 2b00 cmp r3, #0 + 8001714: d001 beq.n 800171a + Error_Handler(); + 8001716: f7ff fb47 bl 8000da8 + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart1_rx); + 800171a: 687b ldr r3, [r7, #4] + 800171c: 4a6d ldr r2, [pc, #436] @ (80018d4 ) + 800171e: 63da str r2, [r3, #60] @ 0x3c + 8001720: 4a6c ldr r2, [pc, #432] @ (80018d4 ) + 8001722: 687b ldr r3, [r7, #4] + 8001724: 6393 str r3, [r2, #56] @ 0x38 + hdma_usart1_tx.Instance = DMA2_Stream7; + 8001726: 4b6d ldr r3, [pc, #436] @ (80018dc ) + 8001728: 4a6d ldr r2, [pc, #436] @ (80018e0 ) + 800172a: 601a str r2, [r3, #0] + hdma_usart1_tx.Init.Channel = DMA_CHANNEL_4; + 800172c: 4b6b ldr r3, [pc, #428] @ (80018dc ) + 800172e: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001732: 605a str r2, [r3, #4] + hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 8001734: 4b69 ldr r3, [pc, #420] @ (80018dc ) + 8001736: 2240 movs r2, #64 @ 0x40 + 8001738: 609a str r2, [r3, #8] + hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 800173a: 4b68 ldr r3, [pc, #416] @ (80018dc ) + 800173c: 2200 movs r2, #0 + 800173e: 60da str r2, [r3, #12] + hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE; + 8001740: 4b66 ldr r3, [pc, #408] @ (80018dc ) + 8001742: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001746: 611a str r2, [r3, #16] + hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001748: 4b64 ldr r3, [pc, #400] @ (80018dc ) + 800174a: 2200 movs r2, #0 + 800174c: 615a str r2, [r3, #20] + hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 800174e: 4b63 ldr r3, [pc, #396] @ (80018dc ) + 8001750: 2200 movs r2, #0 + 8001752: 619a str r2, [r3, #24] + hdma_usart1_tx.Init.Mode = DMA_NORMAL; + 8001754: 4b61 ldr r3, [pc, #388] @ (80018dc ) + 8001756: 2200 movs r2, #0 + 8001758: 61da str r2, [r3, #28] hdma_usart1_tx.Init.Priority = DMA_PRIORITY_LOW; - 800170a: 4b60 ldr r3, [pc, #384] @ (800188c ) - 800170c: 2200 movs r2, #0 - 800170e: 621a str r2, [r3, #32] + 800175a: 4b60 ldr r3, [pc, #384] @ (80018dc ) + 800175c: 2200 movs r2, #0 + 800175e: 621a str r2, [r3, #32] hdma_usart1_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 8001710: 4b5e ldr r3, [pc, #376] @ (800188c ) - 8001712: 2200 movs r2, #0 - 8001714: 625a str r2, [r3, #36] @ 0x24 + 8001760: 4b5e ldr r3, [pc, #376] @ (80018dc ) + 8001762: 2200 movs r2, #0 + 8001764: 625a str r2, [r3, #36] @ 0x24 if (HAL_DMA_Init(&hdma_usart1_tx) != HAL_OK) - 8001716: 485d ldr r0, [pc, #372] @ (800188c ) - 8001718: f000 fa98 bl 8001c4c - 800171c: 4603 mov r3, r0 - 800171e: 2b00 cmp r3, #0 - 8001720: d001 beq.n 8001726 + 8001766: 485d ldr r0, [pc, #372] @ (80018dc ) + 8001768: f000 fa98 bl 8001c9c + 800176c: 4603 mov r3, r0 + 800176e: 2b00 cmp r3, #0 + 8001770: d001 beq.n 8001776 Error_Handler(); - 8001722: f7ff fb19 bl 8000d58 + 8001772: f7ff fb19 bl 8000da8 __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart1_tx); - 8001726: 687b ldr r3, [r7, #4] - 8001728: 4a58 ldr r2, [pc, #352] @ (800188c ) - 800172a: 639a str r2, [r3, #56] @ 0x38 - 800172c: 4a57 ldr r2, [pc, #348] @ (800188c ) - 800172e: 687b ldr r3, [r7, #4] - 8001730: 6393 str r3, [r2, #56] @ 0x38 + 8001776: 687b ldr r3, [r7, #4] + 8001778: 4a58 ldr r2, [pc, #352] @ (80018dc ) + 800177a: 639a str r2, [r3, #56] @ 0x38 + 800177c: 4a57 ldr r2, [pc, #348] @ (80018dc ) + 800177e: 687b ldr r3, [r7, #4] + 8001780: 6393 str r3, [r2, #56] @ 0x38 HAL_NVIC_SetPriority(USART1_IRQn, 0, 0); - 8001732: 2200 movs r2, #0 - 8001734: 2100 movs r1, #0 - 8001736: 2025 movs r0, #37 @ 0x25 - 8001738: f000 fa51 bl 8001bde + 8001782: 2200 movs r2, #0 + 8001784: 2100 movs r1, #0 + 8001786: 2025 movs r0, #37 @ 0x25 + 8001788: f000 fa51 bl 8001c2e HAL_NVIC_EnableIRQ(USART1_IRQn); - 800173c: 2025 movs r0, #37 @ 0x25 - 800173e: f000 fa6a bl 8001c16 + 800178c: 2025 movs r0, #37 @ 0x25 + 800178e: f000 fa6a bl 8001c66 } - 8001742: e095 b.n 8001870 + 8001792: e095 b.n 80018c0 else if(uartHandle->Instance==USART2) - 8001744: 687b ldr r3, [r7, #4] - 8001746: 681b ldr r3, [r3, #0] - 8001748: 4a52 ldr r2, [pc, #328] @ (8001894 ) - 800174a: 4293 cmp r3, r2 - 800174c: f040 8090 bne.w 8001870 + 8001794: 687b ldr r3, [r7, #4] + 8001796: 681b ldr r3, [r3, #0] + 8001798: 4a52 ldr r2, [pc, #328] @ (80018e4 ) + 800179a: 4293 cmp r3, r2 + 800179c: f040 8090 bne.w 80018c0 __HAL_RCC_USART2_CLK_ENABLE(); - 8001750: 2300 movs r3, #0 - 8001752: 60fb str r3, [r7, #12] - 8001754: 4b49 ldr r3, [pc, #292] @ (800187c ) - 8001756: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001758: 4a48 ldr r2, [pc, #288] @ (800187c ) - 800175a: f443 3300 orr.w r3, r3, #131072 @ 0x20000 - 800175e: 6413 str r3, [r2, #64] @ 0x40 - 8001760: 4b46 ldr r3, [pc, #280] @ (800187c ) - 8001762: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001764: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8001768: 60fb str r3, [r7, #12] - 800176a: 68fb ldr r3, [r7, #12] + 80017a0: 2300 movs r3, #0 + 80017a2: 60fb str r3, [r7, #12] + 80017a4: 4b49 ldr r3, [pc, #292] @ (80018cc ) + 80017a6: 6c1b ldr r3, [r3, #64] @ 0x40 + 80017a8: 4a48 ldr r2, [pc, #288] @ (80018cc ) + 80017aa: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 80017ae: 6413 str r3, [r2, #64] @ 0x40 + 80017b0: 4b46 ldr r3, [pc, #280] @ (80018cc ) + 80017b2: 6c1b ldr r3, [r3, #64] @ 0x40 + 80017b4: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 80017b8: 60fb str r3, [r7, #12] + 80017ba: 68fb ldr r3, [r7, #12] __HAL_RCC_GPIOA_CLK_ENABLE(); - 800176c: 2300 movs r3, #0 - 800176e: 60bb str r3, [r7, #8] - 8001770: 4b42 ldr r3, [pc, #264] @ (800187c ) - 8001772: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001774: 4a41 ldr r2, [pc, #260] @ (800187c ) - 8001776: f043 0301 orr.w r3, r3, #1 - 800177a: 6313 str r3, [r2, #48] @ 0x30 - 800177c: 4b3f ldr r3, [pc, #252] @ (800187c ) - 800177e: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001780: f003 0301 and.w r3, r3, #1 - 8001784: 60bb str r3, [r7, #8] - 8001786: 68bb ldr r3, [r7, #8] + 80017bc: 2300 movs r3, #0 + 80017be: 60bb str r3, [r7, #8] + 80017c0: 4b42 ldr r3, [pc, #264] @ (80018cc ) + 80017c2: 6b1b ldr r3, [r3, #48] @ 0x30 + 80017c4: 4a41 ldr r2, [pc, #260] @ (80018cc ) + 80017c6: f043 0301 orr.w r3, r3, #1 + 80017ca: 6313 str r3, [r2, #48] @ 0x30 + 80017cc: 4b3f ldr r3, [pc, #252] @ (80018cc ) + 80017ce: 6b1b ldr r3, [r3, #48] @ 0x30 + 80017d0: f003 0301 and.w r3, r3, #1 + 80017d4: 60bb str r3, [r7, #8] + 80017d6: 68bb ldr r3, [r7, #8] GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; - 8001788: 230c movs r3, #12 - 800178a: 62fb str r3, [r7, #44] @ 0x2c + 80017d8: 230c movs r3, #12 + 80017da: 62fb str r3, [r7, #44] @ 0x2c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800178c: 2302 movs r3, #2 - 800178e: 633b str r3, [r7, #48] @ 0x30 + 80017dc: 2302 movs r3, #2 + 80017de: 633b str r3, [r7, #48] @ 0x30 GPIO_InitStruct.Pull = GPIO_NOPULL; - 8001790: 2300 movs r3, #0 - 8001792: 637b str r3, [r7, #52] @ 0x34 + 80017e0: 2300 movs r3, #0 + 80017e2: 637b str r3, [r7, #52] @ 0x34 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8001794: 2303 movs r3, #3 - 8001796: 63bb str r3, [r7, #56] @ 0x38 + 80017e4: 2303 movs r3, #3 + 80017e6: 63bb str r3, [r7, #56] @ 0x38 GPIO_InitStruct.Alternate = GPIO_AF7_USART2; - 8001798: 2307 movs r3, #7 - 800179a: 63fb str r3, [r7, #60] @ 0x3c + 80017e8: 2307 movs r3, #7 + 80017ea: 63fb str r3, [r7, #60] @ 0x3c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800179c: f107 032c add.w r3, r7, #44 @ 0x2c - 80017a0: 4619 mov r1, r3 - 80017a2: 4837 ldr r0, [pc, #220] @ (8001880 ) - 80017a4: f000 fe54 bl 8002450 + 80017ec: f107 032c add.w r3, r7, #44 @ 0x2c + 80017f0: 4619 mov r1, r3 + 80017f2: 4837 ldr r0, [pc, #220] @ (80018d0 ) + 80017f4: f000 fe54 bl 80024a0 hdma_usart2_rx.Instance = DMA1_Stream5; - 80017a8: 4b3b ldr r3, [pc, #236] @ (8001898 ) - 80017aa: 4a3c ldr r2, [pc, #240] @ (800189c ) - 80017ac: 601a str r2, [r3, #0] + 80017f8: 4b3b ldr r3, [pc, #236] @ (80018e8 ) + 80017fa: 4a3c ldr r2, [pc, #240] @ (80018ec ) + 80017fc: 601a str r2, [r3, #0] hdma_usart2_rx.Init.Channel = DMA_CHANNEL_4; - 80017ae: 4b3a ldr r3, [pc, #232] @ (8001898 ) - 80017b0: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 80017b4: 605a str r2, [r3, #4] + 80017fe: 4b3a ldr r3, [pc, #232] @ (80018e8 ) + 8001800: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001804: 605a str r2, [r3, #4] hdma_usart2_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; - 80017b6: 4b38 ldr r3, [pc, #224] @ (8001898 ) - 80017b8: 2200 movs r2, #0 - 80017ba: 609a str r2, [r3, #8] + 8001806: 4b38 ldr r3, [pc, #224] @ (80018e8 ) + 8001808: 2200 movs r2, #0 + 800180a: 609a str r2, [r3, #8] hdma_usart2_rx.Init.PeriphInc = DMA_PINC_DISABLE; - 80017bc: 4b36 ldr r3, [pc, #216] @ (8001898 ) - 80017be: 2200 movs r2, #0 - 80017c0: 60da str r2, [r3, #12] + 800180c: 4b36 ldr r3, [pc, #216] @ (80018e8 ) + 800180e: 2200 movs r2, #0 + 8001810: 60da str r2, [r3, #12] hdma_usart2_rx.Init.MemInc = DMA_MINC_ENABLE; - 80017c2: 4b35 ldr r3, [pc, #212] @ (8001898 ) - 80017c4: f44f 6280 mov.w r2, #1024 @ 0x400 - 80017c8: 611a str r2, [r3, #16] + 8001812: 4b35 ldr r3, [pc, #212] @ (80018e8 ) + 8001814: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001818: 611a str r2, [r3, #16] hdma_usart2_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 80017ca: 4b33 ldr r3, [pc, #204] @ (8001898 ) - 80017cc: 2200 movs r2, #0 - 80017ce: 615a str r2, [r3, #20] + 800181a: 4b33 ldr r3, [pc, #204] @ (80018e8 ) + 800181c: 2200 movs r2, #0 + 800181e: 615a str r2, [r3, #20] hdma_usart2_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 80017d0: 4b31 ldr r3, [pc, #196] @ (8001898 ) - 80017d2: 2200 movs r2, #0 - 80017d4: 619a str r2, [r3, #24] + 8001820: 4b31 ldr r3, [pc, #196] @ (80018e8 ) + 8001822: 2200 movs r2, #0 + 8001824: 619a str r2, [r3, #24] hdma_usart2_rx.Init.Mode = DMA_NORMAL; - 80017d6: 4b30 ldr r3, [pc, #192] @ (8001898 ) - 80017d8: 2200 movs r2, #0 - 80017da: 61da str r2, [r3, #28] - hdma_usart2_rx.Init.Priority = DMA_PRIORITY_LOW; - 80017dc: 4b2e ldr r3, [pc, #184] @ (8001898 ) - 80017de: 2200 movs r2, #0 - 80017e0: 621a str r2, [r3, #32] - hdma_usart2_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 80017e2: 4b2d ldr r3, [pc, #180] @ (8001898 ) - 80017e4: 2200 movs r2, #0 - 80017e6: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart2_rx) != HAL_OK) - 80017e8: 482b ldr r0, [pc, #172] @ (8001898 ) - 80017ea: f000 fa2f bl 8001c4c - 80017ee: 4603 mov r3, r0 - 80017f0: 2b00 cmp r3, #0 - 80017f2: d001 beq.n 80017f8 - Error_Handler(); - 80017f4: f7ff fab0 bl 8000d58 - __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart2_rx); - 80017f8: 687b ldr r3, [r7, #4] - 80017fa: 4a27 ldr r2, [pc, #156] @ (8001898 ) - 80017fc: 63da str r2, [r3, #60] @ 0x3c - 80017fe: 4a26 ldr r2, [pc, #152] @ (8001898 ) - 8001800: 687b ldr r3, [r7, #4] - 8001802: 6393 str r3, [r2, #56] @ 0x38 - hdma_usart2_tx.Instance = DMA1_Stream6; - 8001804: 4b26 ldr r3, [pc, #152] @ (80018a0 ) - 8001806: 4a27 ldr r2, [pc, #156] @ (80018a4 ) - 8001808: 601a str r2, [r3, #0] - hdma_usart2_tx.Init.Channel = DMA_CHANNEL_4; - 800180a: 4b25 ldr r3, [pc, #148] @ (80018a0 ) - 800180c: f04f 6200 mov.w r2, #134217728 @ 0x8000000 - 8001810: 605a str r2, [r3, #4] - hdma_usart2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; - 8001812: 4b23 ldr r3, [pc, #140] @ (80018a0 ) - 8001814: 2240 movs r2, #64 @ 0x40 - 8001816: 609a str r2, [r3, #8] - hdma_usart2_tx.Init.PeriphInc = DMA_PINC_DISABLE; - 8001818: 4b21 ldr r3, [pc, #132] @ (80018a0 ) - 800181a: 2200 movs r2, #0 - 800181c: 60da str r2, [r3, #12] - hdma_usart2_tx.Init.MemInc = DMA_MINC_ENABLE; - 800181e: 4b20 ldr r3, [pc, #128] @ (80018a0 ) - 8001820: f44f 6280 mov.w r2, #1024 @ 0x400 - 8001824: 611a str r2, [r3, #16] - hdma_usart2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; - 8001826: 4b1e ldr r3, [pc, #120] @ (80018a0 ) + 8001826: 4b30 ldr r3, [pc, #192] @ (80018e8 ) 8001828: 2200 movs r2, #0 - 800182a: 615a str r2, [r3, #20] - hdma_usart2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; - 800182c: 4b1c ldr r3, [pc, #112] @ (80018a0 ) + 800182a: 61da str r2, [r3, #28] + hdma_usart2_rx.Init.Priority = DMA_PRIORITY_LOW; + 800182c: 4b2e ldr r3, [pc, #184] @ (80018e8 ) 800182e: 2200 movs r2, #0 - 8001830: 619a str r2, [r3, #24] - hdma_usart2_tx.Init.Mode = DMA_NORMAL; - 8001832: 4b1b ldr r3, [pc, #108] @ (80018a0 ) + 8001830: 621a str r2, [r3, #32] + hdma_usart2_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 8001832: 4b2d ldr r3, [pc, #180] @ (80018e8 ) 8001834: 2200 movs r2, #0 - 8001836: 61da str r2, [r3, #28] - hdma_usart2_tx.Init.Priority = DMA_PRIORITY_LOW; - 8001838: 4b19 ldr r3, [pc, #100] @ (80018a0 ) - 800183a: 2200 movs r2, #0 - 800183c: 621a str r2, [r3, #32] - hdma_usart2_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; - 800183e: 4b18 ldr r3, [pc, #96] @ (80018a0 ) - 8001840: 2200 movs r2, #0 - 8001842: 625a str r2, [r3, #36] @ 0x24 - if (HAL_DMA_Init(&hdma_usart2_tx) != HAL_OK) - 8001844: 4816 ldr r0, [pc, #88] @ (80018a0 ) - 8001846: f000 fa01 bl 8001c4c - 800184a: 4603 mov r3, r0 - 800184c: 2b00 cmp r3, #0 - 800184e: d001 beq.n 8001854 + 8001836: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart2_rx) != HAL_OK) + 8001838: 482b ldr r0, [pc, #172] @ (80018e8 ) + 800183a: f000 fa2f bl 8001c9c + 800183e: 4603 mov r3, r0 + 8001840: 2b00 cmp r3, #0 + 8001842: d001 beq.n 8001848 Error_Handler(); - 8001850: f7ff fa82 bl 8000d58 + 8001844: f7ff fab0 bl 8000da8 + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart2_rx); + 8001848: 687b ldr r3, [r7, #4] + 800184a: 4a27 ldr r2, [pc, #156] @ (80018e8 ) + 800184c: 63da str r2, [r3, #60] @ 0x3c + 800184e: 4a26 ldr r2, [pc, #152] @ (80018e8 ) + 8001850: 687b ldr r3, [r7, #4] + 8001852: 6393 str r3, [r2, #56] @ 0x38 + hdma_usart2_tx.Instance = DMA1_Stream6; + 8001854: 4b26 ldr r3, [pc, #152] @ (80018f0 ) + 8001856: 4a27 ldr r2, [pc, #156] @ (80018f4 ) + 8001858: 601a str r2, [r3, #0] + hdma_usart2_tx.Init.Channel = DMA_CHANNEL_4; + 800185a: 4b25 ldr r3, [pc, #148] @ (80018f0 ) + 800185c: f04f 6200 mov.w r2, #134217728 @ 0x8000000 + 8001860: 605a str r2, [r3, #4] + hdma_usart2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + 8001862: 4b23 ldr r3, [pc, #140] @ (80018f0 ) + 8001864: 2240 movs r2, #64 @ 0x40 + 8001866: 609a str r2, [r3, #8] + hdma_usart2_tx.Init.PeriphInc = DMA_PINC_DISABLE; + 8001868: 4b21 ldr r3, [pc, #132] @ (80018f0 ) + 800186a: 2200 movs r2, #0 + 800186c: 60da str r2, [r3, #12] + hdma_usart2_tx.Init.MemInc = DMA_MINC_ENABLE; + 800186e: 4b20 ldr r3, [pc, #128] @ (80018f0 ) + 8001870: f44f 6280 mov.w r2, #1024 @ 0x400 + 8001874: 611a str r2, [r3, #16] + hdma_usart2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + 8001876: 4b1e ldr r3, [pc, #120] @ (80018f0 ) + 8001878: 2200 movs r2, #0 + 800187a: 615a str r2, [r3, #20] + hdma_usart2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + 800187c: 4b1c ldr r3, [pc, #112] @ (80018f0 ) + 800187e: 2200 movs r2, #0 + 8001880: 619a str r2, [r3, #24] + hdma_usart2_tx.Init.Mode = DMA_NORMAL; + 8001882: 4b1b ldr r3, [pc, #108] @ (80018f0 ) + 8001884: 2200 movs r2, #0 + 8001886: 61da str r2, [r3, #28] + hdma_usart2_tx.Init.Priority = DMA_PRIORITY_LOW; + 8001888: 4b19 ldr r3, [pc, #100] @ (80018f0 ) + 800188a: 2200 movs r2, #0 + 800188c: 621a str r2, [r3, #32] + hdma_usart2_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + 800188e: 4b18 ldr r3, [pc, #96] @ (80018f0 ) + 8001890: 2200 movs r2, #0 + 8001892: 625a str r2, [r3, #36] @ 0x24 + if (HAL_DMA_Init(&hdma_usart2_tx) != HAL_OK) + 8001894: 4816 ldr r0, [pc, #88] @ (80018f0 ) + 8001896: f000 fa01 bl 8001c9c + 800189a: 4603 mov r3, r0 + 800189c: 2b00 cmp r3, #0 + 800189e: d001 beq.n 80018a4 + Error_Handler(); + 80018a0: f7ff fa82 bl 8000da8 __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart2_tx); - 8001854: 687b ldr r3, [r7, #4] - 8001856: 4a12 ldr r2, [pc, #72] @ (80018a0 ) - 8001858: 639a str r2, [r3, #56] @ 0x38 - 800185a: 4a11 ldr r2, [pc, #68] @ (80018a0 ) - 800185c: 687b ldr r3, [r7, #4] - 800185e: 6393 str r3, [r2, #56] @ 0x38 + 80018a4: 687b ldr r3, [r7, #4] + 80018a6: 4a12 ldr r2, [pc, #72] @ (80018f0 ) + 80018a8: 639a str r2, [r3, #56] @ 0x38 + 80018aa: 4a11 ldr r2, [pc, #68] @ (80018f0 ) + 80018ac: 687b ldr r3, [r7, #4] + 80018ae: 6393 str r3, [r2, #56] @ 0x38 HAL_NVIC_SetPriority(USART2_IRQn, 0, 0); - 8001860: 2200 movs r2, #0 - 8001862: 2100 movs r1, #0 - 8001864: 2026 movs r0, #38 @ 0x26 - 8001866: f000 f9ba bl 8001bde + 80018b0: 2200 movs r2, #0 + 80018b2: 2100 movs r1, #0 + 80018b4: 2026 movs r0, #38 @ 0x26 + 80018b6: f000 f9ba bl 8001c2e HAL_NVIC_EnableIRQ(USART2_IRQn); - 800186a: 2026 movs r0, #38 @ 0x26 - 800186c: f000 f9d3 bl 8001c16 + 80018ba: 2026 movs r0, #38 @ 0x26 + 80018bc: f000 f9d3 bl 8001c66 } - 8001870: bf00 nop - 8001872: 3740 adds r7, #64 @ 0x40 - 8001874: 46bd mov sp, r7 - 8001876: bd80 pop {r7, pc} - 8001878: 40011000 .word 0x40011000 - 800187c: 40023800 .word 0x40023800 - 8001880: 40020000 .word 0x40020000 - 8001884: 2000059c .word 0x2000059c - 8001888: 40026440 .word 0x40026440 - 800188c: 200005fc .word 0x200005fc - 8001890: 400264b8 .word 0x400264b8 - 8001894: 40004400 .word 0x40004400 - 8001898: 2000065c .word 0x2000065c - 800189c: 40026088 .word 0x40026088 - 80018a0: 200006bc .word 0x200006bc - 80018a4: 400260a0 .word 0x400260a0 + 80018c0: bf00 nop + 80018c2: 3740 adds r7, #64 @ 0x40 + 80018c4: 46bd mov sp, r7 + 80018c6: bd80 pop {r7, pc} + 80018c8: 40011000 .word 0x40011000 + 80018cc: 40023800 .word 0x40023800 + 80018d0: 40020000 .word 0x40020000 + 80018d4: 2000059c .word 0x2000059c + 80018d8: 40026440 .word 0x40026440 + 80018dc: 200005fc .word 0x200005fc + 80018e0: 400264b8 .word 0x400264b8 + 80018e4: 40004400 .word 0x40004400 + 80018e8: 2000065c .word 0x2000065c + 80018ec: 40026088 .word 0x40026088 + 80018f0: 200006bc .word 0x200006bc + 80018f4: 400260a0 .word 0x400260a0 -080018a8 : +080018f8 : .section .text.Reset_Handler .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: ldr sp, =_estack /* set stack pointer */ - 80018a8: f8df d034 ldr.w sp, [pc, #52] @ 80018e0 + 80018f8: f8df d034 ldr.w sp, [pc, #52] @ 8001930 /* Call the clock system initialization function.*/ bl SystemInit - 80018ac: f7ff fb34 bl 8000f18 + 80018fc: f7ff fb34 bl 8000f68 /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 80018b0: 480c ldr r0, [pc, #48] @ (80018e4 ) + 8001900: 480c ldr r0, [pc, #48] @ (8001934 ) ldr r1, =_edata - 80018b2: 490d ldr r1, [pc, #52] @ (80018e8 ) + 8001902: 490d ldr r1, [pc, #52] @ (8001938 ) ldr r2, =_sidata - 80018b4: 4a0d ldr r2, [pc, #52] @ (80018ec ) + 8001904: 4a0d ldr r2, [pc, #52] @ (800193c ) movs r3, #0 - 80018b6: 2300 movs r3, #0 + 8001906: 2300 movs r3, #0 b LoopCopyDataInit - 80018b8: e002 b.n 80018c0 + 8001908: e002 b.n 8001910 -080018ba : +0800190a : CopyDataInit: ldr r4, [r2, r3] - 80018ba: 58d4 ldr r4, [r2, r3] + 800190a: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 80018bc: 50c4 str r4, [r0, r3] + 800190c: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 80018be: 3304 adds r3, #4 + 800190e: 3304 adds r3, #4 -080018c0 : +08001910 : LoopCopyDataInit: adds r4, r0, r3 - 80018c0: 18c4 adds r4, r0, r3 + 8001910: 18c4 adds r4, r0, r3 cmp r4, r1 - 80018c2: 428c cmp r4, r1 + 8001912: 428c cmp r4, r1 bcc CopyDataInit - 80018c4: d3f9 bcc.n 80018ba + 8001914: d3f9 bcc.n 800190a /* Zero fill the bss segment. */ ldr r2, =_sbss - 80018c6: 4a0a ldr r2, [pc, #40] @ (80018f0 ) + 8001916: 4a0a ldr r2, [pc, #40] @ (8001940 ) ldr r4, =_ebss - 80018c8: 4c0a ldr r4, [pc, #40] @ (80018f4 ) + 8001918: 4c0a ldr r4, [pc, #40] @ (8001944 ) movs r3, #0 - 80018ca: 2300 movs r3, #0 + 800191a: 2300 movs r3, #0 b LoopFillZerobss - 80018cc: e001 b.n 80018d2 + 800191c: e001 b.n 8001922 -080018ce : +0800191e : FillZerobss: str r3, [r2] - 80018ce: 6013 str r3, [r2, #0] + 800191e: 6013 str r3, [r2, #0] adds r2, r2, #4 - 80018d0: 3204 adds r2, #4 + 8001920: 3204 adds r2, #4 -080018d2 : +08001922 : LoopFillZerobss: cmp r2, r4 - 80018d2: 42a2 cmp r2, r4 + 8001922: 42a2 cmp r2, r4 bcc FillZerobss - 80018d4: d3fb bcc.n 80018ce + 8001924: d3fb bcc.n 800191e /* Call static constructors */ bl __libc_init_array - 80018d6: f009 f8eb bl 800aab0 <__libc_init_array> + 8001926: f009 f807 bl 800a938 <__libc_init_array> /* Call the application's entry point.*/ bl main - 80018da: f7fe ffa5 bl 8000828

+ 800192a: f7fe ff7d bl 8000828
bx lr - 80018de: 4770 bx lr + 800192e: 4770 bx lr ldr sp, =_estack /* set stack pointer */ - 80018e0: 20020000 .word 0x20020000 + 8001930: 20020000 .word 0x20020000 ldr r0, =_sdata - 80018e4: 20000000 .word 0x20000000 + 8001934: 20000000 .word 0x20000000 ldr r1, =_edata - 80018e8: 200001a0 .word 0x200001a0 + 8001938: 200001a0 .word 0x200001a0 ldr r2, =_sidata - 80018ec: 0800ab98 .word 0x0800ab98 + 800193c: 0800aa20 .word 0x0800aa20 ldr r2, =_sbss - 80018f0: 200001a0 .word 0x200001a0 + 8001940: 200001a0 .word 0x200001a0 ldr r4, =_ebss - 80018f4: 200010f8 .word 0x200010f8 + 8001944: 200010f8 .word 0x200010f8 -080018f8 : +08001948 : * @retval None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 80018f8: e7fe b.n 80018f8 + 8001948: e7fe b.n 8001948 ... -080018fc : +0800194c : * 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) { - 80018fc: b580 push {r7, lr} - 80018fe: af00 add r7, sp, #0 + 800194c: b580 push {r7, lr} + 800194e: af00 add r7, sp, #0 /* Configure Flash prefetch, Instruction cache, Data cache */ #if (INSTRUCTION_CACHE_ENABLE != 0U) __HAL_FLASH_INSTRUCTION_CACHE_ENABLE(); - 8001900: 4b0e ldr r3, [pc, #56] @ (800193c ) - 8001902: 681b ldr r3, [r3, #0] - 8001904: 4a0d ldr r2, [pc, #52] @ (800193c ) - 8001906: f443 7300 orr.w r3, r3, #512 @ 0x200 - 800190a: 6013 str r3, [r2, #0] + 8001950: 4b0e ldr r3, [pc, #56] @ (800198c ) + 8001952: 681b ldr r3, [r3, #0] + 8001954: 4a0d ldr r2, [pc, #52] @ (800198c ) + 8001956: f443 7300 orr.w r3, r3, #512 @ 0x200 + 800195a: 6013 str r3, [r2, #0] #endif /* INSTRUCTION_CACHE_ENABLE */ #if (DATA_CACHE_ENABLE != 0U) __HAL_FLASH_DATA_CACHE_ENABLE(); - 800190c: 4b0b ldr r3, [pc, #44] @ (800193c ) - 800190e: 681b ldr r3, [r3, #0] - 8001910: 4a0a ldr r2, [pc, #40] @ (800193c ) - 8001912: f443 6380 orr.w r3, r3, #1024 @ 0x400 - 8001916: 6013 str r3, [r2, #0] + 800195c: 4b0b ldr r3, [pc, #44] @ (800198c ) + 800195e: 681b ldr r3, [r3, #0] + 8001960: 4a0a ldr r2, [pc, #40] @ (800198c ) + 8001962: f443 6380 orr.w r3, r3, #1024 @ 0x400 + 8001966: 6013 str r3, [r2, #0] #endif /* DATA_CACHE_ENABLE */ #if (PREFETCH_ENABLE != 0U) __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 8001918: 4b08 ldr r3, [pc, #32] @ (800193c ) - 800191a: 681b ldr r3, [r3, #0] - 800191c: 4a07 ldr r2, [pc, #28] @ (800193c ) - 800191e: f443 7380 orr.w r3, r3, #256 @ 0x100 - 8001922: 6013 str r3, [r2, #0] + 8001968: 4b08 ldr r3, [pc, #32] @ (800198c ) + 800196a: 681b ldr r3, [r3, #0] + 800196c: 4a07 ldr r2, [pc, #28] @ (800198c ) + 800196e: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8001972: 6013 str r3, [r2, #0] #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8001924: 2003 movs r0, #3 - 8001926: f000 f94f bl 8001bc8 + 8001974: 2003 movs r0, #3 + 8001976: f000 f94f bl 8001c18 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 800192a: 200f movs r0, #15 - 800192c: f000 f808 bl 8001940 + 800197a: 200f movs r0, #15 + 800197c: f000 f808 bl 8001990 /* Init the low level hardware */ HAL_MspInit(); - 8001930: f7ff fa18 bl 8000d64 + 8001980: f7ff fa18 bl 8000db4 /* Return function status */ return HAL_OK; - 8001934: 2300 movs r3, #0 + 8001984: 2300 movs r3, #0 } - 8001936: 4618 mov r0, r3 - 8001938: bd80 pop {r7, pc} - 800193a: bf00 nop - 800193c: 40023c00 .word 0x40023c00 + 8001986: 4618 mov r0, r3 + 8001988: bd80 pop {r7, pc} + 800198a: bf00 nop + 800198c: 40023c00 .word 0x40023c00 -08001940 : +08001990 : * implementation in user file. * @param TickPriority Tick interrupt priority. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8001940: b580 push {r7, lr} - 8001942: b082 sub sp, #8 - 8001944: af00 add r7, sp, #0 - 8001946: 6078 str r0, [r7, #4] + 8001990: b580 push {r7, lr} + 8001992: b082 sub sp, #8 + 8001994: af00 add r7, sp, #0 + 8001996: 6078 str r0, [r7, #4] /* Configure the SysTick to have interrupt in 1ms time basis*/ if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U) - 8001948: 4b12 ldr r3, [pc, #72] @ (8001994 ) - 800194a: 681a ldr r2, [r3, #0] - 800194c: 4b12 ldr r3, [pc, #72] @ (8001998 ) - 800194e: 781b ldrb r3, [r3, #0] - 8001950: 4619 mov r1, r3 - 8001952: f44f 737a mov.w r3, #1000 @ 0x3e8 - 8001956: fbb3 f3f1 udiv r3, r3, r1 - 800195a: fbb2 f3f3 udiv r3, r2, r3 - 800195e: 4618 mov r0, r3 - 8001960: f000 f967 bl 8001c32 - 8001964: 4603 mov r3, r0 - 8001966: 2b00 cmp r3, #0 - 8001968: d001 beq.n 800196e + 8001998: 4b12 ldr r3, [pc, #72] @ (80019e4 ) + 800199a: 681a ldr r2, [r3, #0] + 800199c: 4b12 ldr r3, [pc, #72] @ (80019e8 ) + 800199e: 781b ldrb r3, [r3, #0] + 80019a0: 4619 mov r1, r3 + 80019a2: f44f 737a mov.w r3, #1000 @ 0x3e8 + 80019a6: fbb3 f3f1 udiv r3, r3, r1 + 80019aa: fbb2 f3f3 udiv r3, r2, r3 + 80019ae: 4618 mov r0, r3 + 80019b0: f000 f967 bl 8001c82 + 80019b4: 4603 mov r3, r0 + 80019b6: 2b00 cmp r3, #0 + 80019b8: d001 beq.n 80019be { return HAL_ERROR; - 800196a: 2301 movs r3, #1 - 800196c: e00e b.n 800198c + 80019ba: 2301 movs r3, #1 + 80019bc: e00e b.n 80019dc } /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 800196e: 687b ldr r3, [r7, #4] - 8001970: 2b0f cmp r3, #15 - 8001972: d80a bhi.n 800198a + 80019be: 687b ldr r3, [r7, #4] + 80019c0: 2b0f cmp r3, #15 + 80019c2: d80a bhi.n 80019da { HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U); - 8001974: 2200 movs r2, #0 - 8001976: 6879 ldr r1, [r7, #4] - 8001978: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff - 800197c: f000 f92f bl 8001bde + 80019c4: 2200 movs r2, #0 + 80019c6: 6879 ldr r1, [r7, #4] + 80019c8: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff + 80019cc: f000 f92f bl 8001c2e uwTickPrio = TickPriority; - 8001980: 4a06 ldr r2, [pc, #24] @ (800199c ) - 8001982: 687b ldr r3, [r7, #4] - 8001984: 6013 str r3, [r2, #0] + 80019d0: 4a06 ldr r2, [pc, #24] @ (80019ec ) + 80019d2: 687b ldr r3, [r7, #4] + 80019d4: 6013 str r3, [r2, #0] { return HAL_ERROR; } /* Return function status */ return HAL_OK; - 8001986: 2300 movs r3, #0 - 8001988: e000 b.n 800198c + 80019d6: 2300 movs r3, #0 + 80019d8: e000 b.n 80019dc return HAL_ERROR; - 800198a: 2301 movs r3, #1 + 80019da: 2301 movs r3, #1 } - 800198c: 4618 mov r0, r3 - 800198e: 3708 adds r7, #8 - 8001990: 46bd mov sp, r7 - 8001992: bd80 pop {r7, pc} - 8001994: 20000090 .word 0x20000090 - 8001998: 20000098 .word 0x20000098 - 800199c: 20000094 .word 0x20000094 + 80019dc: 4618 mov r0, r3 + 80019de: 3708 adds r7, #8 + 80019e0: 46bd mov sp, r7 + 80019e2: bd80 pop {r7, pc} + 80019e4: 20000090 .word 0x20000090 + 80019e8: 20000098 .word 0x20000098 + 80019ec: 20000094 .word 0x20000094 -080019a0 : +080019f0 : * @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) { - 80019a0: b480 push {r7} - 80019a2: af00 add r7, sp, #0 + 80019f0: b480 push {r7} + 80019f2: af00 add r7, sp, #0 uwTick += uwTickFreq; - 80019a4: 4b06 ldr r3, [pc, #24] @ (80019c0 ) - 80019a6: 781b ldrb r3, [r3, #0] - 80019a8: 461a mov r2, r3 - 80019aa: 4b06 ldr r3, [pc, #24] @ (80019c4 ) - 80019ac: 681b ldr r3, [r3, #0] - 80019ae: 4413 add r3, r2 - 80019b0: 4a04 ldr r2, [pc, #16] @ (80019c4 ) - 80019b2: 6013 str r3, [r2, #0] + 80019f4: 4b06 ldr r3, [pc, #24] @ (8001a10 ) + 80019f6: 781b ldrb r3, [r3, #0] + 80019f8: 461a mov r2, r3 + 80019fa: 4b06 ldr r3, [pc, #24] @ (8001a14 ) + 80019fc: 681b ldr r3, [r3, #0] + 80019fe: 4413 add r3, r2 + 8001a00: 4a04 ldr r2, [pc, #16] @ (8001a14 ) + 8001a02: 6013 str r3, [r2, #0] } - 80019b4: bf00 nop - 80019b6: 46bd mov sp, r7 - 80019b8: f85d 7b04 ldr.w r7, [sp], #4 - 80019bc: 4770 bx lr - 80019be: bf00 nop - 80019c0: 20000098 .word 0x20000098 - 80019c4: 2000071c .word 0x2000071c + 8001a04: bf00 nop + 8001a06: 46bd mov sp, r7 + 8001a08: f85d 7b04 ldr.w r7, [sp], #4 + 8001a0c: 4770 bx lr + 8001a0e: bf00 nop + 8001a10: 20000098 .word 0x20000098 + 8001a14: 2000071c .word 0x2000071c -080019c8 : +08001a18 : * @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) { - 80019c8: b480 push {r7} - 80019ca: af00 add r7, sp, #0 + 8001a18: b480 push {r7} + 8001a1a: af00 add r7, sp, #0 return uwTick; - 80019cc: 4b03 ldr r3, [pc, #12] @ (80019dc ) - 80019ce: 681b ldr r3, [r3, #0] + 8001a1c: 4b03 ldr r3, [pc, #12] @ (8001a2c ) + 8001a1e: 681b ldr r3, [r3, #0] } - 80019d0: 4618 mov r0, r3 - 80019d2: 46bd mov sp, r7 - 80019d4: f85d 7b04 ldr.w r7, [sp], #4 - 80019d8: 4770 bx lr - 80019da: bf00 nop - 80019dc: 2000071c .word 0x2000071c + 8001a20: 4618 mov r0, r3 + 8001a22: 46bd mov sp, r7 + 8001a24: f85d 7b04 ldr.w r7, [sp], #4 + 8001a28: 4770 bx lr + 8001a2a: bf00 nop + 8001a2c: 2000071c .word 0x2000071c -080019e0 : +08001a30 : * implementations in user file. * @param Delay specifies the delay time length, in milliseconds. * @retval None */ __weak void HAL_Delay(uint32_t Delay) { - 80019e0: b580 push {r7, lr} - 80019e2: b084 sub sp, #16 - 80019e4: af00 add r7, sp, #0 - 80019e6: 6078 str r0, [r7, #4] + 8001a30: b580 push {r7, lr} + 8001a32: b084 sub sp, #16 + 8001a34: af00 add r7, sp, #0 + 8001a36: 6078 str r0, [r7, #4] uint32_t tickstart = HAL_GetTick(); - 80019e8: f7ff ffee bl 80019c8 - 80019ec: 60b8 str r0, [r7, #8] + 8001a38: f7ff ffee bl 8001a18 + 8001a3c: 60b8 str r0, [r7, #8] uint32_t wait = Delay; - 80019ee: 687b ldr r3, [r7, #4] - 80019f0: 60fb str r3, [r7, #12] + 8001a3e: 687b ldr r3, [r7, #4] + 8001a40: 60fb str r3, [r7, #12] /* Add a freq to guarantee minimum wait */ if (wait < HAL_MAX_DELAY) - 80019f2: 68fb ldr r3, [r7, #12] - 80019f4: f1b3 3fff cmp.w r3, #4294967295 @ 0xffffffff - 80019f8: d005 beq.n 8001a06 + 8001a42: 68fb ldr r3, [r7, #12] + 8001a44: f1b3 3fff cmp.w r3, #4294967295 @ 0xffffffff + 8001a48: d005 beq.n 8001a56 { wait += (uint32_t)(uwTickFreq); - 80019fa: 4b0a ldr r3, [pc, #40] @ (8001a24 ) - 80019fc: 781b ldrb r3, [r3, #0] - 80019fe: 461a mov r2, r3 - 8001a00: 68fb ldr r3, [r7, #12] - 8001a02: 4413 add r3, r2 - 8001a04: 60fb str r3, [r7, #12] + 8001a4a: 4b0a ldr r3, [pc, #40] @ (8001a74 ) + 8001a4c: 781b ldrb r3, [r3, #0] + 8001a4e: 461a mov r2, r3 + 8001a50: 68fb ldr r3, [r7, #12] + 8001a52: 4413 add r3, r2 + 8001a54: 60fb str r3, [r7, #12] } while((HAL_GetTick() - tickstart) < wait) - 8001a06: bf00 nop - 8001a08: f7ff ffde bl 80019c8 - 8001a0c: 4602 mov r2, r0 - 8001a0e: 68bb ldr r3, [r7, #8] - 8001a10: 1ad3 subs r3, r2, r3 - 8001a12: 68fa ldr r2, [r7, #12] - 8001a14: 429a cmp r2, r3 - 8001a16: d8f7 bhi.n 8001a08 + 8001a56: bf00 nop + 8001a58: f7ff ffde bl 8001a18 + 8001a5c: 4602 mov r2, r0 + 8001a5e: 68bb ldr r3, [r7, #8] + 8001a60: 1ad3 subs r3, r2, r3 + 8001a62: 68fa ldr r2, [r7, #12] + 8001a64: 429a cmp r2, r3 + 8001a66: d8f7 bhi.n 8001a58 { } } - 8001a18: bf00 nop - 8001a1a: bf00 nop - 8001a1c: 3710 adds r7, #16 - 8001a1e: 46bd mov sp, r7 - 8001a20: bd80 pop {r7, pc} - 8001a22: bf00 nop - 8001a24: 20000098 .word 0x20000098 + 8001a68: bf00 nop + 8001a6a: bf00 nop + 8001a6c: 3710 adds r7, #16 + 8001a6e: 46bd mov sp, r7 + 8001a70: bd80 pop {r7, pc} + 8001a72: bf00 nop + 8001a74: 20000098 .word 0x20000098 -08001a28 <__NVIC_SetPriorityGrouping>: +08001a78 <__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) { - 8001a28: b480 push {r7} - 8001a2a: b085 sub sp, #20 - 8001a2c: af00 add r7, sp, #0 - 8001a2e: 6078 str r0, [r7, #4] + 8001a78: b480 push {r7} + 8001a7a: b085 sub sp, #20 + 8001a7c: af00 add r7, sp, #0 + 8001a7e: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001a30: 687b ldr r3, [r7, #4] - 8001a32: f003 0307 and.w r3, r3, #7 - 8001a36: 60fb str r3, [r7, #12] + 8001a80: 687b ldr r3, [r7, #4] + 8001a82: f003 0307 and.w r3, r3, #7 + 8001a86: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 8001a38: 4b0c ldr r3, [pc, #48] @ (8001a6c <__NVIC_SetPriorityGrouping+0x44>) - 8001a3a: 68db ldr r3, [r3, #12] - 8001a3c: 60bb str r3, [r7, #8] + 8001a88: 4b0c ldr r3, [pc, #48] @ (8001abc <__NVIC_SetPriorityGrouping+0x44>) + 8001a8a: 68db ldr r3, [r3, #12] + 8001a8c: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8001a3e: 68ba ldr r2, [r7, #8] - 8001a40: f64f 03ff movw r3, #63743 @ 0xf8ff - 8001a44: 4013 ands r3, r2 - 8001a46: 60bb str r3, [r7, #8] + 8001a8e: 68ba ldr r2, [r7, #8] + 8001a90: f64f 03ff movw r3, #63743 @ 0xf8ff + 8001a94: 4013 ands r3, r2 + 8001a96: 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 */ - 8001a48: 68fb ldr r3, [r7, #12] - 8001a4a: 021a lsls r2, r3, #8 + 8001a98: 68fb ldr r3, [r7, #12] + 8001a9a: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8001a4c: 68bb ldr r3, [r7, #8] - 8001a4e: 4313 orrs r3, r2 + 8001a9c: 68bb ldr r3, [r7, #8] + 8001a9e: 4313 orrs r3, r2 reg_value = (reg_value | - 8001a50: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 - 8001a54: f443 3300 orr.w r3, r3, #131072 @ 0x20000 - 8001a58: 60bb str r3, [r7, #8] + 8001aa0: f043 63bf orr.w r3, r3, #100139008 @ 0x5f80000 + 8001aa4: f443 3300 orr.w r3, r3, #131072 @ 0x20000 + 8001aa8: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 8001a5a: 4a04 ldr r2, [pc, #16] @ (8001a6c <__NVIC_SetPriorityGrouping+0x44>) - 8001a5c: 68bb ldr r3, [r7, #8] - 8001a5e: 60d3 str r3, [r2, #12] + 8001aaa: 4a04 ldr r2, [pc, #16] @ (8001abc <__NVIC_SetPriorityGrouping+0x44>) + 8001aac: 68bb ldr r3, [r7, #8] + 8001aae: 60d3 str r3, [r2, #12] } - 8001a60: bf00 nop - 8001a62: 3714 adds r7, #20 - 8001a64: 46bd mov sp, r7 - 8001a66: f85d 7b04 ldr.w r7, [sp], #4 - 8001a6a: 4770 bx lr - 8001a6c: e000ed00 .word 0xe000ed00 + 8001ab0: bf00 nop + 8001ab2: 3714 adds r7, #20 + 8001ab4: 46bd mov sp, r7 + 8001ab6: f85d 7b04 ldr.w r7, [sp], #4 + 8001aba: 4770 bx lr + 8001abc: e000ed00 .word 0xe000ed00 -08001a70 <__NVIC_GetPriorityGrouping>: +08001ac0 <__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) { - 8001a70: b480 push {r7} - 8001a72: af00 add r7, sp, #0 + 8001ac0: b480 push {r7} + 8001ac2: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8001a74: 4b04 ldr r3, [pc, #16] @ (8001a88 <__NVIC_GetPriorityGrouping+0x18>) - 8001a76: 68db ldr r3, [r3, #12] - 8001a78: 0a1b lsrs r3, r3, #8 - 8001a7a: f003 0307 and.w r3, r3, #7 + 8001ac4: 4b04 ldr r3, [pc, #16] @ (8001ad8 <__NVIC_GetPriorityGrouping+0x18>) + 8001ac6: 68db ldr r3, [r3, #12] + 8001ac8: 0a1b lsrs r3, r3, #8 + 8001aca: f003 0307 and.w r3, r3, #7 } - 8001a7e: 4618 mov r0, r3 - 8001a80: 46bd mov sp, r7 - 8001a82: f85d 7b04 ldr.w r7, [sp], #4 - 8001a86: 4770 bx lr - 8001a88: e000ed00 .word 0xe000ed00 + 8001ace: 4618 mov r0, r3 + 8001ad0: 46bd mov sp, r7 + 8001ad2: f85d 7b04 ldr.w r7, [sp], #4 + 8001ad6: 4770 bx lr + 8001ad8: e000ed00 .word 0xe000ed00 -08001a8c <__NVIC_EnableIRQ>: +08001adc <__NVIC_EnableIRQ>: \details Enables a device specific interrupt in the NVIC interrupt controller. \param [in] IRQn Device specific interrupt number. \note IRQn must not be negative. */ __STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn) { - 8001a8c: b480 push {r7} - 8001a8e: b083 sub sp, #12 - 8001a90: af00 add r7, sp, #0 - 8001a92: 4603 mov r3, r0 - 8001a94: 71fb strb r3, [r7, #7] + 8001adc: b480 push {r7} + 8001ade: b083 sub sp, #12 + 8001ae0: af00 add r7, sp, #0 + 8001ae2: 4603 mov r3, r0 + 8001ae4: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001a96: f997 3007 ldrsb.w r3, [r7, #7] - 8001a9a: 2b00 cmp r3, #0 - 8001a9c: db0b blt.n 8001ab6 <__NVIC_EnableIRQ+0x2a> + 8001ae6: f997 3007 ldrsb.w r3, [r7, #7] + 8001aea: 2b00 cmp r3, #0 + 8001aec: db0b blt.n 8001b06 <__NVIC_EnableIRQ+0x2a> { __COMPILER_BARRIER(); NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 8001a9e: 79fb ldrb r3, [r7, #7] - 8001aa0: f003 021f and.w r2, r3, #31 - 8001aa4: 4907 ldr r1, [pc, #28] @ (8001ac4 <__NVIC_EnableIRQ+0x38>) - 8001aa6: f997 3007 ldrsb.w r3, [r7, #7] - 8001aaa: 095b lsrs r3, r3, #5 - 8001aac: 2001 movs r0, #1 - 8001aae: fa00 f202 lsl.w r2, r0, r2 - 8001ab2: f841 2023 str.w r2, [r1, r3, lsl #2] + 8001aee: 79fb ldrb r3, [r7, #7] + 8001af0: f003 021f and.w r2, r3, #31 + 8001af4: 4907 ldr r1, [pc, #28] @ (8001b14 <__NVIC_EnableIRQ+0x38>) + 8001af6: f997 3007 ldrsb.w r3, [r7, #7] + 8001afa: 095b lsrs r3, r3, #5 + 8001afc: 2001 movs r0, #1 + 8001afe: fa00 f202 lsl.w r2, r0, r2 + 8001b02: f841 2023 str.w r2, [r1, r3, lsl #2] __COMPILER_BARRIER(); } } - 8001ab6: bf00 nop - 8001ab8: 370c adds r7, #12 - 8001aba: 46bd mov sp, r7 - 8001abc: f85d 7b04 ldr.w r7, [sp], #4 - 8001ac0: 4770 bx lr - 8001ac2: bf00 nop - 8001ac4: e000e100 .word 0xe000e100 + 8001b06: bf00 nop + 8001b08: 370c adds r7, #12 + 8001b0a: 46bd mov sp, r7 + 8001b0c: f85d 7b04 ldr.w r7, [sp], #4 + 8001b10: 4770 bx lr + 8001b12: bf00 nop + 8001b14: e000e100 .word 0xe000e100 -08001ac8 <__NVIC_SetPriority>: +08001b18 <__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) { - 8001ac8: b480 push {r7} - 8001aca: b083 sub sp, #12 - 8001acc: af00 add r7, sp, #0 - 8001ace: 4603 mov r3, r0 - 8001ad0: 6039 str r1, [r7, #0] - 8001ad2: 71fb strb r3, [r7, #7] + 8001b18: b480 push {r7} + 8001b1a: b083 sub sp, #12 + 8001b1c: af00 add r7, sp, #0 + 8001b1e: 4603 mov r3, r0 + 8001b20: 6039 str r1, [r7, #0] + 8001b22: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8001ad4: f997 3007 ldrsb.w r3, [r7, #7] - 8001ad8: 2b00 cmp r3, #0 - 8001ada: db0a blt.n 8001af2 <__NVIC_SetPriority+0x2a> + 8001b24: f997 3007 ldrsb.w r3, [r7, #7] + 8001b28: 2b00 cmp r3, #0 + 8001b2a: db0a blt.n 8001b42 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001adc: 683b ldr r3, [r7, #0] - 8001ade: b2da uxtb r2, r3 - 8001ae0: 490c ldr r1, [pc, #48] @ (8001b14 <__NVIC_SetPriority+0x4c>) - 8001ae2: f997 3007 ldrsb.w r3, [r7, #7] - 8001ae6: 0112 lsls r2, r2, #4 - 8001ae8: b2d2 uxtb r2, r2 - 8001aea: 440b add r3, r1 - 8001aec: f883 2300 strb.w r2, [r3, #768] @ 0x300 + 8001b2c: 683b ldr r3, [r7, #0] + 8001b2e: b2da uxtb r2, r3 + 8001b30: 490c ldr r1, [pc, #48] @ (8001b64 <__NVIC_SetPriority+0x4c>) + 8001b32: f997 3007 ldrsb.w r3, [r7, #7] + 8001b36: 0112 lsls r2, r2, #4 + 8001b38: b2d2 uxtb r2, r2 + 8001b3a: 440b add r3, r1 + 8001b3c: 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); } } - 8001af0: e00a b.n 8001b08 <__NVIC_SetPriority+0x40> + 8001b40: e00a b.n 8001b58 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8001af2: 683b ldr r3, [r7, #0] - 8001af4: b2da uxtb r2, r3 - 8001af6: 4908 ldr r1, [pc, #32] @ (8001b18 <__NVIC_SetPriority+0x50>) - 8001af8: 79fb ldrb r3, [r7, #7] - 8001afa: f003 030f and.w r3, r3, #15 - 8001afe: 3b04 subs r3, #4 - 8001b00: 0112 lsls r2, r2, #4 - 8001b02: b2d2 uxtb r2, r2 - 8001b04: 440b add r3, r1 - 8001b06: 761a strb r2, [r3, #24] + 8001b42: 683b ldr r3, [r7, #0] + 8001b44: b2da uxtb r2, r3 + 8001b46: 4908 ldr r1, [pc, #32] @ (8001b68 <__NVIC_SetPriority+0x50>) + 8001b48: 79fb ldrb r3, [r7, #7] + 8001b4a: f003 030f and.w r3, r3, #15 + 8001b4e: 3b04 subs r3, #4 + 8001b50: 0112 lsls r2, r2, #4 + 8001b52: b2d2 uxtb r2, r2 + 8001b54: 440b add r3, r1 + 8001b56: 761a strb r2, [r3, #24] } - 8001b08: bf00 nop - 8001b0a: 370c adds r7, #12 - 8001b0c: 46bd mov sp, r7 - 8001b0e: f85d 7b04 ldr.w r7, [sp], #4 - 8001b12: 4770 bx lr - 8001b14: e000e100 .word 0xe000e100 - 8001b18: e000ed00 .word 0xe000ed00 + 8001b58: bf00 nop + 8001b5a: 370c adds r7, #12 + 8001b5c: 46bd mov sp, r7 + 8001b5e: f85d 7b04 ldr.w r7, [sp], #4 + 8001b62: 4770 bx lr + 8001b64: e000e100 .word 0xe000e100 + 8001b68: e000ed00 .word 0xe000ed00 -08001b1c : +08001b6c : \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) { - 8001b1c: b480 push {r7} - 8001b1e: b089 sub sp, #36 @ 0x24 - 8001b20: af00 add r7, sp, #0 - 8001b22: 60f8 str r0, [r7, #12] - 8001b24: 60b9 str r1, [r7, #8] - 8001b26: 607a str r2, [r7, #4] + 8001b6c: b480 push {r7} + 8001b6e: b089 sub sp, #36 @ 0x24 + 8001b70: af00 add r7, sp, #0 + 8001b72: 60f8 str r0, [r7, #12] + 8001b74: 60b9 str r1, [r7, #8] + 8001b76: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8001b28: 68fb ldr r3, [r7, #12] - 8001b2a: f003 0307 and.w r3, r3, #7 - 8001b2e: 61fb str r3, [r7, #28] + 8001b78: 68fb ldr r3, [r7, #12] + 8001b7a: f003 0307 and.w r3, r3, #7 + 8001b7e: 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); - 8001b30: 69fb ldr r3, [r7, #28] - 8001b32: f1c3 0307 rsb r3, r3, #7 - 8001b36: 2b04 cmp r3, #4 - 8001b38: bf28 it cs - 8001b3a: 2304 movcs r3, #4 - 8001b3c: 61bb str r3, [r7, #24] + 8001b80: 69fb ldr r3, [r7, #28] + 8001b82: f1c3 0307 rsb r3, r3, #7 + 8001b86: 2b04 cmp r3, #4 + 8001b88: bf28 it cs + 8001b8a: 2304 movcs r3, #4 + 8001b8c: 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)); - 8001b3e: 69fb ldr r3, [r7, #28] - 8001b40: 3304 adds r3, #4 - 8001b42: 2b06 cmp r3, #6 - 8001b44: d902 bls.n 8001b4c - 8001b46: 69fb ldr r3, [r7, #28] - 8001b48: 3b03 subs r3, #3 - 8001b4a: e000 b.n 8001b4e - 8001b4c: 2300 movs r3, #0 - 8001b4e: 617b str r3, [r7, #20] + 8001b8e: 69fb ldr r3, [r7, #28] + 8001b90: 3304 adds r3, #4 + 8001b92: 2b06 cmp r3, #6 + 8001b94: d902 bls.n 8001b9c + 8001b96: 69fb ldr r3, [r7, #28] + 8001b98: 3b03 subs r3, #3 + 8001b9a: e000 b.n 8001b9e + 8001b9c: 2300 movs r3, #0 + 8001b9e: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001b50: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff - 8001b54: 69bb ldr r3, [r7, #24] - 8001b56: fa02 f303 lsl.w r3, r2, r3 - 8001b5a: 43da mvns r2, r3 - 8001b5c: 68bb ldr r3, [r7, #8] - 8001b5e: 401a ands r2, r3 - 8001b60: 697b ldr r3, [r7, #20] - 8001b62: 409a lsls r2, r3 + 8001ba0: f04f 32ff mov.w r2, #4294967295 @ 0xffffffff + 8001ba4: 69bb ldr r3, [r7, #24] + 8001ba6: fa02 f303 lsl.w r3, r2, r3 + 8001baa: 43da mvns r2, r3 + 8001bac: 68bb ldr r3, [r7, #8] + 8001bae: 401a ands r2, r3 + 8001bb0: 697b ldr r3, [r7, #20] + 8001bb2: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8001b64: f04f 31ff mov.w r1, #4294967295 @ 0xffffffff - 8001b68: 697b ldr r3, [r7, #20] - 8001b6a: fa01 f303 lsl.w r3, r1, r3 - 8001b6e: 43d9 mvns r1, r3 - 8001b70: 687b ldr r3, [r7, #4] - 8001b72: 400b ands r3, r1 + 8001bb4: f04f 31ff mov.w r1, #4294967295 @ 0xffffffff + 8001bb8: 697b ldr r3, [r7, #20] + 8001bba: fa01 f303 lsl.w r3, r1, r3 + 8001bbe: 43d9 mvns r1, r3 + 8001bc0: 687b ldr r3, [r7, #4] + 8001bc2: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8001b74: 4313 orrs r3, r2 + 8001bc4: 4313 orrs r3, r2 ); } - 8001b76: 4618 mov r0, r3 - 8001b78: 3724 adds r7, #36 @ 0x24 - 8001b7a: 46bd mov sp, r7 - 8001b7c: f85d 7b04 ldr.w r7, [sp], #4 - 8001b80: 4770 bx lr + 8001bc6: 4618 mov r0, r3 + 8001bc8: 3724 adds r7, #36 @ 0x24 + 8001bca: 46bd mov sp, r7 + 8001bcc: f85d 7b04 ldr.w r7, [sp], #4 + 8001bd0: 4770 bx lr ... -08001b84 : +08001bd4 : \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) { - 8001b84: b580 push {r7, lr} - 8001b86: b082 sub sp, #8 - 8001b88: af00 add r7, sp, #0 - 8001b8a: 6078 str r0, [r7, #4] + 8001bd4: b580 push {r7, lr} + 8001bd6: b082 sub sp, #8 + 8001bd8: af00 add r7, sp, #0 + 8001bda: 6078 str r0, [r7, #4] if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) - 8001b8c: 687b ldr r3, [r7, #4] - 8001b8e: 3b01 subs r3, #1 - 8001b90: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 - 8001b94: d301 bcc.n 8001b9a + 8001bdc: 687b ldr r3, [r7, #4] + 8001bde: 3b01 subs r3, #1 + 8001be0: f1b3 7f80 cmp.w r3, #16777216 @ 0x1000000 + 8001be4: d301 bcc.n 8001bea { return (1UL); /* Reload value impossible */ - 8001b96: 2301 movs r3, #1 - 8001b98: e00f b.n 8001bba + 8001be6: 2301 movs r3, #1 + 8001be8: e00f b.n 8001c0a } SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */ - 8001b9a: 4a0a ldr r2, [pc, #40] @ (8001bc4 ) - 8001b9c: 687b ldr r3, [r7, #4] - 8001b9e: 3b01 subs r3, #1 - 8001ba0: 6053 str r3, [r2, #4] + 8001bea: 4a0a ldr r2, [pc, #40] @ (8001c14 ) + 8001bec: 687b ldr r3, [r7, #4] + 8001bee: 3b01 subs r3, #1 + 8001bf0: 6053 str r3, [r2, #4] NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */ - 8001ba2: 210f movs r1, #15 - 8001ba4: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff - 8001ba8: f7ff ff8e bl 8001ac8 <__NVIC_SetPriority> + 8001bf2: 210f movs r1, #15 + 8001bf4: f04f 30ff mov.w r0, #4294967295 @ 0xffffffff + 8001bf8: f7ff ff8e bl 8001b18 <__NVIC_SetPriority> SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ - 8001bac: 4b05 ldr r3, [pc, #20] @ (8001bc4 ) - 8001bae: 2200 movs r2, #0 - 8001bb0: 609a str r2, [r3, #8] + 8001bfc: 4b05 ldr r3, [pc, #20] @ (8001c14 ) + 8001bfe: 2200 movs r2, #0 + 8001c00: 609a str r2, [r3, #8] SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk | - 8001bb2: 4b04 ldr r3, [pc, #16] @ (8001bc4 ) - 8001bb4: 2207 movs r2, #7 - 8001bb6: 601a str r2, [r3, #0] + 8001c02: 4b04 ldr r3, [pc, #16] @ (8001c14 ) + 8001c04: 2207 movs r2, #7 + 8001c06: 601a str r2, [r3, #0] SysTick_CTRL_TICKINT_Msk | SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */ return (0UL); /* Function successful */ - 8001bb8: 2300 movs r3, #0 + 8001c08: 2300 movs r3, #0 } - 8001bba: 4618 mov r0, r3 - 8001bbc: 3708 adds r7, #8 - 8001bbe: 46bd mov sp, r7 - 8001bc0: bd80 pop {r7, pc} - 8001bc2: bf00 nop - 8001bc4: e000e010 .word 0xe000e010 + 8001c0a: 4618 mov r0, r3 + 8001c0c: 3708 adds r7, #8 + 8001c0e: 46bd mov sp, r7 + 8001c10: bd80 pop {r7, pc} + 8001c12: bf00 nop + 8001c14: e000e010 .word 0xe000e010 -08001bc8 : +08001c18 : * @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) { - 8001bc8: b580 push {r7, lr} - 8001bca: b082 sub sp, #8 - 8001bcc: af00 add r7, sp, #0 - 8001bce: 6078 str r0, [r7, #4] + 8001c18: b580 push {r7, lr} + 8001c1a: b082 sub sp, #8 + 8001c1c: af00 add r7, sp, #0 + 8001c1e: 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); - 8001bd0: 6878 ldr r0, [r7, #4] - 8001bd2: f7ff ff29 bl 8001a28 <__NVIC_SetPriorityGrouping> + 8001c20: 6878 ldr r0, [r7, #4] + 8001c22: f7ff ff29 bl 8001a78 <__NVIC_SetPriorityGrouping> } - 8001bd6: bf00 nop - 8001bd8: 3708 adds r7, #8 - 8001bda: 46bd mov sp, r7 - 8001bdc: bd80 pop {r7, pc} + 8001c26: bf00 nop + 8001c28: 3708 adds r7, #8 + 8001c2a: 46bd mov sp, r7 + 8001c2c: bd80 pop {r7, pc} -08001bde : +08001c2e : * 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) { - 8001bde: b580 push {r7, lr} - 8001be0: b086 sub sp, #24 - 8001be2: af00 add r7, sp, #0 - 8001be4: 4603 mov r3, r0 - 8001be6: 60b9 str r1, [r7, #8] - 8001be8: 607a str r2, [r7, #4] - 8001bea: 73fb strb r3, [r7, #15] + 8001c2e: b580 push {r7, lr} + 8001c30: b086 sub sp, #24 + 8001c32: af00 add r7, sp, #0 + 8001c34: 4603 mov r3, r0 + 8001c36: 60b9 str r1, [r7, #8] + 8001c38: 607a str r2, [r7, #4] + 8001c3a: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8001bec: 2300 movs r3, #0 - 8001bee: 617b str r3, [r7, #20] + 8001c3c: 2300 movs r3, #0 + 8001c3e: 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(); - 8001bf0: f7ff ff3e bl 8001a70 <__NVIC_GetPriorityGrouping> - 8001bf4: 6178 str r0, [r7, #20] + 8001c40: f7ff ff3e bl 8001ac0 <__NVIC_GetPriorityGrouping> + 8001c44: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8001bf6: 687a ldr r2, [r7, #4] - 8001bf8: 68b9 ldr r1, [r7, #8] - 8001bfa: 6978 ldr r0, [r7, #20] - 8001bfc: f7ff ff8e bl 8001b1c - 8001c00: 4602 mov r2, r0 - 8001c02: f997 300f ldrsb.w r3, [r7, #15] - 8001c06: 4611 mov r1, r2 - 8001c08: 4618 mov r0, r3 - 8001c0a: f7ff ff5d bl 8001ac8 <__NVIC_SetPriority> + 8001c46: 687a ldr r2, [r7, #4] + 8001c48: 68b9 ldr r1, [r7, #8] + 8001c4a: 6978 ldr r0, [r7, #20] + 8001c4c: f7ff ff8e bl 8001b6c + 8001c50: 4602 mov r2, r0 + 8001c52: f997 300f ldrsb.w r3, [r7, #15] + 8001c56: 4611 mov r1, r2 + 8001c58: 4618 mov r0, r3 + 8001c5a: f7ff ff5d bl 8001b18 <__NVIC_SetPriority> } - 8001c0e: bf00 nop - 8001c10: 3718 adds r7, #24 - 8001c12: 46bd mov sp, r7 - 8001c14: bd80 pop {r7, pc} + 8001c5e: bf00 nop + 8001c60: 3718 adds r7, #24 + 8001c62: 46bd mov sp, r7 + 8001c64: bd80 pop {r7, pc} -08001c16 : +08001c66 : * This parameter can be an enumerator of IRQn_Type enumeration * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h)) * @retval None */ void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) { - 8001c16: b580 push {r7, lr} - 8001c18: b082 sub sp, #8 - 8001c1a: af00 add r7, sp, #0 - 8001c1c: 4603 mov r3, r0 - 8001c1e: 71fb strb r3, [r7, #7] + 8001c66: b580 push {r7, lr} + 8001c68: b082 sub sp, #8 + 8001c6a: af00 add r7, sp, #0 + 8001c6c: 4603 mov r3, r0 + 8001c6e: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 8001c20: f997 3007 ldrsb.w r3, [r7, #7] - 8001c24: 4618 mov r0, r3 - 8001c26: f7ff ff31 bl 8001a8c <__NVIC_EnableIRQ> + 8001c70: f997 3007 ldrsb.w r3, [r7, #7] + 8001c74: 4618 mov r0, r3 + 8001c76: f7ff ff31 bl 8001adc <__NVIC_EnableIRQ> } - 8001c2a: bf00 nop - 8001c2c: 3708 adds r7, #8 - 8001c2e: 46bd mov sp, r7 - 8001c30: bd80 pop {r7, pc} + 8001c7a: bf00 nop + 8001c7c: 3708 adds r7, #8 + 8001c7e: 46bd mov sp, r7 + 8001c80: bd80 pop {r7, pc} -08001c32 : +08001c82 : * @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) { - 8001c32: b580 push {r7, lr} - 8001c34: b082 sub sp, #8 - 8001c36: af00 add r7, sp, #0 - 8001c38: 6078 str r0, [r7, #4] + 8001c82: b580 push {r7, lr} + 8001c84: b082 sub sp, #8 + 8001c86: af00 add r7, sp, #0 + 8001c88: 6078 str r0, [r7, #4] return SysTick_Config(TicksNumb); - 8001c3a: 6878 ldr r0, [r7, #4] - 8001c3c: f7ff ffa2 bl 8001b84 - 8001c40: 4603 mov r3, r0 + 8001c8a: 6878 ldr r0, [r7, #4] + 8001c8c: f7ff ffa2 bl 8001bd4 + 8001c90: 4603 mov r3, r0 } - 8001c42: 4618 mov r0, r3 - 8001c44: 3708 adds r7, #8 - 8001c46: 46bd mov sp, r7 - 8001c48: bd80 pop {r7, pc} + 8001c92: 4618 mov r0, r3 + 8001c94: 3708 adds r7, #8 + 8001c96: 46bd mov sp, r7 + 8001c98: bd80 pop {r7, pc} ... -08001c4c : +08001c9c : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma) { - 8001c4c: b580 push {r7, lr} - 8001c4e: b086 sub sp, #24 - 8001c50: af00 add r7, sp, #0 - 8001c52: 6078 str r0, [r7, #4] + 8001c9c: b580 push {r7, lr} + 8001c9e: b086 sub sp, #24 + 8001ca0: af00 add r7, sp, #0 + 8001ca2: 6078 str r0, [r7, #4] uint32_t tmp = 0U; - 8001c54: 2300 movs r3, #0 - 8001c56: 617b str r3, [r7, #20] + 8001ca4: 2300 movs r3, #0 + 8001ca6: 617b str r3, [r7, #20] uint32_t tickstart = HAL_GetTick(); - 8001c58: f7ff feb6 bl 80019c8 - 8001c5c: 6138 str r0, [r7, #16] + 8001ca8: f7ff feb6 bl 8001a18 + 8001cac: 6138 str r0, [r7, #16] DMA_Base_Registers *regs; /* Check the DMA peripheral state */ if(hdma == NULL) - 8001c5e: 687b ldr r3, [r7, #4] - 8001c60: 2b00 cmp r3, #0 - 8001c62: d101 bne.n 8001c68 + 8001cae: 687b ldr r3, [r7, #4] + 8001cb0: 2b00 cmp r3, #0 + 8001cb2: d101 bne.n 8001cb8 { return HAL_ERROR; - 8001c64: 2301 movs r3, #1 - 8001c66: e099 b.n 8001d9c + 8001cb4: 2301 movs r3, #1 + 8001cb6: e099 b.n 8001dec assert_param(IS_DMA_MEMORY_BURST(hdma->Init.MemBurst)); assert_param(IS_DMA_PERIPHERAL_BURST(hdma->Init.PeriphBurst)); } /* Change DMA peripheral state */ hdma->State = HAL_DMA_STATE_BUSY; - 8001c68: 687b ldr r3, [r7, #4] - 8001c6a: 2202 movs r2, #2 - 8001c6c: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001cb8: 687b ldr r3, [r7, #4] + 8001cba: 2202 movs r2, #2 + 8001cbc: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Allocate lock resource */ __HAL_UNLOCK(hdma); - 8001c70: 687b ldr r3, [r7, #4] - 8001c72: 2200 movs r2, #0 - 8001c74: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001cc0: 687b ldr r3, [r7, #4] + 8001cc2: 2200 movs r2, #0 + 8001cc4: f883 2034 strb.w r2, [r3, #52] @ 0x34 /* Disable the peripheral */ __HAL_DMA_DISABLE(hdma); - 8001c78: 687b ldr r3, [r7, #4] - 8001c7a: 681b ldr r3, [r3, #0] - 8001c7c: 681a ldr r2, [r3, #0] - 8001c7e: 687b ldr r3, [r7, #4] - 8001c80: 681b ldr r3, [r3, #0] - 8001c82: f022 0201 bic.w r2, r2, #1 - 8001c86: 601a str r2, [r3, #0] + 8001cc8: 687b ldr r3, [r7, #4] + 8001cca: 681b ldr r3, [r3, #0] + 8001ccc: 681a ldr r2, [r3, #0] + 8001cce: 687b ldr r3, [r7, #4] + 8001cd0: 681b ldr r3, [r3, #0] + 8001cd2: f022 0201 bic.w r2, r2, #1 + 8001cd6: 601a str r2, [r3, #0] /* Check if the DMA Stream is effectively disabled */ while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001c88: e00f b.n 8001caa + 8001cd8: e00f b.n 8001cfa { /* Check for the Timeout */ if((HAL_GetTick() - tickstart ) > HAL_TIMEOUT_DMA_ABORT) - 8001c8a: f7ff fe9d bl 80019c8 - 8001c8e: 4602 mov r2, r0 - 8001c90: 693b ldr r3, [r7, #16] - 8001c92: 1ad3 subs r3, r2, r3 - 8001c94: 2b05 cmp r3, #5 - 8001c96: d908 bls.n 8001caa + 8001cda: f7ff fe9d bl 8001a18 + 8001cde: 4602 mov r2, r0 + 8001ce0: 693b ldr r3, [r7, #16] + 8001ce2: 1ad3 subs r3, r2, r3 + 8001ce4: 2b05 cmp r3, #5 + 8001ce6: d908 bls.n 8001cfa { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_TIMEOUT; - 8001c98: 687b ldr r3, [r7, #4] - 8001c9a: 2220 movs r2, #32 - 8001c9c: 655a str r2, [r3, #84] @ 0x54 + 8001ce8: 687b ldr r3, [r7, #4] + 8001cea: 2220 movs r2, #32 + 8001cec: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_TIMEOUT; - 8001c9e: 687b ldr r3, [r7, #4] - 8001ca0: 2203 movs r2, #3 - 8001ca2: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001cee: 687b ldr r3, [r7, #4] + 8001cf0: 2203 movs r2, #3 + 8001cf2: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_TIMEOUT; - 8001ca6: 2303 movs r3, #3 - 8001ca8: e078 b.n 8001d9c + 8001cf6: 2303 movs r3, #3 + 8001cf8: e078 b.n 8001dec while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001caa: 687b ldr r3, [r7, #4] - 8001cac: 681b ldr r3, [r3, #0] - 8001cae: 681b ldr r3, [r3, #0] - 8001cb0: f003 0301 and.w r3, r3, #1 - 8001cb4: 2b00 cmp r3, #0 - 8001cb6: d1e8 bne.n 8001c8a + 8001cfa: 687b ldr r3, [r7, #4] + 8001cfc: 681b ldr r3, [r3, #0] + 8001cfe: 681b ldr r3, [r3, #0] + 8001d00: f003 0301 and.w r3, r3, #1 + 8001d04: 2b00 cmp r3, #0 + 8001d06: d1e8 bne.n 8001cda } } /* Get the CR register value */ tmp = hdma->Instance->CR; - 8001cb8: 687b ldr r3, [r7, #4] - 8001cba: 681b ldr r3, [r3, #0] - 8001cbc: 681b ldr r3, [r3, #0] - 8001cbe: 617b str r3, [r7, #20] + 8001d08: 687b ldr r3, [r7, #4] + 8001d0a: 681b ldr r3, [r3, #0] + 8001d0c: 681b ldr r3, [r3, #0] + 8001d0e: 617b str r3, [r7, #20] /* Clear CHSEL, MBURST, PBURST, PL, MSIZE, PSIZE, MINC, PINC, CIRC, DIR, CT and DBM bits */ tmp &= ((uint32_t)~(DMA_SxCR_CHSEL | DMA_SxCR_MBURST | DMA_SxCR_PBURST | \ - 8001cc0: 697a ldr r2, [r7, #20] - 8001cc2: 4b38 ldr r3, [pc, #224] @ (8001da4 ) - 8001cc4: 4013 ands r3, r2 - 8001cc6: 617b str r3, [r7, #20] + 8001d10: 697a ldr r2, [r7, #20] + 8001d12: 4b38 ldr r3, [pc, #224] @ (8001df4 ) + 8001d14: 4013 ands r3, r2 + 8001d16: 617b str r3, [r7, #20] DMA_SxCR_PL | DMA_SxCR_MSIZE | DMA_SxCR_PSIZE | \ DMA_SxCR_MINC | DMA_SxCR_PINC | DMA_SxCR_CIRC | \ DMA_SxCR_DIR | DMA_SxCR_CT | DMA_SxCR_DBM)); /* Prepare the DMA Stream configuration */ tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001cc8: 687b ldr r3, [r7, #4] - 8001cca: 685a ldr r2, [r3, #4] - 8001ccc: 687b ldr r3, [r7, #4] - 8001cce: 689b ldr r3, [r3, #8] - 8001cd0: 431a orrs r2, r3 + 8001d18: 687b ldr r3, [r7, #4] + 8001d1a: 685a ldr r2, [r3, #4] + 8001d1c: 687b ldr r3, [r7, #4] + 8001d1e: 689b ldr r3, [r3, #8] + 8001d20: 431a orrs r2, r3 hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001cd2: 687b ldr r3, [r7, #4] - 8001cd4: 68db ldr r3, [r3, #12] + 8001d22: 687b ldr r3, [r7, #4] + 8001d24: 68db ldr r3, [r3, #12] tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001cd6: 431a orrs r2, r3 + 8001d26: 431a orrs r2, r3 hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001cd8: 687b ldr r3, [r7, #4] - 8001cda: 691b ldr r3, [r3, #16] - 8001cdc: 431a orrs r2, r3 + 8001d28: 687b ldr r3, [r7, #4] + 8001d2a: 691b ldr r3, [r3, #16] + 8001d2c: 431a orrs r2, r3 hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001cde: 687b ldr r3, [r7, #4] - 8001ce0: 695b ldr r3, [r3, #20] + 8001d2e: 687b ldr r3, [r7, #4] + 8001d30: 695b ldr r3, [r3, #20] hdma->Init.PeriphInc | hdma->Init.MemInc | - 8001ce2: 431a orrs r2, r3 + 8001d32: 431a orrs r2, r3 hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001ce4: 687b ldr r3, [r7, #4] - 8001ce6: 699b ldr r3, [r3, #24] - 8001ce8: 431a orrs r2, r3 + 8001d34: 687b ldr r3, [r7, #4] + 8001d36: 699b ldr r3, [r3, #24] + 8001d38: 431a orrs r2, r3 hdma->Init.Mode | hdma->Init.Priority; - 8001cea: 687b ldr r3, [r7, #4] - 8001cec: 69db ldr r3, [r3, #28] + 8001d3a: 687b ldr r3, [r7, #4] + 8001d3c: 69db ldr r3, [r3, #28] hdma->Init.PeriphDataAlignment | hdma->Init.MemDataAlignment | - 8001cee: 431a orrs r2, r3 + 8001d3e: 431a orrs r2, r3 hdma->Init.Mode | hdma->Init.Priority; - 8001cf0: 687b ldr r3, [r7, #4] - 8001cf2: 6a1b ldr r3, [r3, #32] - 8001cf4: 4313 orrs r3, r2 + 8001d40: 687b ldr r3, [r7, #4] + 8001d42: 6a1b ldr r3, [r3, #32] + 8001d44: 4313 orrs r3, r2 tmp |= hdma->Init.Channel | hdma->Init.Direction | - 8001cf6: 697a ldr r2, [r7, #20] - 8001cf8: 4313 orrs r3, r2 - 8001cfa: 617b str r3, [r7, #20] + 8001d46: 697a ldr r2, [r7, #20] + 8001d48: 4313 orrs r3, r2 + 8001d4a: 617b str r3, [r7, #20] /* the Memory burst and peripheral burst are not used when the FIFO is disabled */ if(hdma->Init.FIFOMode == DMA_FIFOMODE_ENABLE) - 8001cfc: 687b ldr r3, [r7, #4] - 8001cfe: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001d00: 2b04 cmp r3, #4 - 8001d02: d107 bne.n 8001d14 + 8001d4c: 687b ldr r3, [r7, #4] + 8001d4e: 6a5b ldr r3, [r3, #36] @ 0x24 + 8001d50: 2b04 cmp r3, #4 + 8001d52: d107 bne.n 8001d64 { /* Get memory burst and peripheral burst */ tmp |= hdma->Init.MemBurst | hdma->Init.PeriphBurst; - 8001d04: 687b ldr r3, [r7, #4] - 8001d06: 6ada ldr r2, [r3, #44] @ 0x2c - 8001d08: 687b ldr r3, [r7, #4] - 8001d0a: 6b1b ldr r3, [r3, #48] @ 0x30 - 8001d0c: 4313 orrs r3, r2 - 8001d0e: 697a ldr r2, [r7, #20] - 8001d10: 4313 orrs r3, r2 - 8001d12: 617b str r3, [r7, #20] + 8001d54: 687b ldr r3, [r7, #4] + 8001d56: 6ada ldr r2, [r3, #44] @ 0x2c + 8001d58: 687b ldr r3, [r7, #4] + 8001d5a: 6b1b ldr r3, [r3, #48] @ 0x30 + 8001d5c: 4313 orrs r3, r2 + 8001d5e: 697a ldr r2, [r7, #20] + 8001d60: 4313 orrs r3, r2 + 8001d62: 617b str r3, [r7, #20] } /* Write to DMA Stream CR register */ hdma->Instance->CR = tmp; - 8001d14: 687b ldr r3, [r7, #4] - 8001d16: 681b ldr r3, [r3, #0] - 8001d18: 697a ldr r2, [r7, #20] - 8001d1a: 601a str r2, [r3, #0] + 8001d64: 687b ldr r3, [r7, #4] + 8001d66: 681b ldr r3, [r3, #0] + 8001d68: 697a ldr r2, [r7, #20] + 8001d6a: 601a str r2, [r3, #0] /* Get the FCR register value */ tmp = hdma->Instance->FCR; - 8001d1c: 687b ldr r3, [r7, #4] - 8001d1e: 681b ldr r3, [r3, #0] - 8001d20: 695b ldr r3, [r3, #20] - 8001d22: 617b str r3, [r7, #20] + 8001d6c: 687b ldr r3, [r7, #4] + 8001d6e: 681b ldr r3, [r3, #0] + 8001d70: 695b ldr r3, [r3, #20] + 8001d72: 617b str r3, [r7, #20] /* Clear Direct mode and FIFO threshold bits */ tmp &= (uint32_t)~(DMA_SxFCR_DMDIS | DMA_SxFCR_FTH); - 8001d24: 697b ldr r3, [r7, #20] - 8001d26: f023 0307 bic.w r3, r3, #7 - 8001d2a: 617b str r3, [r7, #20] + 8001d74: 697b ldr r3, [r7, #20] + 8001d76: f023 0307 bic.w r3, r3, #7 + 8001d7a: 617b str r3, [r7, #20] /* Prepare the DMA Stream FIFO configuration */ tmp |= hdma->Init.FIFOMode; - 8001d2c: 687b ldr r3, [r7, #4] - 8001d2e: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001d30: 697a ldr r2, [r7, #20] - 8001d32: 4313 orrs r3, r2 - 8001d34: 617b str r3, [r7, #20] + 8001d7c: 687b ldr r3, [r7, #4] + 8001d7e: 6a5b ldr r3, [r3, #36] @ 0x24 + 8001d80: 697a ldr r2, [r7, #20] + 8001d82: 4313 orrs r3, r2 + 8001d84: 617b str r3, [r7, #20] /* The FIFO threshold is not used when the FIFO mode is disabled */ if(hdma->Init.FIFOMode == DMA_FIFOMODE_ENABLE) - 8001d36: 687b ldr r3, [r7, #4] - 8001d38: 6a5b ldr r3, [r3, #36] @ 0x24 - 8001d3a: 2b04 cmp r3, #4 - 8001d3c: d117 bne.n 8001d6e + 8001d86: 687b ldr r3, [r7, #4] + 8001d88: 6a5b ldr r3, [r3, #36] @ 0x24 + 8001d8a: 2b04 cmp r3, #4 + 8001d8c: d117 bne.n 8001dbe { /* Get the FIFO threshold */ tmp |= hdma->Init.FIFOThreshold; - 8001d3e: 687b ldr r3, [r7, #4] - 8001d40: 6a9b ldr r3, [r3, #40] @ 0x28 - 8001d42: 697a ldr r2, [r7, #20] - 8001d44: 4313 orrs r3, r2 - 8001d46: 617b str r3, [r7, #20] + 8001d8e: 687b ldr r3, [r7, #4] + 8001d90: 6a9b ldr r3, [r3, #40] @ 0x28 + 8001d92: 697a ldr r2, [r7, #20] + 8001d94: 4313 orrs r3, r2 + 8001d96: 617b str r3, [r7, #20] /* Check compatibility between FIFO threshold level and size of the memory burst */ /* for INCR4, INCR8, INCR16 bursts */ if (hdma->Init.MemBurst != DMA_MBURST_SINGLE) - 8001d48: 687b ldr r3, [r7, #4] - 8001d4a: 6adb ldr r3, [r3, #44] @ 0x2c - 8001d4c: 2b00 cmp r3, #0 - 8001d4e: d00e beq.n 8001d6e + 8001d98: 687b ldr r3, [r7, #4] + 8001d9a: 6adb ldr r3, [r3, #44] @ 0x2c + 8001d9c: 2b00 cmp r3, #0 + 8001d9e: d00e beq.n 8001dbe { if (DMA_CheckFifoParam(hdma) != HAL_OK) - 8001d50: 6878 ldr r0, [r7, #4] - 8001d52: f000 fb01 bl 8002358 - 8001d56: 4603 mov r3, r0 - 8001d58: 2b00 cmp r3, #0 - 8001d5a: d008 beq.n 8001d6e + 8001da0: 6878 ldr r0, [r7, #4] + 8001da2: f000 fb01 bl 80023a8 + 8001da6: 4603 mov r3, r0 + 8001da8: 2b00 cmp r3, #0 + 8001daa: d008 beq.n 8001dbe { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_PARAM; - 8001d5c: 687b ldr r3, [r7, #4] - 8001d5e: 2240 movs r2, #64 @ 0x40 - 8001d60: 655a str r2, [r3, #84] @ 0x54 + 8001dac: 687b ldr r3, [r7, #4] + 8001dae: 2240 movs r2, #64 @ 0x40 + 8001db0: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8001d62: 687b ldr r3, [r7, #4] - 8001d64: 2201 movs r2, #1 - 8001d66: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001db2: 687b ldr r3, [r7, #4] + 8001db4: 2201 movs r2, #1 + 8001db6: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_ERROR; - 8001d6a: 2301 movs r3, #1 - 8001d6c: e016 b.n 8001d9c + 8001dba: 2301 movs r3, #1 + 8001dbc: e016 b.n 8001dec } } } /* Write to DMA Stream FCR */ hdma->Instance->FCR = tmp; - 8001d6e: 687b ldr r3, [r7, #4] - 8001d70: 681b ldr r3, [r3, #0] - 8001d72: 697a ldr r2, [r7, #20] - 8001d74: 615a str r2, [r3, #20] + 8001dbe: 687b ldr r3, [r7, #4] + 8001dc0: 681b ldr r3, [r3, #0] + 8001dc2: 697a ldr r2, [r7, #20] + 8001dc4: 615a str r2, [r3, #20] /* Initialize StreamBaseAddress and StreamIndex parameters to be used to calculate DMA steam Base Address needed by HAL_DMA_IRQHandler() and HAL_DMA_PollForTransfer() */ regs = (DMA_Base_Registers *)DMA_CalcBaseAndBitshift(hdma); - 8001d76: 6878 ldr r0, [r7, #4] - 8001d78: f000 fab8 bl 80022ec - 8001d7c: 4603 mov r3, r0 - 8001d7e: 60fb str r3, [r7, #12] + 8001dc6: 6878 ldr r0, [r7, #4] + 8001dc8: f000 fab8 bl 800233c + 8001dcc: 4603 mov r3, r0 + 8001dce: 60fb str r3, [r7, #12] /* Clear all interrupt flags */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8001d80: 687b ldr r3, [r7, #4] - 8001d82: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001d84: 223f movs r2, #63 @ 0x3f - 8001d86: 409a lsls r2, r3 - 8001d88: 68fb ldr r3, [r7, #12] - 8001d8a: 609a str r2, [r3, #8] + 8001dd0: 687b ldr r3, [r7, #4] + 8001dd2: 6ddb ldr r3, [r3, #92] @ 0x5c + 8001dd4: 223f movs r2, #63 @ 0x3f + 8001dd6: 409a lsls r2, r3 + 8001dd8: 68fb ldr r3, [r7, #12] + 8001dda: 609a str r2, [r3, #8] /* Initialize the error code */ hdma->ErrorCode = HAL_DMA_ERROR_NONE; - 8001d8c: 687b ldr r3, [r7, #4] - 8001d8e: 2200 movs r2, #0 - 8001d90: 655a str r2, [r3, #84] @ 0x54 + 8001ddc: 687b ldr r3, [r7, #4] + 8001dde: 2200 movs r2, #0 + 8001de0: 655a str r2, [r3, #84] @ 0x54 /* Initialize the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8001d92: 687b ldr r3, [r7, #4] - 8001d94: 2201 movs r2, #1 - 8001d96: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001de2: 687b ldr r3, [r7, #4] + 8001de4: 2201 movs r2, #1 + 8001de6: f883 2035 strb.w r2, [r3, #53] @ 0x35 return HAL_OK; - 8001d9a: 2300 movs r3, #0 + 8001dea: 2300 movs r3, #0 } - 8001d9c: 4618 mov r0, r3 - 8001d9e: 3718 adds r7, #24 - 8001da0: 46bd mov sp, r7 - 8001da2: bd80 pop {r7, pc} - 8001da4: f010803f .word 0xf010803f + 8001dec: 4618 mov r0, r3 + 8001dee: 3718 adds r7, #24 + 8001df0: 46bd mov sp, r7 + 8001df2: bd80 pop {r7, pc} + 8001df4: f010803f .word 0xf010803f -08001da8 : +08001df8 : * @param DstAddress The destination memory Buffer address * @param DataLength The length of data to be transferred from source to destination * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) { - 8001da8: b580 push {r7, lr} - 8001daa: b086 sub sp, #24 - 8001dac: af00 add r7, sp, #0 - 8001dae: 60f8 str r0, [r7, #12] - 8001db0: 60b9 str r1, [r7, #8] - 8001db2: 607a str r2, [r7, #4] - 8001db4: 603b str r3, [r7, #0] + 8001df8: b580 push {r7, lr} + 8001dfa: b086 sub sp, #24 + 8001dfc: af00 add r7, sp, #0 + 8001dfe: 60f8 str r0, [r7, #12] + 8001e00: 60b9 str r1, [r7, #8] + 8001e02: 607a str r2, [r7, #4] + 8001e04: 603b str r3, [r7, #0] HAL_StatusTypeDef status = HAL_OK; - 8001db6: 2300 movs r3, #0 - 8001db8: 75fb strb r3, [r7, #23] + 8001e06: 2300 movs r3, #0 + 8001e08: 75fb strb r3, [r7, #23] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 8001dba: 68fb ldr r3, [r7, #12] - 8001dbc: 6d9b ldr r3, [r3, #88] @ 0x58 - 8001dbe: 613b str r3, [r7, #16] + 8001e0a: 68fb ldr r3, [r7, #12] + 8001e0c: 6d9b ldr r3, [r3, #88] @ 0x58 + 8001e0e: 613b str r3, [r7, #16] /* Check the parameters */ assert_param(IS_DMA_BUFFER_SIZE(DataLength)); /* Process locked */ __HAL_LOCK(hdma); - 8001dc0: 68fb ldr r3, [r7, #12] - 8001dc2: f893 3034 ldrb.w r3, [r3, #52] @ 0x34 - 8001dc6: 2b01 cmp r3, #1 - 8001dc8: d101 bne.n 8001dce - 8001dca: 2302 movs r3, #2 - 8001dcc: e040 b.n 8001e50 - 8001dce: 68fb ldr r3, [r7, #12] - 8001dd0: 2201 movs r2, #1 - 8001dd2: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001e10: 68fb ldr r3, [r7, #12] + 8001e12: f893 3034 ldrb.w r3, [r3, #52] @ 0x34 + 8001e16: 2b01 cmp r3, #1 + 8001e18: d101 bne.n 8001e1e + 8001e1a: 2302 movs r3, #2 + 8001e1c: e040 b.n 8001ea0 + 8001e1e: 68fb ldr r3, [r7, #12] + 8001e20: 2201 movs r2, #1 + 8001e22: f883 2034 strb.w r2, [r3, #52] @ 0x34 if(HAL_DMA_STATE_READY == hdma->State) - 8001dd6: 68fb ldr r3, [r7, #12] - 8001dd8: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8001ddc: b2db uxtb r3, r3 - 8001dde: 2b01 cmp r3, #1 - 8001de0: d12f bne.n 8001e42 + 8001e26: 68fb ldr r3, [r7, #12] + 8001e28: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8001e2c: b2db uxtb r3, r3 + 8001e2e: 2b01 cmp r3, #1 + 8001e30: d12f bne.n 8001e92 { /* Change DMA peripheral state */ hdma->State = HAL_DMA_STATE_BUSY; - 8001de2: 68fb ldr r3, [r7, #12] - 8001de4: 2202 movs r2, #2 - 8001de6: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001e32: 68fb ldr r3, [r7, #12] + 8001e34: 2202 movs r2, #2 + 8001e36: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Initialize the error code */ hdma->ErrorCode = HAL_DMA_ERROR_NONE; - 8001dea: 68fb ldr r3, [r7, #12] - 8001dec: 2200 movs r2, #0 - 8001dee: 655a str r2, [r3, #84] @ 0x54 + 8001e3a: 68fb ldr r3, [r7, #12] + 8001e3c: 2200 movs r2, #0 + 8001e3e: 655a str r2, [r3, #84] @ 0x54 /* Configure the source, destination address and the data length */ DMA_SetConfig(hdma, SrcAddress, DstAddress, DataLength); - 8001df0: 683b ldr r3, [r7, #0] - 8001df2: 687a ldr r2, [r7, #4] - 8001df4: 68b9 ldr r1, [r7, #8] - 8001df6: 68f8 ldr r0, [r7, #12] - 8001df8: f000 fa4a bl 8002290 + 8001e40: 683b ldr r3, [r7, #0] + 8001e42: 687a ldr r2, [r7, #4] + 8001e44: 68b9 ldr r1, [r7, #8] + 8001e46: 68f8 ldr r0, [r7, #12] + 8001e48: f000 fa4a bl 80022e0 /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8001dfc: 68fb ldr r3, [r7, #12] - 8001dfe: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001e00: 223f movs r2, #63 @ 0x3f - 8001e02: 409a lsls r2, r3 - 8001e04: 693b ldr r3, [r7, #16] - 8001e06: 609a str r2, [r3, #8] + 8001e4c: 68fb ldr r3, [r7, #12] + 8001e4e: 6ddb ldr r3, [r3, #92] @ 0x5c + 8001e50: 223f movs r2, #63 @ 0x3f + 8001e52: 409a lsls r2, r3 + 8001e54: 693b ldr r3, [r7, #16] + 8001e56: 609a str r2, [r3, #8] /* Enable Common interrupts*/ hdma->Instance->CR |= DMA_IT_TC | DMA_IT_TE | DMA_IT_DME; - 8001e08: 68fb ldr r3, [r7, #12] - 8001e0a: 681b ldr r3, [r3, #0] - 8001e0c: 681a ldr r2, [r3, #0] - 8001e0e: 68fb ldr r3, [r7, #12] - 8001e10: 681b ldr r3, [r3, #0] - 8001e12: f042 0216 orr.w r2, r2, #22 - 8001e16: 601a str r2, [r3, #0] + 8001e58: 68fb ldr r3, [r7, #12] + 8001e5a: 681b ldr r3, [r3, #0] + 8001e5c: 681a ldr r2, [r3, #0] + 8001e5e: 68fb ldr r3, [r7, #12] + 8001e60: 681b ldr r3, [r3, #0] + 8001e62: f042 0216 orr.w r2, r2, #22 + 8001e66: 601a str r2, [r3, #0] if(hdma->XferHalfCpltCallback != NULL) - 8001e18: 68fb ldr r3, [r7, #12] - 8001e1a: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001e1c: 2b00 cmp r3, #0 - 8001e1e: d007 beq.n 8001e30 + 8001e68: 68fb ldr r3, [r7, #12] + 8001e6a: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001e6c: 2b00 cmp r3, #0 + 8001e6e: d007 beq.n 8001e80 { hdma->Instance->CR |= DMA_IT_HT; - 8001e20: 68fb ldr r3, [r7, #12] - 8001e22: 681b ldr r3, [r3, #0] - 8001e24: 681a ldr r2, [r3, #0] - 8001e26: 68fb ldr r3, [r7, #12] - 8001e28: 681b ldr r3, [r3, #0] - 8001e2a: f042 0208 orr.w r2, r2, #8 - 8001e2e: 601a str r2, [r3, #0] + 8001e70: 68fb ldr r3, [r7, #12] + 8001e72: 681b ldr r3, [r3, #0] + 8001e74: 681a ldr r2, [r3, #0] + 8001e76: 68fb ldr r3, [r7, #12] + 8001e78: 681b ldr r3, [r3, #0] + 8001e7a: f042 0208 orr.w r2, r2, #8 + 8001e7e: 601a str r2, [r3, #0] } /* Enable the Peripheral */ __HAL_DMA_ENABLE(hdma); - 8001e30: 68fb ldr r3, [r7, #12] - 8001e32: 681b ldr r3, [r3, #0] - 8001e34: 681a ldr r2, [r3, #0] - 8001e36: 68fb ldr r3, [r7, #12] - 8001e38: 681b ldr r3, [r3, #0] - 8001e3a: f042 0201 orr.w r2, r2, #1 - 8001e3e: 601a str r2, [r3, #0] - 8001e40: e005 b.n 8001e4e + 8001e80: 68fb ldr r3, [r7, #12] + 8001e82: 681b ldr r3, [r3, #0] + 8001e84: 681a ldr r2, [r3, #0] + 8001e86: 68fb ldr r3, [r7, #12] + 8001e88: 681b ldr r3, [r3, #0] + 8001e8a: f042 0201 orr.w r2, r2, #1 + 8001e8e: 601a str r2, [r3, #0] + 8001e90: e005 b.n 8001e9e } else { /* Process unlocked */ __HAL_UNLOCK(hdma); - 8001e42: 68fb ldr r3, [r7, #12] - 8001e44: 2200 movs r2, #0 - 8001e46: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001e92: 68fb ldr r3, [r7, #12] + 8001e94: 2200 movs r2, #0 + 8001e96: f883 2034 strb.w r2, [r3, #52] @ 0x34 /* Return error status */ status = HAL_BUSY; - 8001e4a: 2302 movs r3, #2 - 8001e4c: 75fb strb r3, [r7, #23] + 8001e9a: 2302 movs r3, #2 + 8001e9c: 75fb strb r3, [r7, #23] } return status; - 8001e4e: 7dfb ldrb r3, [r7, #23] + 8001e9e: 7dfb ldrb r3, [r7, #23] } - 8001e50: 4618 mov r0, r3 - 8001e52: 3718 adds r7, #24 - 8001e54: 46bd mov sp, r7 - 8001e56: bd80 pop {r7, pc} + 8001ea0: 4618 mov r0, r3 + 8001ea2: 3718 adds r7, #24 + 8001ea4: 46bd mov sp, r7 + 8001ea6: bd80 pop {r7, pc} -08001e58 : +08001ea8 : * and the Stream will be effectively disabled only after the transfer of * this single data is finished. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) { - 8001e58: b580 push {r7, lr} - 8001e5a: b084 sub sp, #16 - 8001e5c: af00 add r7, sp, #0 - 8001e5e: 6078 str r0, [r7, #4] + 8001ea8: b580 push {r7, lr} + 8001eaa: b084 sub sp, #16 + 8001eac: af00 add r7, sp, #0 + 8001eae: 6078 str r0, [r7, #4] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 8001e60: 687b ldr r3, [r7, #4] - 8001e62: 6d9b ldr r3, [r3, #88] @ 0x58 - 8001e64: 60fb str r3, [r7, #12] + 8001eb0: 687b ldr r3, [r7, #4] + 8001eb2: 6d9b ldr r3, [r3, #88] @ 0x58 + 8001eb4: 60fb str r3, [r7, #12] uint32_t tickstart = HAL_GetTick(); - 8001e66: f7ff fdaf bl 80019c8 - 8001e6a: 60b8 str r0, [r7, #8] + 8001eb6: f7ff fdaf bl 8001a18 + 8001eba: 60b8 str r0, [r7, #8] if(hdma->State != HAL_DMA_STATE_BUSY) - 8001e6c: 687b ldr r3, [r7, #4] - 8001e6e: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8001e72: b2db uxtb r3, r3 - 8001e74: 2b02 cmp r3, #2 - 8001e76: d008 beq.n 8001e8a + 8001ebc: 687b ldr r3, [r7, #4] + 8001ebe: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8001ec2: b2db uxtb r3, r3 + 8001ec4: 2b02 cmp r3, #2 + 8001ec6: d008 beq.n 8001eda { hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 8001e78: 687b ldr r3, [r7, #4] - 8001e7a: 2280 movs r2, #128 @ 0x80 - 8001e7c: 655a str r2, [r3, #84] @ 0x54 + 8001ec8: 687b ldr r3, [r7, #4] + 8001eca: 2280 movs r2, #128 @ 0x80 + 8001ecc: 655a str r2, [r3, #84] @ 0x54 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8001e7e: 687b ldr r3, [r7, #4] - 8001e80: 2200 movs r2, #0 - 8001e82: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001ece: 687b ldr r3, [r7, #4] + 8001ed0: 2200 movs r2, #0 + 8001ed2: f883 2034 strb.w r2, [r3, #52] @ 0x34 return HAL_ERROR; - 8001e86: 2301 movs r3, #1 - 8001e88: e052 b.n 8001f30 + 8001ed6: 2301 movs r3, #1 + 8001ed8: e052 b.n 8001f80 } else { /* Disable all the transfer interrupts */ hdma->Instance->CR &= ~(DMA_IT_TC | DMA_IT_TE | DMA_IT_DME); - 8001e8a: 687b ldr r3, [r7, #4] - 8001e8c: 681b ldr r3, [r3, #0] - 8001e8e: 681a ldr r2, [r3, #0] - 8001e90: 687b ldr r3, [r7, #4] - 8001e92: 681b ldr r3, [r3, #0] - 8001e94: f022 0216 bic.w r2, r2, #22 - 8001e98: 601a str r2, [r3, #0] + 8001eda: 687b ldr r3, [r7, #4] + 8001edc: 681b ldr r3, [r3, #0] + 8001ede: 681a ldr r2, [r3, #0] + 8001ee0: 687b ldr r3, [r7, #4] + 8001ee2: 681b ldr r3, [r3, #0] + 8001ee4: f022 0216 bic.w r2, r2, #22 + 8001ee8: 601a str r2, [r3, #0] hdma->Instance->FCR &= ~(DMA_IT_FE); - 8001e9a: 687b ldr r3, [r7, #4] - 8001e9c: 681b ldr r3, [r3, #0] - 8001e9e: 695a ldr r2, [r3, #20] - 8001ea0: 687b ldr r3, [r7, #4] - 8001ea2: 681b ldr r3, [r3, #0] - 8001ea4: f022 0280 bic.w r2, r2, #128 @ 0x80 - 8001ea8: 615a str r2, [r3, #20] + 8001eea: 687b ldr r3, [r7, #4] + 8001eec: 681b ldr r3, [r3, #0] + 8001eee: 695a ldr r2, [r3, #20] + 8001ef0: 687b ldr r3, [r7, #4] + 8001ef2: 681b ldr r3, [r3, #0] + 8001ef4: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8001ef8: 615a str r2, [r3, #20] if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL)) - 8001eaa: 687b ldr r3, [r7, #4] - 8001eac: 6c1b ldr r3, [r3, #64] @ 0x40 - 8001eae: 2b00 cmp r3, #0 - 8001eb0: d103 bne.n 8001eba - 8001eb2: 687b ldr r3, [r7, #4] - 8001eb4: 6c9b ldr r3, [r3, #72] @ 0x48 - 8001eb6: 2b00 cmp r3, #0 - 8001eb8: d007 beq.n 8001eca + 8001efa: 687b ldr r3, [r7, #4] + 8001efc: 6c1b ldr r3, [r3, #64] @ 0x40 + 8001efe: 2b00 cmp r3, #0 + 8001f00: d103 bne.n 8001f0a + 8001f02: 687b ldr r3, [r7, #4] + 8001f04: 6c9b ldr r3, [r3, #72] @ 0x48 + 8001f06: 2b00 cmp r3, #0 + 8001f08: d007 beq.n 8001f1a { hdma->Instance->CR &= ~(DMA_IT_HT); - 8001eba: 687b ldr r3, [r7, #4] - 8001ebc: 681b ldr r3, [r3, #0] - 8001ebe: 681a ldr r2, [r3, #0] - 8001ec0: 687b ldr r3, [r7, #4] - 8001ec2: 681b ldr r3, [r3, #0] - 8001ec4: f022 0208 bic.w r2, r2, #8 - 8001ec8: 601a str r2, [r3, #0] + 8001f0a: 687b ldr r3, [r7, #4] + 8001f0c: 681b ldr r3, [r3, #0] + 8001f0e: 681a ldr r2, [r3, #0] + 8001f10: 687b ldr r3, [r7, #4] + 8001f12: 681b ldr r3, [r3, #0] + 8001f14: f022 0208 bic.w r2, r2, #8 + 8001f18: 601a str r2, [r3, #0] } /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 8001eca: 687b ldr r3, [r7, #4] - 8001ecc: 681b ldr r3, [r3, #0] - 8001ece: 681a ldr r2, [r3, #0] - 8001ed0: 687b ldr r3, [r7, #4] - 8001ed2: 681b ldr r3, [r3, #0] - 8001ed4: f022 0201 bic.w r2, r2, #1 - 8001ed8: 601a str r2, [r3, #0] + 8001f1a: 687b ldr r3, [r7, #4] + 8001f1c: 681b ldr r3, [r3, #0] + 8001f1e: 681a ldr r2, [r3, #0] + 8001f20: 687b ldr r3, [r7, #4] + 8001f22: 681b ldr r3, [r3, #0] + 8001f24: f022 0201 bic.w r2, r2, #1 + 8001f28: 601a str r2, [r3, #0] /* Check if the DMA Stream is effectively disabled */ while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001eda: e013 b.n 8001f04 + 8001f2a: e013 b.n 8001f54 { /* Check for the Timeout */ if((HAL_GetTick() - tickstart ) > HAL_TIMEOUT_DMA_ABORT) - 8001edc: f7ff fd74 bl 80019c8 - 8001ee0: 4602 mov r2, r0 - 8001ee2: 68bb ldr r3, [r7, #8] - 8001ee4: 1ad3 subs r3, r2, r3 - 8001ee6: 2b05 cmp r3, #5 - 8001ee8: d90c bls.n 8001f04 + 8001f2c: f7ff fd74 bl 8001a18 + 8001f30: 4602 mov r2, r0 + 8001f32: 68bb ldr r3, [r7, #8] + 8001f34: 1ad3 subs r3, r2, r3 + 8001f36: 2b05 cmp r3, #5 + 8001f38: d90c bls.n 8001f54 { /* Update error code */ hdma->ErrorCode = HAL_DMA_ERROR_TIMEOUT; - 8001eea: 687b ldr r3, [r7, #4] - 8001eec: 2220 movs r2, #32 - 8001eee: 655a str r2, [r3, #84] @ 0x54 + 8001f3a: 687b ldr r3, [r7, #4] + 8001f3c: 2220 movs r2, #32 + 8001f3e: 655a str r2, [r3, #84] @ 0x54 /* Change the DMA state */ hdma->State = HAL_DMA_STATE_TIMEOUT; - 8001ef0: 687b ldr r3, [r7, #4] - 8001ef2: 2203 movs r2, #3 - 8001ef4: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001f40: 687b ldr r3, [r7, #4] + 8001f42: 2203 movs r2, #3 + 8001f44: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8001ef8: 687b ldr r3, [r7, #4] - 8001efa: 2200 movs r2, #0 - 8001efc: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001f48: 687b ldr r3, [r7, #4] + 8001f4a: 2200 movs r2, #0 + 8001f4c: f883 2034 strb.w r2, [r3, #52] @ 0x34 return HAL_TIMEOUT; - 8001f00: 2303 movs r3, #3 - 8001f02: e015 b.n 8001f30 + 8001f50: 2303 movs r3, #3 + 8001f52: e015 b.n 8001f80 while((hdma->Instance->CR & DMA_SxCR_EN) != RESET) - 8001f04: 687b ldr r3, [r7, #4] - 8001f06: 681b ldr r3, [r3, #0] - 8001f08: 681b ldr r3, [r3, #0] - 8001f0a: f003 0301 and.w r3, r3, #1 - 8001f0e: 2b00 cmp r3, #0 - 8001f10: d1e4 bne.n 8001edc + 8001f54: 687b ldr r3, [r7, #4] + 8001f56: 681b ldr r3, [r3, #0] + 8001f58: 681b ldr r3, [r3, #0] + 8001f5a: f003 0301 and.w r3, r3, #1 + 8001f5e: 2b00 cmp r3, #0 + 8001f60: d1e4 bne.n 8001f2c } } /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8001f12: 687b ldr r3, [r7, #4] - 8001f14: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001f16: 223f movs r2, #63 @ 0x3f - 8001f18: 409a lsls r2, r3 - 8001f1a: 68fb ldr r3, [r7, #12] - 8001f1c: 609a str r2, [r3, #8] + 8001f62: 687b ldr r3, [r7, #4] + 8001f64: 6ddb ldr r3, [r3, #92] @ 0x5c + 8001f66: 223f movs r2, #63 @ 0x3f + 8001f68: 409a lsls r2, r3 + 8001f6a: 68fb ldr r3, [r7, #12] + 8001f6c: 609a str r2, [r3, #8] /* Change the DMA state*/ hdma->State = HAL_DMA_STATE_READY; - 8001f1e: 687b ldr r3, [r7, #4] - 8001f20: 2201 movs r2, #1 - 8001f22: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001f6e: 687b ldr r3, [r7, #4] + 8001f70: 2201 movs r2, #1 + 8001f72: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8001f26: 687b ldr r3, [r7, #4] - 8001f28: 2200 movs r2, #0 - 8001f2a: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8001f76: 687b ldr r3, [r7, #4] + 8001f78: 2200 movs r2, #0 + 8001f7a: f883 2034 strb.w r2, [r3, #52] @ 0x34 } return HAL_OK; - 8001f2e: 2300 movs r3, #0 + 8001f7e: 2300 movs r3, #0 } - 8001f30: 4618 mov r0, r3 - 8001f32: 3710 adds r7, #16 - 8001f34: 46bd mov sp, r7 - 8001f36: bd80 pop {r7, pc} + 8001f80: 4618 mov r0, r3 + 8001f82: 3710 adds r7, #16 + 8001f84: 46bd mov sp, r7 + 8001f86: bd80 pop {r7, pc} -08001f38 : +08001f88 : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) { - 8001f38: b480 push {r7} - 8001f3a: b083 sub sp, #12 - 8001f3c: af00 add r7, sp, #0 - 8001f3e: 6078 str r0, [r7, #4] + 8001f88: b480 push {r7} + 8001f8a: b083 sub sp, #12 + 8001f8c: af00 add r7, sp, #0 + 8001f8e: 6078 str r0, [r7, #4] if(hdma->State != HAL_DMA_STATE_BUSY) - 8001f40: 687b ldr r3, [r7, #4] - 8001f42: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8001f46: b2db uxtb r3, r3 - 8001f48: 2b02 cmp r3, #2 - 8001f4a: d004 beq.n 8001f56 + 8001f90: 687b ldr r3, [r7, #4] + 8001f92: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8001f96: b2db uxtb r3, r3 + 8001f98: 2b02 cmp r3, #2 + 8001f9a: d004 beq.n 8001fa6 { hdma->ErrorCode = HAL_DMA_ERROR_NO_XFER; - 8001f4c: 687b ldr r3, [r7, #4] - 8001f4e: 2280 movs r2, #128 @ 0x80 - 8001f50: 655a str r2, [r3, #84] @ 0x54 + 8001f9c: 687b ldr r3, [r7, #4] + 8001f9e: 2280 movs r2, #128 @ 0x80 + 8001fa0: 655a str r2, [r3, #84] @ 0x54 return HAL_ERROR; - 8001f52: 2301 movs r3, #1 - 8001f54: e00c b.n 8001f70 + 8001fa2: 2301 movs r3, #1 + 8001fa4: e00c b.n 8001fc0 } else { /* Set Abort State */ hdma->State = HAL_DMA_STATE_ABORT; - 8001f56: 687b ldr r3, [r7, #4] - 8001f58: 2205 movs r2, #5 - 8001f5a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8001fa6: 687b ldr r3, [r7, #4] + 8001fa8: 2205 movs r2, #5 + 8001faa: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 8001f5e: 687b ldr r3, [r7, #4] - 8001f60: 681b ldr r3, [r3, #0] - 8001f62: 681a ldr r2, [r3, #0] - 8001f64: 687b ldr r3, [r7, #4] - 8001f66: 681b ldr r3, [r3, #0] - 8001f68: f022 0201 bic.w r2, r2, #1 - 8001f6c: 601a str r2, [r3, #0] + 8001fae: 687b ldr r3, [r7, #4] + 8001fb0: 681b ldr r3, [r3, #0] + 8001fb2: 681a ldr r2, [r3, #0] + 8001fb4: 687b ldr r3, [r7, #4] + 8001fb6: 681b ldr r3, [r3, #0] + 8001fb8: f022 0201 bic.w r2, r2, #1 + 8001fbc: 601a str r2, [r3, #0] } return HAL_OK; - 8001f6e: 2300 movs r3, #0 + 8001fbe: 2300 movs r3, #0 } - 8001f70: 4618 mov r0, r3 - 8001f72: 370c adds r7, #12 - 8001f74: 46bd mov sp, r7 - 8001f76: f85d 7b04 ldr.w r7, [sp], #4 - 8001f7a: 4770 bx lr + 8001fc0: 4618 mov r0, r3 + 8001fc2: 370c adds r7, #12 + 8001fc4: 46bd mov sp, r7 + 8001fc6: f85d 7b04 ldr.w r7, [sp], #4 + 8001fca: 4770 bx lr -08001f7c : +08001fcc : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval None */ void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma) { - 8001f7c: b580 push {r7, lr} - 8001f7e: b086 sub sp, #24 - 8001f80: af00 add r7, sp, #0 - 8001f82: 6078 str r0, [r7, #4] + 8001fcc: b580 push {r7, lr} + 8001fce: b086 sub sp, #24 + 8001fd0: af00 add r7, sp, #0 + 8001fd2: 6078 str r0, [r7, #4] uint32_t tmpisr; __IO uint32_t count = 0U; - 8001f84: 2300 movs r3, #0 - 8001f86: 60bb str r3, [r7, #8] + 8001fd4: 2300 movs r3, #0 + 8001fd6: 60bb str r3, [r7, #8] uint32_t timeout = SystemCoreClock / 9600U; - 8001f88: 4b8e ldr r3, [pc, #568] @ (80021c4 ) - 8001f8a: 681b ldr r3, [r3, #0] - 8001f8c: 4a8e ldr r2, [pc, #568] @ (80021c8 ) - 8001f8e: fba2 2303 umull r2, r3, r2, r3 - 8001f92: 0a9b lsrs r3, r3, #10 - 8001f94: 617b str r3, [r7, #20] + 8001fd8: 4b8e ldr r3, [pc, #568] @ (8002214 ) + 8001fda: 681b ldr r3, [r3, #0] + 8001fdc: 4a8e ldr r2, [pc, #568] @ (8002218 ) + 8001fde: fba2 2303 umull r2, r3, r2, r3 + 8001fe2: 0a9b lsrs r3, r3, #10 + 8001fe4: 617b str r3, [r7, #20] /* calculate DMA base and stream number */ DMA_Base_Registers *regs = (DMA_Base_Registers *)hdma->StreamBaseAddress; - 8001f96: 687b ldr r3, [r7, #4] - 8001f98: 6d9b ldr r3, [r3, #88] @ 0x58 - 8001f9a: 613b str r3, [r7, #16] + 8001fe6: 687b ldr r3, [r7, #4] + 8001fe8: 6d9b ldr r3, [r3, #88] @ 0x58 + 8001fea: 613b str r3, [r7, #16] tmpisr = regs->ISR; - 8001f9c: 693b ldr r3, [r7, #16] - 8001f9e: 681b ldr r3, [r3, #0] - 8001fa0: 60fb str r3, [r7, #12] + 8001fec: 693b ldr r3, [r7, #16] + 8001fee: 681b ldr r3, [r3, #0] + 8001ff0: 60fb str r3, [r7, #12] /* Transfer Error Interrupt management ***************************************/ if ((tmpisr & (DMA_FLAG_TEIF0_4 << hdma->StreamIndex)) != RESET) - 8001fa2: 687b ldr r3, [r7, #4] - 8001fa4: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001fa6: 2208 movs r2, #8 - 8001fa8: 409a lsls r2, r3 - 8001faa: 68fb ldr r3, [r7, #12] - 8001fac: 4013 ands r3, r2 - 8001fae: 2b00 cmp r3, #0 - 8001fb0: d01a beq.n 8001fe8 + 8001ff2: 687b ldr r3, [r7, #4] + 8001ff4: 6ddb ldr r3, [r3, #92] @ 0x5c + 8001ff6: 2208 movs r2, #8 + 8001ff8: 409a lsls r2, r3 + 8001ffa: 68fb ldr r3, [r7, #12] + 8001ffc: 4013 ands r3, r2 + 8001ffe: 2b00 cmp r3, #0 + 8002000: d01a beq.n 8002038 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TE) != RESET) - 8001fb2: 687b ldr r3, [r7, #4] - 8001fb4: 681b ldr r3, [r3, #0] - 8001fb6: 681b ldr r3, [r3, #0] - 8001fb8: f003 0304 and.w r3, r3, #4 - 8001fbc: 2b00 cmp r3, #0 - 8001fbe: d013 beq.n 8001fe8 + 8002002: 687b ldr r3, [r7, #4] + 8002004: 681b ldr r3, [r3, #0] + 8002006: 681b ldr r3, [r3, #0] + 8002008: f003 0304 and.w r3, r3, #4 + 800200c: 2b00 cmp r3, #0 + 800200e: d013 beq.n 8002038 { /* Disable the transfer error interrupt */ hdma->Instance->CR &= ~(DMA_IT_TE); - 8001fc0: 687b ldr r3, [r7, #4] - 8001fc2: 681b ldr r3, [r3, #0] - 8001fc4: 681a ldr r2, [r3, #0] - 8001fc6: 687b ldr r3, [r7, #4] - 8001fc8: 681b ldr r3, [r3, #0] - 8001fca: f022 0204 bic.w r2, r2, #4 - 8001fce: 601a str r2, [r3, #0] + 8002010: 687b ldr r3, [r7, #4] + 8002012: 681b ldr r3, [r3, #0] + 8002014: 681a ldr r2, [r3, #0] + 8002016: 687b ldr r3, [r7, #4] + 8002018: 681b ldr r3, [r3, #0] + 800201a: f022 0204 bic.w r2, r2, #4 + 800201e: 601a str r2, [r3, #0] /* Clear the transfer error flag */ regs->IFCR = DMA_FLAG_TEIF0_4 << hdma->StreamIndex; - 8001fd0: 687b ldr r3, [r7, #4] - 8001fd2: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001fd4: 2208 movs r2, #8 - 8001fd6: 409a lsls r2, r3 - 8001fd8: 693b ldr r3, [r7, #16] - 8001fda: 609a str r2, [r3, #8] + 8002020: 687b ldr r3, [r7, #4] + 8002022: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002024: 2208 movs r2, #8 + 8002026: 409a lsls r2, r3 + 8002028: 693b ldr r3, [r7, #16] + 800202a: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_TE; - 8001fdc: 687b ldr r3, [r7, #4] - 8001fde: 6d5b ldr r3, [r3, #84] @ 0x54 - 8001fe0: f043 0201 orr.w r2, r3, #1 - 8001fe4: 687b ldr r3, [r7, #4] - 8001fe6: 655a str r2, [r3, #84] @ 0x54 + 800202c: 687b ldr r3, [r7, #4] + 800202e: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002030: f043 0201 orr.w r2, r3, #1 + 8002034: 687b ldr r3, [r7, #4] + 8002036: 655a str r2, [r3, #84] @ 0x54 } } /* FIFO Error Interrupt management ******************************************/ if ((tmpisr & (DMA_FLAG_FEIF0_4 << hdma->StreamIndex)) != RESET) - 8001fe8: 687b ldr r3, [r7, #4] - 8001fea: 6ddb ldr r3, [r3, #92] @ 0x5c - 8001fec: 2201 movs r2, #1 - 8001fee: 409a lsls r2, r3 - 8001ff0: 68fb ldr r3, [r7, #12] - 8001ff2: 4013 ands r3, r2 - 8001ff4: 2b00 cmp r3, #0 - 8001ff6: d012 beq.n 800201e + 8002038: 687b ldr r3, [r7, #4] + 800203a: 6ddb ldr r3, [r3, #92] @ 0x5c + 800203c: 2201 movs r2, #1 + 800203e: 409a lsls r2, r3 + 8002040: 68fb ldr r3, [r7, #12] + 8002042: 4013 ands r3, r2 + 8002044: 2b00 cmp r3, #0 + 8002046: d012 beq.n 800206e { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_FE) != RESET) - 8001ff8: 687b ldr r3, [r7, #4] - 8001ffa: 681b ldr r3, [r3, #0] - 8001ffc: 695b ldr r3, [r3, #20] - 8001ffe: f003 0380 and.w r3, r3, #128 @ 0x80 - 8002002: 2b00 cmp r3, #0 - 8002004: d00b beq.n 800201e + 8002048: 687b ldr r3, [r7, #4] + 800204a: 681b ldr r3, [r3, #0] + 800204c: 695b ldr r3, [r3, #20] + 800204e: f003 0380 and.w r3, r3, #128 @ 0x80 + 8002052: 2b00 cmp r3, #0 + 8002054: d00b beq.n 800206e { /* Clear the FIFO error flag */ regs->IFCR = DMA_FLAG_FEIF0_4 << hdma->StreamIndex; - 8002006: 687b ldr r3, [r7, #4] - 8002008: 6ddb ldr r3, [r3, #92] @ 0x5c - 800200a: 2201 movs r2, #1 - 800200c: 409a lsls r2, r3 - 800200e: 693b ldr r3, [r7, #16] - 8002010: 609a str r2, [r3, #8] + 8002056: 687b ldr r3, [r7, #4] + 8002058: 6ddb ldr r3, [r3, #92] @ 0x5c + 800205a: 2201 movs r2, #1 + 800205c: 409a lsls r2, r3 + 800205e: 693b ldr r3, [r7, #16] + 8002060: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_FE; - 8002012: 687b ldr r3, [r7, #4] - 8002014: 6d5b ldr r3, [r3, #84] @ 0x54 - 8002016: f043 0202 orr.w r2, r3, #2 - 800201a: 687b ldr r3, [r7, #4] - 800201c: 655a str r2, [r3, #84] @ 0x54 + 8002062: 687b ldr r3, [r7, #4] + 8002064: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002066: f043 0202 orr.w r2, r3, #2 + 800206a: 687b ldr r3, [r7, #4] + 800206c: 655a str r2, [r3, #84] @ 0x54 } } /* Direct Mode Error Interrupt management ***********************************/ if ((tmpisr & (DMA_FLAG_DMEIF0_4 << hdma->StreamIndex)) != RESET) - 800201e: 687b ldr r3, [r7, #4] - 8002020: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002022: 2204 movs r2, #4 - 8002024: 409a lsls r2, r3 - 8002026: 68fb ldr r3, [r7, #12] - 8002028: 4013 ands r3, r2 - 800202a: 2b00 cmp r3, #0 - 800202c: d012 beq.n 8002054 + 800206e: 687b ldr r3, [r7, #4] + 8002070: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002072: 2204 movs r2, #4 + 8002074: 409a lsls r2, r3 + 8002076: 68fb ldr r3, [r7, #12] + 8002078: 4013 ands r3, r2 + 800207a: 2b00 cmp r3, #0 + 800207c: d012 beq.n 80020a4 { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_DME) != RESET) - 800202e: 687b ldr r3, [r7, #4] - 8002030: 681b ldr r3, [r3, #0] - 8002032: 681b ldr r3, [r3, #0] - 8002034: f003 0302 and.w r3, r3, #2 - 8002038: 2b00 cmp r3, #0 - 800203a: d00b beq.n 8002054 + 800207e: 687b ldr r3, [r7, #4] + 8002080: 681b ldr r3, [r3, #0] + 8002082: 681b ldr r3, [r3, #0] + 8002084: f003 0302 and.w r3, r3, #2 + 8002088: 2b00 cmp r3, #0 + 800208a: d00b beq.n 80020a4 { /* Clear the direct mode error flag */ regs->IFCR = DMA_FLAG_DMEIF0_4 << hdma->StreamIndex; - 800203c: 687b ldr r3, [r7, #4] - 800203e: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002040: 2204 movs r2, #4 - 8002042: 409a lsls r2, r3 - 8002044: 693b ldr r3, [r7, #16] - 8002046: 609a str r2, [r3, #8] + 800208c: 687b ldr r3, [r7, #4] + 800208e: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002090: 2204 movs r2, #4 + 8002092: 409a lsls r2, r3 + 8002094: 693b ldr r3, [r7, #16] + 8002096: 609a str r2, [r3, #8] /* Update error code */ hdma->ErrorCode |= HAL_DMA_ERROR_DME; - 8002048: 687b ldr r3, [r7, #4] - 800204a: 6d5b ldr r3, [r3, #84] @ 0x54 - 800204c: f043 0204 orr.w r2, r3, #4 - 8002050: 687b ldr r3, [r7, #4] - 8002052: 655a str r2, [r3, #84] @ 0x54 + 8002098: 687b ldr r3, [r7, #4] + 800209a: 6d5b ldr r3, [r3, #84] @ 0x54 + 800209c: f043 0204 orr.w r2, r3, #4 + 80020a0: 687b ldr r3, [r7, #4] + 80020a2: 655a str r2, [r3, #84] @ 0x54 } } /* Half Transfer Complete Interrupt management ******************************/ if ((tmpisr & (DMA_FLAG_HTIF0_4 << hdma->StreamIndex)) != RESET) - 8002054: 687b ldr r3, [r7, #4] - 8002056: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002058: 2210 movs r2, #16 - 800205a: 409a lsls r2, r3 - 800205c: 68fb ldr r3, [r7, #12] - 800205e: 4013 ands r3, r2 - 8002060: 2b00 cmp r3, #0 - 8002062: d043 beq.n 80020ec + 80020a4: 687b ldr r3, [r7, #4] + 80020a6: 6ddb ldr r3, [r3, #92] @ 0x5c + 80020a8: 2210 movs r2, #16 + 80020aa: 409a lsls r2, r3 + 80020ac: 68fb ldr r3, [r7, #12] + 80020ae: 4013 ands r3, r2 + 80020b0: 2b00 cmp r3, #0 + 80020b2: d043 beq.n 800213c { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_HT) != RESET) - 8002064: 687b ldr r3, [r7, #4] - 8002066: 681b ldr r3, [r3, #0] - 8002068: 681b ldr r3, [r3, #0] - 800206a: f003 0308 and.w r3, r3, #8 - 800206e: 2b00 cmp r3, #0 - 8002070: d03c beq.n 80020ec + 80020b4: 687b ldr r3, [r7, #4] + 80020b6: 681b ldr r3, [r3, #0] + 80020b8: 681b ldr r3, [r3, #0] + 80020ba: f003 0308 and.w r3, r3, #8 + 80020be: 2b00 cmp r3, #0 + 80020c0: d03c beq.n 800213c { /* Clear the half transfer complete flag */ regs->IFCR = DMA_FLAG_HTIF0_4 << hdma->StreamIndex; - 8002072: 687b ldr r3, [r7, #4] - 8002074: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002076: 2210 movs r2, #16 - 8002078: 409a lsls r2, r3 - 800207a: 693b ldr r3, [r7, #16] - 800207c: 609a str r2, [r3, #8] + 80020c2: 687b ldr r3, [r7, #4] + 80020c4: 6ddb ldr r3, [r3, #92] @ 0x5c + 80020c6: 2210 movs r2, #16 + 80020c8: 409a lsls r2, r3 + 80020ca: 693b ldr r3, [r7, #16] + 80020cc: 609a str r2, [r3, #8] /* Multi_Buffering mode enabled */ if(((hdma->Instance->CR) & (uint32_t)(DMA_SxCR_DBM)) != RESET) - 800207e: 687b ldr r3, [r7, #4] - 8002080: 681b ldr r3, [r3, #0] - 8002082: 681b ldr r3, [r3, #0] - 8002084: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 8002088: 2b00 cmp r3, #0 - 800208a: d018 beq.n 80020be + 80020ce: 687b ldr r3, [r7, #4] + 80020d0: 681b ldr r3, [r3, #0] + 80020d2: 681b ldr r3, [r3, #0] + 80020d4: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 80020d8: 2b00 cmp r3, #0 + 80020da: d018 beq.n 800210e { /* Current memory buffer used is Memory 0 */ if((hdma->Instance->CR & DMA_SxCR_CT) == RESET) - 800208c: 687b ldr r3, [r7, #4] - 800208e: 681b ldr r3, [r3, #0] - 8002090: 681b ldr r3, [r3, #0] - 8002092: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8002096: 2b00 cmp r3, #0 - 8002098: d108 bne.n 80020ac + 80020dc: 687b ldr r3, [r7, #4] + 80020de: 681b ldr r3, [r3, #0] + 80020e0: 681b ldr r3, [r3, #0] + 80020e2: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 80020e6: 2b00 cmp r3, #0 + 80020e8: d108 bne.n 80020fc { if(hdma->XferHalfCpltCallback != NULL) - 800209a: 687b ldr r3, [r7, #4] - 800209c: 6c1b ldr r3, [r3, #64] @ 0x40 - 800209e: 2b00 cmp r3, #0 - 80020a0: d024 beq.n 80020ec + 80020ea: 687b ldr r3, [r7, #4] + 80020ec: 6c1b ldr r3, [r3, #64] @ 0x40 + 80020ee: 2b00 cmp r3, #0 + 80020f0: d024 beq.n 800213c { /* Half transfer callback */ hdma->XferHalfCpltCallback(hdma); - 80020a2: 687b ldr r3, [r7, #4] - 80020a4: 6c1b ldr r3, [r3, #64] @ 0x40 - 80020a6: 6878 ldr r0, [r7, #4] - 80020a8: 4798 blx r3 - 80020aa: e01f b.n 80020ec + 80020f2: 687b ldr r3, [r7, #4] + 80020f4: 6c1b ldr r3, [r3, #64] @ 0x40 + 80020f6: 6878 ldr r0, [r7, #4] + 80020f8: 4798 blx r3 + 80020fa: e01f b.n 800213c } } /* Current memory buffer used is Memory 1 */ else { if(hdma->XferM1HalfCpltCallback != NULL) - 80020ac: 687b ldr r3, [r7, #4] - 80020ae: 6c9b ldr r3, [r3, #72] @ 0x48 - 80020b0: 2b00 cmp r3, #0 - 80020b2: d01b beq.n 80020ec + 80020fc: 687b ldr r3, [r7, #4] + 80020fe: 6c9b ldr r3, [r3, #72] @ 0x48 + 8002100: 2b00 cmp r3, #0 + 8002102: d01b beq.n 800213c { /* Half transfer callback */ hdma->XferM1HalfCpltCallback(hdma); - 80020b4: 687b ldr r3, [r7, #4] - 80020b6: 6c9b ldr r3, [r3, #72] @ 0x48 - 80020b8: 6878 ldr r0, [r7, #4] - 80020ba: 4798 blx r3 - 80020bc: e016 b.n 80020ec + 8002104: 687b ldr r3, [r7, #4] + 8002106: 6c9b ldr r3, [r3, #72] @ 0x48 + 8002108: 6878 ldr r0, [r7, #4] + 800210a: 4798 blx r3 + 800210c: e016 b.n 800213c } } else { /* Disable the half transfer interrupt if the DMA mode is not CIRCULAR */ if((hdma->Instance->CR & DMA_SxCR_CIRC) == RESET) - 80020be: 687b ldr r3, [r7, #4] - 80020c0: 681b ldr r3, [r3, #0] - 80020c2: 681b ldr r3, [r3, #0] - 80020c4: f403 7380 and.w r3, r3, #256 @ 0x100 - 80020c8: 2b00 cmp r3, #0 - 80020ca: d107 bne.n 80020dc + 800210e: 687b ldr r3, [r7, #4] + 8002110: 681b ldr r3, [r3, #0] + 8002112: 681b ldr r3, [r3, #0] + 8002114: f403 7380 and.w r3, r3, #256 @ 0x100 + 8002118: 2b00 cmp r3, #0 + 800211a: d107 bne.n 800212c { /* Disable the half transfer interrupt */ hdma->Instance->CR &= ~(DMA_IT_HT); - 80020cc: 687b ldr r3, [r7, #4] - 80020ce: 681b ldr r3, [r3, #0] - 80020d0: 681a ldr r2, [r3, #0] - 80020d2: 687b ldr r3, [r7, #4] - 80020d4: 681b ldr r3, [r3, #0] - 80020d6: f022 0208 bic.w r2, r2, #8 - 80020da: 601a str r2, [r3, #0] + 800211c: 687b ldr r3, [r7, #4] + 800211e: 681b ldr r3, [r3, #0] + 8002120: 681a ldr r2, [r3, #0] + 8002122: 687b ldr r3, [r7, #4] + 8002124: 681b ldr r3, [r3, #0] + 8002126: f022 0208 bic.w r2, r2, #8 + 800212a: 601a str r2, [r3, #0] } if(hdma->XferHalfCpltCallback != NULL) - 80020dc: 687b ldr r3, [r7, #4] - 80020de: 6c1b ldr r3, [r3, #64] @ 0x40 - 80020e0: 2b00 cmp r3, #0 - 80020e2: d003 beq.n 80020ec + 800212c: 687b ldr r3, [r7, #4] + 800212e: 6c1b ldr r3, [r3, #64] @ 0x40 + 8002130: 2b00 cmp r3, #0 + 8002132: d003 beq.n 800213c { /* Half transfer callback */ hdma->XferHalfCpltCallback(hdma); - 80020e4: 687b ldr r3, [r7, #4] - 80020e6: 6c1b ldr r3, [r3, #64] @ 0x40 - 80020e8: 6878 ldr r0, [r7, #4] - 80020ea: 4798 blx r3 + 8002134: 687b ldr r3, [r7, #4] + 8002136: 6c1b ldr r3, [r3, #64] @ 0x40 + 8002138: 6878 ldr r0, [r7, #4] + 800213a: 4798 blx r3 } } } } /* Transfer Complete Interrupt management ***********************************/ if ((tmpisr & (DMA_FLAG_TCIF0_4 << hdma->StreamIndex)) != RESET) - 80020ec: 687b ldr r3, [r7, #4] - 80020ee: 6ddb ldr r3, [r3, #92] @ 0x5c - 80020f0: 2220 movs r2, #32 - 80020f2: 409a lsls r2, r3 - 80020f4: 68fb ldr r3, [r7, #12] - 80020f6: 4013 ands r3, r2 - 80020f8: 2b00 cmp r3, #0 - 80020fa: f000 808f beq.w 800221c + 800213c: 687b ldr r3, [r7, #4] + 800213e: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002140: 2220 movs r2, #32 + 8002142: 409a lsls r2, r3 + 8002144: 68fb ldr r3, [r7, #12] + 8002146: 4013 ands r3, r2 + 8002148: 2b00 cmp r3, #0 + 800214a: f000 808f beq.w 800226c { if(__HAL_DMA_GET_IT_SOURCE(hdma, DMA_IT_TC) != RESET) - 80020fe: 687b ldr r3, [r7, #4] - 8002100: 681b ldr r3, [r3, #0] - 8002102: 681b ldr r3, [r3, #0] - 8002104: f003 0310 and.w r3, r3, #16 - 8002108: 2b00 cmp r3, #0 - 800210a: f000 8087 beq.w 800221c + 800214e: 687b ldr r3, [r7, #4] + 8002150: 681b ldr r3, [r3, #0] + 8002152: 681b ldr r3, [r3, #0] + 8002154: f003 0310 and.w r3, r3, #16 + 8002158: 2b00 cmp r3, #0 + 800215a: f000 8087 beq.w 800226c { /* Clear the transfer complete flag */ regs->IFCR = DMA_FLAG_TCIF0_4 << hdma->StreamIndex; - 800210e: 687b ldr r3, [r7, #4] - 8002110: 6ddb ldr r3, [r3, #92] @ 0x5c - 8002112: 2220 movs r2, #32 - 8002114: 409a lsls r2, r3 - 8002116: 693b ldr r3, [r7, #16] - 8002118: 609a str r2, [r3, #8] + 800215e: 687b ldr r3, [r7, #4] + 8002160: 6ddb ldr r3, [r3, #92] @ 0x5c + 8002162: 2220 movs r2, #32 + 8002164: 409a lsls r2, r3 + 8002166: 693b ldr r3, [r7, #16] + 8002168: 609a str r2, [r3, #8] if(HAL_DMA_STATE_ABORT == hdma->State) - 800211a: 687b ldr r3, [r7, #4] - 800211c: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 - 8002120: b2db uxtb r3, r3 - 8002122: 2b05 cmp r3, #5 - 8002124: d136 bne.n 8002194 + 800216a: 687b ldr r3, [r7, #4] + 800216c: f893 3035 ldrb.w r3, [r3, #53] @ 0x35 + 8002170: b2db uxtb r3, r3 + 8002172: 2b05 cmp r3, #5 + 8002174: d136 bne.n 80021e4 { /* Disable all the transfer interrupts */ hdma->Instance->CR &= ~(DMA_IT_TC | DMA_IT_TE | DMA_IT_DME); - 8002126: 687b ldr r3, [r7, #4] - 8002128: 681b ldr r3, [r3, #0] - 800212a: 681a ldr r2, [r3, #0] - 800212c: 687b ldr r3, [r7, #4] - 800212e: 681b ldr r3, [r3, #0] - 8002130: f022 0216 bic.w r2, r2, #22 - 8002134: 601a str r2, [r3, #0] + 8002176: 687b ldr r3, [r7, #4] + 8002178: 681b ldr r3, [r3, #0] + 800217a: 681a ldr r2, [r3, #0] + 800217c: 687b ldr r3, [r7, #4] + 800217e: 681b ldr r3, [r3, #0] + 8002180: f022 0216 bic.w r2, r2, #22 + 8002184: 601a str r2, [r3, #0] hdma->Instance->FCR &= ~(DMA_IT_FE); - 8002136: 687b ldr r3, [r7, #4] - 8002138: 681b ldr r3, [r3, #0] - 800213a: 695a ldr r2, [r3, #20] - 800213c: 687b ldr r3, [r7, #4] - 800213e: 681b ldr r3, [r3, #0] - 8002140: f022 0280 bic.w r2, r2, #128 @ 0x80 - 8002144: 615a str r2, [r3, #20] + 8002186: 687b ldr r3, [r7, #4] + 8002188: 681b ldr r3, [r3, #0] + 800218a: 695a ldr r2, [r3, #20] + 800218c: 687b ldr r3, [r7, #4] + 800218e: 681b ldr r3, [r3, #0] + 8002190: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8002194: 615a str r2, [r3, #20] if((hdma->XferHalfCpltCallback != NULL) || (hdma->XferM1HalfCpltCallback != NULL)) - 8002146: 687b ldr r3, [r7, #4] - 8002148: 6c1b ldr r3, [r3, #64] @ 0x40 - 800214a: 2b00 cmp r3, #0 - 800214c: d103 bne.n 8002156 - 800214e: 687b ldr r3, [r7, #4] - 8002150: 6c9b ldr r3, [r3, #72] @ 0x48 - 8002152: 2b00 cmp r3, #0 - 8002154: d007 beq.n 8002166 + 8002196: 687b ldr r3, [r7, #4] + 8002198: 6c1b ldr r3, [r3, #64] @ 0x40 + 800219a: 2b00 cmp r3, #0 + 800219c: d103 bne.n 80021a6 + 800219e: 687b ldr r3, [r7, #4] + 80021a0: 6c9b ldr r3, [r3, #72] @ 0x48 + 80021a2: 2b00 cmp r3, #0 + 80021a4: d007 beq.n 80021b6 { hdma->Instance->CR &= ~(DMA_IT_HT); - 8002156: 687b ldr r3, [r7, #4] - 8002158: 681b ldr r3, [r3, #0] - 800215a: 681a ldr r2, [r3, #0] - 800215c: 687b ldr r3, [r7, #4] - 800215e: 681b ldr r3, [r3, #0] - 8002160: f022 0208 bic.w r2, r2, #8 - 8002164: 601a str r2, [r3, #0] + 80021a6: 687b ldr r3, [r7, #4] + 80021a8: 681b ldr r3, [r3, #0] + 80021aa: 681a ldr r2, [r3, #0] + 80021ac: 687b ldr r3, [r7, #4] + 80021ae: 681b ldr r3, [r3, #0] + 80021b0: f022 0208 bic.w r2, r2, #8 + 80021b4: 601a str r2, [r3, #0] } /* Clear all interrupt flags at correct offset within the register */ regs->IFCR = 0x3FU << hdma->StreamIndex; - 8002166: 687b ldr r3, [r7, #4] - 8002168: 6ddb ldr r3, [r3, #92] @ 0x5c - 800216a: 223f movs r2, #63 @ 0x3f - 800216c: 409a lsls r2, r3 - 800216e: 693b ldr r3, [r7, #16] - 8002170: 609a str r2, [r3, #8] + 80021b6: 687b ldr r3, [r7, #4] + 80021b8: 6ddb ldr r3, [r3, #92] @ 0x5c + 80021ba: 223f movs r2, #63 @ 0x3f + 80021bc: 409a lsls r2, r3 + 80021be: 693b ldr r3, [r7, #16] + 80021c0: 609a str r2, [r3, #8] /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8002172: 687b ldr r3, [r7, #4] - 8002174: 2201 movs r2, #1 - 8002176: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 80021c2: 687b ldr r3, [r7, #4] + 80021c4: 2201 movs r2, #1 + 80021c6: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800217a: 687b ldr r3, [r7, #4] - 800217c: 2200 movs r2, #0 - 800217e: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 80021ca: 687b ldr r3, [r7, #4] + 80021cc: 2200 movs r2, #0 + 80021ce: f883 2034 strb.w r2, [r3, #52] @ 0x34 if(hdma->XferAbortCallback != NULL) - 8002182: 687b ldr r3, [r7, #4] - 8002184: 6d1b ldr r3, [r3, #80] @ 0x50 - 8002186: 2b00 cmp r3, #0 - 8002188: d07e beq.n 8002288 + 80021d2: 687b ldr r3, [r7, #4] + 80021d4: 6d1b ldr r3, [r3, #80] @ 0x50 + 80021d6: 2b00 cmp r3, #0 + 80021d8: d07e beq.n 80022d8 { hdma->XferAbortCallback(hdma); - 800218a: 687b ldr r3, [r7, #4] - 800218c: 6d1b ldr r3, [r3, #80] @ 0x50 - 800218e: 6878 ldr r0, [r7, #4] - 8002190: 4798 blx r3 + 80021da: 687b ldr r3, [r7, #4] + 80021dc: 6d1b ldr r3, [r3, #80] @ 0x50 + 80021de: 6878 ldr r0, [r7, #4] + 80021e0: 4798 blx r3 } return; - 8002192: e079 b.n 8002288 + 80021e2: e079 b.n 80022d8 } if(((hdma->Instance->CR) & (uint32_t)(DMA_SxCR_DBM)) != RESET) - 8002194: 687b ldr r3, [r7, #4] - 8002196: 681b ldr r3, [r3, #0] - 8002198: 681b ldr r3, [r3, #0] - 800219a: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 800219e: 2b00 cmp r3, #0 - 80021a0: d01d beq.n 80021de + 80021e4: 687b ldr r3, [r7, #4] + 80021e6: 681b ldr r3, [r3, #0] + 80021e8: 681b ldr r3, [r3, #0] + 80021ea: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 80021ee: 2b00 cmp r3, #0 + 80021f0: d01d beq.n 800222e { /* Current memory buffer used is Memory 0 */ if((hdma->Instance->CR & DMA_SxCR_CT) == RESET) - 80021a2: 687b ldr r3, [r7, #4] - 80021a4: 681b ldr r3, [r3, #0] - 80021a6: 681b ldr r3, [r3, #0] - 80021a8: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 80021ac: 2b00 cmp r3, #0 - 80021ae: d10d bne.n 80021cc + 80021f2: 687b ldr r3, [r7, #4] + 80021f4: 681b ldr r3, [r3, #0] + 80021f6: 681b ldr r3, [r3, #0] + 80021f8: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 80021fc: 2b00 cmp r3, #0 + 80021fe: d10d bne.n 800221c { if(hdma->XferM1CpltCallback != NULL) - 80021b0: 687b ldr r3, [r7, #4] - 80021b2: 6c5b ldr r3, [r3, #68] @ 0x44 - 80021b4: 2b00 cmp r3, #0 - 80021b6: d031 beq.n 800221c + 8002200: 687b ldr r3, [r7, #4] + 8002202: 6c5b ldr r3, [r3, #68] @ 0x44 + 8002204: 2b00 cmp r3, #0 + 8002206: d031 beq.n 800226c { /* Transfer complete Callback for memory1 */ hdma->XferM1CpltCallback(hdma); - 80021b8: 687b ldr r3, [r7, #4] - 80021ba: 6c5b ldr r3, [r3, #68] @ 0x44 - 80021bc: 6878 ldr r0, [r7, #4] - 80021be: 4798 blx r3 - 80021c0: e02c b.n 800221c - 80021c2: bf00 nop - 80021c4: 20000090 .word 0x20000090 - 80021c8: 1b4e81b5 .word 0x1b4e81b5 + 8002208: 687b ldr r3, [r7, #4] + 800220a: 6c5b ldr r3, [r3, #68] @ 0x44 + 800220c: 6878 ldr r0, [r7, #4] + 800220e: 4798 blx r3 + 8002210: e02c b.n 800226c + 8002212: bf00 nop + 8002214: 20000090 .word 0x20000090 + 8002218: 1b4e81b5 .word 0x1b4e81b5 } } /* Current memory buffer used is Memory 1 */ else { if(hdma->XferCpltCallback != NULL) - 80021cc: 687b ldr r3, [r7, #4] - 80021ce: 6bdb ldr r3, [r3, #60] @ 0x3c - 80021d0: 2b00 cmp r3, #0 - 80021d2: d023 beq.n 800221c + 800221c: 687b ldr r3, [r7, #4] + 800221e: 6bdb ldr r3, [r3, #60] @ 0x3c + 8002220: 2b00 cmp r3, #0 + 8002222: d023 beq.n 800226c { /* Transfer complete Callback for memory0 */ hdma->XferCpltCallback(hdma); - 80021d4: 687b ldr r3, [r7, #4] - 80021d6: 6bdb ldr r3, [r3, #60] @ 0x3c - 80021d8: 6878 ldr r0, [r7, #4] - 80021da: 4798 blx r3 - 80021dc: e01e b.n 800221c + 8002224: 687b ldr r3, [r7, #4] + 8002226: 6bdb ldr r3, [r3, #60] @ 0x3c + 8002228: 6878 ldr r0, [r7, #4] + 800222a: 4798 blx r3 + 800222c: e01e b.n 800226c } } /* Disable the transfer complete interrupt if the DMA mode is not CIRCULAR */ else { if((hdma->Instance->CR & DMA_SxCR_CIRC) == RESET) - 80021de: 687b ldr r3, [r7, #4] - 80021e0: 681b ldr r3, [r3, #0] - 80021e2: 681b ldr r3, [r3, #0] - 80021e4: f403 7380 and.w r3, r3, #256 @ 0x100 - 80021e8: 2b00 cmp r3, #0 - 80021ea: d10f bne.n 800220c + 800222e: 687b ldr r3, [r7, #4] + 8002230: 681b ldr r3, [r3, #0] + 8002232: 681b ldr r3, [r3, #0] + 8002234: f403 7380 and.w r3, r3, #256 @ 0x100 + 8002238: 2b00 cmp r3, #0 + 800223a: d10f bne.n 800225c { /* Disable the transfer complete interrupt */ hdma->Instance->CR &= ~(DMA_IT_TC); - 80021ec: 687b ldr r3, [r7, #4] - 80021ee: 681b ldr r3, [r3, #0] - 80021f0: 681a ldr r2, [r3, #0] - 80021f2: 687b ldr r3, [r7, #4] - 80021f4: 681b ldr r3, [r3, #0] - 80021f6: f022 0210 bic.w r2, r2, #16 - 80021fa: 601a str r2, [r3, #0] + 800223c: 687b ldr r3, [r7, #4] + 800223e: 681b ldr r3, [r3, #0] + 8002240: 681a ldr r2, [r3, #0] + 8002242: 687b ldr r3, [r7, #4] + 8002244: 681b ldr r3, [r3, #0] + 8002246: f022 0210 bic.w r2, r2, #16 + 800224a: 601a str r2, [r3, #0] /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 80021fc: 687b ldr r3, [r7, #4] - 80021fe: 2201 movs r2, #1 - 8002200: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 800224c: 687b ldr r3, [r7, #4] + 800224e: 2201 movs r2, #1 + 8002250: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 8002204: 687b ldr r3, [r7, #4] - 8002206: 2200 movs r2, #0 - 8002208: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 8002254: 687b ldr r3, [r7, #4] + 8002256: 2200 movs r2, #0 + 8002258: f883 2034 strb.w r2, [r3, #52] @ 0x34 } if(hdma->XferCpltCallback != NULL) - 800220c: 687b ldr r3, [r7, #4] - 800220e: 6bdb ldr r3, [r3, #60] @ 0x3c - 8002210: 2b00 cmp r3, #0 - 8002212: d003 beq.n 800221c + 800225c: 687b ldr r3, [r7, #4] + 800225e: 6bdb ldr r3, [r3, #60] @ 0x3c + 8002260: 2b00 cmp r3, #0 + 8002262: d003 beq.n 800226c { /* Transfer complete callback */ hdma->XferCpltCallback(hdma); - 8002214: 687b ldr r3, [r7, #4] - 8002216: 6bdb ldr r3, [r3, #60] @ 0x3c - 8002218: 6878 ldr r0, [r7, #4] - 800221a: 4798 blx r3 + 8002264: 687b ldr r3, [r7, #4] + 8002266: 6bdb ldr r3, [r3, #60] @ 0x3c + 8002268: 6878 ldr r0, [r7, #4] + 800226a: 4798 blx r3 } } } /* manage error case */ if(hdma->ErrorCode != HAL_DMA_ERROR_NONE) - 800221c: 687b ldr r3, [r7, #4] - 800221e: 6d5b ldr r3, [r3, #84] @ 0x54 - 8002220: 2b00 cmp r3, #0 - 8002222: d032 beq.n 800228a + 800226c: 687b ldr r3, [r7, #4] + 800226e: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002270: 2b00 cmp r3, #0 + 8002272: d032 beq.n 80022da { if((hdma->ErrorCode & HAL_DMA_ERROR_TE) != RESET) - 8002224: 687b ldr r3, [r7, #4] - 8002226: 6d5b ldr r3, [r3, #84] @ 0x54 - 8002228: f003 0301 and.w r3, r3, #1 - 800222c: 2b00 cmp r3, #0 - 800222e: d022 beq.n 8002276 + 8002274: 687b ldr r3, [r7, #4] + 8002276: 6d5b ldr r3, [r3, #84] @ 0x54 + 8002278: f003 0301 and.w r3, r3, #1 + 800227c: 2b00 cmp r3, #0 + 800227e: d022 beq.n 80022c6 { hdma->State = HAL_DMA_STATE_ABORT; - 8002230: 687b ldr r3, [r7, #4] - 8002232: 2205 movs r2, #5 - 8002234: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 8002280: 687b ldr r3, [r7, #4] + 8002282: 2205 movs r2, #5 + 8002284: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Disable the stream */ __HAL_DMA_DISABLE(hdma); - 8002238: 687b ldr r3, [r7, #4] - 800223a: 681b ldr r3, [r3, #0] - 800223c: 681a ldr r2, [r3, #0] - 800223e: 687b ldr r3, [r7, #4] - 8002240: 681b ldr r3, [r3, #0] - 8002242: f022 0201 bic.w r2, r2, #1 - 8002246: 601a str r2, [r3, #0] + 8002288: 687b ldr r3, [r7, #4] + 800228a: 681b ldr r3, [r3, #0] + 800228c: 681a ldr r2, [r3, #0] + 800228e: 687b ldr r3, [r7, #4] + 8002290: 681b ldr r3, [r3, #0] + 8002292: f022 0201 bic.w r2, r2, #1 + 8002296: 601a str r2, [r3, #0] do { if (++count > timeout) - 8002248: 68bb ldr r3, [r7, #8] - 800224a: 3301 adds r3, #1 - 800224c: 60bb str r3, [r7, #8] - 800224e: 697a ldr r2, [r7, #20] - 8002250: 429a cmp r2, r3 - 8002252: d307 bcc.n 8002264 + 8002298: 68bb ldr r3, [r7, #8] + 800229a: 3301 adds r3, #1 + 800229c: 60bb str r3, [r7, #8] + 800229e: 697a ldr r2, [r7, #20] + 80022a0: 429a cmp r2, r3 + 80022a2: d307 bcc.n 80022b4 { break; } } while((hdma->Instance->CR & DMA_SxCR_EN) != RESET); - 8002254: 687b ldr r3, [r7, #4] - 8002256: 681b ldr r3, [r3, #0] - 8002258: 681b ldr r3, [r3, #0] - 800225a: f003 0301 and.w r3, r3, #1 - 800225e: 2b00 cmp r3, #0 - 8002260: d1f2 bne.n 8002248 - 8002262: e000 b.n 8002266 + 80022a4: 687b ldr r3, [r7, #4] + 80022a6: 681b ldr r3, [r3, #0] + 80022a8: 681b ldr r3, [r3, #0] + 80022aa: f003 0301 and.w r3, r3, #1 + 80022ae: 2b00 cmp r3, #0 + 80022b0: d1f2 bne.n 8002298 + 80022b2: e000 b.n 80022b6 break; - 8002264: bf00 nop + 80022b4: bf00 nop /* Change the DMA state */ hdma->State = HAL_DMA_STATE_READY; - 8002266: 687b ldr r3, [r7, #4] - 8002268: 2201 movs r2, #1 - 800226a: f883 2035 strb.w r2, [r3, #53] @ 0x35 + 80022b6: 687b ldr r3, [r7, #4] + 80022b8: 2201 movs r2, #1 + 80022ba: f883 2035 strb.w r2, [r3, #53] @ 0x35 /* Process Unlocked */ __HAL_UNLOCK(hdma); - 800226e: 687b ldr r3, [r7, #4] - 8002270: 2200 movs r2, #0 - 8002272: f883 2034 strb.w r2, [r3, #52] @ 0x34 + 80022be: 687b ldr r3, [r7, #4] + 80022c0: 2200 movs r2, #0 + 80022c2: f883 2034 strb.w r2, [r3, #52] @ 0x34 } if(hdma->XferErrorCallback != NULL) - 8002276: 687b ldr r3, [r7, #4] - 8002278: 6cdb ldr r3, [r3, #76] @ 0x4c - 800227a: 2b00 cmp r3, #0 - 800227c: d005 beq.n 800228a + 80022c6: 687b ldr r3, [r7, #4] + 80022c8: 6cdb ldr r3, [r3, #76] @ 0x4c + 80022ca: 2b00 cmp r3, #0 + 80022cc: d005 beq.n 80022da { /* Transfer error callback */ hdma->XferErrorCallback(hdma); - 800227e: 687b ldr r3, [r7, #4] - 8002280: 6cdb ldr r3, [r3, #76] @ 0x4c - 8002282: 6878 ldr r0, [r7, #4] - 8002284: 4798 blx r3 - 8002286: e000 b.n 800228a + 80022ce: 687b ldr r3, [r7, #4] + 80022d0: 6cdb ldr r3, [r3, #76] @ 0x4c + 80022d2: 6878 ldr r0, [r7, #4] + 80022d4: 4798 blx r3 + 80022d6: e000 b.n 80022da return; - 8002288: bf00 nop + 80022d8: bf00 nop } } } - 800228a: 3718 adds r7, #24 - 800228c: 46bd mov sp, r7 - 800228e: bd80 pop {r7, pc} + 80022da: 3718 adds r7, #24 + 80022dc: 46bd mov sp, r7 + 80022de: bd80 pop {r7, pc} -08002290 : +080022e0 : * @param DstAddress The destination memory Buffer address * @param DataLength The length of data to be transferred from source to destination * @retval HAL status */ static void DMA_SetConfig(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength) { - 8002290: b480 push {r7} - 8002292: b085 sub sp, #20 - 8002294: af00 add r7, sp, #0 - 8002296: 60f8 str r0, [r7, #12] - 8002298: 60b9 str r1, [r7, #8] - 800229a: 607a str r2, [r7, #4] - 800229c: 603b str r3, [r7, #0] + 80022e0: b480 push {r7} + 80022e2: b085 sub sp, #20 + 80022e4: af00 add r7, sp, #0 + 80022e6: 60f8 str r0, [r7, #12] + 80022e8: 60b9 str r1, [r7, #8] + 80022ea: 607a str r2, [r7, #4] + 80022ec: 603b str r3, [r7, #0] /* Clear DBM bit */ hdma->Instance->CR &= (uint32_t)(~DMA_SxCR_DBM); - 800229e: 68fb ldr r3, [r7, #12] - 80022a0: 681b ldr r3, [r3, #0] - 80022a2: 681a ldr r2, [r3, #0] - 80022a4: 68fb ldr r3, [r7, #12] - 80022a6: 681b ldr r3, [r3, #0] - 80022a8: f422 2280 bic.w r2, r2, #262144 @ 0x40000 - 80022ac: 601a str r2, [r3, #0] + 80022ee: 68fb ldr r3, [r7, #12] + 80022f0: 681b ldr r3, [r3, #0] + 80022f2: 681a ldr r2, [r3, #0] + 80022f4: 68fb ldr r3, [r7, #12] + 80022f6: 681b ldr r3, [r3, #0] + 80022f8: f422 2280 bic.w r2, r2, #262144 @ 0x40000 + 80022fc: 601a str r2, [r3, #0] /* Configure DMA Stream data length */ hdma->Instance->NDTR = DataLength; - 80022ae: 68fb ldr r3, [r7, #12] - 80022b0: 681b ldr r3, [r3, #0] - 80022b2: 683a ldr r2, [r7, #0] - 80022b4: 605a str r2, [r3, #4] + 80022fe: 68fb ldr r3, [r7, #12] + 8002300: 681b ldr r3, [r3, #0] + 8002302: 683a ldr r2, [r7, #0] + 8002304: 605a str r2, [r3, #4] /* Memory to Peripheral */ if((hdma->Init.Direction) == DMA_MEMORY_TO_PERIPH) - 80022b6: 68fb ldr r3, [r7, #12] - 80022b8: 689b ldr r3, [r3, #8] - 80022ba: 2b40 cmp r3, #64 @ 0x40 - 80022bc: d108 bne.n 80022d0 + 8002306: 68fb ldr r3, [r7, #12] + 8002308: 689b ldr r3, [r3, #8] + 800230a: 2b40 cmp r3, #64 @ 0x40 + 800230c: d108 bne.n 8002320 { /* Configure DMA Stream destination address */ hdma->Instance->PAR = DstAddress; - 80022be: 68fb ldr r3, [r7, #12] - 80022c0: 681b ldr r3, [r3, #0] - 80022c2: 687a ldr r2, [r7, #4] - 80022c4: 609a str r2, [r3, #8] + 800230e: 68fb ldr r3, [r7, #12] + 8002310: 681b ldr r3, [r3, #0] + 8002312: 687a ldr r2, [r7, #4] + 8002314: 609a str r2, [r3, #8] /* Configure DMA Stream source address */ hdma->Instance->M0AR = SrcAddress; - 80022c6: 68fb ldr r3, [r7, #12] - 80022c8: 681b ldr r3, [r3, #0] - 80022ca: 68ba ldr r2, [r7, #8] - 80022cc: 60da str r2, [r3, #12] + 8002316: 68fb ldr r3, [r7, #12] + 8002318: 681b ldr r3, [r3, #0] + 800231a: 68ba ldr r2, [r7, #8] + 800231c: 60da str r2, [r3, #12] hdma->Instance->PAR = SrcAddress; /* Configure DMA Stream destination address */ hdma->Instance->M0AR = DstAddress; } } - 80022ce: e007 b.n 80022e0 + 800231e: e007 b.n 8002330 hdma->Instance->PAR = SrcAddress; - 80022d0: 68fb ldr r3, [r7, #12] - 80022d2: 681b ldr r3, [r3, #0] - 80022d4: 68ba ldr r2, [r7, #8] - 80022d6: 609a str r2, [r3, #8] + 8002320: 68fb ldr r3, [r7, #12] + 8002322: 681b ldr r3, [r3, #0] + 8002324: 68ba ldr r2, [r7, #8] + 8002326: 609a str r2, [r3, #8] hdma->Instance->M0AR = DstAddress; - 80022d8: 68fb ldr r3, [r7, #12] - 80022da: 681b ldr r3, [r3, #0] - 80022dc: 687a ldr r2, [r7, #4] - 80022de: 60da str r2, [r3, #12] + 8002328: 68fb ldr r3, [r7, #12] + 800232a: 681b ldr r3, [r3, #0] + 800232c: 687a ldr r2, [r7, #4] + 800232e: 60da str r2, [r3, #12] } - 80022e0: bf00 nop - 80022e2: 3714 adds r7, #20 - 80022e4: 46bd mov sp, r7 - 80022e6: f85d 7b04 ldr.w r7, [sp], #4 - 80022ea: 4770 bx lr + 8002330: bf00 nop + 8002332: 3714 adds r7, #20 + 8002334: 46bd mov sp, r7 + 8002336: f85d 7b04 ldr.w r7, [sp], #4 + 800233a: 4770 bx lr -080022ec : +0800233c : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval Stream base address */ static uint32_t DMA_CalcBaseAndBitshift(DMA_HandleTypeDef *hdma) { - 80022ec: b480 push {r7} - 80022ee: b085 sub sp, #20 - 80022f0: af00 add r7, sp, #0 - 80022f2: 6078 str r0, [r7, #4] + 800233c: b480 push {r7} + 800233e: b085 sub sp, #20 + 8002340: af00 add r7, sp, #0 + 8002342: 6078 str r0, [r7, #4] uint32_t stream_number = (((uint32_t)hdma->Instance & 0xFFU) - 16U) / 24U; - 80022f4: 687b ldr r3, [r7, #4] - 80022f6: 681b ldr r3, [r3, #0] - 80022f8: b2db uxtb r3, r3 - 80022fa: 3b10 subs r3, #16 - 80022fc: 4a14 ldr r2, [pc, #80] @ (8002350 ) - 80022fe: fba2 2303 umull r2, r3, r2, r3 - 8002302: 091b lsrs r3, r3, #4 - 8002304: 60fb str r3, [r7, #12] + 8002344: 687b ldr r3, [r7, #4] + 8002346: 681b ldr r3, [r3, #0] + 8002348: b2db uxtb r3, r3 + 800234a: 3b10 subs r3, #16 + 800234c: 4a14 ldr r2, [pc, #80] @ (80023a0 ) + 800234e: fba2 2303 umull r2, r3, r2, r3 + 8002352: 091b lsrs r3, r3, #4 + 8002354: 60fb str r3, [r7, #12] /* lookup table for necessary bitshift of flags within status registers */ static const uint8_t flagBitshiftOffset[8U] = {0U, 6U, 16U, 22U, 0U, 6U, 16U, 22U}; hdma->StreamIndex = flagBitshiftOffset[stream_number]; - 8002306: 4a13 ldr r2, [pc, #76] @ (8002354 ) - 8002308: 68fb ldr r3, [r7, #12] - 800230a: 4413 add r3, r2 - 800230c: 781b ldrb r3, [r3, #0] - 800230e: 461a mov r2, r3 - 8002310: 687b ldr r3, [r7, #4] - 8002312: 65da str r2, [r3, #92] @ 0x5c + 8002356: 4a13 ldr r2, [pc, #76] @ (80023a4 ) + 8002358: 68fb ldr r3, [r7, #12] + 800235a: 4413 add r3, r2 + 800235c: 781b ldrb r3, [r3, #0] + 800235e: 461a mov r2, r3 + 8002360: 687b ldr r3, [r7, #4] + 8002362: 65da str r2, [r3, #92] @ 0x5c if (stream_number > 3U) - 8002314: 68fb ldr r3, [r7, #12] - 8002316: 2b03 cmp r3, #3 - 8002318: d909 bls.n 800232e + 8002364: 68fb ldr r3, [r7, #12] + 8002366: 2b03 cmp r3, #3 + 8002368: d909 bls.n 800237e { /* return pointer to HISR and HIFCR */ hdma->StreamBaseAddress = (((uint32_t)hdma->Instance & (uint32_t)(~0x3FFU)) + 4U); - 800231a: 687b ldr r3, [r7, #4] - 800231c: 681b ldr r3, [r3, #0] - 800231e: f423 737f bic.w r3, r3, #1020 @ 0x3fc - 8002322: f023 0303 bic.w r3, r3, #3 - 8002326: 1d1a adds r2, r3, #4 - 8002328: 687b ldr r3, [r7, #4] - 800232a: 659a str r2, [r3, #88] @ 0x58 - 800232c: e007 b.n 800233e + 800236a: 687b ldr r3, [r7, #4] + 800236c: 681b ldr r3, [r3, #0] + 800236e: f423 737f bic.w r3, r3, #1020 @ 0x3fc + 8002372: f023 0303 bic.w r3, r3, #3 + 8002376: 1d1a adds r2, r3, #4 + 8002378: 687b ldr r3, [r7, #4] + 800237a: 659a str r2, [r3, #88] @ 0x58 + 800237c: e007 b.n 800238e } else { /* return pointer to LISR and LIFCR */ hdma->StreamBaseAddress = ((uint32_t)hdma->Instance & (uint32_t)(~0x3FFU)); - 800232e: 687b ldr r3, [r7, #4] - 8002330: 681b ldr r3, [r3, #0] - 8002332: f423 737f bic.w r3, r3, #1020 @ 0x3fc - 8002336: f023 0303 bic.w r3, r3, #3 - 800233a: 687a ldr r2, [r7, #4] - 800233c: 6593 str r3, [r2, #88] @ 0x58 + 800237e: 687b ldr r3, [r7, #4] + 8002380: 681b ldr r3, [r3, #0] + 8002382: f423 737f bic.w r3, r3, #1020 @ 0x3fc + 8002386: f023 0303 bic.w r3, r3, #3 + 800238a: 687a ldr r2, [r7, #4] + 800238c: 6593 str r3, [r2, #88] @ 0x58 } return hdma->StreamBaseAddress; - 800233e: 687b ldr r3, [r7, #4] - 8002340: 6d9b ldr r3, [r3, #88] @ 0x58 + 800238e: 687b ldr r3, [r7, #4] + 8002390: 6d9b ldr r3, [r3, #88] @ 0x58 } - 8002342: 4618 mov r0, r3 - 8002344: 3714 adds r7, #20 - 8002346: 46bd mov sp, r7 - 8002348: f85d 7b04 ldr.w r7, [sp], #4 - 800234c: 4770 bx lr - 800234e: bf00 nop - 8002350: aaaaaaab .word 0xaaaaaaab - 8002354: 0800ab80 .word 0x0800ab80 + 8002392: 4618 mov r0, r3 + 8002394: 3714 adds r7, #20 + 8002396: 46bd mov sp, r7 + 8002398: f85d 7b04 ldr.w r7, [sp], #4 + 800239c: 4770 bx lr + 800239e: bf00 nop + 80023a0: aaaaaaab .word 0xaaaaaaab + 80023a4: 0800aa08 .word 0x0800aa08 -08002358 : +080023a8 : * @param hdma pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA Stream. * @retval HAL status */ static HAL_StatusTypeDef DMA_CheckFifoParam(DMA_HandleTypeDef *hdma) { - 8002358: b480 push {r7} - 800235a: b085 sub sp, #20 - 800235c: af00 add r7, sp, #0 - 800235e: 6078 str r0, [r7, #4] + 80023a8: b480 push {r7} + 80023aa: b085 sub sp, #20 + 80023ac: af00 add r7, sp, #0 + 80023ae: 6078 str r0, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 8002360: 2300 movs r3, #0 - 8002362: 73fb strb r3, [r7, #15] + 80023b0: 2300 movs r3, #0 + 80023b2: 73fb strb r3, [r7, #15] uint32_t tmp = hdma->Init.FIFOThreshold; - 8002364: 687b ldr r3, [r7, #4] - 8002366: 6a9b ldr r3, [r3, #40] @ 0x28 - 8002368: 60bb str r3, [r7, #8] + 80023b4: 687b ldr r3, [r7, #4] + 80023b6: 6a9b ldr r3, [r3, #40] @ 0x28 + 80023b8: 60bb str r3, [r7, #8] /* Memory Data size equal to Byte */ if(hdma->Init.MemDataAlignment == DMA_MDATAALIGN_BYTE) - 800236a: 687b ldr r3, [r7, #4] - 800236c: 699b ldr r3, [r3, #24] - 800236e: 2b00 cmp r3, #0 - 8002370: d11f bne.n 80023b2 + 80023ba: 687b ldr r3, [r7, #4] + 80023bc: 699b ldr r3, [r3, #24] + 80023be: 2b00 cmp r3, #0 + 80023c0: d11f bne.n 8002402 { switch (tmp) - 8002372: 68bb ldr r3, [r7, #8] - 8002374: 2b03 cmp r3, #3 - 8002376: d856 bhi.n 8002426 - 8002378: a201 add r2, pc, #4 @ (adr r2, 8002380 ) - 800237a: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800237e: bf00 nop - 8002380: 08002391 .word 0x08002391 - 8002384: 080023a3 .word 0x080023a3 - 8002388: 08002391 .word 0x08002391 - 800238c: 08002427 .word 0x08002427 + 80023c2: 68bb ldr r3, [r7, #8] + 80023c4: 2b03 cmp r3, #3 + 80023c6: d856 bhi.n 8002476 + 80023c8: a201 add r2, pc, #4 @ (adr r2, 80023d0 ) + 80023ca: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80023ce: bf00 nop + 80023d0: 080023e1 .word 0x080023e1 + 80023d4: 080023f3 .word 0x080023f3 + 80023d8: 080023e1 .word 0x080023e1 + 80023dc: 08002477 .word 0x08002477 { case DMA_FIFO_THRESHOLD_1QUARTERFULL: case DMA_FIFO_THRESHOLD_3QUARTERSFULL: if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 8002390: 687b ldr r3, [r7, #4] - 8002392: 6adb ldr r3, [r3, #44] @ 0x2c - 8002394: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 8002398: 2b00 cmp r3, #0 - 800239a: d046 beq.n 800242a + 80023e0: 687b ldr r3, [r7, #4] + 80023e2: 6adb ldr r3, [r3, #44] @ 0x2c + 80023e4: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 80023e8: 2b00 cmp r3, #0 + 80023ea: d046 beq.n 800247a { status = HAL_ERROR; - 800239c: 2301 movs r3, #1 - 800239e: 73fb strb r3, [r7, #15] + 80023ec: 2301 movs r3, #1 + 80023ee: 73fb strb r3, [r7, #15] } break; - 80023a0: e043 b.n 800242a + 80023f0: e043 b.n 800247a case DMA_FIFO_THRESHOLD_HALFFULL: if (hdma->Init.MemBurst == DMA_MBURST_INC16) - 80023a2: 687b ldr r3, [r7, #4] - 80023a4: 6adb ldr r3, [r3, #44] @ 0x2c - 80023a6: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 - 80023aa: d140 bne.n 800242e + 80023f2: 687b ldr r3, [r7, #4] + 80023f4: 6adb ldr r3, [r3, #44] @ 0x2c + 80023f6: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 + 80023fa: d140 bne.n 800247e { status = HAL_ERROR; - 80023ac: 2301 movs r3, #1 - 80023ae: 73fb strb r3, [r7, #15] + 80023fc: 2301 movs r3, #1 + 80023fe: 73fb strb r3, [r7, #15] } break; - 80023b0: e03d b.n 800242e + 8002400: e03d b.n 800247e break; } } /* Memory Data size equal to Half-Word */ else if (hdma->Init.MemDataAlignment == DMA_MDATAALIGN_HALFWORD) - 80023b2: 687b ldr r3, [r7, #4] - 80023b4: 699b ldr r3, [r3, #24] - 80023b6: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 80023ba: d121 bne.n 8002400 + 8002402: 687b ldr r3, [r7, #4] + 8002404: 699b ldr r3, [r3, #24] + 8002406: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 800240a: d121 bne.n 8002450 { switch (tmp) - 80023bc: 68bb ldr r3, [r7, #8] - 80023be: 2b03 cmp r3, #3 - 80023c0: d837 bhi.n 8002432 - 80023c2: a201 add r2, pc, #4 @ (adr r2, 80023c8 ) - 80023c4: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80023c8: 080023d9 .word 0x080023d9 - 80023cc: 080023df .word 0x080023df - 80023d0: 080023d9 .word 0x080023d9 - 80023d4: 080023f1 .word 0x080023f1 + 800240c: 68bb ldr r3, [r7, #8] + 800240e: 2b03 cmp r3, #3 + 8002410: d837 bhi.n 8002482 + 8002412: a201 add r2, pc, #4 @ (adr r2, 8002418 ) + 8002414: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8002418: 08002429 .word 0x08002429 + 800241c: 0800242f .word 0x0800242f + 8002420: 08002429 .word 0x08002429 + 8002424: 08002441 .word 0x08002441 { case DMA_FIFO_THRESHOLD_1QUARTERFULL: case DMA_FIFO_THRESHOLD_3QUARTERSFULL: status = HAL_ERROR; - 80023d8: 2301 movs r3, #1 - 80023da: 73fb strb r3, [r7, #15] + 8002428: 2301 movs r3, #1 + 800242a: 73fb strb r3, [r7, #15] break; - 80023dc: e030 b.n 8002440 + 800242c: e030 b.n 8002490 case DMA_FIFO_THRESHOLD_HALFFULL: if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 80023de: 687b ldr r3, [r7, #4] - 80023e0: 6adb ldr r3, [r3, #44] @ 0x2c - 80023e2: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 80023e6: 2b00 cmp r3, #0 - 80023e8: d025 beq.n 8002436 + 800242e: 687b ldr r3, [r7, #4] + 8002430: 6adb ldr r3, [r3, #44] @ 0x2c + 8002432: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 8002436: 2b00 cmp r3, #0 + 8002438: d025 beq.n 8002486 { status = HAL_ERROR; - 80023ea: 2301 movs r3, #1 - 80023ec: 73fb strb r3, [r7, #15] + 800243a: 2301 movs r3, #1 + 800243c: 73fb strb r3, [r7, #15] } break; - 80023ee: e022 b.n 8002436 + 800243e: e022 b.n 8002486 case DMA_FIFO_THRESHOLD_FULL: if (hdma->Init.MemBurst == DMA_MBURST_INC16) - 80023f0: 687b ldr r3, [r7, #4] - 80023f2: 6adb ldr r3, [r3, #44] @ 0x2c - 80023f4: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 - 80023f8: d11f bne.n 800243a + 8002440: 687b ldr r3, [r7, #4] + 8002442: 6adb ldr r3, [r3, #44] @ 0x2c + 8002444: f1b3 7fc0 cmp.w r3, #25165824 @ 0x1800000 + 8002448: d11f bne.n 800248a { status = HAL_ERROR; - 80023fa: 2301 movs r3, #1 - 80023fc: 73fb strb r3, [r7, #15] + 800244a: 2301 movs r3, #1 + 800244c: 73fb strb r3, [r7, #15] } break; - 80023fe: e01c b.n 800243a + 800244e: e01c b.n 800248a } /* Memory Data size equal to Word */ else { switch (tmp) - 8002400: 68bb ldr r3, [r7, #8] - 8002402: 2b02 cmp r3, #2 - 8002404: d903 bls.n 800240e - 8002406: 68bb ldr r3, [r7, #8] - 8002408: 2b03 cmp r3, #3 - 800240a: d003 beq.n 8002414 + 8002450: 68bb ldr r3, [r7, #8] + 8002452: 2b02 cmp r3, #2 + 8002454: d903 bls.n 800245e + 8002456: 68bb ldr r3, [r7, #8] + 8002458: 2b03 cmp r3, #3 + 800245a: d003 beq.n 8002464 { status = HAL_ERROR; } break; default: break; - 800240c: e018 b.n 8002440 + 800245c: e018 b.n 8002490 status = HAL_ERROR; - 800240e: 2301 movs r3, #1 - 8002410: 73fb strb r3, [r7, #15] + 800245e: 2301 movs r3, #1 + 8002460: 73fb strb r3, [r7, #15] break; - 8002412: e015 b.n 8002440 + 8002462: e015 b.n 8002490 if ((hdma->Init.MemBurst & DMA_SxCR_MBURST_1) == DMA_SxCR_MBURST_1) - 8002414: 687b ldr r3, [r7, #4] - 8002416: 6adb ldr r3, [r3, #44] @ 0x2c - 8002418: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 - 800241c: 2b00 cmp r3, #0 - 800241e: d00e beq.n 800243e + 8002464: 687b ldr r3, [r7, #4] + 8002466: 6adb ldr r3, [r3, #44] @ 0x2c + 8002468: f003 7380 and.w r3, r3, #16777216 @ 0x1000000 + 800246c: 2b00 cmp r3, #0 + 800246e: d00e beq.n 800248e status = HAL_ERROR; - 8002420: 2301 movs r3, #1 - 8002422: 73fb strb r3, [r7, #15] + 8002470: 2301 movs r3, #1 + 8002472: 73fb strb r3, [r7, #15] break; - 8002424: e00b b.n 800243e + 8002474: e00b b.n 800248e break; - 8002426: bf00 nop - 8002428: e00a b.n 8002440 + 8002476: bf00 nop + 8002478: e00a b.n 8002490 break; - 800242a: bf00 nop - 800242c: e008 b.n 8002440 + 800247a: bf00 nop + 800247c: e008 b.n 8002490 break; - 800242e: bf00 nop - 8002430: e006 b.n 8002440 + 800247e: bf00 nop + 8002480: e006 b.n 8002490 break; - 8002432: bf00 nop - 8002434: e004 b.n 8002440 + 8002482: bf00 nop + 8002484: e004 b.n 8002490 break; - 8002436: bf00 nop - 8002438: e002 b.n 8002440 + 8002486: bf00 nop + 8002488: e002 b.n 8002490 break; - 800243a: bf00 nop - 800243c: e000 b.n 8002440 + 800248a: bf00 nop + 800248c: e000 b.n 8002490 break; - 800243e: bf00 nop + 800248e: bf00 nop } } return status; - 8002440: 7bfb ldrb r3, [r7, #15] + 8002490: 7bfb ldrb r3, [r7, #15] } - 8002442: 4618 mov r0, r3 - 8002444: 3714 adds r7, #20 - 8002446: 46bd mov sp, r7 - 8002448: f85d 7b04 ldr.w r7, [sp], #4 - 800244c: 4770 bx lr - 800244e: bf00 nop + 8002492: 4618 mov r0, r3 + 8002494: 3714 adds r7, #20 + 8002496: 46bd mov sp, r7 + 8002498: f85d 7b04 ldr.w r7, [sp], #4 + 800249c: 4770 bx lr + 800249e: bf00 nop -08002450 : +080024a0 : * @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) { - 8002450: b480 push {r7} - 8002452: b089 sub sp, #36 @ 0x24 - 8002454: af00 add r7, sp, #0 - 8002456: 6078 str r0, [r7, #4] - 8002458: 6039 str r1, [r7, #0] + 80024a0: b480 push {r7} + 80024a2: b089 sub sp, #36 @ 0x24 + 80024a4: af00 add r7, sp, #0 + 80024a6: 6078 str r0, [r7, #4] + 80024a8: 6039 str r1, [r7, #0] uint32_t position; uint32_t ioposition = 0x00U; - 800245a: 2300 movs r3, #0 - 800245c: 617b str r3, [r7, #20] + 80024aa: 2300 movs r3, #0 + 80024ac: 617b str r3, [r7, #20] uint32_t iocurrent = 0x00U; - 800245e: 2300 movs r3, #0 - 8002460: 613b str r3, [r7, #16] + 80024ae: 2300 movs r3, #0 + 80024b0: 613b str r3, [r7, #16] uint32_t temp = 0x00U; - 8002462: 2300 movs r3, #0 - 8002464: 61bb str r3, [r7, #24] + 80024b2: 2300 movs r3, #0 + 80024b4: 61bb str r3, [r7, #24] assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_GPIO_PIN(GPIO_Init->Pin)); assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); /* Configure the port pins */ for(position = 0U; position < GPIO_NUMBER; position++) - 8002466: 2300 movs r3, #0 - 8002468: 61fb str r3, [r7, #28] - 800246a: e165 b.n 8002738 + 80024b6: 2300 movs r3, #0 + 80024b8: 61fb str r3, [r7, #28] + 80024ba: e165 b.n 8002788 { /* Get the IO position */ ioposition = 0x01U << position; - 800246c: 2201 movs r2, #1 - 800246e: 69fb ldr r3, [r7, #28] - 8002470: fa02 f303 lsl.w r3, r2, r3 - 8002474: 617b str r3, [r7, #20] + 80024bc: 2201 movs r2, #1 + 80024be: 69fb ldr r3, [r7, #28] + 80024c0: fa02 f303 lsl.w r3, r2, r3 + 80024c4: 617b str r3, [r7, #20] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8002476: 683b ldr r3, [r7, #0] - 8002478: 681b ldr r3, [r3, #0] - 800247a: 697a ldr r2, [r7, #20] - 800247c: 4013 ands r3, r2 - 800247e: 613b str r3, [r7, #16] + 80024c6: 683b ldr r3, [r7, #0] + 80024c8: 681b ldr r3, [r3, #0] + 80024ca: 697a ldr r2, [r7, #20] + 80024cc: 4013 ands r3, r2 + 80024ce: 613b str r3, [r7, #16] if(iocurrent == ioposition) - 8002480: 693a ldr r2, [r7, #16] - 8002482: 697b ldr r3, [r7, #20] - 8002484: 429a cmp r2, r3 - 8002486: f040 8154 bne.w 8002732 + 80024d0: 693a ldr r2, [r7, #16] + 80024d2: 697b ldr r3, [r7, #20] + 80024d4: 429a cmp r2, r3 + 80024d6: f040 8154 bne.w 8002782 { /*--------------------- GPIO Mode Configuration ------------------------*/ /* In case of Output or Alternate function mode selection */ if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 800248a: 683b ldr r3, [r7, #0] - 800248c: 685b ldr r3, [r3, #4] - 800248e: f003 0303 and.w r3, r3, #3 - 8002492: 2b01 cmp r3, #1 - 8002494: d005 beq.n 80024a2 + 80024da: 683b ldr r3, [r7, #0] + 80024dc: 685b ldr r3, [r3, #4] + 80024de: f003 0303 and.w r3, r3, #3 + 80024e2: 2b01 cmp r3, #1 + 80024e4: d005 beq.n 80024f2 (GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8002496: 683b ldr r3, [r7, #0] - 8002498: 685b ldr r3, [r3, #4] - 800249a: f003 0303 and.w r3, r3, #3 + 80024e6: 683b ldr r3, [r7, #0] + 80024e8: 685b ldr r3, [r3, #4] + 80024ea: f003 0303 and.w r3, r3, #3 if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 800249e: 2b02 cmp r3, #2 - 80024a0: d130 bne.n 8002504 + 80024ee: 2b02 cmp r3, #2 + 80024f0: d130 bne.n 8002554 { /* Check the Speed parameter */ assert_param(IS_GPIO_SPEED(GPIO_Init->Speed)); /* Configure the IO Speed */ temp = GPIOx->OSPEEDR; - 80024a2: 687b ldr r3, [r7, #4] - 80024a4: 689b ldr r3, [r3, #8] - 80024a6: 61bb str r3, [r7, #24] + 80024f2: 687b ldr r3, [r7, #4] + 80024f4: 689b ldr r3, [r3, #8] + 80024f6: 61bb str r3, [r7, #24] temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); - 80024a8: 69fb ldr r3, [r7, #28] - 80024aa: 005b lsls r3, r3, #1 - 80024ac: 2203 movs r2, #3 - 80024ae: fa02 f303 lsl.w r3, r2, r3 - 80024b2: 43db mvns r3, r3 - 80024b4: 69ba ldr r2, [r7, #24] - 80024b6: 4013 ands r3, r2 - 80024b8: 61bb str r3, [r7, #24] + 80024f8: 69fb ldr r3, [r7, #28] + 80024fa: 005b lsls r3, r3, #1 + 80024fc: 2203 movs r2, #3 + 80024fe: fa02 f303 lsl.w r3, r2, r3 + 8002502: 43db mvns r3, r3 + 8002504: 69ba ldr r2, [r7, #24] + 8002506: 4013 ands r3, r2 + 8002508: 61bb str r3, [r7, #24] temp |= (GPIO_Init->Speed << (position * 2U)); - 80024ba: 683b ldr r3, [r7, #0] - 80024bc: 68da ldr r2, [r3, #12] - 80024be: 69fb ldr r3, [r7, #28] - 80024c0: 005b lsls r3, r3, #1 - 80024c2: fa02 f303 lsl.w r3, r2, r3 - 80024c6: 69ba ldr r2, [r7, #24] - 80024c8: 4313 orrs r3, r2 - 80024ca: 61bb str r3, [r7, #24] + 800250a: 683b ldr r3, [r7, #0] + 800250c: 68da ldr r2, [r3, #12] + 800250e: 69fb ldr r3, [r7, #28] + 8002510: 005b lsls r3, r3, #1 + 8002512: fa02 f303 lsl.w r3, r2, r3 + 8002516: 69ba ldr r2, [r7, #24] + 8002518: 4313 orrs r3, r2 + 800251a: 61bb str r3, [r7, #24] GPIOx->OSPEEDR = temp; - 80024cc: 687b ldr r3, [r7, #4] - 80024ce: 69ba ldr r2, [r7, #24] - 80024d0: 609a str r2, [r3, #8] + 800251c: 687b ldr r3, [r7, #4] + 800251e: 69ba ldr r2, [r7, #24] + 8002520: 609a str r2, [r3, #8] /* Configure the IO Output Type */ temp = GPIOx->OTYPER; - 80024d2: 687b ldr r3, [r7, #4] - 80024d4: 685b ldr r3, [r3, #4] - 80024d6: 61bb str r3, [r7, #24] + 8002522: 687b ldr r3, [r7, #4] + 8002524: 685b ldr r3, [r3, #4] + 8002526: 61bb str r3, [r7, #24] temp &= ~(GPIO_OTYPER_OT_0 << position) ; - 80024d8: 2201 movs r2, #1 - 80024da: 69fb ldr r3, [r7, #28] - 80024dc: fa02 f303 lsl.w r3, r2, r3 - 80024e0: 43db mvns r3, r3 - 80024e2: 69ba ldr r2, [r7, #24] - 80024e4: 4013 ands r3, r2 - 80024e6: 61bb str r3, [r7, #24] + 8002528: 2201 movs r2, #1 + 800252a: 69fb ldr r3, [r7, #28] + 800252c: fa02 f303 lsl.w r3, r2, r3 + 8002530: 43db mvns r3, r3 + 8002532: 69ba ldr r2, [r7, #24] + 8002534: 4013 ands r3, r2 + 8002536: 61bb str r3, [r7, #24] temp |= (((GPIO_Init->Mode & OUTPUT_TYPE) >> OUTPUT_TYPE_Pos) << position); - 80024e8: 683b ldr r3, [r7, #0] - 80024ea: 685b ldr r3, [r3, #4] - 80024ec: 091b lsrs r3, r3, #4 - 80024ee: f003 0201 and.w r2, r3, #1 - 80024f2: 69fb ldr r3, [r7, #28] - 80024f4: fa02 f303 lsl.w r3, r2, r3 - 80024f8: 69ba ldr r2, [r7, #24] - 80024fa: 4313 orrs r3, r2 - 80024fc: 61bb str r3, [r7, #24] + 8002538: 683b ldr r3, [r7, #0] + 800253a: 685b ldr r3, [r3, #4] + 800253c: 091b lsrs r3, r3, #4 + 800253e: f003 0201 and.w r2, r3, #1 + 8002542: 69fb ldr r3, [r7, #28] + 8002544: fa02 f303 lsl.w r3, r2, r3 + 8002548: 69ba ldr r2, [r7, #24] + 800254a: 4313 orrs r3, r2 + 800254c: 61bb str r3, [r7, #24] GPIOx->OTYPER = temp; - 80024fe: 687b ldr r3, [r7, #4] - 8002500: 69ba ldr r2, [r7, #24] - 8002502: 605a str r2, [r3, #4] + 800254e: 687b ldr r3, [r7, #4] + 8002550: 69ba ldr r2, [r7, #24] + 8002552: 605a str r2, [r3, #4] } if((GPIO_Init->Mode & GPIO_MODE) != MODE_ANALOG) - 8002504: 683b ldr r3, [r7, #0] - 8002506: 685b ldr r3, [r3, #4] - 8002508: f003 0303 and.w r3, r3, #3 - 800250c: 2b03 cmp r3, #3 - 800250e: d017 beq.n 8002540 + 8002554: 683b ldr r3, [r7, #0] + 8002556: 685b ldr r3, [r3, #4] + 8002558: f003 0303 and.w r3, r3, #3 + 800255c: 2b03 cmp r3, #3 + 800255e: d017 beq.n 8002590 { /* Check the parameters */ assert_param(IS_GPIO_PULL(GPIO_Init->Pull)); /* Activate the Pull-up or Pull down resistor for the current IO */ temp = GPIOx->PUPDR; - 8002510: 687b ldr r3, [r7, #4] - 8002512: 68db ldr r3, [r3, #12] - 8002514: 61bb str r3, [r7, #24] + 8002560: 687b ldr r3, [r7, #4] + 8002562: 68db ldr r3, [r3, #12] + 8002564: 61bb str r3, [r7, #24] temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); - 8002516: 69fb ldr r3, [r7, #28] - 8002518: 005b lsls r3, r3, #1 - 800251a: 2203 movs r2, #3 - 800251c: fa02 f303 lsl.w r3, r2, r3 - 8002520: 43db mvns r3, r3 - 8002522: 69ba ldr r2, [r7, #24] - 8002524: 4013 ands r3, r2 - 8002526: 61bb str r3, [r7, #24] + 8002566: 69fb ldr r3, [r7, #28] + 8002568: 005b lsls r3, r3, #1 + 800256a: 2203 movs r2, #3 + 800256c: fa02 f303 lsl.w r3, r2, r3 + 8002570: 43db mvns r3, r3 + 8002572: 69ba ldr r2, [r7, #24] + 8002574: 4013 ands r3, r2 + 8002576: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Pull) << (position * 2U)); - 8002528: 683b ldr r3, [r7, #0] - 800252a: 689a ldr r2, [r3, #8] - 800252c: 69fb ldr r3, [r7, #28] - 800252e: 005b lsls r3, r3, #1 - 8002530: fa02 f303 lsl.w r3, r2, r3 - 8002534: 69ba ldr r2, [r7, #24] - 8002536: 4313 orrs r3, r2 - 8002538: 61bb str r3, [r7, #24] + 8002578: 683b ldr r3, [r7, #0] + 800257a: 689a ldr r2, [r3, #8] + 800257c: 69fb ldr r3, [r7, #28] + 800257e: 005b lsls r3, r3, #1 + 8002580: fa02 f303 lsl.w r3, r2, r3 + 8002584: 69ba ldr r2, [r7, #24] + 8002586: 4313 orrs r3, r2 + 8002588: 61bb str r3, [r7, #24] GPIOx->PUPDR = temp; - 800253a: 687b ldr r3, [r7, #4] - 800253c: 69ba ldr r2, [r7, #24] - 800253e: 60da str r2, [r3, #12] + 800258a: 687b ldr r3, [r7, #4] + 800258c: 69ba ldr r2, [r7, #24] + 800258e: 60da str r2, [r3, #12] } /* In case of Alternate function mode selection */ if((GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8002540: 683b ldr r3, [r7, #0] - 8002542: 685b ldr r3, [r3, #4] - 8002544: f003 0303 and.w r3, r3, #3 - 8002548: 2b02 cmp r3, #2 - 800254a: d123 bne.n 8002594 + 8002590: 683b ldr r3, [r7, #0] + 8002592: 685b ldr r3, [r3, #4] + 8002594: f003 0303 and.w r3, r3, #3 + 8002598: 2b02 cmp r3, #2 + 800259a: d123 bne.n 80025e4 { /* Check the Alternate function parameter */ assert_param(IS_GPIO_AF(GPIO_Init->Alternate)); /* Configure Alternate function mapped with the current IO */ temp = GPIOx->AFR[position >> 3U]; - 800254c: 69fb ldr r3, [r7, #28] - 800254e: 08da lsrs r2, r3, #3 - 8002550: 687b ldr r3, [r7, #4] - 8002552: 3208 adds r2, #8 - 8002554: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8002558: 61bb str r3, [r7, #24] + 800259c: 69fb ldr r3, [r7, #28] + 800259e: 08da lsrs r2, r3, #3 + 80025a0: 687b ldr r3, [r7, #4] + 80025a2: 3208 adds r2, #8 + 80025a4: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80025a8: 61bb str r3, [r7, #24] temp &= ~(0xFU << ((uint32_t)(position & 0x07U) * 4U)) ; - 800255a: 69fb ldr r3, [r7, #28] - 800255c: f003 0307 and.w r3, r3, #7 - 8002560: 009b lsls r3, r3, #2 - 8002562: 220f movs r2, #15 - 8002564: fa02 f303 lsl.w r3, r2, r3 - 8002568: 43db mvns r3, r3 - 800256a: 69ba ldr r2, [r7, #24] - 800256c: 4013 ands r3, r2 - 800256e: 61bb str r3, [r7, #24] + 80025aa: 69fb ldr r3, [r7, #28] + 80025ac: f003 0307 and.w r3, r3, #7 + 80025b0: 009b lsls r3, r3, #2 + 80025b2: 220f movs r2, #15 + 80025b4: fa02 f303 lsl.w r3, r2, r3 + 80025b8: 43db mvns r3, r3 + 80025ba: 69ba ldr r2, [r7, #24] + 80025bc: 4013 ands r3, r2 + 80025be: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); - 8002570: 683b ldr r3, [r7, #0] - 8002572: 691a ldr r2, [r3, #16] - 8002574: 69fb ldr r3, [r7, #28] - 8002576: f003 0307 and.w r3, r3, #7 - 800257a: 009b lsls r3, r3, #2 - 800257c: fa02 f303 lsl.w r3, r2, r3 - 8002580: 69ba ldr r2, [r7, #24] - 8002582: 4313 orrs r3, r2 - 8002584: 61bb str r3, [r7, #24] + 80025c0: 683b ldr r3, [r7, #0] + 80025c2: 691a ldr r2, [r3, #16] + 80025c4: 69fb ldr r3, [r7, #28] + 80025c6: f003 0307 and.w r3, r3, #7 + 80025ca: 009b lsls r3, r3, #2 + 80025cc: fa02 f303 lsl.w r3, r2, r3 + 80025d0: 69ba ldr r2, [r7, #24] + 80025d2: 4313 orrs r3, r2 + 80025d4: 61bb str r3, [r7, #24] GPIOx->AFR[position >> 3U] = temp; - 8002586: 69fb ldr r3, [r7, #28] - 8002588: 08da lsrs r2, r3, #3 - 800258a: 687b ldr r3, [r7, #4] - 800258c: 3208 adds r2, #8 - 800258e: 69b9 ldr r1, [r7, #24] - 8002590: f843 1022 str.w r1, [r3, r2, lsl #2] + 80025d6: 69fb ldr r3, [r7, #28] + 80025d8: 08da lsrs r2, r3, #3 + 80025da: 687b ldr r3, [r7, #4] + 80025dc: 3208 adds r2, #8 + 80025de: 69b9 ldr r1, [r7, #24] + 80025e0: f843 1022 str.w r1, [r3, r2, lsl #2] } /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ temp = GPIOx->MODER; - 8002594: 687b ldr r3, [r7, #4] - 8002596: 681b ldr r3, [r3, #0] - 8002598: 61bb str r3, [r7, #24] + 80025e4: 687b ldr r3, [r7, #4] + 80025e6: 681b ldr r3, [r3, #0] + 80025e8: 61bb str r3, [r7, #24] temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); - 800259a: 69fb ldr r3, [r7, #28] - 800259c: 005b lsls r3, r3, #1 - 800259e: 2203 movs r2, #3 - 80025a0: fa02 f303 lsl.w r3, r2, r3 - 80025a4: 43db mvns r3, r3 - 80025a6: 69ba ldr r2, [r7, #24] - 80025a8: 4013 ands r3, r2 - 80025aa: 61bb str r3, [r7, #24] + 80025ea: 69fb ldr r3, [r7, #28] + 80025ec: 005b lsls r3, r3, #1 + 80025ee: 2203 movs r2, #3 + 80025f0: fa02 f303 lsl.w r3, r2, r3 + 80025f4: 43db mvns r3, r3 + 80025f6: 69ba ldr r2, [r7, #24] + 80025f8: 4013 ands r3, r2 + 80025fa: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); - 80025ac: 683b ldr r3, [r7, #0] - 80025ae: 685b ldr r3, [r3, #4] - 80025b0: f003 0203 and.w r2, r3, #3 - 80025b4: 69fb ldr r3, [r7, #28] - 80025b6: 005b lsls r3, r3, #1 - 80025b8: fa02 f303 lsl.w r3, r2, r3 - 80025bc: 69ba ldr r2, [r7, #24] - 80025be: 4313 orrs r3, r2 - 80025c0: 61bb str r3, [r7, #24] + 80025fc: 683b ldr r3, [r7, #0] + 80025fe: 685b ldr r3, [r3, #4] + 8002600: f003 0203 and.w r2, r3, #3 + 8002604: 69fb ldr r3, [r7, #28] + 8002606: 005b lsls r3, r3, #1 + 8002608: fa02 f303 lsl.w r3, r2, r3 + 800260c: 69ba ldr r2, [r7, #24] + 800260e: 4313 orrs r3, r2 + 8002610: 61bb str r3, [r7, #24] GPIOx->MODER = temp; - 80025c2: 687b ldr r3, [r7, #4] - 80025c4: 69ba ldr r2, [r7, #24] - 80025c6: 601a str r2, [r3, #0] + 8002612: 687b ldr r3, [r7, #4] + 8002614: 69ba ldr r2, [r7, #24] + 8002616: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if((GPIO_Init->Mode & EXTI_MODE) != 0x00U) - 80025c8: 683b ldr r3, [r7, #0] - 80025ca: 685b ldr r3, [r3, #4] - 80025cc: f403 3340 and.w r3, r3, #196608 @ 0x30000 - 80025d0: 2b00 cmp r3, #0 - 80025d2: f000 80ae beq.w 8002732 + 8002618: 683b ldr r3, [r7, #0] + 800261a: 685b ldr r3, [r3, #4] + 800261c: f403 3340 and.w r3, r3, #196608 @ 0x30000 + 8002620: 2b00 cmp r3, #0 + 8002622: f000 80ae beq.w 8002782 { /* Enable SYSCFG Clock */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 80025d6: 2300 movs r3, #0 - 80025d8: 60fb str r3, [r7, #12] - 80025da: 4b5d ldr r3, [pc, #372] @ (8002750 ) - 80025dc: 6c5b ldr r3, [r3, #68] @ 0x44 - 80025de: 4a5c ldr r2, [pc, #368] @ (8002750 ) - 80025e0: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 80025e4: 6453 str r3, [r2, #68] @ 0x44 - 80025e6: 4b5a ldr r3, [pc, #360] @ (8002750 ) - 80025e8: 6c5b ldr r3, [r3, #68] @ 0x44 - 80025ea: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 80025ee: 60fb str r3, [r7, #12] - 80025f0: 68fb ldr r3, [r7, #12] + 8002626: 2300 movs r3, #0 + 8002628: 60fb str r3, [r7, #12] + 800262a: 4b5d ldr r3, [pc, #372] @ (80027a0 ) + 800262c: 6c5b ldr r3, [r3, #68] @ 0x44 + 800262e: 4a5c ldr r2, [pc, #368] @ (80027a0 ) + 8002630: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 8002634: 6453 str r3, [r2, #68] @ 0x44 + 8002636: 4b5a ldr r3, [pc, #360] @ (80027a0 ) + 8002638: 6c5b ldr r3, [r3, #68] @ 0x44 + 800263a: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 800263e: 60fb str r3, [r7, #12] + 8002640: 68fb ldr r3, [r7, #12] temp = SYSCFG->EXTICR[position >> 2U]; - 80025f2: 4a58 ldr r2, [pc, #352] @ (8002754 ) - 80025f4: 69fb ldr r3, [r7, #28] - 80025f6: 089b lsrs r3, r3, #2 - 80025f8: 3302 adds r3, #2 - 80025fa: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 80025fe: 61bb str r3, [r7, #24] + 8002642: 4a58 ldr r2, [pc, #352] @ (80027a4 ) + 8002644: 69fb ldr r3, [r7, #28] + 8002646: 089b lsrs r3, r3, #2 + 8002648: 3302 adds r3, #2 + 800264a: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 800264e: 61bb str r3, [r7, #24] temp &= ~(0x0FU << (4U * (position & 0x03U))); - 8002600: 69fb ldr r3, [r7, #28] - 8002602: f003 0303 and.w r3, r3, #3 - 8002606: 009b lsls r3, r3, #2 - 8002608: 220f movs r2, #15 - 800260a: fa02 f303 lsl.w r3, r2, r3 - 800260e: 43db mvns r3, r3 - 8002610: 69ba ldr r2, [r7, #24] - 8002612: 4013 ands r3, r2 - 8002614: 61bb str r3, [r7, #24] + 8002650: 69fb ldr r3, [r7, #28] + 8002652: f003 0303 and.w r3, r3, #3 + 8002656: 009b lsls r3, r3, #2 + 8002658: 220f movs r2, #15 + 800265a: fa02 f303 lsl.w r3, r2, r3 + 800265e: 43db mvns r3, r3 + 8002660: 69ba ldr r2, [r7, #24] + 8002662: 4013 ands r3, r2 + 8002664: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4U * (position & 0x03U))); - 8002616: 687b ldr r3, [r7, #4] - 8002618: 4a4f ldr r2, [pc, #316] @ (8002758 ) - 800261a: 4293 cmp r3, r2 - 800261c: d025 beq.n 800266a - 800261e: 687b ldr r3, [r7, #4] - 8002620: 4a4e ldr r2, [pc, #312] @ (800275c ) - 8002622: 4293 cmp r3, r2 - 8002624: d01f beq.n 8002666 - 8002626: 687b ldr r3, [r7, #4] - 8002628: 4a4d ldr r2, [pc, #308] @ (8002760 ) - 800262a: 4293 cmp r3, r2 - 800262c: d019 beq.n 8002662 - 800262e: 687b ldr r3, [r7, #4] - 8002630: 4a4c ldr r2, [pc, #304] @ (8002764 ) - 8002632: 4293 cmp r3, r2 - 8002634: d013 beq.n 800265e - 8002636: 687b ldr r3, [r7, #4] - 8002638: 4a4b ldr r2, [pc, #300] @ (8002768 ) - 800263a: 4293 cmp r3, r2 - 800263c: d00d beq.n 800265a - 800263e: 687b ldr r3, [r7, #4] - 8002640: 4a4a ldr r2, [pc, #296] @ (800276c ) - 8002642: 4293 cmp r3, r2 - 8002644: d007 beq.n 8002656 - 8002646: 687b ldr r3, [r7, #4] - 8002648: 4a49 ldr r2, [pc, #292] @ (8002770 ) - 800264a: 4293 cmp r3, r2 - 800264c: d101 bne.n 8002652 - 800264e: 2306 movs r3, #6 - 8002650: e00c b.n 800266c - 8002652: 2307 movs r3, #7 - 8002654: e00a b.n 800266c - 8002656: 2305 movs r3, #5 - 8002658: e008 b.n 800266c - 800265a: 2304 movs r3, #4 - 800265c: e006 b.n 800266c - 800265e: 2303 movs r3, #3 - 8002660: e004 b.n 800266c - 8002662: 2302 movs r3, #2 - 8002664: e002 b.n 800266c - 8002666: 2301 movs r3, #1 - 8002668: e000 b.n 800266c - 800266a: 2300 movs r3, #0 - 800266c: 69fa ldr r2, [r7, #28] - 800266e: f002 0203 and.w r2, r2, #3 - 8002672: 0092 lsls r2, r2, #2 - 8002674: 4093 lsls r3, r2 - 8002676: 69ba ldr r2, [r7, #24] - 8002678: 4313 orrs r3, r2 - 800267a: 61bb str r3, [r7, #24] + 8002666: 687b ldr r3, [r7, #4] + 8002668: 4a4f ldr r2, [pc, #316] @ (80027a8 ) + 800266a: 4293 cmp r3, r2 + 800266c: d025 beq.n 80026ba + 800266e: 687b ldr r3, [r7, #4] + 8002670: 4a4e ldr r2, [pc, #312] @ (80027ac ) + 8002672: 4293 cmp r3, r2 + 8002674: d01f beq.n 80026b6 + 8002676: 687b ldr r3, [r7, #4] + 8002678: 4a4d ldr r2, [pc, #308] @ (80027b0 ) + 800267a: 4293 cmp r3, r2 + 800267c: d019 beq.n 80026b2 + 800267e: 687b ldr r3, [r7, #4] + 8002680: 4a4c ldr r2, [pc, #304] @ (80027b4 ) + 8002682: 4293 cmp r3, r2 + 8002684: d013 beq.n 80026ae + 8002686: 687b ldr r3, [r7, #4] + 8002688: 4a4b ldr r2, [pc, #300] @ (80027b8 ) + 800268a: 4293 cmp r3, r2 + 800268c: d00d beq.n 80026aa + 800268e: 687b ldr r3, [r7, #4] + 8002690: 4a4a ldr r2, [pc, #296] @ (80027bc ) + 8002692: 4293 cmp r3, r2 + 8002694: d007 beq.n 80026a6 + 8002696: 687b ldr r3, [r7, #4] + 8002698: 4a49 ldr r2, [pc, #292] @ (80027c0 ) + 800269a: 4293 cmp r3, r2 + 800269c: d101 bne.n 80026a2 + 800269e: 2306 movs r3, #6 + 80026a0: e00c b.n 80026bc + 80026a2: 2307 movs r3, #7 + 80026a4: e00a b.n 80026bc + 80026a6: 2305 movs r3, #5 + 80026a8: e008 b.n 80026bc + 80026aa: 2304 movs r3, #4 + 80026ac: e006 b.n 80026bc + 80026ae: 2303 movs r3, #3 + 80026b0: e004 b.n 80026bc + 80026b2: 2302 movs r3, #2 + 80026b4: e002 b.n 80026bc + 80026b6: 2301 movs r3, #1 + 80026b8: e000 b.n 80026bc + 80026ba: 2300 movs r3, #0 + 80026bc: 69fa ldr r2, [r7, #28] + 80026be: f002 0203 and.w r2, r2, #3 + 80026c2: 0092 lsls r2, r2, #2 + 80026c4: 4093 lsls r3, r2 + 80026c6: 69ba ldr r2, [r7, #24] + 80026c8: 4313 orrs r3, r2 + 80026ca: 61bb str r3, [r7, #24] SYSCFG->EXTICR[position >> 2U] = temp; - 800267c: 4935 ldr r1, [pc, #212] @ (8002754 ) - 800267e: 69fb ldr r3, [r7, #28] - 8002680: 089b lsrs r3, r3, #2 - 8002682: 3302 adds r3, #2 - 8002684: 69ba ldr r2, [r7, #24] - 8002686: f841 2023 str.w r2, [r1, r3, lsl #2] + 80026cc: 4935 ldr r1, [pc, #212] @ (80027a4 ) + 80026ce: 69fb ldr r3, [r7, #28] + 80026d0: 089b lsrs r3, r3, #2 + 80026d2: 3302 adds r3, #2 + 80026d4: 69ba ldr r2, [r7, #24] + 80026d6: f841 2023 str.w r2, [r1, r3, lsl #2] /* Clear Rising Falling edge configuration */ temp = EXTI->RTSR; - 800268a: 4b3a ldr r3, [pc, #232] @ (8002774 ) - 800268c: 689b ldr r3, [r3, #8] - 800268e: 61bb str r3, [r7, #24] + 80026da: 4b3a ldr r3, [pc, #232] @ (80027c4 ) + 80026dc: 689b ldr r3, [r3, #8] + 80026de: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8002690: 693b ldr r3, [r7, #16] - 8002692: 43db mvns r3, r3 - 8002694: 69ba ldr r2, [r7, #24] - 8002696: 4013 ands r3, r2 - 8002698: 61bb str r3, [r7, #24] + 80026e0: 693b ldr r3, [r7, #16] + 80026e2: 43db mvns r3, r3 + 80026e4: 69ba ldr r2, [r7, #24] + 80026e6: 4013 ands r3, r2 + 80026e8: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_RISING) != 0x00U) - 800269a: 683b ldr r3, [r7, #0] - 800269c: 685b ldr r3, [r3, #4] - 800269e: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 80026a2: 2b00 cmp r3, #0 - 80026a4: d003 beq.n 80026ae + 80026ea: 683b ldr r3, [r7, #0] + 80026ec: 685b ldr r3, [r3, #4] + 80026ee: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 80026f2: 2b00 cmp r3, #0 + 80026f4: d003 beq.n 80026fe { temp |= iocurrent; - 80026a6: 69ba ldr r2, [r7, #24] - 80026a8: 693b ldr r3, [r7, #16] - 80026aa: 4313 orrs r3, r2 - 80026ac: 61bb str r3, [r7, #24] + 80026f6: 69ba ldr r2, [r7, #24] + 80026f8: 693b ldr r3, [r7, #16] + 80026fa: 4313 orrs r3, r2 + 80026fc: 61bb str r3, [r7, #24] } EXTI->RTSR = temp; - 80026ae: 4a31 ldr r2, [pc, #196] @ (8002774 ) - 80026b0: 69bb ldr r3, [r7, #24] - 80026b2: 6093 str r3, [r2, #8] + 80026fe: 4a31 ldr r2, [pc, #196] @ (80027c4 ) + 8002700: 69bb ldr r3, [r7, #24] + 8002702: 6093 str r3, [r2, #8] temp = EXTI->FTSR; - 80026b4: 4b2f ldr r3, [pc, #188] @ (8002774 ) - 80026b6: 68db ldr r3, [r3, #12] - 80026b8: 61bb str r3, [r7, #24] + 8002704: 4b2f ldr r3, [pc, #188] @ (80027c4 ) + 8002706: 68db ldr r3, [r3, #12] + 8002708: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80026ba: 693b ldr r3, [r7, #16] - 80026bc: 43db mvns r3, r3 - 80026be: 69ba ldr r2, [r7, #24] - 80026c0: 4013 ands r3, r2 - 80026c2: 61bb str r3, [r7, #24] + 800270a: 693b ldr r3, [r7, #16] + 800270c: 43db mvns r3, r3 + 800270e: 69ba ldr r2, [r7, #24] + 8002710: 4013 ands r3, r2 + 8002712: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00U) - 80026c4: 683b ldr r3, [r7, #0] - 80026c6: 685b ldr r3, [r3, #4] - 80026c8: f403 1300 and.w r3, r3, #2097152 @ 0x200000 - 80026cc: 2b00 cmp r3, #0 - 80026ce: d003 beq.n 80026d8 + 8002714: 683b ldr r3, [r7, #0] + 8002716: 685b ldr r3, [r3, #4] + 8002718: f403 1300 and.w r3, r3, #2097152 @ 0x200000 + 800271c: 2b00 cmp r3, #0 + 800271e: d003 beq.n 8002728 { temp |= iocurrent; - 80026d0: 69ba ldr r2, [r7, #24] - 80026d2: 693b ldr r3, [r7, #16] - 80026d4: 4313 orrs r3, r2 - 80026d6: 61bb str r3, [r7, #24] + 8002720: 69ba ldr r2, [r7, #24] + 8002722: 693b ldr r3, [r7, #16] + 8002724: 4313 orrs r3, r2 + 8002726: 61bb str r3, [r7, #24] } EXTI->FTSR = temp; - 80026d8: 4a26 ldr r2, [pc, #152] @ (8002774 ) - 80026da: 69bb ldr r3, [r7, #24] - 80026dc: 60d3 str r3, [r2, #12] + 8002728: 4a26 ldr r2, [pc, #152] @ (80027c4 ) + 800272a: 69bb ldr r3, [r7, #24] + 800272c: 60d3 str r3, [r2, #12] temp = EXTI->EMR; - 80026de: 4b25 ldr r3, [pc, #148] @ (8002774 ) - 80026e0: 685b ldr r3, [r3, #4] - 80026e2: 61bb str r3, [r7, #24] + 800272e: 4b25 ldr r3, [pc, #148] @ (80027c4 ) + 8002730: 685b ldr r3, [r3, #4] + 8002732: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80026e4: 693b ldr r3, [r7, #16] - 80026e6: 43db mvns r3, r3 - 80026e8: 69ba ldr r2, [r7, #24] - 80026ea: 4013 ands r3, r2 - 80026ec: 61bb str r3, [r7, #24] + 8002734: 693b ldr r3, [r7, #16] + 8002736: 43db mvns r3, r3 + 8002738: 69ba ldr r2, [r7, #24] + 800273a: 4013 ands r3, r2 + 800273c: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_EVT) != 0x00U) - 80026ee: 683b ldr r3, [r7, #0] - 80026f0: 685b ldr r3, [r3, #4] - 80026f2: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 80026f6: 2b00 cmp r3, #0 - 80026f8: d003 beq.n 8002702 + 800273e: 683b ldr r3, [r7, #0] + 8002740: 685b ldr r3, [r3, #4] + 8002742: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8002746: 2b00 cmp r3, #0 + 8002748: d003 beq.n 8002752 { temp |= iocurrent; - 80026fa: 69ba ldr r2, [r7, #24] - 80026fc: 693b ldr r3, [r7, #16] - 80026fe: 4313 orrs r3, r2 - 8002700: 61bb str r3, [r7, #24] + 800274a: 69ba ldr r2, [r7, #24] + 800274c: 693b ldr r3, [r7, #16] + 800274e: 4313 orrs r3, r2 + 8002750: 61bb str r3, [r7, #24] } EXTI->EMR = temp; - 8002702: 4a1c ldr r2, [pc, #112] @ (8002774 ) - 8002704: 69bb ldr r3, [r7, #24] - 8002706: 6053 str r3, [r2, #4] + 8002752: 4a1c ldr r2, [pc, #112] @ (80027c4 ) + 8002754: 69bb ldr r3, [r7, #24] + 8002756: 6053 str r3, [r2, #4] /* Clear EXTI line configuration */ temp = EXTI->IMR; - 8002708: 4b1a ldr r3, [pc, #104] @ (8002774 ) - 800270a: 681b ldr r3, [r3, #0] - 800270c: 61bb str r3, [r7, #24] + 8002758: 4b1a ldr r3, [pc, #104] @ (80027c4 ) + 800275a: 681b ldr r3, [r3, #0] + 800275c: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 800270e: 693b ldr r3, [r7, #16] - 8002710: 43db mvns r3, r3 - 8002712: 69ba ldr r2, [r7, #24] - 8002714: 4013 ands r3, r2 - 8002716: 61bb str r3, [r7, #24] + 800275e: 693b ldr r3, [r7, #16] + 8002760: 43db mvns r3, r3 + 8002762: 69ba ldr r2, [r7, #24] + 8002764: 4013 ands r3, r2 + 8002766: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_IT) != 0x00U) - 8002718: 683b ldr r3, [r7, #0] - 800271a: 685b ldr r3, [r3, #4] - 800271c: f403 3380 and.w r3, r3, #65536 @ 0x10000 - 8002720: 2b00 cmp r3, #0 - 8002722: d003 beq.n 800272c + 8002768: 683b ldr r3, [r7, #0] + 800276a: 685b ldr r3, [r3, #4] + 800276c: f403 3380 and.w r3, r3, #65536 @ 0x10000 + 8002770: 2b00 cmp r3, #0 + 8002772: d003 beq.n 800277c { temp |= iocurrent; - 8002724: 69ba ldr r2, [r7, #24] - 8002726: 693b ldr r3, [r7, #16] - 8002728: 4313 orrs r3, r2 - 800272a: 61bb str r3, [r7, #24] + 8002774: 69ba ldr r2, [r7, #24] + 8002776: 693b ldr r3, [r7, #16] + 8002778: 4313 orrs r3, r2 + 800277a: 61bb str r3, [r7, #24] } EXTI->IMR = temp; - 800272c: 4a11 ldr r2, [pc, #68] @ (8002774 ) - 800272e: 69bb ldr r3, [r7, #24] - 8002730: 6013 str r3, [r2, #0] + 800277c: 4a11 ldr r2, [pc, #68] @ (80027c4 ) + 800277e: 69bb ldr r3, [r7, #24] + 8002780: 6013 str r3, [r2, #0] for(position = 0U; position < GPIO_NUMBER; position++) - 8002732: 69fb ldr r3, [r7, #28] - 8002734: 3301 adds r3, #1 - 8002736: 61fb str r3, [r7, #28] - 8002738: 69fb ldr r3, [r7, #28] - 800273a: 2b0f cmp r3, #15 - 800273c: f67f ae96 bls.w 800246c + 8002782: 69fb ldr r3, [r7, #28] + 8002784: 3301 adds r3, #1 + 8002786: 61fb str r3, [r7, #28] + 8002788: 69fb ldr r3, [r7, #28] + 800278a: 2b0f cmp r3, #15 + 800278c: f67f ae96 bls.w 80024bc } } } } - 8002740: bf00 nop - 8002742: bf00 nop - 8002744: 3724 adds r7, #36 @ 0x24 - 8002746: 46bd mov sp, r7 - 8002748: f85d 7b04 ldr.w r7, [sp], #4 - 800274c: 4770 bx lr - 800274e: bf00 nop - 8002750: 40023800 .word 0x40023800 - 8002754: 40013800 .word 0x40013800 - 8002758: 40020000 .word 0x40020000 - 800275c: 40020400 .word 0x40020400 - 8002760: 40020800 .word 0x40020800 - 8002764: 40020c00 .word 0x40020c00 - 8002768: 40021000 .word 0x40021000 - 800276c: 40021400 .word 0x40021400 - 8002770: 40021800 .word 0x40021800 - 8002774: 40013c00 .word 0x40013c00 + 8002790: bf00 nop + 8002792: bf00 nop + 8002794: 3724 adds r7, #36 @ 0x24 + 8002796: 46bd mov sp, r7 + 8002798: f85d 7b04 ldr.w r7, [sp], #4 + 800279c: 4770 bx lr + 800279e: bf00 nop + 80027a0: 40023800 .word 0x40023800 + 80027a4: 40013800 .word 0x40013800 + 80027a8: 40020000 .word 0x40020000 + 80027ac: 40020400 .word 0x40020400 + 80027b0: 40020800 .word 0x40020800 + 80027b4: 40020c00 .word 0x40020c00 + 80027b8: 40021000 .word 0x40021000 + 80027bc: 40021400 .word 0x40021400 + 80027c0: 40021800 .word 0x40021800 + 80027c4: 40013c00 .word 0x40013c00 -08002778 : +080027c8 : * @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) { - 8002778: b480 push {r7} - 800277a: b085 sub sp, #20 - 800277c: af00 add r7, sp, #0 - 800277e: 6078 str r0, [r7, #4] - 8002780: 460b mov r3, r1 - 8002782: 807b strh r3, [r7, #2] + 80027c8: b480 push {r7} + 80027ca: b085 sub sp, #20 + 80027cc: af00 add r7, sp, #0 + 80027ce: 6078 str r0, [r7, #4] + 80027d0: 460b mov r3, r1 + 80027d2: 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) - 8002784: 687b ldr r3, [r7, #4] - 8002786: 691a ldr r2, [r3, #16] - 8002788: 887b ldrh r3, [r7, #2] - 800278a: 4013 ands r3, r2 - 800278c: 2b00 cmp r3, #0 - 800278e: d002 beq.n 8002796 + 80027d4: 687b ldr r3, [r7, #4] + 80027d6: 691a ldr r2, [r3, #16] + 80027d8: 887b ldrh r3, [r7, #2] + 80027da: 4013 ands r3, r2 + 80027dc: 2b00 cmp r3, #0 + 80027de: d002 beq.n 80027e6 { bitstatus = GPIO_PIN_SET; - 8002790: 2301 movs r3, #1 - 8002792: 73fb strb r3, [r7, #15] - 8002794: e001 b.n 800279a + 80027e0: 2301 movs r3, #1 + 80027e2: 73fb strb r3, [r7, #15] + 80027e4: e001 b.n 80027ea } else { bitstatus = GPIO_PIN_RESET; - 8002796: 2300 movs r3, #0 - 8002798: 73fb strb r3, [r7, #15] + 80027e6: 2300 movs r3, #0 + 80027e8: 73fb strb r3, [r7, #15] } return bitstatus; - 800279a: 7bfb ldrb r3, [r7, #15] + 80027ea: 7bfb ldrb r3, [r7, #15] } - 800279c: 4618 mov r0, r3 - 800279e: 3714 adds r7, #20 - 80027a0: 46bd mov sp, r7 - 80027a2: f85d 7b04 ldr.w r7, [sp], #4 - 80027a6: 4770 bx lr + 80027ec: 4618 mov r0, r3 + 80027ee: 3714 adds r7, #20 + 80027f0: 46bd mov sp, r7 + 80027f2: f85d 7b04 ldr.w r7, [sp], #4 + 80027f6: 4770 bx lr -080027a8 : +080027f8 : * @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) { - 80027a8: b480 push {r7} - 80027aa: b083 sub sp, #12 - 80027ac: af00 add r7, sp, #0 - 80027ae: 6078 str r0, [r7, #4] - 80027b0: 460b mov r3, r1 - 80027b2: 807b strh r3, [r7, #2] - 80027b4: 4613 mov r3, r2 - 80027b6: 707b strb r3, [r7, #1] + 80027f8: b480 push {r7} + 80027fa: b083 sub sp, #12 + 80027fc: af00 add r7, sp, #0 + 80027fe: 6078 str r0, [r7, #4] + 8002800: 460b mov r3, r1 + 8002802: 807b strh r3, [r7, #2] + 8002804: 4613 mov r3, r2 + 8002806: 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) - 80027b8: 787b ldrb r3, [r7, #1] - 80027ba: 2b00 cmp r3, #0 - 80027bc: d003 beq.n 80027c6 + 8002808: 787b ldrb r3, [r7, #1] + 800280a: 2b00 cmp r3, #0 + 800280c: d003 beq.n 8002816 { GPIOx->BSRR = GPIO_Pin; - 80027be: 887a ldrh r2, [r7, #2] - 80027c0: 687b ldr r3, [r7, #4] - 80027c2: 619a str r2, [r3, #24] + 800280e: 887a ldrh r2, [r7, #2] + 8002810: 687b ldr r3, [r7, #4] + 8002812: 619a str r2, [r3, #24] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; } } - 80027c4: e003 b.n 80027ce + 8002814: e003 b.n 800281e GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; - 80027c6: 887b ldrh r3, [r7, #2] - 80027c8: 041a lsls r2, r3, #16 - 80027ca: 687b ldr r3, [r7, #4] - 80027cc: 619a str r2, [r3, #24] + 8002816: 887b ldrh r3, [r7, #2] + 8002818: 041a lsls r2, r3, #16 + 800281a: 687b ldr r3, [r7, #4] + 800281c: 619a str r2, [r3, #24] } - 80027ce: bf00 nop - 80027d0: 370c adds r7, #12 - 80027d2: 46bd mov sp, r7 - 80027d4: f85d 7b04 ldr.w r7, [sp], #4 - 80027d8: 4770 bx lr + 800281e: bf00 nop + 8002820: 370c adds r7, #12 + 8002822: 46bd mov sp, r7 + 8002824: f85d 7b04 ldr.w r7, [sp], #4 + 8002828: 4770 bx lr ... -080027dc : +0800282c : * @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) { - 80027dc: b580 push {r7, lr} - 80027de: b084 sub sp, #16 - 80027e0: af00 add r7, sp, #0 - 80027e2: 6078 str r0, [r7, #4] + 800282c: b580 push {r7, lr} + 800282e: b084 sub sp, #16 + 8002830: af00 add r7, sp, #0 + 8002832: 6078 str r0, [r7, #4] uint32_t freqrange; uint32_t pclk1; /* Check the I2C handle allocation */ if (hi2c == NULL) - 80027e4: 687b ldr r3, [r7, #4] - 80027e6: 2b00 cmp r3, #0 - 80027e8: d101 bne.n 80027ee + 8002834: 687b ldr r3, [r7, #4] + 8002836: 2b00 cmp r3, #0 + 8002838: d101 bne.n 800283e { return HAL_ERROR; - 80027ea: 2301 movs r3, #1 - 80027ec: e12b b.n 8002a46 + 800283a: 2301 movs r3, #1 + 800283c: e12b b.n 8002a96 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) - 80027ee: 687b ldr r3, [r7, #4] - 80027f0: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 80027f4: b2db uxtb r3, r3 - 80027f6: 2b00 cmp r3, #0 - 80027f8: d106 bne.n 8002808 + 800283e: 687b ldr r3, [r7, #4] + 8002840: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 8002844: b2db uxtb r3, r3 + 8002846: 2b00 cmp r3, #0 + 8002848: d106 bne.n 8002858 { /* Allocate lock resource and initialize it */ hi2c->Lock = HAL_UNLOCKED; - 80027fa: 687b ldr r3, [r7, #4] - 80027fc: 2200 movs r2, #0 - 80027fe: f883 203c strb.w r2, [r3, #60] @ 0x3c + 800284a: 687b ldr r3, [r7, #4] + 800284c: 2200 movs r2, #0 + 800284e: 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); - 8002802: 6878 ldr r0, [r7, #4] - 8002804: f7fd ffc8 bl 8000798 + 8002852: 6878 ldr r0, [r7, #4] + 8002854: f7fd ffa0 bl 8000798 #endif /* USE_HAL_I2C_REGISTER_CALLBACKS */ } hi2c->State = HAL_I2C_STATE_BUSY; - 8002808: 687b ldr r3, [r7, #4] - 800280a: 2224 movs r2, #36 @ 0x24 - 800280c: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8002858: 687b ldr r3, [r7, #4] + 800285a: 2224 movs r2, #36 @ 0x24 + 800285c: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Disable the selected I2C peripheral */ __HAL_I2C_DISABLE(hi2c); - 8002810: 687b ldr r3, [r7, #4] - 8002812: 681b ldr r3, [r3, #0] - 8002814: 681a ldr r2, [r3, #0] - 8002816: 687b ldr r3, [r7, #4] - 8002818: 681b ldr r3, [r3, #0] - 800281a: f022 0201 bic.w r2, r2, #1 - 800281e: 601a str r2, [r3, #0] + 8002860: 687b ldr r3, [r7, #4] + 8002862: 681b ldr r3, [r3, #0] + 8002864: 681a ldr r2, [r3, #0] + 8002866: 687b ldr r3, [r7, #4] + 8002868: 681b ldr r3, [r3, #0] + 800286a: f022 0201 bic.w r2, r2, #1 + 800286e: 601a str r2, [r3, #0] /*Reset I2C*/ hi2c->Instance->CR1 |= I2C_CR1_SWRST; - 8002820: 687b ldr r3, [r7, #4] - 8002822: 681b ldr r3, [r3, #0] - 8002824: 681a ldr r2, [r3, #0] - 8002826: 687b ldr r3, [r7, #4] - 8002828: 681b ldr r3, [r3, #0] - 800282a: f442 4200 orr.w r2, r2, #32768 @ 0x8000 - 800282e: 601a str r2, [r3, #0] + 8002870: 687b ldr r3, [r7, #4] + 8002872: 681b ldr r3, [r3, #0] + 8002874: 681a ldr r2, [r3, #0] + 8002876: 687b ldr r3, [r7, #4] + 8002878: 681b ldr r3, [r3, #0] + 800287a: f442 4200 orr.w r2, r2, #32768 @ 0x8000 + 800287e: 601a str r2, [r3, #0] hi2c->Instance->CR1 &= ~I2C_CR1_SWRST; - 8002830: 687b ldr r3, [r7, #4] - 8002832: 681b ldr r3, [r3, #0] - 8002834: 681a ldr r2, [r3, #0] - 8002836: 687b ldr r3, [r7, #4] - 8002838: 681b ldr r3, [r3, #0] - 800283a: f422 4200 bic.w r2, r2, #32768 @ 0x8000 - 800283e: 601a str r2, [r3, #0] + 8002880: 687b ldr r3, [r7, #4] + 8002882: 681b ldr r3, [r3, #0] + 8002884: 681a ldr r2, [r3, #0] + 8002886: 687b ldr r3, [r7, #4] + 8002888: 681b ldr r3, [r3, #0] + 800288a: f422 4200 bic.w r2, r2, #32768 @ 0x8000 + 800288e: 601a str r2, [r3, #0] /* Get PCLK1 frequency */ pclk1 = HAL_RCC_GetPCLK1Freq(); - 8002840: f001 fc88 bl 8004154 - 8002844: 60f8 str r0, [r7, #12] + 8002890: f001 fc88 bl 80041a4 + 8002894: 60f8 str r0, [r7, #12] /* Check the minimum allowed PCLK1 frequency */ if (I2C_MIN_PCLK_FREQ(pclk1, hi2c->Init.ClockSpeed) == 1U) - 8002846: 687b ldr r3, [r7, #4] - 8002848: 685b ldr r3, [r3, #4] - 800284a: 4a81 ldr r2, [pc, #516] @ (8002a50 ) - 800284c: 4293 cmp r3, r2 - 800284e: d807 bhi.n 8002860 - 8002850: 68fb ldr r3, [r7, #12] - 8002852: 4a80 ldr r2, [pc, #512] @ (8002a54 ) - 8002854: 4293 cmp r3, r2 - 8002856: bf94 ite ls - 8002858: 2301 movls r3, #1 - 800285a: 2300 movhi r3, #0 - 800285c: b2db uxtb r3, r3 - 800285e: e006 b.n 800286e - 8002860: 68fb ldr r3, [r7, #12] - 8002862: 4a7d ldr r2, [pc, #500] @ (8002a58 ) - 8002864: 4293 cmp r3, r2 - 8002866: bf94 ite ls - 8002868: 2301 movls r3, #1 - 800286a: 2300 movhi r3, #0 - 800286c: b2db uxtb r3, r3 - 800286e: 2b00 cmp r3, #0 - 8002870: d001 beq.n 8002876 + 8002896: 687b ldr r3, [r7, #4] + 8002898: 685b ldr r3, [r3, #4] + 800289a: 4a81 ldr r2, [pc, #516] @ (8002aa0 ) + 800289c: 4293 cmp r3, r2 + 800289e: d807 bhi.n 80028b0 + 80028a0: 68fb ldr r3, [r7, #12] + 80028a2: 4a80 ldr r2, [pc, #512] @ (8002aa4 ) + 80028a4: 4293 cmp r3, r2 + 80028a6: bf94 ite ls + 80028a8: 2301 movls r3, #1 + 80028aa: 2300 movhi r3, #0 + 80028ac: b2db uxtb r3, r3 + 80028ae: e006 b.n 80028be + 80028b0: 68fb ldr r3, [r7, #12] + 80028b2: 4a7d ldr r2, [pc, #500] @ (8002aa8 ) + 80028b4: 4293 cmp r3, r2 + 80028b6: bf94 ite ls + 80028b8: 2301 movls r3, #1 + 80028ba: 2300 movhi r3, #0 + 80028bc: b2db uxtb r3, r3 + 80028be: 2b00 cmp r3, #0 + 80028c0: d001 beq.n 80028c6 { return HAL_ERROR; - 8002872: 2301 movs r3, #1 - 8002874: e0e7 b.n 8002a46 + 80028c2: 2301 movs r3, #1 + 80028c4: e0e7 b.n 8002a96 } /* Calculate frequency range */ freqrange = I2C_FREQRANGE(pclk1); - 8002876: 68fb ldr r3, [r7, #12] - 8002878: 4a78 ldr r2, [pc, #480] @ (8002a5c ) - 800287a: fba2 2303 umull r2, r3, r2, r3 - 800287e: 0c9b lsrs r3, r3, #18 - 8002880: 60bb str r3, [r7, #8] + 80028c6: 68fb ldr r3, [r7, #12] + 80028c8: 4a78 ldr r2, [pc, #480] @ (8002aac ) + 80028ca: fba2 2303 umull r2, r3, r2, r3 + 80028ce: 0c9b lsrs r3, r3, #18 + 80028d0: 60bb str r3, [r7, #8] /*---------------------------- I2Cx CR2 Configuration ----------------------*/ /* Configure I2Cx: Frequency range */ MODIFY_REG(hi2c->Instance->CR2, I2C_CR2_FREQ, freqrange); - 8002882: 687b ldr r3, [r7, #4] - 8002884: 681b ldr r3, [r3, #0] - 8002886: 685b ldr r3, [r3, #4] - 8002888: f023 013f bic.w r1, r3, #63 @ 0x3f - 800288c: 687b ldr r3, [r7, #4] - 800288e: 681b ldr r3, [r3, #0] - 8002890: 68ba ldr r2, [r7, #8] - 8002892: 430a orrs r2, r1 - 8002894: 605a str r2, [r3, #4] + 80028d2: 687b ldr r3, [r7, #4] + 80028d4: 681b ldr r3, [r3, #0] + 80028d6: 685b ldr r3, [r3, #4] + 80028d8: f023 013f bic.w r1, r3, #63 @ 0x3f + 80028dc: 687b ldr r3, [r7, #4] + 80028de: 681b ldr r3, [r3, #0] + 80028e0: 68ba ldr r2, [r7, #8] + 80028e2: 430a orrs r2, r1 + 80028e4: 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)); - 8002896: 687b ldr r3, [r7, #4] - 8002898: 681b ldr r3, [r3, #0] - 800289a: 6a1b ldr r3, [r3, #32] - 800289c: f023 013f bic.w r1, r3, #63 @ 0x3f - 80028a0: 687b ldr r3, [r7, #4] - 80028a2: 685b ldr r3, [r3, #4] - 80028a4: 4a6a ldr r2, [pc, #424] @ (8002a50 ) - 80028a6: 4293 cmp r3, r2 - 80028a8: d802 bhi.n 80028b0 - 80028aa: 68bb ldr r3, [r7, #8] - 80028ac: 3301 adds r3, #1 - 80028ae: e009 b.n 80028c4 - 80028b0: 68bb ldr r3, [r7, #8] - 80028b2: f44f 7296 mov.w r2, #300 @ 0x12c - 80028b6: fb02 f303 mul.w r3, r2, r3 - 80028ba: 4a69 ldr r2, [pc, #420] @ (8002a60 ) - 80028bc: fba2 2303 umull r2, r3, r2, r3 - 80028c0: 099b lsrs r3, r3, #6 - 80028c2: 3301 adds r3, #1 - 80028c4: 687a ldr r2, [r7, #4] - 80028c6: 6812 ldr r2, [r2, #0] - 80028c8: 430b orrs r3, r1 - 80028ca: 6213 str r3, [r2, #32] + 80028e6: 687b ldr r3, [r7, #4] + 80028e8: 681b ldr r3, [r3, #0] + 80028ea: 6a1b ldr r3, [r3, #32] + 80028ec: f023 013f bic.w r1, r3, #63 @ 0x3f + 80028f0: 687b ldr r3, [r7, #4] + 80028f2: 685b ldr r3, [r3, #4] + 80028f4: 4a6a ldr r2, [pc, #424] @ (8002aa0 ) + 80028f6: 4293 cmp r3, r2 + 80028f8: d802 bhi.n 8002900 + 80028fa: 68bb ldr r3, [r7, #8] + 80028fc: 3301 adds r3, #1 + 80028fe: e009 b.n 8002914 + 8002900: 68bb ldr r3, [r7, #8] + 8002902: f44f 7296 mov.w r2, #300 @ 0x12c + 8002906: fb02 f303 mul.w r3, r2, r3 + 800290a: 4a69 ldr r2, [pc, #420] @ (8002ab0 ) + 800290c: fba2 2303 umull r2, r3, r2, r3 + 8002910: 099b lsrs r3, r3, #6 + 8002912: 3301 adds r3, #1 + 8002914: 687a ldr r2, [r7, #4] + 8002916: 6812 ldr r2, [r2, #0] + 8002918: 430b orrs r3, r1 + 800291a: 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)); - 80028cc: 687b ldr r3, [r7, #4] - 80028ce: 681b ldr r3, [r3, #0] - 80028d0: 69db ldr r3, [r3, #28] - 80028d2: f423 424f bic.w r2, r3, #52992 @ 0xcf00 - 80028d6: f022 02ff bic.w r2, r2, #255 @ 0xff - 80028da: 687b ldr r3, [r7, #4] - 80028dc: 685b ldr r3, [r3, #4] - 80028de: 495c ldr r1, [pc, #368] @ (8002a50 ) - 80028e0: 428b cmp r3, r1 - 80028e2: d819 bhi.n 8002918 - 80028e4: 68fb ldr r3, [r7, #12] - 80028e6: 1e59 subs r1, r3, #1 - 80028e8: 687b ldr r3, [r7, #4] - 80028ea: 685b ldr r3, [r3, #4] - 80028ec: 005b lsls r3, r3, #1 - 80028ee: fbb1 f3f3 udiv r3, r1, r3 - 80028f2: 1c59 adds r1, r3, #1 - 80028f4: f640 73fc movw r3, #4092 @ 0xffc - 80028f8: 400b ands r3, r1 - 80028fa: 2b00 cmp r3, #0 - 80028fc: d00a beq.n 8002914 - 80028fe: 68fb ldr r3, [r7, #12] - 8002900: 1e59 subs r1, r3, #1 - 8002902: 687b ldr r3, [r7, #4] - 8002904: 685b ldr r3, [r3, #4] - 8002906: 005b lsls r3, r3, #1 - 8002908: fbb1 f3f3 udiv r3, r1, r3 - 800290c: 3301 adds r3, #1 - 800290e: f3c3 030b ubfx r3, r3, #0, #12 - 8002912: e051 b.n 80029b8 - 8002914: 2304 movs r3, #4 - 8002916: e04f b.n 80029b8 - 8002918: 687b ldr r3, [r7, #4] - 800291a: 689b ldr r3, [r3, #8] - 800291c: 2b00 cmp r3, #0 - 800291e: d111 bne.n 8002944 - 8002920: 68fb ldr r3, [r7, #12] - 8002922: 1e58 subs r0, r3, #1 - 8002924: 687b ldr r3, [r7, #4] - 8002926: 6859 ldr r1, [r3, #4] - 8002928: 460b mov r3, r1 - 800292a: 005b lsls r3, r3, #1 - 800292c: 440b add r3, r1 - 800292e: fbb0 f3f3 udiv r3, r0, r3 - 8002932: 3301 adds r3, #1 - 8002934: f3c3 030b ubfx r3, r3, #0, #12 - 8002938: 2b00 cmp r3, #0 - 800293a: bf0c ite eq - 800293c: 2301 moveq r3, #1 - 800293e: 2300 movne r3, #0 - 8002940: b2db uxtb r3, r3 - 8002942: e012 b.n 800296a - 8002944: 68fb ldr r3, [r7, #12] - 8002946: 1e58 subs r0, r3, #1 - 8002948: 687b ldr r3, [r7, #4] - 800294a: 6859 ldr r1, [r3, #4] - 800294c: 460b mov r3, r1 - 800294e: 009b lsls r3, r3, #2 - 8002950: 440b add r3, r1 - 8002952: 0099 lsls r1, r3, #2 - 8002954: 440b add r3, r1 - 8002956: fbb0 f3f3 udiv r3, r0, r3 - 800295a: 3301 adds r3, #1 - 800295c: f3c3 030b ubfx r3, r3, #0, #12 - 8002960: 2b00 cmp r3, #0 - 8002962: bf0c ite eq - 8002964: 2301 moveq r3, #1 - 8002966: 2300 movne r3, #0 - 8002968: b2db uxtb r3, r3 - 800296a: 2b00 cmp r3, #0 - 800296c: d001 beq.n 8002972 - 800296e: 2301 movs r3, #1 - 8002970: e022 b.n 80029b8 - 8002972: 687b ldr r3, [r7, #4] - 8002974: 689b ldr r3, [r3, #8] - 8002976: 2b00 cmp r3, #0 - 8002978: d10e bne.n 8002998 - 800297a: 68fb ldr r3, [r7, #12] - 800297c: 1e58 subs r0, r3, #1 - 800297e: 687b ldr r3, [r7, #4] - 8002980: 6859 ldr r1, [r3, #4] - 8002982: 460b mov r3, r1 - 8002984: 005b lsls r3, r3, #1 - 8002986: 440b add r3, r1 - 8002988: fbb0 f3f3 udiv r3, r0, r3 - 800298c: 3301 adds r3, #1 - 800298e: f3c3 030b ubfx r3, r3, #0, #12 - 8002992: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 8002996: e00f b.n 80029b8 - 8002998: 68fb ldr r3, [r7, #12] - 800299a: 1e58 subs r0, r3, #1 - 800299c: 687b ldr r3, [r7, #4] - 800299e: 6859 ldr r1, [r3, #4] - 80029a0: 460b mov r3, r1 - 80029a2: 009b lsls r3, r3, #2 + 800291c: 687b ldr r3, [r7, #4] + 800291e: 681b ldr r3, [r3, #0] + 8002920: 69db ldr r3, [r3, #28] + 8002922: f423 424f bic.w r2, r3, #52992 @ 0xcf00 + 8002926: f022 02ff bic.w r2, r2, #255 @ 0xff + 800292a: 687b ldr r3, [r7, #4] + 800292c: 685b ldr r3, [r3, #4] + 800292e: 495c ldr r1, [pc, #368] @ (8002aa0 ) + 8002930: 428b cmp r3, r1 + 8002932: d819 bhi.n 8002968 + 8002934: 68fb ldr r3, [r7, #12] + 8002936: 1e59 subs r1, r3, #1 + 8002938: 687b ldr r3, [r7, #4] + 800293a: 685b ldr r3, [r3, #4] + 800293c: 005b lsls r3, r3, #1 + 800293e: fbb1 f3f3 udiv r3, r1, r3 + 8002942: 1c59 adds r1, r3, #1 + 8002944: f640 73fc movw r3, #4092 @ 0xffc + 8002948: 400b ands r3, r1 + 800294a: 2b00 cmp r3, #0 + 800294c: d00a beq.n 8002964 + 800294e: 68fb ldr r3, [r7, #12] + 8002950: 1e59 subs r1, r3, #1 + 8002952: 687b ldr r3, [r7, #4] + 8002954: 685b ldr r3, [r3, #4] + 8002956: 005b lsls r3, r3, #1 + 8002958: fbb1 f3f3 udiv r3, r1, r3 + 800295c: 3301 adds r3, #1 + 800295e: f3c3 030b ubfx r3, r3, #0, #12 + 8002962: e051 b.n 8002a08 + 8002964: 2304 movs r3, #4 + 8002966: e04f b.n 8002a08 + 8002968: 687b ldr r3, [r7, #4] + 800296a: 689b ldr r3, [r3, #8] + 800296c: 2b00 cmp r3, #0 + 800296e: d111 bne.n 8002994 + 8002970: 68fb ldr r3, [r7, #12] + 8002972: 1e58 subs r0, r3, #1 + 8002974: 687b ldr r3, [r7, #4] + 8002976: 6859 ldr r1, [r3, #4] + 8002978: 460b mov r3, r1 + 800297a: 005b lsls r3, r3, #1 + 800297c: 440b add r3, r1 + 800297e: fbb0 f3f3 udiv r3, r0, r3 + 8002982: 3301 adds r3, #1 + 8002984: f3c3 030b ubfx r3, r3, #0, #12 + 8002988: 2b00 cmp r3, #0 + 800298a: bf0c ite eq + 800298c: 2301 moveq r3, #1 + 800298e: 2300 movne r3, #0 + 8002990: b2db uxtb r3, r3 + 8002992: e012 b.n 80029ba + 8002994: 68fb ldr r3, [r7, #12] + 8002996: 1e58 subs r0, r3, #1 + 8002998: 687b ldr r3, [r7, #4] + 800299a: 6859 ldr r1, [r3, #4] + 800299c: 460b mov r3, r1 + 800299e: 009b lsls r3, r3, #2 + 80029a0: 440b add r3, r1 + 80029a2: 0099 lsls r1, r3, #2 80029a4: 440b add r3, r1 - 80029a6: 0099 lsls r1, r3, #2 - 80029a8: 440b add r3, r1 - 80029aa: fbb0 f3f3 udiv r3, r0, r3 - 80029ae: 3301 adds r3, #1 - 80029b0: f3c3 030b ubfx r3, r3, #0, #12 - 80029b4: f443 4340 orr.w r3, r3, #49152 @ 0xc000 - 80029b8: 6879 ldr r1, [r7, #4] - 80029ba: 6809 ldr r1, [r1, #0] - 80029bc: 4313 orrs r3, r2 - 80029be: 61cb str r3, [r1, #28] + 80029a6: fbb0 f3f3 udiv r3, r0, r3 + 80029aa: 3301 adds r3, #1 + 80029ac: f3c3 030b ubfx r3, r3, #0, #12 + 80029b0: 2b00 cmp r3, #0 + 80029b2: bf0c ite eq + 80029b4: 2301 moveq r3, #1 + 80029b6: 2300 movne r3, #0 + 80029b8: b2db uxtb r3, r3 + 80029ba: 2b00 cmp r3, #0 + 80029bc: d001 beq.n 80029c2 + 80029be: 2301 movs r3, #1 + 80029c0: e022 b.n 8002a08 + 80029c2: 687b ldr r3, [r7, #4] + 80029c4: 689b ldr r3, [r3, #8] + 80029c6: 2b00 cmp r3, #0 + 80029c8: d10e bne.n 80029e8 + 80029ca: 68fb ldr r3, [r7, #12] + 80029cc: 1e58 subs r0, r3, #1 + 80029ce: 687b ldr r3, [r7, #4] + 80029d0: 6859 ldr r1, [r3, #4] + 80029d2: 460b mov r3, r1 + 80029d4: 005b lsls r3, r3, #1 + 80029d6: 440b add r3, r1 + 80029d8: fbb0 f3f3 udiv r3, r0, r3 + 80029dc: 3301 adds r3, #1 + 80029de: f3c3 030b ubfx r3, r3, #0, #12 + 80029e2: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 80029e6: e00f b.n 8002a08 + 80029e8: 68fb ldr r3, [r7, #12] + 80029ea: 1e58 subs r0, r3, #1 + 80029ec: 687b ldr r3, [r7, #4] + 80029ee: 6859 ldr r1, [r3, #4] + 80029f0: 460b mov r3, r1 + 80029f2: 009b lsls r3, r3, #2 + 80029f4: 440b add r3, r1 + 80029f6: 0099 lsls r1, r3, #2 + 80029f8: 440b add r3, r1 + 80029fa: fbb0 f3f3 udiv r3, r0, r3 + 80029fe: 3301 adds r3, #1 + 8002a00: f3c3 030b ubfx r3, r3, #0, #12 + 8002a04: f443 4340 orr.w r3, r3, #49152 @ 0xc000 + 8002a08: 6879 ldr r1, [r7, #4] + 8002a0a: 6809 ldr r1, [r1, #0] + 8002a0c: 4313 orrs r3, r2 + 8002a0e: 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)); - 80029c0: 687b ldr r3, [r7, #4] - 80029c2: 681b ldr r3, [r3, #0] - 80029c4: 681b ldr r3, [r3, #0] - 80029c6: f023 01c0 bic.w r1, r3, #192 @ 0xc0 - 80029ca: 687b ldr r3, [r7, #4] - 80029cc: 69da ldr r2, [r3, #28] - 80029ce: 687b ldr r3, [r7, #4] - 80029d0: 6a1b ldr r3, [r3, #32] - 80029d2: 431a orrs r2, r3 - 80029d4: 687b ldr r3, [r7, #4] - 80029d6: 681b ldr r3, [r3, #0] - 80029d8: 430a orrs r2, r1 - 80029da: 601a str r2, [r3, #0] + 8002a10: 687b ldr r3, [r7, #4] + 8002a12: 681b ldr r3, [r3, #0] + 8002a14: 681b ldr r3, [r3, #0] + 8002a16: f023 01c0 bic.w r1, r3, #192 @ 0xc0 + 8002a1a: 687b ldr r3, [r7, #4] + 8002a1c: 69da ldr r2, [r3, #28] + 8002a1e: 687b ldr r3, [r7, #4] + 8002a20: 6a1b ldr r3, [r3, #32] + 8002a22: 431a orrs r2, r3 + 8002a24: 687b ldr r3, [r7, #4] + 8002a26: 681b ldr r3, [r3, #0] + 8002a28: 430a orrs r2, r1 + 8002a2a: 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)); - 80029dc: 687b ldr r3, [r7, #4] - 80029de: 681b ldr r3, [r3, #0] - 80029e0: 689b ldr r3, [r3, #8] - 80029e2: f423 4303 bic.w r3, r3, #33536 @ 0x8300 - 80029e6: f023 03ff bic.w r3, r3, #255 @ 0xff - 80029ea: 687a ldr r2, [r7, #4] - 80029ec: 6911 ldr r1, [r2, #16] - 80029ee: 687a ldr r2, [r7, #4] - 80029f0: 68d2 ldr r2, [r2, #12] - 80029f2: 4311 orrs r1, r2 - 80029f4: 687a ldr r2, [r7, #4] - 80029f6: 6812 ldr r2, [r2, #0] - 80029f8: 430b orrs r3, r1 - 80029fa: 6093 str r3, [r2, #8] + 8002a2c: 687b ldr r3, [r7, #4] + 8002a2e: 681b ldr r3, [r3, #0] + 8002a30: 689b ldr r3, [r3, #8] + 8002a32: f423 4303 bic.w r3, r3, #33536 @ 0x8300 + 8002a36: f023 03ff bic.w r3, r3, #255 @ 0xff + 8002a3a: 687a ldr r2, [r7, #4] + 8002a3c: 6911 ldr r1, [r2, #16] + 8002a3e: 687a ldr r2, [r7, #4] + 8002a40: 68d2 ldr r2, [r2, #12] + 8002a42: 4311 orrs r1, r2 + 8002a44: 687a ldr r2, [r7, #4] + 8002a46: 6812 ldr r2, [r2, #0] + 8002a48: 430b orrs r3, r1 + 8002a4a: 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)); - 80029fc: 687b ldr r3, [r7, #4] - 80029fe: 681b ldr r3, [r3, #0] - 8002a00: 68db ldr r3, [r3, #12] - 8002a02: f023 01ff bic.w r1, r3, #255 @ 0xff - 8002a06: 687b ldr r3, [r7, #4] - 8002a08: 695a ldr r2, [r3, #20] - 8002a0a: 687b ldr r3, [r7, #4] - 8002a0c: 699b ldr r3, [r3, #24] - 8002a0e: 431a orrs r2, r3 - 8002a10: 687b ldr r3, [r7, #4] - 8002a12: 681b ldr r3, [r3, #0] - 8002a14: 430a orrs r2, r1 - 8002a16: 60da str r2, [r3, #12] + 8002a4c: 687b ldr r3, [r7, #4] + 8002a4e: 681b ldr r3, [r3, #0] + 8002a50: 68db ldr r3, [r3, #12] + 8002a52: f023 01ff bic.w r1, r3, #255 @ 0xff + 8002a56: 687b ldr r3, [r7, #4] + 8002a58: 695a ldr r2, [r3, #20] + 8002a5a: 687b ldr r3, [r7, #4] + 8002a5c: 699b ldr r3, [r3, #24] + 8002a5e: 431a orrs r2, r3 + 8002a60: 687b ldr r3, [r7, #4] + 8002a62: 681b ldr r3, [r3, #0] + 8002a64: 430a orrs r2, r1 + 8002a66: 60da str r2, [r3, #12] /* Enable the selected I2C peripheral */ __HAL_I2C_ENABLE(hi2c); - 8002a18: 687b ldr r3, [r7, #4] - 8002a1a: 681b ldr r3, [r3, #0] - 8002a1c: 681a ldr r2, [r3, #0] - 8002a1e: 687b ldr r3, [r7, #4] - 8002a20: 681b ldr r3, [r3, #0] - 8002a22: f042 0201 orr.w r2, r2, #1 - 8002a26: 601a str r2, [r3, #0] + 8002a68: 687b ldr r3, [r7, #4] + 8002a6a: 681b ldr r3, [r3, #0] + 8002a6c: 681a ldr r2, [r3, #0] + 8002a6e: 687b ldr r3, [r7, #4] + 8002a70: 681b ldr r3, [r3, #0] + 8002a72: f042 0201 orr.w r2, r2, #1 + 8002a76: 601a str r2, [r3, #0] hi2c->ErrorCode = HAL_I2C_ERROR_NONE; - 8002a28: 687b ldr r3, [r7, #4] - 8002a2a: 2200 movs r2, #0 - 8002a2c: 641a str r2, [r3, #64] @ 0x40 + 8002a78: 687b ldr r3, [r7, #4] + 8002a7a: 2200 movs r2, #0 + 8002a7c: 641a str r2, [r3, #64] @ 0x40 hi2c->State = HAL_I2C_STATE_READY; - 8002a2e: 687b ldr r3, [r7, #4] - 8002a30: 2220 movs r2, #32 - 8002a32: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8002a7e: 687b ldr r3, [r7, #4] + 8002a80: 2220 movs r2, #32 + 8002a82: f883 203d strb.w r2, [r3, #61] @ 0x3d hi2c->PreviousState = I2C_STATE_NONE; - 8002a36: 687b ldr r3, [r7, #4] - 8002a38: 2200 movs r2, #0 - 8002a3a: 631a str r2, [r3, #48] @ 0x30 + 8002a86: 687b ldr r3, [r7, #4] + 8002a88: 2200 movs r2, #0 + 8002a8a: 631a str r2, [r3, #48] @ 0x30 hi2c->Mode = HAL_I2C_MODE_NONE; - 8002a3c: 687b ldr r3, [r7, #4] - 8002a3e: 2200 movs r2, #0 - 8002a40: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8002a8c: 687b ldr r3, [r7, #4] + 8002a8e: 2200 movs r2, #0 + 8002a90: f883 203e strb.w r2, [r3, #62] @ 0x3e return HAL_OK; - 8002a44: 2300 movs r3, #0 + 8002a94: 2300 movs r3, #0 } - 8002a46: 4618 mov r0, r3 - 8002a48: 3710 adds r7, #16 - 8002a4a: 46bd mov sp, r7 - 8002a4c: bd80 pop {r7, pc} - 8002a4e: bf00 nop - 8002a50: 000186a0 .word 0x000186a0 - 8002a54: 001e847f .word 0x001e847f - 8002a58: 003d08ff .word 0x003d08ff - 8002a5c: 431bde83 .word 0x431bde83 - 8002a60: 10624dd3 .word 0x10624dd3 + 8002a96: 4618 mov r0, r3 + 8002a98: 3710 adds r7, #16 + 8002a9a: 46bd mov sp, r7 + 8002a9c: bd80 pop {r7, pc} + 8002a9e: bf00 nop + 8002aa0: 000186a0 .word 0x000186a0 + 8002aa4: 001e847f .word 0x001e847f + 8002aa8: 003d08ff .word 0x003d08ff + 8002aac: 431bde83 .word 0x431bde83 + 8002ab0: 10624dd3 .word 0x10624dd3 -08002a64 : +08002ab4 : * parameters in the PCD_InitTypeDef and initialize the associated handle. * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_Init(PCD_HandleTypeDef *hpcd) { - 8002a64: b580 push {r7, lr} - 8002a66: b086 sub sp, #24 - 8002a68: af02 add r7, sp, #8 - 8002a6a: 6078 str r0, [r7, #4] + 8002ab4: b580 push {r7, lr} + 8002ab6: b086 sub sp, #24 + 8002ab8: af02 add r7, sp, #8 + 8002aba: 6078 str r0, [r7, #4] const USB_OTG_GlobalTypeDef *USBx; #endif /* defined (USB_OTG_FS) */ uint8_t i; /* Check the PCD handle allocation */ if (hpcd == NULL) - 8002a6c: 687b ldr r3, [r7, #4] - 8002a6e: 2b00 cmp r3, #0 - 8002a70: d101 bne.n 8002a76 + 8002abc: 687b ldr r3, [r7, #4] + 8002abe: 2b00 cmp r3, #0 + 8002ac0: d101 bne.n 8002ac6 { return HAL_ERROR; - 8002a72: 2301 movs r3, #1 - 8002a74: e108 b.n 8002c88 + 8002ac2: 2301 movs r3, #1 + 8002ac4: e108 b.n 8002cd8 /* Check the parameters */ assert_param(IS_PCD_ALL_INSTANCE(hpcd->Instance)); #if defined (USB_OTG_FS) USBx = hpcd->Instance; - 8002a76: 687b ldr r3, [r7, #4] - 8002a78: 681b ldr r3, [r3, #0] - 8002a7a: 60bb str r3, [r7, #8] + 8002ac6: 687b ldr r3, [r7, #4] + 8002ac8: 681b ldr r3, [r3, #0] + 8002aca: 60bb str r3, [r7, #8] #endif /* defined (USB_OTG_FS) */ if (hpcd->State == HAL_PCD_STATE_RESET) - 8002a7c: 687b ldr r3, [r7, #4] - 8002a7e: f893 3495 ldrb.w r3, [r3, #1173] @ 0x495 - 8002a82: b2db uxtb r3, r3 - 8002a84: 2b00 cmp r3, #0 - 8002a86: d106 bne.n 8002a96 + 8002acc: 687b ldr r3, [r7, #4] + 8002ace: f893 3495 ldrb.w r3, [r3, #1173] @ 0x495 + 8002ad2: b2db uxtb r3, r3 + 8002ad4: 2b00 cmp r3, #0 + 8002ad6: d106 bne.n 8002ae6 { /* Allocate lock resource and initialize it */ hpcd->Lock = HAL_UNLOCKED; - 8002a88: 687b ldr r3, [r7, #4] - 8002a8a: 2200 movs r2, #0 - 8002a8c: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8002ad8: 687b ldr r3, [r7, #4] + 8002ada: 2200 movs r2, #0 + 8002adc: f883 2494 strb.w r2, [r3, #1172] @ 0x494 /* Init the low level hardware */ hpcd->MspInitCallback(hpcd); #else /* Init the low level hardware : GPIO, CLOCK, NVIC... */ HAL_PCD_MspInit(hpcd); - 8002a90: 6878 ldr r0, [r7, #4] - 8002a92: f007 fc9f bl 800a3d4 + 8002ae0: 6878 ldr r0, [r7, #4] + 8002ae2: f007 fbbb bl 800a25c #endif /* (USE_HAL_PCD_REGISTER_CALLBACKS) */ } hpcd->State = HAL_PCD_STATE_BUSY; - 8002a96: 687b ldr r3, [r7, #4] - 8002a98: 2203 movs r2, #3 - 8002a9a: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002ae6: 687b ldr r3, [r7, #4] + 8002ae8: 2203 movs r2, #3 + 8002aea: f883 2495 strb.w r2, [r3, #1173] @ 0x495 #if defined (USB_OTG_FS) /* Disable DMA mode for FS instance */ if (USBx == USB_OTG_FS) - 8002a9e: 68bb ldr r3, [r7, #8] - 8002aa0: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 - 8002aa4: d102 bne.n 8002aac + 8002aee: 68bb ldr r3, [r7, #8] + 8002af0: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 + 8002af4: d102 bne.n 8002afc { hpcd->Init.dma_enable = 0U; - 8002aa6: 687b ldr r3, [r7, #4] - 8002aa8: 2200 movs r2, #0 - 8002aaa: 719a strb r2, [r3, #6] + 8002af6: 687b ldr r3, [r7, #4] + 8002af8: 2200 movs r2, #0 + 8002afa: 719a strb r2, [r3, #6] } #endif /* defined (USB_OTG_FS) */ /* Disable the Interrupts */ __HAL_PCD_DISABLE(hpcd); - 8002aac: 687b ldr r3, [r7, #4] - 8002aae: 681b ldr r3, [r3, #0] - 8002ab0: 4618 mov r0, r3 - 8002ab2: f004 fb94 bl 80071de + 8002afc: 687b ldr r3, [r7, #4] + 8002afe: 681b ldr r3, [r3, #0] + 8002b00: 4618 mov r0, r3 + 8002b02: f004 fab0 bl 8007066 /*Init the Core (common init.) */ if (USB_CoreInit(hpcd->Instance, hpcd->Init) != HAL_OK) - 8002ab6: 687b ldr r3, [r7, #4] - 8002ab8: 6818 ldr r0, [r3, #0] - 8002aba: 687b ldr r3, [r7, #4] - 8002abc: 7c1a ldrb r2, [r3, #16] - 8002abe: f88d 2000 strb.w r2, [sp] - 8002ac2: 3304 adds r3, #4 - 8002ac4: cb0e ldmia r3, {r1, r2, r3} - 8002ac6: f004 fa73 bl 8006fb0 - 8002aca: 4603 mov r3, r0 - 8002acc: 2b00 cmp r3, #0 - 8002ace: d005 beq.n 8002adc + 8002b06: 687b ldr r3, [r7, #4] + 8002b08: 6818 ldr r0, [r3, #0] + 8002b0a: 687b ldr r3, [r7, #4] + 8002b0c: 7c1a ldrb r2, [r3, #16] + 8002b0e: f88d 2000 strb.w r2, [sp] + 8002b12: 3304 adds r3, #4 + 8002b14: cb0e ldmia r3, {r1, r2, r3} + 8002b16: f004 f98f bl 8006e38 + 8002b1a: 4603 mov r3, r0 + 8002b1c: 2b00 cmp r3, #0 + 8002b1e: d005 beq.n 8002b2c { hpcd->State = HAL_PCD_STATE_ERROR; - 8002ad0: 687b ldr r3, [r7, #4] - 8002ad2: 2202 movs r2, #2 - 8002ad4: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002b20: 687b ldr r3, [r7, #4] + 8002b22: 2202 movs r2, #2 + 8002b24: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002ad8: 2301 movs r3, #1 - 8002ada: e0d5 b.n 8002c88 + 8002b28: 2301 movs r3, #1 + 8002b2a: e0d5 b.n 8002cd8 } /* Force Device Mode */ if (USB_SetCurrentMode(hpcd->Instance, USB_DEVICE_MODE) != HAL_OK) - 8002adc: 687b ldr r3, [r7, #4] - 8002ade: 681b ldr r3, [r3, #0] - 8002ae0: 2100 movs r1, #0 - 8002ae2: 4618 mov r0, r3 - 8002ae4: f004 fb8c bl 8007200 - 8002ae8: 4603 mov r3, r0 - 8002aea: 2b00 cmp r3, #0 - 8002aec: d005 beq.n 8002afa + 8002b2c: 687b ldr r3, [r7, #4] + 8002b2e: 681b ldr r3, [r3, #0] + 8002b30: 2100 movs r1, #0 + 8002b32: 4618 mov r0, r3 + 8002b34: f004 faa8 bl 8007088 + 8002b38: 4603 mov r3, r0 + 8002b3a: 2b00 cmp r3, #0 + 8002b3c: d005 beq.n 8002b4a { hpcd->State = HAL_PCD_STATE_ERROR; - 8002aee: 687b ldr r3, [r7, #4] - 8002af0: 2202 movs r2, #2 - 8002af2: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002b3e: 687b ldr r3, [r7, #4] + 8002b40: 2202 movs r2, #2 + 8002b42: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002af6: 2301 movs r3, #1 - 8002af8: e0c6 b.n 8002c88 + 8002b46: 2301 movs r3, #1 + 8002b48: e0c6 b.n 8002cd8 } /* Init endpoints structures */ for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002afa: 2300 movs r3, #0 - 8002afc: 73fb strb r3, [r7, #15] - 8002afe: e04a b.n 8002b96 + 8002b4a: 2300 movs r3, #0 + 8002b4c: 73fb strb r3, [r7, #15] + 8002b4e: e04a b.n 8002be6 { /* Init ep structure */ hpcd->IN_ep[i].is_in = 1U; - 8002b00: 7bfa ldrb r2, [r7, #15] - 8002b02: 6879 ldr r1, [r7, #4] - 8002b04: 4613 mov r3, r2 - 8002b06: 00db lsls r3, r3, #3 - 8002b08: 4413 add r3, r2 - 8002b0a: 009b lsls r3, r3, #2 - 8002b0c: 440b add r3, r1 - 8002b0e: 3315 adds r3, #21 - 8002b10: 2201 movs r2, #1 - 8002b12: 701a strb r2, [r3, #0] + 8002b50: 7bfa ldrb r2, [r7, #15] + 8002b52: 6879 ldr r1, [r7, #4] + 8002b54: 4613 mov r3, r2 + 8002b56: 00db lsls r3, r3, #3 + 8002b58: 4413 add r3, r2 + 8002b5a: 009b lsls r3, r3, #2 + 8002b5c: 440b add r3, r1 + 8002b5e: 3315 adds r3, #21 + 8002b60: 2201 movs r2, #1 + 8002b62: 701a strb r2, [r3, #0] hpcd->IN_ep[i].num = i; - 8002b14: 7bfa ldrb r2, [r7, #15] - 8002b16: 6879 ldr r1, [r7, #4] - 8002b18: 4613 mov r3, r2 - 8002b1a: 00db lsls r3, r3, #3 - 8002b1c: 4413 add r3, r2 - 8002b1e: 009b lsls r3, r3, #2 - 8002b20: 440b add r3, r1 - 8002b22: 3314 adds r3, #20 - 8002b24: 7bfa ldrb r2, [r7, #15] - 8002b26: 701a strb r2, [r3, #0] + 8002b64: 7bfa ldrb r2, [r7, #15] + 8002b66: 6879 ldr r1, [r7, #4] + 8002b68: 4613 mov r3, r2 + 8002b6a: 00db lsls r3, r3, #3 + 8002b6c: 4413 add r3, r2 + 8002b6e: 009b lsls r3, r3, #2 + 8002b70: 440b add r3, r1 + 8002b72: 3314 adds r3, #20 + 8002b74: 7bfa ldrb r2, [r7, #15] + 8002b76: 701a strb r2, [r3, #0] hpcd->IN_ep[i].tx_fifo_num = i; - 8002b28: 7bfa ldrb r2, [r7, #15] - 8002b2a: 7bfb ldrb r3, [r7, #15] - 8002b2c: b298 uxth r0, r3 - 8002b2e: 6879 ldr r1, [r7, #4] - 8002b30: 4613 mov r3, r2 - 8002b32: 00db lsls r3, r3, #3 - 8002b34: 4413 add r3, r2 - 8002b36: 009b lsls r3, r3, #2 - 8002b38: 440b add r3, r1 - 8002b3a: 332e adds r3, #46 @ 0x2e - 8002b3c: 4602 mov r2, r0 - 8002b3e: 801a strh r2, [r3, #0] - /* Control until ep is activated */ - hpcd->IN_ep[i].type = EP_TYPE_CTRL; - 8002b40: 7bfa ldrb r2, [r7, #15] - 8002b42: 6879 ldr r1, [r7, #4] - 8002b44: 4613 mov r3, r2 - 8002b46: 00db lsls r3, r3, #3 - 8002b48: 4413 add r3, r2 - 8002b4a: 009b lsls r3, r3, #2 - 8002b4c: 440b add r3, r1 - 8002b4e: 3318 adds r3, #24 - 8002b50: 2200 movs r2, #0 - 8002b52: 701a strb r2, [r3, #0] - hpcd->IN_ep[i].maxpacket = 0U; - 8002b54: 7bfa ldrb r2, [r7, #15] - 8002b56: 6879 ldr r1, [r7, #4] - 8002b58: 4613 mov r3, r2 - 8002b5a: 00db lsls r3, r3, #3 - 8002b5c: 4413 add r3, r2 - 8002b5e: 009b lsls r3, r3, #2 - 8002b60: 440b add r3, r1 - 8002b62: 331c adds r3, #28 - 8002b64: 2200 movs r2, #0 - 8002b66: 601a str r2, [r3, #0] - hpcd->IN_ep[i].xfer_buff = 0U; - 8002b68: 7bfa ldrb r2, [r7, #15] - 8002b6a: 6879 ldr r1, [r7, #4] - 8002b6c: 4613 mov r3, r2 - 8002b6e: 00db lsls r3, r3, #3 - 8002b70: 4413 add r3, r2 - 8002b72: 009b lsls r3, r3, #2 - 8002b74: 440b add r3, r1 - 8002b76: 3320 adds r3, #32 - 8002b78: 2200 movs r2, #0 - 8002b7a: 601a str r2, [r3, #0] - hpcd->IN_ep[i].xfer_len = 0U; - 8002b7c: 7bfa ldrb r2, [r7, #15] + 8002b78: 7bfa ldrb r2, [r7, #15] + 8002b7a: 7bfb ldrb r3, [r7, #15] + 8002b7c: b298 uxth r0, r3 8002b7e: 6879 ldr r1, [r7, #4] 8002b80: 4613 mov r3, r2 8002b82: 00db lsls r3, r3, #3 8002b84: 4413 add r3, r2 8002b86: 009b lsls r3, r3, #2 8002b88: 440b add r3, r1 - 8002b8a: 3324 adds r3, #36 @ 0x24 - 8002b8c: 2200 movs r2, #0 - 8002b8e: 601a str r2, [r3, #0] + 8002b8a: 332e adds r3, #46 @ 0x2e + 8002b8c: 4602 mov r2, r0 + 8002b8e: 801a strh r2, [r3, #0] + /* Control until ep is activated */ + hpcd->IN_ep[i].type = EP_TYPE_CTRL; + 8002b90: 7bfa ldrb r2, [r7, #15] + 8002b92: 6879 ldr r1, [r7, #4] + 8002b94: 4613 mov r3, r2 + 8002b96: 00db lsls r3, r3, #3 + 8002b98: 4413 add r3, r2 + 8002b9a: 009b lsls r3, r3, #2 + 8002b9c: 440b add r3, r1 + 8002b9e: 3318 adds r3, #24 + 8002ba0: 2200 movs r2, #0 + 8002ba2: 701a strb r2, [r3, #0] + hpcd->IN_ep[i].maxpacket = 0U; + 8002ba4: 7bfa ldrb r2, [r7, #15] + 8002ba6: 6879 ldr r1, [r7, #4] + 8002ba8: 4613 mov r3, r2 + 8002baa: 00db lsls r3, r3, #3 + 8002bac: 4413 add r3, r2 + 8002bae: 009b lsls r3, r3, #2 + 8002bb0: 440b add r3, r1 + 8002bb2: 331c adds r3, #28 + 8002bb4: 2200 movs r2, #0 + 8002bb6: 601a str r2, [r3, #0] + hpcd->IN_ep[i].xfer_buff = 0U; + 8002bb8: 7bfa ldrb r2, [r7, #15] + 8002bba: 6879 ldr r1, [r7, #4] + 8002bbc: 4613 mov r3, r2 + 8002bbe: 00db lsls r3, r3, #3 + 8002bc0: 4413 add r3, r2 + 8002bc2: 009b lsls r3, r3, #2 + 8002bc4: 440b add r3, r1 + 8002bc6: 3320 adds r3, #32 + 8002bc8: 2200 movs r2, #0 + 8002bca: 601a str r2, [r3, #0] + hpcd->IN_ep[i].xfer_len = 0U; + 8002bcc: 7bfa ldrb r2, [r7, #15] + 8002bce: 6879 ldr r1, [r7, #4] + 8002bd0: 4613 mov r3, r2 + 8002bd2: 00db lsls r3, r3, #3 + 8002bd4: 4413 add r3, r2 + 8002bd6: 009b lsls r3, r3, #2 + 8002bd8: 440b add r3, r1 + 8002bda: 3324 adds r3, #36 @ 0x24 + 8002bdc: 2200 movs r2, #0 + 8002bde: 601a str r2, [r3, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002b90: 7bfb ldrb r3, [r7, #15] - 8002b92: 3301 adds r3, #1 - 8002b94: 73fb strb r3, [r7, #15] - 8002b96: 687b ldr r3, [r7, #4] - 8002b98: 791b ldrb r3, [r3, #4] - 8002b9a: 7bfa ldrb r2, [r7, #15] - 8002b9c: 429a cmp r2, r3 - 8002b9e: d3af bcc.n 8002b00 + 8002be0: 7bfb ldrb r3, [r7, #15] + 8002be2: 3301 adds r3, #1 + 8002be4: 73fb strb r3, [r7, #15] + 8002be6: 687b ldr r3, [r7, #4] + 8002be8: 791b ldrb r3, [r3, #4] + 8002bea: 7bfa ldrb r2, [r7, #15] + 8002bec: 429a cmp r2, r3 + 8002bee: d3af bcc.n 8002b50 } for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002ba0: 2300 movs r3, #0 - 8002ba2: 73fb strb r3, [r7, #15] - 8002ba4: e044 b.n 8002c30 + 8002bf0: 2300 movs r3, #0 + 8002bf2: 73fb strb r3, [r7, #15] + 8002bf4: e044 b.n 8002c80 { hpcd->OUT_ep[i].is_in = 0U; - 8002ba6: 7bfa ldrb r2, [r7, #15] - 8002ba8: 6879 ldr r1, [r7, #4] - 8002baa: 4613 mov r3, r2 - 8002bac: 00db lsls r3, r3, #3 - 8002bae: 4413 add r3, r2 - 8002bb0: 009b lsls r3, r3, #2 - 8002bb2: 440b add r3, r1 - 8002bb4: f203 2355 addw r3, r3, #597 @ 0x255 - 8002bb8: 2200 movs r2, #0 - 8002bba: 701a strb r2, [r3, #0] + 8002bf6: 7bfa ldrb r2, [r7, #15] + 8002bf8: 6879 ldr r1, [r7, #4] + 8002bfa: 4613 mov r3, r2 + 8002bfc: 00db lsls r3, r3, #3 + 8002bfe: 4413 add r3, r2 + 8002c00: 009b lsls r3, r3, #2 + 8002c02: 440b add r3, r1 + 8002c04: f203 2355 addw r3, r3, #597 @ 0x255 + 8002c08: 2200 movs r2, #0 + 8002c0a: 701a strb r2, [r3, #0] hpcd->OUT_ep[i].num = i; - 8002bbc: 7bfa ldrb r2, [r7, #15] - 8002bbe: 6879 ldr r1, [r7, #4] - 8002bc0: 4613 mov r3, r2 - 8002bc2: 00db lsls r3, r3, #3 - 8002bc4: 4413 add r3, r2 - 8002bc6: 009b lsls r3, r3, #2 - 8002bc8: 440b add r3, r1 - 8002bca: f503 7315 add.w r3, r3, #596 @ 0x254 - 8002bce: 7bfa ldrb r2, [r7, #15] - 8002bd0: 701a strb r2, [r3, #0] + 8002c0c: 7bfa ldrb r2, [r7, #15] + 8002c0e: 6879 ldr r1, [r7, #4] + 8002c10: 4613 mov r3, r2 + 8002c12: 00db lsls r3, r3, #3 + 8002c14: 4413 add r3, r2 + 8002c16: 009b lsls r3, r3, #2 + 8002c18: 440b add r3, r1 + 8002c1a: f503 7315 add.w r3, r3, #596 @ 0x254 + 8002c1e: 7bfa ldrb r2, [r7, #15] + 8002c20: 701a strb r2, [r3, #0] /* Control until ep is activated */ hpcd->OUT_ep[i].type = EP_TYPE_CTRL; - 8002bd2: 7bfa ldrb r2, [r7, #15] - 8002bd4: 6879 ldr r1, [r7, #4] - 8002bd6: 4613 mov r3, r2 - 8002bd8: 00db lsls r3, r3, #3 - 8002bda: 4413 add r3, r2 - 8002bdc: 009b lsls r3, r3, #2 - 8002bde: 440b add r3, r1 - 8002be0: f503 7316 add.w r3, r3, #600 @ 0x258 - 8002be4: 2200 movs r2, #0 - 8002be6: 701a strb r2, [r3, #0] + 8002c22: 7bfa ldrb r2, [r7, #15] + 8002c24: 6879 ldr r1, [r7, #4] + 8002c26: 4613 mov r3, r2 + 8002c28: 00db lsls r3, r3, #3 + 8002c2a: 4413 add r3, r2 + 8002c2c: 009b lsls r3, r3, #2 + 8002c2e: 440b add r3, r1 + 8002c30: f503 7316 add.w r3, r3, #600 @ 0x258 + 8002c34: 2200 movs r2, #0 + 8002c36: 701a strb r2, [r3, #0] hpcd->OUT_ep[i].maxpacket = 0U; - 8002be8: 7bfa ldrb r2, [r7, #15] - 8002bea: 6879 ldr r1, [r7, #4] - 8002bec: 4613 mov r3, r2 - 8002bee: 00db lsls r3, r3, #3 - 8002bf0: 4413 add r3, r2 - 8002bf2: 009b lsls r3, r3, #2 - 8002bf4: 440b add r3, r1 - 8002bf6: f503 7317 add.w r3, r3, #604 @ 0x25c - 8002bfa: 2200 movs r2, #0 - 8002bfc: 601a str r2, [r3, #0] + 8002c38: 7bfa ldrb r2, [r7, #15] + 8002c3a: 6879 ldr r1, [r7, #4] + 8002c3c: 4613 mov r3, r2 + 8002c3e: 00db lsls r3, r3, #3 + 8002c40: 4413 add r3, r2 + 8002c42: 009b lsls r3, r3, #2 + 8002c44: 440b add r3, r1 + 8002c46: f503 7317 add.w r3, r3, #604 @ 0x25c + 8002c4a: 2200 movs r2, #0 + 8002c4c: 601a str r2, [r3, #0] hpcd->OUT_ep[i].xfer_buff = 0U; - 8002bfe: 7bfa ldrb r2, [r7, #15] - 8002c00: 6879 ldr r1, [r7, #4] - 8002c02: 4613 mov r3, r2 - 8002c04: 00db lsls r3, r3, #3 - 8002c06: 4413 add r3, r2 - 8002c08: 009b lsls r3, r3, #2 - 8002c0a: 440b add r3, r1 - 8002c0c: f503 7318 add.w r3, r3, #608 @ 0x260 - 8002c10: 2200 movs r2, #0 - 8002c12: 601a str r2, [r3, #0] + 8002c4e: 7bfa ldrb r2, [r7, #15] + 8002c50: 6879 ldr r1, [r7, #4] + 8002c52: 4613 mov r3, r2 + 8002c54: 00db lsls r3, r3, #3 + 8002c56: 4413 add r3, r2 + 8002c58: 009b lsls r3, r3, #2 + 8002c5a: 440b add r3, r1 + 8002c5c: f503 7318 add.w r3, r3, #608 @ 0x260 + 8002c60: 2200 movs r2, #0 + 8002c62: 601a str r2, [r3, #0] hpcd->OUT_ep[i].xfer_len = 0U; - 8002c14: 7bfa ldrb r2, [r7, #15] - 8002c16: 6879 ldr r1, [r7, #4] - 8002c18: 4613 mov r3, r2 - 8002c1a: 00db lsls r3, r3, #3 - 8002c1c: 4413 add r3, r2 - 8002c1e: 009b lsls r3, r3, #2 - 8002c20: 440b add r3, r1 - 8002c22: f503 7319 add.w r3, r3, #612 @ 0x264 - 8002c26: 2200 movs r2, #0 - 8002c28: 601a str r2, [r3, #0] + 8002c64: 7bfa ldrb r2, [r7, #15] + 8002c66: 6879 ldr r1, [r7, #4] + 8002c68: 4613 mov r3, r2 + 8002c6a: 00db lsls r3, r3, #3 + 8002c6c: 4413 add r3, r2 + 8002c6e: 009b lsls r3, r3, #2 + 8002c70: 440b add r3, r1 + 8002c72: f503 7319 add.w r3, r3, #612 @ 0x264 + 8002c76: 2200 movs r2, #0 + 8002c78: 601a str r2, [r3, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 8002c2a: 7bfb ldrb r3, [r7, #15] - 8002c2c: 3301 adds r3, #1 - 8002c2e: 73fb strb r3, [r7, #15] - 8002c30: 687b ldr r3, [r7, #4] - 8002c32: 791b ldrb r3, [r3, #4] - 8002c34: 7bfa ldrb r2, [r7, #15] - 8002c36: 429a cmp r2, r3 - 8002c38: d3b5 bcc.n 8002ba6 + 8002c7a: 7bfb ldrb r3, [r7, #15] + 8002c7c: 3301 adds r3, #1 + 8002c7e: 73fb strb r3, [r7, #15] + 8002c80: 687b ldr r3, [r7, #4] + 8002c82: 791b ldrb r3, [r3, #4] + 8002c84: 7bfa ldrb r2, [r7, #15] + 8002c86: 429a cmp r2, r3 + 8002c88: d3b5 bcc.n 8002bf6 } /* Init Device */ if (USB_DevInit(hpcd->Instance, hpcd->Init) != HAL_OK) - 8002c3a: 687b ldr r3, [r7, #4] - 8002c3c: 6818 ldr r0, [r3, #0] - 8002c3e: 687b ldr r3, [r7, #4] - 8002c40: 7c1a ldrb r2, [r3, #16] - 8002c42: f88d 2000 strb.w r2, [sp] - 8002c46: 3304 adds r3, #4 - 8002c48: cb0e ldmia r3, {r1, r2, r3} - 8002c4a: f004 fb25 bl 8007298 - 8002c4e: 4603 mov r3, r0 - 8002c50: 2b00 cmp r3, #0 - 8002c52: d005 beq.n 8002c60 + 8002c8a: 687b ldr r3, [r7, #4] + 8002c8c: 6818 ldr r0, [r3, #0] + 8002c8e: 687b ldr r3, [r7, #4] + 8002c90: 7c1a ldrb r2, [r3, #16] + 8002c92: f88d 2000 strb.w r2, [sp] + 8002c96: 3304 adds r3, #4 + 8002c98: cb0e ldmia r3, {r1, r2, r3} + 8002c9a: f004 fa41 bl 8007120 + 8002c9e: 4603 mov r3, r0 + 8002ca0: 2b00 cmp r3, #0 + 8002ca2: d005 beq.n 8002cb0 { hpcd->State = HAL_PCD_STATE_ERROR; - 8002c54: 687b ldr r3, [r7, #4] - 8002c56: 2202 movs r2, #2 - 8002c58: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002ca4: 687b ldr r3, [r7, #4] + 8002ca6: 2202 movs r2, #2 + 8002ca8: f883 2495 strb.w r2, [r3, #1173] @ 0x495 return HAL_ERROR; - 8002c5c: 2301 movs r3, #1 - 8002c5e: e013 b.n 8002c88 + 8002cac: 2301 movs r3, #1 + 8002cae: e013 b.n 8002cd8 } hpcd->USB_Address = 0U; - 8002c60: 687b ldr r3, [r7, #4] - 8002c62: 2200 movs r2, #0 - 8002c64: 745a strb r2, [r3, #17] + 8002cb0: 687b ldr r3, [r7, #4] + 8002cb2: 2200 movs r2, #0 + 8002cb4: 745a strb r2, [r3, #17] hpcd->State = HAL_PCD_STATE_READY; - 8002c66: 687b ldr r3, [r7, #4] - 8002c68: 2201 movs r2, #1 - 8002c6a: f883 2495 strb.w r2, [r3, #1173] @ 0x495 + 8002cb6: 687b ldr r3, [r7, #4] + 8002cb8: 2201 movs r2, #1 + 8002cba: f883 2495 strb.w r2, [r3, #1173] @ 0x495 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* Activate LPM */ if (hpcd->Init.lpm_enable == 1U) - 8002c6e: 687b ldr r3, [r7, #4] - 8002c70: 7b1b ldrb r3, [r3, #12] - 8002c72: 2b01 cmp r3, #1 - 8002c74: d102 bne.n 8002c7c + 8002cbe: 687b ldr r3, [r7, #4] + 8002cc0: 7b1b ldrb r3, [r3, #12] + 8002cc2: 2b01 cmp r3, #1 + 8002cc4: d102 bne.n 8002ccc { (void)HAL_PCDEx_ActivateLPM(hpcd); - 8002c76: 6878 ldr r0, [r7, #4] - 8002c78: f001 f956 bl 8003f28 + 8002cc6: 6878 ldr r0, [r7, #4] + 8002cc8: f001 f956 bl 8003f78 } #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ (void)USB_DevDisconnect(hpcd->Instance); - 8002c7c: 687b ldr r3, [r7, #4] - 8002c7e: 681b ldr r3, [r3, #0] - 8002c80: 4618 mov r0, r3 - 8002c82: f005 fb62 bl 800834a + 8002ccc: 687b ldr r3, [r7, #4] + 8002cce: 681b ldr r3, [r3, #0] + 8002cd0: 4618 mov r0, r3 + 8002cd2: f005 fa7e bl 80081d2 return HAL_OK; - 8002c86: 2300 movs r3, #0 + 8002cd6: 2300 movs r3, #0 } - 8002c88: 4618 mov r0, r3 - 8002c8a: 3710 adds r7, #16 - 8002c8c: 46bd mov sp, r7 - 8002c8e: bd80 pop {r7, pc} + 8002cd8: 4618 mov r0, r3 + 8002cda: 3710 adds r7, #16 + 8002cdc: 46bd mov sp, r7 + 8002cde: bd80 pop {r7, pc} -08002c90 : +08002ce0 : * @brief Start the USB device * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_Start(PCD_HandleTypeDef *hpcd) { - 8002c90: b580 push {r7, lr} - 8002c92: b084 sub sp, #16 - 8002c94: af00 add r7, sp, #0 - 8002c96: 6078 str r0, [r7, #4] + 8002ce0: b580 push {r7, lr} + 8002ce2: b084 sub sp, #16 + 8002ce4: af00 add r7, sp, #0 + 8002ce6: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8002c98: 687b ldr r3, [r7, #4] - 8002c9a: 681b ldr r3, [r3, #0] - 8002c9c: 60fb str r3, [r7, #12] + 8002ce8: 687b ldr r3, [r7, #4] + 8002cea: 681b ldr r3, [r3, #0] + 8002cec: 60fb str r3, [r7, #12] __HAL_LOCK(hpcd); - 8002c9e: 687b ldr r3, [r7, #4] - 8002ca0: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8002ca4: 2b01 cmp r3, #1 - 8002ca6: d101 bne.n 8002cac - 8002ca8: 2302 movs r3, #2 - 8002caa: e022 b.n 8002cf2 - 8002cac: 687b ldr r3, [r7, #4] - 8002cae: 2201 movs r2, #1 - 8002cb0: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8002cee: 687b ldr r3, [r7, #4] + 8002cf0: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8002cf4: 2b01 cmp r3, #1 + 8002cf6: d101 bne.n 8002cfc + 8002cf8: 2302 movs r3, #2 + 8002cfa: e022 b.n 8002d42 + 8002cfc: 687b ldr r3, [r7, #4] + 8002cfe: 2201 movs r2, #1 + 8002d00: f883 2494 strb.w r2, [r3, #1172] @ 0x494 if (((USBx->GUSBCFG & USB_OTG_GUSBCFG_PHYSEL) != 0U) && - 8002cb4: 68fb ldr r3, [r7, #12] - 8002cb6: 68db ldr r3, [r3, #12] - 8002cb8: f003 0340 and.w r3, r3, #64 @ 0x40 - 8002cbc: 2b00 cmp r3, #0 - 8002cbe: d009 beq.n 8002cd4 + 8002d04: 68fb ldr r3, [r7, #12] + 8002d06: 68db ldr r3, [r3, #12] + 8002d08: f003 0340 and.w r3, r3, #64 @ 0x40 + 8002d0c: 2b00 cmp r3, #0 + 8002d0e: d009 beq.n 8002d24 (hpcd->Init.battery_charging_enable == 1U)) - 8002cc0: 687b ldr r3, [r7, #4] - 8002cc2: 7b5b ldrb r3, [r3, #13] + 8002d10: 687b ldr r3, [r7, #4] + 8002d12: 7b5b ldrb r3, [r3, #13] if (((USBx->GUSBCFG & USB_OTG_GUSBCFG_PHYSEL) != 0U) && - 8002cc4: 2b01 cmp r3, #1 - 8002cc6: d105 bne.n 8002cd4 + 8002d14: 2b01 cmp r3, #1 + 8002d16: d105 bne.n 8002d24 { /* Enable USB Transceiver */ USBx->GCCFG |= USB_OTG_GCCFG_PWRDWN; - 8002cc8: 68fb ldr r3, [r7, #12] - 8002cca: 6b9b ldr r3, [r3, #56] @ 0x38 - 8002ccc: f443 3280 orr.w r2, r3, #65536 @ 0x10000 - 8002cd0: 68fb ldr r3, [r7, #12] - 8002cd2: 639a str r2, [r3, #56] @ 0x38 + 8002d18: 68fb ldr r3, [r7, #12] + 8002d1a: 6b9b ldr r3, [r3, #56] @ 0x38 + 8002d1c: f443 3280 orr.w r2, r3, #65536 @ 0x10000 + 8002d20: 68fb ldr r3, [r7, #12] + 8002d22: 639a str r2, [r3, #56] @ 0x38 } __HAL_PCD_ENABLE(hpcd); - 8002cd4: 687b ldr r3, [r7, #4] - 8002cd6: 681b ldr r3, [r3, #0] - 8002cd8: 4618 mov r0, r3 - 8002cda: f004 fa6f bl 80071bc + 8002d24: 687b ldr r3, [r7, #4] + 8002d26: 681b ldr r3, [r3, #0] + 8002d28: 4618 mov r0, r3 + 8002d2a: f004 f98b bl 8007044 (void)USB_DevConnect(hpcd->Instance); - 8002cde: 687b ldr r3, [r7, #4] - 8002ce0: 681b ldr r3, [r3, #0] - 8002ce2: 4618 mov r0, r3 - 8002ce4: f005 fb10 bl 8008308 + 8002d2e: 687b ldr r3, [r7, #4] + 8002d30: 681b ldr r3, [r3, #0] + 8002d32: 4618 mov r0, r3 + 8002d34: f005 fa2c bl 8008190 __HAL_UNLOCK(hpcd); - 8002ce8: 687b ldr r3, [r7, #4] - 8002cea: 2200 movs r2, #0 - 8002cec: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8002d38: 687b ldr r3, [r7, #4] + 8002d3a: 2200 movs r2, #0 + 8002d3c: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8002cf0: 2300 movs r3, #0 + 8002d40: 2300 movs r3, #0 } - 8002cf2: 4618 mov r0, r3 - 8002cf4: 3710 adds r7, #16 - 8002cf6: 46bd mov sp, r7 - 8002cf8: bd80 pop {r7, pc} + 8002d42: 4618 mov r0, r3 + 8002d44: 3710 adds r7, #16 + 8002d46: 46bd mov sp, r7 + 8002d48: bd80 pop {r7, pc} -08002cfa : +08002d4a : * @brief Handles PCD interrupt request. * @param hpcd PCD handle * @retval HAL status */ void HAL_PCD_IRQHandler(PCD_HandleTypeDef *hpcd) { - 8002cfa: b590 push {r4, r7, lr} - 8002cfc: b08d sub sp, #52 @ 0x34 - 8002cfe: af00 add r7, sp, #0 - 8002d00: 6078 str r0, [r7, #4] + 8002d4a: b590 push {r4, r7, lr} + 8002d4c: b08d sub sp, #52 @ 0x34 + 8002d4e: af00 add r7, sp, #0 + 8002d50: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8002d02: 687b ldr r3, [r7, #4] - 8002d04: 681b ldr r3, [r3, #0] - 8002d06: 623b str r3, [r7, #32] + 8002d52: 687b ldr r3, [r7, #4] + 8002d54: 681b ldr r3, [r3, #0] + 8002d56: 623b str r3, [r7, #32] uint32_t USBx_BASE = (uint32_t)USBx; - 8002d08: 6a3b ldr r3, [r7, #32] - 8002d0a: 61fb str r3, [r7, #28] + 8002d58: 6a3b ldr r3, [r7, #32] + 8002d5a: 61fb str r3, [r7, #28] uint32_t epnum; uint32_t fifoemptymsk; uint32_t RegVal; /* ensure that we are in device mode */ if (USB_GetMode(hpcd->Instance) == USB_OTG_MODE_DEVICE) - 8002d0c: 687b ldr r3, [r7, #4] - 8002d0e: 681b ldr r3, [r3, #0] - 8002d10: 4618 mov r0, r3 - 8002d12: f005 fbce bl 80084b2 - 8002d16: 4603 mov r3, r0 - 8002d18: 2b00 cmp r3, #0 - 8002d1a: f040 84b9 bne.w 8003690 + 8002d5c: 687b ldr r3, [r7, #4] + 8002d5e: 681b ldr r3, [r3, #0] + 8002d60: 4618 mov r0, r3 + 8002d62: f005 faea bl 800833a + 8002d66: 4603 mov r3, r0 + 8002d68: 2b00 cmp r3, #0 + 8002d6a: f040 84b9 bne.w 80036e0 { /* avoid spurious interrupt */ if (__HAL_PCD_IS_INVALID_INTERRUPT(hpcd)) - 8002d1e: 687b ldr r3, [r7, #4] - 8002d20: 681b ldr r3, [r3, #0] - 8002d22: 4618 mov r0, r3 - 8002d24: f005 fb32 bl 800838c - 8002d28: 4603 mov r3, r0 - 8002d2a: 2b00 cmp r3, #0 - 8002d2c: f000 84af beq.w 800368e + 8002d6e: 687b ldr r3, [r7, #4] + 8002d70: 681b ldr r3, [r3, #0] + 8002d72: 4618 mov r0, r3 + 8002d74: f005 fa4e bl 8008214 + 8002d78: 4603 mov r3, r0 + 8002d7a: 2b00 cmp r3, #0 + 8002d7c: f000 84af beq.w 80036de { return; } /* store current frame number */ hpcd->FrameNumber = (USBx_DEVICE->DSTS & USB_OTG_DSTS_FNSOF_Msk) >> USB_OTG_DSTS_FNSOF_Pos; - 8002d30: 69fb ldr r3, [r7, #28] - 8002d32: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8002d36: 689b ldr r3, [r3, #8] - 8002d38: 0a1b lsrs r3, r3, #8 - 8002d3a: f3c3 020d ubfx r2, r3, #0, #14 - 8002d3e: 687b ldr r3, [r7, #4] - 8002d40: f8c3 24d4 str.w r2, [r3, #1236] @ 0x4d4 + 8002d80: 69fb ldr r3, [r7, #28] + 8002d82: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8002d86: 689b ldr r3, [r3, #8] + 8002d88: 0a1b lsrs r3, r3, #8 + 8002d8a: f3c3 020d ubfx r2, r3, #0, #14 + 8002d8e: 687b ldr r3, [r7, #4] + 8002d90: f8c3 24d4 str.w r2, [r3, #1236] @ 0x4d4 if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_MMIS)) - 8002d44: 687b ldr r3, [r7, #4] - 8002d46: 681b ldr r3, [r3, #0] - 8002d48: 4618 mov r0, r3 - 8002d4a: f005 fb1f bl 800838c - 8002d4e: 4603 mov r3, r0 - 8002d50: f003 0302 and.w r3, r3, #2 - 8002d54: 2b02 cmp r3, #2 - 8002d56: d107 bne.n 8002d68 + 8002d94: 687b ldr r3, [r7, #4] + 8002d96: 681b ldr r3, [r3, #0] + 8002d98: 4618 mov r0, r3 + 8002d9a: f005 fa3b bl 8008214 + 8002d9e: 4603 mov r3, r0 + 8002da0: f003 0302 and.w r3, r3, #2 + 8002da4: 2b02 cmp r3, #2 + 8002da6: d107 bne.n 8002db8 { /* incorrect mode, acknowledge the interrupt */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_MMIS); - 8002d58: 687b ldr r3, [r7, #4] - 8002d5a: 681b ldr r3, [r3, #0] - 8002d5c: 695a ldr r2, [r3, #20] - 8002d5e: 687b ldr r3, [r7, #4] - 8002d60: 681b ldr r3, [r3, #0] - 8002d62: f002 0202 and.w r2, r2, #2 - 8002d66: 615a str r2, [r3, #20] + 8002da8: 687b ldr r3, [r7, #4] + 8002daa: 681b ldr r3, [r3, #0] + 8002dac: 695a ldr r2, [r3, #20] + 8002dae: 687b ldr r3, [r7, #4] + 8002db0: 681b ldr r3, [r3, #0] + 8002db2: f002 0202 and.w r2, r2, #2 + 8002db6: 615a str r2, [r3, #20] } /* Handle RxQLevel Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_RXFLVL)) - 8002d68: 687b ldr r3, [r7, #4] - 8002d6a: 681b ldr r3, [r3, #0] - 8002d6c: 4618 mov r0, r3 - 8002d6e: f005 fb0d bl 800838c - 8002d72: 4603 mov r3, r0 - 8002d74: f003 0310 and.w r3, r3, #16 - 8002d78: 2b10 cmp r3, #16 - 8002d7a: d161 bne.n 8002e40 + 8002db8: 687b ldr r3, [r7, #4] + 8002dba: 681b ldr r3, [r3, #0] + 8002dbc: 4618 mov r0, r3 + 8002dbe: f005 fa29 bl 8008214 + 8002dc2: 4603 mov r3, r0 + 8002dc4: f003 0310 and.w r3, r3, #16 + 8002dc8: 2b10 cmp r3, #16 + 8002dca: d161 bne.n 8002e90 { USB_MASK_INTERRUPT(hpcd->Instance, USB_OTG_GINTSTS_RXFLVL); - 8002d7c: 687b ldr r3, [r7, #4] - 8002d7e: 681b ldr r3, [r3, #0] - 8002d80: 699a ldr r2, [r3, #24] - 8002d82: 687b ldr r3, [r7, #4] - 8002d84: 681b ldr r3, [r3, #0] - 8002d86: f022 0210 bic.w r2, r2, #16 - 8002d8a: 619a str r2, [r3, #24] + 8002dcc: 687b ldr r3, [r7, #4] + 8002dce: 681b ldr r3, [r3, #0] + 8002dd0: 699a ldr r2, [r3, #24] + 8002dd2: 687b ldr r3, [r7, #4] + 8002dd4: 681b ldr r3, [r3, #0] + 8002dd6: f022 0210 bic.w r2, r2, #16 + 8002dda: 619a str r2, [r3, #24] RegVal = USBx->GRXSTSP; - 8002d8c: 6a3b ldr r3, [r7, #32] - 8002d8e: 6a1b ldr r3, [r3, #32] - 8002d90: 61bb str r3, [r7, #24] + 8002ddc: 6a3b ldr r3, [r7, #32] + 8002dde: 6a1b ldr r3, [r3, #32] + 8002de0: 61bb str r3, [r7, #24] ep = &hpcd->OUT_ep[RegVal & USB_OTG_GRXSTSP_EPNUM]; - 8002d92: 69bb ldr r3, [r7, #24] - 8002d94: f003 020f and.w r2, r3, #15 - 8002d98: 4613 mov r3, r2 - 8002d9a: 00db lsls r3, r3, #3 - 8002d9c: 4413 add r3, r2 - 8002d9e: 009b lsls r3, r3, #2 - 8002da0: f503 7314 add.w r3, r3, #592 @ 0x250 - 8002da4: 687a ldr r2, [r7, #4] - 8002da6: 4413 add r3, r2 - 8002da8: 3304 adds r3, #4 - 8002daa: 617b str r3, [r7, #20] + 8002de2: 69bb ldr r3, [r7, #24] + 8002de4: f003 020f and.w r2, r3, #15 + 8002de8: 4613 mov r3, r2 + 8002dea: 00db lsls r3, r3, #3 + 8002dec: 4413 add r3, r2 + 8002dee: 009b lsls r3, r3, #2 + 8002df0: f503 7314 add.w r3, r3, #592 @ 0x250 + 8002df4: 687a ldr r2, [r7, #4] + 8002df6: 4413 add r3, r2 + 8002df8: 3304 adds r3, #4 + 8002dfa: 617b str r3, [r7, #20] if (((RegVal & USB_OTG_GRXSTSP_PKTSTS) >> 17) == STS_DATA_UPDT) - 8002dac: 69bb ldr r3, [r7, #24] - 8002dae: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 - 8002db2: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 - 8002db6: d124 bne.n 8002e02 + 8002dfc: 69bb ldr r3, [r7, #24] + 8002dfe: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 + 8002e02: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 + 8002e06: d124 bne.n 8002e52 { if ((RegVal & USB_OTG_GRXSTSP_BCNT) != 0U) - 8002db8: 69ba ldr r2, [r7, #24] - 8002dba: f647 73f0 movw r3, #32752 @ 0x7ff0 - 8002dbe: 4013 ands r3, r2 - 8002dc0: 2b00 cmp r3, #0 - 8002dc2: d035 beq.n 8002e30 + 8002e08: 69ba ldr r2, [r7, #24] + 8002e0a: f647 73f0 movw r3, #32752 @ 0x7ff0 + 8002e0e: 4013 ands r3, r2 + 8002e10: 2b00 cmp r3, #0 + 8002e12: d035 beq.n 8002e80 { (void)USB_ReadPacket(USBx, ep->xfer_buff, - 8002dc4: 697b ldr r3, [r7, #20] - 8002dc6: 68d9 ldr r1, [r3, #12] + 8002e14: 697b ldr r3, [r7, #20] + 8002e16: 68d9 ldr r1, [r3, #12] (uint16_t)((RegVal & USB_OTG_GRXSTSP_BCNT) >> 4)); - 8002dc8: 69bb ldr r3, [r7, #24] - 8002dca: 091b lsrs r3, r3, #4 - 8002dcc: b29b uxth r3, r3 + 8002e18: 69bb ldr r3, [r7, #24] + 8002e1a: 091b lsrs r3, r3, #4 + 8002e1c: b29b uxth r3, r3 (void)USB_ReadPacket(USBx, ep->xfer_buff, - 8002dce: f3c3 030a ubfx r3, r3, #0, #11 - 8002dd2: b29b uxth r3, r3 - 8002dd4: 461a mov r2, r3 - 8002dd6: 6a38 ldr r0, [r7, #32] - 8002dd8: f005 f944 bl 8008064 + 8002e1e: f3c3 030a ubfx r3, r3, #0, #11 + 8002e22: b29b uxth r3, r3 + 8002e24: 461a mov r2, r3 + 8002e26: 6a38 ldr r0, [r7, #32] + 8002e28: f005 f860 bl 8007eec ep->xfer_buff += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002ddc: 697b ldr r3, [r7, #20] - 8002dde: 68da ldr r2, [r3, #12] - 8002de0: 69bb ldr r3, [r7, #24] - 8002de2: 091b lsrs r3, r3, #4 - 8002de4: f3c3 030a ubfx r3, r3, #0, #11 - 8002de8: 441a add r2, r3 - 8002dea: 697b ldr r3, [r7, #20] - 8002dec: 60da str r2, [r3, #12] + 8002e2c: 697b ldr r3, [r7, #20] + 8002e2e: 68da ldr r2, [r3, #12] + 8002e30: 69bb ldr r3, [r7, #24] + 8002e32: 091b lsrs r3, r3, #4 + 8002e34: f3c3 030a ubfx r3, r3, #0, #11 + 8002e38: 441a add r2, r3 + 8002e3a: 697b ldr r3, [r7, #20] + 8002e3c: 60da str r2, [r3, #12] ep->xfer_count += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002dee: 697b ldr r3, [r7, #20] - 8002df0: 695a ldr r2, [r3, #20] - 8002df2: 69bb ldr r3, [r7, #24] - 8002df4: 091b lsrs r3, r3, #4 - 8002df6: f3c3 030a ubfx r3, r3, #0, #11 - 8002dfa: 441a add r2, r3 - 8002dfc: 697b ldr r3, [r7, #20] - 8002dfe: 615a str r2, [r3, #20] - 8002e00: e016 b.n 8002e30 + 8002e3e: 697b ldr r3, [r7, #20] + 8002e40: 695a ldr r2, [r3, #20] + 8002e42: 69bb ldr r3, [r7, #24] + 8002e44: 091b lsrs r3, r3, #4 + 8002e46: f3c3 030a ubfx r3, r3, #0, #11 + 8002e4a: 441a add r2, r3 + 8002e4c: 697b ldr r3, [r7, #20] + 8002e4e: 615a str r2, [r3, #20] + 8002e50: e016 b.n 8002e80 } } else if (((RegVal & USB_OTG_GRXSTSP_PKTSTS) >> 17) == STS_SETUP_UPDT) - 8002e02: 69bb ldr r3, [r7, #24] - 8002e04: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 - 8002e08: f5b3 2f40 cmp.w r3, #786432 @ 0xc0000 - 8002e0c: d110 bne.n 8002e30 + 8002e52: 69bb ldr r3, [r7, #24] + 8002e54: f403 13f0 and.w r3, r3, #1966080 @ 0x1e0000 + 8002e58: f5b3 2f40 cmp.w r3, #786432 @ 0xc0000 + 8002e5c: d110 bne.n 8002e80 { (void)USB_ReadPacket(USBx, (uint8_t *)hpcd->Setup, 8U); - 8002e0e: 687b ldr r3, [r7, #4] - 8002e10: f203 439c addw r3, r3, #1180 @ 0x49c - 8002e14: 2208 movs r2, #8 - 8002e16: 4619 mov r1, r3 - 8002e18: 6a38 ldr r0, [r7, #32] - 8002e1a: f005 f923 bl 8008064 + 8002e5e: 687b ldr r3, [r7, #4] + 8002e60: f203 439c addw r3, r3, #1180 @ 0x49c + 8002e64: 2208 movs r2, #8 + 8002e66: 4619 mov r1, r3 + 8002e68: 6a38 ldr r0, [r7, #32] + 8002e6a: f005 f83f bl 8007eec ep->xfer_count += (RegVal & USB_OTG_GRXSTSP_BCNT) >> 4; - 8002e1e: 697b ldr r3, [r7, #20] - 8002e20: 695a ldr r2, [r3, #20] - 8002e22: 69bb ldr r3, [r7, #24] - 8002e24: 091b lsrs r3, r3, #4 - 8002e26: f3c3 030a ubfx r3, r3, #0, #11 - 8002e2a: 441a add r2, r3 - 8002e2c: 697b ldr r3, [r7, #20] - 8002e2e: 615a str r2, [r3, #20] + 8002e6e: 697b ldr r3, [r7, #20] + 8002e70: 695a ldr r2, [r3, #20] + 8002e72: 69bb ldr r3, [r7, #24] + 8002e74: 091b lsrs r3, r3, #4 + 8002e76: f3c3 030a ubfx r3, r3, #0, #11 + 8002e7a: 441a add r2, r3 + 8002e7c: 697b ldr r3, [r7, #20] + 8002e7e: 615a str r2, [r3, #20] else { /* ... */ } USB_UNMASK_INTERRUPT(hpcd->Instance, USB_OTG_GINTSTS_RXFLVL); - 8002e30: 687b ldr r3, [r7, #4] - 8002e32: 681b ldr r3, [r3, #0] - 8002e34: 699a ldr r2, [r3, #24] - 8002e36: 687b ldr r3, [r7, #4] - 8002e38: 681b ldr r3, [r3, #0] - 8002e3a: f042 0210 orr.w r2, r2, #16 - 8002e3e: 619a str r2, [r3, #24] + 8002e80: 687b ldr r3, [r7, #4] + 8002e82: 681b ldr r3, [r3, #0] + 8002e84: 699a ldr r2, [r3, #24] + 8002e86: 687b ldr r3, [r7, #4] + 8002e88: 681b ldr r3, [r3, #0] + 8002e8a: f042 0210 orr.w r2, r2, #16 + 8002e8e: 619a str r2, [r3, #24] } if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_OEPINT)) - 8002e40: 687b ldr r3, [r7, #4] - 8002e42: 681b ldr r3, [r3, #0] - 8002e44: 4618 mov r0, r3 - 8002e46: f005 faa1 bl 800838c - 8002e4a: 4603 mov r3, r0 - 8002e4c: f403 2300 and.w r3, r3, #524288 @ 0x80000 - 8002e50: f5b3 2f00 cmp.w r3, #524288 @ 0x80000 - 8002e54: f040 80a7 bne.w 8002fa6 + 8002e90: 687b ldr r3, [r7, #4] + 8002e92: 681b ldr r3, [r3, #0] + 8002e94: 4618 mov r0, r3 + 8002e96: f005 f9bd bl 8008214 + 8002e9a: 4603 mov r3, r0 + 8002e9c: f403 2300 and.w r3, r3, #524288 @ 0x80000 + 8002ea0: f5b3 2f00 cmp.w r3, #524288 @ 0x80000 + 8002ea4: f040 80a7 bne.w 8002ff6 { epnum = 0U; - 8002e58: 2300 movs r3, #0 - 8002e5a: 627b str r3, [r7, #36] @ 0x24 + 8002ea8: 2300 movs r3, #0 + 8002eaa: 627b str r3, [r7, #36] @ 0x24 /* Read in the device interrupt bits */ ep_intr = USB_ReadDevAllOutEpInterrupt(hpcd->Instance); - 8002e5c: 687b ldr r3, [r7, #4] - 8002e5e: 681b ldr r3, [r3, #0] - 8002e60: 4618 mov r0, r3 - 8002e62: f005 faa6 bl 80083b2 - 8002e66: 62b8 str r0, [r7, #40] @ 0x28 + 8002eac: 687b ldr r3, [r7, #4] + 8002eae: 681b ldr r3, [r3, #0] + 8002eb0: 4618 mov r0, r3 + 8002eb2: f005 f9c2 bl 800823a + 8002eb6: 62b8 str r0, [r7, #40] @ 0x28 while (ep_intr != 0U) - 8002e68: e099 b.n 8002f9e + 8002eb8: e099 b.n 8002fee { if ((ep_intr & 0x1U) != 0U) - 8002e6a: 6abb ldr r3, [r7, #40] @ 0x28 - 8002e6c: f003 0301 and.w r3, r3, #1 - 8002e70: 2b00 cmp r3, #0 - 8002e72: f000 808e beq.w 8002f92 + 8002eba: 6abb ldr r3, [r7, #40] @ 0x28 + 8002ebc: f003 0301 and.w r3, r3, #1 + 8002ec0: 2b00 cmp r3, #0 + 8002ec2: f000 808e beq.w 8002fe2 { epint = USB_ReadDevOutEPInterrupt(hpcd->Instance, (uint8_t)epnum); - 8002e76: 687b ldr r3, [r7, #4] - 8002e78: 681b ldr r3, [r3, #0] - 8002e7a: 6a7a ldr r2, [r7, #36] @ 0x24 - 8002e7c: b2d2 uxtb r2, r2 - 8002e7e: 4611 mov r1, r2 - 8002e80: 4618 mov r0, r3 - 8002e82: f005 faca bl 800841a - 8002e86: 6138 str r0, [r7, #16] + 8002ec6: 687b ldr r3, [r7, #4] + 8002ec8: 681b ldr r3, [r3, #0] + 8002eca: 6a7a ldr r2, [r7, #36] @ 0x24 + 8002ecc: b2d2 uxtb r2, r2 + 8002ece: 4611 mov r1, r2 + 8002ed0: 4618 mov r0, r3 + 8002ed2: f005 f9e6 bl 80082a2 + 8002ed6: 6138 str r0, [r7, #16] if ((epint & USB_OTG_DOEPINT_XFRC) == USB_OTG_DOEPINT_XFRC) - 8002e88: 693b ldr r3, [r7, #16] - 8002e8a: f003 0301 and.w r3, r3, #1 - 8002e8e: 2b00 cmp r3, #0 - 8002e90: d00c beq.n 8002eac + 8002ed8: 693b ldr r3, [r7, #16] + 8002eda: f003 0301 and.w r3, r3, #1 + 8002ede: 2b00 cmp r3, #0 + 8002ee0: d00c beq.n 8002efc { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_XFRC); - 8002e92: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002e94: 015a lsls r2, r3, #5 - 8002e96: 69fb ldr r3, [r7, #28] - 8002e98: 4413 add r3, r2 - 8002e9a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002e9e: 461a mov r2, r3 - 8002ea0: 2301 movs r3, #1 - 8002ea2: 6093 str r3, [r2, #8] + 8002ee2: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002ee4: 015a lsls r2, r3, #5 + 8002ee6: 69fb ldr r3, [r7, #28] + 8002ee8: 4413 add r3, r2 + 8002eea: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002eee: 461a mov r2, r3 + 8002ef0: 2301 movs r3, #1 + 8002ef2: 6093 str r3, [r2, #8] (void)PCD_EP_OutXfrComplete_int(hpcd, epnum); - 8002ea4: 6a79 ldr r1, [r7, #36] @ 0x24 - 8002ea6: 6878 ldr r0, [r7, #4] - 8002ea8: f000 feb8 bl 8003c1c + 8002ef4: 6a79 ldr r1, [r7, #36] @ 0x24 + 8002ef6: 6878 ldr r0, [r7, #4] + 8002ef8: f000 feb8 bl 8003c6c } if ((epint & USB_OTG_DOEPINT_STUP) == USB_OTG_DOEPINT_STUP) - 8002eac: 693b ldr r3, [r7, #16] - 8002eae: f003 0308 and.w r3, r3, #8 - 8002eb2: 2b00 cmp r3, #0 - 8002eb4: d00c beq.n 8002ed0 + 8002efc: 693b ldr r3, [r7, #16] + 8002efe: f003 0308 and.w r3, r3, #8 + 8002f02: 2b00 cmp r3, #0 + 8002f04: d00c beq.n 8002f20 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STUP); - 8002eb6: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002eb8: 015a lsls r2, r3, #5 - 8002eba: 69fb ldr r3, [r7, #28] - 8002ebc: 4413 add r3, r2 - 8002ebe: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002ec2: 461a mov r2, r3 - 8002ec4: 2308 movs r3, #8 - 8002ec6: 6093 str r3, [r2, #8] + 8002f06: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002f08: 015a lsls r2, r3, #5 + 8002f0a: 69fb ldr r3, [r7, #28] + 8002f0c: 4413 add r3, r2 + 8002f0e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002f12: 461a mov r2, r3 + 8002f14: 2308 movs r3, #8 + 8002f16: 6093 str r3, [r2, #8] /* Class B setup phase done for previous decoded setup */ (void)PCD_EP_OutSetupPacket_int(hpcd, epnum); - 8002ec8: 6a79 ldr r1, [r7, #36] @ 0x24 - 8002eca: 6878 ldr r0, [r7, #4] - 8002ecc: f000 ff8e bl 8003dec + 8002f18: 6a79 ldr r1, [r7, #36] @ 0x24 + 8002f1a: 6878 ldr r0, [r7, #4] + 8002f1c: f000 ff8e bl 8003e3c } if ((epint & USB_OTG_DOEPINT_OTEPDIS) == USB_OTG_DOEPINT_OTEPDIS) - 8002ed0: 693b ldr r3, [r7, #16] - 8002ed2: f003 0310 and.w r3, r3, #16 - 8002ed6: 2b00 cmp r3, #0 - 8002ed8: d008 beq.n 8002eec + 8002f20: 693b ldr r3, [r7, #16] + 8002f22: f003 0310 and.w r3, r3, #16 + 8002f26: 2b00 cmp r3, #0 + 8002f28: d008 beq.n 8002f3c { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPDIS); - 8002eda: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002edc: 015a lsls r2, r3, #5 - 8002ede: 69fb ldr r3, [r7, #28] - 8002ee0: 4413 add r3, r2 - 8002ee2: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002ee6: 461a mov r2, r3 - 8002ee8: 2310 movs r3, #16 - 8002eea: 6093 str r3, [r2, #8] + 8002f2a: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002f2c: 015a lsls r2, r3, #5 + 8002f2e: 69fb ldr r3, [r7, #28] + 8002f30: 4413 add r3, r2 + 8002f32: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002f36: 461a mov r2, r3 + 8002f38: 2310 movs r3, #16 + 8002f3a: 6093 str r3, [r2, #8] } /* Clear OUT Endpoint disable interrupt */ if ((epint & USB_OTG_DOEPINT_EPDISD) == USB_OTG_DOEPINT_EPDISD) - 8002eec: 693b ldr r3, [r7, #16] - 8002eee: f003 0302 and.w r3, r3, #2 - 8002ef2: 2b00 cmp r3, #0 - 8002ef4: d030 beq.n 8002f58 + 8002f3c: 693b ldr r3, [r7, #16] + 8002f3e: f003 0302 and.w r3, r3, #2 + 8002f42: 2b00 cmp r3, #0 + 8002f44: d030 beq.n 8002fa8 { if ((USBx->GINTSTS & USB_OTG_GINTSTS_BOUTNAKEFF) == USB_OTG_GINTSTS_BOUTNAKEFF) - 8002ef6: 6a3b ldr r3, [r7, #32] - 8002ef8: 695b ldr r3, [r3, #20] - 8002efa: f003 0380 and.w r3, r3, #128 @ 0x80 - 8002efe: 2b80 cmp r3, #128 @ 0x80 - 8002f00: d109 bne.n 8002f16 + 8002f46: 6a3b ldr r3, [r7, #32] + 8002f48: 695b ldr r3, [r3, #20] + 8002f4a: f003 0380 and.w r3, r3, #128 @ 0x80 + 8002f4e: 2b80 cmp r3, #128 @ 0x80 + 8002f50: d109 bne.n 8002f66 { USBx_DEVICE->DCTL |= USB_OTG_DCTL_CGONAK; - 8002f02: 69fb ldr r3, [r7, #28] - 8002f04: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8002f08: 685b ldr r3, [r3, #4] - 8002f0a: 69fa ldr r2, [r7, #28] - 8002f0c: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8002f10: f443 6380 orr.w r3, r3, #1024 @ 0x400 - 8002f14: 6053 str r3, [r2, #4] + 8002f52: 69fb ldr r3, [r7, #28] + 8002f54: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8002f58: 685b ldr r3, [r3, #4] + 8002f5a: 69fa ldr r2, [r7, #28] + 8002f5c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8002f60: f443 6380 orr.w r3, r3, #1024 @ 0x400 + 8002f64: 6053 str r3, [r2, #4] } ep = &hpcd->OUT_ep[epnum]; - 8002f16: 6a7a ldr r2, [r7, #36] @ 0x24 - 8002f18: 4613 mov r3, r2 - 8002f1a: 00db lsls r3, r3, #3 - 8002f1c: 4413 add r3, r2 - 8002f1e: 009b lsls r3, r3, #2 - 8002f20: f503 7314 add.w r3, r3, #592 @ 0x250 - 8002f24: 687a ldr r2, [r7, #4] - 8002f26: 4413 add r3, r2 - 8002f28: 3304 adds r3, #4 - 8002f2a: 617b str r3, [r7, #20] + 8002f66: 6a7a ldr r2, [r7, #36] @ 0x24 + 8002f68: 4613 mov r3, r2 + 8002f6a: 00db lsls r3, r3, #3 + 8002f6c: 4413 add r3, r2 + 8002f6e: 009b lsls r3, r3, #2 + 8002f70: f503 7314 add.w r3, r3, #592 @ 0x250 + 8002f74: 687a ldr r2, [r7, #4] + 8002f76: 4413 add r3, r2 + 8002f78: 3304 adds r3, #4 + 8002f7a: 617b str r3, [r7, #20] if (ep->is_iso_incomplete == 1U) - 8002f2c: 697b ldr r3, [r7, #20] - 8002f2e: 78db ldrb r3, [r3, #3] - 8002f30: 2b01 cmp r3, #1 - 8002f32: d108 bne.n 8002f46 + 8002f7c: 697b ldr r3, [r7, #20] + 8002f7e: 78db ldrb r3, [r3, #3] + 8002f80: 2b01 cmp r3, #1 + 8002f82: d108 bne.n 8002f96 { ep->is_iso_incomplete = 0U; - 8002f34: 697b ldr r3, [r7, #20] - 8002f36: 2200 movs r2, #0 - 8002f38: 70da strb r2, [r3, #3] + 8002f84: 697b ldr r3, [r7, #20] + 8002f86: 2200 movs r2, #0 + 8002f88: 70da strb r2, [r3, #3] #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ISOOUTIncompleteCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_ISOOUTIncompleteCallback(hpcd, (uint8_t)epnum); - 8002f3a: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002f3c: b2db uxtb r3, r3 - 8002f3e: 4619 mov r1, r3 - 8002f40: 6878 ldr r0, [r7, #4] - 8002f42: f007 fb63 bl 800a60c + 8002f8a: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002f8c: b2db uxtb r3, r3 + 8002f8e: 4619 mov r1, r3 + 8002f90: 6878 ldr r0, [r7, #4] + 8002f92: f007 fa7f bl 800a494 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_EPDISD); - 8002f46: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002f48: 015a lsls r2, r3, #5 - 8002f4a: 69fb ldr r3, [r7, #28] - 8002f4c: 4413 add r3, r2 - 8002f4e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002f52: 461a mov r2, r3 - 8002f54: 2302 movs r3, #2 - 8002f56: 6093 str r3, [r2, #8] + 8002f96: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002f98: 015a lsls r2, r3, #5 + 8002f9a: 69fb ldr r3, [r7, #28] + 8002f9c: 4413 add r3, r2 + 8002f9e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002fa2: 461a mov r2, r3 + 8002fa4: 2302 movs r3, #2 + 8002fa6: 6093 str r3, [r2, #8] } /* Clear Status Phase Received interrupt */ if ((epint & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) - 8002f58: 693b ldr r3, [r7, #16] - 8002f5a: f003 0320 and.w r3, r3, #32 - 8002f5e: 2b00 cmp r3, #0 - 8002f60: d008 beq.n 8002f74 + 8002fa8: 693b ldr r3, [r7, #16] + 8002faa: f003 0320 and.w r3, r3, #32 + 8002fae: 2b00 cmp r3, #0 + 8002fb0: d008 beq.n 8002fc4 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8002f62: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002f64: 015a lsls r2, r3, #5 - 8002f66: 69fb ldr r3, [r7, #28] - 8002f68: 4413 add r3, r2 - 8002f6a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002f6e: 461a mov r2, r3 - 8002f70: 2320 movs r3, #32 - 8002f72: 6093 str r3, [r2, #8] + 8002fb2: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002fb4: 015a lsls r2, r3, #5 + 8002fb6: 69fb ldr r3, [r7, #28] + 8002fb8: 4413 add r3, r2 + 8002fba: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002fbe: 461a mov r2, r3 + 8002fc0: 2320 movs r3, #32 + 8002fc2: 6093 str r3, [r2, #8] } /* Clear OUT NAK interrupt */ if ((epint & USB_OTG_DOEPINT_NAK) == USB_OTG_DOEPINT_NAK) - 8002f74: 693b ldr r3, [r7, #16] - 8002f76: f403 5300 and.w r3, r3, #8192 @ 0x2000 - 8002f7a: 2b00 cmp r3, #0 - 8002f7c: d009 beq.n 8002f92 + 8002fc4: 693b ldr r3, [r7, #16] + 8002fc6: f403 5300 and.w r3, r3, #8192 @ 0x2000 + 8002fca: 2b00 cmp r3, #0 + 8002fcc: d009 beq.n 8002fe2 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_NAK); - 8002f7e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002f80: 015a lsls r2, r3, #5 - 8002f82: 69fb ldr r3, [r7, #28] - 8002f84: 4413 add r3, r2 - 8002f86: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8002f8a: 461a mov r2, r3 - 8002f8c: f44f 5300 mov.w r3, #8192 @ 0x2000 - 8002f90: 6093 str r3, [r2, #8] + 8002fce: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002fd0: 015a lsls r2, r3, #5 + 8002fd2: 69fb ldr r3, [r7, #28] + 8002fd4: 4413 add r3, r2 + 8002fd6: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8002fda: 461a mov r2, r3 + 8002fdc: f44f 5300 mov.w r3, #8192 @ 0x2000 + 8002fe0: 6093 str r3, [r2, #8] } } epnum++; - 8002f92: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002f94: 3301 adds r3, #1 - 8002f96: 627b str r3, [r7, #36] @ 0x24 + 8002fe2: 6a7b ldr r3, [r7, #36] @ 0x24 + 8002fe4: 3301 adds r3, #1 + 8002fe6: 627b str r3, [r7, #36] @ 0x24 ep_intr >>= 1U; - 8002f98: 6abb ldr r3, [r7, #40] @ 0x28 - 8002f9a: 085b lsrs r3, r3, #1 - 8002f9c: 62bb str r3, [r7, #40] @ 0x28 + 8002fe8: 6abb ldr r3, [r7, #40] @ 0x28 + 8002fea: 085b lsrs r3, r3, #1 + 8002fec: 62bb str r3, [r7, #40] @ 0x28 while (ep_intr != 0U) - 8002f9e: 6abb ldr r3, [r7, #40] @ 0x28 - 8002fa0: 2b00 cmp r3, #0 - 8002fa2: f47f af62 bne.w 8002e6a + 8002fee: 6abb ldr r3, [r7, #40] @ 0x28 + 8002ff0: 2b00 cmp r3, #0 + 8002ff2: f47f af62 bne.w 8002eba } } if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_IEPINT)) - 8002fa6: 687b ldr r3, [r7, #4] - 8002fa8: 681b ldr r3, [r3, #0] - 8002faa: 4618 mov r0, r3 - 8002fac: f005 f9ee bl 800838c - 8002fb0: 4603 mov r3, r0 - 8002fb2: f403 2380 and.w r3, r3, #262144 @ 0x40000 - 8002fb6: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 - 8002fba: f040 80db bne.w 8003174 + 8002ff6: 687b ldr r3, [r7, #4] + 8002ff8: 681b ldr r3, [r3, #0] + 8002ffa: 4618 mov r0, r3 + 8002ffc: f005 f90a bl 8008214 + 8003000: 4603 mov r3, r0 + 8003002: f403 2380 and.w r3, r3, #262144 @ 0x40000 + 8003006: f5b3 2f80 cmp.w r3, #262144 @ 0x40000 + 800300a: f040 80db bne.w 80031c4 { /* Read in the device interrupt bits */ ep_intr = USB_ReadDevAllInEpInterrupt(hpcd->Instance); - 8002fbe: 687b ldr r3, [r7, #4] - 8002fc0: 681b ldr r3, [r3, #0] - 8002fc2: 4618 mov r0, r3 - 8002fc4: f005 fa0f bl 80083e6 - 8002fc8: 62b8 str r0, [r7, #40] @ 0x28 + 800300e: 687b ldr r3, [r7, #4] + 8003010: 681b ldr r3, [r3, #0] + 8003012: 4618 mov r0, r3 + 8003014: f005 f92b bl 800826e + 8003018: 62b8 str r0, [r7, #40] @ 0x28 epnum = 0U; - 8002fca: 2300 movs r3, #0 - 8002fcc: 627b str r3, [r7, #36] @ 0x24 + 800301a: 2300 movs r3, #0 + 800301c: 627b str r3, [r7, #36] @ 0x24 while (ep_intr != 0U) - 8002fce: e0cd b.n 800316c + 800301e: e0cd b.n 80031bc { if ((ep_intr & 0x1U) != 0U) /* In ITR */ - 8002fd0: 6abb ldr r3, [r7, #40] @ 0x28 - 8002fd2: f003 0301 and.w r3, r3, #1 - 8002fd6: 2b00 cmp r3, #0 - 8002fd8: f000 80c2 beq.w 8003160 + 8003020: 6abb ldr r3, [r7, #40] @ 0x28 + 8003022: f003 0301 and.w r3, r3, #1 + 8003026: 2b00 cmp r3, #0 + 8003028: f000 80c2 beq.w 80031b0 { epint = USB_ReadDevInEPInterrupt(hpcd->Instance, (uint8_t)epnum); - 8002fdc: 687b ldr r3, [r7, #4] - 8002fde: 681b ldr r3, [r3, #0] - 8002fe0: 6a7a ldr r2, [r7, #36] @ 0x24 - 8002fe2: b2d2 uxtb r2, r2 - 8002fe4: 4611 mov r1, r2 - 8002fe6: 4618 mov r0, r3 - 8002fe8: f005 fa35 bl 8008456 - 8002fec: 6138 str r0, [r7, #16] + 800302c: 687b ldr r3, [r7, #4] + 800302e: 681b ldr r3, [r3, #0] + 8003030: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003032: b2d2 uxtb r2, r2 + 8003034: 4611 mov r1, r2 + 8003036: 4618 mov r0, r3 + 8003038: f005 f951 bl 80082de + 800303c: 6138 str r0, [r7, #16] if ((epint & USB_OTG_DIEPINT_XFRC) == USB_OTG_DIEPINT_XFRC) - 8002fee: 693b ldr r3, [r7, #16] - 8002ff0: f003 0301 and.w r3, r3, #1 - 8002ff4: 2b00 cmp r3, #0 - 8002ff6: d057 beq.n 80030a8 + 800303e: 693b ldr r3, [r7, #16] + 8003040: f003 0301 and.w r3, r3, #1 + 8003044: 2b00 cmp r3, #0 + 8003046: d057 beq.n 80030f8 { fifoemptymsk = (uint32_t)(0x1UL << (epnum & EP_ADDR_MSK)); - 8002ff8: 6a7b ldr r3, [r7, #36] @ 0x24 - 8002ffa: f003 030f and.w r3, r3, #15 - 8002ffe: 2201 movs r2, #1 - 8003000: fa02 f303 lsl.w r3, r2, r3 - 8003004: 60fb str r3, [r7, #12] + 8003048: 6a7b ldr r3, [r7, #36] @ 0x24 + 800304a: f003 030f and.w r3, r3, #15 + 800304e: 2201 movs r2, #1 + 8003050: fa02 f303 lsl.w r3, r2, r3 + 8003054: 60fb str r3, [r7, #12] USBx_DEVICE->DIEPEMPMSK &= ~fifoemptymsk; - 8003006: 69fb ldr r3, [r7, #28] - 8003008: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800300c: 6b5a ldr r2, [r3, #52] @ 0x34 - 800300e: 68fb ldr r3, [r7, #12] - 8003010: 43db mvns r3, r3 - 8003012: 69f9 ldr r1, [r7, #28] - 8003014: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8003018: 4013 ands r3, r2 - 800301a: 634b str r3, [r1, #52] @ 0x34 + 8003056: 69fb ldr r3, [r7, #28] + 8003058: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800305c: 6b5a ldr r2, [r3, #52] @ 0x34 + 800305e: 68fb ldr r3, [r7, #12] + 8003060: 43db mvns r3, r3 + 8003062: 69f9 ldr r1, [r7, #28] + 8003064: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8003068: 4013 ands r3, r2 + 800306a: 634b str r3, [r1, #52] @ 0x34 CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_XFRC); - 800301c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800301e: 015a lsls r2, r3, #5 - 8003020: 69fb ldr r3, [r7, #28] - 8003022: 4413 add r3, r2 - 8003024: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003028: 461a mov r2, r3 - 800302a: 2301 movs r3, #1 - 800302c: 6093 str r3, [r2, #8] + 800306c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800306e: 015a lsls r2, r3, #5 + 8003070: 69fb ldr r3, [r7, #28] + 8003072: 4413 add r3, r2 + 8003074: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003078: 461a mov r2, r3 + 800307a: 2301 movs r3, #1 + 800307c: 6093 str r3, [r2, #8] if (hpcd->Init.dma_enable == 1U) - 800302e: 687b ldr r3, [r7, #4] - 8003030: 799b ldrb r3, [r3, #6] - 8003032: 2b01 cmp r3, #1 - 8003034: d132 bne.n 800309c + 800307e: 687b ldr r3, [r7, #4] + 8003080: 799b ldrb r3, [r3, #6] + 8003082: 2b01 cmp r3, #1 + 8003084: d132 bne.n 80030ec { hpcd->IN_ep[epnum].xfer_buff += hpcd->IN_ep[epnum].maxpacket; - 8003036: 6879 ldr r1, [r7, #4] - 8003038: 6a7a ldr r2, [r7, #36] @ 0x24 - 800303a: 4613 mov r3, r2 - 800303c: 00db lsls r3, r3, #3 - 800303e: 4413 add r3, r2 - 8003040: 009b lsls r3, r3, #2 - 8003042: 440b add r3, r1 - 8003044: 3320 adds r3, #32 - 8003046: 6819 ldr r1, [r3, #0] - 8003048: 6878 ldr r0, [r7, #4] - 800304a: 6a7a ldr r2, [r7, #36] @ 0x24 - 800304c: 4613 mov r3, r2 - 800304e: 00db lsls r3, r3, #3 - 8003050: 4413 add r3, r2 - 8003052: 009b lsls r3, r3, #2 - 8003054: 4403 add r3, r0 - 8003056: 331c adds r3, #28 - 8003058: 681b ldr r3, [r3, #0] - 800305a: 4419 add r1, r3 - 800305c: 6878 ldr r0, [r7, #4] - 800305e: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003060: 4613 mov r3, r2 - 8003062: 00db lsls r3, r3, #3 - 8003064: 4413 add r3, r2 - 8003066: 009b lsls r3, r3, #2 - 8003068: 4403 add r3, r0 - 800306a: 3320 adds r3, #32 - 800306c: 6019 str r1, [r3, #0] + 8003086: 6879 ldr r1, [r7, #4] + 8003088: 6a7a ldr r2, [r7, #36] @ 0x24 + 800308a: 4613 mov r3, r2 + 800308c: 00db lsls r3, r3, #3 + 800308e: 4413 add r3, r2 + 8003090: 009b lsls r3, r3, #2 + 8003092: 440b add r3, r1 + 8003094: 3320 adds r3, #32 + 8003096: 6819 ldr r1, [r3, #0] + 8003098: 6878 ldr r0, [r7, #4] + 800309a: 6a7a ldr r2, [r7, #36] @ 0x24 + 800309c: 4613 mov r3, r2 + 800309e: 00db lsls r3, r3, #3 + 80030a0: 4413 add r3, r2 + 80030a2: 009b lsls r3, r3, #2 + 80030a4: 4403 add r3, r0 + 80030a6: 331c adds r3, #28 + 80030a8: 681b ldr r3, [r3, #0] + 80030aa: 4419 add r1, r3 + 80030ac: 6878 ldr r0, [r7, #4] + 80030ae: 6a7a ldr r2, [r7, #36] @ 0x24 + 80030b0: 4613 mov r3, r2 + 80030b2: 00db lsls r3, r3, #3 + 80030b4: 4413 add r3, r2 + 80030b6: 009b lsls r3, r3, #2 + 80030b8: 4403 add r3, r0 + 80030ba: 3320 adds r3, #32 + 80030bc: 6019 str r1, [r3, #0] /* this is ZLP, so prepare EP0 for next setup */ if ((epnum == 0U) && (hpcd->IN_ep[epnum].xfer_len == 0U)) - 800306e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003070: 2b00 cmp r3, #0 - 8003072: d113 bne.n 800309c - 8003074: 6879 ldr r1, [r7, #4] - 8003076: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003078: 4613 mov r3, r2 - 800307a: 00db lsls r3, r3, #3 - 800307c: 4413 add r3, r2 - 800307e: 009b lsls r3, r3, #2 - 8003080: 440b add r3, r1 - 8003082: 3324 adds r3, #36 @ 0x24 - 8003084: 681b ldr r3, [r3, #0] - 8003086: 2b00 cmp r3, #0 - 8003088: d108 bne.n 800309c + 80030be: 6a7b ldr r3, [r7, #36] @ 0x24 + 80030c0: 2b00 cmp r3, #0 + 80030c2: d113 bne.n 80030ec + 80030c4: 6879 ldr r1, [r7, #4] + 80030c6: 6a7a ldr r2, [r7, #36] @ 0x24 + 80030c8: 4613 mov r3, r2 + 80030ca: 00db lsls r3, r3, #3 + 80030cc: 4413 add r3, r2 + 80030ce: 009b lsls r3, r3, #2 + 80030d0: 440b add r3, r1 + 80030d2: 3324 adds r3, #36 @ 0x24 + 80030d4: 681b ldr r3, [r3, #0] + 80030d6: 2b00 cmp r3, #0 + 80030d8: d108 bne.n 80030ec { /* prepare to rx more setup packets */ (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 800308a: 687b ldr r3, [r7, #4] - 800308c: 6818 ldr r0, [r3, #0] - 800308e: 687b ldr r3, [r7, #4] - 8003090: f203 439c addw r3, r3, #1180 @ 0x49c - 8003094: 461a mov r2, r3 - 8003096: 2101 movs r1, #1 - 8003098: f005 fa3c bl 8008514 + 80030da: 687b ldr r3, [r7, #4] + 80030dc: 6818 ldr r0, [r3, #0] + 80030de: 687b ldr r3, [r7, #4] + 80030e0: f203 439c addw r3, r3, #1180 @ 0x49c + 80030e4: 461a mov r2, r3 + 80030e6: 2101 movs r1, #1 + 80030e8: f005 f958 bl 800839c } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataInStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataInStageCallback(hpcd, (uint8_t)epnum); - 800309c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800309e: b2db uxtb r3, r3 - 80030a0: 4619 mov r1, r3 - 80030a2: 6878 ldr r0, [r7, #4] - 80030a4: f007 fa2d bl 800a502 + 80030ec: 6a7b ldr r3, [r7, #36] @ 0x24 + 80030ee: b2db uxtb r3, r3 + 80030f0: 4619 mov r1, r3 + 80030f2: 6878 ldr r0, [r7, #4] + 80030f4: f007 f949 bl 800a38a #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } if ((epint & USB_OTG_DIEPINT_TOC) == USB_OTG_DIEPINT_TOC) - 80030a8: 693b ldr r3, [r7, #16] - 80030aa: f003 0308 and.w r3, r3, #8 - 80030ae: 2b00 cmp r3, #0 - 80030b0: d008 beq.n 80030c4 + 80030f8: 693b ldr r3, [r7, #16] + 80030fa: f003 0308 and.w r3, r3, #8 + 80030fe: 2b00 cmp r3, #0 + 8003100: d008 beq.n 8003114 { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_TOC); - 80030b2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80030b4: 015a lsls r2, r3, #5 - 80030b6: 69fb ldr r3, [r7, #28] - 80030b8: 4413 add r3, r2 - 80030ba: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80030be: 461a mov r2, r3 - 80030c0: 2308 movs r3, #8 - 80030c2: 6093 str r3, [r2, #8] + 8003102: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003104: 015a lsls r2, r3, #5 + 8003106: 69fb ldr r3, [r7, #28] + 8003108: 4413 add r3, r2 + 800310a: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800310e: 461a mov r2, r3 + 8003110: 2308 movs r3, #8 + 8003112: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_ITTXFE) == USB_OTG_DIEPINT_ITTXFE) - 80030c4: 693b ldr r3, [r7, #16] - 80030c6: f003 0310 and.w r3, r3, #16 - 80030ca: 2b00 cmp r3, #0 - 80030cc: d008 beq.n 80030e0 + 8003114: 693b ldr r3, [r7, #16] + 8003116: f003 0310 and.w r3, r3, #16 + 800311a: 2b00 cmp r3, #0 + 800311c: d008 beq.n 8003130 { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_ITTXFE); - 80030ce: 6a7b ldr r3, [r7, #36] @ 0x24 - 80030d0: 015a lsls r2, r3, #5 - 80030d2: 69fb ldr r3, [r7, #28] - 80030d4: 4413 add r3, r2 - 80030d6: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80030da: 461a mov r2, r3 - 80030dc: 2310 movs r3, #16 - 80030de: 6093 str r3, [r2, #8] + 800311e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003120: 015a lsls r2, r3, #5 + 8003122: 69fb ldr r3, [r7, #28] + 8003124: 4413 add r3, r2 + 8003126: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800312a: 461a mov r2, r3 + 800312c: 2310 movs r3, #16 + 800312e: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_INEPNE) == USB_OTG_DIEPINT_INEPNE) - 80030e0: 693b ldr r3, [r7, #16] - 80030e2: f003 0340 and.w r3, r3, #64 @ 0x40 - 80030e6: 2b00 cmp r3, #0 - 80030e8: d008 beq.n 80030fc + 8003130: 693b ldr r3, [r7, #16] + 8003132: f003 0340 and.w r3, r3, #64 @ 0x40 + 8003136: 2b00 cmp r3, #0 + 8003138: d008 beq.n 800314c { CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_INEPNE); - 80030ea: 6a7b ldr r3, [r7, #36] @ 0x24 - 80030ec: 015a lsls r2, r3, #5 - 80030ee: 69fb ldr r3, [r7, #28] - 80030f0: 4413 add r3, r2 - 80030f2: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80030f6: 461a mov r2, r3 - 80030f8: 2340 movs r3, #64 @ 0x40 - 80030fa: 6093 str r3, [r2, #8] + 800313a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800313c: 015a lsls r2, r3, #5 + 800313e: 69fb ldr r3, [r7, #28] + 8003140: 4413 add r3, r2 + 8003142: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003146: 461a mov r2, r3 + 8003148: 2340 movs r3, #64 @ 0x40 + 800314a: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_EPDISD) == USB_OTG_DIEPINT_EPDISD) - 80030fc: 693b ldr r3, [r7, #16] - 80030fe: f003 0302 and.w r3, r3, #2 - 8003102: 2b00 cmp r3, #0 - 8003104: d023 beq.n 800314e + 800314c: 693b ldr r3, [r7, #16] + 800314e: f003 0302 and.w r3, r3, #2 + 8003152: 2b00 cmp r3, #0 + 8003154: d023 beq.n 800319e { (void)USB_FlushTxFifo(USBx, epnum); - 8003106: 6a79 ldr r1, [r7, #36] @ 0x24 - 8003108: 6a38 ldr r0, [r7, #32] - 800310a: f004 fa23 bl 8007554 + 8003156: 6a79 ldr r1, [r7, #36] @ 0x24 + 8003158: 6a38 ldr r0, [r7, #32] + 800315a: f004 f93f bl 80073dc ep = &hpcd->IN_ep[epnum]; - 800310e: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003110: 4613 mov r3, r2 - 8003112: 00db lsls r3, r3, #3 - 8003114: 4413 add r3, r2 - 8003116: 009b lsls r3, r3, #2 - 8003118: 3310 adds r3, #16 - 800311a: 687a ldr r2, [r7, #4] - 800311c: 4413 add r3, r2 - 800311e: 3304 adds r3, #4 - 8003120: 617b str r3, [r7, #20] + 800315e: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003160: 4613 mov r3, r2 + 8003162: 00db lsls r3, r3, #3 + 8003164: 4413 add r3, r2 + 8003166: 009b lsls r3, r3, #2 + 8003168: 3310 adds r3, #16 + 800316a: 687a ldr r2, [r7, #4] + 800316c: 4413 add r3, r2 + 800316e: 3304 adds r3, #4 + 8003170: 617b str r3, [r7, #20] if (ep->is_iso_incomplete == 1U) - 8003122: 697b ldr r3, [r7, #20] - 8003124: 78db ldrb r3, [r3, #3] - 8003126: 2b01 cmp r3, #1 - 8003128: d108 bne.n 800313c + 8003172: 697b ldr r3, [r7, #20] + 8003174: 78db ldrb r3, [r3, #3] + 8003176: 2b01 cmp r3, #1 + 8003178: d108 bne.n 800318c { ep->is_iso_incomplete = 0U; - 800312a: 697b ldr r3, [r7, #20] - 800312c: 2200 movs r2, #0 - 800312e: 70da strb r2, [r3, #3] + 800317a: 697b ldr r3, [r7, #20] + 800317c: 2200 movs r2, #0 + 800317e: 70da strb r2, [r3, #3] #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ISOINIncompleteCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_ISOINIncompleteCallback(hpcd, (uint8_t)epnum); - 8003130: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003132: b2db uxtb r3, r3 - 8003134: 4619 mov r1, r3 - 8003136: 6878 ldr r0, [r7, #4] - 8003138: f007 fa7a bl 800a630 + 8003180: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003182: b2db uxtb r3, r3 + 8003184: 4619 mov r1, r3 + 8003186: 6878 ldr r0, [r7, #4] + 8003188: f007 f996 bl 800a4b8 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } CLEAR_IN_EP_INTR(epnum, USB_OTG_DIEPINT_EPDISD); - 800313c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800313e: 015a lsls r2, r3, #5 - 8003140: 69fb ldr r3, [r7, #28] - 8003142: 4413 add r3, r2 - 8003144: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003148: 461a mov r2, r3 - 800314a: 2302 movs r3, #2 - 800314c: 6093 str r3, [r2, #8] + 800318c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800318e: 015a lsls r2, r3, #5 + 8003190: 69fb ldr r3, [r7, #28] + 8003192: 4413 add r3, r2 + 8003194: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003198: 461a mov r2, r3 + 800319a: 2302 movs r3, #2 + 800319c: 6093 str r3, [r2, #8] } if ((epint & USB_OTG_DIEPINT_TXFE) == USB_OTG_DIEPINT_TXFE) - 800314e: 693b ldr r3, [r7, #16] - 8003150: f003 0380 and.w r3, r3, #128 @ 0x80 - 8003154: 2b00 cmp r3, #0 - 8003156: d003 beq.n 8003160 + 800319e: 693b ldr r3, [r7, #16] + 80031a0: f003 0380 and.w r3, r3, #128 @ 0x80 + 80031a4: 2b00 cmp r3, #0 + 80031a6: d003 beq.n 80031b0 { (void)PCD_WriteEmptyTxFifo(hpcd, epnum); - 8003158: 6a79 ldr r1, [r7, #36] @ 0x24 - 800315a: 6878 ldr r0, [r7, #4] - 800315c: f000 fcd2 bl 8003b04 + 80031a8: 6a79 ldr r1, [r7, #36] @ 0x24 + 80031aa: 6878 ldr r0, [r7, #4] + 80031ac: f000 fcd2 bl 8003b54 } } epnum++; - 8003160: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003162: 3301 adds r3, #1 - 8003164: 627b str r3, [r7, #36] @ 0x24 + 80031b0: 6a7b ldr r3, [r7, #36] @ 0x24 + 80031b2: 3301 adds r3, #1 + 80031b4: 627b str r3, [r7, #36] @ 0x24 ep_intr >>= 1U; - 8003166: 6abb ldr r3, [r7, #40] @ 0x28 - 8003168: 085b lsrs r3, r3, #1 - 800316a: 62bb str r3, [r7, #40] @ 0x28 + 80031b6: 6abb ldr r3, [r7, #40] @ 0x28 + 80031b8: 085b lsrs r3, r3, #1 + 80031ba: 62bb str r3, [r7, #40] @ 0x28 while (ep_intr != 0U) - 800316c: 6abb ldr r3, [r7, #40] @ 0x28 - 800316e: 2b00 cmp r3, #0 - 8003170: f47f af2e bne.w 8002fd0 + 80031bc: 6abb ldr r3, [r7, #40] @ 0x28 + 80031be: 2b00 cmp r3, #0 + 80031c0: f47f af2e bne.w 8003020 } } /* Handle Resume Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_WKUINT)) - 8003174: 687b ldr r3, [r7, #4] - 8003176: 681b ldr r3, [r3, #0] - 8003178: 4618 mov r0, r3 - 800317a: f005 f907 bl 800838c - 800317e: 4603 mov r3, r0 - 8003180: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8003184: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8003188: d122 bne.n 80031d0 + 80031c4: 687b ldr r3, [r7, #4] + 80031c6: 681b ldr r3, [r3, #0] + 80031c8: 4618 mov r0, r3 + 80031ca: f005 f823 bl 8008214 + 80031ce: 4603 mov r3, r0 + 80031d0: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80031d4: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80031d8: d122 bne.n 8003220 { /* Clear the Remote Wake-up Signaling */ USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_RWUSIG; - 800318a: 69fb ldr r3, [r7, #28] - 800318c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003190: 685b ldr r3, [r3, #4] - 8003192: 69fa ldr r2, [r7, #28] - 8003194: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003198: f023 0301 bic.w r3, r3, #1 - 800319c: 6053 str r3, [r2, #4] + 80031da: 69fb ldr r3, [r7, #28] + 80031dc: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80031e0: 685b ldr r3, [r3, #4] + 80031e2: 69fa ldr r2, [r7, #28] + 80031e4: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80031e8: f023 0301 bic.w r3, r3, #1 + 80031ec: 6053 str r3, [r2, #4] if (hpcd->LPM_State == LPM_L1) - 800319e: 687b ldr r3, [r7, #4] - 80031a0: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc - 80031a4: 2b01 cmp r3, #1 - 80031a6: d108 bne.n 80031ba + 80031ee: 687b ldr r3, [r7, #4] + 80031f0: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc + 80031f4: 2b01 cmp r3, #1 + 80031f6: d108 bne.n 800320a { hpcd->LPM_State = LPM_L0; - 80031a8: 687b ldr r3, [r7, #4] - 80031aa: 2200 movs r2, #0 - 80031ac: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 80031f8: 687b ldr r3, [r7, #4] + 80031fa: 2200 movs r2, #0 + 80031fc: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->LPMCallback(hpcd, PCD_LPM_L0_ACTIVE); #else HAL_PCDEx_LPM_Callback(hpcd, PCD_LPM_L0_ACTIVE); - 80031b0: 2100 movs r1, #0 - 80031b2: 6878 ldr r0, [r7, #4] - 80031b4: f007 fbe2 bl 800a97c - 80031b8: e002 b.n 80031c0 + 8003200: 2100 movs r1, #0 + 8003202: 6878 ldr r0, [r7, #4] + 8003204: f007 fafe bl 800a804 + 8003208: e002 b.n 8003210 else { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ResumeCallback(hpcd); #else HAL_PCD_ResumeCallback(hpcd); - 80031ba: 6878 ldr r0, [r7, #4] - 80031bc: f007 fa18 bl 800a5f0 + 800320a: 6878 ldr r0, [r7, #4] + 800320c: f007 f934 bl 800a478 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_WKUINT); - 80031c0: 687b ldr r3, [r7, #4] - 80031c2: 681b ldr r3, [r3, #0] - 80031c4: 695a ldr r2, [r3, #20] - 80031c6: 687b ldr r3, [r7, #4] - 80031c8: 681b ldr r3, [r3, #0] - 80031ca: f002 4200 and.w r2, r2, #2147483648 @ 0x80000000 - 80031ce: 615a str r2, [r3, #20] + 8003210: 687b ldr r3, [r7, #4] + 8003212: 681b ldr r3, [r3, #0] + 8003214: 695a ldr r2, [r3, #20] + 8003216: 687b ldr r3, [r7, #4] + 8003218: 681b ldr r3, [r3, #0] + 800321a: f002 4200 and.w r2, r2, #2147483648 @ 0x80000000 + 800321e: 615a str r2, [r3, #20] } /* Handle Suspend Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_USBSUSP)) - 80031d0: 687b ldr r3, [r7, #4] - 80031d2: 681b ldr r3, [r3, #0] - 80031d4: 4618 mov r0, r3 - 80031d6: f005 f8d9 bl 800838c - 80031da: 4603 mov r3, r0 - 80031dc: f403 6300 and.w r3, r3, #2048 @ 0x800 - 80031e0: f5b3 6f00 cmp.w r3, #2048 @ 0x800 - 80031e4: d112 bne.n 800320c + 8003220: 687b ldr r3, [r7, #4] + 8003222: 681b ldr r3, [r3, #0] + 8003224: 4618 mov r0, r3 + 8003226: f004 fff5 bl 8008214 + 800322a: 4603 mov r3, r0 + 800322c: f403 6300 and.w r3, r3, #2048 @ 0x800 + 8003230: f5b3 6f00 cmp.w r3, #2048 @ 0x800 + 8003234: d112 bne.n 800325c { if ((USBx_DEVICE->DSTS & USB_OTG_DSTS_SUSPSTS) == USB_OTG_DSTS_SUSPSTS) - 80031e6: 69fb ldr r3, [r7, #28] - 80031e8: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80031ec: 689b ldr r3, [r3, #8] - 80031ee: f003 0301 and.w r3, r3, #1 - 80031f2: 2b01 cmp r3, #1 - 80031f4: d102 bne.n 80031fc + 8003236: 69fb ldr r3, [r7, #28] + 8003238: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800323c: 689b ldr r3, [r3, #8] + 800323e: f003 0301 and.w r3, r3, #1 + 8003242: 2b01 cmp r3, #1 + 8003244: d102 bne.n 800324c { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SuspendCallback(hpcd); #else HAL_PCD_SuspendCallback(hpcd); - 80031f6: 6878 ldr r0, [r7, #4] - 80031f8: f007 f9d4 bl 800a5a4 + 8003246: 6878 ldr r0, [r7, #4] + 8003248: f007 f8f0 bl 800a42c #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_USBSUSP); - 80031fc: 687b ldr r3, [r7, #4] - 80031fe: 681b ldr r3, [r3, #0] - 8003200: 695a ldr r2, [r3, #20] - 8003202: 687b ldr r3, [r7, #4] - 8003204: 681b ldr r3, [r3, #0] - 8003206: f402 6200 and.w r2, r2, #2048 @ 0x800 - 800320a: 615a str r2, [r3, #20] + 800324c: 687b ldr r3, [r7, #4] + 800324e: 681b ldr r3, [r3, #0] + 8003250: 695a ldr r2, [r3, #20] + 8003252: 687b ldr r3, [r7, #4] + 8003254: 681b ldr r3, [r3, #0] + 8003256: f402 6200 and.w r2, r2, #2048 @ 0x800 + 800325a: 615a str r2, [r3, #20] } #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* Handle LPM Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_LPMINT)) - 800320c: 687b ldr r3, [r7, #4] - 800320e: 681b ldr r3, [r3, #0] - 8003210: 4618 mov r0, r3 - 8003212: f005 f8bb bl 800838c - 8003216: 4603 mov r3, r0 - 8003218: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 800321c: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 8003220: d121 bne.n 8003266 + 800325c: 687b ldr r3, [r7, #4] + 800325e: 681b ldr r3, [r3, #0] + 8003260: 4618 mov r0, r3 + 8003262: f004 ffd7 bl 8008214 + 8003266: 4603 mov r3, r0 + 8003268: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 800326c: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 8003270: d121 bne.n 80032b6 { __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_LPMINT); - 8003222: 687b ldr r3, [r7, #4] - 8003224: 681b ldr r3, [r3, #0] - 8003226: 695a ldr r2, [r3, #20] - 8003228: 687b ldr r3, [r7, #4] - 800322a: 681b ldr r3, [r3, #0] - 800322c: f002 6200 and.w r2, r2, #134217728 @ 0x8000000 - 8003230: 615a str r2, [r3, #20] + 8003272: 687b ldr r3, [r7, #4] + 8003274: 681b ldr r3, [r3, #0] + 8003276: 695a ldr r2, [r3, #20] + 8003278: 687b ldr r3, [r7, #4] + 800327a: 681b ldr r3, [r3, #0] + 800327c: f002 6200 and.w r2, r2, #134217728 @ 0x8000000 + 8003280: 615a str r2, [r3, #20] if (hpcd->LPM_State == LPM_L0) - 8003232: 687b ldr r3, [r7, #4] - 8003234: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc - 8003238: 2b00 cmp r3, #0 - 800323a: d111 bne.n 8003260 + 8003282: 687b ldr r3, [r7, #4] + 8003284: f893 34cc ldrb.w r3, [r3, #1228] @ 0x4cc + 8003288: 2b00 cmp r3, #0 + 800328a: d111 bne.n 80032b0 { hpcd->LPM_State = LPM_L1; - 800323c: 687b ldr r3, [r7, #4] - 800323e: 2201 movs r2, #1 - 8003240: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 800328c: 687b ldr r3, [r7, #4] + 800328e: 2201 movs r2, #1 + 8003290: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc hpcd->BESL = (hpcd->Instance->GLPMCFG & USB_OTG_GLPMCFG_BESL) >> 2U; - 8003244: 687b ldr r3, [r7, #4] - 8003246: 681b ldr r3, [r3, #0] - 8003248: 6d5b ldr r3, [r3, #84] @ 0x54 - 800324a: 089b lsrs r3, r3, #2 - 800324c: f003 020f and.w r2, r3, #15 - 8003250: 687b ldr r3, [r7, #4] - 8003252: f8c3 24d0 str.w r2, [r3, #1232] @ 0x4d0 + 8003294: 687b ldr r3, [r7, #4] + 8003296: 681b ldr r3, [r3, #0] + 8003298: 6d5b ldr r3, [r3, #84] @ 0x54 + 800329a: 089b lsrs r3, r3, #2 + 800329c: f003 020f and.w r2, r3, #15 + 80032a0: 687b ldr r3, [r7, #4] + 80032a2: f8c3 24d0 str.w r2, [r3, #1232] @ 0x4d0 #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->LPMCallback(hpcd, PCD_LPM_L1_ACTIVE); #else HAL_PCDEx_LPM_Callback(hpcd, PCD_LPM_L1_ACTIVE); - 8003256: 2101 movs r1, #1 - 8003258: 6878 ldr r0, [r7, #4] - 800325a: f007 fb8f bl 800a97c - 800325e: e002 b.n 8003266 + 80032a6: 2101 movs r1, #1 + 80032a8: 6878 ldr r0, [r7, #4] + 80032aa: f007 faab bl 800a804 + 80032ae: e002 b.n 80032b6 else { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SuspendCallback(hpcd); #else HAL_PCD_SuspendCallback(hpcd); - 8003260: 6878 ldr r0, [r7, #4] - 8003262: f007 f99f bl 800a5a4 + 80032b0: 6878 ldr r0, [r7, #4] + 80032b2: f007 f8bb bl 800a42c } #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ /* Handle Reset Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_USBRST)) - 8003266: 687b ldr r3, [r7, #4] - 8003268: 681b ldr r3, [r3, #0] - 800326a: 4618 mov r0, r3 - 800326c: f005 f88e bl 800838c - 8003270: 4603 mov r3, r0 - 8003272: f403 5380 and.w r3, r3, #4096 @ 0x1000 - 8003276: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 800327a: f040 80b7 bne.w 80033ec + 80032b6: 687b ldr r3, [r7, #4] + 80032b8: 681b ldr r3, [r3, #0] + 80032ba: 4618 mov r0, r3 + 80032bc: f004 ffaa bl 8008214 + 80032c0: 4603 mov r3, r0 + 80032c2: f403 5380 and.w r3, r3, #4096 @ 0x1000 + 80032c6: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 80032ca: f040 80b7 bne.w 800343c { USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_RWUSIG; - 800327e: 69fb ldr r3, [r7, #28] - 8003280: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003284: 685b ldr r3, [r3, #4] - 8003286: 69fa ldr r2, [r7, #28] - 8003288: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800328c: f023 0301 bic.w r3, r3, #1 - 8003290: 6053 str r3, [r2, #4] + 80032ce: 69fb ldr r3, [r7, #28] + 80032d0: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80032d4: 685b ldr r3, [r3, #4] + 80032d6: 69fa ldr r2, [r7, #28] + 80032d8: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80032dc: f023 0301 bic.w r3, r3, #1 + 80032e0: 6053 str r3, [r2, #4] (void)USB_FlushTxFifo(hpcd->Instance, 0x10U); - 8003292: 687b ldr r3, [r7, #4] - 8003294: 681b ldr r3, [r3, #0] - 8003296: 2110 movs r1, #16 - 8003298: 4618 mov r0, r3 - 800329a: f004 f95b bl 8007554 + 80032e2: 687b ldr r3, [r7, #4] + 80032e4: 681b ldr r3, [r3, #0] + 80032e6: 2110 movs r1, #16 + 80032e8: 4618 mov r0, r3 + 80032ea: f004 f877 bl 80073dc for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 800329e: 2300 movs r3, #0 - 80032a0: 62fb str r3, [r7, #44] @ 0x2c - 80032a2: e046 b.n 8003332 + 80032ee: 2300 movs r3, #0 + 80032f0: 62fb str r3, [r7, #44] @ 0x2c + 80032f2: e046 b.n 8003382 { USBx_INEP(i)->DIEPINT = 0xFB7FU; - 80032a4: 6afb ldr r3, [r7, #44] @ 0x2c - 80032a6: 015a lsls r2, r3, #5 - 80032a8: 69fb ldr r3, [r7, #28] - 80032aa: 4413 add r3, r2 - 80032ac: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80032b0: 461a mov r2, r3 - 80032b2: f64f 337f movw r3, #64383 @ 0xfb7f - 80032b6: 6093 str r3, [r2, #8] + 80032f4: 6afb ldr r3, [r7, #44] @ 0x2c + 80032f6: 015a lsls r2, r3, #5 + 80032f8: 69fb ldr r3, [r7, #28] + 80032fa: 4413 add r3, r2 + 80032fc: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003300: 461a mov r2, r3 + 8003302: f64f 337f movw r3, #64383 @ 0xfb7f + 8003306: 6093 str r3, [r2, #8] USBx_INEP(i)->DIEPCTL &= ~USB_OTG_DIEPCTL_STALL; - 80032b8: 6afb ldr r3, [r7, #44] @ 0x2c - 80032ba: 015a lsls r2, r3, #5 - 80032bc: 69fb ldr r3, [r7, #28] - 80032be: 4413 add r3, r2 - 80032c0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80032c4: 681b ldr r3, [r3, #0] - 80032c6: 6afa ldr r2, [r7, #44] @ 0x2c - 80032c8: 0151 lsls r1, r2, #5 - 80032ca: 69fa ldr r2, [r7, #28] - 80032cc: 440a add r2, r1 - 80032ce: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80032d2: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 80032d6: 6013 str r3, [r2, #0] + 8003308: 6afb ldr r3, [r7, #44] @ 0x2c + 800330a: 015a lsls r2, r3, #5 + 800330c: 69fb ldr r3, [r7, #28] + 800330e: 4413 add r3, r2 + 8003310: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003314: 681b ldr r3, [r3, #0] + 8003316: 6afa ldr r2, [r7, #44] @ 0x2c + 8003318: 0151 lsls r1, r2, #5 + 800331a: 69fa ldr r2, [r7, #28] + 800331c: 440a add r2, r1 + 800331e: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8003322: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 8003326: 6013 str r3, [r2, #0] USBx_OUTEP(i)->DOEPINT = 0xFB7FU; - 80032d8: 6afb ldr r3, [r7, #44] @ 0x2c - 80032da: 015a lsls r2, r3, #5 - 80032dc: 69fb ldr r3, [r7, #28] - 80032de: 4413 add r3, r2 - 80032e0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80032e4: 461a mov r2, r3 - 80032e6: f64f 337f movw r3, #64383 @ 0xfb7f - 80032ea: 6093 str r3, [r2, #8] + 8003328: 6afb ldr r3, [r7, #44] @ 0x2c + 800332a: 015a lsls r2, r3, #5 + 800332c: 69fb ldr r3, [r7, #28] + 800332e: 4413 add r3, r2 + 8003330: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003334: 461a mov r2, r3 + 8003336: f64f 337f movw r3, #64383 @ 0xfb7f + 800333a: 6093 str r3, [r2, #8] USBx_OUTEP(i)->DOEPCTL &= ~USB_OTG_DOEPCTL_STALL; - 80032ec: 6afb ldr r3, [r7, #44] @ 0x2c - 80032ee: 015a lsls r2, r3, #5 - 80032f0: 69fb ldr r3, [r7, #28] - 80032f2: 4413 add r3, r2 - 80032f4: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80032f8: 681b ldr r3, [r3, #0] - 80032fa: 6afa ldr r2, [r7, #44] @ 0x2c - 80032fc: 0151 lsls r1, r2, #5 - 80032fe: 69fa ldr r2, [r7, #28] - 8003300: 440a add r2, r1 - 8003302: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8003306: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 800330a: 6013 str r3, [r2, #0] + 800333c: 6afb ldr r3, [r7, #44] @ 0x2c + 800333e: 015a lsls r2, r3, #5 + 8003340: 69fb ldr r3, [r7, #28] + 8003342: 4413 add r3, r2 + 8003344: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003348: 681b ldr r3, [r3, #0] + 800334a: 6afa ldr r2, [r7, #44] @ 0x2c + 800334c: 0151 lsls r1, r2, #5 + 800334e: 69fa ldr r2, [r7, #28] + 8003350: 440a add r2, r1 + 8003352: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8003356: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 800335a: 6013 str r3, [r2, #0] USBx_OUTEP(i)->DOEPCTL |= USB_OTG_DOEPCTL_SNAK; - 800330c: 6afb ldr r3, [r7, #44] @ 0x2c - 800330e: 015a lsls r2, r3, #5 - 8003310: 69fb ldr r3, [r7, #28] - 8003312: 4413 add r3, r2 - 8003314: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003318: 681b ldr r3, [r3, #0] - 800331a: 6afa ldr r2, [r7, #44] @ 0x2c - 800331c: 0151 lsls r1, r2, #5 - 800331e: 69fa ldr r2, [r7, #28] - 8003320: 440a add r2, r1 - 8003322: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8003326: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 800332a: 6013 str r3, [r2, #0] + 800335c: 6afb ldr r3, [r7, #44] @ 0x2c + 800335e: 015a lsls r2, r3, #5 + 8003360: 69fb ldr r3, [r7, #28] + 8003362: 4413 add r3, r2 + 8003364: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003368: 681b ldr r3, [r3, #0] + 800336a: 6afa ldr r2, [r7, #44] @ 0x2c + 800336c: 0151 lsls r1, r2, #5 + 800336e: 69fa ldr r2, [r7, #28] + 8003370: 440a add r2, r1 + 8003372: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8003376: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 800337a: 6013 str r3, [r2, #0] for (i = 0U; i < hpcd->Init.dev_endpoints; i++) - 800332c: 6afb ldr r3, [r7, #44] @ 0x2c - 800332e: 3301 adds r3, #1 - 8003330: 62fb str r3, [r7, #44] @ 0x2c - 8003332: 687b ldr r3, [r7, #4] - 8003334: 791b ldrb r3, [r3, #4] - 8003336: 461a mov r2, r3 - 8003338: 6afb ldr r3, [r7, #44] @ 0x2c - 800333a: 4293 cmp r3, r2 - 800333c: d3b2 bcc.n 80032a4 + 800337c: 6afb ldr r3, [r7, #44] @ 0x2c + 800337e: 3301 adds r3, #1 + 8003380: 62fb str r3, [r7, #44] @ 0x2c + 8003382: 687b ldr r3, [r7, #4] + 8003384: 791b ldrb r3, [r3, #4] + 8003386: 461a mov r2, r3 + 8003388: 6afb ldr r3, [r7, #44] @ 0x2c + 800338a: 4293 cmp r3, r2 + 800338c: d3b2 bcc.n 80032f4 } USBx_DEVICE->DAINTMSK |= 0x10001U; - 800333e: 69fb ldr r3, [r7, #28] - 8003340: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003344: 69db ldr r3, [r3, #28] - 8003346: 69fa ldr r2, [r7, #28] - 8003348: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800334c: f043 1301 orr.w r3, r3, #65537 @ 0x10001 - 8003350: 61d3 str r3, [r2, #28] + 800338e: 69fb ldr r3, [r7, #28] + 8003390: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003394: 69db ldr r3, [r3, #28] + 8003396: 69fa ldr r2, [r7, #28] + 8003398: f502 6200 add.w r2, r2, #2048 @ 0x800 + 800339c: f043 1301 orr.w r3, r3, #65537 @ 0x10001 + 80033a0: 61d3 str r3, [r2, #28] if (hpcd->Init.use_dedicated_ep1 != 0U) - 8003352: 687b ldr r3, [r7, #4] - 8003354: 7bdb ldrb r3, [r3, #15] - 8003356: 2b00 cmp r3, #0 - 8003358: d016 beq.n 8003388 + 80033a2: 687b ldr r3, [r7, #4] + 80033a4: 7bdb ldrb r3, [r3, #15] + 80033a6: 2b00 cmp r3, #0 + 80033a8: d016 beq.n 80033d8 { USBx_DEVICE->DOUTEP1MSK |= USB_OTG_DOEPMSK_STUPM | - 800335a: 69fb ldr r3, [r7, #28] - 800335c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003360: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8003364: 69fa ldr r2, [r7, #28] - 8003366: f502 6200 add.w r2, r2, #2048 @ 0x800 - 800336a: f043 030b orr.w r3, r3, #11 - 800336e: f8c2 3084 str.w r3, [r2, #132] @ 0x84 + 80033aa: 69fb ldr r3, [r7, #28] + 80033ac: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80033b0: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 80033b4: 69fa ldr r2, [r7, #28] + 80033b6: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80033ba: f043 030b orr.w r3, r3, #11 + 80033be: f8c2 3084 str.w r3, [r2, #132] @ 0x84 USB_OTG_DOEPMSK_XFRCM | USB_OTG_DOEPMSK_EPDM; USBx_DEVICE->DINEP1MSK |= USB_OTG_DIEPMSK_TOM | - 8003372: 69fb ldr r3, [r7, #28] - 8003374: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003378: 6c5b ldr r3, [r3, #68] @ 0x44 - 800337a: 69fa ldr r2, [r7, #28] - 800337c: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003380: f043 030b orr.w r3, r3, #11 - 8003384: 6453 str r3, [r2, #68] @ 0x44 - 8003386: e015 b.n 80033b4 + 80033c2: 69fb ldr r3, [r7, #28] + 80033c4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80033c8: 6c5b ldr r3, [r3, #68] @ 0x44 + 80033ca: 69fa ldr r2, [r7, #28] + 80033cc: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80033d0: f043 030b orr.w r3, r3, #11 + 80033d4: 6453 str r3, [r2, #68] @ 0x44 + 80033d6: e015 b.n 8003404 USB_OTG_DIEPMSK_XFRCM | USB_OTG_DIEPMSK_EPDM; } else { USBx_DEVICE->DOEPMSK |= USB_OTG_DOEPMSK_STUPM | - 8003388: 69fb ldr r3, [r7, #28] - 800338a: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800338e: 695b ldr r3, [r3, #20] - 8003390: 69fa ldr r2, [r7, #28] - 8003392: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8003396: f443 5300 orr.w r3, r3, #8192 @ 0x2000 - 800339a: f043 032b orr.w r3, r3, #43 @ 0x2b - 800339e: 6153 str r3, [r2, #20] + 80033d8: 69fb ldr r3, [r7, #28] + 80033da: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80033de: 695b ldr r3, [r3, #20] + 80033e0: 69fa ldr r2, [r7, #28] + 80033e2: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80033e6: f443 5300 orr.w r3, r3, #8192 @ 0x2000 + 80033ea: f043 032b orr.w r3, r3, #43 @ 0x2b + 80033ee: 6153 str r3, [r2, #20] USB_OTG_DOEPMSK_XFRCM | USB_OTG_DOEPMSK_EPDM | USB_OTG_DOEPMSK_OTEPSPRM | USB_OTG_DOEPMSK_NAKM; USBx_DEVICE->DIEPMSK |= USB_OTG_DIEPMSK_TOM | - 80033a0: 69fb ldr r3, [r7, #28] - 80033a2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80033a6: 691b ldr r3, [r3, #16] - 80033a8: 69fa ldr r2, [r7, #28] - 80033aa: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80033ae: f043 030b orr.w r3, r3, #11 - 80033b2: 6113 str r3, [r2, #16] + 80033f0: 69fb ldr r3, [r7, #28] + 80033f2: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80033f6: 691b ldr r3, [r3, #16] + 80033f8: 69fa ldr r2, [r7, #28] + 80033fa: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80033fe: f043 030b orr.w r3, r3, #11 + 8003402: 6113 str r3, [r2, #16] USB_OTG_DIEPMSK_XFRCM | USB_OTG_DIEPMSK_EPDM; } /* Set Default Address to 0 */ USBx_DEVICE->DCFG &= ~USB_OTG_DCFG_DAD; - 80033b4: 69fb ldr r3, [r7, #28] - 80033b6: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80033ba: 681b ldr r3, [r3, #0] - 80033bc: 69fa ldr r2, [r7, #28] - 80033be: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80033c2: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 - 80033c6: 6013 str r3, [r2, #0] + 8003404: 69fb ldr r3, [r7, #28] + 8003406: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800340a: 681b ldr r3, [r3, #0] + 800340c: 69fa ldr r2, [r7, #28] + 800340e: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8003412: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 + 8003416: 6013 str r3, [r2, #0] /* setup EP0 to receive SETUP packets */ (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, - 80033c8: 687b ldr r3, [r7, #4] - 80033ca: 6818 ldr r0, [r3, #0] - 80033cc: 687b ldr r3, [r7, #4] - 80033ce: 7999 ldrb r1, [r3, #6] + 8003418: 687b ldr r3, [r7, #4] + 800341a: 6818 ldr r0, [r3, #0] + 800341c: 687b ldr r3, [r7, #4] + 800341e: 7999 ldrb r1, [r3, #6] (uint8_t *)hpcd->Setup); - 80033d0: 687b ldr r3, [r7, #4] - 80033d2: f203 439c addw r3, r3, #1180 @ 0x49c + 8003420: 687b ldr r3, [r7, #4] + 8003422: f203 439c addw r3, r3, #1180 @ 0x49c (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, - 80033d6: 461a mov r2, r3 - 80033d8: f005 f89c bl 8008514 + 8003426: 461a mov r2, r3 + 8003428: f004 ffb8 bl 800839c __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_USBRST); - 80033dc: 687b ldr r3, [r7, #4] - 80033de: 681b ldr r3, [r3, #0] - 80033e0: 695a ldr r2, [r3, #20] - 80033e2: 687b ldr r3, [r7, #4] - 80033e4: 681b ldr r3, [r3, #0] - 80033e6: f402 5280 and.w r2, r2, #4096 @ 0x1000 - 80033ea: 615a str r2, [r3, #20] + 800342c: 687b ldr r3, [r7, #4] + 800342e: 681b ldr r3, [r3, #0] + 8003430: 695a ldr r2, [r3, #20] + 8003432: 687b ldr r3, [r7, #4] + 8003434: 681b ldr r3, [r3, #0] + 8003436: f402 5280 and.w r2, r2, #4096 @ 0x1000 + 800343a: 615a str r2, [r3, #20] } /* Handle Enumeration done Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_ENUMDNE)) - 80033ec: 687b ldr r3, [r7, #4] - 80033ee: 681b ldr r3, [r3, #0] - 80033f0: 4618 mov r0, r3 - 80033f2: f004 ffcb bl 800838c - 80033f6: 4603 mov r3, r0 - 80033f8: f403 5300 and.w r3, r3, #8192 @ 0x2000 - 80033fc: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 - 8003400: d123 bne.n 800344a + 800343c: 687b ldr r3, [r7, #4] + 800343e: 681b ldr r3, [r3, #0] + 8003440: 4618 mov r0, r3 + 8003442: f004 fee7 bl 8008214 + 8003446: 4603 mov r3, r0 + 8003448: f403 5300 and.w r3, r3, #8192 @ 0x2000 + 800344c: f5b3 5f00 cmp.w r3, #8192 @ 0x2000 + 8003450: d123 bne.n 800349a { (void)USB_ActivateSetup(hpcd->Instance); - 8003402: 687b ldr r3, [r7, #4] - 8003404: 681b ldr r3, [r3, #0] - 8003406: 4618 mov r0, r3 - 8003408: f005 f861 bl 80084ce + 8003452: 687b ldr r3, [r7, #4] + 8003454: 681b ldr r3, [r3, #0] + 8003456: 4618 mov r0, r3 + 8003458: f004 ff7d bl 8008356 hpcd->Init.speed = USB_GetDevSpeed(hpcd->Instance); - 800340c: 687b ldr r3, [r7, #4] - 800340e: 681b ldr r3, [r3, #0] - 8003410: 4618 mov r0, r3 - 8003412: f004 f918 bl 8007646 - 8003416: 4603 mov r3, r0 - 8003418: 461a mov r2, r3 - 800341a: 687b ldr r3, [r7, #4] - 800341c: 71da strb r2, [r3, #7] + 800345c: 687b ldr r3, [r7, #4] + 800345e: 681b ldr r3, [r3, #0] + 8003460: 4618 mov r0, r3 + 8003462: f004 f834 bl 80074ce + 8003466: 4603 mov r3, r0 + 8003468: 461a mov r2, r3 + 800346a: 687b ldr r3, [r7, #4] + 800346c: 71da strb r2, [r3, #7] /* Set USB Turnaround time */ (void)USB_SetTurnaroundTime(hpcd->Instance, - 800341e: 687b ldr r3, [r7, #4] - 8003420: 681c ldr r4, [r3, #0] - 8003422: f000 fe8b bl 800413c - 8003426: 4601 mov r1, r0 + 800346e: 687b ldr r3, [r7, #4] + 8003470: 681c ldr r4, [r3, #0] + 8003472: f000 fe8b bl 800418c + 8003476: 4601 mov r1, r0 HAL_RCC_GetHCLKFreq(), (uint8_t)hpcd->Init.speed); - 8003428: 687b ldr r3, [r7, #4] - 800342a: 79db ldrb r3, [r3, #7] + 8003478: 687b ldr r3, [r7, #4] + 800347a: 79db ldrb r3, [r3, #7] (void)USB_SetTurnaroundTime(hpcd->Instance, - 800342c: 461a mov r2, r3 - 800342e: 4620 mov r0, r4 - 8003430: f003 fe22 bl 8007078 + 800347c: 461a mov r2, r3 + 800347e: 4620 mov r0, r4 + 8003480: f003 fd3e bl 8006f00 #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ResetCallback(hpcd); #else HAL_PCD_ResetCallback(hpcd); - 8003434: 6878 ldr r0, [r7, #4] - 8003436: f007 f88c bl 800a552 + 8003484: 6878 ldr r0, [r7, #4] + 8003486: f006 ffa8 bl 800a3da #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_ENUMDNE); - 800343a: 687b ldr r3, [r7, #4] - 800343c: 681b ldr r3, [r3, #0] - 800343e: 695a ldr r2, [r3, #20] - 8003440: 687b ldr r3, [r7, #4] - 8003442: 681b ldr r3, [r3, #0] - 8003444: f402 5200 and.w r2, r2, #8192 @ 0x2000 - 8003448: 615a str r2, [r3, #20] + 800348a: 687b ldr r3, [r7, #4] + 800348c: 681b ldr r3, [r3, #0] + 800348e: 695a ldr r2, [r3, #20] + 8003490: 687b ldr r3, [r7, #4] + 8003492: 681b ldr r3, [r3, #0] + 8003494: f402 5200 and.w r2, r2, #8192 @ 0x2000 + 8003498: 615a str r2, [r3, #20] } /* Handle SOF Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_SOF)) - 800344a: 687b ldr r3, [r7, #4] - 800344c: 681b ldr r3, [r3, #0] - 800344e: 4618 mov r0, r3 - 8003450: f004 ff9c bl 800838c - 8003454: 4603 mov r3, r0 - 8003456: f003 0308 and.w r3, r3, #8 - 800345a: 2b08 cmp r3, #8 - 800345c: d10a bne.n 8003474 + 800349a: 687b ldr r3, [r7, #4] + 800349c: 681b ldr r3, [r3, #0] + 800349e: 4618 mov r0, r3 + 80034a0: f004 feb8 bl 8008214 + 80034a4: 4603 mov r3, r0 + 80034a6: f003 0308 and.w r3, r3, #8 + 80034aa: 2b08 cmp r3, #8 + 80034ac: d10a bne.n 80034c4 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SOFCallback(hpcd); #else HAL_PCD_SOFCallback(hpcd); - 800345e: 6878 ldr r0, [r7, #4] - 8003460: f007 f869 bl 800a536 + 80034ae: 6878 ldr r0, [r7, #4] + 80034b0: f006 ff85 bl 800a3be #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_SOF); - 8003464: 687b ldr r3, [r7, #4] - 8003466: 681b ldr r3, [r3, #0] - 8003468: 695a ldr r2, [r3, #20] - 800346a: 687b ldr r3, [r7, #4] - 800346c: 681b ldr r3, [r3, #0] - 800346e: f002 0208 and.w r2, r2, #8 - 8003472: 615a str r2, [r3, #20] + 80034b4: 687b ldr r3, [r7, #4] + 80034b6: 681b ldr r3, [r3, #0] + 80034b8: 695a ldr r2, [r3, #20] + 80034ba: 687b ldr r3, [r7, #4] + 80034bc: 681b ldr r3, [r3, #0] + 80034be: f002 0208 and.w r2, r2, #8 + 80034c2: 615a str r2, [r3, #20] } /* Handle Global OUT NAK effective Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_BOUTNAKEFF)) - 8003474: 687b ldr r3, [r7, #4] - 8003476: 681b ldr r3, [r3, #0] - 8003478: 4618 mov r0, r3 - 800347a: f004 ff87 bl 800838c - 800347e: 4603 mov r3, r0 - 8003480: f003 0380 and.w r3, r3, #128 @ 0x80 - 8003484: 2b80 cmp r3, #128 @ 0x80 - 8003486: d123 bne.n 80034d0 + 80034c4: 687b ldr r3, [r7, #4] + 80034c6: 681b ldr r3, [r3, #0] + 80034c8: 4618 mov r0, r3 + 80034ca: f004 fea3 bl 8008214 + 80034ce: 4603 mov r3, r0 + 80034d0: f003 0380 and.w r3, r3, #128 @ 0x80 + 80034d4: 2b80 cmp r3, #128 @ 0x80 + 80034d6: d123 bne.n 8003520 { USBx->GINTMSK &= ~USB_OTG_GINTMSK_GONAKEFFM; - 8003488: 6a3b ldr r3, [r7, #32] - 800348a: 699b ldr r3, [r3, #24] - 800348c: f023 0280 bic.w r2, r3, #128 @ 0x80 - 8003490: 6a3b ldr r3, [r7, #32] - 8003492: 619a str r2, [r3, #24] + 80034d8: 6a3b ldr r3, [r7, #32] + 80034da: 699b ldr r3, [r3, #24] + 80034dc: f023 0280 bic.w r2, r3, #128 @ 0x80 + 80034e0: 6a3b ldr r3, [r7, #32] + 80034e2: 619a str r2, [r3, #24] for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 8003494: 2301 movs r3, #1 - 8003496: 627b str r3, [r7, #36] @ 0x24 - 8003498: e014 b.n 80034c4 + 80034e4: 2301 movs r3, #1 + 80034e6: 627b str r3, [r7, #36] @ 0x24 + 80034e8: e014 b.n 8003514 { if (hpcd->OUT_ep[epnum].is_iso_incomplete == 1U) - 800349a: 6879 ldr r1, [r7, #4] - 800349c: 6a7a ldr r2, [r7, #36] @ 0x24 - 800349e: 4613 mov r3, r2 - 80034a0: 00db lsls r3, r3, #3 - 80034a2: 4413 add r3, r2 - 80034a4: 009b lsls r3, r3, #2 - 80034a6: 440b add r3, r1 - 80034a8: f203 2357 addw r3, r3, #599 @ 0x257 - 80034ac: 781b ldrb r3, [r3, #0] - 80034ae: 2b01 cmp r3, #1 - 80034b0: d105 bne.n 80034be + 80034ea: 6879 ldr r1, [r7, #4] + 80034ec: 6a7a ldr r2, [r7, #36] @ 0x24 + 80034ee: 4613 mov r3, r2 + 80034f0: 00db lsls r3, r3, #3 + 80034f2: 4413 add r3, r2 + 80034f4: 009b lsls r3, r3, #2 + 80034f6: 440b add r3, r1 + 80034f8: f203 2357 addw r3, r3, #599 @ 0x257 + 80034fc: 781b ldrb r3, [r3, #0] + 80034fe: 2b01 cmp r3, #1 + 8003500: d105 bne.n 800350e { /* Abort current transaction and disable the EP */ (void)HAL_PCD_EP_Abort(hpcd, (uint8_t)epnum); - 80034b2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80034b4: b2db uxtb r3, r3 - 80034b6: 4619 mov r1, r3 - 80034b8: 6878 ldr r0, [r7, #4] - 80034ba: f000 faf2 bl 8003aa2 + 8003502: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003504: b2db uxtb r3, r3 + 8003506: 4619 mov r1, r3 + 8003508: 6878 ldr r0, [r7, #4] + 800350a: f000 faf2 bl 8003af2 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 80034be: 6a7b ldr r3, [r7, #36] @ 0x24 - 80034c0: 3301 adds r3, #1 - 80034c2: 627b str r3, [r7, #36] @ 0x24 - 80034c4: 687b ldr r3, [r7, #4] - 80034c6: 791b ldrb r3, [r3, #4] - 80034c8: 461a mov r2, r3 - 80034ca: 6a7b ldr r3, [r7, #36] @ 0x24 - 80034cc: 4293 cmp r3, r2 - 80034ce: d3e4 bcc.n 800349a + 800350e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003510: 3301 adds r3, #1 + 8003512: 627b str r3, [r7, #36] @ 0x24 + 8003514: 687b ldr r3, [r7, #4] + 8003516: 791b ldrb r3, [r3, #4] + 8003518: 461a mov r2, r3 + 800351a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800351c: 4293 cmp r3, r2 + 800351e: d3e4 bcc.n 80034ea } } } /* Handle Incomplete ISO IN Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_IISOIXFR)) - 80034d0: 687b ldr r3, [r7, #4] - 80034d2: 681b ldr r3, [r3, #0] - 80034d4: 4618 mov r0, r3 - 80034d6: f004 ff59 bl 800838c - 80034da: 4603 mov r3, r0 - 80034dc: f403 1380 and.w r3, r3, #1048576 @ 0x100000 - 80034e0: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 80034e4: d13c bne.n 8003560 + 8003520: 687b ldr r3, [r7, #4] + 8003522: 681b ldr r3, [r3, #0] + 8003524: 4618 mov r0, r3 + 8003526: f004 fe75 bl 8008214 + 800352a: 4603 mov r3, r0 + 800352c: f403 1380 and.w r3, r3, #1048576 @ 0x100000 + 8003530: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 8003534: d13c bne.n 80035b0 { for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 80034e6: 2301 movs r3, #1 - 80034e8: 627b str r3, [r7, #36] @ 0x24 - 80034ea: e02b b.n 8003544 + 8003536: 2301 movs r3, #1 + 8003538: 627b str r3, [r7, #36] @ 0x24 + 800353a: e02b b.n 8003594 { RegVal = USBx_INEP(epnum)->DIEPCTL; - 80034ec: 6a7b ldr r3, [r7, #36] @ 0x24 - 80034ee: 015a lsls r2, r3, #5 - 80034f0: 69fb ldr r3, [r7, #28] - 80034f2: 4413 add r3, r2 - 80034f4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80034f8: 681b ldr r3, [r3, #0] - 80034fa: 61bb str r3, [r7, #24] + 800353c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800353e: 015a lsls r2, r3, #5 + 8003540: 69fb ldr r3, [r7, #28] + 8003542: 4413 add r3, r2 + 8003544: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003548: 681b ldr r3, [r3, #0] + 800354a: 61bb str r3, [r7, #24] if ((hpcd->IN_ep[epnum].type == EP_TYPE_ISOC) && - 80034fc: 6879 ldr r1, [r7, #4] - 80034fe: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003500: 4613 mov r3, r2 - 8003502: 00db lsls r3, r3, #3 - 8003504: 4413 add r3, r2 - 8003506: 009b lsls r3, r3, #2 - 8003508: 440b add r3, r1 - 800350a: 3318 adds r3, #24 - 800350c: 781b ldrb r3, [r3, #0] - 800350e: 2b01 cmp r3, #1 - 8003510: d115 bne.n 800353e + 800354c: 6879 ldr r1, [r7, #4] + 800354e: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003550: 4613 mov r3, r2 + 8003552: 00db lsls r3, r3, #3 + 8003554: 4413 add r3, r2 + 8003556: 009b lsls r3, r3, #2 + 8003558: 440b add r3, r1 + 800355a: 3318 adds r3, #24 + 800355c: 781b ldrb r3, [r3, #0] + 800355e: 2b01 cmp r3, #1 + 8003560: d115 bne.n 800358e ((RegVal & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA)) - 8003512: 69bb ldr r3, [r7, #24] + 8003562: 69bb ldr r3, [r7, #24] if ((hpcd->IN_ep[epnum].type == EP_TYPE_ISOC) && - 8003514: 2b00 cmp r3, #0 - 8003516: da12 bge.n 800353e + 8003564: 2b00 cmp r3, #0 + 8003566: da12 bge.n 800358e { hpcd->IN_ep[epnum].is_iso_incomplete = 1U; - 8003518: 6879 ldr r1, [r7, #4] - 800351a: 6a7a ldr r2, [r7, #36] @ 0x24 - 800351c: 4613 mov r3, r2 - 800351e: 00db lsls r3, r3, #3 - 8003520: 4413 add r3, r2 - 8003522: 009b lsls r3, r3, #2 - 8003524: 440b add r3, r1 - 8003526: 3317 adds r3, #23 - 8003528: 2201 movs r2, #1 - 800352a: 701a strb r2, [r3, #0] + 8003568: 6879 ldr r1, [r7, #4] + 800356a: 6a7a ldr r2, [r7, #36] @ 0x24 + 800356c: 4613 mov r3, r2 + 800356e: 00db lsls r3, r3, #3 + 8003570: 4413 add r3, r2 + 8003572: 009b lsls r3, r3, #2 + 8003574: 440b add r3, r1 + 8003576: 3317 adds r3, #23 + 8003578: 2201 movs r2, #1 + 800357a: 701a strb r2, [r3, #0] /* Abort current transaction and disable the EP */ (void)HAL_PCD_EP_Abort(hpcd, (uint8_t)(epnum | 0x80U)); - 800352c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800352e: b2db uxtb r3, r3 - 8003530: f063 037f orn r3, r3, #127 @ 0x7f - 8003534: b2db uxtb r3, r3 - 8003536: 4619 mov r1, r3 - 8003538: 6878 ldr r0, [r7, #4] - 800353a: f000 fab2 bl 8003aa2 + 800357c: 6a7b ldr r3, [r7, #36] @ 0x24 + 800357e: b2db uxtb r3, r3 + 8003580: f063 037f orn r3, r3, #127 @ 0x7f + 8003584: b2db uxtb r3, r3 + 8003586: 4619 mov r1, r3 + 8003588: 6878 ldr r0, [r7, #4] + 800358a: f000 fab2 bl 8003af2 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 800353e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003540: 3301 adds r3, #1 - 8003542: 627b str r3, [r7, #36] @ 0x24 - 8003544: 687b ldr r3, [r7, #4] - 8003546: 791b ldrb r3, [r3, #4] - 8003548: 461a mov r2, r3 - 800354a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800354c: 4293 cmp r3, r2 - 800354e: d3cd bcc.n 80034ec + 800358e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003590: 3301 adds r3, #1 + 8003592: 627b str r3, [r7, #36] @ 0x24 + 8003594: 687b ldr r3, [r7, #4] + 8003596: 791b ldrb r3, [r3, #4] + 8003598: 461a mov r2, r3 + 800359a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800359c: 4293 cmp r3, r2 + 800359e: d3cd bcc.n 800353c } } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_IISOIXFR); - 8003550: 687b ldr r3, [r7, #4] - 8003552: 681b ldr r3, [r3, #0] - 8003554: 695a ldr r2, [r3, #20] - 8003556: 687b ldr r3, [r7, #4] - 8003558: 681b ldr r3, [r3, #0] - 800355a: f402 1280 and.w r2, r2, #1048576 @ 0x100000 - 800355e: 615a str r2, [r3, #20] + 80035a0: 687b ldr r3, [r7, #4] + 80035a2: 681b ldr r3, [r3, #0] + 80035a4: 695a ldr r2, [r3, #20] + 80035a6: 687b ldr r3, [r7, #4] + 80035a8: 681b ldr r3, [r3, #0] + 80035aa: f402 1280 and.w r2, r2, #1048576 @ 0x100000 + 80035ae: 615a str r2, [r3, #20] } /* Handle Incomplete ISO OUT Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_PXFR_INCOMPISOOUT)) - 8003560: 687b ldr r3, [r7, #4] - 8003562: 681b ldr r3, [r3, #0] - 8003564: 4618 mov r0, r3 - 8003566: f004 ff11 bl 800838c - 800356a: 4603 mov r3, r0 - 800356c: f403 1300 and.w r3, r3, #2097152 @ 0x200000 - 8003570: f5b3 1f00 cmp.w r3, #2097152 @ 0x200000 - 8003574: d156 bne.n 8003624 + 80035b0: 687b ldr r3, [r7, #4] + 80035b2: 681b ldr r3, [r3, #0] + 80035b4: 4618 mov r0, r3 + 80035b6: f004 fe2d bl 8008214 + 80035ba: 4603 mov r3, r0 + 80035bc: f403 1300 and.w r3, r3, #2097152 @ 0x200000 + 80035c0: f5b3 1f00 cmp.w r3, #2097152 @ 0x200000 + 80035c4: d156 bne.n 8003674 { for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 8003576: 2301 movs r3, #1 - 8003578: 627b str r3, [r7, #36] @ 0x24 - 800357a: e045 b.n 8003608 + 80035c6: 2301 movs r3, #1 + 80035c8: 627b str r3, [r7, #36] @ 0x24 + 80035ca: e045 b.n 8003658 { RegVal = USBx_OUTEP(epnum)->DOEPCTL; - 800357c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800357e: 015a lsls r2, r3, #5 - 8003580: 69fb ldr r3, [r7, #28] - 8003582: 4413 add r3, r2 - 8003584: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003588: 681b ldr r3, [r3, #0] - 800358a: 61bb str r3, [r7, #24] + 80035cc: 6a7b ldr r3, [r7, #36] @ 0x24 + 80035ce: 015a lsls r2, r3, #5 + 80035d0: 69fb ldr r3, [r7, #28] + 80035d2: 4413 add r3, r2 + 80035d4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80035d8: 681b ldr r3, [r3, #0] + 80035da: 61bb str r3, [r7, #24] if ((hpcd->OUT_ep[epnum].type == EP_TYPE_ISOC) && - 800358c: 6879 ldr r1, [r7, #4] - 800358e: 6a7a ldr r2, [r7, #36] @ 0x24 - 8003590: 4613 mov r3, r2 - 8003592: 00db lsls r3, r3, #3 - 8003594: 4413 add r3, r2 - 8003596: 009b lsls r3, r3, #2 - 8003598: 440b add r3, r1 - 800359a: f503 7316 add.w r3, r3, #600 @ 0x258 - 800359e: 781b ldrb r3, [r3, #0] - 80035a0: 2b01 cmp r3, #1 - 80035a2: d12e bne.n 8003602 + 80035dc: 6879 ldr r1, [r7, #4] + 80035de: 6a7a ldr r2, [r7, #36] @ 0x24 + 80035e0: 4613 mov r3, r2 + 80035e2: 00db lsls r3, r3, #3 + 80035e4: 4413 add r3, r2 + 80035e6: 009b lsls r3, r3, #2 + 80035e8: 440b add r3, r1 + 80035ea: f503 7316 add.w r3, r3, #600 @ 0x258 + 80035ee: 781b ldrb r3, [r3, #0] + 80035f0: 2b01 cmp r3, #1 + 80035f2: d12e bne.n 8003652 ((RegVal & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) && - 80035a4: 69bb ldr r3, [r7, #24] + 80035f4: 69bb ldr r3, [r7, #24] if ((hpcd->OUT_ep[epnum].type == EP_TYPE_ISOC) && - 80035a6: 2b00 cmp r3, #0 - 80035a8: da2b bge.n 8003602 + 80035f6: 2b00 cmp r3, #0 + 80035f8: da2b bge.n 8003652 (((RegVal & (0x1U << 16)) >> 16U) == (hpcd->FrameNumber & 0x1U))) - 80035aa: 69bb ldr r3, [r7, #24] - 80035ac: 0c1a lsrs r2, r3, #16 - 80035ae: 687b ldr r3, [r7, #4] - 80035b0: f8d3 34d4 ldr.w r3, [r3, #1236] @ 0x4d4 - 80035b4: 4053 eors r3, r2 - 80035b6: f003 0301 and.w r3, r3, #1 + 80035fa: 69bb ldr r3, [r7, #24] + 80035fc: 0c1a lsrs r2, r3, #16 + 80035fe: 687b ldr r3, [r7, #4] + 8003600: f8d3 34d4 ldr.w r3, [r3, #1236] @ 0x4d4 + 8003604: 4053 eors r3, r2 + 8003606: f003 0301 and.w r3, r3, #1 ((RegVal & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) && - 80035ba: 2b00 cmp r3, #0 - 80035bc: d121 bne.n 8003602 + 800360a: 2b00 cmp r3, #0 + 800360c: d121 bne.n 8003652 { hpcd->OUT_ep[epnum].is_iso_incomplete = 1U; - 80035be: 6879 ldr r1, [r7, #4] - 80035c0: 6a7a ldr r2, [r7, #36] @ 0x24 - 80035c2: 4613 mov r3, r2 - 80035c4: 00db lsls r3, r3, #3 - 80035c6: 4413 add r3, r2 - 80035c8: 009b lsls r3, r3, #2 - 80035ca: 440b add r3, r1 - 80035cc: f203 2357 addw r3, r3, #599 @ 0x257 - 80035d0: 2201 movs r2, #1 - 80035d2: 701a strb r2, [r3, #0] + 800360e: 6879 ldr r1, [r7, #4] + 8003610: 6a7a ldr r2, [r7, #36] @ 0x24 + 8003612: 4613 mov r3, r2 + 8003614: 00db lsls r3, r3, #3 + 8003616: 4413 add r3, r2 + 8003618: 009b lsls r3, r3, #2 + 800361a: 440b add r3, r1 + 800361c: f203 2357 addw r3, r3, #599 @ 0x257 + 8003620: 2201 movs r2, #1 + 8003622: 701a strb r2, [r3, #0] USBx->GINTMSK |= USB_OTG_GINTMSK_GONAKEFFM; - 80035d4: 6a3b ldr r3, [r7, #32] - 80035d6: 699b ldr r3, [r3, #24] - 80035d8: f043 0280 orr.w r2, r3, #128 @ 0x80 - 80035dc: 6a3b ldr r3, [r7, #32] - 80035de: 619a str r2, [r3, #24] + 8003624: 6a3b ldr r3, [r7, #32] + 8003626: 699b ldr r3, [r3, #24] + 8003628: f043 0280 orr.w r2, r3, #128 @ 0x80 + 800362c: 6a3b ldr r3, [r7, #32] + 800362e: 619a str r2, [r3, #24] if ((USBx->GINTSTS & USB_OTG_GINTSTS_BOUTNAKEFF) == 0U) - 80035e0: 6a3b ldr r3, [r7, #32] - 80035e2: 695b ldr r3, [r3, #20] - 80035e4: f003 0380 and.w r3, r3, #128 @ 0x80 - 80035e8: 2b00 cmp r3, #0 - 80035ea: d10a bne.n 8003602 + 8003630: 6a3b ldr r3, [r7, #32] + 8003632: 695b ldr r3, [r3, #20] + 8003634: f003 0380 and.w r3, r3, #128 @ 0x80 + 8003638: 2b00 cmp r3, #0 + 800363a: d10a bne.n 8003652 { USBx_DEVICE->DCTL |= USB_OTG_DCTL_SGONAK; - 80035ec: 69fb ldr r3, [r7, #28] - 80035ee: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80035f2: 685b ldr r3, [r3, #4] - 80035f4: 69fa ldr r2, [r7, #28] - 80035f6: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80035fa: f443 7300 orr.w r3, r3, #512 @ 0x200 - 80035fe: 6053 str r3, [r2, #4] + 800363c: 69fb ldr r3, [r7, #28] + 800363e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003642: 685b ldr r3, [r3, #4] + 8003644: 69fa ldr r2, [r7, #28] + 8003646: f502 6200 add.w r2, r2, #2048 @ 0x800 + 800364a: f443 7300 orr.w r3, r3, #512 @ 0x200 + 800364e: 6053 str r3, [r2, #4] break; - 8003600: e008 b.n 8003614 + 8003650: e008 b.n 8003664 for (epnum = 1U; epnum < hpcd->Init.dev_endpoints; epnum++) - 8003602: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003604: 3301 adds r3, #1 - 8003606: 627b str r3, [r7, #36] @ 0x24 - 8003608: 687b ldr r3, [r7, #4] - 800360a: 791b ldrb r3, [r3, #4] - 800360c: 461a mov r2, r3 - 800360e: 6a7b ldr r3, [r7, #36] @ 0x24 - 8003610: 4293 cmp r3, r2 - 8003612: d3b3 bcc.n 800357c + 8003652: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003654: 3301 adds r3, #1 + 8003656: 627b str r3, [r7, #36] @ 0x24 + 8003658: 687b ldr r3, [r7, #4] + 800365a: 791b ldrb r3, [r3, #4] + 800365c: 461a mov r2, r3 + 800365e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8003660: 4293 cmp r3, r2 + 8003662: d3b3 bcc.n 80035cc } } } __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_PXFR_INCOMPISOOUT); - 8003614: 687b ldr r3, [r7, #4] - 8003616: 681b ldr r3, [r3, #0] - 8003618: 695a ldr r2, [r3, #20] - 800361a: 687b ldr r3, [r7, #4] - 800361c: 681b ldr r3, [r3, #0] - 800361e: f402 1200 and.w r2, r2, #2097152 @ 0x200000 - 8003622: 615a str r2, [r3, #20] + 8003664: 687b ldr r3, [r7, #4] + 8003666: 681b ldr r3, [r3, #0] + 8003668: 695a ldr r2, [r3, #20] + 800366a: 687b ldr r3, [r7, #4] + 800366c: 681b ldr r3, [r3, #0] + 800366e: f402 1200 and.w r2, r2, #2097152 @ 0x200000 + 8003672: 615a str r2, [r3, #20] } /* Handle Connection event Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_SRQINT)) - 8003624: 687b ldr r3, [r7, #4] - 8003626: 681b ldr r3, [r3, #0] - 8003628: 4618 mov r0, r3 - 800362a: f004 feaf bl 800838c - 800362e: 4603 mov r3, r0 - 8003630: f003 4380 and.w r3, r3, #1073741824 @ 0x40000000 - 8003634: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8003638: d10a bne.n 8003650 + 8003674: 687b ldr r3, [r7, #4] + 8003676: 681b ldr r3, [r3, #0] + 8003678: 4618 mov r0, r3 + 800367a: f004 fdcb bl 8008214 + 800367e: 4603 mov r3, r0 + 8003680: f003 4380 and.w r3, r3, #1073741824 @ 0x40000000 + 8003684: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8003688: d10a bne.n 80036a0 { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->ConnectCallback(hpcd); #else HAL_PCD_ConnectCallback(hpcd); - 800363a: 6878 ldr r0, [r7, #4] - 800363c: f007 f80a bl 800a654 + 800368a: 6878 ldr r0, [r7, #4] + 800368c: f006 ff26 bl 800a4dc #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ __HAL_PCD_CLEAR_FLAG(hpcd, USB_OTG_GINTSTS_SRQINT); - 8003640: 687b ldr r3, [r7, #4] - 8003642: 681b ldr r3, [r3, #0] - 8003644: 695a ldr r2, [r3, #20] - 8003646: 687b ldr r3, [r7, #4] - 8003648: 681b ldr r3, [r3, #0] - 800364a: f002 4280 and.w r2, r2, #1073741824 @ 0x40000000 - 800364e: 615a str r2, [r3, #20] + 8003690: 687b ldr r3, [r7, #4] + 8003692: 681b ldr r3, [r3, #0] + 8003694: 695a ldr r2, [r3, #20] + 8003696: 687b ldr r3, [r7, #4] + 8003698: 681b ldr r3, [r3, #0] + 800369a: f002 4280 and.w r2, r2, #1073741824 @ 0x40000000 + 800369e: 615a str r2, [r3, #20] } /* Handle Disconnection event Interrupt */ if (__HAL_PCD_GET_FLAG(hpcd, USB_OTG_GINTSTS_OTGINT)) - 8003650: 687b ldr r3, [r7, #4] - 8003652: 681b ldr r3, [r3, #0] - 8003654: 4618 mov r0, r3 - 8003656: f004 fe99 bl 800838c - 800365a: 4603 mov r3, r0 - 800365c: f003 0304 and.w r3, r3, #4 - 8003660: 2b04 cmp r3, #4 - 8003662: d115 bne.n 8003690 + 80036a0: 687b ldr r3, [r7, #4] + 80036a2: 681b ldr r3, [r3, #0] + 80036a4: 4618 mov r0, r3 + 80036a6: f004 fdb5 bl 8008214 + 80036aa: 4603 mov r3, r0 + 80036ac: f003 0304 and.w r3, r3, #4 + 80036b0: 2b04 cmp r3, #4 + 80036b2: d115 bne.n 80036e0 { RegVal = hpcd->Instance->GOTGINT; - 8003664: 687b ldr r3, [r7, #4] - 8003666: 681b ldr r3, [r3, #0] - 8003668: 685b ldr r3, [r3, #4] - 800366a: 61bb str r3, [r7, #24] + 80036b4: 687b ldr r3, [r7, #4] + 80036b6: 681b ldr r3, [r3, #0] + 80036b8: 685b ldr r3, [r3, #4] + 80036ba: 61bb str r3, [r7, #24] if ((RegVal & USB_OTG_GOTGINT_SEDET) == USB_OTG_GOTGINT_SEDET) - 800366c: 69bb ldr r3, [r7, #24] - 800366e: f003 0304 and.w r3, r3, #4 - 8003672: 2b00 cmp r3, #0 - 8003674: d002 beq.n 800367c + 80036bc: 69bb ldr r3, [r7, #24] + 80036be: f003 0304 and.w r3, r3, #4 + 80036c2: 2b00 cmp r3, #0 + 80036c4: d002 beq.n 80036cc { #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DisconnectCallback(hpcd); #else HAL_PCD_DisconnectCallback(hpcd); - 8003676: 6878 ldr r0, [r7, #4] - 8003678: f006 fffa bl 800a670 + 80036c6: 6878 ldr r0, [r7, #4] + 80036c8: f006 ff16 bl 800a4f8 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } hpcd->Instance->GOTGINT |= RegVal; - 800367c: 687b ldr r3, [r7, #4] - 800367e: 681b ldr r3, [r3, #0] - 8003680: 6859 ldr r1, [r3, #4] - 8003682: 687b ldr r3, [r7, #4] - 8003684: 681b ldr r3, [r3, #0] - 8003686: 69ba ldr r2, [r7, #24] - 8003688: 430a orrs r2, r1 - 800368a: 605a str r2, [r3, #4] - 800368c: e000 b.n 8003690 + 80036cc: 687b ldr r3, [r7, #4] + 80036ce: 681b ldr r3, [r3, #0] + 80036d0: 6859 ldr r1, [r3, #4] + 80036d2: 687b ldr r3, [r7, #4] + 80036d4: 681b ldr r3, [r3, #0] + 80036d6: 69ba ldr r2, [r7, #24] + 80036d8: 430a orrs r2, r1 + 80036da: 605a str r2, [r3, #4] + 80036dc: e000 b.n 80036e0 return; - 800368e: bf00 nop + 80036de: bf00 nop } } } - 8003690: 3734 adds r7, #52 @ 0x34 - 8003692: 46bd mov sp, r7 - 8003694: bd90 pop {r4, r7, pc} + 80036e0: 3734 adds r7, #52 @ 0x34 + 80036e2: 46bd mov sp, r7 + 80036e4: bd90 pop {r4, r7, pc} -08003696 : +080036e6 : * @param hpcd PCD handle * @param address new device address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_SetAddress(PCD_HandleTypeDef *hpcd, uint8_t address) { - 8003696: b580 push {r7, lr} - 8003698: b082 sub sp, #8 - 800369a: af00 add r7, sp, #0 - 800369c: 6078 str r0, [r7, #4] - 800369e: 460b mov r3, r1 - 80036a0: 70fb strb r3, [r7, #3] + 80036e6: b580 push {r7, lr} + 80036e8: b082 sub sp, #8 + 80036ea: af00 add r7, sp, #0 + 80036ec: 6078 str r0, [r7, #4] + 80036ee: 460b mov r3, r1 + 80036f0: 70fb strb r3, [r7, #3] __HAL_LOCK(hpcd); - 80036a2: 687b ldr r3, [r7, #4] - 80036a4: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 80036a8: 2b01 cmp r3, #1 - 80036aa: d101 bne.n 80036b0 - 80036ac: 2302 movs r3, #2 - 80036ae: e012 b.n 80036d6 - 80036b0: 687b ldr r3, [r7, #4] - 80036b2: 2201 movs r2, #1 - 80036b4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80036f2: 687b ldr r3, [r7, #4] + 80036f4: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 80036f8: 2b01 cmp r3, #1 + 80036fa: d101 bne.n 8003700 + 80036fc: 2302 movs r3, #2 + 80036fe: e012 b.n 8003726 + 8003700: 687b ldr r3, [r7, #4] + 8003702: 2201 movs r2, #1 + 8003704: f883 2494 strb.w r2, [r3, #1172] @ 0x494 hpcd->USB_Address = address; - 80036b8: 687b ldr r3, [r7, #4] - 80036ba: 78fa ldrb r2, [r7, #3] - 80036bc: 745a strb r2, [r3, #17] + 8003708: 687b ldr r3, [r7, #4] + 800370a: 78fa ldrb r2, [r7, #3] + 800370c: 745a strb r2, [r3, #17] (void)USB_SetDevAddress(hpcd->Instance, address); - 80036be: 687b ldr r3, [r7, #4] - 80036c0: 681b ldr r3, [r3, #0] - 80036c2: 78fa ldrb r2, [r7, #3] - 80036c4: 4611 mov r1, r2 - 80036c6: 4618 mov r0, r3 - 80036c8: f004 fdf8 bl 80082bc + 800370e: 687b ldr r3, [r7, #4] + 8003710: 681b ldr r3, [r3, #0] + 8003712: 78fa ldrb r2, [r7, #3] + 8003714: 4611 mov r1, r2 + 8003716: 4618 mov r0, r3 + 8003718: f004 fd14 bl 8008144 __HAL_UNLOCK(hpcd); - 80036cc: 687b ldr r3, [r7, #4] - 80036ce: 2200 movs r2, #0 - 80036d0: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 800371c: 687b ldr r3, [r7, #4] + 800371e: 2200 movs r2, #0 + 8003720: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 80036d4: 2300 movs r3, #0 + 8003724: 2300 movs r3, #0 } - 80036d6: 4618 mov r0, r3 - 80036d8: 3708 adds r7, #8 - 80036da: 46bd mov sp, r7 - 80036dc: bd80 pop {r7, pc} + 8003726: 4618 mov r0, r3 + 8003728: 3708 adds r7, #8 + 800372a: 46bd mov sp, r7 + 800372c: bd80 pop {r7, pc} -080036de : +0800372e : * @param ep_type endpoint type * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Open(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint16_t ep_mps, uint8_t ep_type) { - 80036de: b580 push {r7, lr} - 80036e0: b084 sub sp, #16 - 80036e2: af00 add r7, sp, #0 - 80036e4: 6078 str r0, [r7, #4] - 80036e6: 4608 mov r0, r1 - 80036e8: 4611 mov r1, r2 - 80036ea: 461a mov r2, r3 - 80036ec: 4603 mov r3, r0 - 80036ee: 70fb strb r3, [r7, #3] - 80036f0: 460b mov r3, r1 - 80036f2: 803b strh r3, [r7, #0] - 80036f4: 4613 mov r3, r2 - 80036f6: 70bb strb r3, [r7, #2] + 800372e: b580 push {r7, lr} + 8003730: b084 sub sp, #16 + 8003732: af00 add r7, sp, #0 + 8003734: 6078 str r0, [r7, #4] + 8003736: 4608 mov r0, r1 + 8003738: 4611 mov r1, r2 + 800373a: 461a mov r2, r3 + 800373c: 4603 mov r3, r0 + 800373e: 70fb strb r3, [r7, #3] + 8003740: 460b mov r3, r1 + 8003742: 803b strh r3, [r7, #0] + 8003744: 4613 mov r3, r2 + 8003746: 70bb strb r3, [r7, #2] HAL_StatusTypeDef ret = HAL_OK; - 80036f8: 2300 movs r3, #0 - 80036fa: 72fb strb r3, [r7, #11] + 8003748: 2300 movs r3, #0 + 800374a: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; if ((ep_addr & 0x80U) == 0x80U) - 80036fc: f997 3003 ldrsb.w r3, [r7, #3] - 8003700: 2b00 cmp r3, #0 - 8003702: da0f bge.n 8003724 + 800374c: f997 3003 ldrsb.w r3, [r7, #3] + 8003750: 2b00 cmp r3, #0 + 8003752: da0f bge.n 8003774 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003704: 78fb ldrb r3, [r7, #3] - 8003706: f003 020f and.w r2, r3, #15 - 800370a: 4613 mov r3, r2 - 800370c: 00db lsls r3, r3, #3 - 800370e: 4413 add r3, r2 - 8003710: 009b lsls r3, r3, #2 - 8003712: 3310 adds r3, #16 - 8003714: 687a ldr r2, [r7, #4] - 8003716: 4413 add r3, r2 - 8003718: 3304 adds r3, #4 - 800371a: 60fb str r3, [r7, #12] + 8003754: 78fb ldrb r3, [r7, #3] + 8003756: f003 020f and.w r2, r3, #15 + 800375a: 4613 mov r3, r2 + 800375c: 00db lsls r3, r3, #3 + 800375e: 4413 add r3, r2 + 8003760: 009b lsls r3, r3, #2 + 8003762: 3310 adds r3, #16 + 8003764: 687a ldr r2, [r7, #4] + 8003766: 4413 add r3, r2 + 8003768: 3304 adds r3, #4 + 800376a: 60fb str r3, [r7, #12] ep->is_in = 1U; - 800371c: 68fb ldr r3, [r7, #12] - 800371e: 2201 movs r2, #1 - 8003720: 705a strb r2, [r3, #1] - 8003722: e00f b.n 8003744 + 800376c: 68fb ldr r3, [r7, #12] + 800376e: 2201 movs r2, #1 + 8003770: 705a strb r2, [r3, #1] + 8003772: e00f b.n 8003794 } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003724: 78fb ldrb r3, [r7, #3] - 8003726: f003 020f and.w r2, r3, #15 - 800372a: 4613 mov r3, r2 - 800372c: 00db lsls r3, r3, #3 - 800372e: 4413 add r3, r2 - 8003730: 009b lsls r3, r3, #2 - 8003732: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003736: 687a ldr r2, [r7, #4] - 8003738: 4413 add r3, r2 - 800373a: 3304 adds r3, #4 - 800373c: 60fb str r3, [r7, #12] + 8003774: 78fb ldrb r3, [r7, #3] + 8003776: f003 020f and.w r2, r3, #15 + 800377a: 4613 mov r3, r2 + 800377c: 00db lsls r3, r3, #3 + 800377e: 4413 add r3, r2 + 8003780: 009b lsls r3, r3, #2 + 8003782: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003786: 687a ldr r2, [r7, #4] + 8003788: 4413 add r3, r2 + 800378a: 3304 adds r3, #4 + 800378c: 60fb str r3, [r7, #12] ep->is_in = 0U; - 800373e: 68fb ldr r3, [r7, #12] - 8003740: 2200 movs r2, #0 - 8003742: 705a strb r2, [r3, #1] + 800378e: 68fb ldr r3, [r7, #12] + 8003790: 2200 movs r2, #0 + 8003792: 705a strb r2, [r3, #1] } ep->num = ep_addr & EP_ADDR_MSK; - 8003744: 78fb ldrb r3, [r7, #3] - 8003746: f003 030f and.w r3, r3, #15 - 800374a: b2da uxtb r2, r3 - 800374c: 68fb ldr r3, [r7, #12] - 800374e: 701a strb r2, [r3, #0] + 8003794: 78fb ldrb r3, [r7, #3] + 8003796: f003 030f and.w r3, r3, #15 + 800379a: b2da uxtb r2, r3 + 800379c: 68fb ldr r3, [r7, #12] + 800379e: 701a strb r2, [r3, #0] ep->maxpacket = (uint32_t)ep_mps & 0x7FFU; - 8003750: 883b ldrh r3, [r7, #0] - 8003752: f3c3 020a ubfx r2, r3, #0, #11 - 8003756: 68fb ldr r3, [r7, #12] - 8003758: 609a str r2, [r3, #8] + 80037a0: 883b ldrh r3, [r7, #0] + 80037a2: f3c3 020a ubfx r2, r3, #0, #11 + 80037a6: 68fb ldr r3, [r7, #12] + 80037a8: 609a str r2, [r3, #8] ep->type = ep_type; - 800375a: 68fb ldr r3, [r7, #12] - 800375c: 78ba ldrb r2, [r7, #2] - 800375e: 711a strb r2, [r3, #4] + 80037aa: 68fb ldr r3, [r7, #12] + 80037ac: 78ba ldrb r2, [r7, #2] + 80037ae: 711a strb r2, [r3, #4] if (ep->is_in != 0U) - 8003760: 68fb ldr r3, [r7, #12] - 8003762: 785b ldrb r3, [r3, #1] - 8003764: 2b00 cmp r3, #0 - 8003766: d004 beq.n 8003772 + 80037b0: 68fb ldr r3, [r7, #12] + 80037b2: 785b ldrb r3, [r3, #1] + 80037b4: 2b00 cmp r3, #0 + 80037b6: d004 beq.n 80037c2 { /* Assign a Tx FIFO */ ep->tx_fifo_num = ep->num; - 8003768: 68fb ldr r3, [r7, #12] - 800376a: 781b ldrb r3, [r3, #0] - 800376c: 461a mov r2, r3 - 800376e: 68fb ldr r3, [r7, #12] - 8003770: 835a strh r2, [r3, #26] + 80037b8: 68fb ldr r3, [r7, #12] + 80037ba: 781b ldrb r3, [r3, #0] + 80037bc: 461a mov r2, r3 + 80037be: 68fb ldr r3, [r7, #12] + 80037c0: 835a strh r2, [r3, #26] } /* Set initial data PID. */ if (ep_type == EP_TYPE_BULK) - 8003772: 78bb ldrb r3, [r7, #2] - 8003774: 2b02 cmp r3, #2 - 8003776: d102 bne.n 800377e + 80037c2: 78bb ldrb r3, [r7, #2] + 80037c4: 2b02 cmp r3, #2 + 80037c6: d102 bne.n 80037ce { ep->data_pid_start = 0U; - 8003778: 68fb ldr r3, [r7, #12] - 800377a: 2200 movs r2, #0 - 800377c: 715a strb r2, [r3, #5] + 80037c8: 68fb ldr r3, [r7, #12] + 80037ca: 2200 movs r2, #0 + 80037cc: 715a strb r2, [r3, #5] } __HAL_LOCK(hpcd); - 800377e: 687b ldr r3, [r7, #4] - 8003780: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003784: 2b01 cmp r3, #1 - 8003786: d101 bne.n 800378c - 8003788: 2302 movs r3, #2 - 800378a: e00e b.n 80037aa - 800378c: 687b ldr r3, [r7, #4] - 800378e: 2201 movs r2, #1 - 8003790: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80037ce: 687b ldr r3, [r7, #4] + 80037d0: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 80037d4: 2b01 cmp r3, #1 + 80037d6: d101 bne.n 80037dc + 80037d8: 2302 movs r3, #2 + 80037da: e00e b.n 80037fa + 80037dc: 687b ldr r3, [r7, #4] + 80037de: 2201 movs r2, #1 + 80037e0: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_ActivateEndpoint(hpcd->Instance, ep); - 8003794: 687b ldr r3, [r7, #4] - 8003796: 681b ldr r3, [r3, #0] - 8003798: 68f9 ldr r1, [r7, #12] - 800379a: 4618 mov r0, r3 - 800379c: f003 ff78 bl 8007690 + 80037e4: 687b ldr r3, [r7, #4] + 80037e6: 681b ldr r3, [r3, #0] + 80037e8: 68f9 ldr r1, [r7, #12] + 80037ea: 4618 mov r0, r3 + 80037ec: f003 fe94 bl 8007518 __HAL_UNLOCK(hpcd); - 80037a0: 687b ldr r3, [r7, #4] - 80037a2: 2200 movs r2, #0 - 80037a4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80037f0: 687b ldr r3, [r7, #4] + 80037f2: 2200 movs r2, #0 + 80037f4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return ret; - 80037a8: 7afb ldrb r3, [r7, #11] + 80037f8: 7afb ldrb r3, [r7, #11] } - 80037aa: 4618 mov r0, r3 - 80037ac: 3710 adds r7, #16 - 80037ae: 46bd mov sp, r7 - 80037b0: bd80 pop {r7, pc} + 80037fa: 4618 mov r0, r3 + 80037fc: 3710 adds r7, #16 + 80037fe: 46bd mov sp, r7 + 8003800: bd80 pop {r7, pc} -080037b2 : +08003802 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Close(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 80037b2: b580 push {r7, lr} - 80037b4: b084 sub sp, #16 - 80037b6: af00 add r7, sp, #0 - 80037b8: 6078 str r0, [r7, #4] - 80037ba: 460b mov r3, r1 - 80037bc: 70fb strb r3, [r7, #3] + 8003802: b580 push {r7, lr} + 8003804: b084 sub sp, #16 + 8003806: af00 add r7, sp, #0 + 8003808: 6078 str r0, [r7, #4] + 800380a: 460b mov r3, r1 + 800380c: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if ((ep_addr & 0x80U) == 0x80U) - 80037be: f997 3003 ldrsb.w r3, [r7, #3] - 80037c2: 2b00 cmp r3, #0 - 80037c4: da0f bge.n 80037e6 + 800380e: f997 3003 ldrsb.w r3, [r7, #3] + 8003812: 2b00 cmp r3, #0 + 8003814: da0f bge.n 8003836 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 80037c6: 78fb ldrb r3, [r7, #3] - 80037c8: f003 020f and.w r2, r3, #15 - 80037cc: 4613 mov r3, r2 - 80037ce: 00db lsls r3, r3, #3 - 80037d0: 4413 add r3, r2 - 80037d2: 009b lsls r3, r3, #2 - 80037d4: 3310 adds r3, #16 - 80037d6: 687a ldr r2, [r7, #4] - 80037d8: 4413 add r3, r2 - 80037da: 3304 adds r3, #4 - 80037dc: 60fb str r3, [r7, #12] + 8003816: 78fb ldrb r3, [r7, #3] + 8003818: f003 020f and.w r2, r3, #15 + 800381c: 4613 mov r3, r2 + 800381e: 00db lsls r3, r3, #3 + 8003820: 4413 add r3, r2 + 8003822: 009b lsls r3, r3, #2 + 8003824: 3310 adds r3, #16 + 8003826: 687a ldr r2, [r7, #4] + 8003828: 4413 add r3, r2 + 800382a: 3304 adds r3, #4 + 800382c: 60fb str r3, [r7, #12] ep->is_in = 1U; - 80037de: 68fb ldr r3, [r7, #12] - 80037e0: 2201 movs r2, #1 - 80037e2: 705a strb r2, [r3, #1] - 80037e4: e00f b.n 8003806 + 800382e: 68fb ldr r3, [r7, #12] + 8003830: 2201 movs r2, #1 + 8003832: 705a strb r2, [r3, #1] + 8003834: e00f b.n 8003856 } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 80037e6: 78fb ldrb r3, [r7, #3] - 80037e8: f003 020f and.w r2, r3, #15 - 80037ec: 4613 mov r3, r2 - 80037ee: 00db lsls r3, r3, #3 - 80037f0: 4413 add r3, r2 - 80037f2: 009b lsls r3, r3, #2 - 80037f4: f503 7314 add.w r3, r3, #592 @ 0x250 - 80037f8: 687a ldr r2, [r7, #4] - 80037fa: 4413 add r3, r2 - 80037fc: 3304 adds r3, #4 - 80037fe: 60fb str r3, [r7, #12] + 8003836: 78fb ldrb r3, [r7, #3] + 8003838: f003 020f and.w r2, r3, #15 + 800383c: 4613 mov r3, r2 + 800383e: 00db lsls r3, r3, #3 + 8003840: 4413 add r3, r2 + 8003842: 009b lsls r3, r3, #2 + 8003844: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003848: 687a ldr r2, [r7, #4] + 800384a: 4413 add r3, r2 + 800384c: 3304 adds r3, #4 + 800384e: 60fb str r3, [r7, #12] ep->is_in = 0U; - 8003800: 68fb ldr r3, [r7, #12] - 8003802: 2200 movs r2, #0 - 8003804: 705a strb r2, [r3, #1] + 8003850: 68fb ldr r3, [r7, #12] + 8003852: 2200 movs r2, #0 + 8003854: 705a strb r2, [r3, #1] } ep->num = ep_addr & EP_ADDR_MSK; - 8003806: 78fb ldrb r3, [r7, #3] - 8003808: f003 030f and.w r3, r3, #15 - 800380c: b2da uxtb r2, r3 - 800380e: 68fb ldr r3, [r7, #12] - 8003810: 701a strb r2, [r3, #0] + 8003856: 78fb ldrb r3, [r7, #3] + 8003858: f003 030f and.w r3, r3, #15 + 800385c: b2da uxtb r2, r3 + 800385e: 68fb ldr r3, [r7, #12] + 8003860: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 8003812: 687b ldr r3, [r7, #4] - 8003814: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003818: 2b01 cmp r3, #1 - 800381a: d101 bne.n 8003820 - 800381c: 2302 movs r3, #2 - 800381e: e00e b.n 800383e - 8003820: 687b ldr r3, [r7, #4] - 8003822: 2201 movs r2, #1 - 8003824: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003862: 687b ldr r3, [r7, #4] + 8003864: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003868: 2b01 cmp r3, #1 + 800386a: d101 bne.n 8003870 + 800386c: 2302 movs r3, #2 + 800386e: e00e b.n 800388e + 8003870: 687b ldr r3, [r7, #4] + 8003872: 2201 movs r2, #1 + 8003874: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_DeactivateEndpoint(hpcd->Instance, ep); - 8003828: 687b ldr r3, [r7, #4] - 800382a: 681b ldr r3, [r3, #0] - 800382c: 68f9 ldr r1, [r7, #12] - 800382e: 4618 mov r0, r3 - 8003830: f003 ffb6 bl 80077a0 + 8003878: 687b ldr r3, [r7, #4] + 800387a: 681b ldr r3, [r3, #0] + 800387c: 68f9 ldr r1, [r7, #12] + 800387e: 4618 mov r0, r3 + 8003880: f003 fed2 bl 8007628 __HAL_UNLOCK(hpcd); - 8003834: 687b ldr r3, [r7, #4] - 8003836: 2200 movs r2, #0 - 8003838: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003884: 687b ldr r3, [r7, #4] + 8003886: 2200 movs r2, #0 + 8003888: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 800383c: 2300 movs r3, #0 + 800388c: 2300 movs r3, #0 } - 800383e: 4618 mov r0, r3 - 8003840: 3710 adds r7, #16 - 8003842: 46bd mov sp, r7 - 8003844: bd80 pop {r7, pc} + 800388e: 4618 mov r0, r3 + 8003890: 3710 adds r7, #16 + 8003892: 46bd mov sp, r7 + 8003894: bd80 pop {r7, pc} -08003846 : +08003896 : * @param pBuf pointer to the reception buffer * @param len amount of data to be received * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Receive(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len) { - 8003846: b580 push {r7, lr} - 8003848: b086 sub sp, #24 - 800384a: af00 add r7, sp, #0 - 800384c: 60f8 str r0, [r7, #12] - 800384e: 607a str r2, [r7, #4] - 8003850: 603b str r3, [r7, #0] - 8003852: 460b mov r3, r1 - 8003854: 72fb strb r3, [r7, #11] + 8003896: b580 push {r7, lr} + 8003898: b086 sub sp, #24 + 800389a: af00 add r7, sp, #0 + 800389c: 60f8 str r0, [r7, #12] + 800389e: 607a str r2, [r7, #4] + 80038a0: 603b str r3, [r7, #0] + 80038a2: 460b mov r3, r1 + 80038a4: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003856: 7afb ldrb r3, [r7, #11] - 8003858: f003 020f and.w r2, r3, #15 - 800385c: 4613 mov r3, r2 - 800385e: 00db lsls r3, r3, #3 - 8003860: 4413 add r3, r2 - 8003862: 009b lsls r3, r3, #2 - 8003864: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003868: 68fa ldr r2, [r7, #12] - 800386a: 4413 add r3, r2 - 800386c: 3304 adds r3, #4 - 800386e: 617b str r3, [r7, #20] + 80038a6: 7afb ldrb r3, [r7, #11] + 80038a8: f003 020f and.w r2, r3, #15 + 80038ac: 4613 mov r3, r2 + 80038ae: 00db lsls r3, r3, #3 + 80038b0: 4413 add r3, r2 + 80038b2: 009b lsls r3, r3, #2 + 80038b4: f503 7314 add.w r3, r3, #592 @ 0x250 + 80038b8: 68fa ldr r2, [r7, #12] + 80038ba: 4413 add r3, r2 + 80038bc: 3304 adds r3, #4 + 80038be: 617b str r3, [r7, #20] /*setup and start the Xfer */ ep->xfer_buff = pBuf; - 8003870: 697b ldr r3, [r7, #20] - 8003872: 687a ldr r2, [r7, #4] - 8003874: 60da str r2, [r3, #12] + 80038c0: 697b ldr r3, [r7, #20] + 80038c2: 687a ldr r2, [r7, #4] + 80038c4: 60da str r2, [r3, #12] ep->xfer_len = len; - 8003876: 697b ldr r3, [r7, #20] - 8003878: 683a ldr r2, [r7, #0] - 800387a: 611a str r2, [r3, #16] + 80038c6: 697b ldr r3, [r7, #20] + 80038c8: 683a ldr r2, [r7, #0] + 80038ca: 611a str r2, [r3, #16] ep->xfer_count = 0U; - 800387c: 697b ldr r3, [r7, #20] - 800387e: 2200 movs r2, #0 - 8003880: 615a str r2, [r3, #20] + 80038cc: 697b ldr r3, [r7, #20] + 80038ce: 2200 movs r2, #0 + 80038d0: 615a str r2, [r3, #20] ep->is_in = 0U; - 8003882: 697b ldr r3, [r7, #20] - 8003884: 2200 movs r2, #0 - 8003886: 705a strb r2, [r3, #1] + 80038d2: 697b ldr r3, [r7, #20] + 80038d4: 2200 movs r2, #0 + 80038d6: 705a strb r2, [r3, #1] ep->num = ep_addr & EP_ADDR_MSK; - 8003888: 7afb ldrb r3, [r7, #11] - 800388a: f003 030f and.w r3, r3, #15 - 800388e: b2da uxtb r2, r3 - 8003890: 697b ldr r3, [r7, #20] - 8003892: 701a strb r2, [r3, #0] + 80038d8: 7afb ldrb r3, [r7, #11] + 80038da: f003 030f and.w r3, r3, #15 + 80038de: b2da uxtb r2, r3 + 80038e0: 697b ldr r3, [r7, #20] + 80038e2: 701a strb r2, [r3, #0] if (hpcd->Init.dma_enable == 1U) - 8003894: 68fb ldr r3, [r7, #12] - 8003896: 799b ldrb r3, [r3, #6] - 8003898: 2b01 cmp r3, #1 - 800389a: d102 bne.n 80038a2 + 80038e4: 68fb ldr r3, [r7, #12] + 80038e6: 799b ldrb r3, [r3, #6] + 80038e8: 2b01 cmp r3, #1 + 80038ea: d102 bne.n 80038f2 { ep->dma_addr = (uint32_t)pBuf; - 800389c: 687a ldr r2, [r7, #4] - 800389e: 697b ldr r3, [r7, #20] - 80038a0: 61da str r2, [r3, #28] + 80038ec: 687a ldr r2, [r7, #4] + 80038ee: 697b ldr r3, [r7, #20] + 80038f0: 61da str r2, [r3, #28] } (void)USB_EPStartXfer(hpcd->Instance, ep, (uint8_t)hpcd->Init.dma_enable); - 80038a2: 68fb ldr r3, [r7, #12] - 80038a4: 6818 ldr r0, [r3, #0] - 80038a6: 68fb ldr r3, [r7, #12] - 80038a8: 799b ldrb r3, [r3, #6] - 80038aa: 461a mov r2, r3 - 80038ac: 6979 ldr r1, [r7, #20] - 80038ae: f004 f853 bl 8007958 + 80038f2: 68fb ldr r3, [r7, #12] + 80038f4: 6818 ldr r0, [r3, #0] + 80038f6: 68fb ldr r3, [r7, #12] + 80038f8: 799b ldrb r3, [r3, #6] + 80038fa: 461a mov r2, r3 + 80038fc: 6979 ldr r1, [r7, #20] + 80038fe: f003 ff6f bl 80077e0 return HAL_OK; - 80038b2: 2300 movs r3, #0 + 8003902: 2300 movs r3, #0 } - 80038b4: 4618 mov r0, r3 - 80038b6: 3718 adds r7, #24 - 80038b8: 46bd mov sp, r7 - 80038ba: bd80 pop {r7, pc} + 8003904: 4618 mov r0, r3 + 8003906: 3718 adds r7, #24 + 8003908: 46bd mov sp, r7 + 800390a: bd80 pop {r7, pc} -080038bc : +0800390c : * @param pBuf pointer to the transmission buffer * @param len amount of data to be sent * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Transmit(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint32_t len) { - 80038bc: b580 push {r7, lr} - 80038be: b086 sub sp, #24 - 80038c0: af00 add r7, sp, #0 - 80038c2: 60f8 str r0, [r7, #12] - 80038c4: 607a str r2, [r7, #4] - 80038c6: 603b str r3, [r7, #0] - 80038c8: 460b mov r3, r1 - 80038ca: 72fb strb r3, [r7, #11] + 800390c: b580 push {r7, lr} + 800390e: b086 sub sp, #24 + 8003910: af00 add r7, sp, #0 + 8003912: 60f8 str r0, [r7, #12] + 8003914: 607a str r2, [r7, #4] + 8003916: 603b str r3, [r7, #0] + 8003918: 460b mov r3, r1 + 800391a: 72fb strb r3, [r7, #11] PCD_EPTypeDef *ep; ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 80038cc: 7afb ldrb r3, [r7, #11] - 80038ce: f003 020f and.w r2, r3, #15 - 80038d2: 4613 mov r3, r2 - 80038d4: 00db lsls r3, r3, #3 - 80038d6: 4413 add r3, r2 - 80038d8: 009b lsls r3, r3, #2 - 80038da: 3310 adds r3, #16 - 80038dc: 68fa ldr r2, [r7, #12] - 80038de: 4413 add r3, r2 - 80038e0: 3304 adds r3, #4 - 80038e2: 617b str r3, [r7, #20] + 800391c: 7afb ldrb r3, [r7, #11] + 800391e: f003 020f and.w r2, r3, #15 + 8003922: 4613 mov r3, r2 + 8003924: 00db lsls r3, r3, #3 + 8003926: 4413 add r3, r2 + 8003928: 009b lsls r3, r3, #2 + 800392a: 3310 adds r3, #16 + 800392c: 68fa ldr r2, [r7, #12] + 800392e: 4413 add r3, r2 + 8003930: 3304 adds r3, #4 + 8003932: 617b str r3, [r7, #20] /*setup and start the Xfer */ ep->xfer_buff = pBuf; - 80038e4: 697b ldr r3, [r7, #20] - 80038e6: 687a ldr r2, [r7, #4] - 80038e8: 60da str r2, [r3, #12] + 8003934: 697b ldr r3, [r7, #20] + 8003936: 687a ldr r2, [r7, #4] + 8003938: 60da str r2, [r3, #12] ep->xfer_len = len; - 80038ea: 697b ldr r3, [r7, #20] - 80038ec: 683a ldr r2, [r7, #0] - 80038ee: 611a str r2, [r3, #16] + 800393a: 697b ldr r3, [r7, #20] + 800393c: 683a ldr r2, [r7, #0] + 800393e: 611a str r2, [r3, #16] ep->xfer_count = 0U; - 80038f0: 697b ldr r3, [r7, #20] - 80038f2: 2200 movs r2, #0 - 80038f4: 615a str r2, [r3, #20] + 8003940: 697b ldr r3, [r7, #20] + 8003942: 2200 movs r2, #0 + 8003944: 615a str r2, [r3, #20] ep->is_in = 1U; - 80038f6: 697b ldr r3, [r7, #20] - 80038f8: 2201 movs r2, #1 - 80038fa: 705a strb r2, [r3, #1] + 8003946: 697b ldr r3, [r7, #20] + 8003948: 2201 movs r2, #1 + 800394a: 705a strb r2, [r3, #1] ep->num = ep_addr & EP_ADDR_MSK; - 80038fc: 7afb ldrb r3, [r7, #11] - 80038fe: f003 030f and.w r3, r3, #15 - 8003902: b2da uxtb r2, r3 - 8003904: 697b ldr r3, [r7, #20] - 8003906: 701a strb r2, [r3, #0] + 800394c: 7afb ldrb r3, [r7, #11] + 800394e: f003 030f and.w r3, r3, #15 + 8003952: b2da uxtb r2, r3 + 8003954: 697b ldr r3, [r7, #20] + 8003956: 701a strb r2, [r3, #0] if (hpcd->Init.dma_enable == 1U) - 8003908: 68fb ldr r3, [r7, #12] - 800390a: 799b ldrb r3, [r3, #6] - 800390c: 2b01 cmp r3, #1 - 800390e: d102 bne.n 8003916 + 8003958: 68fb ldr r3, [r7, #12] + 800395a: 799b ldrb r3, [r3, #6] + 800395c: 2b01 cmp r3, #1 + 800395e: d102 bne.n 8003966 { ep->dma_addr = (uint32_t)pBuf; - 8003910: 687a ldr r2, [r7, #4] - 8003912: 697b ldr r3, [r7, #20] - 8003914: 61da str r2, [r3, #28] + 8003960: 687a ldr r2, [r7, #4] + 8003962: 697b ldr r3, [r7, #20] + 8003964: 61da str r2, [r3, #28] } (void)USB_EPStartXfer(hpcd->Instance, ep, (uint8_t)hpcd->Init.dma_enable); - 8003916: 68fb ldr r3, [r7, #12] - 8003918: 6818 ldr r0, [r3, #0] - 800391a: 68fb ldr r3, [r7, #12] - 800391c: 799b ldrb r3, [r3, #6] - 800391e: 461a mov r2, r3 - 8003920: 6979 ldr r1, [r7, #20] - 8003922: f004 f819 bl 8007958 + 8003966: 68fb ldr r3, [r7, #12] + 8003968: 6818 ldr r0, [r3, #0] + 800396a: 68fb ldr r3, [r7, #12] + 800396c: 799b ldrb r3, [r3, #6] + 800396e: 461a mov r2, r3 + 8003970: 6979 ldr r1, [r7, #20] + 8003972: f003 ff35 bl 80077e0 return HAL_OK; - 8003926: 2300 movs r3, #0 + 8003976: 2300 movs r3, #0 } - 8003928: 4618 mov r0, r3 - 800392a: 3718 adds r7, #24 - 800392c: 46bd mov sp, r7 - 800392e: bd80 pop {r7, pc} + 8003978: 4618 mov r0, r3 + 800397a: 3718 adds r7, #24 + 800397c: 46bd mov sp, r7 + 800397e: bd80 pop {r7, pc} -08003930 : +08003980 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_SetStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003930: b580 push {r7, lr} - 8003932: b084 sub sp, #16 - 8003934: af00 add r7, sp, #0 - 8003936: 6078 str r0, [r7, #4] - 8003938: 460b mov r3, r1 - 800393a: 70fb strb r3, [r7, #3] + 8003980: b580 push {r7, lr} + 8003982: b084 sub sp, #16 + 8003984: af00 add r7, sp, #0 + 8003986: 6078 str r0, [r7, #4] + 8003988: 460b mov r3, r1 + 800398a: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if (((uint32_t)ep_addr & EP_ADDR_MSK) > hpcd->Init.dev_endpoints) - 800393c: 78fb ldrb r3, [r7, #3] - 800393e: f003 030f and.w r3, r3, #15 - 8003942: 687a ldr r2, [r7, #4] - 8003944: 7912 ldrb r2, [r2, #4] - 8003946: 4293 cmp r3, r2 - 8003948: d901 bls.n 800394e + 800398c: 78fb ldrb r3, [r7, #3] + 800398e: f003 030f and.w r3, r3, #15 + 8003992: 687a ldr r2, [r7, #4] + 8003994: 7912 ldrb r2, [r2, #4] + 8003996: 4293 cmp r3, r2 + 8003998: d901 bls.n 800399e { return HAL_ERROR; - 800394a: 2301 movs r3, #1 - 800394c: e04f b.n 80039ee + 800399a: 2301 movs r3, #1 + 800399c: e04f b.n 8003a3e } if ((0x80U & ep_addr) == 0x80U) - 800394e: f997 3003 ldrsb.w r3, [r7, #3] - 8003952: 2b00 cmp r3, #0 - 8003954: da0f bge.n 8003976 + 800399e: f997 3003 ldrsb.w r3, [r7, #3] + 80039a2: 2b00 cmp r3, #0 + 80039a4: da0f bge.n 80039c6 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003956: 78fb ldrb r3, [r7, #3] - 8003958: f003 020f and.w r2, r3, #15 - 800395c: 4613 mov r3, r2 - 800395e: 00db lsls r3, r3, #3 - 8003960: 4413 add r3, r2 - 8003962: 009b lsls r3, r3, #2 - 8003964: 3310 adds r3, #16 - 8003966: 687a ldr r2, [r7, #4] - 8003968: 4413 add r3, r2 - 800396a: 3304 adds r3, #4 - 800396c: 60fb str r3, [r7, #12] + 80039a6: 78fb ldrb r3, [r7, #3] + 80039a8: f003 020f and.w r2, r3, #15 + 80039ac: 4613 mov r3, r2 + 80039ae: 00db lsls r3, r3, #3 + 80039b0: 4413 add r3, r2 + 80039b2: 009b lsls r3, r3, #2 + 80039b4: 3310 adds r3, #16 + 80039b6: 687a ldr r2, [r7, #4] + 80039b8: 4413 add r3, r2 + 80039ba: 3304 adds r3, #4 + 80039bc: 60fb str r3, [r7, #12] ep->is_in = 1U; - 800396e: 68fb ldr r3, [r7, #12] - 8003970: 2201 movs r2, #1 - 8003972: 705a strb r2, [r3, #1] - 8003974: e00d b.n 8003992 + 80039be: 68fb ldr r3, [r7, #12] + 80039c0: 2201 movs r2, #1 + 80039c2: 705a strb r2, [r3, #1] + 80039c4: e00d b.n 80039e2 } else { ep = &hpcd->OUT_ep[ep_addr]; - 8003976: 78fa ldrb r2, [r7, #3] - 8003978: 4613 mov r3, r2 - 800397a: 00db lsls r3, r3, #3 - 800397c: 4413 add r3, r2 - 800397e: 009b lsls r3, r3, #2 - 8003980: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003984: 687a ldr r2, [r7, #4] - 8003986: 4413 add r3, r2 - 8003988: 3304 adds r3, #4 - 800398a: 60fb str r3, [r7, #12] + 80039c6: 78fa ldrb r2, [r7, #3] + 80039c8: 4613 mov r3, r2 + 80039ca: 00db lsls r3, r3, #3 + 80039cc: 4413 add r3, r2 + 80039ce: 009b lsls r3, r3, #2 + 80039d0: f503 7314 add.w r3, r3, #592 @ 0x250 + 80039d4: 687a ldr r2, [r7, #4] + 80039d6: 4413 add r3, r2 + 80039d8: 3304 adds r3, #4 + 80039da: 60fb str r3, [r7, #12] ep->is_in = 0U; - 800398c: 68fb ldr r3, [r7, #12] - 800398e: 2200 movs r2, #0 - 8003990: 705a strb r2, [r3, #1] + 80039dc: 68fb ldr r3, [r7, #12] + 80039de: 2200 movs r2, #0 + 80039e0: 705a strb r2, [r3, #1] } ep->is_stall = 1U; - 8003992: 68fb ldr r3, [r7, #12] - 8003994: 2201 movs r2, #1 - 8003996: 709a strb r2, [r3, #2] + 80039e2: 68fb ldr r3, [r7, #12] + 80039e4: 2201 movs r2, #1 + 80039e6: 709a strb r2, [r3, #2] ep->num = ep_addr & EP_ADDR_MSK; - 8003998: 78fb ldrb r3, [r7, #3] - 800399a: f003 030f and.w r3, r3, #15 - 800399e: b2da uxtb r2, r3 - 80039a0: 68fb ldr r3, [r7, #12] - 80039a2: 701a strb r2, [r3, #0] + 80039e8: 78fb ldrb r3, [r7, #3] + 80039ea: f003 030f and.w r3, r3, #15 + 80039ee: b2da uxtb r2, r3 + 80039f0: 68fb ldr r3, [r7, #12] + 80039f2: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 80039a4: 687b ldr r3, [r7, #4] - 80039a6: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 80039aa: 2b01 cmp r3, #1 - 80039ac: d101 bne.n 80039b2 - 80039ae: 2302 movs r3, #2 - 80039b0: e01d b.n 80039ee - 80039b2: 687b ldr r3, [r7, #4] - 80039b4: 2201 movs r2, #1 - 80039b6: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 80039f4: 687b ldr r3, [r7, #4] + 80039f6: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 80039fa: 2b01 cmp r3, #1 + 80039fc: d101 bne.n 8003a02 + 80039fe: 2302 movs r3, #2 + 8003a00: e01d b.n 8003a3e + 8003a02: 687b ldr r3, [r7, #4] + 8003a04: 2201 movs r2, #1 + 8003a06: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_EPSetStall(hpcd->Instance, ep); - 80039ba: 687b ldr r3, [r7, #4] - 80039bc: 681b ldr r3, [r3, #0] - 80039be: 68f9 ldr r1, [r7, #12] - 80039c0: 4618 mov r0, r3 - 80039c2: f004 fba7 bl 8008114 + 8003a0a: 687b ldr r3, [r7, #4] + 8003a0c: 681b ldr r3, [r3, #0] + 8003a0e: 68f9 ldr r1, [r7, #12] + 8003a10: 4618 mov r0, r3 + 8003a12: f004 fac3 bl 8007f9c if ((ep_addr & EP_ADDR_MSK) == 0U) - 80039c6: 78fb ldrb r3, [r7, #3] - 80039c8: f003 030f and.w r3, r3, #15 - 80039cc: 2b00 cmp r3, #0 - 80039ce: d109 bne.n 80039e4 + 8003a16: 78fb ldrb r3, [r7, #3] + 8003a18: f003 030f and.w r3, r3, #15 + 8003a1c: 2b00 cmp r3, #0 + 8003a1e: d109 bne.n 8003a34 { (void)USB_EP0_OutStart(hpcd->Instance, (uint8_t)hpcd->Init.dma_enable, (uint8_t *)hpcd->Setup); - 80039d0: 687b ldr r3, [r7, #4] - 80039d2: 6818 ldr r0, [r3, #0] - 80039d4: 687b ldr r3, [r7, #4] - 80039d6: 7999 ldrb r1, [r3, #6] - 80039d8: 687b ldr r3, [r7, #4] - 80039da: f203 439c addw r3, r3, #1180 @ 0x49c - 80039de: 461a mov r2, r3 - 80039e0: f004 fd98 bl 8008514 + 8003a20: 687b ldr r3, [r7, #4] + 8003a22: 6818 ldr r0, [r3, #0] + 8003a24: 687b ldr r3, [r7, #4] + 8003a26: 7999 ldrb r1, [r3, #6] + 8003a28: 687b ldr r3, [r7, #4] + 8003a2a: f203 439c addw r3, r3, #1180 @ 0x49c + 8003a2e: 461a mov r2, r3 + 8003a30: f004 fcb4 bl 800839c } __HAL_UNLOCK(hpcd); - 80039e4: 687b ldr r3, [r7, #4] - 80039e6: 2200 movs r2, #0 - 80039e8: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003a34: 687b ldr r3, [r7, #4] + 8003a36: 2200 movs r2, #0 + 8003a38: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 80039ec: 2300 movs r3, #0 + 8003a3c: 2300 movs r3, #0 } - 80039ee: 4618 mov r0, r3 - 80039f0: 3710 adds r7, #16 - 80039f2: 46bd mov sp, r7 - 80039f4: bd80 pop {r7, pc} + 8003a3e: 4618 mov r0, r3 + 8003a40: 3710 adds r7, #16 + 8003a42: 46bd mov sp, r7 + 8003a44: bd80 pop {r7, pc} -080039f6 : +08003a46 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_ClrStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 80039f6: b580 push {r7, lr} - 80039f8: b084 sub sp, #16 - 80039fa: af00 add r7, sp, #0 - 80039fc: 6078 str r0, [r7, #4] - 80039fe: 460b mov r3, r1 - 8003a00: 70fb strb r3, [r7, #3] + 8003a46: b580 push {r7, lr} + 8003a48: b084 sub sp, #16 + 8003a4a: af00 add r7, sp, #0 + 8003a4c: 6078 str r0, [r7, #4] + 8003a4e: 460b mov r3, r1 + 8003a50: 70fb strb r3, [r7, #3] PCD_EPTypeDef *ep; if (((uint32_t)ep_addr & 0x0FU) > hpcd->Init.dev_endpoints) - 8003a02: 78fb ldrb r3, [r7, #3] - 8003a04: f003 030f and.w r3, r3, #15 - 8003a08: 687a ldr r2, [r7, #4] - 8003a0a: 7912 ldrb r2, [r2, #4] - 8003a0c: 4293 cmp r3, r2 - 8003a0e: d901 bls.n 8003a14 + 8003a52: 78fb ldrb r3, [r7, #3] + 8003a54: f003 030f and.w r3, r3, #15 + 8003a58: 687a ldr r2, [r7, #4] + 8003a5a: 7912 ldrb r2, [r2, #4] + 8003a5c: 4293 cmp r3, r2 + 8003a5e: d901 bls.n 8003a64 { return HAL_ERROR; - 8003a10: 2301 movs r3, #1 - 8003a12: e042 b.n 8003a9a + 8003a60: 2301 movs r3, #1 + 8003a62: e042 b.n 8003aea } if ((0x80U & ep_addr) == 0x80U) - 8003a14: f997 3003 ldrsb.w r3, [r7, #3] - 8003a18: 2b00 cmp r3, #0 - 8003a1a: da0f bge.n 8003a3c + 8003a64: f997 3003 ldrsb.w r3, [r7, #3] + 8003a68: 2b00 cmp r3, #0 + 8003a6a: da0f bge.n 8003a8c { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003a1c: 78fb ldrb r3, [r7, #3] - 8003a1e: f003 020f and.w r2, r3, #15 - 8003a22: 4613 mov r3, r2 - 8003a24: 00db lsls r3, r3, #3 - 8003a26: 4413 add r3, r2 - 8003a28: 009b lsls r3, r3, #2 - 8003a2a: 3310 adds r3, #16 - 8003a2c: 687a ldr r2, [r7, #4] - 8003a2e: 4413 add r3, r2 - 8003a30: 3304 adds r3, #4 - 8003a32: 60fb str r3, [r7, #12] + 8003a6c: 78fb ldrb r3, [r7, #3] + 8003a6e: f003 020f and.w r2, r3, #15 + 8003a72: 4613 mov r3, r2 + 8003a74: 00db lsls r3, r3, #3 + 8003a76: 4413 add r3, r2 + 8003a78: 009b lsls r3, r3, #2 + 8003a7a: 3310 adds r3, #16 + 8003a7c: 687a ldr r2, [r7, #4] + 8003a7e: 4413 add r3, r2 + 8003a80: 3304 adds r3, #4 + 8003a82: 60fb str r3, [r7, #12] ep->is_in = 1U; - 8003a34: 68fb ldr r3, [r7, #12] - 8003a36: 2201 movs r2, #1 - 8003a38: 705a strb r2, [r3, #1] - 8003a3a: e00f b.n 8003a5c + 8003a84: 68fb ldr r3, [r7, #12] + 8003a86: 2201 movs r2, #1 + 8003a88: 705a strb r2, [r3, #1] + 8003a8a: e00f b.n 8003aac } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003a3c: 78fb ldrb r3, [r7, #3] - 8003a3e: f003 020f and.w r2, r3, #15 - 8003a42: 4613 mov r3, r2 - 8003a44: 00db lsls r3, r3, #3 - 8003a46: 4413 add r3, r2 - 8003a48: 009b lsls r3, r3, #2 - 8003a4a: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003a4e: 687a ldr r2, [r7, #4] - 8003a50: 4413 add r3, r2 - 8003a52: 3304 adds r3, #4 - 8003a54: 60fb str r3, [r7, #12] + 8003a8c: 78fb ldrb r3, [r7, #3] + 8003a8e: f003 020f and.w r2, r3, #15 + 8003a92: 4613 mov r3, r2 + 8003a94: 00db lsls r3, r3, #3 + 8003a96: 4413 add r3, r2 + 8003a98: 009b lsls r3, r3, #2 + 8003a9a: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003a9e: 687a ldr r2, [r7, #4] + 8003aa0: 4413 add r3, r2 + 8003aa2: 3304 adds r3, #4 + 8003aa4: 60fb str r3, [r7, #12] ep->is_in = 0U; - 8003a56: 68fb ldr r3, [r7, #12] - 8003a58: 2200 movs r2, #0 - 8003a5a: 705a strb r2, [r3, #1] + 8003aa6: 68fb ldr r3, [r7, #12] + 8003aa8: 2200 movs r2, #0 + 8003aaa: 705a strb r2, [r3, #1] } ep->is_stall = 0U; - 8003a5c: 68fb ldr r3, [r7, #12] - 8003a5e: 2200 movs r2, #0 - 8003a60: 709a strb r2, [r3, #2] + 8003aac: 68fb ldr r3, [r7, #12] + 8003aae: 2200 movs r2, #0 + 8003ab0: 709a strb r2, [r3, #2] ep->num = ep_addr & EP_ADDR_MSK; - 8003a62: 78fb ldrb r3, [r7, #3] - 8003a64: f003 030f and.w r3, r3, #15 - 8003a68: b2da uxtb r2, r3 - 8003a6a: 68fb ldr r3, [r7, #12] - 8003a6c: 701a strb r2, [r3, #0] + 8003ab2: 78fb ldrb r3, [r7, #3] + 8003ab4: f003 030f and.w r3, r3, #15 + 8003ab8: b2da uxtb r2, r3 + 8003aba: 68fb ldr r3, [r7, #12] + 8003abc: 701a strb r2, [r3, #0] __HAL_LOCK(hpcd); - 8003a6e: 687b ldr r3, [r7, #4] - 8003a70: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 - 8003a74: 2b01 cmp r3, #1 - 8003a76: d101 bne.n 8003a7c - 8003a78: 2302 movs r3, #2 - 8003a7a: e00e b.n 8003a9a - 8003a7c: 687b ldr r3, [r7, #4] - 8003a7e: 2201 movs r2, #1 - 8003a80: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003abe: 687b ldr r3, [r7, #4] + 8003ac0: f893 3494 ldrb.w r3, [r3, #1172] @ 0x494 + 8003ac4: 2b01 cmp r3, #1 + 8003ac6: d101 bne.n 8003acc + 8003ac8: 2302 movs r3, #2 + 8003aca: e00e b.n 8003aea + 8003acc: 687b ldr r3, [r7, #4] + 8003ace: 2201 movs r2, #1 + 8003ad0: f883 2494 strb.w r2, [r3, #1172] @ 0x494 (void)USB_EPClearStall(hpcd->Instance, ep); - 8003a84: 687b ldr r3, [r7, #4] - 8003a86: 681b ldr r3, [r3, #0] - 8003a88: 68f9 ldr r1, [r7, #12] - 8003a8a: 4618 mov r0, r3 - 8003a8c: f004 fbb0 bl 80081f0 + 8003ad4: 687b ldr r3, [r7, #4] + 8003ad6: 681b ldr r3, [r3, #0] + 8003ad8: 68f9 ldr r1, [r7, #12] + 8003ada: 4618 mov r0, r3 + 8003adc: f004 facc bl 8008078 __HAL_UNLOCK(hpcd); - 8003a90: 687b ldr r3, [r7, #4] - 8003a92: 2200 movs r2, #0 - 8003a94: f883 2494 strb.w r2, [r3, #1172] @ 0x494 + 8003ae0: 687b ldr r3, [r7, #4] + 8003ae2: 2200 movs r2, #0 + 8003ae4: f883 2494 strb.w r2, [r3, #1172] @ 0x494 return HAL_OK; - 8003a98: 2300 movs r3, #0 + 8003ae8: 2300 movs r3, #0 } - 8003a9a: 4618 mov r0, r3 - 8003a9c: 3710 adds r7, #16 - 8003a9e: 46bd mov sp, r7 - 8003aa0: bd80 pop {r7, pc} + 8003aea: 4618 mov r0, r3 + 8003aec: 3710 adds r7, #16 + 8003aee: 46bd mov sp, r7 + 8003af0: bd80 pop {r7, pc} -08003aa2 : +08003af2 : * @param hpcd PCD handle * @param ep_addr endpoint address * @retval HAL status */ HAL_StatusTypeDef HAL_PCD_EP_Abort(PCD_HandleTypeDef *hpcd, uint8_t ep_addr) { - 8003aa2: b580 push {r7, lr} - 8003aa4: b084 sub sp, #16 - 8003aa6: af00 add r7, sp, #0 - 8003aa8: 6078 str r0, [r7, #4] - 8003aaa: 460b mov r3, r1 - 8003aac: 70fb strb r3, [r7, #3] + 8003af2: b580 push {r7, lr} + 8003af4: b084 sub sp, #16 + 8003af6: af00 add r7, sp, #0 + 8003af8: 6078 str r0, [r7, #4] + 8003afa: 460b mov r3, r1 + 8003afc: 70fb strb r3, [r7, #3] HAL_StatusTypeDef ret; PCD_EPTypeDef *ep; if ((0x80U & ep_addr) == 0x80U) - 8003aae: f997 3003 ldrsb.w r3, [r7, #3] - 8003ab2: 2b00 cmp r3, #0 - 8003ab4: da0c bge.n 8003ad0 + 8003afe: f997 3003 ldrsb.w r3, [r7, #3] + 8003b02: 2b00 cmp r3, #0 + 8003b04: da0c bge.n 8003b20 { ep = &hpcd->IN_ep[ep_addr & EP_ADDR_MSK]; - 8003ab6: 78fb ldrb r3, [r7, #3] - 8003ab8: f003 020f and.w r2, r3, #15 - 8003abc: 4613 mov r3, r2 - 8003abe: 00db lsls r3, r3, #3 - 8003ac0: 4413 add r3, r2 - 8003ac2: 009b lsls r3, r3, #2 - 8003ac4: 3310 adds r3, #16 - 8003ac6: 687a ldr r2, [r7, #4] - 8003ac8: 4413 add r3, r2 - 8003aca: 3304 adds r3, #4 - 8003acc: 60fb str r3, [r7, #12] - 8003ace: e00c b.n 8003aea + 8003b06: 78fb ldrb r3, [r7, #3] + 8003b08: f003 020f and.w r2, r3, #15 + 8003b0c: 4613 mov r3, r2 + 8003b0e: 00db lsls r3, r3, #3 + 8003b10: 4413 add r3, r2 + 8003b12: 009b lsls r3, r3, #2 + 8003b14: 3310 adds r3, #16 + 8003b16: 687a ldr r2, [r7, #4] + 8003b18: 4413 add r3, r2 + 8003b1a: 3304 adds r3, #4 + 8003b1c: 60fb str r3, [r7, #12] + 8003b1e: e00c b.n 8003b3a } else { ep = &hpcd->OUT_ep[ep_addr & EP_ADDR_MSK]; - 8003ad0: 78fb ldrb r3, [r7, #3] - 8003ad2: f003 020f and.w r2, r3, #15 - 8003ad6: 4613 mov r3, r2 - 8003ad8: 00db lsls r3, r3, #3 - 8003ada: 4413 add r3, r2 - 8003adc: 009b lsls r3, r3, #2 - 8003ade: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003ae2: 687a ldr r2, [r7, #4] - 8003ae4: 4413 add r3, r2 - 8003ae6: 3304 adds r3, #4 - 8003ae8: 60fb str r3, [r7, #12] + 8003b20: 78fb ldrb r3, [r7, #3] + 8003b22: f003 020f and.w r2, r3, #15 + 8003b26: 4613 mov r3, r2 + 8003b28: 00db lsls r3, r3, #3 + 8003b2a: 4413 add r3, r2 + 8003b2c: 009b lsls r3, r3, #2 + 8003b2e: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003b32: 687a ldr r2, [r7, #4] + 8003b34: 4413 add r3, r2 + 8003b36: 3304 adds r3, #4 + 8003b38: 60fb str r3, [r7, #12] } /* Stop Xfer */ ret = USB_EPStopXfer(hpcd->Instance, ep); - 8003aea: 687b ldr r3, [r7, #4] - 8003aec: 681b ldr r3, [r3, #0] - 8003aee: 68f9 ldr r1, [r7, #12] - 8003af0: 4618 mov r0, r3 - 8003af2: f004 f9cf bl 8007e94 - 8003af6: 4603 mov r3, r0 - 8003af8: 72fb strb r3, [r7, #11] + 8003b3a: 687b ldr r3, [r7, #4] + 8003b3c: 681b ldr r3, [r3, #0] + 8003b3e: 68f9 ldr r1, [r7, #12] + 8003b40: 4618 mov r0, r3 + 8003b42: f004 f8eb bl 8007d1c + 8003b46: 4603 mov r3, r0 + 8003b48: 72fb strb r3, [r7, #11] return ret; - 8003afa: 7afb ldrb r3, [r7, #11] + 8003b4a: 7afb ldrb r3, [r7, #11] } - 8003afc: 4618 mov r0, r3 - 8003afe: 3710 adds r7, #16 - 8003b00: 46bd mov sp, r7 - 8003b02: bd80 pop {r7, pc} + 8003b4c: 4618 mov r0, r3 + 8003b4e: 3710 adds r7, #16 + 8003b50: 46bd mov sp, r7 + 8003b52: bd80 pop {r7, pc} -08003b04 : +08003b54 : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_WriteEmptyTxFifo(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003b04: b580 push {r7, lr} - 8003b06: b08a sub sp, #40 @ 0x28 - 8003b08: af02 add r7, sp, #8 - 8003b0a: 6078 str r0, [r7, #4] - 8003b0c: 6039 str r1, [r7, #0] + 8003b54: b580 push {r7, lr} + 8003b56: b08a sub sp, #40 @ 0x28 + 8003b58: af02 add r7, sp, #8 + 8003b5a: 6078 str r0, [r7, #4] + 8003b5c: 6039 str r1, [r7, #0] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003b0e: 687b ldr r3, [r7, #4] - 8003b10: 681b ldr r3, [r3, #0] - 8003b12: 617b str r3, [r7, #20] + 8003b5e: 687b ldr r3, [r7, #4] + 8003b60: 681b ldr r3, [r3, #0] + 8003b62: 617b str r3, [r7, #20] uint32_t USBx_BASE = (uint32_t)USBx; - 8003b14: 697b ldr r3, [r7, #20] - 8003b16: 613b str r3, [r7, #16] + 8003b64: 697b ldr r3, [r7, #20] + 8003b66: 613b str r3, [r7, #16] USB_OTG_EPTypeDef *ep; uint32_t len; uint32_t len32b; uint32_t fifoemptymsk; ep = &hpcd->IN_ep[epnum]; - 8003b18: 683a ldr r2, [r7, #0] - 8003b1a: 4613 mov r3, r2 - 8003b1c: 00db lsls r3, r3, #3 - 8003b1e: 4413 add r3, r2 - 8003b20: 009b lsls r3, r3, #2 - 8003b22: 3310 adds r3, #16 - 8003b24: 687a ldr r2, [r7, #4] - 8003b26: 4413 add r3, r2 - 8003b28: 3304 adds r3, #4 - 8003b2a: 60fb str r3, [r7, #12] + 8003b68: 683a ldr r2, [r7, #0] + 8003b6a: 4613 mov r3, r2 + 8003b6c: 00db lsls r3, r3, #3 + 8003b6e: 4413 add r3, r2 + 8003b70: 009b lsls r3, r3, #2 + 8003b72: 3310 adds r3, #16 + 8003b74: 687a ldr r2, [r7, #4] + 8003b76: 4413 add r3, r2 + 8003b78: 3304 adds r3, #4 + 8003b7a: 60fb str r3, [r7, #12] if (ep->xfer_count > ep->xfer_len) - 8003b2c: 68fb ldr r3, [r7, #12] - 8003b2e: 695a ldr r2, [r3, #20] - 8003b30: 68fb ldr r3, [r7, #12] - 8003b32: 691b ldr r3, [r3, #16] - 8003b34: 429a cmp r2, r3 - 8003b36: d901 bls.n 8003b3c + 8003b7c: 68fb ldr r3, [r7, #12] + 8003b7e: 695a ldr r2, [r3, #20] + 8003b80: 68fb ldr r3, [r7, #12] + 8003b82: 691b ldr r3, [r3, #16] + 8003b84: 429a cmp r2, r3 + 8003b86: d901 bls.n 8003b8c { return HAL_ERROR; - 8003b38: 2301 movs r3, #1 - 8003b3a: e06b b.n 8003c14 + 8003b88: 2301 movs r3, #1 + 8003b8a: e06b b.n 8003c64 } len = ep->xfer_len - ep->xfer_count; - 8003b3c: 68fb ldr r3, [r7, #12] - 8003b3e: 691a ldr r2, [r3, #16] - 8003b40: 68fb ldr r3, [r7, #12] - 8003b42: 695b ldr r3, [r3, #20] - 8003b44: 1ad3 subs r3, r2, r3 - 8003b46: 61fb str r3, [r7, #28] + 8003b8c: 68fb ldr r3, [r7, #12] + 8003b8e: 691a ldr r2, [r3, #16] + 8003b90: 68fb ldr r3, [r7, #12] + 8003b92: 695b ldr r3, [r3, #20] + 8003b94: 1ad3 subs r3, r2, r3 + 8003b96: 61fb str r3, [r7, #28] if (len > ep->maxpacket) - 8003b48: 68fb ldr r3, [r7, #12] - 8003b4a: 689b ldr r3, [r3, #8] - 8003b4c: 69fa ldr r2, [r7, #28] - 8003b4e: 429a cmp r2, r3 - 8003b50: d902 bls.n 8003b58 + 8003b98: 68fb ldr r3, [r7, #12] + 8003b9a: 689b ldr r3, [r3, #8] + 8003b9c: 69fa ldr r2, [r7, #28] + 8003b9e: 429a cmp r2, r3 + 8003ba0: d902 bls.n 8003ba8 { len = ep->maxpacket; - 8003b52: 68fb ldr r3, [r7, #12] - 8003b54: 689b ldr r3, [r3, #8] - 8003b56: 61fb str r3, [r7, #28] + 8003ba2: 68fb ldr r3, [r7, #12] + 8003ba4: 689b ldr r3, [r3, #8] + 8003ba6: 61fb str r3, [r7, #28] } len32b = (len + 3U) / 4U; - 8003b58: 69fb ldr r3, [r7, #28] - 8003b5a: 3303 adds r3, #3 - 8003b5c: 089b lsrs r3, r3, #2 - 8003b5e: 61bb str r3, [r7, #24] + 8003ba8: 69fb ldr r3, [r7, #28] + 8003baa: 3303 adds r3, #3 + 8003bac: 089b lsrs r3, r3, #2 + 8003bae: 61bb str r3, [r7, #24] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003b60: e02a b.n 8003bb8 + 8003bb0: e02a b.n 8003c08 (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) { /* Write the FIFO */ len = ep->xfer_len - ep->xfer_count; - 8003b62: 68fb ldr r3, [r7, #12] - 8003b64: 691a ldr r2, [r3, #16] - 8003b66: 68fb ldr r3, [r7, #12] - 8003b68: 695b ldr r3, [r3, #20] - 8003b6a: 1ad3 subs r3, r2, r3 - 8003b6c: 61fb str r3, [r7, #28] + 8003bb2: 68fb ldr r3, [r7, #12] + 8003bb4: 691a ldr r2, [r3, #16] + 8003bb6: 68fb ldr r3, [r7, #12] + 8003bb8: 695b ldr r3, [r3, #20] + 8003bba: 1ad3 subs r3, r2, r3 + 8003bbc: 61fb str r3, [r7, #28] if (len > ep->maxpacket) - 8003b6e: 68fb ldr r3, [r7, #12] - 8003b70: 689b ldr r3, [r3, #8] - 8003b72: 69fa ldr r2, [r7, #28] - 8003b74: 429a cmp r2, r3 - 8003b76: d902 bls.n 8003b7e + 8003bbe: 68fb ldr r3, [r7, #12] + 8003bc0: 689b ldr r3, [r3, #8] + 8003bc2: 69fa ldr r2, [r7, #28] + 8003bc4: 429a cmp r2, r3 + 8003bc6: d902 bls.n 8003bce { len = ep->maxpacket; - 8003b78: 68fb ldr r3, [r7, #12] - 8003b7a: 689b ldr r3, [r3, #8] - 8003b7c: 61fb str r3, [r7, #28] + 8003bc8: 68fb ldr r3, [r7, #12] + 8003bca: 689b ldr r3, [r3, #8] + 8003bcc: 61fb str r3, [r7, #28] } len32b = (len + 3U) / 4U; - 8003b7e: 69fb ldr r3, [r7, #28] - 8003b80: 3303 adds r3, #3 - 8003b82: 089b lsrs r3, r3, #2 - 8003b84: 61bb str r3, [r7, #24] + 8003bce: 69fb ldr r3, [r7, #28] + 8003bd0: 3303 adds r3, #3 + 8003bd2: 089b lsrs r3, r3, #2 + 8003bd4: 61bb str r3, [r7, #24] (void)USB_WritePacket(USBx, ep->xfer_buff, (uint8_t)epnum, (uint16_t)len, - 8003b86: 68fb ldr r3, [r7, #12] - 8003b88: 68d9 ldr r1, [r3, #12] - 8003b8a: 683b ldr r3, [r7, #0] - 8003b8c: b2da uxtb r2, r3 - 8003b8e: 69fb ldr r3, [r7, #28] - 8003b90: b298 uxth r0, r3 + 8003bd6: 68fb ldr r3, [r7, #12] + 8003bd8: 68d9 ldr r1, [r3, #12] + 8003bda: 683b ldr r3, [r7, #0] + 8003bdc: b2da uxtb r2, r3 + 8003bde: 69fb ldr r3, [r7, #28] + 8003be0: b298 uxth r0, r3 (uint8_t)hpcd->Init.dma_enable); - 8003b92: 687b ldr r3, [r7, #4] - 8003b94: 799b ldrb r3, [r3, #6] + 8003be2: 687b ldr r3, [r7, #4] + 8003be4: 799b ldrb r3, [r3, #6] (void)USB_WritePacket(USBx, ep->xfer_buff, (uint8_t)epnum, (uint16_t)len, - 8003b96: 9300 str r3, [sp, #0] - 8003b98: 4603 mov r3, r0 - 8003b9a: 6978 ldr r0, [r7, #20] - 8003b9c: f004 fa24 bl 8007fe8 + 8003be6: 9300 str r3, [sp, #0] + 8003be8: 4603 mov r3, r0 + 8003bea: 6978 ldr r0, [r7, #20] + 8003bec: f004 f940 bl 8007e70 ep->xfer_buff += len; - 8003ba0: 68fb ldr r3, [r7, #12] - 8003ba2: 68da ldr r2, [r3, #12] - 8003ba4: 69fb ldr r3, [r7, #28] - 8003ba6: 441a add r2, r3 - 8003ba8: 68fb ldr r3, [r7, #12] - 8003baa: 60da str r2, [r3, #12] + 8003bf0: 68fb ldr r3, [r7, #12] + 8003bf2: 68da ldr r2, [r3, #12] + 8003bf4: 69fb ldr r3, [r7, #28] + 8003bf6: 441a add r2, r3 + 8003bf8: 68fb ldr r3, [r7, #12] + 8003bfa: 60da str r2, [r3, #12] ep->xfer_count += len; - 8003bac: 68fb ldr r3, [r7, #12] - 8003bae: 695a ldr r2, [r3, #20] - 8003bb0: 69fb ldr r3, [r7, #28] - 8003bb2: 441a add r2, r3 - 8003bb4: 68fb ldr r3, [r7, #12] - 8003bb6: 615a str r2, [r3, #20] + 8003bfc: 68fb ldr r3, [r7, #12] + 8003bfe: 695a ldr r2, [r3, #20] + 8003c00: 69fb ldr r3, [r7, #28] + 8003c02: 441a add r2, r3 + 8003c04: 68fb ldr r3, [r7, #12] + 8003c06: 615a str r2, [r3, #20] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003bb8: 683b ldr r3, [r7, #0] - 8003bba: 015a lsls r2, r3, #5 - 8003bbc: 693b ldr r3, [r7, #16] - 8003bbe: 4413 add r3, r2 - 8003bc0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8003bc4: 699b ldr r3, [r3, #24] - 8003bc6: b29b uxth r3, r3 + 8003c08: 683b ldr r3, [r7, #0] + 8003c0a: 015a lsls r2, r3, #5 + 8003c0c: 693b ldr r3, [r7, #16] + 8003c0e: 4413 add r3, r2 + 8003c10: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8003c14: 699b ldr r3, [r3, #24] + 8003c16: b29b uxth r3, r3 (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) - 8003bc8: 69ba ldr r2, [r7, #24] - 8003bca: 429a cmp r2, r3 - 8003bcc: d809 bhi.n 8003be2 - 8003bce: 68fb ldr r3, [r7, #12] - 8003bd0: 695a ldr r2, [r3, #20] - 8003bd2: 68fb ldr r3, [r7, #12] - 8003bd4: 691b ldr r3, [r3, #16] + 8003c18: 69ba ldr r2, [r7, #24] + 8003c1a: 429a cmp r2, r3 + 8003c1c: d809 bhi.n 8003c32 + 8003c1e: 68fb ldr r3, [r7, #12] + 8003c20: 695a ldr r2, [r3, #20] + 8003c22: 68fb ldr r3, [r7, #12] + 8003c24: 691b ldr r3, [r3, #16] while (((USBx_INEP(epnum)->DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV) >= len32b) && - 8003bd6: 429a cmp r2, r3 - 8003bd8: d203 bcs.n 8003be2 + 8003c26: 429a cmp r2, r3 + 8003c28: d203 bcs.n 8003c32 (ep->xfer_count < ep->xfer_len) && (ep->xfer_len != 0U)) - 8003bda: 68fb ldr r3, [r7, #12] - 8003bdc: 691b ldr r3, [r3, #16] - 8003bde: 2b00 cmp r3, #0 - 8003be0: d1bf bne.n 8003b62 + 8003c2a: 68fb ldr r3, [r7, #12] + 8003c2c: 691b ldr r3, [r3, #16] + 8003c2e: 2b00 cmp r3, #0 + 8003c30: d1bf bne.n 8003bb2 } if (ep->xfer_len <= ep->xfer_count) - 8003be2: 68fb ldr r3, [r7, #12] - 8003be4: 691a ldr r2, [r3, #16] - 8003be6: 68fb ldr r3, [r7, #12] - 8003be8: 695b ldr r3, [r3, #20] - 8003bea: 429a cmp r2, r3 - 8003bec: d811 bhi.n 8003c12 + 8003c32: 68fb ldr r3, [r7, #12] + 8003c34: 691a ldr r2, [r3, #16] + 8003c36: 68fb ldr r3, [r7, #12] + 8003c38: 695b ldr r3, [r3, #20] + 8003c3a: 429a cmp r2, r3 + 8003c3c: d811 bhi.n 8003c62 { fifoemptymsk = (uint32_t)(0x1UL << (epnum & EP_ADDR_MSK)); - 8003bee: 683b ldr r3, [r7, #0] - 8003bf0: f003 030f and.w r3, r3, #15 - 8003bf4: 2201 movs r2, #1 - 8003bf6: fa02 f303 lsl.w r3, r2, r3 - 8003bfa: 60bb str r3, [r7, #8] + 8003c3e: 683b ldr r3, [r7, #0] + 8003c40: f003 030f and.w r3, r3, #15 + 8003c44: 2201 movs r2, #1 + 8003c46: fa02 f303 lsl.w r3, r2, r3 + 8003c4a: 60bb str r3, [r7, #8] USBx_DEVICE->DIEPEMPMSK &= ~fifoemptymsk; - 8003bfc: 693b ldr r3, [r7, #16] - 8003bfe: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8003c02: 6b5a ldr r2, [r3, #52] @ 0x34 - 8003c04: 68bb ldr r3, [r7, #8] - 8003c06: 43db mvns r3, r3 - 8003c08: 6939 ldr r1, [r7, #16] - 8003c0a: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8003c0e: 4013 ands r3, r2 - 8003c10: 634b str r3, [r1, #52] @ 0x34 + 8003c4c: 693b ldr r3, [r7, #16] + 8003c4e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8003c52: 6b5a ldr r2, [r3, #52] @ 0x34 + 8003c54: 68bb ldr r3, [r7, #8] + 8003c56: 43db mvns r3, r3 + 8003c58: 6939 ldr r1, [r7, #16] + 8003c5a: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8003c5e: 4013 ands r3, r2 + 8003c60: 634b str r3, [r1, #52] @ 0x34 } return HAL_OK; - 8003c12: 2300 movs r3, #0 + 8003c62: 2300 movs r3, #0 } - 8003c14: 4618 mov r0, r3 - 8003c16: 3720 adds r7, #32 - 8003c18: 46bd mov sp, r7 - 8003c1a: bd80 pop {r7, pc} + 8003c64: 4618 mov r0, r3 + 8003c66: 3720 adds r7, #32 + 8003c68: 46bd mov sp, r7 + 8003c6a: bd80 pop {r7, pc} -08003c1c : +08003c6c : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_EP_OutXfrComplete_int(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003c1c: b580 push {r7, lr} - 8003c1e: b088 sub sp, #32 - 8003c20: af00 add r7, sp, #0 - 8003c22: 6078 str r0, [r7, #4] - 8003c24: 6039 str r1, [r7, #0] + 8003c6c: b580 push {r7, lr} + 8003c6e: b088 sub sp, #32 + 8003c70: af00 add r7, sp, #0 + 8003c72: 6078 str r0, [r7, #4] + 8003c74: 6039 str r1, [r7, #0] USB_OTG_EPTypeDef *ep; const USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003c26: 687b ldr r3, [r7, #4] - 8003c28: 681b ldr r3, [r3, #0] - 8003c2a: 61fb str r3, [r7, #28] + 8003c76: 687b ldr r3, [r7, #4] + 8003c78: 681b ldr r3, [r3, #0] + 8003c7a: 61fb str r3, [r7, #28] uint32_t USBx_BASE = (uint32_t)USBx; - 8003c2c: 69fb ldr r3, [r7, #28] - 8003c2e: 61bb str r3, [r7, #24] + 8003c7c: 69fb ldr r3, [r7, #28] + 8003c7e: 61bb str r3, [r7, #24] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 8003c30: 69fb ldr r3, [r7, #28] - 8003c32: 333c adds r3, #60 @ 0x3c - 8003c34: 3304 adds r3, #4 - 8003c36: 681b ldr r3, [r3, #0] - 8003c38: 617b str r3, [r7, #20] + 8003c80: 69fb ldr r3, [r7, #28] + 8003c82: 333c adds r3, #60 @ 0x3c + 8003c84: 3304 adds r3, #4 + 8003c86: 681b ldr r3, [r3, #0] + 8003c88: 617b str r3, [r7, #20] uint32_t DoepintReg = USBx_OUTEP(epnum)->DOEPINT; - 8003c3a: 683b ldr r3, [r7, #0] - 8003c3c: 015a lsls r2, r3, #5 - 8003c3e: 69bb ldr r3, [r7, #24] - 8003c40: 4413 add r3, r2 - 8003c42: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003c46: 689b ldr r3, [r3, #8] - 8003c48: 613b str r3, [r7, #16] + 8003c8a: 683b ldr r3, [r7, #0] + 8003c8c: 015a lsls r2, r3, #5 + 8003c8e: 69bb ldr r3, [r7, #24] + 8003c90: 4413 add r3, r2 + 8003c92: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003c96: 689b ldr r3, [r3, #8] + 8003c98: 613b str r3, [r7, #16] if (hpcd->Init.dma_enable == 1U) - 8003c4a: 687b ldr r3, [r7, #4] - 8003c4c: 799b ldrb r3, [r3, #6] - 8003c4e: 2b01 cmp r3, #1 - 8003c50: d17b bne.n 8003d4a + 8003c9a: 687b ldr r3, [r7, #4] + 8003c9c: 799b ldrb r3, [r3, #6] + 8003c9e: 2b01 cmp r3, #1 + 8003ca0: d17b bne.n 8003d9a { if ((DoepintReg & USB_OTG_DOEPINT_STUP) == USB_OTG_DOEPINT_STUP) /* Class C */ - 8003c52: 693b ldr r3, [r7, #16] - 8003c54: f003 0308 and.w r3, r3, #8 - 8003c58: 2b00 cmp r3, #0 - 8003c5a: d015 beq.n 8003c88 + 8003ca2: 693b ldr r3, [r7, #16] + 8003ca4: f003 0308 and.w r3, r3, #8 + 8003ca8: 2b00 cmp r3, #0 + 8003caa: d015 beq.n 8003cd8 { /* StupPktRcvd = 1 this is a setup packet */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003c5c: 697b ldr r3, [r7, #20] - 8003c5e: 4a61 ldr r2, [pc, #388] @ (8003de4 ) - 8003c60: 4293 cmp r3, r2 - 8003c62: f240 80b9 bls.w 8003dd8 + 8003cac: 697b ldr r3, [r7, #20] + 8003cae: 4a61 ldr r2, [pc, #388] @ (8003e34 ) + 8003cb0: 4293 cmp r3, r2 + 8003cb2: f240 80b9 bls.w 8003e28 ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003c66: 693b ldr r3, [r7, #16] - 8003c68: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8003cb6: 693b ldr r3, [r7, #16] + 8003cb8: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003c6c: 2b00 cmp r3, #0 - 8003c6e: f000 80b3 beq.w 8003dd8 + 8003cbc: 2b00 cmp r3, #0 + 8003cbe: f000 80b3 beq.w 8003e28 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003c72: 683b ldr r3, [r7, #0] - 8003c74: 015a lsls r2, r3, #5 - 8003c76: 69bb ldr r3, [r7, #24] - 8003c78: 4413 add r3, r2 - 8003c7a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003c7e: 461a mov r2, r3 - 8003c80: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003c84: 6093 str r3, [r2, #8] - 8003c86: e0a7 b.n 8003dd8 + 8003cc2: 683b ldr r3, [r7, #0] + 8003cc4: 015a lsls r2, r3, #5 + 8003cc6: 69bb ldr r3, [r7, #24] + 8003cc8: 4413 add r3, r2 + 8003cca: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003cce: 461a mov r2, r3 + 8003cd0: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8003cd4: 6093 str r3, [r2, #8] + 8003cd6: e0a7 b.n 8003e28 } } else if ((DoepintReg & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) /* Class E */ - 8003c88: 693b ldr r3, [r7, #16] - 8003c8a: f003 0320 and.w r3, r3, #32 - 8003c8e: 2b00 cmp r3, #0 - 8003c90: d009 beq.n 8003ca6 + 8003cd8: 693b ldr r3, [r7, #16] + 8003cda: f003 0320 and.w r3, r3, #32 + 8003cde: 2b00 cmp r3, #0 + 8003ce0: d009 beq.n 8003cf6 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8003c92: 683b ldr r3, [r7, #0] - 8003c94: 015a lsls r2, r3, #5 - 8003c96: 69bb ldr r3, [r7, #24] - 8003c98: 4413 add r3, r2 - 8003c9a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003c9e: 461a mov r2, r3 - 8003ca0: 2320 movs r3, #32 - 8003ca2: 6093 str r3, [r2, #8] - 8003ca4: e098 b.n 8003dd8 + 8003ce2: 683b ldr r3, [r7, #0] + 8003ce4: 015a lsls r2, r3, #5 + 8003ce6: 69bb ldr r3, [r7, #24] + 8003ce8: 4413 add r3, r2 + 8003cea: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003cee: 461a mov r2, r3 + 8003cf0: 2320 movs r3, #32 + 8003cf2: 6093 str r3, [r2, #8] + 8003cf4: e098 b.n 8003e28 } else if ((DoepintReg & (USB_OTG_DOEPINT_STUP | USB_OTG_DOEPINT_OTEPSPR)) == 0U) - 8003ca6: 693b ldr r3, [r7, #16] - 8003ca8: f003 0328 and.w r3, r3, #40 @ 0x28 - 8003cac: 2b00 cmp r3, #0 - 8003cae: f040 8093 bne.w 8003dd8 + 8003cf6: 693b ldr r3, [r7, #16] + 8003cf8: f003 0328 and.w r3, r3, #40 @ 0x28 + 8003cfc: 2b00 cmp r3, #0 + 8003cfe: f040 8093 bne.w 8003e28 { /* StupPktRcvd = 1 this is a setup packet */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003cb2: 697b ldr r3, [r7, #20] - 8003cb4: 4a4b ldr r2, [pc, #300] @ (8003de4 ) - 8003cb6: 4293 cmp r3, r2 - 8003cb8: d90f bls.n 8003cda + 8003d02: 697b ldr r3, [r7, #20] + 8003d04: 4a4b ldr r2, [pc, #300] @ (8003e34 ) + 8003d06: 4293 cmp r3, r2 + 8003d08: d90f bls.n 8003d2a ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003cba: 693b ldr r3, [r7, #16] - 8003cbc: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8003d0a: 693b ldr r3, [r7, #16] + 8003d0c: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003cc0: 2b00 cmp r3, #0 - 8003cc2: d00a beq.n 8003cda + 8003d10: 2b00 cmp r3, #0 + 8003d12: d00a beq.n 8003d2a { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003cc4: 683b ldr r3, [r7, #0] - 8003cc6: 015a lsls r2, r3, #5 - 8003cc8: 69bb ldr r3, [r7, #24] - 8003cca: 4413 add r3, r2 - 8003ccc: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003cd0: 461a mov r2, r3 - 8003cd2: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003cd6: 6093 str r3, [r2, #8] - 8003cd8: e07e b.n 8003dd8 + 8003d14: 683b ldr r3, [r7, #0] + 8003d16: 015a lsls r2, r3, #5 + 8003d18: 69bb ldr r3, [r7, #24] + 8003d1a: 4413 add r3, r2 + 8003d1c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003d20: 461a mov r2, r3 + 8003d22: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8003d26: 6093 str r3, [r2, #8] + 8003d28: e07e b.n 8003e28 } else { ep = &hpcd->OUT_ep[epnum]; - 8003cda: 683a ldr r2, [r7, #0] - 8003cdc: 4613 mov r3, r2 - 8003cde: 00db lsls r3, r3, #3 - 8003ce0: 4413 add r3, r2 - 8003ce2: 009b lsls r3, r3, #2 - 8003ce4: f503 7314 add.w r3, r3, #592 @ 0x250 - 8003ce8: 687a ldr r2, [r7, #4] - 8003cea: 4413 add r3, r2 - 8003cec: 3304 adds r3, #4 - 8003cee: 60fb str r3, [r7, #12] + 8003d2a: 683a ldr r2, [r7, #0] + 8003d2c: 4613 mov r3, r2 + 8003d2e: 00db lsls r3, r3, #3 + 8003d30: 4413 add r3, r2 + 8003d32: 009b lsls r3, r3, #2 + 8003d34: f503 7314 add.w r3, r3, #592 @ 0x250 + 8003d38: 687a ldr r2, [r7, #4] + 8003d3a: 4413 add r3, r2 + 8003d3c: 3304 adds r3, #4 + 8003d3e: 60fb str r3, [r7, #12] /* out data packet received over EP */ ep->xfer_count = ep->xfer_size - (USBx_OUTEP(epnum)->DOEPTSIZ & USB_OTG_DOEPTSIZ_XFRSIZ); - 8003cf0: 68fb ldr r3, [r7, #12] - 8003cf2: 6a1a ldr r2, [r3, #32] - 8003cf4: 683b ldr r3, [r7, #0] - 8003cf6: 0159 lsls r1, r3, #5 - 8003cf8: 69bb ldr r3, [r7, #24] - 8003cfa: 440b add r3, r1 - 8003cfc: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003d00: 691b ldr r3, [r3, #16] - 8003d02: f3c3 0312 ubfx r3, r3, #0, #19 - 8003d06: 1ad2 subs r2, r2, r3 - 8003d08: 68fb ldr r3, [r7, #12] - 8003d0a: 615a str r2, [r3, #20] + 8003d40: 68fb ldr r3, [r7, #12] + 8003d42: 6a1a ldr r2, [r3, #32] + 8003d44: 683b ldr r3, [r7, #0] + 8003d46: 0159 lsls r1, r3, #5 + 8003d48: 69bb ldr r3, [r7, #24] + 8003d4a: 440b add r3, r1 + 8003d4c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003d50: 691b ldr r3, [r3, #16] + 8003d52: f3c3 0312 ubfx r3, r3, #0, #19 + 8003d56: 1ad2 subs r2, r2, r3 + 8003d58: 68fb ldr r3, [r7, #12] + 8003d5a: 615a str r2, [r3, #20] if (epnum == 0U) - 8003d0c: 683b ldr r3, [r7, #0] - 8003d0e: 2b00 cmp r3, #0 - 8003d10: d114 bne.n 8003d3c + 8003d5c: 683b ldr r3, [r7, #0] + 8003d5e: 2b00 cmp r3, #0 + 8003d60: d114 bne.n 8003d8c { if (ep->xfer_len == 0U) - 8003d12: 68fb ldr r3, [r7, #12] - 8003d14: 691b ldr r3, [r3, #16] - 8003d16: 2b00 cmp r3, #0 - 8003d18: d109 bne.n 8003d2e + 8003d62: 68fb ldr r3, [r7, #12] + 8003d64: 691b ldr r3, [r3, #16] + 8003d66: 2b00 cmp r3, #0 + 8003d68: d109 bne.n 8003d7e { /* this is ZLP, so prepare EP0 for next setup */ (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 8003d1a: 687b ldr r3, [r7, #4] - 8003d1c: 6818 ldr r0, [r3, #0] - 8003d1e: 687b ldr r3, [r7, #4] - 8003d20: f203 439c addw r3, r3, #1180 @ 0x49c - 8003d24: 461a mov r2, r3 - 8003d26: 2101 movs r1, #1 - 8003d28: f004 fbf4 bl 8008514 - 8003d2c: e006 b.n 8003d3c + 8003d6a: 687b ldr r3, [r7, #4] + 8003d6c: 6818 ldr r0, [r3, #0] + 8003d6e: 687b ldr r3, [r7, #4] + 8003d70: f203 439c addw r3, r3, #1180 @ 0x49c + 8003d74: 461a mov r2, r3 + 8003d76: 2101 movs r1, #1 + 8003d78: f004 fb10 bl 800839c + 8003d7c: e006 b.n 8003d8c } else { ep->xfer_buff += ep->xfer_count; - 8003d2e: 68fb ldr r3, [r7, #12] - 8003d30: 68da ldr r2, [r3, #12] - 8003d32: 68fb ldr r3, [r7, #12] - 8003d34: 695b ldr r3, [r3, #20] - 8003d36: 441a add r2, r3 - 8003d38: 68fb ldr r3, [r7, #12] - 8003d3a: 60da str r2, [r3, #12] + 8003d7e: 68fb ldr r3, [r7, #12] + 8003d80: 68da ldr r2, [r3, #12] + 8003d82: 68fb ldr r3, [r7, #12] + 8003d84: 695b ldr r3, [r3, #20] + 8003d86: 441a add r2, r3 + 8003d88: 68fb ldr r3, [r7, #12] + 8003d8a: 60da str r2, [r3, #12] } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003d3c: 683b ldr r3, [r7, #0] - 8003d3e: b2db uxtb r3, r3 - 8003d40: 4619 mov r1, r3 - 8003d42: 6878 ldr r0, [r7, #4] - 8003d44: f006 fbc2 bl 800a4cc - 8003d48: e046 b.n 8003dd8 + 8003d8c: 683b ldr r3, [r7, #0] + 8003d8e: b2db uxtb r3, r3 + 8003d90: 4619 mov r1, r3 + 8003d92: 6878 ldr r0, [r7, #4] + 8003d94: f006 fade bl 800a354 + 8003d98: e046 b.n 8003e28 /* ... */ } } else { if (gSNPSiD == USB_OTG_CORE_ID_310A) - 8003d4a: 697b ldr r3, [r7, #20] - 8003d4c: 4a26 ldr r2, [pc, #152] @ (8003de8 ) - 8003d4e: 4293 cmp r3, r2 - 8003d50: d124 bne.n 8003d9c + 8003d9a: 697b ldr r3, [r7, #20] + 8003d9c: 4a26 ldr r2, [pc, #152] @ (8003e38 ) + 8003d9e: 4293 cmp r3, r2 + 8003da0: d124 bne.n 8003dec { /* StupPktRcvd = 1 this is a setup packet */ if ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX) - 8003d52: 693b ldr r3, [r7, #16] - 8003d54: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 8003d58: 2b00 cmp r3, #0 - 8003d5a: d00a beq.n 8003d72 + 8003da2: 693b ldr r3, [r7, #16] + 8003da4: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8003da8: 2b00 cmp r3, #0 + 8003daa: d00a beq.n 8003dc2 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003d5c: 683b ldr r3, [r7, #0] - 8003d5e: 015a lsls r2, r3, #5 - 8003d60: 69bb ldr r3, [r7, #24] - 8003d62: 4413 add r3, r2 - 8003d64: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003d68: 461a mov r2, r3 - 8003d6a: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003d6e: 6093 str r3, [r2, #8] - 8003d70: e032 b.n 8003dd8 + 8003dac: 683b ldr r3, [r7, #0] + 8003dae: 015a lsls r2, r3, #5 + 8003db0: 69bb ldr r3, [r7, #24] + 8003db2: 4413 add r3, r2 + 8003db4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003db8: 461a mov r2, r3 + 8003dba: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8003dbe: 6093 str r3, [r2, #8] + 8003dc0: e032 b.n 8003e28 } else { if ((DoepintReg & USB_OTG_DOEPINT_OTEPSPR) == USB_OTG_DOEPINT_OTEPSPR) - 8003d72: 693b ldr r3, [r7, #16] - 8003d74: f003 0320 and.w r3, r3, #32 - 8003d78: 2b00 cmp r3, #0 - 8003d7a: d008 beq.n 8003d8e + 8003dc2: 693b ldr r3, [r7, #16] + 8003dc4: f003 0320 and.w r3, r3, #32 + 8003dc8: 2b00 cmp r3, #0 + 8003dca: d008 beq.n 8003dde { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_OTEPSPR); - 8003d7c: 683b ldr r3, [r7, #0] - 8003d7e: 015a lsls r2, r3, #5 - 8003d80: 69bb ldr r3, [r7, #24] - 8003d82: 4413 add r3, r2 - 8003d84: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003d88: 461a mov r2, r3 - 8003d8a: 2320 movs r3, #32 - 8003d8c: 6093 str r3, [r2, #8] + 8003dcc: 683b ldr r3, [r7, #0] + 8003dce: 015a lsls r2, r3, #5 + 8003dd0: 69bb ldr r3, [r7, #24] + 8003dd2: 4413 add r3, r2 + 8003dd4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003dd8: 461a mov r2, r3 + 8003dda: 2320 movs r3, #32 + 8003ddc: 6093 str r3, [r2, #8] } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003d8e: 683b ldr r3, [r7, #0] - 8003d90: b2db uxtb r3, r3 - 8003d92: 4619 mov r1, r3 - 8003d94: 6878 ldr r0, [r7, #4] - 8003d96: f006 fb99 bl 800a4cc - 8003d9a: e01d b.n 8003dd8 + 8003dde: 683b ldr r3, [r7, #0] + 8003de0: b2db uxtb r3, r3 + 8003de2: 4619 mov r1, r3 + 8003de4: 6878 ldr r0, [r7, #4] + 8003de6: f006 fab5 bl 800a354 + 8003dea: e01d b.n 8003e28 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } } else { if ((epnum == 0U) && (hpcd->OUT_ep[epnum].xfer_len == 0U)) - 8003d9c: 683b ldr r3, [r7, #0] - 8003d9e: 2b00 cmp r3, #0 - 8003da0: d114 bne.n 8003dcc - 8003da2: 6879 ldr r1, [r7, #4] - 8003da4: 683a ldr r2, [r7, #0] - 8003da6: 4613 mov r3, r2 - 8003da8: 00db lsls r3, r3, #3 - 8003daa: 4413 add r3, r2 - 8003dac: 009b lsls r3, r3, #2 - 8003dae: 440b add r3, r1 - 8003db0: f503 7319 add.w r3, r3, #612 @ 0x264 - 8003db4: 681b ldr r3, [r3, #0] - 8003db6: 2b00 cmp r3, #0 - 8003db8: d108 bne.n 8003dcc + 8003dec: 683b ldr r3, [r7, #0] + 8003dee: 2b00 cmp r3, #0 + 8003df0: d114 bne.n 8003e1c + 8003df2: 6879 ldr r1, [r7, #4] + 8003df4: 683a ldr r2, [r7, #0] + 8003df6: 4613 mov r3, r2 + 8003df8: 00db lsls r3, r3, #3 + 8003dfa: 4413 add r3, r2 + 8003dfc: 009b lsls r3, r3, #2 + 8003dfe: 440b add r3, r1 + 8003e00: f503 7319 add.w r3, r3, #612 @ 0x264 + 8003e04: 681b ldr r3, [r3, #0] + 8003e06: 2b00 cmp r3, #0 + 8003e08: d108 bne.n 8003e1c { /* this is ZLP, so prepare EP0 for next setup */ (void)USB_EP0_OutStart(hpcd->Instance, 0U, (uint8_t *)hpcd->Setup); - 8003dba: 687b ldr r3, [r7, #4] - 8003dbc: 6818 ldr r0, [r3, #0] - 8003dbe: 687b ldr r3, [r7, #4] - 8003dc0: f203 439c addw r3, r3, #1180 @ 0x49c - 8003dc4: 461a mov r2, r3 - 8003dc6: 2100 movs r1, #0 - 8003dc8: f004 fba4 bl 8008514 + 8003e0a: 687b ldr r3, [r7, #4] + 8003e0c: 6818 ldr r0, [r3, #0] + 8003e0e: 687b ldr r3, [r7, #4] + 8003e10: f203 439c addw r3, r3, #1180 @ 0x49c + 8003e14: 461a mov r2, r3 + 8003e16: 2100 movs r1, #0 + 8003e18: f004 fac0 bl 800839c } #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->DataOutStageCallback(hpcd, (uint8_t)epnum); #else HAL_PCD_DataOutStageCallback(hpcd, (uint8_t)epnum); - 8003dcc: 683b ldr r3, [r7, #0] - 8003dce: b2db uxtb r3, r3 - 8003dd0: 4619 mov r1, r3 - 8003dd2: 6878 ldr r0, [r7, #4] - 8003dd4: f006 fb7a bl 800a4cc + 8003e1c: 683b ldr r3, [r7, #0] + 8003e1e: b2db uxtb r3, r3 + 8003e20: 4619 mov r1, r3 + 8003e22: 6878 ldr r0, [r7, #4] + 8003e24: f006 fa96 bl 800a354 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ } } return HAL_OK; - 8003dd8: 2300 movs r3, #0 + 8003e28: 2300 movs r3, #0 } - 8003dda: 4618 mov r0, r3 - 8003ddc: 3720 adds r7, #32 - 8003dde: 46bd mov sp, r7 - 8003de0: bd80 pop {r7, pc} - 8003de2: bf00 nop - 8003de4: 4f54300a .word 0x4f54300a - 8003de8: 4f54310a .word 0x4f54310a + 8003e2a: 4618 mov r0, r3 + 8003e2c: 3720 adds r7, #32 + 8003e2e: 46bd mov sp, r7 + 8003e30: bd80 pop {r7, pc} + 8003e32: bf00 nop + 8003e34: 4f54300a .word 0x4f54300a + 8003e38: 4f54310a .word 0x4f54310a -08003dec : +08003e3c : * @param hpcd PCD handle * @param epnum endpoint number * @retval HAL status */ static HAL_StatusTypeDef PCD_EP_OutSetupPacket_int(PCD_HandleTypeDef *hpcd, uint32_t epnum) { - 8003dec: b580 push {r7, lr} - 8003dee: b086 sub sp, #24 - 8003df0: af00 add r7, sp, #0 - 8003df2: 6078 str r0, [r7, #4] - 8003df4: 6039 str r1, [r7, #0] + 8003e3c: b580 push {r7, lr} + 8003e3e: b086 sub sp, #24 + 8003e40: af00 add r7, sp, #0 + 8003e42: 6078 str r0, [r7, #4] + 8003e44: 6039 str r1, [r7, #0] const USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003df6: 687b ldr r3, [r7, #4] - 8003df8: 681b ldr r3, [r3, #0] - 8003dfa: 617b str r3, [r7, #20] + 8003e46: 687b ldr r3, [r7, #4] + 8003e48: 681b ldr r3, [r3, #0] + 8003e4a: 617b str r3, [r7, #20] uint32_t USBx_BASE = (uint32_t)USBx; - 8003dfc: 697b ldr r3, [r7, #20] - 8003dfe: 613b str r3, [r7, #16] + 8003e4c: 697b ldr r3, [r7, #20] + 8003e4e: 613b str r3, [r7, #16] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 8003e00: 697b ldr r3, [r7, #20] - 8003e02: 333c adds r3, #60 @ 0x3c - 8003e04: 3304 adds r3, #4 - 8003e06: 681b ldr r3, [r3, #0] - 8003e08: 60fb str r3, [r7, #12] + 8003e50: 697b ldr r3, [r7, #20] + 8003e52: 333c adds r3, #60 @ 0x3c + 8003e54: 3304 adds r3, #4 + 8003e56: 681b ldr r3, [r3, #0] + 8003e58: 60fb str r3, [r7, #12] uint32_t DoepintReg = USBx_OUTEP(epnum)->DOEPINT; - 8003e0a: 683b ldr r3, [r7, #0] - 8003e0c: 015a lsls r2, r3, #5 - 8003e0e: 693b ldr r3, [r7, #16] - 8003e10: 4413 add r3, r2 - 8003e12: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003e16: 689b ldr r3, [r3, #8] - 8003e18: 60bb str r3, [r7, #8] + 8003e5a: 683b ldr r3, [r7, #0] + 8003e5c: 015a lsls r2, r3, #5 + 8003e5e: 693b ldr r3, [r7, #16] + 8003e60: 4413 add r3, r2 + 8003e62: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003e66: 689b ldr r3, [r3, #8] + 8003e68: 60bb str r3, [r7, #8] if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e1a: 68fb ldr r3, [r7, #12] - 8003e1c: 4a15 ldr r2, [pc, #84] @ (8003e74 ) - 8003e1e: 4293 cmp r3, r2 - 8003e20: d90e bls.n 8003e40 + 8003e6a: 68fb ldr r3, [r7, #12] + 8003e6c: 4a15 ldr r2, [pc, #84] @ (8003ec4 ) + 8003e6e: 4293 cmp r3, r2 + 8003e70: d90e bls.n 8003e90 ((DoepintReg & USB_OTG_DOEPINT_STPKTRX) == USB_OTG_DOEPINT_STPKTRX)) - 8003e22: 68bb ldr r3, [r7, #8] - 8003e24: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8003e72: 68bb ldr r3, [r7, #8] + 8003e74: f403 4300 and.w r3, r3, #32768 @ 0x8000 if ((gSNPSiD > USB_OTG_CORE_ID_300A) && - 8003e28: 2b00 cmp r3, #0 - 8003e2a: d009 beq.n 8003e40 + 8003e78: 2b00 cmp r3, #0 + 8003e7a: d009 beq.n 8003e90 { CLEAR_OUT_EP_INTR(epnum, USB_OTG_DOEPINT_STPKTRX); - 8003e2c: 683b ldr r3, [r7, #0] - 8003e2e: 015a lsls r2, r3, #5 - 8003e30: 693b ldr r3, [r7, #16] - 8003e32: 4413 add r3, r2 - 8003e34: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8003e38: 461a mov r2, r3 - 8003e3a: f44f 4300 mov.w r3, #32768 @ 0x8000 - 8003e3e: 6093 str r3, [r2, #8] + 8003e7c: 683b ldr r3, [r7, #0] + 8003e7e: 015a lsls r2, r3, #5 + 8003e80: 693b ldr r3, [r7, #16] + 8003e82: 4413 add r3, r2 + 8003e84: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8003e88: 461a mov r2, r3 + 8003e8a: f44f 4300 mov.w r3, #32768 @ 0x8000 + 8003e8e: 6093 str r3, [r2, #8] /* Inform the upper layer that a setup packet is available */ #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) hpcd->SetupStageCallback(hpcd); #else HAL_PCD_SetupStageCallback(hpcd); - 8003e40: 6878 ldr r0, [r7, #4] - 8003e42: f006 fb31 bl 800a4a8 + 8003e90: 6878 ldr r0, [r7, #4] + 8003e92: f006 fa4d bl 800a330 #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ if ((gSNPSiD > USB_OTG_CORE_ID_300A) && (hpcd->Init.dma_enable == 1U)) - 8003e46: 68fb ldr r3, [r7, #12] - 8003e48: 4a0a ldr r2, [pc, #40] @ (8003e74 ) - 8003e4a: 4293 cmp r3, r2 - 8003e4c: d90c bls.n 8003e68 - 8003e4e: 687b ldr r3, [r7, #4] - 8003e50: 799b ldrb r3, [r3, #6] - 8003e52: 2b01 cmp r3, #1 - 8003e54: d108 bne.n 8003e68 + 8003e96: 68fb ldr r3, [r7, #12] + 8003e98: 4a0a ldr r2, [pc, #40] @ (8003ec4 ) + 8003e9a: 4293 cmp r3, r2 + 8003e9c: d90c bls.n 8003eb8 + 8003e9e: 687b ldr r3, [r7, #4] + 8003ea0: 799b ldrb r3, [r3, #6] + 8003ea2: 2b01 cmp r3, #1 + 8003ea4: d108 bne.n 8003eb8 { (void)USB_EP0_OutStart(hpcd->Instance, 1U, (uint8_t *)hpcd->Setup); - 8003e56: 687b ldr r3, [r7, #4] - 8003e58: 6818 ldr r0, [r3, #0] - 8003e5a: 687b ldr r3, [r7, #4] - 8003e5c: f203 439c addw r3, r3, #1180 @ 0x49c - 8003e60: 461a mov r2, r3 - 8003e62: 2101 movs r1, #1 - 8003e64: f004 fb56 bl 8008514 + 8003ea6: 687b ldr r3, [r7, #4] + 8003ea8: 6818 ldr r0, [r3, #0] + 8003eaa: 687b ldr r3, [r7, #4] + 8003eac: f203 439c addw r3, r3, #1180 @ 0x49c + 8003eb0: 461a mov r2, r3 + 8003eb2: 2101 movs r1, #1 + 8003eb4: f004 fa72 bl 800839c } return HAL_OK; - 8003e68: 2300 movs r3, #0 + 8003eb8: 2300 movs r3, #0 } - 8003e6a: 4618 mov r0, r3 - 8003e6c: 3718 adds r7, #24 - 8003e6e: 46bd mov sp, r7 - 8003e70: bd80 pop {r7, pc} - 8003e72: bf00 nop - 8003e74: 4f54300a .word 0x4f54300a + 8003eba: 4618 mov r0, r3 + 8003ebc: 3718 adds r7, #24 + 8003ebe: 46bd mov sp, r7 + 8003ec0: bd80 pop {r7, pc} + 8003ec2: bf00 nop + 8003ec4: 4f54300a .word 0x4f54300a -08003e78 : +08003ec8 : * @param fifo The number of Tx fifo * @param size Fifo size * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_SetTxFiFo(PCD_HandleTypeDef *hpcd, uint8_t fifo, uint16_t size) { - 8003e78: b480 push {r7} - 8003e7a: b085 sub sp, #20 - 8003e7c: af00 add r7, sp, #0 - 8003e7e: 6078 str r0, [r7, #4] - 8003e80: 460b mov r3, r1 - 8003e82: 70fb strb r3, [r7, #3] - 8003e84: 4613 mov r3, r2 - 8003e86: 803b strh r3, [r7, #0] + 8003ec8: b480 push {r7} + 8003eca: b085 sub sp, #20 + 8003ecc: af00 add r7, sp, #0 + 8003ece: 6078 str r0, [r7, #4] + 8003ed0: 460b mov r3, r1 + 8003ed2: 70fb strb r3, [r7, #3] + 8003ed4: 4613 mov r3, r2 + 8003ed6: 803b strh r3, [r7, #0] --> Txn should be configured with the minimum space of 16 words The FIFO is used optimally when used TxFIFOs are allocated in the top of the FIFO.Ex: use EP1 and EP2 as IN instead of EP1 and EP3 as IN ones. When DMA is used 3n * FIFO locations should be reserved for internal DMA registers */ Tx_Offset = hpcd->Instance->GRXFSIZ; - 8003e88: 687b ldr r3, [r7, #4] - 8003e8a: 681b ldr r3, [r3, #0] - 8003e8c: 6a5b ldr r3, [r3, #36] @ 0x24 - 8003e8e: 60bb str r3, [r7, #8] + 8003ed8: 687b ldr r3, [r7, #4] + 8003eda: 681b ldr r3, [r3, #0] + 8003edc: 6a5b ldr r3, [r3, #36] @ 0x24 + 8003ede: 60bb str r3, [r7, #8] if (fifo == 0U) - 8003e90: 78fb ldrb r3, [r7, #3] - 8003e92: 2b00 cmp r3, #0 - 8003e94: d107 bne.n 8003ea6 + 8003ee0: 78fb ldrb r3, [r7, #3] + 8003ee2: 2b00 cmp r3, #0 + 8003ee4: d107 bne.n 8003ef6 { hpcd->Instance->DIEPTXF0_HNPTXFSIZ = ((uint32_t)size << 16) | Tx_Offset; - 8003e96: 883b ldrh r3, [r7, #0] - 8003e98: 0419 lsls r1, r3, #16 - 8003e9a: 687b ldr r3, [r7, #4] - 8003e9c: 681b ldr r3, [r3, #0] - 8003e9e: 68ba ldr r2, [r7, #8] - 8003ea0: 430a orrs r2, r1 - 8003ea2: 629a str r2, [r3, #40] @ 0x28 - 8003ea4: e028 b.n 8003ef8 + 8003ee6: 883b ldrh r3, [r7, #0] + 8003ee8: 0419 lsls r1, r3, #16 + 8003eea: 687b ldr r3, [r7, #4] + 8003eec: 681b ldr r3, [r3, #0] + 8003eee: 68ba ldr r2, [r7, #8] + 8003ef0: 430a orrs r2, r1 + 8003ef2: 629a str r2, [r3, #40] @ 0x28 + 8003ef4: e028 b.n 8003f48 } else { Tx_Offset += (hpcd->Instance->DIEPTXF0_HNPTXFSIZ) >> 16; - 8003ea6: 687b ldr r3, [r7, #4] - 8003ea8: 681b ldr r3, [r3, #0] - 8003eaa: 6a9b ldr r3, [r3, #40] @ 0x28 - 8003eac: 0c1b lsrs r3, r3, #16 - 8003eae: 68ba ldr r2, [r7, #8] - 8003eb0: 4413 add r3, r2 - 8003eb2: 60bb str r3, [r7, #8] + 8003ef6: 687b ldr r3, [r7, #4] + 8003ef8: 681b ldr r3, [r3, #0] + 8003efa: 6a9b ldr r3, [r3, #40] @ 0x28 + 8003efc: 0c1b lsrs r3, r3, #16 + 8003efe: 68ba ldr r2, [r7, #8] + 8003f00: 4413 add r3, r2 + 8003f02: 60bb str r3, [r7, #8] for (i = 0U; i < (fifo - 1U); i++) - 8003eb4: 2300 movs r3, #0 - 8003eb6: 73fb strb r3, [r7, #15] - 8003eb8: e00d b.n 8003ed6 + 8003f04: 2300 movs r3, #0 + 8003f06: 73fb strb r3, [r7, #15] + 8003f08: e00d b.n 8003f26 { Tx_Offset += (hpcd->Instance->DIEPTXF[i] >> 16); - 8003eba: 687b ldr r3, [r7, #4] - 8003ebc: 681a ldr r2, [r3, #0] - 8003ebe: 7bfb ldrb r3, [r7, #15] - 8003ec0: 3340 adds r3, #64 @ 0x40 - 8003ec2: 009b lsls r3, r3, #2 - 8003ec4: 4413 add r3, r2 - 8003ec6: 685b ldr r3, [r3, #4] - 8003ec8: 0c1b lsrs r3, r3, #16 - 8003eca: 68ba ldr r2, [r7, #8] - 8003ecc: 4413 add r3, r2 - 8003ece: 60bb str r3, [r7, #8] + 8003f0a: 687b ldr r3, [r7, #4] + 8003f0c: 681a ldr r2, [r3, #0] + 8003f0e: 7bfb ldrb r3, [r7, #15] + 8003f10: 3340 adds r3, #64 @ 0x40 + 8003f12: 009b lsls r3, r3, #2 + 8003f14: 4413 add r3, r2 + 8003f16: 685b ldr r3, [r3, #4] + 8003f18: 0c1b lsrs r3, r3, #16 + 8003f1a: 68ba ldr r2, [r7, #8] + 8003f1c: 4413 add r3, r2 + 8003f1e: 60bb str r3, [r7, #8] for (i = 0U; i < (fifo - 1U); i++) - 8003ed0: 7bfb ldrb r3, [r7, #15] - 8003ed2: 3301 adds r3, #1 - 8003ed4: 73fb strb r3, [r7, #15] - 8003ed6: 7bfa ldrb r2, [r7, #15] - 8003ed8: 78fb ldrb r3, [r7, #3] - 8003eda: 3b01 subs r3, #1 - 8003edc: 429a cmp r2, r3 - 8003ede: d3ec bcc.n 8003eba + 8003f20: 7bfb ldrb r3, [r7, #15] + 8003f22: 3301 adds r3, #1 + 8003f24: 73fb strb r3, [r7, #15] + 8003f26: 7bfa ldrb r2, [r7, #15] + 8003f28: 78fb ldrb r3, [r7, #3] + 8003f2a: 3b01 subs r3, #1 + 8003f2c: 429a cmp r2, r3 + 8003f2e: d3ec bcc.n 8003f0a } /* Multiply Tx_Size by 2 to get higher performance */ hpcd->Instance->DIEPTXF[fifo - 1U] = ((uint32_t)size << 16) | Tx_Offset; - 8003ee0: 883b ldrh r3, [r7, #0] - 8003ee2: 0418 lsls r0, r3, #16 - 8003ee4: 687b ldr r3, [r7, #4] - 8003ee6: 6819 ldr r1, [r3, #0] - 8003ee8: 78fb ldrb r3, [r7, #3] - 8003eea: 3b01 subs r3, #1 - 8003eec: 68ba ldr r2, [r7, #8] - 8003eee: 4302 orrs r2, r0 - 8003ef0: 3340 adds r3, #64 @ 0x40 - 8003ef2: 009b lsls r3, r3, #2 - 8003ef4: 440b add r3, r1 - 8003ef6: 605a str r2, [r3, #4] + 8003f30: 883b ldrh r3, [r7, #0] + 8003f32: 0418 lsls r0, r3, #16 + 8003f34: 687b ldr r3, [r7, #4] + 8003f36: 6819 ldr r1, [r3, #0] + 8003f38: 78fb ldrb r3, [r7, #3] + 8003f3a: 3b01 subs r3, #1 + 8003f3c: 68ba ldr r2, [r7, #8] + 8003f3e: 4302 orrs r2, r0 + 8003f40: 3340 adds r3, #64 @ 0x40 + 8003f42: 009b lsls r3, r3, #2 + 8003f44: 440b add r3, r1 + 8003f46: 605a str r2, [r3, #4] } return HAL_OK; - 8003ef8: 2300 movs r3, #0 + 8003f48: 2300 movs r3, #0 } - 8003efa: 4618 mov r0, r3 - 8003efc: 3714 adds r7, #20 - 8003efe: 46bd mov sp, r7 - 8003f00: f85d 7b04 ldr.w r7, [sp], #4 - 8003f04: 4770 bx lr + 8003f4a: 4618 mov r0, r3 + 8003f4c: 3714 adds r7, #20 + 8003f4e: 46bd mov sp, r7 + 8003f50: f85d 7b04 ldr.w r7, [sp], #4 + 8003f54: 4770 bx lr -08003f06 : +08003f56 : * @param hpcd PCD handle * @param size Size of Rx fifo * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_SetRxFiFo(PCD_HandleTypeDef *hpcd, uint16_t size) { - 8003f06: b480 push {r7} - 8003f08: b083 sub sp, #12 - 8003f0a: af00 add r7, sp, #0 - 8003f0c: 6078 str r0, [r7, #4] - 8003f0e: 460b mov r3, r1 - 8003f10: 807b strh r3, [r7, #2] + 8003f56: b480 push {r7} + 8003f58: b083 sub sp, #12 + 8003f5a: af00 add r7, sp, #0 + 8003f5c: 6078 str r0, [r7, #4] + 8003f5e: 460b mov r3, r1 + 8003f60: 807b strh r3, [r7, #2] hpcd->Instance->GRXFSIZ = size; - 8003f12: 687b ldr r3, [r7, #4] - 8003f14: 681b ldr r3, [r3, #0] - 8003f16: 887a ldrh r2, [r7, #2] - 8003f18: 625a str r2, [r3, #36] @ 0x24 + 8003f62: 687b ldr r3, [r7, #4] + 8003f64: 681b ldr r3, [r3, #0] + 8003f66: 887a ldrh r2, [r7, #2] + 8003f68: 625a str r2, [r3, #36] @ 0x24 return HAL_OK; - 8003f1a: 2300 movs r3, #0 + 8003f6a: 2300 movs r3, #0 } - 8003f1c: 4618 mov r0, r3 - 8003f1e: 370c adds r7, #12 - 8003f20: 46bd mov sp, r7 - 8003f22: f85d 7b04 ldr.w r7, [sp], #4 - 8003f26: 4770 bx lr + 8003f6c: 4618 mov r0, r3 + 8003f6e: 370c adds r7, #12 + 8003f70: 46bd mov sp, r7 + 8003f72: f85d 7b04 ldr.w r7, [sp], #4 + 8003f76: 4770 bx lr -08003f28 : +08003f78 : * @brief Activate LPM feature. * @param hpcd PCD handle * @retval HAL status */ HAL_StatusTypeDef HAL_PCDEx_ActivateLPM(PCD_HandleTypeDef *hpcd) { - 8003f28: b480 push {r7} - 8003f2a: b085 sub sp, #20 - 8003f2c: af00 add r7, sp, #0 - 8003f2e: 6078 str r0, [r7, #4] + 8003f78: b480 push {r7} + 8003f7a: b085 sub sp, #20 + 8003f7c: af00 add r7, sp, #0 + 8003f7e: 6078 str r0, [r7, #4] USB_OTG_GlobalTypeDef *USBx = hpcd->Instance; - 8003f30: 687b ldr r3, [r7, #4] - 8003f32: 681b ldr r3, [r3, #0] - 8003f34: 60fb str r3, [r7, #12] + 8003f80: 687b ldr r3, [r7, #4] + 8003f82: 681b ldr r3, [r3, #0] + 8003f84: 60fb str r3, [r7, #12] hpcd->lpm_active = 1U; - 8003f36: 687b ldr r3, [r7, #4] - 8003f38: 2201 movs r2, #1 - 8003f3a: f8c3 24d8 str.w r2, [r3, #1240] @ 0x4d8 + 8003f86: 687b ldr r3, [r7, #4] + 8003f88: 2201 movs r2, #1 + 8003f8a: f8c3 24d8 str.w r2, [r3, #1240] @ 0x4d8 hpcd->LPM_State = LPM_L0; - 8003f3e: 687b ldr r3, [r7, #4] - 8003f40: 2200 movs r2, #0 - 8003f42: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc + 8003f8e: 687b ldr r3, [r7, #4] + 8003f90: 2200 movs r2, #0 + 8003f92: f883 24cc strb.w r2, [r3, #1228] @ 0x4cc USBx->GINTMSK |= USB_OTG_GINTMSK_LPMINTM; - 8003f46: 68fb ldr r3, [r7, #12] - 8003f48: 699b ldr r3, [r3, #24] - 8003f4a: f043 6200 orr.w r2, r3, #134217728 @ 0x8000000 - 8003f4e: 68fb ldr r3, [r7, #12] - 8003f50: 619a str r2, [r3, #24] + 8003f96: 68fb ldr r3, [r7, #12] + 8003f98: 699b ldr r3, [r3, #24] + 8003f9a: f043 6200 orr.w r2, r3, #134217728 @ 0x8000000 + 8003f9e: 68fb ldr r3, [r7, #12] + 8003fa0: 619a str r2, [r3, #24] USBx->GLPMCFG |= (USB_OTG_GLPMCFG_LPMEN | USB_OTG_GLPMCFG_LPMACK | USB_OTG_GLPMCFG_ENBESL); - 8003f52: 68fb ldr r3, [r7, #12] - 8003f54: 6d5b ldr r3, [r3, #84] @ 0x54 - 8003f56: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8003f5a: f043 0303 orr.w r3, r3, #3 - 8003f5e: 68fa ldr r2, [r7, #12] - 8003f60: 6553 str r3, [r2, #84] @ 0x54 + 8003fa2: 68fb ldr r3, [r7, #12] + 8003fa4: 6d5b ldr r3, [r3, #84] @ 0x54 + 8003fa6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8003faa: f043 0303 orr.w r3, r3, #3 + 8003fae: 68fa ldr r2, [r7, #12] + 8003fb0: 6553 str r3, [r2, #84] @ 0x54 return HAL_OK; - 8003f62: 2300 movs r3, #0 + 8003fb2: 2300 movs r3, #0 } - 8003f64: 4618 mov r0, r3 - 8003f66: 3714 adds r7, #20 - 8003f68: 46bd mov sp, r7 - 8003f6a: f85d 7b04 ldr.w r7, [sp], #4 - 8003f6e: 4770 bx lr + 8003fb4: 4618 mov r0, r3 + 8003fb6: 3714 adds r7, #20 + 8003fb8: 46bd mov sp, r7 + 8003fba: f85d 7b04 ldr.w r7, [sp], #4 + 8003fbe: 4770 bx lr -08003f70 : +08003fc0 : * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency * (for more details refer to section above "Initialization/de-initialization functions") * @retval None */ HAL_StatusTypeDef HAL_RCC_ClockConfig(const RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 8003f70: b580 push {r7, lr} - 8003f72: b084 sub sp, #16 - 8003f74: af00 add r7, sp, #0 - 8003f76: 6078 str r0, [r7, #4] - 8003f78: 6039 str r1, [r7, #0] + 8003fc0: b580 push {r7, lr} + 8003fc2: b084 sub sp, #16 + 8003fc4: af00 add r7, sp, #0 + 8003fc6: 6078 str r0, [r7, #4] + 8003fc8: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if (RCC_ClkInitStruct == NULL) - 8003f7a: 687b ldr r3, [r7, #4] - 8003f7c: 2b00 cmp r3, #0 - 8003f7e: d101 bne.n 8003f84 + 8003fca: 687b ldr r3, [r7, #4] + 8003fcc: 2b00 cmp r3, #0 + 8003fce: d101 bne.n 8003fd4 { return HAL_ERROR; - 8003f80: 2301 movs r3, #1 - 8003f82: e0cc b.n 800411e + 8003fd0: 2301 movs r3, #1 + 8003fd2: e0cc b.n 800416e /* To correctly read data from FLASH memory, the number of wait states (LATENCY) must be correctly programmed according to the frequency of the CPU clock (HCLK) and the supply voltage of the device. */ /* Increasing the number of wait states because of higher CPU frequency */ if (FLatency > __HAL_FLASH_GET_LATENCY()) - 8003f84: 4b68 ldr r3, [pc, #416] @ (8004128 ) - 8003f86: 681b ldr r3, [r3, #0] - 8003f88: f003 030f and.w r3, r3, #15 - 8003f8c: 683a ldr r2, [r7, #0] - 8003f8e: 429a cmp r2, r3 - 8003f90: d90c bls.n 8003fac + 8003fd4: 4b68 ldr r3, [pc, #416] @ (8004178 ) + 8003fd6: 681b ldr r3, [r3, #0] + 8003fd8: f003 030f and.w r3, r3, #15 + 8003fdc: 683a ldr r2, [r7, #0] + 8003fde: 429a cmp r2, r3 + 8003fe0: d90c bls.n 8003ffc { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 8003f92: 4b65 ldr r3, [pc, #404] @ (8004128 ) - 8003f94: 683a ldr r2, [r7, #0] - 8003f96: b2d2 uxtb r2, r2 - 8003f98: 701a strb r2, [r3, #0] + 8003fe2: 4b65 ldr r3, [pc, #404] @ (8004178 ) + 8003fe4: 683a ldr r2, [r7, #0] + 8003fe6: b2d2 uxtb r2, r2 + 8003fe8: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 8003f9a: 4b63 ldr r3, [pc, #396] @ (8004128 ) - 8003f9c: 681b ldr r3, [r3, #0] - 8003f9e: f003 030f and.w r3, r3, #15 - 8003fa2: 683a ldr r2, [r7, #0] - 8003fa4: 429a cmp r2, r3 - 8003fa6: d001 beq.n 8003fac + 8003fea: 4b63 ldr r3, [pc, #396] @ (8004178 ) + 8003fec: 681b ldr r3, [r3, #0] + 8003fee: f003 030f and.w r3, r3, #15 + 8003ff2: 683a ldr r2, [r7, #0] + 8003ff4: 429a cmp r2, r3 + 8003ff6: d001 beq.n 8003ffc { return HAL_ERROR; - 8003fa8: 2301 movs r3, #1 - 8003faa: e0b8 b.n 800411e + 8003ff8: 2301 movs r3, #1 + 8003ffa: e0b8 b.n 800416e } } /*-------------------------- HCLK Configuration --------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 8003fac: 687b ldr r3, [r7, #4] - 8003fae: 681b ldr r3, [r3, #0] - 8003fb0: f003 0302 and.w r3, r3, #2 - 8003fb4: 2b00 cmp r3, #0 - 8003fb6: d020 beq.n 8003ffa + 8003ffc: 687b ldr r3, [r7, #4] + 8003ffe: 681b ldr r3, [r3, #0] + 8004000: f003 0302 and.w r3, r3, #2 + 8004004: 2b00 cmp r3, #0 + 8004006: d020 beq.n 800404a { /* 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) - 8003fb8: 687b ldr r3, [r7, #4] - 8003fba: 681b ldr r3, [r3, #0] - 8003fbc: f003 0304 and.w r3, r3, #4 - 8003fc0: 2b00 cmp r3, #0 - 8003fc2: d005 beq.n 8003fd0 + 8004008: 687b ldr r3, [r7, #4] + 800400a: 681b ldr r3, [r3, #0] + 800400c: f003 0304 and.w r3, r3, #4 + 8004010: 2b00 cmp r3, #0 + 8004012: d005 beq.n 8004020 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 8003fc4: 4b59 ldr r3, [pc, #356] @ (800412c ) - 8003fc6: 689b ldr r3, [r3, #8] - 8003fc8: 4a58 ldr r2, [pc, #352] @ (800412c ) - 8003fca: f443 53e0 orr.w r3, r3, #7168 @ 0x1c00 - 8003fce: 6093 str r3, [r2, #8] + 8004014: 4b59 ldr r3, [pc, #356] @ (800417c ) + 8004016: 689b ldr r3, [r3, #8] + 8004018: 4a58 ldr r2, [pc, #352] @ (800417c ) + 800401a: f443 53e0 orr.w r3, r3, #7168 @ 0x1c00 + 800401e: 6093 str r3, [r2, #8] } if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8003fd0: 687b ldr r3, [r7, #4] - 8003fd2: 681b ldr r3, [r3, #0] - 8003fd4: f003 0308 and.w r3, r3, #8 - 8003fd8: 2b00 cmp r3, #0 - 8003fda: d005 beq.n 8003fe8 + 8004020: 687b ldr r3, [r7, #4] + 8004022: 681b ldr r3, [r3, #0] + 8004024: f003 0308 and.w r3, r3, #8 + 8004028: 2b00 cmp r3, #0 + 800402a: d005 beq.n 8004038 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 8003fdc: 4b53 ldr r3, [pc, #332] @ (800412c ) - 8003fde: 689b ldr r3, [r3, #8] - 8003fe0: 4a52 ldr r2, [pc, #328] @ (800412c ) - 8003fe2: f443 4360 orr.w r3, r3, #57344 @ 0xe000 - 8003fe6: 6093 str r3, [r2, #8] + 800402c: 4b53 ldr r3, [pc, #332] @ (800417c ) + 800402e: 689b ldr r3, [r3, #8] + 8004030: 4a52 ldr r2, [pc, #328] @ (800417c ) + 8004032: f443 4360 orr.w r3, r3, #57344 @ 0xe000 + 8004036: 6093 str r3, [r2, #8] } assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 8003fe8: 4b50 ldr r3, [pc, #320] @ (800412c ) - 8003fea: 689b ldr r3, [r3, #8] - 8003fec: f023 02f0 bic.w r2, r3, #240 @ 0xf0 - 8003ff0: 687b ldr r3, [r7, #4] - 8003ff2: 689b ldr r3, [r3, #8] - 8003ff4: 494d ldr r1, [pc, #308] @ (800412c ) - 8003ff6: 4313 orrs r3, r2 - 8003ff8: 608b str r3, [r1, #8] + 8004038: 4b50 ldr r3, [pc, #320] @ (800417c ) + 800403a: 689b ldr r3, [r3, #8] + 800403c: f023 02f0 bic.w r2, r3, #240 @ 0xf0 + 8004040: 687b ldr r3, [r7, #4] + 8004042: 689b ldr r3, [r3, #8] + 8004044: 494d ldr r1, [pc, #308] @ (800417c ) + 8004046: 4313 orrs r3, r2 + 8004048: 608b str r3, [r1, #8] } /*------------------------- SYSCLK Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 8003ffa: 687b ldr r3, [r7, #4] - 8003ffc: 681b ldr r3, [r3, #0] - 8003ffe: f003 0301 and.w r3, r3, #1 - 8004002: 2b00 cmp r3, #0 - 8004004: d044 beq.n 8004090 + 800404a: 687b ldr r3, [r7, #4] + 800404c: 681b ldr r3, [r3, #0] + 800404e: f003 0301 and.w r3, r3, #1 + 8004052: 2b00 cmp r3, #0 + 8004054: d044 beq.n 80040e0 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8004006: 687b ldr r3, [r7, #4] - 8004008: 685b ldr r3, [r3, #4] - 800400a: 2b01 cmp r3, #1 - 800400c: d107 bne.n 800401e + 8004056: 687b ldr r3, [r7, #4] + 8004058: 685b ldr r3, [r3, #4] + 800405a: 2b01 cmp r3, #1 + 800405c: d107 bne.n 800406e { /* Check the HSE ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800400e: 4b47 ldr r3, [pc, #284] @ (800412c ) - 8004010: 681b ldr r3, [r3, #0] - 8004012: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004016: 2b00 cmp r3, #0 - 8004018: d119 bne.n 800404e + 800405e: 4b47 ldr r3, [pc, #284] @ (800417c ) + 8004060: 681b ldr r3, [r3, #0] + 8004062: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8004066: 2b00 cmp r3, #0 + 8004068: d119 bne.n 800409e { return HAL_ERROR; - 800401a: 2301 movs r3, #1 - 800401c: e07f b.n 800411e + 800406a: 2301 movs r3, #1 + 800406c: e07f b.n 800416e } } /* PLL is selected as System Clock Source */ else if ((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 800401e: 687b ldr r3, [r7, #4] - 8004020: 685b ldr r3, [r3, #4] - 8004022: 2b02 cmp r3, #2 - 8004024: d003 beq.n 800402e + 800406e: 687b ldr r3, [r7, #4] + 8004070: 685b ldr r3, [r3, #4] + 8004072: 2b02 cmp r3, #2 + 8004074: d003 beq.n 800407e (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLRCLK)) - 8004026: 687b ldr r3, [r7, #4] - 8004028: 685b ldr r3, [r3, #4] + 8004076: 687b ldr r3, [r7, #4] + 8004078: 685b ldr r3, [r3, #4] else if ((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 800402a: 2b03 cmp r3, #3 - 800402c: d107 bne.n 800403e + 800407a: 2b03 cmp r3, #3 + 800407c: d107 bne.n 800408e { /* Check the PLL ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800402e: 4b3f ldr r3, [pc, #252] @ (800412c ) - 8004030: 681b ldr r3, [r3, #0] - 8004032: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 8004036: 2b00 cmp r3, #0 - 8004038: d109 bne.n 800404e + 800407e: 4b3f ldr r3, [pc, #252] @ (800417c ) + 8004080: 681b ldr r3, [r3, #0] + 8004082: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8004086: 2b00 cmp r3, #0 + 8004088: d109 bne.n 800409e { return HAL_ERROR; - 800403a: 2301 movs r3, #1 - 800403c: e06f b.n 800411e + 800408a: 2301 movs r3, #1 + 800408c: e06f b.n 800416e } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800403e: 4b3b ldr r3, [pc, #236] @ (800412c ) - 8004040: 681b ldr r3, [r3, #0] - 8004042: f003 0302 and.w r3, r3, #2 - 8004046: 2b00 cmp r3, #0 - 8004048: d101 bne.n 800404e + 800408e: 4b3b ldr r3, [pc, #236] @ (800417c ) + 8004090: 681b ldr r3, [r3, #0] + 8004092: f003 0302 and.w r3, r3, #2 + 8004096: 2b00 cmp r3, #0 + 8004098: d101 bne.n 800409e { return HAL_ERROR; - 800404a: 2301 movs r3, #1 - 800404c: e067 b.n 800411e + 800409a: 2301 movs r3, #1 + 800409c: e067 b.n 800416e } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 800404e: 4b37 ldr r3, [pc, #220] @ (800412c ) - 8004050: 689b ldr r3, [r3, #8] - 8004052: f023 0203 bic.w r2, r3, #3 - 8004056: 687b ldr r3, [r7, #4] - 8004058: 685b ldr r3, [r3, #4] - 800405a: 4934 ldr r1, [pc, #208] @ (800412c ) - 800405c: 4313 orrs r3, r2 - 800405e: 608b str r3, [r1, #8] + 800409e: 4b37 ldr r3, [pc, #220] @ (800417c ) + 80040a0: 689b ldr r3, [r3, #8] + 80040a2: f023 0203 bic.w r2, r3, #3 + 80040a6: 687b ldr r3, [r7, #4] + 80040a8: 685b ldr r3, [r3, #4] + 80040aa: 4934 ldr r1, [pc, #208] @ (800417c ) + 80040ac: 4313 orrs r3, r2 + 80040ae: 608b str r3, [r1, #8] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8004060: f7fd fcb2 bl 80019c8 - 8004064: 60f8 str r0, [r7, #12] + 80040b0: f7fd fcb2 bl 8001a18 + 80040b4: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 8004066: e00a b.n 800407e + 80040b6: e00a b.n 80040ce { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 8004068: f7fd fcae bl 80019c8 - 800406c: 4602 mov r2, r0 - 800406e: 68fb ldr r3, [r7, #12] - 8004070: 1ad3 subs r3, r2, r3 - 8004072: f241 3288 movw r2, #5000 @ 0x1388 - 8004076: 4293 cmp r3, r2 - 8004078: d901 bls.n 800407e + 80040b8: f7fd fcae bl 8001a18 + 80040bc: 4602 mov r2, r0 + 80040be: 68fb ldr r3, [r7, #12] + 80040c0: 1ad3 subs r3, r2, r3 + 80040c2: f241 3288 movw r2, #5000 @ 0x1388 + 80040c6: 4293 cmp r3, r2 + 80040c8: d901 bls.n 80040ce { return HAL_TIMEOUT; - 800407a: 2303 movs r3, #3 - 800407c: e04f b.n 800411e + 80040ca: 2303 movs r3, #3 + 80040cc: e04f b.n 800416e while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 800407e: 4b2b ldr r3, [pc, #172] @ (800412c ) - 8004080: 689b ldr r3, [r3, #8] - 8004082: f003 020c and.w r2, r3, #12 - 8004086: 687b ldr r3, [r7, #4] - 8004088: 685b ldr r3, [r3, #4] - 800408a: 009b lsls r3, r3, #2 - 800408c: 429a cmp r2, r3 - 800408e: d1eb bne.n 8004068 + 80040ce: 4b2b ldr r3, [pc, #172] @ (800417c ) + 80040d0: 689b ldr r3, [r3, #8] + 80040d2: f003 020c and.w r2, r3, #12 + 80040d6: 687b ldr r3, [r7, #4] + 80040d8: 685b ldr r3, [r3, #4] + 80040da: 009b lsls r3, r3, #2 + 80040dc: 429a cmp r2, r3 + 80040de: d1eb bne.n 80040b8 } } } /* Decreasing the number of wait states because of lower CPU frequency */ if (FLatency < __HAL_FLASH_GET_LATENCY()) - 8004090: 4b25 ldr r3, [pc, #148] @ (8004128 ) - 8004092: 681b ldr r3, [r3, #0] - 8004094: f003 030f and.w r3, r3, #15 - 8004098: 683a ldr r2, [r7, #0] - 800409a: 429a cmp r2, r3 - 800409c: d20c bcs.n 80040b8 + 80040e0: 4b25 ldr r3, [pc, #148] @ (8004178 ) + 80040e2: 681b ldr r3, [r3, #0] + 80040e4: f003 030f and.w r3, r3, #15 + 80040e8: 683a ldr r2, [r7, #0] + 80040ea: 429a cmp r2, r3 + 80040ec: d20c bcs.n 8004108 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 800409e: 4b22 ldr r3, [pc, #136] @ (8004128 ) - 80040a0: 683a ldr r2, [r7, #0] - 80040a2: b2d2 uxtb r2, r2 - 80040a4: 701a strb r2, [r3, #0] + 80040ee: 4b22 ldr r3, [pc, #136] @ (8004178 ) + 80040f0: 683a ldr r2, [r7, #0] + 80040f2: b2d2 uxtb r2, r2 + 80040f4: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if (__HAL_FLASH_GET_LATENCY() != FLatency) - 80040a6: 4b20 ldr r3, [pc, #128] @ (8004128 ) - 80040a8: 681b ldr r3, [r3, #0] - 80040aa: f003 030f and.w r3, r3, #15 - 80040ae: 683a ldr r2, [r7, #0] - 80040b0: 429a cmp r2, r3 - 80040b2: d001 beq.n 80040b8 + 80040f6: 4b20 ldr r3, [pc, #128] @ (8004178 ) + 80040f8: 681b ldr r3, [r3, #0] + 80040fa: f003 030f and.w r3, r3, #15 + 80040fe: 683a ldr r2, [r7, #0] + 8004100: 429a cmp r2, r3 + 8004102: d001 beq.n 8004108 { return HAL_ERROR; - 80040b4: 2301 movs r3, #1 - 80040b6: e032 b.n 800411e + 8004104: 2301 movs r3, #1 + 8004106: e032 b.n 800416e } } /*-------------------------- PCLK1 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80040b8: 687b ldr r3, [r7, #4] - 80040ba: 681b ldr r3, [r3, #0] - 80040bc: f003 0304 and.w r3, r3, #4 - 80040c0: 2b00 cmp r3, #0 - 80040c2: d008 beq.n 80040d6 + 8004108: 687b ldr r3, [r7, #4] + 800410a: 681b ldr r3, [r3, #0] + 800410c: f003 0304 and.w r3, r3, #4 + 8004110: 2b00 cmp r3, #0 + 8004112: d008 beq.n 8004126 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 80040c4: 4b19 ldr r3, [pc, #100] @ (800412c ) - 80040c6: 689b ldr r3, [r3, #8] - 80040c8: f423 52e0 bic.w r2, r3, #7168 @ 0x1c00 - 80040cc: 687b ldr r3, [r7, #4] - 80040ce: 68db ldr r3, [r3, #12] - 80040d0: 4916 ldr r1, [pc, #88] @ (800412c ) - 80040d2: 4313 orrs r3, r2 - 80040d4: 608b str r3, [r1, #8] + 8004114: 4b19 ldr r3, [pc, #100] @ (800417c ) + 8004116: 689b ldr r3, [r3, #8] + 8004118: f423 52e0 bic.w r2, r3, #7168 @ 0x1c00 + 800411c: 687b ldr r3, [r7, #4] + 800411e: 68db ldr r3, [r3, #12] + 8004120: 4916 ldr r1, [pc, #88] @ (800417c ) + 8004122: 4313 orrs r3, r2 + 8004124: 608b str r3, [r1, #8] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if (((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 80040d6: 687b ldr r3, [r7, #4] - 80040d8: 681b ldr r3, [r3, #0] - 80040da: f003 0308 and.w r3, r3, #8 - 80040de: 2b00 cmp r3, #0 - 80040e0: d009 beq.n 80040f6 + 8004126: 687b ldr r3, [r7, #4] + 8004128: 681b ldr r3, [r3, #0] + 800412a: f003 0308 and.w r3, r3, #8 + 800412e: 2b00 cmp r3, #0 + 8004130: d009 beq.n 8004146 { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3U)); - 80040e2: 4b12 ldr r3, [pc, #72] @ (800412c ) - 80040e4: 689b ldr r3, [r3, #8] - 80040e6: f423 4260 bic.w r2, r3, #57344 @ 0xe000 - 80040ea: 687b ldr r3, [r7, #4] - 80040ec: 691b ldr r3, [r3, #16] - 80040ee: 00db lsls r3, r3, #3 - 80040f0: 490e ldr r1, [pc, #56] @ (800412c ) - 80040f2: 4313 orrs r3, r2 - 80040f4: 608b str r3, [r1, #8] + 8004132: 4b12 ldr r3, [pc, #72] @ (800417c ) + 8004134: 689b ldr r3, [r3, #8] + 8004136: f423 4260 bic.w r2, r3, #57344 @ 0xe000 + 800413a: 687b ldr r3, [r7, #4] + 800413c: 691b ldr r3, [r3, #16] + 800413e: 00db lsls r3, r3, #3 + 8004140: 490e ldr r1, [pc, #56] @ (800417c ) + 8004142: 4313 orrs r3, r2 + 8004144: 608b str r3, [r1, #8] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos]; - 80040f6: f000 fb7f bl 80047f8 - 80040fa: 4602 mov r2, r0 - 80040fc: 4b0b ldr r3, [pc, #44] @ (800412c ) - 80040fe: 689b ldr r3, [r3, #8] - 8004100: 091b lsrs r3, r3, #4 - 8004102: f003 030f and.w r3, r3, #15 - 8004106: 490a ldr r1, [pc, #40] @ (8004130 ) - 8004108: 5ccb ldrb r3, [r1, r3] - 800410a: fa22 f303 lsr.w r3, r2, r3 - 800410e: 4a09 ldr r2, [pc, #36] @ (8004134 ) - 8004110: 6013 str r3, [r2, #0] + 8004146: f000 fb7f bl 8004848 + 800414a: 4602 mov r2, r0 + 800414c: 4b0b ldr r3, [pc, #44] @ (800417c ) + 800414e: 689b ldr r3, [r3, #8] + 8004150: 091b lsrs r3, r3, #4 + 8004152: f003 030f and.w r3, r3, #15 + 8004156: 490a ldr r1, [pc, #40] @ (8004180 ) + 8004158: 5ccb ldrb r3, [r1, r3] + 800415a: fa22 f303 lsr.w r3, r2, r3 + 800415e: 4a09 ldr r2, [pc, #36] @ (8004184 ) + 8004160: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings */ HAL_InitTick(uwTickPrio); - 8004112: 4b09 ldr r3, [pc, #36] @ (8004138 ) - 8004114: 681b ldr r3, [r3, #0] - 8004116: 4618 mov r0, r3 - 8004118: f7fd fc12 bl 8001940 + 8004162: 4b09 ldr r3, [pc, #36] @ (8004188 ) + 8004164: 681b ldr r3, [r3, #0] + 8004166: 4618 mov r0, r3 + 8004168: f7fd fc12 bl 8001990 return HAL_OK; - 800411c: 2300 movs r3, #0 + 800416c: 2300 movs r3, #0 } - 800411e: 4618 mov r0, r3 - 8004120: 3710 adds r7, #16 - 8004122: 46bd mov sp, r7 - 8004124: bd80 pop {r7, pc} - 8004126: bf00 nop - 8004128: 40023c00 .word 0x40023c00 - 800412c: 40023800 .word 0x40023800 - 8004130: 0800ab68 .word 0x0800ab68 - 8004134: 20000090 .word 0x20000090 - 8004138: 20000094 .word 0x20000094 + 800416e: 4618 mov r0, r3 + 8004170: 3710 adds r7, #16 + 8004172: 46bd mov sp, r7 + 8004174: bd80 pop {r7, pc} + 8004176: bf00 nop + 8004178: 40023c00 .word 0x40023c00 + 800417c: 40023800 .word 0x40023800 + 8004180: 0800a9f0 .word 0x0800a9f0 + 8004184: 20000090 .word 0x20000090 + 8004188: 20000094 .word 0x20000094 -0800413c : +0800418c : * @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) { - 800413c: b480 push {r7} - 800413e: af00 add r7, sp, #0 + 800418c: b480 push {r7} + 800418e: af00 add r7, sp, #0 return SystemCoreClock; - 8004140: 4b03 ldr r3, [pc, #12] @ (8004150 ) - 8004142: 681b ldr r3, [r3, #0] + 8004190: 4b03 ldr r3, [pc, #12] @ (80041a0 ) + 8004192: 681b ldr r3, [r3, #0] } - 8004144: 4618 mov r0, r3 - 8004146: 46bd mov sp, r7 - 8004148: f85d 7b04 ldr.w r7, [sp], #4 - 800414c: 4770 bx lr - 800414e: bf00 nop - 8004150: 20000090 .word 0x20000090 + 8004194: 4618 mov r0, r3 + 8004196: 46bd mov sp, r7 + 8004198: f85d 7b04 ldr.w r7, [sp], #4 + 800419c: 4770 bx lr + 800419e: bf00 nop + 80041a0: 20000090 .word 0x20000090 -08004154 : +080041a4 : * @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) { - 8004154: b580 push {r7, lr} - 8004156: af00 add r7, sp, #0 + 80041a4: b580 push {r7, lr} + 80041a6: 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]); - 8004158: f7ff fff0 bl 800413c - 800415c: 4602 mov r2, r0 - 800415e: 4b05 ldr r3, [pc, #20] @ (8004174 ) - 8004160: 689b ldr r3, [r3, #8] - 8004162: 0a9b lsrs r3, r3, #10 - 8004164: f003 0307 and.w r3, r3, #7 - 8004168: 4903 ldr r1, [pc, #12] @ (8004178 ) - 800416a: 5ccb ldrb r3, [r1, r3] - 800416c: fa22 f303 lsr.w r3, r2, r3 + 80041a8: f7ff fff0 bl 800418c + 80041ac: 4602 mov r2, r0 + 80041ae: 4b05 ldr r3, [pc, #20] @ (80041c4 ) + 80041b0: 689b ldr r3, [r3, #8] + 80041b2: 0a9b lsrs r3, r3, #10 + 80041b4: f003 0307 and.w r3, r3, #7 + 80041b8: 4903 ldr r1, [pc, #12] @ (80041c8 ) + 80041ba: 5ccb ldrb r3, [r1, r3] + 80041bc: fa22 f303 lsr.w r3, r2, r3 } - 8004170: 4618 mov r0, r3 - 8004172: bd80 pop {r7, pc} - 8004174: 40023800 .word 0x40023800 - 8004178: 0800ab78 .word 0x0800ab78 + 80041c0: 4618 mov r0, r3 + 80041c2: bd80 pop {r7, pc} + 80041c4: 40023800 .word 0x40023800 + 80041c8: 0800aa00 .word 0x0800aa00 -0800417c : +080041cc : * @note Each time PCLK2 changes, this function must be called to update the * right PCLK2 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK2 frequency */ uint32_t HAL_RCC_GetPCLK2Freq(void) { - 800417c: b580 push {r7, lr} - 800417e: af00 add r7, sp, #0 + 80041cc: b580 push {r7, lr} + 80041ce: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK2 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE2) >> RCC_CFGR_PPRE2_Pos]); - 8004180: f7ff ffdc bl 800413c - 8004184: 4602 mov r2, r0 - 8004186: 4b05 ldr r3, [pc, #20] @ (800419c ) - 8004188: 689b ldr r3, [r3, #8] - 800418a: 0b5b lsrs r3, r3, #13 - 800418c: f003 0307 and.w r3, r3, #7 - 8004190: 4903 ldr r1, [pc, #12] @ (80041a0 ) - 8004192: 5ccb ldrb r3, [r1, r3] - 8004194: fa22 f303 lsr.w r3, r2, r3 + 80041d0: f7ff ffdc bl 800418c + 80041d4: 4602 mov r2, r0 + 80041d6: 4b05 ldr r3, [pc, #20] @ (80041ec ) + 80041d8: 689b ldr r3, [r3, #8] + 80041da: 0b5b lsrs r3, r3, #13 + 80041dc: f003 0307 and.w r3, r3, #7 + 80041e0: 4903 ldr r1, [pc, #12] @ (80041f0 ) + 80041e2: 5ccb ldrb r3, [r1, r3] + 80041e4: fa22 f303 lsr.w r3, r2, r3 } - 8004198: 4618 mov r0, r3 - 800419a: bd80 pop {r7, pc} - 800419c: 40023800 .word 0x40023800 - 80041a0: 0800ab78 .word 0x0800ab78 + 80041e8: 4618 mov r0, r3 + 80041ea: bd80 pop {r7, pc} + 80041ec: 40023800 .word 0x40023800 + 80041f0: 0800aa00 .word 0x0800aa00 -080041a4 : +080041f4 : * the backup registers) and RCC_BDCR register are set to their reset values. * * @retval HAL status */ HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *PeriphClkInit) { - 80041a4: b580 push {r7, lr} - 80041a6: b08c sub sp, #48 @ 0x30 - 80041a8: af00 add r7, sp, #0 - 80041aa: 6078 str r0, [r7, #4] + 80041f4: b580 push {r7, lr} + 80041f6: b08c sub sp, #48 @ 0x30 + 80041f8: af00 add r7, sp, #0 + 80041fa: 6078 str r0, [r7, #4] uint32_t tickstart = 0U; - 80041ac: 2300 movs r3, #0 - 80041ae: 627b str r3, [r7, #36] @ 0x24 + 80041fc: 2300 movs r3, #0 + 80041fe: 627b str r3, [r7, #36] @ 0x24 uint32_t tmpreg1 = 0U; - 80041b0: 2300 movs r3, #0 - 80041b2: 623b str r3, [r7, #32] + 8004200: 2300 movs r3, #0 + 8004202: 623b str r3, [r7, #32] uint32_t plli2sp = 0U; - 80041b4: 2300 movs r3, #0 - 80041b6: 61fb str r3, [r7, #28] + 8004204: 2300 movs r3, #0 + 8004206: 61fb str r3, [r7, #28] uint32_t plli2sq = 0U; - 80041b8: 2300 movs r3, #0 - 80041ba: 61bb str r3, [r7, #24] + 8004208: 2300 movs r3, #0 + 800420a: 61bb str r3, [r7, #24] uint32_t plli2sr = 0U; - 80041bc: 2300 movs r3, #0 - 80041be: 617b str r3, [r7, #20] + 800420c: 2300 movs r3, #0 + 800420e: 617b str r3, [r7, #20] uint32_t pllsaip = 0U; - 80041c0: 2300 movs r3, #0 - 80041c2: 613b str r3, [r7, #16] + 8004210: 2300 movs r3, #0 + 8004212: 613b str r3, [r7, #16] uint32_t pllsaiq = 0U; - 80041c4: 2300 movs r3, #0 - 80041c6: 60fb str r3, [r7, #12] + 8004214: 2300 movs r3, #0 + 8004216: 60fb str r3, [r7, #12] uint32_t plli2sused = 0U; - 80041c8: 2300 movs r3, #0 - 80041ca: 62fb str r3, [r7, #44] @ 0x2c + 8004218: 2300 movs r3, #0 + 800421a: 62fb str r3, [r7, #44] @ 0x2c uint32_t pllsaiused = 0U; - 80041cc: 2300 movs r3, #0 - 80041ce: 62bb str r3, [r7, #40] @ 0x28 + 800421c: 2300 movs r3, #0 + 800421e: 62bb str r3, [r7, #40] @ 0x28 /* Check the peripheral clock selection parameters */ assert_param(IS_RCC_PERIPHCLOCK(PeriphClkInit->PeriphClockSelection)); /*------------------------ I2S APB1 configuration --------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB1) == (RCC_PERIPHCLK_I2S_APB1)) - 80041d0: 687b ldr r3, [r7, #4] - 80041d2: 681b ldr r3, [r3, #0] - 80041d4: f003 0301 and.w r3, r3, #1 - 80041d8: 2b00 cmp r3, #0 - 80041da: d010 beq.n 80041fe + 8004220: 687b ldr r3, [r7, #4] + 8004222: 681b ldr r3, [r3, #0] + 8004224: f003 0301 and.w r3, r3, #1 + 8004228: 2b00 cmp r3, #0 + 800422a: d010 beq.n 800424e { /* Check the parameters */ assert_param(IS_RCC_I2SAPB1CLKSOURCE(PeriphClkInit->I2sApb1ClockSelection)); /* Configure I2S Clock source */ __HAL_RCC_I2S_APB1_CONFIG(PeriphClkInit->I2sApb1ClockSelection); - 80041dc: 4b6f ldr r3, [pc, #444] @ (800439c ) - 80041de: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 80041e2: f023 62c0 bic.w r2, r3, #100663296 @ 0x6000000 - 80041e6: 687b ldr r3, [r7, #4] - 80041e8: 6b9b ldr r3, [r3, #56] @ 0x38 - 80041ea: 496c ldr r1, [pc, #432] @ (800439c ) - 80041ec: 4313 orrs r3, r2 - 80041ee: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 800422c: 4b6f ldr r3, [pc, #444] @ (80043ec ) + 800422e: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 8004232: f023 62c0 bic.w r2, r3, #100663296 @ 0x6000000 + 8004236: 687b ldr r3, [r7, #4] + 8004238: 6b9b ldr r3, [r3, #56] @ 0x38 + 800423a: 496c ldr r1, [pc, #432] @ (80043ec ) + 800423c: 4313 orrs r3, r2 + 800423e: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for I2S */ if (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S) - 80041f2: 687b ldr r3, [r7, #4] - 80041f4: 6b9b ldr r3, [r3, #56] @ 0x38 - 80041f6: 2b00 cmp r3, #0 - 80041f8: d101 bne.n 80041fe + 8004242: 687b ldr r3, [r7, #4] + 8004244: 6b9b ldr r3, [r3, #56] @ 0x38 + 8004246: 2b00 cmp r3, #0 + 8004248: d101 bne.n 800424e { plli2sused = 1U; - 80041fa: 2301 movs r3, #1 - 80041fc: 62fb str r3, [r7, #44] @ 0x2c + 800424a: 2301 movs r3, #1 + 800424c: 62fb str r3, [r7, #44] @ 0x2c } } /*--------------------------------------------------------------------------*/ /*---------------------------- I2S APB2 configuration ----------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == (RCC_PERIPHCLK_I2S_APB2)) - 80041fe: 687b ldr r3, [r7, #4] - 8004200: 681b ldr r3, [r3, #0] - 8004202: f003 0302 and.w r3, r3, #2 - 8004206: 2b00 cmp r3, #0 - 8004208: d010 beq.n 800422c + 800424e: 687b ldr r3, [r7, #4] + 8004250: 681b ldr r3, [r3, #0] + 8004252: f003 0302 and.w r3, r3, #2 + 8004256: 2b00 cmp r3, #0 + 8004258: d010 beq.n 800427c { /* Check the parameters */ assert_param(IS_RCC_I2SAPB2CLKSOURCE(PeriphClkInit->I2sApb2ClockSelection)); /* Configure I2S Clock source */ __HAL_RCC_I2S_APB2_CONFIG(PeriphClkInit->I2sApb2ClockSelection); - 800420a: 4b64 ldr r3, [pc, #400] @ (800439c ) - 800420c: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 8004210: f023 52c0 bic.w r2, r3, #402653184 @ 0x18000000 - 8004214: 687b ldr r3, [r7, #4] - 8004216: 6bdb ldr r3, [r3, #60] @ 0x3c - 8004218: 4960 ldr r1, [pc, #384] @ (800439c ) - 800421a: 4313 orrs r3, r2 - 800421c: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 800425a: 4b64 ldr r3, [pc, #400] @ (80043ec ) + 800425c: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 8004260: f023 52c0 bic.w r2, r3, #402653184 @ 0x18000000 + 8004264: 687b ldr r3, [r7, #4] + 8004266: 6bdb ldr r3, [r3, #60] @ 0x3c + 8004268: 4960 ldr r1, [pc, #384] @ (80043ec ) + 800426a: 4313 orrs r3, r2 + 800426c: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for I2S */ if (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S) - 8004220: 687b ldr r3, [r7, #4] - 8004222: 6bdb ldr r3, [r3, #60] @ 0x3c - 8004224: 2b00 cmp r3, #0 - 8004226: d101 bne.n 800422c + 8004270: 687b ldr r3, [r7, #4] + 8004272: 6bdb ldr r3, [r3, #60] @ 0x3c + 8004274: 2b00 cmp r3, #0 + 8004276: d101 bne.n 800427c { plli2sused = 1U; - 8004228: 2301 movs r3, #1 - 800422a: 62fb str r3, [r7, #44] @ 0x2c + 8004278: 2301 movs r3, #1 + 800427a: 62fb str r3, [r7, #44] @ 0x2c } } /*--------------------------------------------------------------------------*/ /*--------------------------- SAI1 configuration ---------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == (RCC_PERIPHCLK_SAI1)) - 800422c: 687b ldr r3, [r7, #4] - 800422e: 681b ldr r3, [r3, #0] - 8004230: f003 0304 and.w r3, r3, #4 - 8004234: 2b00 cmp r3, #0 - 8004236: d017 beq.n 8004268 + 800427c: 687b ldr r3, [r7, #4] + 800427e: 681b ldr r3, [r3, #0] + 8004280: f003 0304 and.w r3, r3, #4 + 8004284: 2b00 cmp r3, #0 + 8004286: d017 beq.n 80042b8 { /* Check the parameters */ assert_param(IS_RCC_SAI1CLKSOURCE(PeriphClkInit->Sai1ClockSelection)); /* Configure SAI1 Clock source */ __HAL_RCC_SAI1_CONFIG(PeriphClkInit->Sai1ClockSelection); - 8004238: 4b58 ldr r3, [pc, #352] @ (800439c ) - 800423a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 800423e: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 - 8004242: 687b ldr r3, [r7, #4] - 8004244: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004246: 4955 ldr r1, [pc, #340] @ (800439c ) - 8004248: 4313 orrs r3, r2 - 800424a: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 8004288: 4b58 ldr r3, [pc, #352] @ (80043ec ) + 800428a: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 800428e: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 + 8004292: 687b ldr r3, [r7, #4] + 8004294: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004296: 4955 ldr r1, [pc, #340] @ (80043ec ) + 8004298: 4313 orrs r3, r2 + 800429a: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for SAI */ if (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S) - 800424e: 687b ldr r3, [r7, #4] - 8004250: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004252: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 8004256: d101 bne.n 800425c + 800429e: 687b ldr r3, [r7, #4] + 80042a0: 6b1b ldr r3, [r3, #48] @ 0x30 + 80042a2: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 80042a6: d101 bne.n 80042ac { plli2sused = 1U; - 8004258: 2301 movs r3, #1 - 800425a: 62fb str r3, [r7, #44] @ 0x2c + 80042a8: 2301 movs r3, #1 + 80042aa: 62fb str r3, [r7, #44] @ 0x2c } /* Enable the PLLSAI when it's used as clock source for SAI */ if (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI) - 800425c: 687b ldr r3, [r7, #4] - 800425e: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004260: 2b00 cmp r3, #0 - 8004262: d101 bne.n 8004268 + 80042ac: 687b ldr r3, [r7, #4] + 80042ae: 6b1b ldr r3, [r3, #48] @ 0x30 + 80042b0: 2b00 cmp r3, #0 + 80042b2: d101 bne.n 80042b8 { pllsaiused = 1U; - 8004264: 2301 movs r3, #1 - 8004266: 62bb str r3, [r7, #40] @ 0x28 + 80042b4: 2301 movs r3, #1 + 80042b6: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*-------------------------- SAI2 configuration ----------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == (RCC_PERIPHCLK_SAI2)) - 8004268: 687b ldr r3, [r7, #4] - 800426a: 681b ldr r3, [r3, #0] - 800426c: f003 0308 and.w r3, r3, #8 - 8004270: 2b00 cmp r3, #0 - 8004272: d017 beq.n 80042a4 + 80042b8: 687b ldr r3, [r7, #4] + 80042ba: 681b ldr r3, [r3, #0] + 80042bc: f003 0308 and.w r3, r3, #8 + 80042c0: 2b00 cmp r3, #0 + 80042c2: d017 beq.n 80042f4 { /* Check the parameters */ assert_param(IS_RCC_SAI2CLKSOURCE(PeriphClkInit->Sai2ClockSelection)); /* Configure SAI2 Clock source */ __HAL_RCC_SAI2_CONFIG(PeriphClkInit->Sai2ClockSelection); - 8004274: 4b49 ldr r3, [pc, #292] @ (800439c ) - 8004276: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 800427a: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 - 800427e: 687b ldr r3, [r7, #4] - 8004280: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004282: 4946 ldr r1, [pc, #280] @ (800439c ) - 8004284: 4313 orrs r3, r2 - 8004286: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 80042c4: 4b49 ldr r3, [pc, #292] @ (80043ec ) + 80042c6: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 80042ca: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 + 80042ce: 687b ldr r3, [r7, #4] + 80042d0: 6b5b ldr r3, [r3, #52] @ 0x34 + 80042d2: 4946 ldr r1, [pc, #280] @ (80043ec ) + 80042d4: 4313 orrs r3, r2 + 80042d6: f8c1 308c str.w r3, [r1, #140] @ 0x8c /* Enable the PLLI2S when it's used as clock source for SAI */ if (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S) - 800428a: 687b ldr r3, [r7, #4] - 800428c: 6b5b ldr r3, [r3, #52] @ 0x34 - 800428e: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004292: d101 bne.n 8004298 + 80042da: 687b ldr r3, [r7, #4] + 80042dc: 6b5b ldr r3, [r3, #52] @ 0x34 + 80042de: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 80042e2: d101 bne.n 80042e8 { plli2sused = 1U; - 8004294: 2301 movs r3, #1 - 8004296: 62fb str r3, [r7, #44] @ 0x2c + 80042e4: 2301 movs r3, #1 + 80042e6: 62fb str r3, [r7, #44] @ 0x2c } /* Enable the PLLSAI when it's used as clock source for SAI */ if (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI) - 8004298: 687b ldr r3, [r7, #4] - 800429a: 6b5b ldr r3, [r3, #52] @ 0x34 - 800429c: 2b00 cmp r3, #0 - 800429e: d101 bne.n 80042a4 + 80042e8: 687b ldr r3, [r7, #4] + 80042ea: 6b5b ldr r3, [r3, #52] @ 0x34 + 80042ec: 2b00 cmp r3, #0 + 80042ee: d101 bne.n 80042f4 { pllsaiused = 1U; - 80042a0: 2301 movs r3, #1 - 80042a2: 62bb str r3, [r7, #40] @ 0x28 + 80042f0: 2301 movs r3, #1 + 80042f2: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*----------------------------- RTC configuration --------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_RTC) == (RCC_PERIPHCLK_RTC)) - 80042a4: 687b ldr r3, [r7, #4] - 80042a6: 681b ldr r3, [r3, #0] - 80042a8: f003 0320 and.w r3, r3, #32 - 80042ac: 2b00 cmp r3, #0 - 80042ae: f000 808a beq.w 80043c6 + 80042f4: 687b ldr r3, [r7, #4] + 80042f6: 681b ldr r3, [r3, #0] + 80042f8: f003 0320 and.w r3, r3, #32 + 80042fc: 2b00 cmp r3, #0 + 80042fe: f000 808a beq.w 8004416 { /* Check for RTC Parameters used to output RTCCLK */ assert_param(IS_RCC_RTCCLKSOURCE(PeriphClkInit->RTCClockSelection)); /* Enable Power Clock*/ __HAL_RCC_PWR_CLK_ENABLE(); - 80042b2: 2300 movs r3, #0 - 80042b4: 60bb str r3, [r7, #8] - 80042b6: 4b39 ldr r3, [pc, #228] @ (800439c ) - 80042b8: 6c1b ldr r3, [r3, #64] @ 0x40 - 80042ba: 4a38 ldr r2, [pc, #224] @ (800439c ) - 80042bc: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80042c0: 6413 str r3, [r2, #64] @ 0x40 - 80042c2: 4b36 ldr r3, [pc, #216] @ (800439c ) - 80042c4: 6c1b ldr r3, [r3, #64] @ 0x40 - 80042c6: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 80042ca: 60bb str r3, [r7, #8] - 80042cc: 68bb ldr r3, [r7, #8] + 8004302: 2300 movs r3, #0 + 8004304: 60bb str r3, [r7, #8] + 8004306: 4b39 ldr r3, [pc, #228] @ (80043ec ) + 8004308: 6c1b ldr r3, [r3, #64] @ 0x40 + 800430a: 4a38 ldr r2, [pc, #224] @ (80043ec ) + 800430c: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8004310: 6413 str r3, [r2, #64] @ 0x40 + 8004312: 4b36 ldr r3, [pc, #216] @ (80043ec ) + 8004314: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004316: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 800431a: 60bb str r3, [r7, #8] + 800431c: 68bb ldr r3, [r7, #8] /* Enable write access to Backup domain */ PWR->CR |= PWR_CR_DBP; - 80042ce: 4b34 ldr r3, [pc, #208] @ (80043a0 ) - 80042d0: 681b ldr r3, [r3, #0] - 80042d2: 4a33 ldr r2, [pc, #204] @ (80043a0 ) - 80042d4: f443 7380 orr.w r3, r3, #256 @ 0x100 - 80042d8: 6013 str r3, [r2, #0] + 800431e: 4b34 ldr r3, [pc, #208] @ (80043f0 ) + 8004320: 681b ldr r3, [r3, #0] + 8004322: 4a33 ldr r2, [pc, #204] @ (80043f0 ) + 8004324: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8004328: 6013 str r3, [r2, #0] /* Get tick */ tickstart = HAL_GetTick(); - 80042da: f7fd fb75 bl 80019c8 - 80042de: 6278 str r0, [r7, #36] @ 0x24 + 800432a: f7fd fb75 bl 8001a18 + 800432e: 6278 str r0, [r7, #36] @ 0x24 while ((PWR->CR & PWR_CR_DBP) == RESET) - 80042e0: e008 b.n 80042f4 + 8004330: e008 b.n 8004344 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 80042e2: f7fd fb71 bl 80019c8 - 80042e6: 4602 mov r2, r0 - 80042e8: 6a7b ldr r3, [r7, #36] @ 0x24 - 80042ea: 1ad3 subs r3, r2, r3 - 80042ec: 2b02 cmp r3, #2 - 80042ee: d901 bls.n 80042f4 + 8004332: f7fd fb71 bl 8001a18 + 8004336: 4602 mov r2, r0 + 8004338: 6a7b ldr r3, [r7, #36] @ 0x24 + 800433a: 1ad3 subs r3, r2, r3 + 800433c: 2b02 cmp r3, #2 + 800433e: d901 bls.n 8004344 { return HAL_TIMEOUT; - 80042f0: 2303 movs r3, #3 - 80042f2: e278 b.n 80047e6 + 8004340: 2303 movs r3, #3 + 8004342: e278 b.n 8004836 while ((PWR->CR & PWR_CR_DBP) == RESET) - 80042f4: 4b2a ldr r3, [pc, #168] @ (80043a0 ) - 80042f6: 681b ldr r3, [r3, #0] - 80042f8: f403 7380 and.w r3, r3, #256 @ 0x100 - 80042fc: 2b00 cmp r3, #0 - 80042fe: d0f0 beq.n 80042e2 + 8004344: 4b2a ldr r3, [pc, #168] @ (80043f0 ) + 8004346: 681b ldr r3, [r3, #0] + 8004348: f403 7380 and.w r3, r3, #256 @ 0x100 + 800434c: 2b00 cmp r3, #0 + 800434e: d0f0 beq.n 8004332 } } /* Reset the Backup domain only if the RTC Clock source selection is modified from reset value */ tmpreg1 = (RCC->BDCR & RCC_BDCR_RTCSEL); - 8004300: 4b26 ldr r3, [pc, #152] @ (800439c ) - 8004302: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004304: f403 7340 and.w r3, r3, #768 @ 0x300 - 8004308: 623b str r3, [r7, #32] + 8004350: 4b26 ldr r3, [pc, #152] @ (80043ec ) + 8004352: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004354: f403 7340 and.w r3, r3, #768 @ 0x300 + 8004358: 623b str r3, [r7, #32] if ((tmpreg1 != 0x00000000U) && ((tmpreg1) != (PeriphClkInit->RTCClockSelection & RCC_BDCR_RTCSEL))) - 800430a: 6a3b ldr r3, [r7, #32] - 800430c: 2b00 cmp r3, #0 - 800430e: d02f beq.n 8004370 - 8004310: 687b ldr r3, [r7, #4] - 8004312: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004314: f403 7340 and.w r3, r3, #768 @ 0x300 - 8004318: 6a3a ldr r2, [r7, #32] - 800431a: 429a cmp r2, r3 - 800431c: d028 beq.n 8004370 + 800435a: 6a3b ldr r3, [r7, #32] + 800435c: 2b00 cmp r3, #0 + 800435e: d02f beq.n 80043c0 + 8004360: 687b ldr r3, [r7, #4] + 8004362: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004364: f403 7340 and.w r3, r3, #768 @ 0x300 + 8004368: 6a3a ldr r2, [r7, #32] + 800436a: 429a cmp r2, r3 + 800436c: d028 beq.n 80043c0 { /* Store the content of BDCR register before the reset of Backup Domain */ tmpreg1 = (RCC->BDCR & ~(RCC_BDCR_RTCSEL)); - 800431e: 4b1f ldr r3, [pc, #124] @ (800439c ) - 8004320: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004322: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8004326: 623b str r3, [r7, #32] + 800436e: 4b1f ldr r3, [pc, #124] @ (80043ec ) + 8004370: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004372: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8004376: 623b str r3, [r7, #32] /* RTC Clock selection can be changed only if the Backup Domain is reset */ __HAL_RCC_BACKUPRESET_FORCE(); - 8004328: 4b1e ldr r3, [pc, #120] @ (80043a4 ) - 800432a: 2201 movs r2, #1 - 800432c: 601a str r2, [r3, #0] + 8004378: 4b1e ldr r3, [pc, #120] @ (80043f4 ) + 800437a: 2201 movs r2, #1 + 800437c: 601a str r2, [r3, #0] __HAL_RCC_BACKUPRESET_RELEASE(); - 800432e: 4b1d ldr r3, [pc, #116] @ (80043a4 ) - 8004330: 2200 movs r2, #0 - 8004332: 601a str r2, [r3, #0] + 800437e: 4b1d ldr r3, [pc, #116] @ (80043f4 ) + 8004380: 2200 movs r2, #0 + 8004382: 601a str r2, [r3, #0] /* Restore the Content of BDCR register */ RCC->BDCR = tmpreg1; - 8004334: 4a19 ldr r2, [pc, #100] @ (800439c ) - 8004336: 6a3b ldr r3, [r7, #32] - 8004338: 6713 str r3, [r2, #112] @ 0x70 + 8004384: 4a19 ldr r2, [pc, #100] @ (80043ec ) + 8004386: 6a3b ldr r3, [r7, #32] + 8004388: 6713 str r3, [r2, #112] @ 0x70 /* Wait for LSE reactivation if LSE was enable prior to Backup Domain reset */ if (HAL_IS_BIT_SET(RCC->BDCR, RCC_BDCR_LSEON)) - 800433a: 4b18 ldr r3, [pc, #96] @ (800439c ) - 800433c: 6f1b ldr r3, [r3, #112] @ 0x70 - 800433e: f003 0301 and.w r3, r3, #1 - 8004342: 2b01 cmp r3, #1 - 8004344: d114 bne.n 8004370 + 800438a: 4b18 ldr r3, [pc, #96] @ (80043ec ) + 800438c: 6f1b ldr r3, [r3, #112] @ 0x70 + 800438e: f003 0301 and.w r3, r3, #1 + 8004392: 2b01 cmp r3, #1 + 8004394: d114 bne.n 80043c0 { /* Get tick */ tickstart = HAL_GetTick(); - 8004346: f7fd fb3f bl 80019c8 - 800434a: 6278 str r0, [r7, #36] @ 0x24 + 8004396: f7fd fb3f bl 8001a18 + 800439a: 6278 str r0, [r7, #36] @ 0x24 /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 800434c: e00a b.n 8004364 + 800439c: e00a b.n 80043b4 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 800434e: f7fd fb3b bl 80019c8 - 8004352: 4602 mov r2, r0 - 8004354: 6a7b ldr r3, [r7, #36] @ 0x24 - 8004356: 1ad3 subs r3, r2, r3 - 8004358: f241 3288 movw r2, #5000 @ 0x1388 - 800435c: 4293 cmp r3, r2 - 800435e: d901 bls.n 8004364 + 800439e: f7fd fb3b bl 8001a18 + 80043a2: 4602 mov r2, r0 + 80043a4: 6a7b ldr r3, [r7, #36] @ 0x24 + 80043a6: 1ad3 subs r3, r2, r3 + 80043a8: f241 3288 movw r2, #5000 @ 0x1388 + 80043ac: 4293 cmp r3, r2 + 80043ae: d901 bls.n 80043b4 { return HAL_TIMEOUT; - 8004360: 2303 movs r3, #3 - 8004362: e240 b.n 80047e6 + 80043b0: 2303 movs r3, #3 + 80043b2: e240 b.n 8004836 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8004364: 4b0d ldr r3, [pc, #52] @ (800439c ) - 8004366: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004368: f003 0302 and.w r3, r3, #2 - 800436c: 2b00 cmp r3, #0 - 800436e: d0ee beq.n 800434e + 80043b4: 4b0d ldr r3, [pc, #52] @ (80043ec ) + 80043b6: 6f1b ldr r3, [r3, #112] @ 0x70 + 80043b8: f003 0302 and.w r3, r3, #2 + 80043bc: 2b00 cmp r3, #0 + 80043be: d0ee beq.n 800439e } } } } __HAL_RCC_RTC_CONFIG(PeriphClkInit->RTCClockSelection); - 8004370: 687b ldr r3, [r7, #4] - 8004372: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004374: f403 7340 and.w r3, r3, #768 @ 0x300 - 8004378: f5b3 7f40 cmp.w r3, #768 @ 0x300 - 800437c: d114 bne.n 80043a8 - 800437e: 4b07 ldr r3, [pc, #28] @ (800439c ) - 8004380: 689b ldr r3, [r3, #8] - 8004382: f423 12f8 bic.w r2, r3, #2031616 @ 0x1f0000 - 8004386: 687b ldr r3, [r7, #4] - 8004388: 6c1b ldr r3, [r3, #64] @ 0x40 - 800438a: f023 4370 bic.w r3, r3, #4026531840 @ 0xf0000000 - 800438e: f423 7340 bic.w r3, r3, #768 @ 0x300 - 8004392: 4902 ldr r1, [pc, #8] @ (800439c ) - 8004394: 4313 orrs r3, r2 - 8004396: 608b str r3, [r1, #8] - 8004398: e00c b.n 80043b4 - 800439a: bf00 nop - 800439c: 40023800 .word 0x40023800 - 80043a0: 40007000 .word 0x40007000 - 80043a4: 42470e40 .word 0x42470e40 - 80043a8: 4b4a ldr r3, [pc, #296] @ (80044d4 ) - 80043aa: 689b ldr r3, [r3, #8] - 80043ac: 4a49 ldr r2, [pc, #292] @ (80044d4 ) - 80043ae: f423 13f8 bic.w r3, r3, #2031616 @ 0x1f0000 - 80043b2: 6093 str r3, [r2, #8] - 80043b4: 4b47 ldr r3, [pc, #284] @ (80044d4 ) - 80043b6: 6f1a ldr r2, [r3, #112] @ 0x70 - 80043b8: 687b ldr r3, [r7, #4] - 80043ba: 6c1b ldr r3, [r3, #64] @ 0x40 - 80043bc: f3c3 030b ubfx r3, r3, #0, #12 - 80043c0: 4944 ldr r1, [pc, #272] @ (80044d4 ) - 80043c2: 4313 orrs r3, r2 - 80043c4: 670b str r3, [r1, #112] @ 0x70 + 80043c0: 687b ldr r3, [r7, #4] + 80043c2: 6c1b ldr r3, [r3, #64] @ 0x40 + 80043c4: f403 7340 and.w r3, r3, #768 @ 0x300 + 80043c8: f5b3 7f40 cmp.w r3, #768 @ 0x300 + 80043cc: d114 bne.n 80043f8 + 80043ce: 4b07 ldr r3, [pc, #28] @ (80043ec ) + 80043d0: 689b ldr r3, [r3, #8] + 80043d2: f423 12f8 bic.w r2, r3, #2031616 @ 0x1f0000 + 80043d6: 687b ldr r3, [r7, #4] + 80043d8: 6c1b ldr r3, [r3, #64] @ 0x40 + 80043da: f023 4370 bic.w r3, r3, #4026531840 @ 0xf0000000 + 80043de: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80043e2: 4902 ldr r1, [pc, #8] @ (80043ec ) + 80043e4: 4313 orrs r3, r2 + 80043e6: 608b str r3, [r1, #8] + 80043e8: e00c b.n 8004404 + 80043ea: bf00 nop + 80043ec: 40023800 .word 0x40023800 + 80043f0: 40007000 .word 0x40007000 + 80043f4: 42470e40 .word 0x42470e40 + 80043f8: 4b4a ldr r3, [pc, #296] @ (8004524 ) + 80043fa: 689b ldr r3, [r3, #8] + 80043fc: 4a49 ldr r2, [pc, #292] @ (8004524 ) + 80043fe: f423 13f8 bic.w r3, r3, #2031616 @ 0x1f0000 + 8004402: 6093 str r3, [r2, #8] + 8004404: 4b47 ldr r3, [pc, #284] @ (8004524 ) + 8004406: 6f1a ldr r2, [r3, #112] @ 0x70 + 8004408: 687b ldr r3, [r7, #4] + 800440a: 6c1b ldr r3, [r3, #64] @ 0x40 + 800440c: f3c3 030b ubfx r3, r3, #0, #12 + 8004410: 4944 ldr r1, [pc, #272] @ (8004524 ) + 8004412: 4313 orrs r3, r2 + 8004414: 670b str r3, [r1, #112] @ 0x70 } /*--------------------------------------------------------------------------*/ /*---------------------------- TIM configuration ---------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_TIM) == (RCC_PERIPHCLK_TIM)) - 80043c6: 687b ldr r3, [r7, #4] - 80043c8: 681b ldr r3, [r3, #0] - 80043ca: f003 0310 and.w r3, r3, #16 - 80043ce: 2b00 cmp r3, #0 - 80043d0: d004 beq.n 80043dc + 8004416: 687b ldr r3, [r7, #4] + 8004418: 681b ldr r3, [r3, #0] + 800441a: f003 0310 and.w r3, r3, #16 + 800441e: 2b00 cmp r3, #0 + 8004420: d004 beq.n 800442c { /* Configure Timer Prescaler */ __HAL_RCC_TIMCLKPRESCALER(PeriphClkInit->TIMPresSelection); - 80043d2: 687b ldr r3, [r7, #4] - 80043d4: f893 2058 ldrb.w r2, [r3, #88] @ 0x58 - 80043d8: 4b3f ldr r3, [pc, #252] @ (80044d8 ) - 80043da: 601a str r2, [r3, #0] + 8004422: 687b ldr r3, [r7, #4] + 8004424: f893 2058 ldrb.w r2, [r3, #88] @ 0x58 + 8004428: 4b3f ldr r3, [pc, #252] @ (8004528 ) + 800442a: 601a str r2, [r3, #0] } /*--------------------------------------------------------------------------*/ /*---------------------------- FMPI2C1 Configuration -----------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_FMPI2C1) == RCC_PERIPHCLK_FMPI2C1) - 80043dc: 687b ldr r3, [r7, #4] - 80043de: 681b ldr r3, [r3, #0] - 80043e0: f003 0380 and.w r3, r3, #128 @ 0x80 - 80043e4: 2b00 cmp r3, #0 - 80043e6: d00a beq.n 80043fe + 800442c: 687b ldr r3, [r7, #4] + 800442e: 681b ldr r3, [r3, #0] + 8004430: f003 0380 and.w r3, r3, #128 @ 0x80 + 8004434: 2b00 cmp r3, #0 + 8004436: d00a beq.n 800444e { /* Check the parameters */ assert_param(IS_RCC_FMPI2C1CLKSOURCE(PeriphClkInit->Fmpi2c1ClockSelection)); /* Configure the FMPI2C1 clock source */ __HAL_RCC_FMPI2C1_CONFIG(PeriphClkInit->Fmpi2c1ClockSelection); - 80043e8: 4b3a ldr r3, [pc, #232] @ (80044d4 ) - 80043ea: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 80043ee: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 - 80043f2: 687b ldr r3, [r7, #4] - 80043f4: 6cdb ldr r3, [r3, #76] @ 0x4c - 80043f6: 4937 ldr r1, [pc, #220] @ (80044d4 ) - 80043f8: 4313 orrs r3, r2 - 80043fa: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 8004438: 4b3a ldr r3, [pc, #232] @ (8004524 ) + 800443a: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 800443e: f423 0240 bic.w r2, r3, #12582912 @ 0xc00000 + 8004442: 687b ldr r3, [r7, #4] + 8004444: 6cdb ldr r3, [r3, #76] @ 0x4c + 8004446: 4937 ldr r1, [pc, #220] @ (8004524 ) + 8004448: 4313 orrs r3, r2 + 800444a: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*------------------------------ CEC Configuration -------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CEC) == RCC_PERIPHCLK_CEC) - 80043fe: 687b ldr r3, [r7, #4] - 8004400: 681b ldr r3, [r3, #0] - 8004402: f003 0340 and.w r3, r3, #64 @ 0x40 - 8004406: 2b00 cmp r3, #0 - 8004408: d00a beq.n 8004420 + 800444e: 687b ldr r3, [r7, #4] + 8004450: 681b ldr r3, [r3, #0] + 8004452: f003 0340 and.w r3, r3, #64 @ 0x40 + 8004456: 2b00 cmp r3, #0 + 8004458: d00a beq.n 8004470 { /* Check the parameters */ assert_param(IS_RCC_CECCLKSOURCE(PeriphClkInit->CecClockSelection)); /* Configure the CEC clock source */ __HAL_RCC_CEC_CONFIG(PeriphClkInit->CecClockSelection); - 800440a: 4b32 ldr r3, [pc, #200] @ (80044d4 ) - 800440c: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004410: f023 6280 bic.w r2, r3, #67108864 @ 0x4000000 - 8004414: 687b ldr r3, [r7, #4] - 8004416: 6c9b ldr r3, [r3, #72] @ 0x48 - 8004418: 492e ldr r1, [pc, #184] @ (80044d4 ) - 800441a: 4313 orrs r3, r2 - 800441c: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 800445a: 4b32 ldr r3, [pc, #200] @ (8004524 ) + 800445c: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004460: f023 6280 bic.w r2, r3, #67108864 @ 0x4000000 + 8004464: 687b ldr r3, [r7, #4] + 8004466: 6c9b ldr r3, [r3, #72] @ 0x48 + 8004468: 492e ldr r1, [pc, #184] @ (8004524 ) + 800446a: 4313 orrs r3, r2 + 800446c: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*----------------------------- CLK48 Configuration ------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CLK48) == RCC_PERIPHCLK_CLK48) - 8004420: 687b ldr r3, [r7, #4] - 8004422: 681b ldr r3, [r3, #0] - 8004424: f403 7380 and.w r3, r3, #256 @ 0x100 - 8004428: 2b00 cmp r3, #0 - 800442a: d011 beq.n 8004450 + 8004470: 687b ldr r3, [r7, #4] + 8004472: 681b ldr r3, [r3, #0] + 8004474: f403 7380 and.w r3, r3, #256 @ 0x100 + 8004478: 2b00 cmp r3, #0 + 800447a: d011 beq.n 80044a0 { /* Check the parameters */ assert_param(IS_RCC_CLK48CLKSOURCE(PeriphClkInit->Clk48ClockSelection)); /* Configure the CLK48 clock source */ __HAL_RCC_CLK48_CONFIG(PeriphClkInit->Clk48ClockSelection); - 800442c: 4b29 ldr r3, [pc, #164] @ (80044d4 ) - 800442e: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004432: f023 6200 bic.w r2, r3, #134217728 @ 0x8000000 - 8004436: 687b ldr r3, [r7, #4] - 8004438: 6d5b ldr r3, [r3, #84] @ 0x54 - 800443a: 4926 ldr r1, [pc, #152] @ (80044d4 ) - 800443c: 4313 orrs r3, r2 - 800443e: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 800447c: 4b29 ldr r3, [pc, #164] @ (8004524 ) + 800447e: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 8004482: f023 6200 bic.w r2, r3, #134217728 @ 0x8000000 + 8004486: 687b ldr r3, [r7, #4] + 8004488: 6d5b ldr r3, [r3, #84] @ 0x54 + 800448a: 4926 ldr r1, [pc, #152] @ (8004524 ) + 800448c: 4313 orrs r3, r2 + 800448e: f8c1 3094 str.w r3, [r1, #148] @ 0x94 /* Enable the PLLSAI when it's used as clock source for CLK48 */ if (PeriphClkInit->Clk48ClockSelection == RCC_CLK48CLKSOURCE_PLLSAIP) - 8004442: 687b ldr r3, [r7, #4] - 8004444: 6d5b ldr r3, [r3, #84] @ 0x54 - 8004446: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 800444a: d101 bne.n 8004450 + 8004492: 687b ldr r3, [r7, #4] + 8004494: 6d5b ldr r3, [r3, #84] @ 0x54 + 8004496: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 800449a: d101 bne.n 80044a0 { pllsaiused = 1U; - 800444c: 2301 movs r3, #1 - 800444e: 62bb str r3, [r7, #40] @ 0x28 + 800449c: 2301 movs r3, #1 + 800449e: 62bb str r3, [r7, #40] @ 0x28 } } /*--------------------------------------------------------------------------*/ /*----------------------------- SDIO Configuration -------------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SDIO) == RCC_PERIPHCLK_SDIO) - 8004450: 687b ldr r3, [r7, #4] - 8004452: 681b ldr r3, [r3, #0] - 8004454: f403 7300 and.w r3, r3, #512 @ 0x200 - 8004458: 2b00 cmp r3, #0 - 800445a: d00a beq.n 8004472 + 80044a0: 687b ldr r3, [r7, #4] + 80044a2: 681b ldr r3, [r3, #0] + 80044a4: f403 7300 and.w r3, r3, #512 @ 0x200 + 80044a8: 2b00 cmp r3, #0 + 80044aa: d00a beq.n 80044c2 { /* Check the parameters */ assert_param(IS_RCC_SDIOCLKSOURCE(PeriphClkInit->SdioClockSelection)); /* Configure the SDIO clock source */ __HAL_RCC_SDIO_CONFIG(PeriphClkInit->SdioClockSelection); - 800445c: 4b1d ldr r3, [pc, #116] @ (80044d4 ) - 800445e: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004462: f023 5280 bic.w r2, r3, #268435456 @ 0x10000000 - 8004466: 687b ldr r3, [r7, #4] - 8004468: 6c5b ldr r3, [r3, #68] @ 0x44 - 800446a: 491a ldr r1, [pc, #104] @ (80044d4 ) - 800446c: 4313 orrs r3, r2 - 800446e: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 80044ac: 4b1d ldr r3, [pc, #116] @ (8004524 ) + 80044ae: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 80044b2: f023 5280 bic.w r2, r3, #268435456 @ 0x10000000 + 80044b6: 687b ldr r3, [r7, #4] + 80044b8: 6c5b ldr r3, [r3, #68] @ 0x44 + 80044ba: 491a ldr r1, [pc, #104] @ (8004524 ) + 80044bc: 4313 orrs r3, r2 + 80044be: f8c1 3094 str.w r3, [r1, #148] @ 0x94 } /*--------------------------------------------------------------------------*/ /*------------------------------ SPDIFRX Configuration ---------------------*/ if (((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SPDIFRX) == RCC_PERIPHCLK_SPDIFRX) - 8004472: 687b ldr r3, [r7, #4] - 8004474: 681b ldr r3, [r3, #0] - 8004476: f403 6380 and.w r3, r3, #1024 @ 0x400 - 800447a: 2b00 cmp r3, #0 - 800447c: d011 beq.n 80044a2 + 80044c2: 687b ldr r3, [r7, #4] + 80044c4: 681b ldr r3, [r3, #0] + 80044c6: f403 6380 and.w r3, r3, #1024 @ 0x400 + 80044ca: 2b00 cmp r3, #0 + 80044cc: d011 beq.n 80044f2 { /* Check the parameters */ assert_param(IS_RCC_SPDIFRXCLKSOURCE(PeriphClkInit->SpdifClockSelection)); /* Configure the SPDIFRX clock source */ __HAL_RCC_SPDIFRX_CONFIG(PeriphClkInit->SpdifClockSelection); - 800447e: 4b15 ldr r3, [pc, #84] @ (80044d4 ) - 8004480: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 - 8004484: f023 5200 bic.w r2, r3, #536870912 @ 0x20000000 - 8004488: 687b ldr r3, [r7, #4] - 800448a: 6d1b ldr r3, [r3, #80] @ 0x50 - 800448c: 4911 ldr r1, [pc, #68] @ (80044d4 ) - 800448e: 4313 orrs r3, r2 - 8004490: f8c1 3094 str.w r3, [r1, #148] @ 0x94 + 80044ce: 4b15 ldr r3, [pc, #84] @ (8004524 ) + 80044d0: f8d3 3094 ldr.w r3, [r3, #148] @ 0x94 + 80044d4: f023 5200 bic.w r2, r3, #536870912 @ 0x20000000 + 80044d8: 687b ldr r3, [r7, #4] + 80044da: 6d1b ldr r3, [r3, #80] @ 0x50 + 80044dc: 4911 ldr r1, [pc, #68] @ (8004524 ) + 80044de: 4313 orrs r3, r2 + 80044e0: f8c1 3094 str.w r3, [r1, #148] @ 0x94 /* Enable the PLLI2S when it's used as clock source for SPDIFRX */ if (PeriphClkInit->SpdifClockSelection == RCC_SPDIFRXCLKSOURCE_PLLI2SP) - 8004494: 687b ldr r3, [r7, #4] - 8004496: 6d1b ldr r3, [r3, #80] @ 0x50 - 8004498: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 800449c: d101 bne.n 80044a2 + 80044e4: 687b ldr r3, [r7, #4] + 80044e6: 6d1b ldr r3, [r3, #80] @ 0x50 + 80044e8: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 80044ec: d101 bne.n 80044f2 { plli2sused = 1U; - 800449e: 2301 movs r3, #1 - 80044a0: 62fb str r3, [r7, #44] @ 0x2c + 80044ee: 2301 movs r3, #1 + 80044f0: 62fb str r3, [r7, #44] @ 0x2c /*--------------------------------------------------------------------------*/ /*---------------------------- PLLI2S Configuration ------------------------*/ /* PLLI2S is configured when a peripheral will use it as source clock : SAI1, SAI2, I2S on APB1, I2S on APB2 or SPDIFRX */ if ((plli2sused == 1U) || (PeriphClkInit->PeriphClockSelection == RCC_PERIPHCLK_PLLI2S)) - 80044a2: 6afb ldr r3, [r7, #44] @ 0x2c - 80044a4: 2b01 cmp r3, #1 - 80044a6: d005 beq.n 80044b4 - 80044a8: 687b ldr r3, [r7, #4] - 80044aa: 681b ldr r3, [r3, #0] - 80044ac: f5b3 6f00 cmp.w r3, #2048 @ 0x800 - 80044b0: f040 80ff bne.w 80046b2 + 80044f2: 6afb ldr r3, [r7, #44] @ 0x2c + 80044f4: 2b01 cmp r3, #1 + 80044f6: d005 beq.n 8004504 + 80044f8: 687b ldr r3, [r7, #4] + 80044fa: 681b ldr r3, [r3, #0] + 80044fc: f5b3 6f00 cmp.w r3, #2048 @ 0x800 + 8004500: f040 80ff bne.w 8004702 { /* Disable the PLLI2S */ __HAL_RCC_PLLI2S_DISABLE(); - 80044b4: 4b09 ldr r3, [pc, #36] @ (80044dc ) - 80044b6: 2200 movs r2, #0 - 80044b8: 601a str r2, [r3, #0] + 8004504: 4b09 ldr r3, [pc, #36] @ (800452c ) + 8004506: 2200 movs r2, #0 + 8004508: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 80044ba: f7fd fa85 bl 80019c8 - 80044be: 6278 str r0, [r7, #36] @ 0x24 + 800450a: f7fd fa85 bl 8001a18 + 800450e: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLI2S is disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) != RESET) - 80044c0: e00e b.n 80044e0 + 8004510: e00e b.n 8004530 { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 80044c2: f7fd fa81 bl 80019c8 - 80044c6: 4602 mov r2, r0 - 80044c8: 6a7b ldr r3, [r7, #36] @ 0x24 - 80044ca: 1ad3 subs r3, r2, r3 - 80044cc: 2b02 cmp r3, #2 - 80044ce: d907 bls.n 80044e0 + 8004512: f7fd fa81 bl 8001a18 + 8004516: 4602 mov r2, r0 + 8004518: 6a7b ldr r3, [r7, #36] @ 0x24 + 800451a: 1ad3 subs r3, r2, r3 + 800451c: 2b02 cmp r3, #2 + 800451e: d907 bls.n 8004530 { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 80044d0: 2303 movs r3, #3 - 80044d2: e188 b.n 80047e6 - 80044d4: 40023800 .word 0x40023800 - 80044d8: 424711e0 .word 0x424711e0 - 80044dc: 42470068 .word 0x42470068 + 8004520: 2303 movs r3, #3 + 8004522: e188 b.n 8004836 + 8004524: 40023800 .word 0x40023800 + 8004528: 424711e0 .word 0x424711e0 + 800452c: 42470068 .word 0x42470068 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) != RESET) - 80044e0: 4b7e ldr r3, [pc, #504] @ (80046dc ) - 80044e2: 681b ldr r3, [r3, #0] - 80044e4: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 80044e8: 2b00 cmp r3, #0 - 80044ea: d1ea bne.n 80044c2 + 8004530: 4b7e ldr r3, [pc, #504] @ (800472c ) + 8004532: 681b ldr r3, [r3, #0] + 8004534: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 8004538: 2b00 cmp r3, #0 + 800453a: d1ea bne.n 8004512 /* check for common PLLI2S Parameters */ assert_param(IS_RCC_PLLI2SM_VALUE(PeriphClkInit->PLLI2S.PLLI2SM)); assert_param(IS_RCC_PLLI2SN_VALUE(PeriphClkInit->PLLI2S.PLLI2SN)); /*------ In Case of PLLI2S is selected as source clock for I2S -----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB1) == RCC_PERIPHCLK_I2S_APB1) - 80044ec: 687b ldr r3, [r7, #4] - 80044ee: 681b ldr r3, [r3, #0] - 80044f0: f003 0301 and.w r3, r3, #1 - 80044f4: 2b00 cmp r3, #0 - 80044f6: d003 beq.n 8004500 + 800453c: 687b ldr r3, [r7, #4] + 800453e: 681b ldr r3, [r3, #0] + 8004540: f003 0301 and.w r3, r3, #1 + 8004544: 2b00 cmp r3, #0 + 8004546: d003 beq.n 8004550 && (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S)) || - 80044f8: 687b ldr r3, [r7, #4] - 80044fa: 6b9b ldr r3, [r3, #56] @ 0x38 - 80044fc: 2b00 cmp r3, #0 - 80044fe: d009 beq.n 8004514 + 8004548: 687b ldr r3, [r7, #4] + 800454a: 6b9b ldr r3, [r3, #56] @ 0x38 + 800454c: 2b00 cmp r3, #0 + 800454e: d009 beq.n 8004564 ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == RCC_PERIPHCLK_I2S_APB2) && (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S))) - 8004500: 687b ldr r3, [r7, #4] - 8004502: 681b ldr r3, [r3, #0] - 8004504: f003 0302 and.w r3, r3, #2 + 8004550: 687b ldr r3, [r7, #4] + 8004552: 681b ldr r3, [r3, #0] + 8004554: f003 0302 and.w r3, r3, #2 && (PeriphClkInit->I2sApb1ClockSelection == RCC_I2SAPB1CLKSOURCE_PLLI2S)) || - 8004508: 2b00 cmp r3, #0 - 800450a: d028 beq.n 800455e + 8004558: 2b00 cmp r3, #0 + 800455a: d028 beq.n 80045ae ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_I2S_APB2) == RCC_PERIPHCLK_I2S_APB2) && (PeriphClkInit->I2sApb2ClockSelection == RCC_I2SAPB2CLKSOURCE_PLLI2S))) - 800450c: 687b ldr r3, [r7, #4] - 800450e: 6bdb ldr r3, [r3, #60] @ 0x3c - 8004510: 2b00 cmp r3, #0 - 8004512: d124 bne.n 800455e + 800455c: 687b ldr r3, [r7, #4] + 800455e: 6bdb ldr r3, [r3, #60] @ 0x3c + 8004560: 2b00 cmp r3, #0 + 8004562: d124 bne.n 80045ae { /* check for Parameters */ assert_param(IS_RCC_PLLI2SR_VALUE(PeriphClkInit->PLLI2S.PLLI2SR)); /* Read PLLI2SP/PLLI2SQ value from PLLI2SCFGR register (this value is not needed for I2S configuration) */ plli2sp = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 8004514: 4b71 ldr r3, [pc, #452] @ (80046dc ) - 8004516: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 800451a: 0c1b lsrs r3, r3, #16 - 800451c: f003 0303 and.w r3, r3, #3 - 8004520: 3301 adds r3, #1 - 8004522: 005b lsls r3, r3, #1 - 8004524: 61fb str r3, [r7, #28] + 8004564: 4b71 ldr r3, [pc, #452] @ (800472c ) + 8004566: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 800456a: 0c1b lsrs r3, r3, #16 + 800456c: f003 0303 and.w r3, r3, #3 + 8004570: 3301 adds r3, #1 + 8004572: 005b lsls r3, r3, #1 + 8004574: 61fb str r3, [r7, #28] plli2sq = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SQ) >> RCC_PLLI2SCFGR_PLLI2SQ_Pos); - 8004526: 4b6d ldr r3, [pc, #436] @ (80046dc ) - 8004528: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 800452c: 0e1b lsrs r3, r3, #24 - 800452e: f003 030f and.w r3, r3, #15 - 8004532: 61bb str r3, [r7, #24] + 8004576: 4b6d ldr r3, [pc, #436] @ (800472c ) + 8004578: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 800457c: 0e1b lsrs r3, r3, #24 + 800457e: f003 030f and.w r3, r3, #15 + 8004582: 61bb str r3, [r7, #24] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ /* I2SCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SR */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, plli2sp, plli2sq, - 8004534: 687b ldr r3, [r7, #4] - 8004536: 685a ldr r2, [r3, #4] - 8004538: 687b ldr r3, [r7, #4] - 800453a: 689b ldr r3, [r3, #8] - 800453c: 019b lsls r3, r3, #6 - 800453e: 431a orrs r2, r3 - 8004540: 69fb ldr r3, [r7, #28] - 8004542: 085b lsrs r3, r3, #1 - 8004544: 3b01 subs r3, #1 - 8004546: 041b lsls r3, r3, #16 - 8004548: 431a orrs r2, r3 - 800454a: 69bb ldr r3, [r7, #24] - 800454c: 061b lsls r3, r3, #24 - 800454e: 431a orrs r2, r3 - 8004550: 687b ldr r3, [r7, #4] - 8004552: 695b ldr r3, [r3, #20] - 8004554: 071b lsls r3, r3, #28 - 8004556: 4961 ldr r1, [pc, #388] @ (80046dc ) - 8004558: 4313 orrs r3, r2 - 800455a: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 8004584: 687b ldr r3, [r7, #4] + 8004586: 685a ldr r2, [r3, #4] + 8004588: 687b ldr r3, [r7, #4] + 800458a: 689b ldr r3, [r3, #8] + 800458c: 019b lsls r3, r3, #6 + 800458e: 431a orrs r2, r3 + 8004590: 69fb ldr r3, [r7, #28] + 8004592: 085b lsrs r3, r3, #1 + 8004594: 3b01 subs r3, #1 + 8004596: 041b lsls r3, r3, #16 + 8004598: 431a orrs r2, r3 + 800459a: 69bb ldr r3, [r7, #24] + 800459c: 061b lsls r3, r3, #24 + 800459e: 431a orrs r2, r3 + 80045a0: 687b ldr r3, [r7, #4] + 80045a2: 695b ldr r3, [r3, #20] + 80045a4: 071b lsls r3, r3, #28 + 80045a6: 4961 ldr r1, [pc, #388] @ (800472c ) + 80045a8: 4313 orrs r3, r2 + 80045aa: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SR); } /*------- In Case of PLLI2S is selected as source clock for SAI ----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) - 800455e: 687b ldr r3, [r7, #4] - 8004560: 681b ldr r3, [r3, #0] - 8004562: f003 0304 and.w r3, r3, #4 - 8004566: 2b00 cmp r3, #0 - 8004568: d004 beq.n 8004574 + 80045ae: 687b ldr r3, [r7, #4] + 80045b0: 681b ldr r3, [r3, #0] + 80045b2: f003 0304 and.w r3, r3, #4 + 80045b6: 2b00 cmp r3, #0 + 80045b8: d004 beq.n 80045c4 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S)) || - 800456a: 687b ldr r3, [r7, #4] - 800456c: 6b1b ldr r3, [r3, #48] @ 0x30 - 800456e: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 - 8004572: d00a beq.n 800458a + 80045ba: 687b ldr r3, [r7, #4] + 80045bc: 6b1b ldr r3, [r3, #48] @ 0x30 + 80045be: f5b3 1f80 cmp.w r3, #1048576 @ 0x100000 + 80045c2: d00a beq.n 80045da ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S))) - 8004574: 687b ldr r3, [r7, #4] - 8004576: 681b ldr r3, [r3, #0] - 8004578: f003 0308 and.w r3, r3, #8 + 80045c4: 687b ldr r3, [r7, #4] + 80045c6: 681b ldr r3, [r3, #0] + 80045c8: f003 0308 and.w r3, r3, #8 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLI2S)) || - 800457c: 2b00 cmp r3, #0 - 800457e: d035 beq.n 80045ec + 80045cc: 2b00 cmp r3, #0 + 80045ce: d035 beq.n 800463c ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLI2S))) - 8004580: 687b ldr r3, [r7, #4] - 8004582: 6b5b ldr r3, [r3, #52] @ 0x34 - 8004584: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004588: d130 bne.n 80045ec + 80045d0: 687b ldr r3, [r7, #4] + 80045d2: 6b5b ldr r3, [r3, #52] @ 0x34 + 80045d4: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 80045d8: d130 bne.n 800463c assert_param(IS_RCC_PLLI2SQ_VALUE(PeriphClkInit->PLLI2S.PLLI2SQ)); /* Check for PLLI2S/DIVQ parameters */ assert_param(IS_RCC_PLLI2S_DIVQ_VALUE(PeriphClkInit->PLLI2SDivQ)); /* Read PLLI2SP/PLLI2SR value from PLLI2SCFGR register (this value is not needed for SAI configuration) */ plli2sp = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 800458a: 4b54 ldr r3, [pc, #336] @ (80046dc ) - 800458c: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8004590: 0c1b lsrs r3, r3, #16 - 8004592: f003 0303 and.w r3, r3, #3 - 8004596: 3301 adds r3, #1 - 8004598: 005b lsls r3, r3, #1 - 800459a: 61fb str r3, [r7, #28] + 80045da: 4b54 ldr r3, [pc, #336] @ (800472c ) + 80045dc: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 80045e0: 0c1b lsrs r3, r3, #16 + 80045e2: f003 0303 and.w r3, r3, #3 + 80045e6: 3301 adds r3, #1 + 80045e8: 005b lsls r3, r3, #1 + 80045ea: 61fb str r3, [r7, #28] plli2sr = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SR) >> RCC_PLLI2SCFGR_PLLI2SR_Pos); - 800459c: 4b4f ldr r3, [pc, #316] @ (80046dc ) - 800459e: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 80045a2: 0f1b lsrs r3, r3, #28 - 80045a4: f003 0307 and.w r3, r3, #7 - 80045a8: 617b str r3, [r7, #20] + 80045ec: 4b4f ldr r3, [pc, #316] @ (800472c ) + 80045ee: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 80045f2: 0f1b lsrs r3, r3, #28 + 80045f4: f003 0307 and.w r3, r3, #7 + 80045f8: 617b str r3, [r7, #20] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO Input = PLL_SOURCE/PLLI2SM */ /* PLLI2S_VCO Output = PLLI2S_VCO Input * PLLI2SN */ /* SAI_CLK(first level) = PLLI2S_VCO Output/PLLI2SQ */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, plli2sp, - 80045aa: 687b ldr r3, [r7, #4] - 80045ac: 685a ldr r2, [r3, #4] - 80045ae: 687b ldr r3, [r7, #4] - 80045b0: 689b ldr r3, [r3, #8] - 80045b2: 019b lsls r3, r3, #6 - 80045b4: 431a orrs r2, r3 - 80045b6: 69fb ldr r3, [r7, #28] - 80045b8: 085b lsrs r3, r3, #1 - 80045ba: 3b01 subs r3, #1 - 80045bc: 041b lsls r3, r3, #16 - 80045be: 431a orrs r2, r3 - 80045c0: 687b ldr r3, [r7, #4] - 80045c2: 691b ldr r3, [r3, #16] - 80045c4: 061b lsls r3, r3, #24 - 80045c6: 431a orrs r2, r3 - 80045c8: 697b ldr r3, [r7, #20] - 80045ca: 071b lsls r3, r3, #28 - 80045cc: 4943 ldr r1, [pc, #268] @ (80046dc ) - 80045ce: 4313 orrs r3, r2 - 80045d0: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 80045fa: 687b ldr r3, [r7, #4] + 80045fc: 685a ldr r2, [r3, #4] + 80045fe: 687b ldr r3, [r7, #4] + 8004600: 689b ldr r3, [r3, #8] + 8004602: 019b lsls r3, r3, #6 + 8004604: 431a orrs r2, r3 + 8004606: 69fb ldr r3, [r7, #28] + 8004608: 085b lsrs r3, r3, #1 + 800460a: 3b01 subs r3, #1 + 800460c: 041b lsls r3, r3, #16 + 800460e: 431a orrs r2, r3 + 8004610: 687b ldr r3, [r7, #4] + 8004612: 691b ldr r3, [r3, #16] + 8004614: 061b lsls r3, r3, #24 + 8004616: 431a orrs r2, r3 + 8004618: 697b ldr r3, [r7, #20] + 800461a: 071b lsls r3, r3, #28 + 800461c: 4943 ldr r1, [pc, #268] @ (800472c ) + 800461e: 4313 orrs r3, r2 + 8004620: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SQ, plli2sr); /* SAI_CLK_x = SAI_CLK(first level)/PLLI2SDIVQ */ __HAL_RCC_PLLI2S_PLLSAICLKDIVQ_CONFIG(PeriphClkInit->PLLI2SDivQ); - 80045d4: 4b41 ldr r3, [pc, #260] @ (80046dc ) - 80045d6: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 80045da: f023 021f bic.w r2, r3, #31 - 80045de: 687b ldr r3, [r7, #4] - 80045e0: 6a9b ldr r3, [r3, #40] @ 0x28 - 80045e2: 3b01 subs r3, #1 - 80045e4: 493d ldr r1, [pc, #244] @ (80046dc ) - 80045e6: 4313 orrs r3, r2 - 80045e8: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 8004624: 4b41 ldr r3, [pc, #260] @ (800472c ) + 8004626: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 800462a: f023 021f bic.w r2, r3, #31 + 800462e: 687b ldr r3, [r7, #4] + 8004630: 6a9b ldr r3, [r3, #40] @ 0x28 + 8004632: 3b01 subs r3, #1 + 8004634: 493d ldr r1, [pc, #244] @ (800472c ) + 8004636: 4313 orrs r3, r2 + 8004638: f8c1 308c str.w r3, [r1, #140] @ 0x8c } /*------ In Case of PLLI2S is selected as source clock for SPDIFRX -------*/ if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SPDIFRX) == RCC_PERIPHCLK_SPDIFRX) - 80045ec: 687b ldr r3, [r7, #4] - 80045ee: 681b ldr r3, [r3, #0] - 80045f0: f403 6380 and.w r3, r3, #1024 @ 0x400 - 80045f4: 2b00 cmp r3, #0 - 80045f6: d029 beq.n 800464c + 800463c: 687b ldr r3, [r7, #4] + 800463e: 681b ldr r3, [r3, #0] + 8004640: f403 6380 and.w r3, r3, #1024 @ 0x400 + 8004644: 2b00 cmp r3, #0 + 8004646: d029 beq.n 800469c && (PeriphClkInit->SpdifClockSelection == RCC_SPDIFRXCLKSOURCE_PLLI2SP)) - 80045f8: 687b ldr r3, [r7, #4] - 80045fa: 6d1b ldr r3, [r3, #80] @ 0x50 - 80045fc: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 8004600: d124 bne.n 800464c + 8004648: 687b ldr r3, [r7, #4] + 800464a: 6d1b ldr r3, [r3, #80] @ 0x50 + 800464c: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004650: d124 bne.n 800469c { /* check for Parameters */ assert_param(IS_RCC_PLLI2SP_VALUE(PeriphClkInit->PLLI2S.PLLI2SP)); /* Read PLLI2SR value from PLLI2SCFGR register (this value is not need for SAI configuration) */ plli2sq = ((((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SP) >> RCC_PLLI2SCFGR_PLLI2SP_Pos) + 1U) << 1U); - 8004602: 4b36 ldr r3, [pc, #216] @ (80046dc ) - 8004604: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 8004608: 0c1b lsrs r3, r3, #16 - 800460a: f003 0303 and.w r3, r3, #3 - 800460e: 3301 adds r3, #1 - 8004610: 005b lsls r3, r3, #1 - 8004612: 61bb str r3, [r7, #24] + 8004652: 4b36 ldr r3, [pc, #216] @ (800472c ) + 8004654: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 8004658: 0c1b lsrs r3, r3, #16 + 800465a: f003 0303 and.w r3, r3, #3 + 800465e: 3301 adds r3, #1 + 8004660: 005b lsls r3, r3, #1 + 8004662: 61bb str r3, [r7, #24] plli2sr = ((RCC->PLLI2SCFGR & RCC_PLLI2SCFGR_PLLI2SR) >> RCC_PLLI2SCFGR_PLLI2SR_Pos); - 8004614: 4b31 ldr r3, [pc, #196] @ (80046dc ) - 8004616: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 - 800461a: 0f1b lsrs r3, r3, #28 - 800461c: f003 0307 and.w r3, r3, #7 - 8004620: 617b str r3, [r7, #20] + 8004664: 4b31 ldr r3, [pc, #196] @ (800472c ) + 8004666: f8d3 3084 ldr.w r3, [r3, #132] @ 0x84 + 800466a: 0f1b lsrs r3, r3, #28 + 800466c: f003 0307 and.w r3, r3, #7 + 8004670: 617b str r3, [r7, #20] /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ /* SPDIFRXCLK = f(PLLI2S clock output) = f(VCO clock) / PLLI2SP */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, PeriphClkInit->PLLI2S.PLLI2SP, - 8004622: 687b ldr r3, [r7, #4] - 8004624: 685a ldr r2, [r3, #4] - 8004626: 687b ldr r3, [r7, #4] - 8004628: 689b ldr r3, [r3, #8] - 800462a: 019b lsls r3, r3, #6 - 800462c: 431a orrs r2, r3 - 800462e: 687b ldr r3, [r7, #4] - 8004630: 68db ldr r3, [r3, #12] - 8004632: 085b lsrs r3, r3, #1 - 8004634: 3b01 subs r3, #1 - 8004636: 041b lsls r3, r3, #16 - 8004638: 431a orrs r2, r3 - 800463a: 69bb ldr r3, [r7, #24] - 800463c: 061b lsls r3, r3, #24 - 800463e: 431a orrs r2, r3 - 8004640: 697b ldr r3, [r7, #20] - 8004642: 071b lsls r3, r3, #28 - 8004644: 4925 ldr r1, [pc, #148] @ (80046dc ) - 8004646: 4313 orrs r3, r2 - 8004648: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 8004672: 687b ldr r3, [r7, #4] + 8004674: 685a ldr r2, [r3, #4] + 8004676: 687b ldr r3, [r7, #4] + 8004678: 689b ldr r3, [r3, #8] + 800467a: 019b lsls r3, r3, #6 + 800467c: 431a orrs r2, r3 + 800467e: 687b ldr r3, [r7, #4] + 8004680: 68db ldr r3, [r3, #12] + 8004682: 085b lsrs r3, r3, #1 + 8004684: 3b01 subs r3, #1 + 8004686: 041b lsls r3, r3, #16 + 8004688: 431a orrs r2, r3 + 800468a: 69bb ldr r3, [r7, #24] + 800468c: 061b lsls r3, r3, #24 + 800468e: 431a orrs r2, r3 + 8004690: 697b ldr r3, [r7, #20] + 8004692: 071b lsls r3, r3, #28 + 8004694: 4925 ldr r1, [pc, #148] @ (800472c ) + 8004696: 4313 orrs r3, r2 + 8004698: f8c1 3084 str.w r3, [r1, #132] @ 0x84 plli2sq, plli2sr); } /*----------------- In Case of PLLI2S is just selected -----------------*/ if ((PeriphClkInit->PeriphClockSelection & RCC_PERIPHCLK_PLLI2S) == RCC_PERIPHCLK_PLLI2S) - 800464c: 687b ldr r3, [r7, #4] - 800464e: 681b ldr r3, [r3, #0] - 8004650: f403 6300 and.w r3, r3, #2048 @ 0x800 - 8004654: 2b00 cmp r3, #0 - 8004656: d016 beq.n 8004686 + 800469c: 687b ldr r3, [r7, #4] + 800469e: 681b ldr r3, [r3, #0] + 80046a0: f403 6300 and.w r3, r3, #2048 @ 0x800 + 80046a4: 2b00 cmp r3, #0 + 80046a6: d016 beq.n 80046d6 assert_param(IS_RCC_PLLI2SR_VALUE(PeriphClkInit->PLLI2S.PLLI2SR)); assert_param(IS_RCC_PLLI2SQ_VALUE(PeriphClkInit->PLLI2S.PLLI2SQ)); /* Configure the PLLI2S division factors */ /* PLLI2S_VCO = f(VCO clock) = f(PLLI2S clock input) * (PLLI2SN/PLLI2SM) */ __HAL_RCC_PLLI2S_CONFIG(PeriphClkInit->PLLI2S.PLLI2SM, PeriphClkInit->PLLI2S.PLLI2SN, PeriphClkInit->PLLI2S.PLLI2SP, - 8004658: 687b ldr r3, [r7, #4] - 800465a: 685a ldr r2, [r3, #4] - 800465c: 687b ldr r3, [r7, #4] - 800465e: 689b ldr r3, [r3, #8] - 8004660: 019b lsls r3, r3, #6 - 8004662: 431a orrs r2, r3 - 8004664: 687b ldr r3, [r7, #4] - 8004666: 68db ldr r3, [r3, #12] - 8004668: 085b lsrs r3, r3, #1 - 800466a: 3b01 subs r3, #1 - 800466c: 041b lsls r3, r3, #16 - 800466e: 431a orrs r2, r3 - 8004670: 687b ldr r3, [r7, #4] - 8004672: 691b ldr r3, [r3, #16] - 8004674: 061b lsls r3, r3, #24 - 8004676: 431a orrs r2, r3 - 8004678: 687b ldr r3, [r7, #4] - 800467a: 695b ldr r3, [r3, #20] - 800467c: 071b lsls r3, r3, #28 - 800467e: 4917 ldr r1, [pc, #92] @ (80046dc ) - 8004680: 4313 orrs r3, r2 - 8004682: f8c1 3084 str.w r3, [r1, #132] @ 0x84 + 80046a8: 687b ldr r3, [r7, #4] + 80046aa: 685a ldr r2, [r3, #4] + 80046ac: 687b ldr r3, [r7, #4] + 80046ae: 689b ldr r3, [r3, #8] + 80046b0: 019b lsls r3, r3, #6 + 80046b2: 431a orrs r2, r3 + 80046b4: 687b ldr r3, [r7, #4] + 80046b6: 68db ldr r3, [r3, #12] + 80046b8: 085b lsrs r3, r3, #1 + 80046ba: 3b01 subs r3, #1 + 80046bc: 041b lsls r3, r3, #16 + 80046be: 431a orrs r2, r3 + 80046c0: 687b ldr r3, [r7, #4] + 80046c2: 691b ldr r3, [r3, #16] + 80046c4: 061b lsls r3, r3, #24 + 80046c6: 431a orrs r2, r3 + 80046c8: 687b ldr r3, [r7, #4] + 80046ca: 695b ldr r3, [r3, #20] + 80046cc: 071b lsls r3, r3, #28 + 80046ce: 4917 ldr r1, [pc, #92] @ (800472c ) + 80046d0: 4313 orrs r3, r2 + 80046d2: f8c1 3084 str.w r3, [r1, #132] @ 0x84 PeriphClkInit->PLLI2S.PLLI2SQ, PeriphClkInit->PLLI2S.PLLI2SR); } /* Enable the PLLI2S */ __HAL_RCC_PLLI2S_ENABLE(); - 8004686: 4b16 ldr r3, [pc, #88] @ (80046e0 ) - 8004688: 2201 movs r2, #1 - 800468a: 601a str r2, [r3, #0] + 80046d6: 4b16 ldr r3, [pc, #88] @ (8004730 ) + 80046d8: 2201 movs r2, #1 + 80046da: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 800468c: f7fd f99c bl 80019c8 - 8004690: 6278 str r0, [r7, #36] @ 0x24 + 80046dc: f7fd f99c bl 8001a18 + 80046e0: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLI2S is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 8004692: e008 b.n 80046a6 + 80046e2: e008 b.n 80046f6 { if ((HAL_GetTick() - tickstart) > PLLI2S_TIMEOUT_VALUE) - 8004694: f7fd f998 bl 80019c8 - 8004698: 4602 mov r2, r0 - 800469a: 6a7b ldr r3, [r7, #36] @ 0x24 - 800469c: 1ad3 subs r3, r2, r3 - 800469e: 2b02 cmp r3, #2 - 80046a0: d901 bls.n 80046a6 + 80046e4: f7fd f998 bl 8001a18 + 80046e8: 4602 mov r2, r0 + 80046ea: 6a7b ldr r3, [r7, #36] @ 0x24 + 80046ec: 1ad3 subs r3, r2, r3 + 80046ee: 2b02 cmp r3, #2 + 80046f0: d901 bls.n 80046f6 { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 80046a2: 2303 movs r3, #3 - 80046a4: e09f b.n 80047e6 + 80046f2: 2303 movs r3, #3 + 80046f4: e09f b.n 8004836 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLI2SRDY) == RESET) - 80046a6: 4b0d ldr r3, [pc, #52] @ (80046dc ) - 80046a8: 681b ldr r3, [r3, #0] - 80046aa: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 - 80046ae: 2b00 cmp r3, #0 - 80046b0: d0f0 beq.n 8004694 + 80046f6: 4b0d ldr r3, [pc, #52] @ (800472c ) + 80046f8: 681b ldr r3, [r3, #0] + 80046fa: f003 6300 and.w r3, r3, #134217728 @ 0x8000000 + 80046fe: 2b00 cmp r3, #0 + 8004700: d0f0 beq.n 80046e4 } /*--------------------------------------------------------------------------*/ /*----------------------------- PLLSAI Configuration -----------------------*/ /* PLLSAI is configured when a peripheral will use it as source clock : SAI1, SAI2, CLK48 or SDIO */ if (pllsaiused == 1U) - 80046b2: 6abb ldr r3, [r7, #40] @ 0x28 - 80046b4: 2b01 cmp r3, #1 - 80046b6: f040 8095 bne.w 80047e4 + 8004702: 6abb ldr r3, [r7, #40] @ 0x28 + 8004704: 2b01 cmp r3, #1 + 8004706: f040 8095 bne.w 8004834 { /* Disable PLLSAI Clock */ __HAL_RCC_PLLSAI_DISABLE(); - 80046ba: 4b0a ldr r3, [pc, #40] @ (80046e4 ) - 80046bc: 2200 movs r2, #0 - 80046be: 601a str r2, [r3, #0] + 800470a: 4b0a ldr r3, [pc, #40] @ (8004734 ) + 800470c: 2200 movs r2, #0 + 800470e: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 80046c0: f7fd f982 bl 80019c8 - 80046c4: 6278 str r0, [r7, #36] @ 0x24 + 8004710: f7fd f982 bl 8001a18 + 8004714: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLSAI is disabled */ while (__HAL_RCC_PLLSAI_GET_FLAG() != RESET) - 80046c6: e00f b.n 80046e8 + 8004716: e00f b.n 8004738 { if ((HAL_GetTick() - tickstart) > PLLSAI_TIMEOUT_VALUE) - 80046c8: f7fd f97e bl 80019c8 - 80046cc: 4602 mov r2, r0 - 80046ce: 6a7b ldr r3, [r7, #36] @ 0x24 - 80046d0: 1ad3 subs r3, r2, r3 - 80046d2: 2b02 cmp r3, #2 - 80046d4: d908 bls.n 80046e8 + 8004718: f7fd f97e bl 8001a18 + 800471c: 4602 mov r2, r0 + 800471e: 6a7b ldr r3, [r7, #36] @ 0x24 + 8004720: 1ad3 subs r3, r2, r3 + 8004722: 2b02 cmp r3, #2 + 8004724: d908 bls.n 8004738 { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 80046d6: 2303 movs r3, #3 - 80046d8: e085 b.n 80047e6 - 80046da: bf00 nop - 80046dc: 40023800 .word 0x40023800 - 80046e0: 42470068 .word 0x42470068 - 80046e4: 42470070 .word 0x42470070 + 8004726: 2303 movs r3, #3 + 8004728: e085 b.n 8004836 + 800472a: bf00 nop + 800472c: 40023800 .word 0x40023800 + 8004730: 42470068 .word 0x42470068 + 8004734: 42470070 .word 0x42470070 while (__HAL_RCC_PLLSAI_GET_FLAG() != RESET) - 80046e8: 4b41 ldr r3, [pc, #260] @ (80047f0 ) - 80046ea: 681b ldr r3, [r3, #0] - 80046ec: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 80046f0: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 80046f4: d0e8 beq.n 80046c8 + 8004738: 4b41 ldr r3, [pc, #260] @ (8004840 ) + 800473a: 681b ldr r3, [r3, #0] + 800473c: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 8004740: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004744: d0e8 beq.n 8004718 /* Check the PLLSAI division factors */ assert_param(IS_RCC_PLLSAIM_VALUE(PeriphClkInit->PLLSAI.PLLSAIM)); assert_param(IS_RCC_PLLSAIN_VALUE(PeriphClkInit->PLLSAI.PLLSAIN)); /*------ In Case of PLLSAI is selected as source clock for SAI -----------*/ if (((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI1) == RCC_PERIPHCLK_SAI1) - 80046f6: 687b ldr r3, [r7, #4] - 80046f8: 681b ldr r3, [r3, #0] - 80046fa: f003 0304 and.w r3, r3, #4 - 80046fe: 2b00 cmp r3, #0 - 8004700: d003 beq.n 800470a + 8004746: 687b ldr r3, [r7, #4] + 8004748: 681b ldr r3, [r3, #0] + 800474a: f003 0304 and.w r3, r3, #4 + 800474e: 2b00 cmp r3, #0 + 8004750: d003 beq.n 800475a && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI)) || - 8004702: 687b ldr r3, [r7, #4] - 8004704: 6b1b ldr r3, [r3, #48] @ 0x30 - 8004706: 2b00 cmp r3, #0 - 8004708: d009 beq.n 800471e + 8004752: 687b ldr r3, [r7, #4] + 8004754: 6b1b ldr r3, [r3, #48] @ 0x30 + 8004756: 2b00 cmp r3, #0 + 8004758: d009 beq.n 800476e ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI))) - 800470a: 687b ldr r3, [r7, #4] - 800470c: 681b ldr r3, [r3, #0] - 800470e: f003 0308 and.w r3, r3, #8 + 800475a: 687b ldr r3, [r7, #4] + 800475c: 681b ldr r3, [r3, #0] + 800475e: f003 0308 and.w r3, r3, #8 && (PeriphClkInit->Sai1ClockSelection == RCC_SAI1CLKSOURCE_PLLSAI)) || - 8004712: 2b00 cmp r3, #0 - 8004714: d02b beq.n 800476e + 8004762: 2b00 cmp r3, #0 + 8004764: d02b beq.n 80047be ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_SAI2) == RCC_PERIPHCLK_SAI2) && (PeriphClkInit->Sai2ClockSelection == RCC_SAI2CLKSOURCE_PLLSAI))) - 8004716: 687b ldr r3, [r7, #4] - 8004718: 6b5b ldr r3, [r3, #52] @ 0x34 - 800471a: 2b00 cmp r3, #0 - 800471c: d127 bne.n 800476e + 8004766: 687b ldr r3, [r7, #4] + 8004768: 6b5b ldr r3, [r3, #52] @ 0x34 + 800476a: 2b00 cmp r3, #0 + 800476c: d127 bne.n 80047be assert_param(IS_RCC_PLLSAIQ_VALUE(PeriphClkInit->PLLSAI.PLLSAIQ)); /* check for PLLSAI/DIVQ Parameter */ assert_param(IS_RCC_PLLSAI_DIVQ_VALUE(PeriphClkInit->PLLSAIDivQ)); /* Read PLLSAIP value from PLLSAICFGR register (this value is not needed for SAI configuration) */ pllsaip = ((((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIP) >> RCC_PLLSAICFGR_PLLSAIP_Pos) + 1U) << 1U); - 800471e: 4b34 ldr r3, [pc, #208] @ (80047f0 ) - 8004720: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 8004724: 0c1b lsrs r3, r3, #16 - 8004726: f003 0303 and.w r3, r3, #3 - 800472a: 3301 adds r3, #1 - 800472c: 005b lsls r3, r3, #1 - 800472e: 613b str r3, [r7, #16] + 800476e: 4b34 ldr r3, [pc, #208] @ (8004840 ) + 8004770: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 8004774: 0c1b lsrs r3, r3, #16 + 8004776: f003 0303 and.w r3, r3, #3 + 800477a: 3301 adds r3, #1 + 800477c: 005b lsls r3, r3, #1 + 800477e: 613b str r3, [r7, #16] /* PLLSAI_VCO Input = PLL_SOURCE/PLLM */ /* PLLSAI_VCO Output = PLLSAI_VCO Input * PLLSAIN */ /* SAI_CLK(first level) = PLLSAI_VCO Output/PLLSAIQ */ __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIM, PeriphClkInit->PLLSAI.PLLSAIN, pllsaip, - 8004730: 687b ldr r3, [r7, #4] - 8004732: 699a ldr r2, [r3, #24] - 8004734: 687b ldr r3, [r7, #4] - 8004736: 69db ldr r3, [r3, #28] - 8004738: 019b lsls r3, r3, #6 - 800473a: 431a orrs r2, r3 - 800473c: 693b ldr r3, [r7, #16] - 800473e: 085b lsrs r3, r3, #1 - 8004740: 3b01 subs r3, #1 - 8004742: 041b lsls r3, r3, #16 - 8004744: 431a orrs r2, r3 - 8004746: 687b ldr r3, [r7, #4] - 8004748: 6a5b ldr r3, [r3, #36] @ 0x24 - 800474a: 061b lsls r3, r3, #24 - 800474c: 4928 ldr r1, [pc, #160] @ (80047f0 ) - 800474e: 4313 orrs r3, r2 - 8004750: f8c1 3088 str.w r3, [r1, #136] @ 0x88 + 8004780: 687b ldr r3, [r7, #4] + 8004782: 699a ldr r2, [r3, #24] + 8004784: 687b ldr r3, [r7, #4] + 8004786: 69db ldr r3, [r3, #28] + 8004788: 019b lsls r3, r3, #6 + 800478a: 431a orrs r2, r3 + 800478c: 693b ldr r3, [r7, #16] + 800478e: 085b lsrs r3, r3, #1 + 8004790: 3b01 subs r3, #1 + 8004792: 041b lsls r3, r3, #16 + 8004794: 431a orrs r2, r3 + 8004796: 687b ldr r3, [r7, #4] + 8004798: 6a5b ldr r3, [r3, #36] @ 0x24 + 800479a: 061b lsls r3, r3, #24 + 800479c: 4928 ldr r1, [pc, #160] @ (8004840 ) + 800479e: 4313 orrs r3, r2 + 80047a0: f8c1 3088 str.w r3, [r1, #136] @ 0x88 PeriphClkInit->PLLSAI.PLLSAIQ, 0U); /* SAI_CLK_x = SAI_CLK(first level)/PLLSAIDIVQ */ __HAL_RCC_PLLSAI_PLLSAICLKDIVQ_CONFIG(PeriphClkInit->PLLSAIDivQ); - 8004754: 4b26 ldr r3, [pc, #152] @ (80047f0 ) - 8004756: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c - 800475a: f423 52f8 bic.w r2, r3, #7936 @ 0x1f00 - 800475e: 687b ldr r3, [r7, #4] - 8004760: 6adb ldr r3, [r3, #44] @ 0x2c - 8004762: 3b01 subs r3, #1 - 8004764: 021b lsls r3, r3, #8 - 8004766: 4922 ldr r1, [pc, #136] @ (80047f0 ) - 8004768: 4313 orrs r3, r2 - 800476a: f8c1 308c str.w r3, [r1, #140] @ 0x8c + 80047a4: 4b26 ldr r3, [pc, #152] @ (8004840 ) + 80047a6: f8d3 308c ldr.w r3, [r3, #140] @ 0x8c + 80047aa: f423 52f8 bic.w r2, r3, #7936 @ 0x1f00 + 80047ae: 687b ldr r3, [r7, #4] + 80047b0: 6adb ldr r3, [r3, #44] @ 0x2c + 80047b2: 3b01 subs r3, #1 + 80047b4: 021b lsls r3, r3, #8 + 80047b6: 4922 ldr r1, [pc, #136] @ (8004840 ) + 80047b8: 4313 orrs r3, r2 + 80047ba: f8c1 308c str.w r3, [r1, #140] @ 0x8c } /*------ In Case of PLLSAI is selected as source clock for CLK48 ---------*/ /* In Case of PLLI2S is selected as source clock for CLK48 */ if ((((PeriphClkInit->PeriphClockSelection) & RCC_PERIPHCLK_CLK48) == RCC_PERIPHCLK_CLK48) - 800476e: 687b ldr r3, [r7, #4] - 8004770: 681b ldr r3, [r3, #0] - 8004772: f403 7380 and.w r3, r3, #256 @ 0x100 - 8004776: 2b00 cmp r3, #0 - 8004778: d01d beq.n 80047b6 + 80047be: 687b ldr r3, [r7, #4] + 80047c0: 681b ldr r3, [r3, #0] + 80047c2: f403 7380 and.w r3, r3, #256 @ 0x100 + 80047c6: 2b00 cmp r3, #0 + 80047c8: d01d beq.n 8004806 && (PeriphClkInit->Clk48ClockSelection == RCC_CLK48CLKSOURCE_PLLSAIP)) - 800477a: 687b ldr r3, [r7, #4] - 800477c: 6d5b ldr r3, [r3, #84] @ 0x54 - 800477e: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 - 8004782: d118 bne.n 80047b6 + 80047ca: 687b ldr r3, [r7, #4] + 80047cc: 6d5b ldr r3, [r3, #84] @ 0x54 + 80047ce: f1b3 6f00 cmp.w r3, #134217728 @ 0x8000000 + 80047d2: d118 bne.n 8004806 { /* check for Parameters */ assert_param(IS_RCC_PLLSAIP_VALUE(PeriphClkInit->PLLSAI.PLLSAIP)); /* Read PLLSAIQ value from PLLI2SCFGR register (this value is not need for SAI configuration) */ pllsaiq = ((RCC->PLLSAICFGR & RCC_PLLSAICFGR_PLLSAIQ) >> RCC_PLLSAICFGR_PLLSAIQ_Pos); - 8004784: 4b1a ldr r3, [pc, #104] @ (80047f0 ) - 8004786: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 - 800478a: 0e1b lsrs r3, r3, #24 - 800478c: f003 030f and.w r3, r3, #15 - 8004790: 60fb str r3, [r7, #12] + 80047d4: 4b1a ldr r3, [pc, #104] @ (8004840 ) + 80047d6: f8d3 3088 ldr.w r3, [r3, #136] @ 0x88 + 80047da: 0e1b lsrs r3, r3, #24 + 80047dc: f003 030f and.w r3, r3, #15 + 80047e0: 60fb str r3, [r7, #12] /* Configure the PLLSAI division factors */ /* PLLSAI_VCO = f(VCO clock) = f(PLLSAI clock input) * (PLLI2SN/PLLSAIM) */ /* 48CLK = f(PLLSAI clock output) = f(VCO clock) / PLLSAIP */ __HAL_RCC_PLLSAI_CONFIG(PeriphClkInit->PLLSAI.PLLSAIM, PeriphClkInit->PLLSAI.PLLSAIN, PeriphClkInit->PLLSAI.PLLSAIP, - 8004792: 687b ldr r3, [r7, #4] - 8004794: 699a ldr r2, [r3, #24] - 8004796: 687b ldr r3, [r7, #4] - 8004798: 69db ldr r3, [r3, #28] - 800479a: 019b lsls r3, r3, #6 - 800479c: 431a orrs r2, r3 - 800479e: 687b ldr r3, [r7, #4] - 80047a0: 6a1b ldr r3, [r3, #32] - 80047a2: 085b lsrs r3, r3, #1 - 80047a4: 3b01 subs r3, #1 - 80047a6: 041b lsls r3, r3, #16 - 80047a8: 431a orrs r2, r3 - 80047aa: 68fb ldr r3, [r7, #12] - 80047ac: 061b lsls r3, r3, #24 - 80047ae: 4910 ldr r1, [pc, #64] @ (80047f0 ) - 80047b0: 4313 orrs r3, r2 - 80047b2: f8c1 3088 str.w r3, [r1, #136] @ 0x88 + 80047e2: 687b ldr r3, [r7, #4] + 80047e4: 699a ldr r2, [r3, #24] + 80047e6: 687b ldr r3, [r7, #4] + 80047e8: 69db ldr r3, [r3, #28] + 80047ea: 019b lsls r3, r3, #6 + 80047ec: 431a orrs r2, r3 + 80047ee: 687b ldr r3, [r7, #4] + 80047f0: 6a1b ldr r3, [r3, #32] + 80047f2: 085b lsrs r3, r3, #1 + 80047f4: 3b01 subs r3, #1 + 80047f6: 041b lsls r3, r3, #16 + 80047f8: 431a orrs r2, r3 + 80047fa: 68fb ldr r3, [r7, #12] + 80047fc: 061b lsls r3, r3, #24 + 80047fe: 4910 ldr r1, [pc, #64] @ (8004840 ) + 8004800: 4313 orrs r3, r2 + 8004802: f8c1 3088 str.w r3, [r1, #136] @ 0x88 pllsaiq, 0U); } /* Enable PLLSAI Clock */ __HAL_RCC_PLLSAI_ENABLE(); - 80047b6: 4b0f ldr r3, [pc, #60] @ (80047f4 ) - 80047b8: 2201 movs r2, #1 - 80047ba: 601a str r2, [r3, #0] + 8004806: 4b0f ldr r3, [pc, #60] @ (8004844 ) + 8004808: 2201 movs r2, #1 + 800480a: 601a str r2, [r3, #0] /* Get tick */ tickstart = HAL_GetTick(); - 80047bc: f7fd f904 bl 80019c8 - 80047c0: 6278 str r0, [r7, #36] @ 0x24 + 800480c: f7fd f904 bl 8001a18 + 8004810: 6278 str r0, [r7, #36] @ 0x24 /* Wait till PLLSAI is ready */ while (__HAL_RCC_PLLSAI_GET_FLAG() == RESET) - 80047c2: e008 b.n 80047d6 + 8004812: e008 b.n 8004826 { if ((HAL_GetTick() - tickstart) > PLLSAI_TIMEOUT_VALUE) - 80047c4: f7fd f900 bl 80019c8 - 80047c8: 4602 mov r2, r0 - 80047ca: 6a7b ldr r3, [r7, #36] @ 0x24 - 80047cc: 1ad3 subs r3, r2, r3 - 80047ce: 2b02 cmp r3, #2 - 80047d0: d901 bls.n 80047d6 + 8004814: f7fd f900 bl 8001a18 + 8004818: 4602 mov r2, r0 + 800481a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800481c: 1ad3 subs r3, r2, r3 + 800481e: 2b02 cmp r3, #2 + 8004820: d901 bls.n 8004826 { /* return in case of Timeout detected */ return HAL_TIMEOUT; - 80047d2: 2303 movs r3, #3 - 80047d4: e007 b.n 80047e6 + 8004822: 2303 movs r3, #3 + 8004824: e007 b.n 8004836 while (__HAL_RCC_PLLSAI_GET_FLAG() == RESET) - 80047d6: 4b06 ldr r3, [pc, #24] @ (80047f0 ) - 80047d8: 681b ldr r3, [r3, #0] - 80047da: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 - 80047de: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 - 80047e2: d1ef bne.n 80047c4 + 8004826: 4b06 ldr r3, [pc, #24] @ (8004840 ) + 8004828: 681b ldr r3, [r3, #0] + 800482a: f003 5300 and.w r3, r3, #536870912 @ 0x20000000 + 800482e: f1b3 5f00 cmp.w r3, #536870912 @ 0x20000000 + 8004832: d1ef bne.n 8004814 } } } return HAL_OK; - 80047e4: 2300 movs r3, #0 + 8004834: 2300 movs r3, #0 } - 80047e6: 4618 mov r0, r3 - 80047e8: 3730 adds r7, #48 @ 0x30 - 80047ea: 46bd mov sp, r7 - 80047ec: bd80 pop {r7, pc} - 80047ee: bf00 nop - 80047f0: 40023800 .word 0x40023800 - 80047f4: 42470070 .word 0x42470070 + 8004836: 4618 mov r0, r3 + 8004838: 3730 adds r7, #48 @ 0x30 + 800483a: 46bd mov sp, r7 + 800483c: bd80 pop {r7, pc} + 800483e: bf00 nop + 8004840: 40023800 .word 0x40023800 + 8004844: 42470070 .word 0x42470070 -080047f8 : +08004848 : * * * @retval SYSCLK frequency */ uint32_t HAL_RCC_GetSysClockFreq(void) { - 80047f8: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 80047fc: b0ae sub sp, #184 @ 0xb8 - 80047fe: af00 add r7, sp, #0 + 8004848: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 800484c: b0ae sub sp, #184 @ 0xb8 + 800484e: af00 add r7, sp, #0 uint32_t pllm = 0U; - 8004800: 2300 movs r3, #0 - 8004802: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8004850: 2300 movs r3, #0 + 8004852: f8c7 30ac str.w r3, [r7, #172] @ 0xac uint32_t pllvco = 0U; - 8004806: 2300 movs r3, #0 - 8004808: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004856: 2300 movs r3, #0 + 8004858: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 uint32_t pllp = 0U; - 800480c: 2300 movs r3, #0 - 800480e: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 800485c: 2300 movs r3, #0 + 800485e: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 uint32_t pllr = 0U; - 8004812: 2300 movs r3, #0 - 8004814: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 8004862: 2300 movs r3, #0 + 8004864: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 uint32_t sysclockfreq = 0U; - 8004818: 2300 movs r3, #0 - 800481a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004868: 2300 movs r3, #0 + 800486a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 /* Get SYSCLK source -------------------------------------------------------*/ switch (RCC->CFGR & RCC_CFGR_SWS) - 800481e: 4bcb ldr r3, [pc, #812] @ (8004b4c ) - 8004820: 689b ldr r3, [r3, #8] - 8004822: f003 030c and.w r3, r3, #12 - 8004826: 2b0c cmp r3, #12 - 8004828: f200 8206 bhi.w 8004c38 - 800482c: a201 add r2, pc, #4 @ (adr r2, 8004834 ) - 800482e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8004832: bf00 nop - 8004834: 08004869 .word 0x08004869 - 8004838: 08004c39 .word 0x08004c39 - 800483c: 08004c39 .word 0x08004c39 - 8004840: 08004c39 .word 0x08004c39 - 8004844: 08004871 .word 0x08004871 - 8004848: 08004c39 .word 0x08004c39 - 800484c: 08004c39 .word 0x08004c39 - 8004850: 08004c39 .word 0x08004c39 - 8004854: 08004879 .word 0x08004879 - 8004858: 08004c39 .word 0x08004c39 - 800485c: 08004c39 .word 0x08004c39 - 8004860: 08004c39 .word 0x08004c39 - 8004864: 08004a69 .word 0x08004a69 + 800486e: 4bcb ldr r3, [pc, #812] @ (8004b9c ) + 8004870: 689b ldr r3, [r3, #8] + 8004872: f003 030c and.w r3, r3, #12 + 8004876: 2b0c cmp r3, #12 + 8004878: f200 8206 bhi.w 8004c88 + 800487c: a201 add r2, pc, #4 @ (adr r2, 8004884 ) + 800487e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8004882: bf00 nop + 8004884: 080048b9 .word 0x080048b9 + 8004888: 08004c89 .word 0x08004c89 + 800488c: 08004c89 .word 0x08004c89 + 8004890: 08004c89 .word 0x08004c89 + 8004894: 080048c1 .word 0x080048c1 + 8004898: 08004c89 .word 0x08004c89 + 800489c: 08004c89 .word 0x08004c89 + 80048a0: 08004c89 .word 0x08004c89 + 80048a4: 080048c9 .word 0x080048c9 + 80048a8: 08004c89 .word 0x08004c89 + 80048ac: 08004c89 .word 0x08004c89 + 80048b0: 08004c89 .word 0x08004c89 + 80048b4: 08004ab9 .word 0x08004ab9 { case RCC_CFGR_SWS_HSI: /* HSI used as system clock source */ { sysclockfreq = HSI_VALUE; - 8004868: 4bb9 ldr r3, [pc, #740] @ (8004b50 ) - 800486a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 80048b8: 4bb9 ldr r3, [pc, #740] @ (8004ba0 ) + 80048ba: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 800486e: e1e7 b.n 8004c40 + 80048be: e1e7 b.n 8004c90 } case RCC_CFGR_SWS_HSE: /* HSE used as system clock source */ { sysclockfreq = HSE_VALUE; - 8004870: 4bb8 ldr r3, [pc, #736] @ (8004b54 ) - 8004872: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 80048c0: 4bb8 ldr r3, [pc, #736] @ (8004ba4 ) + 80048c2: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004876: e1e3 b.n 8004c40 + 80048c6: e1e3 b.n 8004c90 } case RCC_CFGR_SWS_PLL: /* PLL/PLLP used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLP */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 8004878: 4bb4 ldr r3, [pc, #720] @ (8004b4c ) - 800487a: 685b ldr r3, [r3, #4] - 800487c: f003 033f and.w r3, r3, #63 @ 0x3f - 8004880: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 80048c8: 4bb4 ldr r3, [pc, #720] @ (8004b9c ) + 80048ca: 685b ldr r3, [r3, #4] + 80048cc: f003 033f and.w r3, r3, #63 @ 0x3f + 80048d0: f8c7 30ac str.w r3, [r7, #172] @ 0xac if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8004884: 4bb1 ldr r3, [pc, #708] @ (8004b4c ) - 8004886: 685b ldr r3, [r3, #4] - 8004888: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 800488c: 2b00 cmp r3, #0 - 800488e: d071 beq.n 8004974 + 80048d4: 4bb1 ldr r3, [pc, #708] @ (8004b9c ) + 80048d6: 685b ldr r3, [r3, #4] + 80048d8: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 80048dc: 2b00 cmp r3, #0 + 80048de: d071 beq.n 80049c4 { /* HSE used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSE_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004890: 4bae ldr r3, [pc, #696] @ (8004b4c ) - 8004892: 685b ldr r3, [r3, #4] - 8004894: 099b lsrs r3, r3, #6 - 8004896: 2200 movs r2, #0 - 8004898: f8c7 3098 str.w r3, [r7, #152] @ 0x98 - 800489c: f8c7 209c str.w r2, [r7, #156] @ 0x9c - 80048a0: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 - 80048a4: f3c3 0308 ubfx r3, r3, #0, #9 - 80048a8: f8c7 3090 str.w r3, [r7, #144] @ 0x90 - 80048ac: 2300 movs r3, #0 - 80048ae: f8c7 3094 str.w r3, [r7, #148] @ 0x94 - 80048b2: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 - 80048b6: 4622 mov r2, r4 - 80048b8: 462b mov r3, r5 - 80048ba: f04f 0000 mov.w r0, #0 - 80048be: f04f 0100 mov.w r1, #0 - 80048c2: 0159 lsls r1, r3, #5 - 80048c4: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 80048c8: 0150 lsls r0, r2, #5 - 80048ca: 4602 mov r2, r0 - 80048cc: 460b mov r3, r1 - 80048ce: 4621 mov r1, r4 - 80048d0: 1a51 subs r1, r2, r1 - 80048d2: 6439 str r1, [r7, #64] @ 0x40 - 80048d4: 4629 mov r1, r5 - 80048d6: eb63 0301 sbc.w r3, r3, r1 - 80048da: 647b str r3, [r7, #68] @ 0x44 - 80048dc: f04f 0200 mov.w r2, #0 - 80048e0: f04f 0300 mov.w r3, #0 - 80048e4: e9d7 8910 ldrd r8, r9, [r7, #64] @ 0x40 - 80048e8: 4649 mov r1, r9 - 80048ea: 018b lsls r3, r1, #6 - 80048ec: 4641 mov r1, r8 - 80048ee: ea43 6391 orr.w r3, r3, r1, lsr #26 - 80048f2: 4641 mov r1, r8 - 80048f4: 018a lsls r2, r1, #6 - 80048f6: 4641 mov r1, r8 - 80048f8: 1a51 subs r1, r2, r1 - 80048fa: 63b9 str r1, [r7, #56] @ 0x38 - 80048fc: 4649 mov r1, r9 - 80048fe: eb63 0301 sbc.w r3, r3, r1 - 8004902: 63fb str r3, [r7, #60] @ 0x3c - 8004904: f04f 0200 mov.w r2, #0 - 8004908: f04f 0300 mov.w r3, #0 - 800490c: e9d7 890e ldrd r8, r9, [r7, #56] @ 0x38 - 8004910: 4649 mov r1, r9 - 8004912: 00cb lsls r3, r1, #3 - 8004914: 4641 mov r1, r8 - 8004916: ea43 7351 orr.w r3, r3, r1, lsr #29 - 800491a: 4641 mov r1, r8 - 800491c: 00ca lsls r2, r1, #3 - 800491e: 4610 mov r0, r2 - 8004920: 4619 mov r1, r3 - 8004922: 4603 mov r3, r0 - 8004924: 4622 mov r2, r4 - 8004926: 189b adds r3, r3, r2 - 8004928: 633b str r3, [r7, #48] @ 0x30 - 800492a: 462b mov r3, r5 - 800492c: 460a mov r2, r1 - 800492e: eb42 0303 adc.w r3, r2, r3 - 8004932: 637b str r3, [r7, #52] @ 0x34 - 8004934: f04f 0200 mov.w r2, #0 - 8004938: f04f 0300 mov.w r3, #0 - 800493c: e9d7 450c ldrd r4, r5, [r7, #48] @ 0x30 - 8004940: 4629 mov r1, r5 - 8004942: 024b lsls r3, r1, #9 - 8004944: 4621 mov r1, r4 - 8004946: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 800494a: 4621 mov r1, r4 - 800494c: 024a lsls r2, r1, #9 - 800494e: 4610 mov r0, r2 - 8004950: 4619 mov r1, r3 - 8004952: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004956: 2200 movs r2, #0 - 8004958: f8c7 3088 str.w r3, [r7, #136] @ 0x88 - 800495c: f8c7 208c str.w r2, [r7, #140] @ 0x8c - 8004960: e9d7 2322 ldrd r2, r3, [r7, #136] @ 0x88 - 8004964: f7fb fc4e bl 8000204 <__aeabi_uldivmod> - 8004968: 4602 mov r2, r0 - 800496a: 460b mov r3, r1 - 800496c: 4613 mov r3, r2 - 800496e: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8004972: e067 b.n 8004a44 + 80048e0: 4bae ldr r3, [pc, #696] @ (8004b9c ) + 80048e2: 685b ldr r3, [r3, #4] + 80048e4: 099b lsrs r3, r3, #6 + 80048e6: 2200 movs r2, #0 + 80048e8: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 80048ec: f8c7 209c str.w r2, [r7, #156] @ 0x9c + 80048f0: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 + 80048f4: f3c3 0308 ubfx r3, r3, #0, #9 + 80048f8: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 80048fc: 2300 movs r3, #0 + 80048fe: f8c7 3094 str.w r3, [r7, #148] @ 0x94 + 8004902: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 + 8004906: 4622 mov r2, r4 + 8004908: 462b mov r3, r5 + 800490a: f04f 0000 mov.w r0, #0 + 800490e: f04f 0100 mov.w r1, #0 + 8004912: 0159 lsls r1, r3, #5 + 8004914: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004918: 0150 lsls r0, r2, #5 + 800491a: 4602 mov r2, r0 + 800491c: 460b mov r3, r1 + 800491e: 4621 mov r1, r4 + 8004920: 1a51 subs r1, r2, r1 + 8004922: 6439 str r1, [r7, #64] @ 0x40 + 8004924: 4629 mov r1, r5 + 8004926: eb63 0301 sbc.w r3, r3, r1 + 800492a: 647b str r3, [r7, #68] @ 0x44 + 800492c: f04f 0200 mov.w r2, #0 + 8004930: f04f 0300 mov.w r3, #0 + 8004934: e9d7 8910 ldrd r8, r9, [r7, #64] @ 0x40 + 8004938: 4649 mov r1, r9 + 800493a: 018b lsls r3, r1, #6 + 800493c: 4641 mov r1, r8 + 800493e: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004942: 4641 mov r1, r8 + 8004944: 018a lsls r2, r1, #6 + 8004946: 4641 mov r1, r8 + 8004948: 1a51 subs r1, r2, r1 + 800494a: 63b9 str r1, [r7, #56] @ 0x38 + 800494c: 4649 mov r1, r9 + 800494e: eb63 0301 sbc.w r3, r3, r1 + 8004952: 63fb str r3, [r7, #60] @ 0x3c + 8004954: f04f 0200 mov.w r2, #0 + 8004958: f04f 0300 mov.w r3, #0 + 800495c: e9d7 890e ldrd r8, r9, [r7, #56] @ 0x38 + 8004960: 4649 mov r1, r9 + 8004962: 00cb lsls r3, r1, #3 + 8004964: 4641 mov r1, r8 + 8004966: ea43 7351 orr.w r3, r3, r1, lsr #29 + 800496a: 4641 mov r1, r8 + 800496c: 00ca lsls r2, r1, #3 + 800496e: 4610 mov r0, r2 + 8004970: 4619 mov r1, r3 + 8004972: 4603 mov r3, r0 + 8004974: 4622 mov r2, r4 + 8004976: 189b adds r3, r3, r2 + 8004978: 633b str r3, [r7, #48] @ 0x30 + 800497a: 462b mov r3, r5 + 800497c: 460a mov r2, r1 + 800497e: eb42 0303 adc.w r3, r2, r3 + 8004982: 637b str r3, [r7, #52] @ 0x34 + 8004984: f04f 0200 mov.w r2, #0 + 8004988: f04f 0300 mov.w r3, #0 + 800498c: e9d7 450c ldrd r4, r5, [r7, #48] @ 0x30 + 8004990: 4629 mov r1, r5 + 8004992: 024b lsls r3, r1, #9 + 8004994: 4621 mov r1, r4 + 8004996: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 800499a: 4621 mov r1, r4 + 800499c: 024a lsls r2, r1, #9 + 800499e: 4610 mov r0, r2 + 80049a0: 4619 mov r1, r3 + 80049a2: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 80049a6: 2200 movs r2, #0 + 80049a8: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 80049ac: f8c7 208c str.w r2, [r7, #140] @ 0x8c + 80049b0: e9d7 2322 ldrd r2, r3, [r7, #136] @ 0x88 + 80049b4: f7fb fc26 bl 8000204 <__aeabi_uldivmod> + 80049b8: 4602 mov r2, r0 + 80049ba: 460b mov r3, r1 + 80049bc: 4613 mov r3, r2 + 80049be: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 80049c2: e067 b.n 8004a94 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSI_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004974: 4b75 ldr r3, [pc, #468] @ (8004b4c ) - 8004976: 685b ldr r3, [r3, #4] - 8004978: 099b lsrs r3, r3, #6 - 800497a: 2200 movs r2, #0 - 800497c: f8c7 3080 str.w r3, [r7, #128] @ 0x80 - 8004980: f8c7 2084 str.w r2, [r7, #132] @ 0x84 - 8004984: f8d7 3080 ldr.w r3, [r7, #128] @ 0x80 - 8004988: f3c3 0308 ubfx r3, r3, #0, #9 - 800498c: 67bb str r3, [r7, #120] @ 0x78 - 800498e: 2300 movs r3, #0 - 8004990: 67fb str r3, [r7, #124] @ 0x7c - 8004992: e9d7 451e ldrd r4, r5, [r7, #120] @ 0x78 - 8004996: 4622 mov r2, r4 - 8004998: 462b mov r3, r5 - 800499a: f04f 0000 mov.w r0, #0 - 800499e: f04f 0100 mov.w r1, #0 - 80049a2: 0159 lsls r1, r3, #5 - 80049a4: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 80049a8: 0150 lsls r0, r2, #5 - 80049aa: 4602 mov r2, r0 - 80049ac: 460b mov r3, r1 - 80049ae: 4621 mov r1, r4 - 80049b0: 1a51 subs r1, r2, r1 - 80049b2: 62b9 str r1, [r7, #40] @ 0x28 - 80049b4: 4629 mov r1, r5 - 80049b6: eb63 0301 sbc.w r3, r3, r1 - 80049ba: 62fb str r3, [r7, #44] @ 0x2c - 80049bc: f04f 0200 mov.w r2, #0 - 80049c0: f04f 0300 mov.w r3, #0 - 80049c4: e9d7 890a ldrd r8, r9, [r7, #40] @ 0x28 - 80049c8: 4649 mov r1, r9 - 80049ca: 018b lsls r3, r1, #6 - 80049cc: 4641 mov r1, r8 - 80049ce: ea43 6391 orr.w r3, r3, r1, lsr #26 - 80049d2: 4641 mov r1, r8 - 80049d4: 018a lsls r2, r1, #6 - 80049d6: 4641 mov r1, r8 - 80049d8: ebb2 0a01 subs.w sl, r2, r1 - 80049dc: 4649 mov r1, r9 - 80049de: eb63 0b01 sbc.w fp, r3, r1 - 80049e2: f04f 0200 mov.w r2, #0 - 80049e6: f04f 0300 mov.w r3, #0 - 80049ea: ea4f 03cb mov.w r3, fp, lsl #3 - 80049ee: ea43 735a orr.w r3, r3, sl, lsr #29 - 80049f2: ea4f 02ca mov.w r2, sl, lsl #3 - 80049f6: 4692 mov sl, r2 - 80049f8: 469b mov fp, r3 - 80049fa: 4623 mov r3, r4 - 80049fc: eb1a 0303 adds.w r3, sl, r3 - 8004a00: 623b str r3, [r7, #32] - 8004a02: 462b mov r3, r5 - 8004a04: eb4b 0303 adc.w r3, fp, r3 - 8004a08: 627b str r3, [r7, #36] @ 0x24 - 8004a0a: f04f 0200 mov.w r2, #0 - 8004a0e: f04f 0300 mov.w r3, #0 - 8004a12: e9d7 4508 ldrd r4, r5, [r7, #32] - 8004a16: 4629 mov r1, r5 - 8004a18: 028b lsls r3, r1, #10 - 8004a1a: 4621 mov r1, r4 - 8004a1c: ea43 5391 orr.w r3, r3, r1, lsr #22 - 8004a20: 4621 mov r1, r4 - 8004a22: 028a lsls r2, r1, #10 - 8004a24: 4610 mov r0, r2 - 8004a26: 4619 mov r1, r3 - 8004a28: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004a2c: 2200 movs r2, #0 - 8004a2e: 673b str r3, [r7, #112] @ 0x70 - 8004a30: 677a str r2, [r7, #116] @ 0x74 - 8004a32: e9d7 231c ldrd r2, r3, [r7, #112] @ 0x70 - 8004a36: f7fb fbe5 bl 8000204 <__aeabi_uldivmod> - 8004a3a: 4602 mov r2, r0 - 8004a3c: 460b mov r3, r1 - 8004a3e: 4613 mov r3, r2 - 8004a40: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 80049c4: 4b75 ldr r3, [pc, #468] @ (8004b9c ) + 80049c6: 685b ldr r3, [r3, #4] + 80049c8: 099b lsrs r3, r3, #6 + 80049ca: 2200 movs r2, #0 + 80049cc: f8c7 3080 str.w r3, [r7, #128] @ 0x80 + 80049d0: f8c7 2084 str.w r2, [r7, #132] @ 0x84 + 80049d4: f8d7 3080 ldr.w r3, [r7, #128] @ 0x80 + 80049d8: f3c3 0308 ubfx r3, r3, #0, #9 + 80049dc: 67bb str r3, [r7, #120] @ 0x78 + 80049de: 2300 movs r3, #0 + 80049e0: 67fb str r3, [r7, #124] @ 0x7c + 80049e2: e9d7 451e ldrd r4, r5, [r7, #120] @ 0x78 + 80049e6: 4622 mov r2, r4 + 80049e8: 462b mov r3, r5 + 80049ea: f04f 0000 mov.w r0, #0 + 80049ee: f04f 0100 mov.w r1, #0 + 80049f2: 0159 lsls r1, r3, #5 + 80049f4: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 80049f8: 0150 lsls r0, r2, #5 + 80049fa: 4602 mov r2, r0 + 80049fc: 460b mov r3, r1 + 80049fe: 4621 mov r1, r4 + 8004a00: 1a51 subs r1, r2, r1 + 8004a02: 62b9 str r1, [r7, #40] @ 0x28 + 8004a04: 4629 mov r1, r5 + 8004a06: eb63 0301 sbc.w r3, r3, r1 + 8004a0a: 62fb str r3, [r7, #44] @ 0x2c + 8004a0c: f04f 0200 mov.w r2, #0 + 8004a10: f04f 0300 mov.w r3, #0 + 8004a14: e9d7 890a ldrd r8, r9, [r7, #40] @ 0x28 + 8004a18: 4649 mov r1, r9 + 8004a1a: 018b lsls r3, r1, #6 + 8004a1c: 4641 mov r1, r8 + 8004a1e: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004a22: 4641 mov r1, r8 + 8004a24: 018a lsls r2, r1, #6 + 8004a26: 4641 mov r1, r8 + 8004a28: ebb2 0a01 subs.w sl, r2, r1 + 8004a2c: 4649 mov r1, r9 + 8004a2e: eb63 0b01 sbc.w fp, r3, r1 + 8004a32: f04f 0200 mov.w r2, #0 + 8004a36: f04f 0300 mov.w r3, #0 + 8004a3a: ea4f 03cb mov.w r3, fp, lsl #3 + 8004a3e: ea43 735a orr.w r3, r3, sl, lsr #29 + 8004a42: ea4f 02ca mov.w r2, sl, lsl #3 + 8004a46: 4692 mov sl, r2 + 8004a48: 469b mov fp, r3 + 8004a4a: 4623 mov r3, r4 + 8004a4c: eb1a 0303 adds.w r3, sl, r3 + 8004a50: 623b str r3, [r7, #32] + 8004a52: 462b mov r3, r5 + 8004a54: eb4b 0303 adc.w r3, fp, r3 + 8004a58: 627b str r3, [r7, #36] @ 0x24 + 8004a5a: f04f 0200 mov.w r2, #0 + 8004a5e: f04f 0300 mov.w r3, #0 + 8004a62: e9d7 4508 ldrd r4, r5, [r7, #32] + 8004a66: 4629 mov r1, r5 + 8004a68: 028b lsls r3, r1, #10 + 8004a6a: 4621 mov r1, r4 + 8004a6c: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8004a70: 4621 mov r1, r4 + 8004a72: 028a lsls r2, r1, #10 + 8004a74: 4610 mov r0, r2 + 8004a76: 4619 mov r1, r3 + 8004a78: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004a7c: 2200 movs r2, #0 + 8004a7e: 673b str r3, [r7, #112] @ 0x70 + 8004a80: 677a str r2, [r7, #116] @ 0x74 + 8004a82: e9d7 231c ldrd r2, r3, [r7, #112] @ 0x70 + 8004a86: f7fb fbbd bl 8000204 <__aeabi_uldivmod> + 8004a8a: 4602 mov r2, r0 + 8004a8c: 460b mov r3, r1 + 8004a8e: 4613 mov r3, r2 + 8004a90: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 } pllp = ((((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >> RCC_PLLCFGR_PLLP_Pos) + 1U) * 2U); - 8004a44: 4b41 ldr r3, [pc, #260] @ (8004b4c ) - 8004a46: 685b ldr r3, [r3, #4] - 8004a48: 0c1b lsrs r3, r3, #16 - 8004a4a: f003 0303 and.w r3, r3, #3 - 8004a4e: 3301 adds r3, #1 - 8004a50: 005b lsls r3, r3, #1 - 8004a52: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 8004a94: 4b41 ldr r3, [pc, #260] @ (8004b9c ) + 8004a96: 685b ldr r3, [r3, #4] + 8004a98: 0c1b lsrs r3, r3, #16 + 8004a9a: f003 0303 and.w r3, r3, #3 + 8004a9e: 3301 adds r3, #1 + 8004aa0: 005b lsls r3, r3, #1 + 8004aa2: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 sysclockfreq = pllvco / pllp; - 8004a56: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8004a5a: f8d7 30a8 ldr.w r3, [r7, #168] @ 0xa8 - 8004a5e: fbb2 f3f3 udiv r3, r2, r3 - 8004a62: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004aa6: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 8004aaa: f8d7 30a8 ldr.w r3, [r7, #168] @ 0xa8 + 8004aae: fbb2 f3f3 udiv r3, r2, r3 + 8004ab2: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004a66: e0eb b.n 8004c40 + 8004ab6: e0eb b.n 8004c90 } case RCC_CFGR_SWS_PLLR: /* PLL/PLLR used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLR */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 8004a68: 4b38 ldr r3, [pc, #224] @ (8004b4c ) - 8004a6a: 685b ldr r3, [r3, #4] - 8004a6c: f003 033f and.w r3, r3, #63 @ 0x3f - 8004a70: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8004ab8: 4b38 ldr r3, [pc, #224] @ (8004b9c ) + 8004aba: 685b ldr r3, [r3, #4] + 8004abc: f003 033f and.w r3, r3, #63 @ 0x3f + 8004ac0: f8c7 30ac str.w r3, [r7, #172] @ 0xac if (__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 8004a74: 4b35 ldr r3, [pc, #212] @ (8004b4c ) - 8004a76: 685b ldr r3, [r3, #4] - 8004a78: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004a7c: 2b00 cmp r3, #0 - 8004a7e: d06b beq.n 8004b58 + 8004ac4: 4b35 ldr r3, [pc, #212] @ (8004b9c ) + 8004ac6: 685b ldr r3, [r3, #4] + 8004ac8: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004acc: 2b00 cmp r3, #0 + 8004ace: d06b beq.n 8004ba8 { /* HSE used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSE_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004a80: 4b32 ldr r3, [pc, #200] @ (8004b4c ) - 8004a82: 685b ldr r3, [r3, #4] - 8004a84: 099b lsrs r3, r3, #6 - 8004a86: 2200 movs r2, #0 - 8004a88: 66bb str r3, [r7, #104] @ 0x68 - 8004a8a: 66fa str r2, [r7, #108] @ 0x6c - 8004a8c: 6ebb ldr r3, [r7, #104] @ 0x68 - 8004a8e: f3c3 0308 ubfx r3, r3, #0, #9 - 8004a92: 663b str r3, [r7, #96] @ 0x60 - 8004a94: 2300 movs r3, #0 - 8004a96: 667b str r3, [r7, #100] @ 0x64 - 8004a98: e9d7 4518 ldrd r4, r5, [r7, #96] @ 0x60 - 8004a9c: 4622 mov r2, r4 - 8004a9e: 462b mov r3, r5 - 8004aa0: f04f 0000 mov.w r0, #0 - 8004aa4: f04f 0100 mov.w r1, #0 - 8004aa8: 0159 lsls r1, r3, #5 - 8004aaa: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004aae: 0150 lsls r0, r2, #5 - 8004ab0: 4602 mov r2, r0 - 8004ab2: 460b mov r3, r1 - 8004ab4: 4621 mov r1, r4 - 8004ab6: 1a51 subs r1, r2, r1 - 8004ab8: 61b9 str r1, [r7, #24] - 8004aba: 4629 mov r1, r5 - 8004abc: eb63 0301 sbc.w r3, r3, r1 - 8004ac0: 61fb str r3, [r7, #28] - 8004ac2: f04f 0200 mov.w r2, #0 - 8004ac6: f04f 0300 mov.w r3, #0 - 8004aca: e9d7 ab06 ldrd sl, fp, [r7, #24] - 8004ace: 4659 mov r1, fp - 8004ad0: 018b lsls r3, r1, #6 - 8004ad2: 4651 mov r1, sl - 8004ad4: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004ad8: 4651 mov r1, sl - 8004ada: 018a lsls r2, r1, #6 - 8004adc: 4651 mov r1, sl - 8004ade: ebb2 0801 subs.w r8, r2, r1 - 8004ae2: 4659 mov r1, fp - 8004ae4: eb63 0901 sbc.w r9, r3, r1 - 8004ae8: f04f 0200 mov.w r2, #0 - 8004aec: f04f 0300 mov.w r3, #0 - 8004af0: ea4f 03c9 mov.w r3, r9, lsl #3 - 8004af4: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8004af8: ea4f 02c8 mov.w r2, r8, lsl #3 - 8004afc: 4690 mov r8, r2 - 8004afe: 4699 mov r9, r3 - 8004b00: 4623 mov r3, r4 - 8004b02: eb18 0303 adds.w r3, r8, r3 - 8004b06: 613b str r3, [r7, #16] - 8004b08: 462b mov r3, r5 - 8004b0a: eb49 0303 adc.w r3, r9, r3 - 8004b0e: 617b str r3, [r7, #20] - 8004b10: f04f 0200 mov.w r2, #0 - 8004b14: f04f 0300 mov.w r3, #0 - 8004b18: e9d7 4504 ldrd r4, r5, [r7, #16] - 8004b1c: 4629 mov r1, r5 - 8004b1e: 024b lsls r3, r1, #9 - 8004b20: 4621 mov r1, r4 - 8004b22: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 8004b26: 4621 mov r1, r4 - 8004b28: 024a lsls r2, r1, #9 - 8004b2a: 4610 mov r0, r2 - 8004b2c: 4619 mov r1, r3 - 8004b2e: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004b32: 2200 movs r2, #0 - 8004b34: 65bb str r3, [r7, #88] @ 0x58 - 8004b36: 65fa str r2, [r7, #92] @ 0x5c - 8004b38: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 - 8004b3c: f7fb fb62 bl 8000204 <__aeabi_uldivmod> - 8004b40: 4602 mov r2, r0 - 8004b42: 460b mov r3, r1 - 8004b44: 4613 mov r3, r2 - 8004b46: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8004b4a: e065 b.n 8004c18 - 8004b4c: 40023800 .word 0x40023800 - 8004b50: 00f42400 .word 0x00f42400 - 8004b54: 007a1200 .word 0x007a1200 + 8004ad0: 4b32 ldr r3, [pc, #200] @ (8004b9c ) + 8004ad2: 685b ldr r3, [r3, #4] + 8004ad4: 099b lsrs r3, r3, #6 + 8004ad6: 2200 movs r2, #0 + 8004ad8: 66bb str r3, [r7, #104] @ 0x68 + 8004ada: 66fa str r2, [r7, #108] @ 0x6c + 8004adc: 6ebb ldr r3, [r7, #104] @ 0x68 + 8004ade: f3c3 0308 ubfx r3, r3, #0, #9 + 8004ae2: 663b str r3, [r7, #96] @ 0x60 + 8004ae4: 2300 movs r3, #0 + 8004ae6: 667b str r3, [r7, #100] @ 0x64 + 8004ae8: e9d7 4518 ldrd r4, r5, [r7, #96] @ 0x60 + 8004aec: 4622 mov r2, r4 + 8004aee: 462b mov r3, r5 + 8004af0: f04f 0000 mov.w r0, #0 + 8004af4: f04f 0100 mov.w r1, #0 + 8004af8: 0159 lsls r1, r3, #5 + 8004afa: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004afe: 0150 lsls r0, r2, #5 + 8004b00: 4602 mov r2, r0 + 8004b02: 460b mov r3, r1 + 8004b04: 4621 mov r1, r4 + 8004b06: 1a51 subs r1, r2, r1 + 8004b08: 61b9 str r1, [r7, #24] + 8004b0a: 4629 mov r1, r5 + 8004b0c: eb63 0301 sbc.w r3, r3, r1 + 8004b10: 61fb str r3, [r7, #28] + 8004b12: f04f 0200 mov.w r2, #0 + 8004b16: f04f 0300 mov.w r3, #0 + 8004b1a: e9d7 ab06 ldrd sl, fp, [r7, #24] + 8004b1e: 4659 mov r1, fp + 8004b20: 018b lsls r3, r1, #6 + 8004b22: 4651 mov r1, sl + 8004b24: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004b28: 4651 mov r1, sl + 8004b2a: 018a lsls r2, r1, #6 + 8004b2c: 4651 mov r1, sl + 8004b2e: ebb2 0801 subs.w r8, r2, r1 + 8004b32: 4659 mov r1, fp + 8004b34: eb63 0901 sbc.w r9, r3, r1 + 8004b38: f04f 0200 mov.w r2, #0 + 8004b3c: f04f 0300 mov.w r3, #0 + 8004b40: ea4f 03c9 mov.w r3, r9, lsl #3 + 8004b44: ea43 7358 orr.w r3, r3, r8, lsr #29 + 8004b48: ea4f 02c8 mov.w r2, r8, lsl #3 + 8004b4c: 4690 mov r8, r2 + 8004b4e: 4699 mov r9, r3 + 8004b50: 4623 mov r3, r4 + 8004b52: eb18 0303 adds.w r3, r8, r3 + 8004b56: 613b str r3, [r7, #16] + 8004b58: 462b mov r3, r5 + 8004b5a: eb49 0303 adc.w r3, r9, r3 + 8004b5e: 617b str r3, [r7, #20] + 8004b60: f04f 0200 mov.w r2, #0 + 8004b64: f04f 0300 mov.w r3, #0 + 8004b68: e9d7 4504 ldrd r4, r5, [r7, #16] + 8004b6c: 4629 mov r1, r5 + 8004b6e: 024b lsls r3, r1, #9 + 8004b70: 4621 mov r1, r4 + 8004b72: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 8004b76: 4621 mov r1, r4 + 8004b78: 024a lsls r2, r1, #9 + 8004b7a: 4610 mov r0, r2 + 8004b7c: 4619 mov r1, r3 + 8004b7e: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004b82: 2200 movs r2, #0 + 8004b84: 65bb str r3, [r7, #88] @ 0x58 + 8004b86: 65fa str r2, [r7, #92] @ 0x5c + 8004b88: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 + 8004b8c: f7fb fb3a bl 8000204 <__aeabi_uldivmod> + 8004b90: 4602 mov r2, r0 + 8004b92: 460b mov r3, r1 + 8004b94: 4613 mov r3, r2 + 8004b96: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004b9a: e065 b.n 8004c68 + 8004b9c: 40023800 .word 0x40023800 + 8004ba0: 00f42400 .word 0x00f42400 + 8004ba4: 007a1200 .word 0x007a1200 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t)((((uint64_t) HSI_VALUE * ((uint64_t)((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8004b58: 4b3d ldr r3, [pc, #244] @ (8004c50 ) - 8004b5a: 685b ldr r3, [r3, #4] - 8004b5c: 099b lsrs r3, r3, #6 - 8004b5e: 2200 movs r2, #0 - 8004b60: 4618 mov r0, r3 - 8004b62: 4611 mov r1, r2 - 8004b64: f3c0 0308 ubfx r3, r0, #0, #9 - 8004b68: 653b str r3, [r7, #80] @ 0x50 - 8004b6a: 2300 movs r3, #0 - 8004b6c: 657b str r3, [r7, #84] @ 0x54 - 8004b6e: e9d7 8914 ldrd r8, r9, [r7, #80] @ 0x50 - 8004b72: 4642 mov r2, r8 - 8004b74: 464b mov r3, r9 - 8004b76: f04f 0000 mov.w r0, #0 - 8004b7a: f04f 0100 mov.w r1, #0 - 8004b7e: 0159 lsls r1, r3, #5 - 8004b80: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 8004b84: 0150 lsls r0, r2, #5 - 8004b86: 4602 mov r2, r0 - 8004b88: 460b mov r3, r1 - 8004b8a: 4641 mov r1, r8 - 8004b8c: 1a51 subs r1, r2, r1 - 8004b8e: 60b9 str r1, [r7, #8] - 8004b90: 4649 mov r1, r9 - 8004b92: eb63 0301 sbc.w r3, r3, r1 - 8004b96: 60fb str r3, [r7, #12] - 8004b98: f04f 0200 mov.w r2, #0 - 8004b9c: f04f 0300 mov.w r3, #0 - 8004ba0: e9d7 ab02 ldrd sl, fp, [r7, #8] - 8004ba4: 4659 mov r1, fp - 8004ba6: 018b lsls r3, r1, #6 - 8004ba8: 4651 mov r1, sl - 8004baa: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8004bae: 4651 mov r1, sl - 8004bb0: 018a lsls r2, r1, #6 - 8004bb2: 4651 mov r1, sl - 8004bb4: 1a54 subs r4, r2, r1 - 8004bb6: 4659 mov r1, fp - 8004bb8: eb63 0501 sbc.w r5, r3, r1 - 8004bbc: f04f 0200 mov.w r2, #0 - 8004bc0: f04f 0300 mov.w r3, #0 - 8004bc4: 00eb lsls r3, r5, #3 - 8004bc6: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8004bca: 00e2 lsls r2, r4, #3 - 8004bcc: 4614 mov r4, r2 - 8004bce: 461d mov r5, r3 - 8004bd0: 4643 mov r3, r8 - 8004bd2: 18e3 adds r3, r4, r3 - 8004bd4: 603b str r3, [r7, #0] - 8004bd6: 464b mov r3, r9 - 8004bd8: eb45 0303 adc.w r3, r5, r3 - 8004bdc: 607b str r3, [r7, #4] - 8004bde: f04f 0200 mov.w r2, #0 - 8004be2: f04f 0300 mov.w r3, #0 - 8004be6: e9d7 4500 ldrd r4, r5, [r7] - 8004bea: 4629 mov r1, r5 - 8004bec: 028b lsls r3, r1, #10 - 8004bee: 4621 mov r1, r4 - 8004bf0: ea43 5391 orr.w r3, r3, r1, lsr #22 - 8004bf4: 4621 mov r1, r4 - 8004bf6: 028a lsls r2, r1, #10 - 8004bf8: 4610 mov r0, r2 - 8004bfa: 4619 mov r1, r3 - 8004bfc: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac - 8004c00: 2200 movs r2, #0 - 8004c02: 64bb str r3, [r7, #72] @ 0x48 - 8004c04: 64fa str r2, [r7, #76] @ 0x4c - 8004c06: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 - 8004c0a: f7fb fafb bl 8000204 <__aeabi_uldivmod> - 8004c0e: 4602 mov r2, r0 - 8004c10: 460b mov r3, r1 - 8004c12: 4613 mov r3, r2 - 8004c14: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8004ba8: 4b3d ldr r3, [pc, #244] @ (8004ca0 ) + 8004baa: 685b ldr r3, [r3, #4] + 8004bac: 099b lsrs r3, r3, #6 + 8004bae: 2200 movs r2, #0 + 8004bb0: 4618 mov r0, r3 + 8004bb2: 4611 mov r1, r2 + 8004bb4: f3c0 0308 ubfx r3, r0, #0, #9 + 8004bb8: 653b str r3, [r7, #80] @ 0x50 + 8004bba: 2300 movs r3, #0 + 8004bbc: 657b str r3, [r7, #84] @ 0x54 + 8004bbe: e9d7 8914 ldrd r8, r9, [r7, #80] @ 0x50 + 8004bc2: 4642 mov r2, r8 + 8004bc4: 464b mov r3, r9 + 8004bc6: f04f 0000 mov.w r0, #0 + 8004bca: f04f 0100 mov.w r1, #0 + 8004bce: 0159 lsls r1, r3, #5 + 8004bd0: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8004bd4: 0150 lsls r0, r2, #5 + 8004bd6: 4602 mov r2, r0 + 8004bd8: 460b mov r3, r1 + 8004bda: 4641 mov r1, r8 + 8004bdc: 1a51 subs r1, r2, r1 + 8004bde: 60b9 str r1, [r7, #8] + 8004be0: 4649 mov r1, r9 + 8004be2: eb63 0301 sbc.w r3, r3, r1 + 8004be6: 60fb str r3, [r7, #12] + 8004be8: f04f 0200 mov.w r2, #0 + 8004bec: f04f 0300 mov.w r3, #0 + 8004bf0: e9d7 ab02 ldrd sl, fp, [r7, #8] + 8004bf4: 4659 mov r1, fp + 8004bf6: 018b lsls r3, r1, #6 + 8004bf8: 4651 mov r1, sl + 8004bfa: ea43 6391 orr.w r3, r3, r1, lsr #26 + 8004bfe: 4651 mov r1, sl + 8004c00: 018a lsls r2, r1, #6 + 8004c02: 4651 mov r1, sl + 8004c04: 1a54 subs r4, r2, r1 + 8004c06: 4659 mov r1, fp + 8004c08: eb63 0501 sbc.w r5, r3, r1 + 8004c0c: f04f 0200 mov.w r2, #0 + 8004c10: f04f 0300 mov.w r3, #0 + 8004c14: 00eb lsls r3, r5, #3 + 8004c16: ea43 7354 orr.w r3, r3, r4, lsr #29 + 8004c1a: 00e2 lsls r2, r4, #3 + 8004c1c: 4614 mov r4, r2 + 8004c1e: 461d mov r5, r3 + 8004c20: 4643 mov r3, r8 + 8004c22: 18e3 adds r3, r4, r3 + 8004c24: 603b str r3, [r7, #0] + 8004c26: 464b mov r3, r9 + 8004c28: eb45 0303 adc.w r3, r5, r3 + 8004c2c: 607b str r3, [r7, #4] + 8004c2e: f04f 0200 mov.w r2, #0 + 8004c32: f04f 0300 mov.w r3, #0 + 8004c36: e9d7 4500 ldrd r4, r5, [r7] + 8004c3a: 4629 mov r1, r5 + 8004c3c: 028b lsls r3, r1, #10 + 8004c3e: 4621 mov r1, r4 + 8004c40: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8004c44: 4621 mov r1, r4 + 8004c46: 028a lsls r2, r1, #10 + 8004c48: 4610 mov r0, r2 + 8004c4a: 4619 mov r1, r3 + 8004c4c: f8d7 30ac ldr.w r3, [r7, #172] @ 0xac + 8004c50: 2200 movs r2, #0 + 8004c52: 64bb str r3, [r7, #72] @ 0x48 + 8004c54: 64fa str r2, [r7, #76] @ 0x4c + 8004c56: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 + 8004c5a: f7fb fad3 bl 8000204 <__aeabi_uldivmod> + 8004c5e: 4602 mov r2, r0 + 8004c60: 460b mov r3, r1 + 8004c62: 4613 mov r3, r2 + 8004c64: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 } pllr = ((RCC->PLLCFGR & RCC_PLLCFGR_PLLR) >> RCC_PLLCFGR_PLLR_Pos); - 8004c18: 4b0d ldr r3, [pc, #52] @ (8004c50 ) - 8004c1a: 685b ldr r3, [r3, #4] - 8004c1c: 0f1b lsrs r3, r3, #28 - 8004c1e: f003 0307 and.w r3, r3, #7 - 8004c22: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 8004c68: 4b0d ldr r3, [pc, #52] @ (8004ca0 ) + 8004c6a: 685b ldr r3, [r3, #4] + 8004c6c: 0f1b lsrs r3, r3, #28 + 8004c6e: f003 0307 and.w r3, r3, #7 + 8004c72: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 sysclockfreq = pllvco / pllr; - 8004c26: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8004c2a: f8d7 30a4 ldr.w r3, [r7, #164] @ 0xa4 - 8004c2e: fbb2 f3f3 udiv r3, r2, r3 - 8004c32: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004c76: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 8004c7a: f8d7 30a4 ldr.w r3, [r7, #164] @ 0xa4 + 8004c7e: fbb2 f3f3 udiv r3, r2, r3 + 8004c82: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004c36: e003 b.n 8004c40 + 8004c86: e003 b.n 8004c90 } default: { sysclockfreq = HSI_VALUE; - 8004c38: 4b06 ldr r3, [pc, #24] @ (8004c54 ) - 8004c3a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8004c88: 4b06 ldr r3, [pc, #24] @ (8004ca4 ) + 8004c8a: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 break; - 8004c3e: bf00 nop + 8004c8e: bf00 nop } } return sysclockfreq; - 8004c40: f8d7 30b0 ldr.w r3, [r7, #176] @ 0xb0 + 8004c90: f8d7 30b0 ldr.w r3, [r7, #176] @ 0xb0 } - 8004c44: 4618 mov r0, r3 - 8004c46: 37b8 adds r7, #184 @ 0xb8 - 8004c48: 46bd mov sp, r7 - 8004c4a: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8004c4e: bf00 nop - 8004c50: 40023800 .word 0x40023800 - 8004c54: 00f42400 .word 0x00f42400 + 8004c94: 4618 mov r0, r3 + 8004c96: 37b8 adds r7, #184 @ 0xb8 + 8004c98: 46bd mov sp, r7 + 8004c9a: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8004c9e: bf00 nop + 8004ca0: 40023800 .word 0x40023800 + 8004ca4: 00f42400 .word 0x00f42400 -08004c58 : +08004ca8 : * @note This function add the PLL/PLLR factor management during PLL configuration this feature * is only available in STM32F410xx/STM32F446xx/STM32F469xx/STM32F479xx/STM32F412Zx/STM32F412Vx/STM32F412Rx/STM32F412Cx devices * @retval HAL status */ HAL_StatusTypeDef HAL_RCC_OscConfig(const RCC_OscInitTypeDef *RCC_OscInitStruct) { - 8004c58: b580 push {r7, lr} - 8004c5a: b086 sub sp, #24 - 8004c5c: af00 add r7, sp, #0 - 8004c5e: 6078 str r0, [r7, #4] + 8004ca8: b580 push {r7, lr} + 8004caa: b086 sub sp, #24 + 8004cac: af00 add r7, sp, #0 + 8004cae: 6078 str r0, [r7, #4] uint32_t tickstart; uint32_t pll_config; /* Check Null pointer */ if (RCC_OscInitStruct == NULL) - 8004c60: 687b ldr r3, [r7, #4] - 8004c62: 2b00 cmp r3, #0 - 8004c64: d101 bne.n 8004c6a + 8004cb0: 687b ldr r3, [r7, #4] + 8004cb2: 2b00 cmp r3, #0 + 8004cb4: d101 bne.n 8004cba { return HAL_ERROR; - 8004c66: 2301 movs r3, #1 - 8004c68: e28d b.n 8005186 + 8004cb6: 2301 movs r3, #1 + 8004cb8: e28d b.n 80051d6 } /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 8004c6a: 687b ldr r3, [r7, #4] - 8004c6c: 681b ldr r3, [r3, #0] - 8004c6e: f003 0301 and.w r3, r3, #1 - 8004c72: 2b00 cmp r3, #0 - 8004c74: f000 8083 beq.w 8004d7e + 8004cba: 687b ldr r3, [r7, #4] + 8004cbc: 681b ldr r3, [r3, #0] + 8004cbe: f003 0301 and.w r3, r3, #1 + 8004cc2: 2b00 cmp r3, #0 + 8004cc4: f000 8083 beq.w 8004dce { /* Check the parameters */ assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); /* When the HSE is used as system clock or clock source for PLL in these cases HSE will not disabled */ #if defined(STM32F446xx) if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) - 8004c78: 4b94 ldr r3, [pc, #592] @ (8004ecc ) - 8004c7a: 689b ldr r3, [r3, #8] - 8004c7c: f003 030c and.w r3, r3, #12 - 8004c80: 2b04 cmp r3, #4 - 8004c82: d019 beq.n 8004cb8 + 8004cc8: 4b94 ldr r3, [pc, #592] @ (8004f1c ) + 8004cca: 689b ldr r3, [r3, #8] + 8004ccc: f003 030c and.w r3, r3, #12 + 8004cd0: 2b04 cmp r3, #4 + 8004cd2: d019 beq.n 8004d08 || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004c84: 4b91 ldr r3, [pc, #580] @ (8004ecc ) - 8004c86: 689b ldr r3, [r3, #8] - 8004c88: f003 030c and.w r3, r3, #12 + 8004cd4: 4b91 ldr r3, [pc, #580] @ (8004f1c ) + 8004cd6: 689b ldr r3, [r3, #8] + 8004cd8: f003 030c and.w r3, r3, #12 || \ - 8004c8c: 2b08 cmp r3, #8 - 8004c8e: d106 bne.n 8004c9e + 8004cdc: 2b08 cmp r3, #8 + 8004cde: d106 bne.n 8004cee ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004c90: 4b8e ldr r3, [pc, #568] @ (8004ecc ) - 8004c92: 685b ldr r3, [r3, #4] - 8004c94: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004c98: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004c9c: d00c beq.n 8004cb8 + 8004ce0: 4b8e ldr r3, [pc, #568] @ (8004f1c ) + 8004ce2: 685b ldr r3, [r3, #4] + 8004ce4: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004ce8: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 8004cec: d00c beq.n 8004d08 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8004c9e: 4b8b ldr r3, [pc, #556] @ (8004ecc ) - 8004ca0: 689b ldr r3, [r3, #8] - 8004ca2: f003 030c and.w r3, r3, #12 + 8004cee: 4b8b ldr r3, [pc, #556] @ (8004f1c ) + 8004cf0: 689b ldr r3, [r3, #8] + 8004cf2: f003 030c and.w r3, r3, #12 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE)) || \ - 8004ca6: 2b0c cmp r3, #12 - 8004ca8: d112 bne.n 8004cd0 + 8004cf6: 2b0c cmp r3, #12 + 8004cf8: d112 bne.n 8004d20 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 8004caa: 4b88 ldr r3, [pc, #544] @ (8004ecc ) - 8004cac: 685b ldr r3, [r3, #4] - 8004cae: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004cb2: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 - 8004cb6: d10b bne.n 8004cd0 + 8004cfa: 4b88 ldr r3, [pc, #544] @ (8004f1c ) + 8004cfc: 685b ldr r3, [r3, #4] + 8004cfe: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004d02: f5b3 0f80 cmp.w r3, #4194304 @ 0x400000 + 8004d06: d10b bne.n 8004d20 if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) #endif /* STM32F446xx */ { if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8004cb8: 4b84 ldr r3, [pc, #528] @ (8004ecc ) - 8004cba: 681b ldr r3, [r3, #0] - 8004cbc: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004cc0: 2b00 cmp r3, #0 - 8004cc2: d05b beq.n 8004d7c - 8004cc4: 687b ldr r3, [r7, #4] - 8004cc6: 685b ldr r3, [r3, #4] - 8004cc8: 2b00 cmp r3, #0 - 8004cca: d157 bne.n 8004d7c + 8004d08: 4b84 ldr r3, [pc, #528] @ (8004f1c ) + 8004d0a: 681b ldr r3, [r3, #0] + 8004d0c: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8004d10: 2b00 cmp r3, #0 + 8004d12: d05b beq.n 8004dcc + 8004d14: 687b ldr r3, [r7, #4] + 8004d16: 685b ldr r3, [r3, #4] + 8004d18: 2b00 cmp r3, #0 + 8004d1a: d157 bne.n 8004dcc { return HAL_ERROR; - 8004ccc: 2301 movs r3, #1 - 8004cce: e25a b.n 8005186 + 8004d1c: 2301 movs r3, #1 + 8004d1e: e25a b.n 80051d6 } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8004cd0: 687b ldr r3, [r7, #4] - 8004cd2: 685b ldr r3, [r3, #4] - 8004cd4: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 - 8004cd8: d106 bne.n 8004ce8 - 8004cda: 4b7c ldr r3, [pc, #496] @ (8004ecc ) - 8004cdc: 681b ldr r3, [r3, #0] - 8004cde: 4a7b ldr r2, [pc, #492] @ (8004ecc ) - 8004ce0: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 8004ce4: 6013 str r3, [r2, #0] - 8004ce6: e01d b.n 8004d24 - 8004ce8: 687b ldr r3, [r7, #4] - 8004cea: 685b ldr r3, [r3, #4] - 8004cec: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 - 8004cf0: d10c bne.n 8004d0c - 8004cf2: 4b76 ldr r3, [pc, #472] @ (8004ecc ) - 8004cf4: 681b ldr r3, [r3, #0] - 8004cf6: 4a75 ldr r2, [pc, #468] @ (8004ecc ) - 8004cf8: f443 2380 orr.w r3, r3, #262144 @ 0x40000 - 8004cfc: 6013 str r3, [r2, #0] - 8004cfe: 4b73 ldr r3, [pc, #460] @ (8004ecc ) - 8004d00: 681b ldr r3, [r3, #0] - 8004d02: 4a72 ldr r2, [pc, #456] @ (8004ecc ) - 8004d04: f443 3380 orr.w r3, r3, #65536 @ 0x10000 - 8004d08: 6013 str r3, [r2, #0] - 8004d0a: e00b b.n 8004d24 - 8004d0c: 4b6f ldr r3, [pc, #444] @ (8004ecc ) - 8004d0e: 681b ldr r3, [r3, #0] - 8004d10: 4a6e ldr r2, [pc, #440] @ (8004ecc ) - 8004d12: f423 3380 bic.w r3, r3, #65536 @ 0x10000 - 8004d16: 6013 str r3, [r2, #0] - 8004d18: 4b6c ldr r3, [pc, #432] @ (8004ecc ) - 8004d1a: 681b ldr r3, [r3, #0] - 8004d1c: 4a6b ldr r2, [pc, #428] @ (8004ecc ) - 8004d1e: f423 2380 bic.w r3, r3, #262144 @ 0x40000 - 8004d22: 6013 str r3, [r2, #0] + 8004d20: 687b ldr r3, [r7, #4] + 8004d22: 685b ldr r3, [r3, #4] + 8004d24: f5b3 3f80 cmp.w r3, #65536 @ 0x10000 + 8004d28: d106 bne.n 8004d38 + 8004d2a: 4b7c ldr r3, [pc, #496] @ (8004f1c ) + 8004d2c: 681b ldr r3, [r3, #0] + 8004d2e: 4a7b ldr r2, [pc, #492] @ (8004f1c ) + 8004d30: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 8004d34: 6013 str r3, [r2, #0] + 8004d36: e01d b.n 8004d74 + 8004d38: 687b ldr r3, [r7, #4] + 8004d3a: 685b ldr r3, [r3, #4] + 8004d3c: f5b3 2fa0 cmp.w r3, #327680 @ 0x50000 + 8004d40: d10c bne.n 8004d5c + 8004d42: 4b76 ldr r3, [pc, #472] @ (8004f1c ) + 8004d44: 681b ldr r3, [r3, #0] + 8004d46: 4a75 ldr r2, [pc, #468] @ (8004f1c ) + 8004d48: f443 2380 orr.w r3, r3, #262144 @ 0x40000 + 8004d4c: 6013 str r3, [r2, #0] + 8004d4e: 4b73 ldr r3, [pc, #460] @ (8004f1c ) + 8004d50: 681b ldr r3, [r3, #0] + 8004d52: 4a72 ldr r2, [pc, #456] @ (8004f1c ) + 8004d54: f443 3380 orr.w r3, r3, #65536 @ 0x10000 + 8004d58: 6013 str r3, [r2, #0] + 8004d5a: e00b b.n 8004d74 + 8004d5c: 4b6f ldr r3, [pc, #444] @ (8004f1c ) + 8004d5e: 681b ldr r3, [r3, #0] + 8004d60: 4a6e ldr r2, [pc, #440] @ (8004f1c ) + 8004d62: f423 3380 bic.w r3, r3, #65536 @ 0x10000 + 8004d66: 6013 str r3, [r2, #0] + 8004d68: 4b6c ldr r3, [pc, #432] @ (8004f1c ) + 8004d6a: 681b ldr r3, [r3, #0] + 8004d6c: 4a6b ldr r2, [pc, #428] @ (8004f1c ) + 8004d6e: f423 2380 bic.w r3, r3, #262144 @ 0x40000 + 8004d72: 6013 str r3, [r2, #0] /* Check the HSE State */ if ((RCC_OscInitStruct->HSEState) != RCC_HSE_OFF) - 8004d24: 687b ldr r3, [r7, #4] - 8004d26: 685b ldr r3, [r3, #4] - 8004d28: 2b00 cmp r3, #0 - 8004d2a: d013 beq.n 8004d54 + 8004d74: 687b ldr r3, [r7, #4] + 8004d76: 685b ldr r3, [r3, #4] + 8004d78: 2b00 cmp r3, #0 + 8004d7a: d013 beq.n 8004da4 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004d2c: f7fc fe4c bl 80019c8 - 8004d30: 6138 str r0, [r7, #16] + 8004d7c: f7fc fe4c bl 8001a18 + 8004d80: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8004d32: e008 b.n 8004d46 + 8004d82: e008 b.n 8004d96 { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8004d34: f7fc fe48 bl 80019c8 - 8004d38: 4602 mov r2, r0 - 8004d3a: 693b ldr r3, [r7, #16] - 8004d3c: 1ad3 subs r3, r2, r3 - 8004d3e: 2b64 cmp r3, #100 @ 0x64 - 8004d40: d901 bls.n 8004d46 + 8004d84: f7fc fe48 bl 8001a18 + 8004d88: 4602 mov r2, r0 + 8004d8a: 693b ldr r3, [r7, #16] + 8004d8c: 1ad3 subs r3, r2, r3 + 8004d8e: 2b64 cmp r3, #100 @ 0x64 + 8004d90: d901 bls.n 8004d96 { return HAL_TIMEOUT; - 8004d42: 2303 movs r3, #3 - 8004d44: e21f b.n 8005186 + 8004d92: 2303 movs r3, #3 + 8004d94: e21f b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 8004d46: 4b61 ldr r3, [pc, #388] @ (8004ecc ) - 8004d48: 681b ldr r3, [r3, #0] - 8004d4a: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004d4e: 2b00 cmp r3, #0 - 8004d50: d0f0 beq.n 8004d34 - 8004d52: e014 b.n 8004d7e + 8004d96: 4b61 ldr r3, [pc, #388] @ (8004f1c ) + 8004d98: 681b ldr r3, [r3, #0] + 8004d9a: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8004d9e: 2b00 cmp r3, #0 + 8004da0: d0f0 beq.n 8004d84 + 8004da2: e014 b.n 8004dce } } else { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004d54: f7fc fe38 bl 80019c8 - 8004d58: 6138 str r0, [r7, #16] + 8004da4: f7fc fe38 bl 8001a18 + 8004da8: 6138 str r0, [r7, #16] /* Wait till HSE is bypassed or disabled */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8004d5a: e008 b.n 8004d6e + 8004daa: e008 b.n 8004dbe { if ((HAL_GetTick() - tickstart) > HSE_TIMEOUT_VALUE) - 8004d5c: f7fc fe34 bl 80019c8 - 8004d60: 4602 mov r2, r0 - 8004d62: 693b ldr r3, [r7, #16] - 8004d64: 1ad3 subs r3, r2, r3 - 8004d66: 2b64 cmp r3, #100 @ 0x64 - 8004d68: d901 bls.n 8004d6e + 8004dac: f7fc fe34 bl 8001a18 + 8004db0: 4602 mov r2, r0 + 8004db2: 693b ldr r3, [r7, #16] + 8004db4: 1ad3 subs r3, r2, r3 + 8004db6: 2b64 cmp r3, #100 @ 0x64 + 8004db8: d901 bls.n 8004dbe { return HAL_TIMEOUT; - 8004d6a: 2303 movs r3, #3 - 8004d6c: e20b b.n 8005186 + 8004dba: 2303 movs r3, #3 + 8004dbc: e20b b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 8004d6e: 4b57 ldr r3, [pc, #348] @ (8004ecc ) - 8004d70: 681b ldr r3, [r3, #0] - 8004d72: f403 3300 and.w r3, r3, #131072 @ 0x20000 - 8004d76: 2b00 cmp r3, #0 - 8004d78: d1f0 bne.n 8004d5c - 8004d7a: e000 b.n 8004d7e + 8004dbe: 4b57 ldr r3, [pc, #348] @ (8004f1c ) + 8004dc0: 681b ldr r3, [r3, #0] + 8004dc2: f403 3300 and.w r3, r3, #131072 @ 0x20000 + 8004dc6: 2b00 cmp r3, #0 + 8004dc8: d1f0 bne.n 8004dac + 8004dca: e000 b.n 8004dce if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8004d7c: bf00 nop + 8004dcc: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 8004d7e: 687b ldr r3, [r7, #4] - 8004d80: 681b ldr r3, [r3, #0] - 8004d82: f003 0302 and.w r3, r3, #2 - 8004d86: 2b00 cmp r3, #0 - 8004d88: d06f beq.n 8004e6a + 8004dce: 687b ldr r3, [r7, #4] + 8004dd0: 681b ldr r3, [r3, #0] + 8004dd2: f003 0302 and.w r3, r3, #2 + 8004dd6: 2b00 cmp r3, #0 + 8004dd8: d06f beq.n 8004eba 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 defined(STM32F446xx) if ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSI) - 8004d8a: 4b50 ldr r3, [pc, #320] @ (8004ecc ) - 8004d8c: 689b ldr r3, [r3, #8] - 8004d8e: f003 030c and.w r3, r3, #12 - 8004d92: 2b00 cmp r3, #0 - 8004d94: d017 beq.n 8004dc6 + 8004dda: 4b50 ldr r3, [pc, #320] @ (8004f1c ) + 8004ddc: 689b ldr r3, [r3, #8] + 8004dde: f003 030c and.w r3, r3, #12 + 8004de2: 2b00 cmp r3, #0 + 8004de4: d017 beq.n 8004e16 || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004d96: 4b4d ldr r3, [pc, #308] @ (8004ecc ) - 8004d98: 689b ldr r3, [r3, #8] - 8004d9a: f003 030c and.w r3, r3, #12 + 8004de6: 4b4d ldr r3, [pc, #308] @ (8004f1c ) + 8004de8: 689b ldr r3, [r3, #8] + 8004dea: f003 030c and.w r3, r3, #12 || \ - 8004d9e: 2b08 cmp r3, #8 - 8004da0: d105 bne.n 8004dae + 8004dee: 2b08 cmp r3, #8 + 8004df0: d105 bne.n 8004dfe ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004da2: 4b4a ldr r3, [pc, #296] @ (8004ecc ) - 8004da4: 685b ldr r3, [r3, #4] - 8004da6: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004daa: 2b00 cmp r3, #0 - 8004dac: d00b beq.n 8004dc6 + 8004df2: 4b4a ldr r3, [pc, #296] @ (8004f1c ) + 8004df4: 685b ldr r3, [r3, #4] + 8004df6: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004dfa: 2b00 cmp r3, #0 + 8004dfc: d00b beq.n 8004e16 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8004dae: 4b47 ldr r3, [pc, #284] @ (8004ecc ) - 8004db0: 689b ldr r3, [r3, #8] - 8004db2: f003 030c and.w r3, r3, #12 + 8004dfe: 4b47 ldr r3, [pc, #284] @ (8004f1c ) + 8004e00: 689b ldr r3, [r3, #8] + 8004e02: f003 030c and.w r3, r3, #12 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI)) || \ - 8004db6: 2b0c cmp r3, #12 - 8004db8: d11c bne.n 8004df4 + 8004e06: 2b0c cmp r3, #12 + 8004e08: d11c bne.n 8004e44 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLLR) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 8004dba: 4b44 ldr r3, [pc, #272] @ (8004ecc ) - 8004dbc: 685b ldr r3, [r3, #4] - 8004dbe: f403 0380 and.w r3, r3, #4194304 @ 0x400000 - 8004dc2: 2b00 cmp r3, #0 - 8004dc4: d116 bne.n 8004df4 + 8004e0a: 4b44 ldr r3, [pc, #272] @ (8004f1c ) + 8004e0c: 685b ldr r3, [r3, #4] + 8004e0e: f403 0380 and.w r3, r3, #4194304 @ 0x400000 + 8004e12: 2b00 cmp r3, #0 + 8004e14: d116 bne.n 8004e44 || \ ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) #endif /* STM32F446xx */ { /* 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)) - 8004dc6: 4b41 ldr r3, [pc, #260] @ (8004ecc ) - 8004dc8: 681b ldr r3, [r3, #0] - 8004dca: f003 0302 and.w r3, r3, #2 - 8004dce: 2b00 cmp r3, #0 - 8004dd0: d005 beq.n 8004dde - 8004dd2: 687b ldr r3, [r7, #4] - 8004dd4: 68db ldr r3, [r3, #12] - 8004dd6: 2b01 cmp r3, #1 - 8004dd8: d001 beq.n 8004dde + 8004e16: 4b41 ldr r3, [pc, #260] @ (8004f1c ) + 8004e18: 681b ldr r3, [r3, #0] + 8004e1a: f003 0302 and.w r3, r3, #2 + 8004e1e: 2b00 cmp r3, #0 + 8004e20: d005 beq.n 8004e2e + 8004e22: 687b ldr r3, [r7, #4] + 8004e24: 68db ldr r3, [r3, #12] + 8004e26: 2b01 cmp r3, #1 + 8004e28: d001 beq.n 8004e2e { return HAL_ERROR; - 8004dda: 2301 movs r3, #1 - 8004ddc: e1d3 b.n 8005186 + 8004e2a: 2301 movs r3, #1 + 8004e2c: e1d3 b.n 80051d6 } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8004dde: 4b3b ldr r3, [pc, #236] @ (8004ecc ) - 8004de0: 681b ldr r3, [r3, #0] - 8004de2: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 8004de6: 687b ldr r3, [r7, #4] - 8004de8: 691b ldr r3, [r3, #16] - 8004dea: 00db lsls r3, r3, #3 - 8004dec: 4937 ldr r1, [pc, #220] @ (8004ecc ) - 8004dee: 4313 orrs r3, r2 - 8004df0: 600b str r3, [r1, #0] + 8004e2e: 4b3b ldr r3, [pc, #236] @ (8004f1c ) + 8004e30: 681b ldr r3, [r3, #0] + 8004e32: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 8004e36: 687b ldr r3, [r7, #4] + 8004e38: 691b ldr r3, [r3, #16] + 8004e3a: 00db lsls r3, r3, #3 + 8004e3c: 4937 ldr r1, [pc, #220] @ (8004f1c ) + 8004e3e: 4313 orrs r3, r2 + 8004e40: 600b str r3, [r1, #0] if ((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8004df2: e03a b.n 8004e6a + 8004e42: e03a b.n 8004eba } } else { /* Check the HSI State */ if ((RCC_OscInitStruct->HSIState) != RCC_HSI_OFF) - 8004df4: 687b ldr r3, [r7, #4] - 8004df6: 68db ldr r3, [r3, #12] - 8004df8: 2b00 cmp r3, #0 - 8004dfa: d020 beq.n 8004e3e + 8004e44: 687b ldr r3, [r7, #4] + 8004e46: 68db ldr r3, [r3, #12] + 8004e48: 2b00 cmp r3, #0 + 8004e4a: d020 beq.n 8004e8e { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 8004dfc: 4b34 ldr r3, [pc, #208] @ (8004ed0 ) - 8004dfe: 2201 movs r2, #1 - 8004e00: 601a str r2, [r3, #0] + 8004e4c: 4b34 ldr r3, [pc, #208] @ (8004f20 ) + 8004e4e: 2201 movs r2, #1 + 8004e50: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004e02: f7fc fde1 bl 80019c8 - 8004e06: 6138 str r0, [r7, #16] + 8004e52: f7fc fde1 bl 8001a18 + 8004e56: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8004e08: e008 b.n 8004e1c + 8004e58: e008 b.n 8004e6c { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8004e0a: f7fc fddd bl 80019c8 - 8004e0e: 4602 mov r2, r0 - 8004e10: 693b ldr r3, [r7, #16] - 8004e12: 1ad3 subs r3, r2, r3 - 8004e14: 2b02 cmp r3, #2 - 8004e16: d901 bls.n 8004e1c + 8004e5a: f7fc fddd bl 8001a18 + 8004e5e: 4602 mov r2, r0 + 8004e60: 693b ldr r3, [r7, #16] + 8004e62: 1ad3 subs r3, r2, r3 + 8004e64: 2b02 cmp r3, #2 + 8004e66: d901 bls.n 8004e6c { return HAL_TIMEOUT; - 8004e18: 2303 movs r3, #3 - 8004e1a: e1b4 b.n 8005186 + 8004e68: 2303 movs r3, #3 + 8004e6a: e1b4 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8004e1c: 4b2b ldr r3, [pc, #172] @ (8004ecc ) - 8004e1e: 681b ldr r3, [r3, #0] - 8004e20: f003 0302 and.w r3, r3, #2 - 8004e24: 2b00 cmp r3, #0 - 8004e26: d0f0 beq.n 8004e0a + 8004e6c: 4b2b ldr r3, [pc, #172] @ (8004f1c ) + 8004e6e: 681b ldr r3, [r3, #0] + 8004e70: f003 0302 and.w r3, r3, #2 + 8004e74: 2b00 cmp r3, #0 + 8004e76: d0f0 beq.n 8004e5a } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8004e28: 4b28 ldr r3, [pc, #160] @ (8004ecc ) - 8004e2a: 681b ldr r3, [r3, #0] - 8004e2c: f023 02f8 bic.w r2, r3, #248 @ 0xf8 - 8004e30: 687b ldr r3, [r7, #4] - 8004e32: 691b ldr r3, [r3, #16] - 8004e34: 00db lsls r3, r3, #3 - 8004e36: 4925 ldr r1, [pc, #148] @ (8004ecc ) - 8004e38: 4313 orrs r3, r2 - 8004e3a: 600b str r3, [r1, #0] - 8004e3c: e015 b.n 8004e6a + 8004e78: 4b28 ldr r3, [pc, #160] @ (8004f1c ) + 8004e7a: 681b ldr r3, [r3, #0] + 8004e7c: f023 02f8 bic.w r2, r3, #248 @ 0xf8 + 8004e80: 687b ldr r3, [r7, #4] + 8004e82: 691b ldr r3, [r3, #16] + 8004e84: 00db lsls r3, r3, #3 + 8004e86: 4925 ldr r1, [pc, #148] @ (8004f1c ) + 8004e88: 4313 orrs r3, r2 + 8004e8a: 600b str r3, [r1, #0] + 8004e8c: e015 b.n 8004eba } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 8004e3e: 4b24 ldr r3, [pc, #144] @ (8004ed0 ) - 8004e40: 2200 movs r2, #0 - 8004e42: 601a str r2, [r3, #0] + 8004e8e: 4b24 ldr r3, [pc, #144] @ (8004f20 ) + 8004e90: 2200 movs r2, #0 + 8004e92: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004e44: f7fc fdc0 bl 80019c8 - 8004e48: 6138 str r0, [r7, #16] + 8004e94: f7fc fdc0 bl 8001a18 + 8004e98: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8004e4a: e008 b.n 8004e5e + 8004e9a: e008 b.n 8004eae { if ((HAL_GetTick() - tickstart) > HSI_TIMEOUT_VALUE) - 8004e4c: f7fc fdbc bl 80019c8 - 8004e50: 4602 mov r2, r0 - 8004e52: 693b ldr r3, [r7, #16] - 8004e54: 1ad3 subs r3, r2, r3 - 8004e56: 2b02 cmp r3, #2 - 8004e58: d901 bls.n 8004e5e + 8004e9c: f7fc fdbc bl 8001a18 + 8004ea0: 4602 mov r2, r0 + 8004ea2: 693b ldr r3, [r7, #16] + 8004ea4: 1ad3 subs r3, r2, r3 + 8004ea6: 2b02 cmp r3, #2 + 8004ea8: d901 bls.n 8004eae { return HAL_TIMEOUT; - 8004e5a: 2303 movs r3, #3 - 8004e5c: e193 b.n 8005186 + 8004eaa: 2303 movs r3, #3 + 8004eac: e193 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 8004e5e: 4b1b ldr r3, [pc, #108] @ (8004ecc ) - 8004e60: 681b ldr r3, [r3, #0] - 8004e62: f003 0302 and.w r3, r3, #2 - 8004e66: 2b00 cmp r3, #0 - 8004e68: d1f0 bne.n 8004e4c + 8004eae: 4b1b ldr r3, [pc, #108] @ (8004f1c ) + 8004eb0: 681b ldr r3, [r3, #0] + 8004eb2: f003 0302 and.w r3, r3, #2 + 8004eb6: 2b00 cmp r3, #0 + 8004eb8: d1f0 bne.n 8004e9c } } } } /*------------------------------ LSI Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 8004e6a: 687b ldr r3, [r7, #4] - 8004e6c: 681b ldr r3, [r3, #0] - 8004e6e: f003 0308 and.w r3, r3, #8 - 8004e72: 2b00 cmp r3, #0 - 8004e74: d036 beq.n 8004ee4 + 8004eba: 687b ldr r3, [r7, #4] + 8004ebc: 681b ldr r3, [r3, #0] + 8004ebe: f003 0308 and.w r3, r3, #8 + 8004ec2: 2b00 cmp r3, #0 + 8004ec4: d036 beq.n 8004f34 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if ((RCC_OscInitStruct->LSIState) != RCC_LSI_OFF) - 8004e76: 687b ldr r3, [r7, #4] - 8004e78: 695b ldr r3, [r3, #20] - 8004e7a: 2b00 cmp r3, #0 - 8004e7c: d016 beq.n 8004eac + 8004ec6: 687b ldr r3, [r7, #4] + 8004ec8: 695b ldr r3, [r3, #20] + 8004eca: 2b00 cmp r3, #0 + 8004ecc: d016 beq.n 8004efc { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 8004e7e: 4b15 ldr r3, [pc, #84] @ (8004ed4 ) - 8004e80: 2201 movs r2, #1 - 8004e82: 601a str r2, [r3, #0] + 8004ece: 4b15 ldr r3, [pc, #84] @ (8004f24 ) + 8004ed0: 2201 movs r2, #1 + 8004ed2: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004e84: f7fc fda0 bl 80019c8 - 8004e88: 6138 str r0, [r7, #16] + 8004ed4: f7fc fda0 bl 8001a18 + 8004ed8: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8004e8a: e008 b.n 8004e9e + 8004eda: e008 b.n 8004eee { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 8004e8c: f7fc fd9c bl 80019c8 - 8004e90: 4602 mov r2, r0 - 8004e92: 693b ldr r3, [r7, #16] - 8004e94: 1ad3 subs r3, r2, r3 - 8004e96: 2b02 cmp r3, #2 - 8004e98: d901 bls.n 8004e9e + 8004edc: f7fc fd9c bl 8001a18 + 8004ee0: 4602 mov r2, r0 + 8004ee2: 693b ldr r3, [r7, #16] + 8004ee4: 1ad3 subs r3, r2, r3 + 8004ee6: 2b02 cmp r3, #2 + 8004ee8: d901 bls.n 8004eee { return HAL_TIMEOUT; - 8004e9a: 2303 movs r3, #3 - 8004e9c: e173 b.n 8005186 + 8004eea: 2303 movs r3, #3 + 8004eec: e173 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 8004e9e: 4b0b ldr r3, [pc, #44] @ (8004ecc ) - 8004ea0: 6f5b ldr r3, [r3, #116] @ 0x74 - 8004ea2: f003 0302 and.w r3, r3, #2 - 8004ea6: 2b00 cmp r3, #0 - 8004ea8: d0f0 beq.n 8004e8c - 8004eaa: e01b b.n 8004ee4 + 8004eee: 4b0b ldr r3, [pc, #44] @ (8004f1c ) + 8004ef0: 6f5b ldr r3, [r3, #116] @ 0x74 + 8004ef2: f003 0302 and.w r3, r3, #2 + 8004ef6: 2b00 cmp r3, #0 + 8004ef8: d0f0 beq.n 8004edc + 8004efa: e01b b.n 8004f34 } } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 8004eac: 4b09 ldr r3, [pc, #36] @ (8004ed4 ) - 8004eae: 2200 movs r2, #0 - 8004eb0: 601a str r2, [r3, #0] + 8004efc: 4b09 ldr r3, [pc, #36] @ (8004f24 ) + 8004efe: 2200 movs r2, #0 + 8004f00: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004eb2: f7fc fd89 bl 80019c8 - 8004eb6: 6138 str r0, [r7, #16] + 8004f02: f7fc fd89 bl 8001a18 + 8004f06: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8004eb8: e00e b.n 8004ed8 + 8004f08: e00e b.n 8004f28 { if ((HAL_GetTick() - tickstart) > LSI_TIMEOUT_VALUE) - 8004eba: f7fc fd85 bl 80019c8 - 8004ebe: 4602 mov r2, r0 - 8004ec0: 693b ldr r3, [r7, #16] - 8004ec2: 1ad3 subs r3, r2, r3 - 8004ec4: 2b02 cmp r3, #2 - 8004ec6: d907 bls.n 8004ed8 + 8004f0a: f7fc fd85 bl 8001a18 + 8004f0e: 4602 mov r2, r0 + 8004f10: 693b ldr r3, [r7, #16] + 8004f12: 1ad3 subs r3, r2, r3 + 8004f14: 2b02 cmp r3, #2 + 8004f16: d907 bls.n 8004f28 { return HAL_TIMEOUT; - 8004ec8: 2303 movs r3, #3 - 8004eca: e15c b.n 8005186 - 8004ecc: 40023800 .word 0x40023800 - 8004ed0: 42470000 .word 0x42470000 - 8004ed4: 42470e80 .word 0x42470e80 + 8004f18: 2303 movs r3, #3 + 8004f1a: e15c b.n 80051d6 + 8004f1c: 40023800 .word 0x40023800 + 8004f20: 42470000 .word 0x42470000 + 8004f24: 42470e80 .word 0x42470e80 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8004ed8: 4b8a ldr r3, [pc, #552] @ (8005104 ) - 8004eda: 6f5b ldr r3, [r3, #116] @ 0x74 - 8004edc: f003 0302 and.w r3, r3, #2 - 8004ee0: 2b00 cmp r3, #0 - 8004ee2: d1ea bne.n 8004eba + 8004f28: 4b8a ldr r3, [pc, #552] @ (8005154 ) + 8004f2a: 6f5b ldr r3, [r3, #116] @ 0x74 + 8004f2c: f003 0302 and.w r3, r3, #2 + 8004f30: 2b00 cmp r3, #0 + 8004f32: d1ea bne.n 8004f0a } } } } /*------------------------------ LSE Configuration -------------------------*/ if (((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8004ee4: 687b ldr r3, [r7, #4] - 8004ee6: 681b ldr r3, [r3, #0] - 8004ee8: f003 0304 and.w r3, r3, #4 - 8004eec: 2b00 cmp r3, #0 - 8004eee: f000 8097 beq.w 8005020 + 8004f34: 687b ldr r3, [r7, #4] + 8004f36: 681b ldr r3, [r3, #0] + 8004f38: f003 0304 and.w r3, r3, #4 + 8004f3c: 2b00 cmp r3, #0 + 8004f3e: f000 8097 beq.w 8005070 { FlagStatus pwrclkchanged = RESET; - 8004ef2: 2300 movs r3, #0 - 8004ef4: 75fb strb r3, [r7, #23] + 8004f42: 2300 movs r3, #0 + 8004f44: 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()) - 8004ef6: 4b83 ldr r3, [pc, #524] @ (8005104 ) - 8004ef8: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004efa: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8004efe: 2b00 cmp r3, #0 - 8004f00: d10f bne.n 8004f22 + 8004f46: 4b83 ldr r3, [pc, #524] @ (8005154 ) + 8004f48: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004f4a: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8004f4e: 2b00 cmp r3, #0 + 8004f50: d10f bne.n 8004f72 { __HAL_RCC_PWR_CLK_ENABLE(); - 8004f02: 2300 movs r3, #0 - 8004f04: 60bb str r3, [r7, #8] - 8004f06: 4b7f ldr r3, [pc, #508] @ (8005104 ) - 8004f08: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004f0a: 4a7e ldr r2, [pc, #504] @ (8005104 ) - 8004f0c: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8004f10: 6413 str r3, [r2, #64] @ 0x40 - 8004f12: 4b7c ldr r3, [pc, #496] @ (8005104 ) - 8004f14: 6c1b ldr r3, [r3, #64] @ 0x40 - 8004f16: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 - 8004f1a: 60bb str r3, [r7, #8] - 8004f1c: 68bb ldr r3, [r7, #8] + 8004f52: 2300 movs r3, #0 + 8004f54: 60bb str r3, [r7, #8] + 8004f56: 4b7f ldr r3, [pc, #508] @ (8005154 ) + 8004f58: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004f5a: 4a7e ldr r2, [pc, #504] @ (8005154 ) + 8004f5c: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8004f60: 6413 str r3, [r2, #64] @ 0x40 + 8004f62: 4b7c ldr r3, [pc, #496] @ (8005154 ) + 8004f64: 6c1b ldr r3, [r3, #64] @ 0x40 + 8004f66: f003 5380 and.w r3, r3, #268435456 @ 0x10000000 + 8004f6a: 60bb str r3, [r7, #8] + 8004f6c: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 8004f1e: 2301 movs r3, #1 - 8004f20: 75fb strb r3, [r7, #23] + 8004f6e: 2301 movs r3, #1 + 8004f70: 75fb strb r3, [r7, #23] } if (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8004f22: 4b79 ldr r3, [pc, #484] @ (8005108 ) - 8004f24: 681b ldr r3, [r3, #0] - 8004f26: f403 7380 and.w r3, r3, #256 @ 0x100 - 8004f2a: 2b00 cmp r3, #0 - 8004f2c: d118 bne.n 8004f60 + 8004f72: 4b79 ldr r3, [pc, #484] @ (8005158 ) + 8004f74: 681b ldr r3, [r3, #0] + 8004f76: f403 7380 and.w r3, r3, #256 @ 0x100 + 8004f7a: 2b00 cmp r3, #0 + 8004f7c: d118 bne.n 8004fb0 { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 8004f2e: 4b76 ldr r3, [pc, #472] @ (8005108 ) - 8004f30: 681b ldr r3, [r3, #0] - 8004f32: 4a75 ldr r2, [pc, #468] @ (8005108 ) - 8004f34: f443 7380 orr.w r3, r3, #256 @ 0x100 - 8004f38: 6013 str r3, [r2, #0] + 8004f7e: 4b76 ldr r3, [pc, #472] @ (8005158 ) + 8004f80: 681b ldr r3, [r3, #0] + 8004f82: 4a75 ldr r2, [pc, #468] @ (8005158 ) + 8004f84: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8004f88: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 8004f3a: f7fc fd45 bl 80019c8 - 8004f3e: 6138 str r0, [r7, #16] + 8004f8a: f7fc fd45 bl 8001a18 + 8004f8e: 6138 str r0, [r7, #16] while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8004f40: e008 b.n 8004f54 + 8004f90: e008 b.n 8004fa4 { if ((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8004f42: f7fc fd41 bl 80019c8 - 8004f46: 4602 mov r2, r0 - 8004f48: 693b ldr r3, [r7, #16] - 8004f4a: 1ad3 subs r3, r2, r3 - 8004f4c: 2b02 cmp r3, #2 - 8004f4e: d901 bls.n 8004f54 + 8004f92: f7fc fd41 bl 8001a18 + 8004f96: 4602 mov r2, r0 + 8004f98: 693b ldr r3, [r7, #16] + 8004f9a: 1ad3 subs r3, r2, r3 + 8004f9c: 2b02 cmp r3, #2 + 8004f9e: d901 bls.n 8004fa4 { return HAL_TIMEOUT; - 8004f50: 2303 movs r3, #3 - 8004f52: e118 b.n 8005186 + 8004fa0: 2303 movs r3, #3 + 8004fa2: e118 b.n 80051d6 while (HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8004f54: 4b6c ldr r3, [pc, #432] @ (8005108 ) - 8004f56: 681b ldr r3, [r3, #0] - 8004f58: f403 7380 and.w r3, r3, #256 @ 0x100 - 8004f5c: 2b00 cmp r3, #0 - 8004f5e: d0f0 beq.n 8004f42 + 8004fa4: 4b6c ldr r3, [pc, #432] @ (8005158 ) + 8004fa6: 681b ldr r3, [r3, #0] + 8004fa8: f403 7380 and.w r3, r3, #256 @ 0x100 + 8004fac: 2b00 cmp r3, #0 + 8004fae: d0f0 beq.n 8004f92 } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8004f60: 687b ldr r3, [r7, #4] - 8004f62: 689b ldr r3, [r3, #8] - 8004f64: 2b01 cmp r3, #1 - 8004f66: d106 bne.n 8004f76 - 8004f68: 4b66 ldr r3, [pc, #408] @ (8005104 ) - 8004f6a: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004f6c: 4a65 ldr r2, [pc, #404] @ (8005104 ) - 8004f6e: f043 0301 orr.w r3, r3, #1 - 8004f72: 6713 str r3, [r2, #112] @ 0x70 - 8004f74: e01c b.n 8004fb0 - 8004f76: 687b ldr r3, [r7, #4] - 8004f78: 689b ldr r3, [r3, #8] - 8004f7a: 2b05 cmp r3, #5 - 8004f7c: d10c bne.n 8004f98 - 8004f7e: 4b61 ldr r3, [pc, #388] @ (8005104 ) - 8004f80: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004f82: 4a60 ldr r2, [pc, #384] @ (8005104 ) - 8004f84: f043 0304 orr.w r3, r3, #4 - 8004f88: 6713 str r3, [r2, #112] @ 0x70 - 8004f8a: 4b5e ldr r3, [pc, #376] @ (8005104 ) - 8004f8c: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004f8e: 4a5d ldr r2, [pc, #372] @ (8005104 ) - 8004f90: f043 0301 orr.w r3, r3, #1 - 8004f94: 6713 str r3, [r2, #112] @ 0x70 - 8004f96: e00b b.n 8004fb0 - 8004f98: 4b5a ldr r3, [pc, #360] @ (8005104 ) - 8004f9a: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004f9c: 4a59 ldr r2, [pc, #356] @ (8005104 ) - 8004f9e: f023 0301 bic.w r3, r3, #1 - 8004fa2: 6713 str r3, [r2, #112] @ 0x70 - 8004fa4: 4b57 ldr r3, [pc, #348] @ (8005104 ) - 8004fa6: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004fa8: 4a56 ldr r2, [pc, #344] @ (8005104 ) - 8004faa: f023 0304 bic.w r3, r3, #4 - 8004fae: 6713 str r3, [r2, #112] @ 0x70 - /* Check the LSE State */ - if ((RCC_OscInitStruct->LSEState) != RCC_LSE_OFF) 8004fb0: 687b ldr r3, [r7, #4] 8004fb2: 689b ldr r3, [r3, #8] - 8004fb4: 2b00 cmp r3, #0 - 8004fb6: d015 beq.n 8004fe4 + 8004fb4: 2b01 cmp r3, #1 + 8004fb6: d106 bne.n 8004fc6 + 8004fb8: 4b66 ldr r3, [pc, #408] @ (8005154 ) + 8004fba: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004fbc: 4a65 ldr r2, [pc, #404] @ (8005154 ) + 8004fbe: f043 0301 orr.w r3, r3, #1 + 8004fc2: 6713 str r3, [r2, #112] @ 0x70 + 8004fc4: e01c b.n 8005000 + 8004fc6: 687b ldr r3, [r7, #4] + 8004fc8: 689b ldr r3, [r3, #8] + 8004fca: 2b05 cmp r3, #5 + 8004fcc: d10c bne.n 8004fe8 + 8004fce: 4b61 ldr r3, [pc, #388] @ (8005154 ) + 8004fd0: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004fd2: 4a60 ldr r2, [pc, #384] @ (8005154 ) + 8004fd4: f043 0304 orr.w r3, r3, #4 + 8004fd8: 6713 str r3, [r2, #112] @ 0x70 + 8004fda: 4b5e ldr r3, [pc, #376] @ (8005154 ) + 8004fdc: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004fde: 4a5d ldr r2, [pc, #372] @ (8005154 ) + 8004fe0: f043 0301 orr.w r3, r3, #1 + 8004fe4: 6713 str r3, [r2, #112] @ 0x70 + 8004fe6: e00b b.n 8005000 + 8004fe8: 4b5a ldr r3, [pc, #360] @ (8005154 ) + 8004fea: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004fec: 4a59 ldr r2, [pc, #356] @ (8005154 ) + 8004fee: f023 0301 bic.w r3, r3, #1 + 8004ff2: 6713 str r3, [r2, #112] @ 0x70 + 8004ff4: 4b57 ldr r3, [pc, #348] @ (8005154 ) + 8004ff6: 6f1b ldr r3, [r3, #112] @ 0x70 + 8004ff8: 4a56 ldr r2, [pc, #344] @ (8005154 ) + 8004ffa: f023 0304 bic.w r3, r3, #4 + 8004ffe: 6713 str r3, [r2, #112] @ 0x70 + /* Check the LSE State */ + if ((RCC_OscInitStruct->LSEState) != RCC_LSE_OFF) + 8005000: 687b ldr r3, [r7, #4] + 8005002: 689b ldr r3, [r3, #8] + 8005004: 2b00 cmp r3, #0 + 8005006: d015 beq.n 8005034 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004fb8: f7fc fd06 bl 80019c8 - 8004fbc: 6138 str r0, [r7, #16] + 8005008: f7fc fd06 bl 8001a18 + 800500c: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8004fbe: e00a b.n 8004fd6 + 800500e: e00a b.n 8005026 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 8004fc0: f7fc fd02 bl 80019c8 - 8004fc4: 4602 mov r2, r0 - 8004fc6: 693b ldr r3, [r7, #16] - 8004fc8: 1ad3 subs r3, r2, r3 - 8004fca: f241 3288 movw r2, #5000 @ 0x1388 - 8004fce: 4293 cmp r3, r2 - 8004fd0: d901 bls.n 8004fd6 + 8005010: f7fc fd02 bl 8001a18 + 8005014: 4602 mov r2, r0 + 8005016: 693b ldr r3, [r7, #16] + 8005018: 1ad3 subs r3, r2, r3 + 800501a: f241 3288 movw r2, #5000 @ 0x1388 + 800501e: 4293 cmp r3, r2 + 8005020: d901 bls.n 8005026 { return HAL_TIMEOUT; - 8004fd2: 2303 movs r3, #3 - 8004fd4: e0d7 b.n 8005186 + 8005022: 2303 movs r3, #3 + 8005024: e0d7 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8004fd6: 4b4b ldr r3, [pc, #300] @ (8005104 ) - 8004fd8: 6f1b ldr r3, [r3, #112] @ 0x70 - 8004fda: f003 0302 and.w r3, r3, #2 - 8004fde: 2b00 cmp r3, #0 - 8004fe0: d0ee beq.n 8004fc0 - 8004fe2: e014 b.n 800500e + 8005026: 4b4b ldr r3, [pc, #300] @ (8005154 ) + 8005028: 6f1b ldr r3, [r3, #112] @ 0x70 + 800502a: f003 0302 and.w r3, r3, #2 + 800502e: 2b00 cmp r3, #0 + 8005030: d0ee beq.n 8005010 + 8005032: e014 b.n 800505e } } else { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8004fe4: f7fc fcf0 bl 80019c8 - 8004fe8: 6138 str r0, [r7, #16] + 8005034: f7fc fcf0 bl 8001a18 + 8005038: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8004fea: e00a b.n 8005002 + 800503a: e00a b.n 8005052 { if ((HAL_GetTick() - tickstart) > RCC_LSE_TIMEOUT_VALUE) - 8004fec: f7fc fcec bl 80019c8 - 8004ff0: 4602 mov r2, r0 - 8004ff2: 693b ldr r3, [r7, #16] - 8004ff4: 1ad3 subs r3, r2, r3 - 8004ff6: f241 3288 movw r2, #5000 @ 0x1388 - 8004ffa: 4293 cmp r3, r2 - 8004ffc: d901 bls.n 8005002 + 800503c: f7fc fcec bl 8001a18 + 8005040: 4602 mov r2, r0 + 8005042: 693b ldr r3, [r7, #16] + 8005044: 1ad3 subs r3, r2, r3 + 8005046: f241 3288 movw r2, #5000 @ 0x1388 + 800504a: 4293 cmp r3, r2 + 800504c: d901 bls.n 8005052 { return HAL_TIMEOUT; - 8004ffe: 2303 movs r3, #3 - 8005000: e0c1 b.n 8005186 + 800504e: 2303 movs r3, #3 + 8005050: e0c1 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8005002: 4b40 ldr r3, [pc, #256] @ (8005104 ) - 8005004: 6f1b ldr r3, [r3, #112] @ 0x70 - 8005006: f003 0302 and.w r3, r3, #2 - 800500a: 2b00 cmp r3, #0 - 800500c: d1ee bne.n 8004fec + 8005052: 4b40 ldr r3, [pc, #256] @ (8005154 ) + 8005054: 6f1b ldr r3, [r3, #112] @ 0x70 + 8005056: f003 0302 and.w r3, r3, #2 + 800505a: 2b00 cmp r3, #0 + 800505c: d1ee bne.n 800503c } } } /* Restore clock configuration if changed */ if (pwrclkchanged == SET) - 800500e: 7dfb ldrb r3, [r7, #23] - 8005010: 2b01 cmp r3, #1 - 8005012: d105 bne.n 8005020 + 800505e: 7dfb ldrb r3, [r7, #23] + 8005060: 2b01 cmp r3, #1 + 8005062: d105 bne.n 8005070 { __HAL_RCC_PWR_CLK_DISABLE(); - 8005014: 4b3b ldr r3, [pc, #236] @ (8005104 ) - 8005016: 6c1b ldr r3, [r3, #64] @ 0x40 - 8005018: 4a3a ldr r2, [pc, #232] @ (8005104 ) - 800501a: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 - 800501e: 6413 str r3, [r2, #64] @ 0x40 + 8005064: 4b3b ldr r3, [pc, #236] @ (8005154 ) + 8005066: 6c1b ldr r3, [r3, #64] @ 0x40 + 8005068: 4a3a ldr r2, [pc, #232] @ (8005154 ) + 800506a: f023 5380 bic.w r3, r3, #268435456 @ 0x10000000 + 800506e: 6413 str r3, [r2, #64] @ 0x40 } } /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 8005020: 687b ldr r3, [r7, #4] - 8005022: 699b ldr r3, [r3, #24] - 8005024: 2b00 cmp r3, #0 - 8005026: f000 80ad beq.w 8005184 + 8005070: 687b ldr r3, [r7, #4] + 8005072: 699b ldr r3, [r3, #24] + 8005074: 2b00 cmp r3, #0 + 8005076: f000 80ad beq.w 80051d4 { /* Check if the PLL is used as system clock or not */ if (__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_CFGR_SWS_PLL) - 800502a: 4b36 ldr r3, [pc, #216] @ (8005104 ) - 800502c: 689b ldr r3, [r3, #8] - 800502e: f003 030c and.w r3, r3, #12 - 8005032: 2b08 cmp r3, #8 - 8005034: d060 beq.n 80050f8 + 800507a: 4b36 ldr r3, [pc, #216] @ (8005154 ) + 800507c: 689b ldr r3, [r3, #8] + 800507e: f003 030c and.w r3, r3, #12 + 8005082: 2b08 cmp r3, #8 + 8005084: d060 beq.n 8005148 { if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8005036: 687b ldr r3, [r7, #4] - 8005038: 699b ldr r3, [r3, #24] - 800503a: 2b02 cmp r3, #2 - 800503c: d145 bne.n 80050ca + 8005086: 687b ldr r3, [r7, #4] + 8005088: 699b ldr r3, [r3, #24] + 800508a: 2b02 cmp r3, #2 + 800508c: d145 bne.n 800511a assert_param(IS_RCC_PLLP_VALUE(RCC_OscInitStruct->PLL.PLLP)); assert_param(IS_RCC_PLLQ_VALUE(RCC_OscInitStruct->PLL.PLLQ)); assert_param(IS_RCC_PLLR_VALUE(RCC_OscInitStruct->PLL.PLLR)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800503e: 4b33 ldr r3, [pc, #204] @ (800510c ) - 8005040: 2200 movs r2, #0 - 8005042: 601a str r2, [r3, #0] + 800508e: 4b33 ldr r3, [pc, #204] @ (800515c ) + 8005090: 2200 movs r2, #0 + 8005092: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8005044: f7fc fcc0 bl 80019c8 - 8005048: 6138 str r0, [r7, #16] + 8005094: f7fc fcc0 bl 8001a18 + 8005098: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800504a: e008 b.n 800505e + 800509a: e008 b.n 80050ae { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 800504c: f7fc fcbc bl 80019c8 - 8005050: 4602 mov r2, r0 - 8005052: 693b ldr r3, [r7, #16] - 8005054: 1ad3 subs r3, r2, r3 - 8005056: 2b02 cmp r3, #2 - 8005058: d901 bls.n 800505e + 800509c: f7fc fcbc bl 8001a18 + 80050a0: 4602 mov r2, r0 + 80050a2: 693b ldr r3, [r7, #16] + 80050a4: 1ad3 subs r3, r2, r3 + 80050a6: 2b02 cmp r3, #2 + 80050a8: d901 bls.n 80050ae { return HAL_TIMEOUT; - 800505a: 2303 movs r3, #3 - 800505c: e093 b.n 8005186 + 80050aa: 2303 movs r3, #3 + 80050ac: e093 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800505e: 4b29 ldr r3, [pc, #164] @ (8005104 ) - 8005060: 681b ldr r3, [r3, #0] - 8005062: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 8005066: 2b00 cmp r3, #0 - 8005068: d1f0 bne.n 800504c + 80050ae: 4b29 ldr r3, [pc, #164] @ (8005154 ) + 80050b0: 681b ldr r3, [r3, #0] + 80050b2: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 80050b6: 2b00 cmp r3, #0 + 80050b8: d1f0 bne.n 800509c } } /* Configure the main PLL clock source, multiplication and division factors. */ WRITE_REG(RCC->PLLCFGR, (RCC_OscInitStruct->PLL.PLLSource | \ - 800506a: 687b ldr r3, [r7, #4] - 800506c: 69da ldr r2, [r3, #28] - 800506e: 687b ldr r3, [r7, #4] - 8005070: 6a1b ldr r3, [r3, #32] - 8005072: 431a orrs r2, r3 - 8005074: 687b ldr r3, [r7, #4] - 8005076: 6a5b ldr r3, [r3, #36] @ 0x24 - 8005078: 019b lsls r3, r3, #6 - 800507a: 431a orrs r2, r3 - 800507c: 687b ldr r3, [r7, #4] - 800507e: 6a9b ldr r3, [r3, #40] @ 0x28 - 8005080: 085b lsrs r3, r3, #1 - 8005082: 3b01 subs r3, #1 - 8005084: 041b lsls r3, r3, #16 - 8005086: 431a orrs r2, r3 - 8005088: 687b ldr r3, [r7, #4] - 800508a: 6adb ldr r3, [r3, #44] @ 0x2c - 800508c: 061b lsls r3, r3, #24 - 800508e: 431a orrs r2, r3 - 8005090: 687b ldr r3, [r7, #4] - 8005092: 6b1b ldr r3, [r3, #48] @ 0x30 - 8005094: 071b lsls r3, r3, #28 - 8005096: 491b ldr r1, [pc, #108] @ (8005104 ) - 8005098: 4313 orrs r3, r2 - 800509a: 604b str r3, [r1, #4] + 80050ba: 687b ldr r3, [r7, #4] + 80050bc: 69da ldr r2, [r3, #28] + 80050be: 687b ldr r3, [r7, #4] + 80050c0: 6a1b ldr r3, [r3, #32] + 80050c2: 431a orrs r2, r3 + 80050c4: 687b ldr r3, [r7, #4] + 80050c6: 6a5b ldr r3, [r3, #36] @ 0x24 + 80050c8: 019b lsls r3, r3, #6 + 80050ca: 431a orrs r2, r3 + 80050cc: 687b ldr r3, [r7, #4] + 80050ce: 6a9b ldr r3, [r3, #40] @ 0x28 + 80050d0: 085b lsrs r3, r3, #1 + 80050d2: 3b01 subs r3, #1 + 80050d4: 041b lsls r3, r3, #16 + 80050d6: 431a orrs r2, r3 + 80050d8: 687b ldr r3, [r7, #4] + 80050da: 6adb ldr r3, [r3, #44] @ 0x2c + 80050dc: 061b lsls r3, r3, #24 + 80050de: 431a orrs r2, r3 + 80050e0: 687b ldr r3, [r7, #4] + 80050e2: 6b1b ldr r3, [r3, #48] @ 0x30 + 80050e4: 071b lsls r3, r3, #28 + 80050e6: 491b ldr r1, [pc, #108] @ (8005154 ) + 80050e8: 4313 orrs r3, r2 + 80050ea: 604b str r3, [r1, #4] (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PLLN_Pos) | \ (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U) << RCC_PLLCFGR_PLLP_Pos) | \ (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos) | \ (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 800509c: 4b1b ldr r3, [pc, #108] @ (800510c ) - 800509e: 2201 movs r2, #1 - 80050a0: 601a str r2, [r3, #0] + 80050ec: 4b1b ldr r3, [pc, #108] @ (800515c ) + 80050ee: 2201 movs r2, #1 + 80050f0: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80050a2: f7fc fc91 bl 80019c8 - 80050a6: 6138 str r0, [r7, #16] + 80050f2: f7fc fc91 bl 8001a18 + 80050f6: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80050a8: e008 b.n 80050bc + 80050f8: e008 b.n 800510c { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80050aa: f7fc fc8d bl 80019c8 - 80050ae: 4602 mov r2, r0 - 80050b0: 693b ldr r3, [r7, #16] - 80050b2: 1ad3 subs r3, r2, r3 - 80050b4: 2b02 cmp r3, #2 - 80050b6: d901 bls.n 80050bc + 80050fa: f7fc fc8d bl 8001a18 + 80050fe: 4602 mov r2, r0 + 8005100: 693b ldr r3, [r7, #16] + 8005102: 1ad3 subs r3, r2, r3 + 8005104: 2b02 cmp r3, #2 + 8005106: d901 bls.n 800510c { return HAL_TIMEOUT; - 80050b8: 2303 movs r3, #3 - 80050ba: e064 b.n 8005186 + 8005108: 2303 movs r3, #3 + 800510a: e064 b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80050bc: 4b11 ldr r3, [pc, #68] @ (8005104 ) - 80050be: 681b ldr r3, [r3, #0] - 80050c0: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 80050c4: 2b00 cmp r3, #0 - 80050c6: d0f0 beq.n 80050aa - 80050c8: e05c b.n 8005184 + 800510c: 4b11 ldr r3, [pc, #68] @ (8005154 ) + 800510e: 681b ldr r3, [r3, #0] + 8005110: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8005114: 2b00 cmp r3, #0 + 8005116: d0f0 beq.n 80050fa + 8005118: e05c b.n 80051d4 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80050ca: 4b10 ldr r3, [pc, #64] @ (800510c ) - 80050cc: 2200 movs r2, #0 - 80050ce: 601a str r2, [r3, #0] + 800511a: 4b10 ldr r3, [pc, #64] @ (800515c ) + 800511c: 2200 movs r2, #0 + 800511e: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80050d0: f7fc fc7a bl 80019c8 - 80050d4: 6138 str r0, [r7, #16] + 8005120: f7fc fc7a bl 8001a18 + 8005124: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80050d6: e008 b.n 80050ea + 8005126: e008 b.n 800513a { if ((HAL_GetTick() - tickstart) > PLL_TIMEOUT_VALUE) - 80050d8: f7fc fc76 bl 80019c8 - 80050dc: 4602 mov r2, r0 - 80050de: 693b ldr r3, [r7, #16] - 80050e0: 1ad3 subs r3, r2, r3 - 80050e2: 2b02 cmp r3, #2 - 80050e4: d901 bls.n 80050ea + 8005128: f7fc fc76 bl 8001a18 + 800512c: 4602 mov r2, r0 + 800512e: 693b ldr r3, [r7, #16] + 8005130: 1ad3 subs r3, r2, r3 + 8005132: 2b02 cmp r3, #2 + 8005134: d901 bls.n 800513a { return HAL_TIMEOUT; - 80050e6: 2303 movs r3, #3 - 80050e8: e04d b.n 8005186 + 8005136: 2303 movs r3, #3 + 8005138: e04d b.n 80051d6 while (__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80050ea: 4b06 ldr r3, [pc, #24] @ (8005104 ) - 80050ec: 681b ldr r3, [r3, #0] - 80050ee: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 - 80050f2: 2b00 cmp r3, #0 - 80050f4: d1f0 bne.n 80050d8 - 80050f6: e045 b.n 8005184 + 800513a: 4b06 ldr r3, [pc, #24] @ (8005154 ) + 800513c: 681b ldr r3, [r3, #0] + 800513e: f003 7300 and.w r3, r3, #33554432 @ 0x2000000 + 8005142: 2b00 cmp r3, #0 + 8005144: d1f0 bne.n 8005128 + 8005146: e045 b.n 80051d4 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if ((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 80050f8: 687b ldr r3, [r7, #4] - 80050fa: 699b ldr r3, [r3, #24] - 80050fc: 2b01 cmp r3, #1 - 80050fe: d107 bne.n 8005110 + 8005148: 687b ldr r3, [r7, #4] + 800514a: 699b ldr r3, [r3, #24] + 800514c: 2b01 cmp r3, #1 + 800514e: d107 bne.n 8005160 { return HAL_ERROR; - 8005100: 2301 movs r3, #1 - 8005102: e040 b.n 8005186 - 8005104: 40023800 .word 0x40023800 - 8005108: 40007000 .word 0x40007000 - 800510c: 42470060 .word 0x42470060 + 8005150: 2301 movs r3, #1 + 8005152: e040 b.n 80051d6 + 8005154: 40023800 .word 0x40023800 + 8005158: 40007000 .word 0x40007000 + 800515c: 42470060 .word 0x42470060 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->PLLCFGR; - 8005110: 4b1f ldr r3, [pc, #124] @ (8005190 ) - 8005112: 685b ldr r3, [r3, #4] - 8005114: 60fb str r3, [r7, #12] + 8005160: 4b1f ldr r3, [pc, #124] @ (80051e0 ) + 8005162: 685b ldr r3, [r3, #4] + 8005164: 60fb str r3, [r7, #12] #if defined (RCC_PLLCFGR_PLLR) if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 8005116: 687b ldr r3, [r7, #4] - 8005118: 699b ldr r3, [r3, #24] - 800511a: 2b01 cmp r3, #1 - 800511c: d030 beq.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800511e: 68fb ldr r3, [r7, #12] - 8005120: f403 0280 and.w r2, r3, #4194304 @ 0x400000 - 8005124: 687b ldr r3, [r7, #4] - 8005126: 69db ldr r3, [r3, #28] - if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 8005128: 429a cmp r2, r3 - 800512a: d129 bne.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 800512c: 68fb ldr r3, [r7, #12] - 800512e: f003 023f and.w r2, r3, #63 @ 0x3f - 8005132: 687b ldr r3, [r7, #4] - 8005134: 6a1b ldr r3, [r3, #32] - (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8005136: 429a cmp r2, r3 - 8005138: d122 bne.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 800513a: 68fa ldr r2, [r7, #12] - 800513c: f647 73c0 movw r3, #32704 @ 0x7fc0 - 8005140: 4013 ands r3, r2 - 8005142: 687a ldr r2, [r7, #4] - 8005144: 6a52 ldr r2, [r2, #36] @ 0x24 - 8005146: 0192 lsls r2, r2, #6 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 8005148: 4293 cmp r3, r2 - 800514a: d119 bne.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 800514c: 68fb ldr r3, [r7, #12] - 800514e: f403 3240 and.w r2, r3, #196608 @ 0x30000 - 8005152: 687b ldr r3, [r7, #4] - 8005154: 6a9b ldr r3, [r3, #40] @ 0x28 - 8005156: 085b lsrs r3, r3, #1 - 8005158: 3b01 subs r3, #1 - 800515a: 041b lsls r3, r3, #16 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 800515c: 429a cmp r2, r3 - 800515e: d10f bne.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || - 8005160: 68fb ldr r3, [r7, #12] - 8005162: f003 6270 and.w r2, r3, #251658240 @ 0xf000000 8005166: 687b ldr r3, [r7, #4] - 8005168: 6adb ldr r3, [r3, #44] @ 0x2c - 800516a: 061b lsls r3, r3, #24 + 8005168: 699b ldr r3, [r3, #24] + 800516a: 2b01 cmp r3, #1 + 800516c: d030 beq.n 80051d0 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || + 800516e: 68fb ldr r3, [r7, #12] + 8005170: f403 0280 and.w r2, r3, #4194304 @ 0x400000 + 8005174: 687b ldr r3, [r7, #4] + 8005176: 69db ldr r3, [r3, #28] + if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || + 8005178: 429a cmp r2, r3 + 800517a: d129 bne.n 80051d0 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || + 800517c: 68fb ldr r3, [r7, #12] + 800517e: f003 023f and.w r2, r3, #63 @ 0x3f + 8005182: 687b ldr r3, [r7, #4] + 8005184: 6a1b ldr r3, [r3, #32] + (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || + 8005186: 429a cmp r2, r3 + 8005188: d122 bne.n 80051d0 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || + 800518a: 68fa ldr r2, [r7, #12] + 800518c: f647 73c0 movw r3, #32704 @ 0x7fc0 + 8005190: 4013 ands r3, r2 + 8005192: 687a ldr r2, [r7, #4] + 8005194: 6a52 ldr r2, [r2, #36] @ 0x24 + 8005196: 0192 lsls r2, r2, #6 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || + 8005198: 4293 cmp r3, r2 + 800519a: d119 bne.n 80051d0 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 800516c: 429a cmp r2, r3 - 800516e: d107 bne.n 8005180 - (READ_BIT(pll_config, RCC_PLLCFGR_PLLR) != (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))) - 8005170: 68fb ldr r3, [r7, #12] - 8005172: f003 42e0 and.w r2, r3, #1879048192 @ 0x70000000 - 8005176: 687b ldr r3, [r7, #4] - 8005178: 6b1b ldr r3, [r3, #48] @ 0x30 - 800517a: 071b lsls r3, r3, #28 + 800519c: 68fb ldr r3, [r7, #12] + 800519e: f403 3240 and.w r2, r3, #196608 @ 0x30000 + 80051a2: 687b ldr r3, [r7, #4] + 80051a4: 6a9b ldr r3, [r3, #40] @ 0x28 + 80051a6: 085b lsrs r3, r3, #1 + 80051a8: 3b01 subs r3, #1 + 80051aa: 041b lsls r3, r3, #16 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || + 80051ac: 429a cmp r2, r3 + 80051ae: d10f bne.n 80051d0 (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || - 800517c: 429a cmp r2, r3 - 800517e: d001 beq.n 8005184 + 80051b0: 68fb ldr r3, [r7, #12] + 80051b2: f003 6270 and.w r2, r3, #251658240 @ 0xf000000 + 80051b6: 687b ldr r3, [r7, #4] + 80051b8: 6adb ldr r3, [r3, #44] @ 0x2c + 80051ba: 061b lsls r3, r3, #24 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || + 80051bc: 429a cmp r2, r3 + 80051be: d107 bne.n 80051d0 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLR) != (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))) + 80051c0: 68fb ldr r3, [r7, #12] + 80051c2: f003 42e0 and.w r2, r3, #1879048192 @ 0x70000000 + 80051c6: 687b ldr r3, [r7, #4] + 80051c8: 6b1b ldr r3, [r3, #48] @ 0x30 + 80051ca: 071b lsls r3, r3, #28 + (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || + 80051cc: 429a cmp r2, r3 + 80051ce: d001 beq.n 80051d4 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))) #endif /* RCC_PLLCFGR_PLLR */ { return HAL_ERROR; - 8005180: 2301 movs r3, #1 - 8005182: e000 b.n 8005186 + 80051d0: 2301 movs r3, #1 + 80051d2: e000 b.n 80051d6 } } } } return HAL_OK; - 8005184: 2300 movs r3, #0 + 80051d4: 2300 movs r3, #0 } - 8005186: 4618 mov r0, r3 - 8005188: 3718 adds r7, #24 - 800518a: 46bd mov sp, r7 - 800518c: bd80 pop {r7, pc} - 800518e: bf00 nop - 8005190: 40023800 .word 0x40023800 + 80051d6: 4618 mov r0, r3 + 80051d8: 3718 adds r7, #24 + 80051da: 46bd mov sp, r7 + 80051dc: bd80 pop {r7, pc} + 80051de: bf00 nop + 80051e0: 40023800 .word 0x40023800 -08005194 : +080051e4 : * Ex: call @ref HAL_TIM_OC_DeInit() before HAL_TIM_OC_Init() * @param htim TIM Output Compare handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_OC_Init(TIM_HandleTypeDef *htim) { - 8005194: b580 push {r7, lr} - 8005196: b082 sub sp, #8 - 8005198: af00 add r7, sp, #0 - 800519a: 6078 str r0, [r7, #4] + 80051e4: b580 push {r7, lr} + 80051e6: b082 sub sp, #8 + 80051e8: af00 add r7, sp, #0 + 80051ea: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 800519c: 687b ldr r3, [r7, #4] - 800519e: 2b00 cmp r3, #0 - 80051a0: d101 bne.n 80051a6 + 80051ec: 687b ldr r3, [r7, #4] + 80051ee: 2b00 cmp r3, #0 + 80051f0: d101 bne.n 80051f6 { return HAL_ERROR; - 80051a2: 2301 movs r3, #1 - 80051a4: e041 b.n 800522a + 80051f2: 2301 movs r3, #1 + 80051f4: e041 b.n 800527a assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); assert_param(IS_TIM_PERIOD(htim, htim->Init.Period)); assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); if (htim->State == HAL_TIM_STATE_RESET) - 80051a6: 687b ldr r3, [r7, #4] - 80051a8: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 80051ac: b2db uxtb r3, r3 - 80051ae: 2b00 cmp r3, #0 - 80051b0: d106 bne.n 80051c0 + 80051f6: 687b ldr r3, [r7, #4] + 80051f8: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 80051fc: b2db uxtb r3, r3 + 80051fe: 2b00 cmp r3, #0 + 8005200: d106 bne.n 8005210 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 80051b2: 687b ldr r3, [r7, #4] - 80051b4: 2200 movs r2, #0 - 80051b6: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005202: 687b ldr r3, [r7, #4] + 8005204: 2200 movs r2, #0 + 8005206: f883 203c strb.w r2, [r3, #60] @ 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->OC_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ HAL_TIM_OC_MspInit(htim); - 80051ba: 6878 ldr r0, [r7, #4] - 80051bc: f7fb ff6a bl 8001094 + 800520a: 6878 ldr r0, [r7, #4] + 800520c: f7fb ff6a bl 80010e4 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 80051c0: 687b ldr r3, [r7, #4] - 80051c2: 2202 movs r2, #2 - 80051c4: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005210: 687b ldr r3, [r7, #4] + 8005212: 2202 movs r2, #2 + 8005214: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Init the base time for the Output Compare */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 80051c8: 687b ldr r3, [r7, #4] - 80051ca: 681a ldr r2, [r3, #0] - 80051cc: 687b ldr r3, [r7, #4] - 80051ce: 3304 adds r3, #4 - 80051d0: 4619 mov r1, r3 - 80051d2: 4610 mov r0, r2 - 80051d4: f000 f930 bl 8005438 + 8005218: 687b ldr r3, [r7, #4] + 800521a: 681a ldr r2, [r3, #0] + 800521c: 687b ldr r3, [r7, #4] + 800521e: 3304 adds r3, #4 + 8005220: 4619 mov r1, r3 + 8005222: 4610 mov r0, r2 + 8005224: f000 f930 bl 8005488 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 80051d8: 687b ldr r3, [r7, #4] - 80051da: 2201 movs r2, #1 - 80051dc: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 8005228: 687b ldr r3, [r7, #4] + 800522a: 2201 movs r2, #1 + 800522c: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 80051e0: 687b ldr r3, [r7, #4] - 80051e2: 2201 movs r2, #1 - 80051e4: f883 203e strb.w r2, [r3, #62] @ 0x3e - 80051e8: 687b ldr r3, [r7, #4] - 80051ea: 2201 movs r2, #1 - 80051ec: f883 203f strb.w r2, [r3, #63] @ 0x3f - 80051f0: 687b ldr r3, [r7, #4] - 80051f2: 2201 movs r2, #1 - 80051f4: f883 2040 strb.w r2, [r3, #64] @ 0x40 - 80051f8: 687b ldr r3, [r7, #4] - 80051fa: 2201 movs r2, #1 - 80051fc: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005230: 687b ldr r3, [r7, #4] + 8005232: 2201 movs r2, #1 + 8005234: f883 203e strb.w r2, [r3, #62] @ 0x3e + 8005238: 687b ldr r3, [r7, #4] + 800523a: 2201 movs r2, #1 + 800523c: f883 203f strb.w r2, [r3, #63] @ 0x3f + 8005240: 687b ldr r3, [r7, #4] + 8005242: 2201 movs r2, #1 + 8005244: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8005248: 687b ldr r3, [r7, #4] + 800524a: 2201 movs r2, #1 + 800524c: f883 2041 strb.w r2, [r3, #65] @ 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8005200: 687b ldr r3, [r7, #4] - 8005202: 2201 movs r2, #1 - 8005204: f883 2042 strb.w r2, [r3, #66] @ 0x42 - 8005208: 687b ldr r3, [r7, #4] - 800520a: 2201 movs r2, #1 - 800520c: f883 2043 strb.w r2, [r3, #67] @ 0x43 - 8005210: 687b ldr r3, [r7, #4] - 8005212: 2201 movs r2, #1 - 8005214: f883 2044 strb.w r2, [r3, #68] @ 0x44 - 8005218: 687b ldr r3, [r7, #4] - 800521a: 2201 movs r2, #1 - 800521c: f883 2045 strb.w r2, [r3, #69] @ 0x45 + 8005250: 687b ldr r3, [r7, #4] + 8005252: 2201 movs r2, #1 + 8005254: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8005258: 687b ldr r3, [r7, #4] + 800525a: 2201 movs r2, #1 + 800525c: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 8005260: 687b ldr r3, [r7, #4] + 8005262: 2201 movs r2, #1 + 8005264: f883 2044 strb.w r2, [r3, #68] @ 0x44 + 8005268: 687b ldr r3, [r7, #4] + 800526a: 2201 movs r2, #1 + 800526c: f883 2045 strb.w r2, [r3, #69] @ 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8005220: 687b ldr r3, [r7, #4] - 8005222: 2201 movs r2, #1 - 8005224: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005270: 687b ldr r3, [r7, #4] + 8005272: 2201 movs r2, #1 + 8005274: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 8005228: 2300 movs r3, #0 + 8005278: 2300 movs r3, #0 } - 800522a: 4618 mov r0, r3 - 800522c: 3708 adds r7, #8 - 800522e: 46bd mov sp, r7 - 8005230: bd80 pop {r7, pc} + 800527a: 4618 mov r0, r3 + 800527c: 3708 adds r7, #8 + 800527e: 46bd mov sp, r7 + 8005280: bd80 pop {r7, pc} -08005232 : +08005282 : * @param htim TIM Encoder Interface handle * @param sConfig TIM Encoder Interface configuration structure * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_Encoder_Init(TIM_HandleTypeDef *htim, const TIM_Encoder_InitTypeDef *sConfig) { - 8005232: b580 push {r7, lr} - 8005234: b086 sub sp, #24 - 8005236: af00 add r7, sp, #0 - 8005238: 6078 str r0, [r7, #4] - 800523a: 6039 str r1, [r7, #0] + 8005282: b580 push {r7, lr} + 8005284: b086 sub sp, #24 + 8005286: af00 add r7, sp, #0 + 8005288: 6078 str r0, [r7, #4] + 800528a: 6039 str r1, [r7, #0] uint32_t tmpsmcr; uint32_t tmpccmr1; uint32_t tmpccer; /* Check the TIM handle allocation */ if (htim == NULL) - 800523c: 687b ldr r3, [r7, #4] - 800523e: 2b00 cmp r3, #0 - 8005240: d101 bne.n 8005246 + 800528c: 687b ldr r3, [r7, #4] + 800528e: 2b00 cmp r3, #0 + 8005290: d101 bne.n 8005296 { return HAL_ERROR; - 8005242: 2301 movs r3, #1 - 8005244: e097 b.n 8005376 + 8005292: 2301 movs r3, #1 + 8005294: e097 b.n 80053c6 assert_param(IS_TIM_IC_PRESCALER(sConfig->IC2Prescaler)); assert_param(IS_TIM_IC_FILTER(sConfig->IC1Filter)); assert_param(IS_TIM_IC_FILTER(sConfig->IC2Filter)); assert_param(IS_TIM_PERIOD(htim, htim->Init.Period)); if (htim->State == HAL_TIM_STATE_RESET) - 8005246: 687b ldr r3, [r7, #4] - 8005248: f893 303d ldrb.w r3, [r3, #61] @ 0x3d - 800524c: b2db uxtb r3, r3 - 800524e: 2b00 cmp r3, #0 - 8005250: d106 bne.n 8005260 + 8005296: 687b ldr r3, [r7, #4] + 8005298: f893 303d ldrb.w r3, [r3, #61] @ 0x3d + 800529c: b2db uxtb r3, r3 + 800529e: 2b00 cmp r3, #0 + 80052a0: d106 bne.n 80052b0 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 8005252: 687b ldr r3, [r7, #4] - 8005254: 2200 movs r2, #0 - 8005256: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80052a2: 687b ldr r3, [r7, #4] + 80052a4: 2200 movs r2, #0 + 80052a6: f883 203c strb.w r2, [r3, #60] @ 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->Encoder_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC and DMA */ HAL_TIM_Encoder_MspInit(htim); - 800525a: 6878 ldr r0, [r7, #4] - 800525c: f7fb ff3a bl 80010d4 + 80052aa: 6878 ldr r0, [r7, #4] + 80052ac: f7fb ff3a bl 8001124 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8005260: 687b ldr r3, [r7, #4] - 8005262: 2202 movs r2, #2 - 8005264: f883 203d strb.w r2, [r3, #61] @ 0x3d + 80052b0: 687b ldr r3, [r7, #4] + 80052b2: 2202 movs r2, #2 + 80052b4: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Reset the SMS and ECE bits */ htim->Instance->SMCR &= ~(TIM_SMCR_SMS | TIM_SMCR_ECE); - 8005268: 687b ldr r3, [r7, #4] - 800526a: 681b ldr r3, [r3, #0] - 800526c: 689b ldr r3, [r3, #8] - 800526e: 687a ldr r2, [r7, #4] - 8005270: 6812 ldr r2, [r2, #0] - 8005272: f423 4380 bic.w r3, r3, #16384 @ 0x4000 - 8005276: f023 0307 bic.w r3, r3, #7 - 800527a: 6093 str r3, [r2, #8] + 80052b8: 687b ldr r3, [r7, #4] + 80052ba: 681b ldr r3, [r3, #0] + 80052bc: 689b ldr r3, [r3, #8] + 80052be: 687a ldr r2, [r7, #4] + 80052c0: 6812 ldr r2, [r2, #0] + 80052c2: f423 4380 bic.w r3, r3, #16384 @ 0x4000 + 80052c6: f023 0307 bic.w r3, r3, #7 + 80052ca: 6093 str r3, [r2, #8] /* Configure the Time base in the Encoder Mode */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 800527c: 687b ldr r3, [r7, #4] - 800527e: 681a ldr r2, [r3, #0] - 8005280: 687b ldr r3, [r7, #4] - 8005282: 3304 adds r3, #4 - 8005284: 4619 mov r1, r3 - 8005286: 4610 mov r0, r2 - 8005288: f000 f8d6 bl 8005438 + 80052cc: 687b ldr r3, [r7, #4] + 80052ce: 681a ldr r2, [r3, #0] + 80052d0: 687b ldr r3, [r7, #4] + 80052d2: 3304 adds r3, #4 + 80052d4: 4619 mov r1, r3 + 80052d6: 4610 mov r0, r2 + 80052d8: f000 f8d6 bl 8005488 /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 800528c: 687b ldr r3, [r7, #4] - 800528e: 681b ldr r3, [r3, #0] - 8005290: 689b ldr r3, [r3, #8] - 8005292: 617b str r3, [r7, #20] + 80052dc: 687b ldr r3, [r7, #4] + 80052de: 681b ldr r3, [r3, #0] + 80052e0: 689b ldr r3, [r3, #8] + 80052e2: 617b str r3, [r7, #20] /* Get the TIMx CCMR1 register value */ tmpccmr1 = htim->Instance->CCMR1; - 8005294: 687b ldr r3, [r7, #4] - 8005296: 681b ldr r3, [r3, #0] - 8005298: 699b ldr r3, [r3, #24] - 800529a: 613b str r3, [r7, #16] + 80052e4: 687b ldr r3, [r7, #4] + 80052e6: 681b ldr r3, [r3, #0] + 80052e8: 699b ldr r3, [r3, #24] + 80052ea: 613b str r3, [r7, #16] /* Get the TIMx CCER register value */ tmpccer = htim->Instance->CCER; - 800529c: 687b ldr r3, [r7, #4] - 800529e: 681b ldr r3, [r3, #0] - 80052a0: 6a1b ldr r3, [r3, #32] - 80052a2: 60fb str r3, [r7, #12] + 80052ec: 687b ldr r3, [r7, #4] + 80052ee: 681b ldr r3, [r3, #0] + 80052f0: 6a1b ldr r3, [r3, #32] + 80052f2: 60fb str r3, [r7, #12] /* Set the encoder Mode */ tmpsmcr |= sConfig->EncoderMode; - 80052a4: 683b ldr r3, [r7, #0] - 80052a6: 681b ldr r3, [r3, #0] - 80052a8: 697a ldr r2, [r7, #20] - 80052aa: 4313 orrs r3, r2 - 80052ac: 617b str r3, [r7, #20] + 80052f4: 683b ldr r3, [r7, #0] + 80052f6: 681b ldr r3, [r3, #0] + 80052f8: 697a ldr r2, [r7, #20] + 80052fa: 4313 orrs r3, r2 + 80052fc: 617b str r3, [r7, #20] /* Select the Capture Compare 1 and the Capture Compare 2 as input */ tmpccmr1 &= ~(TIM_CCMR1_CC1S | TIM_CCMR1_CC2S); - 80052ae: 693b ldr r3, [r7, #16] - 80052b0: f423 7340 bic.w r3, r3, #768 @ 0x300 - 80052b4: f023 0303 bic.w r3, r3, #3 - 80052b8: 613b str r3, [r7, #16] + 80052fe: 693b ldr r3, [r7, #16] + 8005300: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8005304: f023 0303 bic.w r3, r3, #3 + 8005308: 613b str r3, [r7, #16] tmpccmr1 |= (sConfig->IC1Selection | (sConfig->IC2Selection << 8U)); - 80052ba: 683b ldr r3, [r7, #0] - 80052bc: 689a ldr r2, [r3, #8] - 80052be: 683b ldr r3, [r7, #0] - 80052c0: 699b ldr r3, [r3, #24] - 80052c2: 021b lsls r3, r3, #8 - 80052c4: 4313 orrs r3, r2 - 80052c6: 693a ldr r2, [r7, #16] - 80052c8: 4313 orrs r3, r2 - 80052ca: 613b str r3, [r7, #16] + 800530a: 683b ldr r3, [r7, #0] + 800530c: 689a ldr r2, [r3, #8] + 800530e: 683b ldr r3, [r7, #0] + 8005310: 699b ldr r3, [r3, #24] + 8005312: 021b lsls r3, r3, #8 + 8005314: 4313 orrs r3, r2 + 8005316: 693a ldr r2, [r7, #16] + 8005318: 4313 orrs r3, r2 + 800531a: 613b str r3, [r7, #16] /* Set the Capture Compare 1 and the Capture Compare 2 prescalers and filters */ tmpccmr1 &= ~(TIM_CCMR1_IC1PSC | TIM_CCMR1_IC2PSC); - 80052cc: 693b ldr r3, [r7, #16] - 80052ce: f423 6340 bic.w r3, r3, #3072 @ 0xc00 - 80052d2: f023 030c bic.w r3, r3, #12 - 80052d6: 613b str r3, [r7, #16] + 800531c: 693b ldr r3, [r7, #16] + 800531e: f423 6340 bic.w r3, r3, #3072 @ 0xc00 + 8005322: f023 030c bic.w r3, r3, #12 + 8005326: 613b str r3, [r7, #16] tmpccmr1 &= ~(TIM_CCMR1_IC1F | TIM_CCMR1_IC2F); - 80052d8: 693b ldr r3, [r7, #16] - 80052da: f423 4370 bic.w r3, r3, #61440 @ 0xf000 - 80052de: f023 03f0 bic.w r3, r3, #240 @ 0xf0 - 80052e2: 613b str r3, [r7, #16] + 8005328: 693b ldr r3, [r7, #16] + 800532a: f423 4370 bic.w r3, r3, #61440 @ 0xf000 + 800532e: f023 03f0 bic.w r3, r3, #240 @ 0xf0 + 8005332: 613b str r3, [r7, #16] tmpccmr1 |= sConfig->IC1Prescaler | (sConfig->IC2Prescaler << 8U); - 80052e4: 683b ldr r3, [r7, #0] - 80052e6: 68da ldr r2, [r3, #12] - 80052e8: 683b ldr r3, [r7, #0] - 80052ea: 69db ldr r3, [r3, #28] - 80052ec: 021b lsls r3, r3, #8 - 80052ee: 4313 orrs r3, r2 - 80052f0: 693a ldr r2, [r7, #16] - 80052f2: 4313 orrs r3, r2 - 80052f4: 613b str r3, [r7, #16] + 8005334: 683b ldr r3, [r7, #0] + 8005336: 68da ldr r2, [r3, #12] + 8005338: 683b ldr r3, [r7, #0] + 800533a: 69db ldr r3, [r3, #28] + 800533c: 021b lsls r3, r3, #8 + 800533e: 4313 orrs r3, r2 + 8005340: 693a ldr r2, [r7, #16] + 8005342: 4313 orrs r3, r2 + 8005344: 613b str r3, [r7, #16] tmpccmr1 |= (sConfig->IC1Filter << 4U) | (sConfig->IC2Filter << 12U); - 80052f6: 683b ldr r3, [r7, #0] - 80052f8: 691b ldr r3, [r3, #16] - 80052fa: 011a lsls r2, r3, #4 - 80052fc: 683b ldr r3, [r7, #0] - 80052fe: 6a1b ldr r3, [r3, #32] - 8005300: 031b lsls r3, r3, #12 - 8005302: 4313 orrs r3, r2 - 8005304: 693a ldr r2, [r7, #16] - 8005306: 4313 orrs r3, r2 - 8005308: 613b str r3, [r7, #16] + 8005346: 683b ldr r3, [r7, #0] + 8005348: 691b ldr r3, [r3, #16] + 800534a: 011a lsls r2, r3, #4 + 800534c: 683b ldr r3, [r7, #0] + 800534e: 6a1b ldr r3, [r3, #32] + 8005350: 031b lsls r3, r3, #12 + 8005352: 4313 orrs r3, r2 + 8005354: 693a ldr r2, [r7, #16] + 8005356: 4313 orrs r3, r2 + 8005358: 613b str r3, [r7, #16] /* Set the TI1 and the TI2 Polarities */ tmpccer &= ~(TIM_CCER_CC1P | TIM_CCER_CC2P); - 800530a: 68fb ldr r3, [r7, #12] - 800530c: f023 0322 bic.w r3, r3, #34 @ 0x22 - 8005310: 60fb str r3, [r7, #12] + 800535a: 68fb ldr r3, [r7, #12] + 800535c: f023 0322 bic.w r3, r3, #34 @ 0x22 + 8005360: 60fb str r3, [r7, #12] tmpccer &= ~(TIM_CCER_CC1NP | TIM_CCER_CC2NP); - 8005312: 68fb ldr r3, [r7, #12] - 8005314: f023 0388 bic.w r3, r3, #136 @ 0x88 - 8005318: 60fb str r3, [r7, #12] + 8005362: 68fb ldr r3, [r7, #12] + 8005364: f023 0388 bic.w r3, r3, #136 @ 0x88 + 8005368: 60fb str r3, [r7, #12] tmpccer |= sConfig->IC1Polarity | (sConfig->IC2Polarity << 4U); - 800531a: 683b ldr r3, [r7, #0] - 800531c: 685a ldr r2, [r3, #4] - 800531e: 683b ldr r3, [r7, #0] - 8005320: 695b ldr r3, [r3, #20] - 8005322: 011b lsls r3, r3, #4 - 8005324: 4313 orrs r3, r2 - 8005326: 68fa ldr r2, [r7, #12] - 8005328: 4313 orrs r3, r2 - 800532a: 60fb str r3, [r7, #12] + 800536a: 683b ldr r3, [r7, #0] + 800536c: 685a ldr r2, [r3, #4] + 800536e: 683b ldr r3, [r7, #0] + 8005370: 695b ldr r3, [r3, #20] + 8005372: 011b lsls r3, r3, #4 + 8005374: 4313 orrs r3, r2 + 8005376: 68fa ldr r2, [r7, #12] + 8005378: 4313 orrs r3, r2 + 800537a: 60fb str r3, [r7, #12] /* Write to TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 800532c: 687b ldr r3, [r7, #4] - 800532e: 681b ldr r3, [r3, #0] - 8005330: 697a ldr r2, [r7, #20] - 8005332: 609a str r2, [r3, #8] + 800537c: 687b ldr r3, [r7, #4] + 800537e: 681b ldr r3, [r3, #0] + 8005380: 697a ldr r2, [r7, #20] + 8005382: 609a str r2, [r3, #8] /* Write to TIMx CCMR1 */ htim->Instance->CCMR1 = tmpccmr1; - 8005334: 687b ldr r3, [r7, #4] - 8005336: 681b ldr r3, [r3, #0] - 8005338: 693a ldr r2, [r7, #16] - 800533a: 619a str r2, [r3, #24] + 8005384: 687b ldr r3, [r7, #4] + 8005386: 681b ldr r3, [r3, #0] + 8005388: 693a ldr r2, [r7, #16] + 800538a: 619a str r2, [r3, #24] /* Write to TIMx CCER */ htim->Instance->CCER = tmpccer; - 800533c: 687b ldr r3, [r7, #4] - 800533e: 681b ldr r3, [r3, #0] - 8005340: 68fa ldr r2, [r7, #12] - 8005342: 621a str r2, [r3, #32] + 800538c: 687b ldr r3, [r7, #4] + 800538e: 681b ldr r3, [r3, #0] + 8005390: 68fa ldr r2, [r7, #12] + 8005392: 621a str r2, [r3, #32] /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 8005344: 687b ldr r3, [r7, #4] - 8005346: 2201 movs r2, #1 - 8005348: f883 2046 strb.w r2, [r3, #70] @ 0x46 + 8005394: 687b ldr r3, [r7, #4] + 8005396: 2201 movs r2, #1 + 8005398: f883 2046 strb.w r2, [r3, #70] @ 0x46 /* Set the TIM channels state */ TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_READY); - 800534c: 687b ldr r3, [r7, #4] - 800534e: 2201 movs r2, #1 - 8005350: f883 203e strb.w r2, [r3, #62] @ 0x3e + 800539c: 687b ldr r3, [r7, #4] + 800539e: 2201 movs r2, #1 + 80053a0: f883 203e strb.w r2, [r3, #62] @ 0x3e TIM_CHANNEL_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_READY); - 8005354: 687b ldr r3, [r7, #4] - 8005356: 2201 movs r2, #1 - 8005358: f883 203f strb.w r2, [r3, #63] @ 0x3f + 80053a4: 687b ldr r3, [r7, #4] + 80053a6: 2201 movs r2, #1 + 80053a8: f883 203f strb.w r2, [r3, #63] @ 0x3f TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_1, HAL_TIM_CHANNEL_STATE_READY); - 800535c: 687b ldr r3, [r7, #4] - 800535e: 2201 movs r2, #1 - 8005360: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80053ac: 687b ldr r3, [r7, #4] + 80053ae: 2201 movs r2, #1 + 80053b0: f883 2042 strb.w r2, [r3, #66] @ 0x42 TIM_CHANNEL_N_STATE_SET(htim, TIM_CHANNEL_2, HAL_TIM_CHANNEL_STATE_READY); - 8005364: 687b ldr r3, [r7, #4] - 8005366: 2201 movs r2, #1 - 8005368: f883 2043 strb.w r2, [r3, #67] @ 0x43 + 80053b4: 687b ldr r3, [r7, #4] + 80053b6: 2201 movs r2, #1 + 80053b8: f883 2043 strb.w r2, [r3, #67] @ 0x43 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 800536c: 687b ldr r3, [r7, #4] - 800536e: 2201 movs r2, #1 - 8005370: f883 203d strb.w r2, [r3, #61] @ 0x3d + 80053bc: 687b ldr r3, [r7, #4] + 80053be: 2201 movs r2, #1 + 80053c0: f883 203d strb.w r2, [r3, #61] @ 0x3d return HAL_OK; - 8005374: 2300 movs r3, #0 + 80053c4: 2300 movs r3, #0 } - 8005376: 4618 mov r0, r3 - 8005378: 3718 adds r7, #24 - 800537a: 46bd mov sp, r7 - 800537c: bd80 pop {r7, pc} + 80053c6: 4618 mov r0, r3 + 80053c8: 3718 adds r7, #24 + 80053ca: 46bd mov sp, r7 + 80053cc: bd80 pop {r7, pc} ... -08005380 : +080053d0 : * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_OC_ConfigChannel(TIM_HandleTypeDef *htim, const TIM_OC_InitTypeDef *sConfig, uint32_t Channel) { - 8005380: b580 push {r7, lr} - 8005382: b086 sub sp, #24 - 8005384: af00 add r7, sp, #0 - 8005386: 60f8 str r0, [r7, #12] - 8005388: 60b9 str r1, [r7, #8] - 800538a: 607a str r2, [r7, #4] + 80053d0: b580 push {r7, lr} + 80053d2: b086 sub sp, #24 + 80053d4: af00 add r7, sp, #0 + 80053d6: 60f8 str r0, [r7, #12] + 80053d8: 60b9 str r1, [r7, #8] + 80053da: 607a str r2, [r7, #4] HAL_StatusTypeDef status = HAL_OK; - 800538c: 2300 movs r3, #0 - 800538e: 75fb strb r3, [r7, #23] + 80053dc: 2300 movs r3, #0 + 80053de: 75fb strb r3, [r7, #23] assert_param(IS_TIM_CHANNELS(Channel)); assert_param(IS_TIM_OC_MODE(sConfig->OCMode)); assert_param(IS_TIM_OC_POLARITY(sConfig->OCPolarity)); /* Process Locked */ __HAL_LOCK(htim); - 8005390: 68fb ldr r3, [r7, #12] - 8005392: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 8005396: 2b01 cmp r3, #1 - 8005398: d101 bne.n 800539e - 800539a: 2302 movs r3, #2 - 800539c: e048 b.n 8005430 - 800539e: 68fb ldr r3, [r7, #12] - 80053a0: 2201 movs r2, #1 - 80053a2: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80053e0: 68fb ldr r3, [r7, #12] + 80053e2: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 80053e6: 2b01 cmp r3, #1 + 80053e8: d101 bne.n 80053ee + 80053ea: 2302 movs r3, #2 + 80053ec: e048 b.n 8005480 + 80053ee: 68fb ldr r3, [r7, #12] + 80053f0: 2201 movs r2, #1 + 80053f2: f883 203c strb.w r2, [r3, #60] @ 0x3c switch (Channel) - 80053a6: 687b ldr r3, [r7, #4] - 80053a8: 2b0c cmp r3, #12 - 80053aa: d839 bhi.n 8005420 - 80053ac: a201 add r2, pc, #4 @ (adr r2, 80053b4 ) - 80053ae: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80053b2: bf00 nop - 80053b4: 080053e9 .word 0x080053e9 - 80053b8: 08005421 .word 0x08005421 - 80053bc: 08005421 .word 0x08005421 - 80053c0: 08005421 .word 0x08005421 - 80053c4: 080053f7 .word 0x080053f7 - 80053c8: 08005421 .word 0x08005421 - 80053cc: 08005421 .word 0x08005421 - 80053d0: 08005421 .word 0x08005421 - 80053d4: 08005405 .word 0x08005405 - 80053d8: 08005421 .word 0x08005421 - 80053dc: 08005421 .word 0x08005421 - 80053e0: 08005421 .word 0x08005421 - 80053e4: 08005413 .word 0x08005413 + 80053f6: 687b ldr r3, [r7, #4] + 80053f8: 2b0c cmp r3, #12 + 80053fa: d839 bhi.n 8005470 + 80053fc: a201 add r2, pc, #4 @ (adr r2, 8005404 ) + 80053fe: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8005402: bf00 nop + 8005404: 08005439 .word 0x08005439 + 8005408: 08005471 .word 0x08005471 + 800540c: 08005471 .word 0x08005471 + 8005410: 08005471 .word 0x08005471 + 8005414: 08005447 .word 0x08005447 + 8005418: 08005471 .word 0x08005471 + 800541c: 08005471 .word 0x08005471 + 8005420: 08005471 .word 0x08005471 + 8005424: 08005455 .word 0x08005455 + 8005428: 08005471 .word 0x08005471 + 800542c: 08005471 .word 0x08005471 + 8005430: 08005471 .word 0x08005471 + 8005434: 08005463 .word 0x08005463 { /* Check the parameters */ assert_param(IS_TIM_CC1_INSTANCE(htim->Instance)); /* Configure the TIM Channel 1 in Output Compare */ TIM_OC1_SetConfig(htim->Instance, sConfig); - 80053e8: 68fb ldr r3, [r7, #12] - 80053ea: 681b ldr r3, [r3, #0] - 80053ec: 68b9 ldr r1, [r7, #8] - 80053ee: 4618 mov r0, r3 - 80053f0: f000 f8c8 bl 8005584 + 8005438: 68fb ldr r3, [r7, #12] + 800543a: 681b ldr r3, [r3, #0] + 800543c: 68b9 ldr r1, [r7, #8] + 800543e: 4618 mov r0, r3 + 8005440: f000 f8c8 bl 80055d4 break; - 80053f4: e017 b.n 8005426 + 8005444: e017 b.n 8005476 { /* Check the parameters */ assert_param(IS_TIM_CC2_INSTANCE(htim->Instance)); /* Configure the TIM Channel 2 in Output Compare */ TIM_OC2_SetConfig(htim->Instance, sConfig); - 80053f6: 68fb ldr r3, [r7, #12] - 80053f8: 681b ldr r3, [r3, #0] - 80053fa: 68b9 ldr r1, [r7, #8] - 80053fc: 4618 mov r0, r3 - 80053fe: f000 f931 bl 8005664 + 8005446: 68fb ldr r3, [r7, #12] + 8005448: 681b ldr r3, [r3, #0] + 800544a: 68b9 ldr r1, [r7, #8] + 800544c: 4618 mov r0, r3 + 800544e: f000 f931 bl 80056b4 break; - 8005402: e010 b.n 8005426 + 8005452: e010 b.n 8005476 { /* Check the parameters */ assert_param(IS_TIM_CC3_INSTANCE(htim->Instance)); /* Configure the TIM Channel 3 in Output Compare */ TIM_OC3_SetConfig(htim->Instance, sConfig); - 8005404: 68fb ldr r3, [r7, #12] - 8005406: 681b ldr r3, [r3, #0] - 8005408: 68b9 ldr r1, [r7, #8] - 800540a: 4618 mov r0, r3 - 800540c: f000 f9a0 bl 8005750 + 8005454: 68fb ldr r3, [r7, #12] + 8005456: 681b ldr r3, [r3, #0] + 8005458: 68b9 ldr r1, [r7, #8] + 800545a: 4618 mov r0, r3 + 800545c: f000 f9a0 bl 80057a0 break; - 8005410: e009 b.n 8005426 + 8005460: e009 b.n 8005476 { /* Check the parameters */ assert_param(IS_TIM_CC4_INSTANCE(htim->Instance)); /* Configure the TIM Channel 4 in Output Compare */ TIM_OC4_SetConfig(htim->Instance, sConfig); - 8005412: 68fb ldr r3, [r7, #12] - 8005414: 681b ldr r3, [r3, #0] - 8005416: 68b9 ldr r1, [r7, #8] - 8005418: 4618 mov r0, r3 - 800541a: f000 fa0d bl 8005838 + 8005462: 68fb ldr r3, [r7, #12] + 8005464: 681b ldr r3, [r3, #0] + 8005466: 68b9 ldr r1, [r7, #8] + 8005468: 4618 mov r0, r3 + 800546a: f000 fa0d bl 8005888 break; - 800541e: e002 b.n 8005426 + 800546e: e002 b.n 8005476 } default: status = HAL_ERROR; - 8005420: 2301 movs r3, #1 - 8005422: 75fb strb r3, [r7, #23] + 8005470: 2301 movs r3, #1 + 8005472: 75fb strb r3, [r7, #23] break; - 8005424: bf00 nop + 8005474: bf00 nop } __HAL_UNLOCK(htim); - 8005426: 68fb ldr r3, [r7, #12] - 8005428: 2200 movs r2, #0 - 800542a: f883 203c strb.w r2, [r3, #60] @ 0x3c + 8005476: 68fb ldr r3, [r7, #12] + 8005478: 2200 movs r2, #0 + 800547a: f883 203c strb.w r2, [r3, #60] @ 0x3c return status; - 800542e: 7dfb ldrb r3, [r7, #23] + 800547e: 7dfb ldrb r3, [r7, #23] } - 8005430: 4618 mov r0, r3 - 8005432: 3718 adds r7, #24 - 8005434: 46bd mov sp, r7 - 8005436: bd80 pop {r7, pc} + 8005480: 4618 mov r0, r3 + 8005482: 3718 adds r7, #24 + 8005484: 46bd mov sp, r7 + 8005486: bd80 pop {r7, pc} -08005438 : +08005488 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, const TIM_Base_InitTypeDef *Structure) { - 8005438: b480 push {r7} - 800543a: b085 sub sp, #20 - 800543c: af00 add r7, sp, #0 - 800543e: 6078 str r0, [r7, #4] - 8005440: 6039 str r1, [r7, #0] + 8005488: b480 push {r7} + 800548a: b085 sub sp, #20 + 800548c: af00 add r7, sp, #0 + 800548e: 6078 str r0, [r7, #4] + 8005490: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 8005442: 687b ldr r3, [r7, #4] - 8005444: 681b ldr r3, [r3, #0] - 8005446: 60fb str r3, [r7, #12] + 8005492: 687b ldr r3, [r7, #4] + 8005494: 681b ldr r3, [r3, #0] + 8005496: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 8005448: 687b ldr r3, [r7, #4] - 800544a: 4a43 ldr r2, [pc, #268] @ (8005558 ) - 800544c: 4293 cmp r3, r2 - 800544e: d013 beq.n 8005478 - 8005450: 687b ldr r3, [r7, #4] - 8005452: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8005456: d00f beq.n 8005478 - 8005458: 687b ldr r3, [r7, #4] - 800545a: 4a40 ldr r2, [pc, #256] @ (800555c ) - 800545c: 4293 cmp r3, r2 - 800545e: d00b beq.n 8005478 - 8005460: 687b ldr r3, [r7, #4] - 8005462: 4a3f ldr r2, [pc, #252] @ (8005560 ) - 8005464: 4293 cmp r3, r2 - 8005466: d007 beq.n 8005478 - 8005468: 687b ldr r3, [r7, #4] - 800546a: 4a3e ldr r2, [pc, #248] @ (8005564 ) - 800546c: 4293 cmp r3, r2 - 800546e: d003 beq.n 8005478 - 8005470: 687b ldr r3, [r7, #4] - 8005472: 4a3d ldr r2, [pc, #244] @ (8005568 ) - 8005474: 4293 cmp r3, r2 - 8005476: d108 bne.n 800548a + 8005498: 687b ldr r3, [r7, #4] + 800549a: 4a43 ldr r2, [pc, #268] @ (80055a8 ) + 800549c: 4293 cmp r3, r2 + 800549e: d013 beq.n 80054c8 + 80054a0: 687b ldr r3, [r7, #4] + 80054a2: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80054a6: d00f beq.n 80054c8 + 80054a8: 687b ldr r3, [r7, #4] + 80054aa: 4a40 ldr r2, [pc, #256] @ (80055ac ) + 80054ac: 4293 cmp r3, r2 + 80054ae: d00b beq.n 80054c8 + 80054b0: 687b ldr r3, [r7, #4] + 80054b2: 4a3f ldr r2, [pc, #252] @ (80055b0 ) + 80054b4: 4293 cmp r3, r2 + 80054b6: d007 beq.n 80054c8 + 80054b8: 687b ldr r3, [r7, #4] + 80054ba: 4a3e ldr r2, [pc, #248] @ (80055b4 ) + 80054bc: 4293 cmp r3, r2 + 80054be: d003 beq.n 80054c8 + 80054c0: 687b ldr r3, [r7, #4] + 80054c2: 4a3d ldr r2, [pc, #244] @ (80055b8 ) + 80054c4: 4293 cmp r3, r2 + 80054c6: d108 bne.n 80054da { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 8005478: 68fb ldr r3, [r7, #12] - 800547a: f023 0370 bic.w r3, r3, #112 @ 0x70 - 800547e: 60fb str r3, [r7, #12] + 80054c8: 68fb ldr r3, [r7, #12] + 80054ca: f023 0370 bic.w r3, r3, #112 @ 0x70 + 80054ce: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 8005480: 683b ldr r3, [r7, #0] - 8005482: 685b ldr r3, [r3, #4] - 8005484: 68fa ldr r2, [r7, #12] - 8005486: 4313 orrs r3, r2 - 8005488: 60fb str r3, [r7, #12] + 80054d0: 683b ldr r3, [r7, #0] + 80054d2: 685b ldr r3, [r3, #4] + 80054d4: 68fa ldr r2, [r7, #12] + 80054d6: 4313 orrs r3, r2 + 80054d8: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 800548a: 687b ldr r3, [r7, #4] - 800548c: 4a32 ldr r2, [pc, #200] @ (8005558 ) - 800548e: 4293 cmp r3, r2 - 8005490: d02b beq.n 80054ea - 8005492: 687b ldr r3, [r7, #4] - 8005494: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8005498: d027 beq.n 80054ea - 800549a: 687b ldr r3, [r7, #4] - 800549c: 4a2f ldr r2, [pc, #188] @ (800555c ) - 800549e: 4293 cmp r3, r2 - 80054a0: d023 beq.n 80054ea - 80054a2: 687b ldr r3, [r7, #4] - 80054a4: 4a2e ldr r2, [pc, #184] @ (8005560 ) - 80054a6: 4293 cmp r3, r2 - 80054a8: d01f beq.n 80054ea - 80054aa: 687b ldr r3, [r7, #4] - 80054ac: 4a2d ldr r2, [pc, #180] @ (8005564 ) - 80054ae: 4293 cmp r3, r2 - 80054b0: d01b beq.n 80054ea - 80054b2: 687b ldr r3, [r7, #4] - 80054b4: 4a2c ldr r2, [pc, #176] @ (8005568 ) - 80054b6: 4293 cmp r3, r2 - 80054b8: d017 beq.n 80054ea - 80054ba: 687b ldr r3, [r7, #4] - 80054bc: 4a2b ldr r2, [pc, #172] @ (800556c ) - 80054be: 4293 cmp r3, r2 - 80054c0: d013 beq.n 80054ea - 80054c2: 687b ldr r3, [r7, #4] - 80054c4: 4a2a ldr r2, [pc, #168] @ (8005570 ) - 80054c6: 4293 cmp r3, r2 - 80054c8: d00f beq.n 80054ea - 80054ca: 687b ldr r3, [r7, #4] - 80054cc: 4a29 ldr r2, [pc, #164] @ (8005574 ) - 80054ce: 4293 cmp r3, r2 - 80054d0: d00b beq.n 80054ea - 80054d2: 687b ldr r3, [r7, #4] - 80054d4: 4a28 ldr r2, [pc, #160] @ (8005578 ) - 80054d6: 4293 cmp r3, r2 - 80054d8: d007 beq.n 80054ea 80054da: 687b ldr r3, [r7, #4] - 80054dc: 4a27 ldr r2, [pc, #156] @ (800557c ) + 80054dc: 4a32 ldr r2, [pc, #200] @ (80055a8 ) 80054de: 4293 cmp r3, r2 - 80054e0: d003 beq.n 80054ea + 80054e0: d02b beq.n 800553a 80054e2: 687b ldr r3, [r7, #4] - 80054e4: 4a26 ldr r2, [pc, #152] @ (8005580 ) - 80054e6: 4293 cmp r3, r2 - 80054e8: d108 bne.n 80054fc + 80054e4: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 80054e8: d027 beq.n 800553a + 80054ea: 687b ldr r3, [r7, #4] + 80054ec: 4a2f ldr r2, [pc, #188] @ (80055ac ) + 80054ee: 4293 cmp r3, r2 + 80054f0: d023 beq.n 800553a + 80054f2: 687b ldr r3, [r7, #4] + 80054f4: 4a2e ldr r2, [pc, #184] @ (80055b0 ) + 80054f6: 4293 cmp r3, r2 + 80054f8: d01f beq.n 800553a + 80054fa: 687b ldr r3, [r7, #4] + 80054fc: 4a2d ldr r2, [pc, #180] @ (80055b4 ) + 80054fe: 4293 cmp r3, r2 + 8005500: d01b beq.n 800553a + 8005502: 687b ldr r3, [r7, #4] + 8005504: 4a2c ldr r2, [pc, #176] @ (80055b8 ) + 8005506: 4293 cmp r3, r2 + 8005508: d017 beq.n 800553a + 800550a: 687b ldr r3, [r7, #4] + 800550c: 4a2b ldr r2, [pc, #172] @ (80055bc ) + 800550e: 4293 cmp r3, r2 + 8005510: d013 beq.n 800553a + 8005512: 687b ldr r3, [r7, #4] + 8005514: 4a2a ldr r2, [pc, #168] @ (80055c0 ) + 8005516: 4293 cmp r3, r2 + 8005518: d00f beq.n 800553a + 800551a: 687b ldr r3, [r7, #4] + 800551c: 4a29 ldr r2, [pc, #164] @ (80055c4 ) + 800551e: 4293 cmp r3, r2 + 8005520: d00b beq.n 800553a + 8005522: 687b ldr r3, [r7, #4] + 8005524: 4a28 ldr r2, [pc, #160] @ (80055c8 ) + 8005526: 4293 cmp r3, r2 + 8005528: d007 beq.n 800553a + 800552a: 687b ldr r3, [r7, #4] + 800552c: 4a27 ldr r2, [pc, #156] @ (80055cc ) + 800552e: 4293 cmp r3, r2 + 8005530: d003 beq.n 800553a + 8005532: 687b ldr r3, [r7, #4] + 8005534: 4a26 ldr r2, [pc, #152] @ (80055d0 ) + 8005536: 4293 cmp r3, r2 + 8005538: d108 bne.n 800554c { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 80054ea: 68fb ldr r3, [r7, #12] - 80054ec: f423 7340 bic.w r3, r3, #768 @ 0x300 - 80054f0: 60fb str r3, [r7, #12] + 800553a: 68fb ldr r3, [r7, #12] + 800553c: f423 7340 bic.w r3, r3, #768 @ 0x300 + 8005540: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 80054f2: 683b ldr r3, [r7, #0] - 80054f4: 68db ldr r3, [r3, #12] - 80054f6: 68fa ldr r2, [r7, #12] - 80054f8: 4313 orrs r3, r2 - 80054fa: 60fb str r3, [r7, #12] + 8005542: 683b ldr r3, [r7, #0] + 8005544: 68db ldr r3, [r3, #12] + 8005546: 68fa ldr r2, [r7, #12] + 8005548: 4313 orrs r3, r2 + 800554a: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 80054fc: 68fb ldr r3, [r7, #12] - 80054fe: f023 0280 bic.w r2, r3, #128 @ 0x80 - 8005502: 683b ldr r3, [r7, #0] - 8005504: 695b ldr r3, [r3, #20] - 8005506: 4313 orrs r3, r2 - 8005508: 60fb str r3, [r7, #12] + 800554c: 68fb ldr r3, [r7, #12] + 800554e: f023 0280 bic.w r2, r3, #128 @ 0x80 + 8005552: 683b ldr r3, [r7, #0] + 8005554: 695b ldr r3, [r3, #20] + 8005556: 4313 orrs r3, r2 + 8005558: 60fb str r3, [r7, #12] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 800550a: 683b ldr r3, [r7, #0] - 800550c: 689a ldr r2, [r3, #8] - 800550e: 687b ldr r3, [r7, #4] - 8005510: 62da str r2, [r3, #44] @ 0x2c + 800555a: 683b ldr r3, [r7, #0] + 800555c: 689a ldr r2, [r3, #8] + 800555e: 687b ldr r3, [r7, #4] + 8005560: 62da str r2, [r3, #44] @ 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 8005512: 683b ldr r3, [r7, #0] - 8005514: 681a ldr r2, [r3, #0] - 8005516: 687b ldr r3, [r7, #4] - 8005518: 629a str r2, [r3, #40] @ 0x28 + 8005562: 683b ldr r3, [r7, #0] + 8005564: 681a ldr r2, [r3, #0] + 8005566: 687b ldr r3, [r7, #4] + 8005568: 629a str r2, [r3, #40] @ 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 800551a: 687b ldr r3, [r7, #4] - 800551c: 4a0e ldr r2, [pc, #56] @ (8005558 ) - 800551e: 4293 cmp r3, r2 - 8005520: d003 beq.n 800552a - 8005522: 687b ldr r3, [r7, #4] - 8005524: 4a10 ldr r2, [pc, #64] @ (8005568 ) - 8005526: 4293 cmp r3, r2 - 8005528: d103 bne.n 8005532 + 800556a: 687b ldr r3, [r7, #4] + 800556c: 4a0e ldr r2, [pc, #56] @ (80055a8 ) + 800556e: 4293 cmp r3, r2 + 8005570: d003 beq.n 800557a + 8005572: 687b ldr r3, [r7, #4] + 8005574: 4a10 ldr r2, [pc, #64] @ (80055b8 ) + 8005576: 4293 cmp r3, r2 + 8005578: d103 bne.n 8005582 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 800552a: 683b ldr r3, [r7, #0] - 800552c: 691a ldr r2, [r3, #16] - 800552e: 687b ldr r3, [r7, #4] - 8005530: 631a str r2, [r3, #48] @ 0x30 + 800557a: 683b ldr r3, [r7, #0] + 800557c: 691a ldr r2, [r3, #16] + 800557e: 687b ldr r3, [r7, #4] + 8005580: 631a str r2, [r3, #48] @ 0x30 } /* Disable Update Event (UEV) with Update Generation (UG) by changing Update Request Source (URS) to avoid Update flag (UIF) */ SET_BIT(TIMx->CR1, TIM_CR1_URS); - 8005532: 687b ldr r3, [r7, #4] - 8005534: 681b ldr r3, [r3, #0] - 8005536: f043 0204 orr.w r2, r3, #4 - 800553a: 687b ldr r3, [r7, #4] - 800553c: 601a str r2, [r3, #0] + 8005582: 687b ldr r3, [r7, #4] + 8005584: 681b ldr r3, [r3, #0] + 8005586: f043 0204 orr.w r2, r3, #4 + 800558a: 687b ldr r3, [r7, #4] + 800558c: 601a str r2, [r3, #0] /* Generate an update event to reload the Prescaler and the repetition counter (only for advanced timer) value immediately */ TIMx->EGR = TIM_EGR_UG; - 800553e: 687b ldr r3, [r7, #4] - 8005540: 2201 movs r2, #1 - 8005542: 615a str r2, [r3, #20] + 800558e: 687b ldr r3, [r7, #4] + 8005590: 2201 movs r2, #1 + 8005592: 615a str r2, [r3, #20] TIMx->CR1 = tmpcr1; - 8005544: 687b ldr r3, [r7, #4] - 8005546: 68fa ldr r2, [r7, #12] - 8005548: 601a str r2, [r3, #0] + 8005594: 687b ldr r3, [r7, #4] + 8005596: 68fa ldr r2, [r7, #12] + 8005598: 601a str r2, [r3, #0] } - 800554a: bf00 nop - 800554c: 3714 adds r7, #20 - 800554e: 46bd mov sp, r7 - 8005550: f85d 7b04 ldr.w r7, [sp], #4 - 8005554: 4770 bx lr - 8005556: bf00 nop - 8005558: 40010000 .word 0x40010000 - 800555c: 40000400 .word 0x40000400 - 8005560: 40000800 .word 0x40000800 - 8005564: 40000c00 .word 0x40000c00 - 8005568: 40010400 .word 0x40010400 - 800556c: 40014000 .word 0x40014000 - 8005570: 40014400 .word 0x40014400 - 8005574: 40014800 .word 0x40014800 - 8005578: 40001800 .word 0x40001800 - 800557c: 40001c00 .word 0x40001c00 - 8005580: 40002000 .word 0x40002000 + 800559a: bf00 nop + 800559c: 3714 adds r7, #20 + 800559e: 46bd mov sp, r7 + 80055a0: f85d 7b04 ldr.w r7, [sp], #4 + 80055a4: 4770 bx lr + 80055a6: bf00 nop + 80055a8: 40010000 .word 0x40010000 + 80055ac: 40000400 .word 0x40000400 + 80055b0: 40000800 .word 0x40000800 + 80055b4: 40000c00 .word 0x40000c00 + 80055b8: 40010400 .word 0x40010400 + 80055bc: 40014000 .word 0x40014000 + 80055c0: 40014400 .word 0x40014400 + 80055c4: 40014800 .word 0x40014800 + 80055c8: 40001800 .word 0x40001800 + 80055cc: 40001c00 .word 0x40001c00 + 80055d0: 40002000 .word 0x40002000 -08005584 : +080055d4 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC1_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005584: b480 push {r7} - 8005586: b087 sub sp, #28 - 8005588: af00 add r7, sp, #0 - 800558a: 6078 str r0, [r7, #4] - 800558c: 6039 str r1, [r7, #0] + 80055d4: b480 push {r7} + 80055d6: b087 sub sp, #28 + 80055d8: af00 add r7, sp, #0 + 80055da: 6078 str r0, [r7, #4] + 80055dc: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 800558e: 687b ldr r3, [r7, #4] - 8005590: 6a1b ldr r3, [r3, #32] - 8005592: 617b str r3, [r7, #20] + 80055de: 687b ldr r3, [r7, #4] + 80055e0: 6a1b ldr r3, [r3, #32] + 80055e2: 617b str r3, [r7, #20] /* Disable the Channel 1: Reset the CC1E Bit */ TIMx->CCER &= ~TIM_CCER_CC1E; - 8005594: 687b ldr r3, [r7, #4] - 8005596: 6a1b ldr r3, [r3, #32] - 8005598: f023 0201 bic.w r2, r3, #1 - 800559c: 687b ldr r3, [r7, #4] - 800559e: 621a str r2, [r3, #32] + 80055e4: 687b ldr r3, [r7, #4] + 80055e6: 6a1b ldr r3, [r3, #32] + 80055e8: f023 0201 bic.w r2, r3, #1 + 80055ec: 687b ldr r3, [r7, #4] + 80055ee: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 80055a0: 687b ldr r3, [r7, #4] - 80055a2: 685b ldr r3, [r3, #4] - 80055a4: 613b str r3, [r7, #16] + 80055f0: 687b ldr r3, [r7, #4] + 80055f2: 685b ldr r3, [r3, #4] + 80055f4: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 80055a6: 687b ldr r3, [r7, #4] - 80055a8: 699b ldr r3, [r3, #24] - 80055aa: 60fb str r3, [r7, #12] + 80055f6: 687b ldr r3, [r7, #4] + 80055f8: 699b ldr r3, [r3, #24] + 80055fa: 60fb str r3, [r7, #12] /* Reset the Output Compare Mode Bits */ tmpccmrx &= ~TIM_CCMR1_OC1M; - 80055ac: 68fb ldr r3, [r7, #12] - 80055ae: f023 0370 bic.w r3, r3, #112 @ 0x70 - 80055b2: 60fb str r3, [r7, #12] + 80055fc: 68fb ldr r3, [r7, #12] + 80055fe: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8005602: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC1S; - 80055b4: 68fb ldr r3, [r7, #12] - 80055b6: f023 0303 bic.w r3, r3, #3 - 80055ba: 60fb str r3, [r7, #12] + 8005604: 68fb ldr r3, [r7, #12] + 8005606: f023 0303 bic.w r3, r3, #3 + 800560a: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 80055bc: 683b ldr r3, [r7, #0] - 80055be: 681b ldr r3, [r3, #0] - 80055c0: 68fa ldr r2, [r7, #12] - 80055c2: 4313 orrs r3, r2 - 80055c4: 60fb str r3, [r7, #12] + 800560c: 683b ldr r3, [r7, #0] + 800560e: 681b ldr r3, [r3, #0] + 8005610: 68fa ldr r2, [r7, #12] + 8005612: 4313 orrs r3, r2 + 8005614: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC1P; - 80055c6: 697b ldr r3, [r7, #20] - 80055c8: f023 0302 bic.w r3, r3, #2 - 80055cc: 617b str r3, [r7, #20] + 8005616: 697b ldr r3, [r7, #20] + 8005618: f023 0302 bic.w r3, r3, #2 + 800561c: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= OC_Config->OCPolarity; - 80055ce: 683b ldr r3, [r7, #0] - 80055d0: 689b ldr r3, [r3, #8] - 80055d2: 697a ldr r2, [r7, #20] - 80055d4: 4313 orrs r3, r2 - 80055d6: 617b str r3, [r7, #20] + 800561e: 683b ldr r3, [r7, #0] + 8005620: 689b ldr r3, [r3, #8] + 8005622: 697a ldr r2, [r7, #20] + 8005624: 4313 orrs r3, r2 + 8005626: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_1)) - 80055d8: 687b ldr r3, [r7, #4] - 80055da: 4a20 ldr r2, [pc, #128] @ (800565c ) - 80055dc: 4293 cmp r3, r2 - 80055de: d003 beq.n 80055e8 - 80055e0: 687b ldr r3, [r7, #4] - 80055e2: 4a1f ldr r2, [pc, #124] @ (8005660 ) - 80055e4: 4293 cmp r3, r2 - 80055e6: d10c bne.n 8005602 + 8005628: 687b ldr r3, [r7, #4] + 800562a: 4a20 ldr r2, [pc, #128] @ (80056ac ) + 800562c: 4293 cmp r3, r2 + 800562e: d003 beq.n 8005638 + 8005630: 687b ldr r3, [r7, #4] + 8005632: 4a1f ldr r2, [pc, #124] @ (80056b0 ) + 8005634: 4293 cmp r3, r2 + 8005636: d10c bne.n 8005652 { /* Check parameters */ assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC1NP; - 80055e8: 697b ldr r3, [r7, #20] - 80055ea: f023 0308 bic.w r3, r3, #8 - 80055ee: 617b str r3, [r7, #20] + 8005638: 697b ldr r3, [r7, #20] + 800563a: f023 0308 bic.w r3, r3, #8 + 800563e: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= OC_Config->OCNPolarity; - 80055f0: 683b ldr r3, [r7, #0] - 80055f2: 68db ldr r3, [r3, #12] - 80055f4: 697a ldr r2, [r7, #20] - 80055f6: 4313 orrs r3, r2 - 80055f8: 617b str r3, [r7, #20] + 8005640: 683b ldr r3, [r7, #0] + 8005642: 68db ldr r3, [r3, #12] + 8005644: 697a ldr r2, [r7, #20] + 8005646: 4313 orrs r3, r2 + 8005648: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC1NE; - 80055fa: 697b ldr r3, [r7, #20] - 80055fc: f023 0304 bic.w r3, r3, #4 - 8005600: 617b str r3, [r7, #20] + 800564a: 697b ldr r3, [r7, #20] + 800564c: f023 0304 bic.w r3, r3, #4 + 8005650: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 8005602: 687b ldr r3, [r7, #4] - 8005604: 4a15 ldr r2, [pc, #84] @ (800565c ) - 8005606: 4293 cmp r3, r2 - 8005608: d003 beq.n 8005612 - 800560a: 687b ldr r3, [r7, #4] - 800560c: 4a14 ldr r2, [pc, #80] @ (8005660 ) - 800560e: 4293 cmp r3, r2 - 8005610: d111 bne.n 8005636 + 8005652: 687b ldr r3, [r7, #4] + 8005654: 4a15 ldr r2, [pc, #84] @ (80056ac ) + 8005656: 4293 cmp r3, r2 + 8005658: d003 beq.n 8005662 + 800565a: 687b ldr r3, [r7, #4] + 800565c: 4a14 ldr r2, [pc, #80] @ (80056b0 ) + 800565e: 4293 cmp r3, r2 + 8005660: d111 bne.n 8005686 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS1; - 8005612: 693b ldr r3, [r7, #16] - 8005614: f423 7380 bic.w r3, r3, #256 @ 0x100 - 8005618: 613b str r3, [r7, #16] + 8005662: 693b ldr r3, [r7, #16] + 8005664: f423 7380 bic.w r3, r3, #256 @ 0x100 + 8005668: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS1N; - 800561a: 693b ldr r3, [r7, #16] - 800561c: f423 7300 bic.w r3, r3, #512 @ 0x200 - 8005620: 613b str r3, [r7, #16] + 800566a: 693b ldr r3, [r7, #16] + 800566c: f423 7300 bic.w r3, r3, #512 @ 0x200 + 8005670: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= OC_Config->OCIdleState; - 8005622: 683b ldr r3, [r7, #0] - 8005624: 695b ldr r3, [r3, #20] - 8005626: 693a ldr r2, [r7, #16] - 8005628: 4313 orrs r3, r2 - 800562a: 613b str r3, [r7, #16] + 8005672: 683b ldr r3, [r7, #0] + 8005674: 695b ldr r3, [r3, #20] + 8005676: 693a ldr r2, [r7, #16] + 8005678: 4313 orrs r3, r2 + 800567a: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= OC_Config->OCNIdleState; - 800562c: 683b ldr r3, [r7, #0] - 800562e: 699b ldr r3, [r3, #24] - 8005630: 693a ldr r2, [r7, #16] - 8005632: 4313 orrs r3, r2 - 8005634: 613b str r3, [r7, #16] + 800567c: 683b ldr r3, [r7, #0] + 800567e: 699b ldr r3, [r3, #24] + 8005680: 693a ldr r2, [r7, #16] + 8005682: 4313 orrs r3, r2 + 8005684: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 8005636: 687b ldr r3, [r7, #4] - 8005638: 693a ldr r2, [r7, #16] - 800563a: 605a str r2, [r3, #4] + 8005686: 687b ldr r3, [r7, #4] + 8005688: 693a ldr r2, [r7, #16] + 800568a: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 800563c: 687b ldr r3, [r7, #4] - 800563e: 68fa ldr r2, [r7, #12] - 8005640: 619a str r2, [r3, #24] + 800568c: 687b ldr r3, [r7, #4] + 800568e: 68fa ldr r2, [r7, #12] + 8005690: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR1 = OC_Config->Pulse; - 8005642: 683b ldr r3, [r7, #0] - 8005644: 685a ldr r2, [r3, #4] - 8005646: 687b ldr r3, [r7, #4] - 8005648: 635a str r2, [r3, #52] @ 0x34 + 8005692: 683b ldr r3, [r7, #0] + 8005694: 685a ldr r2, [r3, #4] + 8005696: 687b ldr r3, [r7, #4] + 8005698: 635a str r2, [r3, #52] @ 0x34 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 800564a: 687b ldr r3, [r7, #4] - 800564c: 697a ldr r2, [r7, #20] - 800564e: 621a str r2, [r3, #32] + 800569a: 687b ldr r3, [r7, #4] + 800569c: 697a ldr r2, [r7, #20] + 800569e: 621a str r2, [r3, #32] } - 8005650: bf00 nop - 8005652: 371c adds r7, #28 - 8005654: 46bd mov sp, r7 - 8005656: f85d 7b04 ldr.w r7, [sp], #4 - 800565a: 4770 bx lr - 800565c: 40010000 .word 0x40010000 - 8005660: 40010400 .word 0x40010400 + 80056a0: bf00 nop + 80056a2: 371c adds r7, #28 + 80056a4: 46bd mov sp, r7 + 80056a6: f85d 7b04 ldr.w r7, [sp], #4 + 80056aa: 4770 bx lr + 80056ac: 40010000 .word 0x40010000 + 80056b0: 40010400 .word 0x40010400 -08005664 : +080056b4 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ void TIM_OC2_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005664: b480 push {r7} - 8005666: b087 sub sp, #28 - 8005668: af00 add r7, sp, #0 - 800566a: 6078 str r0, [r7, #4] - 800566c: 6039 str r1, [r7, #0] + 80056b4: b480 push {r7} + 80056b6: b087 sub sp, #28 + 80056b8: af00 add r7, sp, #0 + 80056ba: 6078 str r0, [r7, #4] + 80056bc: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 800566e: 687b ldr r3, [r7, #4] - 8005670: 6a1b ldr r3, [r3, #32] - 8005672: 617b str r3, [r7, #20] + 80056be: 687b ldr r3, [r7, #4] + 80056c0: 6a1b ldr r3, [r3, #32] + 80056c2: 617b str r3, [r7, #20] /* Disable the Channel 2: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC2E; - 8005674: 687b ldr r3, [r7, #4] - 8005676: 6a1b ldr r3, [r3, #32] - 8005678: f023 0210 bic.w r2, r3, #16 - 800567c: 687b ldr r3, [r7, #4] - 800567e: 621a str r2, [r3, #32] + 80056c4: 687b ldr r3, [r7, #4] + 80056c6: 6a1b ldr r3, [r3, #32] + 80056c8: f023 0210 bic.w r2, r3, #16 + 80056cc: 687b ldr r3, [r7, #4] + 80056ce: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8005680: 687b ldr r3, [r7, #4] - 8005682: 685b ldr r3, [r3, #4] - 8005684: 613b str r3, [r7, #16] + 80056d0: 687b ldr r3, [r7, #4] + 80056d2: 685b ldr r3, [r3, #4] + 80056d4: 613b str r3, [r7, #16] /* Get the TIMx CCMR1 register value */ tmpccmrx = TIMx->CCMR1; - 8005686: 687b ldr r3, [r7, #4] - 8005688: 699b ldr r3, [r3, #24] - 800568a: 60fb str r3, [r7, #12] + 80056d6: 687b ldr r3, [r7, #4] + 80056d8: 699b ldr r3, [r3, #24] + 80056da: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR1_OC2M; - 800568c: 68fb ldr r3, [r7, #12] - 800568e: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 8005692: 60fb str r3, [r7, #12] + 80056dc: 68fb ldr r3, [r7, #12] + 80056de: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 80056e2: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR1_CC2S; - 8005694: 68fb ldr r3, [r7, #12] - 8005696: f423 7340 bic.w r3, r3, #768 @ 0x300 - 800569a: 60fb str r3, [r7, #12] + 80056e4: 68fb ldr r3, [r7, #12] + 80056e6: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80056ea: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 800569c: 683b ldr r3, [r7, #0] - 800569e: 681b ldr r3, [r3, #0] - 80056a0: 021b lsls r3, r3, #8 - 80056a2: 68fa ldr r2, [r7, #12] - 80056a4: 4313 orrs r3, r2 - 80056a6: 60fb str r3, [r7, #12] + 80056ec: 683b ldr r3, [r7, #0] + 80056ee: 681b ldr r3, [r3, #0] + 80056f0: 021b lsls r3, r3, #8 + 80056f2: 68fa ldr r2, [r7, #12] + 80056f4: 4313 orrs r3, r2 + 80056f6: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC2P; - 80056a8: 697b ldr r3, [r7, #20] - 80056aa: f023 0320 bic.w r3, r3, #32 - 80056ae: 617b str r3, [r7, #20] + 80056f8: 697b ldr r3, [r7, #20] + 80056fa: f023 0320 bic.w r3, r3, #32 + 80056fe: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 4U); - 80056b0: 683b ldr r3, [r7, #0] - 80056b2: 689b ldr r3, [r3, #8] - 80056b4: 011b lsls r3, r3, #4 - 80056b6: 697a ldr r2, [r7, #20] - 80056b8: 4313 orrs r3, r2 - 80056ba: 617b str r3, [r7, #20] + 8005700: 683b ldr r3, [r7, #0] + 8005702: 689b ldr r3, [r3, #8] + 8005704: 011b lsls r3, r3, #4 + 8005706: 697a ldr r2, [r7, #20] + 8005708: 4313 orrs r3, r2 + 800570a: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_2)) - 80056bc: 687b ldr r3, [r7, #4] - 80056be: 4a22 ldr r2, [pc, #136] @ (8005748 ) - 80056c0: 4293 cmp r3, r2 - 80056c2: d003 beq.n 80056cc - 80056c4: 687b ldr r3, [r7, #4] - 80056c6: 4a21 ldr r2, [pc, #132] @ (800574c ) - 80056c8: 4293 cmp r3, r2 - 80056ca: d10d bne.n 80056e8 + 800570c: 687b ldr r3, [r7, #4] + 800570e: 4a22 ldr r2, [pc, #136] @ (8005798 ) + 8005710: 4293 cmp r3, r2 + 8005712: d003 beq.n 800571c + 8005714: 687b ldr r3, [r7, #4] + 8005716: 4a21 ldr r2, [pc, #132] @ (800579c ) + 8005718: 4293 cmp r3, r2 + 800571a: d10d bne.n 8005738 { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC2NP; - 80056cc: 697b ldr r3, [r7, #20] - 80056ce: f023 0380 bic.w r3, r3, #128 @ 0x80 - 80056d2: 617b str r3, [r7, #20] + 800571c: 697b ldr r3, [r7, #20] + 800571e: f023 0380 bic.w r3, r3, #128 @ 0x80 + 8005722: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 4U); - 80056d4: 683b ldr r3, [r7, #0] - 80056d6: 68db ldr r3, [r3, #12] - 80056d8: 011b lsls r3, r3, #4 - 80056da: 697a ldr r2, [r7, #20] - 80056dc: 4313 orrs r3, r2 - 80056de: 617b str r3, [r7, #20] + 8005724: 683b ldr r3, [r7, #0] + 8005726: 68db ldr r3, [r3, #12] + 8005728: 011b lsls r3, r3, #4 + 800572a: 697a ldr r2, [r7, #20] + 800572c: 4313 orrs r3, r2 + 800572e: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC2NE; - 80056e0: 697b ldr r3, [r7, #20] - 80056e2: f023 0340 bic.w r3, r3, #64 @ 0x40 - 80056e6: 617b str r3, [r7, #20] + 8005730: 697b ldr r3, [r7, #20] + 8005732: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8005736: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 80056e8: 687b ldr r3, [r7, #4] - 80056ea: 4a17 ldr r2, [pc, #92] @ (8005748 ) - 80056ec: 4293 cmp r3, r2 - 80056ee: d003 beq.n 80056f8 - 80056f0: 687b ldr r3, [r7, #4] - 80056f2: 4a16 ldr r2, [pc, #88] @ (800574c ) - 80056f4: 4293 cmp r3, r2 - 80056f6: d113 bne.n 8005720 + 8005738: 687b ldr r3, [r7, #4] + 800573a: 4a17 ldr r2, [pc, #92] @ (8005798 ) + 800573c: 4293 cmp r3, r2 + 800573e: d003 beq.n 8005748 + 8005740: 687b ldr r3, [r7, #4] + 8005742: 4a16 ldr r2, [pc, #88] @ (800579c ) + 8005744: 4293 cmp r3, r2 + 8005746: d113 bne.n 8005770 /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS2; - 80056f8: 693b ldr r3, [r7, #16] - 80056fa: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 80056fe: 613b str r3, [r7, #16] + 8005748: 693b ldr r3, [r7, #16] + 800574a: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 800574e: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS2N; - 8005700: 693b ldr r3, [r7, #16] - 8005702: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 8005706: 613b str r3, [r7, #16] + 8005750: 693b ldr r3, [r7, #16] + 8005752: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 8005756: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 2U); - 8005708: 683b ldr r3, [r7, #0] - 800570a: 695b ldr r3, [r3, #20] - 800570c: 009b lsls r3, r3, #2 - 800570e: 693a ldr r2, [r7, #16] - 8005710: 4313 orrs r3, r2 - 8005712: 613b str r3, [r7, #16] + 8005758: 683b ldr r3, [r7, #0] + 800575a: 695b ldr r3, [r3, #20] + 800575c: 009b lsls r3, r3, #2 + 800575e: 693a ldr r2, [r7, #16] + 8005760: 4313 orrs r3, r2 + 8005762: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 2U); - 8005714: 683b ldr r3, [r7, #0] - 8005716: 699b ldr r3, [r3, #24] - 8005718: 009b lsls r3, r3, #2 - 800571a: 693a ldr r2, [r7, #16] - 800571c: 4313 orrs r3, r2 - 800571e: 613b str r3, [r7, #16] + 8005764: 683b ldr r3, [r7, #0] + 8005766: 699b ldr r3, [r3, #24] + 8005768: 009b lsls r3, r3, #2 + 800576a: 693a ldr r2, [r7, #16] + 800576c: 4313 orrs r3, r2 + 800576e: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 8005720: 687b ldr r3, [r7, #4] - 8005722: 693a ldr r2, [r7, #16] - 8005724: 605a str r2, [r3, #4] + 8005770: 687b ldr r3, [r7, #4] + 8005772: 693a ldr r2, [r7, #16] + 8005774: 605a str r2, [r3, #4] /* Write to TIMx CCMR1 */ TIMx->CCMR1 = tmpccmrx; - 8005726: 687b ldr r3, [r7, #4] - 8005728: 68fa ldr r2, [r7, #12] - 800572a: 619a str r2, [r3, #24] + 8005776: 687b ldr r3, [r7, #4] + 8005778: 68fa ldr r2, [r7, #12] + 800577a: 619a str r2, [r3, #24] /* Set the Capture Compare Register value */ TIMx->CCR2 = OC_Config->Pulse; - 800572c: 683b ldr r3, [r7, #0] - 800572e: 685a ldr r2, [r3, #4] - 8005730: 687b ldr r3, [r7, #4] - 8005732: 639a str r2, [r3, #56] @ 0x38 + 800577c: 683b ldr r3, [r7, #0] + 800577e: 685a ldr r2, [r3, #4] + 8005780: 687b ldr r3, [r7, #4] + 8005782: 639a str r2, [r3, #56] @ 0x38 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 8005734: 687b ldr r3, [r7, #4] - 8005736: 697a ldr r2, [r7, #20] - 8005738: 621a str r2, [r3, #32] + 8005784: 687b ldr r3, [r7, #4] + 8005786: 697a ldr r2, [r7, #20] + 8005788: 621a str r2, [r3, #32] } - 800573a: bf00 nop - 800573c: 371c adds r7, #28 - 800573e: 46bd mov sp, r7 - 8005740: f85d 7b04 ldr.w r7, [sp], #4 - 8005744: 4770 bx lr - 8005746: bf00 nop - 8005748: 40010000 .word 0x40010000 - 800574c: 40010400 .word 0x40010400 + 800578a: bf00 nop + 800578c: 371c adds r7, #28 + 800578e: 46bd mov sp, r7 + 8005790: f85d 7b04 ldr.w r7, [sp], #4 + 8005794: 4770 bx lr + 8005796: bf00 nop + 8005798: 40010000 .word 0x40010000 + 800579c: 40010400 .word 0x40010400 -08005750 : +080057a0 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC3_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005750: b480 push {r7} - 8005752: b087 sub sp, #28 - 8005754: af00 add r7, sp, #0 - 8005756: 6078 str r0, [r7, #4] - 8005758: 6039 str r1, [r7, #0] + 80057a0: b480 push {r7} + 80057a2: b087 sub sp, #28 + 80057a4: af00 add r7, sp, #0 + 80057a6: 6078 str r0, [r7, #4] + 80057a8: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 800575a: 687b ldr r3, [r7, #4] - 800575c: 6a1b ldr r3, [r3, #32] - 800575e: 617b str r3, [r7, #20] + 80057aa: 687b ldr r3, [r7, #4] + 80057ac: 6a1b ldr r3, [r3, #32] + 80057ae: 617b str r3, [r7, #20] /* Disable the Channel 3: Reset the CC2E Bit */ TIMx->CCER &= ~TIM_CCER_CC3E; - 8005760: 687b ldr r3, [r7, #4] - 8005762: 6a1b ldr r3, [r3, #32] - 8005764: f423 7280 bic.w r2, r3, #256 @ 0x100 - 8005768: 687b ldr r3, [r7, #4] - 800576a: 621a str r2, [r3, #32] + 80057b0: 687b ldr r3, [r7, #4] + 80057b2: 6a1b ldr r3, [r3, #32] + 80057b4: f423 7280 bic.w r2, r3, #256 @ 0x100 + 80057b8: 687b ldr r3, [r7, #4] + 80057ba: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 800576c: 687b ldr r3, [r7, #4] - 800576e: 685b ldr r3, [r3, #4] - 8005770: 613b str r3, [r7, #16] + 80057bc: 687b ldr r3, [r7, #4] + 80057be: 685b ldr r3, [r3, #4] + 80057c0: 613b str r3, [r7, #16] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 8005772: 687b ldr r3, [r7, #4] - 8005774: 69db ldr r3, [r3, #28] - 8005776: 60fb str r3, [r7, #12] + 80057c2: 687b ldr r3, [r7, #4] + 80057c4: 69db ldr r3, [r3, #28] + 80057c6: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC3M; - 8005778: 68fb ldr r3, [r7, #12] - 800577a: f023 0370 bic.w r3, r3, #112 @ 0x70 - 800577e: 60fb str r3, [r7, #12] + 80057c8: 68fb ldr r3, [r7, #12] + 80057ca: f023 0370 bic.w r3, r3, #112 @ 0x70 + 80057ce: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC3S; - 8005780: 68fb ldr r3, [r7, #12] - 8005782: f023 0303 bic.w r3, r3, #3 - 8005786: 60fb str r3, [r7, #12] + 80057d0: 68fb ldr r3, [r7, #12] + 80057d2: f023 0303 bic.w r3, r3, #3 + 80057d6: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= OC_Config->OCMode; - 8005788: 683b ldr r3, [r7, #0] - 800578a: 681b ldr r3, [r3, #0] - 800578c: 68fa ldr r2, [r7, #12] - 800578e: 4313 orrs r3, r2 - 8005790: 60fb str r3, [r7, #12] + 80057d8: 683b ldr r3, [r7, #0] + 80057da: 681b ldr r3, [r3, #0] + 80057dc: 68fa ldr r2, [r7, #12] + 80057de: 4313 orrs r3, r2 + 80057e0: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC3P; - 8005792: 697b ldr r3, [r7, #20] - 8005794: f423 7300 bic.w r3, r3, #512 @ 0x200 - 8005798: 617b str r3, [r7, #20] + 80057e2: 697b ldr r3, [r7, #20] + 80057e4: f423 7300 bic.w r3, r3, #512 @ 0x200 + 80057e8: 617b str r3, [r7, #20] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 8U); - 800579a: 683b ldr r3, [r7, #0] - 800579c: 689b ldr r3, [r3, #8] - 800579e: 021b lsls r3, r3, #8 - 80057a0: 697a ldr r2, [r7, #20] - 80057a2: 4313 orrs r3, r2 - 80057a4: 617b str r3, [r7, #20] + 80057ea: 683b ldr r3, [r7, #0] + 80057ec: 689b ldr r3, [r3, #8] + 80057ee: 021b lsls r3, r3, #8 + 80057f0: 697a ldr r2, [r7, #20] + 80057f2: 4313 orrs r3, r2 + 80057f4: 617b str r3, [r7, #20] if (IS_TIM_CCXN_INSTANCE(TIMx, TIM_CHANNEL_3)) - 80057a6: 687b ldr r3, [r7, #4] - 80057a8: 4a21 ldr r2, [pc, #132] @ (8005830 ) - 80057aa: 4293 cmp r3, r2 - 80057ac: d003 beq.n 80057b6 - 80057ae: 687b ldr r3, [r7, #4] - 80057b0: 4a20 ldr r2, [pc, #128] @ (8005834 ) - 80057b2: 4293 cmp r3, r2 - 80057b4: d10d bne.n 80057d2 + 80057f6: 687b ldr r3, [r7, #4] + 80057f8: 4a21 ldr r2, [pc, #132] @ (8005880 ) + 80057fa: 4293 cmp r3, r2 + 80057fc: d003 beq.n 8005806 + 80057fe: 687b ldr r3, [r7, #4] + 8005800: 4a20 ldr r2, [pc, #128] @ (8005884 ) + 8005802: 4293 cmp r3, r2 + 8005804: d10d bne.n 8005822 { assert_param(IS_TIM_OCN_POLARITY(OC_Config->OCNPolarity)); /* Reset the Output N Polarity level */ tmpccer &= ~TIM_CCER_CC3NP; - 80057b6: 697b ldr r3, [r7, #20] - 80057b8: f423 6300 bic.w r3, r3, #2048 @ 0x800 - 80057bc: 617b str r3, [r7, #20] + 8005806: 697b ldr r3, [r7, #20] + 8005808: f423 6300 bic.w r3, r3, #2048 @ 0x800 + 800580c: 617b str r3, [r7, #20] /* Set the Output N Polarity */ tmpccer |= (OC_Config->OCNPolarity << 8U); - 80057be: 683b ldr r3, [r7, #0] - 80057c0: 68db ldr r3, [r3, #12] - 80057c2: 021b lsls r3, r3, #8 - 80057c4: 697a ldr r2, [r7, #20] - 80057c6: 4313 orrs r3, r2 - 80057c8: 617b str r3, [r7, #20] + 800580e: 683b ldr r3, [r7, #0] + 8005810: 68db ldr r3, [r3, #12] + 8005812: 021b lsls r3, r3, #8 + 8005814: 697a ldr r2, [r7, #20] + 8005816: 4313 orrs r3, r2 + 8005818: 617b str r3, [r7, #20] /* Reset the Output N State */ tmpccer &= ~TIM_CCER_CC3NE; - 80057ca: 697b ldr r3, [r7, #20] - 80057cc: f423 6380 bic.w r3, r3, #1024 @ 0x400 - 80057d0: 617b str r3, [r7, #20] + 800581a: 697b ldr r3, [r7, #20] + 800581c: f423 6380 bic.w r3, r3, #1024 @ 0x400 + 8005820: 617b str r3, [r7, #20] } if (IS_TIM_BREAK_INSTANCE(TIMx)) - 80057d2: 687b ldr r3, [r7, #4] - 80057d4: 4a16 ldr r2, [pc, #88] @ (8005830 ) - 80057d6: 4293 cmp r3, r2 - 80057d8: d003 beq.n 80057e2 - 80057da: 687b ldr r3, [r7, #4] - 80057dc: 4a15 ldr r2, [pc, #84] @ (8005834 ) - 80057de: 4293 cmp r3, r2 - 80057e0: d113 bne.n 800580a + 8005822: 687b ldr r3, [r7, #4] + 8005824: 4a16 ldr r2, [pc, #88] @ (8005880 ) + 8005826: 4293 cmp r3, r2 + 8005828: d003 beq.n 8005832 + 800582a: 687b ldr r3, [r7, #4] + 800582c: 4a15 ldr r2, [pc, #84] @ (8005884 ) + 800582e: 4293 cmp r3, r2 + 8005830: d113 bne.n 800585a /* Check parameters */ assert_param(IS_TIM_OCNIDLE_STATE(OC_Config->OCNIdleState)); assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare and Output Compare N IDLE State */ tmpcr2 &= ~TIM_CR2_OIS3; - 80057e2: 693b ldr r3, [r7, #16] - 80057e4: f423 5380 bic.w r3, r3, #4096 @ 0x1000 - 80057e8: 613b str r3, [r7, #16] + 8005832: 693b ldr r3, [r7, #16] + 8005834: f423 5380 bic.w r3, r3, #4096 @ 0x1000 + 8005838: 613b str r3, [r7, #16] tmpcr2 &= ~TIM_CR2_OIS3N; - 80057ea: 693b ldr r3, [r7, #16] - 80057ec: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 80057f0: 613b str r3, [r7, #16] + 800583a: 693b ldr r3, [r7, #16] + 800583c: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 8005840: 613b str r3, [r7, #16] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 4U); - 80057f2: 683b ldr r3, [r7, #0] - 80057f4: 695b ldr r3, [r3, #20] - 80057f6: 011b lsls r3, r3, #4 - 80057f8: 693a ldr r2, [r7, #16] - 80057fa: 4313 orrs r3, r2 - 80057fc: 613b str r3, [r7, #16] + 8005842: 683b ldr r3, [r7, #0] + 8005844: 695b ldr r3, [r3, #20] + 8005846: 011b lsls r3, r3, #4 + 8005848: 693a ldr r2, [r7, #16] + 800584a: 4313 orrs r3, r2 + 800584c: 613b str r3, [r7, #16] /* Set the Output N Idle state */ tmpcr2 |= (OC_Config->OCNIdleState << 4U); - 80057fe: 683b ldr r3, [r7, #0] - 8005800: 699b ldr r3, [r3, #24] - 8005802: 011b lsls r3, r3, #4 - 8005804: 693a ldr r2, [r7, #16] - 8005806: 4313 orrs r3, r2 - 8005808: 613b str r3, [r7, #16] + 800584e: 683b ldr r3, [r7, #0] + 8005850: 699b ldr r3, [r3, #24] + 8005852: 011b lsls r3, r3, #4 + 8005854: 693a ldr r2, [r7, #16] + 8005856: 4313 orrs r3, r2 + 8005858: 613b str r3, [r7, #16] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 800580a: 687b ldr r3, [r7, #4] - 800580c: 693a ldr r2, [r7, #16] - 800580e: 605a str r2, [r3, #4] + 800585a: 687b ldr r3, [r7, #4] + 800585c: 693a ldr r2, [r7, #16] + 800585e: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 8005810: 687b ldr r3, [r7, #4] - 8005812: 68fa ldr r2, [r7, #12] - 8005814: 61da str r2, [r3, #28] + 8005860: 687b ldr r3, [r7, #4] + 8005862: 68fa ldr r2, [r7, #12] + 8005864: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR3 = OC_Config->Pulse; - 8005816: 683b ldr r3, [r7, #0] - 8005818: 685a ldr r2, [r3, #4] - 800581a: 687b ldr r3, [r7, #4] - 800581c: 63da str r2, [r3, #60] @ 0x3c + 8005866: 683b ldr r3, [r7, #0] + 8005868: 685a ldr r2, [r3, #4] + 800586a: 687b ldr r3, [r7, #4] + 800586c: 63da str r2, [r3, #60] @ 0x3c /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 800581e: 687b ldr r3, [r7, #4] - 8005820: 697a ldr r2, [r7, #20] - 8005822: 621a str r2, [r3, #32] + 800586e: 687b ldr r3, [r7, #4] + 8005870: 697a ldr r2, [r7, #20] + 8005872: 621a str r2, [r3, #32] } - 8005824: bf00 nop - 8005826: 371c adds r7, #28 - 8005828: 46bd mov sp, r7 - 800582a: f85d 7b04 ldr.w r7, [sp], #4 - 800582e: 4770 bx lr - 8005830: 40010000 .word 0x40010000 - 8005834: 40010400 .word 0x40010400 + 8005874: bf00 nop + 8005876: 371c adds r7, #28 + 8005878: 46bd mov sp, r7 + 800587a: f85d 7b04 ldr.w r7, [sp], #4 + 800587e: 4770 bx lr + 8005880: 40010000 .word 0x40010000 + 8005884: 40010400 .word 0x40010400 -08005838 : +08005888 : * @param TIMx to select the TIM peripheral * @param OC_Config The output configuration structure * @retval None */ static void TIM_OC4_SetConfig(TIM_TypeDef *TIMx, const TIM_OC_InitTypeDef *OC_Config) { - 8005838: b480 push {r7} - 800583a: b087 sub sp, #28 - 800583c: af00 add r7, sp, #0 - 800583e: 6078 str r0, [r7, #4] - 8005840: 6039 str r1, [r7, #0] + 8005888: b480 push {r7} + 800588a: b087 sub sp, #28 + 800588c: af00 add r7, sp, #0 + 800588e: 6078 str r0, [r7, #4] + 8005890: 6039 str r1, [r7, #0] uint32_t tmpccmrx; uint32_t tmpccer; uint32_t tmpcr2; /* Get the TIMx CCER register value */ tmpccer = TIMx->CCER; - 8005842: 687b ldr r3, [r7, #4] - 8005844: 6a1b ldr r3, [r3, #32] - 8005846: 613b str r3, [r7, #16] + 8005892: 687b ldr r3, [r7, #4] + 8005894: 6a1b ldr r3, [r3, #32] + 8005896: 613b str r3, [r7, #16] /* Disable the Channel 4: Reset the CC4E Bit */ TIMx->CCER &= ~TIM_CCER_CC4E; - 8005848: 687b ldr r3, [r7, #4] - 800584a: 6a1b ldr r3, [r3, #32] - 800584c: f423 5280 bic.w r2, r3, #4096 @ 0x1000 - 8005850: 687b ldr r3, [r7, #4] - 8005852: 621a str r2, [r3, #32] + 8005898: 687b ldr r3, [r7, #4] + 800589a: 6a1b ldr r3, [r3, #32] + 800589c: f423 5280 bic.w r2, r3, #4096 @ 0x1000 + 80058a0: 687b ldr r3, [r7, #4] + 80058a2: 621a str r2, [r3, #32] /* Get the TIMx CR2 register value */ tmpcr2 = TIMx->CR2; - 8005854: 687b ldr r3, [r7, #4] - 8005856: 685b ldr r3, [r3, #4] - 8005858: 617b str r3, [r7, #20] + 80058a4: 687b ldr r3, [r7, #4] + 80058a6: 685b ldr r3, [r3, #4] + 80058a8: 617b str r3, [r7, #20] /* Get the TIMx CCMR2 register value */ tmpccmrx = TIMx->CCMR2; - 800585a: 687b ldr r3, [r7, #4] - 800585c: 69db ldr r3, [r3, #28] - 800585e: 60fb str r3, [r7, #12] + 80058aa: 687b ldr r3, [r7, #4] + 80058ac: 69db ldr r3, [r3, #28] + 80058ae: 60fb str r3, [r7, #12] /* Reset the Output Compare mode and Capture/Compare selection Bits */ tmpccmrx &= ~TIM_CCMR2_OC4M; - 8005860: 68fb ldr r3, [r7, #12] - 8005862: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 - 8005866: 60fb str r3, [r7, #12] + 80058b0: 68fb ldr r3, [r7, #12] + 80058b2: f423 43e0 bic.w r3, r3, #28672 @ 0x7000 + 80058b6: 60fb str r3, [r7, #12] tmpccmrx &= ~TIM_CCMR2_CC4S; - 8005868: 68fb ldr r3, [r7, #12] - 800586a: f423 7340 bic.w r3, r3, #768 @ 0x300 - 800586e: 60fb str r3, [r7, #12] + 80058b8: 68fb ldr r3, [r7, #12] + 80058ba: f423 7340 bic.w r3, r3, #768 @ 0x300 + 80058be: 60fb str r3, [r7, #12] /* Select the Output Compare Mode */ tmpccmrx |= (OC_Config->OCMode << 8U); - 8005870: 683b ldr r3, [r7, #0] - 8005872: 681b ldr r3, [r3, #0] - 8005874: 021b lsls r3, r3, #8 - 8005876: 68fa ldr r2, [r7, #12] - 8005878: 4313 orrs r3, r2 - 800587a: 60fb str r3, [r7, #12] + 80058c0: 683b ldr r3, [r7, #0] + 80058c2: 681b ldr r3, [r3, #0] + 80058c4: 021b lsls r3, r3, #8 + 80058c6: 68fa ldr r2, [r7, #12] + 80058c8: 4313 orrs r3, r2 + 80058ca: 60fb str r3, [r7, #12] /* Reset the Output Polarity level */ tmpccer &= ~TIM_CCER_CC4P; - 800587c: 693b ldr r3, [r7, #16] - 800587e: f423 5300 bic.w r3, r3, #8192 @ 0x2000 - 8005882: 613b str r3, [r7, #16] + 80058cc: 693b ldr r3, [r7, #16] + 80058ce: f423 5300 bic.w r3, r3, #8192 @ 0x2000 + 80058d2: 613b str r3, [r7, #16] /* Set the Output Compare Polarity */ tmpccer |= (OC_Config->OCPolarity << 12U); - 8005884: 683b ldr r3, [r7, #0] - 8005886: 689b ldr r3, [r3, #8] - 8005888: 031b lsls r3, r3, #12 - 800588a: 693a ldr r2, [r7, #16] - 800588c: 4313 orrs r3, r2 - 800588e: 613b str r3, [r7, #16] + 80058d4: 683b ldr r3, [r7, #0] + 80058d6: 689b ldr r3, [r3, #8] + 80058d8: 031b lsls r3, r3, #12 + 80058da: 693a ldr r2, [r7, #16] + 80058dc: 4313 orrs r3, r2 + 80058de: 613b str r3, [r7, #16] if (IS_TIM_BREAK_INSTANCE(TIMx)) - 8005890: 687b ldr r3, [r7, #4] - 8005892: 4a12 ldr r2, [pc, #72] @ (80058dc ) - 8005894: 4293 cmp r3, r2 - 8005896: d003 beq.n 80058a0 - 8005898: 687b ldr r3, [r7, #4] - 800589a: 4a11 ldr r2, [pc, #68] @ (80058e0 ) - 800589c: 4293 cmp r3, r2 - 800589e: d109 bne.n 80058b4 + 80058e0: 687b ldr r3, [r7, #4] + 80058e2: 4a12 ldr r2, [pc, #72] @ (800592c ) + 80058e4: 4293 cmp r3, r2 + 80058e6: d003 beq.n 80058f0 + 80058e8: 687b ldr r3, [r7, #4] + 80058ea: 4a11 ldr r2, [pc, #68] @ (8005930 ) + 80058ec: 4293 cmp r3, r2 + 80058ee: d109 bne.n 8005904 { /* Check parameters */ assert_param(IS_TIM_OCIDLE_STATE(OC_Config->OCIdleState)); /* Reset the Output Compare IDLE State */ tmpcr2 &= ~TIM_CR2_OIS4; - 80058a0: 697b ldr r3, [r7, #20] - 80058a2: f423 4380 bic.w r3, r3, #16384 @ 0x4000 - 80058a6: 617b str r3, [r7, #20] + 80058f0: 697b ldr r3, [r7, #20] + 80058f2: f423 4380 bic.w r3, r3, #16384 @ 0x4000 + 80058f6: 617b str r3, [r7, #20] /* Set the Output Idle state */ tmpcr2 |= (OC_Config->OCIdleState << 6U); - 80058a8: 683b ldr r3, [r7, #0] - 80058aa: 695b ldr r3, [r3, #20] - 80058ac: 019b lsls r3, r3, #6 - 80058ae: 697a ldr r2, [r7, #20] - 80058b0: 4313 orrs r3, r2 - 80058b2: 617b str r3, [r7, #20] + 80058f8: 683b ldr r3, [r7, #0] + 80058fa: 695b ldr r3, [r3, #20] + 80058fc: 019b lsls r3, r3, #6 + 80058fe: 697a ldr r2, [r7, #20] + 8005900: 4313 orrs r3, r2 + 8005902: 617b str r3, [r7, #20] } /* Write to TIMx CR2 */ TIMx->CR2 = tmpcr2; - 80058b4: 687b ldr r3, [r7, #4] - 80058b6: 697a ldr r2, [r7, #20] - 80058b8: 605a str r2, [r3, #4] + 8005904: 687b ldr r3, [r7, #4] + 8005906: 697a ldr r2, [r7, #20] + 8005908: 605a str r2, [r3, #4] /* Write to TIMx CCMR2 */ TIMx->CCMR2 = tmpccmrx; - 80058ba: 687b ldr r3, [r7, #4] - 80058bc: 68fa ldr r2, [r7, #12] - 80058be: 61da str r2, [r3, #28] + 800590a: 687b ldr r3, [r7, #4] + 800590c: 68fa ldr r2, [r7, #12] + 800590e: 61da str r2, [r3, #28] /* Set the Capture Compare Register value */ TIMx->CCR4 = OC_Config->Pulse; - 80058c0: 683b ldr r3, [r7, #0] - 80058c2: 685a ldr r2, [r3, #4] - 80058c4: 687b ldr r3, [r7, #4] - 80058c6: 641a str r2, [r3, #64] @ 0x40 + 8005910: 683b ldr r3, [r7, #0] + 8005912: 685a ldr r2, [r3, #4] + 8005914: 687b ldr r3, [r7, #4] + 8005916: 641a str r2, [r3, #64] @ 0x40 /* Write to TIMx CCER */ TIMx->CCER = tmpccer; - 80058c8: 687b ldr r3, [r7, #4] - 80058ca: 693a ldr r2, [r7, #16] - 80058cc: 621a str r2, [r3, #32] + 8005918: 687b ldr r3, [r7, #4] + 800591a: 693a ldr r2, [r7, #16] + 800591c: 621a str r2, [r3, #32] } - 80058ce: bf00 nop - 80058d0: 371c adds r7, #28 - 80058d2: 46bd mov sp, r7 - 80058d4: f85d 7b04 ldr.w r7, [sp], #4 - 80058d8: 4770 bx lr - 80058da: bf00 nop - 80058dc: 40010000 .word 0x40010000 - 80058e0: 40010400 .word 0x40010400 + 800591e: bf00 nop + 8005920: 371c adds r7, #28 + 8005922: 46bd mov sp, r7 + 8005924: f85d 7b04 ldr.w r7, [sp], #4 + 8005928: 4770 bx lr + 800592a: bf00 nop + 800592c: 40010000 .word 0x40010000 + 8005930: 40010400 .word 0x40010400 -080058e4 : +08005934 : * mode. * @retval HAL status */ HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim, const TIM_MasterConfigTypeDef *sMasterConfig) { - 80058e4: b480 push {r7} - 80058e6: b085 sub sp, #20 - 80058e8: af00 add r7, sp, #0 - 80058ea: 6078 str r0, [r7, #4] - 80058ec: 6039 str r1, [r7, #0] + 8005934: b480 push {r7} + 8005936: b085 sub sp, #20 + 8005938: af00 add r7, sp, #0 + 800593a: 6078 str r0, [r7, #4] + 800593c: 6039 str r1, [r7, #0] assert_param(IS_TIM_MASTER_INSTANCE(htim->Instance)); assert_param(IS_TIM_TRGO_SOURCE(sMasterConfig->MasterOutputTrigger)); assert_param(IS_TIM_MSM_STATE(sMasterConfig->MasterSlaveMode)); /* Check input state */ __HAL_LOCK(htim); - 80058ee: 687b ldr r3, [r7, #4] - 80058f0: f893 303c ldrb.w r3, [r3, #60] @ 0x3c - 80058f4: 2b01 cmp r3, #1 - 80058f6: d101 bne.n 80058fc - 80058f8: 2302 movs r3, #2 - 80058fa: e05a b.n 80059b2 - 80058fc: 687b ldr r3, [r7, #4] - 80058fe: 2201 movs r2, #1 - 8005900: f883 203c strb.w r2, [r3, #60] @ 0x3c + 800593e: 687b ldr r3, [r7, #4] + 8005940: f893 303c ldrb.w r3, [r3, #60] @ 0x3c + 8005944: 2b01 cmp r3, #1 + 8005946: d101 bne.n 800594c + 8005948: 2302 movs r3, #2 + 800594a: e05a b.n 8005a02 + 800594c: 687b ldr r3, [r7, #4] + 800594e: 2201 movs r2, #1 + 8005950: f883 203c strb.w r2, [r3, #60] @ 0x3c /* Change the handler state */ htim->State = HAL_TIM_STATE_BUSY; - 8005904: 687b ldr r3, [r7, #4] - 8005906: 2202 movs r2, #2 - 8005908: f883 203d strb.w r2, [r3, #61] @ 0x3d + 8005954: 687b ldr r3, [r7, #4] + 8005956: 2202 movs r2, #2 + 8005958: f883 203d strb.w r2, [r3, #61] @ 0x3d /* Get the TIMx CR2 register value */ tmpcr2 = htim->Instance->CR2; - 800590c: 687b ldr r3, [r7, #4] - 800590e: 681b ldr r3, [r3, #0] - 8005910: 685b ldr r3, [r3, #4] - 8005912: 60fb str r3, [r7, #12] + 800595c: 687b ldr r3, [r7, #4] + 800595e: 681b ldr r3, [r3, #0] + 8005960: 685b ldr r3, [r3, #4] + 8005962: 60fb str r3, [r7, #12] /* Get the TIMx SMCR register value */ tmpsmcr = htim->Instance->SMCR; - 8005914: 687b ldr r3, [r7, #4] - 8005916: 681b ldr r3, [r3, #0] - 8005918: 689b ldr r3, [r3, #8] - 800591a: 60bb str r3, [r7, #8] + 8005964: 687b ldr r3, [r7, #4] + 8005966: 681b ldr r3, [r3, #0] + 8005968: 689b ldr r3, [r3, #8] + 800596a: 60bb str r3, [r7, #8] /* Reset the MMS Bits */ tmpcr2 &= ~TIM_CR2_MMS; - 800591c: 68fb ldr r3, [r7, #12] - 800591e: f023 0370 bic.w r3, r3, #112 @ 0x70 - 8005922: 60fb str r3, [r7, #12] + 800596c: 68fb ldr r3, [r7, #12] + 800596e: f023 0370 bic.w r3, r3, #112 @ 0x70 + 8005972: 60fb str r3, [r7, #12] /* Select the TRGO source */ tmpcr2 |= sMasterConfig->MasterOutputTrigger; - 8005924: 683b ldr r3, [r7, #0] - 8005926: 681b ldr r3, [r3, #0] - 8005928: 68fa ldr r2, [r7, #12] - 800592a: 4313 orrs r3, r2 - 800592c: 60fb str r3, [r7, #12] + 8005974: 683b ldr r3, [r7, #0] + 8005976: 681b ldr r3, [r3, #0] + 8005978: 68fa ldr r2, [r7, #12] + 800597a: 4313 orrs r3, r2 + 800597c: 60fb str r3, [r7, #12] /* Update TIMx CR2 */ htim->Instance->CR2 = tmpcr2; - 800592e: 687b ldr r3, [r7, #4] - 8005930: 681b ldr r3, [r3, #0] - 8005932: 68fa ldr r2, [r7, #12] - 8005934: 605a str r2, [r3, #4] + 800597e: 687b ldr r3, [r7, #4] + 8005980: 681b ldr r3, [r3, #0] + 8005982: 68fa ldr r2, [r7, #12] + 8005984: 605a str r2, [r3, #4] if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 8005936: 687b ldr r3, [r7, #4] - 8005938: 681b ldr r3, [r3, #0] - 800593a: 4a21 ldr r2, [pc, #132] @ (80059c0 ) - 800593c: 4293 cmp r3, r2 - 800593e: d022 beq.n 8005986 - 8005940: 687b ldr r3, [r7, #4] - 8005942: 681b ldr r3, [r3, #0] - 8005944: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 - 8005948: d01d beq.n 8005986 - 800594a: 687b ldr r3, [r7, #4] - 800594c: 681b ldr r3, [r3, #0] - 800594e: 4a1d ldr r2, [pc, #116] @ (80059c4 ) - 8005950: 4293 cmp r3, r2 - 8005952: d018 beq.n 8005986 - 8005954: 687b ldr r3, [r7, #4] - 8005956: 681b ldr r3, [r3, #0] - 8005958: 4a1b ldr r2, [pc, #108] @ (80059c8 ) - 800595a: 4293 cmp r3, r2 - 800595c: d013 beq.n 8005986 - 800595e: 687b ldr r3, [r7, #4] - 8005960: 681b ldr r3, [r3, #0] - 8005962: 4a1a ldr r2, [pc, #104] @ (80059cc ) - 8005964: 4293 cmp r3, r2 - 8005966: d00e beq.n 8005986 - 8005968: 687b ldr r3, [r7, #4] - 800596a: 681b ldr r3, [r3, #0] - 800596c: 4a18 ldr r2, [pc, #96] @ (80059d0 ) - 800596e: 4293 cmp r3, r2 - 8005970: d009 beq.n 8005986 - 8005972: 687b ldr r3, [r7, #4] - 8005974: 681b ldr r3, [r3, #0] - 8005976: 4a17 ldr r2, [pc, #92] @ (80059d4 ) - 8005978: 4293 cmp r3, r2 - 800597a: d004 beq.n 8005986 - 800597c: 687b ldr r3, [r7, #4] - 800597e: 681b ldr r3, [r3, #0] - 8005980: 4a15 ldr r2, [pc, #84] @ (80059d8 ) - 8005982: 4293 cmp r3, r2 - 8005984: d10c bne.n 80059a0 + 8005986: 687b ldr r3, [r7, #4] + 8005988: 681b ldr r3, [r3, #0] + 800598a: 4a21 ldr r2, [pc, #132] @ (8005a10 ) + 800598c: 4293 cmp r3, r2 + 800598e: d022 beq.n 80059d6 + 8005990: 687b ldr r3, [r7, #4] + 8005992: 681b ldr r3, [r3, #0] + 8005994: f1b3 4f80 cmp.w r3, #1073741824 @ 0x40000000 + 8005998: d01d beq.n 80059d6 + 800599a: 687b ldr r3, [r7, #4] + 800599c: 681b ldr r3, [r3, #0] + 800599e: 4a1d ldr r2, [pc, #116] @ (8005a14 ) + 80059a0: 4293 cmp r3, r2 + 80059a2: d018 beq.n 80059d6 + 80059a4: 687b ldr r3, [r7, #4] + 80059a6: 681b ldr r3, [r3, #0] + 80059a8: 4a1b ldr r2, [pc, #108] @ (8005a18 ) + 80059aa: 4293 cmp r3, r2 + 80059ac: d013 beq.n 80059d6 + 80059ae: 687b ldr r3, [r7, #4] + 80059b0: 681b ldr r3, [r3, #0] + 80059b2: 4a1a ldr r2, [pc, #104] @ (8005a1c ) + 80059b4: 4293 cmp r3, r2 + 80059b6: d00e beq.n 80059d6 + 80059b8: 687b ldr r3, [r7, #4] + 80059ba: 681b ldr r3, [r3, #0] + 80059bc: 4a18 ldr r2, [pc, #96] @ (8005a20 ) + 80059be: 4293 cmp r3, r2 + 80059c0: d009 beq.n 80059d6 + 80059c2: 687b ldr r3, [r7, #4] + 80059c4: 681b ldr r3, [r3, #0] + 80059c6: 4a17 ldr r2, [pc, #92] @ (8005a24 ) + 80059c8: 4293 cmp r3, r2 + 80059ca: d004 beq.n 80059d6 + 80059cc: 687b ldr r3, [r7, #4] + 80059ce: 681b ldr r3, [r3, #0] + 80059d0: 4a15 ldr r2, [pc, #84] @ (8005a28 ) + 80059d2: 4293 cmp r3, r2 + 80059d4: d10c bne.n 80059f0 { /* Reset the MSM Bit */ tmpsmcr &= ~TIM_SMCR_MSM; - 8005986: 68bb ldr r3, [r7, #8] - 8005988: f023 0380 bic.w r3, r3, #128 @ 0x80 - 800598c: 60bb str r3, [r7, #8] + 80059d6: 68bb ldr r3, [r7, #8] + 80059d8: f023 0380 bic.w r3, r3, #128 @ 0x80 + 80059dc: 60bb str r3, [r7, #8] /* Set master mode */ tmpsmcr |= sMasterConfig->MasterSlaveMode; - 800598e: 683b ldr r3, [r7, #0] - 8005990: 685b ldr r3, [r3, #4] - 8005992: 68ba ldr r2, [r7, #8] - 8005994: 4313 orrs r3, r2 - 8005996: 60bb str r3, [r7, #8] + 80059de: 683b ldr r3, [r7, #0] + 80059e0: 685b ldr r3, [r3, #4] + 80059e2: 68ba ldr r2, [r7, #8] + 80059e4: 4313 orrs r3, r2 + 80059e6: 60bb str r3, [r7, #8] /* Update TIMx SMCR */ htim->Instance->SMCR = tmpsmcr; - 8005998: 687b ldr r3, [r7, #4] - 800599a: 681b ldr r3, [r3, #0] - 800599c: 68ba ldr r2, [r7, #8] - 800599e: 609a str r2, [r3, #8] + 80059e8: 687b ldr r3, [r7, #4] + 80059ea: 681b ldr r3, [r3, #0] + 80059ec: 68ba ldr r2, [r7, #8] + 80059ee: 609a str r2, [r3, #8] } /* Change the htim state */ htim->State = HAL_TIM_STATE_READY; - 80059a0: 687b ldr r3, [r7, #4] - 80059a2: 2201 movs r2, #1 - 80059a4: f883 203d strb.w r2, [r3, #61] @ 0x3d + 80059f0: 687b ldr r3, [r7, #4] + 80059f2: 2201 movs r2, #1 + 80059f4: f883 203d strb.w r2, [r3, #61] @ 0x3d __HAL_UNLOCK(htim); - 80059a8: 687b ldr r3, [r7, #4] - 80059aa: 2200 movs r2, #0 - 80059ac: f883 203c strb.w r2, [r3, #60] @ 0x3c + 80059f8: 687b ldr r3, [r7, #4] + 80059fa: 2200 movs r2, #0 + 80059fc: f883 203c strb.w r2, [r3, #60] @ 0x3c return HAL_OK; - 80059b0: 2300 movs r3, #0 + 8005a00: 2300 movs r3, #0 } - 80059b2: 4618 mov r0, r3 - 80059b4: 3714 adds r7, #20 - 80059b6: 46bd mov sp, r7 - 80059b8: f85d 7b04 ldr.w r7, [sp], #4 - 80059bc: 4770 bx lr - 80059be: bf00 nop - 80059c0: 40010000 .word 0x40010000 - 80059c4: 40000400 .word 0x40000400 - 80059c8: 40000800 .word 0x40000800 - 80059cc: 40000c00 .word 0x40000c00 - 80059d0: 40010400 .word 0x40010400 - 80059d4: 40014000 .word 0x40014000 - 80059d8: 40001800 .word 0x40001800 + 8005a02: 4618 mov r0, r3 + 8005a04: 3714 adds r7, #20 + 8005a06: 46bd mov sp, r7 + 8005a08: f85d 7b04 ldr.w r7, [sp], #4 + 8005a0c: 4770 bx lr + 8005a0e: bf00 nop + 8005a10: 40010000 .word 0x40010000 + 8005a14: 40000400 .word 0x40000400 + 8005a18: 40000800 .word 0x40000800 + 8005a1c: 40000c00 .word 0x40000c00 + 8005a20: 40010400 .word 0x40010400 + 8005a24: 40014000 .word 0x40014000 + 8005a28: 40001800 .word 0x40001800 -080059dc : +08005a2c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart) { - 80059dc: b580 push {r7, lr} - 80059de: b082 sub sp, #8 - 80059e0: af00 add r7, sp, #0 - 80059e2: 6078 str r0, [r7, #4] + 8005a2c: b580 push {r7, lr} + 8005a2e: b082 sub sp, #8 + 8005a30: af00 add r7, sp, #0 + 8005a32: 6078 str r0, [r7, #4] /* Check the UART handle allocation */ if (huart == NULL) - 80059e4: 687b ldr r3, [r7, #4] - 80059e6: 2b00 cmp r3, #0 - 80059e8: d101 bne.n 80059ee + 8005a34: 687b ldr r3, [r7, #4] + 8005a36: 2b00 cmp r3, #0 + 8005a38: d101 bne.n 8005a3e { return HAL_ERROR; - 80059ea: 2301 movs r3, #1 - 80059ec: e042 b.n 8005a74 + 8005a3a: 2301 movs r3, #1 + 8005a3c: e042 b.n 8005ac4 assert_param(IS_UART_INSTANCE(huart->Instance)); } assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); if (huart->gState == HAL_UART_STATE_RESET) - 80059ee: 687b ldr r3, [r7, #4] - 80059f0: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 80059f4: b2db uxtb r3, r3 - 80059f6: 2b00 cmp r3, #0 - 80059f8: d106 bne.n 8005a08 + 8005a3e: 687b ldr r3, [r7, #4] + 8005a40: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8005a44: b2db uxtb r3, r3 + 8005a46: 2b00 cmp r3, #0 + 8005a48: d106 bne.n 8005a58 { /* Allocate lock resource and initialize it */ huart->Lock = HAL_UNLOCKED; - 80059fa: 687b ldr r3, [r7, #4] - 80059fc: 2200 movs r2, #0 - 80059fe: f883 2040 strb.w r2, [r3, #64] @ 0x40 + 8005a4a: 687b ldr r3, [r7, #4] + 8005a4c: 2200 movs r2, #0 + 8005a4e: f883 2040 strb.w r2, [r3, #64] @ 0x40 /* Init the low level hardware */ huart->MspInitCallback(huart); #else /* Init the low level hardware : GPIO, CLOCK */ HAL_UART_MspInit(huart); - 8005a02: 6878 ldr r0, [r7, #4] - 8005a04: f7fb fc8e bl 8001324 + 8005a52: 6878 ldr r0, [r7, #4] + 8005a54: f7fb fc8e bl 8001374 #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } huart->gState = HAL_UART_STATE_BUSY; - 8005a08: 687b ldr r3, [r7, #4] - 8005a0a: 2224 movs r2, #36 @ 0x24 - 8005a0c: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005a58: 687b ldr r3, [r7, #4] + 8005a5a: 2224 movs r2, #36 @ 0x24 + 8005a5c: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Disable the peripheral */ __HAL_UART_DISABLE(huart); - 8005a10: 687b ldr r3, [r7, #4] - 8005a12: 681b ldr r3, [r3, #0] - 8005a14: 68da ldr r2, [r3, #12] - 8005a16: 687b ldr r3, [r7, #4] - 8005a18: 681b ldr r3, [r3, #0] - 8005a1a: f422 5200 bic.w r2, r2, #8192 @ 0x2000 - 8005a1e: 60da str r2, [r3, #12] + 8005a60: 687b ldr r3, [r7, #4] + 8005a62: 681b ldr r3, [r3, #0] + 8005a64: 68da ldr r2, [r3, #12] + 8005a66: 687b ldr r3, [r7, #4] + 8005a68: 681b ldr r3, [r3, #0] + 8005a6a: f422 5200 bic.w r2, r2, #8192 @ 0x2000 + 8005a6e: 60da str r2, [r3, #12] /* Set the UART Communication parameters */ UART_SetConfig(huart); - 8005a20: 6878 ldr r0, [r7, #4] - 8005a22: f001 f851 bl 8006ac8 + 8005a70: 6878 ldr r0, [r7, #4] + 8005a72: f000 ff6d bl 8006950 /* In asynchronous mode, the following bits must be kept cleared: - LINEN and CLKEN bits in the USART_CR2 register, - SCEN, HDSEL and IREN bits in the USART_CR3 register.*/ CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); - 8005a26: 687b ldr r3, [r7, #4] - 8005a28: 681b ldr r3, [r3, #0] - 8005a2a: 691a ldr r2, [r3, #16] - 8005a2c: 687b ldr r3, [r7, #4] - 8005a2e: 681b ldr r3, [r3, #0] - 8005a30: f422 4290 bic.w r2, r2, #18432 @ 0x4800 - 8005a34: 611a str r2, [r3, #16] + 8005a76: 687b ldr r3, [r7, #4] + 8005a78: 681b ldr r3, [r3, #0] + 8005a7a: 691a ldr r2, [r3, #16] + 8005a7c: 687b ldr r3, [r7, #4] + 8005a7e: 681b ldr r3, [r3, #0] + 8005a80: f422 4290 bic.w r2, r2, #18432 @ 0x4800 + 8005a84: 611a str r2, [r3, #16] CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); - 8005a36: 687b ldr r3, [r7, #4] - 8005a38: 681b ldr r3, [r3, #0] - 8005a3a: 695a ldr r2, [r3, #20] - 8005a3c: 687b ldr r3, [r7, #4] - 8005a3e: 681b ldr r3, [r3, #0] - 8005a40: f022 022a bic.w r2, r2, #42 @ 0x2a - 8005a44: 615a str r2, [r3, #20] + 8005a86: 687b ldr r3, [r7, #4] + 8005a88: 681b ldr r3, [r3, #0] + 8005a8a: 695a ldr r2, [r3, #20] + 8005a8c: 687b ldr r3, [r7, #4] + 8005a8e: 681b ldr r3, [r3, #0] + 8005a90: f022 022a bic.w r2, r2, #42 @ 0x2a + 8005a94: 615a str r2, [r3, #20] /* Enable the peripheral */ __HAL_UART_ENABLE(huart); - 8005a46: 687b ldr r3, [r7, #4] - 8005a48: 681b ldr r3, [r3, #0] - 8005a4a: 68da ldr r2, [r3, #12] - 8005a4c: 687b ldr r3, [r7, #4] - 8005a4e: 681b ldr r3, [r3, #0] - 8005a50: f442 5200 orr.w r2, r2, #8192 @ 0x2000 - 8005a54: 60da str r2, [r3, #12] + 8005a96: 687b ldr r3, [r7, #4] + 8005a98: 681b ldr r3, [r3, #0] + 8005a9a: 68da ldr r2, [r3, #12] + 8005a9c: 687b ldr r3, [r7, #4] + 8005a9e: 681b ldr r3, [r3, #0] + 8005aa0: f442 5200 orr.w r2, r2, #8192 @ 0x2000 + 8005aa4: 60da str r2, [r3, #12] /* Initialize the UART state */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005a56: 687b ldr r3, [r7, #4] - 8005a58: 2200 movs r2, #0 - 8005a5a: 645a str r2, [r3, #68] @ 0x44 + 8005aa6: 687b ldr r3, [r7, #4] + 8005aa8: 2200 movs r2, #0 + 8005aaa: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_READY; - 8005a5c: 687b ldr r3, [r7, #4] - 8005a5e: 2220 movs r2, #32 - 8005a60: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005aac: 687b ldr r3, [r7, #4] + 8005aae: 2220 movs r2, #32 + 8005ab0: f883 2041 strb.w r2, [r3, #65] @ 0x41 huart->RxState = HAL_UART_STATE_READY; - 8005a64: 687b ldr r3, [r7, #4] - 8005a66: 2220 movs r2, #32 - 8005a68: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8005ab4: 687b ldr r3, [r7, #4] + 8005ab6: 2220 movs r2, #32 + 8005ab8: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->RxEventType = HAL_UART_RXEVENT_TC; - 8005a6c: 687b ldr r3, [r7, #4] - 8005a6e: 2200 movs r2, #0 - 8005a70: 635a str r2, [r3, #52] @ 0x34 + 8005abc: 687b ldr r3, [r7, #4] + 8005abe: 2200 movs r2, #0 + 8005ac0: 635a str r2, [r3, #52] @ 0x34 return HAL_OK; - 8005a72: 2300 movs r3, #0 + 8005ac2: 2300 movs r3, #0 } - 8005a74: 4618 mov r0, r3 - 8005a76: 3708 adds r7, #8 - 8005a78: 46bd mov sp, r7 - 8005a7a: bd80 pop {r7, pc} + 8005ac4: 4618 mov r0, r3 + 8005ac6: 3708 adds r7, #8 + 8005ac8: 46bd mov sp, r7 + 8005aca: bd80 pop {r7, pc} -08005a7c : - * @param Size Amount of data elements (u8 or u16) to be sent - * @param Timeout Timeout duration - * @retval HAL status - */ -HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size, uint32_t Timeout) -{ - 8005a7c: b580 push {r7, lr} - 8005a7e: b08a sub sp, #40 @ 0x28 - 8005a80: af02 add r7, sp, #8 - 8005a82: 60f8 str r0, [r7, #12] - 8005a84: 60b9 str r1, [r7, #8] - 8005a86: 603b str r3, [r7, #0] - 8005a88: 4613 mov r3, r2 - 8005a8a: 80fb strh r3, [r7, #6] - const uint8_t *pdata8bits; - const uint16_t *pdata16bits; - uint32_t tickstart = 0U; - 8005a8c: 2300 movs r3, #0 - 8005a8e: 617b str r3, [r7, #20] - - /* Check that a Tx process is not already ongoing */ - if (huart->gState == HAL_UART_STATE_READY) - 8005a90: 68fb ldr r3, [r7, #12] - 8005a92: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8005a96: b2db uxtb r3, r3 - 8005a98: 2b20 cmp r3, #32 - 8005a9a: d175 bne.n 8005b88 - { - if ((pData == NULL) || (Size == 0U)) - 8005a9c: 68bb ldr r3, [r7, #8] - 8005a9e: 2b00 cmp r3, #0 - 8005aa0: d002 beq.n 8005aa8 - 8005aa2: 88fb ldrh r3, [r7, #6] - 8005aa4: 2b00 cmp r3, #0 - 8005aa6: d101 bne.n 8005aac - { - return HAL_ERROR; - 8005aa8: 2301 movs r3, #1 - 8005aaa: e06e b.n 8005b8a - } - - huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005aac: 68fb ldr r3, [r7, #12] - 8005aae: 2200 movs r2, #0 - 8005ab0: 645a str r2, [r3, #68] @ 0x44 - huart->gState = HAL_UART_STATE_BUSY_TX; - 8005ab2: 68fb ldr r3, [r7, #12] - 8005ab4: 2221 movs r2, #33 @ 0x21 - 8005ab6: f883 2041 strb.w r2, [r3, #65] @ 0x41 - - /* Init tickstart for timeout management */ - tickstart = HAL_GetTick(); - 8005aba: f7fb ff85 bl 80019c8 - 8005abe: 6178 str r0, [r7, #20] - - huart->TxXferSize = Size; - 8005ac0: 68fb ldr r3, [r7, #12] - 8005ac2: 88fa ldrh r2, [r7, #6] - 8005ac4: 849a strh r2, [r3, #36] @ 0x24 - huart->TxXferCount = Size; - 8005ac6: 68fb ldr r3, [r7, #12] - 8005ac8: 88fa ldrh r2, [r7, #6] - 8005aca: 84da strh r2, [r3, #38] @ 0x26 - - /* In case of 9bits/No Parity transfer, pData needs to be handled as a uint16_t pointer */ - if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8005acc: 68fb ldr r3, [r7, #12] - 8005ace: 689b ldr r3, [r3, #8] - 8005ad0: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8005ad4: d108 bne.n 8005ae8 - 8005ad6: 68fb ldr r3, [r7, #12] - 8005ad8: 691b ldr r3, [r3, #16] - 8005ada: 2b00 cmp r3, #0 - 8005adc: d104 bne.n 8005ae8 - { - pdata8bits = NULL; - 8005ade: 2300 movs r3, #0 - 8005ae0: 61fb str r3, [r7, #28] - pdata16bits = (const uint16_t *) pData; - 8005ae2: 68bb ldr r3, [r7, #8] - 8005ae4: 61bb str r3, [r7, #24] - 8005ae6: e003 b.n 8005af0 - } - else - { - pdata8bits = pData; - 8005ae8: 68bb ldr r3, [r7, #8] - 8005aea: 61fb str r3, [r7, #28] - pdata16bits = NULL; - 8005aec: 2300 movs r3, #0 - 8005aee: 61bb str r3, [r7, #24] - } - - while (huart->TxXferCount > 0U) - 8005af0: e02e b.n 8005b50 - { - if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) - 8005af2: 683b ldr r3, [r7, #0] - 8005af4: 9300 str r3, [sp, #0] - 8005af6: 697b ldr r3, [r7, #20] - 8005af8: 2200 movs r2, #0 - 8005afa: 2180 movs r1, #128 @ 0x80 - 8005afc: 68f8 ldr r0, [r7, #12] - 8005afe: f000 fd22 bl 8006546 - 8005b02: 4603 mov r3, r0 - 8005b04: 2b00 cmp r3, #0 - 8005b06: d005 beq.n 8005b14 - { - huart->gState = HAL_UART_STATE_READY; - 8005b08: 68fb ldr r3, [r7, #12] - 8005b0a: 2220 movs r2, #32 - 8005b0c: f883 2041 strb.w r2, [r3, #65] @ 0x41 - - return HAL_TIMEOUT; - 8005b10: 2303 movs r3, #3 - 8005b12: e03a b.n 8005b8a - } - if (pdata8bits == NULL) - 8005b14: 69fb ldr r3, [r7, #28] - 8005b16: 2b00 cmp r3, #0 - 8005b18: d10b bne.n 8005b32 - { - huart->Instance->DR = (uint16_t)(*pdata16bits & 0x01FFU); - 8005b1a: 69bb ldr r3, [r7, #24] - 8005b1c: 881b ldrh r3, [r3, #0] - 8005b1e: 461a mov r2, r3 - 8005b20: 68fb ldr r3, [r7, #12] - 8005b22: 681b ldr r3, [r3, #0] - 8005b24: f3c2 0208 ubfx r2, r2, #0, #9 - 8005b28: 605a str r2, [r3, #4] - pdata16bits++; - 8005b2a: 69bb ldr r3, [r7, #24] - 8005b2c: 3302 adds r3, #2 - 8005b2e: 61bb str r3, [r7, #24] - 8005b30: e007 b.n 8005b42 - } - else - { - huart->Instance->DR = (uint8_t)(*pdata8bits & 0xFFU); - 8005b32: 69fb ldr r3, [r7, #28] - 8005b34: 781a ldrb r2, [r3, #0] - 8005b36: 68fb ldr r3, [r7, #12] - 8005b38: 681b ldr r3, [r3, #0] - 8005b3a: 605a str r2, [r3, #4] - pdata8bits++; - 8005b3c: 69fb ldr r3, [r7, #28] - 8005b3e: 3301 adds r3, #1 - 8005b40: 61fb str r3, [r7, #28] - } - huart->TxXferCount--; - 8005b42: 68fb ldr r3, [r7, #12] - 8005b44: 8cdb ldrh r3, [r3, #38] @ 0x26 - 8005b46: b29b uxth r3, r3 - 8005b48: 3b01 subs r3, #1 - 8005b4a: b29a uxth r2, r3 - 8005b4c: 68fb ldr r3, [r7, #12] - 8005b4e: 84da strh r2, [r3, #38] @ 0x26 - while (huart->TxXferCount > 0U) - 8005b50: 68fb ldr r3, [r7, #12] - 8005b52: 8cdb ldrh r3, [r3, #38] @ 0x26 - 8005b54: b29b uxth r3, r3 - 8005b56: 2b00 cmp r3, #0 - 8005b58: d1cb bne.n 8005af2 - } - - if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) - 8005b5a: 683b ldr r3, [r7, #0] - 8005b5c: 9300 str r3, [sp, #0] - 8005b5e: 697b ldr r3, [r7, #20] - 8005b60: 2200 movs r2, #0 - 8005b62: 2140 movs r1, #64 @ 0x40 - 8005b64: 68f8 ldr r0, [r7, #12] - 8005b66: f000 fcee bl 8006546 - 8005b6a: 4603 mov r3, r0 - 8005b6c: 2b00 cmp r3, #0 - 8005b6e: d005 beq.n 8005b7c - { - huart->gState = HAL_UART_STATE_READY; - 8005b70: 68fb ldr r3, [r7, #12] - 8005b72: 2220 movs r2, #32 - 8005b74: f883 2041 strb.w r2, [r3, #65] @ 0x41 - - return HAL_TIMEOUT; - 8005b78: 2303 movs r3, #3 - 8005b7a: e006 b.n 8005b8a - } - - /* At end of Tx process, restore huart->gState to Ready */ - huart->gState = HAL_UART_STATE_READY; - 8005b7c: 68fb ldr r3, [r7, #12] - 8005b7e: 2220 movs r2, #32 - 8005b80: f883 2041 strb.w r2, [r3, #65] @ 0x41 - - return HAL_OK; - 8005b84: 2300 movs r3, #0 - 8005b86: e000 b.n 8005b8a - } - else - { - return HAL_BUSY; - 8005b88: 2302 movs r3, #2 - } -} - 8005b8a: 4618 mov r0, r3 - 8005b8c: 3720 adds r7, #32 - 8005b8e: 46bd mov sp, r7 - 8005b90: bd80 pop {r7, pc} - ... - -08005b94 : +08005acc : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be sent * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Transmit_DMA(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size) { - 8005b94: b580 push {r7, lr} - 8005b96: b08c sub sp, #48 @ 0x30 - 8005b98: af00 add r7, sp, #0 - 8005b9a: 60f8 str r0, [r7, #12] - 8005b9c: 60b9 str r1, [r7, #8] - 8005b9e: 4613 mov r3, r2 - 8005ba0: 80fb strh r3, [r7, #6] + 8005acc: b580 push {r7, lr} + 8005ace: b08c sub sp, #48 @ 0x30 + 8005ad0: af00 add r7, sp, #0 + 8005ad2: 60f8 str r0, [r7, #12] + 8005ad4: 60b9 str r1, [r7, #8] + 8005ad6: 4613 mov r3, r2 + 8005ad8: 80fb strh r3, [r7, #6] const uint32_t *tmp; /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 8005ba2: 68fb ldr r3, [r7, #12] - 8005ba4: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 8005ba8: b2db uxtb r3, r3 - 8005baa: 2b20 cmp r3, #32 - 8005bac: d162 bne.n 8005c74 + 8005ada: 68fb ldr r3, [r7, #12] + 8005adc: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8005ae0: b2db uxtb r3, r3 + 8005ae2: 2b20 cmp r3, #32 + 8005ae4: d162 bne.n 8005bac { if ((pData == NULL) || (Size == 0U)) - 8005bae: 68bb ldr r3, [r7, #8] - 8005bb0: 2b00 cmp r3, #0 - 8005bb2: d002 beq.n 8005bba - 8005bb4: 88fb ldrh r3, [r7, #6] - 8005bb6: 2b00 cmp r3, #0 - 8005bb8: d101 bne.n 8005bbe + 8005ae6: 68bb ldr r3, [r7, #8] + 8005ae8: 2b00 cmp r3, #0 + 8005aea: d002 beq.n 8005af2 + 8005aec: 88fb ldrh r3, [r7, #6] + 8005aee: 2b00 cmp r3, #0 + 8005af0: d101 bne.n 8005af6 { return HAL_ERROR; - 8005bba: 2301 movs r3, #1 - 8005bbc: e05b b.n 8005c76 + 8005af2: 2301 movs r3, #1 + 8005af4: e05b b.n 8005bae } huart->pTxBuffPtr = pData; - 8005bbe: 68ba ldr r2, [r7, #8] - 8005bc0: 68fb ldr r3, [r7, #12] - 8005bc2: 621a str r2, [r3, #32] + 8005af6: 68ba ldr r2, [r7, #8] + 8005af8: 68fb ldr r3, [r7, #12] + 8005afa: 621a str r2, [r3, #32] huart->TxXferSize = Size; - 8005bc4: 68fb ldr r3, [r7, #12] - 8005bc6: 88fa ldrh r2, [r7, #6] - 8005bc8: 849a strh r2, [r3, #36] @ 0x24 + 8005afc: 68fb ldr r3, [r7, #12] + 8005afe: 88fa ldrh r2, [r7, #6] + 8005b00: 849a strh r2, [r3, #36] @ 0x24 huart->TxXferCount = Size; - 8005bca: 68fb ldr r3, [r7, #12] - 8005bcc: 88fa ldrh r2, [r7, #6] - 8005bce: 84da strh r2, [r3, #38] @ 0x26 + 8005b02: 68fb ldr r3, [r7, #12] + 8005b04: 88fa ldrh r2, [r7, #6] + 8005b06: 84da strh r2, [r3, #38] @ 0x26 huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005bd0: 68fb ldr r3, [r7, #12] - 8005bd2: 2200 movs r2, #0 - 8005bd4: 645a str r2, [r3, #68] @ 0x44 + 8005b08: 68fb ldr r3, [r7, #12] + 8005b0a: 2200 movs r2, #0 + 8005b0c: 645a str r2, [r3, #68] @ 0x44 huart->gState = HAL_UART_STATE_BUSY_TX; - 8005bd6: 68fb ldr r3, [r7, #12] - 8005bd8: 2221 movs r2, #33 @ 0x21 - 8005bda: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005b0e: 68fb ldr r3, [r7, #12] + 8005b10: 2221 movs r2, #33 @ 0x21 + 8005b12: f883 2041 strb.w r2, [r3, #65] @ 0x41 /* Set the UART DMA transfer complete callback */ huart->hdmatx->XferCpltCallback = UART_DMATransmitCplt; - 8005bde: 68fb ldr r3, [r7, #12] - 8005be0: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005be2: 4a27 ldr r2, [pc, #156] @ (8005c80 ) - 8005be4: 63da str r2, [r3, #60] @ 0x3c + 8005b16: 68fb ldr r3, [r7, #12] + 8005b18: 6b9b ldr r3, [r3, #56] @ 0x38 + 8005b1a: 4a27 ldr r2, [pc, #156] @ (8005bb8 ) + 8005b1c: 63da str r2, [r3, #60] @ 0x3c /* Set the UART DMA Half transfer complete callback */ huart->hdmatx->XferHalfCpltCallback = UART_DMATxHalfCplt; - 8005be6: 68fb ldr r3, [r7, #12] - 8005be8: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005bea: 4a26 ldr r2, [pc, #152] @ (8005c84 ) - 8005bec: 641a str r2, [r3, #64] @ 0x40 + 8005b1e: 68fb ldr r3, [r7, #12] + 8005b20: 6b9b ldr r3, [r3, #56] @ 0x38 + 8005b22: 4a26 ldr r2, [pc, #152] @ (8005bbc ) + 8005b24: 641a str r2, [r3, #64] @ 0x40 /* Set the DMA error callback */ huart->hdmatx->XferErrorCallback = UART_DMAError; - 8005bee: 68fb ldr r3, [r7, #12] - 8005bf0: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005bf2: 4a25 ldr r2, [pc, #148] @ (8005c88 ) - 8005bf4: 64da str r2, [r3, #76] @ 0x4c + 8005b26: 68fb ldr r3, [r7, #12] + 8005b28: 6b9b ldr r3, [r3, #56] @ 0x38 + 8005b2a: 4a25 ldr r2, [pc, #148] @ (8005bc0 ) + 8005b2c: 64da str r2, [r3, #76] @ 0x4c /* Set the DMA abort callback */ huart->hdmatx->XferAbortCallback = NULL; - 8005bf6: 68fb ldr r3, [r7, #12] - 8005bf8: 6b9b ldr r3, [r3, #56] @ 0x38 - 8005bfa: 2200 movs r2, #0 - 8005bfc: 651a str r2, [r3, #80] @ 0x50 + 8005b2e: 68fb ldr r3, [r7, #12] + 8005b30: 6b9b ldr r3, [r3, #56] @ 0x38 + 8005b32: 2200 movs r2, #0 + 8005b34: 651a str r2, [r3, #80] @ 0x50 /* Enable the UART transmit DMA stream */ tmp = (const uint32_t *)&pData; - 8005bfe: f107 0308 add.w r3, r7, #8 - 8005c02: 62fb str r3, [r7, #44] @ 0x2c + 8005b36: f107 0308 add.w r3, r7, #8 + 8005b3a: 62fb str r3, [r7, #44] @ 0x2c if (HAL_DMA_Start_IT(huart->hdmatx, *(const uint32_t *)tmp, (uint32_t)&huart->Instance->DR, Size) != HAL_OK) - 8005c04: 68fb ldr r3, [r7, #12] - 8005c06: 6b98 ldr r0, [r3, #56] @ 0x38 - 8005c08: 6afb ldr r3, [r7, #44] @ 0x2c - 8005c0a: 6819 ldr r1, [r3, #0] - 8005c0c: 68fb ldr r3, [r7, #12] - 8005c0e: 681b ldr r3, [r3, #0] - 8005c10: 3304 adds r3, #4 - 8005c12: 461a mov r2, r3 - 8005c14: 88fb ldrh r3, [r7, #6] - 8005c16: f7fc f8c7 bl 8001da8 - 8005c1a: 4603 mov r3, r0 - 8005c1c: 2b00 cmp r3, #0 - 8005c1e: d008 beq.n 8005c32 + 8005b3c: 68fb ldr r3, [r7, #12] + 8005b3e: 6b98 ldr r0, [r3, #56] @ 0x38 + 8005b40: 6afb ldr r3, [r7, #44] @ 0x2c + 8005b42: 6819 ldr r1, [r3, #0] + 8005b44: 68fb ldr r3, [r7, #12] + 8005b46: 681b ldr r3, [r3, #0] + 8005b48: 3304 adds r3, #4 + 8005b4a: 461a mov r2, r3 + 8005b4c: 88fb ldrh r3, [r7, #6] + 8005b4e: f7fc f953 bl 8001df8 + 8005b52: 4603 mov r3, r0 + 8005b54: 2b00 cmp r3, #0 + 8005b56: d008 beq.n 8005b6a { /* Set error code to DMA */ huart->ErrorCode = HAL_UART_ERROR_DMA; - 8005c20: 68fb ldr r3, [r7, #12] - 8005c22: 2210 movs r2, #16 - 8005c24: 645a str r2, [r3, #68] @ 0x44 + 8005b58: 68fb ldr r3, [r7, #12] + 8005b5a: 2210 movs r2, #16 + 8005b5c: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->gState to ready */ huart->gState = HAL_UART_STATE_READY; - 8005c26: 68fb ldr r3, [r7, #12] - 8005c28: 2220 movs r2, #32 - 8005c2a: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8005b5e: 68fb ldr r3, [r7, #12] + 8005b60: 2220 movs r2, #32 + 8005b62: f883 2041 strb.w r2, [r3, #65] @ 0x41 return HAL_ERROR; - 8005c2e: 2301 movs r3, #1 - 8005c30: e021 b.n 8005c76 + 8005b66: 2301 movs r3, #1 + 8005b68: e021 b.n 8005bae } /* Clear the TC flag in the SR register by writing 0 to it */ __HAL_UART_CLEAR_FLAG(huart, UART_FLAG_TC); - 8005c32: 68fb ldr r3, [r7, #12] - 8005c34: 681b ldr r3, [r3, #0] - 8005c36: f06f 0240 mvn.w r2, #64 @ 0x40 - 8005c3a: 601a str r2, [r3, #0] + 8005b6a: 68fb ldr r3, [r7, #12] + 8005b6c: 681b ldr r3, [r3, #0] + 8005b6e: f06f 0240 mvn.w r2, #64 @ 0x40 + 8005b72: 601a str r2, [r3, #0] /* Enable the DMA transfer for transmit request by setting the DMAT bit in the UART CR3 register */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_DMAT); - 8005c3c: 68fb ldr r3, [r7, #12] - 8005c3e: 681b ldr r3, [r3, #0] - 8005c40: 3314 adds r3, #20 - 8005c42: 61bb str r3, [r7, #24] + 8005b74: 68fb ldr r3, [r7, #12] + 8005b76: 681b ldr r3, [r3, #0] + 8005b78: 3314 adds r3, #20 + 8005b7a: 61bb str r3, [r7, #24] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005c44: 69bb ldr r3, [r7, #24] - 8005c46: e853 3f00 ldrex r3, [r3] - 8005c4a: 617b str r3, [r7, #20] + 8005b7c: 69bb ldr r3, [r7, #24] + 8005b7e: e853 3f00 ldrex r3, [r3] + 8005b82: 617b str r3, [r7, #20] return(result); - 8005c4c: 697b ldr r3, [r7, #20] - 8005c4e: f043 0380 orr.w r3, r3, #128 @ 0x80 - 8005c52: 62bb str r3, [r7, #40] @ 0x28 - 8005c54: 68fb ldr r3, [r7, #12] - 8005c56: 681b ldr r3, [r3, #0] - 8005c58: 3314 adds r3, #20 - 8005c5a: 6aba ldr r2, [r7, #40] @ 0x28 - 8005c5c: 627a str r2, [r7, #36] @ 0x24 - 8005c5e: 623b str r3, [r7, #32] + 8005b84: 697b ldr r3, [r7, #20] + 8005b86: f043 0380 orr.w r3, r3, #128 @ 0x80 + 8005b8a: 62bb str r3, [r7, #40] @ 0x28 + 8005b8c: 68fb ldr r3, [r7, #12] + 8005b8e: 681b ldr r3, [r3, #0] + 8005b90: 3314 adds r3, #20 + 8005b92: 6aba ldr r2, [r7, #40] @ 0x28 + 8005b94: 627a str r2, [r7, #36] @ 0x24 + 8005b96: 623b str r3, [r7, #32] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8005c60: 6a39 ldr r1, [r7, #32] - 8005c62: 6a7a ldr r2, [r7, #36] @ 0x24 - 8005c64: e841 2300 strex r3, r2, [r1] - 8005c68: 61fb str r3, [r7, #28] + 8005b98: 6a39 ldr r1, [r7, #32] + 8005b9a: 6a7a ldr r2, [r7, #36] @ 0x24 + 8005b9c: e841 2300 strex r3, r2, [r1] + 8005ba0: 61fb str r3, [r7, #28] return(result); - 8005c6a: 69fb ldr r3, [r7, #28] - 8005c6c: 2b00 cmp r3, #0 - 8005c6e: d1e5 bne.n 8005c3c + 8005ba2: 69fb ldr r3, [r7, #28] + 8005ba4: 2b00 cmp r3, #0 + 8005ba6: d1e5 bne.n 8005b74 return HAL_OK; - 8005c70: 2300 movs r3, #0 - 8005c72: e000 b.n 8005c76 + 8005ba8: 2300 movs r3, #0 + 8005baa: e000 b.n 8005bae } else { return HAL_BUSY; - 8005c74: 2302 movs r3, #2 + 8005bac: 2302 movs r3, #2 } } - 8005c76: 4618 mov r0, r3 - 8005c78: 3730 adds r7, #48 @ 0x30 - 8005c7a: 46bd mov sp, r7 - 8005c7c: bd80 pop {r7, pc} - 8005c7e: bf00 nop - 8005c80: 08006295 .word 0x08006295 - 8005c84: 0800632f .word 0x0800632f - 8005c88: 080064b3 .word 0x080064b3 + 8005bae: 4618 mov r0, r3 + 8005bb0: 3730 adds r7, #48 @ 0x30 + 8005bb2: 46bd mov sp, r7 + 8005bb4: bd80 pop {r7, pc} + 8005bb6: bf00 nop + 8005bb8: 080061cd .word 0x080061cd + 8005bbc: 08006267 .word 0x08006267 + 8005bc0: 080063eb .word 0x080063eb -08005c8c : +08005bc4 : * @param Size Amount of data elements (u8 or u16) to be received. * @note When the UART parity is enabled (PCE = 1) the received data contains the parity bit. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 8005c8c: b580 push {r7, lr} - 8005c8e: b084 sub sp, #16 - 8005c90: af00 add r7, sp, #0 - 8005c92: 60f8 str r0, [r7, #12] - 8005c94: 60b9 str r1, [r7, #8] - 8005c96: 4613 mov r3, r2 - 8005c98: 80fb strh r3, [r7, #6] + 8005bc4: b580 push {r7, lr} + 8005bc6: b084 sub sp, #16 + 8005bc8: af00 add r7, sp, #0 + 8005bca: 60f8 str r0, [r7, #12] + 8005bcc: 60b9 str r1, [r7, #8] + 8005bce: 4613 mov r3, r2 + 8005bd0: 80fb strh r3, [r7, #6] /* Check that a Rx process is not already ongoing */ if (huart->RxState == HAL_UART_STATE_READY) - 8005c9a: 68fb ldr r3, [r7, #12] - 8005c9c: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8005ca0: b2db uxtb r3, r3 - 8005ca2: 2b20 cmp r3, #32 - 8005ca4: d112 bne.n 8005ccc + 8005bd2: 68fb ldr r3, [r7, #12] + 8005bd4: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 8005bd8: b2db uxtb r3, r3 + 8005bda: 2b20 cmp r3, #32 + 8005bdc: d112 bne.n 8005c04 { if ((pData == NULL) || (Size == 0U)) - 8005ca6: 68bb ldr r3, [r7, #8] - 8005ca8: 2b00 cmp r3, #0 - 8005caa: d002 beq.n 8005cb2 - 8005cac: 88fb ldrh r3, [r7, #6] - 8005cae: 2b00 cmp r3, #0 - 8005cb0: d101 bne.n 8005cb6 + 8005bde: 68bb ldr r3, [r7, #8] + 8005be0: 2b00 cmp r3, #0 + 8005be2: d002 beq.n 8005bea + 8005be4: 88fb ldrh r3, [r7, #6] + 8005be6: 2b00 cmp r3, #0 + 8005be8: d101 bne.n 8005bee { return HAL_ERROR; - 8005cb2: 2301 movs r3, #1 - 8005cb4: e00b b.n 8005cce + 8005bea: 2301 movs r3, #1 + 8005bec: e00b b.n 8005c06 } /* Set Reception type to Standard reception */ huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8005cb6: 68fb ldr r3, [r7, #12] - 8005cb8: 2200 movs r2, #0 - 8005cba: 631a str r2, [r3, #48] @ 0x30 + 8005bee: 68fb ldr r3, [r7, #12] + 8005bf0: 2200 movs r2, #0 + 8005bf2: 631a str r2, [r3, #48] @ 0x30 return (UART_Start_Receive_DMA(huart, pData, Size)); - 8005cbc: 88fb ldrh r3, [r7, #6] - 8005cbe: 461a mov r2, r3 - 8005cc0: 68b9 ldr r1, [r7, #8] - 8005cc2: 68f8 ldr r0, [r7, #12] - 8005cc4: f000 fc98 bl 80065f8 - 8005cc8: 4603 mov r3, r0 - 8005cca: e000 b.n 8005cce + 8005bf4: 88fb ldrh r3, [r7, #6] + 8005bf6: 461a mov r2, r3 + 8005bf8: 68b9 ldr r1, [r7, #8] + 8005bfa: 68f8 ldr r0, [r7, #12] + 8005bfc: f000 fc40 bl 8006480 + 8005c00: 4603 mov r3, r0 + 8005c02: e000 b.n 8005c06 } else { return HAL_BUSY; - 8005ccc: 2302 movs r3, #2 + 8005c04: 2302 movs r3, #2 } } - 8005cce: 4618 mov r0, r3 - 8005cd0: 3710 adds r7, #16 - 8005cd2: 46bd mov sp, r7 - 8005cd4: bd80 pop {r7, pc} + 8005c06: 4618 mov r0, r3 + 8005c08: 3710 adds r7, #16 + 8005c0a: 46bd mov sp, r7 + 8005c0c: bd80 pop {r7, pc} ... -08005cd8 : +08005c10 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ void HAL_UART_IRQHandler(UART_HandleTypeDef *huart) { - 8005cd8: b580 push {r7, lr} - 8005cda: b0ba sub sp, #232 @ 0xe8 - 8005cdc: af00 add r7, sp, #0 - 8005cde: 6078 str r0, [r7, #4] + 8005c10: b580 push {r7, lr} + 8005c12: b0ba sub sp, #232 @ 0xe8 + 8005c14: af00 add r7, sp, #0 + 8005c16: 6078 str r0, [r7, #4] uint32_t isrflags = READ_REG(huart->Instance->SR); - 8005ce0: 687b ldr r3, [r7, #4] - 8005ce2: 681b ldr r3, [r3, #0] - 8005ce4: 681b ldr r3, [r3, #0] - 8005ce6: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 + 8005c18: 687b ldr r3, [r7, #4] + 8005c1a: 681b ldr r3, [r3, #0] + 8005c1c: 681b ldr r3, [r3, #0] + 8005c1e: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 uint32_t cr1its = READ_REG(huart->Instance->CR1); - 8005cea: 687b ldr r3, [r7, #4] - 8005cec: 681b ldr r3, [r3, #0] - 8005cee: 68db ldr r3, [r3, #12] - 8005cf0: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 + 8005c22: 687b ldr r3, [r7, #4] + 8005c24: 681b ldr r3, [r3, #0] + 8005c26: 68db ldr r3, [r3, #12] + 8005c28: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 uint32_t cr3its = READ_REG(huart->Instance->CR3); - 8005cf4: 687b ldr r3, [r7, #4] - 8005cf6: 681b ldr r3, [r3, #0] - 8005cf8: 695b ldr r3, [r3, #20] - 8005cfa: f8c7 30dc str.w r3, [r7, #220] @ 0xdc + 8005c2c: 687b ldr r3, [r7, #4] + 8005c2e: 681b ldr r3, [r3, #0] + 8005c30: 695b ldr r3, [r3, #20] + 8005c32: f8c7 30dc str.w r3, [r7, #220] @ 0xdc uint32_t errorflags = 0x00U; - 8005cfe: 2300 movs r3, #0 - 8005d00: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 8005c36: 2300 movs r3, #0 + 8005c38: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 uint32_t dmarequest = 0x00U; - 8005d04: 2300 movs r3, #0 - 8005d06: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 8005c3c: 2300 movs r3, #0 + 8005c3e: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 /* If no error occurs */ errorflags = (isrflags & (uint32_t)(USART_SR_PE | USART_SR_FE | USART_SR_ORE | USART_SR_NE)); - 8005d0a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005d0e: f003 030f and.w r3, r3, #15 - 8005d12: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 8005c42: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005c46: f003 030f and.w r3, r3, #15 + 8005c4a: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 if (errorflags == RESET) - 8005d16: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 8005d1a: 2b00 cmp r3, #0 - 8005d1c: d10f bne.n 8005d3e + 8005c4e: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 8005c52: 2b00 cmp r3, #0 + 8005c54: d10f bne.n 8005c76 { /* UART in mode Receiver -------------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 8005d1e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005d22: f003 0320 and.w r3, r3, #32 - 8005d26: 2b00 cmp r3, #0 - 8005d28: d009 beq.n 8005d3e - 8005d2a: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005d2e: f003 0320 and.w r3, r3, #32 - 8005d32: 2b00 cmp r3, #0 - 8005d34: d003 beq.n 8005d3e + 8005c56: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005c5a: f003 0320 and.w r3, r3, #32 + 8005c5e: 2b00 cmp r3, #0 + 8005c60: d009 beq.n 8005c76 + 8005c62: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005c66: f003 0320 and.w r3, r3, #32 + 8005c6a: 2b00 cmp r3, #0 + 8005c6c: d003 beq.n 8005c76 { UART_Receive_IT(huart); - 8005d36: 6878 ldr r0, [r7, #4] - 8005d38: f000 fe08 bl 800694c + 8005c6e: 6878 ldr r0, [r7, #4] + 8005c70: f000 fdb0 bl 80067d4 return; - 8005d3c: e273 b.n 8006226 + 8005c74: e273 b.n 800615e } } /* If some errors occur */ if ((errorflags != RESET) && (((cr3its & USART_CR3_EIE) != RESET) - 8005d3e: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 - 8005d42: 2b00 cmp r3, #0 - 8005d44: f000 80de beq.w 8005f04 - 8005d48: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005d4c: f003 0301 and.w r3, r3, #1 - 8005d50: 2b00 cmp r3, #0 - 8005d52: d106 bne.n 8005d62 + 8005c76: f8d7 30d8 ldr.w r3, [r7, #216] @ 0xd8 + 8005c7a: 2b00 cmp r3, #0 + 8005c7c: f000 80de beq.w 8005e3c + 8005c80: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 8005c84: f003 0301 and.w r3, r3, #1 + 8005c88: 2b00 cmp r3, #0 + 8005c8a: d106 bne.n 8005c9a || ((cr1its & (USART_CR1_RXNEIE | USART_CR1_PEIE)) != RESET))) - 8005d54: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005d58: f403 7390 and.w r3, r3, #288 @ 0x120 - 8005d5c: 2b00 cmp r3, #0 - 8005d5e: f000 80d1 beq.w 8005f04 + 8005c8c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005c90: f403 7390 and.w r3, r3, #288 @ 0x120 + 8005c94: 2b00 cmp r3, #0 + 8005c96: f000 80d1 beq.w 8005e3c { /* UART parity error interrupt occurred ----------------------------------*/ if (((isrflags & USART_SR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) - 8005d62: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005d66: f003 0301 and.w r3, r3, #1 - 8005d6a: 2b00 cmp r3, #0 - 8005d6c: d00b beq.n 8005d86 - 8005d6e: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005d72: f403 7380 and.w r3, r3, #256 @ 0x100 - 8005d76: 2b00 cmp r3, #0 - 8005d78: d005 beq.n 8005d86 + 8005c9a: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005c9e: f003 0301 and.w r3, r3, #1 + 8005ca2: 2b00 cmp r3, #0 + 8005ca4: d00b beq.n 8005cbe + 8005ca6: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005caa: f403 7380 and.w r3, r3, #256 @ 0x100 + 8005cae: 2b00 cmp r3, #0 + 8005cb0: d005 beq.n 8005cbe { huart->ErrorCode |= HAL_UART_ERROR_PE; - 8005d7a: 687b ldr r3, [r7, #4] - 8005d7c: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005d7e: f043 0201 orr.w r2, r3, #1 - 8005d82: 687b ldr r3, [r7, #4] - 8005d84: 645a str r2, [r3, #68] @ 0x44 + 8005cb2: 687b ldr r3, [r7, #4] + 8005cb4: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005cb6: f043 0201 orr.w r2, r3, #1 + 8005cba: 687b ldr r3, [r7, #4] + 8005cbc: 645a str r2, [r3, #68] @ 0x44 } /* UART noise error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 8005d86: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005d8a: f003 0304 and.w r3, r3, #4 - 8005d8e: 2b00 cmp r3, #0 - 8005d90: d00b beq.n 8005daa - 8005d92: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005d96: f003 0301 and.w r3, r3, #1 - 8005d9a: 2b00 cmp r3, #0 - 8005d9c: d005 beq.n 8005daa + 8005cbe: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005cc2: f003 0304 and.w r3, r3, #4 + 8005cc6: 2b00 cmp r3, #0 + 8005cc8: d00b beq.n 8005ce2 + 8005cca: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 8005cce: f003 0301 and.w r3, r3, #1 + 8005cd2: 2b00 cmp r3, #0 + 8005cd4: d005 beq.n 8005ce2 { huart->ErrorCode |= HAL_UART_ERROR_NE; - 8005d9e: 687b ldr r3, [r7, #4] - 8005da0: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005da2: f043 0202 orr.w r2, r3, #2 - 8005da6: 687b ldr r3, [r7, #4] - 8005da8: 645a str r2, [r3, #68] @ 0x44 + 8005cd6: 687b ldr r3, [r7, #4] + 8005cd8: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005cda: f043 0202 orr.w r2, r3, #2 + 8005cde: 687b ldr r3, [r7, #4] + 8005ce0: 645a str r2, [r3, #68] @ 0x44 } /* UART frame error interrupt occurred -----------------------------------*/ if (((isrflags & USART_SR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) - 8005daa: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005dae: f003 0302 and.w r3, r3, #2 - 8005db2: 2b00 cmp r3, #0 - 8005db4: d00b beq.n 8005dce - 8005db6: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005dba: f003 0301 and.w r3, r3, #1 - 8005dbe: 2b00 cmp r3, #0 - 8005dc0: d005 beq.n 8005dce + 8005ce2: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005ce6: f003 0302 and.w r3, r3, #2 + 8005cea: 2b00 cmp r3, #0 + 8005cec: d00b beq.n 8005d06 + 8005cee: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 8005cf2: f003 0301 and.w r3, r3, #1 + 8005cf6: 2b00 cmp r3, #0 + 8005cf8: d005 beq.n 8005d06 { huart->ErrorCode |= HAL_UART_ERROR_FE; - 8005dc2: 687b ldr r3, [r7, #4] - 8005dc4: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005dc6: f043 0204 orr.w r2, r3, #4 - 8005dca: 687b ldr r3, [r7, #4] - 8005dcc: 645a str r2, [r3, #68] @ 0x44 + 8005cfa: 687b ldr r3, [r7, #4] + 8005cfc: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005cfe: f043 0204 orr.w r2, r3, #4 + 8005d02: 687b ldr r3, [r7, #4] + 8005d04: 645a str r2, [r3, #68] @ 0x44 } /* UART Over-Run interrupt occurred --------------------------------------*/ if (((isrflags & USART_SR_ORE) != RESET) && (((cr1its & USART_CR1_RXNEIE) != RESET) - 8005dce: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005dd2: f003 0308 and.w r3, r3, #8 - 8005dd6: 2b00 cmp r3, #0 - 8005dd8: d011 beq.n 8005dfe - 8005dda: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005dde: f003 0320 and.w r3, r3, #32 - 8005de2: 2b00 cmp r3, #0 - 8005de4: d105 bne.n 8005df2 + 8005d06: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005d0a: f003 0308 and.w r3, r3, #8 + 8005d0e: 2b00 cmp r3, #0 + 8005d10: d011 beq.n 8005d36 + 8005d12: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005d16: f003 0320 and.w r3, r3, #32 + 8005d1a: 2b00 cmp r3, #0 + 8005d1c: d105 bne.n 8005d2a || ((cr3its & USART_CR3_EIE) != RESET))) - 8005de6: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc - 8005dea: f003 0301 and.w r3, r3, #1 - 8005dee: 2b00 cmp r3, #0 - 8005df0: d005 beq.n 8005dfe + 8005d1e: f8d7 30dc ldr.w r3, [r7, #220] @ 0xdc + 8005d22: f003 0301 and.w r3, r3, #1 + 8005d26: 2b00 cmp r3, #0 + 8005d28: d005 beq.n 8005d36 { huart->ErrorCode |= HAL_UART_ERROR_ORE; - 8005df2: 687b ldr r3, [r7, #4] - 8005df4: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005df6: f043 0208 orr.w r2, r3, #8 - 8005dfa: 687b ldr r3, [r7, #4] - 8005dfc: 645a str r2, [r3, #68] @ 0x44 + 8005d2a: 687b ldr r3, [r7, #4] + 8005d2c: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005d2e: f043 0208 orr.w r2, r3, #8 + 8005d32: 687b ldr r3, [r7, #4] + 8005d34: 645a str r2, [r3, #68] @ 0x44 } /* Call UART Error Call back function if need be --------------------------*/ if (huart->ErrorCode != HAL_UART_ERROR_NONE) - 8005dfe: 687b ldr r3, [r7, #4] - 8005e00: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e02: 2b00 cmp r3, #0 - 8005e04: f000 820a beq.w 800621c + 8005d36: 687b ldr r3, [r7, #4] + 8005d38: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005d3a: 2b00 cmp r3, #0 + 8005d3c: f000 820a beq.w 8006154 { /* UART in mode Receiver -----------------------------------------------*/ if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) - 8005e08: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005e0c: f003 0320 and.w r3, r3, #32 - 8005e10: 2b00 cmp r3, #0 - 8005e12: d008 beq.n 8005e26 - 8005e14: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005e18: f003 0320 and.w r3, r3, #32 - 8005e1c: 2b00 cmp r3, #0 - 8005e1e: d002 beq.n 8005e26 + 8005d40: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005d44: f003 0320 and.w r3, r3, #32 + 8005d48: 2b00 cmp r3, #0 + 8005d4a: d008 beq.n 8005d5e + 8005d4c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005d50: f003 0320 and.w r3, r3, #32 + 8005d54: 2b00 cmp r3, #0 + 8005d56: d002 beq.n 8005d5e { UART_Receive_IT(huart); - 8005e20: 6878 ldr r0, [r7, #4] - 8005e22: f000 fd93 bl 800694c + 8005d58: 6878 ldr r0, [r7, #4] + 8005d5a: f000 fd3b bl 80067d4 } /* If Overrun error occurs, or if any error occurs in DMA mode reception, consider error as blocking */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR); - 8005e26: 687b ldr r3, [r7, #4] - 8005e28: 681b ldr r3, [r3, #0] - 8005e2a: 695b ldr r3, [r3, #20] - 8005e2c: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005e30: 2b40 cmp r3, #64 @ 0x40 - 8005e32: bf0c ite eq - 8005e34: 2301 moveq r3, #1 - 8005e36: 2300 movne r3, #0 - 8005e38: b2db uxtb r3, r3 - 8005e3a: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 + 8005d5e: 687b ldr r3, [r7, #4] + 8005d60: 681b ldr r3, [r3, #0] + 8005d62: 695b ldr r3, [r3, #20] + 8005d64: f003 0340 and.w r3, r3, #64 @ 0x40 + 8005d68: 2b40 cmp r3, #64 @ 0x40 + 8005d6a: bf0c ite eq + 8005d6c: 2301 moveq r3, #1 + 8005d6e: 2300 movne r3, #0 + 8005d70: b2db uxtb r3, r3 + 8005d72: f8c7 30d4 str.w r3, [r7, #212] @ 0xd4 if (((huart->ErrorCode & HAL_UART_ERROR_ORE) != RESET) || dmarequest) - 8005e3e: 687b ldr r3, [r7, #4] - 8005e40: 6c5b ldr r3, [r3, #68] @ 0x44 - 8005e42: f003 0308 and.w r3, r3, #8 - 8005e46: 2b00 cmp r3, #0 - 8005e48: d103 bne.n 8005e52 - 8005e4a: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 - 8005e4e: 2b00 cmp r3, #0 - 8005e50: d04f beq.n 8005ef2 + 8005d76: 687b ldr r3, [r7, #4] + 8005d78: 6c5b ldr r3, [r3, #68] @ 0x44 + 8005d7a: f003 0308 and.w r3, r3, #8 + 8005d7e: 2b00 cmp r3, #0 + 8005d80: d103 bne.n 8005d8a + 8005d82: f8d7 30d4 ldr.w r3, [r7, #212] @ 0xd4 + 8005d86: 2b00 cmp r3, #0 + 8005d88: d04f beq.n 8005e2a { /* Blocking error : transfer is aborted Set the UART state ready to be able to start again the process, Disable Rx Interrupts, and disable Rx DMA request, if ongoing */ UART_EndRxTransfer(huart); - 8005e52: 6878 ldr r0, [r7, #4] - 8005e54: f000 fc9e bl 8006794 + 8005d8a: 6878 ldr r0, [r7, #4] + 8005d8c: f000 fc46 bl 800661c /* Disable the UART DMA Rx request if enabled */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005e58: 687b ldr r3, [r7, #4] - 8005e5a: 681b ldr r3, [r3, #0] - 8005e5c: 695b ldr r3, [r3, #20] - 8005e5e: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005e62: 2b40 cmp r3, #64 @ 0x40 - 8005e64: d141 bne.n 8005eea + 8005d90: 687b ldr r3, [r7, #4] + 8005d92: 681b ldr r3, [r3, #0] + 8005d94: 695b ldr r3, [r3, #20] + 8005d96: f003 0340 and.w r3, r3, #64 @ 0x40 + 8005d9a: 2b40 cmp r3, #64 @ 0x40 + 8005d9c: d141 bne.n 8005e22 { ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 8005e66: 687b ldr r3, [r7, #4] - 8005e68: 681b ldr r3, [r3, #0] - 8005e6a: 3314 adds r3, #20 - 8005e6c: f8c7 309c str.w r3, [r7, #156] @ 0x9c + 8005d9e: 687b ldr r3, [r7, #4] + 8005da0: 681b ldr r3, [r3, #0] + 8005da2: 3314 adds r3, #20 + 8005da4: f8c7 309c str.w r3, [r7, #156] @ 0x9c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005e70: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c - 8005e74: e853 3f00 ldrex r3, [r3] - 8005e78: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 8005da8: f8d7 309c ldr.w r3, [r7, #156] @ 0x9c + 8005dac: e853 3f00 ldrex r3, [r3] + 8005db0: f8c7 3098 str.w r3, [r7, #152] @ 0x98 return(result); - 8005e7c: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 - 8005e80: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8005e84: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 - 8005e88: 687b ldr r3, [r7, #4] - 8005e8a: 681b ldr r3, [r3, #0] - 8005e8c: 3314 adds r3, #20 - 8005e8e: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 - 8005e92: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 - 8005e96: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 + 8005db4: f8d7 3098 ldr.w r3, [r7, #152] @ 0x98 + 8005db8: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8005dbc: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 + 8005dc0: 687b ldr r3, [r7, #4] + 8005dc2: 681b ldr r3, [r3, #0] + 8005dc4: 3314 adds r3, #20 + 8005dc6: f8d7 20d0 ldr.w r2, [r7, #208] @ 0xd0 + 8005dca: f8c7 20a8 str.w r2, [r7, #168] @ 0xa8 + 8005dce: f8c7 30a4 str.w r3, [r7, #164] @ 0xa4 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8005e9a: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 - 8005e9e: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 - 8005ea2: e841 2300 strex r3, r2, [r1] - 8005ea6: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 + 8005dd2: f8d7 10a4 ldr.w r1, [r7, #164] @ 0xa4 + 8005dd6: f8d7 20a8 ldr.w r2, [r7, #168] @ 0xa8 + 8005dda: e841 2300 strex r3, r2, [r1] + 8005dde: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 return(result); - 8005eaa: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 - 8005eae: 2b00 cmp r3, #0 - 8005eb0: d1d9 bne.n 8005e66 + 8005de2: f8d7 30a0 ldr.w r3, [r7, #160] @ 0xa0 + 8005de6: 2b00 cmp r3, #0 + 8005de8: d1d9 bne.n 8005d9e /* Abort the UART DMA Rx stream */ if (huart->hdmarx != NULL) - 8005eb2: 687b ldr r3, [r7, #4] - 8005eb4: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005eb6: 2b00 cmp r3, #0 - 8005eb8: d013 beq.n 8005ee2 + 8005dea: 687b ldr r3, [r7, #4] + 8005dec: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005dee: 2b00 cmp r3, #0 + 8005df0: d013 beq.n 8005e1a { /* Set the UART DMA Abort callback : will lead to call HAL_UART_ErrorCallback() at end of DMA abort procedure */ huart->hdmarx->XferAbortCallback = UART_DMAAbortOnError; - 8005eba: 687b ldr r3, [r7, #4] - 8005ebc: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005ebe: 4a8a ldr r2, [pc, #552] @ (80060e8 ) - 8005ec0: 651a str r2, [r3, #80] @ 0x50 + 8005df2: 687b ldr r3, [r7, #4] + 8005df4: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005df6: 4a8a ldr r2, [pc, #552] @ (8006020 ) + 8005df8: 651a str r2, [r3, #80] @ 0x50 if (HAL_DMA_Abort_IT(huart->hdmarx) != HAL_OK) - 8005ec2: 687b ldr r3, [r7, #4] - 8005ec4: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005ec6: 4618 mov r0, r3 - 8005ec8: f7fc f836 bl 8001f38 - 8005ecc: 4603 mov r3, r0 - 8005ece: 2b00 cmp r3, #0 - 8005ed0: d016 beq.n 8005f00 + 8005dfa: 687b ldr r3, [r7, #4] + 8005dfc: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005dfe: 4618 mov r0, r3 + 8005e00: f7fc f8c2 bl 8001f88 + 8005e04: 4603 mov r3, r0 + 8005e06: 2b00 cmp r3, #0 + 8005e08: d016 beq.n 8005e38 { /* Call Directly XferAbortCallback function in case of error */ huart->hdmarx->XferAbortCallback(huart->hdmarx); - 8005ed2: 687b ldr r3, [r7, #4] - 8005ed4: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005ed6: 6d1b ldr r3, [r3, #80] @ 0x50 - 8005ed8: 687a ldr r2, [r7, #4] - 8005eda: 6bd2 ldr r2, [r2, #60] @ 0x3c - 8005edc: 4610 mov r0, r2 - 8005ede: 4798 blx r3 + 8005e0a: 687b ldr r3, [r7, #4] + 8005e0c: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005e0e: 6d1b ldr r3, [r3, #80] @ 0x50 + 8005e10: 687a ldr r2, [r7, #4] + 8005e12: 6bd2 ldr r2, [r2, #60] @ 0x3c + 8005e14: 4610 mov r0, r2 + 8005e16: 4798 blx r3 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005ee0: e00e b.n 8005f00 + 8005e18: e00e b.n 8005e38 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005ee2: 6878 ldr r0, [r7, #4] - 8005ee4: f000 f9c0 bl 8006268 + 8005e1a: 6878 ldr r0, [r7, #4] + 8005e1c: f000 f9c0 bl 80061a0 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005ee8: e00a b.n 8005f00 + 8005e20: e00a b.n 8005e38 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005eea: 6878 ldr r0, [r7, #4] - 8005eec: f000 f9bc bl 8006268 + 8005e22: 6878 ldr r0, [r7, #4] + 8005e24: f000 f9bc bl 80061a0 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005ef0: e006 b.n 8005f00 + 8005e28: e006 b.n 8005e38 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8005ef2: 6878 ldr r0, [r7, #4] - 8005ef4: f000 f9b8 bl 8006268 + 8005e2a: 6878 ldr r0, [r7, #4] + 8005e2c: f000 f9b8 bl 80061a0 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 8005ef8: 687b ldr r3, [r7, #4] - 8005efa: 2200 movs r2, #0 - 8005efc: 645a str r2, [r3, #68] @ 0x44 + 8005e30: 687b ldr r3, [r7, #4] + 8005e32: 2200 movs r2, #0 + 8005e34: 645a str r2, [r3, #68] @ 0x44 } } return; - 8005efe: e18d b.n 800621c + 8005e36: e18d b.n 8006154 if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f00: bf00 nop + 8005e38: bf00 nop return; - 8005f02: e18b b.n 800621c + 8005e3a: e18b b.n 8006154 } /* End if some error occurs */ /* Check current reception Mode : If Reception till IDLE event has been selected : */ if ((huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8005f04: 687b ldr r3, [r7, #4] - 8005f06: 6b1b ldr r3, [r3, #48] @ 0x30 - 8005f08: 2b01 cmp r3, #1 - 8005f0a: f040 8167 bne.w 80061dc + 8005e3c: 687b ldr r3, [r7, #4] + 8005e3e: 6b1b ldr r3, [r3, #48] @ 0x30 + 8005e40: 2b01 cmp r3, #1 + 8005e42: f040 8167 bne.w 8006114 && ((isrflags & USART_SR_IDLE) != 0U) - 8005f0e: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8005f12: f003 0310 and.w r3, r3, #16 - 8005f16: 2b00 cmp r3, #0 - 8005f18: f000 8160 beq.w 80061dc + 8005e46: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8005e4a: f003 0310 and.w r3, r3, #16 + 8005e4e: 2b00 cmp r3, #0 + 8005e50: f000 8160 beq.w 8006114 && ((cr1its & USART_CR1_IDLEIE) != 0U)) - 8005f1c: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 8005f20: f003 0310 and.w r3, r3, #16 - 8005f24: 2b00 cmp r3, #0 - 8005f26: f000 8159 beq.w 80061dc + 8005e54: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8005e58: f003 0310 and.w r3, r3, #16 + 8005e5c: 2b00 cmp r3, #0 + 8005e5e: f000 8159 beq.w 8006114 { __HAL_UART_CLEAR_IDLEFLAG(huart); - 8005f2a: 2300 movs r3, #0 - 8005f2c: 60bb str r3, [r7, #8] - 8005f2e: 687b ldr r3, [r7, #4] - 8005f30: 681b ldr r3, [r3, #0] - 8005f32: 681b ldr r3, [r3, #0] - 8005f34: 60bb str r3, [r7, #8] - 8005f36: 687b ldr r3, [r7, #4] - 8005f38: 681b ldr r3, [r3, #0] - 8005f3a: 685b ldr r3, [r3, #4] - 8005f3c: 60bb str r3, [r7, #8] - 8005f3e: 68bb ldr r3, [r7, #8] + 8005e62: 2300 movs r3, #0 + 8005e64: 60bb str r3, [r7, #8] + 8005e66: 687b ldr r3, [r7, #4] + 8005e68: 681b ldr r3, [r3, #0] + 8005e6a: 681b ldr r3, [r3, #0] + 8005e6c: 60bb str r3, [r7, #8] + 8005e6e: 687b ldr r3, [r7, #4] + 8005e70: 681b ldr r3, [r3, #0] + 8005e72: 685b ldr r3, [r3, #4] + 8005e74: 60bb str r3, [r7, #8] + 8005e76: 68bb ldr r3, [r7, #8] /* Check if DMA mode is enabled in UART */ if (HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR)) - 8005f40: 687b ldr r3, [r7, #4] - 8005f42: 681b ldr r3, [r3, #0] - 8005f44: 695b ldr r3, [r3, #20] - 8005f46: f003 0340 and.w r3, r3, #64 @ 0x40 - 8005f4a: 2b40 cmp r3, #64 @ 0x40 - 8005f4c: f040 80ce bne.w 80060ec + 8005e78: 687b ldr r3, [r7, #4] + 8005e7a: 681b ldr r3, [r3, #0] + 8005e7c: 695b ldr r3, [r3, #20] + 8005e7e: f003 0340 and.w r3, r3, #64 @ 0x40 + 8005e82: 2b40 cmp r3, #64 @ 0x40 + 8005e84: f040 80ce bne.w 8006024 { /* DMA mode enabled */ /* Check received length : If all expected data are received, do nothing, (DMA cplt callback will be called). Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_remaining_rx_data = (uint16_t) __HAL_DMA_GET_COUNTER(huart->hdmarx); - 8005f50: 687b ldr r3, [r7, #4] - 8005f52: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f54: 681b ldr r3, [r3, #0] - 8005f56: 685b ldr r3, [r3, #4] - 8005f58: f8a7 30be strh.w r3, [r7, #190] @ 0xbe + 8005e88: 687b ldr r3, [r7, #4] + 8005e8a: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005e8c: 681b ldr r3, [r3, #0] + 8005e8e: 685b ldr r3, [r3, #4] + 8005e90: f8a7 30be strh.w r3, [r7, #190] @ 0xbe if ((nb_remaining_rx_data > 0U) - 8005f5c: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe - 8005f60: 2b00 cmp r3, #0 - 8005f62: f000 80a9 beq.w 80060b8 + 8005e94: f8b7 30be ldrh.w r3, [r7, #190] @ 0xbe + 8005e98: 2b00 cmp r3, #0 + 8005e9a: f000 80a9 beq.w 8005ff0 && (nb_remaining_rx_data < huart->RxXferSize)) - 8005f66: 687b ldr r3, [r7, #4] - 8005f68: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8005f6a: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 8005f6e: 429a cmp r2, r3 - 8005f70: f080 80a2 bcs.w 80060b8 + 8005e9e: 687b ldr r3, [r7, #4] + 8005ea0: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8005ea2: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 8005ea6: 429a cmp r2, r3 + 8005ea8: f080 80a2 bcs.w 8005ff0 { /* Reception is not complete */ huart->RxXferCount = nb_remaining_rx_data; - 8005f74: 687b ldr r3, [r7, #4] - 8005f76: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 8005f7a: 85da strh r2, [r3, #46] @ 0x2e + 8005eac: 687b ldr r3, [r7, #4] + 8005eae: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 8005eb2: 85da strh r2, [r3, #46] @ 0x2e /* In Normal mode, end DMA xfer and HAL UART Rx process*/ if (huart->hdmarx->Init.Mode != DMA_CIRCULAR) - 8005f7c: 687b ldr r3, [r7, #4] - 8005f7e: 6bdb ldr r3, [r3, #60] @ 0x3c - 8005f80: 69db ldr r3, [r3, #28] - 8005f82: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 8005f86: f000 8088 beq.w 800609a + 8005eb4: 687b ldr r3, [r7, #4] + 8005eb6: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005eb8: 69db ldr r3, [r3, #28] + 8005eba: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 8005ebe: f000 8088 beq.w 8005fd2 { /* Disable PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 8005f8a: 687b ldr r3, [r7, #4] - 8005f8c: 681b ldr r3, [r3, #0] - 8005f8e: 330c adds r3, #12 - 8005f90: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 8005ec2: 687b ldr r3, [r7, #4] + 8005ec4: 681b ldr r3, [r3, #0] + 8005ec6: 330c adds r3, #12 + 8005ec8: f8c7 3088 str.w r3, [r7, #136] @ 0x88 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005f94: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 - 8005f98: e853 3f00 ldrex r3, [r3] - 8005f9c: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 8005ecc: f8d7 3088 ldr.w r3, [r7, #136] @ 0x88 + 8005ed0: e853 3f00 ldrex r3, [r3] + 8005ed4: f8c7 3084 str.w r3, [r7, #132] @ 0x84 return(result); - 8005fa0: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 - 8005fa4: f423 7380 bic.w r3, r3, #256 @ 0x100 - 8005fa8: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 - 8005fac: 687b ldr r3, [r7, #4] - 8005fae: 681b ldr r3, [r3, #0] - 8005fb0: 330c adds r3, #12 - 8005fb2: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 - 8005fb6: f8c7 2094 str.w r2, [r7, #148] @ 0x94 - 8005fba: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 8005ed8: f8d7 3084 ldr.w r3, [r7, #132] @ 0x84 + 8005edc: f423 7380 bic.w r3, r3, #256 @ 0x100 + 8005ee0: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 + 8005ee4: 687b ldr r3, [r7, #4] + 8005ee6: 681b ldr r3, [r3, #0] + 8005ee8: 330c adds r3, #12 + 8005eea: f8d7 20b8 ldr.w r2, [r7, #184] @ 0xb8 + 8005eee: f8c7 2094 str.w r2, [r7, #148] @ 0x94 + 8005ef2: f8c7 3090 str.w r3, [r7, #144] @ 0x90 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8005fbe: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 - 8005fc2: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 - 8005fc6: e841 2300 strex r3, r2, [r1] - 8005fca: f8c7 308c str.w r3, [r7, #140] @ 0x8c + 8005ef6: f8d7 1090 ldr.w r1, [r7, #144] @ 0x90 + 8005efa: f8d7 2094 ldr.w r2, [r7, #148] @ 0x94 + 8005efe: e841 2300 strex r3, r2, [r1] + 8005f02: f8c7 308c str.w r3, [r7, #140] @ 0x8c return(result); - 8005fce: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c - 8005fd2: 2b00 cmp r3, #0 - 8005fd4: d1d9 bne.n 8005f8a + 8005f06: f8d7 308c ldr.w r3, [r7, #140] @ 0x8c + 8005f0a: 2b00 cmp r3, #0 + 8005f0c: d1d9 bne.n 8005ec2 ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 8005fd6: 687b ldr r3, [r7, #4] - 8005fd8: 681b ldr r3, [r3, #0] - 8005fda: 3314 adds r3, #20 - 8005fdc: 677b str r3, [r7, #116] @ 0x74 + 8005f0e: 687b ldr r3, [r7, #4] + 8005f10: 681b ldr r3, [r3, #0] + 8005f12: 3314 adds r3, #20 + 8005f14: 677b str r3, [r7, #116] @ 0x74 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8005fde: 6f7b ldr r3, [r7, #116] @ 0x74 - 8005fe0: e853 3f00 ldrex r3, [r3] - 8005fe4: 673b str r3, [r7, #112] @ 0x70 + 8005f16: 6f7b ldr r3, [r7, #116] @ 0x74 + 8005f18: e853 3f00 ldrex r3, [r3] + 8005f1c: 673b str r3, [r7, #112] @ 0x70 return(result); - 8005fe6: 6f3b ldr r3, [r7, #112] @ 0x70 - 8005fe8: f023 0301 bic.w r3, r3, #1 - 8005fec: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8005ff0: 687b ldr r3, [r7, #4] - 8005ff2: 681b ldr r3, [r3, #0] - 8005ff4: 3314 adds r3, #20 - 8005ff6: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 - 8005ffa: f8c7 2080 str.w r2, [r7, #128] @ 0x80 - 8005ffe: 67fb str r3, [r7, #124] @ 0x7c + 8005f1e: 6f3b ldr r3, [r7, #112] @ 0x70 + 8005f20: f023 0301 bic.w r3, r3, #1 + 8005f24: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8005f28: 687b ldr r3, [r7, #4] + 8005f2a: 681b ldr r3, [r3, #0] + 8005f2c: 3314 adds r3, #20 + 8005f2e: f8d7 20b4 ldr.w r2, [r7, #180] @ 0xb4 + 8005f32: f8c7 2080 str.w r2, [r7, #128] @ 0x80 + 8005f36: 67fb str r3, [r7, #124] @ 0x7c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006000: 6ff9 ldr r1, [r7, #124] @ 0x7c - 8006002: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 - 8006006: e841 2300 strex r3, r2, [r1] - 800600a: 67bb str r3, [r7, #120] @ 0x78 + 8005f38: 6ff9 ldr r1, [r7, #124] @ 0x7c + 8005f3a: f8d7 2080 ldr.w r2, [r7, #128] @ 0x80 + 8005f3e: e841 2300 strex r3, r2, [r1] + 8005f42: 67bb str r3, [r7, #120] @ 0x78 return(result); - 800600c: 6fbb ldr r3, [r7, #120] @ 0x78 - 800600e: 2b00 cmp r3, #0 - 8006010: d1e1 bne.n 8005fd6 + 8005f44: 6fbb ldr r3, [r7, #120] @ 0x78 + 8005f46: 2b00 cmp r3, #0 + 8005f48: d1e1 bne.n 8005f0e /* Disable the DMA transfer for the receiver request by resetting the DMAR bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 8006012: 687b ldr r3, [r7, #4] - 8006014: 681b ldr r3, [r3, #0] - 8006016: 3314 adds r3, #20 - 8006018: 663b str r3, [r7, #96] @ 0x60 + 8005f4a: 687b ldr r3, [r7, #4] + 8005f4c: 681b ldr r3, [r3, #0] + 8005f4e: 3314 adds r3, #20 + 8005f50: 663b str r3, [r7, #96] @ 0x60 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800601a: 6e3b ldr r3, [r7, #96] @ 0x60 - 800601c: e853 3f00 ldrex r3, [r3] - 8006020: 65fb str r3, [r7, #92] @ 0x5c + 8005f52: 6e3b ldr r3, [r7, #96] @ 0x60 + 8005f54: e853 3f00 ldrex r3, [r3] + 8005f58: 65fb str r3, [r7, #92] @ 0x5c return(result); - 8006022: 6dfb ldr r3, [r7, #92] @ 0x5c - 8006024: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8006028: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 - 800602c: 687b ldr r3, [r7, #4] - 800602e: 681b ldr r3, [r3, #0] - 8006030: 3314 adds r3, #20 - 8006032: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 - 8006036: 66fa str r2, [r7, #108] @ 0x6c - 8006038: 66bb str r3, [r7, #104] @ 0x68 + 8005f5a: 6dfb ldr r3, [r7, #92] @ 0x5c + 8005f5c: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8005f60: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8005f64: 687b ldr r3, [r7, #4] + 8005f66: 681b ldr r3, [r3, #0] + 8005f68: 3314 adds r3, #20 + 8005f6a: f8d7 20b0 ldr.w r2, [r7, #176] @ 0xb0 + 8005f6e: 66fa str r2, [r7, #108] @ 0x6c + 8005f70: 66bb str r3, [r7, #104] @ 0x68 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800603a: 6eb9 ldr r1, [r7, #104] @ 0x68 - 800603c: 6efa ldr r2, [r7, #108] @ 0x6c - 800603e: e841 2300 strex r3, r2, [r1] - 8006042: 667b str r3, [r7, #100] @ 0x64 + 8005f72: 6eb9 ldr r1, [r7, #104] @ 0x68 + 8005f74: 6efa ldr r2, [r7, #108] @ 0x6c + 8005f76: e841 2300 strex r3, r2, [r1] + 8005f7a: 667b str r3, [r7, #100] @ 0x64 return(result); - 8006044: 6e7b ldr r3, [r7, #100] @ 0x64 - 8006046: 2b00 cmp r3, #0 - 8006048: d1e3 bne.n 8006012 + 8005f7c: 6e7b ldr r3, [r7, #100] @ 0x64 + 8005f7e: 2b00 cmp r3, #0 + 8005f80: d1e3 bne.n 8005f4a /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 800604a: 687b ldr r3, [r7, #4] - 800604c: 2220 movs r2, #32 - 800604e: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8005f82: 687b ldr r3, [r7, #4] + 8005f84: 2220 movs r2, #32 + 8005f86: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006052: 687b ldr r3, [r7, #4] - 8006054: 2200 movs r2, #0 - 8006056: 631a str r2, [r3, #48] @ 0x30 + 8005f8a: 687b ldr r3, [r7, #4] + 8005f8c: 2200 movs r2, #0 + 8005f8e: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006058: 687b ldr r3, [r7, #4] - 800605a: 681b ldr r3, [r3, #0] - 800605c: 330c adds r3, #12 - 800605e: 64fb str r3, [r7, #76] @ 0x4c + 8005f90: 687b ldr r3, [r7, #4] + 8005f92: 681b ldr r3, [r3, #0] + 8005f94: 330c adds r3, #12 + 8005f96: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006060: 6cfb ldr r3, [r7, #76] @ 0x4c - 8006062: e853 3f00 ldrex r3, [r3] - 8006066: 64bb str r3, [r7, #72] @ 0x48 + 8005f98: 6cfb ldr r3, [r7, #76] @ 0x4c + 8005f9a: e853 3f00 ldrex r3, [r3] + 8005f9e: 64bb str r3, [r7, #72] @ 0x48 return(result); - 8006068: 6cbb ldr r3, [r7, #72] @ 0x48 - 800606a: f023 0310 bic.w r3, r3, #16 - 800606e: f8c7 30ac str.w r3, [r7, #172] @ 0xac - 8006072: 687b ldr r3, [r7, #4] - 8006074: 681b ldr r3, [r3, #0] - 8006076: 330c adds r3, #12 - 8006078: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac - 800607c: 65ba str r2, [r7, #88] @ 0x58 - 800607e: 657b str r3, [r7, #84] @ 0x54 + 8005fa0: 6cbb ldr r3, [r7, #72] @ 0x48 + 8005fa2: f023 0310 bic.w r3, r3, #16 + 8005fa6: f8c7 30ac str.w r3, [r7, #172] @ 0xac + 8005faa: 687b ldr r3, [r7, #4] + 8005fac: 681b ldr r3, [r3, #0] + 8005fae: 330c adds r3, #12 + 8005fb0: f8d7 20ac ldr.w r2, [r7, #172] @ 0xac + 8005fb4: 65ba str r2, [r7, #88] @ 0x58 + 8005fb6: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006080: 6d79 ldr r1, [r7, #84] @ 0x54 - 8006082: 6dba ldr r2, [r7, #88] @ 0x58 - 8006084: e841 2300 strex r3, r2, [r1] - 8006088: 653b str r3, [r7, #80] @ 0x50 + 8005fb8: 6d79 ldr r1, [r7, #84] @ 0x54 + 8005fba: 6dba ldr r2, [r7, #88] @ 0x58 + 8005fbc: e841 2300 strex r3, r2, [r1] + 8005fc0: 653b str r3, [r7, #80] @ 0x50 return(result); - 800608a: 6d3b ldr r3, [r7, #80] @ 0x50 - 800608c: 2b00 cmp r3, #0 - 800608e: d1e3 bne.n 8006058 + 8005fc2: 6d3b ldr r3, [r7, #80] @ 0x50 + 8005fc4: 2b00 cmp r3, #0 + 8005fc6: d1e3 bne.n 8005f90 /* Last bytes received, so no need as the abort is immediate */ (void)HAL_DMA_Abort(huart->hdmarx); - 8006090: 687b ldr r3, [r7, #4] - 8006092: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006094: 4618 mov r0, r3 - 8006096: f7fb fedf bl 8001e58 + 8005fc8: 687b ldr r3, [r7, #4] + 8005fca: 6bdb ldr r3, [r3, #60] @ 0x3c + 8005fcc: 4618 mov r0, r3 + 8005fce: f7fb ff6b bl 8001ea8 } /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 800609a: 687b ldr r3, [r7, #4] - 800609c: 2202 movs r2, #2 - 800609e: 635a str r2, [r3, #52] @ 0x34 + 8005fd2: 687b ldr r3, [r7, #4] + 8005fd4: 2202 movs r2, #2 + 8005fd6: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, (huart->RxXferSize - huart->RxXferCount)); - 80060a0: 687b ldr r3, [r7, #4] - 80060a2: 8d9a ldrh r2, [r3, #44] @ 0x2c - 80060a4: 687b ldr r3, [r7, #4] - 80060a6: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80060a8: b29b uxth r3, r3 - 80060aa: 1ad3 subs r3, r2, r3 - 80060ac: b29b uxth r3, r3 - 80060ae: 4619 mov r1, r3 - 80060b0: 6878 ldr r0, [r7, #4] - 80060b2: f000 f8e3 bl 800627c + 8005fd8: 687b ldr r3, [r7, #4] + 8005fda: 8d9a ldrh r2, [r3, #44] @ 0x2c + 8005fdc: 687b ldr r3, [r7, #4] + 8005fde: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8005fe0: b29b uxth r3, r3 + 8005fe2: 1ad3 subs r3, r2, r3 + 8005fe4: b29b uxth r3, r3 + 8005fe6: 4619 mov r1, r3 + 8005fe8: 6878 ldr r0, [r7, #4] + 8005fea: f000 f8e3 bl 80061b4 HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } } } return; - 80060b6: e0b3 b.n 8006220 + 8005fee: e0b3 b.n 8006158 if (nb_remaining_rx_data == huart->RxXferSize) - 80060b8: 687b ldr r3, [r7, #4] - 80060ba: 8d9b ldrh r3, [r3, #44] @ 0x2c - 80060bc: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe - 80060c0: 429a cmp r2, r3 - 80060c2: f040 80ad bne.w 8006220 + 8005ff0: 687b ldr r3, [r7, #4] + 8005ff2: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8005ff4: f8b7 20be ldrh.w r2, [r7, #190] @ 0xbe + 8005ff8: 429a cmp r2, r3 + 8005ffa: f040 80ad bne.w 8006158 if (huart->hdmarx->Init.Mode == DMA_CIRCULAR) - 80060c6: 687b ldr r3, [r7, #4] - 80060c8: 6bdb ldr r3, [r3, #60] @ 0x3c - 80060ca: 69db ldr r3, [r3, #28] - 80060cc: f5b3 7f80 cmp.w r3, #256 @ 0x100 - 80060d0: f040 80a6 bne.w 8006220 + 8005ffe: 687b ldr r3, [r7, #4] + 8006000: 6bdb ldr r3, [r3, #60] @ 0x3c + 8006002: 69db ldr r3, [r3, #28] + 8006004: f5b3 7f80 cmp.w r3, #256 @ 0x100 + 8006008: f040 80a6 bne.w 8006158 huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 80060d4: 687b ldr r3, [r7, #4] - 80060d6: 2202 movs r2, #2 - 80060d8: 635a str r2, [r3, #52] @ 0x34 + 800600c: 687b ldr r3, [r7, #4] + 800600e: 2202 movs r2, #2 + 8006010: 635a str r2, [r3, #52] @ 0x34 HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 80060da: 687b ldr r3, [r7, #4] - 80060dc: 8d9b ldrh r3, [r3, #44] @ 0x2c - 80060de: 4619 mov r1, r3 - 80060e0: 6878 ldr r0, [r7, #4] - 80060e2: f000 f8cb bl 800627c + 8006012: 687b ldr r3, [r7, #4] + 8006014: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8006016: 4619 mov r1, r3 + 8006018: 6878 ldr r0, [r7, #4] + 800601a: f000 f8cb bl 80061b4 return; - 80060e6: e09b b.n 8006220 - 80060e8: 0800685b .word 0x0800685b + 800601e: e09b b.n 8006158 + 8006020: 080066e3 .word 0x080066e3 else { /* DMA mode not enabled */ /* Check received length : If all expected data are received, do nothing. Otherwise, if at least one data has already been received, IDLE event is to be notified to user */ uint16_t nb_rx_data = huart->RxXferSize - huart->RxXferCount; - 80060ec: 687b ldr r3, [r7, #4] - 80060ee: 8d9a ldrh r2, [r3, #44] @ 0x2c - 80060f0: 687b ldr r3, [r7, #4] - 80060f2: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80060f4: b29b uxth r3, r3 - 80060f6: 1ad3 subs r3, r2, r3 - 80060f8: f8a7 30ce strh.w r3, [r7, #206] @ 0xce + 8006024: 687b ldr r3, [r7, #4] + 8006026: 8d9a ldrh r2, [r3, #44] @ 0x2c + 8006028: 687b ldr r3, [r7, #4] + 800602a: 8ddb ldrh r3, [r3, #46] @ 0x2e + 800602c: b29b uxth r3, r3 + 800602e: 1ad3 subs r3, r2, r3 + 8006030: f8a7 30ce strh.w r3, [r7, #206] @ 0xce if ((huart->RxXferCount > 0U) - 80060fc: 687b ldr r3, [r7, #4] - 80060fe: 8ddb ldrh r3, [r3, #46] @ 0x2e - 8006100: b29b uxth r3, r3 - 8006102: 2b00 cmp r3, #0 - 8006104: f000 808e beq.w 8006224 + 8006034: 687b ldr r3, [r7, #4] + 8006036: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8006038: b29b uxth r3, r3 + 800603a: 2b00 cmp r3, #0 + 800603c: f000 808e beq.w 800615c && (nb_rx_data > 0U)) - 8006108: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 800610c: 2b00 cmp r3, #0 - 800610e: f000 8089 beq.w 8006224 + 8006040: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 8006044: 2b00 cmp r3, #0 + 8006046: f000 8089 beq.w 800615c { /* Disable the UART Parity Error Interrupt and RXNE interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 8006112: 687b ldr r3, [r7, #4] - 8006114: 681b ldr r3, [r3, #0] - 8006116: 330c adds r3, #12 - 8006118: 63bb str r3, [r7, #56] @ 0x38 + 800604a: 687b ldr r3, [r7, #4] + 800604c: 681b ldr r3, [r3, #0] + 800604e: 330c adds r3, #12 + 8006050: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800611a: 6bbb ldr r3, [r7, #56] @ 0x38 - 800611c: e853 3f00 ldrex r3, [r3] - 8006120: 637b str r3, [r7, #52] @ 0x34 + 8006052: 6bbb ldr r3, [r7, #56] @ 0x38 + 8006054: e853 3f00 ldrex r3, [r3] + 8006058: 637b str r3, [r7, #52] @ 0x34 return(result); - 8006122: 6b7b ldr r3, [r7, #52] @ 0x34 - 8006124: f423 7390 bic.w r3, r3, #288 @ 0x120 - 8006128: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 - 800612c: 687b ldr r3, [r7, #4] - 800612e: 681b ldr r3, [r3, #0] - 8006130: 330c adds r3, #12 - 8006132: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 - 8006136: 647a str r2, [r7, #68] @ 0x44 - 8006138: 643b str r3, [r7, #64] @ 0x40 + 800605a: 6b7b ldr r3, [r7, #52] @ 0x34 + 800605c: f423 7390 bic.w r3, r3, #288 @ 0x120 + 8006060: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 + 8006064: 687b ldr r3, [r7, #4] + 8006066: 681b ldr r3, [r3, #0] + 8006068: 330c adds r3, #12 + 800606a: f8d7 20c8 ldr.w r2, [r7, #200] @ 0xc8 + 800606e: 647a str r2, [r7, #68] @ 0x44 + 8006070: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800613a: 6c39 ldr r1, [r7, #64] @ 0x40 - 800613c: 6c7a ldr r2, [r7, #68] @ 0x44 - 800613e: e841 2300 strex r3, r2, [r1] - 8006142: 63fb str r3, [r7, #60] @ 0x3c + 8006072: 6c39 ldr r1, [r7, #64] @ 0x40 + 8006074: 6c7a ldr r2, [r7, #68] @ 0x44 + 8006076: e841 2300 strex r3, r2, [r1] + 800607a: 63fb str r3, [r7, #60] @ 0x3c return(result); - 8006144: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006146: 2b00 cmp r3, #0 - 8006148: d1e3 bne.n 8006112 + 800607c: 6bfb ldr r3, [r7, #60] @ 0x3c + 800607e: 2b00 cmp r3, #0 + 8006080: d1e3 bne.n 800604a /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 800614a: 687b ldr r3, [r7, #4] - 800614c: 681b ldr r3, [r3, #0] - 800614e: 3314 adds r3, #20 - 8006150: 627b str r3, [r7, #36] @ 0x24 + 8006082: 687b ldr r3, [r7, #4] + 8006084: 681b ldr r3, [r3, #0] + 8006086: 3314 adds r3, #20 + 8006088: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006152: 6a7b ldr r3, [r7, #36] @ 0x24 - 8006154: e853 3f00 ldrex r3, [r3] - 8006158: 623b str r3, [r7, #32] + 800608a: 6a7b ldr r3, [r7, #36] @ 0x24 + 800608c: e853 3f00 ldrex r3, [r3] + 8006090: 623b str r3, [r7, #32] return(result); - 800615a: 6a3b ldr r3, [r7, #32] - 800615c: f023 0301 bic.w r3, r3, #1 - 8006160: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 - 8006164: 687b ldr r3, [r7, #4] - 8006166: 681b ldr r3, [r3, #0] - 8006168: 3314 adds r3, #20 - 800616a: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 - 800616e: 633a str r2, [r7, #48] @ 0x30 - 8006170: 62fb str r3, [r7, #44] @ 0x2c + 8006092: 6a3b ldr r3, [r7, #32] + 8006094: f023 0301 bic.w r3, r3, #1 + 8006098: f8c7 30c4 str.w r3, [r7, #196] @ 0xc4 + 800609c: 687b ldr r3, [r7, #4] + 800609e: 681b ldr r3, [r3, #0] + 80060a0: 3314 adds r3, #20 + 80060a2: f8d7 20c4 ldr.w r2, [r7, #196] @ 0xc4 + 80060a6: 633a str r2, [r7, #48] @ 0x30 + 80060a8: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006172: 6af9 ldr r1, [r7, #44] @ 0x2c - 8006174: 6b3a ldr r2, [r7, #48] @ 0x30 - 8006176: e841 2300 strex r3, r2, [r1] - 800617a: 62bb str r3, [r7, #40] @ 0x28 + 80060aa: 6af9 ldr r1, [r7, #44] @ 0x2c + 80060ac: 6b3a ldr r2, [r7, #48] @ 0x30 + 80060ae: e841 2300 strex r3, r2, [r1] + 80060b2: 62bb str r3, [r7, #40] @ 0x28 return(result); - 800617c: 6abb ldr r3, [r7, #40] @ 0x28 - 800617e: 2b00 cmp r3, #0 - 8006180: d1e3 bne.n 800614a + 80060b4: 6abb ldr r3, [r7, #40] @ 0x28 + 80060b6: 2b00 cmp r3, #0 + 80060b8: d1e3 bne.n 8006082 /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006182: 687b ldr r3, [r7, #4] - 8006184: 2220 movs r2, #32 - 8006186: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80060ba: 687b ldr r3, [r7, #4] + 80060bc: 2220 movs r2, #32 + 80060be: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 800618a: 687b ldr r3, [r7, #4] - 800618c: 2200 movs r2, #0 - 800618e: 631a str r2, [r3, #48] @ 0x30 + 80060c2: 687b ldr r3, [r7, #4] + 80060c4: 2200 movs r2, #0 + 80060c6: 631a str r2, [r3, #48] @ 0x30 ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006190: 687b ldr r3, [r7, #4] - 8006192: 681b ldr r3, [r3, #0] - 8006194: 330c adds r3, #12 - 8006196: 613b str r3, [r7, #16] + 80060c8: 687b ldr r3, [r7, #4] + 80060ca: 681b ldr r3, [r3, #0] + 80060cc: 330c adds r3, #12 + 80060ce: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006198: 693b ldr r3, [r7, #16] - 800619a: e853 3f00 ldrex r3, [r3] - 800619e: 60fb str r3, [r7, #12] + 80060d0: 693b ldr r3, [r7, #16] + 80060d2: e853 3f00 ldrex r3, [r3] + 80060d6: 60fb str r3, [r7, #12] return(result); - 80061a0: 68fb ldr r3, [r7, #12] - 80061a2: f023 0310 bic.w r3, r3, #16 - 80061a6: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 - 80061aa: 687b ldr r3, [r7, #4] - 80061ac: 681b ldr r3, [r3, #0] - 80061ae: 330c adds r3, #12 - 80061b0: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 - 80061b4: 61fa str r2, [r7, #28] - 80061b6: 61bb str r3, [r7, #24] + 80060d8: 68fb ldr r3, [r7, #12] + 80060da: f023 0310 bic.w r3, r3, #16 + 80060de: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 + 80060e2: 687b ldr r3, [r7, #4] + 80060e4: 681b ldr r3, [r3, #0] + 80060e6: 330c adds r3, #12 + 80060e8: f8d7 20c0 ldr.w r2, [r7, #192] @ 0xc0 + 80060ec: 61fa str r2, [r7, #28] + 80060ee: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80061b8: 69b9 ldr r1, [r7, #24] - 80061ba: 69fa ldr r2, [r7, #28] - 80061bc: e841 2300 strex r3, r2, [r1] - 80061c0: 617b str r3, [r7, #20] + 80060f0: 69b9 ldr r1, [r7, #24] + 80060f2: 69fa ldr r2, [r7, #28] + 80060f4: e841 2300 strex r3, r2, [r1] + 80060f8: 617b str r3, [r7, #20] return(result); - 80061c2: 697b ldr r3, [r7, #20] - 80061c4: 2b00 cmp r3, #0 - 80061c6: d1e3 bne.n 8006190 + 80060fa: 697b ldr r3, [r7, #20] + 80060fc: 2b00 cmp r3, #0 + 80060fe: d1e3 bne.n 80060c8 /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Idle Event */ huart->RxEventType = HAL_UART_RXEVENT_IDLE; - 80061c8: 687b ldr r3, [r7, #4] - 80061ca: 2202 movs r2, #2 - 80061cc: 635a str r2, [r3, #52] @ 0x34 + 8006100: 687b ldr r3, [r7, #4] + 8006102: 2202 movs r2, #2 + 8006104: 635a str r2, [r3, #52] @ 0x34 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxEventCallback(huart, nb_rx_data); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, nb_rx_data); - 80061ce: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce - 80061d2: 4619 mov r1, r3 - 80061d4: 6878 ldr r0, [r7, #4] - 80061d6: f000 f851 bl 800627c + 8006106: f8b7 30ce ldrh.w r3, [r7, #206] @ 0xce + 800610a: 4619 mov r1, r3 + 800610c: 6878 ldr r0, [r7, #4] + 800610e: f000 f851 bl 80061b4 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return; - 80061da: e023 b.n 8006224 + 8006112: e023 b.n 800615c } } /* UART in mode Transmitter ------------------------------------------------*/ if (((isrflags & USART_SR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) - 80061dc: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 80061e0: f003 0380 and.w r3, r3, #128 @ 0x80 - 80061e4: 2b00 cmp r3, #0 - 80061e6: d009 beq.n 80061fc - 80061e8: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 80061ec: f003 0380 and.w r3, r3, #128 @ 0x80 - 80061f0: 2b00 cmp r3, #0 - 80061f2: d003 beq.n 80061fc + 8006114: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006118: f003 0380 and.w r3, r3, #128 @ 0x80 + 800611c: 2b00 cmp r3, #0 + 800611e: d009 beq.n 8006134 + 8006120: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006124: f003 0380 and.w r3, r3, #128 @ 0x80 + 8006128: 2b00 cmp r3, #0 + 800612a: d003 beq.n 8006134 { UART_Transmit_IT(huart); - 80061f4: 6878 ldr r0, [r7, #4] - 80061f6: f000 fb41 bl 800687c + 800612c: 6878 ldr r0, [r7, #4] + 800612e: f000 fae9 bl 8006704 return; - 80061fa: e014 b.n 8006226 + 8006132: e014 b.n 800615e } /* UART in mode Transmitter end --------------------------------------------*/ if (((isrflags & USART_SR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) - 80061fc: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 - 8006200: f003 0340 and.w r3, r3, #64 @ 0x40 - 8006204: 2b00 cmp r3, #0 - 8006206: d00e beq.n 8006226 - 8006208: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 - 800620c: f003 0340 and.w r3, r3, #64 @ 0x40 - 8006210: 2b00 cmp r3, #0 - 8006212: d008 beq.n 8006226 + 8006134: f8d7 30e4 ldr.w r3, [r7, #228] @ 0xe4 + 8006138: f003 0340 and.w r3, r3, #64 @ 0x40 + 800613c: 2b00 cmp r3, #0 + 800613e: d00e beq.n 800615e + 8006140: f8d7 30e0 ldr.w r3, [r7, #224] @ 0xe0 + 8006144: f003 0340 and.w r3, r3, #64 @ 0x40 + 8006148: 2b00 cmp r3, #0 + 800614a: d008 beq.n 800615e { UART_EndTransmit_IT(huart); - 8006214: 6878 ldr r0, [r7, #4] - 8006216: f000 fb81 bl 800691c + 800614c: 6878 ldr r0, [r7, #4] + 800614e: f000 fb29 bl 80067a4 return; - 800621a: e004 b.n 8006226 + 8006152: e004 b.n 800615e return; - 800621c: bf00 nop - 800621e: e002 b.n 8006226 + 8006154: bf00 nop + 8006156: e002 b.n 800615e return; - 8006220: bf00 nop - 8006222: e000 b.n 8006226 + 8006158: bf00 nop + 800615a: e000 b.n 800615e return; - 8006224: bf00 nop + 800615c: bf00 nop } } - 8006226: 37e8 adds r7, #232 @ 0xe8 - 8006228: 46bd mov sp, r7 - 800622a: bd80 pop {r7, pc} + 800615e: 37e8 adds r7, #232 @ 0xe8 + 8006160: 46bd mov sp, r7 + 8006162: bd80 pop {r7, pc} -0800622c : +08006164 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) { - 800622c: b480 push {r7} - 800622e: b083 sub sp, #12 - 8006230: af00 add r7, sp, #0 - 8006232: 6078 str r0, [r7, #4] + 8006164: b480 push {r7} + 8006166: b083 sub sp, #12 + 8006168: af00 add r7, sp, #0 + 800616a: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_TxCpltCallback could be implemented in the user file */ } - 8006234: bf00 nop - 8006236: 370c adds r7, #12 - 8006238: 46bd mov sp, r7 - 800623a: f85d 7b04 ldr.w r7, [sp], #4 - 800623e: 4770 bx lr + 800616c: bf00 nop + 800616e: 370c adds r7, #12 + 8006170: 46bd mov sp, r7 + 8006172: f85d 7b04 ldr.w r7, [sp], #4 + 8006176: 4770 bx lr -08006240 : +08006178 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_TxHalfCpltCallback(UART_HandleTypeDef *huart) { - 8006240: b480 push {r7} - 8006242: b083 sub sp, #12 - 8006244: af00 add r7, sp, #0 - 8006246: 6078 str r0, [r7, #4] + 8006178: b480 push {r7} + 800617a: b083 sub sp, #12 + 800617c: af00 add r7, sp, #0 + 800617e: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_TxHalfCpltCallback could be implemented in the user file */ } - 8006248: bf00 nop - 800624a: 370c adds r7, #12 - 800624c: 46bd mov sp, r7 - 800624e: f85d 7b04 ldr.w r7, [sp], #4 - 8006252: 4770 bx lr + 8006180: bf00 nop + 8006182: 370c adds r7, #12 + 8006184: 46bd mov sp, r7 + 8006186: f85d 7b04 ldr.w r7, [sp], #4 + 800618a: 4770 bx lr -08006254 : +0800618c : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_RxHalfCpltCallback(UART_HandleTypeDef *huart) { - 8006254: b480 push {r7} - 8006256: b083 sub sp, #12 - 8006258: af00 add r7, sp, #0 - 800625a: 6078 str r0, [r7, #4] + 800618c: b480 push {r7} + 800618e: b083 sub sp, #12 + 8006190: af00 add r7, sp, #0 + 8006192: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_RxHalfCpltCallback could be implemented in the user file */ } - 800625c: bf00 nop - 800625e: 370c adds r7, #12 - 8006260: 46bd mov sp, r7 - 8006262: f85d 7b04 ldr.w r7, [sp], #4 - 8006266: 4770 bx lr + 8006194: bf00 nop + 8006196: 370c adds r7, #12 + 8006198: 46bd mov sp, r7 + 800619a: f85d 7b04 ldr.w r7, [sp], #4 + 800619e: 4770 bx lr -08006268 : +080061a0 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ __weak void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) { - 8006268: b480 push {r7} - 800626a: b083 sub sp, #12 - 800626c: af00 add r7, sp, #0 - 800626e: 6078 str r0, [r7, #4] + 80061a0: b480 push {r7} + 80061a2: b083 sub sp, #12 + 80061a4: af00 add r7, sp, #0 + 80061a6: 6078 str r0, [r7, #4] /* Prevent unused argument(s) compilation warning */ UNUSED(huart); /* NOTE: This function should not be modified, when the callback is needed, the HAL_UART_ErrorCallback could be implemented in the user file */ } - 8006270: bf00 nop - 8006272: 370c adds r7, #12 - 8006274: 46bd mov sp, r7 - 8006276: f85d 7b04 ldr.w r7, [sp], #4 - 800627a: 4770 bx lr + 80061a8: bf00 nop + 80061aa: 370c adds r7, #12 + 80061ac: 46bd mov sp, r7 + 80061ae: f85d 7b04 ldr.w r7, [sp], #4 + 80061b2: 4770 bx lr -0800627c : +080061b4 : * @param Size Number of data available in application reception buffer (indicates a position in * reception buffer until which, data are available) * @retval None */ __weak void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) { - 800627c: b480 push {r7} - 800627e: b083 sub sp, #12 - 8006280: af00 add r7, sp, #0 - 8006282: 6078 str r0, [r7, #4] - 8006284: 460b mov r3, r1 - 8006286: 807b strh r3, [r7, #2] + 80061b4: b480 push {r7} + 80061b6: b083 sub sp, #12 + 80061b8: af00 add r7, sp, #0 + 80061ba: 6078 str r0, [r7, #4] + 80061bc: 460b mov r3, r1 + 80061be: 807b strh r3, [r7, #2] UNUSED(Size); /* NOTE : This function should not be modified, when the callback is needed, the HAL_UARTEx_RxEventCallback can be implemented in the user file. */ } - 8006288: bf00 nop - 800628a: 370c adds r7, #12 - 800628c: 46bd mov sp, r7 - 800628e: f85d 7b04 ldr.w r7, [sp], #4 - 8006292: 4770 bx lr + 80061c0: bf00 nop + 80061c2: 370c adds r7, #12 + 80061c4: 46bd mov sp, r7 + 80061c6: f85d 7b04 ldr.w r7, [sp], #4 + 80061ca: 4770 bx lr -08006294 : +080061cc : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMATransmitCplt(DMA_HandleTypeDef *hdma) { - 8006294: b580 push {r7, lr} - 8006296: b090 sub sp, #64 @ 0x40 - 8006298: af00 add r7, sp, #0 - 800629a: 6078 str r0, [r7, #4] + 80061cc: b580 push {r7, lr} + 80061ce: b090 sub sp, #64 @ 0x40 + 80061d0: af00 add r7, sp, #0 + 80061d2: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 800629c: 687b ldr r3, [r7, #4] - 800629e: 6b9b ldr r3, [r3, #56] @ 0x38 - 80062a0: 63fb str r3, [r7, #60] @ 0x3c + 80061d4: 687b ldr r3, [r7, #4] + 80061d6: 6b9b ldr r3, [r3, #56] @ 0x38 + 80061d8: 63fb str r3, [r7, #60] @ 0x3c /* DMA Normal mode*/ if ((hdma->Instance->CR & DMA_SxCR_CIRC) == 0U) - 80062a2: 687b ldr r3, [r7, #4] - 80062a4: 681b ldr r3, [r3, #0] - 80062a6: 681b ldr r3, [r3, #0] - 80062a8: f403 7380 and.w r3, r3, #256 @ 0x100 - 80062ac: 2b00 cmp r3, #0 - 80062ae: d137 bne.n 8006320 + 80061da: 687b ldr r3, [r7, #4] + 80061dc: 681b ldr r3, [r3, #0] + 80061de: 681b ldr r3, [r3, #0] + 80061e0: f403 7380 and.w r3, r3, #256 @ 0x100 + 80061e4: 2b00 cmp r3, #0 + 80061e6: d137 bne.n 8006258 { huart->TxXferCount = 0x00U; - 80062b0: 6bfb ldr r3, [r7, #60] @ 0x3c - 80062b2: 2200 movs r2, #0 - 80062b4: 84da strh r2, [r3, #38] @ 0x26 + 80061e8: 6bfb ldr r3, [r7, #60] @ 0x3c + 80061ea: 2200 movs r2, #0 + 80061ec: 84da strh r2, [r3, #38] @ 0x26 /* Disable the DMA transfer for transmit request by setting the DMAT bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAT); - 80062b6: 6bfb ldr r3, [r7, #60] @ 0x3c - 80062b8: 681b ldr r3, [r3, #0] - 80062ba: 3314 adds r3, #20 - 80062bc: 627b str r3, [r7, #36] @ 0x24 + 80061ee: 6bfb ldr r3, [r7, #60] @ 0x3c + 80061f0: 681b ldr r3, [r3, #0] + 80061f2: 3314 adds r3, #20 + 80061f4: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80062be: 6a7b ldr r3, [r7, #36] @ 0x24 - 80062c0: e853 3f00 ldrex r3, [r3] - 80062c4: 623b str r3, [r7, #32] + 80061f6: 6a7b ldr r3, [r7, #36] @ 0x24 + 80061f8: e853 3f00 ldrex r3, [r3] + 80061fc: 623b str r3, [r7, #32] return(result); - 80062c6: 6a3b ldr r3, [r7, #32] - 80062c8: f023 0380 bic.w r3, r3, #128 @ 0x80 - 80062cc: 63bb str r3, [r7, #56] @ 0x38 - 80062ce: 6bfb ldr r3, [r7, #60] @ 0x3c - 80062d0: 681b ldr r3, [r3, #0] - 80062d2: 3314 adds r3, #20 - 80062d4: 6bba ldr r2, [r7, #56] @ 0x38 - 80062d6: 633a str r2, [r7, #48] @ 0x30 - 80062d8: 62fb str r3, [r7, #44] @ 0x2c + 80061fe: 6a3b ldr r3, [r7, #32] + 8006200: f023 0380 bic.w r3, r3, #128 @ 0x80 + 8006204: 63bb str r3, [r7, #56] @ 0x38 + 8006206: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006208: 681b ldr r3, [r3, #0] + 800620a: 3314 adds r3, #20 + 800620c: 6bba ldr r2, [r7, #56] @ 0x38 + 800620e: 633a str r2, [r7, #48] @ 0x30 + 8006210: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80062da: 6af9 ldr r1, [r7, #44] @ 0x2c - 80062dc: 6b3a ldr r2, [r7, #48] @ 0x30 - 80062de: e841 2300 strex r3, r2, [r1] - 80062e2: 62bb str r3, [r7, #40] @ 0x28 + 8006212: 6af9 ldr r1, [r7, #44] @ 0x2c + 8006214: 6b3a ldr r2, [r7, #48] @ 0x30 + 8006216: e841 2300 strex r3, r2, [r1] + 800621a: 62bb str r3, [r7, #40] @ 0x28 return(result); - 80062e4: 6abb ldr r3, [r7, #40] @ 0x28 - 80062e6: 2b00 cmp r3, #0 - 80062e8: d1e5 bne.n 80062b6 + 800621c: 6abb ldr r3, [r7, #40] @ 0x28 + 800621e: 2b00 cmp r3, #0 + 8006220: d1e5 bne.n 80061ee /* Enable the UART Transmit Complete Interrupt */ ATOMIC_SET_BIT(huart->Instance->CR1, USART_CR1_TCIE); - 80062ea: 6bfb ldr r3, [r7, #60] @ 0x3c - 80062ec: 681b ldr r3, [r3, #0] - 80062ee: 330c adds r3, #12 - 80062f0: 613b str r3, [r7, #16] + 8006222: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006224: 681b ldr r3, [r3, #0] + 8006226: 330c adds r3, #12 + 8006228: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80062f2: 693b ldr r3, [r7, #16] - 80062f4: e853 3f00 ldrex r3, [r3] - 80062f8: 60fb str r3, [r7, #12] + 800622a: 693b ldr r3, [r7, #16] + 800622c: e853 3f00 ldrex r3, [r3] + 8006230: 60fb str r3, [r7, #12] return(result); - 80062fa: 68fb ldr r3, [r7, #12] - 80062fc: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8006300: 637b str r3, [r7, #52] @ 0x34 - 8006302: 6bfb ldr r3, [r7, #60] @ 0x3c - 8006304: 681b ldr r3, [r3, #0] - 8006306: 330c adds r3, #12 - 8006308: 6b7a ldr r2, [r7, #52] @ 0x34 - 800630a: 61fa str r2, [r7, #28] - 800630c: 61bb str r3, [r7, #24] + 8006232: 68fb ldr r3, [r7, #12] + 8006234: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8006238: 637b str r3, [r7, #52] @ 0x34 + 800623a: 6bfb ldr r3, [r7, #60] @ 0x3c + 800623c: 681b ldr r3, [r3, #0] + 800623e: 330c adds r3, #12 + 8006240: 6b7a ldr r2, [r7, #52] @ 0x34 + 8006242: 61fa str r2, [r7, #28] + 8006244: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800630e: 69b9 ldr r1, [r7, #24] - 8006310: 69fa ldr r2, [r7, #28] - 8006312: e841 2300 strex r3, r2, [r1] - 8006316: 617b str r3, [r7, #20] + 8006246: 69b9 ldr r1, [r7, #24] + 8006248: 69fa ldr r2, [r7, #28] + 800624a: e841 2300 strex r3, r2, [r1] + 800624e: 617b str r3, [r7, #20] return(result); - 8006318: 697b ldr r3, [r7, #20] - 800631a: 2b00 cmp r3, #0 - 800631c: d1e5 bne.n 80062ea + 8006250: 697b ldr r3, [r7, #20] + 8006252: 2b00 cmp r3, #0 + 8006254: d1e5 bne.n 8006222 #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 800631e: e002 b.n 8006326 + 8006256: e002 b.n 800625e HAL_UART_TxCpltCallback(huart); - 8006320: 6bf8 ldr r0, [r7, #60] @ 0x3c - 8006322: f7ff ff83 bl 800622c + 8006258: 6bf8 ldr r0, [r7, #60] @ 0x3c + 800625a: f7ff ff83 bl 8006164 } - 8006326: bf00 nop - 8006328: 3740 adds r7, #64 @ 0x40 - 800632a: 46bd mov sp, r7 - 800632c: bd80 pop {r7, pc} + 800625e: bf00 nop + 8006260: 3740 adds r7, #64 @ 0x40 + 8006262: 46bd mov sp, r7 + 8006264: bd80 pop {r7, pc} -0800632e : +08006266 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMATxHalfCplt(DMA_HandleTypeDef *hdma) { - 800632e: b580 push {r7, lr} - 8006330: b084 sub sp, #16 - 8006332: af00 add r7, sp, #0 - 8006334: 6078 str r0, [r7, #4] + 8006266: b580 push {r7, lr} + 8006268: b084 sub sp, #16 + 800626a: af00 add r7, sp, #0 + 800626c: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8006336: 687b ldr r3, [r7, #4] - 8006338: 6b9b ldr r3, [r3, #56] @ 0x38 - 800633a: 60fb str r3, [r7, #12] + 800626e: 687b ldr r3, [r7, #4] + 8006270: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006272: 60fb str r3, [r7, #12] #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Tx complete callback*/ huart->TxHalfCpltCallback(huart); #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxHalfCpltCallback(huart); - 800633c: 68f8 ldr r0, [r7, #12] - 800633e: f7ff ff7f bl 8006240 + 8006274: 68f8 ldr r0, [r7, #12] + 8006276: f7ff ff7f bl 8006178 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 8006342: bf00 nop - 8006344: 3710 adds r7, #16 - 8006346: 46bd mov sp, r7 - 8006348: bd80 pop {r7, pc} + 800627a: bf00 nop + 800627c: 3710 adds r7, #16 + 800627e: 46bd mov sp, r7 + 8006280: bd80 pop {r7, pc} -0800634a : +08006282 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAReceiveCplt(DMA_HandleTypeDef *hdma) { - 800634a: b580 push {r7, lr} - 800634c: b09c sub sp, #112 @ 0x70 - 800634e: af00 add r7, sp, #0 - 8006350: 6078 str r0, [r7, #4] + 8006282: b580 push {r7, lr} + 8006284: b09c sub sp, #112 @ 0x70 + 8006286: af00 add r7, sp, #0 + 8006288: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8006352: 687b ldr r3, [r7, #4] - 8006354: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006356: 66fb str r3, [r7, #108] @ 0x6c + 800628a: 687b ldr r3, [r7, #4] + 800628c: 6b9b ldr r3, [r3, #56] @ 0x38 + 800628e: 66fb str r3, [r7, #108] @ 0x6c /* DMA Normal mode*/ if ((hdma->Instance->CR & DMA_SxCR_CIRC) == 0U) - 8006358: 687b ldr r3, [r7, #4] - 800635a: 681b ldr r3, [r3, #0] - 800635c: 681b ldr r3, [r3, #0] - 800635e: f403 7380 and.w r3, r3, #256 @ 0x100 - 8006362: 2b00 cmp r3, #0 - 8006364: d172 bne.n 800644c + 8006290: 687b ldr r3, [r7, #4] + 8006292: 681b ldr r3, [r3, #0] + 8006294: 681b ldr r3, [r3, #0] + 8006296: f403 7380 and.w r3, r3, #256 @ 0x100 + 800629a: 2b00 cmp r3, #0 + 800629c: d172 bne.n 8006384 { huart->RxXferCount = 0U; - 8006366: 6efb ldr r3, [r7, #108] @ 0x6c - 8006368: 2200 movs r2, #0 - 800636a: 85da strh r2, [r3, #46] @ 0x2e + 800629e: 6efb ldr r3, [r7, #108] @ 0x6c + 80062a0: 2200 movs r2, #0 + 80062a2: 85da strh r2, [r3, #46] @ 0x2e /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 800636c: 6efb ldr r3, [r7, #108] @ 0x6c - 800636e: 681b ldr r3, [r3, #0] - 8006370: 330c adds r3, #12 - 8006372: 64fb str r3, [r7, #76] @ 0x4c + 80062a4: 6efb ldr r3, [r7, #108] @ 0x6c + 80062a6: 681b ldr r3, [r3, #0] + 80062a8: 330c adds r3, #12 + 80062aa: 64fb str r3, [r7, #76] @ 0x4c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006374: 6cfb ldr r3, [r7, #76] @ 0x4c - 8006376: e853 3f00 ldrex r3, [r3] - 800637a: 64bb str r3, [r7, #72] @ 0x48 + 80062ac: 6cfb ldr r3, [r7, #76] @ 0x4c + 80062ae: e853 3f00 ldrex r3, [r3] + 80062b2: 64bb str r3, [r7, #72] @ 0x48 return(result); - 800637c: 6cbb ldr r3, [r7, #72] @ 0x48 - 800637e: f423 7380 bic.w r3, r3, #256 @ 0x100 - 8006382: 66bb str r3, [r7, #104] @ 0x68 - 8006384: 6efb ldr r3, [r7, #108] @ 0x6c - 8006386: 681b ldr r3, [r3, #0] - 8006388: 330c adds r3, #12 - 800638a: 6eba ldr r2, [r7, #104] @ 0x68 - 800638c: 65ba str r2, [r7, #88] @ 0x58 - 800638e: 657b str r3, [r7, #84] @ 0x54 + 80062b4: 6cbb ldr r3, [r7, #72] @ 0x48 + 80062b6: f423 7380 bic.w r3, r3, #256 @ 0x100 + 80062ba: 66bb str r3, [r7, #104] @ 0x68 + 80062bc: 6efb ldr r3, [r7, #108] @ 0x6c + 80062be: 681b ldr r3, [r3, #0] + 80062c0: 330c adds r3, #12 + 80062c2: 6eba ldr r2, [r7, #104] @ 0x68 + 80062c4: 65ba str r2, [r7, #88] @ 0x58 + 80062c6: 657b str r3, [r7, #84] @ 0x54 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006390: 6d79 ldr r1, [r7, #84] @ 0x54 - 8006392: 6dba ldr r2, [r7, #88] @ 0x58 - 8006394: e841 2300 strex r3, r2, [r1] - 8006398: 653b str r3, [r7, #80] @ 0x50 + 80062c8: 6d79 ldr r1, [r7, #84] @ 0x54 + 80062ca: 6dba ldr r2, [r7, #88] @ 0x58 + 80062cc: e841 2300 strex r3, r2, [r1] + 80062d0: 653b str r3, [r7, #80] @ 0x50 return(result); - 800639a: 6d3b ldr r3, [r7, #80] @ 0x50 - 800639c: 2b00 cmp r3, #0 - 800639e: d1e5 bne.n 800636c + 80062d2: 6d3b ldr r3, [r7, #80] @ 0x50 + 80062d4: 2b00 cmp r3, #0 + 80062d6: d1e5 bne.n 80062a4 ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80063a0: 6efb ldr r3, [r7, #108] @ 0x6c - 80063a2: 681b ldr r3, [r3, #0] - 80063a4: 3314 adds r3, #20 - 80063a6: 63bb str r3, [r7, #56] @ 0x38 + 80062d8: 6efb ldr r3, [r7, #108] @ 0x6c + 80062da: 681b ldr r3, [r3, #0] + 80062dc: 3314 adds r3, #20 + 80062de: 63bb str r3, [r7, #56] @ 0x38 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80063a8: 6bbb ldr r3, [r7, #56] @ 0x38 - 80063aa: e853 3f00 ldrex r3, [r3] - 80063ae: 637b str r3, [r7, #52] @ 0x34 + 80062e0: 6bbb ldr r3, [r7, #56] @ 0x38 + 80062e2: e853 3f00 ldrex r3, [r3] + 80062e6: 637b str r3, [r7, #52] @ 0x34 return(result); - 80063b0: 6b7b ldr r3, [r7, #52] @ 0x34 - 80063b2: f023 0301 bic.w r3, r3, #1 - 80063b6: 667b str r3, [r7, #100] @ 0x64 - 80063b8: 6efb ldr r3, [r7, #108] @ 0x6c - 80063ba: 681b ldr r3, [r3, #0] - 80063bc: 3314 adds r3, #20 - 80063be: 6e7a ldr r2, [r7, #100] @ 0x64 - 80063c0: 647a str r2, [r7, #68] @ 0x44 - 80063c2: 643b str r3, [r7, #64] @ 0x40 + 80062e8: 6b7b ldr r3, [r7, #52] @ 0x34 + 80062ea: f023 0301 bic.w r3, r3, #1 + 80062ee: 667b str r3, [r7, #100] @ 0x64 + 80062f0: 6efb ldr r3, [r7, #108] @ 0x6c + 80062f2: 681b ldr r3, [r3, #0] + 80062f4: 3314 adds r3, #20 + 80062f6: 6e7a ldr r2, [r7, #100] @ 0x64 + 80062f8: 647a str r2, [r7, #68] @ 0x44 + 80062fa: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80063c4: 6c39 ldr r1, [r7, #64] @ 0x40 - 80063c6: 6c7a ldr r2, [r7, #68] @ 0x44 - 80063c8: e841 2300 strex r3, r2, [r1] - 80063cc: 63fb str r3, [r7, #60] @ 0x3c + 80062fc: 6c39 ldr r1, [r7, #64] @ 0x40 + 80062fe: 6c7a ldr r2, [r7, #68] @ 0x44 + 8006300: e841 2300 strex r3, r2, [r1] + 8006304: 63fb str r3, [r7, #60] @ 0x3c return(result); - 80063ce: 6bfb ldr r3, [r7, #60] @ 0x3c - 80063d0: 2b00 cmp r3, #0 - 80063d2: d1e5 bne.n 80063a0 + 8006306: 6bfb ldr r3, [r7, #60] @ 0x3c + 8006308: 2b00 cmp r3, #0 + 800630a: d1e5 bne.n 80062d8 /* Disable the DMA transfer for the receiver request by setting the DMAR bit in the UART CR3 register */ ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 80063d4: 6efb ldr r3, [r7, #108] @ 0x6c - 80063d6: 681b ldr r3, [r3, #0] - 80063d8: 3314 adds r3, #20 - 80063da: 627b str r3, [r7, #36] @ 0x24 + 800630c: 6efb ldr r3, [r7, #108] @ 0x6c + 800630e: 681b ldr r3, [r3, #0] + 8006310: 3314 adds r3, #20 + 8006312: 627b str r3, [r7, #36] @ 0x24 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80063dc: 6a7b ldr r3, [r7, #36] @ 0x24 - 80063de: e853 3f00 ldrex r3, [r3] - 80063e2: 623b str r3, [r7, #32] + 8006314: 6a7b ldr r3, [r7, #36] @ 0x24 + 8006316: e853 3f00 ldrex r3, [r3] + 800631a: 623b str r3, [r7, #32] return(result); - 80063e4: 6a3b ldr r3, [r7, #32] - 80063e6: f023 0340 bic.w r3, r3, #64 @ 0x40 - 80063ea: 663b str r3, [r7, #96] @ 0x60 - 80063ec: 6efb ldr r3, [r7, #108] @ 0x6c - 80063ee: 681b ldr r3, [r3, #0] - 80063f0: 3314 adds r3, #20 - 80063f2: 6e3a ldr r2, [r7, #96] @ 0x60 - 80063f4: 633a str r2, [r7, #48] @ 0x30 - 80063f6: 62fb str r3, [r7, #44] @ 0x2c + 800631c: 6a3b ldr r3, [r7, #32] + 800631e: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8006322: 663b str r3, [r7, #96] @ 0x60 + 8006324: 6efb ldr r3, [r7, #108] @ 0x6c + 8006326: 681b ldr r3, [r3, #0] + 8006328: 3314 adds r3, #20 + 800632a: 6e3a ldr r2, [r7, #96] @ 0x60 + 800632c: 633a str r2, [r7, #48] @ 0x30 + 800632e: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80063f8: 6af9 ldr r1, [r7, #44] @ 0x2c - 80063fa: 6b3a ldr r2, [r7, #48] @ 0x30 - 80063fc: e841 2300 strex r3, r2, [r1] - 8006400: 62bb str r3, [r7, #40] @ 0x28 + 8006330: 6af9 ldr r1, [r7, #44] @ 0x2c + 8006332: 6b3a ldr r2, [r7, #48] @ 0x30 + 8006334: e841 2300 strex r3, r2, [r1] + 8006338: 62bb str r3, [r7, #40] @ 0x28 return(result); - 8006402: 6abb ldr r3, [r7, #40] @ 0x28 - 8006404: 2b00 cmp r3, #0 - 8006406: d1e5 bne.n 80063d4 + 800633a: 6abb ldr r3, [r7, #40] @ 0x28 + 800633c: 2b00 cmp r3, #0 + 800633e: d1e5 bne.n 800630c /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006408: 6efb ldr r3, [r7, #108] @ 0x6c - 800640a: 2220 movs r2, #32 - 800640c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 8006340: 6efb ldr r3, [r7, #108] @ 0x6c + 8006342: 2220 movs r2, #32 + 8006344: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* If Reception till IDLE event has been selected, Disable IDLE Interrupt */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006410: 6efb ldr r3, [r7, #108] @ 0x6c - 8006412: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006414: 2b01 cmp r3, #1 - 8006416: d119 bne.n 800644c + 8006348: 6efb ldr r3, [r7, #108] @ 0x6c + 800634a: 6b1b ldr r3, [r3, #48] @ 0x30 + 800634c: 2b01 cmp r3, #1 + 800634e: d119 bne.n 8006384 { ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006418: 6efb ldr r3, [r7, #108] @ 0x6c - 800641a: 681b ldr r3, [r3, #0] - 800641c: 330c adds r3, #12 - 800641e: 613b str r3, [r7, #16] + 8006350: 6efb ldr r3, [r7, #108] @ 0x6c + 8006352: 681b ldr r3, [r3, #0] + 8006354: 330c adds r3, #12 + 8006356: 613b str r3, [r7, #16] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006420: 693b ldr r3, [r7, #16] - 8006422: e853 3f00 ldrex r3, [r3] - 8006426: 60fb str r3, [r7, #12] + 8006358: 693b ldr r3, [r7, #16] + 800635a: e853 3f00 ldrex r3, [r3] + 800635e: 60fb str r3, [r7, #12] return(result); - 8006428: 68fb ldr r3, [r7, #12] - 800642a: f023 0310 bic.w r3, r3, #16 - 800642e: 65fb str r3, [r7, #92] @ 0x5c - 8006430: 6efb ldr r3, [r7, #108] @ 0x6c - 8006432: 681b ldr r3, [r3, #0] - 8006434: 330c adds r3, #12 - 8006436: 6dfa ldr r2, [r7, #92] @ 0x5c - 8006438: 61fa str r2, [r7, #28] - 800643a: 61bb str r3, [r7, #24] + 8006360: 68fb ldr r3, [r7, #12] + 8006362: f023 0310 bic.w r3, r3, #16 + 8006366: 65fb str r3, [r7, #92] @ 0x5c + 8006368: 6efb ldr r3, [r7, #108] @ 0x6c + 800636a: 681b ldr r3, [r3, #0] + 800636c: 330c adds r3, #12 + 800636e: 6dfa ldr r2, [r7, #92] @ 0x5c + 8006370: 61fa str r2, [r7, #28] + 8006372: 61bb str r3, [r7, #24] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800643c: 69b9 ldr r1, [r7, #24] - 800643e: 69fa ldr r2, [r7, #28] - 8006440: e841 2300 strex r3, r2, [r1] - 8006444: 617b str r3, [r7, #20] + 8006374: 69b9 ldr r1, [r7, #24] + 8006376: 69fa ldr r2, [r7, #28] + 8006378: e841 2300 strex r3, r2, [r1] + 800637c: 617b str r3, [r7, #20] return(result); - 8006446: 697b ldr r3, [r7, #20] - 8006448: 2b00 cmp r3, #0 - 800644a: d1e5 bne.n 8006418 + 800637e: 697b ldr r3, [r7, #20] + 8006380: 2b00 cmp r3, #0 + 8006382: d1e5 bne.n 8006350 } } /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Transfer Complete */ huart->RxEventType = HAL_UART_RXEVENT_TC; - 800644c: 6efb ldr r3, [r7, #108] @ 0x6c - 800644e: 2200 movs r2, #0 - 8006450: 635a str r2, [r3, #52] @ 0x34 + 8006384: 6efb ldr r3, [r7, #108] @ 0x6c + 8006386: 2200 movs r2, #0 + 8006388: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : use Rx Event callback */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006452: 6efb ldr r3, [r7, #108] @ 0x6c - 8006454: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006456: 2b01 cmp r3, #1 - 8006458: d106 bne.n 8006468 + 800638a: 6efb ldr r3, [r7, #108] @ 0x6c + 800638c: 6b1b ldr r3, [r3, #48] @ 0x30 + 800638e: 2b01 cmp r3, #1 + 8006390: d106 bne.n 80063a0 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 800645a: 6efb ldr r3, [r7, #108] @ 0x6c - 800645c: 8d9b ldrh r3, [r3, #44] @ 0x2c - 800645e: 4619 mov r1, r3 - 8006460: 6ef8 ldr r0, [r7, #108] @ 0x6c - 8006462: f7ff ff0b bl 800627c + 8006392: 6efb ldr r3, [r7, #108] @ 0x6c + 8006394: 8d9b ldrh r3, [r3, #44] @ 0x2c + 8006396: 4619 mov r1, r3 + 8006398: 6ef8 ldr r0, [r7, #108] @ 0x6c + 800639a: f7ff ff0b bl 80061b4 #else /*Call legacy weak Rx complete callback*/ HAL_UART_RxCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 8006466: e002 b.n 800646e + 800639e: e002 b.n 80063a6 HAL_UART_RxCpltCallback(huart); - 8006468: 6ef8 ldr r0, [r7, #108] @ 0x6c - 800646a: f7fa fae7 bl 8000a3c + 80063a0: 6ef8 ldr r0, [r7, #108] @ 0x6c + 80063a2: f7fa fb63 bl 8000a6c } - 800646e: bf00 nop - 8006470: 3770 adds r7, #112 @ 0x70 - 8006472: 46bd mov sp, r7 - 8006474: bd80 pop {r7, pc} + 80063a6: bf00 nop + 80063a8: 3770 adds r7, #112 @ 0x70 + 80063aa: 46bd mov sp, r7 + 80063ac: bd80 pop {r7, pc} -08006476 : +080063ae : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMARxHalfCplt(DMA_HandleTypeDef *hdma) { - 8006476: b580 push {r7, lr} - 8006478: b084 sub sp, #16 - 800647a: af00 add r7, sp, #0 - 800647c: 6078 str r0, [r7, #4] + 80063ae: b580 push {r7, lr} + 80063b0: b084 sub sp, #16 + 80063b2: af00 add r7, sp, #0 + 80063b4: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 800647e: 687b ldr r3, [r7, #4] - 8006480: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006482: 60fb str r3, [r7, #12] + 80063b6: 687b ldr r3, [r7, #4] + 80063b8: 6b9b ldr r3, [r3, #56] @ 0x38 + 80063ba: 60fb str r3, [r7, #12] /* Initialize type of RxEvent that correspond to RxEvent callback execution; In this case, Rx Event type is Half Transfer */ huart->RxEventType = HAL_UART_RXEVENT_HT; - 8006484: 68fb ldr r3, [r7, #12] - 8006486: 2201 movs r2, #1 - 8006488: 635a str r2, [r3, #52] @ 0x34 + 80063bc: 68fb ldr r3, [r7, #12] + 80063be: 2201 movs r2, #1 + 80063c0: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : use Rx Event callback */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 800648a: 68fb ldr r3, [r7, #12] - 800648c: 6b1b ldr r3, [r3, #48] @ 0x30 - 800648e: 2b01 cmp r3, #1 - 8006490: d108 bne.n 80064a4 + 80063c2: 68fb ldr r3, [r7, #12] + 80063c4: 6b1b ldr r3, [r3, #48] @ 0x30 + 80063c6: 2b01 cmp r3, #1 + 80063c8: d108 bne.n 80063dc #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize / 2U); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize / 2U); - 8006492: 68fb ldr r3, [r7, #12] - 8006494: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8006496: 085b lsrs r3, r3, #1 - 8006498: b29b uxth r3, r3 - 800649a: 4619 mov r1, r3 - 800649c: 68f8 ldr r0, [r7, #12] - 800649e: f7ff feed bl 800627c + 80063ca: 68fb ldr r3, [r7, #12] + 80063cc: 8d9b ldrh r3, [r3, #44] @ 0x2c + 80063ce: 085b lsrs r3, r3, #1 + 80063d0: b29b uxth r3, r3 + 80063d2: 4619 mov r1, r3 + 80063d4: 68f8 ldr r0, [r7, #12] + 80063d6: f7ff feed bl 80061b4 #else /*Call legacy weak Rx Half complete callback*/ HAL_UART_RxHalfCpltCallback(huart); #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } } - 80064a2: e002 b.n 80064aa + 80063da: e002 b.n 80063e2 HAL_UART_RxHalfCpltCallback(huart); - 80064a4: 68f8 ldr r0, [r7, #12] - 80064a6: f7ff fed5 bl 8006254 + 80063dc: 68f8 ldr r0, [r7, #12] + 80063de: f7ff fed5 bl 800618c } - 80064aa: bf00 nop - 80064ac: 3710 adds r7, #16 - 80064ae: 46bd mov sp, r7 - 80064b0: bd80 pop {r7, pc} + 80063e2: bf00 nop + 80063e4: 3710 adds r7, #16 + 80063e6: 46bd mov sp, r7 + 80063e8: bd80 pop {r7, pc} -080064b2 : +080063ea : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAError(DMA_HandleTypeDef *hdma) { - 80064b2: b580 push {r7, lr} - 80064b4: b084 sub sp, #16 - 80064b6: af00 add r7, sp, #0 - 80064b8: 6078 str r0, [r7, #4] + 80063ea: b580 push {r7, lr} + 80063ec: b084 sub sp, #16 + 80063ee: af00 add r7, sp, #0 + 80063f0: 6078 str r0, [r7, #4] uint32_t dmarequest = 0x00U; - 80064ba: 2300 movs r3, #0 - 80064bc: 60fb str r3, [r7, #12] + 80063f2: 2300 movs r3, #0 + 80063f4: 60fb str r3, [r7, #12] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 80064be: 687b ldr r3, [r7, #4] - 80064c0: 6b9b ldr r3, [r3, #56] @ 0x38 - 80064c2: 60bb str r3, [r7, #8] + 80063f6: 687b ldr r3, [r7, #4] + 80063f8: 6b9b ldr r3, [r3, #56] @ 0x38 + 80063fa: 60bb str r3, [r7, #8] /* Stop UART DMA Tx request if ongoing */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAT); - 80064c4: 68bb ldr r3, [r7, #8] - 80064c6: 681b ldr r3, [r3, #0] - 80064c8: 695b ldr r3, [r3, #20] - 80064ca: f003 0380 and.w r3, r3, #128 @ 0x80 - 80064ce: 2b80 cmp r3, #128 @ 0x80 - 80064d0: bf0c ite eq - 80064d2: 2301 moveq r3, #1 - 80064d4: 2300 movne r3, #0 - 80064d6: b2db uxtb r3, r3 - 80064d8: 60fb str r3, [r7, #12] + 80063fc: 68bb ldr r3, [r7, #8] + 80063fe: 681b ldr r3, [r3, #0] + 8006400: 695b ldr r3, [r3, #20] + 8006402: f003 0380 and.w r3, r3, #128 @ 0x80 + 8006406: 2b80 cmp r3, #128 @ 0x80 + 8006408: bf0c ite eq + 800640a: 2301 moveq r3, #1 + 800640c: 2300 movne r3, #0 + 800640e: b2db uxtb r3, r3 + 8006410: 60fb str r3, [r7, #12] if ((huart->gState == HAL_UART_STATE_BUSY_TX) && dmarequest) - 80064da: 68bb ldr r3, [r7, #8] - 80064dc: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 80064e0: b2db uxtb r3, r3 - 80064e2: 2b21 cmp r3, #33 @ 0x21 - 80064e4: d108 bne.n 80064f8 - 80064e6: 68fb ldr r3, [r7, #12] - 80064e8: 2b00 cmp r3, #0 - 80064ea: d005 beq.n 80064f8 + 8006412: 68bb ldr r3, [r7, #8] + 8006414: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8006418: b2db uxtb r3, r3 + 800641a: 2b21 cmp r3, #33 @ 0x21 + 800641c: d108 bne.n 8006430 + 800641e: 68fb ldr r3, [r7, #12] + 8006420: 2b00 cmp r3, #0 + 8006422: d005 beq.n 8006430 { huart->TxXferCount = 0x00U; - 80064ec: 68bb ldr r3, [r7, #8] - 80064ee: 2200 movs r2, #0 - 80064f0: 84da strh r2, [r3, #38] @ 0x26 + 8006424: 68bb ldr r3, [r7, #8] + 8006426: 2200 movs r2, #0 + 8006428: 84da strh r2, [r3, #38] @ 0x26 UART_EndTxTransfer(huart); - 80064f2: 68b8 ldr r0, [r7, #8] - 80064f4: f000 f926 bl 8006744 + 800642a: 68b8 ldr r0, [r7, #8] + 800642c: f000 f8ce bl 80065cc } /* Stop UART DMA Rx request if ongoing */ dmarequest = HAL_IS_BIT_SET(huart->Instance->CR3, USART_CR3_DMAR); - 80064f8: 68bb ldr r3, [r7, #8] - 80064fa: 681b ldr r3, [r3, #0] - 80064fc: 695b ldr r3, [r3, #20] - 80064fe: f003 0340 and.w r3, r3, #64 @ 0x40 - 8006502: 2b40 cmp r3, #64 @ 0x40 - 8006504: bf0c ite eq - 8006506: 2301 moveq r3, #1 - 8006508: 2300 movne r3, #0 - 800650a: b2db uxtb r3, r3 - 800650c: 60fb str r3, [r7, #12] + 8006430: 68bb ldr r3, [r7, #8] + 8006432: 681b ldr r3, [r3, #0] + 8006434: 695b ldr r3, [r3, #20] + 8006436: f003 0340 and.w r3, r3, #64 @ 0x40 + 800643a: 2b40 cmp r3, #64 @ 0x40 + 800643c: bf0c ite eq + 800643e: 2301 moveq r3, #1 + 8006440: 2300 movne r3, #0 + 8006442: b2db uxtb r3, r3 + 8006444: 60fb str r3, [r7, #12] if ((huart->RxState == HAL_UART_STATE_BUSY_RX) && dmarequest) - 800650e: 68bb ldr r3, [r7, #8] - 8006510: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8006514: b2db uxtb r3, r3 - 8006516: 2b22 cmp r3, #34 @ 0x22 - 8006518: d108 bne.n 800652c - 800651a: 68fb ldr r3, [r7, #12] - 800651c: 2b00 cmp r3, #0 - 800651e: d005 beq.n 800652c + 8006446: 68bb ldr r3, [r7, #8] + 8006448: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 800644c: b2db uxtb r3, r3 + 800644e: 2b22 cmp r3, #34 @ 0x22 + 8006450: d108 bne.n 8006464 + 8006452: 68fb ldr r3, [r7, #12] + 8006454: 2b00 cmp r3, #0 + 8006456: d005 beq.n 8006464 { huart->RxXferCount = 0x00U; - 8006520: 68bb ldr r3, [r7, #8] - 8006522: 2200 movs r2, #0 - 8006524: 85da strh r2, [r3, #46] @ 0x2e + 8006458: 68bb ldr r3, [r7, #8] + 800645a: 2200 movs r2, #0 + 800645c: 85da strh r2, [r3, #46] @ 0x2e UART_EndRxTransfer(huart); - 8006526: 68b8 ldr r0, [r7, #8] - 8006528: f000 f934 bl 8006794 + 800645e: 68b8 ldr r0, [r7, #8] + 8006460: f000 f8dc bl 800661c } huart->ErrorCode |= HAL_UART_ERROR_DMA; - 800652c: 68bb ldr r3, [r7, #8] - 800652e: 6c5b ldr r3, [r3, #68] @ 0x44 - 8006530: f043 0210 orr.w r2, r3, #16 - 8006534: 68bb ldr r3, [r7, #8] - 8006536: 645a str r2, [r3, #68] @ 0x44 + 8006464: 68bb ldr r3, [r7, #8] + 8006466: 6c5b ldr r3, [r3, #68] @ 0x44 + 8006468: f043 0210 orr.w r2, r3, #16 + 800646c: 68bb ldr r3, [r7, #8] + 800646e: 645a str r2, [r3, #68] @ 0x44 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 8006538: 68b8 ldr r0, [r7, #8] - 800653a: f7ff fe95 bl 8006268 + 8006470: 68b8 ldr r0, [r7, #8] + 8006472: f7ff fe95 bl 80061a0 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 800653e: bf00 nop - 8006540: 3710 adds r7, #16 - 8006542: 46bd mov sp, r7 - 8006544: bd80 pop {r7, pc} + 8006476: bf00 nop + 8006478: 3710 adds r7, #16 + 800647a: 46bd mov sp, r7 + 800647c: bd80 pop {r7, pc} + ... -08006546 : - * @param Timeout Timeout duration - * @retval HAL status - */ -static HAL_StatusTypeDef UART_WaitOnFlagUntilTimeout(UART_HandleTypeDef *huart, uint32_t Flag, FlagStatus Status, - uint32_t Tickstart, uint32_t Timeout) -{ - 8006546: b580 push {r7, lr} - 8006548: b086 sub sp, #24 - 800654a: af00 add r7, sp, #0 - 800654c: 60f8 str r0, [r7, #12] - 800654e: 60b9 str r1, [r7, #8] - 8006550: 603b str r3, [r7, #0] - 8006552: 4613 mov r3, r2 - 8006554: 71fb strb r3, [r7, #7] - /* Wait until flag is set */ - while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8006556: e03b b.n 80065d0 - { - /* Check for the Timeout */ - if (Timeout != HAL_MAX_DELAY) - 8006558: 6a3b ldr r3, [r7, #32] - 800655a: f1b3 3fff cmp.w r3, #4294967295 @ 0xffffffff - 800655e: d037 beq.n 80065d0 - { - if (((HAL_GetTick() - Tickstart) > Timeout) || (Timeout == 0U)) - 8006560: f7fb fa32 bl 80019c8 - 8006564: 4602 mov r2, r0 - 8006566: 683b ldr r3, [r7, #0] - 8006568: 1ad3 subs r3, r2, r3 - 800656a: 6a3a ldr r2, [r7, #32] - 800656c: 429a cmp r2, r3 - 800656e: d302 bcc.n 8006576 - 8006570: 6a3b ldr r3, [r7, #32] - 8006572: 2b00 cmp r3, #0 - 8006574: d101 bne.n 800657a - { - - return HAL_TIMEOUT; - 8006576: 2303 movs r3, #3 - 8006578: e03a b.n 80065f0 - } - - if ((READ_BIT(huart->Instance->CR1, USART_CR1_RE) != 0U) && (Flag != UART_FLAG_TXE) && (Flag != UART_FLAG_TC)) - 800657a: 68fb ldr r3, [r7, #12] - 800657c: 681b ldr r3, [r3, #0] - 800657e: 68db ldr r3, [r3, #12] - 8006580: f003 0304 and.w r3, r3, #4 - 8006584: 2b00 cmp r3, #0 - 8006586: d023 beq.n 80065d0 - 8006588: 68bb ldr r3, [r7, #8] - 800658a: 2b80 cmp r3, #128 @ 0x80 - 800658c: d020 beq.n 80065d0 - 800658e: 68bb ldr r3, [r7, #8] - 8006590: 2b40 cmp r3, #64 @ 0x40 - 8006592: d01d beq.n 80065d0 - { - if (__HAL_UART_GET_FLAG(huart, UART_FLAG_ORE) == SET) - 8006594: 68fb ldr r3, [r7, #12] - 8006596: 681b ldr r3, [r3, #0] - 8006598: 681b ldr r3, [r3, #0] - 800659a: f003 0308 and.w r3, r3, #8 - 800659e: 2b08 cmp r3, #8 - 80065a0: d116 bne.n 80065d0 - { - /* Clear Overrun Error flag*/ - __HAL_UART_CLEAR_OREFLAG(huart); - 80065a2: 2300 movs r3, #0 - 80065a4: 617b str r3, [r7, #20] - 80065a6: 68fb ldr r3, [r7, #12] - 80065a8: 681b ldr r3, [r3, #0] - 80065aa: 681b ldr r3, [r3, #0] - 80065ac: 617b str r3, [r7, #20] - 80065ae: 68fb ldr r3, [r7, #12] - 80065b0: 681b ldr r3, [r3, #0] - 80065b2: 685b ldr r3, [r3, #4] - 80065b4: 617b str r3, [r7, #20] - 80065b6: 697b ldr r3, [r7, #20] - - /* Blocking error : transfer is aborted - Set the UART state ready to be able to start again the process, - Disable Rx Interrupts if ongoing */ - UART_EndRxTransfer(huart); - 80065b8: 68f8 ldr r0, [r7, #12] - 80065ba: f000 f8eb bl 8006794 - - huart->ErrorCode = HAL_UART_ERROR_ORE; - 80065be: 68fb ldr r3, [r7, #12] - 80065c0: 2208 movs r2, #8 - 80065c2: 645a str r2, [r3, #68] @ 0x44 - - /* Process Unlocked */ - __HAL_UNLOCK(huart); - 80065c4: 68fb ldr r3, [r7, #12] - 80065c6: 2200 movs r2, #0 - 80065c8: f883 2040 strb.w r2, [r3, #64] @ 0x40 - - return HAL_ERROR; - 80065cc: 2301 movs r3, #1 - 80065ce: e00f b.n 80065f0 - while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 80065d0: 68fb ldr r3, [r7, #12] - 80065d2: 681b ldr r3, [r3, #0] - 80065d4: 681a ldr r2, [r3, #0] - 80065d6: 68bb ldr r3, [r7, #8] - 80065d8: 4013 ands r3, r2 - 80065da: 68ba ldr r2, [r7, #8] - 80065dc: 429a cmp r2, r3 - 80065de: bf0c ite eq - 80065e0: 2301 moveq r3, #1 - 80065e2: 2300 movne r3, #0 - 80065e4: b2db uxtb r3, r3 - 80065e6: 461a mov r2, r3 - 80065e8: 79fb ldrb r3, [r7, #7] - 80065ea: 429a cmp r2, r3 - 80065ec: d0b4 beq.n 8006558 - } - } - } - } - return HAL_OK; - 80065ee: 2300 movs r3, #0 -} - 80065f0: 4618 mov r0, r3 - 80065f2: 3718 adds r7, #24 - 80065f4: 46bd mov sp, r7 - 80065f6: bd80 pop {r7, pc} - -080065f8 : +08006480 : * @param pData Pointer to data buffer (u8 or u16 data elements). * @param Size Amount of data elements (u8 or u16) to be received. * @retval HAL status */ HAL_StatusTypeDef UART_Start_Receive_DMA(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size) { - 80065f8: b580 push {r7, lr} - 80065fa: b098 sub sp, #96 @ 0x60 - 80065fc: af00 add r7, sp, #0 - 80065fe: 60f8 str r0, [r7, #12] - 8006600: 60b9 str r1, [r7, #8] - 8006602: 4613 mov r3, r2 - 8006604: 80fb strh r3, [r7, #6] + 8006480: b580 push {r7, lr} + 8006482: b098 sub sp, #96 @ 0x60 + 8006484: af00 add r7, sp, #0 + 8006486: 60f8 str r0, [r7, #12] + 8006488: 60b9 str r1, [r7, #8] + 800648a: 4613 mov r3, r2 + 800648c: 80fb strh r3, [r7, #6] uint32_t *tmp; huart->pRxBuffPtr = pData; - 8006606: 68ba ldr r2, [r7, #8] - 8006608: 68fb ldr r3, [r7, #12] - 800660a: 629a str r2, [r3, #40] @ 0x28 + 800648e: 68ba ldr r2, [r7, #8] + 8006490: 68fb ldr r3, [r7, #12] + 8006492: 629a str r2, [r3, #40] @ 0x28 huart->RxXferSize = Size; - 800660c: 68fb ldr r3, [r7, #12] - 800660e: 88fa ldrh r2, [r7, #6] - 8006610: 859a strh r2, [r3, #44] @ 0x2c + 8006494: 68fb ldr r3, [r7, #12] + 8006496: 88fa ldrh r2, [r7, #6] + 8006498: 859a strh r2, [r3, #44] @ 0x2c huart->ErrorCode = HAL_UART_ERROR_NONE; - 8006612: 68fb ldr r3, [r7, #12] - 8006614: 2200 movs r2, #0 - 8006616: 645a str r2, [r3, #68] @ 0x44 + 800649a: 68fb ldr r3, [r7, #12] + 800649c: 2200 movs r2, #0 + 800649e: 645a str r2, [r3, #68] @ 0x44 huart->RxState = HAL_UART_STATE_BUSY_RX; - 8006618: 68fb ldr r3, [r7, #12] - 800661a: 2222 movs r2, #34 @ 0x22 - 800661c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80064a0: 68fb ldr r3, [r7, #12] + 80064a2: 2222 movs r2, #34 @ 0x22 + 80064a4: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* Set the UART DMA transfer complete callback */ huart->hdmarx->XferCpltCallback = UART_DMAReceiveCplt; - 8006620: 68fb ldr r3, [r7, #12] - 8006622: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006624: 4a44 ldr r2, [pc, #272] @ (8006738 ) - 8006626: 63da str r2, [r3, #60] @ 0x3c + 80064a8: 68fb ldr r3, [r7, #12] + 80064aa: 6bdb ldr r3, [r3, #60] @ 0x3c + 80064ac: 4a44 ldr r2, [pc, #272] @ (80065c0 ) + 80064ae: 63da str r2, [r3, #60] @ 0x3c /* Set the UART DMA Half transfer complete callback */ huart->hdmarx->XferHalfCpltCallback = UART_DMARxHalfCplt; - 8006628: 68fb ldr r3, [r7, #12] - 800662a: 6bdb ldr r3, [r3, #60] @ 0x3c - 800662c: 4a43 ldr r2, [pc, #268] @ (800673c ) - 800662e: 641a str r2, [r3, #64] @ 0x40 + 80064b0: 68fb ldr r3, [r7, #12] + 80064b2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80064b4: 4a43 ldr r2, [pc, #268] @ (80065c4 ) + 80064b6: 641a str r2, [r3, #64] @ 0x40 /* Set the DMA error callback */ huart->hdmarx->XferErrorCallback = UART_DMAError; - 8006630: 68fb ldr r3, [r7, #12] - 8006632: 6bdb ldr r3, [r3, #60] @ 0x3c - 8006634: 4a42 ldr r2, [pc, #264] @ (8006740 ) - 8006636: 64da str r2, [r3, #76] @ 0x4c + 80064b8: 68fb ldr r3, [r7, #12] + 80064ba: 6bdb ldr r3, [r3, #60] @ 0x3c + 80064bc: 4a42 ldr r2, [pc, #264] @ (80065c8 ) + 80064be: 64da str r2, [r3, #76] @ 0x4c /* Set the DMA abort callback */ huart->hdmarx->XferAbortCallback = NULL; - 8006638: 68fb ldr r3, [r7, #12] - 800663a: 6bdb ldr r3, [r3, #60] @ 0x3c - 800663c: 2200 movs r2, #0 - 800663e: 651a str r2, [r3, #80] @ 0x50 + 80064c0: 68fb ldr r3, [r7, #12] + 80064c2: 6bdb ldr r3, [r3, #60] @ 0x3c + 80064c4: 2200 movs r2, #0 + 80064c6: 651a str r2, [r3, #80] @ 0x50 /* Enable the DMA stream */ tmp = (uint32_t *)&pData; - 8006640: f107 0308 add.w r3, r7, #8 - 8006644: 65fb str r3, [r7, #92] @ 0x5c + 80064c8: f107 0308 add.w r3, r7, #8 + 80064cc: 65fb str r3, [r7, #92] @ 0x5c if (HAL_DMA_Start_IT(huart->hdmarx, (uint32_t)&huart->Instance->DR, *(uint32_t *)tmp, Size) != HAL_OK) - 8006646: 68fb ldr r3, [r7, #12] - 8006648: 6bd8 ldr r0, [r3, #60] @ 0x3c - 800664a: 68fb ldr r3, [r7, #12] - 800664c: 681b ldr r3, [r3, #0] - 800664e: 3304 adds r3, #4 - 8006650: 4619 mov r1, r3 - 8006652: 6dfb ldr r3, [r7, #92] @ 0x5c - 8006654: 681a ldr r2, [r3, #0] - 8006656: 88fb ldrh r3, [r7, #6] - 8006658: f7fb fba6 bl 8001da8 - 800665c: 4603 mov r3, r0 - 800665e: 2b00 cmp r3, #0 - 8006660: d008 beq.n 8006674 + 80064ce: 68fb ldr r3, [r7, #12] + 80064d0: 6bd8 ldr r0, [r3, #60] @ 0x3c + 80064d2: 68fb ldr r3, [r7, #12] + 80064d4: 681b ldr r3, [r3, #0] + 80064d6: 3304 adds r3, #4 + 80064d8: 4619 mov r1, r3 + 80064da: 6dfb ldr r3, [r7, #92] @ 0x5c + 80064dc: 681a ldr r2, [r3, #0] + 80064de: 88fb ldrh r3, [r7, #6] + 80064e0: f7fb fc8a bl 8001df8 + 80064e4: 4603 mov r3, r0 + 80064e6: 2b00 cmp r3, #0 + 80064e8: d008 beq.n 80064fc { /* Set error code to DMA */ huart->ErrorCode = HAL_UART_ERROR_DMA; - 8006662: 68fb ldr r3, [r7, #12] - 8006664: 2210 movs r2, #16 - 8006666: 645a str r2, [r3, #68] @ 0x44 + 80064ea: 68fb ldr r3, [r7, #12] + 80064ec: 2210 movs r2, #16 + 80064ee: 645a str r2, [r3, #68] @ 0x44 /* Restore huart->RxState to ready */ huart->RxState = HAL_UART_STATE_READY; - 8006668: 68fb ldr r3, [r7, #12] - 800666a: 2220 movs r2, #32 - 800666c: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80064f0: 68fb ldr r3, [r7, #12] + 80064f2: 2220 movs r2, #32 + 80064f4: f883 2042 strb.w r2, [r3, #66] @ 0x42 return HAL_ERROR; - 8006670: 2301 movs r3, #1 - 8006672: e05d b.n 8006730 + 80064f8: 2301 movs r3, #1 + 80064fa: e05d b.n 80065b8 } /* Clear the Overrun flag just before enabling the DMA Rx request: can be mandatory for the second transfer */ __HAL_UART_CLEAR_OREFLAG(huart); - 8006674: 2300 movs r3, #0 - 8006676: 613b str r3, [r7, #16] - 8006678: 68fb ldr r3, [r7, #12] - 800667a: 681b ldr r3, [r3, #0] - 800667c: 681b ldr r3, [r3, #0] - 800667e: 613b str r3, [r7, #16] - 8006680: 68fb ldr r3, [r7, #12] - 8006682: 681b ldr r3, [r3, #0] - 8006684: 685b ldr r3, [r3, #4] - 8006686: 613b str r3, [r7, #16] - 8006688: 693b ldr r3, [r7, #16] + 80064fc: 2300 movs r3, #0 + 80064fe: 613b str r3, [r7, #16] + 8006500: 68fb ldr r3, [r7, #12] + 8006502: 681b ldr r3, [r3, #0] + 8006504: 681b ldr r3, [r3, #0] + 8006506: 613b str r3, [r7, #16] + 8006508: 68fb ldr r3, [r7, #12] + 800650a: 681b ldr r3, [r3, #0] + 800650c: 685b ldr r3, [r3, #4] + 800650e: 613b str r3, [r7, #16] + 8006510: 693b ldr r3, [r7, #16] if (huart->Init.Parity != UART_PARITY_NONE) - 800668a: 68fb ldr r3, [r7, #12] - 800668c: 691b ldr r3, [r3, #16] - 800668e: 2b00 cmp r3, #0 - 8006690: d019 beq.n 80066c6 + 8006512: 68fb ldr r3, [r7, #12] + 8006514: 691b ldr r3, [r3, #16] + 8006516: 2b00 cmp r3, #0 + 8006518: d019 beq.n 800654e { /* Enable the UART Parity Error Interrupt */ ATOMIC_SET_BIT(huart->Instance->CR1, USART_CR1_PEIE); - 8006692: 68fb ldr r3, [r7, #12] - 8006694: 681b ldr r3, [r3, #0] - 8006696: 330c adds r3, #12 - 8006698: 643b str r3, [r7, #64] @ 0x40 + 800651a: 68fb ldr r3, [r7, #12] + 800651c: 681b ldr r3, [r3, #0] + 800651e: 330c adds r3, #12 + 8006520: 643b str r3, [r7, #64] @ 0x40 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800669a: 6c3b ldr r3, [r7, #64] @ 0x40 - 800669c: e853 3f00 ldrex r3, [r3] - 80066a0: 63fb str r3, [r7, #60] @ 0x3c + 8006522: 6c3b ldr r3, [r7, #64] @ 0x40 + 8006524: e853 3f00 ldrex r3, [r3] + 8006528: 63fb str r3, [r7, #60] @ 0x3c return(result); - 80066a2: 6bfb ldr r3, [r7, #60] @ 0x3c - 80066a4: f443 7380 orr.w r3, r3, #256 @ 0x100 - 80066a8: 65bb str r3, [r7, #88] @ 0x58 - 80066aa: 68fb ldr r3, [r7, #12] - 80066ac: 681b ldr r3, [r3, #0] - 80066ae: 330c adds r3, #12 - 80066b0: 6dba ldr r2, [r7, #88] @ 0x58 - 80066b2: 64fa str r2, [r7, #76] @ 0x4c - 80066b4: 64bb str r3, [r7, #72] @ 0x48 + 800652a: 6bfb ldr r3, [r7, #60] @ 0x3c + 800652c: f443 7380 orr.w r3, r3, #256 @ 0x100 + 8006530: 65bb str r3, [r7, #88] @ 0x58 + 8006532: 68fb ldr r3, [r7, #12] + 8006534: 681b ldr r3, [r3, #0] + 8006536: 330c adds r3, #12 + 8006538: 6dba ldr r2, [r7, #88] @ 0x58 + 800653a: 64fa str r2, [r7, #76] @ 0x4c + 800653c: 64bb str r3, [r7, #72] @ 0x48 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80066b6: 6cb9 ldr r1, [r7, #72] @ 0x48 - 80066b8: 6cfa ldr r2, [r7, #76] @ 0x4c - 80066ba: e841 2300 strex r3, r2, [r1] - 80066be: 647b str r3, [r7, #68] @ 0x44 + 800653e: 6cb9 ldr r1, [r7, #72] @ 0x48 + 8006540: 6cfa ldr r2, [r7, #76] @ 0x4c + 8006542: e841 2300 strex r3, r2, [r1] + 8006546: 647b str r3, [r7, #68] @ 0x44 return(result); - 80066c0: 6c7b ldr r3, [r7, #68] @ 0x44 - 80066c2: 2b00 cmp r3, #0 - 80066c4: d1e5 bne.n 8006692 + 8006548: 6c7b ldr r3, [r7, #68] @ 0x44 + 800654a: 2b00 cmp r3, #0 + 800654c: d1e5 bne.n 800651a } /* Enable the UART Error Interrupt: (Frame error, noise error, overrun error) */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80066c6: 68fb ldr r3, [r7, #12] - 80066c8: 681b ldr r3, [r3, #0] - 80066ca: 3314 adds r3, #20 - 80066cc: 62fb str r3, [r7, #44] @ 0x2c + 800654e: 68fb ldr r3, [r7, #12] + 8006550: 681b ldr r3, [r3, #0] + 8006552: 3314 adds r3, #20 + 8006554: 62fb str r3, [r7, #44] @ 0x2c __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80066ce: 6afb ldr r3, [r7, #44] @ 0x2c - 80066d0: e853 3f00 ldrex r3, [r3] - 80066d4: 62bb str r3, [r7, #40] @ 0x28 + 8006556: 6afb ldr r3, [r7, #44] @ 0x2c + 8006558: e853 3f00 ldrex r3, [r3] + 800655c: 62bb str r3, [r7, #40] @ 0x28 return(result); - 80066d6: 6abb ldr r3, [r7, #40] @ 0x28 - 80066d8: f043 0301 orr.w r3, r3, #1 - 80066dc: 657b str r3, [r7, #84] @ 0x54 - 80066de: 68fb ldr r3, [r7, #12] - 80066e0: 681b ldr r3, [r3, #0] - 80066e2: 3314 adds r3, #20 - 80066e4: 6d7a ldr r2, [r7, #84] @ 0x54 - 80066e6: 63ba str r2, [r7, #56] @ 0x38 - 80066e8: 637b str r3, [r7, #52] @ 0x34 + 800655e: 6abb ldr r3, [r7, #40] @ 0x28 + 8006560: f043 0301 orr.w r3, r3, #1 + 8006564: 657b str r3, [r7, #84] @ 0x54 + 8006566: 68fb ldr r3, [r7, #12] + 8006568: 681b ldr r3, [r3, #0] + 800656a: 3314 adds r3, #20 + 800656c: 6d7a ldr r2, [r7, #84] @ 0x54 + 800656e: 63ba str r2, [r7, #56] @ 0x38 + 8006570: 637b str r3, [r7, #52] @ 0x34 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80066ea: 6b79 ldr r1, [r7, #52] @ 0x34 - 80066ec: 6bba ldr r2, [r7, #56] @ 0x38 - 80066ee: e841 2300 strex r3, r2, [r1] - 80066f2: 633b str r3, [r7, #48] @ 0x30 + 8006572: 6b79 ldr r1, [r7, #52] @ 0x34 + 8006574: 6bba ldr r2, [r7, #56] @ 0x38 + 8006576: e841 2300 strex r3, r2, [r1] + 800657a: 633b str r3, [r7, #48] @ 0x30 return(result); - 80066f4: 6b3b ldr r3, [r7, #48] @ 0x30 - 80066f6: 2b00 cmp r3, #0 - 80066f8: d1e5 bne.n 80066c6 + 800657c: 6b3b ldr r3, [r7, #48] @ 0x30 + 800657e: 2b00 cmp r3, #0 + 8006580: d1e5 bne.n 800654e /* Enable the DMA transfer for the receiver request by setting the DMAR bit in the UART CR3 register */ ATOMIC_SET_BIT(huart->Instance->CR3, USART_CR3_DMAR); - 80066fa: 68fb ldr r3, [r7, #12] - 80066fc: 681b ldr r3, [r3, #0] - 80066fe: 3314 adds r3, #20 - 8006700: 61bb str r3, [r7, #24] + 8006582: 68fb ldr r3, [r7, #12] + 8006584: 681b ldr r3, [r3, #0] + 8006586: 3314 adds r3, #20 + 8006588: 61bb str r3, [r7, #24] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006702: 69bb ldr r3, [r7, #24] - 8006704: e853 3f00 ldrex r3, [r3] - 8006708: 617b str r3, [r7, #20] + 800658a: 69bb ldr r3, [r7, #24] + 800658c: e853 3f00 ldrex r3, [r3] + 8006590: 617b str r3, [r7, #20] return(result); - 800670a: 697b ldr r3, [r7, #20] - 800670c: f043 0340 orr.w r3, r3, #64 @ 0x40 - 8006710: 653b str r3, [r7, #80] @ 0x50 - 8006712: 68fb ldr r3, [r7, #12] - 8006714: 681b ldr r3, [r3, #0] - 8006716: 3314 adds r3, #20 - 8006718: 6d3a ldr r2, [r7, #80] @ 0x50 - 800671a: 627a str r2, [r7, #36] @ 0x24 - 800671c: 623b str r3, [r7, #32] + 8006592: 697b ldr r3, [r7, #20] + 8006594: f043 0340 orr.w r3, r3, #64 @ 0x40 + 8006598: 653b str r3, [r7, #80] @ 0x50 + 800659a: 68fb ldr r3, [r7, #12] + 800659c: 681b ldr r3, [r3, #0] + 800659e: 3314 adds r3, #20 + 80065a0: 6d3a ldr r2, [r7, #80] @ 0x50 + 80065a2: 627a str r2, [r7, #36] @ 0x24 + 80065a4: 623b str r3, [r7, #32] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 800671e: 6a39 ldr r1, [r7, #32] - 8006720: 6a7a ldr r2, [r7, #36] @ 0x24 - 8006722: e841 2300 strex r3, r2, [r1] - 8006726: 61fb str r3, [r7, #28] + 80065a6: 6a39 ldr r1, [r7, #32] + 80065a8: 6a7a ldr r2, [r7, #36] @ 0x24 + 80065aa: e841 2300 strex r3, r2, [r1] + 80065ae: 61fb str r3, [r7, #28] return(result); - 8006728: 69fb ldr r3, [r7, #28] - 800672a: 2b00 cmp r3, #0 - 800672c: d1e5 bne.n 80066fa + 80065b0: 69fb ldr r3, [r7, #28] + 80065b2: 2b00 cmp r3, #0 + 80065b4: d1e5 bne.n 8006582 return HAL_OK; - 800672e: 2300 movs r3, #0 + 80065b6: 2300 movs r3, #0 } - 8006730: 4618 mov r0, r3 - 8006732: 3760 adds r7, #96 @ 0x60 - 8006734: 46bd mov sp, r7 - 8006736: bd80 pop {r7, pc} - 8006738: 0800634b .word 0x0800634b - 800673c: 08006477 .word 0x08006477 - 8006740: 080064b3 .word 0x080064b3 + 80065b8: 4618 mov r0, r3 + 80065ba: 3760 adds r7, #96 @ 0x60 + 80065bc: 46bd mov sp, r7 + 80065be: bd80 pop {r7, pc} + 80065c0: 08006283 .word 0x08006283 + 80065c4: 080063af .word 0x080063af + 80065c8: 080063eb .word 0x080063eb -08006744 : +080065cc : * @brief End ongoing Tx transfer on UART peripheral (following error detection or Transmit completion). * @param huart UART handle. * @retval None */ static void UART_EndTxTransfer(UART_HandleTypeDef *huart) { - 8006744: b480 push {r7} - 8006746: b089 sub sp, #36 @ 0x24 - 8006748: af00 add r7, sp, #0 - 800674a: 6078 str r0, [r7, #4] + 80065cc: b480 push {r7} + 80065ce: b089 sub sp, #36 @ 0x24 + 80065d0: af00 add r7, sp, #0 + 80065d2: 6078 str r0, [r7, #4] /* Disable TXEIE and TCIE interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_TXEIE | USART_CR1_TCIE)); - 800674c: 687b ldr r3, [r7, #4] - 800674e: 681b ldr r3, [r3, #0] - 8006750: 330c adds r3, #12 - 8006752: 60fb str r3, [r7, #12] + 80065d4: 687b ldr r3, [r7, #4] + 80065d6: 681b ldr r3, [r3, #0] + 80065d8: 330c adds r3, #12 + 80065da: 60fb str r3, [r7, #12] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006754: 68fb ldr r3, [r7, #12] - 8006756: e853 3f00 ldrex r3, [r3] - 800675a: 60bb str r3, [r7, #8] + 80065dc: 68fb ldr r3, [r7, #12] + 80065de: e853 3f00 ldrex r3, [r3] + 80065e2: 60bb str r3, [r7, #8] return(result); - 800675c: 68bb ldr r3, [r7, #8] - 800675e: f023 03c0 bic.w r3, r3, #192 @ 0xc0 - 8006762: 61fb str r3, [r7, #28] - 8006764: 687b ldr r3, [r7, #4] - 8006766: 681b ldr r3, [r3, #0] - 8006768: 330c adds r3, #12 - 800676a: 69fa ldr r2, [r7, #28] - 800676c: 61ba str r2, [r7, #24] - 800676e: 617b str r3, [r7, #20] + 80065e4: 68bb ldr r3, [r7, #8] + 80065e6: f023 03c0 bic.w r3, r3, #192 @ 0xc0 + 80065ea: 61fb str r3, [r7, #28] + 80065ec: 687b ldr r3, [r7, #4] + 80065ee: 681b ldr r3, [r3, #0] + 80065f0: 330c adds r3, #12 + 80065f2: 69fa ldr r2, [r7, #28] + 80065f4: 61ba str r2, [r7, #24] + 80065f6: 617b str r3, [r7, #20] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006770: 6979 ldr r1, [r7, #20] - 8006772: 69ba ldr r2, [r7, #24] - 8006774: e841 2300 strex r3, r2, [r1] - 8006778: 613b str r3, [r7, #16] + 80065f8: 6979 ldr r1, [r7, #20] + 80065fa: 69ba ldr r2, [r7, #24] + 80065fc: e841 2300 strex r3, r2, [r1] + 8006600: 613b str r3, [r7, #16] return(result); - 800677a: 693b ldr r3, [r7, #16] - 800677c: 2b00 cmp r3, #0 - 800677e: d1e5 bne.n 800674c + 8006602: 693b ldr r3, [r7, #16] + 8006604: 2b00 cmp r3, #0 + 8006606: d1e5 bne.n 80065d4 /* At end of Tx process, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8006780: 687b ldr r3, [r7, #4] - 8006782: 2220 movs r2, #32 - 8006784: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 8006608: 687b ldr r3, [r7, #4] + 800660a: 2220 movs r2, #32 + 800660c: f883 2041 strb.w r2, [r3, #65] @ 0x41 } - 8006788: bf00 nop - 800678a: 3724 adds r7, #36 @ 0x24 - 800678c: 46bd mov sp, r7 - 800678e: f85d 7b04 ldr.w r7, [sp], #4 - 8006792: 4770 bx lr + 8006610: bf00 nop + 8006612: 3724 adds r7, #36 @ 0x24 + 8006614: 46bd mov sp, r7 + 8006616: f85d 7b04 ldr.w r7, [sp], #4 + 800661a: 4770 bx lr -08006794 : +0800661c : * @brief End ongoing Rx transfer on UART peripheral (following error detection or Reception completion). * @param huart UART handle. * @retval None */ static void UART_EndRxTransfer(UART_HandleTypeDef *huart) { - 8006794: b480 push {r7} - 8006796: b095 sub sp, #84 @ 0x54 - 8006798: af00 add r7, sp, #0 - 800679a: 6078 str r0, [r7, #4] + 800661c: b480 push {r7} + 800661e: b095 sub sp, #84 @ 0x54 + 8006620: af00 add r7, sp, #0 + 8006622: 6078 str r0, [r7, #4] /* Disable RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE)); - 800679c: 687b ldr r3, [r7, #4] - 800679e: 681b ldr r3, [r3, #0] - 80067a0: 330c adds r3, #12 - 80067a2: 637b str r3, [r7, #52] @ 0x34 + 8006624: 687b ldr r3, [r7, #4] + 8006626: 681b ldr r3, [r3, #0] + 8006628: 330c adds r3, #12 + 800662a: 637b str r3, [r7, #52] @ 0x34 __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80067a4: 6b7b ldr r3, [r7, #52] @ 0x34 - 80067a6: e853 3f00 ldrex r3, [r3] - 80067aa: 633b str r3, [r7, #48] @ 0x30 + 800662c: 6b7b ldr r3, [r7, #52] @ 0x34 + 800662e: e853 3f00 ldrex r3, [r3] + 8006632: 633b str r3, [r7, #48] @ 0x30 return(result); - 80067ac: 6b3b ldr r3, [r7, #48] @ 0x30 - 80067ae: f423 7390 bic.w r3, r3, #288 @ 0x120 - 80067b2: 64fb str r3, [r7, #76] @ 0x4c - 80067b4: 687b ldr r3, [r7, #4] - 80067b6: 681b ldr r3, [r3, #0] - 80067b8: 330c adds r3, #12 - 80067ba: 6cfa ldr r2, [r7, #76] @ 0x4c - 80067bc: 643a str r2, [r7, #64] @ 0x40 - 80067be: 63fb str r3, [r7, #60] @ 0x3c + 8006634: 6b3b ldr r3, [r7, #48] @ 0x30 + 8006636: f423 7390 bic.w r3, r3, #288 @ 0x120 + 800663a: 64fb str r3, [r7, #76] @ 0x4c + 800663c: 687b ldr r3, [r7, #4] + 800663e: 681b ldr r3, [r3, #0] + 8006640: 330c adds r3, #12 + 8006642: 6cfa ldr r2, [r7, #76] @ 0x4c + 8006644: 643a str r2, [r7, #64] @ 0x40 + 8006646: 63fb str r3, [r7, #60] @ 0x3c __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80067c0: 6bf9 ldr r1, [r7, #60] @ 0x3c - 80067c2: 6c3a ldr r2, [r7, #64] @ 0x40 - 80067c4: e841 2300 strex r3, r2, [r1] - 80067c8: 63bb str r3, [r7, #56] @ 0x38 + 8006648: 6bf9 ldr r1, [r7, #60] @ 0x3c + 800664a: 6c3a ldr r2, [r7, #64] @ 0x40 + 800664c: e841 2300 strex r3, r2, [r1] + 8006650: 63bb str r3, [r7, #56] @ 0x38 return(result); - 80067ca: 6bbb ldr r3, [r7, #56] @ 0x38 - 80067cc: 2b00 cmp r3, #0 - 80067ce: d1e5 bne.n 800679c + 8006652: 6bbb ldr r3, [r7, #56] @ 0x38 + 8006654: 2b00 cmp r3, #0 + 8006656: d1e5 bne.n 8006624 ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80067d0: 687b ldr r3, [r7, #4] - 80067d2: 681b ldr r3, [r3, #0] - 80067d4: 3314 adds r3, #20 - 80067d6: 623b str r3, [r7, #32] + 8006658: 687b ldr r3, [r7, #4] + 800665a: 681b ldr r3, [r3, #0] + 800665c: 3314 adds r3, #20 + 800665e: 623b str r3, [r7, #32] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80067d8: 6a3b ldr r3, [r7, #32] - 80067da: e853 3f00 ldrex r3, [r3] - 80067de: 61fb str r3, [r7, #28] + 8006660: 6a3b ldr r3, [r7, #32] + 8006662: e853 3f00 ldrex r3, [r3] + 8006666: 61fb str r3, [r7, #28] return(result); - 80067e0: 69fb ldr r3, [r7, #28] - 80067e2: f023 0301 bic.w r3, r3, #1 - 80067e6: 64bb str r3, [r7, #72] @ 0x48 - 80067e8: 687b ldr r3, [r7, #4] - 80067ea: 681b ldr r3, [r3, #0] - 80067ec: 3314 adds r3, #20 - 80067ee: 6cba ldr r2, [r7, #72] @ 0x48 - 80067f0: 62fa str r2, [r7, #44] @ 0x2c - 80067f2: 62bb str r3, [r7, #40] @ 0x28 + 8006668: 69fb ldr r3, [r7, #28] + 800666a: f023 0301 bic.w r3, r3, #1 + 800666e: 64bb str r3, [r7, #72] @ 0x48 + 8006670: 687b ldr r3, [r7, #4] + 8006672: 681b ldr r3, [r3, #0] + 8006674: 3314 adds r3, #20 + 8006676: 6cba ldr r2, [r7, #72] @ 0x48 + 8006678: 62fa str r2, [r7, #44] @ 0x2c + 800667a: 62bb str r3, [r7, #40] @ 0x28 __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80067f4: 6ab9 ldr r1, [r7, #40] @ 0x28 - 80067f6: 6afa ldr r2, [r7, #44] @ 0x2c - 80067f8: e841 2300 strex r3, r2, [r1] - 80067fc: 627b str r3, [r7, #36] @ 0x24 + 800667c: 6ab9 ldr r1, [r7, #40] @ 0x28 + 800667e: 6afa ldr r2, [r7, #44] @ 0x2c + 8006680: e841 2300 strex r3, r2, [r1] + 8006684: 627b str r3, [r7, #36] @ 0x24 return(result); - 80067fe: 6a7b ldr r3, [r7, #36] @ 0x24 - 8006800: 2b00 cmp r3, #0 - 8006802: d1e5 bne.n 80067d0 + 8006686: 6a7b ldr r3, [r7, #36] @ 0x24 + 8006688: 2b00 cmp r3, #0 + 800668a: d1e5 bne.n 8006658 /* In case of reception waiting for IDLE event, disable also the IDLE IE interrupt source */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006804: 687b ldr r3, [r7, #4] - 8006806: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006808: 2b01 cmp r3, #1 - 800680a: d119 bne.n 8006840 + 800668c: 687b ldr r3, [r7, #4] + 800668e: 6b1b ldr r3, [r3, #48] @ 0x30 + 8006690: 2b01 cmp r3, #1 + 8006692: d119 bne.n 80066c8 { ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 800680c: 687b ldr r3, [r7, #4] - 800680e: 681b ldr r3, [r3, #0] - 8006810: 330c adds r3, #12 - 8006812: 60fb str r3, [r7, #12] + 8006694: 687b ldr r3, [r7, #4] + 8006696: 681b ldr r3, [r3, #0] + 8006698: 330c adds r3, #12 + 800669a: 60fb str r3, [r7, #12] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006814: 68fb ldr r3, [r7, #12] - 8006816: e853 3f00 ldrex r3, [r3] - 800681a: 60bb str r3, [r7, #8] + 800669c: 68fb ldr r3, [r7, #12] + 800669e: e853 3f00 ldrex r3, [r3] + 80066a2: 60bb str r3, [r7, #8] return(result); - 800681c: 68bb ldr r3, [r7, #8] - 800681e: f023 0310 bic.w r3, r3, #16 - 8006822: 647b str r3, [r7, #68] @ 0x44 - 8006824: 687b ldr r3, [r7, #4] - 8006826: 681b ldr r3, [r3, #0] - 8006828: 330c adds r3, #12 - 800682a: 6c7a ldr r2, [r7, #68] @ 0x44 - 800682c: 61ba str r2, [r7, #24] - 800682e: 617b str r3, [r7, #20] + 80066a4: 68bb ldr r3, [r7, #8] + 80066a6: f023 0310 bic.w r3, r3, #16 + 80066aa: 647b str r3, [r7, #68] @ 0x44 + 80066ac: 687b ldr r3, [r7, #4] + 80066ae: 681b ldr r3, [r3, #0] + 80066b0: 330c adds r3, #12 + 80066b2: 6c7a ldr r2, [r7, #68] @ 0x44 + 80066b4: 61ba str r2, [r7, #24] + 80066b6: 617b str r3, [r7, #20] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006830: 6979 ldr r1, [r7, #20] - 8006832: 69ba ldr r2, [r7, #24] - 8006834: e841 2300 strex r3, r2, [r1] - 8006838: 613b str r3, [r7, #16] + 80066b8: 6979 ldr r1, [r7, #20] + 80066ba: 69ba ldr r2, [r7, #24] + 80066bc: e841 2300 strex r3, r2, [r1] + 80066c0: 613b str r3, [r7, #16] return(result); - 800683a: 693b ldr r3, [r7, #16] - 800683c: 2b00 cmp r3, #0 - 800683e: d1e5 bne.n 800680c + 80066c2: 693b ldr r3, [r7, #16] + 80066c4: 2b00 cmp r3, #0 + 80066c6: d1e5 bne.n 8006694 } /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006840: 687b ldr r3, [r7, #4] - 8006842: 2220 movs r2, #32 - 8006844: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80066c8: 687b ldr r3, [r7, #4] + 80066ca: 2220 movs r2, #32 + 80066cc: f883 2042 strb.w r2, [r3, #66] @ 0x42 huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006848: 687b ldr r3, [r7, #4] - 800684a: 2200 movs r2, #0 - 800684c: 631a str r2, [r3, #48] @ 0x30 + 80066d0: 687b ldr r3, [r7, #4] + 80066d2: 2200 movs r2, #0 + 80066d4: 631a str r2, [r3, #48] @ 0x30 } - 800684e: bf00 nop - 8006850: 3754 adds r7, #84 @ 0x54 - 8006852: 46bd mov sp, r7 - 8006854: f85d 7b04 ldr.w r7, [sp], #4 - 8006858: 4770 bx lr + 80066d6: bf00 nop + 80066d8: 3754 adds r7, #84 @ 0x54 + 80066da: 46bd mov sp, r7 + 80066dc: f85d 7b04 ldr.w r7, [sp], #4 + 80066e0: 4770 bx lr -0800685a : +080066e2 : * @param hdma Pointer to a DMA_HandleTypeDef structure that contains * the configuration information for the specified DMA module. * @retval None */ static void UART_DMAAbortOnError(DMA_HandleTypeDef *hdma) { - 800685a: b580 push {r7, lr} - 800685c: b084 sub sp, #16 - 800685e: af00 add r7, sp, #0 - 8006860: 6078 str r0, [r7, #4] + 80066e2: b580 push {r7, lr} + 80066e4: b084 sub sp, #16 + 80066e6: af00 add r7, sp, #0 + 80066e8: 6078 str r0, [r7, #4] UART_HandleTypeDef *huart = (UART_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; - 8006862: 687b ldr r3, [r7, #4] - 8006864: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006866: 60fb str r3, [r7, #12] + 80066ea: 687b ldr r3, [r7, #4] + 80066ec: 6b9b ldr r3, [r3, #56] @ 0x38 + 80066ee: 60fb str r3, [r7, #12] huart->RxXferCount = 0x00U; - 8006868: 68fb ldr r3, [r7, #12] - 800686a: 2200 movs r2, #0 - 800686c: 85da strh r2, [r3, #46] @ 0x2e + 80066f0: 68fb ldr r3, [r7, #12] + 80066f2: 2200 movs r2, #0 + 80066f4: 85da strh r2, [r3, #46] @ 0x2e #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered error callback*/ huart->ErrorCallback(huart); #else /*Call legacy weak error callback*/ HAL_UART_ErrorCallback(huart); - 800686e: 68f8 ldr r0, [r7, #12] - 8006870: f7ff fcfa bl 8006268 + 80066f6: 68f8 ldr r0, [r7, #12] + 80066f8: f7ff fd52 bl 80061a0 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } - 8006874: bf00 nop - 8006876: 3710 adds r7, #16 - 8006878: 46bd mov sp, r7 - 800687a: bd80 pop {r7, pc} + 80066fc: bf00 nop + 80066fe: 3710 adds r7, #16 + 8006700: 46bd mov sp, r7 + 8006702: bd80 pop {r7, pc} -0800687c : +08006704 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Transmit_IT(UART_HandleTypeDef *huart) { - 800687c: b480 push {r7} - 800687e: b085 sub sp, #20 - 8006880: af00 add r7, sp, #0 - 8006882: 6078 str r0, [r7, #4] + 8006704: b480 push {r7} + 8006706: b085 sub sp, #20 + 8006708: af00 add r7, sp, #0 + 800670a: 6078 str r0, [r7, #4] const uint16_t *tmp; /* Check that a Tx process is ongoing */ if (huart->gState == HAL_UART_STATE_BUSY_TX) - 8006884: 687b ldr r3, [r7, #4] - 8006886: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 - 800688a: b2db uxtb r3, r3 - 800688c: 2b21 cmp r3, #33 @ 0x21 - 800688e: d13e bne.n 800690e + 800670c: 687b ldr r3, [r7, #4] + 800670e: f893 3041 ldrb.w r3, [r3, #65] @ 0x41 + 8006712: b2db uxtb r3, r3 + 8006714: 2b21 cmp r3, #33 @ 0x21 + 8006716: d13e bne.n 8006796 { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8006890: 687b ldr r3, [r7, #4] - 8006892: 689b ldr r3, [r3, #8] - 8006894: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8006898: d114 bne.n 80068c4 - 800689a: 687b ldr r3, [r7, #4] - 800689c: 691b ldr r3, [r3, #16] - 800689e: 2b00 cmp r3, #0 - 80068a0: d110 bne.n 80068c4 + 8006718: 687b ldr r3, [r7, #4] + 800671a: 689b ldr r3, [r3, #8] + 800671c: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8006720: d114 bne.n 800674c + 8006722: 687b ldr r3, [r7, #4] + 8006724: 691b ldr r3, [r3, #16] + 8006726: 2b00 cmp r3, #0 + 8006728: d110 bne.n 800674c { tmp = (const uint16_t *) huart->pTxBuffPtr; - 80068a2: 687b ldr r3, [r7, #4] - 80068a4: 6a1b ldr r3, [r3, #32] - 80068a6: 60fb str r3, [r7, #12] + 800672a: 687b ldr r3, [r7, #4] + 800672c: 6a1b ldr r3, [r3, #32] + 800672e: 60fb str r3, [r7, #12] huart->Instance->DR = (uint16_t)(*tmp & (uint16_t)0x01FF); - 80068a8: 68fb ldr r3, [r7, #12] - 80068aa: 881b ldrh r3, [r3, #0] - 80068ac: 461a mov r2, r3 - 80068ae: 687b ldr r3, [r7, #4] - 80068b0: 681b ldr r3, [r3, #0] - 80068b2: f3c2 0208 ubfx r2, r2, #0, #9 - 80068b6: 605a str r2, [r3, #4] + 8006730: 68fb ldr r3, [r7, #12] + 8006732: 881b ldrh r3, [r3, #0] + 8006734: 461a mov r2, r3 + 8006736: 687b ldr r3, [r7, #4] + 8006738: 681b ldr r3, [r3, #0] + 800673a: f3c2 0208 ubfx r2, r2, #0, #9 + 800673e: 605a str r2, [r3, #4] huart->pTxBuffPtr += 2U; - 80068b8: 687b ldr r3, [r7, #4] - 80068ba: 6a1b ldr r3, [r3, #32] - 80068bc: 1c9a adds r2, r3, #2 - 80068be: 687b ldr r3, [r7, #4] - 80068c0: 621a str r2, [r3, #32] - 80068c2: e008 b.n 80068d6 + 8006740: 687b ldr r3, [r7, #4] + 8006742: 6a1b ldr r3, [r3, #32] + 8006744: 1c9a adds r2, r3, #2 + 8006746: 687b ldr r3, [r7, #4] + 8006748: 621a str r2, [r3, #32] + 800674a: e008 b.n 800675e } else { huart->Instance->DR = (uint8_t)(*huart->pTxBuffPtr++ & (uint8_t)0x00FF); - 80068c4: 687b ldr r3, [r7, #4] - 80068c6: 6a1b ldr r3, [r3, #32] - 80068c8: 1c59 adds r1, r3, #1 - 80068ca: 687a ldr r2, [r7, #4] - 80068cc: 6211 str r1, [r2, #32] - 80068ce: 781a ldrb r2, [r3, #0] - 80068d0: 687b ldr r3, [r7, #4] - 80068d2: 681b ldr r3, [r3, #0] - 80068d4: 605a str r2, [r3, #4] + 800674c: 687b ldr r3, [r7, #4] + 800674e: 6a1b ldr r3, [r3, #32] + 8006750: 1c59 adds r1, r3, #1 + 8006752: 687a ldr r2, [r7, #4] + 8006754: 6211 str r1, [r2, #32] + 8006756: 781a ldrb r2, [r3, #0] + 8006758: 687b ldr r3, [r7, #4] + 800675a: 681b ldr r3, [r3, #0] + 800675c: 605a str r2, [r3, #4] } if (--huart->TxXferCount == 0U) - 80068d6: 687b ldr r3, [r7, #4] - 80068d8: 8cdb ldrh r3, [r3, #38] @ 0x26 - 80068da: b29b uxth r3, r3 - 80068dc: 3b01 subs r3, #1 - 80068de: b29b uxth r3, r3 - 80068e0: 687a ldr r2, [r7, #4] - 80068e2: 4619 mov r1, r3 - 80068e4: 84d1 strh r1, [r2, #38] @ 0x26 - 80068e6: 2b00 cmp r3, #0 - 80068e8: d10f bne.n 800690a + 800675e: 687b ldr r3, [r7, #4] + 8006760: 8cdb ldrh r3, [r3, #38] @ 0x26 + 8006762: b29b uxth r3, r3 + 8006764: 3b01 subs r3, #1 + 8006766: b29b uxth r3, r3 + 8006768: 687a ldr r2, [r7, #4] + 800676a: 4619 mov r1, r3 + 800676c: 84d1 strh r1, [r2, #38] @ 0x26 + 800676e: 2b00 cmp r3, #0 + 8006770: d10f bne.n 8006792 { /* Disable the UART Transmit Data Register Empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TXE); - 80068ea: 687b ldr r3, [r7, #4] - 80068ec: 681b ldr r3, [r3, #0] - 80068ee: 68da ldr r2, [r3, #12] - 80068f0: 687b ldr r3, [r7, #4] - 80068f2: 681b ldr r3, [r3, #0] - 80068f4: f022 0280 bic.w r2, r2, #128 @ 0x80 - 80068f8: 60da str r2, [r3, #12] + 8006772: 687b ldr r3, [r7, #4] + 8006774: 681b ldr r3, [r3, #0] + 8006776: 68da ldr r2, [r3, #12] + 8006778: 687b ldr r3, [r7, #4] + 800677a: 681b ldr r3, [r3, #0] + 800677c: f022 0280 bic.w r2, r2, #128 @ 0x80 + 8006780: 60da str r2, [r3, #12] /* Enable the UART Transmit Complete Interrupt */ __HAL_UART_ENABLE_IT(huart, UART_IT_TC); - 80068fa: 687b ldr r3, [r7, #4] - 80068fc: 681b ldr r3, [r3, #0] - 80068fe: 68da ldr r2, [r3, #12] - 8006900: 687b ldr r3, [r7, #4] - 8006902: 681b ldr r3, [r3, #0] - 8006904: f042 0240 orr.w r2, r2, #64 @ 0x40 - 8006908: 60da str r2, [r3, #12] + 8006782: 687b ldr r3, [r7, #4] + 8006784: 681b ldr r3, [r3, #0] + 8006786: 68da ldr r2, [r3, #12] + 8006788: 687b ldr r3, [r7, #4] + 800678a: 681b ldr r3, [r3, #0] + 800678c: f042 0240 orr.w r2, r2, #64 @ 0x40 + 8006790: 60da str r2, [r3, #12] } return HAL_OK; - 800690a: 2300 movs r3, #0 - 800690c: e000 b.n 8006910 + 8006792: 2300 movs r3, #0 + 8006794: e000 b.n 8006798 } else { return HAL_BUSY; - 800690e: 2302 movs r3, #2 + 8006796: 2302 movs r3, #2 } } - 8006910: 4618 mov r0, r3 - 8006912: 3714 adds r7, #20 - 8006914: 46bd mov sp, r7 - 8006916: f85d 7b04 ldr.w r7, [sp], #4 - 800691a: 4770 bx lr + 8006798: 4618 mov r0, r3 + 800679a: 3714 adds r7, #20 + 800679c: 46bd mov sp, r7 + 800679e: f85d 7b04 ldr.w r7, [sp], #4 + 80067a2: 4770 bx lr -0800691c : +080067a4 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_EndTransmit_IT(UART_HandleTypeDef *huart) { - 800691c: b580 push {r7, lr} - 800691e: b082 sub sp, #8 - 8006920: af00 add r7, sp, #0 - 8006922: 6078 str r0, [r7, #4] + 80067a4: b580 push {r7, lr} + 80067a6: b082 sub sp, #8 + 80067a8: af00 add r7, sp, #0 + 80067aa: 6078 str r0, [r7, #4] /* Disable the UART Transmit Complete Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_TC); - 8006924: 687b ldr r3, [r7, #4] - 8006926: 681b ldr r3, [r3, #0] - 8006928: 68da ldr r2, [r3, #12] - 800692a: 687b ldr r3, [r7, #4] - 800692c: 681b ldr r3, [r3, #0] - 800692e: f022 0240 bic.w r2, r2, #64 @ 0x40 - 8006932: 60da str r2, [r3, #12] + 80067ac: 687b ldr r3, [r7, #4] + 80067ae: 681b ldr r3, [r3, #0] + 80067b0: 68da ldr r2, [r3, #12] + 80067b2: 687b ldr r3, [r7, #4] + 80067b4: 681b ldr r3, [r3, #0] + 80067b6: f022 0240 bic.w r2, r2, #64 @ 0x40 + 80067ba: 60da str r2, [r3, #12] /* Tx process is ended, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 8006934: 687b ldr r3, [r7, #4] - 8006936: 2220 movs r2, #32 - 8006938: f883 2041 strb.w r2, [r3, #65] @ 0x41 + 80067bc: 687b ldr r3, [r7, #4] + 80067be: 2220 movs r2, #32 + 80067c0: f883 2041 strb.w r2, [r3, #65] @ 0x41 #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Tx complete callback*/ huart->TxCpltCallback(huart); #else /*Call legacy weak Tx complete callback*/ HAL_UART_TxCpltCallback(huart); - 800693c: 6878 ldr r0, [r7, #4] - 800693e: f7ff fc75 bl 800622c + 80067c4: 6878 ldr r0, [r7, #4] + 80067c6: f7ff fccd bl 8006164 #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ return HAL_OK; - 8006942: 2300 movs r3, #0 + 80067ca: 2300 movs r3, #0 } - 8006944: 4618 mov r0, r3 - 8006946: 3708 adds r7, #8 - 8006948: 46bd mov sp, r7 - 800694a: bd80 pop {r7, pc} + 80067cc: 4618 mov r0, r3 + 80067ce: 3708 adds r7, #8 + 80067d0: 46bd mov sp, r7 + 80067d2: bd80 pop {r7, pc} -0800694c : +080067d4 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ static HAL_StatusTypeDef UART_Receive_IT(UART_HandleTypeDef *huart) { - 800694c: b580 push {r7, lr} - 800694e: b08c sub sp, #48 @ 0x30 - 8006950: af00 add r7, sp, #0 - 8006952: 6078 str r0, [r7, #4] + 80067d4: b580 push {r7, lr} + 80067d6: b08c sub sp, #48 @ 0x30 + 80067d8: af00 add r7, sp, #0 + 80067da: 6078 str r0, [r7, #4] uint8_t *pdata8bits = NULL; - 8006954: 2300 movs r3, #0 - 8006956: 62fb str r3, [r7, #44] @ 0x2c + 80067dc: 2300 movs r3, #0 + 80067de: 62fb str r3, [r7, #44] @ 0x2c uint16_t *pdata16bits = NULL; - 8006958: 2300 movs r3, #0 - 800695a: 62bb str r3, [r7, #40] @ 0x28 + 80067e0: 2300 movs r3, #0 + 80067e2: 62bb str r3, [r7, #40] @ 0x28 /* Check that a Rx process is ongoing */ if (huart->RxState == HAL_UART_STATE_BUSY_RX) - 800695c: 687b ldr r3, [r7, #4] - 800695e: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 - 8006962: b2db uxtb r3, r3 - 8006964: 2b22 cmp r3, #34 @ 0x22 - 8006966: f040 80aa bne.w 8006abe + 80067e4: 687b ldr r3, [r7, #4] + 80067e6: f893 3042 ldrb.w r3, [r3, #66] @ 0x42 + 80067ea: b2db uxtb r3, r3 + 80067ec: 2b22 cmp r3, #34 @ 0x22 + 80067ee: f040 80aa bne.w 8006946 { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 800696a: 687b ldr r3, [r7, #4] - 800696c: 689b ldr r3, [r3, #8] - 800696e: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 8006972: d115 bne.n 80069a0 - 8006974: 687b ldr r3, [r7, #4] - 8006976: 691b ldr r3, [r3, #16] - 8006978: 2b00 cmp r3, #0 - 800697a: d111 bne.n 80069a0 + 80067f2: 687b ldr r3, [r7, #4] + 80067f4: 689b ldr r3, [r3, #8] + 80067f6: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 80067fa: d115 bne.n 8006828 + 80067fc: 687b ldr r3, [r7, #4] + 80067fe: 691b ldr r3, [r3, #16] + 8006800: 2b00 cmp r3, #0 + 8006802: d111 bne.n 8006828 { /* Unused pdata8bits */ UNUSED(pdata8bits); pdata16bits = (uint16_t *) huart->pRxBuffPtr; - 800697c: 687b ldr r3, [r7, #4] - 800697e: 6a9b ldr r3, [r3, #40] @ 0x28 - 8006980: 62bb str r3, [r7, #40] @ 0x28 + 8006804: 687b ldr r3, [r7, #4] + 8006806: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006808: 62bb str r3, [r7, #40] @ 0x28 *pdata16bits = (uint16_t)(huart->Instance->DR & (uint16_t)0x01FF); - 8006982: 687b ldr r3, [r7, #4] - 8006984: 681b ldr r3, [r3, #0] - 8006986: 685b ldr r3, [r3, #4] - 8006988: b29b uxth r3, r3 - 800698a: f3c3 0308 ubfx r3, r3, #0, #9 - 800698e: b29a uxth r2, r3 - 8006990: 6abb ldr r3, [r7, #40] @ 0x28 - 8006992: 801a strh r2, [r3, #0] + 800680a: 687b ldr r3, [r7, #4] + 800680c: 681b ldr r3, [r3, #0] + 800680e: 685b ldr r3, [r3, #4] + 8006810: b29b uxth r3, r3 + 8006812: f3c3 0308 ubfx r3, r3, #0, #9 + 8006816: b29a uxth r2, r3 + 8006818: 6abb ldr r3, [r7, #40] @ 0x28 + 800681a: 801a strh r2, [r3, #0] huart->pRxBuffPtr += 2U; - 8006994: 687b ldr r3, [r7, #4] - 8006996: 6a9b ldr r3, [r3, #40] @ 0x28 - 8006998: 1c9a adds r2, r3, #2 - 800699a: 687b ldr r3, [r7, #4] - 800699c: 629a str r2, [r3, #40] @ 0x28 - 800699e: e024 b.n 80069ea + 800681c: 687b ldr r3, [r7, #4] + 800681e: 6a9b ldr r3, [r3, #40] @ 0x28 + 8006820: 1c9a adds r2, r3, #2 + 8006822: 687b ldr r3, [r7, #4] + 8006824: 629a str r2, [r3, #40] @ 0x28 + 8006826: e024 b.n 8006872 } else { pdata8bits = (uint8_t *) huart->pRxBuffPtr; - 80069a0: 687b ldr r3, [r7, #4] - 80069a2: 6a9b ldr r3, [r3, #40] @ 0x28 - 80069a4: 62fb str r3, [r7, #44] @ 0x2c + 8006828: 687b ldr r3, [r7, #4] + 800682a: 6a9b ldr r3, [r3, #40] @ 0x28 + 800682c: 62fb str r3, [r7, #44] @ 0x2c /* Unused pdata16bits */ UNUSED(pdata16bits); if ((huart->Init.WordLength == UART_WORDLENGTH_9B) || ((huart->Init.WordLength == UART_WORDLENGTH_8B) && (huart->Init.Parity == UART_PARITY_NONE))) - 80069a6: 687b ldr r3, [r7, #4] - 80069a8: 689b ldr r3, [r3, #8] - 80069aa: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 - 80069ae: d007 beq.n 80069c0 - 80069b0: 687b ldr r3, [r7, #4] - 80069b2: 689b ldr r3, [r3, #8] - 80069b4: 2b00 cmp r3, #0 - 80069b6: d10a bne.n 80069ce - 80069b8: 687b ldr r3, [r7, #4] - 80069ba: 691b ldr r3, [r3, #16] - 80069bc: 2b00 cmp r3, #0 - 80069be: d106 bne.n 80069ce + 800682e: 687b ldr r3, [r7, #4] + 8006830: 689b ldr r3, [r3, #8] + 8006832: f5b3 5f80 cmp.w r3, #4096 @ 0x1000 + 8006836: d007 beq.n 8006848 + 8006838: 687b ldr r3, [r7, #4] + 800683a: 689b ldr r3, [r3, #8] + 800683c: 2b00 cmp r3, #0 + 800683e: d10a bne.n 8006856 + 8006840: 687b ldr r3, [r7, #4] + 8006842: 691b ldr r3, [r3, #16] + 8006844: 2b00 cmp r3, #0 + 8006846: d106 bne.n 8006856 { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x00FF); - 80069c0: 687b ldr r3, [r7, #4] - 80069c2: 681b ldr r3, [r3, #0] - 80069c4: 685b ldr r3, [r3, #4] - 80069c6: b2da uxtb r2, r3 - 80069c8: 6afb ldr r3, [r7, #44] @ 0x2c - 80069ca: 701a strb r2, [r3, #0] - 80069cc: e008 b.n 80069e0 + 8006848: 687b ldr r3, [r7, #4] + 800684a: 681b ldr r3, [r3, #0] + 800684c: 685b ldr r3, [r3, #4] + 800684e: b2da uxtb r2, r3 + 8006850: 6afb ldr r3, [r7, #44] @ 0x2c + 8006852: 701a strb r2, [r3, #0] + 8006854: e008 b.n 8006868 } else { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x007F); - 80069ce: 687b ldr r3, [r7, #4] - 80069d0: 681b ldr r3, [r3, #0] - 80069d2: 685b ldr r3, [r3, #4] - 80069d4: b2db uxtb r3, r3 - 80069d6: f003 037f and.w r3, r3, #127 @ 0x7f - 80069da: b2da uxtb r2, r3 - 80069dc: 6afb ldr r3, [r7, #44] @ 0x2c - 80069de: 701a strb r2, [r3, #0] + 8006856: 687b ldr r3, [r7, #4] + 8006858: 681b ldr r3, [r3, #0] + 800685a: 685b ldr r3, [r3, #4] + 800685c: b2db uxtb r3, r3 + 800685e: f003 037f and.w r3, r3, #127 @ 0x7f + 8006862: b2da uxtb r2, r3 + 8006864: 6afb ldr r3, [r7, #44] @ 0x2c + 8006866: 701a strb r2, [r3, #0] } huart->pRxBuffPtr += 1U; - 80069e0: 687b ldr r3, [r7, #4] - 80069e2: 6a9b ldr r3, [r3, #40] @ 0x28 - 80069e4: 1c5a adds r2, r3, #1 - 80069e6: 687b ldr r3, [r7, #4] - 80069e8: 629a str r2, [r3, #40] @ 0x28 + 8006868: 687b ldr r3, [r7, #4] + 800686a: 6a9b ldr r3, [r3, #40] @ 0x28 + 800686c: 1c5a adds r2, r3, #1 + 800686e: 687b ldr r3, [r7, #4] + 8006870: 629a str r2, [r3, #40] @ 0x28 } if (--huart->RxXferCount == 0U) - 80069ea: 687b ldr r3, [r7, #4] - 80069ec: 8ddb ldrh r3, [r3, #46] @ 0x2e - 80069ee: b29b uxth r3, r3 - 80069f0: 3b01 subs r3, #1 - 80069f2: b29b uxth r3, r3 - 80069f4: 687a ldr r2, [r7, #4] - 80069f6: 4619 mov r1, r3 - 80069f8: 85d1 strh r1, [r2, #46] @ 0x2e - 80069fa: 2b00 cmp r3, #0 - 80069fc: d15d bne.n 8006aba + 8006872: 687b ldr r3, [r7, #4] + 8006874: 8ddb ldrh r3, [r3, #46] @ 0x2e + 8006876: b29b uxth r3, r3 + 8006878: 3b01 subs r3, #1 + 800687a: b29b uxth r3, r3 + 800687c: 687a ldr r2, [r7, #4] + 800687e: 4619 mov r1, r3 + 8006880: 85d1 strh r1, [r2, #46] @ 0x2e + 8006882: 2b00 cmp r3, #0 + 8006884: d15d bne.n 8006942 { /* Disable the UART Data Register not empty Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_RXNE); - 80069fe: 687b ldr r3, [r7, #4] - 8006a00: 681b ldr r3, [r3, #0] - 8006a02: 68da ldr r2, [r3, #12] - 8006a04: 687b ldr r3, [r7, #4] - 8006a06: 681b ldr r3, [r3, #0] - 8006a08: f022 0220 bic.w r2, r2, #32 - 8006a0c: 60da str r2, [r3, #12] + 8006886: 687b ldr r3, [r7, #4] + 8006888: 681b ldr r3, [r3, #0] + 800688a: 68da ldr r2, [r3, #12] + 800688c: 687b ldr r3, [r7, #4] + 800688e: 681b ldr r3, [r3, #0] + 8006890: f022 0220 bic.w r2, r2, #32 + 8006894: 60da str r2, [r3, #12] /* Disable the UART Parity Error Interrupt */ __HAL_UART_DISABLE_IT(huart, UART_IT_PE); - 8006a0e: 687b ldr r3, [r7, #4] - 8006a10: 681b ldr r3, [r3, #0] - 8006a12: 68da ldr r2, [r3, #12] - 8006a14: 687b ldr r3, [r7, #4] - 8006a16: 681b ldr r3, [r3, #0] - 8006a18: f422 7280 bic.w r2, r2, #256 @ 0x100 - 8006a1c: 60da str r2, [r3, #12] + 8006896: 687b ldr r3, [r7, #4] + 8006898: 681b ldr r3, [r3, #0] + 800689a: 68da ldr r2, [r3, #12] + 800689c: 687b ldr r3, [r7, #4] + 800689e: 681b ldr r3, [r3, #0] + 80068a0: f422 7280 bic.w r2, r2, #256 @ 0x100 + 80068a4: 60da str r2, [r3, #12] /* Disable the UART Error Interrupt: (Frame error, noise error, overrun error) */ __HAL_UART_DISABLE_IT(huart, UART_IT_ERR); - 8006a1e: 687b ldr r3, [r7, #4] - 8006a20: 681b ldr r3, [r3, #0] - 8006a22: 695a ldr r2, [r3, #20] - 8006a24: 687b ldr r3, [r7, #4] - 8006a26: 681b ldr r3, [r3, #0] - 8006a28: f022 0201 bic.w r2, r2, #1 - 8006a2c: 615a str r2, [r3, #20] + 80068a6: 687b ldr r3, [r7, #4] + 80068a8: 681b ldr r3, [r3, #0] + 80068aa: 695a ldr r2, [r3, #20] + 80068ac: 687b ldr r3, [r7, #4] + 80068ae: 681b ldr r3, [r3, #0] + 80068b0: f022 0201 bic.w r2, r2, #1 + 80068b4: 615a str r2, [r3, #20] /* Rx process is completed, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 8006a2e: 687b ldr r3, [r7, #4] - 8006a30: 2220 movs r2, #32 - 8006a32: f883 2042 strb.w r2, [r3, #66] @ 0x42 + 80068b6: 687b ldr r3, [r7, #4] + 80068b8: 2220 movs r2, #32 + 80068ba: f883 2042 strb.w r2, [r3, #66] @ 0x42 /* Initialize type of RxEvent to Transfer Complete */ huart->RxEventType = HAL_UART_RXEVENT_TC; - 8006a36: 687b ldr r3, [r7, #4] - 8006a38: 2200 movs r2, #0 - 8006a3a: 635a str r2, [r3, #52] @ 0x34 + 80068be: 687b ldr r3, [r7, #4] + 80068c0: 2200 movs r2, #0 + 80068c2: 635a str r2, [r3, #52] @ 0x34 /* Check current reception Mode : If Reception till IDLE event has been selected : */ if (huart->ReceptionType == HAL_UART_RECEPTION_TOIDLE) - 8006a3c: 687b ldr r3, [r7, #4] - 8006a3e: 6b1b ldr r3, [r3, #48] @ 0x30 - 8006a40: 2b01 cmp r3, #1 - 8006a42: d135 bne.n 8006ab0 + 80068c4: 687b ldr r3, [r7, #4] + 80068c6: 6b1b ldr r3, [r3, #48] @ 0x30 + 80068c8: 2b01 cmp r3, #1 + 80068ca: d135 bne.n 8006938 { /* Set reception type to Standard */ huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8006a44: 687b ldr r3, [r7, #4] - 8006a46: 2200 movs r2, #0 - 8006a48: 631a str r2, [r3, #48] @ 0x30 + 80068cc: 687b ldr r3, [r7, #4] + 80068ce: 2200 movs r2, #0 + 80068d0: 631a str r2, [r3, #48] @ 0x30 /* Disable IDLE interrupt */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, USART_CR1_IDLEIE); - 8006a4a: 687b ldr r3, [r7, #4] - 8006a4c: 681b ldr r3, [r3, #0] - 8006a4e: 330c adds r3, #12 - 8006a50: 617b str r3, [r7, #20] + 80068d2: 687b ldr r3, [r7, #4] + 80068d4: 681b ldr r3, [r3, #0] + 80068d6: 330c adds r3, #12 + 80068d8: 617b str r3, [r7, #20] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 8006a52: 697b ldr r3, [r7, #20] - 8006a54: e853 3f00 ldrex r3, [r3] - 8006a58: 613b str r3, [r7, #16] + 80068da: 697b ldr r3, [r7, #20] + 80068dc: e853 3f00 ldrex r3, [r3] + 80068e0: 613b str r3, [r7, #16] return(result); - 8006a5a: 693b ldr r3, [r7, #16] - 8006a5c: f023 0310 bic.w r3, r3, #16 - 8006a60: 627b str r3, [r7, #36] @ 0x24 - 8006a62: 687b ldr r3, [r7, #4] - 8006a64: 681b ldr r3, [r3, #0] - 8006a66: 330c adds r3, #12 - 8006a68: 6a7a ldr r2, [r7, #36] @ 0x24 - 8006a6a: 623a str r2, [r7, #32] - 8006a6c: 61fb str r3, [r7, #28] + 80068e2: 693b ldr r3, [r7, #16] + 80068e4: f023 0310 bic.w r3, r3, #16 + 80068e8: 627b str r3, [r7, #36] @ 0x24 + 80068ea: 687b ldr r3, [r7, #4] + 80068ec: 681b ldr r3, [r3, #0] + 80068ee: 330c adds r3, #12 + 80068f0: 6a7a ldr r2, [r7, #36] @ 0x24 + 80068f2: 623a str r2, [r7, #32] + 80068f4: 61fb str r3, [r7, #28] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 8006a6e: 69f9 ldr r1, [r7, #28] - 8006a70: 6a3a ldr r2, [r7, #32] - 8006a72: e841 2300 strex r3, r2, [r1] - 8006a76: 61bb str r3, [r7, #24] + 80068f6: 69f9 ldr r1, [r7, #28] + 80068f8: 6a3a ldr r2, [r7, #32] + 80068fa: e841 2300 strex r3, r2, [r1] + 80068fe: 61bb str r3, [r7, #24] return(result); - 8006a78: 69bb ldr r3, [r7, #24] - 8006a7a: 2b00 cmp r3, #0 - 8006a7c: d1e5 bne.n 8006a4a + 8006900: 69bb ldr r3, [r7, #24] + 8006902: 2b00 cmp r3, #0 + 8006904: d1e5 bne.n 80068d2 /* Check if IDLE flag is set */ if (__HAL_UART_GET_FLAG(huart, UART_FLAG_IDLE)) - 8006a7e: 687b ldr r3, [r7, #4] - 8006a80: 681b ldr r3, [r3, #0] - 8006a82: 681b ldr r3, [r3, #0] - 8006a84: f003 0310 and.w r3, r3, #16 - 8006a88: 2b10 cmp r3, #16 - 8006a8a: d10a bne.n 8006aa2 + 8006906: 687b ldr r3, [r7, #4] + 8006908: 681b ldr r3, [r3, #0] + 800690a: 681b ldr r3, [r3, #0] + 800690c: f003 0310 and.w r3, r3, #16 + 8006910: 2b10 cmp r3, #16 + 8006912: d10a bne.n 800692a { /* Clear IDLE flag in ISR */ __HAL_UART_CLEAR_IDLEFLAG(huart); - 8006a8c: 2300 movs r3, #0 - 8006a8e: 60fb str r3, [r7, #12] - 8006a90: 687b ldr r3, [r7, #4] - 8006a92: 681b ldr r3, [r3, #0] - 8006a94: 681b ldr r3, [r3, #0] - 8006a96: 60fb str r3, [r7, #12] - 8006a98: 687b ldr r3, [r7, #4] - 8006a9a: 681b ldr r3, [r3, #0] - 8006a9c: 685b ldr r3, [r3, #4] - 8006a9e: 60fb str r3, [r7, #12] - 8006aa0: 68fb ldr r3, [r7, #12] + 8006914: 2300 movs r3, #0 + 8006916: 60fb str r3, [r7, #12] + 8006918: 687b ldr r3, [r7, #4] + 800691a: 681b ldr r3, [r3, #0] + 800691c: 681b ldr r3, [r3, #0] + 800691e: 60fb str r3, [r7, #12] + 8006920: 687b ldr r3, [r7, #4] + 8006922: 681b ldr r3, [r3, #0] + 8006924: 685b ldr r3, [r3, #4] + 8006926: 60fb str r3, [r7, #12] + 8006928: 68fb ldr r3, [r7, #12] #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx Event callback*/ huart->RxEventCallback(huart, huart->RxXferSize); #else /*Call legacy weak Rx Event callback*/ HAL_UARTEx_RxEventCallback(huart, huart->RxXferSize); - 8006aa2: 687b ldr r3, [r7, #4] - 8006aa4: 8d9b ldrh r3, [r3, #44] @ 0x2c - 8006aa6: 4619 mov r1, r3 - 8006aa8: 6878 ldr r0, [r7, #4] - 8006aaa: f7ff fbe7 bl 800627c - 8006aae: e002 b.n 8006ab6 + 800692a: 687b ldr r3, [r7, #4] + 800692c: 8d9b ldrh r3, [r3, #44] @ 0x2c + 800692e: 4619 mov r1, r3 + 8006930: 6878 ldr r0, [r7, #4] + 8006932: f7ff fc3f bl 80061b4 + 8006936: e002 b.n 800693e #if (USE_HAL_UART_REGISTER_CALLBACKS == 1) /*Call registered Rx complete callback*/ huart->RxCpltCallback(huart); #else /*Call legacy weak Rx complete callback*/ HAL_UART_RxCpltCallback(huart); - 8006ab0: 6878 ldr r0, [r7, #4] - 8006ab2: f7f9 ffc3 bl 8000a3c + 8006938: 6878 ldr r0, [r7, #4] + 800693a: f7fa f897 bl 8000a6c #endif /* USE_HAL_UART_REGISTER_CALLBACKS */ } return HAL_OK; - 8006ab6: 2300 movs r3, #0 - 8006ab8: e002 b.n 8006ac0 + 800693e: 2300 movs r3, #0 + 8006940: e002 b.n 8006948 } return HAL_OK; - 8006aba: 2300 movs r3, #0 - 8006abc: e000 b.n 8006ac0 + 8006942: 2300 movs r3, #0 + 8006944: e000 b.n 8006948 } else { return HAL_BUSY; - 8006abe: 2302 movs r3, #2 + 8006946: 2302 movs r3, #2 } } - 8006ac0: 4618 mov r0, r3 - 8006ac2: 3730 adds r7, #48 @ 0x30 - 8006ac4: 46bd mov sp, r7 - 8006ac6: bd80 pop {r7, pc} + 8006948: 4618 mov r0, r3 + 800694a: 3730 adds r7, #48 @ 0x30 + 800694c: 46bd mov sp, r7 + 800694e: bd80 pop {r7, pc} -08006ac8 : +08006950 : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ static void UART_SetConfig(UART_HandleTypeDef *huart) { - 8006ac8: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 8006acc: b0c0 sub sp, #256 @ 0x100 - 8006ace: af00 add r7, sp, #0 - 8006ad0: f8c7 00f4 str.w r0, [r7, #244] @ 0xf4 + 8006950: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 8006954: b0c0 sub sp, #256 @ 0x100 + 8006956: af00 add r7, sp, #0 + 8006958: f8c7 00f4 str.w r0, [r7, #244] @ 0xf4 assert_param(IS_UART_MODE(huart->Init.Mode)); /*-------------------------- USART CR2 Configuration -----------------------*/ /* Configure the UART Stop Bits: Set STOP[13:12] bits according to huart->Init.StopBits value */ MODIFY_REG(huart->Instance->CR2, USART_CR2_STOP, huart->Init.StopBits); - 8006ad4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ad8: 681b ldr r3, [r3, #0] - 8006ada: 691b ldr r3, [r3, #16] - 8006adc: f423 5040 bic.w r0, r3, #12288 @ 0x3000 - 8006ae0: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006ae4: 68d9 ldr r1, [r3, #12] - 8006ae6: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006aea: 681a ldr r2, [r3, #0] - 8006aec: ea40 0301 orr.w r3, r0, r1 - 8006af0: 6113 str r3, [r2, #16] + 800695c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006960: 681b ldr r3, [r3, #0] + 8006962: 691b ldr r3, [r3, #16] + 8006964: f423 5040 bic.w r0, r3, #12288 @ 0x3000 + 8006968: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800696c: 68d9 ldr r1, [r3, #12] + 800696e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006972: 681a ldr r2, [r3, #0] + 8006974: ea40 0301 orr.w r3, r0, r1 + 8006978: 6113 str r3, [r2, #16] Set the M bits according to huart->Init.WordLength value Set PCE and PS bits according to huart->Init.Parity value Set TE and RE bits according to huart->Init.Mode value Set OVER8 bit according to huart->Init.OverSampling value */ tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling; - 8006af2: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006af6: 689a ldr r2, [r3, #8] - 8006af8: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006afc: 691b ldr r3, [r3, #16] - 8006afe: 431a orrs r2, r3 - 8006b00: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b04: 695b ldr r3, [r3, #20] - 8006b06: 431a orrs r2, r3 - 8006b08: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b0c: 69db ldr r3, [r3, #28] - 8006b0e: 4313 orrs r3, r2 - 8006b10: f8c7 30f8 str.w r3, [r7, #248] @ 0xf8 + 800697a: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800697e: 689a ldr r2, [r3, #8] + 8006980: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006984: 691b ldr r3, [r3, #16] + 8006986: 431a orrs r2, r3 + 8006988: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 800698c: 695b ldr r3, [r3, #20] + 800698e: 431a orrs r2, r3 + 8006990: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006994: 69db ldr r3, [r3, #28] + 8006996: 4313 orrs r3, r2 + 8006998: f8c7 30f8 str.w r3, [r7, #248] @ 0xf8 MODIFY_REG(huart->Instance->CR1, - 8006b14: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b18: 681b ldr r3, [r3, #0] - 8006b1a: 68db ldr r3, [r3, #12] - 8006b1c: f423 4116 bic.w r1, r3, #38400 @ 0x9600 - 8006b20: f021 010c bic.w r1, r1, #12 - 8006b24: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b28: 681a ldr r2, [r3, #0] - 8006b2a: f8d7 30f8 ldr.w r3, [r7, #248] @ 0xf8 - 8006b2e: 430b orrs r3, r1 - 8006b30: 60d3 str r3, [r2, #12] + 800699c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069a0: 681b ldr r3, [r3, #0] + 80069a2: 68db ldr r3, [r3, #12] + 80069a4: f423 4116 bic.w r1, r3, #38400 @ 0x9600 + 80069a8: f021 010c bic.w r1, r1, #12 + 80069ac: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069b0: 681a ldr r2, [r3, #0] + 80069b2: f8d7 30f8 ldr.w r3, [r7, #248] @ 0xf8 + 80069b6: 430b orrs r3, r1 + 80069b8: 60d3 str r3, [r2, #12] (uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), tmpreg); /*-------------------------- USART CR3 Configuration -----------------------*/ /* Configure the UART HFC: Set CTSE and RTSE bits according to huart->Init.HwFlowCtl value */ MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE), huart->Init.HwFlowCtl); - 8006b32: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b36: 681b ldr r3, [r3, #0] - 8006b38: 695b ldr r3, [r3, #20] - 8006b3a: f423 7040 bic.w r0, r3, #768 @ 0x300 - 8006b3e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b42: 6999 ldr r1, [r3, #24] - 8006b44: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b48: 681a ldr r2, [r3, #0] - 8006b4a: ea40 0301 orr.w r3, r0, r1 - 8006b4e: 6153 str r3, [r2, #20] + 80069ba: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069be: 681b ldr r3, [r3, #0] + 80069c0: 695b ldr r3, [r3, #20] + 80069c2: f423 7040 bic.w r0, r3, #768 @ 0x300 + 80069c6: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069ca: 6999 ldr r1, [r3, #24] + 80069cc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069d0: 681a ldr r2, [r3, #0] + 80069d2: ea40 0301 orr.w r3, r0, r1 + 80069d6: 6153 str r3, [r2, #20] if ((huart->Instance == USART1) || (huart->Instance == USART6) || (huart->Instance == UART9) || (huart->Instance == UART10)) { pclk = HAL_RCC_GetPCLK2Freq(); } #elif defined(USART6) if ((huart->Instance == USART1) || (huart->Instance == USART6)) - 8006b50: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b54: 681a ldr r2, [r3, #0] - 8006b56: 4b8f ldr r3, [pc, #572] @ (8006d94 ) - 8006b58: 429a cmp r2, r3 - 8006b5a: d005 beq.n 8006b68 - 8006b5c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b60: 681a ldr r2, [r3, #0] - 8006b62: 4b8d ldr r3, [pc, #564] @ (8006d98 ) - 8006b64: 429a cmp r2, r3 - 8006b66: d104 bne.n 8006b72 + 80069d8: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069dc: 681a ldr r2, [r3, #0] + 80069de: 4b8f ldr r3, [pc, #572] @ (8006c1c ) + 80069e0: 429a cmp r2, r3 + 80069e2: d005 beq.n 80069f0 + 80069e4: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 80069e8: 681a ldr r2, [r3, #0] + 80069ea: 4b8d ldr r3, [pc, #564] @ (8006c20 ) + 80069ec: 429a cmp r2, r3 + 80069ee: d104 bne.n 80069fa { pclk = HAL_RCC_GetPCLK2Freq(); - 8006b68: f7fd fb08 bl 800417c - 8006b6c: f8c7 00fc str.w r0, [r7, #252] @ 0xfc - 8006b70: e003 b.n 8006b7a + 80069f0: f7fd fbec bl 80041cc + 80069f4: f8c7 00fc str.w r0, [r7, #252] @ 0xfc + 80069f8: e003 b.n 8006a02 pclk = HAL_RCC_GetPCLK2Freq(); } #endif /* USART6 */ else { pclk = HAL_RCC_GetPCLK1Freq(); - 8006b72: f7fd faef bl 8004154 - 8006b76: f8c7 00fc str.w r0, [r7, #252] @ 0xfc + 80069fa: f7fd fbd3 bl 80041a4 + 80069fe: f8c7 00fc str.w r0, [r7, #252] @ 0xfc } /*-------------------------- USART BRR Configuration ---------------------*/ if (huart->Init.OverSampling == UART_OVERSAMPLING_8) - 8006b7a: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006b7e: 69db ldr r3, [r3, #28] - 8006b80: f5b3 4f00 cmp.w r3, #32768 @ 0x8000 - 8006b84: f040 810c bne.w 8006da0 + 8006a02: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006a06: 69db ldr r3, [r3, #28] + 8006a08: f5b3 4f00 cmp.w r3, #32768 @ 0x8000 + 8006a0c: f040 810c bne.w 8006c28 { huart->Instance->BRR = UART_BRR_SAMPLING8(pclk, huart->Init.BaudRate); - 8006b88: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006b8c: 2200 movs r2, #0 - 8006b8e: f8c7 30e8 str.w r3, [r7, #232] @ 0xe8 - 8006b92: f8c7 20ec str.w r2, [r7, #236] @ 0xec - 8006b96: e9d7 453a ldrd r4, r5, [r7, #232] @ 0xe8 - 8006b9a: 4622 mov r2, r4 - 8006b9c: 462b mov r3, r5 - 8006b9e: 1891 adds r1, r2, r2 - 8006ba0: 65b9 str r1, [r7, #88] @ 0x58 - 8006ba2: 415b adcs r3, r3 - 8006ba4: 65fb str r3, [r7, #92] @ 0x5c - 8006ba6: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 - 8006baa: 4621 mov r1, r4 - 8006bac: eb12 0801 adds.w r8, r2, r1 - 8006bb0: 4629 mov r1, r5 - 8006bb2: eb43 0901 adc.w r9, r3, r1 - 8006bb6: f04f 0200 mov.w r2, #0 - 8006bba: f04f 0300 mov.w r3, #0 - 8006bbe: ea4f 03c9 mov.w r3, r9, lsl #3 - 8006bc2: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8006bc6: ea4f 02c8 mov.w r2, r8, lsl #3 - 8006bca: 4690 mov r8, r2 - 8006bcc: 4699 mov r9, r3 - 8006bce: 4623 mov r3, r4 - 8006bd0: eb18 0303 adds.w r3, r8, r3 - 8006bd4: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 - 8006bd8: 462b mov r3, r5 - 8006bda: eb49 0303 adc.w r3, r9, r3 - 8006bde: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 - 8006be2: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006be6: 685b ldr r3, [r3, #4] - 8006be8: 2200 movs r2, #0 - 8006bea: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 - 8006bee: f8c7 20dc str.w r2, [r7, #220] @ 0xdc - 8006bf2: e9d7 1236 ldrd r1, r2, [r7, #216] @ 0xd8 - 8006bf6: 460b mov r3, r1 - 8006bf8: 18db adds r3, r3, r3 - 8006bfa: 653b str r3, [r7, #80] @ 0x50 - 8006bfc: 4613 mov r3, r2 - 8006bfe: eb42 0303 adc.w r3, r2, r3 - 8006c02: 657b str r3, [r7, #84] @ 0x54 - 8006c04: e9d7 2314 ldrd r2, r3, [r7, #80] @ 0x50 - 8006c08: e9d7 0138 ldrd r0, r1, [r7, #224] @ 0xe0 - 8006c0c: f7f9 fafa bl 8000204 <__aeabi_uldivmod> - 8006c10: 4602 mov r2, r0 - 8006c12: 460b mov r3, r1 - 8006c14: 4b61 ldr r3, [pc, #388] @ (8006d9c ) - 8006c16: fba3 2302 umull r2, r3, r3, r2 - 8006c1a: 095b lsrs r3, r3, #5 - 8006c1c: 011c lsls r4, r3, #4 - 8006c1e: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006c22: 2200 movs r2, #0 - 8006c24: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 - 8006c28: f8c7 20d4 str.w r2, [r7, #212] @ 0xd4 - 8006c2c: e9d7 8934 ldrd r8, r9, [r7, #208] @ 0xd0 - 8006c30: 4642 mov r2, r8 - 8006c32: 464b mov r3, r9 - 8006c34: 1891 adds r1, r2, r2 - 8006c36: 64b9 str r1, [r7, #72] @ 0x48 - 8006c38: 415b adcs r3, r3 - 8006c3a: 64fb str r3, [r7, #76] @ 0x4c - 8006c3c: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 - 8006c40: 4641 mov r1, r8 - 8006c42: eb12 0a01 adds.w sl, r2, r1 - 8006c46: 4649 mov r1, r9 - 8006c48: eb43 0b01 adc.w fp, r3, r1 - 8006c4c: f04f 0200 mov.w r2, #0 - 8006c50: f04f 0300 mov.w r3, #0 - 8006c54: ea4f 03cb mov.w r3, fp, lsl #3 - 8006c58: ea43 735a orr.w r3, r3, sl, lsr #29 - 8006c5c: ea4f 02ca mov.w r2, sl, lsl #3 - 8006c60: 4692 mov sl, r2 - 8006c62: 469b mov fp, r3 - 8006c64: 4643 mov r3, r8 - 8006c66: eb1a 0303 adds.w r3, sl, r3 - 8006c6a: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 - 8006c6e: 464b mov r3, r9 - 8006c70: eb4b 0303 adc.w r3, fp, r3 - 8006c74: f8c7 30cc str.w r3, [r7, #204] @ 0xcc - 8006c78: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006c7c: 685b ldr r3, [r3, #4] - 8006c7e: 2200 movs r2, #0 - 8006c80: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 - 8006c84: f8c7 20c4 str.w r2, [r7, #196] @ 0xc4 - 8006c88: e9d7 1230 ldrd r1, r2, [r7, #192] @ 0xc0 - 8006c8c: 460b mov r3, r1 - 8006c8e: 18db adds r3, r3, r3 - 8006c90: 643b str r3, [r7, #64] @ 0x40 - 8006c92: 4613 mov r3, r2 - 8006c94: eb42 0303 adc.w r3, r2, r3 - 8006c98: 647b str r3, [r7, #68] @ 0x44 - 8006c9a: e9d7 2310 ldrd r2, r3, [r7, #64] @ 0x40 - 8006c9e: e9d7 0132 ldrd r0, r1, [r7, #200] @ 0xc8 - 8006ca2: f7f9 faaf bl 8000204 <__aeabi_uldivmod> - 8006ca6: 4602 mov r2, r0 - 8006ca8: 460b mov r3, r1 - 8006caa: 4611 mov r1, r2 - 8006cac: 4b3b ldr r3, [pc, #236] @ (8006d9c ) - 8006cae: fba3 2301 umull r2, r3, r3, r1 - 8006cb2: 095b lsrs r3, r3, #5 - 8006cb4: 2264 movs r2, #100 @ 0x64 - 8006cb6: fb02 f303 mul.w r3, r2, r3 - 8006cba: 1acb subs r3, r1, r3 - 8006cbc: 00db lsls r3, r3, #3 - 8006cbe: f103 0232 add.w r2, r3, #50 @ 0x32 - 8006cc2: 4b36 ldr r3, [pc, #216] @ (8006d9c ) - 8006cc4: fba3 2302 umull r2, r3, r3, r2 - 8006cc8: 095b lsrs r3, r3, #5 - 8006cca: 005b lsls r3, r3, #1 - 8006ccc: f403 73f8 and.w r3, r3, #496 @ 0x1f0 - 8006cd0: 441c add r4, r3 - 8006cd2: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006cd6: 2200 movs r2, #0 - 8006cd8: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 - 8006cdc: f8c7 20bc str.w r2, [r7, #188] @ 0xbc - 8006ce0: e9d7 892e ldrd r8, r9, [r7, #184] @ 0xb8 - 8006ce4: 4642 mov r2, r8 - 8006ce6: 464b mov r3, r9 - 8006ce8: 1891 adds r1, r2, r2 - 8006cea: 63b9 str r1, [r7, #56] @ 0x38 - 8006cec: 415b adcs r3, r3 - 8006cee: 63fb str r3, [r7, #60] @ 0x3c - 8006cf0: e9d7 230e ldrd r2, r3, [r7, #56] @ 0x38 - 8006cf4: 4641 mov r1, r8 - 8006cf6: 1851 adds r1, r2, r1 - 8006cf8: 6339 str r1, [r7, #48] @ 0x30 - 8006cfa: 4649 mov r1, r9 - 8006cfc: 414b adcs r3, r1 - 8006cfe: 637b str r3, [r7, #52] @ 0x34 - 8006d00: f04f 0200 mov.w r2, #0 - 8006d04: f04f 0300 mov.w r3, #0 - 8006d08: e9d7 ab0c ldrd sl, fp, [r7, #48] @ 0x30 - 8006d0c: 4659 mov r1, fp - 8006d0e: 00cb lsls r3, r1, #3 - 8006d10: 4651 mov r1, sl - 8006d12: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006d16: 4651 mov r1, sl - 8006d18: 00ca lsls r2, r1, #3 - 8006d1a: 4610 mov r0, r2 - 8006d1c: 4619 mov r1, r3 - 8006d1e: 4603 mov r3, r0 - 8006d20: 4642 mov r2, r8 - 8006d22: 189b adds r3, r3, r2 - 8006d24: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 - 8006d28: 464b mov r3, r9 - 8006d2a: 460a mov r2, r1 - 8006d2c: eb42 0303 adc.w r3, r2, r3 - 8006d30: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 - 8006d34: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006d38: 685b ldr r3, [r3, #4] - 8006d3a: 2200 movs r2, #0 - 8006d3c: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 - 8006d40: f8c7 20ac str.w r2, [r7, #172] @ 0xac - 8006d44: e9d7 122a ldrd r1, r2, [r7, #168] @ 0xa8 - 8006d48: 460b mov r3, r1 - 8006d4a: 18db adds r3, r3, r3 - 8006d4c: 62bb str r3, [r7, #40] @ 0x28 - 8006d4e: 4613 mov r3, r2 - 8006d50: eb42 0303 adc.w r3, r2, r3 - 8006d54: 62fb str r3, [r7, #44] @ 0x2c - 8006d56: e9d7 230a ldrd r2, r3, [r7, #40] @ 0x28 - 8006d5a: e9d7 012c ldrd r0, r1, [r7, #176] @ 0xb0 - 8006d5e: f7f9 fa51 bl 8000204 <__aeabi_uldivmod> - 8006d62: 4602 mov r2, r0 - 8006d64: 460b mov r3, r1 - 8006d66: 4b0d ldr r3, [pc, #52] @ (8006d9c ) - 8006d68: fba3 1302 umull r1, r3, r3, r2 - 8006d6c: 095b lsrs r3, r3, #5 - 8006d6e: 2164 movs r1, #100 @ 0x64 - 8006d70: fb01 f303 mul.w r3, r1, r3 - 8006d74: 1ad3 subs r3, r2, r3 - 8006d76: 00db lsls r3, r3, #3 - 8006d78: 3332 adds r3, #50 @ 0x32 - 8006d7a: 4a08 ldr r2, [pc, #32] @ (8006d9c ) - 8006d7c: fba2 2303 umull r2, r3, r2, r3 - 8006d80: 095b lsrs r3, r3, #5 - 8006d82: f003 0207 and.w r2, r3, #7 - 8006d86: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006d8a: 681b ldr r3, [r3, #0] - 8006d8c: 4422 add r2, r4 - 8006d8e: 609a str r2, [r3, #8] + 8006a10: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006a14: 2200 movs r2, #0 + 8006a16: f8c7 30e8 str.w r3, [r7, #232] @ 0xe8 + 8006a1a: f8c7 20ec str.w r2, [r7, #236] @ 0xec + 8006a1e: e9d7 453a ldrd r4, r5, [r7, #232] @ 0xe8 + 8006a22: 4622 mov r2, r4 + 8006a24: 462b mov r3, r5 + 8006a26: 1891 adds r1, r2, r2 + 8006a28: 65b9 str r1, [r7, #88] @ 0x58 + 8006a2a: 415b adcs r3, r3 + 8006a2c: 65fb str r3, [r7, #92] @ 0x5c + 8006a2e: e9d7 2316 ldrd r2, r3, [r7, #88] @ 0x58 + 8006a32: 4621 mov r1, r4 + 8006a34: eb12 0801 adds.w r8, r2, r1 + 8006a38: 4629 mov r1, r5 + 8006a3a: eb43 0901 adc.w r9, r3, r1 + 8006a3e: f04f 0200 mov.w r2, #0 + 8006a42: f04f 0300 mov.w r3, #0 + 8006a46: ea4f 03c9 mov.w r3, r9, lsl #3 + 8006a4a: ea43 7358 orr.w r3, r3, r8, lsr #29 + 8006a4e: ea4f 02c8 mov.w r2, r8, lsl #3 + 8006a52: 4690 mov r8, r2 + 8006a54: 4699 mov r9, r3 + 8006a56: 4623 mov r3, r4 + 8006a58: eb18 0303 adds.w r3, r8, r3 + 8006a5c: f8c7 30e0 str.w r3, [r7, #224] @ 0xe0 + 8006a60: 462b mov r3, r5 + 8006a62: eb49 0303 adc.w r3, r9, r3 + 8006a66: f8c7 30e4 str.w r3, [r7, #228] @ 0xe4 + 8006a6a: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006a6e: 685b ldr r3, [r3, #4] + 8006a70: 2200 movs r2, #0 + 8006a72: f8c7 30d8 str.w r3, [r7, #216] @ 0xd8 + 8006a76: f8c7 20dc str.w r2, [r7, #220] @ 0xdc + 8006a7a: e9d7 1236 ldrd r1, r2, [r7, #216] @ 0xd8 + 8006a7e: 460b mov r3, r1 + 8006a80: 18db adds r3, r3, r3 + 8006a82: 653b str r3, [r7, #80] @ 0x50 + 8006a84: 4613 mov r3, r2 + 8006a86: eb42 0303 adc.w r3, r2, r3 + 8006a8a: 657b str r3, [r7, #84] @ 0x54 + 8006a8c: e9d7 2314 ldrd r2, r3, [r7, #80] @ 0x50 + 8006a90: e9d7 0138 ldrd r0, r1, [r7, #224] @ 0xe0 + 8006a94: f7f9 fbb6 bl 8000204 <__aeabi_uldivmod> + 8006a98: 4602 mov r2, r0 + 8006a9a: 460b mov r3, r1 + 8006a9c: 4b61 ldr r3, [pc, #388] @ (8006c24 ) + 8006a9e: fba3 2302 umull r2, r3, r3, r2 + 8006aa2: 095b lsrs r3, r3, #5 + 8006aa4: 011c lsls r4, r3, #4 + 8006aa6: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006aaa: 2200 movs r2, #0 + 8006aac: f8c7 30d0 str.w r3, [r7, #208] @ 0xd0 + 8006ab0: f8c7 20d4 str.w r2, [r7, #212] @ 0xd4 + 8006ab4: e9d7 8934 ldrd r8, r9, [r7, #208] @ 0xd0 + 8006ab8: 4642 mov r2, r8 + 8006aba: 464b mov r3, r9 + 8006abc: 1891 adds r1, r2, r2 + 8006abe: 64b9 str r1, [r7, #72] @ 0x48 + 8006ac0: 415b adcs r3, r3 + 8006ac2: 64fb str r3, [r7, #76] @ 0x4c + 8006ac4: e9d7 2312 ldrd r2, r3, [r7, #72] @ 0x48 + 8006ac8: 4641 mov r1, r8 + 8006aca: eb12 0a01 adds.w sl, r2, r1 + 8006ace: 4649 mov r1, r9 + 8006ad0: eb43 0b01 adc.w fp, r3, r1 + 8006ad4: f04f 0200 mov.w r2, #0 + 8006ad8: f04f 0300 mov.w r3, #0 + 8006adc: ea4f 03cb mov.w r3, fp, lsl #3 + 8006ae0: ea43 735a orr.w r3, r3, sl, lsr #29 + 8006ae4: ea4f 02ca mov.w r2, sl, lsl #3 + 8006ae8: 4692 mov sl, r2 + 8006aea: 469b mov fp, r3 + 8006aec: 4643 mov r3, r8 + 8006aee: eb1a 0303 adds.w r3, sl, r3 + 8006af2: f8c7 30c8 str.w r3, [r7, #200] @ 0xc8 + 8006af6: 464b mov r3, r9 + 8006af8: eb4b 0303 adc.w r3, fp, r3 + 8006afc: f8c7 30cc str.w r3, [r7, #204] @ 0xcc + 8006b00: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006b04: 685b ldr r3, [r3, #4] + 8006b06: 2200 movs r2, #0 + 8006b08: f8c7 30c0 str.w r3, [r7, #192] @ 0xc0 + 8006b0c: f8c7 20c4 str.w r2, [r7, #196] @ 0xc4 + 8006b10: e9d7 1230 ldrd r1, r2, [r7, #192] @ 0xc0 + 8006b14: 460b mov r3, r1 + 8006b16: 18db adds r3, r3, r3 + 8006b18: 643b str r3, [r7, #64] @ 0x40 + 8006b1a: 4613 mov r3, r2 + 8006b1c: eb42 0303 adc.w r3, r2, r3 + 8006b20: 647b str r3, [r7, #68] @ 0x44 + 8006b22: e9d7 2310 ldrd r2, r3, [r7, #64] @ 0x40 + 8006b26: e9d7 0132 ldrd r0, r1, [r7, #200] @ 0xc8 + 8006b2a: f7f9 fb6b bl 8000204 <__aeabi_uldivmod> + 8006b2e: 4602 mov r2, r0 + 8006b30: 460b mov r3, r1 + 8006b32: 4611 mov r1, r2 + 8006b34: 4b3b ldr r3, [pc, #236] @ (8006c24 ) + 8006b36: fba3 2301 umull r2, r3, r3, r1 + 8006b3a: 095b lsrs r3, r3, #5 + 8006b3c: 2264 movs r2, #100 @ 0x64 + 8006b3e: fb02 f303 mul.w r3, r2, r3 + 8006b42: 1acb subs r3, r1, r3 + 8006b44: 00db lsls r3, r3, #3 + 8006b46: f103 0232 add.w r2, r3, #50 @ 0x32 + 8006b4a: 4b36 ldr r3, [pc, #216] @ (8006c24 ) + 8006b4c: fba3 2302 umull r2, r3, r3, r2 + 8006b50: 095b lsrs r3, r3, #5 + 8006b52: 005b lsls r3, r3, #1 + 8006b54: f403 73f8 and.w r3, r3, #496 @ 0x1f0 + 8006b58: 441c add r4, r3 + 8006b5a: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006b5e: 2200 movs r2, #0 + 8006b60: f8c7 30b8 str.w r3, [r7, #184] @ 0xb8 + 8006b64: f8c7 20bc str.w r2, [r7, #188] @ 0xbc + 8006b68: e9d7 892e ldrd r8, r9, [r7, #184] @ 0xb8 + 8006b6c: 4642 mov r2, r8 + 8006b6e: 464b mov r3, r9 + 8006b70: 1891 adds r1, r2, r2 + 8006b72: 63b9 str r1, [r7, #56] @ 0x38 + 8006b74: 415b adcs r3, r3 + 8006b76: 63fb str r3, [r7, #60] @ 0x3c + 8006b78: e9d7 230e ldrd r2, r3, [r7, #56] @ 0x38 + 8006b7c: 4641 mov r1, r8 + 8006b7e: 1851 adds r1, r2, r1 + 8006b80: 6339 str r1, [r7, #48] @ 0x30 + 8006b82: 4649 mov r1, r9 + 8006b84: 414b adcs r3, r1 + 8006b86: 637b str r3, [r7, #52] @ 0x34 + 8006b88: f04f 0200 mov.w r2, #0 + 8006b8c: f04f 0300 mov.w r3, #0 + 8006b90: e9d7 ab0c ldrd sl, fp, [r7, #48] @ 0x30 + 8006b94: 4659 mov r1, fp + 8006b96: 00cb lsls r3, r1, #3 + 8006b98: 4651 mov r1, sl + 8006b9a: ea43 7351 orr.w r3, r3, r1, lsr #29 + 8006b9e: 4651 mov r1, sl + 8006ba0: 00ca lsls r2, r1, #3 + 8006ba2: 4610 mov r0, r2 + 8006ba4: 4619 mov r1, r3 + 8006ba6: 4603 mov r3, r0 + 8006ba8: 4642 mov r2, r8 + 8006baa: 189b adds r3, r3, r2 + 8006bac: f8c7 30b0 str.w r3, [r7, #176] @ 0xb0 + 8006bb0: 464b mov r3, r9 + 8006bb2: 460a mov r2, r1 + 8006bb4: eb42 0303 adc.w r3, r2, r3 + 8006bb8: f8c7 30b4 str.w r3, [r7, #180] @ 0xb4 + 8006bbc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006bc0: 685b ldr r3, [r3, #4] + 8006bc2: 2200 movs r2, #0 + 8006bc4: f8c7 30a8 str.w r3, [r7, #168] @ 0xa8 + 8006bc8: f8c7 20ac str.w r2, [r7, #172] @ 0xac + 8006bcc: e9d7 122a ldrd r1, r2, [r7, #168] @ 0xa8 + 8006bd0: 460b mov r3, r1 + 8006bd2: 18db adds r3, r3, r3 + 8006bd4: 62bb str r3, [r7, #40] @ 0x28 + 8006bd6: 4613 mov r3, r2 + 8006bd8: eb42 0303 adc.w r3, r2, r3 + 8006bdc: 62fb str r3, [r7, #44] @ 0x2c + 8006bde: e9d7 230a ldrd r2, r3, [r7, #40] @ 0x28 + 8006be2: e9d7 012c ldrd r0, r1, [r7, #176] @ 0xb0 + 8006be6: f7f9 fb0d bl 8000204 <__aeabi_uldivmod> + 8006bea: 4602 mov r2, r0 + 8006bec: 460b mov r3, r1 + 8006bee: 4b0d ldr r3, [pc, #52] @ (8006c24 ) + 8006bf0: fba3 1302 umull r1, r3, r3, r2 + 8006bf4: 095b lsrs r3, r3, #5 + 8006bf6: 2164 movs r1, #100 @ 0x64 + 8006bf8: fb01 f303 mul.w r3, r1, r3 + 8006bfc: 1ad3 subs r3, r2, r3 + 8006bfe: 00db lsls r3, r3, #3 + 8006c00: 3332 adds r3, #50 @ 0x32 + 8006c02: 4a08 ldr r2, [pc, #32] @ (8006c24 ) + 8006c04: fba2 2303 umull r2, r3, r2, r3 + 8006c08: 095b lsrs r3, r3, #5 + 8006c0a: f003 0207 and.w r2, r3, #7 + 8006c0e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006c12: 681b ldr r3, [r3, #0] + 8006c14: 4422 add r2, r4 + 8006c16: 609a str r2, [r3, #8] } else { huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); } } - 8006d90: e106 b.n 8006fa0 - 8006d92: bf00 nop - 8006d94: 40011000 .word 0x40011000 - 8006d98: 40011400 .word 0x40011400 - 8006d9c: 51eb851f .word 0x51eb851f + 8006c18: e106 b.n 8006e28 + 8006c1a: bf00 nop + 8006c1c: 40011000 .word 0x40011000 + 8006c20: 40011400 .word 0x40011400 + 8006c24: 51eb851f .word 0x51eb851f huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); - 8006da0: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006da4: 2200 movs r2, #0 - 8006da6: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 - 8006daa: f8c7 20a4 str.w r2, [r7, #164] @ 0xa4 - 8006dae: e9d7 8928 ldrd r8, r9, [r7, #160] @ 0xa0 - 8006db2: 4642 mov r2, r8 - 8006db4: 464b mov r3, r9 - 8006db6: 1891 adds r1, r2, r2 - 8006db8: 6239 str r1, [r7, #32] - 8006dba: 415b adcs r3, r3 - 8006dbc: 627b str r3, [r7, #36] @ 0x24 - 8006dbe: e9d7 2308 ldrd r2, r3, [r7, #32] - 8006dc2: 4641 mov r1, r8 - 8006dc4: 1854 adds r4, r2, r1 - 8006dc6: 4649 mov r1, r9 - 8006dc8: eb43 0501 adc.w r5, r3, r1 - 8006dcc: f04f 0200 mov.w r2, #0 - 8006dd0: f04f 0300 mov.w r3, #0 - 8006dd4: 00eb lsls r3, r5, #3 - 8006dd6: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8006dda: 00e2 lsls r2, r4, #3 - 8006ddc: 4614 mov r4, r2 - 8006dde: 461d mov r5, r3 - 8006de0: 4643 mov r3, r8 - 8006de2: 18e3 adds r3, r4, r3 - 8006de4: f8c7 3098 str.w r3, [r7, #152] @ 0x98 - 8006de8: 464b mov r3, r9 - 8006dea: eb45 0303 adc.w r3, r5, r3 - 8006dee: f8c7 309c str.w r3, [r7, #156] @ 0x9c - 8006df2: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006df6: 685b ldr r3, [r3, #4] - 8006df8: 2200 movs r2, #0 - 8006dfa: f8c7 3090 str.w r3, [r7, #144] @ 0x90 - 8006dfe: f8c7 2094 str.w r2, [r7, #148] @ 0x94 - 8006e02: f04f 0200 mov.w r2, #0 - 8006e06: f04f 0300 mov.w r3, #0 - 8006e0a: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 - 8006e0e: 4629 mov r1, r5 - 8006e10: 008b lsls r3, r1, #2 - 8006e12: 4621 mov r1, r4 - 8006e14: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006e18: 4621 mov r1, r4 - 8006e1a: 008a lsls r2, r1, #2 - 8006e1c: e9d7 0126 ldrd r0, r1, [r7, #152] @ 0x98 - 8006e20: f7f9 f9f0 bl 8000204 <__aeabi_uldivmod> - 8006e24: 4602 mov r2, r0 - 8006e26: 460b mov r3, r1 - 8006e28: 4b60 ldr r3, [pc, #384] @ (8006fac ) - 8006e2a: fba3 2302 umull r2, r3, r3, r2 - 8006e2e: 095b lsrs r3, r3, #5 - 8006e30: 011c lsls r4, r3, #4 - 8006e32: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006e36: 2200 movs r2, #0 - 8006e38: f8c7 3088 str.w r3, [r7, #136] @ 0x88 - 8006e3c: f8c7 208c str.w r2, [r7, #140] @ 0x8c - 8006e40: e9d7 8922 ldrd r8, r9, [r7, #136] @ 0x88 - 8006e44: 4642 mov r2, r8 - 8006e46: 464b mov r3, r9 - 8006e48: 1891 adds r1, r2, r2 - 8006e4a: 61b9 str r1, [r7, #24] - 8006e4c: 415b adcs r3, r3 - 8006e4e: 61fb str r3, [r7, #28] - 8006e50: e9d7 2306 ldrd r2, r3, [r7, #24] - 8006e54: 4641 mov r1, r8 - 8006e56: 1851 adds r1, r2, r1 - 8006e58: 6139 str r1, [r7, #16] - 8006e5a: 4649 mov r1, r9 - 8006e5c: 414b adcs r3, r1 - 8006e5e: 617b str r3, [r7, #20] - 8006e60: f04f 0200 mov.w r2, #0 - 8006e64: f04f 0300 mov.w r3, #0 - 8006e68: e9d7 ab04 ldrd sl, fp, [r7, #16] - 8006e6c: 4659 mov r1, fp - 8006e6e: 00cb lsls r3, r1, #3 - 8006e70: 4651 mov r1, sl - 8006e72: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006e76: 4651 mov r1, sl - 8006e78: 00ca lsls r2, r1, #3 - 8006e7a: 4610 mov r0, r2 - 8006e7c: 4619 mov r1, r3 - 8006e7e: 4603 mov r3, r0 - 8006e80: 4642 mov r2, r8 - 8006e82: 189b adds r3, r3, r2 - 8006e84: f8c7 3080 str.w r3, [r7, #128] @ 0x80 - 8006e88: 464b mov r3, r9 - 8006e8a: 460a mov r2, r1 - 8006e8c: eb42 0303 adc.w r3, r2, r3 - 8006e90: f8c7 3084 str.w r3, [r7, #132] @ 0x84 - 8006e94: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006e98: 685b ldr r3, [r3, #4] - 8006e9a: 2200 movs r2, #0 - 8006e9c: 67bb str r3, [r7, #120] @ 0x78 - 8006e9e: 67fa str r2, [r7, #124] @ 0x7c - 8006ea0: f04f 0200 mov.w r2, #0 - 8006ea4: f04f 0300 mov.w r3, #0 - 8006ea8: e9d7 891e ldrd r8, r9, [r7, #120] @ 0x78 - 8006eac: 4649 mov r1, r9 - 8006eae: 008b lsls r3, r1, #2 - 8006eb0: 4641 mov r1, r8 - 8006eb2: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006eb6: 4641 mov r1, r8 - 8006eb8: 008a lsls r2, r1, #2 - 8006eba: e9d7 0120 ldrd r0, r1, [r7, #128] @ 0x80 - 8006ebe: f7f9 f9a1 bl 8000204 <__aeabi_uldivmod> - 8006ec2: 4602 mov r2, r0 - 8006ec4: 460b mov r3, r1 - 8006ec6: 4611 mov r1, r2 - 8006ec8: 4b38 ldr r3, [pc, #224] @ (8006fac ) - 8006eca: fba3 2301 umull r2, r3, r3, r1 - 8006ece: 095b lsrs r3, r3, #5 - 8006ed0: 2264 movs r2, #100 @ 0x64 - 8006ed2: fb02 f303 mul.w r3, r2, r3 - 8006ed6: 1acb subs r3, r1, r3 - 8006ed8: 011b lsls r3, r3, #4 - 8006eda: 3332 adds r3, #50 @ 0x32 - 8006edc: 4a33 ldr r2, [pc, #204] @ (8006fac ) - 8006ede: fba2 2303 umull r2, r3, r2, r3 - 8006ee2: 095b lsrs r3, r3, #5 - 8006ee4: f003 03f0 and.w r3, r3, #240 @ 0xf0 - 8006ee8: 441c add r4, r3 - 8006eea: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc - 8006eee: 2200 movs r2, #0 - 8006ef0: 673b str r3, [r7, #112] @ 0x70 - 8006ef2: 677a str r2, [r7, #116] @ 0x74 - 8006ef4: e9d7 891c ldrd r8, r9, [r7, #112] @ 0x70 - 8006ef8: 4642 mov r2, r8 - 8006efa: 464b mov r3, r9 - 8006efc: 1891 adds r1, r2, r2 - 8006efe: 60b9 str r1, [r7, #8] - 8006f00: 415b adcs r3, r3 - 8006f02: 60fb str r3, [r7, #12] - 8006f04: e9d7 2302 ldrd r2, r3, [r7, #8] - 8006f08: 4641 mov r1, r8 - 8006f0a: 1851 adds r1, r2, r1 - 8006f0c: 6039 str r1, [r7, #0] - 8006f0e: 4649 mov r1, r9 - 8006f10: 414b adcs r3, r1 - 8006f12: 607b str r3, [r7, #4] - 8006f14: f04f 0200 mov.w r2, #0 - 8006f18: f04f 0300 mov.w r3, #0 - 8006f1c: e9d7 ab00 ldrd sl, fp, [r7] - 8006f20: 4659 mov r1, fp - 8006f22: 00cb lsls r3, r1, #3 - 8006f24: 4651 mov r1, sl - 8006f26: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8006f2a: 4651 mov r1, sl - 8006f2c: 00ca lsls r2, r1, #3 - 8006f2e: 4610 mov r0, r2 - 8006f30: 4619 mov r1, r3 - 8006f32: 4603 mov r3, r0 - 8006f34: 4642 mov r2, r8 - 8006f36: 189b adds r3, r3, r2 - 8006f38: 66bb str r3, [r7, #104] @ 0x68 - 8006f3a: 464b mov r3, r9 - 8006f3c: 460a mov r2, r1 - 8006f3e: eb42 0303 adc.w r3, r2, r3 - 8006f42: 66fb str r3, [r7, #108] @ 0x6c - 8006f44: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006f48: 685b ldr r3, [r3, #4] - 8006f4a: 2200 movs r2, #0 - 8006f4c: 663b str r3, [r7, #96] @ 0x60 - 8006f4e: 667a str r2, [r7, #100] @ 0x64 - 8006f50: f04f 0200 mov.w r2, #0 - 8006f54: f04f 0300 mov.w r3, #0 - 8006f58: e9d7 8918 ldrd r8, r9, [r7, #96] @ 0x60 - 8006f5c: 4649 mov r1, r9 - 8006f5e: 008b lsls r3, r1, #2 - 8006f60: 4641 mov r1, r8 - 8006f62: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8006f66: 4641 mov r1, r8 - 8006f68: 008a lsls r2, r1, #2 - 8006f6a: e9d7 011a ldrd r0, r1, [r7, #104] @ 0x68 - 8006f6e: f7f9 f949 bl 8000204 <__aeabi_uldivmod> - 8006f72: 4602 mov r2, r0 - 8006f74: 460b mov r3, r1 - 8006f76: 4b0d ldr r3, [pc, #52] @ (8006fac ) - 8006f78: fba3 1302 umull r1, r3, r3, r2 - 8006f7c: 095b lsrs r3, r3, #5 - 8006f7e: 2164 movs r1, #100 @ 0x64 - 8006f80: fb01 f303 mul.w r3, r1, r3 - 8006f84: 1ad3 subs r3, r2, r3 - 8006f86: 011b lsls r3, r3, #4 - 8006f88: 3332 adds r3, #50 @ 0x32 - 8006f8a: 4a08 ldr r2, [pc, #32] @ (8006fac ) - 8006f8c: fba2 2303 umull r2, r3, r2, r3 - 8006f90: 095b lsrs r3, r3, #5 - 8006f92: f003 020f and.w r2, r3, #15 - 8006f96: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 - 8006f9a: 681b ldr r3, [r3, #0] - 8006f9c: 4422 add r2, r4 - 8006f9e: 609a str r2, [r3, #8] + 8006c28: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006c2c: 2200 movs r2, #0 + 8006c2e: f8c7 30a0 str.w r3, [r7, #160] @ 0xa0 + 8006c32: f8c7 20a4 str.w r2, [r7, #164] @ 0xa4 + 8006c36: e9d7 8928 ldrd r8, r9, [r7, #160] @ 0xa0 + 8006c3a: 4642 mov r2, r8 + 8006c3c: 464b mov r3, r9 + 8006c3e: 1891 adds r1, r2, r2 + 8006c40: 6239 str r1, [r7, #32] + 8006c42: 415b adcs r3, r3 + 8006c44: 627b str r3, [r7, #36] @ 0x24 + 8006c46: e9d7 2308 ldrd r2, r3, [r7, #32] + 8006c4a: 4641 mov r1, r8 + 8006c4c: 1854 adds r4, r2, r1 + 8006c4e: 4649 mov r1, r9 + 8006c50: eb43 0501 adc.w r5, r3, r1 + 8006c54: f04f 0200 mov.w r2, #0 + 8006c58: f04f 0300 mov.w r3, #0 + 8006c5c: 00eb lsls r3, r5, #3 + 8006c5e: ea43 7354 orr.w r3, r3, r4, lsr #29 + 8006c62: 00e2 lsls r2, r4, #3 + 8006c64: 4614 mov r4, r2 + 8006c66: 461d mov r5, r3 + 8006c68: 4643 mov r3, r8 + 8006c6a: 18e3 adds r3, r4, r3 + 8006c6c: f8c7 3098 str.w r3, [r7, #152] @ 0x98 + 8006c70: 464b mov r3, r9 + 8006c72: eb45 0303 adc.w r3, r5, r3 + 8006c76: f8c7 309c str.w r3, [r7, #156] @ 0x9c + 8006c7a: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006c7e: 685b ldr r3, [r3, #4] + 8006c80: 2200 movs r2, #0 + 8006c82: f8c7 3090 str.w r3, [r7, #144] @ 0x90 + 8006c86: f8c7 2094 str.w r2, [r7, #148] @ 0x94 + 8006c8a: f04f 0200 mov.w r2, #0 + 8006c8e: f04f 0300 mov.w r3, #0 + 8006c92: e9d7 4524 ldrd r4, r5, [r7, #144] @ 0x90 + 8006c96: 4629 mov r1, r5 + 8006c98: 008b lsls r3, r1, #2 + 8006c9a: 4621 mov r1, r4 + 8006c9c: ea43 7391 orr.w r3, r3, r1, lsr #30 + 8006ca0: 4621 mov r1, r4 + 8006ca2: 008a lsls r2, r1, #2 + 8006ca4: e9d7 0126 ldrd r0, r1, [r7, #152] @ 0x98 + 8006ca8: f7f9 faac bl 8000204 <__aeabi_uldivmod> + 8006cac: 4602 mov r2, r0 + 8006cae: 460b mov r3, r1 + 8006cb0: 4b60 ldr r3, [pc, #384] @ (8006e34 ) + 8006cb2: fba3 2302 umull r2, r3, r3, r2 + 8006cb6: 095b lsrs r3, r3, #5 + 8006cb8: 011c lsls r4, r3, #4 + 8006cba: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006cbe: 2200 movs r2, #0 + 8006cc0: f8c7 3088 str.w r3, [r7, #136] @ 0x88 + 8006cc4: f8c7 208c str.w r2, [r7, #140] @ 0x8c + 8006cc8: e9d7 8922 ldrd r8, r9, [r7, #136] @ 0x88 + 8006ccc: 4642 mov r2, r8 + 8006cce: 464b mov r3, r9 + 8006cd0: 1891 adds r1, r2, r2 + 8006cd2: 61b9 str r1, [r7, #24] + 8006cd4: 415b adcs r3, r3 + 8006cd6: 61fb str r3, [r7, #28] + 8006cd8: e9d7 2306 ldrd r2, r3, [r7, #24] + 8006cdc: 4641 mov r1, r8 + 8006cde: 1851 adds r1, r2, r1 + 8006ce0: 6139 str r1, [r7, #16] + 8006ce2: 4649 mov r1, r9 + 8006ce4: 414b adcs r3, r1 + 8006ce6: 617b str r3, [r7, #20] + 8006ce8: f04f 0200 mov.w r2, #0 + 8006cec: f04f 0300 mov.w r3, #0 + 8006cf0: e9d7 ab04 ldrd sl, fp, [r7, #16] + 8006cf4: 4659 mov r1, fp + 8006cf6: 00cb lsls r3, r1, #3 + 8006cf8: 4651 mov r1, sl + 8006cfa: ea43 7351 orr.w r3, r3, r1, lsr #29 + 8006cfe: 4651 mov r1, sl + 8006d00: 00ca lsls r2, r1, #3 + 8006d02: 4610 mov r0, r2 + 8006d04: 4619 mov r1, r3 + 8006d06: 4603 mov r3, r0 + 8006d08: 4642 mov r2, r8 + 8006d0a: 189b adds r3, r3, r2 + 8006d0c: f8c7 3080 str.w r3, [r7, #128] @ 0x80 + 8006d10: 464b mov r3, r9 + 8006d12: 460a mov r2, r1 + 8006d14: eb42 0303 adc.w r3, r2, r3 + 8006d18: f8c7 3084 str.w r3, [r7, #132] @ 0x84 + 8006d1c: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006d20: 685b ldr r3, [r3, #4] + 8006d22: 2200 movs r2, #0 + 8006d24: 67bb str r3, [r7, #120] @ 0x78 + 8006d26: 67fa str r2, [r7, #124] @ 0x7c + 8006d28: f04f 0200 mov.w r2, #0 + 8006d2c: f04f 0300 mov.w r3, #0 + 8006d30: e9d7 891e ldrd r8, r9, [r7, #120] @ 0x78 + 8006d34: 4649 mov r1, r9 + 8006d36: 008b lsls r3, r1, #2 + 8006d38: 4641 mov r1, r8 + 8006d3a: ea43 7391 orr.w r3, r3, r1, lsr #30 + 8006d3e: 4641 mov r1, r8 + 8006d40: 008a lsls r2, r1, #2 + 8006d42: e9d7 0120 ldrd r0, r1, [r7, #128] @ 0x80 + 8006d46: f7f9 fa5d bl 8000204 <__aeabi_uldivmod> + 8006d4a: 4602 mov r2, r0 + 8006d4c: 460b mov r3, r1 + 8006d4e: 4611 mov r1, r2 + 8006d50: 4b38 ldr r3, [pc, #224] @ (8006e34 ) + 8006d52: fba3 2301 umull r2, r3, r3, r1 + 8006d56: 095b lsrs r3, r3, #5 + 8006d58: 2264 movs r2, #100 @ 0x64 + 8006d5a: fb02 f303 mul.w r3, r2, r3 + 8006d5e: 1acb subs r3, r1, r3 + 8006d60: 011b lsls r3, r3, #4 + 8006d62: 3332 adds r3, #50 @ 0x32 + 8006d64: 4a33 ldr r2, [pc, #204] @ (8006e34 ) + 8006d66: fba2 2303 umull r2, r3, r2, r3 + 8006d6a: 095b lsrs r3, r3, #5 + 8006d6c: f003 03f0 and.w r3, r3, #240 @ 0xf0 + 8006d70: 441c add r4, r3 + 8006d72: f8d7 30fc ldr.w r3, [r7, #252] @ 0xfc + 8006d76: 2200 movs r2, #0 + 8006d78: 673b str r3, [r7, #112] @ 0x70 + 8006d7a: 677a str r2, [r7, #116] @ 0x74 + 8006d7c: e9d7 891c ldrd r8, r9, [r7, #112] @ 0x70 + 8006d80: 4642 mov r2, r8 + 8006d82: 464b mov r3, r9 + 8006d84: 1891 adds r1, r2, r2 + 8006d86: 60b9 str r1, [r7, #8] + 8006d88: 415b adcs r3, r3 + 8006d8a: 60fb str r3, [r7, #12] + 8006d8c: e9d7 2302 ldrd r2, r3, [r7, #8] + 8006d90: 4641 mov r1, r8 + 8006d92: 1851 adds r1, r2, r1 + 8006d94: 6039 str r1, [r7, #0] + 8006d96: 4649 mov r1, r9 + 8006d98: 414b adcs r3, r1 + 8006d9a: 607b str r3, [r7, #4] + 8006d9c: f04f 0200 mov.w r2, #0 + 8006da0: f04f 0300 mov.w r3, #0 + 8006da4: e9d7 ab00 ldrd sl, fp, [r7] + 8006da8: 4659 mov r1, fp + 8006daa: 00cb lsls r3, r1, #3 + 8006dac: 4651 mov r1, sl + 8006dae: ea43 7351 orr.w r3, r3, r1, lsr #29 + 8006db2: 4651 mov r1, sl + 8006db4: 00ca lsls r2, r1, #3 + 8006db6: 4610 mov r0, r2 + 8006db8: 4619 mov r1, r3 + 8006dba: 4603 mov r3, r0 + 8006dbc: 4642 mov r2, r8 + 8006dbe: 189b adds r3, r3, r2 + 8006dc0: 66bb str r3, [r7, #104] @ 0x68 + 8006dc2: 464b mov r3, r9 + 8006dc4: 460a mov r2, r1 + 8006dc6: eb42 0303 adc.w r3, r2, r3 + 8006dca: 66fb str r3, [r7, #108] @ 0x6c + 8006dcc: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006dd0: 685b ldr r3, [r3, #4] + 8006dd2: 2200 movs r2, #0 + 8006dd4: 663b str r3, [r7, #96] @ 0x60 + 8006dd6: 667a str r2, [r7, #100] @ 0x64 + 8006dd8: f04f 0200 mov.w r2, #0 + 8006ddc: f04f 0300 mov.w r3, #0 + 8006de0: e9d7 8918 ldrd r8, r9, [r7, #96] @ 0x60 + 8006de4: 4649 mov r1, r9 + 8006de6: 008b lsls r3, r1, #2 + 8006de8: 4641 mov r1, r8 + 8006dea: ea43 7391 orr.w r3, r3, r1, lsr #30 + 8006dee: 4641 mov r1, r8 + 8006df0: 008a lsls r2, r1, #2 + 8006df2: e9d7 011a ldrd r0, r1, [r7, #104] @ 0x68 + 8006df6: f7f9 fa05 bl 8000204 <__aeabi_uldivmod> + 8006dfa: 4602 mov r2, r0 + 8006dfc: 460b mov r3, r1 + 8006dfe: 4b0d ldr r3, [pc, #52] @ (8006e34 ) + 8006e00: fba3 1302 umull r1, r3, r3, r2 + 8006e04: 095b lsrs r3, r3, #5 + 8006e06: 2164 movs r1, #100 @ 0x64 + 8006e08: fb01 f303 mul.w r3, r1, r3 + 8006e0c: 1ad3 subs r3, r2, r3 + 8006e0e: 011b lsls r3, r3, #4 + 8006e10: 3332 adds r3, #50 @ 0x32 + 8006e12: 4a08 ldr r2, [pc, #32] @ (8006e34 ) + 8006e14: fba2 2303 umull r2, r3, r2, r3 + 8006e18: 095b lsrs r3, r3, #5 + 8006e1a: f003 020f and.w r2, r3, #15 + 8006e1e: f8d7 30f4 ldr.w r3, [r7, #244] @ 0xf4 + 8006e22: 681b ldr r3, [r3, #0] + 8006e24: 4422 add r2, r4 + 8006e26: 609a str r2, [r3, #8] } - 8006fa0: bf00 nop - 8006fa2: f507 7780 add.w r7, r7, #256 @ 0x100 - 8006fa6: 46bd mov sp, r7 - 8006fa8: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8006fac: 51eb851f .word 0x51eb851f + 8006e28: bf00 nop + 8006e2a: f507 7780 add.w r7, r7, #256 @ 0x100 + 8006e2e: 46bd mov sp, r7 + 8006e30: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8006e34: 51eb851f .word 0x51eb851f -08006fb0 : +08006e38 : * @param cfg pointer to a USB_OTG_CfgTypeDef structure that contains * the configuration information for the specified USBx peripheral. * @retval HAL status */ HAL_StatusTypeDef USB_CoreInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef cfg) { - 8006fb0: b084 sub sp, #16 - 8006fb2: b580 push {r7, lr} - 8006fb4: b084 sub sp, #16 - 8006fb6: af00 add r7, sp, #0 - 8006fb8: 6078 str r0, [r7, #4] - 8006fba: f107 001c add.w r0, r7, #28 - 8006fbe: e880 000e stmia.w r0, {r1, r2, r3} + 8006e38: b084 sub sp, #16 + 8006e3a: b580 push {r7, lr} + 8006e3c: b084 sub sp, #16 + 8006e3e: af00 add r7, sp, #0 + 8006e40: 6078 str r0, [r7, #4] + 8006e42: f107 001c add.w r0, r7, #28 + 8006e46: e880 000e stmia.w r0, {r1, r2, r3} HAL_StatusTypeDef ret; if (cfg.phy_itface == USB_OTG_ULPI_PHY) - 8006fc2: f897 3021 ldrb.w r3, [r7, #33] @ 0x21 - 8006fc6: 2b01 cmp r3, #1 - 8006fc8: d123 bne.n 8007012 + 8006e4a: f897 3021 ldrb.w r3, [r7, #33] @ 0x21 + 8006e4e: 2b01 cmp r3, #1 + 8006e50: d123 bne.n 8006e9a { USBx->GCCFG &= ~(USB_OTG_GCCFG_PWRDWN); - 8006fca: 687b ldr r3, [r7, #4] - 8006fcc: 6b9b ldr r3, [r3, #56] @ 0x38 - 8006fce: f423 3280 bic.w r2, r3, #65536 @ 0x10000 - 8006fd2: 687b ldr r3, [r7, #4] - 8006fd4: 639a str r2, [r3, #56] @ 0x38 + 8006e52: 687b ldr r3, [r7, #4] + 8006e54: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006e56: f423 3280 bic.w r2, r3, #65536 @ 0x10000 + 8006e5a: 687b ldr r3, [r7, #4] + 8006e5c: 639a str r2, [r3, #56] @ 0x38 /* Init The ULPI Interface */ USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_TSDPS | USB_OTG_GUSBCFG_ULPIFSLS | USB_OTG_GUSBCFG_PHYSEL); - 8006fd6: 687b ldr r3, [r7, #4] - 8006fd8: 68db ldr r3, [r3, #12] - 8006fda: f423 0384 bic.w r3, r3, #4325376 @ 0x420000 - 8006fde: f023 0340 bic.w r3, r3, #64 @ 0x40 - 8006fe2: 687a ldr r2, [r7, #4] - 8006fe4: 60d3 str r3, [r2, #12] + 8006e5e: 687b ldr r3, [r7, #4] + 8006e60: 68db ldr r3, [r3, #12] + 8006e62: f423 0384 bic.w r3, r3, #4325376 @ 0x420000 + 8006e66: f023 0340 bic.w r3, r3, #64 @ 0x40 + 8006e6a: 687a ldr r2, [r7, #4] + 8006e6c: 60d3 str r3, [r2, #12] /* Select vbus source */ USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_ULPIEVBUSD | USB_OTG_GUSBCFG_ULPIEVBUSI); - 8006fe6: 687b ldr r3, [r7, #4] - 8006fe8: 68db ldr r3, [r3, #12] - 8006fea: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 - 8006fee: 687b ldr r3, [r7, #4] - 8006ff0: 60da str r2, [r3, #12] + 8006e6e: 687b ldr r3, [r7, #4] + 8006e70: 68db ldr r3, [r3, #12] + 8006e72: f423 1240 bic.w r2, r3, #3145728 @ 0x300000 + 8006e76: 687b ldr r3, [r7, #4] + 8006e78: 60da str r2, [r3, #12] if (cfg.use_external_vbus == 1U) - 8006ff2: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 - 8006ff6: 2b01 cmp r3, #1 - 8006ff8: d105 bne.n 8007006 + 8006e7a: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 + 8006e7e: 2b01 cmp r3, #1 + 8006e80: d105 bne.n 8006e8e { USBx->GUSBCFG |= USB_OTG_GUSBCFG_ULPIEVBUSD; - 8006ffa: 687b ldr r3, [r7, #4] - 8006ffc: 68db ldr r3, [r3, #12] - 8006ffe: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 - 8007002: 687b ldr r3, [r7, #4] - 8007004: 60da str r2, [r3, #12] + 8006e82: 687b ldr r3, [r7, #4] + 8006e84: 68db ldr r3, [r3, #12] + 8006e86: f443 1280 orr.w r2, r3, #1048576 @ 0x100000 + 8006e8a: 687b ldr r3, [r7, #4] + 8006e8c: 60da str r2, [r3, #12] } /* Reset after a PHY select */ ret = USB_CoreReset(USBx); - 8007006: 6878 ldr r0, [r7, #4] - 8007008: f001 fae2 bl 80085d0 - 800700c: 4603 mov r3, r0 - 800700e: 73fb strb r3, [r7, #15] - 8007010: e01b b.n 800704a + 8006e8e: 6878 ldr r0, [r7, #4] + 8006e90: f001 fae2 bl 8008458 + 8006e94: 4603 mov r3, r0 + 8006e96: 73fb strb r3, [r7, #15] + 8006e98: e01b b.n 8006ed2 } else /* FS interface (embedded Phy) */ { /* Select FS Embedded PHY */ USBx->GUSBCFG |= USB_OTG_GUSBCFG_PHYSEL; - 8007012: 687b ldr r3, [r7, #4] - 8007014: 68db ldr r3, [r3, #12] - 8007016: f043 0240 orr.w r2, r3, #64 @ 0x40 - 800701a: 687b ldr r3, [r7, #4] - 800701c: 60da str r2, [r3, #12] + 8006e9a: 687b ldr r3, [r7, #4] + 8006e9c: 68db ldr r3, [r3, #12] + 8006e9e: f043 0240 orr.w r2, r3, #64 @ 0x40 + 8006ea2: 687b ldr r3, [r7, #4] + 8006ea4: 60da str r2, [r3, #12] /* Reset after a PHY select */ ret = USB_CoreReset(USBx); - 800701e: 6878 ldr r0, [r7, #4] - 8007020: f001 fad6 bl 80085d0 - 8007024: 4603 mov r3, r0 - 8007026: 73fb strb r3, [r7, #15] + 8006ea6: 6878 ldr r0, [r7, #4] + 8006ea8: f001 fad6 bl 8008458 + 8006eac: 4603 mov r3, r0 + 8006eae: 73fb strb r3, [r7, #15] if (cfg.battery_charging_enable == 0U) - 8007028: f897 3025 ldrb.w r3, [r7, #37] @ 0x25 - 800702c: 2b00 cmp r3, #0 - 800702e: d106 bne.n 800703e + 8006eb0: f897 3025 ldrb.w r3, [r7, #37] @ 0x25 + 8006eb4: 2b00 cmp r3, #0 + 8006eb6: d106 bne.n 8006ec6 { /* Activate the USB Transceiver */ USBx->GCCFG |= USB_OTG_GCCFG_PWRDWN; - 8007030: 687b ldr r3, [r7, #4] - 8007032: 6b9b ldr r3, [r3, #56] @ 0x38 - 8007034: f443 3280 orr.w r2, r3, #65536 @ 0x10000 - 8007038: 687b ldr r3, [r7, #4] - 800703a: 639a str r2, [r3, #56] @ 0x38 - 800703c: e005 b.n 800704a + 8006eb8: 687b ldr r3, [r7, #4] + 8006eba: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006ebc: f443 3280 orr.w r2, r3, #65536 @ 0x10000 + 8006ec0: 687b ldr r3, [r7, #4] + 8006ec2: 639a str r2, [r3, #56] @ 0x38 + 8006ec4: e005 b.n 8006ed2 } else { /* Deactivate the USB Transceiver */ USBx->GCCFG &= ~(USB_OTG_GCCFG_PWRDWN); - 800703e: 687b ldr r3, [r7, #4] - 8007040: 6b9b ldr r3, [r3, #56] @ 0x38 - 8007042: f423 3280 bic.w r2, r3, #65536 @ 0x10000 - 8007046: 687b ldr r3, [r7, #4] - 8007048: 639a str r2, [r3, #56] @ 0x38 + 8006ec6: 687b ldr r3, [r7, #4] + 8006ec8: 6b9b ldr r3, [r3, #56] @ 0x38 + 8006eca: f423 3280 bic.w r2, r3, #65536 @ 0x10000 + 8006ece: 687b ldr r3, [r7, #4] + 8006ed0: 639a str r2, [r3, #56] @ 0x38 } } if (cfg.dma_enable == 1U) - 800704a: 7fbb ldrb r3, [r7, #30] - 800704c: 2b01 cmp r3, #1 - 800704e: d10b bne.n 8007068 + 8006ed2: 7fbb ldrb r3, [r7, #30] + 8006ed4: 2b01 cmp r3, #1 + 8006ed6: d10b bne.n 8006ef0 { USBx->GAHBCFG |= USB_OTG_GAHBCFG_HBSTLEN_2; - 8007050: 687b ldr r3, [r7, #4] - 8007052: 689b ldr r3, [r3, #8] - 8007054: f043 0206 orr.w r2, r3, #6 - 8007058: 687b ldr r3, [r7, #4] - 800705a: 609a str r2, [r3, #8] + 8006ed8: 687b ldr r3, [r7, #4] + 8006eda: 689b ldr r3, [r3, #8] + 8006edc: f043 0206 orr.w r2, r3, #6 + 8006ee0: 687b ldr r3, [r7, #4] + 8006ee2: 609a str r2, [r3, #8] USBx->GAHBCFG |= USB_OTG_GAHBCFG_DMAEN; - 800705c: 687b ldr r3, [r7, #4] - 800705e: 689b ldr r3, [r3, #8] - 8007060: f043 0220 orr.w r2, r3, #32 - 8007064: 687b ldr r3, [r7, #4] - 8007066: 609a str r2, [r3, #8] + 8006ee4: 687b ldr r3, [r7, #4] + 8006ee6: 689b ldr r3, [r3, #8] + 8006ee8: f043 0220 orr.w r2, r3, #32 + 8006eec: 687b ldr r3, [r7, #4] + 8006eee: 609a str r2, [r3, #8] } return ret; - 8007068: 7bfb ldrb r3, [r7, #15] + 8006ef0: 7bfb ldrb r3, [r7, #15] } - 800706a: 4618 mov r0, r3 - 800706c: 3710 adds r7, #16 - 800706e: 46bd mov sp, r7 - 8007070: e8bd 4080 ldmia.w sp!, {r7, lr} - 8007074: b004 add sp, #16 - 8007076: 4770 bx lr + 8006ef2: 4618 mov r0, r3 + 8006ef4: 3710 adds r7, #16 + 8006ef6: 46bd mov sp, r7 + 8006ef8: e8bd 4080 ldmia.w sp!, {r7, lr} + 8006efc: b004 add sp, #16 + 8006efe: 4770 bx lr -08007078 : +08006f00 : * @param hclk: AHB clock frequency * @retval USB turnaround time In PHY Clocks number */ HAL_StatusTypeDef USB_SetTurnaroundTime(USB_OTG_GlobalTypeDef *USBx, uint32_t hclk, uint8_t speed) { - 8007078: b480 push {r7} - 800707a: b087 sub sp, #28 - 800707c: af00 add r7, sp, #0 - 800707e: 60f8 str r0, [r7, #12] - 8007080: 60b9 str r1, [r7, #8] - 8007082: 4613 mov r3, r2 - 8007084: 71fb strb r3, [r7, #7] + 8006f00: b480 push {r7} + 8006f02: b087 sub sp, #28 + 8006f04: af00 add r7, sp, #0 + 8006f06: 60f8 str r0, [r7, #12] + 8006f08: 60b9 str r1, [r7, #8] + 8006f0a: 4613 mov r3, r2 + 8006f0c: 71fb strb r3, [r7, #7] /* The USBTRD is configured according to the tables below, depending on AHB frequency used by application. In the low AHB frequency range it is used to stretch enough the USB response time to IN tokens, the USB turnaround time, so to compensate for the longer AHB read access latency to the Data FIFO */ if (speed == USBD_FS_SPEED) - 8007086: 79fb ldrb r3, [r7, #7] - 8007088: 2b02 cmp r3, #2 - 800708a: d165 bne.n 8007158 + 8006f0e: 79fb ldrb r3, [r7, #7] + 8006f10: 2b02 cmp r3, #2 + 8006f12: d165 bne.n 8006fe0 { if ((hclk >= 14200000U) && (hclk < 15000000U)) - 800708c: 68bb ldr r3, [r7, #8] - 800708e: 4a41 ldr r2, [pc, #260] @ (8007194 ) - 8007090: 4293 cmp r3, r2 - 8007092: d906 bls.n 80070a2 - 8007094: 68bb ldr r3, [r7, #8] - 8007096: 4a40 ldr r2, [pc, #256] @ (8007198 ) - 8007098: 4293 cmp r3, r2 - 800709a: d202 bcs.n 80070a2 + 8006f14: 68bb ldr r3, [r7, #8] + 8006f16: 4a41 ldr r2, [pc, #260] @ (800701c ) + 8006f18: 4293 cmp r3, r2 + 8006f1a: d906 bls.n 8006f2a + 8006f1c: 68bb ldr r3, [r7, #8] + 8006f1e: 4a40 ldr r2, [pc, #256] @ (8007020 ) + 8006f20: 4293 cmp r3, r2 + 8006f22: d202 bcs.n 8006f2a { /* hclk Clock Range between 14.2-15 MHz */ UsbTrd = 0xFU; - 800709c: 230f movs r3, #15 - 800709e: 617b str r3, [r7, #20] - 80070a0: e062 b.n 8007168 + 8006f24: 230f movs r3, #15 + 8006f26: 617b str r3, [r7, #20] + 8006f28: e062 b.n 8006ff0 } else if ((hclk >= 15000000U) && (hclk < 16000000U)) - 80070a2: 68bb ldr r3, [r7, #8] - 80070a4: 4a3c ldr r2, [pc, #240] @ (8007198 ) - 80070a6: 4293 cmp r3, r2 - 80070a8: d306 bcc.n 80070b8 - 80070aa: 68bb ldr r3, [r7, #8] - 80070ac: 4a3b ldr r2, [pc, #236] @ (800719c ) - 80070ae: 4293 cmp r3, r2 - 80070b0: d202 bcs.n 80070b8 + 8006f2a: 68bb ldr r3, [r7, #8] + 8006f2c: 4a3c ldr r2, [pc, #240] @ (8007020 ) + 8006f2e: 4293 cmp r3, r2 + 8006f30: d306 bcc.n 8006f40 + 8006f32: 68bb ldr r3, [r7, #8] + 8006f34: 4a3b ldr r2, [pc, #236] @ (8007024 ) + 8006f36: 4293 cmp r3, r2 + 8006f38: d202 bcs.n 8006f40 { /* hclk Clock Range between 15-16 MHz */ UsbTrd = 0xEU; - 80070b2: 230e movs r3, #14 - 80070b4: 617b str r3, [r7, #20] - 80070b6: e057 b.n 8007168 + 8006f3a: 230e movs r3, #14 + 8006f3c: 617b str r3, [r7, #20] + 8006f3e: e057 b.n 8006ff0 } else if ((hclk >= 16000000U) && (hclk < 17200000U)) - 80070b8: 68bb ldr r3, [r7, #8] - 80070ba: 4a38 ldr r2, [pc, #224] @ (800719c ) - 80070bc: 4293 cmp r3, r2 - 80070be: d306 bcc.n 80070ce - 80070c0: 68bb ldr r3, [r7, #8] - 80070c2: 4a37 ldr r2, [pc, #220] @ (80071a0 ) - 80070c4: 4293 cmp r3, r2 - 80070c6: d202 bcs.n 80070ce + 8006f40: 68bb ldr r3, [r7, #8] + 8006f42: 4a38 ldr r2, [pc, #224] @ (8007024 ) + 8006f44: 4293 cmp r3, r2 + 8006f46: d306 bcc.n 8006f56 + 8006f48: 68bb ldr r3, [r7, #8] + 8006f4a: 4a37 ldr r2, [pc, #220] @ (8007028 ) + 8006f4c: 4293 cmp r3, r2 + 8006f4e: d202 bcs.n 8006f56 { /* hclk Clock Range between 16-17.2 MHz */ UsbTrd = 0xDU; - 80070c8: 230d movs r3, #13 - 80070ca: 617b str r3, [r7, #20] - 80070cc: e04c b.n 8007168 + 8006f50: 230d movs r3, #13 + 8006f52: 617b str r3, [r7, #20] + 8006f54: e04c b.n 8006ff0 } else if ((hclk >= 17200000U) && (hclk < 18500000U)) - 80070ce: 68bb ldr r3, [r7, #8] - 80070d0: 4a33 ldr r2, [pc, #204] @ (80071a0 ) - 80070d2: 4293 cmp r3, r2 - 80070d4: d306 bcc.n 80070e4 - 80070d6: 68bb ldr r3, [r7, #8] - 80070d8: 4a32 ldr r2, [pc, #200] @ (80071a4 ) - 80070da: 4293 cmp r3, r2 - 80070dc: d802 bhi.n 80070e4 + 8006f56: 68bb ldr r3, [r7, #8] + 8006f58: 4a33 ldr r2, [pc, #204] @ (8007028 ) + 8006f5a: 4293 cmp r3, r2 + 8006f5c: d306 bcc.n 8006f6c + 8006f5e: 68bb ldr r3, [r7, #8] + 8006f60: 4a32 ldr r2, [pc, #200] @ (800702c ) + 8006f62: 4293 cmp r3, r2 + 8006f64: d802 bhi.n 8006f6c { /* hclk Clock Range between 17.2-18.5 MHz */ UsbTrd = 0xCU; - 80070de: 230c movs r3, #12 - 80070e0: 617b str r3, [r7, #20] - 80070e2: e041 b.n 8007168 + 8006f66: 230c movs r3, #12 + 8006f68: 617b str r3, [r7, #20] + 8006f6a: e041 b.n 8006ff0 } else if ((hclk >= 18500000U) && (hclk < 20000000U)) - 80070e4: 68bb ldr r3, [r7, #8] - 80070e6: 4a2f ldr r2, [pc, #188] @ (80071a4 ) - 80070e8: 4293 cmp r3, r2 - 80070ea: d906 bls.n 80070fa - 80070ec: 68bb ldr r3, [r7, #8] - 80070ee: 4a2e ldr r2, [pc, #184] @ (80071a8 ) - 80070f0: 4293 cmp r3, r2 - 80070f2: d802 bhi.n 80070fa + 8006f6c: 68bb ldr r3, [r7, #8] + 8006f6e: 4a2f ldr r2, [pc, #188] @ (800702c ) + 8006f70: 4293 cmp r3, r2 + 8006f72: d906 bls.n 8006f82 + 8006f74: 68bb ldr r3, [r7, #8] + 8006f76: 4a2e ldr r2, [pc, #184] @ (8007030 ) + 8006f78: 4293 cmp r3, r2 + 8006f7a: d802 bhi.n 8006f82 { /* hclk Clock Range between 18.5-20 MHz */ UsbTrd = 0xBU; - 80070f4: 230b movs r3, #11 - 80070f6: 617b str r3, [r7, #20] - 80070f8: e036 b.n 8007168 + 8006f7c: 230b movs r3, #11 + 8006f7e: 617b str r3, [r7, #20] + 8006f80: e036 b.n 8006ff0 } else if ((hclk >= 20000000U) && (hclk < 21800000U)) - 80070fa: 68bb ldr r3, [r7, #8] - 80070fc: 4a2a ldr r2, [pc, #168] @ (80071a8 ) - 80070fe: 4293 cmp r3, r2 - 8007100: d906 bls.n 8007110 - 8007102: 68bb ldr r3, [r7, #8] - 8007104: 4a29 ldr r2, [pc, #164] @ (80071ac ) - 8007106: 4293 cmp r3, r2 - 8007108: d802 bhi.n 8007110 + 8006f82: 68bb ldr r3, [r7, #8] + 8006f84: 4a2a ldr r2, [pc, #168] @ (8007030 ) + 8006f86: 4293 cmp r3, r2 + 8006f88: d906 bls.n 8006f98 + 8006f8a: 68bb ldr r3, [r7, #8] + 8006f8c: 4a29 ldr r2, [pc, #164] @ (8007034 ) + 8006f8e: 4293 cmp r3, r2 + 8006f90: d802 bhi.n 8006f98 { /* hclk Clock Range between 20-21.8 MHz */ UsbTrd = 0xAU; - 800710a: 230a movs r3, #10 - 800710c: 617b str r3, [r7, #20] - 800710e: e02b b.n 8007168 + 8006f92: 230a movs r3, #10 + 8006f94: 617b str r3, [r7, #20] + 8006f96: e02b b.n 8006ff0 } else if ((hclk >= 21800000U) && (hclk < 24000000U)) - 8007110: 68bb ldr r3, [r7, #8] - 8007112: 4a26 ldr r2, [pc, #152] @ (80071ac ) - 8007114: 4293 cmp r3, r2 - 8007116: d906 bls.n 8007126 - 8007118: 68bb ldr r3, [r7, #8] - 800711a: 4a25 ldr r2, [pc, #148] @ (80071b0 ) - 800711c: 4293 cmp r3, r2 - 800711e: d202 bcs.n 8007126 + 8006f98: 68bb ldr r3, [r7, #8] + 8006f9a: 4a26 ldr r2, [pc, #152] @ (8007034 ) + 8006f9c: 4293 cmp r3, r2 + 8006f9e: d906 bls.n 8006fae + 8006fa0: 68bb ldr r3, [r7, #8] + 8006fa2: 4a25 ldr r2, [pc, #148] @ (8007038 ) + 8006fa4: 4293 cmp r3, r2 + 8006fa6: d202 bcs.n 8006fae { /* hclk Clock Range between 21.8-24 MHz */ UsbTrd = 0x9U; - 8007120: 2309 movs r3, #9 - 8007122: 617b str r3, [r7, #20] - 8007124: e020 b.n 8007168 + 8006fa8: 2309 movs r3, #9 + 8006faa: 617b str r3, [r7, #20] + 8006fac: e020 b.n 8006ff0 } else if ((hclk >= 24000000U) && (hclk < 27700000U)) - 8007126: 68bb ldr r3, [r7, #8] - 8007128: 4a21 ldr r2, [pc, #132] @ (80071b0 ) - 800712a: 4293 cmp r3, r2 - 800712c: d306 bcc.n 800713c - 800712e: 68bb ldr r3, [r7, #8] - 8007130: 4a20 ldr r2, [pc, #128] @ (80071b4 ) - 8007132: 4293 cmp r3, r2 - 8007134: d802 bhi.n 800713c + 8006fae: 68bb ldr r3, [r7, #8] + 8006fb0: 4a21 ldr r2, [pc, #132] @ (8007038 ) + 8006fb2: 4293 cmp r3, r2 + 8006fb4: d306 bcc.n 8006fc4 + 8006fb6: 68bb ldr r3, [r7, #8] + 8006fb8: 4a20 ldr r2, [pc, #128] @ (800703c ) + 8006fba: 4293 cmp r3, r2 + 8006fbc: d802 bhi.n 8006fc4 { /* hclk Clock Range between 24-27.7 MHz */ UsbTrd = 0x8U; - 8007136: 2308 movs r3, #8 - 8007138: 617b str r3, [r7, #20] - 800713a: e015 b.n 8007168 + 8006fbe: 2308 movs r3, #8 + 8006fc0: 617b str r3, [r7, #20] + 8006fc2: e015 b.n 8006ff0 } else if ((hclk >= 27700000U) && (hclk < 32000000U)) - 800713c: 68bb ldr r3, [r7, #8] - 800713e: 4a1d ldr r2, [pc, #116] @ (80071b4 ) - 8007140: 4293 cmp r3, r2 - 8007142: d906 bls.n 8007152 - 8007144: 68bb ldr r3, [r7, #8] - 8007146: 4a1c ldr r2, [pc, #112] @ (80071b8 ) - 8007148: 4293 cmp r3, r2 - 800714a: d202 bcs.n 8007152 + 8006fc4: 68bb ldr r3, [r7, #8] + 8006fc6: 4a1d ldr r2, [pc, #116] @ (800703c ) + 8006fc8: 4293 cmp r3, r2 + 8006fca: d906 bls.n 8006fda + 8006fcc: 68bb ldr r3, [r7, #8] + 8006fce: 4a1c ldr r2, [pc, #112] @ (8007040 ) + 8006fd0: 4293 cmp r3, r2 + 8006fd2: d202 bcs.n 8006fda { /* hclk Clock Range between 27.7-32 MHz */ UsbTrd = 0x7U; - 800714c: 2307 movs r3, #7 - 800714e: 617b str r3, [r7, #20] - 8007150: e00a b.n 8007168 + 8006fd4: 2307 movs r3, #7 + 8006fd6: 617b str r3, [r7, #20] + 8006fd8: e00a b.n 8006ff0 } else /* if(hclk >= 32000000) */ { /* hclk Clock Range between 32-200 MHz */ UsbTrd = 0x6U; - 8007152: 2306 movs r3, #6 - 8007154: 617b str r3, [r7, #20] - 8007156: e007 b.n 8007168 + 8006fda: 2306 movs r3, #6 + 8006fdc: 617b str r3, [r7, #20] + 8006fde: e007 b.n 8006ff0 } } else if (speed == USBD_HS_SPEED) - 8007158: 79fb ldrb r3, [r7, #7] - 800715a: 2b00 cmp r3, #0 - 800715c: d102 bne.n 8007164 + 8006fe0: 79fb ldrb r3, [r7, #7] + 8006fe2: 2b00 cmp r3, #0 + 8006fe4: d102 bne.n 8006fec { UsbTrd = USBD_HS_TRDT_VALUE; - 800715e: 2309 movs r3, #9 - 8007160: 617b str r3, [r7, #20] - 8007162: e001 b.n 8007168 + 8006fe6: 2309 movs r3, #9 + 8006fe8: 617b str r3, [r7, #20] + 8006fea: e001 b.n 8006ff0 } else { UsbTrd = USBD_DEFAULT_TRDT_VALUE; - 8007164: 2309 movs r3, #9 - 8007166: 617b str r3, [r7, #20] + 8006fec: 2309 movs r3, #9 + 8006fee: 617b str r3, [r7, #20] } USBx->GUSBCFG &= ~USB_OTG_GUSBCFG_TRDT; - 8007168: 68fb ldr r3, [r7, #12] - 800716a: 68db ldr r3, [r3, #12] - 800716c: f423 5270 bic.w r2, r3, #15360 @ 0x3c00 - 8007170: 68fb ldr r3, [r7, #12] - 8007172: 60da str r2, [r3, #12] + 8006ff0: 68fb ldr r3, [r7, #12] + 8006ff2: 68db ldr r3, [r3, #12] + 8006ff4: f423 5270 bic.w r2, r3, #15360 @ 0x3c00 + 8006ff8: 68fb ldr r3, [r7, #12] + 8006ffa: 60da str r2, [r3, #12] USBx->GUSBCFG |= (uint32_t)((UsbTrd << 10) & USB_OTG_GUSBCFG_TRDT); - 8007174: 68fb ldr r3, [r7, #12] - 8007176: 68da ldr r2, [r3, #12] - 8007178: 697b ldr r3, [r7, #20] - 800717a: 029b lsls r3, r3, #10 - 800717c: f403 5370 and.w r3, r3, #15360 @ 0x3c00 - 8007180: 431a orrs r2, r3 - 8007182: 68fb ldr r3, [r7, #12] - 8007184: 60da str r2, [r3, #12] + 8006ffc: 68fb ldr r3, [r7, #12] + 8006ffe: 68da ldr r2, [r3, #12] + 8007000: 697b ldr r3, [r7, #20] + 8007002: 029b lsls r3, r3, #10 + 8007004: f403 5370 and.w r3, r3, #15360 @ 0x3c00 + 8007008: 431a orrs r2, r3 + 800700a: 68fb ldr r3, [r7, #12] + 800700c: 60da str r2, [r3, #12] return HAL_OK; - 8007186: 2300 movs r3, #0 + 800700e: 2300 movs r3, #0 } - 8007188: 4618 mov r0, r3 - 800718a: 371c adds r7, #28 - 800718c: 46bd mov sp, r7 - 800718e: f85d 7b04 ldr.w r7, [sp], #4 - 8007192: 4770 bx lr - 8007194: 00d8acbf .word 0x00d8acbf - 8007198: 00e4e1c0 .word 0x00e4e1c0 - 800719c: 00f42400 .word 0x00f42400 - 80071a0: 01067380 .word 0x01067380 - 80071a4: 011a499f .word 0x011a499f - 80071a8: 01312cff .word 0x01312cff - 80071ac: 014ca43f .word 0x014ca43f - 80071b0: 016e3600 .word 0x016e3600 - 80071b4: 01a6ab1f .word 0x01a6ab1f - 80071b8: 01e84800 .word 0x01e84800 + 8007010: 4618 mov r0, r3 + 8007012: 371c adds r7, #28 + 8007014: 46bd mov sp, r7 + 8007016: f85d 7b04 ldr.w r7, [sp], #4 + 800701a: 4770 bx lr + 800701c: 00d8acbf .word 0x00d8acbf + 8007020: 00e4e1c0 .word 0x00e4e1c0 + 8007024: 00f42400 .word 0x00f42400 + 8007028: 01067380 .word 0x01067380 + 800702c: 011a499f .word 0x011a499f + 8007030: 01312cff .word 0x01312cff + 8007034: 014ca43f .word 0x014ca43f + 8007038: 016e3600 .word 0x016e3600 + 800703c: 01a6ab1f .word 0x01a6ab1f + 8007040: 01e84800 .word 0x01e84800 -080071bc : +08007044 : * Enables the controller's Global Int in the AHB Config reg * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_EnableGlobalInt(USB_OTG_GlobalTypeDef *USBx) { - 80071bc: b480 push {r7} - 80071be: b083 sub sp, #12 - 80071c0: af00 add r7, sp, #0 - 80071c2: 6078 str r0, [r7, #4] + 8007044: b480 push {r7} + 8007046: b083 sub sp, #12 + 8007048: af00 add r7, sp, #0 + 800704a: 6078 str r0, [r7, #4] USBx->GAHBCFG |= USB_OTG_GAHBCFG_GINT; - 80071c4: 687b ldr r3, [r7, #4] - 80071c6: 689b ldr r3, [r3, #8] - 80071c8: f043 0201 orr.w r2, r3, #1 - 80071cc: 687b ldr r3, [r7, #4] - 80071ce: 609a str r2, [r3, #8] + 800704c: 687b ldr r3, [r7, #4] + 800704e: 689b ldr r3, [r3, #8] + 8007050: f043 0201 orr.w r2, r3, #1 + 8007054: 687b ldr r3, [r7, #4] + 8007056: 609a str r2, [r3, #8] return HAL_OK; - 80071d0: 2300 movs r3, #0 + 8007058: 2300 movs r3, #0 } - 80071d2: 4618 mov r0, r3 - 80071d4: 370c adds r7, #12 - 80071d6: 46bd mov sp, r7 - 80071d8: f85d 7b04 ldr.w r7, [sp], #4 - 80071dc: 4770 bx lr + 800705a: 4618 mov r0, r3 + 800705c: 370c adds r7, #12 + 800705e: 46bd mov sp, r7 + 8007060: f85d 7b04 ldr.w r7, [sp], #4 + 8007064: 4770 bx lr -080071de : +08007066 : * Disable the controller's Global Int in the AHB Config reg * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DisableGlobalInt(USB_OTG_GlobalTypeDef *USBx) { - 80071de: b480 push {r7} - 80071e0: b083 sub sp, #12 - 80071e2: af00 add r7, sp, #0 - 80071e4: 6078 str r0, [r7, #4] + 8007066: b480 push {r7} + 8007068: b083 sub sp, #12 + 800706a: af00 add r7, sp, #0 + 800706c: 6078 str r0, [r7, #4] USBx->GAHBCFG &= ~USB_OTG_GAHBCFG_GINT; - 80071e6: 687b ldr r3, [r7, #4] - 80071e8: 689b ldr r3, [r3, #8] - 80071ea: f023 0201 bic.w r2, r3, #1 - 80071ee: 687b ldr r3, [r7, #4] - 80071f0: 609a str r2, [r3, #8] + 800706e: 687b ldr r3, [r7, #4] + 8007070: 689b ldr r3, [r3, #8] + 8007072: f023 0201 bic.w r2, r3, #1 + 8007076: 687b ldr r3, [r7, #4] + 8007078: 609a str r2, [r3, #8] return HAL_OK; - 80071f2: 2300 movs r3, #0 + 800707a: 2300 movs r3, #0 } - 80071f4: 4618 mov r0, r3 - 80071f6: 370c adds r7, #12 - 80071f8: 46bd mov sp, r7 - 80071fa: f85d 7b04 ldr.w r7, [sp], #4 - 80071fe: 4770 bx lr + 800707c: 4618 mov r0, r3 + 800707e: 370c adds r7, #12 + 8007080: 46bd mov sp, r7 + 8007082: f85d 7b04 ldr.w r7, [sp], #4 + 8007086: 4770 bx lr -08007200 : +08007088 : * @arg USB_DEVICE_MODE Peripheral mode * @arg USB_HOST_MODE Host mode * @retval HAL status */ HAL_StatusTypeDef USB_SetCurrentMode(USB_OTG_GlobalTypeDef *USBx, USB_OTG_ModeTypeDef mode) { - 8007200: b580 push {r7, lr} - 8007202: b084 sub sp, #16 - 8007204: af00 add r7, sp, #0 - 8007206: 6078 str r0, [r7, #4] - 8007208: 460b mov r3, r1 - 800720a: 70fb strb r3, [r7, #3] + 8007088: b580 push {r7, lr} + 800708a: b084 sub sp, #16 + 800708c: af00 add r7, sp, #0 + 800708e: 6078 str r0, [r7, #4] + 8007090: 460b mov r3, r1 + 8007092: 70fb strb r3, [r7, #3] uint32_t ms = 0U; - 800720c: 2300 movs r3, #0 - 800720e: 60fb str r3, [r7, #12] + 8007094: 2300 movs r3, #0 + 8007096: 60fb str r3, [r7, #12] USBx->GUSBCFG &= ~(USB_OTG_GUSBCFG_FHMOD | USB_OTG_GUSBCFG_FDMOD); - 8007210: 687b ldr r3, [r7, #4] - 8007212: 68db ldr r3, [r3, #12] - 8007214: f023 42c0 bic.w r2, r3, #1610612736 @ 0x60000000 - 8007218: 687b ldr r3, [r7, #4] - 800721a: 60da str r2, [r3, #12] + 8007098: 687b ldr r3, [r7, #4] + 800709a: 68db ldr r3, [r3, #12] + 800709c: f023 42c0 bic.w r2, r3, #1610612736 @ 0x60000000 + 80070a0: 687b ldr r3, [r7, #4] + 80070a2: 60da str r2, [r3, #12] if (mode == USB_HOST_MODE) - 800721c: 78fb ldrb r3, [r7, #3] - 800721e: 2b01 cmp r3, #1 - 8007220: d115 bne.n 800724e + 80070a4: 78fb ldrb r3, [r7, #3] + 80070a6: 2b01 cmp r3, #1 + 80070a8: d115 bne.n 80070d6 { USBx->GUSBCFG |= USB_OTG_GUSBCFG_FHMOD; - 8007222: 687b ldr r3, [r7, #4] - 8007224: 68db ldr r3, [r3, #12] - 8007226: f043 5200 orr.w r2, r3, #536870912 @ 0x20000000 - 800722a: 687b ldr r3, [r7, #4] - 800722c: 60da str r2, [r3, #12] + 80070aa: 687b ldr r3, [r7, #4] + 80070ac: 68db ldr r3, [r3, #12] + 80070ae: f043 5200 orr.w r2, r3, #536870912 @ 0x20000000 + 80070b2: 687b ldr r3, [r7, #4] + 80070b4: 60da str r2, [r3, #12] do { HAL_Delay(10U); - 800722e: 200a movs r0, #10 - 8007230: f7fa fbd6 bl 80019e0 + 80070b6: 200a movs r0, #10 + 80070b8: f7fa fcba bl 8001a30 ms += 10U; - 8007234: 68fb ldr r3, [r7, #12] - 8007236: 330a adds r3, #10 - 8007238: 60fb str r3, [r7, #12] + 80070bc: 68fb ldr r3, [r7, #12] + 80070be: 330a adds r3, #10 + 80070c0: 60fb str r3, [r7, #12] } while ((USB_GetMode(USBx) != (uint32_t)USB_HOST_MODE) && (ms < HAL_USB_CURRENT_MODE_MAX_DELAY_MS)); - 800723a: 6878 ldr r0, [r7, #4] - 800723c: f001 f939 bl 80084b2 - 8007240: 4603 mov r3, r0 - 8007242: 2b01 cmp r3, #1 - 8007244: d01e beq.n 8007284 - 8007246: 68fb ldr r3, [r7, #12] - 8007248: 2bc7 cmp r3, #199 @ 0xc7 - 800724a: d9f0 bls.n 800722e - 800724c: e01a b.n 8007284 + 80070c2: 6878 ldr r0, [r7, #4] + 80070c4: f001 f939 bl 800833a + 80070c8: 4603 mov r3, r0 + 80070ca: 2b01 cmp r3, #1 + 80070cc: d01e beq.n 800710c + 80070ce: 68fb ldr r3, [r7, #12] + 80070d0: 2bc7 cmp r3, #199 @ 0xc7 + 80070d2: d9f0 bls.n 80070b6 + 80070d4: e01a b.n 800710c } else if (mode == USB_DEVICE_MODE) - 800724e: 78fb ldrb r3, [r7, #3] - 8007250: 2b00 cmp r3, #0 - 8007252: d115 bne.n 8007280 + 80070d6: 78fb ldrb r3, [r7, #3] + 80070d8: 2b00 cmp r3, #0 + 80070da: d115 bne.n 8007108 { USBx->GUSBCFG |= USB_OTG_GUSBCFG_FDMOD; - 8007254: 687b ldr r3, [r7, #4] - 8007256: 68db ldr r3, [r3, #12] - 8007258: f043 4280 orr.w r2, r3, #1073741824 @ 0x40000000 - 800725c: 687b ldr r3, [r7, #4] - 800725e: 60da str r2, [r3, #12] + 80070dc: 687b ldr r3, [r7, #4] + 80070de: 68db ldr r3, [r3, #12] + 80070e0: f043 4280 orr.w r2, r3, #1073741824 @ 0x40000000 + 80070e4: 687b ldr r3, [r7, #4] + 80070e6: 60da str r2, [r3, #12] do { HAL_Delay(10U); - 8007260: 200a movs r0, #10 - 8007262: f7fa fbbd bl 80019e0 + 80070e8: 200a movs r0, #10 + 80070ea: f7fa fca1 bl 8001a30 ms += 10U; - 8007266: 68fb ldr r3, [r7, #12] - 8007268: 330a adds r3, #10 - 800726a: 60fb str r3, [r7, #12] + 80070ee: 68fb ldr r3, [r7, #12] + 80070f0: 330a adds r3, #10 + 80070f2: 60fb str r3, [r7, #12] } while ((USB_GetMode(USBx) != (uint32_t)USB_DEVICE_MODE) && (ms < HAL_USB_CURRENT_MODE_MAX_DELAY_MS)); - 800726c: 6878 ldr r0, [r7, #4] - 800726e: f001 f920 bl 80084b2 - 8007272: 4603 mov r3, r0 - 8007274: 2b00 cmp r3, #0 - 8007276: d005 beq.n 8007284 - 8007278: 68fb ldr r3, [r7, #12] - 800727a: 2bc7 cmp r3, #199 @ 0xc7 - 800727c: d9f0 bls.n 8007260 - 800727e: e001 b.n 8007284 + 80070f4: 6878 ldr r0, [r7, #4] + 80070f6: f001 f920 bl 800833a + 80070fa: 4603 mov r3, r0 + 80070fc: 2b00 cmp r3, #0 + 80070fe: d005 beq.n 800710c + 8007100: 68fb ldr r3, [r7, #12] + 8007102: 2bc7 cmp r3, #199 @ 0xc7 + 8007104: d9f0 bls.n 80070e8 + 8007106: e001 b.n 800710c } else { return HAL_ERROR; - 8007280: 2301 movs r3, #1 - 8007282: e005 b.n 8007290 + 8007108: 2301 movs r3, #1 + 800710a: e005 b.n 8007118 } if (ms == HAL_USB_CURRENT_MODE_MAX_DELAY_MS) - 8007284: 68fb ldr r3, [r7, #12] - 8007286: 2bc8 cmp r3, #200 @ 0xc8 - 8007288: d101 bne.n 800728e + 800710c: 68fb ldr r3, [r7, #12] + 800710e: 2bc8 cmp r3, #200 @ 0xc8 + 8007110: d101 bne.n 8007116 { return HAL_ERROR; - 800728a: 2301 movs r3, #1 - 800728c: e000 b.n 8007290 + 8007112: 2301 movs r3, #1 + 8007114: e000 b.n 8007118 } return HAL_OK; - 800728e: 2300 movs r3, #0 + 8007116: 2300 movs r3, #0 } - 8007290: 4618 mov r0, r3 - 8007292: 3710 adds r7, #16 - 8007294: 46bd mov sp, r7 - 8007296: bd80 pop {r7, pc} + 8007118: 4618 mov r0, r3 + 800711a: 3710 adds r7, #16 + 800711c: 46bd mov sp, r7 + 800711e: bd80 pop {r7, pc} -08007298 : +08007120 : * @param cfg pointer to a USB_OTG_CfgTypeDef structure that contains * the configuration information for the specified USBx peripheral. * @retval HAL status */ HAL_StatusTypeDef USB_DevInit(USB_OTG_GlobalTypeDef *USBx, USB_OTG_CfgTypeDef cfg) { - 8007298: b084 sub sp, #16 - 800729a: b580 push {r7, lr} - 800729c: b086 sub sp, #24 - 800729e: af00 add r7, sp, #0 - 80072a0: 6078 str r0, [r7, #4] - 80072a2: f107 0024 add.w r0, r7, #36 @ 0x24 - 80072a6: e880 000e stmia.w r0, {r1, r2, r3} + 8007120: b084 sub sp, #16 + 8007122: b580 push {r7, lr} + 8007124: b086 sub sp, #24 + 8007126: af00 add r7, sp, #0 + 8007128: 6078 str r0, [r7, #4] + 800712a: f107 0024 add.w r0, r7, #36 @ 0x24 + 800712e: e880 000e stmia.w r0, {r1, r2, r3} HAL_StatusTypeDef ret = HAL_OK; - 80072aa: 2300 movs r3, #0 - 80072ac: 75fb strb r3, [r7, #23] + 8007132: 2300 movs r3, #0 + 8007134: 75fb strb r3, [r7, #23] uint32_t USBx_BASE = (uint32_t)USBx; - 80072ae: 687b ldr r3, [r7, #4] - 80072b0: 60fb str r3, [r7, #12] + 8007136: 687b ldr r3, [r7, #4] + 8007138: 60fb str r3, [r7, #12] uint32_t i; for (i = 0U; i < 15U; i++) - 80072b2: 2300 movs r3, #0 - 80072b4: 613b str r3, [r7, #16] - 80072b6: e009 b.n 80072cc + 800713a: 2300 movs r3, #0 + 800713c: 613b str r3, [r7, #16] + 800713e: e009 b.n 8007154 { USBx->DIEPTXF[i] = 0U; - 80072b8: 687a ldr r2, [r7, #4] - 80072ba: 693b ldr r3, [r7, #16] - 80072bc: 3340 adds r3, #64 @ 0x40 - 80072be: 009b lsls r3, r3, #2 - 80072c0: 4413 add r3, r2 - 80072c2: 2200 movs r2, #0 - 80072c4: 605a str r2, [r3, #4] + 8007140: 687a ldr r2, [r7, #4] + 8007142: 693b ldr r3, [r7, #16] + 8007144: 3340 adds r3, #64 @ 0x40 + 8007146: 009b lsls r3, r3, #2 + 8007148: 4413 add r3, r2 + 800714a: 2200 movs r2, #0 + 800714c: 605a str r2, [r3, #4] for (i = 0U; i < 15U; i++) - 80072c6: 693b ldr r3, [r7, #16] - 80072c8: 3301 adds r3, #1 - 80072ca: 613b str r3, [r7, #16] - 80072cc: 693b ldr r3, [r7, #16] - 80072ce: 2b0e cmp r3, #14 - 80072d0: d9f2 bls.n 80072b8 + 800714e: 693b ldr r3, [r7, #16] + 8007150: 3301 adds r3, #1 + 8007152: 613b str r3, [r7, #16] + 8007154: 693b ldr r3, [r7, #16] + 8007156: 2b0e cmp r3, #14 + 8007158: d9f2 bls.n 8007140 #if defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) \ || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) \ || defined(STM32F423xx) /* VBUS Sensing setup */ if (cfg.vbus_sensing_enable == 0U) - 80072d2: f897 302e ldrb.w r3, [r7, #46] @ 0x2e - 80072d6: 2b00 cmp r3, #0 - 80072d8: d11c bne.n 8007314 + 800715a: f897 302e ldrb.w r3, [r7, #46] @ 0x2e + 800715e: 2b00 cmp r3, #0 + 8007160: d11c bne.n 800719c { USBx_DEVICE->DCTL |= USB_OTG_DCTL_SDIS; - 80072da: 68fb ldr r3, [r7, #12] - 80072dc: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80072e0: 685b ldr r3, [r3, #4] - 80072e2: 68fa ldr r2, [r7, #12] - 80072e4: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80072e8: f043 0302 orr.w r3, r3, #2 - 80072ec: 6053 str r3, [r2, #4] + 8007162: 68fb ldr r3, [r7, #12] + 8007164: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007168: 685b ldr r3, [r3, #4] + 800716a: 68fa ldr r2, [r7, #12] + 800716c: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8007170: f043 0302 orr.w r3, r3, #2 + 8007174: 6053 str r3, [r2, #4] /* Deactivate VBUS Sensing B */ USBx->GCCFG &= ~USB_OTG_GCCFG_VBDEN; - 80072ee: 687b ldr r3, [r7, #4] - 80072f0: 6b9b ldr r3, [r3, #56] @ 0x38 - 80072f2: f423 1200 bic.w r2, r3, #2097152 @ 0x200000 - 80072f6: 687b ldr r3, [r7, #4] - 80072f8: 639a str r2, [r3, #56] @ 0x38 + 8007176: 687b ldr r3, [r7, #4] + 8007178: 6b9b ldr r3, [r3, #56] @ 0x38 + 800717a: f423 1200 bic.w r2, r3, #2097152 @ 0x200000 + 800717e: 687b ldr r3, [r7, #4] + 8007180: 639a str r2, [r3, #56] @ 0x38 /* B-peripheral session valid override enable */ USBx->GOTGCTL |= USB_OTG_GOTGCTL_BVALOEN; - 80072fa: 687b ldr r3, [r7, #4] - 80072fc: 681b ldr r3, [r3, #0] - 80072fe: f043 0240 orr.w r2, r3, #64 @ 0x40 - 8007302: 687b ldr r3, [r7, #4] - 8007304: 601a str r2, [r3, #0] + 8007182: 687b ldr r3, [r7, #4] + 8007184: 681b ldr r3, [r3, #0] + 8007186: f043 0240 orr.w r2, r3, #64 @ 0x40 + 800718a: 687b ldr r3, [r7, #4] + 800718c: 601a str r2, [r3, #0] USBx->GOTGCTL |= USB_OTG_GOTGCTL_BVALOVAL; - 8007306: 687b ldr r3, [r7, #4] - 8007308: 681b ldr r3, [r3, #0] - 800730a: f043 0280 orr.w r2, r3, #128 @ 0x80 - 800730e: 687b ldr r3, [r7, #4] - 8007310: 601a str r2, [r3, #0] - 8007312: e005 b.n 8007320 + 800718e: 687b ldr r3, [r7, #4] + 8007190: 681b ldr r3, [r3, #0] + 8007192: f043 0280 orr.w r2, r3, #128 @ 0x80 + 8007196: 687b ldr r3, [r7, #4] + 8007198: 601a str r2, [r3, #0] + 800719a: e005 b.n 80071a8 } else { /* Enable HW VBUS sensing */ USBx->GCCFG |= USB_OTG_GCCFG_VBDEN; - 8007314: 687b ldr r3, [r7, #4] - 8007316: 6b9b ldr r3, [r3, #56] @ 0x38 - 8007318: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 - 800731c: 687b ldr r3, [r7, #4] - 800731e: 639a str r2, [r3, #56] @ 0x38 + 800719c: 687b ldr r3, [r7, #4] + 800719e: 6b9b ldr r3, [r3, #56] @ 0x38 + 80071a0: f443 1200 orr.w r2, r3, #2097152 @ 0x200000 + 80071a4: 687b ldr r3, [r7, #4] + 80071a6: 639a str r2, [r3, #56] @ 0x38 #endif /* defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx) || defined(STM32F413xx) || defined(STM32F423xx) */ /* Restart the Phy Clock */ USBx_PCGCCTL = 0U; - 8007320: 68fb ldr r3, [r7, #12] - 8007322: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 8007326: 461a mov r2, r3 - 8007328: 2300 movs r3, #0 - 800732a: 6013 str r3, [r2, #0] + 80071a8: 68fb ldr r3, [r7, #12] + 80071aa: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80071ae: 461a mov r2, r3 + 80071b0: 2300 movs r3, #0 + 80071b2: 6013 str r3, [r2, #0] if (cfg.phy_itface == USB_OTG_ULPI_PHY) - 800732c: f897 3029 ldrb.w r3, [r7, #41] @ 0x29 - 8007330: 2b01 cmp r3, #1 - 8007332: d10d bne.n 8007350 + 80071b4: f897 3029 ldrb.w r3, [r7, #41] @ 0x29 + 80071b8: 2b01 cmp r3, #1 + 80071ba: d10d bne.n 80071d8 { if (cfg.speed == USBD_HS_SPEED) - 8007334: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 - 8007338: 2b00 cmp r3, #0 - 800733a: d104 bne.n 8007346 + 80071bc: f897 3027 ldrb.w r3, [r7, #39] @ 0x27 + 80071c0: 2b00 cmp r3, #0 + 80071c2: d104 bne.n 80071ce { /* Set Core speed to High speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_HIGH); - 800733c: 2100 movs r1, #0 - 800733e: 6878 ldr r0, [r7, #4] - 8007340: f000 f968 bl 8007614 - 8007344: e008 b.n 8007358 + 80071c4: 2100 movs r1, #0 + 80071c6: 6878 ldr r0, [r7, #4] + 80071c8: f000 f968 bl 800749c + 80071cc: e008 b.n 80071e0 } else { /* Set Core speed to Full speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_HIGH_IN_FULL); - 8007346: 2101 movs r1, #1 - 8007348: 6878 ldr r0, [r7, #4] - 800734a: f000 f963 bl 8007614 - 800734e: e003 b.n 8007358 + 80071ce: 2101 movs r1, #1 + 80071d0: 6878 ldr r0, [r7, #4] + 80071d2: f000 f963 bl 800749c + 80071d6: e003 b.n 80071e0 } } else { /* Set Core speed to Full speed mode */ (void)USB_SetDevSpeed(USBx, USB_OTG_SPEED_FULL); - 8007350: 2103 movs r1, #3 - 8007352: 6878 ldr r0, [r7, #4] - 8007354: f000 f95e bl 8007614 + 80071d8: 2103 movs r1, #3 + 80071da: 6878 ldr r0, [r7, #4] + 80071dc: f000 f95e bl 800749c } /* Flush the FIFOs */ if (USB_FlushTxFifo(USBx, 0x10U) != HAL_OK) /* all Tx FIFOs */ - 8007358: 2110 movs r1, #16 - 800735a: 6878 ldr r0, [r7, #4] - 800735c: f000 f8fa bl 8007554 - 8007360: 4603 mov r3, r0 - 8007362: 2b00 cmp r3, #0 - 8007364: d001 beq.n 800736a + 80071e0: 2110 movs r1, #16 + 80071e2: 6878 ldr r0, [r7, #4] + 80071e4: f000 f8fa bl 80073dc + 80071e8: 4603 mov r3, r0 + 80071ea: 2b00 cmp r3, #0 + 80071ec: d001 beq.n 80071f2 { ret = HAL_ERROR; - 8007366: 2301 movs r3, #1 - 8007368: 75fb strb r3, [r7, #23] + 80071ee: 2301 movs r3, #1 + 80071f0: 75fb strb r3, [r7, #23] } if (USB_FlushRxFifo(USBx) != HAL_OK) - 800736a: 6878 ldr r0, [r7, #4] - 800736c: f000 f924 bl 80075b8 - 8007370: 4603 mov r3, r0 - 8007372: 2b00 cmp r3, #0 - 8007374: d001 beq.n 800737a + 80071f2: 6878 ldr r0, [r7, #4] + 80071f4: f000 f924 bl 8007440 + 80071f8: 4603 mov r3, r0 + 80071fa: 2b00 cmp r3, #0 + 80071fc: d001 beq.n 8007202 { ret = HAL_ERROR; - 8007376: 2301 movs r3, #1 - 8007378: 75fb strb r3, [r7, #23] + 80071fe: 2301 movs r3, #1 + 8007200: 75fb strb r3, [r7, #23] } /* Clear all pending Device Interrupts */ USBx_DEVICE->DIEPMSK = 0U; - 800737a: 68fb ldr r3, [r7, #12] - 800737c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007380: 461a mov r2, r3 - 8007382: 2300 movs r3, #0 - 8007384: 6113 str r3, [r2, #16] + 8007202: 68fb ldr r3, [r7, #12] + 8007204: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007208: 461a mov r2, r3 + 800720a: 2300 movs r3, #0 + 800720c: 6113 str r3, [r2, #16] USBx_DEVICE->DOEPMSK = 0U; - 8007386: 68fb ldr r3, [r7, #12] - 8007388: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800738c: 461a mov r2, r3 - 800738e: 2300 movs r3, #0 - 8007390: 6153 str r3, [r2, #20] + 800720e: 68fb ldr r3, [r7, #12] + 8007210: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007214: 461a mov r2, r3 + 8007216: 2300 movs r3, #0 + 8007218: 6153 str r3, [r2, #20] USBx_DEVICE->DAINTMSK = 0U; - 8007392: 68fb ldr r3, [r7, #12] - 8007394: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007398: 461a mov r2, r3 - 800739a: 2300 movs r3, #0 - 800739c: 61d3 str r3, [r2, #28] + 800721a: 68fb ldr r3, [r7, #12] + 800721c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007220: 461a mov r2, r3 + 8007222: 2300 movs r3, #0 + 8007224: 61d3 str r3, [r2, #28] for (i = 0U; i < cfg.dev_endpoints; i++) - 800739e: 2300 movs r3, #0 - 80073a0: 613b str r3, [r7, #16] - 80073a2: e043 b.n 800742c + 8007226: 2300 movs r3, #0 + 8007228: 613b str r3, [r7, #16] + 800722a: e043 b.n 80072b4 { if ((USBx_INEP(i)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 80073a4: 693b ldr r3, [r7, #16] - 80073a6: 015a lsls r2, r3, #5 - 80073a8: 68fb ldr r3, [r7, #12] - 80073aa: 4413 add r3, r2 - 80073ac: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073b0: 681b ldr r3, [r3, #0] - 80073b2: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 80073b6: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 80073ba: d118 bne.n 80073ee + 800722c: 693b ldr r3, [r7, #16] + 800722e: 015a lsls r2, r3, #5 + 8007230: 68fb ldr r3, [r7, #12] + 8007232: 4413 add r3, r2 + 8007234: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007238: 681b ldr r3, [r3, #0] + 800723a: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 800723e: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007242: d118 bne.n 8007276 { if (i == 0U) - 80073bc: 693b ldr r3, [r7, #16] - 80073be: 2b00 cmp r3, #0 - 80073c0: d10a bne.n 80073d8 + 8007244: 693b ldr r3, [r7, #16] + 8007246: 2b00 cmp r3, #0 + 8007248: d10a bne.n 8007260 { USBx_INEP(i)->DIEPCTL = USB_OTG_DIEPCTL_SNAK; - 80073c2: 693b ldr r3, [r7, #16] - 80073c4: 015a lsls r2, r3, #5 - 80073c6: 68fb ldr r3, [r7, #12] - 80073c8: 4413 add r3, r2 - 80073ca: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073ce: 461a mov r2, r3 - 80073d0: f04f 6300 mov.w r3, #134217728 @ 0x8000000 - 80073d4: 6013 str r3, [r2, #0] - 80073d6: e013 b.n 8007400 + 800724a: 693b ldr r3, [r7, #16] + 800724c: 015a lsls r2, r3, #5 + 800724e: 68fb ldr r3, [r7, #12] + 8007250: 4413 add r3, r2 + 8007252: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007256: 461a mov r2, r3 + 8007258: f04f 6300 mov.w r3, #134217728 @ 0x8000000 + 800725c: 6013 str r3, [r2, #0] + 800725e: e013 b.n 8007288 } else { USBx_INEP(i)->DIEPCTL = USB_OTG_DIEPCTL_EPDIS | USB_OTG_DIEPCTL_SNAK; - 80073d8: 693b ldr r3, [r7, #16] - 80073da: 015a lsls r2, r3, #5 - 80073dc: 68fb ldr r3, [r7, #12] - 80073de: 4413 add r3, r2 - 80073e0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073e4: 461a mov r2, r3 - 80073e6: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 - 80073ea: 6013 str r3, [r2, #0] - 80073ec: e008 b.n 8007400 + 8007260: 693b ldr r3, [r7, #16] + 8007262: 015a lsls r2, r3, #5 + 8007264: 68fb ldr r3, [r7, #12] + 8007266: 4413 add r3, r2 + 8007268: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800726c: 461a mov r2, r3 + 800726e: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 + 8007272: 6013 str r3, [r2, #0] + 8007274: e008 b.n 8007288 } } else { USBx_INEP(i)->DIEPCTL = 0U; - 80073ee: 693b ldr r3, [r7, #16] - 80073f0: 015a lsls r2, r3, #5 - 80073f2: 68fb ldr r3, [r7, #12] - 80073f4: 4413 add r3, r2 - 80073f6: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80073fa: 461a mov r2, r3 - 80073fc: 2300 movs r3, #0 - 80073fe: 6013 str r3, [r2, #0] + 8007276: 693b ldr r3, [r7, #16] + 8007278: 015a lsls r2, r3, #5 + 800727a: 68fb ldr r3, [r7, #12] + 800727c: 4413 add r3, r2 + 800727e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007282: 461a mov r2, r3 + 8007284: 2300 movs r3, #0 + 8007286: 6013 str r3, [r2, #0] } USBx_INEP(i)->DIEPTSIZ = 0U; - 8007400: 693b ldr r3, [r7, #16] - 8007402: 015a lsls r2, r3, #5 - 8007404: 68fb ldr r3, [r7, #12] - 8007406: 4413 add r3, r2 - 8007408: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800740c: 461a mov r2, r3 - 800740e: 2300 movs r3, #0 - 8007410: 6113 str r3, [r2, #16] + 8007288: 693b ldr r3, [r7, #16] + 800728a: 015a lsls r2, r3, #5 + 800728c: 68fb ldr r3, [r7, #12] + 800728e: 4413 add r3, r2 + 8007290: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007294: 461a mov r2, r3 + 8007296: 2300 movs r3, #0 + 8007298: 6113 str r3, [r2, #16] USBx_INEP(i)->DIEPINT = 0xFB7FU; - 8007412: 693b ldr r3, [r7, #16] - 8007414: 015a lsls r2, r3, #5 - 8007416: 68fb ldr r3, [r7, #12] - 8007418: 4413 add r3, r2 - 800741a: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800741e: 461a mov r2, r3 - 8007420: f64f 337f movw r3, #64383 @ 0xfb7f - 8007424: 6093 str r3, [r2, #8] + 800729a: 693b ldr r3, [r7, #16] + 800729c: 015a lsls r2, r3, #5 + 800729e: 68fb ldr r3, [r7, #12] + 80072a0: 4413 add r3, r2 + 80072a2: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80072a6: 461a mov r2, r3 + 80072a8: f64f 337f movw r3, #64383 @ 0xfb7f + 80072ac: 6093 str r3, [r2, #8] for (i = 0U; i < cfg.dev_endpoints; i++) - 8007426: 693b ldr r3, [r7, #16] - 8007428: 3301 adds r3, #1 - 800742a: 613b str r3, [r7, #16] - 800742c: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 - 8007430: 461a mov r2, r3 - 8007432: 693b ldr r3, [r7, #16] - 8007434: 4293 cmp r3, r2 - 8007436: d3b5 bcc.n 80073a4 + 80072ae: 693b ldr r3, [r7, #16] + 80072b0: 3301 adds r3, #1 + 80072b2: 613b str r3, [r7, #16] + 80072b4: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 + 80072b8: 461a mov r2, r3 + 80072ba: 693b ldr r3, [r7, #16] + 80072bc: 4293 cmp r3, r2 + 80072be: d3b5 bcc.n 800722c } for (i = 0U; i < cfg.dev_endpoints; i++) - 8007438: 2300 movs r3, #0 - 800743a: 613b str r3, [r7, #16] - 800743c: e043 b.n 80074c6 + 80072c0: 2300 movs r3, #0 + 80072c2: 613b str r3, [r7, #16] + 80072c4: e043 b.n 800734e { if ((USBx_OUTEP(i)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 800743e: 693b ldr r3, [r7, #16] - 8007440: 015a lsls r2, r3, #5 - 8007442: 68fb ldr r3, [r7, #12] - 8007444: 4413 add r3, r2 - 8007446: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800744a: 681b ldr r3, [r3, #0] - 800744c: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007450: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007454: d118 bne.n 8007488 + 80072c6: 693b ldr r3, [r7, #16] + 80072c8: 015a lsls r2, r3, #5 + 80072ca: 68fb ldr r3, [r7, #12] + 80072cc: 4413 add r3, r2 + 80072ce: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80072d2: 681b ldr r3, [r3, #0] + 80072d4: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80072d8: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80072dc: d118 bne.n 8007310 { if (i == 0U) - 8007456: 693b ldr r3, [r7, #16] - 8007458: 2b00 cmp r3, #0 - 800745a: d10a bne.n 8007472 + 80072de: 693b ldr r3, [r7, #16] + 80072e0: 2b00 cmp r3, #0 + 80072e2: d10a bne.n 80072fa { USBx_OUTEP(i)->DOEPCTL = USB_OTG_DOEPCTL_SNAK; - 800745c: 693b ldr r3, [r7, #16] - 800745e: 015a lsls r2, r3, #5 - 8007460: 68fb ldr r3, [r7, #12] - 8007462: 4413 add r3, r2 - 8007464: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007468: 461a mov r2, r3 - 800746a: f04f 6300 mov.w r3, #134217728 @ 0x8000000 - 800746e: 6013 str r3, [r2, #0] - 8007470: e013 b.n 800749a + 80072e4: 693b ldr r3, [r7, #16] + 80072e6: 015a lsls r2, r3, #5 + 80072e8: 68fb ldr r3, [r7, #12] + 80072ea: 4413 add r3, r2 + 80072ec: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80072f0: 461a mov r2, r3 + 80072f2: f04f 6300 mov.w r3, #134217728 @ 0x8000000 + 80072f6: 6013 str r3, [r2, #0] + 80072f8: e013 b.n 8007322 } else { USBx_OUTEP(i)->DOEPCTL = USB_OTG_DOEPCTL_EPDIS | USB_OTG_DOEPCTL_SNAK; - 8007472: 693b ldr r3, [r7, #16] - 8007474: 015a lsls r2, r3, #5 - 8007476: 68fb ldr r3, [r7, #12] - 8007478: 4413 add r3, r2 - 800747a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800747e: 461a mov r2, r3 - 8007480: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 - 8007484: 6013 str r3, [r2, #0] - 8007486: e008 b.n 800749a + 80072fa: 693b ldr r3, [r7, #16] + 80072fc: 015a lsls r2, r3, #5 + 80072fe: 68fb ldr r3, [r7, #12] + 8007300: 4413 add r3, r2 + 8007302: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007306: 461a mov r2, r3 + 8007308: f04f 4390 mov.w r3, #1207959552 @ 0x48000000 + 800730c: 6013 str r3, [r2, #0] + 800730e: e008 b.n 8007322 } } else { USBx_OUTEP(i)->DOEPCTL = 0U; - 8007488: 693b ldr r3, [r7, #16] - 800748a: 015a lsls r2, r3, #5 - 800748c: 68fb ldr r3, [r7, #12] - 800748e: 4413 add r3, r2 - 8007490: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007494: 461a mov r2, r3 - 8007496: 2300 movs r3, #0 - 8007498: 6013 str r3, [r2, #0] + 8007310: 693b ldr r3, [r7, #16] + 8007312: 015a lsls r2, r3, #5 + 8007314: 68fb ldr r3, [r7, #12] + 8007316: 4413 add r3, r2 + 8007318: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800731c: 461a mov r2, r3 + 800731e: 2300 movs r3, #0 + 8007320: 6013 str r3, [r2, #0] } USBx_OUTEP(i)->DOEPTSIZ = 0U; - 800749a: 693b ldr r3, [r7, #16] - 800749c: 015a lsls r2, r3, #5 - 800749e: 68fb ldr r3, [r7, #12] - 80074a0: 4413 add r3, r2 - 80074a2: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80074a6: 461a mov r2, r3 - 80074a8: 2300 movs r3, #0 - 80074aa: 6113 str r3, [r2, #16] + 8007322: 693b ldr r3, [r7, #16] + 8007324: 015a lsls r2, r3, #5 + 8007326: 68fb ldr r3, [r7, #12] + 8007328: 4413 add r3, r2 + 800732a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800732e: 461a mov r2, r3 + 8007330: 2300 movs r3, #0 + 8007332: 6113 str r3, [r2, #16] USBx_OUTEP(i)->DOEPINT = 0xFB7FU; - 80074ac: 693b ldr r3, [r7, #16] - 80074ae: 015a lsls r2, r3, #5 - 80074b0: 68fb ldr r3, [r7, #12] - 80074b2: 4413 add r3, r2 - 80074b4: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80074b8: 461a mov r2, r3 - 80074ba: f64f 337f movw r3, #64383 @ 0xfb7f - 80074be: 6093 str r3, [r2, #8] + 8007334: 693b ldr r3, [r7, #16] + 8007336: 015a lsls r2, r3, #5 + 8007338: 68fb ldr r3, [r7, #12] + 800733a: 4413 add r3, r2 + 800733c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007340: 461a mov r2, r3 + 8007342: f64f 337f movw r3, #64383 @ 0xfb7f + 8007346: 6093 str r3, [r2, #8] for (i = 0U; i < cfg.dev_endpoints; i++) - 80074c0: 693b ldr r3, [r7, #16] - 80074c2: 3301 adds r3, #1 - 80074c4: 613b str r3, [r7, #16] - 80074c6: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 - 80074ca: 461a mov r2, r3 - 80074cc: 693b ldr r3, [r7, #16] - 80074ce: 4293 cmp r3, r2 - 80074d0: d3b5 bcc.n 800743e + 8007348: 693b ldr r3, [r7, #16] + 800734a: 3301 adds r3, #1 + 800734c: 613b str r3, [r7, #16] + 800734e: f897 3024 ldrb.w r3, [r7, #36] @ 0x24 + 8007352: 461a mov r2, r3 + 8007354: 693b ldr r3, [r7, #16] + 8007356: 4293 cmp r3, r2 + 8007358: d3b5 bcc.n 80072c6 } USBx_DEVICE->DIEPMSK &= ~(USB_OTG_DIEPMSK_TXFURM); - 80074d2: 68fb ldr r3, [r7, #12] - 80074d4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80074d8: 691b ldr r3, [r3, #16] - 80074da: 68fa ldr r2, [r7, #12] - 80074dc: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80074e0: f423 7380 bic.w r3, r3, #256 @ 0x100 - 80074e4: 6113 str r3, [r2, #16] + 800735a: 68fb ldr r3, [r7, #12] + 800735c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007360: 691b ldr r3, [r3, #16] + 8007362: 68fa ldr r2, [r7, #12] + 8007364: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8007368: f423 7380 bic.w r3, r3, #256 @ 0x100 + 800736c: 6113 str r3, [r2, #16] /* Disable all interrupts. */ USBx->GINTMSK = 0U; - 80074e6: 687b ldr r3, [r7, #4] - 80074e8: 2200 movs r2, #0 - 80074ea: 619a str r2, [r3, #24] + 800736e: 687b ldr r3, [r7, #4] + 8007370: 2200 movs r2, #0 + 8007372: 619a str r2, [r3, #24] /* Clear any pending interrupts */ USBx->GINTSTS = 0xBFFFFFFFU; - 80074ec: 687b ldr r3, [r7, #4] - 80074ee: f06f 4280 mvn.w r2, #1073741824 @ 0x40000000 - 80074f2: 615a str r2, [r3, #20] + 8007374: 687b ldr r3, [r7, #4] + 8007376: f06f 4280 mvn.w r2, #1073741824 @ 0x40000000 + 800737a: 615a str r2, [r3, #20] /* Enable the common interrupts */ if (cfg.dma_enable == 0U) - 80074f4: f897 3026 ldrb.w r3, [r7, #38] @ 0x26 - 80074f8: 2b00 cmp r3, #0 - 80074fa: d105 bne.n 8007508 + 800737c: f897 3026 ldrb.w r3, [r7, #38] @ 0x26 + 8007380: 2b00 cmp r3, #0 + 8007382: d105 bne.n 8007390 { USBx->GINTMSK |= USB_OTG_GINTMSK_RXFLVLM; - 80074fc: 687b ldr r3, [r7, #4] - 80074fe: 699b ldr r3, [r3, #24] - 8007500: f043 0210 orr.w r2, r3, #16 - 8007504: 687b ldr r3, [r7, #4] - 8007506: 619a str r2, [r3, #24] + 8007384: 687b ldr r3, [r7, #4] + 8007386: 699b ldr r3, [r3, #24] + 8007388: f043 0210 orr.w r2, r3, #16 + 800738c: 687b ldr r3, [r7, #4] + 800738e: 619a str r2, [r3, #24] } /* Enable interrupts matching to the Device mode ONLY */ USBx->GINTMSK |= USB_OTG_GINTMSK_USBSUSPM | USB_OTG_GINTMSK_USBRST | - 8007508: 687b ldr r3, [r7, #4] - 800750a: 699a ldr r2, [r3, #24] - 800750c: 4b10 ldr r3, [pc, #64] @ (8007550 ) - 800750e: 4313 orrs r3, r2 - 8007510: 687a ldr r2, [r7, #4] - 8007512: 6193 str r3, [r2, #24] + 8007390: 687b ldr r3, [r7, #4] + 8007392: 699a ldr r2, [r3, #24] + 8007394: 4b10 ldr r3, [pc, #64] @ (80073d8 ) + 8007396: 4313 orrs r3, r2 + 8007398: 687a ldr r2, [r7, #4] + 800739a: 6193 str r3, [r2, #24] USB_OTG_GINTMSK_ENUMDNEM | USB_OTG_GINTMSK_IEPINT | USB_OTG_GINTMSK_OEPINT | USB_OTG_GINTMSK_IISOIXFRM | USB_OTG_GINTMSK_PXFRM_IISOOXFRM | USB_OTG_GINTMSK_WUIM; if (cfg.Sof_enable != 0U) - 8007514: f897 302a ldrb.w r3, [r7, #42] @ 0x2a - 8007518: 2b00 cmp r3, #0 - 800751a: d005 beq.n 8007528 + 800739c: f897 302a ldrb.w r3, [r7, #42] @ 0x2a + 80073a0: 2b00 cmp r3, #0 + 80073a2: d005 beq.n 80073b0 { USBx->GINTMSK |= USB_OTG_GINTMSK_SOFM; - 800751c: 687b ldr r3, [r7, #4] - 800751e: 699b ldr r3, [r3, #24] - 8007520: f043 0208 orr.w r2, r3, #8 - 8007524: 687b ldr r3, [r7, #4] - 8007526: 619a str r2, [r3, #24] + 80073a4: 687b ldr r3, [r7, #4] + 80073a6: 699b ldr r3, [r3, #24] + 80073a8: f043 0208 orr.w r2, r3, #8 + 80073ac: 687b ldr r3, [r7, #4] + 80073ae: 619a str r2, [r3, #24] } if (cfg.vbus_sensing_enable == 1U) - 8007528: f897 302e ldrb.w r3, [r7, #46] @ 0x2e - 800752c: 2b01 cmp r3, #1 - 800752e: d107 bne.n 8007540 + 80073b0: f897 302e ldrb.w r3, [r7, #46] @ 0x2e + 80073b4: 2b01 cmp r3, #1 + 80073b6: d107 bne.n 80073c8 { USBx->GINTMSK |= (USB_OTG_GINTMSK_SRQIM | USB_OTG_GINTMSK_OTGINT); - 8007530: 687b ldr r3, [r7, #4] - 8007532: 699b ldr r3, [r3, #24] - 8007534: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007538: f043 0304 orr.w r3, r3, #4 - 800753c: 687a ldr r2, [r7, #4] - 800753e: 6193 str r3, [r2, #24] + 80073b8: 687b ldr r3, [r7, #4] + 80073ba: 699b ldr r3, [r3, #24] + 80073bc: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 80073c0: f043 0304 orr.w r3, r3, #4 + 80073c4: 687a ldr r2, [r7, #4] + 80073c6: 6193 str r3, [r2, #24] } return ret; - 8007540: 7dfb ldrb r3, [r7, #23] + 80073c8: 7dfb ldrb r3, [r7, #23] } - 8007542: 4618 mov r0, r3 - 8007544: 3718 adds r7, #24 - 8007546: 46bd mov sp, r7 - 8007548: e8bd 4080 ldmia.w sp!, {r7, lr} - 800754c: b004 add sp, #16 - 800754e: 4770 bx lr - 8007550: 803c3800 .word 0x803c3800 + 80073ca: 4618 mov r0, r3 + 80073cc: 3718 adds r7, #24 + 80073ce: 46bd mov sp, r7 + 80073d0: e8bd 4080 ldmia.w sp!, {r7, lr} + 80073d4: b004 add sp, #16 + 80073d6: 4770 bx lr + 80073d8: 803c3800 .word 0x803c3800 -08007554 : +080073dc : * This parameter can be a value from 1 to 15 15 means Flush all Tx FIFOs * @retval HAL status */ HAL_StatusTypeDef USB_FlushTxFifo(USB_OTG_GlobalTypeDef *USBx, uint32_t num) { - 8007554: b480 push {r7} - 8007556: b085 sub sp, #20 - 8007558: af00 add r7, sp, #0 - 800755a: 6078 str r0, [r7, #4] - 800755c: 6039 str r1, [r7, #0] + 80073dc: b480 push {r7} + 80073de: b085 sub sp, #20 + 80073e0: af00 add r7, sp, #0 + 80073e2: 6078 str r0, [r7, #4] + 80073e4: 6039 str r1, [r7, #0] __IO uint32_t count = 0U; - 800755e: 2300 movs r3, #0 - 8007560: 60fb str r3, [r7, #12] + 80073e6: 2300 movs r3, #0 + 80073e8: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 8007562: 68fb ldr r3, [r7, #12] - 8007564: 3301 adds r3, #1 - 8007566: 60fb str r3, [r7, #12] + 80073ea: 68fb ldr r3, [r7, #12] + 80073ec: 3301 adds r3, #1 + 80073ee: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 8007568: 68fb ldr r3, [r7, #12] - 800756a: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 800756e: d901 bls.n 8007574 + 80073f0: 68fb ldr r3, [r7, #12] + 80073f2: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 80073f6: d901 bls.n 80073fc { return HAL_TIMEOUT; - 8007570: 2303 movs r3, #3 - 8007572: e01b b.n 80075ac + 80073f8: 2303 movs r3, #3 + 80073fa: e01b b.n 8007434 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 8007574: 687b ldr r3, [r7, #4] - 8007576: 691b ldr r3, [r3, #16] - 8007578: 2b00 cmp r3, #0 - 800757a: daf2 bge.n 8007562 + 80073fc: 687b ldr r3, [r7, #4] + 80073fe: 691b ldr r3, [r3, #16] + 8007400: 2b00 cmp r3, #0 + 8007402: daf2 bge.n 80073ea /* Flush TX Fifo */ count = 0U; - 800757c: 2300 movs r3, #0 - 800757e: 60fb str r3, [r7, #12] + 8007404: 2300 movs r3, #0 + 8007406: 60fb str r3, [r7, #12] USBx->GRSTCTL = (USB_OTG_GRSTCTL_TXFFLSH | (num << 6)); - 8007580: 683b ldr r3, [r7, #0] - 8007582: 019b lsls r3, r3, #6 - 8007584: f043 0220 orr.w r2, r3, #32 - 8007588: 687b ldr r3, [r7, #4] - 800758a: 611a str r2, [r3, #16] + 8007408: 683b ldr r3, [r7, #0] + 800740a: 019b lsls r3, r3, #6 + 800740c: f043 0220 orr.w r2, r3, #32 + 8007410: 687b ldr r3, [r7, #4] + 8007412: 611a str r2, [r3, #16] do { count++; - 800758c: 68fb ldr r3, [r7, #12] - 800758e: 3301 adds r3, #1 - 8007590: 60fb str r3, [r7, #12] + 8007414: 68fb ldr r3, [r7, #12] + 8007416: 3301 adds r3, #1 + 8007418: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 8007592: 68fb ldr r3, [r7, #12] - 8007594: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 8007598: d901 bls.n 800759e + 800741a: 68fb ldr r3, [r7, #12] + 800741c: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8007420: d901 bls.n 8007426 { return HAL_TIMEOUT; - 800759a: 2303 movs r3, #3 - 800759c: e006 b.n 80075ac + 8007422: 2303 movs r3, #3 + 8007424: e006 b.n 8007434 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_TXFFLSH) == USB_OTG_GRSTCTL_TXFFLSH); - 800759e: 687b ldr r3, [r7, #4] - 80075a0: 691b ldr r3, [r3, #16] - 80075a2: f003 0320 and.w r3, r3, #32 - 80075a6: 2b20 cmp r3, #32 - 80075a8: d0f0 beq.n 800758c + 8007426: 687b ldr r3, [r7, #4] + 8007428: 691b ldr r3, [r3, #16] + 800742a: f003 0320 and.w r3, r3, #32 + 800742e: 2b20 cmp r3, #32 + 8007430: d0f0 beq.n 8007414 return HAL_OK; - 80075aa: 2300 movs r3, #0 + 8007432: 2300 movs r3, #0 } - 80075ac: 4618 mov r0, r3 - 80075ae: 3714 adds r7, #20 - 80075b0: 46bd mov sp, r7 - 80075b2: f85d 7b04 ldr.w r7, [sp], #4 - 80075b6: 4770 bx lr + 8007434: 4618 mov r0, r3 + 8007436: 3714 adds r7, #20 + 8007438: 46bd mov sp, r7 + 800743a: f85d 7b04 ldr.w r7, [sp], #4 + 800743e: 4770 bx lr -080075b8 : +08007440 : * @brief USB_FlushRxFifo Flush Rx FIFO * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_FlushRxFifo(USB_OTG_GlobalTypeDef *USBx) { - 80075b8: b480 push {r7} - 80075ba: b085 sub sp, #20 - 80075bc: af00 add r7, sp, #0 - 80075be: 6078 str r0, [r7, #4] + 8007440: b480 push {r7} + 8007442: b085 sub sp, #20 + 8007444: af00 add r7, sp, #0 + 8007446: 6078 str r0, [r7, #4] __IO uint32_t count = 0U; - 80075c0: 2300 movs r3, #0 - 80075c2: 60fb str r3, [r7, #12] + 8007448: 2300 movs r3, #0 + 800744a: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 80075c4: 68fb ldr r3, [r7, #12] - 80075c6: 3301 adds r3, #1 - 80075c8: 60fb str r3, [r7, #12] + 800744c: 68fb ldr r3, [r7, #12] + 800744e: 3301 adds r3, #1 + 8007450: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80075ca: 68fb ldr r3, [r7, #12] - 80075cc: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80075d0: d901 bls.n 80075d6 + 8007452: 68fb ldr r3, [r7, #12] + 8007454: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8007458: d901 bls.n 800745e { return HAL_TIMEOUT; - 80075d2: 2303 movs r3, #3 - 80075d4: e018 b.n 8007608 + 800745a: 2303 movs r3, #3 + 800745c: e018 b.n 8007490 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 80075d6: 687b ldr r3, [r7, #4] - 80075d8: 691b ldr r3, [r3, #16] - 80075da: 2b00 cmp r3, #0 - 80075dc: daf2 bge.n 80075c4 + 800745e: 687b ldr r3, [r7, #4] + 8007460: 691b ldr r3, [r3, #16] + 8007462: 2b00 cmp r3, #0 + 8007464: daf2 bge.n 800744c /* Flush RX Fifo */ count = 0U; - 80075de: 2300 movs r3, #0 - 80075e0: 60fb str r3, [r7, #12] + 8007466: 2300 movs r3, #0 + 8007468: 60fb str r3, [r7, #12] USBx->GRSTCTL = USB_OTG_GRSTCTL_RXFFLSH; - 80075e2: 687b ldr r3, [r7, #4] - 80075e4: 2210 movs r2, #16 - 80075e6: 611a str r2, [r3, #16] + 800746a: 687b ldr r3, [r7, #4] + 800746c: 2210 movs r2, #16 + 800746e: 611a str r2, [r3, #16] do { count++; - 80075e8: 68fb ldr r3, [r7, #12] - 80075ea: 3301 adds r3, #1 - 80075ec: 60fb str r3, [r7, #12] + 8007470: 68fb ldr r3, [r7, #12] + 8007472: 3301 adds r3, #1 + 8007474: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80075ee: 68fb ldr r3, [r7, #12] - 80075f0: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80075f4: d901 bls.n 80075fa + 8007476: 68fb ldr r3, [r7, #12] + 8007478: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 800747c: d901 bls.n 8007482 { return HAL_TIMEOUT; - 80075f6: 2303 movs r3, #3 - 80075f8: e006 b.n 8007608 + 800747e: 2303 movs r3, #3 + 8007480: e006 b.n 8007490 } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_RXFFLSH) == USB_OTG_GRSTCTL_RXFFLSH); - 80075fa: 687b ldr r3, [r7, #4] - 80075fc: 691b ldr r3, [r3, #16] - 80075fe: f003 0310 and.w r3, r3, #16 - 8007602: 2b10 cmp r3, #16 - 8007604: d0f0 beq.n 80075e8 + 8007482: 687b ldr r3, [r7, #4] + 8007484: 691b ldr r3, [r3, #16] + 8007486: f003 0310 and.w r3, r3, #16 + 800748a: 2b10 cmp r3, #16 + 800748c: d0f0 beq.n 8007470 return HAL_OK; - 8007606: 2300 movs r3, #0 + 800748e: 2300 movs r3, #0 } - 8007608: 4618 mov r0, r3 - 800760a: 3714 adds r7, #20 - 800760c: 46bd mov sp, r7 - 800760e: f85d 7b04 ldr.w r7, [sp], #4 - 8007612: 4770 bx lr + 8007490: 4618 mov r0, r3 + 8007492: 3714 adds r7, #20 + 8007494: 46bd mov sp, r7 + 8007496: f85d 7b04 ldr.w r7, [sp], #4 + 800749a: 4770 bx lr -08007614 : +0800749c : * @arg USB_OTG_SPEED_HIGH_IN_FULL: High speed core in Full Speed mode * @arg USB_OTG_SPEED_FULL: Full speed mode * @retval Hal status */ HAL_StatusTypeDef USB_SetDevSpeed(const USB_OTG_GlobalTypeDef *USBx, uint8_t speed) { - 8007614: b480 push {r7} - 8007616: b085 sub sp, #20 - 8007618: af00 add r7, sp, #0 - 800761a: 6078 str r0, [r7, #4] - 800761c: 460b mov r3, r1 - 800761e: 70fb strb r3, [r7, #3] + 800749c: b480 push {r7} + 800749e: b085 sub sp, #20 + 80074a0: af00 add r7, sp, #0 + 80074a2: 6078 str r0, [r7, #4] + 80074a4: 460b mov r3, r1 + 80074a6: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 8007620: 687b ldr r3, [r7, #4] - 8007622: 60fb str r3, [r7, #12] + 80074a8: 687b ldr r3, [r7, #4] + 80074aa: 60fb str r3, [r7, #12] USBx_DEVICE->DCFG |= speed; - 8007624: 68fb ldr r3, [r7, #12] - 8007626: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800762a: 681a ldr r2, [r3, #0] - 800762c: 78fb ldrb r3, [r7, #3] - 800762e: 68f9 ldr r1, [r7, #12] - 8007630: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007634: 4313 orrs r3, r2 - 8007636: 600b str r3, [r1, #0] + 80074ac: 68fb ldr r3, [r7, #12] + 80074ae: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80074b2: 681a ldr r2, [r3, #0] + 80074b4: 78fb ldrb r3, [r7, #3] + 80074b6: 68f9 ldr r1, [r7, #12] + 80074b8: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80074bc: 4313 orrs r3, r2 + 80074be: 600b str r3, [r1, #0] return HAL_OK; - 8007638: 2300 movs r3, #0 + 80074c0: 2300 movs r3, #0 } - 800763a: 4618 mov r0, r3 - 800763c: 3714 adds r7, #20 - 800763e: 46bd mov sp, r7 - 8007640: f85d 7b04 ldr.w r7, [sp], #4 - 8007644: 4770 bx lr + 80074c2: 4618 mov r0, r3 + 80074c4: 3714 adds r7, #20 + 80074c6: 46bd mov sp, r7 + 80074c8: f85d 7b04 ldr.w r7, [sp], #4 + 80074cc: 4770 bx lr -08007646 : +080074ce : * This parameter can be one of these values: * @arg USBD_HS_SPEED: High speed mode * @arg USBD_FS_SPEED: Full speed mode */ uint8_t USB_GetDevSpeed(const USB_OTG_GlobalTypeDef *USBx) { - 8007646: b480 push {r7} - 8007648: b087 sub sp, #28 - 800764a: af00 add r7, sp, #0 - 800764c: 6078 str r0, [r7, #4] + 80074ce: b480 push {r7} + 80074d0: b087 sub sp, #28 + 80074d2: af00 add r7, sp, #0 + 80074d4: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 800764e: 687b ldr r3, [r7, #4] - 8007650: 613b str r3, [r7, #16] + 80074d6: 687b ldr r3, [r7, #4] + 80074d8: 613b str r3, [r7, #16] uint8_t speed; uint32_t DevEnumSpeed = USBx_DEVICE->DSTS & USB_OTG_DSTS_ENUMSPD; - 8007652: 693b ldr r3, [r7, #16] - 8007654: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007658: 689b ldr r3, [r3, #8] - 800765a: f003 0306 and.w r3, r3, #6 - 800765e: 60fb str r3, [r7, #12] + 80074da: 693b ldr r3, [r7, #16] + 80074dc: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80074e0: 689b ldr r3, [r3, #8] + 80074e2: f003 0306 and.w r3, r3, #6 + 80074e6: 60fb str r3, [r7, #12] if (DevEnumSpeed == DSTS_ENUMSPD_HS_PHY_30MHZ_OR_60MHZ) - 8007660: 68fb ldr r3, [r7, #12] - 8007662: 2b00 cmp r3, #0 - 8007664: d102 bne.n 800766c + 80074e8: 68fb ldr r3, [r7, #12] + 80074ea: 2b00 cmp r3, #0 + 80074ec: d102 bne.n 80074f4 { speed = USBD_HS_SPEED; - 8007666: 2300 movs r3, #0 - 8007668: 75fb strb r3, [r7, #23] - 800766a: e00a b.n 8007682 + 80074ee: 2300 movs r3, #0 + 80074f0: 75fb strb r3, [r7, #23] + 80074f2: e00a b.n 800750a } else if ((DevEnumSpeed == DSTS_ENUMSPD_FS_PHY_30MHZ_OR_60MHZ) || - 800766c: 68fb ldr r3, [r7, #12] - 800766e: 2b02 cmp r3, #2 - 8007670: d002 beq.n 8007678 - 8007672: 68fb ldr r3, [r7, #12] - 8007674: 2b06 cmp r3, #6 - 8007676: d102 bne.n 800767e + 80074f4: 68fb ldr r3, [r7, #12] + 80074f6: 2b02 cmp r3, #2 + 80074f8: d002 beq.n 8007500 + 80074fa: 68fb ldr r3, [r7, #12] + 80074fc: 2b06 cmp r3, #6 + 80074fe: d102 bne.n 8007506 (DevEnumSpeed == DSTS_ENUMSPD_FS_PHY_48MHZ)) { speed = USBD_FS_SPEED; - 8007678: 2302 movs r3, #2 - 800767a: 75fb strb r3, [r7, #23] - 800767c: e001 b.n 8007682 + 8007500: 2302 movs r3, #2 + 8007502: 75fb strb r3, [r7, #23] + 8007504: e001 b.n 800750a } else { speed = 0xFU; - 800767e: 230f movs r3, #15 - 8007680: 75fb strb r3, [r7, #23] + 8007506: 230f movs r3, #15 + 8007508: 75fb strb r3, [r7, #23] } return speed; - 8007682: 7dfb ldrb r3, [r7, #23] + 800750a: 7dfb ldrb r3, [r7, #23] } - 8007684: 4618 mov r0, r3 - 8007686: 371c adds r7, #28 - 8007688: 46bd mov sp, r7 - 800768a: f85d 7b04 ldr.w r7, [sp], #4 - 800768e: 4770 bx lr + 800750c: 4618 mov r0, r3 + 800750e: 371c adds r7, #28 + 8007510: 46bd mov sp, r7 + 8007512: f85d 7b04 ldr.w r7, [sp], #4 + 8007516: 4770 bx lr -08007690 : +08007518 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_ActivateEndpoint(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 8007690: b480 push {r7} - 8007692: b085 sub sp, #20 - 8007694: af00 add r7, sp, #0 - 8007696: 6078 str r0, [r7, #4] - 8007698: 6039 str r1, [r7, #0] + 8007518: b480 push {r7} + 800751a: b085 sub sp, #20 + 800751c: af00 add r7, sp, #0 + 800751e: 6078 str r0, [r7, #4] + 8007520: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 800769a: 687b ldr r3, [r7, #4] - 800769c: 60fb str r3, [r7, #12] + 8007522: 687b ldr r3, [r7, #4] + 8007524: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 800769e: 683b ldr r3, [r7, #0] - 80076a0: 781b ldrb r3, [r3, #0] - 80076a2: 60bb str r3, [r7, #8] + 8007526: 683b ldr r3, [r7, #0] + 8007528: 781b ldrb r3, [r3, #0] + 800752a: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 80076a4: 683b ldr r3, [r7, #0] - 80076a6: 785b ldrb r3, [r3, #1] - 80076a8: 2b01 cmp r3, #1 - 80076aa: d13a bne.n 8007722 + 800752c: 683b ldr r3, [r7, #0] + 800752e: 785b ldrb r3, [r3, #1] + 8007530: 2b01 cmp r3, #1 + 8007532: d13a bne.n 80075aa { USBx_DEVICE->DAINTMSK |= USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK)); - 80076ac: 68fb ldr r3, [r7, #12] - 80076ae: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80076b2: 69da ldr r2, [r3, #28] - 80076b4: 683b ldr r3, [r7, #0] - 80076b6: 781b ldrb r3, [r3, #0] - 80076b8: f003 030f and.w r3, r3, #15 - 80076bc: 2101 movs r1, #1 - 80076be: fa01 f303 lsl.w r3, r1, r3 - 80076c2: b29b uxth r3, r3 - 80076c4: 68f9 ldr r1, [r7, #12] - 80076c6: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80076ca: 4313 orrs r3, r2 - 80076cc: 61cb str r3, [r1, #28] + 8007534: 68fb ldr r3, [r7, #12] + 8007536: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800753a: 69da ldr r2, [r3, #28] + 800753c: 683b ldr r3, [r7, #0] + 800753e: 781b ldrb r3, [r3, #0] + 8007540: f003 030f and.w r3, r3, #15 + 8007544: 2101 movs r1, #1 + 8007546: fa01 f303 lsl.w r3, r1, r3 + 800754a: b29b uxth r3, r3 + 800754c: 68f9 ldr r1, [r7, #12] + 800754e: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007552: 4313 orrs r3, r2 + 8007554: 61cb str r3, [r1, #28] if ((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_USBAEP) == 0U) - 80076ce: 68bb ldr r3, [r7, #8] - 80076d0: 015a lsls r2, r3, #5 - 80076d2: 68fb ldr r3, [r7, #12] - 80076d4: 4413 add r3, r2 - 80076d6: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80076da: 681b ldr r3, [r3, #0] - 80076dc: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 80076e0: 2b00 cmp r3, #0 - 80076e2: d155 bne.n 8007790 + 8007556: 68bb ldr r3, [r7, #8] + 8007558: 015a lsls r2, r3, #5 + 800755a: 68fb ldr r3, [r7, #12] + 800755c: 4413 add r3, r2 + 800755e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007562: 681b ldr r3, [r3, #0] + 8007564: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 8007568: 2b00 cmp r3, #0 + 800756a: d155 bne.n 8007618 { USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 80076e4: 68bb ldr r3, [r7, #8] - 80076e6: 015a lsls r2, r3, #5 - 80076e8: 68fb ldr r3, [r7, #12] - 80076ea: 4413 add r3, r2 - 80076ec: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80076f0: 681a ldr r2, [r3, #0] - 80076f2: 683b ldr r3, [r7, #0] - 80076f4: 689b ldr r3, [r3, #8] - 80076f6: f3c3 010a ubfx r1, r3, #0, #11 + 800756c: 68bb ldr r3, [r7, #8] + 800756e: 015a lsls r2, r3, #5 + 8007570: 68fb ldr r3, [r7, #12] + 8007572: 4413 add r3, r2 + 8007574: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007578: 681a ldr r2, [r3, #0] + 800757a: 683b ldr r3, [r7, #0] + 800757c: 689b ldr r3, [r3, #8] + 800757e: f3c3 010a ubfx r1, r3, #0, #11 ((uint32_t)ep->type << 18) | (epnum << 22) | - 80076fa: 683b ldr r3, [r7, #0] - 80076fc: 791b ldrb r3, [r3, #4] - 80076fe: 049b lsls r3, r3, #18 + 8007582: 683b ldr r3, [r7, #0] + 8007584: 791b ldrb r3, [r3, #4] + 8007586: 049b lsls r3, r3, #18 USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 8007700: 4319 orrs r1, r3 + 8007588: 4319 orrs r1, r3 ((uint32_t)ep->type << 18) | (epnum << 22) | - 8007702: 68bb ldr r3, [r7, #8] - 8007704: 059b lsls r3, r3, #22 - 8007706: 430b orrs r3, r1 + 800758a: 68bb ldr r3, [r7, #8] + 800758c: 059b lsls r3, r3, #22 + 800758e: 430b orrs r3, r1 USBx_INEP(epnum)->DIEPCTL |= (ep->maxpacket & USB_OTG_DIEPCTL_MPSIZ) | - 8007708: 4313 orrs r3, r2 - 800770a: 68ba ldr r2, [r7, #8] - 800770c: 0151 lsls r1, r2, #5 - 800770e: 68fa ldr r2, [r7, #12] - 8007710: 440a add r2, r1 - 8007712: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007716: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 800771a: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 800771e: 6013 str r3, [r2, #0] - 8007720: e036 b.n 8007790 + 8007590: 4313 orrs r3, r2 + 8007592: 68ba ldr r2, [r7, #8] + 8007594: 0151 lsls r1, r2, #5 + 8007596: 68fa ldr r2, [r7, #12] + 8007598: 440a add r2, r1 + 800759a: f502 6210 add.w r2, r2, #2304 @ 0x900 + 800759e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80075a2: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 80075a6: 6013 str r3, [r2, #0] + 80075a8: e036 b.n 8007618 USB_OTG_DIEPCTL_USBAEP; } } else { USBx_DEVICE->DAINTMSK |= USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16); - 8007722: 68fb ldr r3, [r7, #12] - 8007724: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007728: 69da ldr r2, [r3, #28] - 800772a: 683b ldr r3, [r7, #0] - 800772c: 781b ldrb r3, [r3, #0] - 800772e: f003 030f and.w r3, r3, #15 - 8007732: 2101 movs r1, #1 - 8007734: fa01 f303 lsl.w r3, r1, r3 - 8007738: 041b lsls r3, r3, #16 - 800773a: 68f9 ldr r1, [r7, #12] - 800773c: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007740: 4313 orrs r3, r2 - 8007742: 61cb str r3, [r1, #28] + 80075aa: 68fb ldr r3, [r7, #12] + 80075ac: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80075b0: 69da ldr r2, [r3, #28] + 80075b2: 683b ldr r3, [r7, #0] + 80075b4: 781b ldrb r3, [r3, #0] + 80075b6: f003 030f and.w r3, r3, #15 + 80075ba: 2101 movs r1, #1 + 80075bc: fa01 f303 lsl.w r3, r1, r3 + 80075c0: 041b lsls r3, r3, #16 + 80075c2: 68f9 ldr r1, [r7, #12] + 80075c4: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80075c8: 4313 orrs r3, r2 + 80075ca: 61cb str r3, [r1, #28] if (((USBx_OUTEP(epnum)->DOEPCTL) & USB_OTG_DOEPCTL_USBAEP) == 0U) - 8007744: 68bb ldr r3, [r7, #8] - 8007746: 015a lsls r2, r3, #5 - 8007748: 68fb ldr r3, [r7, #12] - 800774a: 4413 add r3, r2 - 800774c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007750: 681b ldr r3, [r3, #0] - 8007752: f403 4300 and.w r3, r3, #32768 @ 0x8000 - 8007756: 2b00 cmp r3, #0 - 8007758: d11a bne.n 8007790 + 80075cc: 68bb ldr r3, [r7, #8] + 80075ce: 015a lsls r2, r3, #5 + 80075d0: 68fb ldr r3, [r7, #12] + 80075d2: 4413 add r3, r2 + 80075d4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80075d8: 681b ldr r3, [r3, #0] + 80075da: f403 4300 and.w r3, r3, #32768 @ 0x8000 + 80075de: 2b00 cmp r3, #0 + 80075e0: d11a bne.n 8007618 { USBx_OUTEP(epnum)->DOEPCTL |= (ep->maxpacket & USB_OTG_DOEPCTL_MPSIZ) | - 800775a: 68bb ldr r3, [r7, #8] - 800775c: 015a lsls r2, r3, #5 - 800775e: 68fb ldr r3, [r7, #12] - 8007760: 4413 add r3, r2 - 8007762: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007766: 681a ldr r2, [r3, #0] - 8007768: 683b ldr r3, [r7, #0] - 800776a: 689b ldr r3, [r3, #8] - 800776c: f3c3 010a ubfx r1, r3, #0, #11 + 80075e2: 68bb ldr r3, [r7, #8] + 80075e4: 015a lsls r2, r3, #5 + 80075e6: 68fb ldr r3, [r7, #12] + 80075e8: 4413 add r3, r2 + 80075ea: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80075ee: 681a ldr r2, [r3, #0] + 80075f0: 683b ldr r3, [r7, #0] + 80075f2: 689b ldr r3, [r3, #8] + 80075f4: f3c3 010a ubfx r1, r3, #0, #11 ((uint32_t)ep->type << 18) | - 8007770: 683b ldr r3, [r7, #0] - 8007772: 791b ldrb r3, [r3, #4] - 8007774: 049b lsls r3, r3, #18 + 80075f8: 683b ldr r3, [r7, #0] + 80075fa: 791b ldrb r3, [r3, #4] + 80075fc: 049b lsls r3, r3, #18 USBx_OUTEP(epnum)->DOEPCTL |= (ep->maxpacket & USB_OTG_DOEPCTL_MPSIZ) | - 8007776: 430b orrs r3, r1 - 8007778: 4313 orrs r3, r2 - 800777a: 68ba ldr r2, [r7, #8] - 800777c: 0151 lsls r1, r2, #5 - 800777e: 68fa ldr r2, [r7, #12] - 8007780: 440a add r2, r1 - 8007782: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007786: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 800778a: f443 4300 orr.w r3, r3, #32768 @ 0x8000 - 800778e: 6013 str r3, [r2, #0] + 80075fe: 430b orrs r3, r1 + 8007600: 4313 orrs r3, r2 + 8007602: 68ba ldr r2, [r7, #8] + 8007604: 0151 lsls r1, r2, #5 + 8007606: 68fa ldr r2, [r7, #12] + 8007608: 440a add r2, r1 + 800760a: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800760e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007612: f443 4300 orr.w r3, r3, #32768 @ 0x8000 + 8007616: 6013 str r3, [r2, #0] USB_OTG_DIEPCTL_SD0PID_SEVNFRM | USB_OTG_DOEPCTL_USBAEP; } } return HAL_OK; - 8007790: 2300 movs r3, #0 + 8007618: 2300 movs r3, #0 } - 8007792: 4618 mov r0, r3 - 8007794: 3714 adds r7, #20 - 8007796: 46bd mov sp, r7 - 8007798: f85d 7b04 ldr.w r7, [sp], #4 - 800779c: 4770 bx lr + 800761a: 4618 mov r0, r3 + 800761c: 3714 adds r7, #20 + 800761e: 46bd mov sp, r7 + 8007620: f85d 7b04 ldr.w r7, [sp], #4 + 8007624: 4770 bx lr ... -080077a0 : +08007628 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_DeactivateEndpoint(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 80077a0: b480 push {r7} - 80077a2: b085 sub sp, #20 - 80077a4: af00 add r7, sp, #0 - 80077a6: 6078 str r0, [r7, #4] - 80077a8: 6039 str r1, [r7, #0] + 8007628: b480 push {r7} + 800762a: b085 sub sp, #20 + 800762c: af00 add r7, sp, #0 + 800762e: 6078 str r0, [r7, #4] + 8007630: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 80077aa: 687b ldr r3, [r7, #4] - 80077ac: 60fb str r3, [r7, #12] + 8007632: 687b ldr r3, [r7, #4] + 8007634: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 80077ae: 683b ldr r3, [r7, #0] - 80077b0: 781b ldrb r3, [r3, #0] - 80077b2: 60bb str r3, [r7, #8] + 8007636: 683b ldr r3, [r7, #0] + 8007638: 781b ldrb r3, [r3, #0] + 800763a: 60bb str r3, [r7, #8] /* Read DEPCTLn register */ if (ep->is_in == 1U) - 80077b4: 683b ldr r3, [r7, #0] - 80077b6: 785b ldrb r3, [r3, #1] - 80077b8: 2b01 cmp r3, #1 - 80077ba: d161 bne.n 8007880 + 800763c: 683b ldr r3, [r7, #0] + 800763e: 785b ldrb r3, [r3, #1] + 8007640: 2b01 cmp r3, #1 + 8007642: d161 bne.n 8007708 { if ((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 80077bc: 68bb ldr r3, [r7, #8] - 80077be: 015a lsls r2, r3, #5 - 80077c0: 68fb ldr r3, [r7, #12] - 80077c2: 4413 add r3, r2 - 80077c4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80077c8: 681b ldr r3, [r3, #0] - 80077ca: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 80077ce: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 80077d2: d11f bne.n 8007814 + 8007644: 68bb ldr r3, [r7, #8] + 8007646: 015a lsls r2, r3, #5 + 8007648: 68fb ldr r3, [r7, #12] + 800764a: 4413 add r3, r2 + 800764c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007650: 681b ldr r3, [r3, #0] + 8007652: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007656: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 800765a: d11f bne.n 800769c { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SNAK; - 80077d4: 68bb ldr r3, [r7, #8] - 80077d6: 015a lsls r2, r3, #5 - 80077d8: 68fb ldr r3, [r7, #12] - 80077da: 4413 add r3, r2 - 80077dc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80077e0: 681b ldr r3, [r3, #0] - 80077e2: 68ba ldr r2, [r7, #8] - 80077e4: 0151 lsls r1, r2, #5 - 80077e6: 68fa ldr r2, [r7, #12] - 80077e8: 440a add r2, r1 - 80077ea: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80077ee: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 80077f2: 6013 str r3, [r2, #0] + 800765c: 68bb ldr r3, [r7, #8] + 800765e: 015a lsls r2, r3, #5 + 8007660: 68fb ldr r3, [r7, #12] + 8007662: 4413 add r3, r2 + 8007664: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007668: 681b ldr r3, [r3, #0] + 800766a: 68ba ldr r2, [r7, #8] + 800766c: 0151 lsls r1, r2, #5 + 800766e: 68fa ldr r2, [r7, #12] + 8007670: 440a add r2, r1 + 8007672: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007676: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 800767a: 6013 str r3, [r2, #0] USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_EPDIS; - 80077f4: 68bb ldr r3, [r7, #8] - 80077f6: 015a lsls r2, r3, #5 - 80077f8: 68fb ldr r3, [r7, #12] - 80077fa: 4413 add r3, r2 - 80077fc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007800: 681b ldr r3, [r3, #0] - 8007802: 68ba ldr r2, [r7, #8] - 8007804: 0151 lsls r1, r2, #5 - 8007806: 68fa ldr r2, [r7, #12] - 8007808: 440a add r2, r1 - 800780a: f502 6210 add.w r2, r2, #2304 @ 0x900 - 800780e: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007812: 6013 str r3, [r2, #0] + 800767c: 68bb ldr r3, [r7, #8] + 800767e: 015a lsls r2, r3, #5 + 8007680: 68fb ldr r3, [r7, #12] + 8007682: 4413 add r3, r2 + 8007684: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007688: 681b ldr r3, [r3, #0] + 800768a: 68ba ldr r2, [r7, #8] + 800768c: 0151 lsls r1, r2, #5 + 800768e: 68fa ldr r2, [r7, #12] + 8007690: 440a add r2, r1 + 8007692: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007696: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 800769a: 6013 str r3, [r2, #0] } USBx_DEVICE->DEACHMSK &= ~(USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK))); - 8007814: 68fb ldr r3, [r7, #12] - 8007816: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800781a: 6bda ldr r2, [r3, #60] @ 0x3c - 800781c: 683b ldr r3, [r7, #0] - 800781e: 781b ldrb r3, [r3, #0] - 8007820: f003 030f and.w r3, r3, #15 - 8007824: 2101 movs r1, #1 - 8007826: fa01 f303 lsl.w r3, r1, r3 - 800782a: b29b uxth r3, r3 - 800782c: 43db mvns r3, r3 - 800782e: 68f9 ldr r1, [r7, #12] - 8007830: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007834: 4013 ands r3, r2 - 8007836: 63cb str r3, [r1, #60] @ 0x3c + 800769c: 68fb ldr r3, [r7, #12] + 800769e: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80076a2: 6bda ldr r2, [r3, #60] @ 0x3c + 80076a4: 683b ldr r3, [r7, #0] + 80076a6: 781b ldrb r3, [r3, #0] + 80076a8: f003 030f and.w r3, r3, #15 + 80076ac: 2101 movs r1, #1 + 80076ae: fa01 f303 lsl.w r3, r1, r3 + 80076b2: b29b uxth r3, r3 + 80076b4: 43db mvns r3, r3 + 80076b6: 68f9 ldr r1, [r7, #12] + 80076b8: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80076bc: 4013 ands r3, r2 + 80076be: 63cb str r3, [r1, #60] @ 0x3c USBx_DEVICE->DAINTMSK &= ~(USB_OTG_DAINTMSK_IEPM & (uint32_t)(1UL << (ep->num & EP_ADDR_MSK))); - 8007838: 68fb ldr r3, [r7, #12] - 800783a: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800783e: 69da ldr r2, [r3, #28] - 8007840: 683b ldr r3, [r7, #0] - 8007842: 781b ldrb r3, [r3, #0] - 8007844: f003 030f and.w r3, r3, #15 - 8007848: 2101 movs r1, #1 - 800784a: fa01 f303 lsl.w r3, r1, r3 - 800784e: b29b uxth r3, r3 - 8007850: 43db mvns r3, r3 - 8007852: 68f9 ldr r1, [r7, #12] - 8007854: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007858: 4013 ands r3, r2 - 800785a: 61cb str r3, [r1, #28] + 80076c0: 68fb ldr r3, [r7, #12] + 80076c2: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80076c6: 69da ldr r2, [r3, #28] + 80076c8: 683b ldr r3, [r7, #0] + 80076ca: 781b ldrb r3, [r3, #0] + 80076cc: f003 030f and.w r3, r3, #15 + 80076d0: 2101 movs r1, #1 + 80076d2: fa01 f303 lsl.w r3, r1, r3 + 80076d6: b29b uxth r3, r3 + 80076d8: 43db mvns r3, r3 + 80076da: 68f9 ldr r1, [r7, #12] + 80076dc: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80076e0: 4013 ands r3, r2 + 80076e2: 61cb str r3, [r1, #28] USBx_INEP(epnum)->DIEPCTL &= ~(USB_OTG_DIEPCTL_USBAEP | - 800785c: 68bb ldr r3, [r7, #8] - 800785e: 015a lsls r2, r3, #5 - 8007860: 68fb ldr r3, [r7, #12] - 8007862: 4413 add r3, r2 - 8007864: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007868: 681a ldr r2, [r3, #0] - 800786a: 68bb ldr r3, [r7, #8] - 800786c: 0159 lsls r1, r3, #5 - 800786e: 68fb ldr r3, [r7, #12] - 8007870: 440b add r3, r1 - 8007872: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007876: 4619 mov r1, r3 - 8007878: 4b35 ldr r3, [pc, #212] @ (8007950 ) - 800787a: 4013 ands r3, r2 - 800787c: 600b str r3, [r1, #0] - 800787e: e060 b.n 8007942 + 80076e4: 68bb ldr r3, [r7, #8] + 80076e6: 015a lsls r2, r3, #5 + 80076e8: 68fb ldr r3, [r7, #12] + 80076ea: 4413 add r3, r2 + 80076ec: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80076f0: 681a ldr r2, [r3, #0] + 80076f2: 68bb ldr r3, [r7, #8] + 80076f4: 0159 lsls r1, r3, #5 + 80076f6: 68fb ldr r3, [r7, #12] + 80076f8: 440b add r3, r1 + 80076fa: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80076fe: 4619 mov r1, r3 + 8007700: 4b35 ldr r3, [pc, #212] @ (80077d8 ) + 8007702: 4013 ands r3, r2 + 8007704: 600b str r3, [r1, #0] + 8007706: e060 b.n 80077ca USB_OTG_DIEPCTL_SD0PID_SEVNFRM | USB_OTG_DIEPCTL_EPTYP); } else { if ((USBx_OUTEP(epnum)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8007880: 68bb ldr r3, [r7, #8] - 8007882: 015a lsls r2, r3, #5 - 8007884: 68fb ldr r3, [r7, #12] - 8007886: 4413 add r3, r2 - 8007888: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800788c: 681b ldr r3, [r3, #0] - 800788e: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007892: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007896: d11f bne.n 80078d8 + 8007708: 68bb ldr r3, [r7, #8] + 800770a: 015a lsls r2, r3, #5 + 800770c: 68fb ldr r3, [r7, #12] + 800770e: 4413 add r3, r2 + 8007710: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007714: 681b ldr r3, [r3, #0] + 8007716: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 800771a: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 800771e: d11f bne.n 8007760 { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SNAK; - 8007898: 68bb ldr r3, [r7, #8] - 800789a: 015a lsls r2, r3, #5 - 800789c: 68fb ldr r3, [r7, #12] - 800789e: 4413 add r3, r2 - 80078a0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80078a4: 681b ldr r3, [r3, #0] - 80078a6: 68ba ldr r2, [r7, #8] - 80078a8: 0151 lsls r1, r2, #5 - 80078aa: 68fa ldr r2, [r7, #12] - 80078ac: 440a add r2, r1 - 80078ae: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80078b2: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 80078b6: 6013 str r3, [r2, #0] + 8007720: 68bb ldr r3, [r7, #8] + 8007722: 015a lsls r2, r3, #5 + 8007724: 68fb ldr r3, [r7, #12] + 8007726: 4413 add r3, r2 + 8007728: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800772c: 681b ldr r3, [r3, #0] + 800772e: 68ba ldr r2, [r7, #8] + 8007730: 0151 lsls r1, r2, #5 + 8007732: 68fa ldr r2, [r7, #12] + 8007734: 440a add r2, r1 + 8007736: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800773a: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 800773e: 6013 str r3, [r2, #0] USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_EPDIS; - 80078b8: 68bb ldr r3, [r7, #8] - 80078ba: 015a lsls r2, r3, #5 - 80078bc: 68fb ldr r3, [r7, #12] - 80078be: 4413 add r3, r2 - 80078c0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80078c4: 681b ldr r3, [r3, #0] - 80078c6: 68ba ldr r2, [r7, #8] - 80078c8: 0151 lsls r1, r2, #5 - 80078ca: 68fa ldr r2, [r7, #12] - 80078cc: 440a add r2, r1 - 80078ce: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80078d2: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 80078d6: 6013 str r3, [r2, #0] + 8007740: 68bb ldr r3, [r7, #8] + 8007742: 015a lsls r2, r3, #5 + 8007744: 68fb ldr r3, [r7, #12] + 8007746: 4413 add r3, r2 + 8007748: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800774c: 681b ldr r3, [r3, #0] + 800774e: 68ba ldr r2, [r7, #8] + 8007750: 0151 lsls r1, r2, #5 + 8007752: 68fa ldr r2, [r7, #12] + 8007754: 440a add r2, r1 + 8007756: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800775a: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 800775e: 6013 str r3, [r2, #0] } USBx_DEVICE->DEACHMSK &= ~(USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16)); - 80078d8: 68fb ldr r3, [r7, #12] - 80078da: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80078de: 6bda ldr r2, [r3, #60] @ 0x3c - 80078e0: 683b ldr r3, [r7, #0] - 80078e2: 781b ldrb r3, [r3, #0] - 80078e4: f003 030f and.w r3, r3, #15 - 80078e8: 2101 movs r1, #1 - 80078ea: fa01 f303 lsl.w r3, r1, r3 - 80078ee: 041b lsls r3, r3, #16 - 80078f0: 43db mvns r3, r3 - 80078f2: 68f9 ldr r1, [r7, #12] - 80078f4: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80078f8: 4013 ands r3, r2 - 80078fa: 63cb str r3, [r1, #60] @ 0x3c + 8007760: 68fb ldr r3, [r7, #12] + 8007762: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007766: 6bda ldr r2, [r3, #60] @ 0x3c + 8007768: 683b ldr r3, [r7, #0] + 800776a: 781b ldrb r3, [r3, #0] + 800776c: f003 030f and.w r3, r3, #15 + 8007770: 2101 movs r1, #1 + 8007772: fa01 f303 lsl.w r3, r1, r3 + 8007776: 041b lsls r3, r3, #16 + 8007778: 43db mvns r3, r3 + 800777a: 68f9 ldr r1, [r7, #12] + 800777c: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007780: 4013 ands r3, r2 + 8007782: 63cb str r3, [r1, #60] @ 0x3c USBx_DEVICE->DAINTMSK &= ~(USB_OTG_DAINTMSK_OEPM & ((uint32_t)(1UL << (ep->num & EP_ADDR_MSK)) << 16)); - 80078fc: 68fb ldr r3, [r7, #12] - 80078fe: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007902: 69da ldr r2, [r3, #28] - 8007904: 683b ldr r3, [r7, #0] - 8007906: 781b ldrb r3, [r3, #0] - 8007908: f003 030f and.w r3, r3, #15 - 800790c: 2101 movs r1, #1 - 800790e: fa01 f303 lsl.w r3, r1, r3 - 8007912: 041b lsls r3, r3, #16 - 8007914: 43db mvns r3, r3 - 8007916: 68f9 ldr r1, [r7, #12] - 8007918: f501 6100 add.w r1, r1, #2048 @ 0x800 - 800791c: 4013 ands r3, r2 - 800791e: 61cb str r3, [r1, #28] + 8007784: 68fb ldr r3, [r7, #12] + 8007786: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800778a: 69da ldr r2, [r3, #28] + 800778c: 683b ldr r3, [r7, #0] + 800778e: 781b ldrb r3, [r3, #0] + 8007790: f003 030f and.w r3, r3, #15 + 8007794: 2101 movs r1, #1 + 8007796: fa01 f303 lsl.w r3, r1, r3 + 800779a: 041b lsls r3, r3, #16 + 800779c: 43db mvns r3, r3 + 800779e: 68f9 ldr r1, [r7, #12] + 80077a0: f501 6100 add.w r1, r1, #2048 @ 0x800 + 80077a4: 4013 ands r3, r2 + 80077a6: 61cb str r3, [r1, #28] USBx_OUTEP(epnum)->DOEPCTL &= ~(USB_OTG_DOEPCTL_USBAEP | - 8007920: 68bb ldr r3, [r7, #8] - 8007922: 015a lsls r2, r3, #5 - 8007924: 68fb ldr r3, [r7, #12] - 8007926: 4413 add r3, r2 - 8007928: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800792c: 681a ldr r2, [r3, #0] - 800792e: 68bb ldr r3, [r7, #8] - 8007930: 0159 lsls r1, r3, #5 - 8007932: 68fb ldr r3, [r7, #12] - 8007934: 440b add r3, r1 - 8007936: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800793a: 4619 mov r1, r3 - 800793c: 4b05 ldr r3, [pc, #20] @ (8007954 ) - 800793e: 4013 ands r3, r2 - 8007940: 600b str r3, [r1, #0] + 80077a8: 68bb ldr r3, [r7, #8] + 80077aa: 015a lsls r2, r3, #5 + 80077ac: 68fb ldr r3, [r7, #12] + 80077ae: 4413 add r3, r2 + 80077b0: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80077b4: 681a ldr r2, [r3, #0] + 80077b6: 68bb ldr r3, [r7, #8] + 80077b8: 0159 lsls r1, r3, #5 + 80077ba: 68fb ldr r3, [r7, #12] + 80077bc: 440b add r3, r1 + 80077be: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80077c2: 4619 mov r1, r3 + 80077c4: 4b05 ldr r3, [pc, #20] @ (80077dc ) + 80077c6: 4013 ands r3, r2 + 80077c8: 600b str r3, [r1, #0] USB_OTG_DOEPCTL_MPSIZ | USB_OTG_DOEPCTL_SD0PID_SEVNFRM | USB_OTG_DOEPCTL_EPTYP); } return HAL_OK; - 8007942: 2300 movs r3, #0 + 80077ca: 2300 movs r3, #0 } - 8007944: 4618 mov r0, r3 - 8007946: 3714 adds r7, #20 - 8007948: 46bd mov sp, r7 - 800794a: f85d 7b04 ldr.w r7, [sp], #4 - 800794e: 4770 bx lr - 8007950: ec337800 .word 0xec337800 - 8007954: eff37800 .word 0xeff37800 + 80077cc: 4618 mov r0, r3 + 80077ce: 3714 adds r7, #20 + 80077d0: 46bd mov sp, r7 + 80077d2: f85d 7b04 ldr.w r7, [sp], #4 + 80077d6: 4770 bx lr + 80077d8: ec337800 .word 0xec337800 + 80077dc: eff37800 .word 0xeff37800 -08007958 : +080077e0 : * 0 : DMA feature not used * 1 : DMA feature used * @retval HAL status */ HAL_StatusTypeDef USB_EPStartXfer(USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep, uint8_t dma) { - 8007958: b580 push {r7, lr} - 800795a: b08a sub sp, #40 @ 0x28 - 800795c: af02 add r7, sp, #8 - 800795e: 60f8 str r0, [r7, #12] - 8007960: 60b9 str r1, [r7, #8] - 8007962: 4613 mov r3, r2 - 8007964: 71fb strb r3, [r7, #7] + 80077e0: b580 push {r7, lr} + 80077e2: b08a sub sp, #40 @ 0x28 + 80077e4: af02 add r7, sp, #8 + 80077e6: 60f8 str r0, [r7, #12] + 80077e8: 60b9 str r1, [r7, #8] + 80077ea: 4613 mov r3, r2 + 80077ec: 71fb strb r3, [r7, #7] uint32_t USBx_BASE = (uint32_t)USBx; - 8007966: 68fb ldr r3, [r7, #12] - 8007968: 61fb str r3, [r7, #28] + 80077ee: 68fb ldr r3, [r7, #12] + 80077f0: 61fb str r3, [r7, #28] uint32_t epnum = (uint32_t)ep->num; - 800796a: 68bb ldr r3, [r7, #8] - 800796c: 781b ldrb r3, [r3, #0] - 800796e: 61bb str r3, [r7, #24] + 80077f2: 68bb ldr r3, [r7, #8] + 80077f4: 781b ldrb r3, [r3, #0] + 80077f6: 61bb str r3, [r7, #24] uint16_t pktcnt; /* IN endpoint */ if (ep->is_in == 1U) - 8007970: 68bb ldr r3, [r7, #8] - 8007972: 785b ldrb r3, [r3, #1] - 8007974: 2b01 cmp r3, #1 - 8007976: f040 817f bne.w 8007c78 + 80077f8: 68bb ldr r3, [r7, #8] + 80077fa: 785b ldrb r3, [r3, #1] + 80077fc: 2b01 cmp r3, #1 + 80077fe: f040 817f bne.w 8007b00 { /* Zero Length Packet? */ if (ep->xfer_len == 0U) - 800797a: 68bb ldr r3, [r7, #8] - 800797c: 691b ldr r3, [r3, #16] - 800797e: 2b00 cmp r3, #0 - 8007980: d132 bne.n 80079e8 + 8007802: 68bb ldr r3, [r7, #8] + 8007804: 691b ldr r3, [r3, #16] + 8007806: 2b00 cmp r3, #0 + 8007808: d132 bne.n 8007870 { USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_PKTCNT); - 8007982: 69bb ldr r3, [r7, #24] - 8007984: 015a lsls r2, r3, #5 - 8007986: 69fb ldr r3, [r7, #28] - 8007988: 4413 add r3, r2 - 800798a: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800798e: 691b ldr r3, [r3, #16] - 8007990: 69ba ldr r2, [r7, #24] - 8007992: 0151 lsls r1, r2, #5 - 8007994: 69fa ldr r2, [r7, #28] - 8007996: 440a add r2, r1 - 8007998: f502 6210 add.w r2, r2, #2304 @ 0x900 - 800799c: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 80079a0: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 80079a4: 6113 str r3, [r2, #16] + 800780a: 69bb ldr r3, [r7, #24] + 800780c: 015a lsls r2, r3, #5 + 800780e: 69fb ldr r3, [r7, #28] + 8007810: 4413 add r3, r2 + 8007812: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007816: 691b ldr r3, [r3, #16] + 8007818: 69ba ldr r2, [r7, #24] + 800781a: 0151 lsls r1, r2, #5 + 800781c: 69fa ldr r2, [r7, #28] + 800781e: 440a add r2, r1 + 8007820: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007824: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 8007828: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 800782c: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & (1U << 19)); - 80079a6: 69bb ldr r3, [r7, #24] - 80079a8: 015a lsls r2, r3, #5 - 80079aa: 69fb ldr r3, [r7, #28] - 80079ac: 4413 add r3, r2 - 80079ae: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80079b2: 691b ldr r3, [r3, #16] - 80079b4: 69ba ldr r2, [r7, #24] - 80079b6: 0151 lsls r1, r2, #5 - 80079b8: 69fa ldr r2, [r7, #28] - 80079ba: 440a add r2, r1 - 80079bc: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80079c0: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 80079c4: 6113 str r3, [r2, #16] + 800782e: 69bb ldr r3, [r7, #24] + 8007830: 015a lsls r2, r3, #5 + 8007832: 69fb ldr r3, [r7, #28] + 8007834: 4413 add r3, r2 + 8007836: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800783a: 691b ldr r3, [r3, #16] + 800783c: 69ba ldr r2, [r7, #24] + 800783e: 0151 lsls r1, r2, #5 + 8007840: 69fa ldr r2, [r7, #28] + 8007842: 440a add r2, r1 + 8007844: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007848: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 800784c: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_XFRSIZ); - 80079c6: 69bb ldr r3, [r7, #24] - 80079c8: 015a lsls r2, r3, #5 - 80079ca: 69fb ldr r3, [r7, #28] - 80079cc: 4413 add r3, r2 - 80079ce: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80079d2: 691b ldr r3, [r3, #16] - 80079d4: 69ba ldr r2, [r7, #24] - 80079d6: 0151 lsls r1, r2, #5 - 80079d8: 69fa ldr r2, [r7, #28] - 80079da: 440a add r2, r1 - 80079dc: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80079e0: 0cdb lsrs r3, r3, #19 - 80079e2: 04db lsls r3, r3, #19 - 80079e4: 6113 str r3, [r2, #16] - 80079e6: e097 b.n 8007b18 + 800784e: 69bb ldr r3, [r7, #24] + 8007850: 015a lsls r2, r3, #5 + 8007852: 69fb ldr r3, [r7, #28] + 8007854: 4413 add r3, r2 + 8007856: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800785a: 691b ldr r3, [r3, #16] + 800785c: 69ba ldr r2, [r7, #24] + 800785e: 0151 lsls r1, r2, #5 + 8007860: 69fa ldr r2, [r7, #28] + 8007862: 440a add r2, r1 + 8007864: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007868: 0cdb lsrs r3, r3, #19 + 800786a: 04db lsls r3, r3, #19 + 800786c: 6113 str r3, [r2, #16] + 800786e: e097 b.n 80079a0 /* Program the transfer size and packet count * as follows: xfersize = N * maxpacket + * short_packet pktcnt = N + (short_packet * exist ? 1 : 0) */ USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_XFRSIZ); - 80079e8: 69bb ldr r3, [r7, #24] - 80079ea: 015a lsls r2, r3, #5 - 80079ec: 69fb ldr r3, [r7, #28] - 80079ee: 4413 add r3, r2 - 80079f0: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80079f4: 691b ldr r3, [r3, #16] - 80079f6: 69ba ldr r2, [r7, #24] - 80079f8: 0151 lsls r1, r2, #5 - 80079fa: 69fa ldr r2, [r7, #28] - 80079fc: 440a add r2, r1 - 80079fe: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007a02: 0cdb lsrs r3, r3, #19 - 8007a04: 04db lsls r3, r3, #19 - 8007a06: 6113 str r3, [r2, #16] + 8007870: 69bb ldr r3, [r7, #24] + 8007872: 015a lsls r2, r3, #5 + 8007874: 69fb ldr r3, [r7, #28] + 8007876: 4413 add r3, r2 + 8007878: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800787c: 691b ldr r3, [r3, #16] + 800787e: 69ba ldr r2, [r7, #24] + 8007880: 0151 lsls r1, r2, #5 + 8007882: 69fa ldr r2, [r7, #28] + 8007884: 440a add r2, r1 + 8007886: f502 6210 add.w r2, r2, #2304 @ 0x900 + 800788a: 0cdb lsrs r3, r3, #19 + 800788c: 04db lsls r3, r3, #19 + 800788e: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_PKTCNT); - 8007a08: 69bb ldr r3, [r7, #24] - 8007a0a: 015a lsls r2, r3, #5 - 8007a0c: 69fb ldr r3, [r7, #28] - 8007a0e: 4413 add r3, r2 - 8007a10: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a14: 691b ldr r3, [r3, #16] - 8007a16: 69ba ldr r2, [r7, #24] - 8007a18: 0151 lsls r1, r2, #5 - 8007a1a: 69fa ldr r2, [r7, #28] - 8007a1c: 440a add r2, r1 - 8007a1e: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007a22: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 8007a26: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 8007a2a: 6113 str r3, [r2, #16] + 8007890: 69bb ldr r3, [r7, #24] + 8007892: 015a lsls r2, r3, #5 + 8007894: 69fb ldr r3, [r7, #28] + 8007896: 4413 add r3, r2 + 8007898: f503 6310 add.w r3, r3, #2304 @ 0x900 + 800789c: 691b ldr r3, [r3, #16] + 800789e: 69ba ldr r2, [r7, #24] + 80078a0: 0151 lsls r1, r2, #5 + 80078a2: 69fa ldr r2, [r7, #28] + 80078a4: 440a add r2, r1 + 80078a6: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80078aa: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 80078ae: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 80078b2: 6113 str r3, [r2, #16] if (epnum == 0U) - 8007a2c: 69bb ldr r3, [r7, #24] - 8007a2e: 2b00 cmp r3, #0 - 8007a30: d11a bne.n 8007a68 + 80078b4: 69bb ldr r3, [r7, #24] + 80078b6: 2b00 cmp r3, #0 + 80078b8: d11a bne.n 80078f0 { if (ep->xfer_len > ep->maxpacket) - 8007a32: 68bb ldr r3, [r7, #8] - 8007a34: 691a ldr r2, [r3, #16] - 8007a36: 68bb ldr r3, [r7, #8] - 8007a38: 689b ldr r3, [r3, #8] - 8007a3a: 429a cmp r2, r3 - 8007a3c: d903 bls.n 8007a46 + 80078ba: 68bb ldr r3, [r7, #8] + 80078bc: 691a ldr r2, [r3, #16] + 80078be: 68bb ldr r3, [r7, #8] + 80078c0: 689b ldr r3, [r3, #8] + 80078c2: 429a cmp r2, r3 + 80078c4: d903 bls.n 80078ce { ep->xfer_len = ep->maxpacket; - 8007a3e: 68bb ldr r3, [r7, #8] - 8007a40: 689a ldr r2, [r3, #8] - 8007a42: 68bb ldr r3, [r7, #8] - 8007a44: 611a str r2, [r3, #16] + 80078c6: 68bb ldr r3, [r7, #8] + 80078c8: 689a ldr r2, [r3, #8] + 80078ca: 68bb ldr r3, [r7, #8] + 80078cc: 611a str r2, [r3, #16] } USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & (1U << 19)); - 8007a46: 69bb ldr r3, [r7, #24] - 8007a48: 015a lsls r2, r3, #5 - 8007a4a: 69fb ldr r3, [r7, #28] - 8007a4c: 4413 add r3, r2 - 8007a4e: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a52: 691b ldr r3, [r3, #16] - 8007a54: 69ba ldr r2, [r7, #24] - 8007a56: 0151 lsls r1, r2, #5 - 8007a58: 69fa ldr r2, [r7, #28] - 8007a5a: 440a add r2, r1 - 8007a5c: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007a60: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007a64: 6113 str r3, [r2, #16] - 8007a66: e044 b.n 8007af2 + 80078ce: 69bb ldr r3, [r7, #24] + 80078d0: 015a lsls r2, r3, #5 + 80078d2: 69fb ldr r3, [r7, #28] + 80078d4: 4413 add r3, r2 + 80078d6: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80078da: 691b ldr r3, [r3, #16] + 80078dc: 69ba ldr r2, [r7, #24] + 80078de: 0151 lsls r1, r2, #5 + 80078e0: 69fa ldr r2, [r7, #28] + 80078e2: 440a add r2, r1 + 80078e4: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80078e8: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 80078ec: 6113 str r3, [r2, #16] + 80078ee: e044 b.n 800797a } else { pktcnt = (uint16_t)((ep->xfer_len + ep->maxpacket - 1U) / ep->maxpacket); - 8007a68: 68bb ldr r3, [r7, #8] - 8007a6a: 691a ldr r2, [r3, #16] - 8007a6c: 68bb ldr r3, [r7, #8] - 8007a6e: 689b ldr r3, [r3, #8] - 8007a70: 4413 add r3, r2 - 8007a72: 1e5a subs r2, r3, #1 - 8007a74: 68bb ldr r3, [r7, #8] - 8007a76: 689b ldr r3, [r3, #8] - 8007a78: fbb2 f3f3 udiv r3, r2, r3 - 8007a7c: 82fb strh r3, [r7, #22] + 80078f0: 68bb ldr r3, [r7, #8] + 80078f2: 691a ldr r2, [r3, #16] + 80078f4: 68bb ldr r3, [r7, #8] + 80078f6: 689b ldr r3, [r3, #8] + 80078f8: 4413 add r3, r2 + 80078fa: 1e5a subs r2, r3, #1 + 80078fc: 68bb ldr r3, [r7, #8] + 80078fe: 689b ldr r3, [r3, #8] + 8007900: fbb2 f3f3 udiv r3, r2, r3 + 8007904: 82fb strh r3, [r7, #22] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_PKTCNT & ((uint32_t)pktcnt << 19)); - 8007a7e: 69bb ldr r3, [r7, #24] - 8007a80: 015a lsls r2, r3, #5 - 8007a82: 69fb ldr r3, [r7, #28] - 8007a84: 4413 add r3, r2 - 8007a86: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007a8a: 691a ldr r2, [r3, #16] - 8007a8c: 8afb ldrh r3, [r7, #22] - 8007a8e: 04d9 lsls r1, r3, #19 - 8007a90: 4ba4 ldr r3, [pc, #656] @ (8007d24 ) - 8007a92: 400b ands r3, r1 - 8007a94: 69b9 ldr r1, [r7, #24] - 8007a96: 0148 lsls r0, r1, #5 - 8007a98: 69f9 ldr r1, [r7, #28] - 8007a9a: 4401 add r1, r0 - 8007a9c: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007aa0: 4313 orrs r3, r2 - 8007aa2: 610b str r3, [r1, #16] + 8007906: 69bb ldr r3, [r7, #24] + 8007908: 015a lsls r2, r3, #5 + 800790a: 69fb ldr r3, [r7, #28] + 800790c: 4413 add r3, r2 + 800790e: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007912: 691a ldr r2, [r3, #16] + 8007914: 8afb ldrh r3, [r7, #22] + 8007916: 04d9 lsls r1, r3, #19 + 8007918: 4ba4 ldr r3, [pc, #656] @ (8007bac ) + 800791a: 400b ands r3, r1 + 800791c: 69b9 ldr r1, [r7, #24] + 800791e: 0148 lsls r0, r1, #5 + 8007920: 69f9 ldr r1, [r7, #28] + 8007922: 4401 add r1, r0 + 8007924: f501 6110 add.w r1, r1, #2304 @ 0x900 + 8007928: 4313 orrs r3, r2 + 800792a: 610b str r3, [r1, #16] if (ep->type == EP_TYPE_ISOC) - 8007aa4: 68bb ldr r3, [r7, #8] - 8007aa6: 791b ldrb r3, [r3, #4] - 8007aa8: 2b01 cmp r3, #1 - 8007aaa: d122 bne.n 8007af2 + 800792c: 68bb ldr r3, [r7, #8] + 800792e: 791b ldrb r3, [r3, #4] + 8007930: 2b01 cmp r3, #1 + 8007932: d122 bne.n 800797a { USBx_INEP(epnum)->DIEPTSIZ &= ~(USB_OTG_DIEPTSIZ_MULCNT); - 8007aac: 69bb ldr r3, [r7, #24] - 8007aae: 015a lsls r2, r3, #5 - 8007ab0: 69fb ldr r3, [r7, #28] - 8007ab2: 4413 add r3, r2 - 8007ab4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ab8: 691b ldr r3, [r3, #16] - 8007aba: 69ba ldr r2, [r7, #24] - 8007abc: 0151 lsls r1, r2, #5 - 8007abe: 69fa ldr r2, [r7, #28] - 8007ac0: 440a add r2, r1 - 8007ac2: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007ac6: f023 43c0 bic.w r3, r3, #1610612736 @ 0x60000000 - 8007aca: 6113 str r3, [r2, #16] + 8007934: 69bb ldr r3, [r7, #24] + 8007936: 015a lsls r2, r3, #5 + 8007938: 69fb ldr r3, [r7, #28] + 800793a: 4413 add r3, r2 + 800793c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007940: 691b ldr r3, [r3, #16] + 8007942: 69ba ldr r2, [r7, #24] + 8007944: 0151 lsls r1, r2, #5 + 8007946: 69fa ldr r2, [r7, #28] + 8007948: 440a add r2, r1 + 800794a: f502 6210 add.w r2, r2, #2304 @ 0x900 + 800794e: f023 43c0 bic.w r3, r3, #1610612736 @ 0x60000000 + 8007952: 6113 str r3, [r2, #16] USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_MULCNT & ((uint32_t)pktcnt << 29)); - 8007acc: 69bb ldr r3, [r7, #24] - 8007ace: 015a lsls r2, r3, #5 - 8007ad0: 69fb ldr r3, [r7, #28] - 8007ad2: 4413 add r3, r2 - 8007ad4: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ad8: 691a ldr r2, [r3, #16] - 8007ada: 8afb ldrh r3, [r7, #22] - 8007adc: 075b lsls r3, r3, #29 - 8007ade: f003 43c0 and.w r3, r3, #1610612736 @ 0x60000000 - 8007ae2: 69b9 ldr r1, [r7, #24] - 8007ae4: 0148 lsls r0, r1, #5 - 8007ae6: 69f9 ldr r1, [r7, #28] - 8007ae8: 4401 add r1, r0 - 8007aea: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007aee: 4313 orrs r3, r2 - 8007af0: 610b str r3, [r1, #16] + 8007954: 69bb ldr r3, [r7, #24] + 8007956: 015a lsls r2, r3, #5 + 8007958: 69fb ldr r3, [r7, #28] + 800795a: 4413 add r3, r2 + 800795c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007960: 691a ldr r2, [r3, #16] + 8007962: 8afb ldrh r3, [r7, #22] + 8007964: 075b lsls r3, r3, #29 + 8007966: f003 43c0 and.w r3, r3, #1610612736 @ 0x60000000 + 800796a: 69b9 ldr r1, [r7, #24] + 800796c: 0148 lsls r0, r1, #5 + 800796e: 69f9 ldr r1, [r7, #28] + 8007970: 4401 add r1, r0 + 8007972: f501 6110 add.w r1, r1, #2304 @ 0x900 + 8007976: 4313 orrs r3, r2 + 8007978: 610b str r3, [r1, #16] } } USBx_INEP(epnum)->DIEPTSIZ |= (USB_OTG_DIEPTSIZ_XFRSIZ & ep->xfer_len); - 8007af2: 69bb ldr r3, [r7, #24] - 8007af4: 015a lsls r2, r3, #5 - 8007af6: 69fb ldr r3, [r7, #28] - 8007af8: 4413 add r3, r2 - 8007afa: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007afe: 691a ldr r2, [r3, #16] - 8007b00: 68bb ldr r3, [r7, #8] - 8007b02: 691b ldr r3, [r3, #16] - 8007b04: f3c3 0312 ubfx r3, r3, #0, #19 - 8007b08: 69b9 ldr r1, [r7, #24] - 8007b0a: 0148 lsls r0, r1, #5 - 8007b0c: 69f9 ldr r1, [r7, #28] - 8007b0e: 4401 add r1, r0 - 8007b10: f501 6110 add.w r1, r1, #2304 @ 0x900 - 8007b14: 4313 orrs r3, r2 - 8007b16: 610b str r3, [r1, #16] + 800797a: 69bb ldr r3, [r7, #24] + 800797c: 015a lsls r2, r3, #5 + 800797e: 69fb ldr r3, [r7, #28] + 8007980: 4413 add r3, r2 + 8007982: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007986: 691a ldr r2, [r3, #16] + 8007988: 68bb ldr r3, [r7, #8] + 800798a: 691b ldr r3, [r3, #16] + 800798c: f3c3 0312 ubfx r3, r3, #0, #19 + 8007990: 69b9 ldr r1, [r7, #24] + 8007992: 0148 lsls r0, r1, #5 + 8007994: 69f9 ldr r1, [r7, #28] + 8007996: 4401 add r1, r0 + 8007998: f501 6110 add.w r1, r1, #2304 @ 0x900 + 800799c: 4313 orrs r3, r2 + 800799e: 610b str r3, [r1, #16] } if (dma == 1U) - 8007b18: 79fb ldrb r3, [r7, #7] - 8007b1a: 2b01 cmp r3, #1 - 8007b1c: d14b bne.n 8007bb6 + 80079a0: 79fb ldrb r3, [r7, #7] + 80079a2: 2b01 cmp r3, #1 + 80079a4: d14b bne.n 8007a3e { if ((uint32_t)ep->dma_addr != 0U) - 8007b1e: 68bb ldr r3, [r7, #8] - 8007b20: 69db ldr r3, [r3, #28] - 8007b22: 2b00 cmp r3, #0 - 8007b24: d009 beq.n 8007b3a + 80079a6: 68bb ldr r3, [r7, #8] + 80079a8: 69db ldr r3, [r3, #28] + 80079aa: 2b00 cmp r3, #0 + 80079ac: d009 beq.n 80079c2 { USBx_INEP(epnum)->DIEPDMA = (uint32_t)(ep->dma_addr); - 8007b26: 69bb ldr r3, [r7, #24] - 8007b28: 015a lsls r2, r3, #5 - 8007b2a: 69fb ldr r3, [r7, #28] - 8007b2c: 4413 add r3, r2 - 8007b2e: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b32: 461a mov r2, r3 - 8007b34: 68bb ldr r3, [r7, #8] - 8007b36: 69db ldr r3, [r3, #28] - 8007b38: 6153 str r3, [r2, #20] + 80079ae: 69bb ldr r3, [r7, #24] + 80079b0: 015a lsls r2, r3, #5 + 80079b2: 69fb ldr r3, [r7, #28] + 80079b4: 4413 add r3, r2 + 80079b6: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80079ba: 461a mov r2, r3 + 80079bc: 68bb ldr r3, [r7, #8] + 80079be: 69db ldr r3, [r3, #28] + 80079c0: 6153 str r3, [r2, #20] } if (ep->type == EP_TYPE_ISOC) - 8007b3a: 68bb ldr r3, [r7, #8] - 8007b3c: 791b ldrb r3, [r3, #4] - 8007b3e: 2b01 cmp r3, #1 - 8007b40: d128 bne.n 8007b94 + 80079c2: 68bb ldr r3, [r7, #8] + 80079c4: 791b ldrb r3, [r3, #4] + 80079c6: 2b01 cmp r3, #1 + 80079c8: d128 bne.n 8007a1c { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007b42: 69fb ldr r3, [r7, #28] - 8007b44: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007b48: 689b ldr r3, [r3, #8] - 8007b4a: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007b4e: 2b00 cmp r3, #0 - 8007b50: d110 bne.n 8007b74 + 80079ca: 69fb ldr r3, [r7, #28] + 80079cc: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80079d0: 689b ldr r3, [r3, #8] + 80079d2: f403 7380 and.w r3, r3, #256 @ 0x100 + 80079d6: 2b00 cmp r3, #0 + 80079d8: d110 bne.n 80079fc { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SODDFRM; - 8007b52: 69bb ldr r3, [r7, #24] - 8007b54: 015a lsls r2, r3, #5 - 8007b56: 69fb ldr r3, [r7, #28] - 8007b58: 4413 add r3, r2 - 8007b5a: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b5e: 681b ldr r3, [r3, #0] - 8007b60: 69ba ldr r2, [r7, #24] - 8007b62: 0151 lsls r1, r2, #5 - 8007b64: 69fa ldr r2, [r7, #28] - 8007b66: 440a add r2, r1 - 8007b68: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b6c: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007b70: 6013 str r3, [r2, #0] - 8007b72: e00f b.n 8007b94 + 80079da: 69bb ldr r3, [r7, #24] + 80079dc: 015a lsls r2, r3, #5 + 80079de: 69fb ldr r3, [r7, #28] + 80079e0: 4413 add r3, r2 + 80079e2: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80079e6: 681b ldr r3, [r3, #0] + 80079e8: 69ba ldr r2, [r7, #24] + 80079ea: 0151 lsls r1, r2, #5 + 80079ec: 69fa ldr r2, [r7, #28] + 80079ee: 440a add r2, r1 + 80079f0: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80079f4: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 80079f8: 6013 str r3, [r2, #0] + 80079fa: e00f b.n 8007a1c } else { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; - 8007b74: 69bb ldr r3, [r7, #24] - 8007b76: 015a lsls r2, r3, #5 - 8007b78: 69fb ldr r3, [r7, #28] - 8007b7a: 4413 add r3, r2 - 8007b7c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007b80: 681b ldr r3, [r3, #0] - 8007b82: 69ba ldr r2, [r7, #24] - 8007b84: 0151 lsls r1, r2, #5 - 8007b86: 69fa ldr r2, [r7, #28] - 8007b88: 440a add r2, r1 - 8007b8a: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007b8e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007b92: 6013 str r3, [r2, #0] + 80079fc: 69bb ldr r3, [r7, #24] + 80079fe: 015a lsls r2, r3, #5 + 8007a00: 69fb ldr r3, [r7, #28] + 8007a02: 4413 add r3, r2 + 8007a04: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007a08: 681b ldr r3, [r3, #0] + 8007a0a: 69ba ldr r2, [r7, #24] + 8007a0c: 0151 lsls r1, r2, #5 + 8007a0e: 69fa ldr r2, [r7, #28] + 8007a10: 440a add r2, r1 + 8007a12: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007a16: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007a1a: 6013 str r3, [r2, #0] } } /* EP enable, IN data in FIFO */ USBx_INEP(epnum)->DIEPCTL |= (USB_OTG_DIEPCTL_CNAK | USB_OTG_DIEPCTL_EPENA); - 8007b94: 69bb ldr r3, [r7, #24] - 8007b96: 015a lsls r2, r3, #5 - 8007b98: 69fb ldr r3, [r7, #28] - 8007b9a: 4413 add r3, r2 - 8007b9c: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ba0: 681b ldr r3, [r3, #0] - 8007ba2: 69ba ldr r2, [r7, #24] - 8007ba4: 0151 lsls r1, r2, #5 - 8007ba6: 69fa ldr r2, [r7, #28] - 8007ba8: 440a add r2, r1 - 8007baa: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007bae: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007bb2: 6013 str r3, [r2, #0] - 8007bb4: e166 b.n 8007e84 + 8007a1c: 69bb ldr r3, [r7, #24] + 8007a1e: 015a lsls r2, r3, #5 + 8007a20: 69fb ldr r3, [r7, #28] + 8007a22: 4413 add r3, r2 + 8007a24: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007a28: 681b ldr r3, [r3, #0] + 8007a2a: 69ba ldr r2, [r7, #24] + 8007a2c: 0151 lsls r1, r2, #5 + 8007a2e: 69fa ldr r2, [r7, #28] + 8007a30: 440a add r2, r1 + 8007a32: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007a36: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8007a3a: 6013 str r3, [r2, #0] + 8007a3c: e166 b.n 8007d0c } else { /* EP enable, IN data in FIFO */ USBx_INEP(epnum)->DIEPCTL |= (USB_OTG_DIEPCTL_CNAK | USB_OTG_DIEPCTL_EPENA); - 8007bb6: 69bb ldr r3, [r7, #24] - 8007bb8: 015a lsls r2, r3, #5 - 8007bba: 69fb ldr r3, [r7, #28] - 8007bbc: 4413 add r3, r2 - 8007bbe: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007bc2: 681b ldr r3, [r3, #0] - 8007bc4: 69ba ldr r2, [r7, #24] - 8007bc6: 0151 lsls r1, r2, #5 - 8007bc8: 69fa ldr r2, [r7, #28] - 8007bca: 440a add r2, r1 - 8007bcc: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007bd0: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007bd4: 6013 str r3, [r2, #0] + 8007a3e: 69bb ldr r3, [r7, #24] + 8007a40: 015a lsls r2, r3, #5 + 8007a42: 69fb ldr r3, [r7, #28] + 8007a44: 4413 add r3, r2 + 8007a46: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007a4a: 681b ldr r3, [r3, #0] + 8007a4c: 69ba ldr r2, [r7, #24] + 8007a4e: 0151 lsls r1, r2, #5 + 8007a50: 69fa ldr r2, [r7, #28] + 8007a52: 440a add r2, r1 + 8007a54: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007a58: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8007a5c: 6013 str r3, [r2, #0] if (ep->type != EP_TYPE_ISOC) - 8007bd6: 68bb ldr r3, [r7, #8] - 8007bd8: 791b ldrb r3, [r3, #4] - 8007bda: 2b01 cmp r3, #1 - 8007bdc: d015 beq.n 8007c0a + 8007a5e: 68bb ldr r3, [r7, #8] + 8007a60: 791b ldrb r3, [r3, #4] + 8007a62: 2b01 cmp r3, #1 + 8007a64: d015 beq.n 8007a92 { /* Enable the Tx FIFO Empty Interrupt for this EP */ if (ep->xfer_len > 0U) - 8007bde: 68bb ldr r3, [r7, #8] - 8007be0: 691b ldr r3, [r3, #16] - 8007be2: 2b00 cmp r3, #0 - 8007be4: f000 814e beq.w 8007e84 + 8007a66: 68bb ldr r3, [r7, #8] + 8007a68: 691b ldr r3, [r3, #16] + 8007a6a: 2b00 cmp r3, #0 + 8007a6c: f000 814e beq.w 8007d0c { USBx_DEVICE->DIEPEMPMSK |= 1UL << (ep->num & EP_ADDR_MSK); - 8007be8: 69fb ldr r3, [r7, #28] - 8007bea: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007bee: 6b5a ldr r2, [r3, #52] @ 0x34 - 8007bf0: 68bb ldr r3, [r7, #8] - 8007bf2: 781b ldrb r3, [r3, #0] - 8007bf4: f003 030f and.w r3, r3, #15 - 8007bf8: 2101 movs r1, #1 - 8007bfa: fa01 f303 lsl.w r3, r1, r3 - 8007bfe: 69f9 ldr r1, [r7, #28] - 8007c00: f501 6100 add.w r1, r1, #2048 @ 0x800 - 8007c04: 4313 orrs r3, r2 - 8007c06: 634b str r3, [r1, #52] @ 0x34 - 8007c08: e13c b.n 8007e84 + 8007a70: 69fb ldr r3, [r7, #28] + 8007a72: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007a76: 6b5a ldr r2, [r3, #52] @ 0x34 + 8007a78: 68bb ldr r3, [r7, #8] + 8007a7a: 781b ldrb r3, [r3, #0] + 8007a7c: f003 030f and.w r3, r3, #15 + 8007a80: 2101 movs r1, #1 + 8007a82: fa01 f303 lsl.w r3, r1, r3 + 8007a86: 69f9 ldr r1, [r7, #28] + 8007a88: f501 6100 add.w r1, r1, #2048 @ 0x800 + 8007a8c: 4313 orrs r3, r2 + 8007a8e: 634b str r3, [r1, #52] @ 0x34 + 8007a90: e13c b.n 8007d0c } } else { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007c0a: 69fb ldr r3, [r7, #28] - 8007c0c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007c10: 689b ldr r3, [r3, #8] - 8007c12: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007c16: 2b00 cmp r3, #0 - 8007c18: d110 bne.n 8007c3c + 8007a92: 69fb ldr r3, [r7, #28] + 8007a94: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007a98: 689b ldr r3, [r3, #8] + 8007a9a: f403 7380 and.w r3, r3, #256 @ 0x100 + 8007a9e: 2b00 cmp r3, #0 + 8007aa0: d110 bne.n 8007ac4 { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SODDFRM; - 8007c1a: 69bb ldr r3, [r7, #24] - 8007c1c: 015a lsls r2, r3, #5 - 8007c1e: 69fb ldr r3, [r7, #28] - 8007c20: 4413 add r3, r2 - 8007c22: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007c26: 681b ldr r3, [r3, #0] - 8007c28: 69ba ldr r2, [r7, #24] - 8007c2a: 0151 lsls r1, r2, #5 - 8007c2c: 69fa ldr r2, [r7, #28] - 8007c2e: 440a add r2, r1 - 8007c30: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007c34: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007c38: 6013 str r3, [r2, #0] - 8007c3a: e00f b.n 8007c5c + 8007aa2: 69bb ldr r3, [r7, #24] + 8007aa4: 015a lsls r2, r3, #5 + 8007aa6: 69fb ldr r3, [r7, #28] + 8007aa8: 4413 add r3, r2 + 8007aaa: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007aae: 681b ldr r3, [r3, #0] + 8007ab0: 69ba ldr r2, [r7, #24] + 8007ab2: 0151 lsls r1, r2, #5 + 8007ab4: 69fa ldr r2, [r7, #28] + 8007ab6: 440a add r2, r1 + 8007ab8: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007abc: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 8007ac0: 6013 str r3, [r2, #0] + 8007ac2: e00f b.n 8007ae4 } else { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; - 8007c3c: 69bb ldr r3, [r7, #24] - 8007c3e: 015a lsls r2, r3, #5 - 8007c40: 69fb ldr r3, [r7, #28] - 8007c42: 4413 add r3, r2 - 8007c44: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007c48: 681b ldr r3, [r3, #0] - 8007c4a: 69ba ldr r2, [r7, #24] - 8007c4c: 0151 lsls r1, r2, #5 - 8007c4e: 69fa ldr r2, [r7, #28] - 8007c50: 440a add r2, r1 - 8007c52: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007c56: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007c5a: 6013 str r3, [r2, #0] + 8007ac4: 69bb ldr r3, [r7, #24] + 8007ac6: 015a lsls r2, r3, #5 + 8007ac8: 69fb ldr r3, [r7, #28] + 8007aca: 4413 add r3, r2 + 8007acc: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007ad0: 681b ldr r3, [r3, #0] + 8007ad2: 69ba ldr r2, [r7, #24] + 8007ad4: 0151 lsls r1, r2, #5 + 8007ad6: 69fa ldr r2, [r7, #28] + 8007ad8: 440a add r2, r1 + 8007ada: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007ade: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007ae2: 6013 str r3, [r2, #0] } (void)USB_WritePacket(USBx, ep->xfer_buff, ep->num, (uint16_t)ep->xfer_len, dma); - 8007c5c: 68bb ldr r3, [r7, #8] - 8007c5e: 68d9 ldr r1, [r3, #12] - 8007c60: 68bb ldr r3, [r7, #8] - 8007c62: 781a ldrb r2, [r3, #0] - 8007c64: 68bb ldr r3, [r7, #8] - 8007c66: 691b ldr r3, [r3, #16] - 8007c68: b298 uxth r0, r3 - 8007c6a: 79fb ldrb r3, [r7, #7] - 8007c6c: 9300 str r3, [sp, #0] - 8007c6e: 4603 mov r3, r0 - 8007c70: 68f8 ldr r0, [r7, #12] - 8007c72: f000 f9b9 bl 8007fe8 - 8007c76: e105 b.n 8007e84 + 8007ae4: 68bb ldr r3, [r7, #8] + 8007ae6: 68d9 ldr r1, [r3, #12] + 8007ae8: 68bb ldr r3, [r7, #8] + 8007aea: 781a ldrb r2, [r3, #0] + 8007aec: 68bb ldr r3, [r7, #8] + 8007aee: 691b ldr r3, [r3, #16] + 8007af0: b298 uxth r0, r3 + 8007af2: 79fb ldrb r3, [r7, #7] + 8007af4: 9300 str r3, [sp, #0] + 8007af6: 4603 mov r3, r0 + 8007af8: 68f8 ldr r0, [r7, #12] + 8007afa: f000 f9b9 bl 8007e70 + 8007afe: e105 b.n 8007d0c { /* Program the transfer size and packet count as follows: * pktcnt = N * xfersize = N * maxpacket */ USBx_OUTEP(epnum)->DOEPTSIZ &= ~(USB_OTG_DOEPTSIZ_XFRSIZ); - 8007c78: 69bb ldr r3, [r7, #24] - 8007c7a: 015a lsls r2, r3, #5 - 8007c7c: 69fb ldr r3, [r7, #28] - 8007c7e: 4413 add r3, r2 - 8007c80: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007c84: 691b ldr r3, [r3, #16] - 8007c86: 69ba ldr r2, [r7, #24] - 8007c88: 0151 lsls r1, r2, #5 - 8007c8a: 69fa ldr r2, [r7, #28] - 8007c8c: 440a add r2, r1 - 8007c8e: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007c92: 0cdb lsrs r3, r3, #19 - 8007c94: 04db lsls r3, r3, #19 - 8007c96: 6113 str r3, [r2, #16] + 8007b00: 69bb ldr r3, [r7, #24] + 8007b02: 015a lsls r2, r3, #5 + 8007b04: 69fb ldr r3, [r7, #28] + 8007b06: 4413 add r3, r2 + 8007b08: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007b0c: 691b ldr r3, [r3, #16] + 8007b0e: 69ba ldr r2, [r7, #24] + 8007b10: 0151 lsls r1, r2, #5 + 8007b12: 69fa ldr r2, [r7, #28] + 8007b14: 440a add r2, r1 + 8007b16: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007b1a: 0cdb lsrs r3, r3, #19 + 8007b1c: 04db lsls r3, r3, #19 + 8007b1e: 6113 str r3, [r2, #16] USBx_OUTEP(epnum)->DOEPTSIZ &= ~(USB_OTG_DOEPTSIZ_PKTCNT); - 8007c98: 69bb ldr r3, [r7, #24] - 8007c9a: 015a lsls r2, r3, #5 - 8007c9c: 69fb ldr r3, [r7, #28] - 8007c9e: 4413 add r3, r2 - 8007ca0: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007ca4: 691b ldr r3, [r3, #16] - 8007ca6: 69ba ldr r2, [r7, #24] - 8007ca8: 0151 lsls r1, r2, #5 - 8007caa: 69fa ldr r2, [r7, #28] - 8007cac: 440a add r2, r1 - 8007cae: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007cb2: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 - 8007cb6: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 - 8007cba: 6113 str r3, [r2, #16] + 8007b20: 69bb ldr r3, [r7, #24] + 8007b22: 015a lsls r2, r3, #5 + 8007b24: 69fb ldr r3, [r7, #28] + 8007b26: 4413 add r3, r2 + 8007b28: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007b2c: 691b ldr r3, [r3, #16] + 8007b2e: 69ba ldr r2, [r7, #24] + 8007b30: 0151 lsls r1, r2, #5 + 8007b32: 69fa ldr r2, [r7, #28] + 8007b34: 440a add r2, r1 + 8007b36: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007b3a: f023 53ff bic.w r3, r3, #534773760 @ 0x1fe00000 + 8007b3e: f423 13c0 bic.w r3, r3, #1572864 @ 0x180000 + 8007b42: 6113 str r3, [r2, #16] if (epnum == 0U) - 8007cbc: 69bb ldr r3, [r7, #24] - 8007cbe: 2b00 cmp r3, #0 - 8007cc0: d132 bne.n 8007d28 + 8007b44: 69bb ldr r3, [r7, #24] + 8007b46: 2b00 cmp r3, #0 + 8007b48: d132 bne.n 8007bb0 { if (ep->xfer_len > 0U) - 8007cc2: 68bb ldr r3, [r7, #8] - 8007cc4: 691b ldr r3, [r3, #16] - 8007cc6: 2b00 cmp r3, #0 - 8007cc8: d003 beq.n 8007cd2 + 8007b4a: 68bb ldr r3, [r7, #8] + 8007b4c: 691b ldr r3, [r3, #16] + 8007b4e: 2b00 cmp r3, #0 + 8007b50: d003 beq.n 8007b5a { ep->xfer_len = ep->maxpacket; - 8007cca: 68bb ldr r3, [r7, #8] - 8007ccc: 689a ldr r2, [r3, #8] - 8007cce: 68bb ldr r3, [r7, #8] - 8007cd0: 611a str r2, [r3, #16] + 8007b52: 68bb ldr r3, [r7, #8] + 8007b54: 689a ldr r2, [r3, #8] + 8007b56: 68bb ldr r3, [r7, #8] + 8007b58: 611a str r2, [r3, #16] } /* Store transfer size, for EP0 this is equal to endpoint max packet size */ ep->xfer_size = ep->maxpacket; - 8007cd2: 68bb ldr r3, [r7, #8] - 8007cd4: 689a ldr r2, [r3, #8] - 8007cd6: 68bb ldr r3, [r7, #8] - 8007cd8: 621a str r2, [r3, #32] + 8007b5a: 68bb ldr r3, [r7, #8] + 8007b5c: 689a ldr r2, [r3, #8] + 8007b5e: 68bb ldr r3, [r7, #8] + 8007b60: 621a str r2, [r3, #32] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_XFRSIZ & ep->xfer_size); - 8007cda: 69bb ldr r3, [r7, #24] - 8007cdc: 015a lsls r2, r3, #5 - 8007cde: 69fb ldr r3, [r7, #28] - 8007ce0: 4413 add r3, r2 - 8007ce2: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007ce6: 691a ldr r2, [r3, #16] - 8007ce8: 68bb ldr r3, [r7, #8] - 8007cea: 6a1b ldr r3, [r3, #32] - 8007cec: f3c3 0312 ubfx r3, r3, #0, #19 - 8007cf0: 69b9 ldr r1, [r7, #24] - 8007cf2: 0148 lsls r0, r1, #5 - 8007cf4: 69f9 ldr r1, [r7, #28] - 8007cf6: 4401 add r1, r0 - 8007cf8: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007cfc: 4313 orrs r3, r2 - 8007cfe: 610b str r3, [r1, #16] + 8007b62: 69bb ldr r3, [r7, #24] + 8007b64: 015a lsls r2, r3, #5 + 8007b66: 69fb ldr r3, [r7, #28] + 8007b68: 4413 add r3, r2 + 8007b6a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007b6e: 691a ldr r2, [r3, #16] + 8007b70: 68bb ldr r3, [r7, #8] + 8007b72: 6a1b ldr r3, [r3, #32] + 8007b74: f3c3 0312 ubfx r3, r3, #0, #19 + 8007b78: 69b9 ldr r1, [r7, #24] + 8007b7a: 0148 lsls r0, r1, #5 + 8007b7c: 69f9 ldr r1, [r7, #28] + 8007b7e: 4401 add r1, r0 + 8007b80: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 8007b84: 4313 orrs r3, r2 + 8007b86: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 8007d00: 69bb ldr r3, [r7, #24] - 8007d02: 015a lsls r2, r3, #5 - 8007d04: 69fb ldr r3, [r7, #28] - 8007d06: 4413 add r3, r2 - 8007d08: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d0c: 691b ldr r3, [r3, #16] - 8007d0e: 69ba ldr r2, [r7, #24] - 8007d10: 0151 lsls r1, r2, #5 - 8007d12: 69fa ldr r2, [r7, #28] - 8007d14: 440a add r2, r1 - 8007d16: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007d1a: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007d1e: 6113 str r3, [r2, #16] - 8007d20: e062 b.n 8007de8 - 8007d22: bf00 nop - 8007d24: 1ff80000 .word 0x1ff80000 + 8007b88: 69bb ldr r3, [r7, #24] + 8007b8a: 015a lsls r2, r3, #5 + 8007b8c: 69fb ldr r3, [r7, #28] + 8007b8e: 4413 add r3, r2 + 8007b90: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007b94: 691b ldr r3, [r3, #16] + 8007b96: 69ba ldr r2, [r7, #24] + 8007b98: 0151 lsls r1, r2, #5 + 8007b9a: 69fa ldr r2, [r7, #28] + 8007b9c: 440a add r2, r1 + 8007b9e: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007ba2: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 8007ba6: 6113 str r3, [r2, #16] + 8007ba8: e062 b.n 8007c70 + 8007baa: bf00 nop + 8007bac: 1ff80000 .word 0x1ff80000 } else { if (ep->xfer_len == 0U) - 8007d28: 68bb ldr r3, [r7, #8] - 8007d2a: 691b ldr r3, [r3, #16] - 8007d2c: 2b00 cmp r3, #0 - 8007d2e: d123 bne.n 8007d78 + 8007bb0: 68bb ldr r3, [r7, #8] + 8007bb2: 691b ldr r3, [r3, #16] + 8007bb4: 2b00 cmp r3, #0 + 8007bb6: d123 bne.n 8007c00 { USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_XFRSIZ & ep->maxpacket); - 8007d30: 69bb ldr r3, [r7, #24] - 8007d32: 015a lsls r2, r3, #5 - 8007d34: 69fb ldr r3, [r7, #28] - 8007d36: 4413 add r3, r2 - 8007d38: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d3c: 691a ldr r2, [r3, #16] - 8007d3e: 68bb ldr r3, [r7, #8] - 8007d40: 689b ldr r3, [r3, #8] - 8007d42: f3c3 0312 ubfx r3, r3, #0, #19 - 8007d46: 69b9 ldr r1, [r7, #24] - 8007d48: 0148 lsls r0, r1, #5 - 8007d4a: 69f9 ldr r1, [r7, #28] - 8007d4c: 4401 add r1, r0 - 8007d4e: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007d52: 4313 orrs r3, r2 - 8007d54: 610b str r3, [r1, #16] + 8007bb8: 69bb ldr r3, [r7, #24] + 8007bba: 015a lsls r2, r3, #5 + 8007bbc: 69fb ldr r3, [r7, #28] + 8007bbe: 4413 add r3, r2 + 8007bc0: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007bc4: 691a ldr r2, [r3, #16] + 8007bc6: 68bb ldr r3, [r7, #8] + 8007bc8: 689b ldr r3, [r3, #8] + 8007bca: f3c3 0312 ubfx r3, r3, #0, #19 + 8007bce: 69b9 ldr r1, [r7, #24] + 8007bd0: 0148 lsls r0, r1, #5 + 8007bd2: 69f9 ldr r1, [r7, #28] + 8007bd4: 4401 add r1, r0 + 8007bd6: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 8007bda: 4313 orrs r3, r2 + 8007bdc: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 8007d56: 69bb ldr r3, [r7, #24] - 8007d58: 015a lsls r2, r3, #5 - 8007d5a: 69fb ldr r3, [r7, #28] - 8007d5c: 4413 add r3, r2 - 8007d5e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007d62: 691b ldr r3, [r3, #16] - 8007d64: 69ba ldr r2, [r7, #24] - 8007d66: 0151 lsls r1, r2, #5 - 8007d68: 69fa ldr r2, [r7, #28] - 8007d6a: 440a add r2, r1 - 8007d6c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007d70: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 8007d74: 6113 str r3, [r2, #16] - 8007d76: e037 b.n 8007de8 + 8007bde: 69bb ldr r3, [r7, #24] + 8007be0: 015a lsls r2, r3, #5 + 8007be2: 69fb ldr r3, [r7, #28] + 8007be4: 4413 add r3, r2 + 8007be6: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007bea: 691b ldr r3, [r3, #16] + 8007bec: 69ba ldr r2, [r7, #24] + 8007bee: 0151 lsls r1, r2, #5 + 8007bf0: 69fa ldr r2, [r7, #28] + 8007bf2: 440a add r2, r1 + 8007bf4: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007bf8: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 8007bfc: 6113 str r3, [r2, #16] + 8007bfe: e037 b.n 8007c70 } else { pktcnt = (uint16_t)((ep->xfer_len + ep->maxpacket - 1U) / ep->maxpacket); - 8007d78: 68bb ldr r3, [r7, #8] - 8007d7a: 691a ldr r2, [r3, #16] - 8007d7c: 68bb ldr r3, [r7, #8] - 8007d7e: 689b ldr r3, [r3, #8] - 8007d80: 4413 add r3, r2 - 8007d82: 1e5a subs r2, r3, #1 - 8007d84: 68bb ldr r3, [r7, #8] - 8007d86: 689b ldr r3, [r3, #8] - 8007d88: fbb2 f3f3 udiv r3, r2, r3 - 8007d8c: 82fb strh r3, [r7, #22] + 8007c00: 68bb ldr r3, [r7, #8] + 8007c02: 691a ldr r2, [r3, #16] + 8007c04: 68bb ldr r3, [r7, #8] + 8007c06: 689b ldr r3, [r3, #8] + 8007c08: 4413 add r3, r2 + 8007c0a: 1e5a subs r2, r3, #1 + 8007c0c: 68bb ldr r3, [r7, #8] + 8007c0e: 689b ldr r3, [r3, #8] + 8007c10: fbb2 f3f3 udiv r3, r2, r3 + 8007c14: 82fb strh r3, [r7, #22] ep->xfer_size = ep->maxpacket * pktcnt; - 8007d8e: 68bb ldr r3, [r7, #8] - 8007d90: 689b ldr r3, [r3, #8] - 8007d92: 8afa ldrh r2, [r7, #22] - 8007d94: fb03 f202 mul.w r2, r3, r2 - 8007d98: 68bb ldr r3, [r7, #8] - 8007d9a: 621a str r2, [r3, #32] + 8007c16: 68bb ldr r3, [r7, #8] + 8007c18: 689b ldr r3, [r3, #8] + 8007c1a: 8afa ldrh r2, [r7, #22] + 8007c1c: fb03 f202 mul.w r2, r3, r2 + 8007c20: 68bb ldr r3, [r7, #8] + 8007c22: 621a str r2, [r3, #32] USBx_OUTEP(epnum)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_PKTCNT & ((uint32_t)pktcnt << 19); - 8007d9c: 69bb ldr r3, [r7, #24] - 8007d9e: 015a lsls r2, r3, #5 - 8007da0: 69fb ldr r3, [r7, #28] - 8007da2: 4413 add r3, r2 - 8007da4: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007da8: 691a ldr r2, [r3, #16] - 8007daa: 8afb ldrh r3, [r7, #22] - 8007dac: 04d9 lsls r1, r3, #19 - 8007dae: 4b38 ldr r3, [pc, #224] @ (8007e90 ) - 8007db0: 400b ands r3, r1 - 8007db2: 69b9 ldr r1, [r7, #24] - 8007db4: 0148 lsls r0, r1, #5 - 8007db6: 69f9 ldr r1, [r7, #28] - 8007db8: 4401 add r1, r0 - 8007dba: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007dbe: 4313 orrs r3, r2 - 8007dc0: 610b str r3, [r1, #16] + 8007c24: 69bb ldr r3, [r7, #24] + 8007c26: 015a lsls r2, r3, #5 + 8007c28: 69fb ldr r3, [r7, #28] + 8007c2a: 4413 add r3, r2 + 8007c2c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c30: 691a ldr r2, [r3, #16] + 8007c32: 8afb ldrh r3, [r7, #22] + 8007c34: 04d9 lsls r1, r3, #19 + 8007c36: 4b38 ldr r3, [pc, #224] @ (8007d18 ) + 8007c38: 400b ands r3, r1 + 8007c3a: 69b9 ldr r1, [r7, #24] + 8007c3c: 0148 lsls r0, r1, #5 + 8007c3e: 69f9 ldr r1, [r7, #28] + 8007c40: 4401 add r1, r0 + 8007c42: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 8007c46: 4313 orrs r3, r2 + 8007c48: 610b str r3, [r1, #16] USBx_OUTEP(epnum)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_XFRSIZ & ep->xfer_size; - 8007dc2: 69bb ldr r3, [r7, #24] - 8007dc4: 015a lsls r2, r3, #5 - 8007dc6: 69fb ldr r3, [r7, #28] - 8007dc8: 4413 add r3, r2 - 8007dca: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007dce: 691a ldr r2, [r3, #16] - 8007dd0: 68bb ldr r3, [r7, #8] - 8007dd2: 6a1b ldr r3, [r3, #32] - 8007dd4: f3c3 0312 ubfx r3, r3, #0, #19 - 8007dd8: 69b9 ldr r1, [r7, #24] - 8007dda: 0148 lsls r0, r1, #5 - 8007ddc: 69f9 ldr r1, [r7, #28] - 8007dde: 4401 add r1, r0 - 8007de0: f501 6130 add.w r1, r1, #2816 @ 0xb00 - 8007de4: 4313 orrs r3, r2 - 8007de6: 610b str r3, [r1, #16] + 8007c4a: 69bb ldr r3, [r7, #24] + 8007c4c: 015a lsls r2, r3, #5 + 8007c4e: 69fb ldr r3, [r7, #28] + 8007c50: 4413 add r3, r2 + 8007c52: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c56: 691a ldr r2, [r3, #16] + 8007c58: 68bb ldr r3, [r7, #8] + 8007c5a: 6a1b ldr r3, [r3, #32] + 8007c5c: f3c3 0312 ubfx r3, r3, #0, #19 + 8007c60: 69b9 ldr r1, [r7, #24] + 8007c62: 0148 lsls r0, r1, #5 + 8007c64: 69f9 ldr r1, [r7, #28] + 8007c66: 4401 add r1, r0 + 8007c68: f501 6130 add.w r1, r1, #2816 @ 0xb00 + 8007c6c: 4313 orrs r3, r2 + 8007c6e: 610b str r3, [r1, #16] } } if (dma == 1U) - 8007de8: 79fb ldrb r3, [r7, #7] - 8007dea: 2b01 cmp r3, #1 - 8007dec: d10d bne.n 8007e0a + 8007c70: 79fb ldrb r3, [r7, #7] + 8007c72: 2b01 cmp r3, #1 + 8007c74: d10d bne.n 8007c92 { if ((uint32_t)ep->xfer_buff != 0U) - 8007dee: 68bb ldr r3, [r7, #8] - 8007df0: 68db ldr r3, [r3, #12] - 8007df2: 2b00 cmp r3, #0 - 8007df4: d009 beq.n 8007e0a + 8007c76: 68bb ldr r3, [r7, #8] + 8007c78: 68db ldr r3, [r3, #12] + 8007c7a: 2b00 cmp r3, #0 + 8007c7c: d009 beq.n 8007c92 { USBx_OUTEP(epnum)->DOEPDMA = (uint32_t)(ep->xfer_buff); - 8007df6: 68bb ldr r3, [r7, #8] - 8007df8: 68d9 ldr r1, [r3, #12] - 8007dfa: 69bb ldr r3, [r7, #24] - 8007dfc: 015a lsls r2, r3, #5 - 8007dfe: 69fb ldr r3, [r7, #28] - 8007e00: 4413 add r3, r2 - 8007e02: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e06: 460a mov r2, r1 - 8007e08: 615a str r2, [r3, #20] + 8007c7e: 68bb ldr r3, [r7, #8] + 8007c80: 68d9 ldr r1, [r3, #12] + 8007c82: 69bb ldr r3, [r7, #24] + 8007c84: 015a lsls r2, r3, #5 + 8007c86: 69fb ldr r3, [r7, #28] + 8007c88: 4413 add r3, r2 + 8007c8a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007c8e: 460a mov r2, r1 + 8007c90: 615a str r2, [r3, #20] } } if (ep->type == EP_TYPE_ISOC) - 8007e0a: 68bb ldr r3, [r7, #8] - 8007e0c: 791b ldrb r3, [r3, #4] - 8007e0e: 2b01 cmp r3, #1 - 8007e10: d128 bne.n 8007e64 + 8007c92: 68bb ldr r3, [r7, #8] + 8007c94: 791b ldrb r3, [r3, #4] + 8007c96: 2b01 cmp r3, #1 + 8007c98: d128 bne.n 8007cec { if ((USBx_DEVICE->DSTS & (1U << 8)) == 0U) - 8007e12: 69fb ldr r3, [r7, #28] - 8007e14: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8007e18: 689b ldr r3, [r3, #8] - 8007e1a: f403 7380 and.w r3, r3, #256 @ 0x100 - 8007e1e: 2b00 cmp r3, #0 - 8007e20: d110 bne.n 8007e44 + 8007c9a: 69fb ldr r3, [r7, #28] + 8007c9c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8007ca0: 689b ldr r3, [r3, #8] + 8007ca2: f403 7380 and.w r3, r3, #256 @ 0x100 + 8007ca6: 2b00 cmp r3, #0 + 8007ca8: d110 bne.n 8007ccc { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SODDFRM; - 8007e22: 69bb ldr r3, [r7, #24] - 8007e24: 015a lsls r2, r3, #5 - 8007e26: 69fb ldr r3, [r7, #28] - 8007e28: 4413 add r3, r2 - 8007e2a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e2e: 681b ldr r3, [r3, #0] - 8007e30: 69ba ldr r2, [r7, #24] - 8007e32: 0151 lsls r1, r2, #5 - 8007e34: 69fa ldr r2, [r7, #28] - 8007e36: 440a add r2, r1 - 8007e38: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e3c: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 - 8007e40: 6013 str r3, [r2, #0] - 8007e42: e00f b.n 8007e64 + 8007caa: 69bb ldr r3, [r7, #24] + 8007cac: 015a lsls r2, r3, #5 + 8007cae: 69fb ldr r3, [r7, #28] + 8007cb0: 4413 add r3, r2 + 8007cb2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007cb6: 681b ldr r3, [r3, #0] + 8007cb8: 69ba ldr r2, [r7, #24] + 8007cba: 0151 lsls r1, r2, #5 + 8007cbc: 69fa ldr r2, [r7, #28] + 8007cbe: 440a add r2, r1 + 8007cc0: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007cc4: f043 5300 orr.w r3, r3, #536870912 @ 0x20000000 + 8007cc8: 6013 str r3, [r2, #0] + 8007cca: e00f b.n 8007cec } else { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SD0PID_SEVNFRM; - 8007e44: 69bb ldr r3, [r7, #24] - 8007e46: 015a lsls r2, r3, #5 - 8007e48: 69fb ldr r3, [r7, #28] - 8007e4a: 4413 add r3, r2 - 8007e4c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e50: 681b ldr r3, [r3, #0] - 8007e52: 69ba ldr r2, [r7, #24] - 8007e54: 0151 lsls r1, r2, #5 - 8007e56: 69fa ldr r2, [r7, #28] - 8007e58: 440a add r2, r1 - 8007e5a: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e5e: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 8007e62: 6013 str r3, [r2, #0] + 8007ccc: 69bb ldr r3, [r7, #24] + 8007cce: 015a lsls r2, r3, #5 + 8007cd0: 69fb ldr r3, [r7, #28] + 8007cd2: 4413 add r3, r2 + 8007cd4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007cd8: 681b ldr r3, [r3, #0] + 8007cda: 69ba ldr r2, [r7, #24] + 8007cdc: 0151 lsls r1, r2, #5 + 8007cde: 69fa ldr r2, [r7, #28] + 8007ce0: 440a add r2, r1 + 8007ce2: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007ce6: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8007cea: 6013 str r3, [r2, #0] } } /* EP enable */ USBx_OUTEP(epnum)->DOEPCTL |= (USB_OTG_DOEPCTL_CNAK | USB_OTG_DOEPCTL_EPENA); - 8007e64: 69bb ldr r3, [r7, #24] - 8007e66: 015a lsls r2, r3, #5 - 8007e68: 69fb ldr r3, [r7, #28] - 8007e6a: 4413 add r3, r2 - 8007e6c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007e70: 681b ldr r3, [r3, #0] - 8007e72: 69ba ldr r2, [r7, #24] - 8007e74: 0151 lsls r1, r2, #5 - 8007e76: 69fa ldr r2, [r7, #28] - 8007e78: 440a add r2, r1 - 8007e7a: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007e7e: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 - 8007e82: 6013 str r3, [r2, #0] + 8007cec: 69bb ldr r3, [r7, #24] + 8007cee: 015a lsls r2, r3, #5 + 8007cf0: 69fb ldr r3, [r7, #28] + 8007cf2: 4413 add r3, r2 + 8007cf4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007cf8: 681b ldr r3, [r3, #0] + 8007cfa: 69ba ldr r2, [r7, #24] + 8007cfc: 0151 lsls r1, r2, #5 + 8007cfe: 69fa ldr r2, [r7, #28] + 8007d00: 440a add r2, r1 + 8007d02: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007d06: f043 4304 orr.w r3, r3, #2214592512 @ 0x84000000 + 8007d0a: 6013 str r3, [r2, #0] } return HAL_OK; - 8007e84: 2300 movs r3, #0 + 8007d0c: 2300 movs r3, #0 } - 8007e86: 4618 mov r0, r3 - 8007e88: 3720 adds r7, #32 - 8007e8a: 46bd mov sp, r7 - 8007e8c: bd80 pop {r7, pc} - 8007e8e: bf00 nop - 8007e90: 1ff80000 .word 0x1ff80000 + 8007d0e: 4618 mov r0, r3 + 8007d10: 3720 adds r7, #32 + 8007d12: 46bd mov sp, r7 + 8007d14: bd80 pop {r7, pc} + 8007d16: bf00 nop + 8007d18: 1ff80000 .word 0x1ff80000 -08007e94 : +08007d1c : * @param USBx usb device instance * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPStopXfer(const USB_OTG_GlobalTypeDef *USBx, USB_OTG_EPTypeDef *ep) { - 8007e94: b480 push {r7} - 8007e96: b087 sub sp, #28 - 8007e98: af00 add r7, sp, #0 - 8007e9a: 6078 str r0, [r7, #4] - 8007e9c: 6039 str r1, [r7, #0] + 8007d1c: b480 push {r7} + 8007d1e: b087 sub sp, #28 + 8007d20: af00 add r7, sp, #0 + 8007d22: 6078 str r0, [r7, #4] + 8007d24: 6039 str r1, [r7, #0] __IO uint32_t count = 0U; - 8007e9e: 2300 movs r3, #0 - 8007ea0: 60fb str r3, [r7, #12] + 8007d26: 2300 movs r3, #0 + 8007d28: 60fb str r3, [r7, #12] HAL_StatusTypeDef ret = HAL_OK; - 8007ea2: 2300 movs r3, #0 - 8007ea4: 75fb strb r3, [r7, #23] + 8007d2a: 2300 movs r3, #0 + 8007d2c: 75fb strb r3, [r7, #23] uint32_t USBx_BASE = (uint32_t)USBx; - 8007ea6: 687b ldr r3, [r7, #4] - 8007ea8: 613b str r3, [r7, #16] + 8007d2e: 687b ldr r3, [r7, #4] + 8007d30: 613b str r3, [r7, #16] /* IN endpoint */ if (ep->is_in == 1U) - 8007eaa: 683b ldr r3, [r7, #0] - 8007eac: 785b ldrb r3, [r3, #1] - 8007eae: 2b01 cmp r3, #1 - 8007eb0: d14a bne.n 8007f48 + 8007d32: 683b ldr r3, [r7, #0] + 8007d34: 785b ldrb r3, [r3, #1] + 8007d36: 2b01 cmp r3, #1 + 8007d38: d14a bne.n 8007dd0 { /* EP enable, IN data in FIFO */ if (((USBx_INEP(ep->num)->DIEPCTL) & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA) - 8007eb2: 683b ldr r3, [r7, #0] - 8007eb4: 781b ldrb r3, [r3, #0] - 8007eb6: 015a lsls r2, r3, #5 - 8007eb8: 693b ldr r3, [r7, #16] - 8007eba: 4413 add r3, r2 - 8007ebc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007ec0: 681b ldr r3, [r3, #0] - 8007ec2: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007ec6: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007eca: f040 8086 bne.w 8007fda + 8007d3a: 683b ldr r3, [r7, #0] + 8007d3c: 781b ldrb r3, [r3, #0] + 8007d3e: 015a lsls r2, r3, #5 + 8007d40: 693b ldr r3, [r7, #16] + 8007d42: 4413 add r3, r2 + 8007d44: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d48: 681b ldr r3, [r3, #0] + 8007d4a: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007d4e: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007d52: f040 8086 bne.w 8007e62 { USBx_INEP(ep->num)->DIEPCTL |= (USB_OTG_DIEPCTL_SNAK); - 8007ece: 683b ldr r3, [r7, #0] - 8007ed0: 781b ldrb r3, [r3, #0] - 8007ed2: 015a lsls r2, r3, #5 - 8007ed4: 693b ldr r3, [r7, #16] - 8007ed6: 4413 add r3, r2 - 8007ed8: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007edc: 681b ldr r3, [r3, #0] - 8007ede: 683a ldr r2, [r7, #0] - 8007ee0: 7812 ldrb r2, [r2, #0] - 8007ee2: 0151 lsls r1, r2, #5 - 8007ee4: 693a ldr r2, [r7, #16] - 8007ee6: 440a add r2, r1 - 8007ee8: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007eec: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 8007ef0: 6013 str r3, [r2, #0] + 8007d56: 683b ldr r3, [r7, #0] + 8007d58: 781b ldrb r3, [r3, #0] + 8007d5a: 015a lsls r2, r3, #5 + 8007d5c: 693b ldr r3, [r7, #16] + 8007d5e: 4413 add r3, r2 + 8007d60: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d64: 681b ldr r3, [r3, #0] + 8007d66: 683a ldr r2, [r7, #0] + 8007d68: 7812 ldrb r2, [r2, #0] + 8007d6a: 0151 lsls r1, r2, #5 + 8007d6c: 693a ldr r2, [r7, #16] + 8007d6e: 440a add r2, r1 + 8007d70: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007d74: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8007d78: 6013 str r3, [r2, #0] USBx_INEP(ep->num)->DIEPCTL |= (USB_OTG_DIEPCTL_EPDIS); - 8007ef2: 683b ldr r3, [r7, #0] - 8007ef4: 781b ldrb r3, [r3, #0] - 8007ef6: 015a lsls r2, r3, #5 - 8007ef8: 693b ldr r3, [r7, #16] - 8007efa: 4413 add r3, r2 - 8007efc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007f00: 681b ldr r3, [r3, #0] - 8007f02: 683a ldr r2, [r7, #0] - 8007f04: 7812 ldrb r2, [r2, #0] - 8007f06: 0151 lsls r1, r2, #5 - 8007f08: 693a ldr r2, [r7, #16] - 8007f0a: 440a add r2, r1 - 8007f0c: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8007f10: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007f14: 6013 str r3, [r2, #0] + 8007d7a: 683b ldr r3, [r7, #0] + 8007d7c: 781b ldrb r3, [r3, #0] + 8007d7e: 015a lsls r2, r3, #5 + 8007d80: 693b ldr r3, [r7, #16] + 8007d82: 4413 add r3, r2 + 8007d84: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007d88: 681b ldr r3, [r3, #0] + 8007d8a: 683a ldr r2, [r7, #0] + 8007d8c: 7812 ldrb r2, [r2, #0] + 8007d8e: 0151 lsls r1, r2, #5 + 8007d90: 693a ldr r2, [r7, #16] + 8007d92: 440a add r2, r1 + 8007d94: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007d98: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 8007d9c: 6013 str r3, [r2, #0] do { count++; - 8007f16: 68fb ldr r3, [r7, #12] - 8007f18: 3301 adds r3, #1 - 8007f1a: 60fb str r3, [r7, #12] + 8007d9e: 68fb ldr r3, [r7, #12] + 8007da0: 3301 adds r3, #1 + 8007da2: 60fb str r3, [r7, #12] if (count > 10000U) - 8007f1c: 68fb ldr r3, [r7, #12] - 8007f1e: f242 7210 movw r2, #10000 @ 0x2710 - 8007f22: 4293 cmp r3, r2 - 8007f24: d902 bls.n 8007f2c + 8007da4: 68fb ldr r3, [r7, #12] + 8007da6: f242 7210 movw r2, #10000 @ 0x2710 + 8007daa: 4293 cmp r3, r2 + 8007dac: d902 bls.n 8007db4 { ret = HAL_ERROR; - 8007f26: 2301 movs r3, #1 - 8007f28: 75fb strb r3, [r7, #23] + 8007dae: 2301 movs r3, #1 + 8007db0: 75fb strb r3, [r7, #23] break; - 8007f2a: e056 b.n 8007fda + 8007db2: e056 b.n 8007e62 } } while (((USBx_INEP(ep->num)->DIEPCTL) & USB_OTG_DIEPCTL_EPENA) == USB_OTG_DIEPCTL_EPENA); - 8007f2c: 683b ldr r3, [r7, #0] - 8007f2e: 781b ldrb r3, [r3, #0] - 8007f30: 015a lsls r2, r3, #5 - 8007f32: 693b ldr r3, [r7, #16] - 8007f34: 4413 add r3, r2 - 8007f36: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8007f3a: 681b ldr r3, [r3, #0] - 8007f3c: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007f40: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007f44: d0e7 beq.n 8007f16 - 8007f46: e048 b.n 8007fda + 8007db4: 683b ldr r3, [r7, #0] + 8007db6: 781b ldrb r3, [r3, #0] + 8007db8: 015a lsls r2, r3, #5 + 8007dba: 693b ldr r3, [r7, #16] + 8007dbc: 4413 add r3, r2 + 8007dbe: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007dc2: 681b ldr r3, [r3, #0] + 8007dc4: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007dc8: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007dcc: d0e7 beq.n 8007d9e + 8007dce: e048 b.n 8007e62 } } else /* OUT endpoint */ { if (((USBx_OUTEP(ep->num)->DOEPCTL) & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8007f48: 683b ldr r3, [r7, #0] - 8007f4a: 781b ldrb r3, [r3, #0] - 8007f4c: 015a lsls r2, r3, #5 - 8007f4e: 693b ldr r3, [r7, #16] - 8007f50: 4413 add r3, r2 - 8007f52: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f56: 681b ldr r3, [r3, #0] - 8007f58: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007f5c: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007f60: d13b bne.n 8007fda + 8007dd0: 683b ldr r3, [r7, #0] + 8007dd2: 781b ldrb r3, [r3, #0] + 8007dd4: 015a lsls r2, r3, #5 + 8007dd6: 693b ldr r3, [r7, #16] + 8007dd8: 4413 add r3, r2 + 8007dda: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007dde: 681b ldr r3, [r3, #0] + 8007de0: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007de4: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007de8: d13b bne.n 8007e62 { USBx_OUTEP(ep->num)->DOEPCTL |= (USB_OTG_DOEPCTL_SNAK); - 8007f62: 683b ldr r3, [r7, #0] - 8007f64: 781b ldrb r3, [r3, #0] - 8007f66: 015a lsls r2, r3, #5 - 8007f68: 693b ldr r3, [r7, #16] - 8007f6a: 4413 add r3, r2 - 8007f6c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f70: 681b ldr r3, [r3, #0] - 8007f72: 683a ldr r2, [r7, #0] - 8007f74: 7812 ldrb r2, [r2, #0] - 8007f76: 0151 lsls r1, r2, #5 - 8007f78: 693a ldr r2, [r7, #16] - 8007f7a: 440a add r2, r1 - 8007f7c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007f80: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 - 8007f84: 6013 str r3, [r2, #0] + 8007dea: 683b ldr r3, [r7, #0] + 8007dec: 781b ldrb r3, [r3, #0] + 8007dee: 015a lsls r2, r3, #5 + 8007df0: 693b ldr r3, [r7, #16] + 8007df2: 4413 add r3, r2 + 8007df4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007df8: 681b ldr r3, [r3, #0] + 8007dfa: 683a ldr r2, [r7, #0] + 8007dfc: 7812 ldrb r2, [r2, #0] + 8007dfe: 0151 lsls r1, r2, #5 + 8007e00: 693a ldr r2, [r7, #16] + 8007e02: 440a add r2, r1 + 8007e04: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007e08: f043 6300 orr.w r3, r3, #134217728 @ 0x8000000 + 8007e0c: 6013 str r3, [r2, #0] USBx_OUTEP(ep->num)->DOEPCTL |= (USB_OTG_DOEPCTL_EPDIS); - 8007f86: 683b ldr r3, [r7, #0] - 8007f88: 781b ldrb r3, [r3, #0] - 8007f8a: 015a lsls r2, r3, #5 - 8007f8c: 693b ldr r3, [r7, #16] - 8007f8e: 4413 add r3, r2 - 8007f90: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007f94: 681b ldr r3, [r3, #0] - 8007f96: 683a ldr r2, [r7, #0] - 8007f98: 7812 ldrb r2, [r2, #0] - 8007f9a: 0151 lsls r1, r2, #5 - 8007f9c: 693a ldr r2, [r7, #16] - 8007f9e: 440a add r2, r1 - 8007fa0: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8007fa4: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 - 8007fa8: 6013 str r3, [r2, #0] + 8007e0e: 683b ldr r3, [r7, #0] + 8007e10: 781b ldrb r3, [r3, #0] + 8007e12: 015a lsls r2, r3, #5 + 8007e14: 693b ldr r3, [r7, #16] + 8007e16: 4413 add r3, r2 + 8007e18: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007e1c: 681b ldr r3, [r3, #0] + 8007e1e: 683a ldr r2, [r7, #0] + 8007e20: 7812 ldrb r2, [r2, #0] + 8007e22: 0151 lsls r1, r2, #5 + 8007e24: 693a ldr r2, [r7, #16] + 8007e26: 440a add r2, r1 + 8007e28: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8007e2c: f043 4380 orr.w r3, r3, #1073741824 @ 0x40000000 + 8007e30: 6013 str r3, [r2, #0] do { count++; - 8007faa: 68fb ldr r3, [r7, #12] - 8007fac: 3301 adds r3, #1 - 8007fae: 60fb str r3, [r7, #12] + 8007e32: 68fb ldr r3, [r7, #12] + 8007e34: 3301 adds r3, #1 + 8007e36: 60fb str r3, [r7, #12] if (count > 10000U) - 8007fb0: 68fb ldr r3, [r7, #12] - 8007fb2: f242 7210 movw r2, #10000 @ 0x2710 - 8007fb6: 4293 cmp r3, r2 - 8007fb8: d902 bls.n 8007fc0 + 8007e38: 68fb ldr r3, [r7, #12] + 8007e3a: f242 7210 movw r2, #10000 @ 0x2710 + 8007e3e: 4293 cmp r3, r2 + 8007e40: d902 bls.n 8007e48 { ret = HAL_ERROR; - 8007fba: 2301 movs r3, #1 - 8007fbc: 75fb strb r3, [r7, #23] + 8007e42: 2301 movs r3, #1 + 8007e44: 75fb strb r3, [r7, #23] break; - 8007fbe: e00c b.n 8007fda + 8007e46: e00c b.n 8007e62 } } while (((USBx_OUTEP(ep->num)->DOEPCTL) & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA); - 8007fc0: 683b ldr r3, [r7, #0] - 8007fc2: 781b ldrb r3, [r3, #0] - 8007fc4: 015a lsls r2, r3, #5 - 8007fc6: 693b ldr r3, [r7, #16] - 8007fc8: 4413 add r3, r2 - 8007fca: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8007fce: 681b ldr r3, [r3, #0] - 8007fd0: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8007fd4: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8007fd8: d0e7 beq.n 8007faa + 8007e48: 683b ldr r3, [r7, #0] + 8007e4a: 781b ldrb r3, [r3, #0] + 8007e4c: 015a lsls r2, r3, #5 + 8007e4e: 693b ldr r3, [r7, #16] + 8007e50: 4413 add r3, r2 + 8007e52: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8007e56: 681b ldr r3, [r3, #0] + 8007e58: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 8007e5c: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 8007e60: d0e7 beq.n 8007e32 } } return ret; - 8007fda: 7dfb ldrb r3, [r7, #23] + 8007e62: 7dfb ldrb r3, [r7, #23] } - 8007fdc: 4618 mov r0, r3 - 8007fde: 371c adds r7, #28 - 8007fe0: 46bd mov sp, r7 - 8007fe2: f85d 7b04 ldr.w r7, [sp], #4 - 8007fe6: 4770 bx lr + 8007e64: 4618 mov r0, r3 + 8007e66: 371c adds r7, #28 + 8007e68: 46bd mov sp, r7 + 8007e6a: f85d 7b04 ldr.w r7, [sp], #4 + 8007e6e: 4770 bx lr -08007fe8 : +08007e70 : * 1 : DMA feature used * @retval HAL status */ HAL_StatusTypeDef USB_WritePacket(const USB_OTG_GlobalTypeDef *USBx, uint8_t *src, uint8_t ch_ep_num, uint16_t len, uint8_t dma) { - 8007fe8: b480 push {r7} - 8007fea: b089 sub sp, #36 @ 0x24 - 8007fec: af00 add r7, sp, #0 - 8007fee: 60f8 str r0, [r7, #12] - 8007ff0: 60b9 str r1, [r7, #8] - 8007ff2: 4611 mov r1, r2 - 8007ff4: 461a mov r2, r3 - 8007ff6: 460b mov r3, r1 - 8007ff8: 71fb strb r3, [r7, #7] - 8007ffa: 4613 mov r3, r2 - 8007ffc: 80bb strh r3, [r7, #4] + 8007e70: b480 push {r7} + 8007e72: b089 sub sp, #36 @ 0x24 + 8007e74: af00 add r7, sp, #0 + 8007e76: 60f8 str r0, [r7, #12] + 8007e78: 60b9 str r1, [r7, #8] + 8007e7a: 4611 mov r1, r2 + 8007e7c: 461a mov r2, r3 + 8007e7e: 460b mov r3, r1 + 8007e80: 71fb strb r3, [r7, #7] + 8007e82: 4613 mov r3, r2 + 8007e84: 80bb strh r3, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8007ffe: 68fb ldr r3, [r7, #12] - 8008000: 617b str r3, [r7, #20] + 8007e86: 68fb ldr r3, [r7, #12] + 8007e88: 617b str r3, [r7, #20] uint8_t *pSrc = src; - 8008002: 68bb ldr r3, [r7, #8] - 8008004: 61fb str r3, [r7, #28] + 8007e8a: 68bb ldr r3, [r7, #8] + 8007e8c: 61fb str r3, [r7, #28] uint32_t count32b; uint32_t i; if (dma == 0U) - 8008006: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 - 800800a: 2b00 cmp r3, #0 - 800800c: d123 bne.n 8008056 + 8007e8e: f897 3028 ldrb.w r3, [r7, #40] @ 0x28 + 8007e92: 2b00 cmp r3, #0 + 8007e94: d123 bne.n 8007ede { count32b = ((uint32_t)len + 3U) / 4U; - 800800e: 88bb ldrh r3, [r7, #4] - 8008010: 3303 adds r3, #3 - 8008012: 089b lsrs r3, r3, #2 - 8008014: 613b str r3, [r7, #16] + 8007e96: 88bb ldrh r3, [r7, #4] + 8007e98: 3303 adds r3, #3 + 8007e9a: 089b lsrs r3, r3, #2 + 8007e9c: 613b str r3, [r7, #16] for (i = 0U; i < count32b; i++) - 8008016: 2300 movs r3, #0 - 8008018: 61bb str r3, [r7, #24] - 800801a: e018 b.n 800804e + 8007e9e: 2300 movs r3, #0 + 8007ea0: 61bb str r3, [r7, #24] + 8007ea2: e018 b.n 8007ed6 { USBx_DFIFO((uint32_t)ch_ep_num) = __UNALIGNED_UINT32_READ(pSrc); - 800801c: 79fb ldrb r3, [r7, #7] - 800801e: 031a lsls r2, r3, #12 - 8008020: 697b ldr r3, [r7, #20] - 8008022: 4413 add r3, r2 - 8008024: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 8008028: 461a mov r2, r3 - 800802a: 69fb ldr r3, [r7, #28] - 800802c: 681b ldr r3, [r3, #0] - 800802e: 6013 str r3, [r2, #0] + 8007ea4: 79fb ldrb r3, [r7, #7] + 8007ea6: 031a lsls r2, r3, #12 + 8007ea8: 697b ldr r3, [r7, #20] + 8007eaa: 4413 add r3, r2 + 8007eac: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 8007eb0: 461a mov r2, r3 + 8007eb2: 69fb ldr r3, [r7, #28] + 8007eb4: 681b ldr r3, [r3, #0] + 8007eb6: 6013 str r3, [r2, #0] pSrc++; - 8008030: 69fb ldr r3, [r7, #28] - 8008032: 3301 adds r3, #1 - 8008034: 61fb str r3, [r7, #28] + 8007eb8: 69fb ldr r3, [r7, #28] + 8007eba: 3301 adds r3, #1 + 8007ebc: 61fb str r3, [r7, #28] pSrc++; - 8008036: 69fb ldr r3, [r7, #28] - 8008038: 3301 adds r3, #1 - 800803a: 61fb str r3, [r7, #28] + 8007ebe: 69fb ldr r3, [r7, #28] + 8007ec0: 3301 adds r3, #1 + 8007ec2: 61fb str r3, [r7, #28] pSrc++; - 800803c: 69fb ldr r3, [r7, #28] - 800803e: 3301 adds r3, #1 - 8008040: 61fb str r3, [r7, #28] + 8007ec4: 69fb ldr r3, [r7, #28] + 8007ec6: 3301 adds r3, #1 + 8007ec8: 61fb str r3, [r7, #28] pSrc++; - 8008042: 69fb ldr r3, [r7, #28] - 8008044: 3301 adds r3, #1 - 8008046: 61fb str r3, [r7, #28] + 8007eca: 69fb ldr r3, [r7, #28] + 8007ecc: 3301 adds r3, #1 + 8007ece: 61fb str r3, [r7, #28] for (i = 0U; i < count32b; i++) - 8008048: 69bb ldr r3, [r7, #24] - 800804a: 3301 adds r3, #1 - 800804c: 61bb str r3, [r7, #24] - 800804e: 69ba ldr r2, [r7, #24] - 8008050: 693b ldr r3, [r7, #16] - 8008052: 429a cmp r2, r3 - 8008054: d3e2 bcc.n 800801c + 8007ed0: 69bb ldr r3, [r7, #24] + 8007ed2: 3301 adds r3, #1 + 8007ed4: 61bb str r3, [r7, #24] + 8007ed6: 69ba ldr r2, [r7, #24] + 8007ed8: 693b ldr r3, [r7, #16] + 8007eda: 429a cmp r2, r3 + 8007edc: d3e2 bcc.n 8007ea4 } } return HAL_OK; - 8008056: 2300 movs r3, #0 + 8007ede: 2300 movs r3, #0 } - 8008058: 4618 mov r0, r3 - 800805a: 3724 adds r7, #36 @ 0x24 - 800805c: 46bd mov sp, r7 - 800805e: f85d 7b04 ldr.w r7, [sp], #4 - 8008062: 4770 bx lr + 8007ee0: 4618 mov r0, r3 + 8007ee2: 3724 adds r7, #36 @ 0x24 + 8007ee4: 46bd mov sp, r7 + 8007ee6: f85d 7b04 ldr.w r7, [sp], #4 + 8007eea: 4770 bx lr -08008064 : +08007eec : * @param dest source pointer * @param len Number of bytes to read * @retval pointer to destination buffer */ void *USB_ReadPacket(const USB_OTG_GlobalTypeDef *USBx, uint8_t *dest, uint16_t len) { - 8008064: b480 push {r7} - 8008066: b08b sub sp, #44 @ 0x2c - 8008068: af00 add r7, sp, #0 - 800806a: 60f8 str r0, [r7, #12] - 800806c: 60b9 str r1, [r7, #8] - 800806e: 4613 mov r3, r2 - 8008070: 80fb strh r3, [r7, #6] + 8007eec: b480 push {r7} + 8007eee: b08b sub sp, #44 @ 0x2c + 8007ef0: af00 add r7, sp, #0 + 8007ef2: 60f8 str r0, [r7, #12] + 8007ef4: 60b9 str r1, [r7, #8] + 8007ef6: 4613 mov r3, r2 + 8007ef8: 80fb strh r3, [r7, #6] uint32_t USBx_BASE = (uint32_t)USBx; - 8008072: 68fb ldr r3, [r7, #12] - 8008074: 61bb str r3, [r7, #24] + 8007efa: 68fb ldr r3, [r7, #12] + 8007efc: 61bb str r3, [r7, #24] uint8_t *pDest = dest; - 8008076: 68bb ldr r3, [r7, #8] - 8008078: 627b str r3, [r7, #36] @ 0x24 + 8007efe: 68bb ldr r3, [r7, #8] + 8007f00: 627b str r3, [r7, #36] @ 0x24 uint32_t pData; uint32_t i; uint32_t count32b = (uint32_t)len >> 2U; - 800807a: 88fb ldrh r3, [r7, #6] - 800807c: 089b lsrs r3, r3, #2 - 800807e: b29b uxth r3, r3 - 8008080: 617b str r3, [r7, #20] + 8007f02: 88fb ldrh r3, [r7, #6] + 8007f04: 089b lsrs r3, r3, #2 + 8007f06: b29b uxth r3, r3 + 8007f08: 617b str r3, [r7, #20] uint16_t remaining_bytes = len % 4U; - 8008082: 88fb ldrh r3, [r7, #6] - 8008084: f003 0303 and.w r3, r3, #3 - 8008088: 83fb strh r3, [r7, #30] + 8007f0a: 88fb ldrh r3, [r7, #6] + 8007f0c: f003 0303 and.w r3, r3, #3 + 8007f10: 83fb strh r3, [r7, #30] for (i = 0U; i < count32b; i++) - 800808a: 2300 movs r3, #0 - 800808c: 623b str r3, [r7, #32] - 800808e: e014 b.n 80080ba + 8007f12: 2300 movs r3, #0 + 8007f14: 623b str r3, [r7, #32] + 8007f16: e014 b.n 8007f42 { __UNALIGNED_UINT32_WRITE(pDest, USBx_DFIFO(0U)); - 8008090: 69bb ldr r3, [r7, #24] - 8008092: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 8008096: 681a ldr r2, [r3, #0] - 8008098: 6a7b ldr r3, [r7, #36] @ 0x24 - 800809a: 601a str r2, [r3, #0] + 8007f18: 69bb ldr r3, [r7, #24] + 8007f1a: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 8007f1e: 681a ldr r2, [r3, #0] + 8007f20: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f22: 601a str r2, [r3, #0] pDest++; - 800809c: 6a7b ldr r3, [r7, #36] @ 0x24 - 800809e: 3301 adds r3, #1 - 80080a0: 627b str r3, [r7, #36] @ 0x24 + 8007f24: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f26: 3301 adds r3, #1 + 8007f28: 627b str r3, [r7, #36] @ 0x24 pDest++; - 80080a2: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080a4: 3301 adds r3, #1 - 80080a6: 627b str r3, [r7, #36] @ 0x24 + 8007f2a: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f2c: 3301 adds r3, #1 + 8007f2e: 627b str r3, [r7, #36] @ 0x24 pDest++; - 80080a8: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080aa: 3301 adds r3, #1 - 80080ac: 627b str r3, [r7, #36] @ 0x24 + 8007f30: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f32: 3301 adds r3, #1 + 8007f34: 627b str r3, [r7, #36] @ 0x24 pDest++; - 80080ae: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080b0: 3301 adds r3, #1 - 80080b2: 627b str r3, [r7, #36] @ 0x24 + 8007f36: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f38: 3301 adds r3, #1 + 8007f3a: 627b str r3, [r7, #36] @ 0x24 for (i = 0U; i < count32b; i++) - 80080b4: 6a3b ldr r3, [r7, #32] - 80080b6: 3301 adds r3, #1 - 80080b8: 623b str r3, [r7, #32] - 80080ba: 6a3a ldr r2, [r7, #32] - 80080bc: 697b ldr r3, [r7, #20] - 80080be: 429a cmp r2, r3 - 80080c0: d3e6 bcc.n 8008090 + 8007f3c: 6a3b ldr r3, [r7, #32] + 8007f3e: 3301 adds r3, #1 + 8007f40: 623b str r3, [r7, #32] + 8007f42: 6a3a ldr r2, [r7, #32] + 8007f44: 697b ldr r3, [r7, #20] + 8007f46: 429a cmp r2, r3 + 8007f48: d3e6 bcc.n 8007f18 } /* When Number of data is not word aligned, read the remaining byte */ if (remaining_bytes != 0U) - 80080c2: 8bfb ldrh r3, [r7, #30] - 80080c4: 2b00 cmp r3, #0 - 80080c6: d01e beq.n 8008106 + 8007f4a: 8bfb ldrh r3, [r7, #30] + 8007f4c: 2b00 cmp r3, #0 + 8007f4e: d01e beq.n 8007f8e { i = 0U; - 80080c8: 2300 movs r3, #0 - 80080ca: 623b str r3, [r7, #32] + 8007f50: 2300 movs r3, #0 + 8007f52: 623b str r3, [r7, #32] __UNALIGNED_UINT32_WRITE(&pData, USBx_DFIFO(0U)); - 80080cc: 69bb ldr r3, [r7, #24] - 80080ce: f503 5380 add.w r3, r3, #4096 @ 0x1000 - 80080d2: 461a mov r2, r3 - 80080d4: f107 0310 add.w r3, r7, #16 - 80080d8: 6812 ldr r2, [r2, #0] - 80080da: 601a str r2, [r3, #0] + 8007f54: 69bb ldr r3, [r7, #24] + 8007f56: f503 5380 add.w r3, r3, #4096 @ 0x1000 + 8007f5a: 461a mov r2, r3 + 8007f5c: f107 0310 add.w r3, r7, #16 + 8007f60: 6812 ldr r2, [r2, #0] + 8007f62: 601a str r2, [r3, #0] do { *(uint8_t *)pDest = (uint8_t)(pData >> (8U * (uint8_t)(i))); - 80080dc: 693a ldr r2, [r7, #16] - 80080de: 6a3b ldr r3, [r7, #32] - 80080e0: b2db uxtb r3, r3 - 80080e2: 00db lsls r3, r3, #3 - 80080e4: fa22 f303 lsr.w r3, r2, r3 - 80080e8: b2da uxtb r2, r3 - 80080ea: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080ec: 701a strb r2, [r3, #0] + 8007f64: 693a ldr r2, [r7, #16] + 8007f66: 6a3b ldr r3, [r7, #32] + 8007f68: b2db uxtb r3, r3 + 8007f6a: 00db lsls r3, r3, #3 + 8007f6c: fa22 f303 lsr.w r3, r2, r3 + 8007f70: b2da uxtb r2, r3 + 8007f72: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f74: 701a strb r2, [r3, #0] i++; - 80080ee: 6a3b ldr r3, [r7, #32] - 80080f0: 3301 adds r3, #1 - 80080f2: 623b str r3, [r7, #32] + 8007f76: 6a3b ldr r3, [r7, #32] + 8007f78: 3301 adds r3, #1 + 8007f7a: 623b str r3, [r7, #32] pDest++; - 80080f4: 6a7b ldr r3, [r7, #36] @ 0x24 - 80080f6: 3301 adds r3, #1 - 80080f8: 627b str r3, [r7, #36] @ 0x24 + 8007f7c: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f7e: 3301 adds r3, #1 + 8007f80: 627b str r3, [r7, #36] @ 0x24 remaining_bytes--; - 80080fa: 8bfb ldrh r3, [r7, #30] - 80080fc: 3b01 subs r3, #1 - 80080fe: 83fb strh r3, [r7, #30] + 8007f82: 8bfb ldrh r3, [r7, #30] + 8007f84: 3b01 subs r3, #1 + 8007f86: 83fb strh r3, [r7, #30] } while (remaining_bytes != 0U); - 8008100: 8bfb ldrh r3, [r7, #30] - 8008102: 2b00 cmp r3, #0 - 8008104: d1ea bne.n 80080dc + 8007f88: 8bfb ldrh r3, [r7, #30] + 8007f8a: 2b00 cmp r3, #0 + 8007f8c: d1ea bne.n 8007f64 } return ((void *)pDest); - 8008106: 6a7b ldr r3, [r7, #36] @ 0x24 + 8007f8e: 6a7b ldr r3, [r7, #36] @ 0x24 } - 8008108: 4618 mov r0, r3 - 800810a: 372c adds r7, #44 @ 0x2c - 800810c: 46bd mov sp, r7 - 800810e: f85d 7b04 ldr.w r7, [sp], #4 - 8008112: 4770 bx lr + 8007f90: 4618 mov r0, r3 + 8007f92: 372c adds r7, #44 @ 0x2c + 8007f94: 46bd mov sp, r7 + 8007f96: f85d 7b04 ldr.w r7, [sp], #4 + 8007f9a: 4770 bx lr -08008114 : +08007f9c : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPSetStall(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 8008114: b480 push {r7} - 8008116: b085 sub sp, #20 - 8008118: af00 add r7, sp, #0 - 800811a: 6078 str r0, [r7, #4] - 800811c: 6039 str r1, [r7, #0] + 8007f9c: b480 push {r7} + 8007f9e: b085 sub sp, #20 + 8007fa0: af00 add r7, sp, #0 + 8007fa2: 6078 str r0, [r7, #4] + 8007fa4: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 800811e: 687b ldr r3, [r7, #4] - 8008120: 60fb str r3, [r7, #12] + 8007fa6: 687b ldr r3, [r7, #4] + 8007fa8: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 8008122: 683b ldr r3, [r7, #0] - 8008124: 781b ldrb r3, [r3, #0] - 8008126: 60bb str r3, [r7, #8] + 8007faa: 683b ldr r3, [r7, #0] + 8007fac: 781b ldrb r3, [r3, #0] + 8007fae: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 8008128: 683b ldr r3, [r7, #0] - 800812a: 785b ldrb r3, [r3, #1] - 800812c: 2b01 cmp r3, #1 - 800812e: d12c bne.n 800818a + 8007fb0: 683b ldr r3, [r7, #0] + 8007fb2: 785b ldrb r3, [r3, #1] + 8007fb4: 2b01 cmp r3, #1 + 8007fb6: d12c bne.n 8008012 { if (((USBx_INEP(epnum)->DIEPCTL & USB_OTG_DIEPCTL_EPENA) == 0U) && (epnum != 0U)) - 8008130: 68bb ldr r3, [r7, #8] - 8008132: 015a lsls r2, r3, #5 - 8008134: 68fb ldr r3, [r7, #12] - 8008136: 4413 add r3, r2 - 8008138: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800813c: 681b ldr r3, [r3, #0] - 800813e: 2b00 cmp r3, #0 - 8008140: db12 blt.n 8008168 - 8008142: 68bb ldr r3, [r7, #8] - 8008144: 2b00 cmp r3, #0 - 8008146: d00f beq.n 8008168 + 8007fb8: 68bb ldr r3, [r7, #8] + 8007fba: 015a lsls r2, r3, #5 + 8007fbc: 68fb ldr r3, [r7, #12] + 8007fbe: 4413 add r3, r2 + 8007fc0: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007fc4: 681b ldr r3, [r3, #0] + 8007fc6: 2b00 cmp r3, #0 + 8007fc8: db12 blt.n 8007ff0 + 8007fca: 68bb ldr r3, [r7, #8] + 8007fcc: 2b00 cmp r3, #0 + 8007fce: d00f beq.n 8007ff0 { USBx_INEP(epnum)->DIEPCTL &= ~(USB_OTG_DIEPCTL_EPDIS); - 8008148: 68bb ldr r3, [r7, #8] - 800814a: 015a lsls r2, r3, #5 - 800814c: 68fb ldr r3, [r7, #12] - 800814e: 4413 add r3, r2 - 8008150: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008154: 681b ldr r3, [r3, #0] - 8008156: 68ba ldr r2, [r7, #8] - 8008158: 0151 lsls r1, r2, #5 - 800815a: 68fa ldr r2, [r7, #12] - 800815c: 440a add r2, r1 - 800815e: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8008162: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 - 8008166: 6013 str r3, [r2, #0] + 8007fd0: 68bb ldr r3, [r7, #8] + 8007fd2: 015a lsls r2, r3, #5 + 8007fd4: 68fb ldr r3, [r7, #12] + 8007fd6: 4413 add r3, r2 + 8007fd8: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007fdc: 681b ldr r3, [r3, #0] + 8007fde: 68ba ldr r2, [r7, #8] + 8007fe0: 0151 lsls r1, r2, #5 + 8007fe2: 68fa ldr r2, [r7, #12] + 8007fe4: 440a add r2, r1 + 8007fe6: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8007fea: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 + 8007fee: 6013 str r3, [r2, #0] } USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_STALL; - 8008168: 68bb ldr r3, [r7, #8] - 800816a: 015a lsls r2, r3, #5 - 800816c: 68fb ldr r3, [r7, #12] - 800816e: 4413 add r3, r2 - 8008170: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008174: 681b ldr r3, [r3, #0] - 8008176: 68ba ldr r2, [r7, #8] - 8008178: 0151 lsls r1, r2, #5 - 800817a: 68fa ldr r2, [r7, #12] - 800817c: 440a add r2, r1 - 800817e: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8008182: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 - 8008186: 6013 str r3, [r2, #0] - 8008188: e02b b.n 80081e2 + 8007ff0: 68bb ldr r3, [r7, #8] + 8007ff2: 015a lsls r2, r3, #5 + 8007ff4: 68fb ldr r3, [r7, #12] + 8007ff6: 4413 add r3, r2 + 8007ff8: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8007ffc: 681b ldr r3, [r3, #0] + 8007ffe: 68ba ldr r2, [r7, #8] + 8008000: 0151 lsls r1, r2, #5 + 8008002: 68fa ldr r2, [r7, #12] + 8008004: 440a add r2, r1 + 8008006: f502 6210 add.w r2, r2, #2304 @ 0x900 + 800800a: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 + 800800e: 6013 str r3, [r2, #0] + 8008010: e02b b.n 800806a } else { if (((USBx_OUTEP(epnum)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == 0U) && (epnum != 0U)) - 800818a: 68bb ldr r3, [r7, #8] - 800818c: 015a lsls r2, r3, #5 - 800818e: 68fb ldr r3, [r7, #12] - 8008190: 4413 add r3, r2 - 8008192: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008196: 681b ldr r3, [r3, #0] - 8008198: 2b00 cmp r3, #0 - 800819a: db12 blt.n 80081c2 - 800819c: 68bb ldr r3, [r7, #8] - 800819e: 2b00 cmp r3, #0 - 80081a0: d00f beq.n 80081c2 + 8008012: 68bb ldr r3, [r7, #8] + 8008014: 015a lsls r2, r3, #5 + 8008016: 68fb ldr r3, [r7, #12] + 8008018: 4413 add r3, r2 + 800801a: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800801e: 681b ldr r3, [r3, #0] + 8008020: 2b00 cmp r3, #0 + 8008022: db12 blt.n 800804a + 8008024: 68bb ldr r3, [r7, #8] + 8008026: 2b00 cmp r3, #0 + 8008028: d00f beq.n 800804a { USBx_OUTEP(epnum)->DOEPCTL &= ~(USB_OTG_DOEPCTL_EPDIS); - 80081a2: 68bb ldr r3, [r7, #8] - 80081a4: 015a lsls r2, r3, #5 - 80081a6: 68fb ldr r3, [r7, #12] - 80081a8: 4413 add r3, r2 - 80081aa: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80081ae: 681b ldr r3, [r3, #0] - 80081b0: 68ba ldr r2, [r7, #8] - 80081b2: 0151 lsls r1, r2, #5 - 80081b4: 68fa ldr r2, [r7, #12] - 80081b6: 440a add r2, r1 - 80081b8: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80081bc: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 - 80081c0: 6013 str r3, [r2, #0] + 800802a: 68bb ldr r3, [r7, #8] + 800802c: 015a lsls r2, r3, #5 + 800802e: 68fb ldr r3, [r7, #12] + 8008030: 4413 add r3, r2 + 8008032: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008036: 681b ldr r3, [r3, #0] + 8008038: 68ba ldr r2, [r7, #8] + 800803a: 0151 lsls r1, r2, #5 + 800803c: 68fa ldr r2, [r7, #12] + 800803e: 440a add r2, r1 + 8008040: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008044: f023 4380 bic.w r3, r3, #1073741824 @ 0x40000000 + 8008048: 6013 str r3, [r2, #0] } USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_STALL; - 80081c2: 68bb ldr r3, [r7, #8] - 80081c4: 015a lsls r2, r3, #5 - 80081c6: 68fb ldr r3, [r7, #12] - 80081c8: 4413 add r3, r2 - 80081ca: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80081ce: 681b ldr r3, [r3, #0] - 80081d0: 68ba ldr r2, [r7, #8] - 80081d2: 0151 lsls r1, r2, #5 - 80081d4: 68fa ldr r2, [r7, #12] - 80081d6: 440a add r2, r1 - 80081d8: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80081dc: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 - 80081e0: 6013 str r3, [r2, #0] + 800804a: 68bb ldr r3, [r7, #8] + 800804c: 015a lsls r2, r3, #5 + 800804e: 68fb ldr r3, [r7, #12] + 8008050: 4413 add r3, r2 + 8008052: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008056: 681b ldr r3, [r3, #0] + 8008058: 68ba ldr r2, [r7, #8] + 800805a: 0151 lsls r1, r2, #5 + 800805c: 68fa ldr r2, [r7, #12] + 800805e: 440a add r2, r1 + 8008060: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008064: f443 1300 orr.w r3, r3, #2097152 @ 0x200000 + 8008068: 6013 str r3, [r2, #0] } return HAL_OK; - 80081e2: 2300 movs r3, #0 + 800806a: 2300 movs r3, #0 } - 80081e4: 4618 mov r0, r3 - 80081e6: 3714 adds r7, #20 - 80081e8: 46bd mov sp, r7 - 80081ea: f85d 7b04 ldr.w r7, [sp], #4 - 80081ee: 4770 bx lr + 800806c: 4618 mov r0, r3 + 800806e: 3714 adds r7, #20 + 8008070: 46bd mov sp, r7 + 8008072: f85d 7b04 ldr.w r7, [sp], #4 + 8008076: 4770 bx lr -080081f0 : +08008078 : * @param USBx Selected device * @param ep pointer to endpoint structure * @retval HAL status */ HAL_StatusTypeDef USB_EPClearStall(const USB_OTG_GlobalTypeDef *USBx, const USB_OTG_EPTypeDef *ep) { - 80081f0: b480 push {r7} - 80081f2: b085 sub sp, #20 - 80081f4: af00 add r7, sp, #0 - 80081f6: 6078 str r0, [r7, #4] - 80081f8: 6039 str r1, [r7, #0] + 8008078: b480 push {r7} + 800807a: b085 sub sp, #20 + 800807c: af00 add r7, sp, #0 + 800807e: 6078 str r0, [r7, #4] + 8008080: 6039 str r1, [r7, #0] uint32_t USBx_BASE = (uint32_t)USBx; - 80081fa: 687b ldr r3, [r7, #4] - 80081fc: 60fb str r3, [r7, #12] + 8008082: 687b ldr r3, [r7, #4] + 8008084: 60fb str r3, [r7, #12] uint32_t epnum = (uint32_t)ep->num; - 80081fe: 683b ldr r3, [r7, #0] - 8008200: 781b ldrb r3, [r3, #0] - 8008202: 60bb str r3, [r7, #8] + 8008086: 683b ldr r3, [r7, #0] + 8008088: 781b ldrb r3, [r3, #0] + 800808a: 60bb str r3, [r7, #8] if (ep->is_in == 1U) - 8008204: 683b ldr r3, [r7, #0] - 8008206: 785b ldrb r3, [r3, #1] - 8008208: 2b01 cmp r3, #1 - 800820a: d128 bne.n 800825e + 800808c: 683b ldr r3, [r7, #0] + 800808e: 785b ldrb r3, [r3, #1] + 8008090: 2b01 cmp r3, #1 + 8008092: d128 bne.n 80080e6 { USBx_INEP(epnum)->DIEPCTL &= ~USB_OTG_DIEPCTL_STALL; - 800820c: 68bb ldr r3, [r7, #8] - 800820e: 015a lsls r2, r3, #5 - 8008210: 68fb ldr r3, [r7, #12] - 8008212: 4413 add r3, r2 - 8008214: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008218: 681b ldr r3, [r3, #0] - 800821a: 68ba ldr r2, [r7, #8] - 800821c: 0151 lsls r1, r2, #5 - 800821e: 68fa ldr r2, [r7, #12] - 8008220: 440a add r2, r1 - 8008222: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8008226: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 800822a: 6013 str r3, [r2, #0] + 8008094: 68bb ldr r3, [r7, #8] + 8008096: 015a lsls r2, r3, #5 + 8008098: 68fb ldr r3, [r7, #12] + 800809a: 4413 add r3, r2 + 800809c: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80080a0: 681b ldr r3, [r3, #0] + 80080a2: 68ba ldr r2, [r7, #8] + 80080a4: 0151 lsls r1, r2, #5 + 80080a6: 68fa ldr r2, [r7, #12] + 80080a8: 440a add r2, r1 + 80080aa: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80080ae: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 80080b2: 6013 str r3, [r2, #0] if ((ep->type == EP_TYPE_INTR) || (ep->type == EP_TYPE_BULK)) - 800822c: 683b ldr r3, [r7, #0] - 800822e: 791b ldrb r3, [r3, #4] - 8008230: 2b03 cmp r3, #3 - 8008232: d003 beq.n 800823c - 8008234: 683b ldr r3, [r7, #0] - 8008236: 791b ldrb r3, [r3, #4] - 8008238: 2b02 cmp r3, #2 - 800823a: d138 bne.n 80082ae + 80080b4: 683b ldr r3, [r7, #0] + 80080b6: 791b ldrb r3, [r3, #4] + 80080b8: 2b03 cmp r3, #3 + 80080ba: d003 beq.n 80080c4 + 80080bc: 683b ldr r3, [r7, #0] + 80080be: 791b ldrb r3, [r3, #4] + 80080c0: 2b02 cmp r3, #2 + 80080c2: d138 bne.n 8008136 { USBx_INEP(epnum)->DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM; /* DATA0 */ - 800823c: 68bb ldr r3, [r7, #8] - 800823e: 015a lsls r2, r3, #5 - 8008240: 68fb ldr r3, [r7, #12] - 8008242: 4413 add r3, r2 - 8008244: f503 6310 add.w r3, r3, #2304 @ 0x900 - 8008248: 681b ldr r3, [r3, #0] - 800824a: 68ba ldr r2, [r7, #8] - 800824c: 0151 lsls r1, r2, #5 - 800824e: 68fa ldr r2, [r7, #12] - 8008250: 440a add r2, r1 - 8008252: f502 6210 add.w r2, r2, #2304 @ 0x900 - 8008256: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 800825a: 6013 str r3, [r2, #0] - 800825c: e027 b.n 80082ae + 80080c4: 68bb ldr r3, [r7, #8] + 80080c6: 015a lsls r2, r3, #5 + 80080c8: 68fb ldr r3, [r7, #12] + 80080ca: 4413 add r3, r2 + 80080cc: f503 6310 add.w r3, r3, #2304 @ 0x900 + 80080d0: 681b ldr r3, [r3, #0] + 80080d2: 68ba ldr r2, [r7, #8] + 80080d4: 0151 lsls r1, r2, #5 + 80080d6: 68fa ldr r2, [r7, #12] + 80080d8: 440a add r2, r1 + 80080da: f502 6210 add.w r2, r2, #2304 @ 0x900 + 80080de: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 80080e2: 6013 str r3, [r2, #0] + 80080e4: e027 b.n 8008136 } } else { USBx_OUTEP(epnum)->DOEPCTL &= ~USB_OTG_DOEPCTL_STALL; - 800825e: 68bb ldr r3, [r7, #8] - 8008260: 015a lsls r2, r3, #5 - 8008262: 68fb ldr r3, [r7, #12] - 8008264: 4413 add r3, r2 - 8008266: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800826a: 681b ldr r3, [r3, #0] - 800826c: 68ba ldr r2, [r7, #8] - 800826e: 0151 lsls r1, r2, #5 - 8008270: 68fa ldr r2, [r7, #12] - 8008272: 440a add r2, r1 - 8008274: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008278: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 - 800827c: 6013 str r3, [r2, #0] + 80080e6: 68bb ldr r3, [r7, #8] + 80080e8: 015a lsls r2, r3, #5 + 80080ea: 68fb ldr r3, [r7, #12] + 80080ec: 4413 add r3, r2 + 80080ee: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80080f2: 681b ldr r3, [r3, #0] + 80080f4: 68ba ldr r2, [r7, #8] + 80080f6: 0151 lsls r1, r2, #5 + 80080f8: 68fa ldr r2, [r7, #12] + 80080fa: 440a add r2, r1 + 80080fc: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008100: f423 1300 bic.w r3, r3, #2097152 @ 0x200000 + 8008104: 6013 str r3, [r2, #0] if ((ep->type == EP_TYPE_INTR) || (ep->type == EP_TYPE_BULK)) - 800827e: 683b ldr r3, [r7, #0] - 8008280: 791b ldrb r3, [r3, #4] - 8008282: 2b03 cmp r3, #3 - 8008284: d003 beq.n 800828e - 8008286: 683b ldr r3, [r7, #0] - 8008288: 791b ldrb r3, [r3, #4] - 800828a: 2b02 cmp r3, #2 - 800828c: d10f bne.n 80082ae + 8008106: 683b ldr r3, [r7, #0] + 8008108: 791b ldrb r3, [r3, #4] + 800810a: 2b03 cmp r3, #3 + 800810c: d003 beq.n 8008116 + 800810e: 683b ldr r3, [r7, #0] + 8008110: 791b ldrb r3, [r3, #4] + 8008112: 2b02 cmp r3, #2 + 8008114: d10f bne.n 8008136 { USBx_OUTEP(epnum)->DOEPCTL |= USB_OTG_DOEPCTL_SD0PID_SEVNFRM; /* DATA0 */ - 800828e: 68bb ldr r3, [r7, #8] - 8008290: 015a lsls r2, r3, #5 - 8008292: 68fb ldr r3, [r7, #12] - 8008294: 4413 add r3, r2 - 8008296: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800829a: 681b ldr r3, [r3, #0] - 800829c: 68ba ldr r2, [r7, #8] - 800829e: 0151 lsls r1, r2, #5 - 80082a0: 68fa ldr r2, [r7, #12] - 80082a2: 440a add r2, r1 - 80082a4: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80082a8: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 - 80082ac: 6013 str r3, [r2, #0] + 8008116: 68bb ldr r3, [r7, #8] + 8008118: 015a lsls r2, r3, #5 + 800811a: 68fb ldr r3, [r7, #12] + 800811c: 4413 add r3, r2 + 800811e: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008122: 681b ldr r3, [r3, #0] + 8008124: 68ba ldr r2, [r7, #8] + 8008126: 0151 lsls r1, r2, #5 + 8008128: 68fa ldr r2, [r7, #12] + 800812a: 440a add r2, r1 + 800812c: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008130: f043 5380 orr.w r3, r3, #268435456 @ 0x10000000 + 8008134: 6013 str r3, [r2, #0] } } return HAL_OK; - 80082ae: 2300 movs r3, #0 + 8008136: 2300 movs r3, #0 } - 80082b0: 4618 mov r0, r3 - 80082b2: 3714 adds r7, #20 - 80082b4: 46bd mov sp, r7 - 80082b6: f85d 7b04 ldr.w r7, [sp], #4 - 80082ba: 4770 bx lr + 8008138: 4618 mov r0, r3 + 800813a: 3714 adds r7, #20 + 800813c: 46bd mov sp, r7 + 800813e: f85d 7b04 ldr.w r7, [sp], #4 + 8008142: 4770 bx lr -080082bc : +08008144 : * @param address new device address to be assigned * This parameter can be a value from 0 to 255 * @retval HAL status */ HAL_StatusTypeDef USB_SetDevAddress(const USB_OTG_GlobalTypeDef *USBx, uint8_t address) { - 80082bc: b480 push {r7} - 80082be: b085 sub sp, #20 - 80082c0: af00 add r7, sp, #0 - 80082c2: 6078 str r0, [r7, #4] - 80082c4: 460b mov r3, r1 - 80082c6: 70fb strb r3, [r7, #3] + 8008144: b480 push {r7} + 8008146: b085 sub sp, #20 + 8008148: af00 add r7, sp, #0 + 800814a: 6078 str r0, [r7, #4] + 800814c: 460b mov r3, r1 + 800814e: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 80082c8: 687b ldr r3, [r7, #4] - 80082ca: 60fb str r3, [r7, #12] + 8008150: 687b ldr r3, [r7, #4] + 8008152: 60fb str r3, [r7, #12] USBx_DEVICE->DCFG &= ~(USB_OTG_DCFG_DAD); - 80082cc: 68fb ldr r3, [r7, #12] - 80082ce: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80082d2: 681b ldr r3, [r3, #0] - 80082d4: 68fa ldr r2, [r7, #12] - 80082d6: f502 6200 add.w r2, r2, #2048 @ 0x800 - 80082da: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 - 80082de: 6013 str r3, [r2, #0] + 8008154: 68fb ldr r3, [r7, #12] + 8008156: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800815a: 681b ldr r3, [r3, #0] + 800815c: 68fa ldr r2, [r7, #12] + 800815e: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8008162: f423 63fe bic.w r3, r3, #2032 @ 0x7f0 + 8008166: 6013 str r3, [r2, #0] USBx_DEVICE->DCFG |= ((uint32_t)address << 4) & USB_OTG_DCFG_DAD; - 80082e0: 68fb ldr r3, [r7, #12] - 80082e2: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80082e6: 681a ldr r2, [r3, #0] - 80082e8: 78fb ldrb r3, [r7, #3] - 80082ea: 011b lsls r3, r3, #4 - 80082ec: f403 63fe and.w r3, r3, #2032 @ 0x7f0 - 80082f0: 68f9 ldr r1, [r7, #12] - 80082f2: f501 6100 add.w r1, r1, #2048 @ 0x800 - 80082f6: 4313 orrs r3, r2 - 80082f8: 600b str r3, [r1, #0] + 8008168: 68fb ldr r3, [r7, #12] + 800816a: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800816e: 681a ldr r2, [r3, #0] + 8008170: 78fb ldrb r3, [r7, #3] + 8008172: 011b lsls r3, r3, #4 + 8008174: f403 63fe and.w r3, r3, #2032 @ 0x7f0 + 8008178: 68f9 ldr r1, [r7, #12] + 800817a: f501 6100 add.w r1, r1, #2048 @ 0x800 + 800817e: 4313 orrs r3, r2 + 8008180: 600b str r3, [r1, #0] return HAL_OK; - 80082fa: 2300 movs r3, #0 + 8008182: 2300 movs r3, #0 } - 80082fc: 4618 mov r0, r3 - 80082fe: 3714 adds r7, #20 - 8008300: 46bd mov sp, r7 - 8008302: f85d 7b04 ldr.w r7, [sp], #4 - 8008306: 4770 bx lr + 8008184: 4618 mov r0, r3 + 8008186: 3714 adds r7, #20 + 8008188: 46bd mov sp, r7 + 800818a: f85d 7b04 ldr.w r7, [sp], #4 + 800818e: 4770 bx lr -08008308 : +08008190 : * @brief USB_DevConnect : Connect the USB device by enabling Rpu * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DevConnect(const USB_OTG_GlobalTypeDef *USBx) { - 8008308: b480 push {r7} - 800830a: b085 sub sp, #20 - 800830c: af00 add r7, sp, #0 - 800830e: 6078 str r0, [r7, #4] + 8008190: b480 push {r7} + 8008192: b085 sub sp, #20 + 8008194: af00 add r7, sp, #0 + 8008196: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8008310: 687b ldr r3, [r7, #4] - 8008312: 60fb str r3, [r7, #12] + 8008198: 687b ldr r3, [r7, #4] + 800819a: 60fb str r3, [r7, #12] /* In case phy is stopped, ensure to ungate and restore the phy CLK */ USBx_PCGCCTL &= ~(USB_OTG_PCGCCTL_STOPCLK | USB_OTG_PCGCCTL_GATECLK); - 8008314: 68fb ldr r3, [r7, #12] - 8008316: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800831a: 681b ldr r3, [r3, #0] - 800831c: 68fa ldr r2, [r7, #12] - 800831e: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 8008322: f023 0303 bic.w r3, r3, #3 - 8008326: 6013 str r3, [r2, #0] + 800819c: 68fb ldr r3, [r7, #12] + 800819e: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80081a2: 681b ldr r3, [r3, #0] + 80081a4: 68fa ldr r2, [r7, #12] + 80081a6: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 80081aa: f023 0303 bic.w r3, r3, #3 + 80081ae: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL &= ~USB_OTG_DCTL_SDIS; - 8008328: 68fb ldr r3, [r7, #12] - 800832a: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800832e: 685b ldr r3, [r3, #4] - 8008330: 68fa ldr r2, [r7, #12] - 8008332: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8008336: f023 0302 bic.w r3, r3, #2 - 800833a: 6053 str r3, [r2, #4] + 80081b0: 68fb ldr r3, [r7, #12] + 80081b2: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80081b6: 685b ldr r3, [r3, #4] + 80081b8: 68fa ldr r2, [r7, #12] + 80081ba: f502 6200 add.w r2, r2, #2048 @ 0x800 + 80081be: f023 0302 bic.w r3, r3, #2 + 80081c2: 6053 str r3, [r2, #4] return HAL_OK; - 800833c: 2300 movs r3, #0 + 80081c4: 2300 movs r3, #0 } - 800833e: 4618 mov r0, r3 - 8008340: 3714 adds r7, #20 - 8008342: 46bd mov sp, r7 - 8008344: f85d 7b04 ldr.w r7, [sp], #4 - 8008348: 4770 bx lr + 80081c6: 4618 mov r0, r3 + 80081c8: 3714 adds r7, #20 + 80081ca: 46bd mov sp, r7 + 80081cc: f85d 7b04 ldr.w r7, [sp], #4 + 80081d0: 4770 bx lr -0800834a : +080081d2 : * @brief USB_DevDisconnect : Disconnect the USB device by disabling Rpu * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_DevDisconnect(const USB_OTG_GlobalTypeDef *USBx) { - 800834a: b480 push {r7} - 800834c: b085 sub sp, #20 - 800834e: af00 add r7, sp, #0 - 8008350: 6078 str r0, [r7, #4] + 80081d2: b480 push {r7} + 80081d4: b085 sub sp, #20 + 80081d6: af00 add r7, sp, #0 + 80081d8: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 8008352: 687b ldr r3, [r7, #4] - 8008354: 60fb str r3, [r7, #12] + 80081da: 687b ldr r3, [r7, #4] + 80081dc: 60fb str r3, [r7, #12] /* In case phy is stopped, ensure to ungate and restore the phy CLK */ USBx_PCGCCTL &= ~(USB_OTG_PCGCCTL_STOPCLK | USB_OTG_PCGCCTL_GATECLK); - 8008356: 68fb ldr r3, [r7, #12] - 8008358: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800835c: 681b ldr r3, [r3, #0] - 800835e: 68fa ldr r2, [r7, #12] - 8008360: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 8008364: f023 0303 bic.w r3, r3, #3 - 8008368: 6013 str r3, [r2, #0] + 80081de: 68fb ldr r3, [r7, #12] + 80081e0: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 80081e4: 681b ldr r3, [r3, #0] + 80081e6: 68fa ldr r2, [r7, #12] + 80081e8: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 80081ec: f023 0303 bic.w r3, r3, #3 + 80081f0: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL |= USB_OTG_DCTL_SDIS; - 800836a: 68fb ldr r3, [r7, #12] - 800836c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008370: 685b ldr r3, [r3, #4] - 8008372: 68fa ldr r2, [r7, #12] - 8008374: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8008378: f043 0302 orr.w r3, r3, #2 - 800837c: 6053 str r3, [r2, #4] + 80081f2: 68fb ldr r3, [r7, #12] + 80081f4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80081f8: 685b ldr r3, [r3, #4] + 80081fa: 68fa ldr r2, [r7, #12] + 80081fc: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8008200: f043 0302 orr.w r3, r3, #2 + 8008204: 6053 str r3, [r2, #4] return HAL_OK; - 800837e: 2300 movs r3, #0 + 8008206: 2300 movs r3, #0 } - 8008380: 4618 mov r0, r3 - 8008382: 3714 adds r7, #20 - 8008384: 46bd mov sp, r7 - 8008386: f85d 7b04 ldr.w r7, [sp], #4 - 800838a: 4770 bx lr + 8008208: 4618 mov r0, r3 + 800820a: 3714 adds r7, #20 + 800820c: 46bd mov sp, r7 + 800820e: f85d 7b04 ldr.w r7, [sp], #4 + 8008212: 4770 bx lr -0800838c : +08008214 : * @brief USB_ReadInterrupts: return the global USB interrupt status * @param USBx Selected device * @retval USB Global Interrupt status */ uint32_t USB_ReadInterrupts(USB_OTG_GlobalTypeDef const *USBx) { - 800838c: b480 push {r7} - 800838e: b085 sub sp, #20 - 8008390: af00 add r7, sp, #0 - 8008392: 6078 str r0, [r7, #4] + 8008214: b480 push {r7} + 8008216: b085 sub sp, #20 + 8008218: af00 add r7, sp, #0 + 800821a: 6078 str r0, [r7, #4] uint32_t tmpreg; tmpreg = USBx->GINTSTS; - 8008394: 687b ldr r3, [r7, #4] - 8008396: 695b ldr r3, [r3, #20] - 8008398: 60fb str r3, [r7, #12] + 800821c: 687b ldr r3, [r7, #4] + 800821e: 695b ldr r3, [r3, #20] + 8008220: 60fb str r3, [r7, #12] tmpreg &= USBx->GINTMSK; - 800839a: 687b ldr r3, [r7, #4] - 800839c: 699b ldr r3, [r3, #24] - 800839e: 68fa ldr r2, [r7, #12] - 80083a0: 4013 ands r3, r2 - 80083a2: 60fb str r3, [r7, #12] + 8008222: 687b ldr r3, [r7, #4] + 8008224: 699b ldr r3, [r3, #24] + 8008226: 68fa ldr r2, [r7, #12] + 8008228: 4013 ands r3, r2 + 800822a: 60fb str r3, [r7, #12] return tmpreg; - 80083a4: 68fb ldr r3, [r7, #12] + 800822c: 68fb ldr r3, [r7, #12] } - 80083a6: 4618 mov r0, r3 - 80083a8: 3714 adds r7, #20 - 80083aa: 46bd mov sp, r7 - 80083ac: f85d 7b04 ldr.w r7, [sp], #4 - 80083b0: 4770 bx lr + 800822e: 4618 mov r0, r3 + 8008230: 3714 adds r7, #20 + 8008232: 46bd mov sp, r7 + 8008234: f85d 7b04 ldr.w r7, [sp], #4 + 8008238: 4770 bx lr -080083b2 : +0800823a : * @brief USB_ReadDevAllOutEpInterrupt: return the USB device OUT endpoints interrupt status * @param USBx Selected device * @retval USB Device OUT EP interrupt status */ uint32_t USB_ReadDevAllOutEpInterrupt(const USB_OTG_GlobalTypeDef *USBx) { - 80083b2: b480 push {r7} - 80083b4: b085 sub sp, #20 - 80083b6: af00 add r7, sp, #0 - 80083b8: 6078 str r0, [r7, #4] + 800823a: b480 push {r7} + 800823c: b085 sub sp, #20 + 800823e: af00 add r7, sp, #0 + 8008240: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 80083ba: 687b ldr r3, [r7, #4] - 80083bc: 60fb str r3, [r7, #12] + 8008242: 687b ldr r3, [r7, #4] + 8008244: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_DEVICE->DAINT; - 80083be: 68fb ldr r3, [r7, #12] - 80083c0: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80083c4: 699b ldr r3, [r3, #24] - 80083c6: 60bb str r3, [r7, #8] + 8008246: 68fb ldr r3, [r7, #12] + 8008248: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800824c: 699b ldr r3, [r3, #24] + 800824e: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DAINTMSK; - 80083c8: 68fb ldr r3, [r7, #12] - 80083ca: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80083ce: 69db ldr r3, [r3, #28] - 80083d0: 68ba ldr r2, [r7, #8] - 80083d2: 4013 ands r3, r2 - 80083d4: 60bb str r3, [r7, #8] + 8008250: 68fb ldr r3, [r7, #12] + 8008252: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008256: 69db ldr r3, [r3, #28] + 8008258: 68ba ldr r2, [r7, #8] + 800825a: 4013 ands r3, r2 + 800825c: 60bb str r3, [r7, #8] return ((tmpreg & 0xffff0000U) >> 16); - 80083d6: 68bb ldr r3, [r7, #8] - 80083d8: 0c1b lsrs r3, r3, #16 + 800825e: 68bb ldr r3, [r7, #8] + 8008260: 0c1b lsrs r3, r3, #16 } - 80083da: 4618 mov r0, r3 - 80083dc: 3714 adds r7, #20 - 80083de: 46bd mov sp, r7 - 80083e0: f85d 7b04 ldr.w r7, [sp], #4 - 80083e4: 4770 bx lr + 8008262: 4618 mov r0, r3 + 8008264: 3714 adds r7, #20 + 8008266: 46bd mov sp, r7 + 8008268: f85d 7b04 ldr.w r7, [sp], #4 + 800826c: 4770 bx lr -080083e6 : +0800826e : * @brief USB_ReadDevAllInEpInterrupt: return the USB device IN endpoints interrupt status * @param USBx Selected device * @retval USB Device IN EP interrupt status */ uint32_t USB_ReadDevAllInEpInterrupt(const USB_OTG_GlobalTypeDef *USBx) { - 80083e6: b480 push {r7} - 80083e8: b085 sub sp, #20 - 80083ea: af00 add r7, sp, #0 - 80083ec: 6078 str r0, [r7, #4] + 800826e: b480 push {r7} + 8008270: b085 sub sp, #20 + 8008272: af00 add r7, sp, #0 + 8008274: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 80083ee: 687b ldr r3, [r7, #4] - 80083f0: 60fb str r3, [r7, #12] + 8008276: 687b ldr r3, [r7, #4] + 8008278: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_DEVICE->DAINT; - 80083f2: 68fb ldr r3, [r7, #12] - 80083f4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80083f8: 699b ldr r3, [r3, #24] - 80083fa: 60bb str r3, [r7, #8] + 800827a: 68fb ldr r3, [r7, #12] + 800827c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008280: 699b ldr r3, [r3, #24] + 8008282: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DAINTMSK; - 80083fc: 68fb ldr r3, [r7, #12] - 80083fe: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008402: 69db ldr r3, [r3, #28] - 8008404: 68ba ldr r2, [r7, #8] - 8008406: 4013 ands r3, r2 - 8008408: 60bb str r3, [r7, #8] + 8008284: 68fb ldr r3, [r7, #12] + 8008286: f503 6300 add.w r3, r3, #2048 @ 0x800 + 800828a: 69db ldr r3, [r3, #28] + 800828c: 68ba ldr r2, [r7, #8] + 800828e: 4013 ands r3, r2 + 8008290: 60bb str r3, [r7, #8] return ((tmpreg & 0xFFFFU)); - 800840a: 68bb ldr r3, [r7, #8] - 800840c: b29b uxth r3, r3 + 8008292: 68bb ldr r3, [r7, #8] + 8008294: b29b uxth r3, r3 } - 800840e: 4618 mov r0, r3 - 8008410: 3714 adds r7, #20 - 8008412: 46bd mov sp, r7 - 8008414: f85d 7b04 ldr.w r7, [sp], #4 - 8008418: 4770 bx lr + 8008296: 4618 mov r0, r3 + 8008298: 3714 adds r7, #20 + 800829a: 46bd mov sp, r7 + 800829c: f85d 7b04 ldr.w r7, [sp], #4 + 80082a0: 4770 bx lr -0800841a : +080082a2 : * @param epnum endpoint number * This parameter can be a value from 0 to 15 * @retval Device OUT EP Interrupt register */ uint32_t USB_ReadDevOutEPInterrupt(const USB_OTG_GlobalTypeDef *USBx, uint8_t epnum) { - 800841a: b480 push {r7} - 800841c: b085 sub sp, #20 - 800841e: af00 add r7, sp, #0 - 8008420: 6078 str r0, [r7, #4] - 8008422: 460b mov r3, r1 - 8008424: 70fb strb r3, [r7, #3] + 80082a2: b480 push {r7} + 80082a4: b085 sub sp, #20 + 80082a6: af00 add r7, sp, #0 + 80082a8: 6078 str r0, [r7, #4] + 80082aa: 460b mov r3, r1 + 80082ac: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 8008426: 687b ldr r3, [r7, #4] - 8008428: 60fb str r3, [r7, #12] + 80082ae: 687b ldr r3, [r7, #4] + 80082b0: 60fb str r3, [r7, #12] uint32_t tmpreg; tmpreg = USBx_OUTEP((uint32_t)epnum)->DOEPINT; - 800842a: 78fb ldrb r3, [r7, #3] - 800842c: 015a lsls r2, r3, #5 - 800842e: 68fb ldr r3, [r7, #12] - 8008430: 4413 add r3, r2 - 8008432: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008436: 689b ldr r3, [r3, #8] - 8008438: 60bb str r3, [r7, #8] + 80082b2: 78fb ldrb r3, [r7, #3] + 80082b4: 015a lsls r2, r3, #5 + 80082b6: 68fb ldr r3, [r7, #12] + 80082b8: 4413 add r3, r2 + 80082ba: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80082be: 689b ldr r3, [r3, #8] + 80082c0: 60bb str r3, [r7, #8] tmpreg &= USBx_DEVICE->DOEPMSK; - 800843a: 68fb ldr r3, [r7, #12] - 800843c: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008440: 695b ldr r3, [r3, #20] - 8008442: 68ba ldr r2, [r7, #8] - 8008444: 4013 ands r3, r2 - 8008446: 60bb str r3, [r7, #8] + 80082c2: 68fb ldr r3, [r7, #12] + 80082c4: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80082c8: 695b ldr r3, [r3, #20] + 80082ca: 68ba ldr r2, [r7, #8] + 80082cc: 4013 ands r3, r2 + 80082ce: 60bb str r3, [r7, #8] return tmpreg; - 8008448: 68bb ldr r3, [r7, #8] + 80082d0: 68bb ldr r3, [r7, #8] } - 800844a: 4618 mov r0, r3 - 800844c: 3714 adds r7, #20 - 800844e: 46bd mov sp, r7 - 8008450: f85d 7b04 ldr.w r7, [sp], #4 - 8008454: 4770 bx lr + 80082d2: 4618 mov r0, r3 + 80082d4: 3714 adds r7, #20 + 80082d6: 46bd mov sp, r7 + 80082d8: f85d 7b04 ldr.w r7, [sp], #4 + 80082dc: 4770 bx lr -08008456 : +080082de : * @param epnum endpoint number * This parameter can be a value from 0 to 15 * @retval Device IN EP Interrupt register */ uint32_t USB_ReadDevInEPInterrupt(const USB_OTG_GlobalTypeDef *USBx, uint8_t epnum) { - 8008456: b480 push {r7} - 8008458: b087 sub sp, #28 - 800845a: af00 add r7, sp, #0 - 800845c: 6078 str r0, [r7, #4] - 800845e: 460b mov r3, r1 - 8008460: 70fb strb r3, [r7, #3] + 80082de: b480 push {r7} + 80082e0: b087 sub sp, #28 + 80082e2: af00 add r7, sp, #0 + 80082e4: 6078 str r0, [r7, #4] + 80082e6: 460b mov r3, r1 + 80082e8: 70fb strb r3, [r7, #3] uint32_t USBx_BASE = (uint32_t)USBx; - 8008462: 687b ldr r3, [r7, #4] - 8008464: 617b str r3, [r7, #20] + 80082ea: 687b ldr r3, [r7, #4] + 80082ec: 617b str r3, [r7, #20] uint32_t tmpreg; uint32_t msk; uint32_t emp; msk = USBx_DEVICE->DIEPMSK; - 8008466: 697b ldr r3, [r7, #20] - 8008468: f503 6300 add.w r3, r3, #2048 @ 0x800 - 800846c: 691b ldr r3, [r3, #16] - 800846e: 613b str r3, [r7, #16] + 80082ee: 697b ldr r3, [r7, #20] + 80082f0: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80082f4: 691b ldr r3, [r3, #16] + 80082f6: 613b str r3, [r7, #16] emp = USBx_DEVICE->DIEPEMPMSK; - 8008470: 697b ldr r3, [r7, #20] - 8008472: f503 6300 add.w r3, r3, #2048 @ 0x800 - 8008476: 6b5b ldr r3, [r3, #52] @ 0x34 - 8008478: 60fb str r3, [r7, #12] + 80082f8: 697b ldr r3, [r7, #20] + 80082fa: f503 6300 add.w r3, r3, #2048 @ 0x800 + 80082fe: 6b5b ldr r3, [r3, #52] @ 0x34 + 8008300: 60fb str r3, [r7, #12] msk |= ((emp >> (epnum & EP_ADDR_MSK)) & 0x1U) << 7; - 800847a: 78fb ldrb r3, [r7, #3] - 800847c: f003 030f and.w r3, r3, #15 - 8008480: 68fa ldr r2, [r7, #12] - 8008482: fa22 f303 lsr.w r3, r2, r3 - 8008486: 01db lsls r3, r3, #7 - 8008488: b2db uxtb r3, r3 - 800848a: 693a ldr r2, [r7, #16] - 800848c: 4313 orrs r3, r2 - 800848e: 613b str r3, [r7, #16] + 8008302: 78fb ldrb r3, [r7, #3] + 8008304: f003 030f and.w r3, r3, #15 + 8008308: 68fa ldr r2, [r7, #12] + 800830a: fa22 f303 lsr.w r3, r2, r3 + 800830e: 01db lsls r3, r3, #7 + 8008310: b2db uxtb r3, r3 + 8008312: 693a ldr r2, [r7, #16] + 8008314: 4313 orrs r3, r2 + 8008316: 613b str r3, [r7, #16] tmpreg = USBx_INEP((uint32_t)epnum)->DIEPINT & msk; - 8008490: 78fb ldrb r3, [r7, #3] - 8008492: 015a lsls r2, r3, #5 - 8008494: 697b ldr r3, [r7, #20] - 8008496: 4413 add r3, r2 - 8008498: f503 6310 add.w r3, r3, #2304 @ 0x900 - 800849c: 689b ldr r3, [r3, #8] - 800849e: 693a ldr r2, [r7, #16] - 80084a0: 4013 ands r3, r2 - 80084a2: 60bb str r3, [r7, #8] + 8008318: 78fb ldrb r3, [r7, #3] + 800831a: 015a lsls r2, r3, #5 + 800831c: 697b ldr r3, [r7, #20] + 800831e: 4413 add r3, r2 + 8008320: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8008324: 689b ldr r3, [r3, #8] + 8008326: 693a ldr r2, [r7, #16] + 8008328: 4013 ands r3, r2 + 800832a: 60bb str r3, [r7, #8] return tmpreg; - 80084a4: 68bb ldr r3, [r7, #8] + 800832c: 68bb ldr r3, [r7, #8] } - 80084a6: 4618 mov r0, r3 - 80084a8: 371c adds r7, #28 - 80084aa: 46bd mov sp, r7 - 80084ac: f85d 7b04 ldr.w r7, [sp], #4 - 80084b0: 4770 bx lr + 800832e: 4618 mov r0, r3 + 8008330: 371c adds r7, #28 + 8008332: 46bd mov sp, r7 + 8008334: f85d 7b04 ldr.w r7, [sp], #4 + 8008338: 4770 bx lr -080084b2 : +0800833a : * This parameter can be one of these values: * 1 : Host * 0 : Device */ uint32_t USB_GetMode(const USB_OTG_GlobalTypeDef *USBx) { - 80084b2: b480 push {r7} - 80084b4: b083 sub sp, #12 - 80084b6: af00 add r7, sp, #0 - 80084b8: 6078 str r0, [r7, #4] + 800833a: b480 push {r7} + 800833c: b083 sub sp, #12 + 800833e: af00 add r7, sp, #0 + 8008340: 6078 str r0, [r7, #4] return ((USBx->GINTSTS) & 0x1U); - 80084ba: 687b ldr r3, [r7, #4] - 80084bc: 695b ldr r3, [r3, #20] - 80084be: f003 0301 and.w r3, r3, #1 + 8008342: 687b ldr r3, [r7, #4] + 8008344: 695b ldr r3, [r3, #20] + 8008346: f003 0301 and.w r3, r3, #1 } - 80084c2: 4618 mov r0, r3 - 80084c4: 370c adds r7, #12 - 80084c6: 46bd mov sp, r7 - 80084c8: f85d 7b04 ldr.w r7, [sp], #4 - 80084cc: 4770 bx lr + 800834a: 4618 mov r0, r3 + 800834c: 370c adds r7, #12 + 800834e: 46bd mov sp, r7 + 8008350: f85d 7b04 ldr.w r7, [sp], #4 + 8008354: 4770 bx lr -080084ce : +08008356 : * @brief Activate EP0 for Setup transactions * @param USBx Selected device * @retval HAL status */ HAL_StatusTypeDef USB_ActivateSetup(const USB_OTG_GlobalTypeDef *USBx) { - 80084ce: b480 push {r7} - 80084d0: b085 sub sp, #20 - 80084d2: af00 add r7, sp, #0 - 80084d4: 6078 str r0, [r7, #4] + 8008356: b480 push {r7} + 8008358: b085 sub sp, #20 + 800835a: af00 add r7, sp, #0 + 800835c: 6078 str r0, [r7, #4] uint32_t USBx_BASE = (uint32_t)USBx; - 80084d6: 687b ldr r3, [r7, #4] - 80084d8: 60fb str r3, [r7, #12] + 800835e: 687b ldr r3, [r7, #4] + 8008360: 60fb str r3, [r7, #12] /* Set the MPS of the IN EP0 to 64 bytes */ USBx_INEP(0U)->DIEPCTL &= ~USB_OTG_DIEPCTL_MPSIZ; - 80084da: 68fb ldr r3, [r7, #12] - 80084dc: f503 6310 add.w r3, r3, #2304 @ 0x900 - 80084e0: 681b ldr r3, [r3, #0] - 80084e2: 68fa ldr r2, [r7, #12] - 80084e4: f502 6210 add.w r2, r2, #2304 @ 0x900 - 80084e8: f423 63ff bic.w r3, r3, #2040 @ 0x7f8 - 80084ec: f023 0307 bic.w r3, r3, #7 - 80084f0: 6013 str r3, [r2, #0] + 8008362: 68fb ldr r3, [r7, #12] + 8008364: f503 6310 add.w r3, r3, #2304 @ 0x900 + 8008368: 681b ldr r3, [r3, #0] + 800836a: 68fa ldr r2, [r7, #12] + 800836c: f502 6210 add.w r2, r2, #2304 @ 0x900 + 8008370: f423 63ff bic.w r3, r3, #2040 @ 0x7f8 + 8008374: f023 0307 bic.w r3, r3, #7 + 8008378: 6013 str r3, [r2, #0] USBx_DEVICE->DCTL |= USB_OTG_DCTL_CGINAK; - 80084f2: 68fb ldr r3, [r7, #12] - 80084f4: f503 6300 add.w r3, r3, #2048 @ 0x800 - 80084f8: 685b ldr r3, [r3, #4] - 80084fa: 68fa ldr r2, [r7, #12] - 80084fc: f502 6200 add.w r2, r2, #2048 @ 0x800 - 8008500: f443 7380 orr.w r3, r3, #256 @ 0x100 - 8008504: 6053 str r3, [r2, #4] + 800837a: 68fb ldr r3, [r7, #12] + 800837c: f503 6300 add.w r3, r3, #2048 @ 0x800 + 8008380: 685b ldr r3, [r3, #4] + 8008382: 68fa ldr r2, [r7, #12] + 8008384: f502 6200 add.w r2, r2, #2048 @ 0x800 + 8008388: f443 7380 orr.w r3, r3, #256 @ 0x100 + 800838c: 6053 str r3, [r2, #4] return HAL_OK; - 8008506: 2300 movs r3, #0 + 800838e: 2300 movs r3, #0 } - 8008508: 4618 mov r0, r3 - 800850a: 3714 adds r7, #20 - 800850c: 46bd mov sp, r7 - 800850e: f85d 7b04 ldr.w r7, [sp], #4 - 8008512: 4770 bx lr + 8008390: 4618 mov r0, r3 + 8008392: 3714 adds r7, #20 + 8008394: 46bd mov sp, r7 + 8008396: f85d 7b04 ldr.w r7, [sp], #4 + 800839a: 4770 bx lr -08008514 : +0800839c : * 1 : DMA feature used * @param psetup pointer to setup packet * @retval HAL status */ HAL_StatusTypeDef USB_EP0_OutStart(const USB_OTG_GlobalTypeDef *USBx, uint8_t dma, const uint8_t *psetup) { - 8008514: b480 push {r7} - 8008516: b087 sub sp, #28 - 8008518: af00 add r7, sp, #0 - 800851a: 60f8 str r0, [r7, #12] - 800851c: 460b mov r3, r1 - 800851e: 607a str r2, [r7, #4] - 8008520: 72fb strb r3, [r7, #11] + 800839c: b480 push {r7} + 800839e: b087 sub sp, #28 + 80083a0: af00 add r7, sp, #0 + 80083a2: 60f8 str r0, [r7, #12] + 80083a4: 460b mov r3, r1 + 80083a6: 607a str r2, [r7, #4] + 80083a8: 72fb strb r3, [r7, #11] uint32_t USBx_BASE = (uint32_t)USBx; - 8008522: 68fb ldr r3, [r7, #12] - 8008524: 617b str r3, [r7, #20] + 80083aa: 68fb ldr r3, [r7, #12] + 80083ac: 617b str r3, [r7, #20] uint32_t gSNPSiD = *(__IO const uint32_t *)(&USBx->CID + 0x1U); - 8008526: 68fb ldr r3, [r7, #12] - 8008528: 333c adds r3, #60 @ 0x3c - 800852a: 3304 adds r3, #4 - 800852c: 681b ldr r3, [r3, #0] - 800852e: 613b str r3, [r7, #16] + 80083ae: 68fb ldr r3, [r7, #12] + 80083b0: 333c adds r3, #60 @ 0x3c + 80083b2: 3304 adds r3, #4 + 80083b4: 681b ldr r3, [r3, #0] + 80083b6: 613b str r3, [r7, #16] if (gSNPSiD > USB_OTG_CORE_ID_300A) - 8008530: 693b ldr r3, [r7, #16] - 8008532: 4a26 ldr r2, [pc, #152] @ (80085cc ) - 8008534: 4293 cmp r3, r2 - 8008536: d90a bls.n 800854e + 80083b8: 693b ldr r3, [r7, #16] + 80083ba: 4a26 ldr r2, [pc, #152] @ (8008454 ) + 80083bc: 4293 cmp r3, r2 + 80083be: d90a bls.n 80083d6 { if ((USBx_OUTEP(0U)->DOEPCTL & USB_OTG_DOEPCTL_EPENA) == USB_OTG_DOEPCTL_EPENA) - 8008538: 697b ldr r3, [r7, #20] - 800853a: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 800853e: 681b ldr r3, [r3, #0] - 8008540: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 - 8008544: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 - 8008548: d101 bne.n 800854e + 80083c0: 697b ldr r3, [r7, #20] + 80083c2: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80083c6: 681b ldr r3, [r3, #0] + 80083c8: f003 4300 and.w r3, r3, #2147483648 @ 0x80000000 + 80083cc: f1b3 4f00 cmp.w r3, #2147483648 @ 0x80000000 + 80083d0: d101 bne.n 80083d6 { return HAL_OK; - 800854a: 2300 movs r3, #0 - 800854c: e037 b.n 80085be + 80083d2: 2300 movs r3, #0 + 80083d4: e037 b.n 8008446 } } USBx_OUTEP(0U)->DOEPTSIZ = 0U; - 800854e: 697b ldr r3, [r7, #20] - 8008550: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008554: 461a mov r2, r3 - 8008556: 2300 movs r3, #0 - 8008558: 6113 str r3, [r2, #16] + 80083d6: 697b ldr r3, [r7, #20] + 80083d8: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80083dc: 461a mov r2, r3 + 80083de: 2300 movs r3, #0 + 80083e0: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= (USB_OTG_DOEPTSIZ_PKTCNT & (1U << 19)); - 800855a: 697b ldr r3, [r7, #20] - 800855c: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008560: 691b ldr r3, [r3, #16] - 8008562: 697a ldr r2, [r7, #20] - 8008564: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008568: f443 2300 orr.w r3, r3, #524288 @ 0x80000 - 800856c: 6113 str r3, [r2, #16] + 80083e2: 697b ldr r3, [r7, #20] + 80083e4: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80083e8: 691b ldr r3, [r3, #16] + 80083ea: 697a ldr r2, [r7, #20] + 80083ec: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 80083f0: f443 2300 orr.w r3, r3, #524288 @ 0x80000 + 80083f4: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= (3U * 8U); - 800856e: 697b ldr r3, [r7, #20] - 8008570: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008574: 691b ldr r3, [r3, #16] - 8008576: 697a ldr r2, [r7, #20] - 8008578: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 800857c: f043 0318 orr.w r3, r3, #24 - 8008580: 6113 str r3, [r2, #16] + 80083f6: 697b ldr r3, [r7, #20] + 80083f8: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 80083fc: 691b ldr r3, [r3, #16] + 80083fe: 697a ldr r2, [r7, #20] + 8008400: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008404: f043 0318 orr.w r3, r3, #24 + 8008408: 6113 str r3, [r2, #16] USBx_OUTEP(0U)->DOEPTSIZ |= USB_OTG_DOEPTSIZ_STUPCNT; - 8008582: 697b ldr r3, [r7, #20] - 8008584: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 8008588: 691b ldr r3, [r3, #16] - 800858a: 697a ldr r2, [r7, #20] - 800858c: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 8008590: f043 43c0 orr.w r3, r3, #1610612736 @ 0x60000000 - 8008594: 6113 str r3, [r2, #16] + 800840a: 697b ldr r3, [r7, #20] + 800840c: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008410: 691b ldr r3, [r3, #16] + 8008412: 697a ldr r2, [r7, #20] + 8008414: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 8008418: f043 43c0 orr.w r3, r3, #1610612736 @ 0x60000000 + 800841c: 6113 str r3, [r2, #16] if (dma == 1U) - 8008596: 7afb ldrb r3, [r7, #11] - 8008598: 2b01 cmp r3, #1 - 800859a: d10f bne.n 80085bc + 800841e: 7afb ldrb r3, [r7, #11] + 8008420: 2b01 cmp r3, #1 + 8008422: d10f bne.n 8008444 { USBx_OUTEP(0U)->DOEPDMA = (uint32_t)psetup; - 800859c: 697b ldr r3, [r7, #20] - 800859e: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80085a2: 461a mov r2, r3 - 80085a4: 687b ldr r3, [r7, #4] - 80085a6: 6153 str r3, [r2, #20] + 8008424: 697b ldr r3, [r7, #20] + 8008426: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 800842a: 461a mov r2, r3 + 800842c: 687b ldr r3, [r7, #4] + 800842e: 6153 str r3, [r2, #20] /* EP enable */ USBx_OUTEP(0U)->DOEPCTL |= USB_OTG_DOEPCTL_EPENA | USB_OTG_DOEPCTL_USBAEP; - 80085a8: 697b ldr r3, [r7, #20] - 80085aa: f503 6330 add.w r3, r3, #2816 @ 0xb00 - 80085ae: 681b ldr r3, [r3, #0] - 80085b0: 697a ldr r2, [r7, #20] - 80085b2: f502 6230 add.w r2, r2, #2816 @ 0xb00 - 80085b6: f043 2380 orr.w r3, r3, #2147516416 @ 0x80008000 - 80085ba: 6013 str r3, [r2, #0] + 8008430: 697b ldr r3, [r7, #20] + 8008432: f503 6330 add.w r3, r3, #2816 @ 0xb00 + 8008436: 681b ldr r3, [r3, #0] + 8008438: 697a ldr r2, [r7, #20] + 800843a: f502 6230 add.w r2, r2, #2816 @ 0xb00 + 800843e: f043 2380 orr.w r3, r3, #2147516416 @ 0x80008000 + 8008442: 6013 str r3, [r2, #0] } return HAL_OK; - 80085bc: 2300 movs r3, #0 + 8008444: 2300 movs r3, #0 } - 80085be: 4618 mov r0, r3 - 80085c0: 371c adds r7, #28 - 80085c2: 46bd mov sp, r7 - 80085c4: f85d 7b04 ldr.w r7, [sp], #4 - 80085c8: 4770 bx lr - 80085ca: bf00 nop - 80085cc: 4f54300a .word 0x4f54300a + 8008446: 4618 mov r0, r3 + 8008448: 371c adds r7, #28 + 800844a: 46bd mov sp, r7 + 800844c: f85d 7b04 ldr.w r7, [sp], #4 + 8008450: 4770 bx lr + 8008452: bf00 nop + 8008454: 4f54300a .word 0x4f54300a -080085d0 : +08008458 : * @brief Reset the USB Core (needed after USB clock settings change) * @param USBx Selected device * @retval HAL status */ static HAL_StatusTypeDef USB_CoreReset(USB_OTG_GlobalTypeDef *USBx) { - 80085d0: b480 push {r7} - 80085d2: b085 sub sp, #20 - 80085d4: af00 add r7, sp, #0 - 80085d6: 6078 str r0, [r7, #4] + 8008458: b480 push {r7} + 800845a: b085 sub sp, #20 + 800845c: af00 add r7, sp, #0 + 800845e: 6078 str r0, [r7, #4] __IO uint32_t count = 0U; - 80085d8: 2300 movs r3, #0 - 80085da: 60fb str r3, [r7, #12] + 8008460: 2300 movs r3, #0 + 8008462: 60fb str r3, [r7, #12] /* Wait for AHB master IDLE state. */ do { count++; - 80085dc: 68fb ldr r3, [r7, #12] - 80085de: 3301 adds r3, #1 - 80085e0: 60fb str r3, [r7, #12] + 8008464: 68fb ldr r3, [r7, #12] + 8008466: 3301 adds r3, #1 + 8008468: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 80085e2: 68fb ldr r3, [r7, #12] - 80085e4: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 80085e8: d901 bls.n 80085ee + 800846a: 68fb ldr r3, [r7, #12] + 800846c: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 8008470: d901 bls.n 8008476 { return HAL_TIMEOUT; - 80085ea: 2303 movs r3, #3 - 80085ec: e022 b.n 8008634 + 8008472: 2303 movs r3, #3 + 8008474: e022 b.n 80084bc } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U); - 80085ee: 687b ldr r3, [r7, #4] - 80085f0: 691b ldr r3, [r3, #16] - 80085f2: 2b00 cmp r3, #0 - 80085f4: daf2 bge.n 80085dc + 8008476: 687b ldr r3, [r7, #4] + 8008478: 691b ldr r3, [r3, #16] + 800847a: 2b00 cmp r3, #0 + 800847c: daf2 bge.n 8008464 count = 10U; - 80085f6: 230a movs r3, #10 - 80085f8: 60fb str r3, [r7, #12] + 800847e: 230a movs r3, #10 + 8008480: 60fb str r3, [r7, #12] /* few cycles before setting core reset */ while (count > 0U) - 80085fa: e002 b.n 8008602 + 8008482: e002 b.n 800848a { count--; - 80085fc: 68fb ldr r3, [r7, #12] - 80085fe: 3b01 subs r3, #1 - 8008600: 60fb str r3, [r7, #12] + 8008484: 68fb ldr r3, [r7, #12] + 8008486: 3b01 subs r3, #1 + 8008488: 60fb str r3, [r7, #12] while (count > 0U) - 8008602: 68fb ldr r3, [r7, #12] - 8008604: 2b00 cmp r3, #0 - 8008606: d1f9 bne.n 80085fc + 800848a: 68fb ldr r3, [r7, #12] + 800848c: 2b00 cmp r3, #0 + 800848e: d1f9 bne.n 8008484 } /* Core Soft Reset */ USBx->GRSTCTL |= USB_OTG_GRSTCTL_CSRST; - 8008608: 687b ldr r3, [r7, #4] - 800860a: 691b ldr r3, [r3, #16] - 800860c: f043 0201 orr.w r2, r3, #1 - 8008610: 687b ldr r3, [r7, #4] - 8008612: 611a str r2, [r3, #16] + 8008490: 687b ldr r3, [r7, #4] + 8008492: 691b ldr r3, [r3, #16] + 8008494: f043 0201 orr.w r2, r3, #1 + 8008498: 687b ldr r3, [r7, #4] + 800849a: 611a str r2, [r3, #16] do { count++; - 8008614: 68fb ldr r3, [r7, #12] - 8008616: 3301 adds r3, #1 - 8008618: 60fb str r3, [r7, #12] + 800849c: 68fb ldr r3, [r7, #12] + 800849e: 3301 adds r3, #1 + 80084a0: 60fb str r3, [r7, #12] if (count > HAL_USB_TIMEOUT) - 800861a: 68fb ldr r3, [r7, #12] - 800861c: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 - 8008620: d901 bls.n 8008626 + 80084a2: 68fb ldr r3, [r7, #12] + 80084a4: f1b3 6f70 cmp.w r3, #251658240 @ 0xf000000 + 80084a8: d901 bls.n 80084ae { return HAL_TIMEOUT; - 8008622: 2303 movs r3, #3 - 8008624: e006 b.n 8008634 + 80084aa: 2303 movs r3, #3 + 80084ac: e006 b.n 80084bc } } while ((USBx->GRSTCTL & USB_OTG_GRSTCTL_CSRST) == USB_OTG_GRSTCTL_CSRST); - 8008626: 687b ldr r3, [r7, #4] - 8008628: 691b ldr r3, [r3, #16] - 800862a: f003 0301 and.w r3, r3, #1 - 800862e: 2b01 cmp r3, #1 - 8008630: d0f0 beq.n 8008614 + 80084ae: 687b ldr r3, [r7, #4] + 80084b0: 691b ldr r3, [r3, #16] + 80084b2: f003 0301 and.w r3, r3, #1 + 80084b6: 2b01 cmp r3, #1 + 80084b8: d0f0 beq.n 800849c return HAL_OK; - 8008632: 2300 movs r3, #0 + 80084ba: 2300 movs r3, #0 } - 8008634: 4618 mov r0, r3 - 8008636: 3714 adds r7, #20 - 8008638: 46bd mov sp, r7 - 800863a: f85d 7b04 ldr.w r7, [sp], #4 - 800863e: 4770 bx lr + 80084bc: 4618 mov r0, r3 + 80084be: 3714 adds r7, #20 + 80084c0: 46bd mov sp, r7 + 80084c2: f85d 7b04 ldr.w r7, [sp], #4 + 80084c6: 4770 bx lr -08008640 : +080084c8 : * @param pdev: device instance * @param cfgidx: Configuration index * @retval status */ static uint8_t USBD_HID_Init(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008640: b580 push {r7, lr} - 8008642: b084 sub sp, #16 - 8008644: af00 add r7, sp, #0 - 8008646: 6078 str r0, [r7, #4] - 8008648: 460b mov r3, r1 - 800864a: 70fb strb r3, [r7, #3] + 80084c8: b580 push {r7, lr} + 80084ca: b084 sub sp, #16 + 80084cc: af00 add r7, sp, #0 + 80084ce: 6078 str r0, [r7, #4] + 80084d0: 460b mov r3, r1 + 80084d2: 70fb strb r3, [r7, #3] UNUSED(cfgidx); USBD_HID_HandleTypeDef *hhid; hhid = (USBD_HID_HandleTypeDef *)USBD_malloc(sizeof(USBD_HID_HandleTypeDef)); - 800864c: 2010 movs r0, #16 - 800864e: f002 f9e3 bl 800aa18 - 8008652: 60f8 str r0, [r7, #12] + 80084d4: 2010 movs r0, #16 + 80084d6: f002 f9e3 bl 800a8a0 + 80084da: 60f8 str r0, [r7, #12] if (hhid == NULL) - 8008654: 68fb ldr r3, [r7, #12] - 8008656: 2b00 cmp r3, #0 - 8008658: d109 bne.n 800866e + 80084dc: 68fb ldr r3, [r7, #12] + 80084de: 2b00 cmp r3, #0 + 80084e0: d109 bne.n 80084f6 { pdev->pClassDataCmsit[pdev->classId] = NULL; - 800865a: 687b ldr r3, [r7, #4] - 800865c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008660: 687b ldr r3, [r7, #4] - 8008662: 32b0 adds r2, #176 @ 0xb0 - 8008664: 2100 movs r1, #0 - 8008666: f843 1022 str.w r1, [r3, r2, lsl #2] + 80084e2: 687b ldr r3, [r7, #4] + 80084e4: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 80084e8: 687b ldr r3, [r7, #4] + 80084ea: 32b0 adds r2, #176 @ 0xb0 + 80084ec: 2100 movs r1, #0 + 80084ee: f843 1022 str.w r1, [r3, r2, lsl #2] return (uint8_t)USBD_EMEM; - 800866a: 2302 movs r3, #2 - 800866c: e048 b.n 8008700 + 80084f2: 2302 movs r3, #2 + 80084f4: e048 b.n 8008588 } pdev->pClassDataCmsit[pdev->classId] = (void *)hhid; - 800866e: 687b ldr r3, [r7, #4] - 8008670: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008674: 687b ldr r3, [r7, #4] - 8008676: 32b0 adds r2, #176 @ 0xb0 - 8008678: 68f9 ldr r1, [r7, #12] - 800867a: f843 1022 str.w r1, [r3, r2, lsl #2] + 80084f6: 687b ldr r3, [r7, #4] + 80084f8: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 80084fc: 687b ldr r3, [r7, #4] + 80084fe: 32b0 adds r2, #176 @ 0xb0 + 8008500: 68f9 ldr r1, [r7, #12] + 8008502: f843 1022 str.w r1, [r3, r2, lsl #2] pdev->pClassData = pdev->pClassDataCmsit[pdev->classId]; - 800867e: 687b ldr r3, [r7, #4] - 8008680: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008684: 687b ldr r3, [r7, #4] - 8008686: 32b0 adds r2, #176 @ 0xb0 - 8008688: f853 2022 ldr.w r2, [r3, r2, lsl #2] - 800868c: 687b ldr r3, [r7, #4] - 800868e: f8c3 22bc str.w r2, [r3, #700] @ 0x2bc + 8008506: 687b ldr r3, [r7, #4] + 8008508: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 800850c: 687b ldr r3, [r7, #4] + 800850e: 32b0 adds r2, #176 @ 0xb0 + 8008510: f853 2022 ldr.w r2, [r3, r2, lsl #2] + 8008514: 687b ldr r3, [r7, #4] + 8008516: f8c3 22bc str.w r2, [r3, #700] @ 0x2bc #ifdef USE_USBD_COMPOSITE /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, (uint8_t)pdev->classId); #endif /* USE_USBD_COMPOSITE */ if (pdev->dev_speed == USBD_SPEED_HIGH) - 8008692: 687b ldr r3, [r7, #4] - 8008694: 7c1b ldrb r3, [r3, #16] - 8008696: 2b00 cmp r3, #0 - 8008698: d10d bne.n 80086b6 + 800851a: 687b ldr r3, [r7, #4] + 800851c: 7c1b ldrb r3, [r3, #16] + 800851e: 2b00 cmp r3, #0 + 8008520: d10d bne.n 800853e { pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = HID_HS_BINTERVAL; - 800869a: 4b1b ldr r3, [pc, #108] @ (8008708 ) - 800869c: 781b ldrb r3, [r3, #0] - 800869e: f003 020f and.w r2, r3, #15 - 80086a2: 6879 ldr r1, [r7, #4] - 80086a4: 4613 mov r3, r2 - 80086a6: 009b lsls r3, r3, #2 - 80086a8: 4413 add r3, r2 - 80086aa: 009b lsls r3, r3, #2 - 80086ac: 440b add r3, r1 - 80086ae: 331c adds r3, #28 - 80086b0: 2207 movs r2, #7 - 80086b2: 601a str r2, [r3, #0] - 80086b4: e00c b.n 80086d0 + 8008522: 4b1b ldr r3, [pc, #108] @ (8008590 ) + 8008524: 781b ldrb r3, [r3, #0] + 8008526: f003 020f and.w r2, r3, #15 + 800852a: 6879 ldr r1, [r7, #4] + 800852c: 4613 mov r3, r2 + 800852e: 009b lsls r3, r3, #2 + 8008530: 4413 add r3, r2 + 8008532: 009b lsls r3, r3, #2 + 8008534: 440b add r3, r1 + 8008536: 331c adds r3, #28 + 8008538: 2207 movs r2, #7 + 800853a: 601a str r2, [r3, #0] + 800853c: e00c b.n 8008558 } else /* LOW and FULL-speed endpoints */ { pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = HID_FS_BINTERVAL; - 80086b6: 4b14 ldr r3, [pc, #80] @ (8008708 ) - 80086b8: 781b ldrb r3, [r3, #0] - 80086ba: f003 020f and.w r2, r3, #15 - 80086be: 6879 ldr r1, [r7, #4] - 80086c0: 4613 mov r3, r2 - 80086c2: 009b lsls r3, r3, #2 - 80086c4: 4413 add r3, r2 - 80086c6: 009b lsls r3, r3, #2 - 80086c8: 440b add r3, r1 - 80086ca: 331c adds r3, #28 - 80086cc: 220a movs r2, #10 - 80086ce: 601a str r2, [r3, #0] + 800853e: 4b14 ldr r3, [pc, #80] @ (8008590 ) + 8008540: 781b ldrb r3, [r3, #0] + 8008542: f003 020f and.w r2, r3, #15 + 8008546: 6879 ldr r1, [r7, #4] + 8008548: 4613 mov r3, r2 + 800854a: 009b lsls r3, r3, #2 + 800854c: 4413 add r3, r2 + 800854e: 009b lsls r3, r3, #2 + 8008550: 440b add r3, r1 + 8008552: 331c adds r3, #28 + 8008554: 220a movs r2, #10 + 8008556: 601a str r2, [r3, #0] } /* Open EP IN */ (void)USBD_LL_OpenEP(pdev, HIDInEpAdd, USBD_EP_TYPE_INTR, HID_EPIN_SIZE); - 80086d0: 4b0d ldr r3, [pc, #52] @ (8008708 ) - 80086d2: 7819 ldrb r1, [r3, #0] - 80086d4: 230e movs r3, #14 - 80086d6: 2203 movs r2, #3 - 80086d8: 6878 ldr r0, [r7, #4] - 80086da: f002 f83e bl 800a75a + 8008558: 4b0d ldr r3, [pc, #52] @ (8008590 ) + 800855a: 7819 ldrb r1, [r3, #0] + 800855c: 230e movs r3, #14 + 800855e: 2203 movs r2, #3 + 8008560: 6878 ldr r0, [r7, #4] + 8008562: f002 f83e bl 800a5e2 pdev->ep_in[HIDInEpAdd & 0xFU].is_used = 1U; - 80086de: 4b0a ldr r3, [pc, #40] @ (8008708 ) - 80086e0: 781b ldrb r3, [r3, #0] - 80086e2: f003 020f and.w r2, r3, #15 - 80086e6: 6879 ldr r1, [r7, #4] - 80086e8: 4613 mov r3, r2 - 80086ea: 009b lsls r3, r3, #2 - 80086ec: 4413 add r3, r2 - 80086ee: 009b lsls r3, r3, #2 - 80086f0: 440b add r3, r1 - 80086f2: 3323 adds r3, #35 @ 0x23 - 80086f4: 2201 movs r2, #1 - 80086f6: 701a strb r2, [r3, #0] + 8008566: 4b0a ldr r3, [pc, #40] @ (8008590 ) + 8008568: 781b ldrb r3, [r3, #0] + 800856a: f003 020f and.w r2, r3, #15 + 800856e: 6879 ldr r1, [r7, #4] + 8008570: 4613 mov r3, r2 + 8008572: 009b lsls r3, r3, #2 + 8008574: 4413 add r3, r2 + 8008576: 009b lsls r3, r3, #2 + 8008578: 440b add r3, r1 + 800857a: 3323 adds r3, #35 @ 0x23 + 800857c: 2201 movs r2, #1 + 800857e: 701a strb r2, [r3, #0] hhid->state = USBD_HID_IDLE; - 80086f8: 68fb ldr r3, [r7, #12] - 80086fa: 2200 movs r2, #0 - 80086fc: 731a strb r2, [r3, #12] + 8008580: 68fb ldr r3, [r7, #12] + 8008582: 2200 movs r2, #0 + 8008584: 731a strb r2, [r3, #12] return (uint8_t)USBD_OK; - 80086fe: 2300 movs r3, #0 + 8008586: 2300 movs r3, #0 } - 8008700: 4618 mov r0, r3 - 8008702: 3710 adds r7, #16 - 8008704: 46bd mov sp, r7 - 8008706: bd80 pop {r7, pc} - 8008708: 2000013d .word 0x2000013d + 8008588: 4618 mov r0, r3 + 800858a: 3710 adds r7, #16 + 800858c: 46bd mov sp, r7 + 800858e: bd80 pop {r7, pc} + 8008590: 2000013d .word 0x2000013d -0800870c : +08008594 : * @param pdev: device instance * @param cfgidx: Configuration index * @retval status */ static uint8_t USBD_HID_DeInit(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 800870c: b580 push {r7, lr} - 800870e: b082 sub sp, #8 - 8008710: af00 add r7, sp, #0 - 8008712: 6078 str r0, [r7, #4] - 8008714: 460b mov r3, r1 - 8008716: 70fb strb r3, [r7, #3] + 8008594: b580 push {r7, lr} + 8008596: b082 sub sp, #8 + 8008598: af00 add r7, sp, #0 + 800859a: 6078 str r0, [r7, #4] + 800859c: 460b mov r3, r1 + 800859e: 70fb strb r3, [r7, #3] /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, (uint8_t)pdev->classId); #endif /* USE_USBD_COMPOSITE */ /* Close HID EPs */ (void)USBD_LL_CloseEP(pdev, HIDInEpAdd); - 8008718: 4b1f ldr r3, [pc, #124] @ (8008798 ) - 800871a: 781b ldrb r3, [r3, #0] - 800871c: 4619 mov r1, r3 - 800871e: 6878 ldr r0, [r7, #4] - 8008720: f002 f841 bl 800a7a6 + 80085a0: 4b1f ldr r3, [pc, #124] @ (8008620 ) + 80085a2: 781b ldrb r3, [r3, #0] + 80085a4: 4619 mov r1, r3 + 80085a6: 6878 ldr r0, [r7, #4] + 80085a8: f002 f841 bl 800a62e pdev->ep_in[HIDInEpAdd & 0xFU].is_used = 0U; - 8008724: 4b1c ldr r3, [pc, #112] @ (8008798 ) - 8008726: 781b ldrb r3, [r3, #0] - 8008728: f003 020f and.w r2, r3, #15 - 800872c: 6879 ldr r1, [r7, #4] - 800872e: 4613 mov r3, r2 - 8008730: 009b lsls r3, r3, #2 - 8008732: 4413 add r3, r2 - 8008734: 009b lsls r3, r3, #2 - 8008736: 440b add r3, r1 - 8008738: 3323 adds r3, #35 @ 0x23 - 800873a: 2200 movs r2, #0 - 800873c: 701a strb r2, [r3, #0] + 80085ac: 4b1c ldr r3, [pc, #112] @ (8008620 ) + 80085ae: 781b ldrb r3, [r3, #0] + 80085b0: f003 020f and.w r2, r3, #15 + 80085b4: 6879 ldr r1, [r7, #4] + 80085b6: 4613 mov r3, r2 + 80085b8: 009b lsls r3, r3, #2 + 80085ba: 4413 add r3, r2 + 80085bc: 009b lsls r3, r3, #2 + 80085be: 440b add r3, r1 + 80085c0: 3323 adds r3, #35 @ 0x23 + 80085c2: 2200 movs r2, #0 + 80085c4: 701a strb r2, [r3, #0] pdev->ep_in[HIDInEpAdd & 0xFU].bInterval = 0U; - 800873e: 4b16 ldr r3, [pc, #88] @ (8008798 ) - 8008740: 781b ldrb r3, [r3, #0] - 8008742: f003 020f and.w r2, r3, #15 - 8008746: 6879 ldr r1, [r7, #4] - 8008748: 4613 mov r3, r2 - 800874a: 009b lsls r3, r3, #2 - 800874c: 4413 add r3, r2 - 800874e: 009b lsls r3, r3, #2 - 8008750: 440b add r3, r1 - 8008752: 331c adds r3, #28 - 8008754: 2200 movs r2, #0 - 8008756: 601a str r2, [r3, #0] + 80085c6: 4b16 ldr r3, [pc, #88] @ (8008620 ) + 80085c8: 781b ldrb r3, [r3, #0] + 80085ca: f003 020f and.w r2, r3, #15 + 80085ce: 6879 ldr r1, [r7, #4] + 80085d0: 4613 mov r3, r2 + 80085d2: 009b lsls r3, r3, #2 + 80085d4: 4413 add r3, r2 + 80085d6: 009b lsls r3, r3, #2 + 80085d8: 440b add r3, r1 + 80085da: 331c adds r3, #28 + 80085dc: 2200 movs r2, #0 + 80085de: 601a str r2, [r3, #0] /* Free allocated memory */ if (pdev->pClassDataCmsit[pdev->classId] != NULL) - 8008758: 687b ldr r3, [r7, #4] - 800875a: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800875e: 687b ldr r3, [r7, #4] - 8008760: 32b0 adds r2, #176 @ 0xb0 - 8008762: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008766: 2b00 cmp r3, #0 - 8008768: d011 beq.n 800878e + 80085e0: 687b ldr r3, [r7, #4] + 80085e2: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 80085e6: 687b ldr r3, [r7, #4] + 80085e8: 32b0 adds r2, #176 @ 0xb0 + 80085ea: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 80085ee: 2b00 cmp r3, #0 + 80085f0: d011 beq.n 8008616 { (void)USBD_free(pdev->pClassDataCmsit[pdev->classId]); - 800876a: 687b ldr r3, [r7, #4] - 800876c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008770: 687b ldr r3, [r7, #4] - 8008772: 32b0 adds r2, #176 @ 0xb0 - 8008774: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008778: 4618 mov r0, r3 - 800877a: f002 f95b bl 800aa34 + 80085f2: 687b ldr r3, [r7, #4] + 80085f4: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 80085f8: 687b ldr r3, [r7, #4] + 80085fa: 32b0 adds r2, #176 @ 0xb0 + 80085fc: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008600: 4618 mov r0, r3 + 8008602: f002 f95b bl 800a8bc pdev->pClassDataCmsit[pdev->classId] = NULL; - 800877e: 687b ldr r3, [r7, #4] - 8008780: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008784: 687b ldr r3, [r7, #4] - 8008786: 32b0 adds r2, #176 @ 0xb0 - 8008788: 2100 movs r1, #0 - 800878a: f843 1022 str.w r1, [r3, r2, lsl #2] + 8008606: 687b ldr r3, [r7, #4] + 8008608: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 800860c: 687b ldr r3, [r7, #4] + 800860e: 32b0 adds r2, #176 @ 0xb0 + 8008610: 2100 movs r1, #0 + 8008612: f843 1022 str.w r1, [r3, r2, lsl #2] } return (uint8_t)USBD_OK; - 800878e: 2300 movs r3, #0 + 8008616: 2300 movs r3, #0 } - 8008790: 4618 mov r0, r3 - 8008792: 3708 adds r7, #8 - 8008794: 46bd mov sp, r7 - 8008796: bd80 pop {r7, pc} - 8008798: 2000013d .word 0x2000013d + 8008618: 4618 mov r0, r3 + 800861a: 3708 adds r7, #8 + 800861c: 46bd mov sp, r7 + 800861e: bd80 pop {r7, pc} + 8008620: 2000013d .word 0x2000013d -0800879c : +08008624 : * @param pdev: instance * @param req: usb requests * @retval status */ static uint8_t USBD_HID_Setup(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 800879c: b580 push {r7, lr} - 800879e: b086 sub sp, #24 - 80087a0: af00 add r7, sp, #0 - 80087a2: 6078 str r0, [r7, #4] - 80087a4: 6039 str r1, [r7, #0] + 8008624: b580 push {r7, lr} + 8008626: b086 sub sp, #24 + 8008628: af00 add r7, sp, #0 + 800862a: 6078 str r0, [r7, #4] + 800862c: 6039 str r1, [r7, #0] USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; - 80087a6: 687b ldr r3, [r7, #4] - 80087a8: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80087ac: 687b ldr r3, [r7, #4] - 80087ae: 32b0 adds r2, #176 @ 0xb0 - 80087b0: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80087b4: 60fb str r3, [r7, #12] + 800862e: 687b ldr r3, [r7, #4] + 8008630: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008634: 687b ldr r3, [r7, #4] + 8008636: 32b0 adds r2, #176 @ 0xb0 + 8008638: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800863c: 60fb str r3, [r7, #12] USBD_StatusTypeDef ret = USBD_OK; - 80087b6: 2300 movs r3, #0 - 80087b8: 75fb strb r3, [r7, #23] + 800863e: 2300 movs r3, #0 + 8008640: 75fb strb r3, [r7, #23] uint16_t len; uint8_t *pbuf; uint16_t status_info = 0U; - 80087ba: 2300 movs r3, #0 - 80087bc: 817b strh r3, [r7, #10] + 8008642: 2300 movs r3, #0 + 8008644: 817b strh r3, [r7, #10] if (hhid == NULL) - 80087be: 68fb ldr r3, [r7, #12] - 80087c0: 2b00 cmp r3, #0 - 80087c2: d101 bne.n 80087c8 + 8008646: 68fb ldr r3, [r7, #12] + 8008648: 2b00 cmp r3, #0 + 800864a: d101 bne.n 8008650 { return (uint8_t)USBD_FAIL; - 80087c4: 2303 movs r3, #3 - 80087c6: e0e8 b.n 800899a + 800864c: 2303 movs r3, #3 + 800864e: e0e8 b.n 8008822 } switch (req->bmRequest & USB_REQ_TYPE_MASK) - 80087c8: 683b ldr r3, [r7, #0] - 80087ca: 781b ldrb r3, [r3, #0] - 80087cc: f003 0360 and.w r3, r3, #96 @ 0x60 - 80087d0: 2b00 cmp r3, #0 - 80087d2: d046 beq.n 8008862 - 80087d4: 2b20 cmp r3, #32 - 80087d6: f040 80d8 bne.w 800898a + 8008650: 683b ldr r3, [r7, #0] + 8008652: 781b ldrb r3, [r3, #0] + 8008654: f003 0360 and.w r3, r3, #96 @ 0x60 + 8008658: 2b00 cmp r3, #0 + 800865a: d046 beq.n 80086ea + 800865c: 2b20 cmp r3, #32 + 800865e: f040 80d8 bne.w 8008812 { case USB_REQ_TYPE_CLASS : switch (req->bRequest) - 80087da: 683b ldr r3, [r7, #0] - 80087dc: 785b ldrb r3, [r3, #1] - 80087de: 3b02 subs r3, #2 - 80087e0: 2b09 cmp r3, #9 - 80087e2: d836 bhi.n 8008852 - 80087e4: a201 add r2, pc, #4 @ (adr r2, 80087ec ) - 80087e6: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80087ea: bf00 nop - 80087ec: 08008843 .word 0x08008843 - 80087f0: 08008823 .word 0x08008823 - 80087f4: 08008853 .word 0x08008853 - 80087f8: 08008853 .word 0x08008853 - 80087fc: 08008853 .word 0x08008853 - 8008800: 08008853 .word 0x08008853 - 8008804: 08008853 .word 0x08008853 - 8008808: 08008853 .word 0x08008853 - 800880c: 08008831 .word 0x08008831 - 8008810: 08008815 .word 0x08008815 + 8008662: 683b ldr r3, [r7, #0] + 8008664: 785b ldrb r3, [r3, #1] + 8008666: 3b02 subs r3, #2 + 8008668: 2b09 cmp r3, #9 + 800866a: d836 bhi.n 80086da + 800866c: a201 add r2, pc, #4 @ (adr r2, 8008674 ) + 800866e: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8008672: bf00 nop + 8008674: 080086cb .word 0x080086cb + 8008678: 080086ab .word 0x080086ab + 800867c: 080086db .word 0x080086db + 8008680: 080086db .word 0x080086db + 8008684: 080086db .word 0x080086db + 8008688: 080086db .word 0x080086db + 800868c: 080086db .word 0x080086db + 8008690: 080086db .word 0x080086db + 8008694: 080086b9 .word 0x080086b9 + 8008698: 0800869d .word 0x0800869d { case USBD_HID_REQ_SET_PROTOCOL: hhid->Protocol = (uint8_t)(req->wValue); - 8008814: 683b ldr r3, [r7, #0] - 8008816: 885b ldrh r3, [r3, #2] - 8008818: b2db uxtb r3, r3 - 800881a: 461a mov r2, r3 - 800881c: 68fb ldr r3, [r7, #12] - 800881e: 601a str r2, [r3, #0] + 800869c: 683b ldr r3, [r7, #0] + 800869e: 885b ldrh r3, [r3, #2] + 80086a0: b2db uxtb r3, r3 + 80086a2: 461a mov r2, r3 + 80086a4: 68fb ldr r3, [r7, #12] + 80086a6: 601a str r2, [r3, #0] break; - 8008820: e01e b.n 8008860 + 80086a8: e01e b.n 80086e8 case USBD_HID_REQ_GET_PROTOCOL: (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->Protocol, 1U); - 8008822: 68fb ldr r3, [r7, #12] - 8008824: 2201 movs r2, #1 - 8008826: 4619 mov r1, r3 - 8008828: 6878 ldr r0, [r7, #4] - 800882a: f001 fc25 bl 800a078 + 80086aa: 68fb ldr r3, [r7, #12] + 80086ac: 2201 movs r2, #1 + 80086ae: 4619 mov r1, r3 + 80086b0: 6878 ldr r0, [r7, #4] + 80086b2: f001 fc25 bl 8009f00 break; - 800882e: e017 b.n 8008860 + 80086b6: e017 b.n 80086e8 case USBD_HID_REQ_SET_IDLE: hhid->IdleState = (uint8_t)(req->wValue >> 8); - 8008830: 683b ldr r3, [r7, #0] - 8008832: 885b ldrh r3, [r3, #2] - 8008834: 0a1b lsrs r3, r3, #8 - 8008836: b29b uxth r3, r3 - 8008838: b2db uxtb r3, r3 - 800883a: 461a mov r2, r3 - 800883c: 68fb ldr r3, [r7, #12] - 800883e: 605a str r2, [r3, #4] + 80086b8: 683b ldr r3, [r7, #0] + 80086ba: 885b ldrh r3, [r3, #2] + 80086bc: 0a1b lsrs r3, r3, #8 + 80086be: b29b uxth r3, r3 + 80086c0: b2db uxtb r3, r3 + 80086c2: 461a mov r2, r3 + 80086c4: 68fb ldr r3, [r7, #12] + 80086c6: 605a str r2, [r3, #4] break; - 8008840: e00e b.n 8008860 + 80086c8: e00e b.n 80086e8 case USBD_HID_REQ_GET_IDLE: (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->IdleState, 1U); - 8008842: 68fb ldr r3, [r7, #12] - 8008844: 3304 adds r3, #4 - 8008846: 2201 movs r2, #1 - 8008848: 4619 mov r1, r3 - 800884a: 6878 ldr r0, [r7, #4] - 800884c: f001 fc14 bl 800a078 + 80086ca: 68fb ldr r3, [r7, #12] + 80086cc: 3304 adds r3, #4 + 80086ce: 2201 movs r2, #1 + 80086d0: 4619 mov r1, r3 + 80086d2: 6878 ldr r0, [r7, #4] + 80086d4: f001 fc14 bl 8009f00 break; - 8008850: e006 b.n 8008860 + 80086d8: e006 b.n 80086e8 default: USBD_CtlError(pdev, req); - 8008852: 6839 ldr r1, [r7, #0] - 8008854: 6878 ldr r0, [r7, #4] - 8008856: f001 fb92 bl 8009f7e + 80086da: 6839 ldr r1, [r7, #0] + 80086dc: 6878 ldr r0, [r7, #4] + 80086de: f001 fb92 bl 8009e06 ret = USBD_FAIL; - 800885a: 2303 movs r3, #3 - 800885c: 75fb strb r3, [r7, #23] + 80086e2: 2303 movs r3, #3 + 80086e4: 75fb strb r3, [r7, #23] break; - 800885e: bf00 nop + 80086e6: bf00 nop } break; - 8008860: e09a b.n 8008998 + 80086e8: e09a b.n 8008820 case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 8008862: 683b ldr r3, [r7, #0] - 8008864: 785b ldrb r3, [r3, #1] - 8008866: 2b0b cmp r3, #11 - 8008868: f200 8086 bhi.w 8008978 - 800886c: a201 add r2, pc, #4 @ (adr r2, 8008874 ) - 800886e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8008872: bf00 nop - 8008874: 080088a5 .word 0x080088a5 - 8008878: 08008987 .word 0x08008987 - 800887c: 08008979 .word 0x08008979 - 8008880: 08008979 .word 0x08008979 - 8008884: 08008979 .word 0x08008979 - 8008888: 08008979 .word 0x08008979 - 800888c: 080088cf .word 0x080088cf - 8008890: 08008979 .word 0x08008979 - 8008894: 08008979 .word 0x08008979 - 8008898: 08008979 .word 0x08008979 - 800889c: 08008927 .word 0x08008927 - 80088a0: 08008951 .word 0x08008951 + 80086ea: 683b ldr r3, [r7, #0] + 80086ec: 785b ldrb r3, [r3, #1] + 80086ee: 2b0b cmp r3, #11 + 80086f0: f200 8086 bhi.w 8008800 + 80086f4: a201 add r2, pc, #4 @ (adr r2, 80086fc ) + 80086f6: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80086fa: bf00 nop + 80086fc: 0800872d .word 0x0800872d + 8008700: 0800880f .word 0x0800880f + 8008704: 08008801 .word 0x08008801 + 8008708: 08008801 .word 0x08008801 + 800870c: 08008801 .word 0x08008801 + 8008710: 08008801 .word 0x08008801 + 8008714: 08008757 .word 0x08008757 + 8008718: 08008801 .word 0x08008801 + 800871c: 08008801 .word 0x08008801 + 8008720: 08008801 .word 0x08008801 + 8008724: 080087af .word 0x080087af + 8008728: 080087d9 .word 0x080087d9 { case USB_REQ_GET_STATUS: if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80088a4: 687b ldr r3, [r7, #4] - 80088a6: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80088aa: b2db uxtb r3, r3 - 80088ac: 2b03 cmp r3, #3 - 80088ae: d107 bne.n 80088c0 + 800872c: 687b ldr r3, [r7, #4] + 800872e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008732: b2db uxtb r3, r3 + 8008734: 2b03 cmp r3, #3 + 8008736: d107 bne.n 8008748 { (void)USBD_CtlSendData(pdev, (uint8_t *)&status_info, 2U); - 80088b0: f107 030a add.w r3, r7, #10 - 80088b4: 2202 movs r2, #2 - 80088b6: 4619 mov r1, r3 - 80088b8: 6878 ldr r0, [r7, #4] - 80088ba: f001 fbdd bl 800a078 + 8008738: f107 030a add.w r3, r7, #10 + 800873c: 2202 movs r2, #2 + 800873e: 4619 mov r1, r3 + 8008740: 6878 ldr r0, [r7, #4] + 8008742: f001 fbdd bl 8009f00 else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 80088be: e063 b.n 8008988 + 8008746: e063 b.n 8008810 USBD_CtlError(pdev, req); - 80088c0: 6839 ldr r1, [r7, #0] - 80088c2: 6878 ldr r0, [r7, #4] - 80088c4: f001 fb5b bl 8009f7e + 8008748: 6839 ldr r1, [r7, #0] + 800874a: 6878 ldr r0, [r7, #4] + 800874c: f001 fb5b bl 8009e06 ret = USBD_FAIL; - 80088c8: 2303 movs r3, #3 - 80088ca: 75fb strb r3, [r7, #23] + 8008750: 2303 movs r3, #3 + 8008752: 75fb strb r3, [r7, #23] break; - 80088cc: e05c b.n 8008988 + 8008754: e05c b.n 8008810 case USB_REQ_GET_DESCRIPTOR: if ((req->wValue >> 8) == HID_REPORT_DESC) - 80088ce: 683b ldr r3, [r7, #0] - 80088d0: 885b ldrh r3, [r3, #2] - 80088d2: 0a1b lsrs r3, r3, #8 - 80088d4: b29b uxth r3, r3 - 80088d6: 2b22 cmp r3, #34 @ 0x22 - 80088d8: d108 bne.n 80088ec + 8008756: 683b ldr r3, [r7, #0] + 8008758: 885b ldrh r3, [r3, #2] + 800875a: 0a1b lsrs r3, r3, #8 + 800875c: b29b uxth r3, r3 + 800875e: 2b22 cmp r3, #34 @ 0x22 + 8008760: d108 bne.n 8008774 { len = MIN(HID_MOUSE_REPORT_DESC_SIZE, req->wLength); - 80088da: 683b ldr r3, [r7, #0] - 80088dc: 88db ldrh r3, [r3, #6] - 80088de: 2b2d cmp r3, #45 @ 0x2d - 80088e0: bf28 it cs - 80088e2: 232d movcs r3, #45 @ 0x2d - 80088e4: 82bb strh r3, [r7, #20] + 8008762: 683b ldr r3, [r7, #0] + 8008764: 88db ldrh r3, [r3, #6] + 8008766: 2b2d cmp r3, #45 @ 0x2d + 8008768: bf28 it cs + 800876a: 232d movcs r3, #45 @ 0x2d + 800876c: 82bb strh r3, [r7, #20] pbuf = HID_MOUSE_ReportDesc; - 80088e6: 4b2f ldr r3, [pc, #188] @ (80089a4 ) - 80088e8: 613b str r3, [r7, #16] - 80088ea: e015 b.n 8008918 + 800876e: 4b2f ldr r3, [pc, #188] @ (800882c ) + 8008770: 613b str r3, [r7, #16] + 8008772: e015 b.n 80087a0 } else if ((req->wValue >> 8) == HID_DESCRIPTOR_TYPE) - 80088ec: 683b ldr r3, [r7, #0] - 80088ee: 885b ldrh r3, [r3, #2] - 80088f0: 0a1b lsrs r3, r3, #8 - 80088f2: b29b uxth r3, r3 - 80088f4: 2b21 cmp r3, #33 @ 0x21 - 80088f6: d108 bne.n 800890a + 8008774: 683b ldr r3, [r7, #0] + 8008776: 885b ldrh r3, [r3, #2] + 8008778: 0a1b lsrs r3, r3, #8 + 800877a: b29b uxth r3, r3 + 800877c: 2b21 cmp r3, #33 @ 0x21 + 800877e: d108 bne.n 8008792 { pbuf = USBD_HID_Desc; - 80088f8: 4b2b ldr r3, [pc, #172] @ (80089a8 ) - 80088fa: 613b str r3, [r7, #16] + 8008780: 4b2b ldr r3, [pc, #172] @ (8008830 ) + 8008782: 613b str r3, [r7, #16] len = MIN(USB_HID_DESC_SIZ, req->wLength); - 80088fc: 683b ldr r3, [r7, #0] - 80088fe: 88db ldrh r3, [r3, #6] - 8008900: 2b09 cmp r3, #9 - 8008902: bf28 it cs - 8008904: 2309 movcs r3, #9 - 8008906: 82bb strh r3, [r7, #20] - 8008908: e006 b.n 8008918 + 8008784: 683b ldr r3, [r7, #0] + 8008786: 88db ldrh r3, [r3, #6] + 8008788: 2b09 cmp r3, #9 + 800878a: bf28 it cs + 800878c: 2309 movcs r3, #9 + 800878e: 82bb strh r3, [r7, #20] + 8008790: e006 b.n 80087a0 } else { USBD_CtlError(pdev, req); - 800890a: 6839 ldr r1, [r7, #0] - 800890c: 6878 ldr r0, [r7, #4] - 800890e: f001 fb36 bl 8009f7e + 8008792: 6839 ldr r1, [r7, #0] + 8008794: 6878 ldr r0, [r7, #4] + 8008796: f001 fb36 bl 8009e06 ret = USBD_FAIL; - 8008912: 2303 movs r3, #3 - 8008914: 75fb strb r3, [r7, #23] + 800879a: 2303 movs r3, #3 + 800879c: 75fb strb r3, [r7, #23] break; - 8008916: e037 b.n 8008988 + 800879e: e037 b.n 8008810 } (void)USBD_CtlSendData(pdev, pbuf, len); - 8008918: 8abb ldrh r3, [r7, #20] - 800891a: 461a mov r2, r3 - 800891c: 6939 ldr r1, [r7, #16] - 800891e: 6878 ldr r0, [r7, #4] - 8008920: f001 fbaa bl 800a078 + 80087a0: 8abb ldrh r3, [r7, #20] + 80087a2: 461a mov r2, r3 + 80087a4: 6939 ldr r1, [r7, #16] + 80087a6: 6878 ldr r0, [r7, #4] + 80087a8: f001 fbaa bl 8009f00 break; - 8008924: e030 b.n 8008988 + 80087ac: e030 b.n 8008810 case USB_REQ_GET_INTERFACE : if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008926: 687b ldr r3, [r7, #4] - 8008928: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800892c: b2db uxtb r3, r3 - 800892e: 2b03 cmp r3, #3 - 8008930: d107 bne.n 8008942 + 80087ae: 687b ldr r3, [r7, #4] + 80087b0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80087b4: b2db uxtb r3, r3 + 80087b6: 2b03 cmp r3, #3 + 80087b8: d107 bne.n 80087ca { (void)USBD_CtlSendData(pdev, (uint8_t *)&hhid->AltSetting, 1U); - 8008932: 68fb ldr r3, [r7, #12] - 8008934: 3308 adds r3, #8 - 8008936: 2201 movs r2, #1 - 8008938: 4619 mov r1, r3 - 800893a: 6878 ldr r0, [r7, #4] - 800893c: f001 fb9c bl 800a078 + 80087ba: 68fb ldr r3, [r7, #12] + 80087bc: 3308 adds r3, #8 + 80087be: 2201 movs r2, #1 + 80087c0: 4619 mov r1, r3 + 80087c2: 6878 ldr r0, [r7, #4] + 80087c4: f001 fb9c bl 8009f00 else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 8008940: e022 b.n 8008988 + 80087c8: e022 b.n 8008810 USBD_CtlError(pdev, req); - 8008942: 6839 ldr r1, [r7, #0] - 8008944: 6878 ldr r0, [r7, #4] - 8008946: f001 fb1a bl 8009f7e + 80087ca: 6839 ldr r1, [r7, #0] + 80087cc: 6878 ldr r0, [r7, #4] + 80087ce: f001 fb1a bl 8009e06 ret = USBD_FAIL; - 800894a: 2303 movs r3, #3 - 800894c: 75fb strb r3, [r7, #23] + 80087d2: 2303 movs r3, #3 + 80087d4: 75fb strb r3, [r7, #23] break; - 800894e: e01b b.n 8008988 + 80087d6: e01b b.n 8008810 case USB_REQ_SET_INTERFACE: if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008950: 687b ldr r3, [r7, #4] - 8008952: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008956: b2db uxtb r3, r3 - 8008958: 2b03 cmp r3, #3 - 800895a: d106 bne.n 800896a + 80087d8: 687b ldr r3, [r7, #4] + 80087da: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80087de: b2db uxtb r3, r3 + 80087e0: 2b03 cmp r3, #3 + 80087e2: d106 bne.n 80087f2 { hhid->AltSetting = (uint8_t)(req->wValue); - 800895c: 683b ldr r3, [r7, #0] - 800895e: 885b ldrh r3, [r3, #2] - 8008960: b2db uxtb r3, r3 - 8008962: 461a mov r2, r3 - 8008964: 68fb ldr r3, [r7, #12] - 8008966: 609a str r2, [r3, #8] + 80087e4: 683b ldr r3, [r7, #0] + 80087e6: 885b ldrh r3, [r3, #2] + 80087e8: b2db uxtb r3, r3 + 80087ea: 461a mov r2, r3 + 80087ec: 68fb ldr r3, [r7, #12] + 80087ee: 609a str r2, [r3, #8] else { USBD_CtlError(pdev, req); ret = USBD_FAIL; } break; - 8008968: e00e b.n 8008988 + 80087f0: e00e b.n 8008810 USBD_CtlError(pdev, req); - 800896a: 6839 ldr r1, [r7, #0] - 800896c: 6878 ldr r0, [r7, #4] - 800896e: f001 fb06 bl 8009f7e + 80087f2: 6839 ldr r1, [r7, #0] + 80087f4: 6878 ldr r0, [r7, #4] + 80087f6: f001 fb06 bl 8009e06 ret = USBD_FAIL; - 8008972: 2303 movs r3, #3 - 8008974: 75fb strb r3, [r7, #23] + 80087fa: 2303 movs r3, #3 + 80087fc: 75fb strb r3, [r7, #23] break; - 8008976: e007 b.n 8008988 + 80087fe: e007 b.n 8008810 case USB_REQ_CLEAR_FEATURE: break; default: USBD_CtlError(pdev, req); - 8008978: 6839 ldr r1, [r7, #0] - 800897a: 6878 ldr r0, [r7, #4] - 800897c: f001 faff bl 8009f7e + 8008800: 6839 ldr r1, [r7, #0] + 8008802: 6878 ldr r0, [r7, #4] + 8008804: f001 faff bl 8009e06 ret = USBD_FAIL; - 8008980: 2303 movs r3, #3 - 8008982: 75fb strb r3, [r7, #23] + 8008808: 2303 movs r3, #3 + 800880a: 75fb strb r3, [r7, #23] break; - 8008984: e000 b.n 8008988 + 800880c: e000 b.n 8008810 break; - 8008986: bf00 nop + 800880e: bf00 nop } break; - 8008988: e006 b.n 8008998 + 8008810: e006 b.n 8008820 default: USBD_CtlError(pdev, req); - 800898a: 6839 ldr r1, [r7, #0] - 800898c: 6878 ldr r0, [r7, #4] - 800898e: f001 faf6 bl 8009f7e + 8008812: 6839 ldr r1, [r7, #0] + 8008814: 6878 ldr r0, [r7, #4] + 8008816: f001 faf6 bl 8009e06 ret = USBD_FAIL; - 8008992: 2303 movs r3, #3 - 8008994: 75fb strb r3, [r7, #23] + 800881a: 2303 movs r3, #3 + 800881c: 75fb strb r3, [r7, #23] break; - 8008996: bf00 nop + 800881e: bf00 nop } return (uint8_t)ret; - 8008998: 7dfb ldrb r3, [r7, #23] + 8008820: 7dfb ldrb r3, [r7, #23] } - 800899a: 4618 mov r0, r3 - 800899c: 3718 adds r7, #24 - 800899e: 46bd mov sp, r7 - 80089a0: bd80 pop {r7, pc} - 80089a2: bf00 nop - 80089a4: 20000110 .word 0x20000110 - 80089a8: 200000f8 .word 0x200000f8 + 8008822: 4618 mov r0, r3 + 8008824: 3718 adds r7, #24 + 8008826: 46bd mov sp, r7 + 8008828: bd80 pop {r7, pc} + 800882a: bf00 nop + 800882c: 20000110 .word 0x20000110 + 8008830: 200000f8 .word 0x200000f8 -080089ac : +08008834 : uint8_t USBD_HID_SendReport(USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len, uint8_t ClassId) { USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[ClassId]; #else uint8_t USBD_HID_SendReport(USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len) { - 80089ac: b580 push {r7, lr} - 80089ae: b086 sub sp, #24 - 80089b0: af00 add r7, sp, #0 - 80089b2: 60f8 str r0, [r7, #12] - 80089b4: 60b9 str r1, [r7, #8] - 80089b6: 4613 mov r3, r2 - 80089b8: 80fb strh r3, [r7, #6] + 8008834: b580 push {r7, lr} + 8008836: b086 sub sp, #24 + 8008838: af00 add r7, sp, #0 + 800883a: 60f8 str r0, [r7, #12] + 800883c: 60b9 str r1, [r7, #8] + 800883e: 4613 mov r3, r2 + 8008840: 80fb strh r3, [r7, #6] USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; - 80089ba: 68fb ldr r3, [r7, #12] - 80089bc: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80089c0: 68fb ldr r3, [r7, #12] - 80089c2: 32b0 adds r2, #176 @ 0xb0 - 80089c4: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80089c8: 617b str r3, [r7, #20] + 8008842: 68fb ldr r3, [r7, #12] + 8008844: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008848: 68fb ldr r3, [r7, #12] + 800884a: 32b0 adds r2, #176 @ 0xb0 + 800884c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008850: 617b str r3, [r7, #20] #endif /* USE_USBD_COMPOSITE */ if (hhid == NULL) - 80089ca: 697b ldr r3, [r7, #20] - 80089cc: 2b00 cmp r3, #0 - 80089ce: d101 bne.n 80089d4 + 8008852: 697b ldr r3, [r7, #20] + 8008854: 2b00 cmp r3, #0 + 8008856: d101 bne.n 800885c { return (uint8_t)USBD_FAIL; - 80089d0: 2303 movs r3, #3 - 80089d2: e014 b.n 80089fe + 8008858: 2303 movs r3, #3 + 800885a: e014 b.n 8008886 #ifdef USE_USBD_COMPOSITE /* Get the Endpoints addresses allocated for this class instance */ HIDInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR, ClassId); #endif /* USE_USBD_COMPOSITE */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80089d4: 68fb ldr r3, [r7, #12] - 80089d6: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80089da: b2db uxtb r3, r3 - 80089dc: 2b03 cmp r3, #3 - 80089de: d10d bne.n 80089fc + 800885c: 68fb ldr r3, [r7, #12] + 800885e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008862: b2db uxtb r3, r3 + 8008864: 2b03 cmp r3, #3 + 8008866: d10d bne.n 8008884 { if (hhid->state == USBD_HID_IDLE) - 80089e0: 697b ldr r3, [r7, #20] - 80089e2: 7b1b ldrb r3, [r3, #12] - 80089e4: 2b00 cmp r3, #0 - 80089e6: d109 bne.n 80089fc + 8008868: 697b ldr r3, [r7, #20] + 800886a: 7b1b ldrb r3, [r3, #12] + 800886c: 2b00 cmp r3, #0 + 800886e: d109 bne.n 8008884 { hhid->state = USBD_HID_BUSY; - 80089e8: 697b ldr r3, [r7, #20] - 80089ea: 2201 movs r2, #1 - 80089ec: 731a strb r2, [r3, #12] + 8008870: 697b ldr r3, [r7, #20] + 8008872: 2201 movs r2, #1 + 8008874: 731a strb r2, [r3, #12] (void)USBD_LL_Transmit(pdev, HIDInEpAdd, report, len); - 80089ee: 4b06 ldr r3, [pc, #24] @ (8008a08 ) - 80089f0: 7819 ldrb r1, [r3, #0] - 80089f2: 88fb ldrh r3, [r7, #6] - 80089f4: 68ba ldr r2, [r7, #8] - 80089f6: 68f8 ldr r0, [r7, #12] - 80089f8: f001 ff7d bl 800a8f6 + 8008876: 4b06 ldr r3, [pc, #24] @ (8008890 ) + 8008878: 7819 ldrb r1, [r3, #0] + 800887a: 88fb ldrh r3, [r7, #6] + 800887c: 68ba ldr r2, [r7, #8] + 800887e: 68f8 ldr r0, [r7, #12] + 8008880: f001 ff7d bl 800a77e } } return (uint8_t)USBD_OK; - 80089fc: 2300 movs r3, #0 + 8008884: 2300 movs r3, #0 } - 80089fe: 4618 mov r0, r3 - 8008a00: 3718 adds r7, #24 - 8008a02: 46bd mov sp, r7 - 8008a04: bd80 pop {r7, pc} - 8008a06: bf00 nop - 8008a08: 2000013d .word 0x2000013d + 8008886: 4618 mov r0, r3 + 8008888: 3718 adds r7, #24 + 800888a: 46bd mov sp, r7 + 800888c: bd80 pop {r7, pc} + 800888e: bf00 nop + 8008890: 2000013d .word 0x2000013d -08008a0c : +08008894 : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetFSCfgDesc(uint16_t *length) { - 8008a0c: b580 push {r7, lr} - 8008a0e: b084 sub sp, #16 - 8008a10: af00 add r7, sp, #0 - 8008a12: 6078 str r0, [r7, #4] + 8008894: b580 push {r7, lr} + 8008896: b084 sub sp, #16 + 8008898: af00 add r7, sp, #0 + 800889a: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 8008a14: 2181 movs r1, #129 @ 0x81 - 8008a16: 4809 ldr r0, [pc, #36] @ (8008a3c ) - 8008a18: f000 fc4e bl 80092b8 - 8008a1c: 60f8 str r0, [r7, #12] + 800889c: 2181 movs r1, #129 @ 0x81 + 800889e: 4809 ldr r0, [pc, #36] @ (80088c4 ) + 80088a0: f000 fc4e bl 8009140 + 80088a4: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 8008a1e: 68fb ldr r3, [r7, #12] - 8008a20: 2b00 cmp r3, #0 - 8008a22: d002 beq.n 8008a2a + 80088a6: 68fb ldr r3, [r7, #12] + 80088a8: 2b00 cmp r3, #0 + 80088aa: d002 beq.n 80088b2 { pEpDesc->bInterval = HID_FS_BINTERVAL; - 8008a24: 68fb ldr r3, [r7, #12] - 8008a26: 220a movs r2, #10 - 8008a28: 719a strb r2, [r3, #6] + 80088ac: 68fb ldr r3, [r7, #12] + 80088ae: 220a movs r2, #10 + 80088b0: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 8008a2a: 687b ldr r3, [r7, #4] - 8008a2c: 2222 movs r2, #34 @ 0x22 - 8008a2e: 801a strh r2, [r3, #0] + 80088b2: 687b ldr r3, [r7, #4] + 80088b4: 2222 movs r2, #34 @ 0x22 + 80088b6: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 8008a30: 4b02 ldr r3, [pc, #8] @ (8008a3c ) + 80088b8: 4b02 ldr r3, [pc, #8] @ (80088c4 ) } - 8008a32: 4618 mov r0, r3 - 8008a34: 3710 adds r7, #16 - 8008a36: 46bd mov sp, r7 - 8008a38: bd80 pop {r7, pc} - 8008a3a: bf00 nop - 8008a3c: 200000d4 .word 0x200000d4 + 80088ba: 4618 mov r0, r3 + 80088bc: 3710 adds r7, #16 + 80088be: 46bd mov sp, r7 + 80088c0: bd80 pop {r7, pc} + 80088c2: bf00 nop + 80088c4: 200000d4 .word 0x200000d4 -08008a40 : +080088c8 : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetHSCfgDesc(uint16_t *length) { - 8008a40: b580 push {r7, lr} - 8008a42: b084 sub sp, #16 - 8008a44: af00 add r7, sp, #0 - 8008a46: 6078 str r0, [r7, #4] + 80088c8: b580 push {r7, lr} + 80088ca: b084 sub sp, #16 + 80088cc: af00 add r7, sp, #0 + 80088ce: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 8008a48: 2181 movs r1, #129 @ 0x81 - 8008a4a: 4809 ldr r0, [pc, #36] @ (8008a70 ) - 8008a4c: f000 fc34 bl 80092b8 - 8008a50: 60f8 str r0, [r7, #12] + 80088d0: 2181 movs r1, #129 @ 0x81 + 80088d2: 4809 ldr r0, [pc, #36] @ (80088f8 ) + 80088d4: f000 fc34 bl 8009140 + 80088d8: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 8008a52: 68fb ldr r3, [r7, #12] - 8008a54: 2b00 cmp r3, #0 - 8008a56: d002 beq.n 8008a5e + 80088da: 68fb ldr r3, [r7, #12] + 80088dc: 2b00 cmp r3, #0 + 80088de: d002 beq.n 80088e6 { pEpDesc->bInterval = HID_HS_BINTERVAL; - 8008a58: 68fb ldr r3, [r7, #12] - 8008a5a: 2207 movs r2, #7 - 8008a5c: 719a strb r2, [r3, #6] + 80088e0: 68fb ldr r3, [r7, #12] + 80088e2: 2207 movs r2, #7 + 80088e4: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 8008a5e: 687b ldr r3, [r7, #4] - 8008a60: 2222 movs r2, #34 @ 0x22 - 8008a62: 801a strh r2, [r3, #0] + 80088e6: 687b ldr r3, [r7, #4] + 80088e8: 2222 movs r2, #34 @ 0x22 + 80088ea: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 8008a64: 4b02 ldr r3, [pc, #8] @ (8008a70 ) + 80088ec: 4b02 ldr r3, [pc, #8] @ (80088f8 ) } - 8008a66: 4618 mov r0, r3 - 8008a68: 3710 adds r7, #16 - 8008a6a: 46bd mov sp, r7 - 8008a6c: bd80 pop {r7, pc} - 8008a6e: bf00 nop - 8008a70: 200000d4 .word 0x200000d4 + 80088ee: 4618 mov r0, r3 + 80088f0: 3710 adds r7, #16 + 80088f2: 46bd mov sp, r7 + 80088f4: bd80 pop {r7, pc} + 80088f6: bf00 nop + 80088f8: 200000d4 .word 0x200000d4 -08008a74 : +080088fc : * @param speed : current device speed * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetOtherSpeedCfgDesc(uint16_t *length) { - 8008a74: b580 push {r7, lr} - 8008a76: b084 sub sp, #16 - 8008a78: af00 add r7, sp, #0 - 8008a7a: 6078 str r0, [r7, #4] + 80088fc: b580 push {r7, lr} + 80088fe: b084 sub sp, #16 + 8008900: af00 add r7, sp, #0 + 8008902: 6078 str r0, [r7, #4] USBD_EpDescTypeDef *pEpDesc = USBD_GetEpDesc(USBD_HID_CfgDesc, HID_EPIN_ADDR); - 8008a7c: 2181 movs r1, #129 @ 0x81 - 8008a7e: 4809 ldr r0, [pc, #36] @ (8008aa4 ) - 8008a80: f000 fc1a bl 80092b8 - 8008a84: 60f8 str r0, [r7, #12] + 8008904: 2181 movs r1, #129 @ 0x81 + 8008906: 4809 ldr r0, [pc, #36] @ (800892c ) + 8008908: f000 fc1a bl 8009140 + 800890c: 60f8 str r0, [r7, #12] if (pEpDesc != NULL) - 8008a86: 68fb ldr r3, [r7, #12] - 8008a88: 2b00 cmp r3, #0 - 8008a8a: d002 beq.n 8008a92 + 800890e: 68fb ldr r3, [r7, #12] + 8008910: 2b00 cmp r3, #0 + 8008912: d002 beq.n 800891a { pEpDesc->bInterval = HID_FS_BINTERVAL; - 8008a8c: 68fb ldr r3, [r7, #12] - 8008a8e: 220a movs r2, #10 - 8008a90: 719a strb r2, [r3, #6] + 8008914: 68fb ldr r3, [r7, #12] + 8008916: 220a movs r2, #10 + 8008918: 719a strb r2, [r3, #6] } *length = (uint16_t)sizeof(USBD_HID_CfgDesc); - 8008a92: 687b ldr r3, [r7, #4] - 8008a94: 2222 movs r2, #34 @ 0x22 - 8008a96: 801a strh r2, [r3, #0] + 800891a: 687b ldr r3, [r7, #4] + 800891c: 2222 movs r2, #34 @ 0x22 + 800891e: 801a strh r2, [r3, #0] return USBD_HID_CfgDesc; - 8008a98: 4b02 ldr r3, [pc, #8] @ (8008aa4 ) + 8008920: 4b02 ldr r3, [pc, #8] @ (800892c ) } - 8008a9a: 4618 mov r0, r3 - 8008a9c: 3710 adds r7, #16 - 8008a9e: 46bd mov sp, r7 - 8008aa0: bd80 pop {r7, pc} - 8008aa2: bf00 nop - 8008aa4: 200000d4 .word 0x200000d4 + 8008922: 4618 mov r0, r3 + 8008924: 3710 adds r7, #16 + 8008926: 46bd mov sp, r7 + 8008928: bd80 pop {r7, pc} + 800892a: bf00 nop + 800892c: 200000d4 .word 0x200000d4 -08008aa8 : +08008930 : * @param pdev: device instance * @param epnum: endpoint index * @retval status */ static uint8_t USBD_HID_DataIn(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 8008aa8: b480 push {r7} - 8008aaa: b083 sub sp, #12 - 8008aac: af00 add r7, sp, #0 - 8008aae: 6078 str r0, [r7, #4] - 8008ab0: 460b mov r3, r1 - 8008ab2: 70fb strb r3, [r7, #3] + 8008930: b480 push {r7} + 8008932: b083 sub sp, #12 + 8008934: af00 add r7, sp, #0 + 8008936: 6078 str r0, [r7, #4] + 8008938: 460b mov r3, r1 + 800893a: 70fb strb r3, [r7, #3] UNUSED(epnum); /* Ensure that the FIFO is empty before a new transfer, this condition could be caused by a new transfer before the end of the previous transfer */ ((USBD_HID_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId])->state = USBD_HID_IDLE; - 8008ab4: 687b ldr r3, [r7, #4] - 8008ab6: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008aba: 687b ldr r3, [r7, #4] - 8008abc: 32b0 adds r2, #176 @ 0xb0 - 8008abe: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008ac2: 2200 movs r2, #0 - 8008ac4: 731a strb r2, [r3, #12] + 800893c: 687b ldr r3, [r7, #4] + 800893e: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008942: 687b ldr r3, [r7, #4] + 8008944: 32b0 adds r2, #176 @ 0xb0 + 8008946: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800894a: 2200 movs r2, #0 + 800894c: 731a strb r2, [r3, #12] return (uint8_t)USBD_OK; - 8008ac6: 2300 movs r3, #0 + 800894e: 2300 movs r3, #0 } - 8008ac8: 4618 mov r0, r3 - 8008aca: 370c adds r7, #12 - 8008acc: 46bd mov sp, r7 - 8008ace: f85d 7b04 ldr.w r7, [sp], #4 - 8008ad2: 4770 bx lr + 8008950: 4618 mov r0, r3 + 8008952: 370c adds r7, #12 + 8008954: 46bd mov sp, r7 + 8008956: f85d 7b04 ldr.w r7, [sp], #4 + 800895a: 4770 bx lr -08008ad4 : +0800895c : * return Device Qualifier descriptor * @param length : pointer data length * @retval pointer to descriptor buffer */ static uint8_t *USBD_HID_GetDeviceQualifierDesc(uint16_t *length) { - 8008ad4: b480 push {r7} - 8008ad6: b083 sub sp, #12 - 8008ad8: af00 add r7, sp, #0 - 8008ada: 6078 str r0, [r7, #4] + 800895c: b480 push {r7} + 800895e: b083 sub sp, #12 + 8008960: af00 add r7, sp, #0 + 8008962: 6078 str r0, [r7, #4] *length = (uint16_t)sizeof(USBD_HID_DeviceQualifierDesc); - 8008adc: 687b ldr r3, [r7, #4] - 8008ade: 220a movs r2, #10 - 8008ae0: 801a strh r2, [r3, #0] + 8008964: 687b ldr r3, [r7, #4] + 8008966: 220a movs r2, #10 + 8008968: 801a strh r2, [r3, #0] return USBD_HID_DeviceQualifierDesc; - 8008ae2: 4b03 ldr r3, [pc, #12] @ (8008af0 ) + 800896a: 4b03 ldr r3, [pc, #12] @ (8008978 ) } - 8008ae4: 4618 mov r0, r3 - 8008ae6: 370c adds r7, #12 - 8008ae8: 46bd mov sp, r7 - 8008aea: f85d 7b04 ldr.w r7, [sp], #4 - 8008aee: 4770 bx lr - 8008af0: 20000104 .word 0x20000104 + 800896c: 4618 mov r0, r3 + 800896e: 370c adds r7, #12 + 8008970: 46bd mov sp, r7 + 8008972: f85d 7b04 ldr.w r7, [sp], #4 + 8008976: 4770 bx lr + 8008978: 20000104 .word 0x20000104 -08008af4 : +0800897c : * @param id: Low level core index * @retval status: USBD Status */ USBD_StatusTypeDef USBD_Init(USBD_HandleTypeDef *pdev, USBD_DescriptorsTypeDef *pdesc, uint8_t id) { - 8008af4: b580 push {r7, lr} - 8008af6: b086 sub sp, #24 - 8008af8: af00 add r7, sp, #0 - 8008afa: 60f8 str r0, [r7, #12] - 8008afc: 60b9 str r1, [r7, #8] - 8008afe: 4613 mov r3, r2 - 8008b00: 71fb strb r3, [r7, #7] + 800897c: b580 push {r7, lr} + 800897e: b086 sub sp, #24 + 8008980: af00 add r7, sp, #0 + 8008982: 60f8 str r0, [r7, #12] + 8008984: 60b9 str r1, [r7, #8] + 8008986: 4613 mov r3, r2 + 8008988: 71fb strb r3, [r7, #7] USBD_StatusTypeDef ret; /* Check whether the USB Host handle is valid */ if (pdev == NULL) - 8008b02: 68fb ldr r3, [r7, #12] - 8008b04: 2b00 cmp r3, #0 - 8008b06: d101 bne.n 8008b0c + 800898a: 68fb ldr r3, [r7, #12] + 800898c: 2b00 cmp r3, #0 + 800898e: d101 bne.n 8008994 { #if (USBD_DEBUG_LEVEL > 1U) USBD_ErrLog("Invalid Device handle"); #endif /* (USBD_DEBUG_LEVEL > 1U) */ return USBD_FAIL; - 8008b08: 2303 movs r3, #3 - 8008b0a: e01f b.n 8008b4c + 8008990: 2303 movs r3, #3 + 8008992: e01f b.n 80089d4 pdev->NumClasses = 0; pdev->classId = 0; } #else /* Unlink previous class*/ pdev->pClass[0] = NULL; - 8008b0c: 68fb ldr r3, [r7, #12] - 8008b0e: 2200 movs r2, #0 - 8008b10: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 + 8008994: 68fb ldr r3, [r7, #12] + 8008996: 2200 movs r2, #0 + 8008998: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 pdev->pUserData[0] = NULL; - 8008b14: 68fb ldr r3, [r7, #12] - 8008b16: 2200 movs r2, #0 - 8008b18: f8c3 22c4 str.w r2, [r3, #708] @ 0x2c4 + 800899c: 68fb ldr r3, [r7, #12] + 800899e: 2200 movs r2, #0 + 80089a0: f8c3 22c4 str.w r2, [r3, #708] @ 0x2c4 #endif /* USE_USBD_COMPOSITE */ pdev->pConfDesc = NULL; - 8008b1c: 68fb ldr r3, [r7, #12] - 8008b1e: 2200 movs r2, #0 - 8008b20: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 + 80089a4: 68fb ldr r3, [r7, #12] + 80089a6: 2200 movs r2, #0 + 80089a8: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 /* Assign USBD Descriptors */ if (pdesc != NULL) - 8008b24: 68bb ldr r3, [r7, #8] - 8008b26: 2b00 cmp r3, #0 - 8008b28: d003 beq.n 8008b32 + 80089ac: 68bb ldr r3, [r7, #8] + 80089ae: 2b00 cmp r3, #0 + 80089b0: d003 beq.n 80089ba { pdev->pDesc = pdesc; - 8008b2a: 68fb ldr r3, [r7, #12] - 8008b2c: 68ba ldr r2, [r7, #8] - 8008b2e: f8c3 22b4 str.w r2, [r3, #692] @ 0x2b4 + 80089b2: 68fb ldr r3, [r7, #12] + 80089b4: 68ba ldr r2, [r7, #8] + 80089b6: f8c3 22b4 str.w r2, [r3, #692] @ 0x2b4 } /* Set Device initial State */ pdev->dev_state = USBD_STATE_DEFAULT; - 8008b32: 68fb ldr r3, [r7, #12] - 8008b34: 2201 movs r2, #1 - 8008b36: f883 229c strb.w r2, [r3, #668] @ 0x29c + 80089ba: 68fb ldr r3, [r7, #12] + 80089bc: 2201 movs r2, #1 + 80089be: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->id = id; - 8008b3a: 68fb ldr r3, [r7, #12] - 8008b3c: 79fa ldrb r2, [r7, #7] - 8008b3e: 701a strb r2, [r3, #0] + 80089c2: 68fb ldr r3, [r7, #12] + 80089c4: 79fa ldrb r2, [r7, #7] + 80089c6: 701a strb r2, [r3, #0] /* Initialize low level driver */ ret = USBD_LL_Init(pdev); - 8008b40: 68f8 ldr r0, [r7, #12] - 8008b42: f001 fda3 bl 800a68c - 8008b46: 4603 mov r3, r0 - 8008b48: 75fb strb r3, [r7, #23] + 80089c8: 68f8 ldr r0, [r7, #12] + 80089ca: f001 fda3 bl 800a514 + 80089ce: 4603 mov r3, r0 + 80089d0: 75fb strb r3, [r7, #23] return ret; - 8008b4a: 7dfb ldrb r3, [r7, #23] + 80089d2: 7dfb ldrb r3, [r7, #23] } - 8008b4c: 4618 mov r0, r3 - 8008b4e: 3718 adds r7, #24 - 8008b50: 46bd mov sp, r7 - 8008b52: bd80 pop {r7, pc} + 80089d4: 4618 mov r0, r3 + 80089d6: 3718 adds r7, #24 + 80089d8: 46bd mov sp, r7 + 80089da: bd80 pop {r7, pc} -08008b54 : +080089dc : * @param pdev: Device Handle * @param pclass: Class handle * @retval USBD Status */ USBD_StatusTypeDef USBD_RegisterClass(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass) { - 8008b54: b580 push {r7, lr} - 8008b56: b084 sub sp, #16 - 8008b58: af00 add r7, sp, #0 - 8008b5a: 6078 str r0, [r7, #4] - 8008b5c: 6039 str r1, [r7, #0] + 80089dc: b580 push {r7, lr} + 80089de: b084 sub sp, #16 + 80089e0: af00 add r7, sp, #0 + 80089e2: 6078 str r0, [r7, #4] + 80089e4: 6039 str r1, [r7, #0] uint16_t len = 0U; - 8008b5e: 2300 movs r3, #0 - 8008b60: 81fb strh r3, [r7, #14] + 80089e6: 2300 movs r3, #0 + 80089e8: 81fb strh r3, [r7, #14] if (pclass == NULL) - 8008b62: 683b ldr r3, [r7, #0] - 8008b64: 2b00 cmp r3, #0 - 8008b66: d101 bne.n 8008b6c + 80089ea: 683b ldr r3, [r7, #0] + 80089ec: 2b00 cmp r3, #0 + 80089ee: d101 bne.n 80089f4 { #if (USBD_DEBUG_LEVEL > 1U) USBD_ErrLog("Invalid Class handle"); #endif /* (USBD_DEBUG_LEVEL > 1U) */ return USBD_FAIL; - 8008b68: 2303 movs r3, #3 - 8008b6a: e025 b.n 8008bb8 + 80089f0: 2303 movs r3, #3 + 80089f2: e025 b.n 8008a40 } /* link the class to the USB Device handle */ pdev->pClass[0] = pclass; - 8008b6c: 687b ldr r3, [r7, #4] - 8008b6e: 683a ldr r2, [r7, #0] - 8008b70: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 + 80089f4: 687b ldr r3, [r7, #4] + 80089f6: 683a ldr r2, [r7, #0] + 80089f8: f8c3 22b8 str.w r2, [r3, #696] @ 0x2b8 if (pdev->pClass[pdev->classId]->GetHSConfigDescriptor != NULL) { pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetHSConfigDescriptor(&len); } #else /* Default USE_USB_FS */ if (pdev->pClass[pdev->classId]->GetFSConfigDescriptor != NULL) - 8008b74: 687b ldr r3, [r7, #4] - 8008b76: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008b7a: 687b ldr r3, [r7, #4] - 8008b7c: 32ae adds r2, #174 @ 0xae - 8008b7e: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008b82: 6adb ldr r3, [r3, #44] @ 0x2c - 8008b84: 2b00 cmp r3, #0 - 8008b86: d00f beq.n 8008ba8 + 80089fc: 687b ldr r3, [r7, #4] + 80089fe: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008a02: 687b ldr r3, [r7, #4] + 8008a04: 32ae adds r2, #174 @ 0xae + 8008a06: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008a0a: 6adb ldr r3, [r3, #44] @ 0x2c + 8008a0c: 2b00 cmp r3, #0 + 8008a0e: d00f beq.n 8008a30 { pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetFSConfigDescriptor(&len); - 8008b88: 687b ldr r3, [r7, #4] - 8008b8a: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8008b8e: 687b ldr r3, [r7, #4] - 8008b90: 32ae adds r2, #174 @ 0xae - 8008b92: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008b96: 6adb ldr r3, [r3, #44] @ 0x2c - 8008b98: f107 020e add.w r2, r7, #14 - 8008b9c: 4610 mov r0, r2 - 8008b9e: 4798 blx r3 - 8008ba0: 4602 mov r2, r0 - 8008ba2: 687b ldr r3, [r7, #4] - 8008ba4: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 + 8008a10: 687b ldr r3, [r7, #4] + 8008a12: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008a16: 687b ldr r3, [r7, #4] + 8008a18: 32ae adds r2, #174 @ 0xae + 8008a1a: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008a1e: 6adb ldr r3, [r3, #44] @ 0x2c + 8008a20: f107 020e add.w r2, r7, #14 + 8008a24: 4610 mov r0, r2 + 8008a26: 4798 blx r3 + 8008a28: 4602 mov r2, r0 + 8008a2a: 687b ldr r3, [r7, #4] + 8008a2c: f8c3 22d0 str.w r2, [r3, #720] @ 0x2d0 } #endif /* USE_USB_FS */ /* Increment the NumClasses */ pdev->NumClasses++; - 8008ba8: 687b ldr r3, [r7, #4] - 8008baa: f8d3 32d8 ldr.w r3, [r3, #728] @ 0x2d8 - 8008bae: 1c5a adds r2, r3, #1 - 8008bb0: 687b ldr r3, [r7, #4] - 8008bb2: f8c3 22d8 str.w r2, [r3, #728] @ 0x2d8 + 8008a30: 687b ldr r3, [r7, #4] + 8008a32: f8d3 32d8 ldr.w r3, [r3, #728] @ 0x2d8 + 8008a36: 1c5a adds r2, r3, #1 + 8008a38: 687b ldr r3, [r7, #4] + 8008a3a: f8c3 22d8 str.w r2, [r3, #728] @ 0x2d8 return USBD_OK; - 8008bb6: 2300 movs r3, #0 + 8008a3e: 2300 movs r3, #0 } - 8008bb8: 4618 mov r0, r3 - 8008bba: 3710 adds r7, #16 - 8008bbc: 46bd mov sp, r7 - 8008bbe: bd80 pop {r7, pc} + 8008a40: 4618 mov r0, r3 + 8008a42: 3710 adds r7, #16 + 8008a44: 46bd mov sp, r7 + 8008a46: bd80 pop {r7, pc} -08008bc0 : +08008a48 : * Start the USB Device Core. * @param pdev: Device Handle * @retval USBD Status */ USBD_StatusTypeDef USBD_Start(USBD_HandleTypeDef *pdev) { - 8008bc0: b580 push {r7, lr} - 8008bc2: b082 sub sp, #8 - 8008bc4: af00 add r7, sp, #0 - 8008bc6: 6078 str r0, [r7, #4] + 8008a48: b580 push {r7, lr} + 8008a4a: b082 sub sp, #8 + 8008a4c: af00 add r7, sp, #0 + 8008a4e: 6078 str r0, [r7, #4] #ifdef USE_USBD_COMPOSITE pdev->classId = 0U; #endif /* USE_USBD_COMPOSITE */ /* Start the low level driver */ return USBD_LL_Start(pdev); - 8008bc8: 6878 ldr r0, [r7, #4] - 8008bca: f001 fdab bl 800a724 - 8008bce: 4603 mov r3, r0 + 8008a50: 6878 ldr r0, [r7, #4] + 8008a52: f001 fdab bl 800a5ac + 8008a56: 4603 mov r3, r0 } - 8008bd0: 4618 mov r0, r3 - 8008bd2: 3708 adds r7, #8 - 8008bd4: 46bd mov sp, r7 - 8008bd6: bd80 pop {r7, pc} + 8008a58: 4618 mov r0, r3 + 8008a5a: 3708 adds r7, #8 + 8008a5c: 46bd mov sp, r7 + 8008a5e: bd80 pop {r7, pc} -08008bd8 : +08008a60 : * Launch test mode process * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_RunTestMode(USBD_HandleTypeDef *pdev) { - 8008bd8: b480 push {r7} - 8008bda: b083 sub sp, #12 - 8008bdc: af00 add r7, sp, #0 - 8008bde: 6078 str r0, [r7, #4] + 8008a60: b480 push {r7} + 8008a62: b083 sub sp, #12 + 8008a64: af00 add r7, sp, #0 + 8008a66: 6078 str r0, [r7, #4] return ret; #else /* Prevent unused argument compilation warning */ UNUSED(pdev); return USBD_OK; - 8008be0: 2300 movs r3, #0 + 8008a68: 2300 movs r3, #0 #endif /* USBD_HS_TESTMODE_ENABLE */ } - 8008be2: 4618 mov r0, r3 - 8008be4: 370c adds r7, #12 - 8008be6: 46bd mov sp, r7 - 8008be8: f85d 7b04 ldr.w r7, [sp], #4 - 8008bec: 4770 bx lr + 8008a6a: 4618 mov r0, r3 + 8008a6c: 370c adds r7, #12 + 8008a6e: 46bd mov sp, r7 + 8008a70: f85d 7b04 ldr.w r7, [sp], #4 + 8008a74: 4770 bx lr -08008bee : +08008a76 : * @param cfgidx: configuration index * @retval status */ USBD_StatusTypeDef USBD_SetClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008bee: b580 push {r7, lr} - 8008bf0: b084 sub sp, #16 - 8008bf2: af00 add r7, sp, #0 - 8008bf4: 6078 str r0, [r7, #4] - 8008bf6: 460b mov r3, r1 - 8008bf8: 70fb strb r3, [r7, #3] + 8008a76: b580 push {r7, lr} + 8008a78: b084 sub sp, #16 + 8008a7a: af00 add r7, sp, #0 + 8008a7c: 6078 str r0, [r7, #4] + 8008a7e: 460b mov r3, r1 + 8008a80: 70fb strb r3, [r7, #3] USBD_StatusTypeDef ret = USBD_OK; - 8008bfa: 2300 movs r3, #0 - 8008bfc: 73fb strb r3, [r7, #15] + 8008a82: 2300 movs r3, #0 + 8008a84: 73fb strb r3, [r7, #15] } } } } #else if (pdev->pClass[0] != NULL) - 8008bfe: 687b ldr r3, [r7, #4] - 8008c00: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008c04: 2b00 cmp r3, #0 - 8008c06: d009 beq.n 8008c1c + 8008a86: 687b ldr r3, [r7, #4] + 8008a88: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008a8c: 2b00 cmp r3, #0 + 8008a8e: d009 beq.n 8008aa4 { /* Set configuration and Start the Class */ ret = (USBD_StatusTypeDef)pdev->pClass[0]->Init(pdev, cfgidx); - 8008c08: 687b ldr r3, [r7, #4] - 8008c0a: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008c0e: 681b ldr r3, [r3, #0] - 8008c10: 78fa ldrb r2, [r7, #3] - 8008c12: 4611 mov r1, r2 - 8008c14: 6878 ldr r0, [r7, #4] - 8008c16: 4798 blx r3 - 8008c18: 4603 mov r3, r0 - 8008c1a: 73fb strb r3, [r7, #15] + 8008a90: 687b ldr r3, [r7, #4] + 8008a92: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008a96: 681b ldr r3, [r3, #0] + 8008a98: 78fa ldrb r2, [r7, #3] + 8008a9a: 4611 mov r1, r2 + 8008a9c: 6878 ldr r0, [r7, #4] + 8008a9e: 4798 blx r3 + 8008aa0: 4603 mov r3, r0 + 8008aa2: 73fb strb r3, [r7, #15] } #endif /* USE_USBD_COMPOSITE */ return ret; - 8008c1c: 7bfb ldrb r3, [r7, #15] + 8008aa4: 7bfb ldrb r3, [r7, #15] } - 8008c1e: 4618 mov r0, r3 - 8008c20: 3710 adds r7, #16 - 8008c22: 46bd mov sp, r7 - 8008c24: bd80 pop {r7, pc} + 8008aa6: 4618 mov r0, r3 + 8008aa8: 3710 adds r7, #16 + 8008aaa: 46bd mov sp, r7 + 8008aac: bd80 pop {r7, pc} -08008c26 : +08008aae : * @param pdev: device instance * @param cfgidx: configuration index * @retval status */ USBD_StatusTypeDef USBD_ClrClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) { - 8008c26: b580 push {r7, lr} - 8008c28: b084 sub sp, #16 - 8008c2a: af00 add r7, sp, #0 - 8008c2c: 6078 str r0, [r7, #4] - 8008c2e: 460b mov r3, r1 - 8008c30: 70fb strb r3, [r7, #3] + 8008aae: b580 push {r7, lr} + 8008ab0: b084 sub sp, #16 + 8008ab2: af00 add r7, sp, #0 + 8008ab4: 6078 str r0, [r7, #4] + 8008ab6: 460b mov r3, r1 + 8008ab8: 70fb strb r3, [r7, #3] USBD_StatusTypeDef ret = USBD_OK; - 8008c32: 2300 movs r3, #0 - 8008c34: 73fb strb r3, [r7, #15] + 8008aba: 2300 movs r3, #0 + 8008abc: 73fb strb r3, [r7, #15] } } } #else /* Clear configuration and De-initialize the Class process */ if (pdev->pClass[0]->DeInit(pdev, cfgidx) != 0U) - 8008c36: 687b ldr r3, [r7, #4] - 8008c38: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008c3c: 685b ldr r3, [r3, #4] - 8008c3e: 78fa ldrb r2, [r7, #3] - 8008c40: 4611 mov r1, r2 - 8008c42: 6878 ldr r0, [r7, #4] - 8008c44: 4798 blx r3 - 8008c46: 4603 mov r3, r0 - 8008c48: 2b00 cmp r3, #0 - 8008c4a: d001 beq.n 8008c50 + 8008abe: 687b ldr r3, [r7, #4] + 8008ac0: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008ac4: 685b ldr r3, [r3, #4] + 8008ac6: 78fa ldrb r2, [r7, #3] + 8008ac8: 4611 mov r1, r2 + 8008aca: 6878 ldr r0, [r7, #4] + 8008acc: 4798 blx r3 + 8008ace: 4603 mov r3, r0 + 8008ad0: 2b00 cmp r3, #0 + 8008ad2: d001 beq.n 8008ad8 { ret = USBD_FAIL; - 8008c4c: 2303 movs r3, #3 - 8008c4e: 73fb strb r3, [r7, #15] + 8008ad4: 2303 movs r3, #3 + 8008ad6: 73fb strb r3, [r7, #15] } #endif /* USE_USBD_COMPOSITE */ return ret; - 8008c50: 7bfb ldrb r3, [r7, #15] + 8008ad8: 7bfb ldrb r3, [r7, #15] } - 8008c52: 4618 mov r0, r3 - 8008c54: 3710 adds r7, #16 - 8008c56: 46bd mov sp, r7 - 8008c58: bd80 pop {r7, pc} + 8008ada: 4618 mov r0, r3 + 8008adc: 3710 adds r7, #16 + 8008ade: 46bd mov sp, r7 + 8008ae0: bd80 pop {r7, pc} -08008c5a : +08008ae2 : * @param pdev: device instance * @param psetup: setup packet buffer pointer * @retval status */ USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup) { - 8008c5a: b580 push {r7, lr} - 8008c5c: b084 sub sp, #16 - 8008c5e: af00 add r7, sp, #0 - 8008c60: 6078 str r0, [r7, #4] - 8008c62: 6039 str r1, [r7, #0] + 8008ae2: b580 push {r7, lr} + 8008ae4: b084 sub sp, #16 + 8008ae6: af00 add r7, sp, #0 + 8008ae8: 6078 str r0, [r7, #4] + 8008aea: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret; USBD_ParseSetupRequest(&pdev->request, psetup); - 8008c64: 687b ldr r3, [r7, #4] - 8008c66: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008c6a: 6839 ldr r1, [r7, #0] - 8008c6c: 4618 mov r0, r3 - 8008c6e: f001 f94c bl 8009f0a + 8008aec: 687b ldr r3, [r7, #4] + 8008aee: f203 23aa addw r3, r3, #682 @ 0x2aa + 8008af2: 6839 ldr r1, [r7, #0] + 8008af4: 4618 mov r0, r3 + 8008af6: f001 f94c bl 8009d92 pdev->ep0_state = USBD_EP0_SETUP; - 8008c72: 687b ldr r3, [r7, #4] - 8008c74: 2201 movs r2, #1 - 8008c76: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8008afa: 687b ldr r3, [r7, #4] + 8008afc: 2201 movs r2, #1 + 8008afe: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->ep0_data_len = pdev->request.wLength; - 8008c7a: 687b ldr r3, [r7, #4] - 8008c7c: f8b3 32b0 ldrh.w r3, [r3, #688] @ 0x2b0 - 8008c80: 461a mov r2, r3 - 8008c82: 687b ldr r3, [r7, #4] - 8008c84: f8c3 2298 str.w r2, [r3, #664] @ 0x298 + 8008b02: 687b ldr r3, [r7, #4] + 8008b04: f8b3 32b0 ldrh.w r3, [r3, #688] @ 0x2b0 + 8008b08: 461a mov r2, r3 + 8008b0a: 687b ldr r3, [r7, #4] + 8008b0c: f8c3 2298 str.w r2, [r3, #664] @ 0x298 switch (pdev->request.bmRequest & 0x1FU) - 8008c88: 687b ldr r3, [r7, #4] - 8008c8a: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008c8e: f003 031f and.w r3, r3, #31 - 8008c92: 2b02 cmp r3, #2 - 8008c94: d01a beq.n 8008ccc - 8008c96: 2b02 cmp r3, #2 - 8008c98: d822 bhi.n 8008ce0 - 8008c9a: 2b00 cmp r3, #0 - 8008c9c: d002 beq.n 8008ca4 - 8008c9e: 2b01 cmp r3, #1 - 8008ca0: d00a beq.n 8008cb8 - 8008ca2: e01d b.n 8008ce0 + 8008b10: 687b ldr r3, [r7, #4] + 8008b12: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 8008b16: f003 031f and.w r3, r3, #31 + 8008b1a: 2b02 cmp r3, #2 + 8008b1c: d01a beq.n 8008b54 + 8008b1e: 2b02 cmp r3, #2 + 8008b20: d822 bhi.n 8008b68 + 8008b22: 2b00 cmp r3, #0 + 8008b24: d002 beq.n 8008b2c + 8008b26: 2b01 cmp r3, #1 + 8008b28: d00a beq.n 8008b40 + 8008b2a: e01d b.n 8008b68 { case USB_REQ_RECIPIENT_DEVICE: ret = USBD_StdDevReq(pdev, &pdev->request); - 8008ca4: 687b ldr r3, [r7, #4] - 8008ca6: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008caa: 4619 mov r1, r3 - 8008cac: 6878 ldr r0, [r7, #4] - 8008cae: f000 fb77 bl 80093a0 - 8008cb2: 4603 mov r3, r0 - 8008cb4: 73fb strb r3, [r7, #15] + 8008b2c: 687b ldr r3, [r7, #4] + 8008b2e: f203 23aa addw r3, r3, #682 @ 0x2aa + 8008b32: 4619 mov r1, r3 + 8008b34: 6878 ldr r0, [r7, #4] + 8008b36: f000 fb77 bl 8009228 + 8008b3a: 4603 mov r3, r0 + 8008b3c: 73fb strb r3, [r7, #15] break; - 8008cb6: e020 b.n 8008cfa + 8008b3e: e020 b.n 8008b82 case USB_REQ_RECIPIENT_INTERFACE: ret = USBD_StdItfReq(pdev, &pdev->request); - 8008cb8: 687b ldr r3, [r7, #4] - 8008cba: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008cbe: 4619 mov r1, r3 - 8008cc0: 6878 ldr r0, [r7, #4] - 8008cc2: f000 fbdf bl 8009484 - 8008cc6: 4603 mov r3, r0 - 8008cc8: 73fb strb r3, [r7, #15] + 8008b40: 687b ldr r3, [r7, #4] + 8008b42: f203 23aa addw r3, r3, #682 @ 0x2aa + 8008b46: 4619 mov r1, r3 + 8008b48: 6878 ldr r0, [r7, #4] + 8008b4a: f000 fbdf bl 800930c + 8008b4e: 4603 mov r3, r0 + 8008b50: 73fb strb r3, [r7, #15] break; - 8008cca: e016 b.n 8008cfa + 8008b52: e016 b.n 8008b82 case USB_REQ_RECIPIENT_ENDPOINT: ret = USBD_StdEPReq(pdev, &pdev->request); - 8008ccc: 687b ldr r3, [r7, #4] - 8008cce: f203 23aa addw r3, r3, #682 @ 0x2aa - 8008cd2: 4619 mov r1, r3 - 8008cd4: 6878 ldr r0, [r7, #4] - 8008cd6: f000 fc41 bl 800955c - 8008cda: 4603 mov r3, r0 - 8008cdc: 73fb strb r3, [r7, #15] + 8008b54: 687b ldr r3, [r7, #4] + 8008b56: f203 23aa addw r3, r3, #682 @ 0x2aa + 8008b5a: 4619 mov r1, r3 + 8008b5c: 6878 ldr r0, [r7, #4] + 8008b5e: f000 fc41 bl 80093e4 + 8008b62: 4603 mov r3, r0 + 8008b64: 73fb strb r3, [r7, #15] break; - 8008cde: e00c b.n 8008cfa + 8008b66: e00c b.n 8008b82 default: ret = USBD_LL_StallEP(pdev, (pdev->request.bmRequest & 0x80U)); - 8008ce0: 687b ldr r3, [r7, #4] - 8008ce2: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008ce6: f023 037f bic.w r3, r3, #127 @ 0x7f - 8008cea: b2db uxtb r3, r3 - 8008cec: 4619 mov r1, r3 - 8008cee: 6878 ldr r0, [r7, #4] - 8008cf0: f001 fd78 bl 800a7e4 - 8008cf4: 4603 mov r3, r0 - 8008cf6: 73fb strb r3, [r7, #15] + 8008b68: 687b ldr r3, [r7, #4] + 8008b6a: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 8008b6e: f023 037f bic.w r3, r3, #127 @ 0x7f + 8008b72: b2db uxtb r3, r3 + 8008b74: 4619 mov r1, r3 + 8008b76: 6878 ldr r0, [r7, #4] + 8008b78: f001 fd78 bl 800a66c + 8008b7c: 4603 mov r3, r0 + 8008b7e: 73fb strb r3, [r7, #15] break; - 8008cf8: bf00 nop + 8008b80: bf00 nop } return ret; - 8008cfa: 7bfb ldrb r3, [r7, #15] + 8008b82: 7bfb ldrb r3, [r7, #15] } - 8008cfc: 4618 mov r0, r3 - 8008cfe: 3710 adds r7, #16 - 8008d00: 46bd mov sp, r7 - 8008d02: bd80 pop {r7, pc} + 8008b84: 4618 mov r0, r3 + 8008b86: 3710 adds r7, #16 + 8008b88: 46bd mov sp, r7 + 8008b8a: bd80 pop {r7, pc} -08008d04 : +08008b8c : * @param pdata: data pointer * @retval status */ USBD_StatusTypeDef USBD_LL_DataOutStage(USBD_HandleTypeDef *pdev, uint8_t epnum, uint8_t *pdata) +{ + 8008b8c: b580 push {r7, lr} + 8008b8e: b086 sub sp, #24 + 8008b90: af00 add r7, sp, #0 + 8008b92: 60f8 str r0, [r7, #12] + 8008b94: 460b mov r3, r1 + 8008b96: 607a str r2, [r7, #4] + 8008b98: 72fb strb r3, [r7, #11] + USBD_EndpointTypeDef *pep; + USBD_StatusTypeDef ret = USBD_OK; + 8008b9a: 2300 movs r3, #0 + 8008b9c: 75fb strb r3, [r7, #23] + uint8_t idx; + + UNUSED(pdata); + + if (epnum == 0U) + 8008b9e: 7afb ldrb r3, [r7, #11] + 8008ba0: 2b00 cmp r3, #0 + 8008ba2: d177 bne.n 8008c94 + { + pep = &pdev->ep_out[0]; + 8008ba4: 68fb ldr r3, [r7, #12] + 8008ba6: f503 73aa add.w r3, r3, #340 @ 0x154 + 8008baa: 613b str r3, [r7, #16] + + if (pdev->ep0_state == USBD_EP0_DATA_OUT) + 8008bac: 68fb ldr r3, [r7, #12] + 8008bae: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 + 8008bb2: 2b03 cmp r3, #3 + 8008bb4: f040 80a1 bne.w 8008cfa + { + if (pep->rem_length > pep->maxpacket) + 8008bb8: 693b ldr r3, [r7, #16] + 8008bba: 685b ldr r3, [r3, #4] + 8008bbc: 693a ldr r2, [r7, #16] + 8008bbe: 8992 ldrh r2, [r2, #12] + 8008bc0: 4293 cmp r3, r2 + 8008bc2: d91c bls.n 8008bfe + { + pep->rem_length -= pep->maxpacket; + 8008bc4: 693b ldr r3, [r7, #16] + 8008bc6: 685b ldr r3, [r3, #4] + 8008bc8: 693a ldr r2, [r7, #16] + 8008bca: 8992 ldrh r2, [r2, #12] + 8008bcc: 1a9a subs r2, r3, r2 + 8008bce: 693b ldr r3, [r7, #16] + 8008bd0: 605a str r2, [r3, #4] + pep->pbuffer += pep->maxpacket; + 8008bd2: 693b ldr r3, [r7, #16] + 8008bd4: 691b ldr r3, [r3, #16] + 8008bd6: 693a ldr r2, [r7, #16] + 8008bd8: 8992 ldrh r2, [r2, #12] + 8008bda: 441a add r2, r3 + 8008bdc: 693b ldr r3, [r7, #16] + 8008bde: 611a str r2, [r3, #16] + + (void)USBD_CtlContinueRx(pdev, pep->pbuffer, MAX(pep->rem_length, pep->maxpacket)); + 8008be0: 693b ldr r3, [r7, #16] + 8008be2: 6919 ldr r1, [r3, #16] + 8008be4: 693b ldr r3, [r7, #16] + 8008be6: 899b ldrh r3, [r3, #12] + 8008be8: 461a mov r2, r3 + 8008bea: 693b ldr r3, [r7, #16] + 8008bec: 685b ldr r3, [r3, #4] + 8008bee: 4293 cmp r3, r2 + 8008bf0: bf38 it cc + 8008bf2: 4613 movcc r3, r2 + 8008bf4: 461a mov r2, r3 + 8008bf6: 68f8 ldr r0, [r7, #12] + 8008bf8: f001 f9b1 bl 8009f5e + 8008bfc: e07d b.n 8008cfa + } + else + { + /* Find the class ID relative to the current request */ + switch (pdev->request.bmRequest & 0x1FU) + 8008bfe: 68fb ldr r3, [r7, #12] + 8008c00: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa + 8008c04: f003 031f and.w r3, r3, #31 + 8008c08: 2b02 cmp r3, #2 + 8008c0a: d014 beq.n 8008c36 + 8008c0c: 2b02 cmp r3, #2 + 8008c0e: d81d bhi.n 8008c4c + 8008c10: 2b00 cmp r3, #0 + 8008c12: d002 beq.n 8008c1a + 8008c14: 2b01 cmp r3, #1 + 8008c16: d003 beq.n 8008c20 + 8008c18: e018 b.n 8008c4c + { + case USB_REQ_RECIPIENT_DEVICE: + /* Device requests must be managed by the first instantiated class + (or duplicated by all classes for simplicity) */ + idx = 0U; + 8008c1a: 2300 movs r3, #0 + 8008c1c: 75bb strb r3, [r7, #22] + break; + 8008c1e: e018 b.n 8008c52 + + case USB_REQ_RECIPIENT_INTERFACE: + idx = USBD_CoreFindIF(pdev, LOBYTE(pdev->request.wIndex)); + 8008c20: 68fb ldr r3, [r7, #12] + 8008c22: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae + 8008c26: b2db uxtb r3, r3 + 8008c28: 4619 mov r1, r3 + 8008c2a: 68f8 ldr r0, [r7, #12] + 8008c2c: f000 fa6e bl 800910c + 8008c30: 4603 mov r3, r0 + 8008c32: 75bb strb r3, [r7, #22] + break; + 8008c34: e00d b.n 8008c52 + + case USB_REQ_RECIPIENT_ENDPOINT: + idx = USBD_CoreFindEP(pdev, LOBYTE(pdev->request.wIndex)); + 8008c36: 68fb ldr r3, [r7, #12] + 8008c38: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae + 8008c3c: b2db uxtb r3, r3 + 8008c3e: 4619 mov r1, r3 + 8008c40: 68f8 ldr r0, [r7, #12] + 8008c42: f000 fa70 bl 8009126 + 8008c46: 4603 mov r3, r0 + 8008c48: 75bb strb r3, [r7, #22] + break; + 8008c4a: e002 b.n 8008c52 + + default: + /* Back to the first class in case of doubt */ + idx = 0U; + 8008c4c: 2300 movs r3, #0 + 8008c4e: 75bb strb r3, [r7, #22] + break; + 8008c50: bf00 nop + } + + if (idx < USBD_MAX_SUPPORTED_CLASS) + 8008c52: 7dbb ldrb r3, [r7, #22] + 8008c54: 2b00 cmp r3, #0 + 8008c56: d119 bne.n 8008c8c + { + /* Setup the class ID and route the request to the relative class function */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + 8008c58: 68fb ldr r3, [r7, #12] + 8008c5a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008c5e: b2db uxtb r3, r3 + 8008c60: 2b03 cmp r3, #3 + 8008c62: d113 bne.n 8008c8c + { + if (pdev->pClass[idx]->EP0_RxReady != NULL) + 8008c64: 7dba ldrb r2, [r7, #22] + 8008c66: 68fb ldr r3, [r7, #12] + 8008c68: 32ae adds r2, #174 @ 0xae + 8008c6a: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008c6e: 691b ldr r3, [r3, #16] + 8008c70: 2b00 cmp r3, #0 + 8008c72: d00b beq.n 8008c8c + { + pdev->classId = idx; + 8008c74: 7dba ldrb r2, [r7, #22] + 8008c76: 68fb ldr r3, [r7, #12] + 8008c78: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + pdev->pClass[idx]->EP0_RxReady(pdev); + 8008c7c: 7dba ldrb r2, [r7, #22] + 8008c7e: 68fb ldr r3, [r7, #12] + 8008c80: 32ae adds r2, #174 @ 0xae + 8008c82: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008c86: 691b ldr r3, [r3, #16] + 8008c88: 68f8 ldr r0, [r7, #12] + 8008c8a: 4798 blx r3 + } + } + } + + (void)USBD_CtlSendStatus(pdev); + 8008c8c: 68f8 ldr r0, [r7, #12] + 8008c8e: f001 f977 bl 8009f80 + 8008c92: e032 b.n 8008cfa + } + } + else + { + /* Get the class index relative to this interface */ + idx = USBD_CoreFindEP(pdev, (epnum & 0x7FU)); + 8008c94: 7afb ldrb r3, [r7, #11] + 8008c96: f003 037f and.w r3, r3, #127 @ 0x7f + 8008c9a: b2db uxtb r3, r3 + 8008c9c: 4619 mov r1, r3 + 8008c9e: 68f8 ldr r0, [r7, #12] + 8008ca0: f000 fa41 bl 8009126 + 8008ca4: 4603 mov r3, r0 + 8008ca6: 75bb strb r3, [r7, #22] + + if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + 8008ca8: 7dbb ldrb r3, [r7, #22] + 8008caa: 2bff cmp r3, #255 @ 0xff + 8008cac: d025 beq.n 8008cfa + 8008cae: 7dbb ldrb r3, [r7, #22] + 8008cb0: 2b00 cmp r3, #0 + 8008cb2: d122 bne.n 8008cfa + { + /* Call the class data out function to manage the request */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + 8008cb4: 68fb ldr r3, [r7, #12] + 8008cb6: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008cba: b2db uxtb r3, r3 + 8008cbc: 2b03 cmp r3, #3 + 8008cbe: d117 bne.n 8008cf0 + { + if (pdev->pClass[idx]->DataOut != NULL) + 8008cc0: 7dba ldrb r2, [r7, #22] + 8008cc2: 68fb ldr r3, [r7, #12] + 8008cc4: 32ae adds r2, #174 @ 0xae + 8008cc6: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008cca: 699b ldr r3, [r3, #24] + 8008ccc: 2b00 cmp r3, #0 + 8008cce: d00f beq.n 8008cf0 + { + pdev->classId = idx; + 8008cd0: 7dba ldrb r2, [r7, #22] + 8008cd2: 68fb ldr r3, [r7, #12] + 8008cd4: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataOut(pdev, epnum); + 8008cd8: 7dba ldrb r2, [r7, #22] + 8008cda: 68fb ldr r3, [r7, #12] + 8008cdc: 32ae adds r2, #174 @ 0xae + 8008cde: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008ce2: 699b ldr r3, [r3, #24] + 8008ce4: 7afa ldrb r2, [r7, #11] + 8008ce6: 4611 mov r1, r2 + 8008ce8: 68f8 ldr r0, [r7, #12] + 8008cea: 4798 blx r3 + 8008cec: 4603 mov r3, r0 + 8008cee: 75fb strb r3, [r7, #23] + } + } + if (ret != USBD_OK) + 8008cf0: 7dfb ldrb r3, [r7, #23] + 8008cf2: 2b00 cmp r3, #0 + 8008cf4: d001 beq.n 8008cfa + { + return ret; + 8008cf6: 7dfb ldrb r3, [r7, #23] + 8008cf8: e000 b.n 8008cfc + } + } + } + + return USBD_OK; + 8008cfa: 2300 movs r3, #0 +} + 8008cfc: 4618 mov r0, r3 + 8008cfe: 3718 adds r7, #24 + 8008d00: 46bd mov sp, r7 + 8008d02: bd80 pop {r7, pc} + +08008d04 : + * @param pdata: data pointer + * @retval status + */ +USBD_StatusTypeDef USBD_LL_DataInStage(USBD_HandleTypeDef *pdev, + uint8_t epnum, uint8_t *pdata) { 8008d04: b580 push {r7, lr} 8008d06: b086 sub sp, #24 @@ -23178,5490 +23141,5230 @@ USBD_StatusTypeDef USBD_LL_DataOutStage(USBD_HandleTypeDef *pdev, 8008d0c: 460b mov r3, r1 8008d0e: 607a str r2, [r7, #4] 8008d10: 72fb strb r3, [r7, #11] - USBD_EndpointTypeDef *pep; - USBD_StatusTypeDef ret = USBD_OK; - 8008d12: 2300 movs r3, #0 - 8008d14: 75fb strb r3, [r7, #23] - uint8_t idx; - - UNUSED(pdata); - - if (epnum == 0U) - 8008d16: 7afb ldrb r3, [r7, #11] - 8008d18: 2b00 cmp r3, #0 - 8008d1a: d177 bne.n 8008e0c - { - pep = &pdev->ep_out[0]; - 8008d1c: 68fb ldr r3, [r7, #12] - 8008d1e: f503 73aa add.w r3, r3, #340 @ 0x154 - 8008d22: 613b str r3, [r7, #16] - - if (pdev->ep0_state == USBD_EP0_DATA_OUT) - 8008d24: 68fb ldr r3, [r7, #12] - 8008d26: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 - 8008d2a: 2b03 cmp r3, #3 - 8008d2c: f040 80a1 bne.w 8008e72 - { - if (pep->rem_length > pep->maxpacket) - 8008d30: 693b ldr r3, [r7, #16] - 8008d32: 685b ldr r3, [r3, #4] - 8008d34: 693a ldr r2, [r7, #16] - 8008d36: 8992 ldrh r2, [r2, #12] - 8008d38: 4293 cmp r3, r2 - 8008d3a: d91c bls.n 8008d76 - { - pep->rem_length -= pep->maxpacket; - 8008d3c: 693b ldr r3, [r7, #16] - 8008d3e: 685b ldr r3, [r3, #4] - 8008d40: 693a ldr r2, [r7, #16] - 8008d42: 8992 ldrh r2, [r2, #12] - 8008d44: 1a9a subs r2, r3, r2 - 8008d46: 693b ldr r3, [r7, #16] - 8008d48: 605a str r2, [r3, #4] - pep->pbuffer += pep->maxpacket; - 8008d4a: 693b ldr r3, [r7, #16] - 8008d4c: 691b ldr r3, [r3, #16] - 8008d4e: 693a ldr r2, [r7, #16] - 8008d50: 8992 ldrh r2, [r2, #12] - 8008d52: 441a add r2, r3 - 8008d54: 693b ldr r3, [r7, #16] - 8008d56: 611a str r2, [r3, #16] - - (void)USBD_CtlContinueRx(pdev, pep->pbuffer, MAX(pep->rem_length, pep->maxpacket)); - 8008d58: 693b ldr r3, [r7, #16] - 8008d5a: 6919 ldr r1, [r3, #16] - 8008d5c: 693b ldr r3, [r7, #16] - 8008d5e: 899b ldrh r3, [r3, #12] - 8008d60: 461a mov r2, r3 - 8008d62: 693b ldr r3, [r7, #16] - 8008d64: 685b ldr r3, [r3, #4] - 8008d66: 4293 cmp r3, r2 - 8008d68: bf38 it cc - 8008d6a: 4613 movcc r3, r2 - 8008d6c: 461a mov r2, r3 - 8008d6e: 68f8 ldr r0, [r7, #12] - 8008d70: f001 f9b1 bl 800a0d6 - 8008d74: e07d b.n 8008e72 - } - else - { - /* Find the class ID relative to the current request */ - switch (pdev->request.bmRequest & 0x1FU) - 8008d76: 68fb ldr r3, [r7, #12] - 8008d78: f893 32aa ldrb.w r3, [r3, #682] @ 0x2aa - 8008d7c: f003 031f and.w r3, r3, #31 - 8008d80: 2b02 cmp r3, #2 - 8008d82: d014 beq.n 8008dae - 8008d84: 2b02 cmp r3, #2 - 8008d86: d81d bhi.n 8008dc4 - 8008d88: 2b00 cmp r3, #0 - 8008d8a: d002 beq.n 8008d92 - 8008d8c: 2b01 cmp r3, #1 - 8008d8e: d003 beq.n 8008d98 - 8008d90: e018 b.n 8008dc4 - { - case USB_REQ_RECIPIENT_DEVICE: - /* Device requests must be managed by the first instantiated class - (or duplicated by all classes for simplicity) */ - idx = 0U; - 8008d92: 2300 movs r3, #0 - 8008d94: 75bb strb r3, [r7, #22] - break; - 8008d96: e018 b.n 8008dca - - case USB_REQ_RECIPIENT_INTERFACE: - idx = USBD_CoreFindIF(pdev, LOBYTE(pdev->request.wIndex)); - 8008d98: 68fb ldr r3, [r7, #12] - 8008d9a: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae - 8008d9e: b2db uxtb r3, r3 - 8008da0: 4619 mov r1, r3 - 8008da2: 68f8 ldr r0, [r7, #12] - 8008da4: f000 fa6e bl 8009284 - 8008da8: 4603 mov r3, r0 - 8008daa: 75bb strb r3, [r7, #22] - break; - 8008dac: e00d b.n 8008dca - - case USB_REQ_RECIPIENT_ENDPOINT: - idx = USBD_CoreFindEP(pdev, LOBYTE(pdev->request.wIndex)); - 8008dae: 68fb ldr r3, [r7, #12] - 8008db0: f8b3 32ae ldrh.w r3, [r3, #686] @ 0x2ae - 8008db4: b2db uxtb r3, r3 - 8008db6: 4619 mov r1, r3 - 8008db8: 68f8 ldr r0, [r7, #12] - 8008dba: f000 fa70 bl 800929e - 8008dbe: 4603 mov r3, r0 - 8008dc0: 75bb strb r3, [r7, #22] - break; - 8008dc2: e002 b.n 8008dca - - default: - /* Back to the first class in case of doubt */ - idx = 0U; - 8008dc4: 2300 movs r3, #0 - 8008dc6: 75bb strb r3, [r7, #22] - break; - 8008dc8: bf00 nop - } - - if (idx < USBD_MAX_SUPPORTED_CLASS) - 8008dca: 7dbb ldrb r3, [r7, #22] - 8008dcc: 2b00 cmp r3, #0 - 8008dce: d119 bne.n 8008e04 - { - /* Setup the class ID and route the request to the relative class function */ - if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008dd0: 68fb ldr r3, [r7, #12] - 8008dd2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008dd6: b2db uxtb r3, r3 - 8008dd8: 2b03 cmp r3, #3 - 8008dda: d113 bne.n 8008e04 - { - if (pdev->pClass[idx]->EP0_RxReady != NULL) - 8008ddc: 7dba ldrb r2, [r7, #22] - 8008dde: 68fb ldr r3, [r7, #12] - 8008de0: 32ae adds r2, #174 @ 0xae - 8008de2: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008de6: 691b ldr r3, [r3, #16] - 8008de8: 2b00 cmp r3, #0 - 8008dea: d00b beq.n 8008e04 - { - pdev->classId = idx; - 8008dec: 7dba ldrb r2, [r7, #22] - 8008dee: 68fb ldr r3, [r7, #12] - 8008df0: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 - pdev->pClass[idx]->EP0_RxReady(pdev); - 8008df4: 7dba ldrb r2, [r7, #22] - 8008df6: 68fb ldr r3, [r7, #12] - 8008df8: 32ae adds r2, #174 @ 0xae - 8008dfa: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008dfe: 691b ldr r3, [r3, #16] - 8008e00: 68f8 ldr r0, [r7, #12] - 8008e02: 4798 blx r3 - } - } - } - - (void)USBD_CtlSendStatus(pdev); - 8008e04: 68f8 ldr r0, [r7, #12] - 8008e06: f001 f977 bl 800a0f8 - 8008e0a: e032 b.n 8008e72 - } - } - else - { - /* Get the class index relative to this interface */ - idx = USBD_CoreFindEP(pdev, (epnum & 0x7FU)); - 8008e0c: 7afb ldrb r3, [r7, #11] - 8008e0e: f003 037f and.w r3, r3, #127 @ 0x7f - 8008e12: b2db uxtb r3, r3 - 8008e14: 4619 mov r1, r3 - 8008e16: 68f8 ldr r0, [r7, #12] - 8008e18: f000 fa41 bl 800929e - 8008e1c: 4603 mov r3, r0 - 8008e1e: 75bb strb r3, [r7, #22] - - if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 8008e20: 7dbb ldrb r3, [r7, #22] - 8008e22: 2bff cmp r3, #255 @ 0xff - 8008e24: d025 beq.n 8008e72 - 8008e26: 7dbb ldrb r3, [r7, #22] - 8008e28: 2b00 cmp r3, #0 - 8008e2a: d122 bne.n 8008e72 - { - /* Call the class data out function to manage the request */ - if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008e2c: 68fb ldr r3, [r7, #12] - 8008e2e: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008e32: b2db uxtb r3, r3 - 8008e34: 2b03 cmp r3, #3 - 8008e36: d117 bne.n 8008e68 - { - if (pdev->pClass[idx]->DataOut != NULL) - 8008e38: 7dba ldrb r2, [r7, #22] - 8008e3a: 68fb ldr r3, [r7, #12] - 8008e3c: 32ae adds r2, #174 @ 0xae - 8008e3e: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008e42: 699b ldr r3, [r3, #24] - 8008e44: 2b00 cmp r3, #0 - 8008e46: d00f beq.n 8008e68 - { - pdev->classId = idx; - 8008e48: 7dba ldrb r2, [r7, #22] - 8008e4a: 68fb ldr r3, [r7, #12] - 8008e4c: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 - ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataOut(pdev, epnum); - 8008e50: 7dba ldrb r2, [r7, #22] - 8008e52: 68fb ldr r3, [r7, #12] - 8008e54: 32ae adds r2, #174 @ 0xae - 8008e56: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008e5a: 699b ldr r3, [r3, #24] - 8008e5c: 7afa ldrb r2, [r7, #11] - 8008e5e: 4611 mov r1, r2 - 8008e60: 68f8 ldr r0, [r7, #12] - 8008e62: 4798 blx r3 - 8008e64: 4603 mov r3, r0 - 8008e66: 75fb strb r3, [r7, #23] - } - } - if (ret != USBD_OK) - 8008e68: 7dfb ldrb r3, [r7, #23] - 8008e6a: 2b00 cmp r3, #0 - 8008e6c: d001 beq.n 8008e72 - { - return ret; - 8008e6e: 7dfb ldrb r3, [r7, #23] - 8008e70: e000 b.n 8008e74 - } - } - } - - return USBD_OK; - 8008e72: 2300 movs r3, #0 -} - 8008e74: 4618 mov r0, r3 - 8008e76: 3718 adds r7, #24 - 8008e78: 46bd mov sp, r7 - 8008e7a: bd80 pop {r7, pc} - -08008e7c : - * @param pdata: data pointer - * @retval status - */ -USBD_StatusTypeDef USBD_LL_DataInStage(USBD_HandleTypeDef *pdev, - uint8_t epnum, uint8_t *pdata) -{ - 8008e7c: b580 push {r7, lr} - 8008e7e: b086 sub sp, #24 - 8008e80: af00 add r7, sp, #0 - 8008e82: 60f8 str r0, [r7, #12] - 8008e84: 460b mov r3, r1 - 8008e86: 607a str r2, [r7, #4] - 8008e88: 72fb strb r3, [r7, #11] USBD_StatusTypeDef ret; uint8_t idx; UNUSED(pdata); if (epnum == 0U) - 8008e8a: 7afb ldrb r3, [r7, #11] - 8008e8c: 2b00 cmp r3, #0 - 8008e8e: d178 bne.n 8008f82 + 8008d12: 7afb ldrb r3, [r7, #11] + 8008d14: 2b00 cmp r3, #0 + 8008d16: d178 bne.n 8008e0a { pep = &pdev->ep_in[0]; - 8008e90: 68fb ldr r3, [r7, #12] - 8008e92: 3314 adds r3, #20 - 8008e94: 613b str r3, [r7, #16] + 8008d18: 68fb ldr r3, [r7, #12] + 8008d1a: 3314 adds r3, #20 + 8008d1c: 613b str r3, [r7, #16] if (pdev->ep0_state == USBD_EP0_DATA_IN) - 8008e96: 68fb ldr r3, [r7, #12] - 8008e98: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 - 8008e9c: 2b02 cmp r3, #2 - 8008e9e: d163 bne.n 8008f68 + 8008d1e: 68fb ldr r3, [r7, #12] + 8008d20: f8d3 3294 ldr.w r3, [r3, #660] @ 0x294 + 8008d24: 2b02 cmp r3, #2 + 8008d26: d163 bne.n 8008df0 { if (pep->rem_length > pep->maxpacket) - 8008ea0: 693b ldr r3, [r7, #16] - 8008ea2: 685b ldr r3, [r3, #4] - 8008ea4: 693a ldr r2, [r7, #16] - 8008ea6: 8992 ldrh r2, [r2, #12] - 8008ea8: 4293 cmp r3, r2 - 8008eaa: d91c bls.n 8008ee6 + 8008d28: 693b ldr r3, [r7, #16] + 8008d2a: 685b ldr r3, [r3, #4] + 8008d2c: 693a ldr r2, [r7, #16] + 8008d2e: 8992 ldrh r2, [r2, #12] + 8008d30: 4293 cmp r3, r2 + 8008d32: d91c bls.n 8008d6e { pep->rem_length -= pep->maxpacket; - 8008eac: 693b ldr r3, [r7, #16] - 8008eae: 685b ldr r3, [r3, #4] - 8008eb0: 693a ldr r2, [r7, #16] - 8008eb2: 8992 ldrh r2, [r2, #12] - 8008eb4: 1a9a subs r2, r3, r2 - 8008eb6: 693b ldr r3, [r7, #16] - 8008eb8: 605a str r2, [r3, #4] + 8008d34: 693b ldr r3, [r7, #16] + 8008d36: 685b ldr r3, [r3, #4] + 8008d38: 693a ldr r2, [r7, #16] + 8008d3a: 8992 ldrh r2, [r2, #12] + 8008d3c: 1a9a subs r2, r3, r2 + 8008d3e: 693b ldr r3, [r7, #16] + 8008d40: 605a str r2, [r3, #4] pep->pbuffer += pep->maxpacket; - 8008eba: 693b ldr r3, [r7, #16] - 8008ebc: 691b ldr r3, [r3, #16] - 8008ebe: 693a ldr r2, [r7, #16] - 8008ec0: 8992 ldrh r2, [r2, #12] - 8008ec2: 441a add r2, r3 - 8008ec4: 693b ldr r3, [r7, #16] - 8008ec6: 611a str r2, [r3, #16] + 8008d42: 693b ldr r3, [r7, #16] + 8008d44: 691b ldr r3, [r3, #16] + 8008d46: 693a ldr r2, [r7, #16] + 8008d48: 8992 ldrh r2, [r2, #12] + 8008d4a: 441a add r2, r3 + 8008d4c: 693b ldr r3, [r7, #16] + 8008d4e: 611a str r2, [r3, #16] (void)USBD_CtlContinueSendData(pdev, pep->pbuffer, pep->rem_length); - 8008ec8: 693b ldr r3, [r7, #16] - 8008eca: 6919 ldr r1, [r3, #16] - 8008ecc: 693b ldr r3, [r7, #16] - 8008ece: 685b ldr r3, [r3, #4] - 8008ed0: 461a mov r2, r3 - 8008ed2: 68f8 ldr r0, [r7, #12] - 8008ed4: f001 f8ee bl 800a0b4 + 8008d50: 693b ldr r3, [r7, #16] + 8008d52: 6919 ldr r1, [r3, #16] + 8008d54: 693b ldr r3, [r7, #16] + 8008d56: 685b ldr r3, [r3, #4] + 8008d58: 461a mov r2, r3 + 8008d5a: 68f8 ldr r0, [r7, #12] + 8008d5c: f001 f8ee bl 8009f3c /* Prepare endpoint for premature end of transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 8008ed8: 2300 movs r3, #0 - 8008eda: 2200 movs r2, #0 - 8008edc: 2100 movs r1, #0 - 8008ede: 68f8 ldr r0, [r7, #12] - 8008ee0: f001 fd2a bl 800a938 - 8008ee4: e040 b.n 8008f68 + 8008d60: 2300 movs r3, #0 + 8008d62: 2200 movs r2, #0 + 8008d64: 2100 movs r1, #0 + 8008d66: 68f8 ldr r0, [r7, #12] + 8008d68: f001 fd2a bl 800a7c0 + 8008d6c: e040 b.n 8008df0 } else { /* last packet is MPS multiple, so send ZLP packet */ if ((pep->maxpacket == pep->rem_length) && - 8008ee6: 693b ldr r3, [r7, #16] - 8008ee8: 899b ldrh r3, [r3, #12] - 8008eea: 461a mov r2, r3 - 8008eec: 693b ldr r3, [r7, #16] - 8008eee: 685b ldr r3, [r3, #4] - 8008ef0: 429a cmp r2, r3 - 8008ef2: d11c bne.n 8008f2e + 8008d6e: 693b ldr r3, [r7, #16] + 8008d70: 899b ldrh r3, [r3, #12] + 8008d72: 461a mov r2, r3 + 8008d74: 693b ldr r3, [r7, #16] + 8008d76: 685b ldr r3, [r3, #4] + 8008d78: 429a cmp r2, r3 + 8008d7a: d11c bne.n 8008db6 (pep->total_length >= pep->maxpacket) && - 8008ef4: 693b ldr r3, [r7, #16] - 8008ef6: 681b ldr r3, [r3, #0] - 8008ef8: 693a ldr r2, [r7, #16] - 8008efa: 8992 ldrh r2, [r2, #12] + 8008d7c: 693b ldr r3, [r7, #16] + 8008d7e: 681b ldr r3, [r3, #0] + 8008d80: 693a ldr r2, [r7, #16] + 8008d82: 8992 ldrh r2, [r2, #12] if ((pep->maxpacket == pep->rem_length) && - 8008efc: 4293 cmp r3, r2 - 8008efe: d316 bcc.n 8008f2e + 8008d84: 4293 cmp r3, r2 + 8008d86: d316 bcc.n 8008db6 (pep->total_length < pdev->ep0_data_len)) - 8008f00: 693b ldr r3, [r7, #16] - 8008f02: 681a ldr r2, [r3, #0] - 8008f04: 68fb ldr r3, [r7, #12] - 8008f06: f8d3 3298 ldr.w r3, [r3, #664] @ 0x298 + 8008d88: 693b ldr r3, [r7, #16] + 8008d8a: 681a ldr r2, [r3, #0] + 8008d8c: 68fb ldr r3, [r7, #12] + 8008d8e: f8d3 3298 ldr.w r3, [r3, #664] @ 0x298 (pep->total_length >= pep->maxpacket) && - 8008f0a: 429a cmp r2, r3 - 8008f0c: d20f bcs.n 8008f2e + 8008d92: 429a cmp r2, r3 + 8008d94: d20f bcs.n 8008db6 { (void)USBD_CtlContinueSendData(pdev, NULL, 0U); - 8008f0e: 2200 movs r2, #0 - 8008f10: 2100 movs r1, #0 - 8008f12: 68f8 ldr r0, [r7, #12] - 8008f14: f001 f8ce bl 800a0b4 + 8008d96: 2200 movs r2, #0 + 8008d98: 2100 movs r1, #0 + 8008d9a: 68f8 ldr r0, [r7, #12] + 8008d9c: f001 f8ce bl 8009f3c pdev->ep0_data_len = 0U; - 8008f18: 68fb ldr r3, [r7, #12] - 8008f1a: 2200 movs r2, #0 - 8008f1c: f8c3 2298 str.w r2, [r3, #664] @ 0x298 + 8008da0: 68fb ldr r3, [r7, #12] + 8008da2: 2200 movs r2, #0 + 8008da4: f8c3 2298 str.w r2, [r3, #664] @ 0x298 /* Prepare endpoint for premature end of transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 8008f20: 2300 movs r3, #0 - 8008f22: 2200 movs r2, #0 - 8008f24: 2100 movs r1, #0 - 8008f26: 68f8 ldr r0, [r7, #12] - 8008f28: f001 fd06 bl 800a938 - 8008f2c: e01c b.n 8008f68 + 8008da8: 2300 movs r3, #0 + 8008daa: 2200 movs r2, #0 + 8008dac: 2100 movs r1, #0 + 8008dae: 68f8 ldr r0, [r7, #12] + 8008db0: f001 fd06 bl 800a7c0 + 8008db4: e01c b.n 8008df0 } else { if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008f2e: 68fb ldr r3, [r7, #12] - 8008f30: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008f34: b2db uxtb r3, r3 - 8008f36: 2b03 cmp r3, #3 - 8008f38: d10f bne.n 8008f5a + 8008db6: 68fb ldr r3, [r7, #12] + 8008db8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008dbc: b2db uxtb r3, r3 + 8008dbe: 2b03 cmp r3, #3 + 8008dc0: d10f bne.n 8008de2 { if (pdev->pClass[0]->EP0_TxSent != NULL) - 8008f3a: 68fb ldr r3, [r7, #12] - 8008f3c: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008f40: 68db ldr r3, [r3, #12] - 8008f42: 2b00 cmp r3, #0 - 8008f44: d009 beq.n 8008f5a + 8008dc2: 68fb ldr r3, [r7, #12] + 8008dc4: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008dc8: 68db ldr r3, [r3, #12] + 8008dca: 2b00 cmp r3, #0 + 8008dcc: d009 beq.n 8008de2 { pdev->classId = 0U; - 8008f46: 68fb ldr r3, [r7, #12] - 8008f48: 2200 movs r2, #0 - 8008f4a: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8008dce: 68fb ldr r3, [r7, #12] + 8008dd0: 2200 movs r2, #0 + 8008dd2: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 pdev->pClass[0]->EP0_TxSent(pdev); - 8008f4e: 68fb ldr r3, [r7, #12] - 8008f50: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8008f54: 68db ldr r3, [r3, #12] - 8008f56: 68f8 ldr r0, [r7, #12] - 8008f58: 4798 blx r3 + 8008dd6: 68fb ldr r3, [r7, #12] + 8008dd8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008ddc: 68db ldr r3, [r3, #12] + 8008dde: 68f8 ldr r0, [r7, #12] + 8008de0: 4798 blx r3 } } (void)USBD_LL_StallEP(pdev, 0x80U); - 8008f5a: 2180 movs r1, #128 @ 0x80 - 8008f5c: 68f8 ldr r0, [r7, #12] - 8008f5e: f001 fc41 bl 800a7e4 + 8008de2: 2180 movs r1, #128 @ 0x80 + 8008de4: 68f8 ldr r0, [r7, #12] + 8008de6: f001 fc41 bl 800a66c (void)USBD_CtlReceiveStatus(pdev); - 8008f62: 68f8 ldr r0, [r7, #12] - 8008f64: f001 f8db bl 800a11e + 8008dea: 68f8 ldr r0, [r7, #12] + 8008dec: f001 f8db bl 8009fa6 } } } if (pdev->dev_test_mode != 0U) - 8008f68: 68fb ldr r3, [r7, #12] - 8008f6a: f893 32a0 ldrb.w r3, [r3, #672] @ 0x2a0 - 8008f6e: 2b00 cmp r3, #0 - 8008f70: d03a beq.n 8008fe8 + 8008df0: 68fb ldr r3, [r7, #12] + 8008df2: f893 32a0 ldrb.w r3, [r3, #672] @ 0x2a0 + 8008df6: 2b00 cmp r3, #0 + 8008df8: d03a beq.n 8008e70 { (void)USBD_RunTestMode(pdev); - 8008f72: 68f8 ldr r0, [r7, #12] - 8008f74: f7ff fe30 bl 8008bd8 + 8008dfa: 68f8 ldr r0, [r7, #12] + 8008dfc: f7ff fe30 bl 8008a60 pdev->dev_test_mode = 0U; - 8008f78: 68fb ldr r3, [r7, #12] - 8008f7a: 2200 movs r2, #0 - 8008f7c: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 - 8008f80: e032 b.n 8008fe8 + 8008e00: 68fb ldr r3, [r7, #12] + 8008e02: 2200 movs r2, #0 + 8008e04: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 8008e08: e032 b.n 8008e70 } } else { /* Get the class index relative to this interface */ idx = USBD_CoreFindEP(pdev, ((uint8_t)epnum | 0x80U)); - 8008f82: 7afb ldrb r3, [r7, #11] - 8008f84: f063 037f orn r3, r3, #127 @ 0x7f - 8008f88: b2db uxtb r3, r3 - 8008f8a: 4619 mov r1, r3 - 8008f8c: 68f8 ldr r0, [r7, #12] - 8008f8e: f000 f986 bl 800929e - 8008f92: 4603 mov r3, r0 - 8008f94: 75fb strb r3, [r7, #23] + 8008e0a: 7afb ldrb r3, [r7, #11] + 8008e0c: f063 037f orn r3, r3, #127 @ 0x7f + 8008e10: b2db uxtb r3, r3 + 8008e12: 4619 mov r1, r3 + 8008e14: 68f8 ldr r0, [r7, #12] + 8008e16: f000 f986 bl 8009126 + 8008e1a: 4603 mov r3, r0 + 8008e1c: 75fb strb r3, [r7, #23] if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 8008f96: 7dfb ldrb r3, [r7, #23] - 8008f98: 2bff cmp r3, #255 @ 0xff - 8008f9a: d025 beq.n 8008fe8 - 8008f9c: 7dfb ldrb r3, [r7, #23] - 8008f9e: 2b00 cmp r3, #0 - 8008fa0: d122 bne.n 8008fe8 + 8008e1e: 7dfb ldrb r3, [r7, #23] + 8008e20: 2bff cmp r3, #255 @ 0xff + 8008e22: d025 beq.n 8008e70 + 8008e24: 7dfb ldrb r3, [r7, #23] + 8008e26: 2b00 cmp r3, #0 + 8008e28: d122 bne.n 8008e70 { /* Call the class data out function to manage the request */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8008fa2: 68fb ldr r3, [r7, #12] - 8008fa4: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8008fa8: b2db uxtb r3, r3 - 8008faa: 2b03 cmp r3, #3 - 8008fac: d11c bne.n 8008fe8 + 8008e2a: 68fb ldr r3, [r7, #12] + 8008e2c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008e30: b2db uxtb r3, r3 + 8008e32: 2b03 cmp r3, #3 + 8008e34: d11c bne.n 8008e70 { if (pdev->pClass[idx]->DataIn != NULL) - 8008fae: 7dfa ldrb r2, [r7, #23] - 8008fb0: 68fb ldr r3, [r7, #12] - 8008fb2: 32ae adds r2, #174 @ 0xae - 8008fb4: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008fb8: 695b ldr r3, [r3, #20] - 8008fba: 2b00 cmp r3, #0 - 8008fbc: d014 beq.n 8008fe8 + 8008e36: 7dfa ldrb r2, [r7, #23] + 8008e38: 68fb ldr r3, [r7, #12] + 8008e3a: 32ae adds r2, #174 @ 0xae + 8008e3c: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008e40: 695b ldr r3, [r3, #20] + 8008e42: 2b00 cmp r3, #0 + 8008e44: d014 beq.n 8008e70 { pdev->classId = idx; - 8008fbe: 7dfa ldrb r2, [r7, #23] - 8008fc0: 68fb ldr r3, [r7, #12] - 8008fc2: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8008e46: 7dfa ldrb r2, [r7, #23] + 8008e48: 68fb ldr r3, [r7, #12] + 8008e4a: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataIn(pdev, epnum); - 8008fc6: 7dfa ldrb r2, [r7, #23] - 8008fc8: 68fb ldr r3, [r7, #12] - 8008fca: 32ae adds r2, #174 @ 0xae - 8008fcc: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8008fd0: 695b ldr r3, [r3, #20] - 8008fd2: 7afa ldrb r2, [r7, #11] - 8008fd4: 4611 mov r1, r2 - 8008fd6: 68f8 ldr r0, [r7, #12] - 8008fd8: 4798 blx r3 - 8008fda: 4603 mov r3, r0 - 8008fdc: 75bb strb r3, [r7, #22] + 8008e4e: 7dfa ldrb r2, [r7, #23] + 8008e50: 68fb ldr r3, [r7, #12] + 8008e52: 32ae adds r2, #174 @ 0xae + 8008e54: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8008e58: 695b ldr r3, [r3, #20] + 8008e5a: 7afa ldrb r2, [r7, #11] + 8008e5c: 4611 mov r1, r2 + 8008e5e: 68f8 ldr r0, [r7, #12] + 8008e60: 4798 blx r3 + 8008e62: 4603 mov r3, r0 + 8008e64: 75bb strb r3, [r7, #22] if (ret != USBD_OK) - 8008fde: 7dbb ldrb r3, [r7, #22] - 8008fe0: 2b00 cmp r3, #0 - 8008fe2: d001 beq.n 8008fe8 + 8008e66: 7dbb ldrb r3, [r7, #22] + 8008e68: 2b00 cmp r3, #0 + 8008e6a: d001 beq.n 8008e70 { return ret; - 8008fe4: 7dbb ldrb r3, [r7, #22] - 8008fe6: e000 b.n 8008fea + 8008e6c: 7dbb ldrb r3, [r7, #22] + 8008e6e: e000 b.n 8008e72 } } } } return USBD_OK; - 8008fe8: 2300 movs r3, #0 + 8008e70: 2300 movs r3, #0 } - 8008fea: 4618 mov r0, r3 - 8008fec: 3718 adds r7, #24 - 8008fee: 46bd mov sp, r7 - 8008ff0: bd80 pop {r7, pc} + 8008e72: 4618 mov r0, r3 + 8008e74: 3718 adds r7, #24 + 8008e76: 46bd mov sp, r7 + 8008e78: bd80 pop {r7, pc} -08008ff2 : +08008e7a : * Handle Reset event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Reset(USBD_HandleTypeDef *pdev) { - 8008ff2: b580 push {r7, lr} - 8008ff4: b084 sub sp, #16 - 8008ff6: af00 add r7, sp, #0 - 8008ff8: 6078 str r0, [r7, #4] + 8008e7a: b580 push {r7, lr} + 8008e7c: b084 sub sp, #16 + 8008e7e: af00 add r7, sp, #0 + 8008e80: 6078 str r0, [r7, #4] USBD_StatusTypeDef ret = USBD_OK; - 8008ffa: 2300 movs r3, #0 - 8008ffc: 73fb strb r3, [r7, #15] + 8008e82: 2300 movs r3, #0 + 8008e84: 73fb strb r3, [r7, #15] /* Upon Reset call user call back */ pdev->dev_state = USBD_STATE_DEFAULT; - 8008ffe: 687b ldr r3, [r7, #4] - 8009000: 2201 movs r2, #1 - 8009002: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8008e86: 687b ldr r3, [r7, #4] + 8008e88: 2201 movs r2, #1 + 8008e8a: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->ep0_state = USBD_EP0_IDLE; - 8009006: 687b ldr r3, [r7, #4] - 8009008: 2200 movs r2, #0 - 800900a: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8008e8e: 687b ldr r3, [r7, #4] + 8008e90: 2200 movs r2, #0 + 8008e92: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->dev_config = 0U; - 800900e: 687b ldr r3, [r7, #4] - 8009010: 2200 movs r2, #0 - 8009012: 605a str r2, [r3, #4] + 8008e96: 687b ldr r3, [r7, #4] + 8008e98: 2200 movs r2, #0 + 8008e9a: 605a str r2, [r3, #4] pdev->dev_remote_wakeup = 0U; - 8009014: 687b ldr r3, [r7, #4] - 8009016: 2200 movs r2, #0 - 8009018: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 8008e9c: 687b ldr r3, [r7, #4] + 8008e9e: 2200 movs r2, #0 + 8008ea0: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 pdev->dev_test_mode = 0U; - 800901c: 687b ldr r3, [r7, #4] - 800901e: 2200 movs r2, #0 - 8009020: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 8008ea4: 687b ldr r3, [r7, #4] + 8008ea6: 2200 movs r2, #0 + 8008ea8: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 } } } #else if (pdev->pClass[0] != NULL) - 8009024: 687b ldr r3, [r7, #4] - 8009026: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800902a: 2b00 cmp r3, #0 - 800902c: d014 beq.n 8009058 + 8008eac: 687b ldr r3, [r7, #4] + 8008eae: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008eb2: 2b00 cmp r3, #0 + 8008eb4: d014 beq.n 8008ee0 { if (pdev->pClass[0]->DeInit != NULL) - 800902e: 687b ldr r3, [r7, #4] - 8009030: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009034: 685b ldr r3, [r3, #4] - 8009036: 2b00 cmp r3, #0 - 8009038: d00e beq.n 8009058 + 8008eb6: 687b ldr r3, [r7, #4] + 8008eb8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008ebc: 685b ldr r3, [r3, #4] + 8008ebe: 2b00 cmp r3, #0 + 8008ec0: d00e beq.n 8008ee0 { if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != USBD_OK) - 800903a: 687b ldr r3, [r7, #4] - 800903c: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009040: 685b ldr r3, [r3, #4] - 8009042: 687a ldr r2, [r7, #4] - 8009044: 6852 ldr r2, [r2, #4] - 8009046: b2d2 uxtb r2, r2 - 8009048: 4611 mov r1, r2 - 800904a: 6878 ldr r0, [r7, #4] - 800904c: 4798 blx r3 - 800904e: 4603 mov r3, r0 - 8009050: 2b00 cmp r3, #0 - 8009052: d001 beq.n 8009058 + 8008ec2: 687b ldr r3, [r7, #4] + 8008ec4: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008ec8: 685b ldr r3, [r3, #4] + 8008eca: 687a ldr r2, [r7, #4] + 8008ecc: 6852 ldr r2, [r2, #4] + 8008ece: b2d2 uxtb r2, r2 + 8008ed0: 4611 mov r1, r2 + 8008ed2: 6878 ldr r0, [r7, #4] + 8008ed4: 4798 blx r3 + 8008ed6: 4603 mov r3, r0 + 8008ed8: 2b00 cmp r3, #0 + 8008eda: d001 beq.n 8008ee0 { ret = USBD_FAIL; - 8009054: 2303 movs r3, #3 - 8009056: 73fb strb r3, [r7, #15] + 8008edc: 2303 movs r3, #3 + 8008ede: 73fb strb r3, [r7, #15] } } #endif /* USE_USBD_COMPOSITE */ /* Open EP0 OUT */ (void)USBD_LL_OpenEP(pdev, 0x00U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); - 8009058: 2340 movs r3, #64 @ 0x40 - 800905a: 2200 movs r2, #0 - 800905c: 2100 movs r1, #0 - 800905e: 6878 ldr r0, [r7, #4] - 8009060: f001 fb7b bl 800a75a + 8008ee0: 2340 movs r3, #64 @ 0x40 + 8008ee2: 2200 movs r2, #0 + 8008ee4: 2100 movs r1, #0 + 8008ee6: 6878 ldr r0, [r7, #4] + 8008ee8: f001 fb7b bl 800a5e2 pdev->ep_out[0x00U & 0xFU].is_used = 1U; - 8009064: 687b ldr r3, [r7, #4] - 8009066: 2201 movs r2, #1 - 8009068: f883 2163 strb.w r2, [r3, #355] @ 0x163 + 8008eec: 687b ldr r3, [r7, #4] + 8008eee: 2201 movs r2, #1 + 8008ef0: f883 2163 strb.w r2, [r3, #355] @ 0x163 pdev->ep_out[0].maxpacket = USB_MAX_EP0_SIZE; - 800906c: 687b ldr r3, [r7, #4] - 800906e: 2240 movs r2, #64 @ 0x40 - 8009070: f8a3 2160 strh.w r2, [r3, #352] @ 0x160 + 8008ef4: 687b ldr r3, [r7, #4] + 8008ef6: 2240 movs r2, #64 @ 0x40 + 8008ef8: f8a3 2160 strh.w r2, [r3, #352] @ 0x160 /* Open EP0 IN */ (void)USBD_LL_OpenEP(pdev, 0x80U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); - 8009074: 2340 movs r3, #64 @ 0x40 - 8009076: 2200 movs r2, #0 - 8009078: 2180 movs r1, #128 @ 0x80 - 800907a: 6878 ldr r0, [r7, #4] - 800907c: f001 fb6d bl 800a75a + 8008efc: 2340 movs r3, #64 @ 0x40 + 8008efe: 2200 movs r2, #0 + 8008f00: 2180 movs r1, #128 @ 0x80 + 8008f02: 6878 ldr r0, [r7, #4] + 8008f04: f001 fb6d bl 800a5e2 pdev->ep_in[0x80U & 0xFU].is_used = 1U; - 8009080: 687b ldr r3, [r7, #4] - 8009082: 2201 movs r2, #1 - 8009084: f883 2023 strb.w r2, [r3, #35] @ 0x23 + 8008f08: 687b ldr r3, [r7, #4] + 8008f0a: 2201 movs r2, #1 + 8008f0c: f883 2023 strb.w r2, [r3, #35] @ 0x23 pdev->ep_in[0].maxpacket = USB_MAX_EP0_SIZE; - 8009088: 687b ldr r3, [r7, #4] - 800908a: 2240 movs r2, #64 @ 0x40 - 800908c: 841a strh r2, [r3, #32] + 8008f10: 687b ldr r3, [r7, #4] + 8008f12: 2240 movs r2, #64 @ 0x40 + 8008f14: 841a strh r2, [r3, #32] return ret; - 800908e: 7bfb ldrb r3, [r7, #15] + 8008f16: 7bfb ldrb r3, [r7, #15] } - 8009090: 4618 mov r0, r3 - 8009092: 3710 adds r7, #16 - 8009094: 46bd mov sp, r7 - 8009096: bd80 pop {r7, pc} + 8008f18: 4618 mov r0, r3 + 8008f1a: 3710 adds r7, #16 + 8008f1c: 46bd mov sp, r7 + 8008f1e: bd80 pop {r7, pc} -08009098 : +08008f20 : * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_SetSpeed(USBD_HandleTypeDef *pdev, USBD_SpeedTypeDef speed) { - 8009098: b480 push {r7} - 800909a: b083 sub sp, #12 - 800909c: af00 add r7, sp, #0 - 800909e: 6078 str r0, [r7, #4] - 80090a0: 460b mov r3, r1 - 80090a2: 70fb strb r3, [r7, #3] + 8008f20: b480 push {r7} + 8008f22: b083 sub sp, #12 + 8008f24: af00 add r7, sp, #0 + 8008f26: 6078 str r0, [r7, #4] + 8008f28: 460b mov r3, r1 + 8008f2a: 70fb strb r3, [r7, #3] pdev->dev_speed = speed; - 80090a4: 687b ldr r3, [r7, #4] - 80090a6: 78fa ldrb r2, [r7, #3] - 80090a8: 741a strb r2, [r3, #16] + 8008f2c: 687b ldr r3, [r7, #4] + 8008f2e: 78fa ldrb r2, [r7, #3] + 8008f30: 741a strb r2, [r3, #16] return USBD_OK; - 80090aa: 2300 movs r3, #0 + 8008f32: 2300 movs r3, #0 } - 80090ac: 4618 mov r0, r3 - 80090ae: 370c adds r7, #12 - 80090b0: 46bd mov sp, r7 - 80090b2: f85d 7b04 ldr.w r7, [sp], #4 - 80090b6: 4770 bx lr + 8008f34: 4618 mov r0, r3 + 8008f36: 370c adds r7, #12 + 8008f38: 46bd mov sp, r7 + 8008f3a: f85d 7b04 ldr.w r7, [sp], #4 + 8008f3e: 4770 bx lr -080090b8 : +08008f40 : * Handle Suspend event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Suspend(USBD_HandleTypeDef *pdev) { - 80090b8: b480 push {r7} - 80090ba: b083 sub sp, #12 - 80090bc: af00 add r7, sp, #0 - 80090be: 6078 str r0, [r7, #4] + 8008f40: b480 push {r7} + 8008f42: b083 sub sp, #12 + 8008f44: af00 add r7, sp, #0 + 8008f46: 6078 str r0, [r7, #4] if (pdev->dev_state != USBD_STATE_SUSPENDED) - 80090c0: 687b ldr r3, [r7, #4] - 80090c2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80090c6: b2db uxtb r3, r3 - 80090c8: 2b04 cmp r3, #4 - 80090ca: d006 beq.n 80090da + 8008f48: 687b ldr r3, [r7, #4] + 8008f4a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008f4e: b2db uxtb r3, r3 + 8008f50: 2b04 cmp r3, #4 + 8008f52: d006 beq.n 8008f62 { pdev->dev_old_state = pdev->dev_state; - 80090cc: 687b ldr r3, [r7, #4] - 80090ce: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80090d2: b2da uxtb r2, r3 - 80090d4: 687b ldr r3, [r7, #4] - 80090d6: f883 229d strb.w r2, [r3, #669] @ 0x29d + 8008f54: 687b ldr r3, [r7, #4] + 8008f56: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008f5a: b2da uxtb r2, r3 + 8008f5c: 687b ldr r3, [r7, #4] + 8008f5e: f883 229d strb.w r2, [r3, #669] @ 0x29d } pdev->dev_state = USBD_STATE_SUSPENDED; - 80090da: 687b ldr r3, [r7, #4] - 80090dc: 2204 movs r2, #4 - 80090de: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8008f62: 687b ldr r3, [r7, #4] + 8008f64: 2204 movs r2, #4 + 8008f66: f883 229c strb.w r2, [r3, #668] @ 0x29c return USBD_OK; - 80090e2: 2300 movs r3, #0 + 8008f6a: 2300 movs r3, #0 } - 80090e4: 4618 mov r0, r3 - 80090e6: 370c adds r7, #12 - 80090e8: 46bd mov sp, r7 - 80090ea: f85d 7b04 ldr.w r7, [sp], #4 - 80090ee: 4770 bx lr + 8008f6c: 4618 mov r0, r3 + 8008f6e: 370c adds r7, #12 + 8008f70: 46bd mov sp, r7 + 8008f72: f85d 7b04 ldr.w r7, [sp], #4 + 8008f76: 4770 bx lr -080090f0 : +08008f78 : * Handle Resume event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_Resume(USBD_HandleTypeDef *pdev) { - 80090f0: b480 push {r7} - 80090f2: b083 sub sp, #12 - 80090f4: af00 add r7, sp, #0 - 80090f6: 6078 str r0, [r7, #4] + 8008f78: b480 push {r7} + 8008f7a: b083 sub sp, #12 + 8008f7c: af00 add r7, sp, #0 + 8008f7e: 6078 str r0, [r7, #4] if (pdev->dev_state == USBD_STATE_SUSPENDED) - 80090f8: 687b ldr r3, [r7, #4] - 80090fa: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80090fe: b2db uxtb r3, r3 - 8009100: 2b04 cmp r3, #4 - 8009102: d106 bne.n 8009112 + 8008f80: 687b ldr r3, [r7, #4] + 8008f82: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008f86: b2db uxtb r3, r3 + 8008f88: 2b04 cmp r3, #4 + 8008f8a: d106 bne.n 8008f9a { pdev->dev_state = pdev->dev_old_state; - 8009104: 687b ldr r3, [r7, #4] - 8009106: f893 329d ldrb.w r3, [r3, #669] @ 0x29d - 800910a: b2da uxtb r2, r3 - 800910c: 687b ldr r3, [r7, #4] - 800910e: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8008f8c: 687b ldr r3, [r7, #4] + 8008f8e: f893 329d ldrb.w r3, [r3, #669] @ 0x29d + 8008f92: b2da uxtb r2, r3 + 8008f94: 687b ldr r3, [r7, #4] + 8008f96: f883 229c strb.w r2, [r3, #668] @ 0x29c } return USBD_OK; - 8009112: 2300 movs r3, #0 + 8008f9a: 2300 movs r3, #0 } - 8009114: 4618 mov r0, r3 - 8009116: 370c adds r7, #12 - 8009118: 46bd mov sp, r7 - 800911a: f85d 7b04 ldr.w r7, [sp], #4 - 800911e: 4770 bx lr + 8008f9c: 4618 mov r0, r3 + 8008f9e: 370c adds r7, #12 + 8008fa0: 46bd mov sp, r7 + 8008fa2: f85d 7b04 ldr.w r7, [sp], #4 + 8008fa6: 4770 bx lr -08009120 : +08008fa8 : * Handle SOF event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_SOF(USBD_HandleTypeDef *pdev) { - 8009120: b580 push {r7, lr} - 8009122: b082 sub sp, #8 - 8009124: af00 add r7, sp, #0 - 8009126: 6078 str r0, [r7, #4] + 8008fa8: b580 push {r7, lr} + 8008faa: b082 sub sp, #8 + 8008fac: af00 add r7, sp, #0 + 8008fae: 6078 str r0, [r7, #4] /* The SOF event can be distributed for all classes that support it */ if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009128: 687b ldr r3, [r7, #4] - 800912a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800912e: b2db uxtb r3, r3 - 8009130: 2b03 cmp r3, #3 - 8009132: d110 bne.n 8009156 + 8008fb0: 687b ldr r3, [r7, #4] + 8008fb2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8008fb6: b2db uxtb r3, r3 + 8008fb8: 2b03 cmp r3, #3 + 8008fba: d110 bne.n 8008fde } } } } #else if (pdev->pClass[0] != NULL) - 8009134: 687b ldr r3, [r7, #4] - 8009136: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800913a: 2b00 cmp r3, #0 - 800913c: d00b beq.n 8009156 + 8008fbc: 687b ldr r3, [r7, #4] + 8008fbe: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fc2: 2b00 cmp r3, #0 + 8008fc4: d00b beq.n 8008fde { if (pdev->pClass[0]->SOF != NULL) - 800913e: 687b ldr r3, [r7, #4] - 8009140: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009144: 69db ldr r3, [r3, #28] - 8009146: 2b00 cmp r3, #0 - 8009148: d005 beq.n 8009156 + 8008fc6: 687b ldr r3, [r7, #4] + 8008fc8: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fcc: 69db ldr r3, [r3, #28] + 8008fce: 2b00 cmp r3, #0 + 8008fd0: d005 beq.n 8008fde { (void)pdev->pClass[0]->SOF(pdev); - 800914a: 687b ldr r3, [r7, #4] - 800914c: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009150: 69db ldr r3, [r3, #28] - 8009152: 6878 ldr r0, [r7, #4] - 8009154: 4798 blx r3 + 8008fd2: 687b ldr r3, [r7, #4] + 8008fd4: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8008fd8: 69db ldr r3, [r3, #28] + 8008fda: 6878 ldr r0, [r7, #4] + 8008fdc: 4798 blx r3 } } #endif /* USE_USBD_COMPOSITE */ } return USBD_OK; - 8009156: 2300 movs r3, #0 + 8008fde: 2300 movs r3, #0 } - 8009158: 4618 mov r0, r3 - 800915a: 3708 adds r7, #8 - 800915c: 46bd mov sp, r7 - 800915e: bd80 pop {r7, pc} + 8008fe0: 4618 mov r0, r3 + 8008fe2: 3708 adds r7, #8 + 8008fe4: 46bd mov sp, r7 + 8008fe6: bd80 pop {r7, pc} -08009160 : +08008fe8 : * @param epnum: Endpoint number * @retval status */ USBD_StatusTypeDef USBD_LL_IsoINIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 8009160: b580 push {r7, lr} - 8009162: b082 sub sp, #8 - 8009164: af00 add r7, sp, #0 - 8009166: 6078 str r0, [r7, #4] - 8009168: 460b mov r3, r1 - 800916a: 70fb strb r3, [r7, #3] + 8008fe8: b580 push {r7, lr} + 8008fea: b082 sub sp, #8 + 8008fec: af00 add r7, sp, #0 + 8008fee: 6078 str r0, [r7, #4] + 8008ff0: 460b mov r3, r1 + 8008ff2: 70fb strb r3, [r7, #3] if (pdev->pClass[pdev->classId] == NULL) - 800916c: 687b ldr r3, [r7, #4] - 800916e: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8009172: 687b ldr r3, [r7, #4] - 8009174: 32ae adds r2, #174 @ 0xae - 8009176: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800917a: 2b00 cmp r3, #0 - 800917c: d101 bne.n 8009182 + 8008ff4: 687b ldr r3, [r7, #4] + 8008ff6: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8008ffa: 687b ldr r3, [r7, #4] + 8008ffc: 32ae adds r2, #174 @ 0xae + 8008ffe: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009002: 2b00 cmp r3, #0 + 8009004: d101 bne.n 800900a { return USBD_FAIL; - 800917e: 2303 movs r3, #3 - 8009180: e01c b.n 80091bc + 8009006: 2303 movs r3, #3 + 8009008: e01c b.n 8009044 } if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009182: 687b ldr r3, [r7, #4] - 8009184: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009188: b2db uxtb r3, r3 - 800918a: 2b03 cmp r3, #3 - 800918c: d115 bne.n 80091ba + 800900a: 687b ldr r3, [r7, #4] + 800900c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009010: b2db uxtb r3, r3 + 8009012: 2b03 cmp r3, #3 + 8009014: d115 bne.n 8009042 { if (pdev->pClass[pdev->classId]->IsoINIncomplete != NULL) - 800918e: 687b ldr r3, [r7, #4] - 8009190: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 8009194: 687b ldr r3, [r7, #4] - 8009196: 32ae adds r2, #174 @ 0xae - 8009198: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800919c: 6a1b ldr r3, [r3, #32] - 800919e: 2b00 cmp r3, #0 - 80091a0: d00b beq.n 80091ba + 8009016: 687b ldr r3, [r7, #4] + 8009018: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 800901c: 687b ldr r3, [r7, #4] + 800901e: 32ae adds r2, #174 @ 0xae + 8009020: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009024: 6a1b ldr r3, [r3, #32] + 8009026: 2b00 cmp r3, #0 + 8009028: d00b beq.n 8009042 { (void)pdev->pClass[pdev->classId]->IsoINIncomplete(pdev, epnum); - 80091a2: 687b ldr r3, [r7, #4] - 80091a4: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80091a8: 687b ldr r3, [r7, #4] - 80091aa: 32ae adds r2, #174 @ 0xae - 80091ac: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80091b0: 6a1b ldr r3, [r3, #32] - 80091b2: 78fa ldrb r2, [r7, #3] - 80091b4: 4611 mov r1, r2 - 80091b6: 6878 ldr r0, [r7, #4] - 80091b8: 4798 blx r3 + 800902a: 687b ldr r3, [r7, #4] + 800902c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009030: 687b ldr r3, [r7, #4] + 8009032: 32ae adds r2, #174 @ 0xae + 8009034: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009038: 6a1b ldr r3, [r3, #32] + 800903a: 78fa ldrb r2, [r7, #3] + 800903c: 4611 mov r1, r2 + 800903e: 6878 ldr r0, [r7, #4] + 8009040: 4798 blx r3 } } return USBD_OK; - 80091ba: 2300 movs r3, #0 + 8009042: 2300 movs r3, #0 } - 80091bc: 4618 mov r0, r3 - 80091be: 3708 adds r7, #8 - 80091c0: 46bd mov sp, r7 - 80091c2: bd80 pop {r7, pc} + 8009044: 4618 mov r0, r3 + 8009046: 3708 adds r7, #8 + 8009048: 46bd mov sp, r7 + 800904a: bd80 pop {r7, pc} -080091c4 : +0800904c : * @param epnum: Endpoint number * @retval status */ USBD_StatusTypeDef USBD_LL_IsoOUTIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum) { - 80091c4: b580 push {r7, lr} - 80091c6: b082 sub sp, #8 - 80091c8: af00 add r7, sp, #0 - 80091ca: 6078 str r0, [r7, #4] - 80091cc: 460b mov r3, r1 - 80091ce: 70fb strb r3, [r7, #3] + 800904c: b580 push {r7, lr} + 800904e: b082 sub sp, #8 + 8009050: af00 add r7, sp, #0 + 8009052: 6078 str r0, [r7, #4] + 8009054: 460b mov r3, r1 + 8009056: 70fb strb r3, [r7, #3] if (pdev->pClass[pdev->classId] == NULL) - 80091d0: 687b ldr r3, [r7, #4] - 80091d2: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80091d6: 687b ldr r3, [r7, #4] - 80091d8: 32ae adds r2, #174 @ 0xae - 80091da: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80091de: 2b00 cmp r3, #0 - 80091e0: d101 bne.n 80091e6 + 8009058: 687b ldr r3, [r7, #4] + 800905a: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 800905e: 687b ldr r3, [r7, #4] + 8009060: 32ae adds r2, #174 @ 0xae + 8009062: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009066: 2b00 cmp r3, #0 + 8009068: d101 bne.n 800906e { return USBD_FAIL; - 80091e2: 2303 movs r3, #3 - 80091e4: e01c b.n 8009220 + 800906a: 2303 movs r3, #3 + 800906c: e01c b.n 80090a8 } if (pdev->dev_state == USBD_STATE_CONFIGURED) - 80091e6: 687b ldr r3, [r7, #4] - 80091e8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80091ec: b2db uxtb r3, r3 - 80091ee: 2b03 cmp r3, #3 - 80091f0: d115 bne.n 800921e + 800906e: 687b ldr r3, [r7, #4] + 8009070: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009074: b2db uxtb r3, r3 + 8009076: 2b03 cmp r3, #3 + 8009078: d115 bne.n 80090a6 { if (pdev->pClass[pdev->classId]->IsoOUTIncomplete != NULL) - 80091f2: 687b ldr r3, [r7, #4] - 80091f4: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80091f8: 687b ldr r3, [r7, #4] - 80091fa: 32ae adds r2, #174 @ 0xae - 80091fc: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009200: 6a5b ldr r3, [r3, #36] @ 0x24 - 8009202: 2b00 cmp r3, #0 - 8009204: d00b beq.n 800921e + 800907a: 687b ldr r3, [r7, #4] + 800907c: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009080: 687b ldr r3, [r7, #4] + 8009082: 32ae adds r2, #174 @ 0xae + 8009084: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009088: 6a5b ldr r3, [r3, #36] @ 0x24 + 800908a: 2b00 cmp r3, #0 + 800908c: d00b beq.n 80090a6 { (void)pdev->pClass[pdev->classId]->IsoOUTIncomplete(pdev, epnum); - 8009206: 687b ldr r3, [r7, #4] - 8009208: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 800920c: 687b ldr r3, [r7, #4] - 800920e: 32ae adds r2, #174 @ 0xae - 8009210: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009214: 6a5b ldr r3, [r3, #36] @ 0x24 - 8009216: 78fa ldrb r2, [r7, #3] - 8009218: 4611 mov r1, r2 - 800921a: 6878 ldr r0, [r7, #4] - 800921c: 4798 blx r3 + 800908e: 687b ldr r3, [r7, #4] + 8009090: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009094: 687b ldr r3, [r7, #4] + 8009096: 32ae adds r2, #174 @ 0xae + 8009098: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800909c: 6a5b ldr r3, [r3, #36] @ 0x24 + 800909e: 78fa ldrb r2, [r7, #3] + 80090a0: 4611 mov r1, r2 + 80090a2: 6878 ldr r0, [r7, #4] + 80090a4: 4798 blx r3 } } return USBD_OK; - 800921e: 2300 movs r3, #0 + 80090a6: 2300 movs r3, #0 } - 8009220: 4618 mov r0, r3 - 8009222: 3708 adds r7, #8 - 8009224: 46bd mov sp, r7 - 8009226: bd80 pop {r7, pc} + 80090a8: 4618 mov r0, r3 + 80090aa: 3708 adds r7, #8 + 80090ac: 46bd mov sp, r7 + 80090ae: bd80 pop {r7, pc} -08009228 : +080090b0 : * Handle device connection event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_DevConnected(USBD_HandleTypeDef *pdev) { - 8009228: b480 push {r7} - 800922a: b083 sub sp, #12 - 800922c: af00 add r7, sp, #0 - 800922e: 6078 str r0, [r7, #4] + 80090b0: b480 push {r7} + 80090b2: b083 sub sp, #12 + 80090b4: af00 add r7, sp, #0 + 80090b6: 6078 str r0, [r7, #4] /* Prevent unused argument compilation warning */ UNUSED(pdev); return USBD_OK; - 8009230: 2300 movs r3, #0 + 80090b8: 2300 movs r3, #0 } - 8009232: 4618 mov r0, r3 - 8009234: 370c adds r7, #12 - 8009236: 46bd mov sp, r7 - 8009238: f85d 7b04 ldr.w r7, [sp], #4 - 800923c: 4770 bx lr + 80090ba: 4618 mov r0, r3 + 80090bc: 370c adds r7, #12 + 80090be: 46bd mov sp, r7 + 80090c0: f85d 7b04 ldr.w r7, [sp], #4 + 80090c4: 4770 bx lr -0800923e : +080090c6 : * Handle device disconnection event * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_LL_DevDisconnected(USBD_HandleTypeDef *pdev) { - 800923e: b580 push {r7, lr} - 8009240: b084 sub sp, #16 - 8009242: af00 add r7, sp, #0 - 8009244: 6078 str r0, [r7, #4] + 80090c6: b580 push {r7, lr} + 80090c8: b084 sub sp, #16 + 80090ca: af00 add r7, sp, #0 + 80090cc: 6078 str r0, [r7, #4] USBD_StatusTypeDef ret = USBD_OK; - 8009246: 2300 movs r3, #0 - 8009248: 73fb strb r3, [r7, #15] + 80090ce: 2300 movs r3, #0 + 80090d0: 73fb strb r3, [r7, #15] /* Free Class Resources */ pdev->dev_state = USBD_STATE_DEFAULT; - 800924a: 687b ldr r3, [r7, #4] - 800924c: 2201 movs r2, #1 - 800924e: f883 229c strb.w r2, [r3, #668] @ 0x29c + 80090d2: 687b ldr r3, [r7, #4] + 80090d4: 2201 movs r2, #1 + 80090d6: f883 229c strb.w r2, [r3, #668] @ 0x29c } } } } #else if (pdev->pClass[0] != NULL) - 8009252: 687b ldr r3, [r7, #4] - 8009254: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009258: 2b00 cmp r3, #0 - 800925a: d00e beq.n 800927a + 80090da: 687b ldr r3, [r7, #4] + 80090dc: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80090e0: 2b00 cmp r3, #0 + 80090e2: d00e beq.n 8009102 { if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != 0U) - 800925c: 687b ldr r3, [r7, #4] - 800925e: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009262: 685b ldr r3, [r3, #4] - 8009264: 687a ldr r2, [r7, #4] - 8009266: 6852 ldr r2, [r2, #4] - 8009268: b2d2 uxtb r2, r2 - 800926a: 4611 mov r1, r2 - 800926c: 6878 ldr r0, [r7, #4] - 800926e: 4798 blx r3 - 8009270: 4603 mov r3, r0 - 8009272: 2b00 cmp r3, #0 - 8009274: d001 beq.n 800927a + 80090e4: 687b ldr r3, [r7, #4] + 80090e6: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80090ea: 685b ldr r3, [r3, #4] + 80090ec: 687a ldr r2, [r7, #4] + 80090ee: 6852 ldr r2, [r2, #4] + 80090f0: b2d2 uxtb r2, r2 + 80090f2: 4611 mov r1, r2 + 80090f4: 6878 ldr r0, [r7, #4] + 80090f6: 4798 blx r3 + 80090f8: 4603 mov r3, r0 + 80090fa: 2b00 cmp r3, #0 + 80090fc: d001 beq.n 8009102 { ret = USBD_FAIL; - 8009276: 2303 movs r3, #3 - 8009278: 73fb strb r3, [r7, #15] + 80090fe: 2303 movs r3, #3 + 8009100: 73fb strb r3, [r7, #15] } } #endif /* USE_USBD_COMPOSITE */ return ret; - 800927a: 7bfb ldrb r3, [r7, #15] + 8009102: 7bfb ldrb r3, [r7, #15] } - 800927c: 4618 mov r0, r3 - 800927e: 3710 adds r7, #16 - 8009280: 46bd mov sp, r7 - 8009282: bd80 pop {r7, pc} + 8009104: 4618 mov r0, r3 + 8009106: 3710 adds r7, #16 + 8009108: 46bd mov sp, r7 + 800910a: bd80 pop {r7, pc} -08009284 : +0800910c : * @param pdev: device instance * @param index : selected interface number * @retval index of the class using the selected interface number. OxFF if no class found. */ uint8_t USBD_CoreFindIF(USBD_HandleTypeDef *pdev, uint8_t index) { - 8009284: b480 push {r7} - 8009286: b083 sub sp, #12 - 8009288: af00 add r7, sp, #0 - 800928a: 6078 str r0, [r7, #4] - 800928c: 460b mov r3, r1 - 800928e: 70fb strb r3, [r7, #3] + 800910c: b480 push {r7} + 800910e: b083 sub sp, #12 + 8009110: af00 add r7, sp, #0 + 8009112: 6078 str r0, [r7, #4] + 8009114: 460b mov r3, r1 + 8009116: 70fb strb r3, [r7, #3] return 0xFFU; #else UNUSED(pdev); UNUSED(index); return 0x00U; - 8009290: 2300 movs r3, #0 + 8009118: 2300 movs r3, #0 #endif /* USE_USBD_COMPOSITE */ } - 8009292: 4618 mov r0, r3 - 8009294: 370c adds r7, #12 - 8009296: 46bd mov sp, r7 - 8009298: f85d 7b04 ldr.w r7, [sp], #4 - 800929c: 4770 bx lr + 800911a: 4618 mov r0, r3 + 800911c: 370c adds r7, #12 + 800911e: 46bd mov sp, r7 + 8009120: f85d 7b04 ldr.w r7, [sp], #4 + 8009124: 4770 bx lr -0800929e : +08009126 : * @param pdev: device instance * @param index : selected endpoint number * @retval index of the class using the selected endpoint number. 0xFF if no class found. */ uint8_t USBD_CoreFindEP(USBD_HandleTypeDef *pdev, uint8_t index) { - 800929e: b480 push {r7} - 80092a0: b083 sub sp, #12 - 80092a2: af00 add r7, sp, #0 - 80092a4: 6078 str r0, [r7, #4] - 80092a6: 460b mov r3, r1 - 80092a8: 70fb strb r3, [r7, #3] + 8009126: b480 push {r7} + 8009128: b083 sub sp, #12 + 800912a: af00 add r7, sp, #0 + 800912c: 6078 str r0, [r7, #4] + 800912e: 460b mov r3, r1 + 8009130: 70fb strb r3, [r7, #3] return 0xFFU; #else UNUSED(pdev); UNUSED(index); return 0x00U; - 80092aa: 2300 movs r3, #0 + 8009132: 2300 movs r3, #0 #endif /* USE_USBD_COMPOSITE */ } - 80092ac: 4618 mov r0, r3 - 80092ae: 370c adds r7, #12 - 80092b0: 46bd mov sp, r7 - 80092b2: f85d 7b04 ldr.w r7, [sp], #4 - 80092b6: 4770 bx lr + 8009134: 4618 mov r0, r3 + 8009136: 370c adds r7, #12 + 8009138: 46bd mov sp, r7 + 800913a: f85d 7b04 ldr.w r7, [sp], #4 + 800913e: 4770 bx lr -080092b8 : +08009140 : * @param pConfDesc: pointer to Bos descriptor * @param EpAddr: endpoint address * @retval pointer to video endpoint descriptor */ void *USBD_GetEpDesc(uint8_t *pConfDesc, uint8_t EpAddr) { - 80092b8: b580 push {r7, lr} - 80092ba: b086 sub sp, #24 - 80092bc: af00 add r7, sp, #0 - 80092be: 6078 str r0, [r7, #4] - 80092c0: 460b mov r3, r1 - 80092c2: 70fb strb r3, [r7, #3] + 8009140: b580 push {r7, lr} + 8009142: b086 sub sp, #24 + 8009144: af00 add r7, sp, #0 + 8009146: 6078 str r0, [r7, #4] + 8009148: 460b mov r3, r1 + 800914a: 70fb strb r3, [r7, #3] USBD_DescHeaderTypeDef *pdesc = (USBD_DescHeaderTypeDef *)(void *)pConfDesc; - 80092c4: 687b ldr r3, [r7, #4] - 80092c6: 617b str r3, [r7, #20] + 800914c: 687b ldr r3, [r7, #4] + 800914e: 617b str r3, [r7, #20] USBD_ConfigDescTypeDef *desc = (USBD_ConfigDescTypeDef *)(void *)pConfDesc; - 80092c8: 687b ldr r3, [r7, #4] - 80092ca: 60fb str r3, [r7, #12] + 8009150: 687b ldr r3, [r7, #4] + 8009152: 60fb str r3, [r7, #12] USBD_EpDescTypeDef *pEpDesc = NULL; - 80092cc: 2300 movs r3, #0 - 80092ce: 613b str r3, [r7, #16] + 8009154: 2300 movs r3, #0 + 8009156: 613b str r3, [r7, #16] uint16_t ptr; if (desc->wTotalLength > desc->bLength) - 80092d0: 68fb ldr r3, [r7, #12] - 80092d2: 885b ldrh r3, [r3, #2] - 80092d4: b29b uxth r3, r3 - 80092d6: 68fa ldr r2, [r7, #12] - 80092d8: 7812 ldrb r2, [r2, #0] - 80092da: 4293 cmp r3, r2 - 80092dc: d91f bls.n 800931e + 8009158: 68fb ldr r3, [r7, #12] + 800915a: 885b ldrh r3, [r3, #2] + 800915c: b29b uxth r3, r3 + 800915e: 68fa ldr r2, [r7, #12] + 8009160: 7812 ldrb r2, [r2, #0] + 8009162: 4293 cmp r3, r2 + 8009164: d91f bls.n 80091a6 { ptr = desc->bLength; - 80092de: 68fb ldr r3, [r7, #12] - 80092e0: 781b ldrb r3, [r3, #0] - 80092e2: 817b strh r3, [r7, #10] + 8009166: 68fb ldr r3, [r7, #12] + 8009168: 781b ldrb r3, [r3, #0] + 800916a: 817b strh r3, [r7, #10] while (ptr < desc->wTotalLength) - 80092e4: e013 b.n 800930e + 800916c: e013 b.n 8009196 { pdesc = USBD_GetNextDesc((uint8_t *)pdesc, &ptr); - 80092e6: f107 030a add.w r3, r7, #10 - 80092ea: 4619 mov r1, r3 - 80092ec: 6978 ldr r0, [r7, #20] - 80092ee: f000 f81b bl 8009328 - 80092f2: 6178 str r0, [r7, #20] + 800916e: f107 030a add.w r3, r7, #10 + 8009172: 4619 mov r1, r3 + 8009174: 6978 ldr r0, [r7, #20] + 8009176: f000 f81b bl 80091b0 + 800917a: 6178 str r0, [r7, #20] if (pdesc->bDescriptorType == USB_DESC_TYPE_ENDPOINT) - 80092f4: 697b ldr r3, [r7, #20] - 80092f6: 785b ldrb r3, [r3, #1] - 80092f8: 2b05 cmp r3, #5 - 80092fa: d108 bne.n 800930e + 800917c: 697b ldr r3, [r7, #20] + 800917e: 785b ldrb r3, [r3, #1] + 8009180: 2b05 cmp r3, #5 + 8009182: d108 bne.n 8009196 { pEpDesc = (USBD_EpDescTypeDef *)(void *)pdesc; - 80092fc: 697b ldr r3, [r7, #20] - 80092fe: 613b str r3, [r7, #16] + 8009184: 697b ldr r3, [r7, #20] + 8009186: 613b str r3, [r7, #16] if (pEpDesc->bEndpointAddress == EpAddr) - 8009300: 693b ldr r3, [r7, #16] - 8009302: 789b ldrb r3, [r3, #2] - 8009304: 78fa ldrb r2, [r7, #3] - 8009306: 429a cmp r2, r3 - 8009308: d008 beq.n 800931c + 8009188: 693b ldr r3, [r7, #16] + 800918a: 789b ldrb r3, [r3, #2] + 800918c: 78fa ldrb r2, [r7, #3] + 800918e: 429a cmp r2, r3 + 8009190: d008 beq.n 80091a4 { break; } else { pEpDesc = NULL; - 800930a: 2300 movs r3, #0 - 800930c: 613b str r3, [r7, #16] + 8009192: 2300 movs r3, #0 + 8009194: 613b str r3, [r7, #16] while (ptr < desc->wTotalLength) - 800930e: 68fb ldr r3, [r7, #12] - 8009310: 885b ldrh r3, [r3, #2] - 8009312: b29a uxth r2, r3 - 8009314: 897b ldrh r3, [r7, #10] - 8009316: 429a cmp r2, r3 - 8009318: d8e5 bhi.n 80092e6 - 800931a: e000 b.n 800931e + 8009196: 68fb ldr r3, [r7, #12] + 8009198: 885b ldrh r3, [r3, #2] + 800919a: b29a uxth r2, r3 + 800919c: 897b ldrh r3, [r7, #10] + 800919e: 429a cmp r2, r3 + 80091a0: d8e5 bhi.n 800916e + 80091a2: e000 b.n 80091a6 break; - 800931c: bf00 nop + 80091a4: bf00 nop } } } } return (void *)pEpDesc; - 800931e: 693b ldr r3, [r7, #16] + 80091a6: 693b ldr r3, [r7, #16] } - 8009320: 4618 mov r0, r3 - 8009322: 3718 adds r7, #24 - 8009324: 46bd mov sp, r7 - 8009326: bd80 pop {r7, pc} + 80091a8: 4618 mov r0, r3 + 80091aa: 3718 adds r7, #24 + 80091ac: 46bd mov sp, r7 + 80091ae: bd80 pop {r7, pc} -08009328 : +080091b0 : * @param buf: Buffer where the descriptor is available * @param ptr: data pointer inside the descriptor * @retval next header */ USBD_DescHeaderTypeDef *USBD_GetNextDesc(uint8_t *pbuf, uint16_t *ptr) { - 8009328: b480 push {r7} - 800932a: b085 sub sp, #20 - 800932c: af00 add r7, sp, #0 - 800932e: 6078 str r0, [r7, #4] - 8009330: 6039 str r1, [r7, #0] + 80091b0: b480 push {r7} + 80091b2: b085 sub sp, #20 + 80091b4: af00 add r7, sp, #0 + 80091b6: 6078 str r0, [r7, #4] + 80091b8: 6039 str r1, [r7, #0] USBD_DescHeaderTypeDef *pnext = (USBD_DescHeaderTypeDef *)(void *)pbuf; - 8009332: 687b ldr r3, [r7, #4] - 8009334: 60fb str r3, [r7, #12] + 80091ba: 687b ldr r3, [r7, #4] + 80091bc: 60fb str r3, [r7, #12] *ptr += pnext->bLength; - 8009336: 683b ldr r3, [r7, #0] - 8009338: 881b ldrh r3, [r3, #0] - 800933a: 68fa ldr r2, [r7, #12] - 800933c: 7812 ldrb r2, [r2, #0] - 800933e: 4413 add r3, r2 - 8009340: b29a uxth r2, r3 - 8009342: 683b ldr r3, [r7, #0] - 8009344: 801a strh r2, [r3, #0] + 80091be: 683b ldr r3, [r7, #0] + 80091c0: 881b ldrh r3, [r3, #0] + 80091c2: 68fa ldr r2, [r7, #12] + 80091c4: 7812 ldrb r2, [r2, #0] + 80091c6: 4413 add r3, r2 + 80091c8: b29a uxth r2, r3 + 80091ca: 683b ldr r3, [r7, #0] + 80091cc: 801a strh r2, [r3, #0] pnext = (USBD_DescHeaderTypeDef *)(void *)(pbuf + pnext->bLength); - 8009346: 68fb ldr r3, [r7, #12] - 8009348: 781b ldrb r3, [r3, #0] - 800934a: 461a mov r2, r3 - 800934c: 687b ldr r3, [r7, #4] - 800934e: 4413 add r3, r2 - 8009350: 60fb str r3, [r7, #12] + 80091ce: 68fb ldr r3, [r7, #12] + 80091d0: 781b ldrb r3, [r3, #0] + 80091d2: 461a mov r2, r3 + 80091d4: 687b ldr r3, [r7, #4] + 80091d6: 4413 add r3, r2 + 80091d8: 60fb str r3, [r7, #12] return (pnext); - 8009352: 68fb ldr r3, [r7, #12] + 80091da: 68fb ldr r3, [r7, #12] } - 8009354: 4618 mov r0, r3 - 8009356: 3714 adds r7, #20 - 8009358: 46bd mov sp, r7 - 800935a: f85d 7b04 ldr.w r7, [sp], #4 - 800935e: 4770 bx lr + 80091dc: 4618 mov r0, r3 + 80091de: 3714 adds r7, #20 + 80091e0: 46bd mov sp, r7 + 80091e2: f85d 7b04 ldr.w r7, [sp], #4 + 80091e6: 4770 bx lr -08009360 : +080091e8 : /** @defgroup USBD_DEF_Exported_Macros * @{ */ __STATIC_INLINE uint16_t SWAPBYTE(uint8_t *addr) { - 8009360: b480 push {r7} - 8009362: b087 sub sp, #28 - 8009364: af00 add r7, sp, #0 - 8009366: 6078 str r0, [r7, #4] + 80091e8: b480 push {r7} + 80091ea: b087 sub sp, #28 + 80091ec: af00 add r7, sp, #0 + 80091ee: 6078 str r0, [r7, #4] uint16_t _SwapVal; uint16_t _Byte1; uint16_t _Byte2; uint8_t *_pbuff = addr; - 8009368: 687b ldr r3, [r7, #4] - 800936a: 617b str r3, [r7, #20] + 80091f0: 687b ldr r3, [r7, #4] + 80091f2: 617b str r3, [r7, #20] _Byte1 = *(uint8_t *)_pbuff; - 800936c: 697b ldr r3, [r7, #20] - 800936e: 781b ldrb r3, [r3, #0] - 8009370: 827b strh r3, [r7, #18] + 80091f4: 697b ldr r3, [r7, #20] + 80091f6: 781b ldrb r3, [r3, #0] + 80091f8: 827b strh r3, [r7, #18] _pbuff++; - 8009372: 697b ldr r3, [r7, #20] - 8009374: 3301 adds r3, #1 - 8009376: 617b str r3, [r7, #20] + 80091fa: 697b ldr r3, [r7, #20] + 80091fc: 3301 adds r3, #1 + 80091fe: 617b str r3, [r7, #20] _Byte2 = *(uint8_t *)_pbuff; - 8009378: 697b ldr r3, [r7, #20] - 800937a: 781b ldrb r3, [r3, #0] - 800937c: 823b strh r3, [r7, #16] + 8009200: 697b ldr r3, [r7, #20] + 8009202: 781b ldrb r3, [r3, #0] + 8009204: 823b strh r3, [r7, #16] _SwapVal = (_Byte2 << 8) | _Byte1; - 800937e: f9b7 3010 ldrsh.w r3, [r7, #16] - 8009382: 021b lsls r3, r3, #8 - 8009384: b21a sxth r2, r3 - 8009386: f9b7 3012 ldrsh.w r3, [r7, #18] - 800938a: 4313 orrs r3, r2 - 800938c: b21b sxth r3, r3 - 800938e: 81fb strh r3, [r7, #14] + 8009206: f9b7 3010 ldrsh.w r3, [r7, #16] + 800920a: 021b lsls r3, r3, #8 + 800920c: b21a sxth r2, r3 + 800920e: f9b7 3012 ldrsh.w r3, [r7, #18] + 8009212: 4313 orrs r3, r2 + 8009214: b21b sxth r3, r3 + 8009216: 81fb strh r3, [r7, #14] return _SwapVal; - 8009390: 89fb ldrh r3, [r7, #14] + 8009218: 89fb ldrh r3, [r7, #14] } - 8009392: 4618 mov r0, r3 - 8009394: 371c adds r7, #28 - 8009396: 46bd mov sp, r7 - 8009398: f85d 7b04 ldr.w r7, [sp], #4 - 800939c: 4770 bx lr + 800921a: 4618 mov r0, r3 + 800921c: 371c adds r7, #28 + 800921e: 46bd mov sp, r7 + 8009220: f85d 7b04 ldr.w r7, [sp], #4 + 8009224: 4770 bx lr ... -080093a0 : +08009228 : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdDevReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 80093a0: b580 push {r7, lr} - 80093a2: b084 sub sp, #16 - 80093a4: af00 add r7, sp, #0 - 80093a6: 6078 str r0, [r7, #4] - 80093a8: 6039 str r1, [r7, #0] + 8009228: b580 push {r7, lr} + 800922a: b084 sub sp, #16 + 800922c: af00 add r7, sp, #0 + 800922e: 6078 str r0, [r7, #4] + 8009230: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 80093aa: 2300 movs r3, #0 - 80093ac: 73fb strb r3, [r7, #15] + 8009232: 2300 movs r3, #0 + 8009234: 73fb strb r3, [r7, #15] switch (req->bmRequest & USB_REQ_TYPE_MASK) - 80093ae: 683b ldr r3, [r7, #0] - 80093b0: 781b ldrb r3, [r3, #0] - 80093b2: f003 0360 and.w r3, r3, #96 @ 0x60 - 80093b6: 2b40 cmp r3, #64 @ 0x40 - 80093b8: d005 beq.n 80093c6 - 80093ba: 2b40 cmp r3, #64 @ 0x40 - 80093bc: d857 bhi.n 800946e - 80093be: 2b00 cmp r3, #0 - 80093c0: d00f beq.n 80093e2 - 80093c2: 2b20 cmp r3, #32 - 80093c4: d153 bne.n 800946e + 8009236: 683b ldr r3, [r7, #0] + 8009238: 781b ldrb r3, [r3, #0] + 800923a: f003 0360 and.w r3, r3, #96 @ 0x60 + 800923e: 2b40 cmp r3, #64 @ 0x40 + 8009240: d005 beq.n 800924e + 8009242: 2b40 cmp r3, #64 @ 0x40 + 8009244: d857 bhi.n 80092f6 + 8009246: 2b00 cmp r3, #0 + 8009248: d00f beq.n 800926a + 800924a: 2b20 cmp r3, #32 + 800924c: d153 bne.n 80092f6 { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: ret = (USBD_StatusTypeDef)pdev->pClass[pdev->classId]->Setup(pdev, req); - 80093c6: 687b ldr r3, [r7, #4] - 80093c8: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 - 80093cc: 687b ldr r3, [r7, #4] - 80093ce: 32ae adds r2, #174 @ 0xae - 80093d0: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80093d4: 689b ldr r3, [r3, #8] - 80093d6: 6839 ldr r1, [r7, #0] - 80093d8: 6878 ldr r0, [r7, #4] - 80093da: 4798 blx r3 - 80093dc: 4603 mov r3, r0 - 80093de: 73fb strb r3, [r7, #15] + 800924e: 687b ldr r3, [r7, #4] + 8009250: f8d3 22d4 ldr.w r2, [r3, #724] @ 0x2d4 + 8009254: 687b ldr r3, [r7, #4] + 8009256: 32ae adds r2, #174 @ 0xae + 8009258: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800925c: 689b ldr r3, [r3, #8] + 800925e: 6839 ldr r1, [r7, #0] + 8009260: 6878 ldr r0, [r7, #4] + 8009262: 4798 blx r3 + 8009264: 4603 mov r3, r0 + 8009266: 73fb strb r3, [r7, #15] break; - 80093e0: e04a b.n 8009478 + 8009268: e04a b.n 8009300 case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 80093e2: 683b ldr r3, [r7, #0] - 80093e4: 785b ldrb r3, [r3, #1] - 80093e6: 2b09 cmp r3, #9 - 80093e8: d83b bhi.n 8009462 - 80093ea: a201 add r2, pc, #4 @ (adr r2, 80093f0 ) - 80093ec: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80093f0: 08009445 .word 0x08009445 - 80093f4: 08009459 .word 0x08009459 - 80093f8: 08009463 .word 0x08009463 - 80093fc: 0800944f .word 0x0800944f - 8009400: 08009463 .word 0x08009463 - 8009404: 08009423 .word 0x08009423 - 8009408: 08009419 .word 0x08009419 - 800940c: 08009463 .word 0x08009463 - 8009410: 0800943b .word 0x0800943b - 8009414: 0800942d .word 0x0800942d + 800926a: 683b ldr r3, [r7, #0] + 800926c: 785b ldrb r3, [r3, #1] + 800926e: 2b09 cmp r3, #9 + 8009270: d83b bhi.n 80092ea + 8009272: a201 add r2, pc, #4 @ (adr r2, 8009278 ) + 8009274: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8009278: 080092cd .word 0x080092cd + 800927c: 080092e1 .word 0x080092e1 + 8009280: 080092eb .word 0x080092eb + 8009284: 080092d7 .word 0x080092d7 + 8009288: 080092eb .word 0x080092eb + 800928c: 080092ab .word 0x080092ab + 8009290: 080092a1 .word 0x080092a1 + 8009294: 080092eb .word 0x080092eb + 8009298: 080092c3 .word 0x080092c3 + 800929c: 080092b5 .word 0x080092b5 { case USB_REQ_GET_DESCRIPTOR: USBD_GetDescriptor(pdev, req); - 8009418: 6839 ldr r1, [r7, #0] - 800941a: 6878 ldr r0, [r7, #4] - 800941c: f000 fa3e bl 800989c + 80092a0: 6839 ldr r1, [r7, #0] + 80092a2: 6878 ldr r0, [r7, #4] + 80092a4: f000 fa3e bl 8009724 break; - 8009420: e024 b.n 800946c + 80092a8: e024 b.n 80092f4 case USB_REQ_SET_ADDRESS: USBD_SetAddress(pdev, req); - 8009422: 6839 ldr r1, [r7, #0] - 8009424: 6878 ldr r0, [r7, #4] - 8009426: f000 fbcd bl 8009bc4 + 80092aa: 6839 ldr r1, [r7, #0] + 80092ac: 6878 ldr r0, [r7, #4] + 80092ae: f000 fbcd bl 8009a4c break; - 800942a: e01f b.n 800946c + 80092b2: e01f b.n 80092f4 case USB_REQ_SET_CONFIGURATION: ret = USBD_SetConfig(pdev, req); - 800942c: 6839 ldr r1, [r7, #0] - 800942e: 6878 ldr r0, [r7, #4] - 8009430: f000 fc0c bl 8009c4c - 8009434: 4603 mov r3, r0 - 8009436: 73fb strb r3, [r7, #15] + 80092b4: 6839 ldr r1, [r7, #0] + 80092b6: 6878 ldr r0, [r7, #4] + 80092b8: f000 fc0c bl 8009ad4 + 80092bc: 4603 mov r3, r0 + 80092be: 73fb strb r3, [r7, #15] break; - 8009438: e018 b.n 800946c + 80092c0: e018 b.n 80092f4 case USB_REQ_GET_CONFIGURATION: USBD_GetConfig(pdev, req); - 800943a: 6839 ldr r1, [r7, #0] - 800943c: 6878 ldr r0, [r7, #4] - 800943e: f000 fcaf bl 8009da0 + 80092c2: 6839 ldr r1, [r7, #0] + 80092c4: 6878 ldr r0, [r7, #4] + 80092c6: f000 fcaf bl 8009c28 break; - 8009442: e013 b.n 800946c + 80092ca: e013 b.n 80092f4 case USB_REQ_GET_STATUS: USBD_GetStatus(pdev, req); - 8009444: 6839 ldr r1, [r7, #0] - 8009446: 6878 ldr r0, [r7, #4] - 8009448: f000 fce0 bl 8009e0c + 80092cc: 6839 ldr r1, [r7, #0] + 80092ce: 6878 ldr r0, [r7, #4] + 80092d0: f000 fce0 bl 8009c94 break; - 800944c: e00e b.n 800946c + 80092d4: e00e b.n 80092f4 case USB_REQ_SET_FEATURE: USBD_SetFeature(pdev, req); - 800944e: 6839 ldr r1, [r7, #0] - 8009450: 6878 ldr r0, [r7, #4] - 8009452: f000 fd0f bl 8009e74 + 80092d6: 6839 ldr r1, [r7, #0] + 80092d8: 6878 ldr r0, [r7, #4] + 80092da: f000 fd0f bl 8009cfc break; - 8009456: e009 b.n 800946c + 80092de: e009 b.n 80092f4 case USB_REQ_CLEAR_FEATURE: USBD_ClrFeature(pdev, req); - 8009458: 6839 ldr r1, [r7, #0] - 800945a: 6878 ldr r0, [r7, #4] - 800945c: f000 fd33 bl 8009ec6 + 80092e0: 6839 ldr r1, [r7, #0] + 80092e2: 6878 ldr r0, [r7, #4] + 80092e4: f000 fd33 bl 8009d4e break; - 8009460: e004 b.n 800946c + 80092e8: e004 b.n 80092f4 default: USBD_CtlError(pdev, req); - 8009462: 6839 ldr r1, [r7, #0] - 8009464: 6878 ldr r0, [r7, #4] - 8009466: f000 fd8a bl 8009f7e + 80092ea: 6839 ldr r1, [r7, #0] + 80092ec: 6878 ldr r0, [r7, #4] + 80092ee: f000 fd8a bl 8009e06 break; - 800946a: bf00 nop + 80092f2: bf00 nop } break; - 800946c: e004 b.n 8009478 + 80092f4: e004 b.n 8009300 default: USBD_CtlError(pdev, req); - 800946e: 6839 ldr r1, [r7, #0] - 8009470: 6878 ldr r0, [r7, #4] - 8009472: f000 fd84 bl 8009f7e + 80092f6: 6839 ldr r1, [r7, #0] + 80092f8: 6878 ldr r0, [r7, #4] + 80092fa: f000 fd84 bl 8009e06 break; - 8009476: bf00 nop + 80092fe: bf00 nop } return ret; - 8009478: 7bfb ldrb r3, [r7, #15] + 8009300: 7bfb ldrb r3, [r7, #15] } - 800947a: 4618 mov r0, r3 - 800947c: 3710 adds r7, #16 - 800947e: 46bd mov sp, r7 - 8009480: bd80 pop {r7, pc} - 8009482: bf00 nop + 8009302: 4618 mov r0, r3 + 8009304: 3710 adds r7, #16 + 8009306: 46bd mov sp, r7 + 8009308: bd80 pop {r7, pc} + 800930a: bf00 nop -08009484 : +0800930c : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdItfReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009484: b580 push {r7, lr} - 8009486: b084 sub sp, #16 - 8009488: af00 add r7, sp, #0 - 800948a: 6078 str r0, [r7, #4] - 800948c: 6039 str r1, [r7, #0] + 800930c: b580 push {r7, lr} + 800930e: b084 sub sp, #16 + 8009310: af00 add r7, sp, #0 + 8009312: 6078 str r0, [r7, #4] + 8009314: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 800948e: 2300 movs r3, #0 - 8009490: 73fb strb r3, [r7, #15] + 8009316: 2300 movs r3, #0 + 8009318: 73fb strb r3, [r7, #15] uint8_t idx; switch (req->bmRequest & USB_REQ_TYPE_MASK) - 8009492: 683b ldr r3, [r7, #0] - 8009494: 781b ldrb r3, [r3, #0] - 8009496: f003 0360 and.w r3, r3, #96 @ 0x60 - 800949a: 2b40 cmp r3, #64 @ 0x40 - 800949c: d005 beq.n 80094aa - 800949e: 2b40 cmp r3, #64 @ 0x40 - 80094a0: d852 bhi.n 8009548 - 80094a2: 2b00 cmp r3, #0 - 80094a4: d001 beq.n 80094aa - 80094a6: 2b20 cmp r3, #32 - 80094a8: d14e bne.n 8009548 + 800931a: 683b ldr r3, [r7, #0] + 800931c: 781b ldrb r3, [r3, #0] + 800931e: f003 0360 and.w r3, r3, #96 @ 0x60 + 8009322: 2b40 cmp r3, #64 @ 0x40 + 8009324: d005 beq.n 8009332 + 8009326: 2b40 cmp r3, #64 @ 0x40 + 8009328: d852 bhi.n 80093d0 + 800932a: 2b00 cmp r3, #0 + 800932c: d001 beq.n 8009332 + 800932e: 2b20 cmp r3, #32 + 8009330: d14e bne.n 80093d0 { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: case USB_REQ_TYPE_STANDARD: switch (pdev->dev_state) - 80094aa: 687b ldr r3, [r7, #4] - 80094ac: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80094b0: b2db uxtb r3, r3 - 80094b2: 3b01 subs r3, #1 - 80094b4: 2b02 cmp r3, #2 - 80094b6: d840 bhi.n 800953a + 8009332: 687b ldr r3, [r7, #4] + 8009334: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009338: b2db uxtb r3, r3 + 800933a: 3b01 subs r3, #1 + 800933c: 2b02 cmp r3, #2 + 800933e: d840 bhi.n 80093c2 { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (LOBYTE(req->wIndex) <= USBD_MAX_NUM_INTERFACES) - 80094b8: 683b ldr r3, [r7, #0] - 80094ba: 889b ldrh r3, [r3, #4] - 80094bc: b2db uxtb r3, r3 - 80094be: 2b01 cmp r3, #1 - 80094c0: d836 bhi.n 8009530 + 8009340: 683b ldr r3, [r7, #0] + 8009342: 889b ldrh r3, [r3, #4] + 8009344: b2db uxtb r3, r3 + 8009346: 2b01 cmp r3, #1 + 8009348: d836 bhi.n 80093b8 { /* Get the class index relative to this interface */ idx = USBD_CoreFindIF(pdev, LOBYTE(req->wIndex)); - 80094c2: 683b ldr r3, [r7, #0] - 80094c4: 889b ldrh r3, [r3, #4] - 80094c6: b2db uxtb r3, r3 - 80094c8: 4619 mov r1, r3 - 80094ca: 6878 ldr r0, [r7, #4] - 80094cc: f7ff feda bl 8009284 - 80094d0: 4603 mov r3, r0 - 80094d2: 73bb strb r3, [r7, #14] + 800934a: 683b ldr r3, [r7, #0] + 800934c: 889b ldrh r3, [r3, #4] + 800934e: b2db uxtb r3, r3 + 8009350: 4619 mov r1, r3 + 8009352: 6878 ldr r0, [r7, #4] + 8009354: f7ff feda bl 800910c + 8009358: 4603 mov r3, r0 + 800935a: 73bb strb r3, [r7, #14] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 80094d4: 7bbb ldrb r3, [r7, #14] - 80094d6: 2bff cmp r3, #255 @ 0xff - 80094d8: d01d beq.n 8009516 - 80094da: 7bbb ldrb r3, [r7, #14] - 80094dc: 2b00 cmp r3, #0 - 80094de: d11a bne.n 8009516 + 800935c: 7bbb ldrb r3, [r7, #14] + 800935e: 2bff cmp r3, #255 @ 0xff + 8009360: d01d beq.n 800939e + 8009362: 7bbb ldrb r3, [r7, #14] + 8009364: 2b00 cmp r3, #0 + 8009366: d11a bne.n 800939e { /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 80094e0: 7bba ldrb r2, [r7, #14] - 80094e2: 687b ldr r3, [r7, #4] - 80094e4: 32ae adds r2, #174 @ 0xae - 80094e6: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80094ea: 689b ldr r3, [r3, #8] - 80094ec: 2b00 cmp r3, #0 - 80094ee: d00f beq.n 8009510 + 8009368: 7bba ldrb r2, [r7, #14] + 800936a: 687b ldr r3, [r7, #4] + 800936c: 32ae adds r2, #174 @ 0xae + 800936e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009372: 689b ldr r3, [r3, #8] + 8009374: 2b00 cmp r3, #0 + 8009376: d00f beq.n 8009398 { pdev->classId = idx; - 80094f0: 7bba ldrb r2, [r7, #14] - 80094f2: 687b ldr r3, [r7, #4] - 80094f4: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8009378: 7bba ldrb r2, [r7, #14] + 800937a: 687b ldr r3, [r7, #4] + 800937c: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); - 80094f8: 7bba ldrb r2, [r7, #14] - 80094fa: 687b ldr r3, [r7, #4] - 80094fc: 32ae adds r2, #174 @ 0xae - 80094fe: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8009502: 689b ldr r3, [r3, #8] - 8009504: 6839 ldr r1, [r7, #0] - 8009506: 6878 ldr r0, [r7, #4] - 8009508: 4798 blx r3 - 800950a: 4603 mov r3, r0 - 800950c: 73fb strb r3, [r7, #15] + 8009380: 7bba ldrb r2, [r7, #14] + 8009382: 687b ldr r3, [r7, #4] + 8009384: 32ae adds r2, #174 @ 0xae + 8009386: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 800938a: 689b ldr r3, [r3, #8] + 800938c: 6839 ldr r1, [r7, #0] + 800938e: 6878 ldr r0, [r7, #4] + 8009390: 4798 blx r3 + 8009392: 4603 mov r3, r0 + 8009394: 73fb strb r3, [r7, #15] if (pdev->pClass[idx]->Setup != NULL) - 800950e: e004 b.n 800951a + 8009396: e004 b.n 80093a2 } else { /* should never reach this condition */ ret = USBD_FAIL; - 8009510: 2303 movs r3, #3 - 8009512: 73fb strb r3, [r7, #15] + 8009398: 2303 movs r3, #3 + 800939a: 73fb strb r3, [r7, #15] if (pdev->pClass[idx]->Setup != NULL) - 8009514: e001 b.n 800951a + 800939c: e001 b.n 80093a2 } } else { /* No relative interface found */ ret = USBD_FAIL; - 8009516: 2303 movs r3, #3 - 8009518: 73fb strb r3, [r7, #15] + 800939e: 2303 movs r3, #3 + 80093a0: 73fb strb r3, [r7, #15] } if ((req->wLength == 0U) && (ret == USBD_OK)) - 800951a: 683b ldr r3, [r7, #0] - 800951c: 88db ldrh r3, [r3, #6] - 800951e: 2b00 cmp r3, #0 - 8009520: d110 bne.n 8009544 - 8009522: 7bfb ldrb r3, [r7, #15] - 8009524: 2b00 cmp r3, #0 - 8009526: d10d bne.n 8009544 + 80093a2: 683b ldr r3, [r7, #0] + 80093a4: 88db ldrh r3, [r3, #6] + 80093a6: 2b00 cmp r3, #0 + 80093a8: d110 bne.n 80093cc + 80093aa: 7bfb ldrb r3, [r7, #15] + 80093ac: 2b00 cmp r3, #0 + 80093ae: d10d bne.n 80093cc { (void)USBD_CtlSendStatus(pdev); - 8009528: 6878 ldr r0, [r7, #4] - 800952a: f000 fde5 bl 800a0f8 + 80093b0: 6878 ldr r0, [r7, #4] + 80093b2: f000 fde5 bl 8009f80 } else { USBD_CtlError(pdev, req); } break; - 800952e: e009 b.n 8009544 + 80093b6: e009 b.n 80093cc USBD_CtlError(pdev, req); - 8009530: 6839 ldr r1, [r7, #0] - 8009532: 6878 ldr r0, [r7, #4] - 8009534: f000 fd23 bl 8009f7e + 80093b8: 6839 ldr r1, [r7, #0] + 80093ba: 6878 ldr r0, [r7, #4] + 80093bc: f000 fd23 bl 8009e06 break; - 8009538: e004 b.n 8009544 + 80093c0: e004 b.n 80093cc default: USBD_CtlError(pdev, req); - 800953a: 6839 ldr r1, [r7, #0] - 800953c: 6878 ldr r0, [r7, #4] - 800953e: f000 fd1e bl 8009f7e + 80093c2: 6839 ldr r1, [r7, #0] + 80093c4: 6878 ldr r0, [r7, #4] + 80093c6: f000 fd1e bl 8009e06 break; - 8009542: e000 b.n 8009546 + 80093ca: e000 b.n 80093ce break; - 8009544: bf00 nop + 80093cc: bf00 nop } break; - 8009546: e004 b.n 8009552 + 80093ce: e004 b.n 80093da default: USBD_CtlError(pdev, req); - 8009548: 6839 ldr r1, [r7, #0] - 800954a: 6878 ldr r0, [r7, #4] - 800954c: f000 fd17 bl 8009f7e + 80093d0: 6839 ldr r1, [r7, #0] + 80093d2: 6878 ldr r0, [r7, #4] + 80093d4: f000 fd17 bl 8009e06 break; - 8009550: bf00 nop + 80093d8: bf00 nop } return ret; - 8009552: 7bfb ldrb r3, [r7, #15] + 80093da: 7bfb ldrb r3, [r7, #15] } - 8009554: 4618 mov r0, r3 - 8009556: 3710 adds r7, #16 - 8009558: 46bd mov sp, r7 - 800955a: bd80 pop {r7, pc} + 80093dc: 4618 mov r0, r3 + 80093de: 3710 adds r7, #16 + 80093e0: 46bd mov sp, r7 + 80093e2: bd80 pop {r7, pc} -0800955c : +080093e4 : * @param pdev: device instance * @param req: usb request * @retval status */ USBD_StatusTypeDef USBD_StdEPReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 800955c: b580 push {r7, lr} - 800955e: b084 sub sp, #16 - 8009560: af00 add r7, sp, #0 - 8009562: 6078 str r0, [r7, #4] - 8009564: 6039 str r1, [r7, #0] + 80093e4: b580 push {r7, lr} + 80093e6: b084 sub sp, #16 + 80093e8: af00 add r7, sp, #0 + 80093ea: 6078 str r0, [r7, #4] + 80093ec: 6039 str r1, [r7, #0] USBD_EndpointTypeDef *pep; uint8_t ep_addr; uint8_t idx; USBD_StatusTypeDef ret = USBD_OK; - 8009566: 2300 movs r3, #0 - 8009568: 73fb strb r3, [r7, #15] + 80093ee: 2300 movs r3, #0 + 80093f0: 73fb strb r3, [r7, #15] ep_addr = LOBYTE(req->wIndex); - 800956a: 683b ldr r3, [r7, #0] - 800956c: 889b ldrh r3, [r3, #4] - 800956e: 73bb strb r3, [r7, #14] + 80093f2: 683b ldr r3, [r7, #0] + 80093f4: 889b ldrh r3, [r3, #4] + 80093f6: 73bb strb r3, [r7, #14] switch (req->bmRequest & USB_REQ_TYPE_MASK) - 8009570: 683b ldr r3, [r7, #0] - 8009572: 781b ldrb r3, [r3, #0] - 8009574: f003 0360 and.w r3, r3, #96 @ 0x60 - 8009578: 2b40 cmp r3, #64 @ 0x40 - 800957a: d007 beq.n 800958c - 800957c: 2b40 cmp r3, #64 @ 0x40 - 800957e: f200 8181 bhi.w 8009884 - 8009582: 2b00 cmp r3, #0 - 8009584: d02a beq.n 80095dc - 8009586: 2b20 cmp r3, #32 - 8009588: f040 817c bne.w 8009884 + 80093f8: 683b ldr r3, [r7, #0] + 80093fa: 781b ldrb r3, [r3, #0] + 80093fc: f003 0360 and.w r3, r3, #96 @ 0x60 + 8009400: 2b40 cmp r3, #64 @ 0x40 + 8009402: d007 beq.n 8009414 + 8009404: 2b40 cmp r3, #64 @ 0x40 + 8009406: f200 8181 bhi.w 800970c + 800940a: 2b00 cmp r3, #0 + 800940c: d02a beq.n 8009464 + 800940e: 2b20 cmp r3, #32 + 8009410: f040 817c bne.w 800970c { case USB_REQ_TYPE_CLASS: case USB_REQ_TYPE_VENDOR: /* Get the class index relative to this endpoint */ idx = USBD_CoreFindEP(pdev, ep_addr); - 800958c: 7bbb ldrb r3, [r7, #14] - 800958e: 4619 mov r1, r3 - 8009590: 6878 ldr r0, [r7, #4] - 8009592: f7ff fe84 bl 800929e - 8009596: 4603 mov r3, r0 - 8009598: 737b strb r3, [r7, #13] + 8009414: 7bbb ldrb r3, [r7, #14] + 8009416: 4619 mov r1, r3 + 8009418: 6878 ldr r0, [r7, #4] + 800941a: f7ff fe84 bl 8009126 + 800941e: 4603 mov r3, r0 + 8009420: 737b strb r3, [r7, #13] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 800959a: 7b7b ldrb r3, [r7, #13] - 800959c: 2bff cmp r3, #255 @ 0xff - 800959e: f000 8176 beq.w 800988e - 80095a2: 7b7b ldrb r3, [r7, #13] - 80095a4: 2b00 cmp r3, #0 - 80095a6: f040 8172 bne.w 800988e + 8009422: 7b7b ldrb r3, [r7, #13] + 8009424: 2bff cmp r3, #255 @ 0xff + 8009426: f000 8176 beq.w 8009716 + 800942a: 7b7b ldrb r3, [r7, #13] + 800942c: 2b00 cmp r3, #0 + 800942e: f040 8172 bne.w 8009716 { pdev->classId = idx; - 80095aa: 7b7a ldrb r2, [r7, #13] - 80095ac: 687b ldr r3, [r7, #4] - 80095ae: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8009432: 7b7a ldrb r2, [r7, #13] + 8009434: 687b ldr r3, [r7, #4] + 8009436: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 80095b2: 7b7a ldrb r2, [r7, #13] - 80095b4: 687b ldr r3, [r7, #4] - 80095b6: 32ae adds r2, #174 @ 0xae - 80095b8: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80095bc: 689b ldr r3, [r3, #8] - 80095be: 2b00 cmp r3, #0 - 80095c0: f000 8165 beq.w 800988e + 800943a: 7b7a ldrb r2, [r7, #13] + 800943c: 687b ldr r3, [r7, #4] + 800943e: 32ae adds r2, #174 @ 0xae + 8009440: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009444: 689b ldr r3, [r3, #8] + 8009446: 2b00 cmp r3, #0 + 8009448: f000 8165 beq.w 8009716 { ret = (USBD_StatusTypeDef)pdev->pClass[idx]->Setup(pdev, req); - 80095c4: 7b7a ldrb r2, [r7, #13] - 80095c6: 687b ldr r3, [r7, #4] - 80095c8: 32ae adds r2, #174 @ 0xae - 80095ca: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80095ce: 689b ldr r3, [r3, #8] - 80095d0: 6839 ldr r1, [r7, #0] - 80095d2: 6878 ldr r0, [r7, #4] - 80095d4: 4798 blx r3 - 80095d6: 4603 mov r3, r0 - 80095d8: 73fb strb r3, [r7, #15] + 800944c: 7b7a ldrb r2, [r7, #13] + 800944e: 687b ldr r3, [r7, #4] + 8009450: 32ae adds r2, #174 @ 0xae + 8009452: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009456: 689b ldr r3, [r3, #8] + 8009458: 6839 ldr r1, [r7, #0] + 800945a: 6878 ldr r0, [r7, #4] + 800945c: 4798 blx r3 + 800945e: 4603 mov r3, r0 + 8009460: 73fb strb r3, [r7, #15] } } break; - 80095da: e158 b.n 800988e + 8009462: e158 b.n 8009716 case USB_REQ_TYPE_STANDARD: switch (req->bRequest) - 80095dc: 683b ldr r3, [r7, #0] - 80095de: 785b ldrb r3, [r3, #1] - 80095e0: 2b03 cmp r3, #3 - 80095e2: d008 beq.n 80095f6 - 80095e4: 2b03 cmp r3, #3 - 80095e6: f300 8147 bgt.w 8009878 - 80095ea: 2b00 cmp r3, #0 - 80095ec: f000 809b beq.w 8009726 - 80095f0: 2b01 cmp r3, #1 - 80095f2: d03c beq.n 800966e - 80095f4: e140 b.n 8009878 + 8009464: 683b ldr r3, [r7, #0] + 8009466: 785b ldrb r3, [r3, #1] + 8009468: 2b03 cmp r3, #3 + 800946a: d008 beq.n 800947e + 800946c: 2b03 cmp r3, #3 + 800946e: f300 8147 bgt.w 8009700 + 8009472: 2b00 cmp r3, #0 + 8009474: f000 809b beq.w 80095ae + 8009478: 2b01 cmp r3, #1 + 800947a: d03c beq.n 80094f6 + 800947c: e140 b.n 8009700 { case USB_REQ_SET_FEATURE: switch (pdev->dev_state) - 80095f6: 687b ldr r3, [r7, #4] - 80095f8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 80095fc: b2db uxtb r3, r3 - 80095fe: 2b02 cmp r3, #2 - 8009600: d002 beq.n 8009608 - 8009602: 2b03 cmp r3, #3 - 8009604: d016 beq.n 8009634 - 8009606: e02c b.n 8009662 + 800947e: 687b ldr r3, [r7, #4] + 8009480: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009484: b2db uxtb r3, r3 + 8009486: 2b02 cmp r3, #2 + 8009488: d002 beq.n 8009490 + 800948a: 2b03 cmp r3, #3 + 800948c: d016 beq.n 80094bc + 800948e: e02c b.n 80094ea { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 8009608: 7bbb ldrb r3, [r7, #14] - 800960a: 2b00 cmp r3, #0 - 800960c: d00d beq.n 800962a - 800960e: 7bbb ldrb r3, [r7, #14] - 8009610: 2b80 cmp r3, #128 @ 0x80 - 8009612: d00a beq.n 800962a + 8009490: 7bbb ldrb r3, [r7, #14] + 8009492: 2b00 cmp r3, #0 + 8009494: d00d beq.n 80094b2 + 8009496: 7bbb ldrb r3, [r7, #14] + 8009498: 2b80 cmp r3, #128 @ 0x80 + 800949a: d00a beq.n 80094b2 { (void)USBD_LL_StallEP(pdev, ep_addr); - 8009614: 7bbb ldrb r3, [r7, #14] - 8009616: 4619 mov r1, r3 - 8009618: 6878 ldr r0, [r7, #4] - 800961a: f001 f8e3 bl 800a7e4 + 800949c: 7bbb ldrb r3, [r7, #14] + 800949e: 4619 mov r1, r3 + 80094a0: 6878 ldr r0, [r7, #4] + 80094a2: f001 f8e3 bl 800a66c (void)USBD_LL_StallEP(pdev, 0x80U); - 800961e: 2180 movs r1, #128 @ 0x80 - 8009620: 6878 ldr r0, [r7, #4] - 8009622: f001 f8df bl 800a7e4 - 8009626: bf00 nop + 80094a6: 2180 movs r1, #128 @ 0x80 + 80094a8: 6878 ldr r0, [r7, #4] + 80094aa: f001 f8df bl 800a66c + 80094ae: bf00 nop } else { USBD_CtlError(pdev, req); } break; - 8009628: e020 b.n 800966c + 80094b0: e020 b.n 80094f4 USBD_CtlError(pdev, req); - 800962a: 6839 ldr r1, [r7, #0] - 800962c: 6878 ldr r0, [r7, #4] - 800962e: f000 fca6 bl 8009f7e + 80094b2: 6839 ldr r1, [r7, #0] + 80094b4: 6878 ldr r0, [r7, #4] + 80094b6: f000 fca6 bl 8009e06 break; - 8009632: e01b b.n 800966c + 80094ba: e01b b.n 80094f4 case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_EP_HALT) - 8009634: 683b ldr r3, [r7, #0] - 8009636: 885b ldrh r3, [r3, #2] - 8009638: 2b00 cmp r3, #0 - 800963a: d10e bne.n 800965a + 80094bc: 683b ldr r3, [r7, #0] + 80094be: 885b ldrh r3, [r3, #2] + 80094c0: 2b00 cmp r3, #0 + 80094c2: d10e bne.n 80094e2 { if ((ep_addr != 0x00U) && (ep_addr != 0x80U) && (req->wLength == 0x00U)) - 800963c: 7bbb ldrb r3, [r7, #14] - 800963e: 2b00 cmp r3, #0 - 8009640: d00b beq.n 800965a - 8009642: 7bbb ldrb r3, [r7, #14] - 8009644: 2b80 cmp r3, #128 @ 0x80 - 8009646: d008 beq.n 800965a - 8009648: 683b ldr r3, [r7, #0] - 800964a: 88db ldrh r3, [r3, #6] - 800964c: 2b00 cmp r3, #0 - 800964e: d104 bne.n 800965a + 80094c4: 7bbb ldrb r3, [r7, #14] + 80094c6: 2b00 cmp r3, #0 + 80094c8: d00b beq.n 80094e2 + 80094ca: 7bbb ldrb r3, [r7, #14] + 80094cc: 2b80 cmp r3, #128 @ 0x80 + 80094ce: d008 beq.n 80094e2 + 80094d0: 683b ldr r3, [r7, #0] + 80094d2: 88db ldrh r3, [r3, #6] + 80094d4: 2b00 cmp r3, #0 + 80094d6: d104 bne.n 80094e2 { (void)USBD_LL_StallEP(pdev, ep_addr); - 8009650: 7bbb ldrb r3, [r7, #14] - 8009652: 4619 mov r1, r3 - 8009654: 6878 ldr r0, [r7, #4] - 8009656: f001 f8c5 bl 800a7e4 + 80094d8: 7bbb ldrb r3, [r7, #14] + 80094da: 4619 mov r1, r3 + 80094dc: 6878 ldr r0, [r7, #4] + 80094de: f001 f8c5 bl 800a66c } } (void)USBD_CtlSendStatus(pdev); - 800965a: 6878 ldr r0, [r7, #4] - 800965c: f000 fd4c bl 800a0f8 + 80094e2: 6878 ldr r0, [r7, #4] + 80094e4: f000 fd4c bl 8009f80 break; - 8009660: e004 b.n 800966c + 80094e8: e004 b.n 80094f4 default: USBD_CtlError(pdev, req); - 8009662: 6839 ldr r1, [r7, #0] - 8009664: 6878 ldr r0, [r7, #4] - 8009666: f000 fc8a bl 8009f7e + 80094ea: 6839 ldr r1, [r7, #0] + 80094ec: 6878 ldr r0, [r7, #4] + 80094ee: f000 fc8a bl 8009e06 break; - 800966a: bf00 nop + 80094f2: bf00 nop } break; - 800966c: e109 b.n 8009882 + 80094f4: e109 b.n 800970a case USB_REQ_CLEAR_FEATURE: switch (pdev->dev_state) - 800966e: 687b ldr r3, [r7, #4] - 8009670: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009674: b2db uxtb r3, r3 - 8009676: 2b02 cmp r3, #2 - 8009678: d002 beq.n 8009680 - 800967a: 2b03 cmp r3, #3 - 800967c: d016 beq.n 80096ac - 800967e: e04b b.n 8009718 + 80094f6: 687b ldr r3, [r7, #4] + 80094f8: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80094fc: b2db uxtb r3, r3 + 80094fe: 2b02 cmp r3, #2 + 8009500: d002 beq.n 8009508 + 8009502: 2b03 cmp r3, #3 + 8009504: d016 beq.n 8009534 + 8009506: e04b b.n 80095a0 { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 8009680: 7bbb ldrb r3, [r7, #14] - 8009682: 2b00 cmp r3, #0 - 8009684: d00d beq.n 80096a2 - 8009686: 7bbb ldrb r3, [r7, #14] - 8009688: 2b80 cmp r3, #128 @ 0x80 - 800968a: d00a beq.n 80096a2 + 8009508: 7bbb ldrb r3, [r7, #14] + 800950a: 2b00 cmp r3, #0 + 800950c: d00d beq.n 800952a + 800950e: 7bbb ldrb r3, [r7, #14] + 8009510: 2b80 cmp r3, #128 @ 0x80 + 8009512: d00a beq.n 800952a { (void)USBD_LL_StallEP(pdev, ep_addr); - 800968c: 7bbb ldrb r3, [r7, #14] - 800968e: 4619 mov r1, r3 - 8009690: 6878 ldr r0, [r7, #4] - 8009692: f001 f8a7 bl 800a7e4 + 8009514: 7bbb ldrb r3, [r7, #14] + 8009516: 4619 mov r1, r3 + 8009518: 6878 ldr r0, [r7, #4] + 800951a: f001 f8a7 bl 800a66c (void)USBD_LL_StallEP(pdev, 0x80U); - 8009696: 2180 movs r1, #128 @ 0x80 - 8009698: 6878 ldr r0, [r7, #4] - 800969a: f001 f8a3 bl 800a7e4 - 800969e: bf00 nop + 800951e: 2180 movs r1, #128 @ 0x80 + 8009520: 6878 ldr r0, [r7, #4] + 8009522: f001 f8a3 bl 800a66c + 8009526: bf00 nop } else { USBD_CtlError(pdev, req); } break; - 80096a0: e040 b.n 8009724 + 8009528: e040 b.n 80095ac USBD_CtlError(pdev, req); - 80096a2: 6839 ldr r1, [r7, #0] - 80096a4: 6878 ldr r0, [r7, #4] - 80096a6: f000 fc6a bl 8009f7e + 800952a: 6839 ldr r1, [r7, #0] + 800952c: 6878 ldr r0, [r7, #4] + 800952e: f000 fc6a bl 8009e06 break; - 80096aa: e03b b.n 8009724 + 8009532: e03b b.n 80095ac case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_EP_HALT) - 80096ac: 683b ldr r3, [r7, #0] - 80096ae: 885b ldrh r3, [r3, #2] - 80096b0: 2b00 cmp r3, #0 - 80096b2: d136 bne.n 8009722 + 8009534: 683b ldr r3, [r7, #0] + 8009536: 885b ldrh r3, [r3, #2] + 8009538: 2b00 cmp r3, #0 + 800953a: d136 bne.n 80095aa { if ((ep_addr & 0x7FU) != 0x00U) - 80096b4: 7bbb ldrb r3, [r7, #14] - 80096b6: f003 037f and.w r3, r3, #127 @ 0x7f - 80096ba: 2b00 cmp r3, #0 - 80096bc: d004 beq.n 80096c8 + 800953c: 7bbb ldrb r3, [r7, #14] + 800953e: f003 037f and.w r3, r3, #127 @ 0x7f + 8009542: 2b00 cmp r3, #0 + 8009544: d004 beq.n 8009550 { (void)USBD_LL_ClearStallEP(pdev, ep_addr); - 80096be: 7bbb ldrb r3, [r7, #14] - 80096c0: 4619 mov r1, r3 - 80096c2: 6878 ldr r0, [r7, #4] - 80096c4: f001 f8ad bl 800a822 + 8009546: 7bbb ldrb r3, [r7, #14] + 8009548: 4619 mov r1, r3 + 800954a: 6878 ldr r0, [r7, #4] + 800954c: f001 f8ad bl 800a6aa } (void)USBD_CtlSendStatus(pdev); - 80096c8: 6878 ldr r0, [r7, #4] - 80096ca: f000 fd15 bl 800a0f8 + 8009550: 6878 ldr r0, [r7, #4] + 8009552: f000 fd15 bl 8009f80 /* Get the class index relative to this interface */ idx = USBD_CoreFindEP(pdev, ep_addr); - 80096ce: 7bbb ldrb r3, [r7, #14] - 80096d0: 4619 mov r1, r3 - 80096d2: 6878 ldr r0, [r7, #4] - 80096d4: f7ff fde3 bl 800929e - 80096d8: 4603 mov r3, r0 - 80096da: 737b strb r3, [r7, #13] + 8009556: 7bbb ldrb r3, [r7, #14] + 8009558: 4619 mov r1, r3 + 800955a: 6878 ldr r0, [r7, #4] + 800955c: f7ff fde3 bl 8009126 + 8009560: 4603 mov r3, r0 + 8009562: 737b strb r3, [r7, #13] if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) - 80096dc: 7b7b ldrb r3, [r7, #13] - 80096de: 2bff cmp r3, #255 @ 0xff - 80096e0: d01f beq.n 8009722 - 80096e2: 7b7b ldrb r3, [r7, #13] - 80096e4: 2b00 cmp r3, #0 - 80096e6: d11c bne.n 8009722 + 8009564: 7b7b ldrb r3, [r7, #13] + 8009566: 2bff cmp r3, #255 @ 0xff + 8009568: d01f beq.n 80095aa + 800956a: 7b7b ldrb r3, [r7, #13] + 800956c: 2b00 cmp r3, #0 + 800956e: d11c bne.n 80095aa { pdev->classId = idx; - 80096e8: 7b7a ldrb r2, [r7, #13] - 80096ea: 687b ldr r3, [r7, #4] - 80096ec: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 + 8009570: 7b7a ldrb r2, [r7, #13] + 8009572: 687b ldr r3, [r7, #4] + 8009574: f8c3 22d4 str.w r2, [r3, #724] @ 0x2d4 /* Call the class data out function to manage the request */ if (pdev->pClass[idx]->Setup != NULL) - 80096f0: 7b7a ldrb r2, [r7, #13] - 80096f2: 687b ldr r3, [r7, #4] - 80096f4: 32ae adds r2, #174 @ 0xae - 80096f6: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 80096fa: 689b ldr r3, [r3, #8] - 80096fc: 2b00 cmp r3, #0 - 80096fe: d010 beq.n 8009722 + 8009578: 7b7a ldrb r2, [r7, #13] + 800957a: 687b ldr r3, [r7, #4] + 800957c: 32ae adds r2, #174 @ 0xae + 800957e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009582: 689b ldr r3, [r3, #8] + 8009584: 2b00 cmp r3, #0 + 8009586: d010 beq.n 80095aa { ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); - 8009700: 7b7a ldrb r2, [r7, #13] - 8009702: 687b ldr r3, [r7, #4] - 8009704: 32ae adds r2, #174 @ 0xae - 8009706: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 800970a: 689b ldr r3, [r3, #8] - 800970c: 6839 ldr r1, [r7, #0] - 800970e: 6878 ldr r0, [r7, #4] - 8009710: 4798 blx r3 - 8009712: 4603 mov r3, r0 - 8009714: 73fb strb r3, [r7, #15] + 8009588: 7b7a ldrb r2, [r7, #13] + 800958a: 687b ldr r3, [r7, #4] + 800958c: 32ae adds r2, #174 @ 0xae + 800958e: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8009592: 689b ldr r3, [r3, #8] + 8009594: 6839 ldr r1, [r7, #0] + 8009596: 6878 ldr r0, [r7, #4] + 8009598: 4798 blx r3 + 800959a: 4603 mov r3, r0 + 800959c: 73fb strb r3, [r7, #15] } } } break; - 8009716: e004 b.n 8009722 + 800959e: e004 b.n 80095aa default: USBD_CtlError(pdev, req); - 8009718: 6839 ldr r1, [r7, #0] - 800971a: 6878 ldr r0, [r7, #4] - 800971c: f000 fc2f bl 8009f7e + 80095a0: 6839 ldr r1, [r7, #0] + 80095a2: 6878 ldr r0, [r7, #4] + 80095a4: f000 fc2f bl 8009e06 break; - 8009720: e000 b.n 8009724 + 80095a8: e000 b.n 80095ac break; - 8009722: bf00 nop + 80095aa: bf00 nop } break; - 8009724: e0ad b.n 8009882 + 80095ac: e0ad b.n 800970a case USB_REQ_GET_STATUS: switch (pdev->dev_state) - 8009726: 687b ldr r3, [r7, #4] - 8009728: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 800972c: b2db uxtb r3, r3 - 800972e: 2b02 cmp r3, #2 - 8009730: d002 beq.n 8009738 - 8009732: 2b03 cmp r3, #3 - 8009734: d033 beq.n 800979e - 8009736: e099 b.n 800986c + 80095ae: 687b ldr r3, [r7, #4] + 80095b0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 80095b4: b2db uxtb r3, r3 + 80095b6: 2b02 cmp r3, #2 + 80095b8: d002 beq.n 80095c0 + 80095ba: 2b03 cmp r3, #3 + 80095bc: d033 beq.n 8009626 + 80095be: e099 b.n 80096f4 { case USBD_STATE_ADDRESSED: if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) - 8009738: 7bbb ldrb r3, [r7, #14] - 800973a: 2b00 cmp r3, #0 - 800973c: d007 beq.n 800974e - 800973e: 7bbb ldrb r3, [r7, #14] - 8009740: 2b80 cmp r3, #128 @ 0x80 - 8009742: d004 beq.n 800974e + 80095c0: 7bbb ldrb r3, [r7, #14] + 80095c2: 2b00 cmp r3, #0 + 80095c4: d007 beq.n 80095d6 + 80095c6: 7bbb ldrb r3, [r7, #14] + 80095c8: 2b80 cmp r3, #128 @ 0x80 + 80095ca: d004 beq.n 80095d6 { USBD_CtlError(pdev, req); - 8009744: 6839 ldr r1, [r7, #0] - 8009746: 6878 ldr r0, [r7, #4] - 8009748: f000 fc19 bl 8009f7e + 80095cc: 6839 ldr r1, [r7, #0] + 80095ce: 6878 ldr r0, [r7, #4] + 80095d0: f000 fc19 bl 8009e06 break; - 800974c: e093 b.n 8009876 + 80095d4: e093 b.n 80096fe } pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 800974e: f997 300e ldrsb.w r3, [r7, #14] - 8009752: 2b00 cmp r3, #0 - 8009754: da0b bge.n 800976e - 8009756: 7bbb ldrb r3, [r7, #14] - 8009758: f003 027f and.w r2, r3, #127 @ 0x7f - 800975c: 4613 mov r3, r2 - 800975e: 009b lsls r3, r3, #2 - 8009760: 4413 add r3, r2 - 8009762: 009b lsls r3, r3, #2 - 8009764: 3310 adds r3, #16 - 8009766: 687a ldr r2, [r7, #4] - 8009768: 4413 add r3, r2 - 800976a: 3304 adds r3, #4 - 800976c: e00b b.n 8009786 + 80095d6: f997 300e ldrsb.w r3, [r7, #14] + 80095da: 2b00 cmp r3, #0 + 80095dc: da0b bge.n 80095f6 + 80095de: 7bbb ldrb r3, [r7, #14] + 80095e0: f003 027f and.w r2, r3, #127 @ 0x7f + 80095e4: 4613 mov r3, r2 + 80095e6: 009b lsls r3, r3, #2 + 80095e8: 4413 add r3, r2 + 80095ea: 009b lsls r3, r3, #2 + 80095ec: 3310 adds r3, #16 + 80095ee: 687a ldr r2, [r7, #4] + 80095f0: 4413 add r3, r2 + 80095f2: 3304 adds r3, #4 + 80095f4: e00b b.n 800960e &pdev->ep_out[ep_addr & 0x7FU]; - 800976e: 7bbb ldrb r3, [r7, #14] - 8009770: f003 027f and.w r2, r3, #127 @ 0x7f + 80095f6: 7bbb ldrb r3, [r7, #14] + 80095f8: f003 027f and.w r2, r3, #127 @ 0x7f pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 8009774: 4613 mov r3, r2 - 8009776: 009b lsls r3, r3, #2 - 8009778: 4413 add r3, r2 - 800977a: 009b lsls r3, r3, #2 - 800977c: f503 73a8 add.w r3, r3, #336 @ 0x150 - 8009780: 687a ldr r2, [r7, #4] - 8009782: 4413 add r3, r2 - 8009784: 3304 adds r3, #4 - 8009786: 60bb str r3, [r7, #8] + 80095fc: 4613 mov r3, r2 + 80095fe: 009b lsls r3, r3, #2 + 8009600: 4413 add r3, r2 + 8009602: 009b lsls r3, r3, #2 + 8009604: f503 73a8 add.w r3, r3, #336 @ 0x150 + 8009608: 687a ldr r2, [r7, #4] + 800960a: 4413 add r3, r2 + 800960c: 3304 adds r3, #4 + 800960e: 60bb str r3, [r7, #8] pep->status = 0x0000U; - 8009788: 68bb ldr r3, [r7, #8] - 800978a: 2200 movs r2, #0 - 800978c: 739a strb r2, [r3, #14] + 8009610: 68bb ldr r3, [r7, #8] + 8009612: 2200 movs r2, #0 + 8009614: 739a strb r2, [r3, #14] (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); - 800978e: 68bb ldr r3, [r7, #8] - 8009790: 330e adds r3, #14 - 8009792: 2202 movs r2, #2 - 8009794: 4619 mov r1, r3 - 8009796: 6878 ldr r0, [r7, #4] - 8009798: f000 fc6e bl 800a078 + 8009616: 68bb ldr r3, [r7, #8] + 8009618: 330e adds r3, #14 + 800961a: 2202 movs r2, #2 + 800961c: 4619 mov r1, r3 + 800961e: 6878 ldr r0, [r7, #4] + 8009620: f000 fc6e bl 8009f00 break; - 800979c: e06b b.n 8009876 + 8009624: e06b b.n 80096fe case USBD_STATE_CONFIGURED: if ((ep_addr & 0x80U) == 0x80U) - 800979e: f997 300e ldrsb.w r3, [r7, #14] - 80097a2: 2b00 cmp r3, #0 - 80097a4: da11 bge.n 80097ca + 8009626: f997 300e ldrsb.w r3, [r7, #14] + 800962a: 2b00 cmp r3, #0 + 800962c: da11 bge.n 8009652 { if (pdev->ep_in[ep_addr & 0xFU].is_used == 0U) - 80097a6: 7bbb ldrb r3, [r7, #14] - 80097a8: f003 020f and.w r2, r3, #15 - 80097ac: 6879 ldr r1, [r7, #4] - 80097ae: 4613 mov r3, r2 - 80097b0: 009b lsls r3, r3, #2 - 80097b2: 4413 add r3, r2 - 80097b4: 009b lsls r3, r3, #2 - 80097b6: 440b add r3, r1 - 80097b8: 3323 adds r3, #35 @ 0x23 - 80097ba: 781b ldrb r3, [r3, #0] - 80097bc: 2b00 cmp r3, #0 - 80097be: d117 bne.n 80097f0 + 800962e: 7bbb ldrb r3, [r7, #14] + 8009630: f003 020f and.w r2, r3, #15 + 8009634: 6879 ldr r1, [r7, #4] + 8009636: 4613 mov r3, r2 + 8009638: 009b lsls r3, r3, #2 + 800963a: 4413 add r3, r2 + 800963c: 009b lsls r3, r3, #2 + 800963e: 440b add r3, r1 + 8009640: 3323 adds r3, #35 @ 0x23 + 8009642: 781b ldrb r3, [r3, #0] + 8009644: 2b00 cmp r3, #0 + 8009646: d117 bne.n 8009678 { USBD_CtlError(pdev, req); - 80097c0: 6839 ldr r1, [r7, #0] - 80097c2: 6878 ldr r0, [r7, #4] - 80097c4: f000 fbdb bl 8009f7e + 8009648: 6839 ldr r1, [r7, #0] + 800964a: 6878 ldr r0, [r7, #4] + 800964c: f000 fbdb bl 8009e06 break; - 80097c8: e055 b.n 8009876 + 8009650: e055 b.n 80096fe } } else { if (pdev->ep_out[ep_addr & 0xFU].is_used == 0U) - 80097ca: 7bbb ldrb r3, [r7, #14] - 80097cc: f003 020f and.w r2, r3, #15 - 80097d0: 6879 ldr r1, [r7, #4] - 80097d2: 4613 mov r3, r2 - 80097d4: 009b lsls r3, r3, #2 - 80097d6: 4413 add r3, r2 - 80097d8: 009b lsls r3, r3, #2 - 80097da: 440b add r3, r1 - 80097dc: f203 1363 addw r3, r3, #355 @ 0x163 - 80097e0: 781b ldrb r3, [r3, #0] - 80097e2: 2b00 cmp r3, #0 - 80097e4: d104 bne.n 80097f0 + 8009652: 7bbb ldrb r3, [r7, #14] + 8009654: f003 020f and.w r2, r3, #15 + 8009658: 6879 ldr r1, [r7, #4] + 800965a: 4613 mov r3, r2 + 800965c: 009b lsls r3, r3, #2 + 800965e: 4413 add r3, r2 + 8009660: 009b lsls r3, r3, #2 + 8009662: 440b add r3, r1 + 8009664: f203 1363 addw r3, r3, #355 @ 0x163 + 8009668: 781b ldrb r3, [r3, #0] + 800966a: 2b00 cmp r3, #0 + 800966c: d104 bne.n 8009678 { USBD_CtlError(pdev, req); - 80097e6: 6839 ldr r1, [r7, #0] - 80097e8: 6878 ldr r0, [r7, #4] - 80097ea: f000 fbc8 bl 8009f7e + 800966e: 6839 ldr r1, [r7, #0] + 8009670: 6878 ldr r0, [r7, #4] + 8009672: f000 fbc8 bl 8009e06 break; - 80097ee: e042 b.n 8009876 + 8009676: e042 b.n 80096fe } } pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 80097f0: f997 300e ldrsb.w r3, [r7, #14] - 80097f4: 2b00 cmp r3, #0 - 80097f6: da0b bge.n 8009810 - 80097f8: 7bbb ldrb r3, [r7, #14] - 80097fa: f003 027f and.w r2, r3, #127 @ 0x7f - 80097fe: 4613 mov r3, r2 - 8009800: 009b lsls r3, r3, #2 - 8009802: 4413 add r3, r2 - 8009804: 009b lsls r3, r3, #2 - 8009806: 3310 adds r3, #16 - 8009808: 687a ldr r2, [r7, #4] - 800980a: 4413 add r3, r2 - 800980c: 3304 adds r3, #4 - 800980e: e00b b.n 8009828 + 8009678: f997 300e ldrsb.w r3, [r7, #14] + 800967c: 2b00 cmp r3, #0 + 800967e: da0b bge.n 8009698 + 8009680: 7bbb ldrb r3, [r7, #14] + 8009682: f003 027f and.w r2, r3, #127 @ 0x7f + 8009686: 4613 mov r3, r2 + 8009688: 009b lsls r3, r3, #2 + 800968a: 4413 add r3, r2 + 800968c: 009b lsls r3, r3, #2 + 800968e: 3310 adds r3, #16 + 8009690: 687a ldr r2, [r7, #4] + 8009692: 4413 add r3, r2 + 8009694: 3304 adds r3, #4 + 8009696: e00b b.n 80096b0 &pdev->ep_out[ep_addr & 0x7FU]; - 8009810: 7bbb ldrb r3, [r7, #14] - 8009812: f003 027f and.w r2, r3, #127 @ 0x7f + 8009698: 7bbb ldrb r3, [r7, #14] + 800969a: f003 027f and.w r2, r3, #127 @ 0x7f pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ - 8009816: 4613 mov r3, r2 - 8009818: 009b lsls r3, r3, #2 - 800981a: 4413 add r3, r2 - 800981c: 009b lsls r3, r3, #2 - 800981e: f503 73a8 add.w r3, r3, #336 @ 0x150 - 8009822: 687a ldr r2, [r7, #4] - 8009824: 4413 add r3, r2 - 8009826: 3304 adds r3, #4 - 8009828: 60bb str r3, [r7, #8] + 800969e: 4613 mov r3, r2 + 80096a0: 009b lsls r3, r3, #2 + 80096a2: 4413 add r3, r2 + 80096a4: 009b lsls r3, r3, #2 + 80096a6: f503 73a8 add.w r3, r3, #336 @ 0x150 + 80096aa: 687a ldr r2, [r7, #4] + 80096ac: 4413 add r3, r2 + 80096ae: 3304 adds r3, #4 + 80096b0: 60bb str r3, [r7, #8] if ((ep_addr == 0x00U) || (ep_addr == 0x80U)) - 800982a: 7bbb ldrb r3, [r7, #14] - 800982c: 2b00 cmp r3, #0 - 800982e: d002 beq.n 8009836 - 8009830: 7bbb ldrb r3, [r7, #14] - 8009832: 2b80 cmp r3, #128 @ 0x80 - 8009834: d103 bne.n 800983e + 80096b2: 7bbb ldrb r3, [r7, #14] + 80096b4: 2b00 cmp r3, #0 + 80096b6: d002 beq.n 80096be + 80096b8: 7bbb ldrb r3, [r7, #14] + 80096ba: 2b80 cmp r3, #128 @ 0x80 + 80096bc: d103 bne.n 80096c6 { pep->status = 0x0000U; - 8009836: 68bb ldr r3, [r7, #8] - 8009838: 2200 movs r2, #0 - 800983a: 739a strb r2, [r3, #14] - 800983c: e00e b.n 800985c + 80096be: 68bb ldr r3, [r7, #8] + 80096c0: 2200 movs r2, #0 + 80096c2: 739a strb r2, [r3, #14] + 80096c4: e00e b.n 80096e4 } else if (USBD_LL_IsStallEP(pdev, ep_addr) != 0U) - 800983e: 7bbb ldrb r3, [r7, #14] - 8009840: 4619 mov r1, r3 - 8009842: 6878 ldr r0, [r7, #4] - 8009844: f001 f80c bl 800a860 - 8009848: 4603 mov r3, r0 - 800984a: 2b00 cmp r3, #0 - 800984c: d003 beq.n 8009856 + 80096c6: 7bbb ldrb r3, [r7, #14] + 80096c8: 4619 mov r1, r3 + 80096ca: 6878 ldr r0, [r7, #4] + 80096cc: f001 f80c bl 800a6e8 + 80096d0: 4603 mov r3, r0 + 80096d2: 2b00 cmp r3, #0 + 80096d4: d003 beq.n 80096de { pep->status = 0x0001U; - 800984e: 68bb ldr r3, [r7, #8] - 8009850: 2201 movs r2, #1 - 8009852: 739a strb r2, [r3, #14] - 8009854: e002 b.n 800985c + 80096d6: 68bb ldr r3, [r7, #8] + 80096d8: 2201 movs r2, #1 + 80096da: 739a strb r2, [r3, #14] + 80096dc: e002 b.n 80096e4 } else { pep->status = 0x0000U; - 8009856: 68bb ldr r3, [r7, #8] - 8009858: 2200 movs r2, #0 - 800985a: 739a strb r2, [r3, #14] + 80096de: 68bb ldr r3, [r7, #8] + 80096e0: 2200 movs r2, #0 + 80096e2: 739a strb r2, [r3, #14] } (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); - 800985c: 68bb ldr r3, [r7, #8] - 800985e: 330e adds r3, #14 - 8009860: 2202 movs r2, #2 - 8009862: 4619 mov r1, r3 - 8009864: 6878 ldr r0, [r7, #4] - 8009866: f000 fc07 bl 800a078 + 80096e4: 68bb ldr r3, [r7, #8] + 80096e6: 330e adds r3, #14 + 80096e8: 2202 movs r2, #2 + 80096ea: 4619 mov r1, r3 + 80096ec: 6878 ldr r0, [r7, #4] + 80096ee: f000 fc07 bl 8009f00 break; - 800986a: e004 b.n 8009876 + 80096f2: e004 b.n 80096fe default: USBD_CtlError(pdev, req); - 800986c: 6839 ldr r1, [r7, #0] - 800986e: 6878 ldr r0, [r7, #4] - 8009870: f000 fb85 bl 8009f7e + 80096f4: 6839 ldr r1, [r7, #0] + 80096f6: 6878 ldr r0, [r7, #4] + 80096f8: f000 fb85 bl 8009e06 break; - 8009874: bf00 nop + 80096fc: bf00 nop } break; - 8009876: e004 b.n 8009882 + 80096fe: e004 b.n 800970a default: USBD_CtlError(pdev, req); - 8009878: 6839 ldr r1, [r7, #0] - 800987a: 6878 ldr r0, [r7, #4] - 800987c: f000 fb7f bl 8009f7e + 8009700: 6839 ldr r1, [r7, #0] + 8009702: 6878 ldr r0, [r7, #4] + 8009704: f000 fb7f bl 8009e06 break; - 8009880: bf00 nop + 8009708: bf00 nop } break; - 8009882: e005 b.n 8009890 + 800970a: e005 b.n 8009718 default: USBD_CtlError(pdev, req); - 8009884: 6839 ldr r1, [r7, #0] - 8009886: 6878 ldr r0, [r7, #4] - 8009888: f000 fb79 bl 8009f7e + 800970c: 6839 ldr r1, [r7, #0] + 800970e: 6878 ldr r0, [r7, #4] + 8009710: f000 fb79 bl 8009e06 break; - 800988c: e000 b.n 8009890 + 8009714: e000 b.n 8009718 break; - 800988e: bf00 nop + 8009716: bf00 nop } return ret; - 8009890: 7bfb ldrb r3, [r7, #15] + 8009718: 7bfb ldrb r3, [r7, #15] } - 8009892: 4618 mov r0, r3 - 8009894: 3710 adds r7, #16 - 8009896: 46bd mov sp, r7 - 8009898: bd80 pop {r7, pc} + 800971a: 4618 mov r0, r3 + 800971c: 3710 adds r7, #16 + 800971e: 46bd mov sp, r7 + 8009720: bd80 pop {r7, pc} ... -0800989c : +08009724 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 800989c: b580 push {r7, lr} - 800989e: b084 sub sp, #16 - 80098a0: af00 add r7, sp, #0 - 80098a2: 6078 str r0, [r7, #4] - 80098a4: 6039 str r1, [r7, #0] + 8009724: b580 push {r7, lr} + 8009726: b084 sub sp, #16 + 8009728: af00 add r7, sp, #0 + 800972a: 6078 str r0, [r7, #4] + 800972c: 6039 str r1, [r7, #0] uint16_t len = 0U; - 80098a6: 2300 movs r3, #0 - 80098a8: 813b strh r3, [r7, #8] + 800972e: 2300 movs r3, #0 + 8009730: 813b strh r3, [r7, #8] uint8_t *pbuf = NULL; - 80098aa: 2300 movs r3, #0 - 80098ac: 60fb str r3, [r7, #12] + 8009732: 2300 movs r3, #0 + 8009734: 60fb str r3, [r7, #12] uint8_t err = 0U; - 80098ae: 2300 movs r3, #0 - 80098b0: 72fb strb r3, [r7, #11] + 8009736: 2300 movs r3, #0 + 8009738: 72fb strb r3, [r7, #11] switch (req->wValue >> 8) - 80098b2: 683b ldr r3, [r7, #0] - 80098b4: 885b ldrh r3, [r3, #2] - 80098b6: 0a1b lsrs r3, r3, #8 - 80098b8: b29b uxth r3, r3 - 80098ba: 3b01 subs r3, #1 - 80098bc: 2b0e cmp r3, #14 - 80098be: f200 8152 bhi.w 8009b66 - 80098c2: a201 add r2, pc, #4 @ (adr r2, 80098c8 ) - 80098c4: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80098c8: 08009939 .word 0x08009939 - 80098cc: 08009951 .word 0x08009951 - 80098d0: 08009991 .word 0x08009991 - 80098d4: 08009b67 .word 0x08009b67 - 80098d8: 08009b67 .word 0x08009b67 - 80098dc: 08009b07 .word 0x08009b07 - 80098e0: 08009b33 .word 0x08009b33 - 80098e4: 08009b67 .word 0x08009b67 - 80098e8: 08009b67 .word 0x08009b67 - 80098ec: 08009b67 .word 0x08009b67 - 80098f0: 08009b67 .word 0x08009b67 - 80098f4: 08009b67 .word 0x08009b67 - 80098f8: 08009b67 .word 0x08009b67 - 80098fc: 08009b67 .word 0x08009b67 - 8009900: 08009905 .word 0x08009905 + 800973a: 683b ldr r3, [r7, #0] + 800973c: 885b ldrh r3, [r3, #2] + 800973e: 0a1b lsrs r3, r3, #8 + 8009740: b29b uxth r3, r3 + 8009742: 3b01 subs r3, #1 + 8009744: 2b0e cmp r3, #14 + 8009746: f200 8152 bhi.w 80099ee + 800974a: a201 add r2, pc, #4 @ (adr r2, 8009750 ) + 800974c: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 8009750: 080097c1 .word 0x080097c1 + 8009754: 080097d9 .word 0x080097d9 + 8009758: 08009819 .word 0x08009819 + 800975c: 080099ef .word 0x080099ef + 8009760: 080099ef .word 0x080099ef + 8009764: 0800998f .word 0x0800998f + 8009768: 080099bb .word 0x080099bb + 800976c: 080099ef .word 0x080099ef + 8009770: 080099ef .word 0x080099ef + 8009774: 080099ef .word 0x080099ef + 8009778: 080099ef .word 0x080099ef + 800977c: 080099ef .word 0x080099ef + 8009780: 080099ef .word 0x080099ef + 8009784: 080099ef .word 0x080099ef + 8009788: 0800978d .word 0x0800978d { #if ((USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U)) case USB_DESC_TYPE_BOS: if (pdev->pDesc->GetBOSDescriptor != NULL) - 8009904: 687b ldr r3, [r7, #4] - 8009906: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 800990a: 69db ldr r3, [r3, #28] - 800990c: 2b00 cmp r3, #0 - 800990e: d00b beq.n 8009928 + 800978c: 687b ldr r3, [r7, #4] + 800978e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009792: 69db ldr r3, [r3, #28] + 8009794: 2b00 cmp r3, #0 + 8009796: d00b beq.n 80097b0 { pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len); - 8009910: 687b ldr r3, [r7, #4] - 8009912: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009916: 69db ldr r3, [r3, #28] - 8009918: 687a ldr r2, [r7, #4] - 800991a: 7c12 ldrb r2, [r2, #16] - 800991c: f107 0108 add.w r1, r7, #8 - 8009920: 4610 mov r0, r2 - 8009922: 4798 blx r3 - 8009924: 60f8 str r0, [r7, #12] + 8009798: 687b ldr r3, [r7, #4] + 800979a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800979e: 69db ldr r3, [r3, #28] + 80097a0: 687a ldr r2, [r7, #4] + 80097a2: 7c12 ldrb r2, [r2, #16] + 80097a4: f107 0108 add.w r1, r7, #8 + 80097a8: 4610 mov r0, r2 + 80097aa: 4798 blx r3 + 80097ac: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009926: e126 b.n 8009b76 + 80097ae: e126 b.n 80099fe USBD_CtlError(pdev, req); - 8009928: 6839 ldr r1, [r7, #0] - 800992a: 6878 ldr r0, [r7, #4] - 800992c: f000 fb27 bl 8009f7e + 80097b0: 6839 ldr r1, [r7, #0] + 80097b2: 6878 ldr r0, [r7, #4] + 80097b4: f000 fb27 bl 8009e06 err++; - 8009930: 7afb ldrb r3, [r7, #11] - 8009932: 3301 adds r3, #1 - 8009934: 72fb strb r3, [r7, #11] + 80097b8: 7afb ldrb r3, [r7, #11] + 80097ba: 3301 adds r3, #1 + 80097bc: 72fb strb r3, [r7, #11] break; - 8009936: e11e b.n 8009b76 + 80097be: e11e b.n 80099fe #endif /* (USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U) */ case USB_DESC_TYPE_DEVICE: pbuf = pdev->pDesc->GetDeviceDescriptor(pdev->dev_speed, &len); - 8009938: 687b ldr r3, [r7, #4] - 800993a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 800993e: 681b ldr r3, [r3, #0] - 8009940: 687a ldr r2, [r7, #4] - 8009942: 7c12 ldrb r2, [r2, #16] - 8009944: f107 0108 add.w r1, r7, #8 - 8009948: 4610 mov r0, r2 - 800994a: 4798 blx r3 - 800994c: 60f8 str r0, [r7, #12] + 80097c0: 687b ldr r3, [r7, #4] + 80097c2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 80097c6: 681b ldr r3, [r3, #0] + 80097c8: 687a ldr r2, [r7, #4] + 80097ca: 7c12 ldrb r2, [r2, #16] + 80097cc: f107 0108 add.w r1, r7, #8 + 80097d0: 4610 mov r0, r2 + 80097d2: 4798 blx r3 + 80097d4: 60f8 str r0, [r7, #12] break; - 800994e: e112 b.n 8009b76 + 80097d6: e112 b.n 80099fe case USB_DESC_TYPE_CONFIGURATION: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009950: 687b ldr r3, [r7, #4] - 8009952: 7c1b ldrb r3, [r3, #16] - 8009954: 2b00 cmp r3, #0 - 8009956: d10d bne.n 8009974 + 80097d8: 687b ldr r3, [r7, #4] + 80097da: 7c1b ldrb r3, [r3, #16] + 80097dc: 2b00 cmp r3, #0 + 80097de: d10d bne.n 80097fc pbuf = (uint8_t *)USBD_CMPSIT.GetHSConfigDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetHSConfigDescriptor(&len); - 8009958: 687b ldr r3, [r7, #4] - 800995a: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800995e: 6a9b ldr r3, [r3, #40] @ 0x28 - 8009960: f107 0208 add.w r2, r7, #8 - 8009964: 4610 mov r0, r2 - 8009966: 4798 blx r3 - 8009968: 60f8 str r0, [r7, #12] + 80097e0: 687b ldr r3, [r7, #4] + 80097e2: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80097e6: 6a9b ldr r3, [r3, #40] @ 0x28 + 80097e8: f107 0208 add.w r2, r7, #8 + 80097ec: 4610 mov r0, r2 + 80097ee: 4798 blx r3 + 80097f0: 60f8 str r0, [r7, #12] } pbuf[1] = USB_DESC_TYPE_CONFIGURATION; - 800996a: 68fb ldr r3, [r7, #12] - 800996c: 3301 adds r3, #1 - 800996e: 2202 movs r2, #2 - 8009970: 701a strb r2, [r3, #0] + 80097f2: 68fb ldr r3, [r7, #12] + 80097f4: 3301 adds r3, #1 + 80097f6: 2202 movs r2, #2 + 80097f8: 701a strb r2, [r3, #0] { pbuf = (uint8_t *)pdev->pClass[0]->GetFSConfigDescriptor(&len); } pbuf[1] = USB_DESC_TYPE_CONFIGURATION; } break; - 8009972: e100 b.n 8009b76 + 80097fa: e100 b.n 80099fe pbuf = (uint8_t *)pdev->pClass[0]->GetFSConfigDescriptor(&len); - 8009974: 687b ldr r3, [r7, #4] - 8009976: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 800997a: 6adb ldr r3, [r3, #44] @ 0x2c - 800997c: f107 0208 add.w r2, r7, #8 - 8009980: 4610 mov r0, r2 - 8009982: 4798 blx r3 - 8009984: 60f8 str r0, [r7, #12] + 80097fc: 687b ldr r3, [r7, #4] + 80097fe: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 8009802: 6adb ldr r3, [r3, #44] @ 0x2c + 8009804: f107 0208 add.w r2, r7, #8 + 8009808: 4610 mov r0, r2 + 800980a: 4798 blx r3 + 800980c: 60f8 str r0, [r7, #12] pbuf[1] = USB_DESC_TYPE_CONFIGURATION; - 8009986: 68fb ldr r3, [r7, #12] - 8009988: 3301 adds r3, #1 - 800998a: 2202 movs r2, #2 - 800998c: 701a strb r2, [r3, #0] + 800980e: 68fb ldr r3, [r7, #12] + 8009810: 3301 adds r3, #1 + 8009812: 2202 movs r2, #2 + 8009814: 701a strb r2, [r3, #0] break; - 800998e: e0f2 b.n 8009b76 + 8009816: e0f2 b.n 80099fe case USB_DESC_TYPE_STRING: switch ((uint8_t)(req->wValue)) - 8009990: 683b ldr r3, [r7, #0] - 8009992: 885b ldrh r3, [r3, #2] - 8009994: b2db uxtb r3, r3 - 8009996: 2b05 cmp r3, #5 - 8009998: f200 80ac bhi.w 8009af4 - 800999c: a201 add r2, pc, #4 @ (adr r2, 80099a4 ) - 800999e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 80099a2: bf00 nop - 80099a4: 080099bd .word 0x080099bd - 80099a8: 080099f1 .word 0x080099f1 - 80099ac: 08009a25 .word 0x08009a25 - 80099b0: 08009a59 .word 0x08009a59 - 80099b4: 08009a8d .word 0x08009a8d - 80099b8: 08009ac1 .word 0x08009ac1 + 8009818: 683b ldr r3, [r7, #0] + 800981a: 885b ldrh r3, [r3, #2] + 800981c: b2db uxtb r3, r3 + 800981e: 2b05 cmp r3, #5 + 8009820: f200 80ac bhi.w 800997c + 8009824: a201 add r2, pc, #4 @ (adr r2, 800982c ) + 8009826: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800982a: bf00 nop + 800982c: 08009845 .word 0x08009845 + 8009830: 08009879 .word 0x08009879 + 8009834: 080098ad .word 0x080098ad + 8009838: 080098e1 .word 0x080098e1 + 800983c: 08009915 .word 0x08009915 + 8009840: 08009949 .word 0x08009949 { case USBD_IDX_LANGID_STR: if (pdev->pDesc->GetLangIDStrDescriptor != NULL) - 80099bc: 687b ldr r3, [r7, #4] - 80099be: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099c2: 685b ldr r3, [r3, #4] - 80099c4: 2b00 cmp r3, #0 - 80099c6: d00b beq.n 80099e0 + 8009844: 687b ldr r3, [r7, #4] + 8009846: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800984a: 685b ldr r3, [r3, #4] + 800984c: 2b00 cmp r3, #0 + 800984e: d00b beq.n 8009868 { pbuf = pdev->pDesc->GetLangIDStrDescriptor(pdev->dev_speed, &len); - 80099c8: 687b ldr r3, [r7, #4] - 80099ca: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099ce: 685b ldr r3, [r3, #4] - 80099d0: 687a ldr r2, [r7, #4] - 80099d2: 7c12 ldrb r2, [r2, #16] - 80099d4: f107 0108 add.w r1, r7, #8 - 80099d8: 4610 mov r0, r2 - 80099da: 4798 blx r3 - 80099dc: 60f8 str r0, [r7, #12] + 8009850: 687b ldr r3, [r7, #4] + 8009852: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009856: 685b ldr r3, [r3, #4] + 8009858: 687a ldr r2, [r7, #4] + 800985a: 7c12 ldrb r2, [r2, #16] + 800985c: f107 0108 add.w r1, r7, #8 + 8009860: 4610 mov r0, r2 + 8009862: 4798 blx r3 + 8009864: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 80099de: e091 b.n 8009b04 + 8009866: e091 b.n 800998c USBD_CtlError(pdev, req); - 80099e0: 6839 ldr r1, [r7, #0] - 80099e2: 6878 ldr r0, [r7, #4] - 80099e4: f000 facb bl 8009f7e + 8009868: 6839 ldr r1, [r7, #0] + 800986a: 6878 ldr r0, [r7, #4] + 800986c: f000 facb bl 8009e06 err++; - 80099e8: 7afb ldrb r3, [r7, #11] - 80099ea: 3301 adds r3, #1 - 80099ec: 72fb strb r3, [r7, #11] + 8009870: 7afb ldrb r3, [r7, #11] + 8009872: 3301 adds r3, #1 + 8009874: 72fb strb r3, [r7, #11] break; - 80099ee: e089 b.n 8009b04 + 8009876: e089 b.n 800998c case USBD_IDX_MFC_STR: if (pdev->pDesc->GetManufacturerStrDescriptor != NULL) - 80099f0: 687b ldr r3, [r7, #4] - 80099f2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 80099f6: 689b ldr r3, [r3, #8] - 80099f8: 2b00 cmp r3, #0 - 80099fa: d00b beq.n 8009a14 + 8009878: 687b ldr r3, [r7, #4] + 800987a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800987e: 689b ldr r3, [r3, #8] + 8009880: 2b00 cmp r3, #0 + 8009882: d00b beq.n 800989c { pbuf = pdev->pDesc->GetManufacturerStrDescriptor(pdev->dev_speed, &len); - 80099fc: 687b ldr r3, [r7, #4] - 80099fe: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a02: 689b ldr r3, [r3, #8] - 8009a04: 687a ldr r2, [r7, #4] - 8009a06: 7c12 ldrb r2, [r2, #16] - 8009a08: f107 0108 add.w r1, r7, #8 - 8009a0c: 4610 mov r0, r2 - 8009a0e: 4798 blx r3 - 8009a10: 60f8 str r0, [r7, #12] + 8009884: 687b ldr r3, [r7, #4] + 8009886: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800988a: 689b ldr r3, [r3, #8] + 800988c: 687a ldr r2, [r7, #4] + 800988e: 7c12 ldrb r2, [r2, #16] + 8009890: f107 0108 add.w r1, r7, #8 + 8009894: 4610 mov r0, r2 + 8009896: 4798 blx r3 + 8009898: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a12: e077 b.n 8009b04 + 800989a: e077 b.n 800998c USBD_CtlError(pdev, req); - 8009a14: 6839 ldr r1, [r7, #0] - 8009a16: 6878 ldr r0, [r7, #4] - 8009a18: f000 fab1 bl 8009f7e + 800989c: 6839 ldr r1, [r7, #0] + 800989e: 6878 ldr r0, [r7, #4] + 80098a0: f000 fab1 bl 8009e06 err++; - 8009a1c: 7afb ldrb r3, [r7, #11] - 8009a1e: 3301 adds r3, #1 - 8009a20: 72fb strb r3, [r7, #11] + 80098a4: 7afb ldrb r3, [r7, #11] + 80098a6: 3301 adds r3, #1 + 80098a8: 72fb strb r3, [r7, #11] break; - 8009a22: e06f b.n 8009b04 + 80098aa: e06f b.n 800998c case USBD_IDX_PRODUCT_STR: if (pdev->pDesc->GetProductStrDescriptor != NULL) - 8009a24: 687b ldr r3, [r7, #4] - 8009a26: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a2a: 68db ldr r3, [r3, #12] - 8009a2c: 2b00 cmp r3, #0 - 8009a2e: d00b beq.n 8009a48 + 80098ac: 687b ldr r3, [r7, #4] + 80098ae: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 80098b2: 68db ldr r3, [r3, #12] + 80098b4: 2b00 cmp r3, #0 + 80098b6: d00b beq.n 80098d0 { pbuf = pdev->pDesc->GetProductStrDescriptor(pdev->dev_speed, &len); - 8009a30: 687b ldr r3, [r7, #4] - 8009a32: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a36: 68db ldr r3, [r3, #12] - 8009a38: 687a ldr r2, [r7, #4] - 8009a3a: 7c12 ldrb r2, [r2, #16] - 8009a3c: f107 0108 add.w r1, r7, #8 - 8009a40: 4610 mov r0, r2 - 8009a42: 4798 blx r3 - 8009a44: 60f8 str r0, [r7, #12] + 80098b8: 687b ldr r3, [r7, #4] + 80098ba: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 80098be: 68db ldr r3, [r3, #12] + 80098c0: 687a ldr r2, [r7, #4] + 80098c2: 7c12 ldrb r2, [r2, #16] + 80098c4: f107 0108 add.w r1, r7, #8 + 80098c8: 4610 mov r0, r2 + 80098ca: 4798 blx r3 + 80098cc: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a46: e05d b.n 8009b04 + 80098ce: e05d b.n 800998c USBD_CtlError(pdev, req); - 8009a48: 6839 ldr r1, [r7, #0] - 8009a4a: 6878 ldr r0, [r7, #4] - 8009a4c: f000 fa97 bl 8009f7e + 80098d0: 6839 ldr r1, [r7, #0] + 80098d2: 6878 ldr r0, [r7, #4] + 80098d4: f000 fa97 bl 8009e06 err++; - 8009a50: 7afb ldrb r3, [r7, #11] - 8009a52: 3301 adds r3, #1 - 8009a54: 72fb strb r3, [r7, #11] + 80098d8: 7afb ldrb r3, [r7, #11] + 80098da: 3301 adds r3, #1 + 80098dc: 72fb strb r3, [r7, #11] break; - 8009a56: e055 b.n 8009b04 + 80098de: e055 b.n 800998c case USBD_IDX_SERIAL_STR: if (pdev->pDesc->GetSerialStrDescriptor != NULL) - 8009a58: 687b ldr r3, [r7, #4] - 8009a5a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a5e: 691b ldr r3, [r3, #16] - 8009a60: 2b00 cmp r3, #0 - 8009a62: d00b beq.n 8009a7c + 80098e0: 687b ldr r3, [r7, #4] + 80098e2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 80098e6: 691b ldr r3, [r3, #16] + 80098e8: 2b00 cmp r3, #0 + 80098ea: d00b beq.n 8009904 { pbuf = pdev->pDesc->GetSerialStrDescriptor(pdev->dev_speed, &len); - 8009a64: 687b ldr r3, [r7, #4] - 8009a66: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a6a: 691b ldr r3, [r3, #16] - 8009a6c: 687a ldr r2, [r7, #4] - 8009a6e: 7c12 ldrb r2, [r2, #16] - 8009a70: f107 0108 add.w r1, r7, #8 - 8009a74: 4610 mov r0, r2 - 8009a76: 4798 blx r3 - 8009a78: 60f8 str r0, [r7, #12] + 80098ec: 687b ldr r3, [r7, #4] + 80098ee: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 80098f2: 691b ldr r3, [r3, #16] + 80098f4: 687a ldr r2, [r7, #4] + 80098f6: 7c12 ldrb r2, [r2, #16] + 80098f8: f107 0108 add.w r1, r7, #8 + 80098fc: 4610 mov r0, r2 + 80098fe: 4798 blx r3 + 8009900: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009a7a: e043 b.n 8009b04 + 8009902: e043 b.n 800998c USBD_CtlError(pdev, req); - 8009a7c: 6839 ldr r1, [r7, #0] - 8009a7e: 6878 ldr r0, [r7, #4] - 8009a80: f000 fa7d bl 8009f7e + 8009904: 6839 ldr r1, [r7, #0] + 8009906: 6878 ldr r0, [r7, #4] + 8009908: f000 fa7d bl 8009e06 err++; - 8009a84: 7afb ldrb r3, [r7, #11] - 8009a86: 3301 adds r3, #1 - 8009a88: 72fb strb r3, [r7, #11] + 800990c: 7afb ldrb r3, [r7, #11] + 800990e: 3301 adds r3, #1 + 8009910: 72fb strb r3, [r7, #11] break; - 8009a8a: e03b b.n 8009b04 + 8009912: e03b b.n 800998c case USBD_IDX_CONFIG_STR: if (pdev->pDesc->GetConfigurationStrDescriptor != NULL) - 8009a8c: 687b ldr r3, [r7, #4] - 8009a8e: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a92: 695b ldr r3, [r3, #20] - 8009a94: 2b00 cmp r3, #0 - 8009a96: d00b beq.n 8009ab0 + 8009914: 687b ldr r3, [r7, #4] + 8009916: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800991a: 695b ldr r3, [r3, #20] + 800991c: 2b00 cmp r3, #0 + 800991e: d00b beq.n 8009938 { pbuf = pdev->pDesc->GetConfigurationStrDescriptor(pdev->dev_speed, &len); - 8009a98: 687b ldr r3, [r7, #4] - 8009a9a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009a9e: 695b ldr r3, [r3, #20] - 8009aa0: 687a ldr r2, [r7, #4] - 8009aa2: 7c12 ldrb r2, [r2, #16] - 8009aa4: f107 0108 add.w r1, r7, #8 - 8009aa8: 4610 mov r0, r2 - 8009aaa: 4798 blx r3 - 8009aac: 60f8 str r0, [r7, #12] + 8009920: 687b ldr r3, [r7, #4] + 8009922: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 8009926: 695b ldr r3, [r3, #20] + 8009928: 687a ldr r2, [r7, #4] + 800992a: 7c12 ldrb r2, [r2, #16] + 800992c: f107 0108 add.w r1, r7, #8 + 8009930: 4610 mov r0, r2 + 8009932: 4798 blx r3 + 8009934: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009aae: e029 b.n 8009b04 + 8009936: e029 b.n 800998c USBD_CtlError(pdev, req); - 8009ab0: 6839 ldr r1, [r7, #0] - 8009ab2: 6878 ldr r0, [r7, #4] - 8009ab4: f000 fa63 bl 8009f7e + 8009938: 6839 ldr r1, [r7, #0] + 800993a: 6878 ldr r0, [r7, #4] + 800993c: f000 fa63 bl 8009e06 err++; - 8009ab8: 7afb ldrb r3, [r7, #11] - 8009aba: 3301 adds r3, #1 - 8009abc: 72fb strb r3, [r7, #11] + 8009940: 7afb ldrb r3, [r7, #11] + 8009942: 3301 adds r3, #1 + 8009944: 72fb strb r3, [r7, #11] break; - 8009abe: e021 b.n 8009b04 + 8009946: e021 b.n 800998c case USBD_IDX_INTERFACE_STR: if (pdev->pDesc->GetInterfaceStrDescriptor != NULL) - 8009ac0: 687b ldr r3, [r7, #4] - 8009ac2: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009ac6: 699b ldr r3, [r3, #24] - 8009ac8: 2b00 cmp r3, #0 - 8009aca: d00b beq.n 8009ae4 + 8009948: 687b ldr r3, [r7, #4] + 800994a: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800994e: 699b ldr r3, [r3, #24] + 8009950: 2b00 cmp r3, #0 + 8009952: d00b beq.n 800996c { pbuf = pdev->pDesc->GetInterfaceStrDescriptor(pdev->dev_speed, &len); - 8009acc: 687b ldr r3, [r7, #4] - 8009ace: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 - 8009ad2: 699b ldr r3, [r3, #24] - 8009ad4: 687a ldr r2, [r7, #4] - 8009ad6: 7c12 ldrb r2, [r2, #16] - 8009ad8: f107 0108 add.w r1, r7, #8 - 8009adc: 4610 mov r0, r2 - 8009ade: 4798 blx r3 - 8009ae0: 60f8 str r0, [r7, #12] + 8009954: 687b ldr r3, [r7, #4] + 8009956: f8d3 32b4 ldr.w r3, [r3, #692] @ 0x2b4 + 800995a: 699b ldr r3, [r3, #24] + 800995c: 687a ldr r2, [r7, #4] + 800995e: 7c12 ldrb r2, [r2, #16] + 8009960: f107 0108 add.w r1, r7, #8 + 8009964: 4610 mov r0, r2 + 8009966: 4798 blx r3 + 8009968: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009ae2: e00f b.n 8009b04 + 800996a: e00f b.n 800998c USBD_CtlError(pdev, req); - 8009ae4: 6839 ldr r1, [r7, #0] - 8009ae6: 6878 ldr r0, [r7, #4] - 8009ae8: f000 fa49 bl 8009f7e + 800996c: 6839 ldr r1, [r7, #0] + 800996e: 6878 ldr r0, [r7, #4] + 8009970: f000 fa49 bl 8009e06 err++; - 8009aec: 7afb ldrb r3, [r7, #11] - 8009aee: 3301 adds r3, #1 - 8009af0: 72fb strb r3, [r7, #11] + 8009974: 7afb ldrb r3, [r7, #11] + 8009976: 3301 adds r3, #1 + 8009978: 72fb strb r3, [r7, #11] break; - 8009af2: e007 b.n 8009b04 + 800997a: e007 b.n 800998c err++; } #endif /* USBD_SUPPORT_USER_STRING_DESC */ #if ((USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U)) USBD_CtlError(pdev, req); - 8009af4: 6839 ldr r1, [r7, #0] - 8009af6: 6878 ldr r0, [r7, #4] - 8009af8: f000 fa41 bl 8009f7e + 800997c: 6839 ldr r1, [r7, #0] + 800997e: 6878 ldr r0, [r7, #4] + 8009980: f000 fa41 bl 8009e06 err++; - 8009afc: 7afb ldrb r3, [r7, #11] - 8009afe: 3301 adds r3, #1 - 8009b00: 72fb strb r3, [r7, #11] + 8009984: 7afb ldrb r3, [r7, #11] + 8009986: 3301 adds r3, #1 + 8009988: 72fb strb r3, [r7, #11] #endif /* (USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U) */ break; - 8009b02: bf00 nop + 800998a: bf00 nop } break; - 8009b04: e037 b.n 8009b76 + 800998c: e037 b.n 80099fe case USB_DESC_TYPE_DEVICE_QUALIFIER: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009b06: 687b ldr r3, [r7, #4] - 8009b08: 7c1b ldrb r3, [r3, #16] - 8009b0a: 2b00 cmp r3, #0 - 8009b0c: d109 bne.n 8009b22 + 800998e: 687b ldr r3, [r7, #4] + 8009990: 7c1b ldrb r3, [r3, #16] + 8009992: 2b00 cmp r3, #0 + 8009994: d109 bne.n 80099aa pbuf = (uint8_t *)USBD_CMPSIT.GetDeviceQualifierDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetDeviceQualifierDescriptor(&len); - 8009b0e: 687b ldr r3, [r7, #4] - 8009b10: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009b14: 6b5b ldr r3, [r3, #52] @ 0x34 - 8009b16: f107 0208 add.w r2, r7, #8 - 8009b1a: 4610 mov r0, r2 - 8009b1c: 4798 blx r3 - 8009b1e: 60f8 str r0, [r7, #12] + 8009996: 687b ldr r3, [r7, #4] + 8009998: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 800999c: 6b5b ldr r3, [r3, #52] @ 0x34 + 800999e: f107 0208 add.w r2, r7, #8 + 80099a2: 4610 mov r0, r2 + 80099a4: 4798 blx r3 + 80099a6: 60f8 str r0, [r7, #12] else { USBD_CtlError(pdev, req); err++; } break; - 8009b20: e029 b.n 8009b76 + 80099a8: e029 b.n 80099fe USBD_CtlError(pdev, req); - 8009b22: 6839 ldr r1, [r7, #0] - 8009b24: 6878 ldr r0, [r7, #4] - 8009b26: f000 fa2a bl 8009f7e + 80099aa: 6839 ldr r1, [r7, #0] + 80099ac: 6878 ldr r0, [r7, #4] + 80099ae: f000 fa2a bl 8009e06 err++; - 8009b2a: 7afb ldrb r3, [r7, #11] - 8009b2c: 3301 adds r3, #1 - 8009b2e: 72fb strb r3, [r7, #11] + 80099b2: 7afb ldrb r3, [r7, #11] + 80099b4: 3301 adds r3, #1 + 80099b6: 72fb strb r3, [r7, #11] break; - 8009b30: e021 b.n 8009b76 + 80099b8: e021 b.n 80099fe case USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION: if (pdev->dev_speed == USBD_SPEED_HIGH) - 8009b32: 687b ldr r3, [r7, #4] - 8009b34: 7c1b ldrb r3, [r3, #16] - 8009b36: 2b00 cmp r3, #0 - 8009b38: d10d bne.n 8009b56 + 80099ba: 687b ldr r3, [r7, #4] + 80099bc: 7c1b ldrb r3, [r3, #16] + 80099be: 2b00 cmp r3, #0 + 80099c0: d10d bne.n 80099de pbuf = (uint8_t *)USBD_CMPSIT.GetOtherSpeedConfigDescriptor(&len); } else #endif /* USE_USBD_COMPOSITE */ { pbuf = (uint8_t *)pdev->pClass[0]->GetOtherSpeedConfigDescriptor(&len); - 8009b3a: 687b ldr r3, [r7, #4] - 8009b3c: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 - 8009b40: 6b1b ldr r3, [r3, #48] @ 0x30 - 8009b42: f107 0208 add.w r2, r7, #8 - 8009b46: 4610 mov r0, r2 - 8009b48: 4798 blx r3 - 8009b4a: 60f8 str r0, [r7, #12] + 80099c2: 687b ldr r3, [r7, #4] + 80099c4: f8d3 32b8 ldr.w r3, [r3, #696] @ 0x2b8 + 80099c8: 6b1b ldr r3, [r3, #48] @ 0x30 + 80099ca: f107 0208 add.w r2, r7, #8 + 80099ce: 4610 mov r0, r2 + 80099d0: 4798 blx r3 + 80099d2: 60f8 str r0, [r7, #12] } pbuf[1] = USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION; - 8009b4c: 68fb ldr r3, [r7, #12] - 8009b4e: 3301 adds r3, #1 - 8009b50: 2207 movs r2, #7 - 8009b52: 701a strb r2, [r3, #0] + 80099d4: 68fb ldr r3, [r7, #12] + 80099d6: 3301 adds r3, #1 + 80099d8: 2207 movs r2, #7 + 80099da: 701a strb r2, [r3, #0] else { USBD_CtlError(pdev, req); err++; } break; - 8009b54: e00f b.n 8009b76 + 80099dc: e00f b.n 80099fe USBD_CtlError(pdev, req); - 8009b56: 6839 ldr r1, [r7, #0] - 8009b58: 6878 ldr r0, [r7, #4] - 8009b5a: f000 fa10 bl 8009f7e + 80099de: 6839 ldr r1, [r7, #0] + 80099e0: 6878 ldr r0, [r7, #4] + 80099e2: f000 fa10 bl 8009e06 err++; - 8009b5e: 7afb ldrb r3, [r7, #11] - 8009b60: 3301 adds r3, #1 - 8009b62: 72fb strb r3, [r7, #11] + 80099e6: 7afb ldrb r3, [r7, #11] + 80099e8: 3301 adds r3, #1 + 80099ea: 72fb strb r3, [r7, #11] break; - 8009b64: e007 b.n 8009b76 + 80099ec: e007 b.n 80099fe default: USBD_CtlError(pdev, req); - 8009b66: 6839 ldr r1, [r7, #0] - 8009b68: 6878 ldr r0, [r7, #4] - 8009b6a: f000 fa08 bl 8009f7e + 80099ee: 6839 ldr r1, [r7, #0] + 80099f0: 6878 ldr r0, [r7, #4] + 80099f2: f000 fa08 bl 8009e06 err++; - 8009b6e: 7afb ldrb r3, [r7, #11] - 8009b70: 3301 adds r3, #1 - 8009b72: 72fb strb r3, [r7, #11] + 80099f6: 7afb ldrb r3, [r7, #11] + 80099f8: 3301 adds r3, #1 + 80099fa: 72fb strb r3, [r7, #11] break; - 8009b74: bf00 nop + 80099fc: bf00 nop } if (err != 0U) - 8009b76: 7afb ldrb r3, [r7, #11] - 8009b78: 2b00 cmp r3, #0 - 8009b7a: d11e bne.n 8009bba + 80099fe: 7afb ldrb r3, [r7, #11] + 8009a00: 2b00 cmp r3, #0 + 8009a02: d11e bne.n 8009a42 { return; } if (req->wLength != 0U) - 8009b7c: 683b ldr r3, [r7, #0] - 8009b7e: 88db ldrh r3, [r3, #6] - 8009b80: 2b00 cmp r3, #0 - 8009b82: d016 beq.n 8009bb2 + 8009a04: 683b ldr r3, [r7, #0] + 8009a06: 88db ldrh r3, [r3, #6] + 8009a08: 2b00 cmp r3, #0 + 8009a0a: d016 beq.n 8009a3a { if (len != 0U) - 8009b84: 893b ldrh r3, [r7, #8] - 8009b86: 2b00 cmp r3, #0 - 8009b88: d00e beq.n 8009ba8 + 8009a0c: 893b ldrh r3, [r7, #8] + 8009a0e: 2b00 cmp r3, #0 + 8009a10: d00e beq.n 8009a30 { len = MIN(len, req->wLength); - 8009b8a: 683b ldr r3, [r7, #0] - 8009b8c: 88da ldrh r2, [r3, #6] - 8009b8e: 893b ldrh r3, [r7, #8] - 8009b90: 4293 cmp r3, r2 - 8009b92: bf28 it cs - 8009b94: 4613 movcs r3, r2 - 8009b96: b29b uxth r3, r3 - 8009b98: 813b strh r3, [r7, #8] + 8009a12: 683b ldr r3, [r7, #0] + 8009a14: 88da ldrh r2, [r3, #6] + 8009a16: 893b ldrh r3, [r7, #8] + 8009a18: 4293 cmp r3, r2 + 8009a1a: bf28 it cs + 8009a1c: 4613 movcs r3, r2 + 8009a1e: b29b uxth r3, r3 + 8009a20: 813b strh r3, [r7, #8] (void)USBD_CtlSendData(pdev, pbuf, len); - 8009b9a: 893b ldrh r3, [r7, #8] - 8009b9c: 461a mov r2, r3 - 8009b9e: 68f9 ldr r1, [r7, #12] - 8009ba0: 6878 ldr r0, [r7, #4] - 8009ba2: f000 fa69 bl 800a078 - 8009ba6: e009 b.n 8009bbc + 8009a22: 893b ldrh r3, [r7, #8] + 8009a24: 461a mov r2, r3 + 8009a26: 68f9 ldr r1, [r7, #12] + 8009a28: 6878 ldr r0, [r7, #4] + 8009a2a: f000 fa69 bl 8009f00 + 8009a2e: e009 b.n 8009a44 } else { USBD_CtlError(pdev, req); - 8009ba8: 6839 ldr r1, [r7, #0] - 8009baa: 6878 ldr r0, [r7, #4] - 8009bac: f000 f9e7 bl 8009f7e - 8009bb0: e004 b.n 8009bbc + 8009a30: 6839 ldr r1, [r7, #0] + 8009a32: 6878 ldr r0, [r7, #4] + 8009a34: f000 f9e7 bl 8009e06 + 8009a38: e004 b.n 8009a44 } } else { (void)USBD_CtlSendStatus(pdev); - 8009bb2: 6878 ldr r0, [r7, #4] - 8009bb4: f000 faa0 bl 800a0f8 - 8009bb8: e000 b.n 8009bbc + 8009a3a: 6878 ldr r0, [r7, #4] + 8009a3c: f000 faa0 bl 8009f80 + 8009a40: e000 b.n 8009a44 return; - 8009bba: bf00 nop + 8009a42: bf00 nop } } - 8009bbc: 3710 adds r7, #16 - 8009bbe: 46bd mov sp, r7 - 8009bc0: bd80 pop {r7, pc} - 8009bc2: bf00 nop + 8009a44: 3710 adds r7, #16 + 8009a46: 46bd mov sp, r7 + 8009a48: bd80 pop {r7, pc} + 8009a4a: bf00 nop -08009bc4 : +08009a4c : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_SetAddress(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009bc4: b580 push {r7, lr} - 8009bc6: b084 sub sp, #16 - 8009bc8: af00 add r7, sp, #0 - 8009bca: 6078 str r0, [r7, #4] - 8009bcc: 6039 str r1, [r7, #0] + 8009a4c: b580 push {r7, lr} + 8009a4e: b084 sub sp, #16 + 8009a50: af00 add r7, sp, #0 + 8009a52: 6078 str r0, [r7, #4] + 8009a54: 6039 str r1, [r7, #0] uint8_t dev_addr; if ((req->wIndex == 0U) && (req->wLength == 0U) && (req->wValue < 128U)) - 8009bce: 683b ldr r3, [r7, #0] - 8009bd0: 889b ldrh r3, [r3, #4] - 8009bd2: 2b00 cmp r3, #0 - 8009bd4: d131 bne.n 8009c3a - 8009bd6: 683b ldr r3, [r7, #0] - 8009bd8: 88db ldrh r3, [r3, #6] - 8009bda: 2b00 cmp r3, #0 - 8009bdc: d12d bne.n 8009c3a - 8009bde: 683b ldr r3, [r7, #0] - 8009be0: 885b ldrh r3, [r3, #2] - 8009be2: 2b7f cmp r3, #127 @ 0x7f - 8009be4: d829 bhi.n 8009c3a + 8009a56: 683b ldr r3, [r7, #0] + 8009a58: 889b ldrh r3, [r3, #4] + 8009a5a: 2b00 cmp r3, #0 + 8009a5c: d131 bne.n 8009ac2 + 8009a5e: 683b ldr r3, [r7, #0] + 8009a60: 88db ldrh r3, [r3, #6] + 8009a62: 2b00 cmp r3, #0 + 8009a64: d12d bne.n 8009ac2 + 8009a66: 683b ldr r3, [r7, #0] + 8009a68: 885b ldrh r3, [r3, #2] + 8009a6a: 2b7f cmp r3, #127 @ 0x7f + 8009a6c: d829 bhi.n 8009ac2 { dev_addr = (uint8_t)(req->wValue) & 0x7FU; - 8009be6: 683b ldr r3, [r7, #0] - 8009be8: 885b ldrh r3, [r3, #2] - 8009bea: b2db uxtb r3, r3 - 8009bec: f003 037f and.w r3, r3, #127 @ 0x7f - 8009bf0: 73fb strb r3, [r7, #15] + 8009a6e: 683b ldr r3, [r7, #0] + 8009a70: 885b ldrh r3, [r3, #2] + 8009a72: b2db uxtb r3, r3 + 8009a74: f003 037f and.w r3, r3, #127 @ 0x7f + 8009a78: 73fb strb r3, [r7, #15] if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009bf2: 687b ldr r3, [r7, #4] - 8009bf4: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009bf8: b2db uxtb r3, r3 - 8009bfa: 2b03 cmp r3, #3 - 8009bfc: d104 bne.n 8009c08 + 8009a7a: 687b ldr r3, [r7, #4] + 8009a7c: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009a80: b2db uxtb r3, r3 + 8009a82: 2b03 cmp r3, #3 + 8009a84: d104 bne.n 8009a90 { USBD_CtlError(pdev, req); - 8009bfe: 6839 ldr r1, [r7, #0] - 8009c00: 6878 ldr r0, [r7, #4] - 8009c02: f000 f9bc bl 8009f7e + 8009a86: 6839 ldr r1, [r7, #0] + 8009a88: 6878 ldr r0, [r7, #4] + 8009a8a: f000 f9bc bl 8009e06 if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009c06: e01d b.n 8009c44 + 8009a8e: e01d b.n 8009acc } else { pdev->dev_address = dev_addr; - 8009c08: 687b ldr r3, [r7, #4] - 8009c0a: 7bfa ldrb r2, [r7, #15] - 8009c0c: f883 229e strb.w r2, [r3, #670] @ 0x29e + 8009a90: 687b ldr r3, [r7, #4] + 8009a92: 7bfa ldrb r2, [r7, #15] + 8009a94: f883 229e strb.w r2, [r3, #670] @ 0x29e (void)USBD_LL_SetUSBAddress(pdev, dev_addr); - 8009c10: 7bfb ldrb r3, [r7, #15] - 8009c12: 4619 mov r1, r3 - 8009c14: 6878 ldr r0, [r7, #4] - 8009c16: f000 fe4f bl 800a8b8 + 8009a98: 7bfb ldrb r3, [r7, #15] + 8009a9a: 4619 mov r1, r3 + 8009a9c: 6878 ldr r0, [r7, #4] + 8009a9e: f000 fe4f bl 800a740 (void)USBD_CtlSendStatus(pdev); - 8009c1a: 6878 ldr r0, [r7, #4] - 8009c1c: f000 fa6c bl 800a0f8 + 8009aa2: 6878 ldr r0, [r7, #4] + 8009aa4: f000 fa6c bl 8009f80 if (dev_addr != 0U) - 8009c20: 7bfb ldrb r3, [r7, #15] - 8009c22: 2b00 cmp r3, #0 - 8009c24: d004 beq.n 8009c30 + 8009aa8: 7bfb ldrb r3, [r7, #15] + 8009aaa: 2b00 cmp r3, #0 + 8009aac: d004 beq.n 8009ab8 { pdev->dev_state = USBD_STATE_ADDRESSED; - 8009c26: 687b ldr r3, [r7, #4] - 8009c28: 2202 movs r2, #2 - 8009c2a: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009aae: 687b ldr r3, [r7, #4] + 8009ab0: 2202 movs r2, #2 + 8009ab2: f883 229c strb.w r2, [r3, #668] @ 0x29c if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009c2e: e009 b.n 8009c44 + 8009ab6: e009 b.n 8009acc } else { pdev->dev_state = USBD_STATE_DEFAULT; - 8009c30: 687b ldr r3, [r7, #4] - 8009c32: 2201 movs r2, #1 - 8009c34: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009ab8: 687b ldr r3, [r7, #4] + 8009aba: 2201 movs r2, #1 + 8009abc: f883 229c strb.w r2, [r3, #668] @ 0x29c if (pdev->dev_state == USBD_STATE_CONFIGURED) - 8009c38: e004 b.n 8009c44 + 8009ac0: e004 b.n 8009acc } } } else { USBD_CtlError(pdev, req); - 8009c3a: 6839 ldr r1, [r7, #0] - 8009c3c: 6878 ldr r0, [r7, #4] - 8009c3e: f000 f99e bl 8009f7e + 8009ac2: 6839 ldr r1, [r7, #0] + 8009ac4: 6878 ldr r0, [r7, #4] + 8009ac6: f000 f99e bl 8009e06 } } - 8009c42: bf00 nop - 8009c44: bf00 nop - 8009c46: 3710 adds r7, #16 - 8009c48: 46bd mov sp, r7 - 8009c4a: bd80 pop {r7, pc} + 8009aca: bf00 nop + 8009acc: bf00 nop + 8009ace: 3710 adds r7, #16 + 8009ad0: 46bd mov sp, r7 + 8009ad2: bd80 pop {r7, pc} -08009c4c : +08009ad4 : * @param pdev: device instance * @param req: usb request * @retval status */ static USBD_StatusTypeDef USBD_SetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009c4c: b580 push {r7, lr} - 8009c4e: b084 sub sp, #16 - 8009c50: af00 add r7, sp, #0 - 8009c52: 6078 str r0, [r7, #4] - 8009c54: 6039 str r1, [r7, #0] + 8009ad4: b580 push {r7, lr} + 8009ad6: b084 sub sp, #16 + 8009ad8: af00 add r7, sp, #0 + 8009ada: 6078 str r0, [r7, #4] + 8009adc: 6039 str r1, [r7, #0] USBD_StatusTypeDef ret = USBD_OK; - 8009c56: 2300 movs r3, #0 - 8009c58: 73fb strb r3, [r7, #15] + 8009ade: 2300 movs r3, #0 + 8009ae0: 73fb strb r3, [r7, #15] static uint8_t cfgidx; cfgidx = (uint8_t)(req->wValue); - 8009c5a: 683b ldr r3, [r7, #0] - 8009c5c: 885b ldrh r3, [r3, #2] - 8009c5e: b2da uxtb r2, r3 - 8009c60: 4b4e ldr r3, [pc, #312] @ (8009d9c ) - 8009c62: 701a strb r2, [r3, #0] + 8009ae2: 683b ldr r3, [r7, #0] + 8009ae4: 885b ldrh r3, [r3, #2] + 8009ae6: b2da uxtb r2, r3 + 8009ae8: 4b4e ldr r3, [pc, #312] @ (8009c24 ) + 8009aea: 701a strb r2, [r3, #0] if (cfgidx > USBD_MAX_NUM_CONFIGURATION) - 8009c64: 4b4d ldr r3, [pc, #308] @ (8009d9c ) - 8009c66: 781b ldrb r3, [r3, #0] - 8009c68: 2b01 cmp r3, #1 - 8009c6a: d905 bls.n 8009c78 + 8009aec: 4b4d ldr r3, [pc, #308] @ (8009c24 ) + 8009aee: 781b ldrb r3, [r3, #0] + 8009af0: 2b01 cmp r3, #1 + 8009af2: d905 bls.n 8009b00 { USBD_CtlError(pdev, req); - 8009c6c: 6839 ldr r1, [r7, #0] - 8009c6e: 6878 ldr r0, [r7, #4] - 8009c70: f000 f985 bl 8009f7e + 8009af4: 6839 ldr r1, [r7, #0] + 8009af6: 6878 ldr r0, [r7, #4] + 8009af8: f000 f985 bl 8009e06 return USBD_FAIL; - 8009c74: 2303 movs r3, #3 - 8009c76: e08c b.n 8009d92 + 8009afc: 2303 movs r3, #3 + 8009afe: e08c b.n 8009c1a } switch (pdev->dev_state) - 8009c78: 687b ldr r3, [r7, #4] - 8009c7a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009c7e: b2db uxtb r3, r3 - 8009c80: 2b02 cmp r3, #2 - 8009c82: d002 beq.n 8009c8a - 8009c84: 2b03 cmp r3, #3 - 8009c86: d029 beq.n 8009cdc - 8009c88: e075 b.n 8009d76 + 8009b00: 687b ldr r3, [r7, #4] + 8009b02: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009b06: b2db uxtb r3, r3 + 8009b08: 2b02 cmp r3, #2 + 8009b0a: d002 beq.n 8009b12 + 8009b0c: 2b03 cmp r3, #3 + 8009b0e: d029 beq.n 8009b64 + 8009b10: e075 b.n 8009bfe { case USBD_STATE_ADDRESSED: if (cfgidx != 0U) - 8009c8a: 4b44 ldr r3, [pc, #272] @ (8009d9c ) - 8009c8c: 781b ldrb r3, [r3, #0] - 8009c8e: 2b00 cmp r3, #0 - 8009c90: d020 beq.n 8009cd4 + 8009b12: 4b44 ldr r3, [pc, #272] @ (8009c24 ) + 8009b14: 781b ldrb r3, [r3, #0] + 8009b16: 2b00 cmp r3, #0 + 8009b18: d020 beq.n 8009b5c { pdev->dev_config = cfgidx; - 8009c92: 4b42 ldr r3, [pc, #264] @ (8009d9c ) - 8009c94: 781b ldrb r3, [r3, #0] - 8009c96: 461a mov r2, r3 - 8009c98: 687b ldr r3, [r7, #4] - 8009c9a: 605a str r2, [r3, #4] + 8009b1a: 4b42 ldr r3, [pc, #264] @ (8009c24 ) + 8009b1c: 781b ldrb r3, [r3, #0] + 8009b1e: 461a mov r2, r3 + 8009b20: 687b ldr r3, [r7, #4] + 8009b22: 605a str r2, [r3, #4] ret = USBD_SetClassConfig(pdev, cfgidx); - 8009c9c: 4b3f ldr r3, [pc, #252] @ (8009d9c ) - 8009c9e: 781b ldrb r3, [r3, #0] - 8009ca0: 4619 mov r1, r3 - 8009ca2: 6878 ldr r0, [r7, #4] - 8009ca4: f7fe ffa3 bl 8008bee - 8009ca8: 4603 mov r3, r0 - 8009caa: 73fb strb r3, [r7, #15] + 8009b24: 4b3f ldr r3, [pc, #252] @ (8009c24 ) + 8009b26: 781b ldrb r3, [r3, #0] + 8009b28: 4619 mov r1, r3 + 8009b2a: 6878 ldr r0, [r7, #4] + 8009b2c: f7fe ffa3 bl 8008a76 + 8009b30: 4603 mov r3, r0 + 8009b32: 73fb strb r3, [r7, #15] if (ret != USBD_OK) - 8009cac: 7bfb ldrb r3, [r7, #15] - 8009cae: 2b00 cmp r3, #0 - 8009cb0: d008 beq.n 8009cc4 + 8009b34: 7bfb ldrb r3, [r7, #15] + 8009b36: 2b00 cmp r3, #0 + 8009b38: d008 beq.n 8009b4c { USBD_CtlError(pdev, req); - 8009cb2: 6839 ldr r1, [r7, #0] - 8009cb4: 6878 ldr r0, [r7, #4] - 8009cb6: f000 f962 bl 8009f7e + 8009b3a: 6839 ldr r1, [r7, #0] + 8009b3c: 6878 ldr r0, [r7, #4] + 8009b3e: f000 f962 bl 8009e06 pdev->dev_state = USBD_STATE_ADDRESSED; - 8009cba: 687b ldr r3, [r7, #4] - 8009cbc: 2202 movs r2, #2 - 8009cbe: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009b42: 687b ldr r3, [r7, #4] + 8009b44: 2202 movs r2, #2 + 8009b46: f883 229c strb.w r2, [r3, #668] @ 0x29c } else { (void)USBD_CtlSendStatus(pdev); } break; - 8009cc2: e065 b.n 8009d90 + 8009b4a: e065 b.n 8009c18 (void)USBD_CtlSendStatus(pdev); - 8009cc4: 6878 ldr r0, [r7, #4] - 8009cc6: f000 fa17 bl 800a0f8 + 8009b4c: 6878 ldr r0, [r7, #4] + 8009b4e: f000 fa17 bl 8009f80 pdev->dev_state = USBD_STATE_CONFIGURED; - 8009cca: 687b ldr r3, [r7, #4] - 8009ccc: 2203 movs r2, #3 - 8009cce: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009b52: 687b ldr r3, [r7, #4] + 8009b54: 2203 movs r2, #3 + 8009b56: f883 229c strb.w r2, [r3, #668] @ 0x29c break; - 8009cd2: e05d b.n 8009d90 + 8009b5a: e05d b.n 8009c18 (void)USBD_CtlSendStatus(pdev); - 8009cd4: 6878 ldr r0, [r7, #4] - 8009cd6: f000 fa0f bl 800a0f8 + 8009b5c: 6878 ldr r0, [r7, #4] + 8009b5e: f000 fa0f bl 8009f80 break; - 8009cda: e059 b.n 8009d90 + 8009b62: e059 b.n 8009c18 case USBD_STATE_CONFIGURED: if (cfgidx == 0U) - 8009cdc: 4b2f ldr r3, [pc, #188] @ (8009d9c ) - 8009cde: 781b ldrb r3, [r3, #0] - 8009ce0: 2b00 cmp r3, #0 - 8009ce2: d112 bne.n 8009d0a + 8009b64: 4b2f ldr r3, [pc, #188] @ (8009c24 ) + 8009b66: 781b ldrb r3, [r3, #0] + 8009b68: 2b00 cmp r3, #0 + 8009b6a: d112 bne.n 8009b92 { pdev->dev_state = USBD_STATE_ADDRESSED; - 8009ce4: 687b ldr r3, [r7, #4] - 8009ce6: 2202 movs r2, #2 - 8009ce8: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009b6c: 687b ldr r3, [r7, #4] + 8009b6e: 2202 movs r2, #2 + 8009b70: f883 229c strb.w r2, [r3, #668] @ 0x29c pdev->dev_config = cfgidx; - 8009cec: 4b2b ldr r3, [pc, #172] @ (8009d9c ) - 8009cee: 781b ldrb r3, [r3, #0] - 8009cf0: 461a mov r2, r3 - 8009cf2: 687b ldr r3, [r7, #4] - 8009cf4: 605a str r2, [r3, #4] + 8009b74: 4b2b ldr r3, [pc, #172] @ (8009c24 ) + 8009b76: 781b ldrb r3, [r3, #0] + 8009b78: 461a mov r2, r3 + 8009b7a: 687b ldr r3, [r7, #4] + 8009b7c: 605a str r2, [r3, #4] (void)USBD_ClrClassConfig(pdev, cfgidx); - 8009cf6: 4b29 ldr r3, [pc, #164] @ (8009d9c ) - 8009cf8: 781b ldrb r3, [r3, #0] - 8009cfa: 4619 mov r1, r3 - 8009cfc: 6878 ldr r0, [r7, #4] - 8009cfe: f7fe ff92 bl 8008c26 + 8009b7e: 4b29 ldr r3, [pc, #164] @ (8009c24 ) + 8009b80: 781b ldrb r3, [r3, #0] + 8009b82: 4619 mov r1, r3 + 8009b84: 6878 ldr r0, [r7, #4] + 8009b86: f7fe ff92 bl 8008aae (void)USBD_CtlSendStatus(pdev); - 8009d02: 6878 ldr r0, [r7, #4] - 8009d04: f000 f9f8 bl 800a0f8 + 8009b8a: 6878 ldr r0, [r7, #4] + 8009b8c: f000 f9f8 bl 8009f80 } else { (void)USBD_CtlSendStatus(pdev); } break; - 8009d08: e042 b.n 8009d90 + 8009b90: e042 b.n 8009c18 else if (cfgidx != pdev->dev_config) - 8009d0a: 4b24 ldr r3, [pc, #144] @ (8009d9c ) - 8009d0c: 781b ldrb r3, [r3, #0] - 8009d0e: 461a mov r2, r3 - 8009d10: 687b ldr r3, [r7, #4] - 8009d12: 685b ldr r3, [r3, #4] - 8009d14: 429a cmp r2, r3 - 8009d16: d02a beq.n 8009d6e + 8009b92: 4b24 ldr r3, [pc, #144] @ (8009c24 ) + 8009b94: 781b ldrb r3, [r3, #0] + 8009b96: 461a mov r2, r3 + 8009b98: 687b ldr r3, [r7, #4] + 8009b9a: 685b ldr r3, [r3, #4] + 8009b9c: 429a cmp r2, r3 + 8009b9e: d02a beq.n 8009bf6 (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); - 8009d18: 687b ldr r3, [r7, #4] - 8009d1a: 685b ldr r3, [r3, #4] - 8009d1c: b2db uxtb r3, r3 - 8009d1e: 4619 mov r1, r3 - 8009d20: 6878 ldr r0, [r7, #4] - 8009d22: f7fe ff80 bl 8008c26 + 8009ba0: 687b ldr r3, [r7, #4] + 8009ba2: 685b ldr r3, [r3, #4] + 8009ba4: b2db uxtb r3, r3 + 8009ba6: 4619 mov r1, r3 + 8009ba8: 6878 ldr r0, [r7, #4] + 8009baa: f7fe ff80 bl 8008aae pdev->dev_config = cfgidx; - 8009d26: 4b1d ldr r3, [pc, #116] @ (8009d9c ) - 8009d28: 781b ldrb r3, [r3, #0] - 8009d2a: 461a mov r2, r3 - 8009d2c: 687b ldr r3, [r7, #4] - 8009d2e: 605a str r2, [r3, #4] + 8009bae: 4b1d ldr r3, [pc, #116] @ (8009c24 ) + 8009bb0: 781b ldrb r3, [r3, #0] + 8009bb2: 461a mov r2, r3 + 8009bb4: 687b ldr r3, [r7, #4] + 8009bb6: 605a str r2, [r3, #4] ret = USBD_SetClassConfig(pdev, cfgidx); - 8009d30: 4b1a ldr r3, [pc, #104] @ (8009d9c ) - 8009d32: 781b ldrb r3, [r3, #0] - 8009d34: 4619 mov r1, r3 - 8009d36: 6878 ldr r0, [r7, #4] - 8009d38: f7fe ff59 bl 8008bee - 8009d3c: 4603 mov r3, r0 - 8009d3e: 73fb strb r3, [r7, #15] + 8009bb8: 4b1a ldr r3, [pc, #104] @ (8009c24 ) + 8009bba: 781b ldrb r3, [r3, #0] + 8009bbc: 4619 mov r1, r3 + 8009bbe: 6878 ldr r0, [r7, #4] + 8009bc0: f7fe ff59 bl 8008a76 + 8009bc4: 4603 mov r3, r0 + 8009bc6: 73fb strb r3, [r7, #15] if (ret != USBD_OK) - 8009d40: 7bfb ldrb r3, [r7, #15] - 8009d42: 2b00 cmp r3, #0 - 8009d44: d00f beq.n 8009d66 + 8009bc8: 7bfb ldrb r3, [r7, #15] + 8009bca: 2b00 cmp r3, #0 + 8009bcc: d00f beq.n 8009bee USBD_CtlError(pdev, req); - 8009d46: 6839 ldr r1, [r7, #0] - 8009d48: 6878 ldr r0, [r7, #4] - 8009d4a: f000 f918 bl 8009f7e + 8009bce: 6839 ldr r1, [r7, #0] + 8009bd0: 6878 ldr r0, [r7, #4] + 8009bd2: f000 f918 bl 8009e06 (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); - 8009d4e: 687b ldr r3, [r7, #4] - 8009d50: 685b ldr r3, [r3, #4] - 8009d52: b2db uxtb r3, r3 - 8009d54: 4619 mov r1, r3 - 8009d56: 6878 ldr r0, [r7, #4] - 8009d58: f7fe ff65 bl 8008c26 + 8009bd6: 687b ldr r3, [r7, #4] + 8009bd8: 685b ldr r3, [r3, #4] + 8009bda: b2db uxtb r3, r3 + 8009bdc: 4619 mov r1, r3 + 8009bde: 6878 ldr r0, [r7, #4] + 8009be0: f7fe ff65 bl 8008aae pdev->dev_state = USBD_STATE_ADDRESSED; - 8009d5c: 687b ldr r3, [r7, #4] - 8009d5e: 2202 movs r2, #2 - 8009d60: f883 229c strb.w r2, [r3, #668] @ 0x29c + 8009be4: 687b ldr r3, [r7, #4] + 8009be6: 2202 movs r2, #2 + 8009be8: f883 229c strb.w r2, [r3, #668] @ 0x29c break; - 8009d64: e014 b.n 8009d90 + 8009bec: e014 b.n 8009c18 (void)USBD_CtlSendStatus(pdev); - 8009d66: 6878 ldr r0, [r7, #4] - 8009d68: f000 f9c6 bl 800a0f8 + 8009bee: 6878 ldr r0, [r7, #4] + 8009bf0: f000 f9c6 bl 8009f80 break; - 8009d6c: e010 b.n 8009d90 + 8009bf4: e010 b.n 8009c18 (void)USBD_CtlSendStatus(pdev); - 8009d6e: 6878 ldr r0, [r7, #4] - 8009d70: f000 f9c2 bl 800a0f8 + 8009bf6: 6878 ldr r0, [r7, #4] + 8009bf8: f000 f9c2 bl 8009f80 break; - 8009d74: e00c b.n 8009d90 + 8009bfc: e00c b.n 8009c18 default: USBD_CtlError(pdev, req); - 8009d76: 6839 ldr r1, [r7, #0] - 8009d78: 6878 ldr r0, [r7, #4] - 8009d7a: f000 f900 bl 8009f7e + 8009bfe: 6839 ldr r1, [r7, #0] + 8009c00: 6878 ldr r0, [r7, #4] + 8009c02: f000 f900 bl 8009e06 (void)USBD_ClrClassConfig(pdev, cfgidx); - 8009d7e: 4b07 ldr r3, [pc, #28] @ (8009d9c ) - 8009d80: 781b ldrb r3, [r3, #0] - 8009d82: 4619 mov r1, r3 - 8009d84: 6878 ldr r0, [r7, #4] - 8009d86: f7fe ff4e bl 8008c26 + 8009c06: 4b07 ldr r3, [pc, #28] @ (8009c24 ) + 8009c08: 781b ldrb r3, [r3, #0] + 8009c0a: 4619 mov r1, r3 + 8009c0c: 6878 ldr r0, [r7, #4] + 8009c0e: f7fe ff4e bl 8008aae ret = USBD_FAIL; - 8009d8a: 2303 movs r3, #3 - 8009d8c: 73fb strb r3, [r7, #15] + 8009c12: 2303 movs r3, #3 + 8009c14: 73fb strb r3, [r7, #15] break; - 8009d8e: bf00 nop + 8009c16: bf00 nop } return ret; - 8009d90: 7bfb ldrb r3, [r7, #15] + 8009c18: 7bfb ldrb r3, [r7, #15] } - 8009d92: 4618 mov r0, r3 - 8009d94: 3710 adds r7, #16 - 8009d96: 46bd mov sp, r7 - 8009d98: bd80 pop {r7, pc} - 8009d9a: bf00 nop - 8009d9c: 20000720 .word 0x20000720 + 8009c1a: 4618 mov r0, r3 + 8009c1c: 3710 adds r7, #16 + 8009c1e: 46bd mov sp, r7 + 8009c20: bd80 pop {r7, pc} + 8009c22: bf00 nop + 8009c24: 20000720 .word 0x20000720 -08009da0 : +08009c28 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009da0: b580 push {r7, lr} - 8009da2: b082 sub sp, #8 - 8009da4: af00 add r7, sp, #0 - 8009da6: 6078 str r0, [r7, #4] - 8009da8: 6039 str r1, [r7, #0] + 8009c28: b580 push {r7, lr} + 8009c2a: b082 sub sp, #8 + 8009c2c: af00 add r7, sp, #0 + 8009c2e: 6078 str r0, [r7, #4] + 8009c30: 6039 str r1, [r7, #0] if (req->wLength != 1U) - 8009daa: 683b ldr r3, [r7, #0] - 8009dac: 88db ldrh r3, [r3, #6] - 8009dae: 2b01 cmp r3, #1 - 8009db0: d004 beq.n 8009dbc + 8009c32: 683b ldr r3, [r7, #0] + 8009c34: 88db ldrh r3, [r3, #6] + 8009c36: 2b01 cmp r3, #1 + 8009c38: d004 beq.n 8009c44 { USBD_CtlError(pdev, req); - 8009db2: 6839 ldr r1, [r7, #0] - 8009db4: 6878 ldr r0, [r7, #4] - 8009db6: f000 f8e2 bl 8009f7e + 8009c3a: 6839 ldr r1, [r7, #0] + 8009c3c: 6878 ldr r0, [r7, #4] + 8009c3e: f000 f8e2 bl 8009e06 default: USBD_CtlError(pdev, req); break; } } } - 8009dba: e023 b.n 8009e04 + 8009c42: e023 b.n 8009c8c switch (pdev->dev_state) - 8009dbc: 687b ldr r3, [r7, #4] - 8009dbe: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009dc2: b2db uxtb r3, r3 - 8009dc4: 2b02 cmp r3, #2 - 8009dc6: dc02 bgt.n 8009dce - 8009dc8: 2b00 cmp r3, #0 - 8009dca: dc03 bgt.n 8009dd4 - 8009dcc: e015 b.n 8009dfa - 8009dce: 2b03 cmp r3, #3 - 8009dd0: d00b beq.n 8009dea - 8009dd2: e012 b.n 8009dfa + 8009c44: 687b ldr r3, [r7, #4] + 8009c46: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009c4a: b2db uxtb r3, r3 + 8009c4c: 2b02 cmp r3, #2 + 8009c4e: dc02 bgt.n 8009c56 + 8009c50: 2b00 cmp r3, #0 + 8009c52: dc03 bgt.n 8009c5c + 8009c54: e015 b.n 8009c82 + 8009c56: 2b03 cmp r3, #3 + 8009c58: d00b beq.n 8009c72 + 8009c5a: e012 b.n 8009c82 pdev->dev_default_config = 0U; - 8009dd4: 687b ldr r3, [r7, #4] - 8009dd6: 2200 movs r2, #0 - 8009dd8: 609a str r2, [r3, #8] + 8009c5c: 687b ldr r3, [r7, #4] + 8009c5e: 2200 movs r2, #0 + 8009c60: 609a str r2, [r3, #8] (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_default_config, 1U); - 8009dda: 687b ldr r3, [r7, #4] - 8009ddc: 3308 adds r3, #8 - 8009dde: 2201 movs r2, #1 - 8009de0: 4619 mov r1, r3 - 8009de2: 6878 ldr r0, [r7, #4] - 8009de4: f000 f948 bl 800a078 + 8009c62: 687b ldr r3, [r7, #4] + 8009c64: 3308 adds r3, #8 + 8009c66: 2201 movs r2, #1 + 8009c68: 4619 mov r1, r3 + 8009c6a: 6878 ldr r0, [r7, #4] + 8009c6c: f000 f948 bl 8009f00 break; - 8009de8: e00c b.n 8009e04 + 8009c70: e00c b.n 8009c8c (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config, 1U); - 8009dea: 687b ldr r3, [r7, #4] - 8009dec: 3304 adds r3, #4 - 8009dee: 2201 movs r2, #1 - 8009df0: 4619 mov r1, r3 - 8009df2: 6878 ldr r0, [r7, #4] - 8009df4: f000 f940 bl 800a078 + 8009c72: 687b ldr r3, [r7, #4] + 8009c74: 3304 adds r3, #4 + 8009c76: 2201 movs r2, #1 + 8009c78: 4619 mov r1, r3 + 8009c7a: 6878 ldr r0, [r7, #4] + 8009c7c: f000 f940 bl 8009f00 break; - 8009df8: e004 b.n 8009e04 + 8009c80: e004 b.n 8009c8c USBD_CtlError(pdev, req); - 8009dfa: 6839 ldr r1, [r7, #0] - 8009dfc: 6878 ldr r0, [r7, #4] - 8009dfe: f000 f8be bl 8009f7e + 8009c82: 6839 ldr r1, [r7, #0] + 8009c84: 6878 ldr r0, [r7, #4] + 8009c86: f000 f8be bl 8009e06 break; - 8009e02: bf00 nop + 8009c8a: bf00 nop } - 8009e04: bf00 nop - 8009e06: 3708 adds r7, #8 - 8009e08: 46bd mov sp, r7 - 8009e0a: bd80 pop {r7, pc} + 8009c8c: bf00 nop + 8009c8e: 3708 adds r7, #8 + 8009c90: 46bd mov sp, r7 + 8009c92: bd80 pop {r7, pc} -08009e0c : +08009c94 : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_GetStatus(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009e0c: b580 push {r7, lr} - 8009e0e: b082 sub sp, #8 - 8009e10: af00 add r7, sp, #0 - 8009e12: 6078 str r0, [r7, #4] - 8009e14: 6039 str r1, [r7, #0] + 8009c94: b580 push {r7, lr} + 8009c96: b082 sub sp, #8 + 8009c98: af00 add r7, sp, #0 + 8009c9a: 6078 str r0, [r7, #4] + 8009c9c: 6039 str r1, [r7, #0] switch (pdev->dev_state) - 8009e16: 687b ldr r3, [r7, #4] - 8009e18: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009e1c: b2db uxtb r3, r3 - 8009e1e: 3b01 subs r3, #1 - 8009e20: 2b02 cmp r3, #2 - 8009e22: d81e bhi.n 8009e62 + 8009c9e: 687b ldr r3, [r7, #4] + 8009ca0: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009ca4: b2db uxtb r3, r3 + 8009ca6: 3b01 subs r3, #1 + 8009ca8: 2b02 cmp r3, #2 + 8009caa: d81e bhi.n 8009cea { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (req->wLength != 0x2U) - 8009e24: 683b ldr r3, [r7, #0] - 8009e26: 88db ldrh r3, [r3, #6] - 8009e28: 2b02 cmp r3, #2 - 8009e2a: d004 beq.n 8009e36 + 8009cac: 683b ldr r3, [r7, #0] + 8009cae: 88db ldrh r3, [r3, #6] + 8009cb0: 2b02 cmp r3, #2 + 8009cb2: d004 beq.n 8009cbe { USBD_CtlError(pdev, req); - 8009e2c: 6839 ldr r1, [r7, #0] - 8009e2e: 6878 ldr r0, [r7, #4] - 8009e30: f000 f8a5 bl 8009f7e + 8009cb4: 6839 ldr r1, [r7, #0] + 8009cb6: 6878 ldr r0, [r7, #4] + 8009cb8: f000 f8a5 bl 8009e06 break; - 8009e34: e01a b.n 8009e6c + 8009cbc: e01a b.n 8009cf4 } #if (USBD_SELF_POWERED == 1U) pdev->dev_config_status = USB_CONFIG_SELF_POWERED; - 8009e36: 687b ldr r3, [r7, #4] - 8009e38: 2201 movs r2, #1 - 8009e3a: 60da str r2, [r3, #12] + 8009cbe: 687b ldr r3, [r7, #4] + 8009cc0: 2201 movs r2, #1 + 8009cc2: 60da str r2, [r3, #12] #else pdev->dev_config_status = 0U; #endif /* USBD_SELF_POWERED */ if (pdev->dev_remote_wakeup != 0U) - 8009e3c: 687b ldr r3, [r7, #4] - 8009e3e: f8d3 32a4 ldr.w r3, [r3, #676] @ 0x2a4 - 8009e42: 2b00 cmp r3, #0 - 8009e44: d005 beq.n 8009e52 + 8009cc4: 687b ldr r3, [r7, #4] + 8009cc6: f8d3 32a4 ldr.w r3, [r3, #676] @ 0x2a4 + 8009cca: 2b00 cmp r3, #0 + 8009ccc: d005 beq.n 8009cda { pdev->dev_config_status |= USB_CONFIG_REMOTE_WAKEUP; - 8009e46: 687b ldr r3, [r7, #4] - 8009e48: 68db ldr r3, [r3, #12] - 8009e4a: f043 0202 orr.w r2, r3, #2 - 8009e4e: 687b ldr r3, [r7, #4] - 8009e50: 60da str r2, [r3, #12] + 8009cce: 687b ldr r3, [r7, #4] + 8009cd0: 68db ldr r3, [r3, #12] + 8009cd2: f043 0202 orr.w r2, r3, #2 + 8009cd6: 687b ldr r3, [r7, #4] + 8009cd8: 60da str r2, [r3, #12] } (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config_status, 2U); - 8009e52: 687b ldr r3, [r7, #4] - 8009e54: 330c adds r3, #12 - 8009e56: 2202 movs r2, #2 - 8009e58: 4619 mov r1, r3 - 8009e5a: 6878 ldr r0, [r7, #4] - 8009e5c: f000 f90c bl 800a078 + 8009cda: 687b ldr r3, [r7, #4] + 8009cdc: 330c adds r3, #12 + 8009cde: 2202 movs r2, #2 + 8009ce0: 4619 mov r1, r3 + 8009ce2: 6878 ldr r0, [r7, #4] + 8009ce4: f000 f90c bl 8009f00 break; - 8009e60: e004 b.n 8009e6c + 8009ce8: e004 b.n 8009cf4 default: USBD_CtlError(pdev, req); - 8009e62: 6839 ldr r1, [r7, #0] - 8009e64: 6878 ldr r0, [r7, #4] - 8009e66: f000 f88a bl 8009f7e + 8009cea: 6839 ldr r1, [r7, #0] + 8009cec: 6878 ldr r0, [r7, #4] + 8009cee: f000 f88a bl 8009e06 break; - 8009e6a: bf00 nop + 8009cf2: bf00 nop } } - 8009e6c: bf00 nop - 8009e6e: 3708 adds r7, #8 - 8009e70: 46bd mov sp, r7 - 8009e72: bd80 pop {r7, pc} + 8009cf4: bf00 nop + 8009cf6: 3708 adds r7, #8 + 8009cf8: 46bd mov sp, r7 + 8009cfa: bd80 pop {r7, pc} -08009e74 : +08009cfc : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_SetFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009e74: b580 push {r7, lr} - 8009e76: b082 sub sp, #8 - 8009e78: af00 add r7, sp, #0 - 8009e7a: 6078 str r0, [r7, #4] - 8009e7c: 6039 str r1, [r7, #0] + 8009cfc: b580 push {r7, lr} + 8009cfe: b082 sub sp, #8 + 8009d00: af00 add r7, sp, #0 + 8009d02: 6078 str r0, [r7, #4] + 8009d04: 6039 str r1, [r7, #0] if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) - 8009e7e: 683b ldr r3, [r7, #0] - 8009e80: 885b ldrh r3, [r3, #2] - 8009e82: 2b01 cmp r3, #1 - 8009e84: d107 bne.n 8009e96 + 8009d06: 683b ldr r3, [r7, #0] + 8009d08: 885b ldrh r3, [r3, #2] + 8009d0a: 2b01 cmp r3, #1 + 8009d0c: d107 bne.n 8009d1e { pdev->dev_remote_wakeup = 1U; - 8009e86: 687b ldr r3, [r7, #4] - 8009e88: 2201 movs r2, #1 - 8009e8a: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 8009d0e: 687b ldr r3, [r7, #4] + 8009d10: 2201 movs r2, #1 + 8009d12: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 (void)USBD_CtlSendStatus(pdev); - 8009e8e: 6878 ldr r0, [r7, #4] - 8009e90: f000 f932 bl 800a0f8 + 8009d16: 6878 ldr r0, [r7, #4] + 8009d18: f000 f932 bl 8009f80 } else { USBD_CtlError(pdev, req); } } - 8009e94: e013 b.n 8009ebe + 8009d1c: e013 b.n 8009d46 else if (req->wValue == USB_FEATURE_TEST_MODE) - 8009e96: 683b ldr r3, [r7, #0] - 8009e98: 885b ldrh r3, [r3, #2] - 8009e9a: 2b02 cmp r3, #2 - 8009e9c: d10b bne.n 8009eb6 + 8009d1e: 683b ldr r3, [r7, #0] + 8009d20: 885b ldrh r3, [r3, #2] + 8009d22: 2b02 cmp r3, #2 + 8009d24: d10b bne.n 8009d3e pdev->dev_test_mode = (uint8_t)(req->wIndex >> 8); - 8009e9e: 683b ldr r3, [r7, #0] - 8009ea0: 889b ldrh r3, [r3, #4] - 8009ea2: 0a1b lsrs r3, r3, #8 - 8009ea4: b29b uxth r3, r3 - 8009ea6: b2da uxtb r2, r3 - 8009ea8: 687b ldr r3, [r7, #4] - 8009eaa: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 + 8009d26: 683b ldr r3, [r7, #0] + 8009d28: 889b ldrh r3, [r3, #4] + 8009d2a: 0a1b lsrs r3, r3, #8 + 8009d2c: b29b uxth r3, r3 + 8009d2e: b2da uxtb r2, r3 + 8009d30: 687b ldr r3, [r7, #4] + 8009d32: f883 22a0 strb.w r2, [r3, #672] @ 0x2a0 (void)USBD_CtlSendStatus(pdev); - 8009eae: 6878 ldr r0, [r7, #4] - 8009eb0: f000 f922 bl 800a0f8 + 8009d36: 6878 ldr r0, [r7, #4] + 8009d38: f000 f922 bl 8009f80 } - 8009eb4: e003 b.n 8009ebe + 8009d3c: e003 b.n 8009d46 USBD_CtlError(pdev, req); - 8009eb6: 6839 ldr r1, [r7, #0] - 8009eb8: 6878 ldr r0, [r7, #4] - 8009eba: f000 f860 bl 8009f7e + 8009d3e: 6839 ldr r1, [r7, #0] + 8009d40: 6878 ldr r0, [r7, #4] + 8009d42: f000 f860 bl 8009e06 } - 8009ebe: bf00 nop - 8009ec0: 3708 adds r7, #8 - 8009ec2: 46bd mov sp, r7 - 8009ec4: bd80 pop {r7, pc} + 8009d46: bf00 nop + 8009d48: 3708 adds r7, #8 + 8009d4a: 46bd mov sp, r7 + 8009d4c: bd80 pop {r7, pc} -08009ec6 : +08009d4e : * @param pdev: device instance * @param req: usb request * @retval None */ static void USBD_ClrFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009ec6: b580 push {r7, lr} - 8009ec8: b082 sub sp, #8 - 8009eca: af00 add r7, sp, #0 - 8009ecc: 6078 str r0, [r7, #4] - 8009ece: 6039 str r1, [r7, #0] + 8009d4e: b580 push {r7, lr} + 8009d50: b082 sub sp, #8 + 8009d52: af00 add r7, sp, #0 + 8009d54: 6078 str r0, [r7, #4] + 8009d56: 6039 str r1, [r7, #0] switch (pdev->dev_state) - 8009ed0: 687b ldr r3, [r7, #4] - 8009ed2: f893 329c ldrb.w r3, [r3, #668] @ 0x29c - 8009ed6: b2db uxtb r3, r3 - 8009ed8: 3b01 subs r3, #1 - 8009eda: 2b02 cmp r3, #2 - 8009edc: d80b bhi.n 8009ef6 + 8009d58: 687b ldr r3, [r7, #4] + 8009d5a: f893 329c ldrb.w r3, [r3, #668] @ 0x29c + 8009d5e: b2db uxtb r3, r3 + 8009d60: 3b01 subs r3, #1 + 8009d62: 2b02 cmp r3, #2 + 8009d64: d80b bhi.n 8009d7e { case USBD_STATE_DEFAULT: case USBD_STATE_ADDRESSED: case USBD_STATE_CONFIGURED: if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) - 8009ede: 683b ldr r3, [r7, #0] - 8009ee0: 885b ldrh r3, [r3, #2] - 8009ee2: 2b01 cmp r3, #1 - 8009ee4: d10c bne.n 8009f00 + 8009d66: 683b ldr r3, [r7, #0] + 8009d68: 885b ldrh r3, [r3, #2] + 8009d6a: 2b01 cmp r3, #1 + 8009d6c: d10c bne.n 8009d88 { pdev->dev_remote_wakeup = 0U; - 8009ee6: 687b ldr r3, [r7, #4] - 8009ee8: 2200 movs r2, #0 - 8009eea: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 + 8009d6e: 687b ldr r3, [r7, #4] + 8009d70: 2200 movs r2, #0 + 8009d72: f8c3 22a4 str.w r2, [r3, #676] @ 0x2a4 (void)USBD_CtlSendStatus(pdev); - 8009eee: 6878 ldr r0, [r7, #4] - 8009ef0: f000 f902 bl 800a0f8 + 8009d76: 6878 ldr r0, [r7, #4] + 8009d78: f000 f902 bl 8009f80 } break; - 8009ef4: e004 b.n 8009f00 + 8009d7c: e004 b.n 8009d88 default: USBD_CtlError(pdev, req); - 8009ef6: 6839 ldr r1, [r7, #0] - 8009ef8: 6878 ldr r0, [r7, #4] - 8009efa: f000 f840 bl 8009f7e + 8009d7e: 6839 ldr r1, [r7, #0] + 8009d80: 6878 ldr r0, [r7, #4] + 8009d82: f000 f840 bl 8009e06 break; - 8009efe: e000 b.n 8009f02 + 8009d86: e000 b.n 8009d8a break; - 8009f00: bf00 nop + 8009d88: bf00 nop } } - 8009f02: bf00 nop - 8009f04: 3708 adds r7, #8 - 8009f06: 46bd mov sp, r7 - 8009f08: bd80 pop {r7, pc} + 8009d8a: bf00 nop + 8009d8c: 3708 adds r7, #8 + 8009d8e: 46bd mov sp, r7 + 8009d90: bd80 pop {r7, pc} -08009f0a : +08009d92 : * @param req: usb request * @param pdata: setup data pointer * @retval None */ void USBD_ParseSetupRequest(USBD_SetupReqTypedef *req, uint8_t *pdata) { - 8009f0a: b580 push {r7, lr} - 8009f0c: b084 sub sp, #16 - 8009f0e: af00 add r7, sp, #0 - 8009f10: 6078 str r0, [r7, #4] - 8009f12: 6039 str r1, [r7, #0] + 8009d92: b580 push {r7, lr} + 8009d94: b084 sub sp, #16 + 8009d96: af00 add r7, sp, #0 + 8009d98: 6078 str r0, [r7, #4] + 8009d9a: 6039 str r1, [r7, #0] uint8_t *pbuff = pdata; - 8009f14: 683b ldr r3, [r7, #0] - 8009f16: 60fb str r3, [r7, #12] + 8009d9c: 683b ldr r3, [r7, #0] + 8009d9e: 60fb str r3, [r7, #12] req->bmRequest = *(uint8_t *)(pbuff); - 8009f18: 68fb ldr r3, [r7, #12] - 8009f1a: 781a ldrb r2, [r3, #0] - 8009f1c: 687b ldr r3, [r7, #4] - 8009f1e: 701a strb r2, [r3, #0] + 8009da0: 68fb ldr r3, [r7, #12] + 8009da2: 781a ldrb r2, [r3, #0] + 8009da4: 687b ldr r3, [r7, #4] + 8009da6: 701a strb r2, [r3, #0] pbuff++; - 8009f20: 68fb ldr r3, [r7, #12] - 8009f22: 3301 adds r3, #1 - 8009f24: 60fb str r3, [r7, #12] + 8009da8: 68fb ldr r3, [r7, #12] + 8009daa: 3301 adds r3, #1 + 8009dac: 60fb str r3, [r7, #12] req->bRequest = *(uint8_t *)(pbuff); - 8009f26: 68fb ldr r3, [r7, #12] - 8009f28: 781a ldrb r2, [r3, #0] - 8009f2a: 687b ldr r3, [r7, #4] - 8009f2c: 705a strb r2, [r3, #1] + 8009dae: 68fb ldr r3, [r7, #12] + 8009db0: 781a ldrb r2, [r3, #0] + 8009db2: 687b ldr r3, [r7, #4] + 8009db4: 705a strb r2, [r3, #1] pbuff++; - 8009f2e: 68fb ldr r3, [r7, #12] - 8009f30: 3301 adds r3, #1 - 8009f32: 60fb str r3, [r7, #12] + 8009db6: 68fb ldr r3, [r7, #12] + 8009db8: 3301 adds r3, #1 + 8009dba: 60fb str r3, [r7, #12] req->wValue = SWAPBYTE(pbuff); - 8009f34: 68f8 ldr r0, [r7, #12] - 8009f36: f7ff fa13 bl 8009360 - 8009f3a: 4603 mov r3, r0 - 8009f3c: 461a mov r2, r3 - 8009f3e: 687b ldr r3, [r7, #4] - 8009f40: 805a strh r2, [r3, #2] + 8009dbc: 68f8 ldr r0, [r7, #12] + 8009dbe: f7ff fa13 bl 80091e8 + 8009dc2: 4603 mov r3, r0 + 8009dc4: 461a mov r2, r3 + 8009dc6: 687b ldr r3, [r7, #4] + 8009dc8: 805a strh r2, [r3, #2] pbuff++; - 8009f42: 68fb ldr r3, [r7, #12] - 8009f44: 3301 adds r3, #1 - 8009f46: 60fb str r3, [r7, #12] + 8009dca: 68fb ldr r3, [r7, #12] + 8009dcc: 3301 adds r3, #1 + 8009dce: 60fb str r3, [r7, #12] pbuff++; - 8009f48: 68fb ldr r3, [r7, #12] - 8009f4a: 3301 adds r3, #1 - 8009f4c: 60fb str r3, [r7, #12] + 8009dd0: 68fb ldr r3, [r7, #12] + 8009dd2: 3301 adds r3, #1 + 8009dd4: 60fb str r3, [r7, #12] req->wIndex = SWAPBYTE(pbuff); - 8009f4e: 68f8 ldr r0, [r7, #12] - 8009f50: f7ff fa06 bl 8009360 - 8009f54: 4603 mov r3, r0 - 8009f56: 461a mov r2, r3 - 8009f58: 687b ldr r3, [r7, #4] - 8009f5a: 809a strh r2, [r3, #4] + 8009dd6: 68f8 ldr r0, [r7, #12] + 8009dd8: f7ff fa06 bl 80091e8 + 8009ddc: 4603 mov r3, r0 + 8009dde: 461a mov r2, r3 + 8009de0: 687b ldr r3, [r7, #4] + 8009de2: 809a strh r2, [r3, #4] pbuff++; - 8009f5c: 68fb ldr r3, [r7, #12] - 8009f5e: 3301 adds r3, #1 - 8009f60: 60fb str r3, [r7, #12] + 8009de4: 68fb ldr r3, [r7, #12] + 8009de6: 3301 adds r3, #1 + 8009de8: 60fb str r3, [r7, #12] pbuff++; - 8009f62: 68fb ldr r3, [r7, #12] - 8009f64: 3301 adds r3, #1 - 8009f66: 60fb str r3, [r7, #12] + 8009dea: 68fb ldr r3, [r7, #12] + 8009dec: 3301 adds r3, #1 + 8009dee: 60fb str r3, [r7, #12] req->wLength = SWAPBYTE(pbuff); - 8009f68: 68f8 ldr r0, [r7, #12] - 8009f6a: f7ff f9f9 bl 8009360 - 8009f6e: 4603 mov r3, r0 - 8009f70: 461a mov r2, r3 - 8009f72: 687b ldr r3, [r7, #4] - 8009f74: 80da strh r2, [r3, #6] + 8009df0: 68f8 ldr r0, [r7, #12] + 8009df2: f7ff f9f9 bl 80091e8 + 8009df6: 4603 mov r3, r0 + 8009df8: 461a mov r2, r3 + 8009dfa: 687b ldr r3, [r7, #4] + 8009dfc: 80da strh r2, [r3, #6] } - 8009f76: bf00 nop - 8009f78: 3710 adds r7, #16 - 8009f7a: 46bd mov sp, r7 - 8009f7c: bd80 pop {r7, pc} + 8009dfe: bf00 nop + 8009e00: 3710 adds r7, #16 + 8009e02: 46bd mov sp, r7 + 8009e04: bd80 pop {r7, pc} -08009f7e : +08009e06 : * @param pdev: device instance * @param req: usb request * @retval None */ void USBD_CtlError(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) { - 8009f7e: b580 push {r7, lr} - 8009f80: b082 sub sp, #8 - 8009f82: af00 add r7, sp, #0 - 8009f84: 6078 str r0, [r7, #4] - 8009f86: 6039 str r1, [r7, #0] + 8009e06: b580 push {r7, lr} + 8009e08: b082 sub sp, #8 + 8009e0a: af00 add r7, sp, #0 + 8009e0c: 6078 str r0, [r7, #4] + 8009e0e: 6039 str r1, [r7, #0] UNUSED(req); (void)USBD_LL_StallEP(pdev, 0x80U); - 8009f88: 2180 movs r1, #128 @ 0x80 - 8009f8a: 6878 ldr r0, [r7, #4] - 8009f8c: f000 fc2a bl 800a7e4 + 8009e10: 2180 movs r1, #128 @ 0x80 + 8009e12: 6878 ldr r0, [r7, #4] + 8009e14: f000 fc2a bl 800a66c (void)USBD_LL_StallEP(pdev, 0U); - 8009f90: 2100 movs r1, #0 - 8009f92: 6878 ldr r0, [r7, #4] - 8009f94: f000 fc26 bl 800a7e4 + 8009e18: 2100 movs r1, #0 + 8009e1a: 6878 ldr r0, [r7, #4] + 8009e1c: f000 fc26 bl 800a66c } - 8009f98: bf00 nop - 8009f9a: 3708 adds r7, #8 - 8009f9c: 46bd mov sp, r7 - 8009f9e: bd80 pop {r7, pc} + 8009e20: bf00 nop + 8009e22: 3708 adds r7, #8 + 8009e24: 46bd mov sp, r7 + 8009e26: bd80 pop {r7, pc} -08009fa0 : +08009e28 : * @param unicode : Formatted string buffer (unicode) * @param len : descriptor length * @retval None */ void USBD_GetString(uint8_t *desc, uint8_t *unicode, uint16_t *len) { - 8009fa0: b580 push {r7, lr} - 8009fa2: b086 sub sp, #24 - 8009fa4: af00 add r7, sp, #0 - 8009fa6: 60f8 str r0, [r7, #12] - 8009fa8: 60b9 str r1, [r7, #8] - 8009faa: 607a str r2, [r7, #4] + 8009e28: b580 push {r7, lr} + 8009e2a: b086 sub sp, #24 + 8009e2c: af00 add r7, sp, #0 + 8009e2e: 60f8 str r0, [r7, #12] + 8009e30: 60b9 str r1, [r7, #8] + 8009e32: 607a str r2, [r7, #4] uint8_t idx = 0U; - 8009fac: 2300 movs r3, #0 - 8009fae: 75fb strb r3, [r7, #23] + 8009e34: 2300 movs r3, #0 + 8009e36: 75fb strb r3, [r7, #23] uint8_t *pdesc; if (desc == NULL) - 8009fb0: 68fb ldr r3, [r7, #12] - 8009fb2: 2b00 cmp r3, #0 - 8009fb4: d042 beq.n 800a03c + 8009e38: 68fb ldr r3, [r7, #12] + 8009e3a: 2b00 cmp r3, #0 + 8009e3c: d042 beq.n 8009ec4 { return; } pdesc = desc; - 8009fb6: 68fb ldr r3, [r7, #12] - 8009fb8: 613b str r3, [r7, #16] + 8009e3e: 68fb ldr r3, [r7, #12] + 8009e40: 613b str r3, [r7, #16] *len = MIN(USBD_MAX_STR_DESC_SIZ, ((uint16_t)USBD_GetLen(pdesc) * 2U) + 2U); - 8009fba: 6938 ldr r0, [r7, #16] - 8009fbc: f000 f842 bl 800a044 - 8009fc0: 4603 mov r3, r0 - 8009fc2: 3301 adds r3, #1 - 8009fc4: 005b lsls r3, r3, #1 - 8009fc6: f5b3 7f00 cmp.w r3, #512 @ 0x200 - 8009fca: d808 bhi.n 8009fde - 8009fcc: 6938 ldr r0, [r7, #16] - 8009fce: f000 f839 bl 800a044 - 8009fd2: 4603 mov r3, r0 - 8009fd4: 3301 adds r3, #1 - 8009fd6: b29b uxth r3, r3 - 8009fd8: 005b lsls r3, r3, #1 - 8009fda: b29a uxth r2, r3 - 8009fdc: e001 b.n 8009fe2 - 8009fde: f44f 7200 mov.w r2, #512 @ 0x200 - 8009fe2: 687b ldr r3, [r7, #4] - 8009fe4: 801a strh r2, [r3, #0] + 8009e42: 6938 ldr r0, [r7, #16] + 8009e44: f000 f842 bl 8009ecc + 8009e48: 4603 mov r3, r0 + 8009e4a: 3301 adds r3, #1 + 8009e4c: 005b lsls r3, r3, #1 + 8009e4e: f5b3 7f00 cmp.w r3, #512 @ 0x200 + 8009e52: d808 bhi.n 8009e66 + 8009e54: 6938 ldr r0, [r7, #16] + 8009e56: f000 f839 bl 8009ecc + 8009e5a: 4603 mov r3, r0 + 8009e5c: 3301 adds r3, #1 + 8009e5e: b29b uxth r3, r3 + 8009e60: 005b lsls r3, r3, #1 + 8009e62: b29a uxth r2, r3 + 8009e64: e001 b.n 8009e6a + 8009e66: f44f 7200 mov.w r2, #512 @ 0x200 + 8009e6a: 687b ldr r3, [r7, #4] + 8009e6c: 801a strh r2, [r3, #0] unicode[idx] = *(uint8_t *)len; - 8009fe6: 7dfb ldrb r3, [r7, #23] - 8009fe8: 68ba ldr r2, [r7, #8] - 8009fea: 4413 add r3, r2 - 8009fec: 687a ldr r2, [r7, #4] - 8009fee: 7812 ldrb r2, [r2, #0] - 8009ff0: 701a strb r2, [r3, #0] + 8009e6e: 7dfb ldrb r3, [r7, #23] + 8009e70: 68ba ldr r2, [r7, #8] + 8009e72: 4413 add r3, r2 + 8009e74: 687a ldr r2, [r7, #4] + 8009e76: 7812 ldrb r2, [r2, #0] + 8009e78: 701a strb r2, [r3, #0] idx++; - 8009ff2: 7dfb ldrb r3, [r7, #23] - 8009ff4: 3301 adds r3, #1 - 8009ff6: 75fb strb r3, [r7, #23] + 8009e7a: 7dfb ldrb r3, [r7, #23] + 8009e7c: 3301 adds r3, #1 + 8009e7e: 75fb strb r3, [r7, #23] unicode[idx] = USB_DESC_TYPE_STRING; - 8009ff8: 7dfb ldrb r3, [r7, #23] - 8009ffa: 68ba ldr r2, [r7, #8] - 8009ffc: 4413 add r3, r2 - 8009ffe: 2203 movs r2, #3 - 800a000: 701a strb r2, [r3, #0] + 8009e80: 7dfb ldrb r3, [r7, #23] + 8009e82: 68ba ldr r2, [r7, #8] + 8009e84: 4413 add r3, r2 + 8009e86: 2203 movs r2, #3 + 8009e88: 701a strb r2, [r3, #0] idx++; - 800a002: 7dfb ldrb r3, [r7, #23] - 800a004: 3301 adds r3, #1 - 800a006: 75fb strb r3, [r7, #23] + 8009e8a: 7dfb ldrb r3, [r7, #23] + 8009e8c: 3301 adds r3, #1 + 8009e8e: 75fb strb r3, [r7, #23] while (*pdesc != (uint8_t)'\0') - 800a008: e013 b.n 800a032 + 8009e90: e013 b.n 8009eba { unicode[idx] = *pdesc; - 800a00a: 7dfb ldrb r3, [r7, #23] - 800a00c: 68ba ldr r2, [r7, #8] - 800a00e: 4413 add r3, r2 - 800a010: 693a ldr r2, [r7, #16] - 800a012: 7812 ldrb r2, [r2, #0] - 800a014: 701a strb r2, [r3, #0] + 8009e92: 7dfb ldrb r3, [r7, #23] + 8009e94: 68ba ldr r2, [r7, #8] + 8009e96: 4413 add r3, r2 + 8009e98: 693a ldr r2, [r7, #16] + 8009e9a: 7812 ldrb r2, [r2, #0] + 8009e9c: 701a strb r2, [r3, #0] pdesc++; - 800a016: 693b ldr r3, [r7, #16] - 800a018: 3301 adds r3, #1 - 800a01a: 613b str r3, [r7, #16] + 8009e9e: 693b ldr r3, [r7, #16] + 8009ea0: 3301 adds r3, #1 + 8009ea2: 613b str r3, [r7, #16] idx++; - 800a01c: 7dfb ldrb r3, [r7, #23] - 800a01e: 3301 adds r3, #1 - 800a020: 75fb strb r3, [r7, #23] + 8009ea4: 7dfb ldrb r3, [r7, #23] + 8009ea6: 3301 adds r3, #1 + 8009ea8: 75fb strb r3, [r7, #23] unicode[idx] = 0U; - 800a022: 7dfb ldrb r3, [r7, #23] - 800a024: 68ba ldr r2, [r7, #8] - 800a026: 4413 add r3, r2 - 800a028: 2200 movs r2, #0 - 800a02a: 701a strb r2, [r3, #0] + 8009eaa: 7dfb ldrb r3, [r7, #23] + 8009eac: 68ba ldr r2, [r7, #8] + 8009eae: 4413 add r3, r2 + 8009eb0: 2200 movs r2, #0 + 8009eb2: 701a strb r2, [r3, #0] idx++; - 800a02c: 7dfb ldrb r3, [r7, #23] - 800a02e: 3301 adds r3, #1 - 800a030: 75fb strb r3, [r7, #23] + 8009eb4: 7dfb ldrb r3, [r7, #23] + 8009eb6: 3301 adds r3, #1 + 8009eb8: 75fb strb r3, [r7, #23] while (*pdesc != (uint8_t)'\0') - 800a032: 693b ldr r3, [r7, #16] - 800a034: 781b ldrb r3, [r3, #0] - 800a036: 2b00 cmp r3, #0 - 800a038: d1e7 bne.n 800a00a - 800a03a: e000 b.n 800a03e + 8009eba: 693b ldr r3, [r7, #16] + 8009ebc: 781b ldrb r3, [r3, #0] + 8009ebe: 2b00 cmp r3, #0 + 8009ec0: d1e7 bne.n 8009e92 + 8009ec2: e000 b.n 8009ec6 return; - 800a03c: bf00 nop + 8009ec4: bf00 nop } } - 800a03e: 3718 adds r7, #24 - 800a040: 46bd mov sp, r7 - 800a042: bd80 pop {r7, pc} + 8009ec6: 3718 adds r7, #24 + 8009ec8: 46bd mov sp, r7 + 8009eca: bd80 pop {r7, pc} -0800a044 : +08009ecc : * return the string length * @param buf : pointer to the ascii string buffer * @retval string length */ static uint8_t USBD_GetLen(uint8_t *buf) { - 800a044: b480 push {r7} - 800a046: b085 sub sp, #20 - 800a048: af00 add r7, sp, #0 - 800a04a: 6078 str r0, [r7, #4] + 8009ecc: b480 push {r7} + 8009ece: b085 sub sp, #20 + 8009ed0: af00 add r7, sp, #0 + 8009ed2: 6078 str r0, [r7, #4] uint8_t len = 0U; - 800a04c: 2300 movs r3, #0 - 800a04e: 73fb strb r3, [r7, #15] + 8009ed4: 2300 movs r3, #0 + 8009ed6: 73fb strb r3, [r7, #15] uint8_t *pbuff = buf; - 800a050: 687b ldr r3, [r7, #4] - 800a052: 60bb str r3, [r7, #8] + 8009ed8: 687b ldr r3, [r7, #4] + 8009eda: 60bb str r3, [r7, #8] while (*pbuff != (uint8_t)'\0') - 800a054: e005 b.n 800a062 + 8009edc: e005 b.n 8009eea { len++; - 800a056: 7bfb ldrb r3, [r7, #15] - 800a058: 3301 adds r3, #1 - 800a05a: 73fb strb r3, [r7, #15] + 8009ede: 7bfb ldrb r3, [r7, #15] + 8009ee0: 3301 adds r3, #1 + 8009ee2: 73fb strb r3, [r7, #15] pbuff++; - 800a05c: 68bb ldr r3, [r7, #8] - 800a05e: 3301 adds r3, #1 - 800a060: 60bb str r3, [r7, #8] + 8009ee4: 68bb ldr r3, [r7, #8] + 8009ee6: 3301 adds r3, #1 + 8009ee8: 60bb str r3, [r7, #8] while (*pbuff != (uint8_t)'\0') - 800a062: 68bb ldr r3, [r7, #8] - 800a064: 781b ldrb r3, [r3, #0] - 800a066: 2b00 cmp r3, #0 - 800a068: d1f5 bne.n 800a056 + 8009eea: 68bb ldr r3, [r7, #8] + 8009eec: 781b ldrb r3, [r3, #0] + 8009eee: 2b00 cmp r3, #0 + 8009ef0: d1f5 bne.n 8009ede } return len; - 800a06a: 7bfb ldrb r3, [r7, #15] + 8009ef2: 7bfb ldrb r3, [r7, #15] } - 800a06c: 4618 mov r0, r3 - 800a06e: 3714 adds r7, #20 - 800a070: 46bd mov sp, r7 - 800a072: f85d 7b04 ldr.w r7, [sp], #4 - 800a076: 4770 bx lr + 8009ef4: 4618 mov r0, r3 + 8009ef6: 3714 adds r7, #20 + 8009ef8: 46bd mov sp, r7 + 8009efa: f85d 7b04 ldr.w r7, [sp], #4 + 8009efe: 4770 bx lr -0800a078 : +08009f00 : * @param len: length of data to be sent * @retval status */ USBD_StatusTypeDef USBD_CtlSendData(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a078: b580 push {r7, lr} - 800a07a: b084 sub sp, #16 - 800a07c: af00 add r7, sp, #0 - 800a07e: 60f8 str r0, [r7, #12] - 800a080: 60b9 str r1, [r7, #8] - 800a082: 607a str r2, [r7, #4] + 8009f00: b580 push {r7, lr} + 8009f02: b084 sub sp, #16 + 8009f04: af00 add r7, sp, #0 + 8009f06: 60f8 str r0, [r7, #12] + 8009f08: 60b9 str r1, [r7, #8] + 8009f0a: 607a str r2, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_DATA_IN; - 800a084: 68fb ldr r3, [r7, #12] - 800a086: 2202 movs r2, #2 - 800a088: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8009f0c: 68fb ldr r3, [r7, #12] + 8009f0e: 2202 movs r2, #2 + 8009f10: f8c3 2294 str.w r2, [r3, #660] @ 0x294 pdev->ep_in[0].total_length = len; - 800a08c: 68fb ldr r3, [r7, #12] - 800a08e: 687a ldr r2, [r7, #4] - 800a090: 615a str r2, [r3, #20] + 8009f14: 68fb ldr r3, [r7, #12] + 8009f16: 687a ldr r2, [r7, #4] + 8009f18: 615a str r2, [r3, #20] pdev->ep_in[0].pbuffer = pbuf; - 800a092: 68fb ldr r3, [r7, #12] - 800a094: 68ba ldr r2, [r7, #8] - 800a096: 625a str r2, [r3, #36] @ 0x24 + 8009f1a: 68fb ldr r3, [r7, #12] + 8009f1c: 68ba ldr r2, [r7, #8] + 8009f1e: 625a str r2, [r3, #36] @ 0x24 #ifdef USBD_AVOID_PACKET_SPLIT_MPS pdev->ep_in[0].rem_length = 0U; #else pdev->ep_in[0].rem_length = len; - 800a098: 68fb ldr r3, [r7, #12] - 800a09a: 687a ldr r2, [r7, #4] - 800a09c: 619a str r2, [r3, #24] + 8009f20: 68fb ldr r3, [r7, #12] + 8009f22: 687a ldr r2, [r7, #4] + 8009f24: 619a str r2, [r3, #24] #endif /* USBD_AVOID_PACKET_SPLIT_MPS */ /* Start the transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); - 800a09e: 687b ldr r3, [r7, #4] - 800a0a0: 68ba ldr r2, [r7, #8] - 800a0a2: 2100 movs r1, #0 - 800a0a4: 68f8 ldr r0, [r7, #12] - 800a0a6: f000 fc26 bl 800a8f6 + 8009f26: 687b ldr r3, [r7, #4] + 8009f28: 68ba ldr r2, [r7, #8] + 8009f2a: 2100 movs r1, #0 + 8009f2c: 68f8 ldr r0, [r7, #12] + 8009f2e: f000 fc26 bl 800a77e return USBD_OK; - 800a0aa: 2300 movs r3, #0 + 8009f32: 2300 movs r3, #0 } - 800a0ac: 4618 mov r0, r3 - 800a0ae: 3710 adds r7, #16 - 800a0b0: 46bd mov sp, r7 - 800a0b2: bd80 pop {r7, pc} + 8009f34: 4618 mov r0, r3 + 8009f36: 3710 adds r7, #16 + 8009f38: 46bd mov sp, r7 + 8009f3a: bd80 pop {r7, pc} -0800a0b4 : +08009f3c : * @param len: length of data to be sent * @retval status */ USBD_StatusTypeDef USBD_CtlContinueSendData(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a0b4: b580 push {r7, lr} - 800a0b6: b084 sub sp, #16 - 800a0b8: af00 add r7, sp, #0 - 800a0ba: 60f8 str r0, [r7, #12] - 800a0bc: 60b9 str r1, [r7, #8] - 800a0be: 607a str r2, [r7, #4] + 8009f3c: b580 push {r7, lr} + 8009f3e: b084 sub sp, #16 + 8009f40: af00 add r7, sp, #0 + 8009f42: 60f8 str r0, [r7, #12] + 8009f44: 60b9 str r1, [r7, #8] + 8009f46: 607a str r2, [r7, #4] /* Start the next transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); - 800a0c0: 687b ldr r3, [r7, #4] - 800a0c2: 68ba ldr r2, [r7, #8] - 800a0c4: 2100 movs r1, #0 - 800a0c6: 68f8 ldr r0, [r7, #12] - 800a0c8: f000 fc15 bl 800a8f6 + 8009f48: 687b ldr r3, [r7, #4] + 8009f4a: 68ba ldr r2, [r7, #8] + 8009f4c: 2100 movs r1, #0 + 8009f4e: 68f8 ldr r0, [r7, #12] + 8009f50: f000 fc15 bl 800a77e return USBD_OK; - 800a0cc: 2300 movs r3, #0 + 8009f54: 2300 movs r3, #0 } - 800a0ce: 4618 mov r0, r3 - 800a0d0: 3710 adds r7, #16 - 800a0d2: 46bd mov sp, r7 - 800a0d4: bd80 pop {r7, pc} + 8009f56: 4618 mov r0, r3 + 8009f58: 3710 adds r7, #16 + 8009f5a: 46bd mov sp, r7 + 8009f5c: bd80 pop {r7, pc} -0800a0d6 : +08009f5e : * @param len: length of data to be received * @retval status */ USBD_StatusTypeDef USBD_CtlContinueRx(USBD_HandleTypeDef *pdev, uint8_t *pbuf, uint32_t len) { - 800a0d6: b580 push {r7, lr} - 800a0d8: b084 sub sp, #16 - 800a0da: af00 add r7, sp, #0 - 800a0dc: 60f8 str r0, [r7, #12] - 800a0de: 60b9 str r1, [r7, #8] - 800a0e0: 607a str r2, [r7, #4] + 8009f5e: b580 push {r7, lr} + 8009f60: b084 sub sp, #16 + 8009f62: af00 add r7, sp, #0 + 8009f64: 60f8 str r0, [r7, #12] + 8009f66: 60b9 str r1, [r7, #8] + 8009f68: 607a str r2, [r7, #4] (void)USBD_LL_PrepareReceive(pdev, 0U, pbuf, len); - 800a0e2: 687b ldr r3, [r7, #4] - 800a0e4: 68ba ldr r2, [r7, #8] - 800a0e6: 2100 movs r1, #0 - 800a0e8: 68f8 ldr r0, [r7, #12] - 800a0ea: f000 fc25 bl 800a938 + 8009f6a: 687b ldr r3, [r7, #4] + 8009f6c: 68ba ldr r2, [r7, #8] + 8009f6e: 2100 movs r1, #0 + 8009f70: 68f8 ldr r0, [r7, #12] + 8009f72: f000 fc25 bl 800a7c0 return USBD_OK; - 800a0ee: 2300 movs r3, #0 + 8009f76: 2300 movs r3, #0 } - 800a0f0: 4618 mov r0, r3 - 800a0f2: 3710 adds r7, #16 - 800a0f4: 46bd mov sp, r7 - 800a0f6: bd80 pop {r7, pc} + 8009f78: 4618 mov r0, r3 + 8009f7a: 3710 adds r7, #16 + 8009f7c: 46bd mov sp, r7 + 8009f7e: bd80 pop {r7, pc} -0800a0f8 : +08009f80 : * send zero lzngth packet on the ctl pipe * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_CtlSendStatus(USBD_HandleTypeDef *pdev) { - 800a0f8: b580 push {r7, lr} - 800a0fa: b082 sub sp, #8 - 800a0fc: af00 add r7, sp, #0 - 800a0fe: 6078 str r0, [r7, #4] + 8009f80: b580 push {r7, lr} + 8009f82: b082 sub sp, #8 + 8009f84: af00 add r7, sp, #0 + 8009f86: 6078 str r0, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_STATUS_IN; - 800a100: 687b ldr r3, [r7, #4] - 800a102: 2204 movs r2, #4 - 800a104: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8009f88: 687b ldr r3, [r7, #4] + 8009f8a: 2204 movs r2, #4 + 8009f8c: f8c3 2294 str.w r2, [r3, #660] @ 0x294 /* Start the transfer */ (void)USBD_LL_Transmit(pdev, 0x00U, NULL, 0U); - 800a108: 2300 movs r3, #0 - 800a10a: 2200 movs r2, #0 - 800a10c: 2100 movs r1, #0 - 800a10e: 6878 ldr r0, [r7, #4] - 800a110: f000 fbf1 bl 800a8f6 + 8009f90: 2300 movs r3, #0 + 8009f92: 2200 movs r2, #0 + 8009f94: 2100 movs r1, #0 + 8009f96: 6878 ldr r0, [r7, #4] + 8009f98: f000 fbf1 bl 800a77e return USBD_OK; - 800a114: 2300 movs r3, #0 + 8009f9c: 2300 movs r3, #0 } - 800a116: 4618 mov r0, r3 - 800a118: 3708 adds r7, #8 - 800a11a: 46bd mov sp, r7 - 800a11c: bd80 pop {r7, pc} + 8009f9e: 4618 mov r0, r3 + 8009fa0: 3708 adds r7, #8 + 8009fa2: 46bd mov sp, r7 + 8009fa4: bd80 pop {r7, pc} -0800a11e : +08009fa6 : * receive zero lzngth packet on the ctl pipe * @param pdev: device instance * @retval status */ USBD_StatusTypeDef USBD_CtlReceiveStatus(USBD_HandleTypeDef *pdev) { - 800a11e: b580 push {r7, lr} - 800a120: b082 sub sp, #8 - 800a122: af00 add r7, sp, #0 - 800a124: 6078 str r0, [r7, #4] + 8009fa6: b580 push {r7, lr} + 8009fa8: b082 sub sp, #8 + 8009faa: af00 add r7, sp, #0 + 8009fac: 6078 str r0, [r7, #4] /* Set EP0 State */ pdev->ep0_state = USBD_EP0_STATUS_OUT; - 800a126: 687b ldr r3, [r7, #4] - 800a128: 2205 movs r2, #5 - 800a12a: f8c3 2294 str.w r2, [r3, #660] @ 0x294 + 8009fae: 687b ldr r3, [r7, #4] + 8009fb0: 2205 movs r2, #5 + 8009fb2: f8c3 2294 str.w r2, [r3, #660] @ 0x294 /* Start the transfer */ (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); - 800a12e: 2300 movs r3, #0 - 800a130: 2200 movs r2, #0 - 800a132: 2100 movs r1, #0 - 800a134: 6878 ldr r0, [r7, #4] - 800a136: f000 fbff bl 800a938 + 8009fb6: 2300 movs r3, #0 + 8009fb8: 2200 movs r2, #0 + 8009fba: 2100 movs r1, #0 + 8009fbc: 6878 ldr r0, [r7, #4] + 8009fbe: f000 fbff bl 800a7c0 return USBD_OK; - 800a13a: 2300 movs r3, #0 + 8009fc2: 2300 movs r3, #0 } - 800a13c: 4618 mov r0, r3 - 800a13e: 3708 adds r7, #8 - 800a140: 46bd mov sp, r7 - 800a142: bd80 pop {r7, pc} + 8009fc4: 4618 mov r0, r3 + 8009fc6: 3708 adds r7, #8 + 8009fc8: 46bd mov sp, r7 + 8009fca: bd80 pop {r7, pc} -0800a144 : +08009fcc : /** * Init USB device Library, add supported class and start the library * @retval None */ void MX_USB_DEVICE_Init(void) { - 800a144: b580 push {r7, lr} - 800a146: af00 add r7, sp, #0 + 8009fcc: b580 push {r7, lr} + 8009fce: af00 add r7, sp, #0 /* USER CODE BEGIN USB_DEVICE_Init_PreTreatment */ /* USER CODE END USB_DEVICE_Init_PreTreatment */ /* Init Device Library, add supported class and start the library. */ if (USBD_Init(&hUsbDeviceFS, &FS_Desc, DEVICE_FS) != USBD_OK) - 800a148: 2200 movs r2, #0 - 800a14a: 490e ldr r1, [pc, #56] @ (800a184 ) - 800a14c: 480e ldr r0, [pc, #56] @ (800a188 ) - 800a14e: f7fe fcd1 bl 8008af4 - 800a152: 4603 mov r3, r0 - 800a154: 2b00 cmp r3, #0 - 800a156: d001 beq.n 800a15c + 8009fd0: 2200 movs r2, #0 + 8009fd2: 490e ldr r1, [pc, #56] @ (800a00c ) + 8009fd4: 480e ldr r0, [pc, #56] @ (800a010 ) + 8009fd6: f7fe fcd1 bl 800897c + 8009fda: 4603 mov r3, r0 + 8009fdc: 2b00 cmp r3, #0 + 8009fde: d001 beq.n 8009fe4 { Error_Handler(); - 800a158: f7f6 fdfe bl 8000d58 + 8009fe0: f7f6 fee2 bl 8000da8 } if (USBD_RegisterClass(&hUsbDeviceFS, &USBD_HID) != USBD_OK) - 800a15c: 490b ldr r1, [pc, #44] @ (800a18c ) - 800a15e: 480a ldr r0, [pc, #40] @ (800a188 ) - 800a160: f7fe fcf8 bl 8008b54 - 800a164: 4603 mov r3, r0 - 800a166: 2b00 cmp r3, #0 - 800a168: d001 beq.n 800a16e + 8009fe4: 490b ldr r1, [pc, #44] @ (800a014 ) + 8009fe6: 480a ldr r0, [pc, #40] @ (800a010 ) + 8009fe8: f7fe fcf8 bl 80089dc + 8009fec: 4603 mov r3, r0 + 8009fee: 2b00 cmp r3, #0 + 8009ff0: d001 beq.n 8009ff6 { Error_Handler(); - 800a16a: f7f6 fdf5 bl 8000d58 + 8009ff2: f7f6 fed9 bl 8000da8 } if (USBD_Start(&hUsbDeviceFS) != USBD_OK) - 800a16e: 4806 ldr r0, [pc, #24] @ (800a188 ) - 800a170: f7fe fd26 bl 8008bc0 - 800a174: 4603 mov r3, r0 - 800a176: 2b00 cmp r3, #0 - 800a178: d001 beq.n 800a17e + 8009ff6: 4806 ldr r0, [pc, #24] @ (800a010 ) + 8009ff8: f7fe fd26 bl 8008a48 + 8009ffc: 4603 mov r3, r0 + 8009ffe: 2b00 cmp r3, #0 + 800a000: d001 beq.n 800a006 { Error_Handler(); - 800a17a: f7f6 fded bl 8000d58 + 800a002: f7f6 fed1 bl 8000da8 } /* USER CODE BEGIN USB_DEVICE_Init_PostTreatment */ /* USER CODE END USB_DEVICE_Init_PostTreatment */ } - 800a17e: bf00 nop - 800a180: bd80 pop {r7, pc} - 800a182: bf00 nop - 800a184: 20000140 .word 0x20000140 - 800a188: 20000724 .word 0x20000724 - 800a18c: 2000009c .word 0x2000009c + 800a006: bf00 nop + 800a008: bd80 pop {r7, pc} + 800a00a: bf00 nop + 800a00c: 20000140 .word 0x20000140 + 800a010: 20000724 .word 0x20000724 + 800a014: 2000009c .word 0x2000009c -0800a190 : +0800a018 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a190: b480 push {r7} - 800a192: b083 sub sp, #12 - 800a194: af00 add r7, sp, #0 - 800a196: 4603 mov r3, r0 - 800a198: 6039 str r1, [r7, #0] - 800a19a: 71fb strb r3, [r7, #7] + 800a018: b480 push {r7} + 800a01a: b083 sub sp, #12 + 800a01c: af00 add r7, sp, #0 + 800a01e: 4603 mov r3, r0 + 800a020: 6039 str r1, [r7, #0] + 800a022: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_FS_DeviceDesc); - 800a19c: 683b ldr r3, [r7, #0] - 800a19e: 2212 movs r2, #18 - 800a1a0: 801a strh r2, [r3, #0] + 800a024: 683b ldr r3, [r7, #0] + 800a026: 2212 movs r2, #18 + 800a028: 801a strh r2, [r3, #0] return USBD_FS_DeviceDesc; - 800a1a2: 4b03 ldr r3, [pc, #12] @ (800a1b0 ) + 800a02a: 4b03 ldr r3, [pc, #12] @ (800a038 ) } - 800a1a4: 4618 mov r0, r3 - 800a1a6: 370c adds r7, #12 - 800a1a8: 46bd mov sp, r7 - 800a1aa: f85d 7b04 ldr.w r7, [sp], #4 - 800a1ae: 4770 bx lr - 800a1b0: 20000160 .word 0x20000160 + 800a02c: 4618 mov r0, r3 + 800a02e: 370c adds r7, #12 + 800a030: 46bd mov sp, r7 + 800a032: f85d 7b04 ldr.w r7, [sp], #4 + 800a036: 4770 bx lr + 800a038: 20000160 .word 0x20000160 -0800a1b4 : +0800a03c : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a1b4: b480 push {r7} - 800a1b6: b083 sub sp, #12 - 800a1b8: af00 add r7, sp, #0 - 800a1ba: 4603 mov r3, r0 - 800a1bc: 6039 str r1, [r7, #0] - 800a1be: 71fb strb r3, [r7, #7] + 800a03c: b480 push {r7} + 800a03e: b083 sub sp, #12 + 800a040: af00 add r7, sp, #0 + 800a042: 4603 mov r3, r0 + 800a044: 6039 str r1, [r7, #0] + 800a046: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_LangIDDesc); - 800a1c0: 683b ldr r3, [r7, #0] - 800a1c2: 2204 movs r2, #4 - 800a1c4: 801a strh r2, [r3, #0] + 800a048: 683b ldr r3, [r7, #0] + 800a04a: 2204 movs r2, #4 + 800a04c: 801a strh r2, [r3, #0] return USBD_LangIDDesc; - 800a1c6: 4b03 ldr r3, [pc, #12] @ (800a1d4 ) + 800a04e: 4b03 ldr r3, [pc, #12] @ (800a05c ) } - 800a1c8: 4618 mov r0, r3 - 800a1ca: 370c adds r7, #12 - 800a1cc: 46bd mov sp, r7 - 800a1ce: f85d 7b04 ldr.w r7, [sp], #4 - 800a1d2: 4770 bx lr - 800a1d4: 20000180 .word 0x20000180 + 800a050: 4618 mov r0, r3 + 800a052: 370c adds r7, #12 + 800a054: 46bd mov sp, r7 + 800a056: f85d 7b04 ldr.w r7, [sp], #4 + 800a05a: 4770 bx lr + 800a05c: 20000180 .word 0x20000180 -0800a1d8 : +0800a060 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a1d8: b580 push {r7, lr} - 800a1da: b082 sub sp, #8 - 800a1dc: af00 add r7, sp, #0 - 800a1de: 4603 mov r3, r0 - 800a1e0: 6039 str r1, [r7, #0] - 800a1e2: 71fb strb r3, [r7, #7] + 800a060: b580 push {r7, lr} + 800a062: b082 sub sp, #8 + 800a064: af00 add r7, sp, #0 + 800a066: 4603 mov r3, r0 + 800a068: 6039 str r1, [r7, #0] + 800a06a: 71fb strb r3, [r7, #7] if(speed == 0) - 800a1e4: 79fb ldrb r3, [r7, #7] - 800a1e6: 2b00 cmp r3, #0 - 800a1e8: d105 bne.n 800a1f6 + 800a06c: 79fb ldrb r3, [r7, #7] + 800a06e: 2b00 cmp r3, #0 + 800a070: d105 bne.n 800a07e { USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); - 800a1ea: 683a ldr r2, [r7, #0] - 800a1ec: 4907 ldr r1, [pc, #28] @ (800a20c ) - 800a1ee: 4808 ldr r0, [pc, #32] @ (800a210 ) - 800a1f0: f7ff fed6 bl 8009fa0 - 800a1f4: e004 b.n 800a200 + 800a072: 683a ldr r2, [r7, #0] + 800a074: 4907 ldr r1, [pc, #28] @ (800a094 ) + 800a076: 4808 ldr r0, [pc, #32] @ (800a098 ) + 800a078: f7ff fed6 bl 8009e28 + 800a07c: e004 b.n 800a088 } else { USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); - 800a1f6: 683a ldr r2, [r7, #0] - 800a1f8: 4904 ldr r1, [pc, #16] @ (800a20c ) - 800a1fa: 4805 ldr r0, [pc, #20] @ (800a210 ) - 800a1fc: f7ff fed0 bl 8009fa0 + 800a07e: 683a ldr r2, [r7, #0] + 800a080: 4904 ldr r1, [pc, #16] @ (800a094 ) + 800a082: 4805 ldr r0, [pc, #20] @ (800a098 ) + 800a084: f7ff fed0 bl 8009e28 } return USBD_StrDesc; - 800a200: 4b02 ldr r3, [pc, #8] @ (800a20c ) + 800a088: 4b02 ldr r3, [pc, #8] @ (800a094 ) } - 800a202: 4618 mov r0, r3 - 800a204: 3708 adds r7, #8 - 800a206: 46bd mov sp, r7 - 800a208: bd80 pop {r7, pc} - 800a20a: bf00 nop - 800a20c: 20000a00 .word 0x20000a00 - 800a210: 0800ab2c .word 0x0800ab2c + 800a08a: 4618 mov r0, r3 + 800a08c: 3708 adds r7, #8 + 800a08e: 46bd mov sp, r7 + 800a090: bd80 pop {r7, pc} + 800a092: bf00 nop + 800a094: 20000a00 .word 0x20000a00 + 800a098: 0800a9b4 .word 0x0800a9b4 -0800a214 : +0800a09c : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a214: b580 push {r7, lr} - 800a216: b082 sub sp, #8 - 800a218: af00 add r7, sp, #0 - 800a21a: 4603 mov r3, r0 - 800a21c: 6039 str r1, [r7, #0] - 800a21e: 71fb strb r3, [r7, #7] + 800a09c: b580 push {r7, lr} + 800a09e: b082 sub sp, #8 + 800a0a0: af00 add r7, sp, #0 + 800a0a2: 4603 mov r3, r0 + 800a0a4: 6039 str r1, [r7, #0] + 800a0a6: 71fb strb r3, [r7, #7] UNUSED(speed); USBD_GetString((uint8_t *)USBD_MANUFACTURER_STRING, USBD_StrDesc, length); - 800a220: 683a ldr r2, [r7, #0] - 800a222: 4904 ldr r1, [pc, #16] @ (800a234 ) - 800a224: 4804 ldr r0, [pc, #16] @ (800a238 ) - 800a226: f7ff febb bl 8009fa0 + 800a0a8: 683a ldr r2, [r7, #0] + 800a0aa: 4904 ldr r1, [pc, #16] @ (800a0bc ) + 800a0ac: 4804 ldr r0, [pc, #16] @ (800a0c0 ) + 800a0ae: f7ff febb bl 8009e28 return USBD_StrDesc; - 800a22a: 4b02 ldr r3, [pc, #8] @ (800a234 ) + 800a0b2: 4b02 ldr r3, [pc, #8] @ (800a0bc ) } - 800a22c: 4618 mov r0, r3 - 800a22e: 3708 adds r7, #8 - 800a230: 46bd mov sp, r7 - 800a232: bd80 pop {r7, pc} - 800a234: 20000a00 .word 0x20000a00 - 800a238: 0800ab40 .word 0x0800ab40 + 800a0b4: 4618 mov r0, r3 + 800a0b6: 3708 adds r7, #8 + 800a0b8: 46bd mov sp, r7 + 800a0ba: bd80 pop {r7, pc} + 800a0bc: 20000a00 .word 0x20000a00 + 800a0c0: 0800a9c8 .word 0x0800a9c8 -0800a23c : +0800a0c4 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a23c: b580 push {r7, lr} - 800a23e: b082 sub sp, #8 - 800a240: af00 add r7, sp, #0 - 800a242: 4603 mov r3, r0 - 800a244: 6039 str r1, [r7, #0] - 800a246: 71fb strb r3, [r7, #7] + 800a0c4: b580 push {r7, lr} + 800a0c6: b082 sub sp, #8 + 800a0c8: af00 add r7, sp, #0 + 800a0ca: 4603 mov r3, r0 + 800a0cc: 6039 str r1, [r7, #0] + 800a0ce: 71fb strb r3, [r7, #7] UNUSED(speed); *length = USB_SIZ_STRING_SERIAL; - 800a248: 683b ldr r3, [r7, #0] - 800a24a: 221a movs r2, #26 - 800a24c: 801a strh r2, [r3, #0] + 800a0d0: 683b ldr r3, [r7, #0] + 800a0d2: 221a movs r2, #26 + 800a0d4: 801a strh r2, [r3, #0] /* Update the serial number string descriptor with the data from the unique * ID */ Get_SerialNum(); - 800a24e: f000 f855 bl 800a2fc + 800a0d6: f000 f855 bl 800a184 /* USER CODE BEGIN USBD_FS_SerialStrDescriptor */ /* USER CODE END USBD_FS_SerialStrDescriptor */ return (uint8_t *) USBD_StringSerial; - 800a252: 4b02 ldr r3, [pc, #8] @ (800a25c ) + 800a0da: 4b02 ldr r3, [pc, #8] @ (800a0e4 ) } - 800a254: 4618 mov r0, r3 - 800a256: 3708 adds r7, #8 - 800a258: 46bd mov sp, r7 - 800a25a: bd80 pop {r7, pc} - 800a25c: 20000184 .word 0x20000184 + 800a0dc: 4618 mov r0, r3 + 800a0de: 3708 adds r7, #8 + 800a0e0: 46bd mov sp, r7 + 800a0e2: bd80 pop {r7, pc} + 800a0e4: 20000184 .word 0x20000184 -0800a260 : +0800a0e8 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a260: b580 push {r7, lr} - 800a262: b082 sub sp, #8 - 800a264: af00 add r7, sp, #0 - 800a266: 4603 mov r3, r0 - 800a268: 6039 str r1, [r7, #0] - 800a26a: 71fb strb r3, [r7, #7] + 800a0e8: b580 push {r7, lr} + 800a0ea: b082 sub sp, #8 + 800a0ec: af00 add r7, sp, #0 + 800a0ee: 4603 mov r3, r0 + 800a0f0: 6039 str r1, [r7, #0] + 800a0f2: 71fb strb r3, [r7, #7] if(speed == USBD_SPEED_HIGH) - 800a26c: 79fb ldrb r3, [r7, #7] - 800a26e: 2b00 cmp r3, #0 - 800a270: d105 bne.n 800a27e + 800a0f4: 79fb ldrb r3, [r7, #7] + 800a0f6: 2b00 cmp r3, #0 + 800a0f8: d105 bne.n 800a106 { USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); - 800a272: 683a ldr r2, [r7, #0] - 800a274: 4907 ldr r1, [pc, #28] @ (800a294 ) - 800a276: 4808 ldr r0, [pc, #32] @ (800a298 ) - 800a278: f7ff fe92 bl 8009fa0 - 800a27c: e004 b.n 800a288 + 800a0fa: 683a ldr r2, [r7, #0] + 800a0fc: 4907 ldr r1, [pc, #28] @ (800a11c ) + 800a0fe: 4808 ldr r0, [pc, #32] @ (800a120 ) + 800a100: f7ff fe92 bl 8009e28 + 800a104: e004 b.n 800a110 } else { USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); - 800a27e: 683a ldr r2, [r7, #0] - 800a280: 4904 ldr r1, [pc, #16] @ (800a294 ) - 800a282: 4805 ldr r0, [pc, #20] @ (800a298 ) - 800a284: f7ff fe8c bl 8009fa0 + 800a106: 683a ldr r2, [r7, #0] + 800a108: 4904 ldr r1, [pc, #16] @ (800a11c ) + 800a10a: 4805 ldr r0, [pc, #20] @ (800a120 ) + 800a10c: f7ff fe8c bl 8009e28 } return USBD_StrDesc; - 800a288: 4b02 ldr r3, [pc, #8] @ (800a294 ) + 800a110: 4b02 ldr r3, [pc, #8] @ (800a11c ) } - 800a28a: 4618 mov r0, r3 - 800a28c: 3708 adds r7, #8 - 800a28e: 46bd mov sp, r7 - 800a290: bd80 pop {r7, pc} - 800a292: bf00 nop - 800a294: 20000a00 .word 0x20000a00 - 800a298: 0800ab4c .word 0x0800ab4c + 800a112: 4618 mov r0, r3 + 800a114: 3708 adds r7, #8 + 800a116: 46bd mov sp, r7 + 800a118: bd80 pop {r7, pc} + 800a11a: bf00 nop + 800a11c: 20000a00 .word 0x20000a00 + 800a120: 0800a9d4 .word 0x0800a9d4 -0800a29c : +0800a124 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a29c: b580 push {r7, lr} - 800a29e: b082 sub sp, #8 - 800a2a0: af00 add r7, sp, #0 - 800a2a2: 4603 mov r3, r0 - 800a2a4: 6039 str r1, [r7, #0] - 800a2a6: 71fb strb r3, [r7, #7] + 800a124: b580 push {r7, lr} + 800a126: b082 sub sp, #8 + 800a128: af00 add r7, sp, #0 + 800a12a: 4603 mov r3, r0 + 800a12c: 6039 str r1, [r7, #0] + 800a12e: 71fb strb r3, [r7, #7] if(speed == 0) - 800a2a8: 79fb ldrb r3, [r7, #7] - 800a2aa: 2b00 cmp r3, #0 - 800a2ac: d105 bne.n 800a2ba + 800a130: 79fb ldrb r3, [r7, #7] + 800a132: 2b00 cmp r3, #0 + 800a134: d105 bne.n 800a142 { USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); - 800a2ae: 683a ldr r2, [r7, #0] - 800a2b0: 4907 ldr r1, [pc, #28] @ (800a2d0 ) - 800a2b2: 4808 ldr r0, [pc, #32] @ (800a2d4 ) - 800a2b4: f7ff fe74 bl 8009fa0 - 800a2b8: e004 b.n 800a2c4 + 800a136: 683a ldr r2, [r7, #0] + 800a138: 4907 ldr r1, [pc, #28] @ (800a158 ) + 800a13a: 4808 ldr r0, [pc, #32] @ (800a15c ) + 800a13c: f7ff fe74 bl 8009e28 + 800a140: e004 b.n 800a14c } else { USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); - 800a2ba: 683a ldr r2, [r7, #0] - 800a2bc: 4904 ldr r1, [pc, #16] @ (800a2d0 ) - 800a2be: 4805 ldr r0, [pc, #20] @ (800a2d4 ) - 800a2c0: f7ff fe6e bl 8009fa0 + 800a142: 683a ldr r2, [r7, #0] + 800a144: 4904 ldr r1, [pc, #16] @ (800a158 ) + 800a146: 4805 ldr r0, [pc, #20] @ (800a15c ) + 800a148: f7ff fe6e bl 8009e28 } return USBD_StrDesc; - 800a2c4: 4b02 ldr r3, [pc, #8] @ (800a2d0 ) + 800a14c: 4b02 ldr r3, [pc, #8] @ (800a158 ) } - 800a2c6: 4618 mov r0, r3 - 800a2c8: 3708 adds r7, #8 - 800a2ca: 46bd mov sp, r7 - 800a2cc: bd80 pop {r7, pc} - 800a2ce: bf00 nop - 800a2d0: 20000a00 .word 0x20000a00 - 800a2d4: 0800ab58 .word 0x0800ab58 + 800a14e: 4618 mov r0, r3 + 800a150: 3708 adds r7, #8 + 800a152: 46bd mov sp, r7 + 800a154: bd80 pop {r7, pc} + 800a156: bf00 nop + 800a158: 20000a00 .word 0x20000a00 + 800a15c: 0800a9e0 .word 0x0800a9e0 -0800a2d8 : +0800a160 : * @param speed : Current device speed * @param length : Pointer to data length variable * @retval Pointer to descriptor buffer */ uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) { - 800a2d8: b480 push {r7} - 800a2da: b083 sub sp, #12 - 800a2dc: af00 add r7, sp, #0 - 800a2de: 4603 mov r3, r0 - 800a2e0: 6039 str r1, [r7, #0] - 800a2e2: 71fb strb r3, [r7, #7] + 800a160: b480 push {r7} + 800a162: b083 sub sp, #12 + 800a164: af00 add r7, sp, #0 + 800a166: 4603 mov r3, r0 + 800a168: 6039 str r1, [r7, #0] + 800a16a: 71fb strb r3, [r7, #7] UNUSED(speed); *length = sizeof(USBD_FS_BOSDesc); - 800a2e4: 683b ldr r3, [r7, #0] - 800a2e6: 220c movs r2, #12 - 800a2e8: 801a strh r2, [r3, #0] + 800a16c: 683b ldr r3, [r7, #0] + 800a16e: 220c movs r2, #12 + 800a170: 801a strh r2, [r3, #0] return (uint8_t*)USBD_FS_BOSDesc; - 800a2ea: 4b03 ldr r3, [pc, #12] @ (800a2f8 ) + 800a172: 4b03 ldr r3, [pc, #12] @ (800a180 ) } - 800a2ec: 4618 mov r0, r3 - 800a2ee: 370c adds r7, #12 - 800a2f0: 46bd mov sp, r7 - 800a2f2: f85d 7b04 ldr.w r7, [sp], #4 - 800a2f6: 4770 bx lr - 800a2f8: 20000174 .word 0x20000174 + 800a174: 4618 mov r0, r3 + 800a176: 370c adds r7, #12 + 800a178: 46bd mov sp, r7 + 800a17a: f85d 7b04 ldr.w r7, [sp], #4 + 800a17e: 4770 bx lr + 800a180: 20000174 .word 0x20000174 -0800a2fc : +0800a184 : * @brief Create the serial number string descriptor * @param None * @retval None */ static void Get_SerialNum(void) { - 800a2fc: b580 push {r7, lr} - 800a2fe: b084 sub sp, #16 - 800a300: af00 add r7, sp, #0 + 800a184: b580 push {r7, lr} + 800a186: b084 sub sp, #16 + 800a188: af00 add r7, sp, #0 uint32_t deviceserial0; uint32_t deviceserial1; uint32_t deviceserial2; deviceserial0 = *(uint32_t *) DEVICE_ID1; - 800a302: 4b0f ldr r3, [pc, #60] @ (800a340 ) - 800a304: 681b ldr r3, [r3, #0] - 800a306: 60fb str r3, [r7, #12] + 800a18a: 4b0f ldr r3, [pc, #60] @ (800a1c8 ) + 800a18c: 681b ldr r3, [r3, #0] + 800a18e: 60fb str r3, [r7, #12] deviceserial1 = *(uint32_t *) DEVICE_ID2; - 800a308: 4b0e ldr r3, [pc, #56] @ (800a344 ) - 800a30a: 681b ldr r3, [r3, #0] - 800a30c: 60bb str r3, [r7, #8] + 800a190: 4b0e ldr r3, [pc, #56] @ (800a1cc ) + 800a192: 681b ldr r3, [r3, #0] + 800a194: 60bb str r3, [r7, #8] deviceserial2 = *(uint32_t *) DEVICE_ID3; - 800a30e: 4b0e ldr r3, [pc, #56] @ (800a348 ) - 800a310: 681b ldr r3, [r3, #0] - 800a312: 607b str r3, [r7, #4] + 800a196: 4b0e ldr r3, [pc, #56] @ (800a1d0 ) + 800a198: 681b ldr r3, [r3, #0] + 800a19a: 607b str r3, [r7, #4] deviceserial0 += deviceserial2; - 800a314: 68fa ldr r2, [r7, #12] - 800a316: 687b ldr r3, [r7, #4] - 800a318: 4413 add r3, r2 - 800a31a: 60fb str r3, [r7, #12] + 800a19c: 68fa ldr r2, [r7, #12] + 800a19e: 687b ldr r3, [r7, #4] + 800a1a0: 4413 add r3, r2 + 800a1a2: 60fb str r3, [r7, #12] if (deviceserial0 != 0) - 800a31c: 68fb ldr r3, [r7, #12] - 800a31e: 2b00 cmp r3, #0 - 800a320: d009 beq.n 800a336 + 800a1a4: 68fb ldr r3, [r7, #12] + 800a1a6: 2b00 cmp r3, #0 + 800a1a8: d009 beq.n 800a1be { IntToUnicode(deviceserial0, &USBD_StringSerial[2], 8); - 800a322: 2208 movs r2, #8 - 800a324: 4909 ldr r1, [pc, #36] @ (800a34c ) - 800a326: 68f8 ldr r0, [r7, #12] - 800a328: f000 f814 bl 800a354 + 800a1aa: 2208 movs r2, #8 + 800a1ac: 4909 ldr r1, [pc, #36] @ (800a1d4 ) + 800a1ae: 68f8 ldr r0, [r7, #12] + 800a1b0: f000 f814 bl 800a1dc IntToUnicode(deviceserial1, &USBD_StringSerial[18], 4); - 800a32c: 2204 movs r2, #4 - 800a32e: 4908 ldr r1, [pc, #32] @ (800a350 ) - 800a330: 68b8 ldr r0, [r7, #8] - 800a332: f000 f80f bl 800a354 + 800a1b4: 2204 movs r2, #4 + 800a1b6: 4908 ldr r1, [pc, #32] @ (800a1d8 ) + 800a1b8: 68b8 ldr r0, [r7, #8] + 800a1ba: f000 f80f bl 800a1dc } } - 800a336: bf00 nop - 800a338: 3710 adds r7, #16 - 800a33a: 46bd mov sp, r7 - 800a33c: bd80 pop {r7, pc} - 800a33e: bf00 nop - 800a340: 1fff7a10 .word 0x1fff7a10 - 800a344: 1fff7a14 .word 0x1fff7a14 - 800a348: 1fff7a18 .word 0x1fff7a18 - 800a34c: 20000186 .word 0x20000186 - 800a350: 20000196 .word 0x20000196 + 800a1be: bf00 nop + 800a1c0: 3710 adds r7, #16 + 800a1c2: 46bd mov sp, r7 + 800a1c4: bd80 pop {r7, pc} + 800a1c6: bf00 nop + 800a1c8: 1fff7a10 .word 0x1fff7a10 + 800a1cc: 1fff7a14 .word 0x1fff7a14 + 800a1d0: 1fff7a18 .word 0x1fff7a18 + 800a1d4: 20000186 .word 0x20000186 + 800a1d8: 20000196 .word 0x20000196 -0800a354 : +0800a1dc : * @param pbuf: pointer to the buffer * @param len: buffer length * @retval None */ static void IntToUnicode(uint32_t value, uint8_t * pbuf, uint8_t len) { - 800a354: b480 push {r7} - 800a356: b087 sub sp, #28 - 800a358: af00 add r7, sp, #0 - 800a35a: 60f8 str r0, [r7, #12] - 800a35c: 60b9 str r1, [r7, #8] - 800a35e: 4613 mov r3, r2 - 800a360: 71fb strb r3, [r7, #7] + 800a1dc: b480 push {r7} + 800a1de: b087 sub sp, #28 + 800a1e0: af00 add r7, sp, #0 + 800a1e2: 60f8 str r0, [r7, #12] + 800a1e4: 60b9 str r1, [r7, #8] + 800a1e6: 4613 mov r3, r2 + 800a1e8: 71fb strb r3, [r7, #7] uint8_t idx = 0; - 800a362: 2300 movs r3, #0 - 800a364: 75fb strb r3, [r7, #23] + 800a1ea: 2300 movs r3, #0 + 800a1ec: 75fb strb r3, [r7, #23] for (idx = 0; idx < len; idx++) - 800a366: 2300 movs r3, #0 - 800a368: 75fb strb r3, [r7, #23] - 800a36a: e027 b.n 800a3bc + 800a1ee: 2300 movs r3, #0 + 800a1f0: 75fb strb r3, [r7, #23] + 800a1f2: e027 b.n 800a244 { if (((value >> 28)) < 0xA) - 800a36c: 68fb ldr r3, [r7, #12] - 800a36e: 0f1b lsrs r3, r3, #28 - 800a370: 2b09 cmp r3, #9 - 800a372: d80b bhi.n 800a38c + 800a1f4: 68fb ldr r3, [r7, #12] + 800a1f6: 0f1b lsrs r3, r3, #28 + 800a1f8: 2b09 cmp r3, #9 + 800a1fa: d80b bhi.n 800a214 { pbuf[2 * idx] = (value >> 28) + '0'; - 800a374: 68fb ldr r3, [r7, #12] - 800a376: 0f1b lsrs r3, r3, #28 - 800a378: b2da uxtb r2, r3 - 800a37a: 7dfb ldrb r3, [r7, #23] - 800a37c: 005b lsls r3, r3, #1 - 800a37e: 4619 mov r1, r3 - 800a380: 68bb ldr r3, [r7, #8] - 800a382: 440b add r3, r1 - 800a384: 3230 adds r2, #48 @ 0x30 - 800a386: b2d2 uxtb r2, r2 - 800a388: 701a strb r2, [r3, #0] - 800a38a: e00a b.n 800a3a2 + 800a1fc: 68fb ldr r3, [r7, #12] + 800a1fe: 0f1b lsrs r3, r3, #28 + 800a200: b2da uxtb r2, r3 + 800a202: 7dfb ldrb r3, [r7, #23] + 800a204: 005b lsls r3, r3, #1 + 800a206: 4619 mov r1, r3 + 800a208: 68bb ldr r3, [r7, #8] + 800a20a: 440b add r3, r1 + 800a20c: 3230 adds r2, #48 @ 0x30 + 800a20e: b2d2 uxtb r2, r2 + 800a210: 701a strb r2, [r3, #0] + 800a212: e00a b.n 800a22a } else { pbuf[2 * idx] = (value >> 28) + 'A' - 10; - 800a38c: 68fb ldr r3, [r7, #12] - 800a38e: 0f1b lsrs r3, r3, #28 - 800a390: b2da uxtb r2, r3 - 800a392: 7dfb ldrb r3, [r7, #23] - 800a394: 005b lsls r3, r3, #1 - 800a396: 4619 mov r1, r3 - 800a398: 68bb ldr r3, [r7, #8] - 800a39a: 440b add r3, r1 - 800a39c: 3237 adds r2, #55 @ 0x37 - 800a39e: b2d2 uxtb r2, r2 - 800a3a0: 701a strb r2, [r3, #0] + 800a214: 68fb ldr r3, [r7, #12] + 800a216: 0f1b lsrs r3, r3, #28 + 800a218: b2da uxtb r2, r3 + 800a21a: 7dfb ldrb r3, [r7, #23] + 800a21c: 005b lsls r3, r3, #1 + 800a21e: 4619 mov r1, r3 + 800a220: 68bb ldr r3, [r7, #8] + 800a222: 440b add r3, r1 + 800a224: 3237 adds r2, #55 @ 0x37 + 800a226: b2d2 uxtb r2, r2 + 800a228: 701a strb r2, [r3, #0] } value = value << 4; - 800a3a2: 68fb ldr r3, [r7, #12] - 800a3a4: 011b lsls r3, r3, #4 - 800a3a6: 60fb str r3, [r7, #12] + 800a22a: 68fb ldr r3, [r7, #12] + 800a22c: 011b lsls r3, r3, #4 + 800a22e: 60fb str r3, [r7, #12] pbuf[2 * idx + 1] = 0; - 800a3a8: 7dfb ldrb r3, [r7, #23] - 800a3aa: 005b lsls r3, r3, #1 - 800a3ac: 3301 adds r3, #1 - 800a3ae: 68ba ldr r2, [r7, #8] - 800a3b0: 4413 add r3, r2 - 800a3b2: 2200 movs r2, #0 - 800a3b4: 701a strb r2, [r3, #0] + 800a230: 7dfb ldrb r3, [r7, #23] + 800a232: 005b lsls r3, r3, #1 + 800a234: 3301 adds r3, #1 + 800a236: 68ba ldr r2, [r7, #8] + 800a238: 4413 add r3, r2 + 800a23a: 2200 movs r2, #0 + 800a23c: 701a strb r2, [r3, #0] for (idx = 0; idx < len; idx++) - 800a3b6: 7dfb ldrb r3, [r7, #23] - 800a3b8: 3301 adds r3, #1 - 800a3ba: 75fb strb r3, [r7, #23] - 800a3bc: 7dfa ldrb r2, [r7, #23] - 800a3be: 79fb ldrb r3, [r7, #7] - 800a3c0: 429a cmp r2, r3 - 800a3c2: d3d3 bcc.n 800a36c + 800a23e: 7dfb ldrb r3, [r7, #23] + 800a240: 3301 adds r3, #1 + 800a242: 75fb strb r3, [r7, #23] + 800a244: 7dfa ldrb r2, [r7, #23] + 800a246: 79fb ldrb r3, [r7, #7] + 800a248: 429a cmp r2, r3 + 800a24a: d3d3 bcc.n 800a1f4 } } - 800a3c4: bf00 nop - 800a3c6: bf00 nop - 800a3c8: 371c adds r7, #28 - 800a3ca: 46bd mov sp, r7 - 800a3cc: f85d 7b04 ldr.w r7, [sp], #4 - 800a3d0: 4770 bx lr + 800a24c: bf00 nop + 800a24e: bf00 nop + 800a250: 371c adds r7, #28 + 800a252: 46bd mov sp, r7 + 800a254: f85d 7b04 ldr.w r7, [sp], #4 + 800a258: 4770 bx lr ... -0800a3d4 : +0800a25c : LL Driver Callbacks (PCD -> USB Device Library) *******************************************************************************/ /* MSP Init */ void HAL_PCD_MspInit(PCD_HandleTypeDef* pcdHandle) { - 800a3d4: b580 push {r7, lr} - 800a3d6: b0a0 sub sp, #128 @ 0x80 - 800a3d8: af00 add r7, sp, #0 - 800a3da: 6078 str r0, [r7, #4] + 800a25c: b580 push {r7, lr} + 800a25e: b0a0 sub sp, #128 @ 0x80 + 800a260: af00 add r7, sp, #0 + 800a262: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 800a3dc: f107 036c add.w r3, r7, #108 @ 0x6c - 800a3e0: 2200 movs r2, #0 - 800a3e2: 601a str r2, [r3, #0] - 800a3e4: 605a str r2, [r3, #4] - 800a3e6: 609a str r2, [r3, #8] - 800a3e8: 60da str r2, [r3, #12] - 800a3ea: 611a str r2, [r3, #16] + 800a264: f107 036c add.w r3, r7, #108 @ 0x6c + 800a268: 2200 movs r2, #0 + 800a26a: 601a str r2, [r3, #0] + 800a26c: 605a str r2, [r3, #4] + 800a26e: 609a str r2, [r3, #8] + 800a270: 60da str r2, [r3, #12] + 800a272: 611a str r2, [r3, #16] RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0}; - 800a3ec: f107 0310 add.w r3, r7, #16 - 800a3f0: 225c movs r2, #92 @ 0x5c - 800a3f2: 2100 movs r1, #0 - 800a3f4: 4618 mov r0, r3 - 800a3f6: f000 fb53 bl 800aaa0 + 800a274: f107 0310 add.w r3, r7, #16 + 800a278: 225c movs r2, #92 @ 0x5c + 800a27a: 2100 movs r1, #0 + 800a27c: 4618 mov r0, r3 + 800a27e: f000 fb53 bl 800a928 if(pcdHandle->Instance==USB_OTG_FS) - 800a3fa: 687b ldr r3, [r7, #4] - 800a3fc: 681b ldr r3, [r3, #0] - 800a3fe: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 - 800a402: d149 bne.n 800a498 + 800a282: 687b ldr r3, [r7, #4] + 800a284: 681b ldr r3, [r3, #0] + 800a286: f1b3 4fa0 cmp.w r3, #1342177280 @ 0x50000000 + 800a28a: d149 bne.n 800a320 /* USER CODE END USB_OTG_FS_MspInit 0 */ /** Initializes the peripherals clock */ PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_CLK48; - 800a404: f44f 7380 mov.w r3, #256 @ 0x100 - 800a408: 613b str r3, [r7, #16] + 800a28c: f44f 7380 mov.w r3, #256 @ 0x100 + 800a290: 613b str r3, [r7, #16] PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48CLKSOURCE_PLLQ; - 800a40a: 2300 movs r3, #0 - 800a40c: 667b str r3, [r7, #100] @ 0x64 + 800a292: 2300 movs r3, #0 + 800a294: 667b str r3, [r7, #100] @ 0x64 if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK) - 800a40e: f107 0310 add.w r3, r7, #16 - 800a412: 4618 mov r0, r3 - 800a414: f7f9 fec6 bl 80041a4 - 800a418: 4603 mov r3, r0 - 800a41a: 2b00 cmp r3, #0 - 800a41c: d001 beq.n 800a422 + 800a296: f107 0310 add.w r3, r7, #16 + 800a29a: 4618 mov r0, r3 + 800a29c: f7f9 ffaa bl 80041f4 + 800a2a0: 4603 mov r3, r0 + 800a2a2: 2b00 cmp r3, #0 + 800a2a4: d001 beq.n 800a2aa { Error_Handler(); - 800a41e: f7f6 fc9b bl 8000d58 + 800a2a6: f7f6 fd7f bl 8000da8 } __HAL_RCC_GPIOA_CLK_ENABLE(); - 800a422: 2300 movs r3, #0 - 800a424: 60fb str r3, [r7, #12] - 800a426: 4b1e ldr r3, [pc, #120] @ (800a4a0 ) - 800a428: 6b1b ldr r3, [r3, #48] @ 0x30 - 800a42a: 4a1d ldr r2, [pc, #116] @ (800a4a0 ) - 800a42c: f043 0301 orr.w r3, r3, #1 - 800a430: 6313 str r3, [r2, #48] @ 0x30 - 800a432: 4b1b ldr r3, [pc, #108] @ (800a4a0 ) - 800a434: 6b1b ldr r3, [r3, #48] @ 0x30 - 800a436: f003 0301 and.w r3, r3, #1 - 800a43a: 60fb str r3, [r7, #12] - 800a43c: 68fb ldr r3, [r7, #12] + 800a2aa: 2300 movs r3, #0 + 800a2ac: 60fb str r3, [r7, #12] + 800a2ae: 4b1e ldr r3, [pc, #120] @ (800a328 ) + 800a2b0: 6b1b ldr r3, [r3, #48] @ 0x30 + 800a2b2: 4a1d ldr r2, [pc, #116] @ (800a328 ) + 800a2b4: f043 0301 orr.w r3, r3, #1 + 800a2b8: 6313 str r3, [r2, #48] @ 0x30 + 800a2ba: 4b1b ldr r3, [pc, #108] @ (800a328 ) + 800a2bc: 6b1b ldr r3, [r3, #48] @ 0x30 + 800a2be: f003 0301 and.w r3, r3, #1 + 800a2c2: 60fb str r3, [r7, #12] + 800a2c4: 68fb ldr r3, [r7, #12] /**USB_OTG_FS GPIO Configuration PA11 ------> USB_OTG_FS_DM PA12 ------> USB_OTG_FS_DP */ GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_12; - 800a43e: f44f 53c0 mov.w r3, #6144 @ 0x1800 - 800a442: 66fb str r3, [r7, #108] @ 0x6c + 800a2c6: f44f 53c0 mov.w r3, #6144 @ 0x1800 + 800a2ca: 66fb str r3, [r7, #108] @ 0x6c GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 800a444: 2302 movs r3, #2 - 800a446: 673b str r3, [r7, #112] @ 0x70 + 800a2cc: 2302 movs r3, #2 + 800a2ce: 673b str r3, [r7, #112] @ 0x70 GPIO_InitStruct.Pull = GPIO_NOPULL; - 800a448: 2300 movs r3, #0 - 800a44a: 677b str r3, [r7, #116] @ 0x74 + 800a2d0: 2300 movs r3, #0 + 800a2d2: 677b str r3, [r7, #116] @ 0x74 GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 800a44c: 2303 movs r3, #3 - 800a44e: 67bb str r3, [r7, #120] @ 0x78 + 800a2d4: 2303 movs r3, #3 + 800a2d6: 67bb str r3, [r7, #120] @ 0x78 GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; - 800a450: 230a movs r3, #10 - 800a452: 67fb str r3, [r7, #124] @ 0x7c + 800a2d8: 230a movs r3, #10 + 800a2da: 67fb str r3, [r7, #124] @ 0x7c HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 800a454: f107 036c add.w r3, r7, #108 @ 0x6c - 800a458: 4619 mov r1, r3 - 800a45a: 4812 ldr r0, [pc, #72] @ (800a4a4 ) - 800a45c: f7f7 fff8 bl 8002450 + 800a2dc: f107 036c add.w r3, r7, #108 @ 0x6c + 800a2e0: 4619 mov r1, r3 + 800a2e2: 4812 ldr r0, [pc, #72] @ (800a32c ) + 800a2e4: f7f8 f8dc bl 80024a0 /* Peripheral clock enable */ __HAL_RCC_USB_OTG_FS_CLK_ENABLE(); - 800a460: 4b0f ldr r3, [pc, #60] @ (800a4a0 ) - 800a462: 6b5b ldr r3, [r3, #52] @ 0x34 - 800a464: 4a0e ldr r2, [pc, #56] @ (800a4a0 ) - 800a466: f043 0380 orr.w r3, r3, #128 @ 0x80 - 800a46a: 6353 str r3, [r2, #52] @ 0x34 - 800a46c: 2300 movs r3, #0 - 800a46e: 60bb str r3, [r7, #8] - 800a470: 4b0b ldr r3, [pc, #44] @ (800a4a0 ) - 800a472: 6c5b ldr r3, [r3, #68] @ 0x44 - 800a474: 4a0a ldr r2, [pc, #40] @ (800a4a0 ) - 800a476: f443 4380 orr.w r3, r3, #16384 @ 0x4000 - 800a47a: 6453 str r3, [r2, #68] @ 0x44 - 800a47c: 4b08 ldr r3, [pc, #32] @ (800a4a0 ) - 800a47e: 6c5b ldr r3, [r3, #68] @ 0x44 - 800a480: f403 4380 and.w r3, r3, #16384 @ 0x4000 - 800a484: 60bb str r3, [r7, #8] - 800a486: 68bb ldr r3, [r7, #8] + 800a2e8: 4b0f ldr r3, [pc, #60] @ (800a328 ) + 800a2ea: 6b5b ldr r3, [r3, #52] @ 0x34 + 800a2ec: 4a0e ldr r2, [pc, #56] @ (800a328 ) + 800a2ee: f043 0380 orr.w r3, r3, #128 @ 0x80 + 800a2f2: 6353 str r3, [r2, #52] @ 0x34 + 800a2f4: 2300 movs r3, #0 + 800a2f6: 60bb str r3, [r7, #8] + 800a2f8: 4b0b ldr r3, [pc, #44] @ (800a328 ) + 800a2fa: 6c5b ldr r3, [r3, #68] @ 0x44 + 800a2fc: 4a0a ldr r2, [pc, #40] @ (800a328 ) + 800a2fe: f443 4380 orr.w r3, r3, #16384 @ 0x4000 + 800a302: 6453 str r3, [r2, #68] @ 0x44 + 800a304: 4b08 ldr r3, [pc, #32] @ (800a328 ) + 800a306: 6c5b ldr r3, [r3, #68] @ 0x44 + 800a308: f403 4380 and.w r3, r3, #16384 @ 0x4000 + 800a30c: 60bb str r3, [r7, #8] + 800a30e: 68bb ldr r3, [r7, #8] /* Peripheral interrupt init */ HAL_NVIC_SetPriority(OTG_FS_IRQn, 0, 0); - 800a488: 2200 movs r2, #0 - 800a48a: 2100 movs r1, #0 - 800a48c: 2043 movs r0, #67 @ 0x43 - 800a48e: f7f7 fba6 bl 8001bde + 800a310: 2200 movs r2, #0 + 800a312: 2100 movs r1, #0 + 800a314: 2043 movs r0, #67 @ 0x43 + 800a316: f7f7 fc8a bl 8001c2e HAL_NVIC_EnableIRQ(OTG_FS_IRQn); - 800a492: 2043 movs r0, #67 @ 0x43 - 800a494: f7f7 fbbf bl 8001c16 + 800a31a: 2043 movs r0, #67 @ 0x43 + 800a31c: f7f7 fca3 bl 8001c66 /* USER CODE BEGIN USB_OTG_FS_MspInit 1 */ /* USER CODE END USB_OTG_FS_MspInit 1 */ } } - 800a498: bf00 nop - 800a49a: 3780 adds r7, #128 @ 0x80 - 800a49c: 46bd mov sp, r7 - 800a49e: bd80 pop {r7, pc} - 800a4a0: 40023800 .word 0x40023800 - 800a4a4: 40020000 .word 0x40020000 + 800a320: bf00 nop + 800a322: 3780 adds r7, #128 @ 0x80 + 800a324: 46bd mov sp, r7 + 800a326: bd80 pop {r7, pc} + 800a328: 40023800 .word 0x40023800 + 800a32c: 40020000 .word 0x40020000 -0800a4a8 : +0800a330 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a4a8: b580 push {r7, lr} - 800a4aa: b082 sub sp, #8 - 800a4ac: af00 add r7, sp, #0 - 800a4ae: 6078 str r0, [r7, #4] + 800a330: b580 push {r7, lr} + 800a332: b082 sub sp, #8 + 800a334: af00 add r7, sp, #0 + 800a336: 6078 str r0, [r7, #4] USBD_LL_SetupStage((USBD_HandleTypeDef*)hpcd->pData, (uint8_t *)hpcd->Setup); - 800a4b0: 687b ldr r3, [r7, #4] - 800a4b2: f8d3 24e0 ldr.w r2, [r3, #1248] @ 0x4e0 - 800a4b6: 687b ldr r3, [r7, #4] - 800a4b8: f203 439c addw r3, r3, #1180 @ 0x49c - 800a4bc: 4619 mov r1, r3 - 800a4be: 4610 mov r0, r2 - 800a4c0: f7fe fbcb bl 8008c5a + 800a338: 687b ldr r3, [r7, #4] + 800a33a: f8d3 24e0 ldr.w r2, [r3, #1248] @ 0x4e0 + 800a33e: 687b ldr r3, [r7, #4] + 800a340: f203 439c addw r3, r3, #1180 @ 0x49c + 800a344: 4619 mov r1, r3 + 800a346: 4610 mov r0, r2 + 800a348: f7fe fbcb bl 8008ae2 } - 800a4c4: bf00 nop - 800a4c6: 3708 adds r7, #8 - 800a4c8: 46bd mov sp, r7 - 800a4ca: bd80 pop {r7, pc} + 800a34c: bf00 nop + 800a34e: 3708 adds r7, #8 + 800a350: 46bd mov sp, r7 + 800a352: bd80 pop {r7, pc} -0800a4cc : +0800a354 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a4cc: b580 push {r7, lr} - 800a4ce: b082 sub sp, #8 - 800a4d0: af00 add r7, sp, #0 - 800a4d2: 6078 str r0, [r7, #4] - 800a4d4: 460b mov r3, r1 - 800a4d6: 70fb strb r3, [r7, #3] + 800a354: b580 push {r7, lr} + 800a356: b082 sub sp, #8 + 800a358: af00 add r7, sp, #0 + 800a35a: 6078 str r0, [r7, #4] + 800a35c: 460b mov r3, r1 + 800a35e: 70fb strb r3, [r7, #3] USBD_LL_DataOutStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->OUT_ep[epnum].xfer_buff); - 800a4d8: 687b ldr r3, [r7, #4] - 800a4da: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 - 800a4de: 78fa ldrb r2, [r7, #3] - 800a4e0: 6879 ldr r1, [r7, #4] - 800a4e2: 4613 mov r3, r2 - 800a4e4: 00db lsls r3, r3, #3 - 800a4e6: 4413 add r3, r2 - 800a4e8: 009b lsls r3, r3, #2 - 800a4ea: 440b add r3, r1 - 800a4ec: f503 7318 add.w r3, r3, #608 @ 0x260 - 800a4f0: 681a ldr r2, [r3, #0] - 800a4f2: 78fb ldrb r3, [r7, #3] - 800a4f4: 4619 mov r1, r3 - 800a4f6: f7fe fc05 bl 8008d04 + 800a360: 687b ldr r3, [r7, #4] + 800a362: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 + 800a366: 78fa ldrb r2, [r7, #3] + 800a368: 6879 ldr r1, [r7, #4] + 800a36a: 4613 mov r3, r2 + 800a36c: 00db lsls r3, r3, #3 + 800a36e: 4413 add r3, r2 + 800a370: 009b lsls r3, r3, #2 + 800a372: 440b add r3, r1 + 800a374: f503 7318 add.w r3, r3, #608 @ 0x260 + 800a378: 681a ldr r2, [r3, #0] + 800a37a: 78fb ldrb r3, [r7, #3] + 800a37c: 4619 mov r1, r3 + 800a37e: f7fe fc05 bl 8008b8c } - 800a4fa: bf00 nop - 800a4fc: 3708 adds r7, #8 - 800a4fe: 46bd mov sp, r7 - 800a500: bd80 pop {r7, pc} + 800a382: bf00 nop + 800a384: 3708 adds r7, #8 + 800a386: 46bd mov sp, r7 + 800a388: bd80 pop {r7, pc} -0800a502 : +0800a38a : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a502: b580 push {r7, lr} - 800a504: b082 sub sp, #8 - 800a506: af00 add r7, sp, #0 - 800a508: 6078 str r0, [r7, #4] - 800a50a: 460b mov r3, r1 - 800a50c: 70fb strb r3, [r7, #3] + 800a38a: b580 push {r7, lr} + 800a38c: b082 sub sp, #8 + 800a38e: af00 add r7, sp, #0 + 800a390: 6078 str r0, [r7, #4] + 800a392: 460b mov r3, r1 + 800a394: 70fb strb r3, [r7, #3] USBD_LL_DataInStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->IN_ep[epnum].xfer_buff); - 800a50e: 687b ldr r3, [r7, #4] - 800a510: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 - 800a514: 78fa ldrb r2, [r7, #3] - 800a516: 6879 ldr r1, [r7, #4] - 800a518: 4613 mov r3, r2 - 800a51a: 00db lsls r3, r3, #3 - 800a51c: 4413 add r3, r2 - 800a51e: 009b lsls r3, r3, #2 - 800a520: 440b add r3, r1 - 800a522: 3320 adds r3, #32 - 800a524: 681a ldr r2, [r3, #0] - 800a526: 78fb ldrb r3, [r7, #3] - 800a528: 4619 mov r1, r3 - 800a52a: f7fe fca7 bl 8008e7c + 800a396: 687b ldr r3, [r7, #4] + 800a398: f8d3 04e0 ldr.w r0, [r3, #1248] @ 0x4e0 + 800a39c: 78fa ldrb r2, [r7, #3] + 800a39e: 6879 ldr r1, [r7, #4] + 800a3a0: 4613 mov r3, r2 + 800a3a2: 00db lsls r3, r3, #3 + 800a3a4: 4413 add r3, r2 + 800a3a6: 009b lsls r3, r3, #2 + 800a3a8: 440b add r3, r1 + 800a3aa: 3320 adds r3, #32 + 800a3ac: 681a ldr r2, [r3, #0] + 800a3ae: 78fb ldrb r3, [r7, #3] + 800a3b0: 4619 mov r1, r3 + 800a3b2: f7fe fca7 bl 8008d04 } - 800a52e: bf00 nop - 800a530: 3708 adds r7, #8 - 800a532: 46bd mov sp, r7 - 800a534: bd80 pop {r7, pc} + 800a3b6: bf00 nop + 800a3b8: 3708 adds r7, #8 + 800a3ba: 46bd mov sp, r7 + 800a3bc: bd80 pop {r7, pc} -0800a536 : +0800a3be : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SOFCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SOFCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a536: b580 push {r7, lr} - 800a538: b082 sub sp, #8 - 800a53a: af00 add r7, sp, #0 - 800a53c: 6078 str r0, [r7, #4] + 800a3be: b580 push {r7, lr} + 800a3c0: b082 sub sp, #8 + 800a3c2: af00 add r7, sp, #0 + 800a3c4: 6078 str r0, [r7, #4] USBD_LL_SOF((USBD_HandleTypeDef*)hpcd->pData); - 800a53e: 687b ldr r3, [r7, #4] - 800a540: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a544: 4618 mov r0, r3 - 800a546: f7fe fdeb bl 8009120 + 800a3c6: 687b ldr r3, [r7, #4] + 800a3c8: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a3cc: 4618 mov r0, r3 + 800a3ce: f7fe fdeb bl 8008fa8 } - 800a54a: bf00 nop - 800a54c: 3708 adds r7, #8 - 800a54e: 46bd mov sp, r7 - 800a550: bd80 pop {r7, pc} + 800a3d2: bf00 nop + 800a3d4: 3708 adds r7, #8 + 800a3d6: 46bd mov sp, r7 + 800a3d8: bd80 pop {r7, pc} -0800a552 : +0800a3da : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ResetCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ResetCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a552: b580 push {r7, lr} - 800a554: b084 sub sp, #16 - 800a556: af00 add r7, sp, #0 - 800a558: 6078 str r0, [r7, #4] + 800a3da: b580 push {r7, lr} + 800a3dc: b084 sub sp, #16 + 800a3de: af00 add r7, sp, #0 + 800a3e0: 6078 str r0, [r7, #4] USBD_SpeedTypeDef speed = USBD_SPEED_FULL; - 800a55a: 2301 movs r3, #1 - 800a55c: 73fb strb r3, [r7, #15] + 800a3e2: 2301 movs r3, #1 + 800a3e4: 73fb strb r3, [r7, #15] if ( hpcd->Init.speed == PCD_SPEED_HIGH) - 800a55e: 687b ldr r3, [r7, #4] - 800a560: 79db ldrb r3, [r3, #7] - 800a562: 2b00 cmp r3, #0 - 800a564: d102 bne.n 800a56c + 800a3e6: 687b ldr r3, [r7, #4] + 800a3e8: 79db ldrb r3, [r3, #7] + 800a3ea: 2b00 cmp r3, #0 + 800a3ec: d102 bne.n 800a3f4 { speed = USBD_SPEED_HIGH; - 800a566: 2300 movs r3, #0 - 800a568: 73fb strb r3, [r7, #15] - 800a56a: e008 b.n 800a57e + 800a3ee: 2300 movs r3, #0 + 800a3f0: 73fb strb r3, [r7, #15] + 800a3f2: e008 b.n 800a406 } else if ( hpcd->Init.speed == PCD_SPEED_FULL) - 800a56c: 687b ldr r3, [r7, #4] - 800a56e: 79db ldrb r3, [r3, #7] - 800a570: 2b02 cmp r3, #2 - 800a572: d102 bne.n 800a57a + 800a3f4: 687b ldr r3, [r7, #4] + 800a3f6: 79db ldrb r3, [r3, #7] + 800a3f8: 2b02 cmp r3, #2 + 800a3fa: d102 bne.n 800a402 { speed = USBD_SPEED_FULL; - 800a574: 2301 movs r3, #1 - 800a576: 73fb strb r3, [r7, #15] - 800a578: e001 b.n 800a57e + 800a3fc: 2301 movs r3, #1 + 800a3fe: 73fb strb r3, [r7, #15] + 800a400: e001 b.n 800a406 } else { Error_Handler(); - 800a57a: f7f6 fbed bl 8000d58 + 800a402: f7f6 fcd1 bl 8000da8 } /* Set Speed. */ USBD_LL_SetSpeed((USBD_HandleTypeDef*)hpcd->pData, speed); - 800a57e: 687b ldr r3, [r7, #4] - 800a580: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a584: 7bfa ldrb r2, [r7, #15] - 800a586: 4611 mov r1, r2 - 800a588: 4618 mov r0, r3 - 800a58a: f7fe fd85 bl 8009098 + 800a406: 687b ldr r3, [r7, #4] + 800a408: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a40c: 7bfa ldrb r2, [r7, #15] + 800a40e: 4611 mov r1, r2 + 800a410: 4618 mov r0, r3 + 800a412: f7fe fd85 bl 8008f20 /* Reset Device. */ USBD_LL_Reset((USBD_HandleTypeDef*)hpcd->pData); - 800a58e: 687b ldr r3, [r7, #4] - 800a590: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a594: 4618 mov r0, r3 - 800a596: f7fe fd2c bl 8008ff2 + 800a416: 687b ldr r3, [r7, #4] + 800a418: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a41c: 4618 mov r0, r3 + 800a41e: f7fe fd2c bl 8008e7a } - 800a59a: bf00 nop - 800a59c: 3710 adds r7, #16 - 800a59e: 46bd mov sp, r7 - 800a5a0: bd80 pop {r7, pc} + 800a422: bf00 nop + 800a424: 3710 adds r7, #16 + 800a426: 46bd mov sp, r7 + 800a428: bd80 pop {r7, pc} ... -0800a5a4 : +0800a42c : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a5a4: b580 push {r7, lr} - 800a5a6: b082 sub sp, #8 - 800a5a8: af00 add r7, sp, #0 - 800a5aa: 6078 str r0, [r7, #4] + 800a42c: b580 push {r7, lr} + 800a42e: b082 sub sp, #8 + 800a430: af00 add r7, sp, #0 + 800a432: 6078 str r0, [r7, #4] /* Inform USB library that core enters in suspend Mode. */ USBD_LL_Suspend((USBD_HandleTypeDef*)hpcd->pData); - 800a5ac: 687b ldr r3, [r7, #4] - 800a5ae: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a5b2: 4618 mov r0, r3 - 800a5b4: f7fe fd80 bl 80090b8 + 800a434: 687b ldr r3, [r7, #4] + 800a436: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a43a: 4618 mov r0, r3 + 800a43c: f7fe fd80 bl 8008f40 __HAL_PCD_GATE_PHYCLOCK(hpcd); - 800a5b8: 687b ldr r3, [r7, #4] - 800a5ba: 681b ldr r3, [r3, #0] - 800a5bc: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a5c0: 681b ldr r3, [r3, #0] - 800a5c2: 687a ldr r2, [r7, #4] - 800a5c4: 6812 ldr r2, [r2, #0] - 800a5c6: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a5ca: f043 0301 orr.w r3, r3, #1 - 800a5ce: 6013 str r3, [r2, #0] + 800a440: 687b ldr r3, [r7, #4] + 800a442: 681b ldr r3, [r3, #0] + 800a444: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800a448: 681b ldr r3, [r3, #0] + 800a44a: 687a ldr r2, [r7, #4] + 800a44c: 6812 ldr r2, [r2, #0] + 800a44e: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800a452: f043 0301 orr.w r3, r3, #1 + 800a456: 6013 str r3, [r2, #0] /* Enter in STOP mode. */ /* USER CODE BEGIN 2 */ if (hpcd->Init.low_power_enable) - 800a5d0: 687b ldr r3, [r7, #4] - 800a5d2: 7adb ldrb r3, [r3, #11] - 800a5d4: 2b00 cmp r3, #0 - 800a5d6: d005 beq.n 800a5e4 + 800a458: 687b ldr r3, [r7, #4] + 800a45a: 7adb ldrb r3, [r3, #11] + 800a45c: 2b00 cmp r3, #0 + 800a45e: d005 beq.n 800a46c { /* Set SLEEPDEEP bit and SleepOnExit of Cortex System Control Register. */ SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a5d8: 4b04 ldr r3, [pc, #16] @ (800a5ec ) - 800a5da: 691b ldr r3, [r3, #16] - 800a5dc: 4a03 ldr r2, [pc, #12] @ (800a5ec ) - 800a5de: f043 0306 orr.w r3, r3, #6 - 800a5e2: 6113 str r3, [r2, #16] + 800a460: 4b04 ldr r3, [pc, #16] @ (800a474 ) + 800a462: 691b ldr r3, [r3, #16] + 800a464: 4a03 ldr r2, [pc, #12] @ (800a474 ) + 800a466: f043 0306 orr.w r3, r3, #6 + 800a46a: 6113 str r3, [r2, #16] } /* USER CODE END 2 */ } - 800a5e4: bf00 nop - 800a5e6: 3708 adds r7, #8 - 800a5e8: 46bd mov sp, r7 - 800a5ea: bd80 pop {r7, pc} - 800a5ec: e000ed00 .word 0xe000ed00 + 800a46c: bf00 nop + 800a46e: 3708 adds r7, #8 + 800a470: 46bd mov sp, r7 + 800a472: bd80 pop {r7, pc} + 800a474: e000ed00 .word 0xe000ed00 -0800a5f0 : +0800a478 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a5f0: b580 push {r7, lr} - 800a5f2: b082 sub sp, #8 - 800a5f4: af00 add r7, sp, #0 - 800a5f6: 6078 str r0, [r7, #4] + 800a478: b580 push {r7, lr} + 800a47a: b082 sub sp, #8 + 800a47c: af00 add r7, sp, #0 + 800a47e: 6078 str r0, [r7, #4] /* USER CODE BEGIN 3 */ /* USER CODE END 3 */ USBD_LL_Resume((USBD_HandleTypeDef*)hpcd->pData); - 800a5f8: 687b ldr r3, [r7, #4] - 800a5fa: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a5fe: 4618 mov r0, r3 - 800a600: f7fe fd76 bl 80090f0 + 800a480: 687b ldr r3, [r7, #4] + 800a482: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a486: 4618 mov r0, r3 + 800a488: f7fe fd76 bl 8008f78 } - 800a604: bf00 nop - 800a606: 3708 adds r7, #8 - 800a608: 46bd mov sp, r7 - 800a60a: bd80 pop {r7, pc} + 800a48c: bf00 nop + 800a48e: 3708 adds r7, #8 + 800a490: 46bd mov sp, r7 + 800a492: bd80 pop {r7, pc} -0800a60c : +0800a494 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a60c: b580 push {r7, lr} - 800a60e: b082 sub sp, #8 - 800a610: af00 add r7, sp, #0 - 800a612: 6078 str r0, [r7, #4] - 800a614: 460b mov r3, r1 - 800a616: 70fb strb r3, [r7, #3] + 800a494: b580 push {r7, lr} + 800a496: b082 sub sp, #8 + 800a498: af00 add r7, sp, #0 + 800a49a: 6078 str r0, [r7, #4] + 800a49c: 460b mov r3, r1 + 800a49e: 70fb strb r3, [r7, #3] USBD_LL_IsoOUTIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); - 800a618: 687b ldr r3, [r7, #4] - 800a61a: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a61e: 78fa ldrb r2, [r7, #3] - 800a620: 4611 mov r1, r2 - 800a622: 4618 mov r0, r3 - 800a624: f7fe fdce bl 80091c4 + 800a4a0: 687b ldr r3, [r7, #4] + 800a4a2: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a4a6: 78fa ldrb r2, [r7, #3] + 800a4a8: 4611 mov r1, r2 + 800a4aa: 4618 mov r0, r3 + 800a4ac: f7fe fdce bl 800904c } - 800a628: bf00 nop - 800a62a: 3708 adds r7, #8 - 800a62c: 46bd mov sp, r7 - 800a62e: bd80 pop {r7, pc} + 800a4b0: bf00 nop + 800a4b2: 3708 adds r7, #8 + 800a4b4: 46bd mov sp, r7 + 800a4b6: bd80 pop {r7, pc} -0800a630 : +0800a4b8 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #else void HAL_PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a630: b580 push {r7, lr} - 800a632: b082 sub sp, #8 - 800a634: af00 add r7, sp, #0 - 800a636: 6078 str r0, [r7, #4] - 800a638: 460b mov r3, r1 - 800a63a: 70fb strb r3, [r7, #3] + 800a4b8: b580 push {r7, lr} + 800a4ba: b082 sub sp, #8 + 800a4bc: af00 add r7, sp, #0 + 800a4be: 6078 str r0, [r7, #4] + 800a4c0: 460b mov r3, r1 + 800a4c2: 70fb strb r3, [r7, #3] USBD_LL_IsoINIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); - 800a63c: 687b ldr r3, [r7, #4] - 800a63e: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a642: 78fa ldrb r2, [r7, #3] - 800a644: 4611 mov r1, r2 - 800a646: 4618 mov r0, r3 - 800a648: f7fe fd8a bl 8009160 + 800a4c4: 687b ldr r3, [r7, #4] + 800a4c6: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a4ca: 78fa ldrb r2, [r7, #3] + 800a4cc: 4611 mov r1, r2 + 800a4ce: 4618 mov r0, r3 + 800a4d0: f7fe fd8a bl 8008fe8 } - 800a64c: bf00 nop - 800a64e: 3708 adds r7, #8 - 800a650: 46bd mov sp, r7 - 800a652: bd80 pop {r7, pc} + 800a4d4: bf00 nop + 800a4d6: 3708 adds r7, #8 + 800a4d8: 46bd mov sp, r7 + 800a4da: bd80 pop {r7, pc} -0800a654 : +0800a4dc : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a654: b580 push {r7, lr} - 800a656: b082 sub sp, #8 - 800a658: af00 add r7, sp, #0 - 800a65a: 6078 str r0, [r7, #4] + 800a4dc: b580 push {r7, lr} + 800a4de: b082 sub sp, #8 + 800a4e0: af00 add r7, sp, #0 + 800a4e2: 6078 str r0, [r7, #4] USBD_LL_DevConnected((USBD_HandleTypeDef*)hpcd->pData); - 800a65c: 687b ldr r3, [r7, #4] - 800a65e: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a662: 4618 mov r0, r3 - 800a664: f7fe fde0 bl 8009228 + 800a4e4: 687b ldr r3, [r7, #4] + 800a4e6: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a4ea: 4618 mov r0, r3 + 800a4ec: f7fe fde0 bl 80090b0 } - 800a668: bf00 nop - 800a66a: 3708 adds r7, #8 - 800a66c: 46bd mov sp, r7 - 800a66e: bd80 pop {r7, pc} + 800a4f0: bf00 nop + 800a4f2: 3708 adds r7, #8 + 800a4f4: 46bd mov sp, r7 + 800a4f6: bd80 pop {r7, pc} -0800a670 : +0800a4f8 : #if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) static void PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) #else void HAL_PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ { - 800a670: b580 push {r7, lr} - 800a672: b082 sub sp, #8 - 800a674: af00 add r7, sp, #0 - 800a676: 6078 str r0, [r7, #4] + 800a4f8: b580 push {r7, lr} + 800a4fa: b082 sub sp, #8 + 800a4fc: af00 add r7, sp, #0 + 800a4fe: 6078 str r0, [r7, #4] USBD_LL_DevDisconnected((USBD_HandleTypeDef*)hpcd->pData); - 800a678: 687b ldr r3, [r7, #4] - 800a67a: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a67e: 4618 mov r0, r3 - 800a680: f7fe fddd bl 800923e + 800a500: 687b ldr r3, [r7, #4] + 800a502: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a506: 4618 mov r0, r3 + 800a508: f7fe fddd bl 80090c6 } - 800a684: bf00 nop - 800a686: 3708 adds r7, #8 - 800a688: 46bd mov sp, r7 - 800a68a: bd80 pop {r7, pc} + 800a50c: bf00 nop + 800a50e: 3708 adds r7, #8 + 800a510: 46bd mov sp, r7 + 800a512: bd80 pop {r7, pc} -0800a68c : +0800a514 : * @brief Initializes the low level portion of the device driver. * @param pdev: Device handle * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Init(USBD_HandleTypeDef *pdev) { - 800a68c: b580 push {r7, lr} - 800a68e: b082 sub sp, #8 - 800a690: af00 add r7, sp, #0 - 800a692: 6078 str r0, [r7, #4] + 800a514: b580 push {r7, lr} + 800a516: b082 sub sp, #8 + 800a518: af00 add r7, sp, #0 + 800a51a: 6078 str r0, [r7, #4] /* Init USB Ip. */ if (pdev->id == DEVICE_FS) { - 800a694: 687b ldr r3, [r7, #4] - 800a696: 781b ldrb r3, [r3, #0] - 800a698: 2b00 cmp r3, #0 - 800a69a: d13c bne.n 800a716 + 800a51c: 687b ldr r3, [r7, #4] + 800a51e: 781b ldrb r3, [r3, #0] + 800a520: 2b00 cmp r3, #0 + 800a522: d13c bne.n 800a59e /* Link the driver to the stack. */ hpcd_USB_OTG_FS.pData = pdev; - 800a69c: 4a20 ldr r2, [pc, #128] @ (800a720 ) - 800a69e: 687b ldr r3, [r7, #4] - 800a6a0: f8c2 34e0 str.w r3, [r2, #1248] @ 0x4e0 + 800a524: 4a20 ldr r2, [pc, #128] @ (800a5a8 ) + 800a526: 687b ldr r3, [r7, #4] + 800a528: f8c2 34e0 str.w r3, [r2, #1248] @ 0x4e0 pdev->pData = &hpcd_USB_OTG_FS; - 800a6a4: 687b ldr r3, [r7, #4] - 800a6a6: 4a1e ldr r2, [pc, #120] @ (800a720 ) - 800a6a8: f8c3 22c8 str.w r2, [r3, #712] @ 0x2c8 + 800a52c: 687b ldr r3, [r7, #4] + 800a52e: 4a1e ldr r2, [pc, #120] @ (800a5a8 ) + 800a530: f8c3 22c8 str.w r2, [r3, #712] @ 0x2c8 hpcd_USB_OTG_FS.Instance = USB_OTG_FS; - 800a6ac: 4b1c ldr r3, [pc, #112] @ (800a720 ) - 800a6ae: f04f 42a0 mov.w r2, #1342177280 @ 0x50000000 - 800a6b2: 601a str r2, [r3, #0] + 800a534: 4b1c ldr r3, [pc, #112] @ (800a5a8 ) + 800a536: f04f 42a0 mov.w r2, #1342177280 @ 0x50000000 + 800a53a: 601a str r2, [r3, #0] hpcd_USB_OTG_FS.Init.dev_endpoints = 6; - 800a6b4: 4b1a ldr r3, [pc, #104] @ (800a720 ) - 800a6b6: 2206 movs r2, #6 - 800a6b8: 711a strb r2, [r3, #4] + 800a53c: 4b1a ldr r3, [pc, #104] @ (800a5a8 ) + 800a53e: 2206 movs r2, #6 + 800a540: 711a strb r2, [r3, #4] hpcd_USB_OTG_FS.Init.speed = PCD_SPEED_FULL; - 800a6ba: 4b19 ldr r3, [pc, #100] @ (800a720 ) - 800a6bc: 2202 movs r2, #2 - 800a6be: 71da strb r2, [r3, #7] + 800a542: 4b19 ldr r3, [pc, #100] @ (800a5a8 ) + 800a544: 2202 movs r2, #2 + 800a546: 71da strb r2, [r3, #7] hpcd_USB_OTG_FS.Init.dma_enable = DISABLE; - 800a6c0: 4b17 ldr r3, [pc, #92] @ (800a720 ) - 800a6c2: 2200 movs r2, #0 - 800a6c4: 719a strb r2, [r3, #6] + 800a548: 4b17 ldr r3, [pc, #92] @ (800a5a8 ) + 800a54a: 2200 movs r2, #0 + 800a54c: 719a strb r2, [r3, #6] hpcd_USB_OTG_FS.Init.phy_itface = PCD_PHY_EMBEDDED; - 800a6c6: 4b16 ldr r3, [pc, #88] @ (800a720 ) - 800a6c8: 2202 movs r2, #2 - 800a6ca: 725a strb r2, [r3, #9] + 800a54e: 4b16 ldr r3, [pc, #88] @ (800a5a8 ) + 800a550: 2202 movs r2, #2 + 800a552: 725a strb r2, [r3, #9] hpcd_USB_OTG_FS.Init.Sof_enable = DISABLE; - 800a6cc: 4b14 ldr r3, [pc, #80] @ (800a720 ) - 800a6ce: 2200 movs r2, #0 - 800a6d0: 729a strb r2, [r3, #10] + 800a554: 4b14 ldr r3, [pc, #80] @ (800a5a8 ) + 800a556: 2200 movs r2, #0 + 800a558: 729a strb r2, [r3, #10] hpcd_USB_OTG_FS.Init.low_power_enable = DISABLE; - 800a6d2: 4b13 ldr r3, [pc, #76] @ (800a720 ) - 800a6d4: 2200 movs r2, #0 - 800a6d6: 72da strb r2, [r3, #11] + 800a55a: 4b13 ldr r3, [pc, #76] @ (800a5a8 ) + 800a55c: 2200 movs r2, #0 + 800a55e: 72da strb r2, [r3, #11] hpcd_USB_OTG_FS.Init.lpm_enable = DISABLE; - 800a6d8: 4b11 ldr r3, [pc, #68] @ (800a720 ) - 800a6da: 2200 movs r2, #0 - 800a6dc: 731a strb r2, [r3, #12] + 800a560: 4b11 ldr r3, [pc, #68] @ (800a5a8 ) + 800a562: 2200 movs r2, #0 + 800a564: 731a strb r2, [r3, #12] hpcd_USB_OTG_FS.Init.vbus_sensing_enable = DISABLE; - 800a6de: 4b10 ldr r3, [pc, #64] @ (800a720 ) - 800a6e0: 2200 movs r2, #0 - 800a6e2: 739a strb r2, [r3, #14] + 800a566: 4b10 ldr r3, [pc, #64] @ (800a5a8 ) + 800a568: 2200 movs r2, #0 + 800a56a: 739a strb r2, [r3, #14] hpcd_USB_OTG_FS.Init.use_dedicated_ep1 = DISABLE; - 800a6e4: 4b0e ldr r3, [pc, #56] @ (800a720 ) - 800a6e6: 2200 movs r2, #0 - 800a6e8: 73da strb r2, [r3, #15] + 800a56c: 4b0e ldr r3, [pc, #56] @ (800a5a8 ) + 800a56e: 2200 movs r2, #0 + 800a570: 73da strb r2, [r3, #15] if (HAL_PCD_Init(&hpcd_USB_OTG_FS) != HAL_OK) - 800a6ea: 480d ldr r0, [pc, #52] @ (800a720 ) - 800a6ec: f7f8 f9ba bl 8002a64 - 800a6f0: 4603 mov r3, r0 - 800a6f2: 2b00 cmp r3, #0 - 800a6f4: d001 beq.n 800a6fa + 800a572: 480d ldr r0, [pc, #52] @ (800a5a8 ) + 800a574: f7f8 fa9e bl 8002ab4 + 800a578: 4603 mov r3, r0 + 800a57a: 2b00 cmp r3, #0 + 800a57c: d001 beq.n 800a582 { Error_Handler( ); - 800a6f6: f7f6 fb2f bl 8000d58 + 800a57e: f7f6 fc13 bl 8000da8 HAL_PCD_RegisterDataOutStageCallback(&hpcd_USB_OTG_FS, PCD_DataOutStageCallback); HAL_PCD_RegisterDataInStageCallback(&hpcd_USB_OTG_FS, PCD_DataInStageCallback); HAL_PCD_RegisterIsoOutIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOOUTIncompleteCallback); HAL_PCD_RegisterIsoInIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOINIncompleteCallback); #endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ HAL_PCDEx_SetRxFiFo(&hpcd_USB_OTG_FS, 0x80); - 800a6fa: 2180 movs r1, #128 @ 0x80 - 800a6fc: 4808 ldr r0, [pc, #32] @ (800a720 ) - 800a6fe: f7f9 fc02 bl 8003f06 + 800a582: 2180 movs r1, #128 @ 0x80 + 800a584: 4808 ldr r0, [pc, #32] @ (800a5a8 ) + 800a586: f7f9 fce6 bl 8003f56 HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 0, 0x40); - 800a702: 2240 movs r2, #64 @ 0x40 - 800a704: 2100 movs r1, #0 - 800a706: 4806 ldr r0, [pc, #24] @ (800a720 ) - 800a708: f7f9 fbb6 bl 8003e78 + 800a58a: 2240 movs r2, #64 @ 0x40 + 800a58c: 2100 movs r1, #0 + 800a58e: 4806 ldr r0, [pc, #24] @ (800a5a8 ) + 800a590: f7f9 fc9a bl 8003ec8 HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 1, 0x80); - 800a70c: 2280 movs r2, #128 @ 0x80 - 800a70e: 2101 movs r1, #1 - 800a710: 4803 ldr r0, [pc, #12] @ (800a720 ) - 800a712: f7f9 fbb1 bl 8003e78 + 800a594: 2280 movs r2, #128 @ 0x80 + 800a596: 2101 movs r1, #1 + 800a598: 4803 ldr r0, [pc, #12] @ (800a5a8 ) + 800a59a: f7f9 fc95 bl 8003ec8 } return USBD_OK; - 800a716: 2300 movs r3, #0 + 800a59e: 2300 movs r3, #0 } - 800a718: 4618 mov r0, r3 - 800a71a: 3708 adds r7, #8 - 800a71c: 46bd mov sp, r7 - 800a71e: bd80 pop {r7, pc} - 800a720: 20000c00 .word 0x20000c00 + 800a5a0: 4618 mov r0, r3 + 800a5a2: 3708 adds r7, #8 + 800a5a4: 46bd mov sp, r7 + 800a5a6: bd80 pop {r7, pc} + 800a5a8: 20000c00 .word 0x20000c00 -0800a724 : +0800a5ac : * @brief Starts the low level portion of the device driver. * @param pdev: Device handle * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Start(USBD_HandleTypeDef *pdev) { - 800a724: b580 push {r7, lr} - 800a726: b084 sub sp, #16 - 800a728: af00 add r7, sp, #0 - 800a72a: 6078 str r0, [r7, #4] + 800a5ac: b580 push {r7, lr} + 800a5ae: b084 sub sp, #16 + 800a5b0: af00 add r7, sp, #0 + 800a5b2: 6078 str r0, [r7, #4] HAL_StatusTypeDef hal_status = HAL_OK; - 800a72c: 2300 movs r3, #0 - 800a72e: 73fb strb r3, [r7, #15] + 800a5b4: 2300 movs r3, #0 + 800a5b6: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a730: 2300 movs r3, #0 - 800a732: 73bb strb r3, [r7, #14] + 800a5b8: 2300 movs r3, #0 + 800a5ba: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_Start(pdev->pData); - 800a734: 687b ldr r3, [r7, #4] - 800a736: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a73a: 4618 mov r0, r3 - 800a73c: f7f8 faa8 bl 8002c90 - 800a740: 4603 mov r3, r0 - 800a742: 73fb strb r3, [r7, #15] + 800a5bc: 687b ldr r3, [r7, #4] + 800a5be: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a5c2: 4618 mov r0, r3 + 800a5c4: f7f8 fb8c bl 8002ce0 + 800a5c8: 4603 mov r3, r0 + 800a5ca: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a744: 7bfb ldrb r3, [r7, #15] - 800a746: 4618 mov r0, r3 - 800a748: f000 f97e bl 800aa48 - 800a74c: 4603 mov r3, r0 - 800a74e: 73bb strb r3, [r7, #14] + 800a5cc: 7bfb ldrb r3, [r7, #15] + 800a5ce: 4618 mov r0, r3 + 800a5d0: f000 f97e bl 800a8d0 + 800a5d4: 4603 mov r3, r0 + 800a5d6: 73bb strb r3, [r7, #14] return usb_status; - 800a750: 7bbb ldrb r3, [r7, #14] + 800a5d8: 7bbb ldrb r3, [r7, #14] } - 800a752: 4618 mov r0, r3 - 800a754: 3710 adds r7, #16 - 800a756: 46bd mov sp, r7 - 800a758: bd80 pop {r7, pc} + 800a5da: 4618 mov r0, r3 + 800a5dc: 3710 adds r7, #16 + 800a5de: 46bd mov sp, r7 + 800a5e0: bd80 pop {r7, pc} -0800a75a : +0800a5e2 : * @param ep_type: Endpoint type * @param ep_mps: Endpoint max packet size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_OpenEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_mps) { - 800a75a: b580 push {r7, lr} - 800a75c: b084 sub sp, #16 - 800a75e: af00 add r7, sp, #0 - 800a760: 6078 str r0, [r7, #4] - 800a762: 4608 mov r0, r1 - 800a764: 4611 mov r1, r2 - 800a766: 461a mov r2, r3 - 800a768: 4603 mov r3, r0 - 800a76a: 70fb strb r3, [r7, #3] - 800a76c: 460b mov r3, r1 - 800a76e: 70bb strb r3, [r7, #2] - 800a770: 4613 mov r3, r2 - 800a772: 803b strh r3, [r7, #0] + 800a5e2: b580 push {r7, lr} + 800a5e4: b084 sub sp, #16 + 800a5e6: af00 add r7, sp, #0 + 800a5e8: 6078 str r0, [r7, #4] + 800a5ea: 4608 mov r0, r1 + 800a5ec: 4611 mov r1, r2 + 800a5ee: 461a mov r2, r3 + 800a5f0: 4603 mov r3, r0 + 800a5f2: 70fb strb r3, [r7, #3] + 800a5f4: 460b mov r3, r1 + 800a5f6: 70bb strb r3, [r7, #2] + 800a5f8: 4613 mov r3, r2 + 800a5fa: 803b strh r3, [r7, #0] HAL_StatusTypeDef hal_status = HAL_OK; - 800a774: 2300 movs r3, #0 - 800a776: 73fb strb r3, [r7, #15] + 800a5fc: 2300 movs r3, #0 + 800a5fe: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a778: 2300 movs r3, #0 - 800a77a: 73bb strb r3, [r7, #14] + 800a600: 2300 movs r3, #0 + 800a602: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_Open(pdev->pData, ep_addr, ep_mps, ep_type); - 800a77c: 687b ldr r3, [r7, #4] - 800a77e: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a782: 78bb ldrb r3, [r7, #2] - 800a784: 883a ldrh r2, [r7, #0] - 800a786: 78f9 ldrb r1, [r7, #3] - 800a788: f7f8 ffa9 bl 80036de - 800a78c: 4603 mov r3, r0 - 800a78e: 73fb strb r3, [r7, #15] + 800a604: 687b ldr r3, [r7, #4] + 800a606: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800a60a: 78bb ldrb r3, [r7, #2] + 800a60c: 883a ldrh r2, [r7, #0] + 800a60e: 78f9 ldrb r1, [r7, #3] + 800a610: f7f9 f88d bl 800372e + 800a614: 4603 mov r3, r0 + 800a616: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a790: 7bfb ldrb r3, [r7, #15] - 800a792: 4618 mov r0, r3 - 800a794: f000 f958 bl 800aa48 - 800a798: 4603 mov r3, r0 - 800a79a: 73bb strb r3, [r7, #14] + 800a618: 7bfb ldrb r3, [r7, #15] + 800a61a: 4618 mov r0, r3 + 800a61c: f000 f958 bl 800a8d0 + 800a620: 4603 mov r3, r0 + 800a622: 73bb strb r3, [r7, #14] return usb_status; - 800a79c: 7bbb ldrb r3, [r7, #14] + 800a624: 7bbb ldrb r3, [r7, #14] } - 800a79e: 4618 mov r0, r3 - 800a7a0: 3710 adds r7, #16 - 800a7a2: 46bd mov sp, r7 - 800a7a4: bd80 pop {r7, pc} + 800a626: 4618 mov r0, r3 + 800a628: 3710 adds r7, #16 + 800a62a: 46bd mov sp, r7 + 800a62c: bd80 pop {r7, pc} -0800a7a6 : +0800a62e : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_CloseEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a7a6: b580 push {r7, lr} - 800a7a8: b084 sub sp, #16 - 800a7aa: af00 add r7, sp, #0 - 800a7ac: 6078 str r0, [r7, #4] - 800a7ae: 460b mov r3, r1 - 800a7b0: 70fb strb r3, [r7, #3] + 800a62e: b580 push {r7, lr} + 800a630: b084 sub sp, #16 + 800a632: af00 add r7, sp, #0 + 800a634: 6078 str r0, [r7, #4] + 800a636: 460b mov r3, r1 + 800a638: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a7b2: 2300 movs r3, #0 - 800a7b4: 73fb strb r3, [r7, #15] + 800a63a: 2300 movs r3, #0 + 800a63c: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a7b6: 2300 movs r3, #0 - 800a7b8: 73bb strb r3, [r7, #14] + 800a63e: 2300 movs r3, #0 + 800a640: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_Close(pdev->pData, ep_addr); - 800a7ba: 687b ldr r3, [r7, #4] - 800a7bc: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a7c0: 78fa ldrb r2, [r7, #3] - 800a7c2: 4611 mov r1, r2 - 800a7c4: 4618 mov r0, r3 - 800a7c6: f7f8 fff4 bl 80037b2 - 800a7ca: 4603 mov r3, r0 - 800a7cc: 73fb strb r3, [r7, #15] + 800a642: 687b ldr r3, [r7, #4] + 800a644: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a648: 78fa ldrb r2, [r7, #3] + 800a64a: 4611 mov r1, r2 + 800a64c: 4618 mov r0, r3 + 800a64e: f7f9 f8d8 bl 8003802 + 800a652: 4603 mov r3, r0 + 800a654: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a7ce: 7bfb ldrb r3, [r7, #15] - 800a7d0: 4618 mov r0, r3 - 800a7d2: f000 f939 bl 800aa48 - 800a7d6: 4603 mov r3, r0 - 800a7d8: 73bb strb r3, [r7, #14] + 800a656: 7bfb ldrb r3, [r7, #15] + 800a658: 4618 mov r0, r3 + 800a65a: f000 f939 bl 800a8d0 + 800a65e: 4603 mov r3, r0 + 800a660: 73bb strb r3, [r7, #14] return usb_status; - 800a7da: 7bbb ldrb r3, [r7, #14] + 800a662: 7bbb ldrb r3, [r7, #14] } - 800a7dc: 4618 mov r0, r3 - 800a7de: 3710 adds r7, #16 - 800a7e0: 46bd mov sp, r7 - 800a7e2: bd80 pop {r7, pc} + 800a664: 4618 mov r0, r3 + 800a666: 3710 adds r7, #16 + 800a668: 46bd mov sp, r7 + 800a66a: bd80 pop {r7, pc} -0800a7e4 : +0800a66c : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_StallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a7e4: b580 push {r7, lr} - 800a7e6: b084 sub sp, #16 - 800a7e8: af00 add r7, sp, #0 - 800a7ea: 6078 str r0, [r7, #4] - 800a7ec: 460b mov r3, r1 - 800a7ee: 70fb strb r3, [r7, #3] + 800a66c: b580 push {r7, lr} + 800a66e: b084 sub sp, #16 + 800a670: af00 add r7, sp, #0 + 800a672: 6078 str r0, [r7, #4] + 800a674: 460b mov r3, r1 + 800a676: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a7f0: 2300 movs r3, #0 - 800a7f2: 73fb strb r3, [r7, #15] + 800a678: 2300 movs r3, #0 + 800a67a: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a7f4: 2300 movs r3, #0 - 800a7f6: 73bb strb r3, [r7, #14] + 800a67c: 2300 movs r3, #0 + 800a67e: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_SetStall(pdev->pData, ep_addr); - 800a7f8: 687b ldr r3, [r7, #4] - 800a7fa: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a7fe: 78fa ldrb r2, [r7, #3] - 800a800: 4611 mov r1, r2 - 800a802: 4618 mov r0, r3 - 800a804: f7f9 f894 bl 8003930 - 800a808: 4603 mov r3, r0 - 800a80a: 73fb strb r3, [r7, #15] + 800a680: 687b ldr r3, [r7, #4] + 800a682: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a686: 78fa ldrb r2, [r7, #3] + 800a688: 4611 mov r1, r2 + 800a68a: 4618 mov r0, r3 + 800a68c: f7f9 f978 bl 8003980 + 800a690: 4603 mov r3, r0 + 800a692: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a80c: 7bfb ldrb r3, [r7, #15] - 800a80e: 4618 mov r0, r3 - 800a810: f000 f91a bl 800aa48 - 800a814: 4603 mov r3, r0 - 800a816: 73bb strb r3, [r7, #14] + 800a694: 7bfb ldrb r3, [r7, #15] + 800a696: 4618 mov r0, r3 + 800a698: f000 f91a bl 800a8d0 + 800a69c: 4603 mov r3, r0 + 800a69e: 73bb strb r3, [r7, #14] return usb_status; - 800a818: 7bbb ldrb r3, [r7, #14] + 800a6a0: 7bbb ldrb r3, [r7, #14] } - 800a81a: 4618 mov r0, r3 - 800a81c: 3710 adds r7, #16 - 800a81e: 46bd mov sp, r7 - 800a820: bd80 pop {r7, pc} + 800a6a2: 4618 mov r0, r3 + 800a6a4: 3710 adds r7, #16 + 800a6a6: 46bd mov sp, r7 + 800a6a8: bd80 pop {r7, pc} -0800a822 : +0800a6aa : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval USBD status */ USBD_StatusTypeDef USBD_LL_ClearStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a822: b580 push {r7, lr} - 800a824: b084 sub sp, #16 - 800a826: af00 add r7, sp, #0 - 800a828: 6078 str r0, [r7, #4] - 800a82a: 460b mov r3, r1 - 800a82c: 70fb strb r3, [r7, #3] + 800a6aa: b580 push {r7, lr} + 800a6ac: b084 sub sp, #16 + 800a6ae: af00 add r7, sp, #0 + 800a6b0: 6078 str r0, [r7, #4] + 800a6b2: 460b mov r3, r1 + 800a6b4: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a82e: 2300 movs r3, #0 - 800a830: 73fb strb r3, [r7, #15] + 800a6b6: 2300 movs r3, #0 + 800a6b8: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a832: 2300 movs r3, #0 - 800a834: 73bb strb r3, [r7, #14] + 800a6ba: 2300 movs r3, #0 + 800a6bc: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_EP_ClrStall(pdev->pData, ep_addr); - 800a836: 687b ldr r3, [r7, #4] - 800a838: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a83c: 78fa ldrb r2, [r7, #3] - 800a83e: 4611 mov r1, r2 - 800a840: 4618 mov r0, r3 - 800a842: f7f9 f8d8 bl 80039f6 - 800a846: 4603 mov r3, r0 - 800a848: 73fb strb r3, [r7, #15] + 800a6be: 687b ldr r3, [r7, #4] + 800a6c0: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a6c4: 78fa ldrb r2, [r7, #3] + 800a6c6: 4611 mov r1, r2 + 800a6c8: 4618 mov r0, r3 + 800a6ca: f7f9 f9bc bl 8003a46 + 800a6ce: 4603 mov r3, r0 + 800a6d0: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a84a: 7bfb ldrb r3, [r7, #15] - 800a84c: 4618 mov r0, r3 - 800a84e: f000 f8fb bl 800aa48 - 800a852: 4603 mov r3, r0 - 800a854: 73bb strb r3, [r7, #14] + 800a6d2: 7bfb ldrb r3, [r7, #15] + 800a6d4: 4618 mov r0, r3 + 800a6d6: f000 f8fb bl 800a8d0 + 800a6da: 4603 mov r3, r0 + 800a6dc: 73bb strb r3, [r7, #14] return usb_status; - 800a856: 7bbb ldrb r3, [r7, #14] + 800a6de: 7bbb ldrb r3, [r7, #14] } - 800a858: 4618 mov r0, r3 - 800a85a: 3710 adds r7, #16 - 800a85c: 46bd mov sp, r7 - 800a85e: bd80 pop {r7, pc} + 800a6e0: 4618 mov r0, r3 + 800a6e2: 3710 adds r7, #16 + 800a6e4: 46bd mov sp, r7 + 800a6e6: bd80 pop {r7, pc} -0800a860 : +0800a6e8 : * @param pdev: Device handle * @param ep_addr: Endpoint number * @retval Stall (1: Yes, 0: No) */ uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) { - 800a860: b480 push {r7} - 800a862: b085 sub sp, #20 - 800a864: af00 add r7, sp, #0 - 800a866: 6078 str r0, [r7, #4] - 800a868: 460b mov r3, r1 - 800a86a: 70fb strb r3, [r7, #3] + 800a6e8: b480 push {r7} + 800a6ea: b085 sub sp, #20 + 800a6ec: af00 add r7, sp, #0 + 800a6ee: 6078 str r0, [r7, #4] + 800a6f0: 460b mov r3, r1 + 800a6f2: 70fb strb r3, [r7, #3] PCD_HandleTypeDef *hpcd = (PCD_HandleTypeDef*) pdev->pData; - 800a86c: 687b ldr r3, [r7, #4] - 800a86e: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a872: 60fb str r3, [r7, #12] + 800a6f4: 687b ldr r3, [r7, #4] + 800a6f6: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a6fa: 60fb str r3, [r7, #12] if((ep_addr & 0x80) == 0x80) - 800a874: f997 3003 ldrsb.w r3, [r7, #3] - 800a878: 2b00 cmp r3, #0 - 800a87a: da0b bge.n 800a894 + 800a6fc: f997 3003 ldrsb.w r3, [r7, #3] + 800a700: 2b00 cmp r3, #0 + 800a702: da0b bge.n 800a71c { return hpcd->IN_ep[ep_addr & 0x7F].is_stall; - 800a87c: 78fb ldrb r3, [r7, #3] - 800a87e: f003 027f and.w r2, r3, #127 @ 0x7f - 800a882: 68f9 ldr r1, [r7, #12] - 800a884: 4613 mov r3, r2 - 800a886: 00db lsls r3, r3, #3 - 800a888: 4413 add r3, r2 - 800a88a: 009b lsls r3, r3, #2 - 800a88c: 440b add r3, r1 - 800a88e: 3316 adds r3, #22 - 800a890: 781b ldrb r3, [r3, #0] - 800a892: e00b b.n 800a8ac + 800a704: 78fb ldrb r3, [r7, #3] + 800a706: f003 027f and.w r2, r3, #127 @ 0x7f + 800a70a: 68f9 ldr r1, [r7, #12] + 800a70c: 4613 mov r3, r2 + 800a70e: 00db lsls r3, r3, #3 + 800a710: 4413 add r3, r2 + 800a712: 009b lsls r3, r3, #2 + 800a714: 440b add r3, r1 + 800a716: 3316 adds r3, #22 + 800a718: 781b ldrb r3, [r3, #0] + 800a71a: e00b b.n 800a734 } else { return hpcd->OUT_ep[ep_addr & 0x7F].is_stall; - 800a894: 78fb ldrb r3, [r7, #3] - 800a896: f003 027f and.w r2, r3, #127 @ 0x7f - 800a89a: 68f9 ldr r1, [r7, #12] - 800a89c: 4613 mov r3, r2 - 800a89e: 00db lsls r3, r3, #3 - 800a8a0: 4413 add r3, r2 - 800a8a2: 009b lsls r3, r3, #2 - 800a8a4: 440b add r3, r1 - 800a8a6: f203 2356 addw r3, r3, #598 @ 0x256 - 800a8aa: 781b ldrb r3, [r3, #0] + 800a71c: 78fb ldrb r3, [r7, #3] + 800a71e: f003 027f and.w r2, r3, #127 @ 0x7f + 800a722: 68f9 ldr r1, [r7, #12] + 800a724: 4613 mov r3, r2 + 800a726: 00db lsls r3, r3, #3 + 800a728: 4413 add r3, r2 + 800a72a: 009b lsls r3, r3, #2 + 800a72c: 440b add r3, r1 + 800a72e: f203 2356 addw r3, r3, #598 @ 0x256 + 800a732: 781b ldrb r3, [r3, #0] } } - 800a8ac: 4618 mov r0, r3 - 800a8ae: 3714 adds r7, #20 - 800a8b0: 46bd mov sp, r7 - 800a8b2: f85d 7b04 ldr.w r7, [sp], #4 - 800a8b6: 4770 bx lr + 800a734: 4618 mov r0, r3 + 800a736: 3714 adds r7, #20 + 800a738: 46bd mov sp, r7 + 800a73a: f85d 7b04 ldr.w r7, [sp], #4 + 800a73e: 4770 bx lr -0800a8b8 : +0800a740 : * @param pdev: Device handle * @param dev_addr: Device address * @retval USBD status */ USBD_StatusTypeDef USBD_LL_SetUSBAddress(USBD_HandleTypeDef *pdev, uint8_t dev_addr) { - 800a8b8: b580 push {r7, lr} - 800a8ba: b084 sub sp, #16 - 800a8bc: af00 add r7, sp, #0 - 800a8be: 6078 str r0, [r7, #4] - 800a8c0: 460b mov r3, r1 - 800a8c2: 70fb strb r3, [r7, #3] + 800a740: b580 push {r7, lr} + 800a742: b084 sub sp, #16 + 800a744: af00 add r7, sp, #0 + 800a746: 6078 str r0, [r7, #4] + 800a748: 460b mov r3, r1 + 800a74a: 70fb strb r3, [r7, #3] HAL_StatusTypeDef hal_status = HAL_OK; - 800a8c4: 2300 movs r3, #0 - 800a8c6: 73fb strb r3, [r7, #15] + 800a74c: 2300 movs r3, #0 + 800a74e: 73fb strb r3, [r7, #15] USBD_StatusTypeDef usb_status = USBD_OK; - 800a8c8: 2300 movs r3, #0 - 800a8ca: 73bb strb r3, [r7, #14] + 800a750: 2300 movs r3, #0 + 800a752: 73bb strb r3, [r7, #14] hal_status = HAL_PCD_SetAddress(pdev->pData, dev_addr); - 800a8cc: 687b ldr r3, [r7, #4] - 800a8ce: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 - 800a8d2: 78fa ldrb r2, [r7, #3] - 800a8d4: 4611 mov r1, r2 - 800a8d6: 4618 mov r0, r3 - 800a8d8: f7f8 fedd bl 8003696 - 800a8dc: 4603 mov r3, r0 - 800a8de: 73fb strb r3, [r7, #15] + 800a754: 687b ldr r3, [r7, #4] + 800a756: f8d3 32c8 ldr.w r3, [r3, #712] @ 0x2c8 + 800a75a: 78fa ldrb r2, [r7, #3] + 800a75c: 4611 mov r1, r2 + 800a75e: 4618 mov r0, r3 + 800a760: f7f8 ffc1 bl 80036e6 + 800a764: 4603 mov r3, r0 + 800a766: 73fb strb r3, [r7, #15] usb_status = USBD_Get_USB_Status(hal_status); - 800a8e0: 7bfb ldrb r3, [r7, #15] - 800a8e2: 4618 mov r0, r3 - 800a8e4: f000 f8b0 bl 800aa48 - 800a8e8: 4603 mov r3, r0 - 800a8ea: 73bb strb r3, [r7, #14] + 800a768: 7bfb ldrb r3, [r7, #15] + 800a76a: 4618 mov r0, r3 + 800a76c: f000 f8b0 bl 800a8d0 + 800a770: 4603 mov r3, r0 + 800a772: 73bb strb r3, [r7, #14] return usb_status; - 800a8ec: 7bbb ldrb r3, [r7, #14] + 800a774: 7bbb ldrb r3, [r7, #14] } - 800a8ee: 4618 mov r0, r3 - 800a8f0: 3710 adds r7, #16 - 800a8f2: 46bd mov sp, r7 - 800a8f4: bd80 pop {r7, pc} + 800a776: 4618 mov r0, r3 + 800a778: 3710 adds r7, #16 + 800a77a: 46bd mov sp, r7 + 800a77c: bd80 pop {r7, pc} -0800a8f6 : +0800a77e : * @param pbuf: Pointer to data to be sent * @param size: Data size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_Transmit(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) { - 800a8f6: b580 push {r7, lr} - 800a8f8: b086 sub sp, #24 - 800a8fa: af00 add r7, sp, #0 - 800a8fc: 60f8 str r0, [r7, #12] - 800a8fe: 607a str r2, [r7, #4] - 800a900: 603b str r3, [r7, #0] - 800a902: 460b mov r3, r1 - 800a904: 72fb strb r3, [r7, #11] + 800a77e: b580 push {r7, lr} + 800a780: b086 sub sp, #24 + 800a782: af00 add r7, sp, #0 + 800a784: 60f8 str r0, [r7, #12] + 800a786: 607a str r2, [r7, #4] + 800a788: 603b str r3, [r7, #0] + 800a78a: 460b mov r3, r1 + 800a78c: 72fb strb r3, [r7, #11] HAL_StatusTypeDef hal_status = HAL_OK; - 800a906: 2300 movs r3, #0 - 800a908: 75fb strb r3, [r7, #23] + 800a78e: 2300 movs r3, #0 + 800a790: 75fb strb r3, [r7, #23] USBD_StatusTypeDef usb_status = USBD_OK; - 800a90a: 2300 movs r3, #0 - 800a90c: 75bb strb r3, [r7, #22] + 800a792: 2300 movs r3, #0 + 800a794: 75bb strb r3, [r7, #22] hal_status = HAL_PCD_EP_Transmit(pdev->pData, ep_addr, pbuf, size); - 800a90e: 68fb ldr r3, [r7, #12] - 800a910: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a914: 7af9 ldrb r1, [r7, #11] - 800a916: 683b ldr r3, [r7, #0] - 800a918: 687a ldr r2, [r7, #4] - 800a91a: f7f8 ffcf bl 80038bc - 800a91e: 4603 mov r3, r0 - 800a920: 75fb strb r3, [r7, #23] + 800a796: 68fb ldr r3, [r7, #12] + 800a798: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800a79c: 7af9 ldrb r1, [r7, #11] + 800a79e: 683b ldr r3, [r7, #0] + 800a7a0: 687a ldr r2, [r7, #4] + 800a7a2: f7f9 f8b3 bl 800390c + 800a7a6: 4603 mov r3, r0 + 800a7a8: 75fb strb r3, [r7, #23] usb_status = USBD_Get_USB_Status(hal_status); - 800a922: 7dfb ldrb r3, [r7, #23] - 800a924: 4618 mov r0, r3 - 800a926: f000 f88f bl 800aa48 - 800a92a: 4603 mov r3, r0 - 800a92c: 75bb strb r3, [r7, #22] + 800a7aa: 7dfb ldrb r3, [r7, #23] + 800a7ac: 4618 mov r0, r3 + 800a7ae: f000 f88f bl 800a8d0 + 800a7b2: 4603 mov r3, r0 + 800a7b4: 75bb strb r3, [r7, #22] return usb_status; - 800a92e: 7dbb ldrb r3, [r7, #22] + 800a7b6: 7dbb ldrb r3, [r7, #22] } - 800a930: 4618 mov r0, r3 - 800a932: 3718 adds r7, #24 - 800a934: 46bd mov sp, r7 - 800a936: bd80 pop {r7, pc} + 800a7b8: 4618 mov r0, r3 + 800a7ba: 3718 adds r7, #24 + 800a7bc: 46bd mov sp, r7 + 800a7be: bd80 pop {r7, pc} -0800a938 : +0800a7c0 : * @param pbuf: Pointer to data to be received * @param size: Data size * @retval USBD status */ USBD_StatusTypeDef USBD_LL_PrepareReceive(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) { - 800a938: b580 push {r7, lr} - 800a93a: b086 sub sp, #24 - 800a93c: af00 add r7, sp, #0 - 800a93e: 60f8 str r0, [r7, #12] - 800a940: 607a str r2, [r7, #4] - 800a942: 603b str r3, [r7, #0] - 800a944: 460b mov r3, r1 - 800a946: 72fb strb r3, [r7, #11] + 800a7c0: b580 push {r7, lr} + 800a7c2: b086 sub sp, #24 + 800a7c4: af00 add r7, sp, #0 + 800a7c6: 60f8 str r0, [r7, #12] + 800a7c8: 607a str r2, [r7, #4] + 800a7ca: 603b str r3, [r7, #0] + 800a7cc: 460b mov r3, r1 + 800a7ce: 72fb strb r3, [r7, #11] HAL_StatusTypeDef hal_status = HAL_OK; - 800a948: 2300 movs r3, #0 - 800a94a: 75fb strb r3, [r7, #23] + 800a7d0: 2300 movs r3, #0 + 800a7d2: 75fb strb r3, [r7, #23] USBD_StatusTypeDef usb_status = USBD_OK; - 800a94c: 2300 movs r3, #0 - 800a94e: 75bb strb r3, [r7, #22] + 800a7d4: 2300 movs r3, #0 + 800a7d6: 75bb strb r3, [r7, #22] hal_status = HAL_PCD_EP_Receive(pdev->pData, ep_addr, pbuf, size); - 800a950: 68fb ldr r3, [r7, #12] - 800a952: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 - 800a956: 7af9 ldrb r1, [r7, #11] - 800a958: 683b ldr r3, [r7, #0] - 800a95a: 687a ldr r2, [r7, #4] - 800a95c: f7f8 ff73 bl 8003846 - 800a960: 4603 mov r3, r0 - 800a962: 75fb strb r3, [r7, #23] + 800a7d8: 68fb ldr r3, [r7, #12] + 800a7da: f8d3 02c8 ldr.w r0, [r3, #712] @ 0x2c8 + 800a7de: 7af9 ldrb r1, [r7, #11] + 800a7e0: 683b ldr r3, [r7, #0] + 800a7e2: 687a ldr r2, [r7, #4] + 800a7e4: f7f9 f857 bl 8003896 + 800a7e8: 4603 mov r3, r0 + 800a7ea: 75fb strb r3, [r7, #23] usb_status = USBD_Get_USB_Status(hal_status); - 800a964: 7dfb ldrb r3, [r7, #23] - 800a966: 4618 mov r0, r3 - 800a968: f000 f86e bl 800aa48 - 800a96c: 4603 mov r3, r0 - 800a96e: 75bb strb r3, [r7, #22] + 800a7ec: 7dfb ldrb r3, [r7, #23] + 800a7ee: 4618 mov r0, r3 + 800a7f0: f000 f86e bl 800a8d0 + 800a7f4: 4603 mov r3, r0 + 800a7f6: 75bb strb r3, [r7, #22] return usb_status; - 800a970: 7dbb ldrb r3, [r7, #22] + 800a7f8: 7dbb ldrb r3, [r7, #22] } - 800a972: 4618 mov r0, r3 - 800a974: 3718 adds r7, #24 - 800a976: 46bd mov sp, r7 - 800a978: bd80 pop {r7, pc} + 800a7fa: 4618 mov r0, r3 + 800a7fc: 3718 adds r7, #24 + 800a7fe: 46bd mov sp, r7 + 800a800: bd80 pop {r7, pc} ... -0800a97c : +0800a804 : * @param hpcd: PCD handle * @param msg: LPM message * @retval None */ void HAL_PCDEx_LPM_Callback(PCD_HandleTypeDef *hpcd, PCD_LPM_MsgTypeDef msg) { - 800a97c: b580 push {r7, lr} - 800a97e: b082 sub sp, #8 - 800a980: af00 add r7, sp, #0 - 800a982: 6078 str r0, [r7, #4] - 800a984: 460b mov r3, r1 - 800a986: 70fb strb r3, [r7, #3] + 800a804: b580 push {r7, lr} + 800a806: b082 sub sp, #8 + 800a808: af00 add r7, sp, #0 + 800a80a: 6078 str r0, [r7, #4] + 800a80c: 460b mov r3, r1 + 800a80e: 70fb strb r3, [r7, #3] switch (msg) - 800a988: 78fb ldrb r3, [r7, #3] - 800a98a: 2b00 cmp r3, #0 - 800a98c: d002 beq.n 800a994 - 800a98e: 2b01 cmp r3, #1 - 800a990: d01f beq.n 800a9d2 + 800a810: 78fb ldrb r3, [r7, #3] + 800a812: 2b00 cmp r3, #0 + 800a814: d002 beq.n 800a81c + 800a816: 2b01 cmp r3, #1 + 800a818: d01f beq.n 800a85a /* Set SLEEPDEEP bit and SleepOnExit of Cortex System Control Register. */ SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); } break; } } - 800a992: e03b b.n 800aa0c + 800a81a: e03b b.n 800a894 if (hpcd->Init.low_power_enable) - 800a994: 687b ldr r3, [r7, #4] - 800a996: 7adb ldrb r3, [r3, #11] - 800a998: 2b00 cmp r3, #0 - 800a99a: d007 beq.n 800a9ac + 800a81c: 687b ldr r3, [r7, #4] + 800a81e: 7adb ldrb r3, [r3, #11] + 800a820: 2b00 cmp r3, #0 + 800a822: d007 beq.n 800a834 SystemClock_Config(); - 800a99c: f7f5 ffe2 bl 8000964 + 800a824: f7f6 f8b6 bl 8000994 SCB->SCR &= (uint32_t)~((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a9a0: 4b1c ldr r3, [pc, #112] @ (800aa14 ) - 800a9a2: 691b ldr r3, [r3, #16] - 800a9a4: 4a1b ldr r2, [pc, #108] @ (800aa14 ) - 800a9a6: f023 0306 bic.w r3, r3, #6 - 800a9aa: 6113 str r3, [r2, #16] + 800a828: 4b1c ldr r3, [pc, #112] @ (800a89c ) + 800a82a: 691b ldr r3, [r3, #16] + 800a82c: 4a1b ldr r2, [pc, #108] @ (800a89c ) + 800a82e: f023 0306 bic.w r3, r3, #6 + 800a832: 6113 str r3, [r2, #16] __HAL_PCD_UNGATE_PHYCLOCK(hpcd); - 800a9ac: 687b ldr r3, [r7, #4] - 800a9ae: 681b ldr r3, [r3, #0] - 800a9b0: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a9b4: 681b ldr r3, [r3, #0] - 800a9b6: 687a ldr r2, [r7, #4] - 800a9b8: 6812 ldr r2, [r2, #0] - 800a9ba: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a9be: f023 0301 bic.w r3, r3, #1 - 800a9c2: 6013 str r3, [r2, #0] + 800a834: 687b ldr r3, [r7, #4] + 800a836: 681b ldr r3, [r3, #0] + 800a838: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800a83c: 681b ldr r3, [r3, #0] + 800a83e: 687a ldr r2, [r7, #4] + 800a840: 6812 ldr r2, [r2, #0] + 800a842: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800a846: f023 0301 bic.w r3, r3, #1 + 800a84a: 6013 str r3, [r2, #0] USBD_LL_Resume(hpcd->pData); - 800a9c4: 687b ldr r3, [r7, #4] - 800a9c6: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a9ca: 4618 mov r0, r3 - 800a9cc: f7fe fb90 bl 80090f0 + 800a84c: 687b ldr r3, [r7, #4] + 800a84e: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a852: 4618 mov r0, r3 + 800a854: f7fe fb90 bl 8008f78 break; - 800a9d0: e01c b.n 800aa0c + 800a858: e01c b.n 800a894 __HAL_PCD_GATE_PHYCLOCK(hpcd); - 800a9d2: 687b ldr r3, [r7, #4] - 800a9d4: 681b ldr r3, [r3, #0] - 800a9d6: f503 6360 add.w r3, r3, #3584 @ 0xe00 - 800a9da: 681b ldr r3, [r3, #0] - 800a9dc: 687a ldr r2, [r7, #4] - 800a9de: 6812 ldr r2, [r2, #0] - 800a9e0: f502 6260 add.w r2, r2, #3584 @ 0xe00 - 800a9e4: f043 0301 orr.w r3, r3, #1 - 800a9e8: 6013 str r3, [r2, #0] + 800a85a: 687b ldr r3, [r7, #4] + 800a85c: 681b ldr r3, [r3, #0] + 800a85e: f503 6360 add.w r3, r3, #3584 @ 0xe00 + 800a862: 681b ldr r3, [r3, #0] + 800a864: 687a ldr r2, [r7, #4] + 800a866: 6812 ldr r2, [r2, #0] + 800a868: f502 6260 add.w r2, r2, #3584 @ 0xe00 + 800a86c: f043 0301 orr.w r3, r3, #1 + 800a870: 6013 str r3, [r2, #0] USBD_LL_Suspend(hpcd->pData); - 800a9ea: 687b ldr r3, [r7, #4] - 800a9ec: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 - 800a9f0: 4618 mov r0, r3 - 800a9f2: f7fe fb61 bl 80090b8 + 800a872: 687b ldr r3, [r7, #4] + 800a874: f8d3 34e0 ldr.w r3, [r3, #1248] @ 0x4e0 + 800a878: 4618 mov r0, r3 + 800a87a: f7fe fb61 bl 8008f40 if (hpcd->Init.low_power_enable) - 800a9f6: 687b ldr r3, [r7, #4] - 800a9f8: 7adb ldrb r3, [r3, #11] - 800a9fa: 2b00 cmp r3, #0 - 800a9fc: d005 beq.n 800aa0a + 800a87e: 687b ldr r3, [r7, #4] + 800a880: 7adb ldrb r3, [r3, #11] + 800a882: 2b00 cmp r3, #0 + 800a884: d005 beq.n 800a892 SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); - 800a9fe: 4b05 ldr r3, [pc, #20] @ (800aa14 ) - 800aa00: 691b ldr r3, [r3, #16] - 800aa02: 4a04 ldr r2, [pc, #16] @ (800aa14 ) - 800aa04: f043 0306 orr.w r3, r3, #6 - 800aa08: 6113 str r3, [r2, #16] + 800a886: 4b05 ldr r3, [pc, #20] @ (800a89c ) + 800a888: 691b ldr r3, [r3, #16] + 800a88a: 4a04 ldr r2, [pc, #16] @ (800a89c ) + 800a88c: f043 0306 orr.w r3, r3, #6 + 800a890: 6113 str r3, [r2, #16] break; - 800aa0a: bf00 nop + 800a892: bf00 nop } - 800aa0c: bf00 nop - 800aa0e: 3708 adds r7, #8 - 800aa10: 46bd mov sp, r7 - 800aa12: bd80 pop {r7, pc} - 800aa14: e000ed00 .word 0xe000ed00 + 800a894: bf00 nop + 800a896: 3708 adds r7, #8 + 800a898: 46bd mov sp, r7 + 800a89a: bd80 pop {r7, pc} + 800a89c: e000ed00 .word 0xe000ed00 -0800aa18 : +0800a8a0 : * @brief Static single allocation. * @param size: Size of allocated memory * @retval None */ void *USBD_static_malloc(uint32_t size) { - 800aa18: b480 push {r7} - 800aa1a: b083 sub sp, #12 - 800aa1c: af00 add r7, sp, #0 - 800aa1e: 6078 str r0, [r7, #4] + 800a8a0: b480 push {r7} + 800a8a2: b083 sub sp, #12 + 800a8a4: af00 add r7, sp, #0 + 800a8a6: 6078 str r0, [r7, #4] static uint32_t mem[(sizeof(USBD_HID_HandleTypeDef)/4)+1];/* On 32-bit boundary */ return mem; - 800aa20: 4b03 ldr r3, [pc, #12] @ (800aa30 ) + 800a8a8: 4b03 ldr r3, [pc, #12] @ (800a8b8 ) } - 800aa22: 4618 mov r0, r3 - 800aa24: 370c adds r7, #12 - 800aa26: 46bd mov sp, r7 - 800aa28: f85d 7b04 ldr.w r7, [sp], #4 - 800aa2c: 4770 bx lr - 800aa2e: bf00 nop - 800aa30: 200010e4 .word 0x200010e4 + 800a8aa: 4618 mov r0, r3 + 800a8ac: 370c adds r7, #12 + 800a8ae: 46bd mov sp, r7 + 800a8b0: f85d 7b04 ldr.w r7, [sp], #4 + 800a8b4: 4770 bx lr + 800a8b6: bf00 nop + 800a8b8: 200010e4 .word 0x200010e4 -0800aa34 : +0800a8bc : * @brief Dummy memory free * @param p: Pointer to allocated memory address * @retval None */ void USBD_static_free(void *p) { - 800aa34: b480 push {r7} - 800aa36: b083 sub sp, #12 - 800aa38: af00 add r7, sp, #0 - 800aa3a: 6078 str r0, [r7, #4] + 800a8bc: b480 push {r7} + 800a8be: b083 sub sp, #12 + 800a8c0: af00 add r7, sp, #0 + 800a8c2: 6078 str r0, [r7, #4] } - 800aa3c: bf00 nop - 800aa3e: 370c adds r7, #12 - 800aa40: 46bd mov sp, r7 - 800aa42: f85d 7b04 ldr.w r7, [sp], #4 - 800aa46: 4770 bx lr + 800a8c4: bf00 nop + 800a8c6: 370c adds r7, #12 + 800a8c8: 46bd mov sp, r7 + 800a8ca: f85d 7b04 ldr.w r7, [sp], #4 + 800a8ce: 4770 bx lr -0800aa48 : +0800a8d0 : * @brief Returns the USB status depending on the HAL status: * @param hal_status: HAL status * @retval USB status */ USBD_StatusTypeDef USBD_Get_USB_Status(HAL_StatusTypeDef hal_status) { - 800aa48: b480 push {r7} - 800aa4a: b085 sub sp, #20 - 800aa4c: af00 add r7, sp, #0 - 800aa4e: 4603 mov r3, r0 - 800aa50: 71fb strb r3, [r7, #7] + 800a8d0: b480 push {r7} + 800a8d2: b085 sub sp, #20 + 800a8d4: af00 add r7, sp, #0 + 800a8d6: 4603 mov r3, r0 + 800a8d8: 71fb strb r3, [r7, #7] USBD_StatusTypeDef usb_status = USBD_OK; - 800aa52: 2300 movs r3, #0 - 800aa54: 73fb strb r3, [r7, #15] + 800a8da: 2300 movs r3, #0 + 800a8dc: 73fb strb r3, [r7, #15] switch (hal_status) - 800aa56: 79fb ldrb r3, [r7, #7] - 800aa58: 2b03 cmp r3, #3 - 800aa5a: d817 bhi.n 800aa8c - 800aa5c: a201 add r2, pc, #4 @ (adr r2, 800aa64 ) - 800aa5e: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 800aa62: bf00 nop - 800aa64: 0800aa75 .word 0x0800aa75 - 800aa68: 0800aa7b .word 0x0800aa7b - 800aa6c: 0800aa81 .word 0x0800aa81 - 800aa70: 0800aa87 .word 0x0800aa87 + 800a8de: 79fb ldrb r3, [r7, #7] + 800a8e0: 2b03 cmp r3, #3 + 800a8e2: d817 bhi.n 800a914 + 800a8e4: a201 add r2, pc, #4 @ (adr r2, 800a8ec ) + 800a8e6: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 800a8ea: bf00 nop + 800a8ec: 0800a8fd .word 0x0800a8fd + 800a8f0: 0800a903 .word 0x0800a903 + 800a8f4: 0800a909 .word 0x0800a909 + 800a8f8: 0800a90f .word 0x0800a90f { case HAL_OK : usb_status = USBD_OK; - 800aa74: 2300 movs r3, #0 - 800aa76: 73fb strb r3, [r7, #15] + 800a8fc: 2300 movs r3, #0 + 800a8fe: 73fb strb r3, [r7, #15] break; - 800aa78: e00b b.n 800aa92 + 800a900: e00b b.n 800a91a case HAL_ERROR : usb_status = USBD_FAIL; - 800aa7a: 2303 movs r3, #3 - 800aa7c: 73fb strb r3, [r7, #15] + 800a902: 2303 movs r3, #3 + 800a904: 73fb strb r3, [r7, #15] break; - 800aa7e: e008 b.n 800aa92 + 800a906: e008 b.n 800a91a case HAL_BUSY : usb_status = USBD_BUSY; - 800aa80: 2301 movs r3, #1 - 800aa82: 73fb strb r3, [r7, #15] + 800a908: 2301 movs r3, #1 + 800a90a: 73fb strb r3, [r7, #15] break; - 800aa84: e005 b.n 800aa92 + 800a90c: e005 b.n 800a91a case HAL_TIMEOUT : usb_status = USBD_FAIL; - 800aa86: 2303 movs r3, #3 - 800aa88: 73fb strb r3, [r7, #15] + 800a90e: 2303 movs r3, #3 + 800a910: 73fb strb r3, [r7, #15] break; - 800aa8a: e002 b.n 800aa92 + 800a912: e002 b.n 800a91a default : usb_status = USBD_FAIL; - 800aa8c: 2303 movs r3, #3 - 800aa8e: 73fb strb r3, [r7, #15] + 800a914: 2303 movs r3, #3 + 800a916: 73fb strb r3, [r7, #15] break; - 800aa90: bf00 nop + 800a918: bf00 nop } return usb_status; - 800aa92: 7bfb ldrb r3, [r7, #15] + 800a91a: 7bfb ldrb r3, [r7, #15] } - 800aa94: 4618 mov r0, r3 - 800aa96: 3714 adds r7, #20 - 800aa98: 46bd mov sp, r7 - 800aa9a: f85d 7b04 ldr.w r7, [sp], #4 - 800aa9e: 4770 bx lr + 800a91c: 4618 mov r0, r3 + 800a91e: 3714 adds r7, #20 + 800a920: 46bd mov sp, r7 + 800a922: f85d 7b04 ldr.w r7, [sp], #4 + 800a926: 4770 bx lr -0800aaa0 : - 800aaa0: 4402 add r2, r0 - 800aaa2: 4603 mov r3, r0 - 800aaa4: 4293 cmp r3, r2 - 800aaa6: d100 bne.n 800aaaa - 800aaa8: 4770 bx lr - 800aaaa: f803 1b01 strb.w r1, [r3], #1 - 800aaae: e7f9 b.n 800aaa4 +0800a928 : + 800a928: 4402 add r2, r0 + 800a92a: 4603 mov r3, r0 + 800a92c: 4293 cmp r3, r2 + 800a92e: d100 bne.n 800a932 + 800a930: 4770 bx lr + 800a932: f803 1b01 strb.w r1, [r3], #1 + 800a936: e7f9 b.n 800a92c -0800aab0 <__libc_init_array>: - 800aab0: b570 push {r4, r5, r6, lr} - 800aab2: 4d0d ldr r5, [pc, #52] @ (800aae8 <__libc_init_array+0x38>) - 800aab4: 4c0d ldr r4, [pc, #52] @ (800aaec <__libc_init_array+0x3c>) - 800aab6: 1b64 subs r4, r4, r5 - 800aab8: 10a4 asrs r4, r4, #2 - 800aaba: 2600 movs r6, #0 - 800aabc: 42a6 cmp r6, r4 - 800aabe: d109 bne.n 800aad4 <__libc_init_array+0x24> - 800aac0: 4d0b ldr r5, [pc, #44] @ (800aaf0 <__libc_init_array+0x40>) - 800aac2: 4c0c ldr r4, [pc, #48] @ (800aaf4 <__libc_init_array+0x44>) - 800aac4: f000 f826 bl 800ab14 <_init> - 800aac8: 1b64 subs r4, r4, r5 - 800aaca: 10a4 asrs r4, r4, #2 - 800aacc: 2600 movs r6, #0 - 800aace: 42a6 cmp r6, r4 - 800aad0: d105 bne.n 800aade <__libc_init_array+0x2e> - 800aad2: bd70 pop {r4, r5, r6, pc} - 800aad4: f855 3b04 ldr.w r3, [r5], #4 - 800aad8: 4798 blx r3 - 800aada: 3601 adds r6, #1 - 800aadc: e7ee b.n 800aabc <__libc_init_array+0xc> - 800aade: f855 3b04 ldr.w r3, [r5], #4 - 800aae2: 4798 blx r3 - 800aae4: 3601 adds r6, #1 - 800aae6: e7f2 b.n 800aace <__libc_init_array+0x1e> - 800aae8: 0800ab90 .word 0x0800ab90 - 800aaec: 0800ab90 .word 0x0800ab90 - 800aaf0: 0800ab90 .word 0x0800ab90 - 800aaf4: 0800ab94 .word 0x0800ab94 +0800a938 <__libc_init_array>: + 800a938: b570 push {r4, r5, r6, lr} + 800a93a: 4d0d ldr r5, [pc, #52] @ (800a970 <__libc_init_array+0x38>) + 800a93c: 4c0d ldr r4, [pc, #52] @ (800a974 <__libc_init_array+0x3c>) + 800a93e: 1b64 subs r4, r4, r5 + 800a940: 10a4 asrs r4, r4, #2 + 800a942: 2600 movs r6, #0 + 800a944: 42a6 cmp r6, r4 + 800a946: d109 bne.n 800a95c <__libc_init_array+0x24> + 800a948: 4d0b ldr r5, [pc, #44] @ (800a978 <__libc_init_array+0x40>) + 800a94a: 4c0c ldr r4, [pc, #48] @ (800a97c <__libc_init_array+0x44>) + 800a94c: f000 f826 bl 800a99c <_init> + 800a950: 1b64 subs r4, r4, r5 + 800a952: 10a4 asrs r4, r4, #2 + 800a954: 2600 movs r6, #0 + 800a956: 42a6 cmp r6, r4 + 800a958: d105 bne.n 800a966 <__libc_init_array+0x2e> + 800a95a: bd70 pop {r4, r5, r6, pc} + 800a95c: f855 3b04 ldr.w r3, [r5], #4 + 800a960: 4798 blx r3 + 800a962: 3601 adds r6, #1 + 800a964: e7ee b.n 800a944 <__libc_init_array+0xc> + 800a966: f855 3b04 ldr.w r3, [r5], #4 + 800a96a: 4798 blx r3 + 800a96c: 3601 adds r6, #1 + 800a96e: e7f2 b.n 800a956 <__libc_init_array+0x1e> + 800a970: 0800aa18 .word 0x0800aa18 + 800a974: 0800aa18 .word 0x0800aa18 + 800a978: 0800aa18 .word 0x0800aa18 + 800a97c: 0800aa1c .word 0x0800aa1c -0800aaf8 : - 800aaf8: 440a add r2, r1 - 800aafa: 4291 cmp r1, r2 - 800aafc: f100 33ff add.w r3, r0, #4294967295 @ 0xffffffff - 800ab00: d100 bne.n 800ab04 - 800ab02: 4770 bx lr - 800ab04: b510 push {r4, lr} - 800ab06: f811 4b01 ldrb.w r4, [r1], #1 - 800ab0a: f803 4f01 strb.w r4, [r3, #1]! - 800ab0e: 4291 cmp r1, r2 - 800ab10: d1f9 bne.n 800ab06 - 800ab12: bd10 pop {r4, pc} +0800a980 : + 800a980: 440a add r2, r1 + 800a982: 4291 cmp r1, r2 + 800a984: f100 33ff add.w r3, r0, #4294967295 @ 0xffffffff + 800a988: d100 bne.n 800a98c + 800a98a: 4770 bx lr + 800a98c: b510 push {r4, lr} + 800a98e: f811 4b01 ldrb.w r4, [r1], #1 + 800a992: f803 4f01 strb.w r4, [r3, #1]! + 800a996: 4291 cmp r1, r2 + 800a998: d1f9 bne.n 800a98e + 800a99a: bd10 pop {r4, pc} -0800ab14 <_init>: - 800ab14: b5f8 push {r3, r4, r5, r6, r7, lr} - 800ab16: bf00 nop - 800ab18: bcf8 pop {r3, r4, r5, r6, r7} - 800ab1a: bc08 pop {r3} - 800ab1c: 469e mov lr, r3 - 800ab1e: 4770 bx lr +0800a99c <_init>: + 800a99c: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a99e: bf00 nop + 800a9a0: bcf8 pop {r3, r4, r5, r6, r7} + 800a9a2: bc08 pop {r3} + 800a9a4: 469e mov lr, r3 + 800a9a6: 4770 bx lr -0800ab20 <_fini>: - 800ab20: b5f8 push {r3, r4, r5, r6, r7, lr} - 800ab22: bf00 nop - 800ab24: bcf8 pop {r3, r4, r5, r6, r7} - 800ab26: bc08 pop {r3} - 800ab28: 469e mov lr, r3 - 800ab2a: 4770 bx lr +0800a9a8 <_fini>: + 800a9a8: b5f8 push {r3, r4, r5, r6, r7, lr} + 800a9aa: bf00 nop + 800a9ac: bcf8 pop {r3, r4, r5, r6, r7} + 800a9ae: bc08 pop {r3} + 800a9b0: 469e mov lr, r3 + 800a9b2: 4770 bx lr diff --git a/firmware/modularkbd/Debug/modularkbd.map b/firmware/modularkbd/Debug/modularkbd.map index 906d38dd..01ccaf41 100644 --- a/firmware/modularkbd/Debug/modularkbd.map +++ b/firmware/modularkbd/Debug/modularkbd.map @@ -3821,6 +3821,8 @@ Discarded input sections 0x00000000 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.HAL_UART_MspDeInit 0x00000000 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .text.HAL_UART_Transmit + 0x00000000 0x116 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.HAL_UART_Receive 0x00000000 0x12e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.HAL_UART_Transmit_IT @@ -3875,6 +3877,8 @@ Discarded input sections 0x00000000 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.HAL_UART_GetError 0x00000000 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .text.UART_WaitOnFlagUntilTimeout + 0x00000000 0xb2 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_Start_Receive_IT 0x00000000 0x74 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMATxAbortCallback @@ -5425,7 +5429,7 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external 0x08000000 g_pfnVectors 0x080001c4 . = ALIGN (0x4) -.text 0x080001c4 0xa968 +.text 0x080001c4 0xa7f0 0x080001c4 . = ALIGN (0x4) *(.text) .text 0x080001c4 0x40 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o @@ -5449,877 +5453,872 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .text.HAL_I2C_MspInit 0x08000798 0x90 ./Core/Src/i2c.o 0x08000798 HAL_I2C_MspInit - .text.main 0x08000828 0x13c ./Core/Src/main.o + .text.main 0x08000828 0x16c ./Core/Src/main.o 0x08000828 main .text.SystemClock_Config - 0x08000964 0xd8 ./Core/Src/main.o - 0x08000964 SystemClock_Config + 0x08000994 0xd8 ./Core/Src/main.o + 0x08000994 SystemClock_Config .text.HAL_UART_RxCpltCallback - 0x08000a3c 0xb8 ./Core/Src/main.o - 0x08000a3c HAL_UART_RxCpltCallback + 0x08000a6c 0xb8 ./Core/Src/main.o + 0x08000a6c HAL_UART_RxCpltCallback .text.findBestParent - 0x08000af4 0x74 ./Core/Src/main.o - 0x08000af4 findBestParent + 0x08000b24 0x84 ./Core/Src/main.o + 0x08000b24 findBestParent .text.handleUARTMessages - 0x08000b68 0xb4 ./Core/Src/main.o - 0x08000b68 handleUARTMessages + 0x08000ba8 0xc4 ./Core/Src/main.o + 0x08000ba8 handleUARTMessages .text.addUSBReport - 0x08000c1c 0x68 ./Core/Src/main.o - 0x08000c1c addUSBReport + 0x08000c6c 0x68 ./Core/Src/main.o + 0x08000c6c addUSBReport .text.matrixScan - 0x08000c84 0xb4 ./Core/Src/main.o - 0x08000c84 matrixScan + 0x08000cd4 0xb4 ./Core/Src/main.o + 0x08000cd4 matrixScan .text.resetReport - 0x08000d38 0x20 ./Core/Src/main.o - 0x08000d38 resetReport + 0x08000d88 0x20 ./Core/Src/main.o + 0x08000d88 resetReport .text.Error_Handler - 0x08000d58 0xc ./Core/Src/main.o - 0x08000d58 Error_Handler + 0x08000da8 0xc ./Core/Src/main.o + 0x08000da8 Error_Handler .text.HAL_MspInit - 0x08000d64 0x50 ./Core/Src/stm32f4xx_hal_msp.o - 0x08000d64 HAL_MspInit + 0x08000db4 0x50 ./Core/Src/stm32f4xx_hal_msp.o + 0x08000db4 HAL_MspInit .text.NMI_Handler - 0x08000db4 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000db4 NMI_Handler + 0x08000e04 0x8 ./Core/Src/stm32f4xx_it.o + 0x08000e04 NMI_Handler .text.HardFault_Handler - 0x08000dbc 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000dbc HardFault_Handler + 0x08000e0c 0x8 ./Core/Src/stm32f4xx_it.o + 0x08000e0c HardFault_Handler .text.MemManage_Handler - 0x08000dc4 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000dc4 MemManage_Handler + 0x08000e14 0x8 ./Core/Src/stm32f4xx_it.o + 0x08000e14 MemManage_Handler .text.BusFault_Handler - 0x08000dcc 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000dcc BusFault_Handler + 0x08000e1c 0x8 ./Core/Src/stm32f4xx_it.o + 0x08000e1c BusFault_Handler .text.UsageFault_Handler - 0x08000dd4 0x8 ./Core/Src/stm32f4xx_it.o - 0x08000dd4 UsageFault_Handler + 0x08000e24 0x8 ./Core/Src/stm32f4xx_it.o + 0x08000e24 UsageFault_Handler .text.SVC_Handler - 0x08000ddc 0xe ./Core/Src/stm32f4xx_it.o - 0x08000ddc SVC_Handler + 0x08000e2c 0xe ./Core/Src/stm32f4xx_it.o + 0x08000e2c SVC_Handler .text.DebugMon_Handler - 0x08000dea 0xe ./Core/Src/stm32f4xx_it.o - 0x08000dea DebugMon_Handler + 0x08000e3a 0xe ./Core/Src/stm32f4xx_it.o + 0x08000e3a DebugMon_Handler .text.PendSV_Handler - 0x08000df8 0xe ./Core/Src/stm32f4xx_it.o - 0x08000df8 PendSV_Handler + 0x08000e48 0xe ./Core/Src/stm32f4xx_it.o + 0x08000e48 PendSV_Handler .text.SysTick_Handler - 0x08000e06 0xc ./Core/Src/stm32f4xx_it.o - 0x08000e06 SysTick_Handler - *fill* 0x08000e12 0x2 + 0x08000e56 0xc ./Core/Src/stm32f4xx_it.o + 0x08000e56 SysTick_Handler + *fill* 0x08000e62 0x2 .text.DMA1_Stream0_IRQHandler - 0x08000e14 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e14 DMA1_Stream0_IRQHandler - .text.DMA1_Stream2_IRQHandler - 0x08000e28 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e28 DMA1_Stream2_IRQHandler - .text.DMA1_Stream4_IRQHandler - 0x08000e3c 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e3c DMA1_Stream4_IRQHandler - .text.DMA1_Stream5_IRQHandler - 0x08000e50 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e50 DMA1_Stream5_IRQHandler - .text.DMA1_Stream6_IRQHandler 0x08000e64 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e64 DMA1_Stream6_IRQHandler - .text.USART1_IRQHandler + 0x08000e64 DMA1_Stream0_IRQHandler + .text.DMA1_Stream2_IRQHandler 0x08000e78 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e78 USART1_IRQHandler - .text.USART2_IRQHandler + 0x08000e78 DMA1_Stream2_IRQHandler + .text.DMA1_Stream4_IRQHandler 0x08000e8c 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000e8c USART2_IRQHandler - .text.DMA1_Stream7_IRQHandler + 0x08000e8c DMA1_Stream4_IRQHandler + .text.DMA1_Stream5_IRQHandler 0x08000ea0 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000ea0 DMA1_Stream7_IRQHandler - .text.UART4_IRQHandler + 0x08000ea0 DMA1_Stream5_IRQHandler + .text.DMA1_Stream6_IRQHandler 0x08000eb4 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000eb4 UART4_IRQHandler - .text.UART5_IRQHandler + 0x08000eb4 DMA1_Stream6_IRQHandler + .text.USART1_IRQHandler 0x08000ec8 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000ec8 UART5_IRQHandler - .text.DMA2_Stream2_IRQHandler + 0x08000ec8 USART1_IRQHandler + .text.USART2_IRQHandler 0x08000edc 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000edc DMA2_Stream2_IRQHandler - .text.OTG_FS_IRQHandler + 0x08000edc USART2_IRQHandler + .text.DMA1_Stream7_IRQHandler 0x08000ef0 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000ef0 OTG_FS_IRQHandler - .text.DMA2_Stream7_IRQHandler + 0x08000ef0 DMA1_Stream7_IRQHandler + .text.UART4_IRQHandler 0x08000f04 0x14 ./Core/Src/stm32f4xx_it.o - 0x08000f04 DMA2_Stream7_IRQHandler + 0x08000f04 UART4_IRQHandler + .text.UART5_IRQHandler + 0x08000f18 0x14 ./Core/Src/stm32f4xx_it.o + 0x08000f18 UART5_IRQHandler + .text.DMA2_Stream2_IRQHandler + 0x08000f2c 0x14 ./Core/Src/stm32f4xx_it.o + 0x08000f2c DMA2_Stream2_IRQHandler + .text.OTG_FS_IRQHandler + 0x08000f40 0x14 ./Core/Src/stm32f4xx_it.o + 0x08000f40 OTG_FS_IRQHandler + .text.DMA2_Stream7_IRQHandler + 0x08000f54 0x14 ./Core/Src/stm32f4xx_it.o + 0x08000f54 DMA2_Stream7_IRQHandler .text.SystemInit - 0x08000f18 0x24 ./Core/Src/system_stm32f4xx.o - 0x08000f18 SystemInit + 0x08000f68 0x24 ./Core/Src/system_stm32f4xx.o + 0x08000f68 SystemInit .text.MX_TIM2_Init - 0x08000f3c 0xb0 ./Core/Src/tim.o - 0x08000f3c MX_TIM2_Init + 0x08000f8c 0xb0 ./Core/Src/tim.o + 0x08000f8c MX_TIM2_Init .text.MX_TIM3_Init - 0x08000fec 0xa8 ./Core/Src/tim.o - 0x08000fec MX_TIM3_Init + 0x0800103c 0xa8 ./Core/Src/tim.o + 0x0800103c MX_TIM3_Init .text.HAL_TIM_OC_MspInit - 0x08001094 0x40 ./Core/Src/tim.o - 0x08001094 HAL_TIM_OC_MspInit + 0x080010e4 0x40 ./Core/Src/tim.o + 0x080010e4 HAL_TIM_OC_MspInit .text.HAL_TIM_Encoder_MspInit - 0x080010d4 0x90 ./Core/Src/tim.o - 0x080010d4 HAL_TIM_Encoder_MspInit + 0x08001124 0x90 ./Core/Src/tim.o + 0x08001124 HAL_TIM_Encoder_MspInit .text.HAL_TIM_MspPostInit - 0x08001164 0x70 ./Core/Src/tim.o - 0x08001164 HAL_TIM_MspPostInit + 0x080011b4 0x70 ./Core/Src/tim.o + 0x080011b4 HAL_TIM_MspPostInit .text.MX_UART4_Init - 0x080011d4 0x54 ./Core/Src/usart.o - 0x080011d4 MX_UART4_Init + 0x08001224 0x54 ./Core/Src/usart.o + 0x08001224 MX_UART4_Init .text.MX_UART5_Init - 0x08001228 0x54 ./Core/Src/usart.o - 0x08001228 MX_UART5_Init + 0x08001278 0x54 ./Core/Src/usart.o + 0x08001278 MX_UART5_Init .text.MX_USART1_UART_Init - 0x0800127c 0x54 ./Core/Src/usart.o - 0x0800127c MX_USART1_UART_Init + 0x080012cc 0x54 ./Core/Src/usart.o + 0x080012cc MX_USART1_UART_Init .text.MX_USART2_UART_Init - 0x080012d0 0x54 ./Core/Src/usart.o - 0x080012d0 MX_USART2_UART_Init + 0x08001320 0x54 ./Core/Src/usart.o + 0x08001320 MX_USART2_UART_Init .text.HAL_UART_MspInit - 0x08001324 0x584 ./Core/Src/usart.o - 0x08001324 HAL_UART_MspInit + 0x08001374 0x584 ./Core/Src/usart.o + 0x08001374 HAL_UART_MspInit .text.Reset_Handler - 0x080018a8 0x50 ./Core/Startup/startup_stm32f446retx.o - 0x080018a8 Reset_Handler + 0x080018f8 0x50 ./Core/Startup/startup_stm32f446retx.o + 0x080018f8 Reset_Handler .text.Default_Handler - 0x080018f8 0x2 ./Core/Startup/startup_stm32f446retx.o - 0x080018f8 RTC_Alarm_IRQHandler - 0x080018f8 EXTI2_IRQHandler - 0x080018f8 TIM8_CC_IRQHandler - 0x080018f8 FMPI2C1_EV_IRQHandler - 0x080018f8 SPI4_IRQHandler - 0x080018f8 TIM1_CC_IRQHandler - 0x080018f8 DMA2_Stream5_IRQHandler - 0x080018f8 PVD_IRQHandler - 0x080018f8 SDIO_IRQHandler - 0x080018f8 TAMP_STAMP_IRQHandler - 0x080018f8 CAN2_RX1_IRQHandler - 0x080018f8 EXTI3_IRQHandler - 0x080018f8 TIM8_TRG_COM_TIM14_IRQHandler - 0x080018f8 TIM1_UP_TIM10_IRQHandler - 0x080018f8 TIM8_UP_TIM13_IRQHandler - 0x080018f8 I2C3_ER_IRQHandler - 0x080018f8 EXTI0_IRQHandler - 0x080018f8 I2C2_EV_IRQHandler - 0x080018f8 CAN1_RX0_IRQHandler - 0x080018f8 FPU_IRQHandler - 0x080018f8 OTG_HS_WKUP_IRQHandler - 0x080018f8 CAN2_SCE_IRQHandler - 0x080018f8 SPI1_IRQHandler - 0x080018f8 TIM6_DAC_IRQHandler - 0x080018f8 TIM1_BRK_TIM9_IRQHandler - 0x080018f8 DCMI_IRQHandler - 0x080018f8 CAN2_RX0_IRQHandler - 0x080018f8 DMA2_Stream3_IRQHandler - 0x080018f8 SAI2_IRQHandler - 0x080018f8 USART6_IRQHandler - 0x080018f8 USART3_IRQHandler - 0x080018f8 CAN1_RX1_IRQHandler - 0x080018f8 DMA2_Stream0_IRQHandler - 0x080018f8 TIM4_IRQHandler - 0x080018f8 QUADSPI_IRQHandler - 0x080018f8 I2C1_EV_IRQHandler - 0x080018f8 DMA1_Stream1_IRQHandler - 0x080018f8 TIM3_IRQHandler - 0x080018f8 RCC_IRQHandler - 0x080018f8 TIM8_BRK_TIM12_IRQHandler - 0x080018f8 Default_Handler - 0x080018f8 CEC_IRQHandler - 0x080018f8 EXTI15_10_IRQHandler - 0x080018f8 ADC_IRQHandler - 0x080018f8 TIM7_IRQHandler - 0x080018f8 CAN2_TX_IRQHandler - 0x080018f8 TIM5_IRQHandler - 0x080018f8 I2C3_EV_IRQHandler - 0x080018f8 EXTI9_5_IRQHandler - 0x080018f8 RTC_WKUP_IRQHandler - 0x080018f8 SPDIF_RX_IRQHandler - 0x080018f8 SPI2_IRQHandler - 0x080018f8 OTG_HS_EP1_IN_IRQHandler - 0x080018f8 CAN1_TX_IRQHandler - 0x080018f8 FMPI2C1_ER_IRQHandler - 0x080018f8 EXTI4_IRQHandler - 0x080018f8 OTG_HS_EP1_OUT_IRQHandler - 0x080018f8 WWDG_IRQHandler - 0x080018f8 TIM2_IRQHandler - 0x080018f8 OTG_FS_WKUP_IRQHandler - 0x080018f8 TIM1_TRG_COM_TIM11_IRQHandler - 0x080018f8 OTG_HS_IRQHandler - 0x080018f8 EXTI1_IRQHandler - 0x080018f8 I2C2_ER_IRQHandler - 0x080018f8 DMA2_Stream1_IRQHandler - 0x080018f8 CAN1_SCE_IRQHandler - 0x080018f8 FLASH_IRQHandler - 0x080018f8 DMA2_Stream4_IRQHandler - 0x080018f8 SPI3_IRQHandler - 0x080018f8 I2C1_ER_IRQHandler - 0x080018f8 FMC_IRQHandler - 0x080018f8 DMA2_Stream6_IRQHandler - 0x080018f8 SAI1_IRQHandler - 0x080018f8 DMA1_Stream3_IRQHandler - *fill* 0x080018fa 0x2 + 0x08001948 0x2 ./Core/Startup/startup_stm32f446retx.o + 0x08001948 RTC_Alarm_IRQHandler + 0x08001948 EXTI2_IRQHandler + 0x08001948 TIM8_CC_IRQHandler + 0x08001948 FMPI2C1_EV_IRQHandler + 0x08001948 SPI4_IRQHandler + 0x08001948 TIM1_CC_IRQHandler + 0x08001948 DMA2_Stream5_IRQHandler + 0x08001948 PVD_IRQHandler + 0x08001948 SDIO_IRQHandler + 0x08001948 TAMP_STAMP_IRQHandler + 0x08001948 CAN2_RX1_IRQHandler + 0x08001948 EXTI3_IRQHandler + 0x08001948 TIM8_TRG_COM_TIM14_IRQHandler + 0x08001948 TIM1_UP_TIM10_IRQHandler + 0x08001948 TIM8_UP_TIM13_IRQHandler + 0x08001948 I2C3_ER_IRQHandler + 0x08001948 EXTI0_IRQHandler + 0x08001948 I2C2_EV_IRQHandler + 0x08001948 CAN1_RX0_IRQHandler + 0x08001948 FPU_IRQHandler + 0x08001948 OTG_HS_WKUP_IRQHandler + 0x08001948 CAN2_SCE_IRQHandler + 0x08001948 SPI1_IRQHandler + 0x08001948 TIM6_DAC_IRQHandler + 0x08001948 TIM1_BRK_TIM9_IRQHandler + 0x08001948 DCMI_IRQHandler + 0x08001948 CAN2_RX0_IRQHandler + 0x08001948 DMA2_Stream3_IRQHandler + 0x08001948 SAI2_IRQHandler + 0x08001948 USART6_IRQHandler + 0x08001948 USART3_IRQHandler + 0x08001948 CAN1_RX1_IRQHandler + 0x08001948 DMA2_Stream0_IRQHandler + 0x08001948 TIM4_IRQHandler + 0x08001948 QUADSPI_IRQHandler + 0x08001948 I2C1_EV_IRQHandler + 0x08001948 DMA1_Stream1_IRQHandler + 0x08001948 TIM3_IRQHandler + 0x08001948 RCC_IRQHandler + 0x08001948 TIM8_BRK_TIM12_IRQHandler + 0x08001948 Default_Handler + 0x08001948 CEC_IRQHandler + 0x08001948 EXTI15_10_IRQHandler + 0x08001948 ADC_IRQHandler + 0x08001948 TIM7_IRQHandler + 0x08001948 CAN2_TX_IRQHandler + 0x08001948 TIM5_IRQHandler + 0x08001948 I2C3_EV_IRQHandler + 0x08001948 EXTI9_5_IRQHandler + 0x08001948 RTC_WKUP_IRQHandler + 0x08001948 SPDIF_RX_IRQHandler + 0x08001948 SPI2_IRQHandler + 0x08001948 OTG_HS_EP1_IN_IRQHandler + 0x08001948 CAN1_TX_IRQHandler + 0x08001948 FMPI2C1_ER_IRQHandler + 0x08001948 EXTI4_IRQHandler + 0x08001948 OTG_HS_EP1_OUT_IRQHandler + 0x08001948 WWDG_IRQHandler + 0x08001948 TIM2_IRQHandler + 0x08001948 OTG_FS_WKUP_IRQHandler + 0x08001948 TIM1_TRG_COM_TIM11_IRQHandler + 0x08001948 OTG_HS_IRQHandler + 0x08001948 EXTI1_IRQHandler + 0x08001948 I2C2_ER_IRQHandler + 0x08001948 DMA2_Stream1_IRQHandler + 0x08001948 CAN1_SCE_IRQHandler + 0x08001948 FLASH_IRQHandler + 0x08001948 DMA2_Stream4_IRQHandler + 0x08001948 SPI3_IRQHandler + 0x08001948 I2C1_ER_IRQHandler + 0x08001948 FMC_IRQHandler + 0x08001948 DMA2_Stream6_IRQHandler + 0x08001948 SAI1_IRQHandler + 0x08001948 DMA1_Stream3_IRQHandler + *fill* 0x0800194a 0x2 .text.HAL_Init - 0x080018fc 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x080018fc HAL_Init + 0x0800194c 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0800194c HAL_Init .text.HAL_InitTick - 0x08001940 0x60 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x08001940 HAL_InitTick + 0x08001990 0x60 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001990 HAL_InitTick .text.HAL_IncTick - 0x080019a0 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x080019a0 HAL_IncTick + 0x080019f0 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x080019f0 HAL_IncTick .text.HAL_GetTick - 0x080019c8 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x080019c8 HAL_GetTick + 0x08001a18 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001a18 HAL_GetTick .text.HAL_Delay - 0x080019e0 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x080019e0 HAL_Delay + 0x08001a30 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x08001a30 HAL_Delay .text.__NVIC_SetPriorityGrouping - 0x08001a28 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001a78 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x08001a70 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001ac0 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_EnableIRQ - 0x08001a8c 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001adc 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_SetPriority - 0x08001ac8 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001b18 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.NVIC_EncodePriority - 0x08001b1c 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - *fill* 0x08001b82 0x2 + 0x08001b6c 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + *fill* 0x08001bd2 0x2 .text.SysTick_Config - 0x08001b84 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001bd4 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x08001bc8 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001bc8 HAL_NVIC_SetPriorityGrouping + 0x08001c18 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001c18 HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x08001bde 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001bde HAL_NVIC_SetPriority + 0x08001c2e 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001c2e HAL_NVIC_SetPriority .text.HAL_NVIC_EnableIRQ - 0x08001c16 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001c16 HAL_NVIC_EnableIRQ + 0x08001c66 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001c66 HAL_NVIC_EnableIRQ .text.HAL_SYSTICK_Config - 0x08001c32 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x08001c32 HAL_SYSTICK_Config - *fill* 0x08001c4a 0x2 + 0x08001c82 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x08001c82 HAL_SYSTICK_Config + *fill* 0x08001c9a 0x2 .text.HAL_DMA_Init - 0x08001c4c 0x15c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001c4c HAL_DMA_Init + 0x08001c9c 0x15c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08001c9c HAL_DMA_Init .text.HAL_DMA_Start_IT - 0x08001da8 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001da8 HAL_DMA_Start_IT + 0x08001df8 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08001df8 HAL_DMA_Start_IT .text.HAL_DMA_Abort - 0x08001e58 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001e58 HAL_DMA_Abort + 0x08001ea8 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08001ea8 HAL_DMA_Abort .text.HAL_DMA_Abort_IT - 0x08001f38 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001f38 HAL_DMA_Abort_IT + 0x08001f88 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08001f88 HAL_DMA_Abort_IT .text.HAL_DMA_IRQHandler - 0x08001f7c 0x314 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x08001f7c HAL_DMA_IRQHandler + 0x08001fcc 0x314 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x08001fcc HAL_DMA_IRQHandler .text.DMA_SetConfig - 0x08002290 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x080022e0 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.DMA_CalcBaseAndBitshift - 0x080022ec 0x6c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800233c 0x6c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.DMA_CheckFifoParam - 0x08002358 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x080023a8 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .text.HAL_GPIO_Init - 0x08002450 0x328 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x08002450 HAL_GPIO_Init + 0x080024a0 0x328 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x080024a0 HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x08002778 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x08002778 HAL_GPIO_ReadPin + 0x080027c8 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x080027c8 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x080027a8 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x080027a8 HAL_GPIO_WritePin - *fill* 0x080027da 0x2 + 0x080027f8 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x080027f8 HAL_GPIO_WritePin + *fill* 0x0800282a 0x2 .text.HAL_I2C_Init - 0x080027dc 0x288 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - 0x080027dc HAL_I2C_Init + 0x0800282c 0x288 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + 0x0800282c HAL_I2C_Init .text.HAL_PCD_Init - 0x08002a64 0x22c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002a64 HAL_PCD_Init + 0x08002ab4 0x22c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08002ab4 HAL_PCD_Init .text.HAL_PCD_Start - 0x08002c90 0x6a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002c90 HAL_PCD_Start + 0x08002ce0 0x6a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08002ce0 HAL_PCD_Start .text.HAL_PCD_IRQHandler - 0x08002cfa 0x99c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08002cfa HAL_PCD_IRQHandler + 0x08002d4a 0x99c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08002d4a HAL_PCD_IRQHandler .text.HAL_PCD_SetAddress - 0x08003696 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003696 HAL_PCD_SetAddress + 0x080036e6 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x080036e6 HAL_PCD_SetAddress .text.HAL_PCD_EP_Open - 0x080036de 0xd4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x080036de HAL_PCD_EP_Open + 0x0800372e 0xd4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x0800372e HAL_PCD_EP_Open .text.HAL_PCD_EP_Close - 0x080037b2 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x080037b2 HAL_PCD_EP_Close + 0x08003802 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003802 HAL_PCD_EP_Close .text.HAL_PCD_EP_Receive - 0x08003846 0x76 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003846 HAL_PCD_EP_Receive + 0x08003896 0x76 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003896 HAL_PCD_EP_Receive .text.HAL_PCD_EP_Transmit - 0x080038bc 0x74 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x080038bc HAL_PCD_EP_Transmit + 0x0800390c 0x74 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x0800390c HAL_PCD_EP_Transmit .text.HAL_PCD_EP_SetStall - 0x08003930 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003930 HAL_PCD_EP_SetStall + 0x08003980 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003980 HAL_PCD_EP_SetStall .text.HAL_PCD_EP_ClrStall - 0x080039f6 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x080039f6 HAL_PCD_EP_ClrStall + 0x08003a46 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003a46 HAL_PCD_EP_ClrStall .text.HAL_PCD_EP_Abort - 0x08003aa2 0x62 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - 0x08003aa2 HAL_PCD_EP_Abort + 0x08003af2 0x62 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003af2 HAL_PCD_EP_Abort .text.PCD_WriteEmptyTxFifo - 0x08003b04 0x118 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003b54 0x118 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.PCD_EP_OutXfrComplete_int - 0x08003c1c 0x1d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003c6c 0x1d0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.PCD_EP_OutSetupPacket_int - 0x08003dec 0x8c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x08003e3c 0x8c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .text.HAL_PCDEx_SetTxFiFo - 0x08003e78 0x8e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x08003e78 HAL_PCDEx_SetTxFiFo + 0x08003ec8 0x8e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x08003ec8 HAL_PCDEx_SetTxFiFo .text.HAL_PCDEx_SetRxFiFo - 0x08003f06 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x08003f06 HAL_PCDEx_SetRxFiFo + 0x08003f56 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x08003f56 HAL_PCDEx_SetRxFiFo .text.HAL_PCDEx_ActivateLPM - 0x08003f28 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - 0x08003f28 HAL_PCDEx_ActivateLPM + 0x08003f78 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x08003f78 HAL_PCDEx_ActivateLPM .text.HAL_RCC_ClockConfig - 0x08003f70 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x08003f70 HAL_RCC_ClockConfig + 0x08003fc0 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x08003fc0 HAL_RCC_ClockConfig .text.HAL_RCC_GetHCLKFreq - 0x0800413c 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0800413c HAL_RCC_GetHCLKFreq + 0x0800418c 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0800418c HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x08004154 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x08004154 HAL_RCC_GetPCLK1Freq + 0x080041a4 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x080041a4 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x0800417c 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0800417c HAL_RCC_GetPCLK2Freq + 0x080041cc 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x080041cc HAL_RCC_GetPCLK2Freq .text.HAL_RCCEx_PeriphCLKConfig - 0x080041a4 0x654 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x080041a4 HAL_RCCEx_PeriphCLKConfig + 0x080041f4 0x654 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x080041f4 HAL_RCCEx_PeriphCLKConfig .text.HAL_RCC_GetSysClockFreq - 0x080047f8 0x460 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x080047f8 HAL_RCC_GetSysClockFreq + 0x08004848 0x460 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x08004848 HAL_RCC_GetSysClockFreq .text.HAL_RCC_OscConfig - 0x08004c58 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - 0x08004c58 HAL_RCC_OscConfig + 0x08004ca8 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x08004ca8 HAL_RCC_OscConfig .text.HAL_TIM_OC_Init - 0x08005194 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005194 HAL_TIM_OC_Init + 0x080051e4 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080051e4 HAL_TIM_OC_Init .text.HAL_TIM_Encoder_Init - 0x08005232 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005232 HAL_TIM_Encoder_Init - *fill* 0x0800537e 0x2 + 0x08005282 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005282 HAL_TIM_Encoder_Init + *fill* 0x080053ce 0x2 .text.HAL_TIM_OC_ConfigChannel - 0x08005380 0xb8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005380 HAL_TIM_OC_ConfigChannel + 0x080053d0 0xb8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080053d0 HAL_TIM_OC_ConfigChannel .text.TIM_Base_SetConfig - 0x08005438 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005438 TIM_Base_SetConfig + 0x08005488 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005488 TIM_Base_SetConfig .text.TIM_OC1_SetConfig - 0x08005584 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080055d4 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.TIM_OC2_SetConfig - 0x08005664 0xec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x08005664 TIM_OC2_SetConfig + 0x080056b4 0xec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080056b4 TIM_OC2_SetConfig .text.TIM_OC3_SetConfig - 0x08005750 0xe8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x080057a0 0xe8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.TIM_OC4_SetConfig - 0x08005838 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x08005888 0xac ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .text.HAL_TIMEx_MasterConfigSynchronization - 0x080058e4 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x080058e4 HAL_TIMEx_MasterConfigSynchronization + 0x08005934 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x08005934 HAL_TIMEx_MasterConfigSynchronization .text.HAL_UART_Init - 0x080059dc 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080059dc HAL_UART_Init - .text.HAL_UART_Transmit - 0x08005a7c 0x116 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005a7c HAL_UART_Transmit - *fill* 0x08005b92 0x2 + 0x08005a2c 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005a2c HAL_UART_Init .text.HAL_UART_Transmit_DMA - 0x08005b94 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005b94 HAL_UART_Transmit_DMA + 0x08005acc 0xf8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005acc HAL_UART_Transmit_DMA .text.HAL_UART_Receive_DMA - 0x08005c8c 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005c8c HAL_UART_Receive_DMA - *fill* 0x08005cd6 0x2 + 0x08005bc4 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005bc4 HAL_UART_Receive_DMA + *fill* 0x08005c0e 0x2 .text.HAL_UART_IRQHandler - 0x08005cd8 0x554 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08005cd8 HAL_UART_IRQHandler + 0x08005c10 0x554 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08005c10 HAL_UART_IRQHandler .text.HAL_UART_TxCpltCallback - 0x0800622c 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0800622c HAL_UART_TxCpltCallback + 0x08006164 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006164 HAL_UART_TxCpltCallback .text.HAL_UART_TxHalfCpltCallback - 0x08006240 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08006240 HAL_UART_TxHalfCpltCallback + 0x08006178 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006178 HAL_UART_TxHalfCpltCallback .text.HAL_UART_RxHalfCpltCallback - 0x08006254 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08006254 HAL_UART_RxHalfCpltCallback + 0x0800618c 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0800618c HAL_UART_RxHalfCpltCallback .text.HAL_UART_ErrorCallback - 0x08006268 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x08006268 HAL_UART_ErrorCallback + 0x080061a0 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080061a0 HAL_UART_ErrorCallback .text.HAL_UARTEx_RxEventCallback - 0x0800627c 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0800627c HAL_UARTEx_RxEventCallback + 0x080061b4 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080061b4 HAL_UARTEx_RxEventCallback .text.UART_DMATransmitCplt - 0x08006294 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080061cc 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMATxHalfCplt - 0x0800632e 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006266 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAReceiveCplt - 0x0800634a 0x12c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006282 0x12c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMARxHalfCplt - 0x08006476 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080063ae 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAError - 0x080064b2 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .text.UART_WaitOnFlagUntilTimeout - 0x08006546 0xb2 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080063ea 0x94 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + *fill* 0x0800647e 0x2 .text.UART_Start_Receive_DMA - 0x080065f8 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x080065f8 UART_Start_Receive_DMA + 0x08006480 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006480 UART_Start_Receive_DMA .text.UART_EndTxTransfer - 0x08006744 0x50 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080065cc 0x50 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_EndRxTransfer - 0x08006794 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0800661c 0xc6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_DMAAbortOnError - 0x0800685a 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080066e2 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_Transmit_IT - 0x0800687c 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006704 0xa0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_EndTransmit_IT - 0x0800691c 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080067a4 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_Receive_IT - 0x0800694c 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x080067d4 0x17c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.UART_SetConfig - 0x08006ac8 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x08006950 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.USB_CoreInit - 0x08006fb0 0xc8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08006fb0 USB_CoreInit + 0x08006e38 0xc8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08006e38 USB_CoreInit .text.USB_SetTurnaroundTime - 0x08007078 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007078 USB_SetTurnaroundTime + 0x08006f00 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08006f00 USB_SetTurnaroundTime .text.USB_EnableGlobalInt - 0x080071bc 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080071bc USB_EnableGlobalInt + 0x08007044 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007044 USB_EnableGlobalInt .text.USB_DisableGlobalInt - 0x080071de 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080071de USB_DisableGlobalInt + 0x08007066 0x22 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007066 USB_DisableGlobalInt .text.USB_SetCurrentMode - 0x08007200 0x98 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007200 USB_SetCurrentMode + 0x08007088 0x98 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007088 USB_SetCurrentMode .text.USB_DevInit - 0x08007298 0x2bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007298 USB_DevInit + 0x08007120 0x2bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007120 USB_DevInit .text.USB_FlushTxFifo - 0x08007554 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007554 USB_FlushTxFifo + 0x080073dc 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080073dc USB_FlushTxFifo .text.USB_FlushRxFifo - 0x080075b8 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080075b8 USB_FlushRxFifo + 0x08007440 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007440 USB_FlushRxFifo .text.USB_SetDevSpeed - 0x08007614 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007614 USB_SetDevSpeed + 0x0800749c 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800749c USB_SetDevSpeed .text.USB_GetDevSpeed - 0x08007646 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007646 USB_GetDevSpeed + 0x080074ce 0x4a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080074ce USB_GetDevSpeed .text.USB_ActivateEndpoint - 0x08007690 0x10e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007690 USB_ActivateEndpoint - *fill* 0x0800779e 0x2 + 0x08007518 0x10e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007518 USB_ActivateEndpoint + *fill* 0x08007626 0x2 .text.USB_DeactivateEndpoint - 0x080077a0 0x1b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080077a0 USB_DeactivateEndpoint + 0x08007628 0x1b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007628 USB_DeactivateEndpoint .text.USB_EPStartXfer - 0x08007958 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007958 USB_EPStartXfer + 0x080077e0 0x53c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080077e0 USB_EPStartXfer .text.USB_EPStopXfer - 0x08007e94 0x154 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007e94 USB_EPStopXfer + 0x08007d1c 0x154 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007d1c USB_EPStopXfer .text.USB_WritePacket - 0x08007fe8 0x7c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08007fe8 USB_WritePacket + 0x08007e70 0x7c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007e70 USB_WritePacket .text.USB_ReadPacket - 0x08008064 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008064 USB_ReadPacket + 0x08007eec 0xb0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007eec USB_ReadPacket .text.USB_EPSetStall - 0x08008114 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008114 USB_EPSetStall + 0x08007f9c 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08007f9c USB_EPSetStall .text.USB_EPClearStall - 0x080081f0 0xcc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080081f0 USB_EPClearStall + 0x08008078 0xcc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008078 USB_EPClearStall .text.USB_SetDevAddress - 0x080082bc 0x4c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080082bc USB_SetDevAddress + 0x08008144 0x4c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008144 USB_SetDevAddress .text.USB_DevConnect - 0x08008308 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008308 USB_DevConnect + 0x08008190 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008190 USB_DevConnect .text.USB_DevDisconnect - 0x0800834a 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800834a USB_DevDisconnect + 0x080081d2 0x42 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080081d2 USB_DevDisconnect .text.USB_ReadInterrupts - 0x0800838c 0x26 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800838c USB_ReadInterrupts + 0x08008214 0x26 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008214 USB_ReadInterrupts .text.USB_ReadDevAllOutEpInterrupt - 0x080083b2 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080083b2 USB_ReadDevAllOutEpInterrupt + 0x0800823a 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800823a USB_ReadDevAllOutEpInterrupt .text.USB_ReadDevAllInEpInterrupt - 0x080083e6 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080083e6 USB_ReadDevAllInEpInterrupt + 0x0800826e 0x34 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800826e USB_ReadDevAllInEpInterrupt .text.USB_ReadDevOutEPInterrupt - 0x0800841a 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x0800841a USB_ReadDevOutEPInterrupt + 0x080082a2 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080082a2 USB_ReadDevOutEPInterrupt .text.USB_ReadDevInEPInterrupt - 0x08008456 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008456 USB_ReadDevInEPInterrupt + 0x080082de 0x5c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x080082de USB_ReadDevInEPInterrupt .text.USB_GetMode - 0x080084b2 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080084b2 USB_GetMode + 0x0800833a 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800833a USB_GetMode .text.USB_ActivateSetup - 0x080084ce 0x46 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x080084ce USB_ActivateSetup + 0x08008356 0x46 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008356 USB_ActivateSetup .text.USB_EP0_OutStart - 0x08008514 0xbc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - 0x08008514 USB_EP0_OutStart + 0x0800839c 0xbc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x0800839c USB_EP0_OutStart .text.USB_CoreReset - 0x080085d0 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x08008458 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o .text.USBD_HID_Init - 0x08008640 0xcc ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x080084c8 0xcc ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_DeInit - 0x0800870c 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008594 0x90 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_Setup - 0x0800879c 0x210 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008624 0x210 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_SendReport - 0x080089ac 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - 0x080089ac USBD_HID_SendReport + 0x08008834 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008834 USBD_HID_SendReport .text.USBD_HID_GetFSCfgDesc - 0x08008a0c 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008894 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetHSCfgDesc - 0x08008a40 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x080088c8 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetOtherSpeedCfgDesc - 0x08008a74 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x080088fc 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_DataIn - 0x08008aa8 0x2c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x08008930 0x2c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_HID_GetDeviceQualifierDesc - 0x08008ad4 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x0800895c 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .text.USBD_Init - 0x08008af4 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008af4 USBD_Init + 0x0800897c 0x60 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x0800897c USBD_Init .text.USBD_RegisterClass - 0x08008b54 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008b54 USBD_RegisterClass + 0x080089dc 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080089dc USBD_RegisterClass .text.USBD_Start - 0x08008bc0 0x18 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008bc0 USBD_Start + 0x08008a48 0x18 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008a48 USBD_Start .text.USBD_RunTestMode - 0x08008bd8 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008bd8 USBD_RunTestMode + 0x08008a60 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008a60 USBD_RunTestMode .text.USBD_SetClassConfig - 0x08008bee 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008bee USBD_SetClassConfig + 0x08008a76 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008a76 USBD_SetClassConfig .text.USBD_ClrClassConfig - 0x08008c26 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008c26 USBD_ClrClassConfig + 0x08008aae 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008aae USBD_ClrClassConfig .text.USBD_LL_SetupStage - 0x08008c5a 0xaa ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008c5a USBD_LL_SetupStage + 0x08008ae2 0xaa ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008ae2 USBD_LL_SetupStage .text.USBD_LL_DataOutStage - 0x08008d04 0x178 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008d04 USBD_LL_DataOutStage + 0x08008b8c 0x178 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008b8c USBD_LL_DataOutStage .text.USBD_LL_DataInStage - 0x08008e7c 0x176 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008e7c USBD_LL_DataInStage + 0x08008d04 0x176 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008d04 USBD_LL_DataInStage .text.USBD_LL_Reset - 0x08008ff2 0xa6 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08008ff2 USBD_LL_Reset + 0x08008e7a 0xa6 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008e7a USBD_LL_Reset .text.USBD_LL_SetSpeed - 0x08009098 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009098 USBD_LL_SetSpeed + 0x08008f20 0x20 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f20 USBD_LL_SetSpeed .text.USBD_LL_Suspend - 0x080090b8 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080090b8 USBD_LL_Suspend + 0x08008f40 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f40 USBD_LL_Suspend .text.USBD_LL_Resume - 0x080090f0 0x30 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080090f0 USBD_LL_Resume + 0x08008f78 0x30 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008f78 USBD_LL_Resume .text.USBD_LL_SOF - 0x08009120 0x40 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009120 USBD_LL_SOF + 0x08008fa8 0x40 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008fa8 USBD_LL_SOF .text.USBD_LL_IsoINIncomplete - 0x08009160 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009160 USBD_LL_IsoINIncomplete + 0x08008fe8 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08008fe8 USBD_LL_IsoINIncomplete .text.USBD_LL_IsoOUTIncomplete - 0x080091c4 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080091c4 USBD_LL_IsoOUTIncomplete + 0x0800904c 0x64 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x0800904c USBD_LL_IsoOUTIncomplete .text.USBD_LL_DevConnected - 0x08009228 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009228 USBD_LL_DevConnected + 0x080090b0 0x16 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080090b0 USBD_LL_DevConnected .text.USBD_LL_DevDisconnected - 0x0800923e 0x46 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x0800923e USBD_LL_DevDisconnected + 0x080090c6 0x46 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080090c6 USBD_LL_DevDisconnected .text.USBD_CoreFindIF - 0x08009284 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009284 USBD_CoreFindIF + 0x0800910c 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x0800910c USBD_CoreFindIF .text.USBD_CoreFindEP - 0x0800929e 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x0800929e USBD_CoreFindEP + 0x08009126 0x1a ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009126 USBD_CoreFindEP .text.USBD_GetEpDesc - 0x080092b8 0x70 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x080092b8 USBD_GetEpDesc + 0x08009140 0x70 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x08009140 USBD_GetEpDesc .text.USBD_GetNextDesc - 0x08009328 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - 0x08009328 USBD_GetNextDesc + 0x080091b0 0x38 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x080091b0 USBD_GetNextDesc .text.SWAPBYTE - 0x08009360 0x3e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - *fill* 0x0800939e 0x2 + 0x080091e8 0x3e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + *fill* 0x08009226 0x2 .text.USBD_StdDevReq - 0x080093a0 0xe4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x080093a0 USBD_StdDevReq + 0x08009228 0xe4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009228 USBD_StdDevReq .text.USBD_StdItfReq - 0x08009484 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009484 USBD_StdItfReq + 0x0800930c 0xd8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0800930c USBD_StdItfReq .text.USBD_StdEPReq - 0x0800955c 0x33e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x0800955c USBD_StdEPReq - *fill* 0x0800989a 0x2 + 0x080093e4 0x33e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x080093e4 USBD_StdEPReq + *fill* 0x08009722 0x2 .text.USBD_GetDescriptor - 0x0800989c 0x328 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009724 0x328 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetAddress - 0x08009bc4 0x88 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009a4c 0x88 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetConfig - 0x08009c4c 0x154 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009ad4 0x154 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_GetConfig - 0x08009da0 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009c28 0x6c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_GetStatus - 0x08009e0c 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009c94 0x68 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_SetFeature - 0x08009e74 0x52 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009cfc 0x52 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_ClrFeature - 0x08009ec6 0x44 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009d4e 0x44 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_ParseSetupRequest - 0x08009f0a 0x74 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009f0a USBD_ParseSetupRequest + 0x08009d92 0x74 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009d92 USBD_ParseSetupRequest .text.USBD_CtlError - 0x08009f7e 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009f7e USBD_CtlError + 0x08009e06 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009e06 USBD_CtlError .text.USBD_GetString - 0x08009fa0 0xa4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - 0x08009fa0 USBD_GetString + 0x08009e28 0xa4 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009e28 USBD_GetString .text.USBD_GetLen - 0x0800a044 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x08009ecc 0x34 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .text.USBD_CtlSendData - 0x0800a078 0x3c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a078 USBD_CtlSendData + 0x08009f00 0x3c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x08009f00 USBD_CtlSendData .text.USBD_CtlContinueSendData - 0x0800a0b4 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a0b4 USBD_CtlContinueSendData + 0x08009f3c 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x08009f3c USBD_CtlContinueSendData .text.USBD_CtlContinueRx - 0x0800a0d6 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a0d6 USBD_CtlContinueRx + 0x08009f5e 0x22 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x08009f5e USBD_CtlContinueRx .text.USBD_CtlSendStatus - 0x0800a0f8 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a0f8 USBD_CtlSendStatus + 0x08009f80 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x08009f80 USBD_CtlSendStatus .text.USBD_CtlReceiveStatus - 0x0800a11e 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - 0x0800a11e USBD_CtlReceiveStatus + 0x08009fa6 0x26 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x08009fa6 USBD_CtlReceiveStatus .text.MX_USB_DEVICE_Init - 0x0800a144 0x4c ./USB_DEVICE/App/usb_device.o - 0x0800a144 MX_USB_DEVICE_Init + 0x08009fcc 0x4c ./USB_DEVICE/App/usb_device.o + 0x08009fcc MX_USB_DEVICE_Init .text.USBD_FS_DeviceDescriptor - 0x0800a190 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a190 USBD_FS_DeviceDescriptor + 0x0800a018 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a018 USBD_FS_DeviceDescriptor .text.USBD_FS_LangIDStrDescriptor - 0x0800a1b4 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a1b4 USBD_FS_LangIDStrDescriptor + 0x0800a03c 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a03c USBD_FS_LangIDStrDescriptor .text.USBD_FS_ProductStrDescriptor - 0x0800a1d8 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a1d8 USBD_FS_ProductStrDescriptor + 0x0800a060 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a060 USBD_FS_ProductStrDescriptor .text.USBD_FS_ManufacturerStrDescriptor - 0x0800a214 0x28 ./USB_DEVICE/App/usbd_desc.o - 0x0800a214 USBD_FS_ManufacturerStrDescriptor + 0x0800a09c 0x28 ./USB_DEVICE/App/usbd_desc.o + 0x0800a09c USBD_FS_ManufacturerStrDescriptor .text.USBD_FS_SerialStrDescriptor - 0x0800a23c 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a23c USBD_FS_SerialStrDescriptor + 0x0800a0c4 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a0c4 USBD_FS_SerialStrDescriptor .text.USBD_FS_ConfigStrDescriptor - 0x0800a260 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a260 USBD_FS_ConfigStrDescriptor + 0x0800a0e8 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a0e8 USBD_FS_ConfigStrDescriptor .text.USBD_FS_InterfaceStrDescriptor - 0x0800a29c 0x3c ./USB_DEVICE/App/usbd_desc.o - 0x0800a29c USBD_FS_InterfaceStrDescriptor + 0x0800a124 0x3c ./USB_DEVICE/App/usbd_desc.o + 0x0800a124 USBD_FS_InterfaceStrDescriptor .text.USBD_FS_USR_BOSDescriptor - 0x0800a2d8 0x24 ./USB_DEVICE/App/usbd_desc.o - 0x0800a2d8 USBD_FS_USR_BOSDescriptor + 0x0800a160 0x24 ./USB_DEVICE/App/usbd_desc.o + 0x0800a160 USBD_FS_USR_BOSDescriptor .text.Get_SerialNum - 0x0800a2fc 0x58 ./USB_DEVICE/App/usbd_desc.o + 0x0800a184 0x58 ./USB_DEVICE/App/usbd_desc.o .text.IntToUnicode - 0x0800a354 0x7e ./USB_DEVICE/App/usbd_desc.o - *fill* 0x0800a3d2 0x2 + 0x0800a1dc 0x7e ./USB_DEVICE/App/usbd_desc.o + *fill* 0x0800a25a 0x2 .text.HAL_PCD_MspInit - 0x0800a3d4 0xd4 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a3d4 HAL_PCD_MspInit + 0x0800a25c 0xd4 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a25c HAL_PCD_MspInit .text.HAL_PCD_SetupStageCallback - 0x0800a4a8 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a4a8 HAL_PCD_SetupStageCallback + 0x0800a330 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a330 HAL_PCD_SetupStageCallback .text.HAL_PCD_DataOutStageCallback - 0x0800a4cc 0x36 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a4cc HAL_PCD_DataOutStageCallback + 0x0800a354 0x36 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a354 HAL_PCD_DataOutStageCallback .text.HAL_PCD_DataInStageCallback - 0x0800a502 0x34 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a502 HAL_PCD_DataInStageCallback + 0x0800a38a 0x34 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a38a HAL_PCD_DataInStageCallback .text.HAL_PCD_SOFCallback - 0x0800a536 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a536 HAL_PCD_SOFCallback + 0x0800a3be 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a3be HAL_PCD_SOFCallback .text.HAL_PCD_ResetCallback - 0x0800a552 0x50 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a552 HAL_PCD_ResetCallback - *fill* 0x0800a5a2 0x2 + 0x0800a3da 0x50 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a3da HAL_PCD_ResetCallback + *fill* 0x0800a42a 0x2 .text.HAL_PCD_SuspendCallback - 0x0800a5a4 0x4c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a5a4 HAL_PCD_SuspendCallback + 0x0800a42c 0x4c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a42c HAL_PCD_SuspendCallback .text.HAL_PCD_ResumeCallback - 0x0800a5f0 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a5f0 HAL_PCD_ResumeCallback + 0x0800a478 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a478 HAL_PCD_ResumeCallback .text.HAL_PCD_ISOOUTIncompleteCallback - 0x0800a60c 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a60c HAL_PCD_ISOOUTIncompleteCallback + 0x0800a494 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a494 HAL_PCD_ISOOUTIncompleteCallback .text.HAL_PCD_ISOINIncompleteCallback - 0x0800a630 0x24 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a630 HAL_PCD_ISOINIncompleteCallback + 0x0800a4b8 0x24 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a4b8 HAL_PCD_ISOINIncompleteCallback .text.HAL_PCD_ConnectCallback - 0x0800a654 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a654 HAL_PCD_ConnectCallback + 0x0800a4dc 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a4dc HAL_PCD_ConnectCallback .text.HAL_PCD_DisconnectCallback - 0x0800a670 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a670 HAL_PCD_DisconnectCallback + 0x0800a4f8 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a4f8 HAL_PCD_DisconnectCallback .text.USBD_LL_Init - 0x0800a68c 0x98 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a68c USBD_LL_Init + 0x0800a514 0x98 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a514 USBD_LL_Init .text.USBD_LL_Start - 0x0800a724 0x36 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a724 USBD_LL_Start + 0x0800a5ac 0x36 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a5ac USBD_LL_Start .text.USBD_LL_OpenEP - 0x0800a75a 0x4c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a75a USBD_LL_OpenEP + 0x0800a5e2 0x4c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a5e2 USBD_LL_OpenEP .text.USBD_LL_CloseEP - 0x0800a7a6 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a7a6 USBD_LL_CloseEP + 0x0800a62e 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800a62e USBD_LL_CloseEP .text.USBD_LL_StallEP - 0x0800a7e4 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a7e4 USBD_LL_StallEP + 0x0800a66c 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800a66c USBD_LL_StallEP .text.USBD_LL_ClearStallEP - 0x0800a822 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a822 USBD_LL_ClearStallEP + 0x0800a6aa 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800a6aa USBD_LL_ClearStallEP .text.USBD_LL_IsStallEP - 0x0800a860 0x58 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a860 USBD_LL_IsStallEP + 0x0800a6e8 0x58 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a6e8 USBD_LL_IsStallEP .text.USBD_LL_SetUSBAddress - 0x0800a8b8 0x3e ./USB_DEVICE/Target/usbd_conf.o - 0x0800a8b8 USBD_LL_SetUSBAddress + 0x0800a740 0x3e ./USB_DEVICE/Target/usbd_conf.o + 0x0800a740 USBD_LL_SetUSBAddress .text.USBD_LL_Transmit - 0x0800a8f6 0x42 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a8f6 USBD_LL_Transmit + 0x0800a77e 0x42 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a77e USBD_LL_Transmit .text.USBD_LL_PrepareReceive - 0x0800a938 0x42 ./USB_DEVICE/Target/usbd_conf.o - 0x0800a938 USBD_LL_PrepareReceive - *fill* 0x0800a97a 0x2 + 0x0800a7c0 0x42 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a7c0 USBD_LL_PrepareReceive + *fill* 0x0800a802 0x2 .text.HAL_PCDEx_LPM_Callback - 0x0800a97c 0x9c ./USB_DEVICE/Target/usbd_conf.o - 0x0800a97c HAL_PCDEx_LPM_Callback + 0x0800a804 0x9c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a804 HAL_PCDEx_LPM_Callback .text.USBD_static_malloc - 0x0800aa18 0x1c ./USB_DEVICE/Target/usbd_conf.o - 0x0800aa18 USBD_static_malloc + 0x0800a8a0 0x1c ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8a0 USBD_static_malloc .text.USBD_static_free - 0x0800aa34 0x14 ./USB_DEVICE/Target/usbd_conf.o - 0x0800aa34 USBD_static_free + 0x0800a8bc 0x14 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8bc USBD_static_free .text.USBD_Get_USB_Status - 0x0800aa48 0x58 ./USB_DEVICE/Target/usbd_conf.o - 0x0800aa48 USBD_Get_USB_Status - .text.memset 0x0800aaa0 0x10 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) - 0x0800aaa0 memset + 0x0800a8d0 0x58 ./USB_DEVICE/Target/usbd_conf.o + 0x0800a8d0 USBD_Get_USB_Status + .text.memset 0x0800a928 0x10 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) + 0x0800a928 memset .text.__libc_init_array - 0x0800aab0 0x48 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) - 0x0800aab0 __libc_init_array - .text.memcpy 0x0800aaf8 0x1c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) - 0x0800aaf8 memcpy + 0x0800a938 0x48 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) + 0x0800a938 __libc_init_array + .text.memcpy 0x0800a980 0x1c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + 0x0800a980 memcpy *(.glue_7) - .glue_7 0x0800ab14 0x0 linker stubs + .glue_7 0x0800a99c 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0800ab14 0x0 linker stubs + .glue_7t 0x0800a99c 0x0 linker stubs *(.eh_frame) - .eh_frame 0x0800ab14 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .eh_frame 0x0800a99c 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o *(.init) - .init 0x0800ab14 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0800ab14 _init - .init 0x0800ab18 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o + .init 0x0800a99c 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0800a99c _init + .init 0x0800a9a0 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o *(.fini) - .fini 0x0800ab20 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0800ab20 _fini - .fini 0x0800ab24 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o - 0x0800ab2c . = ALIGN (0x4) - 0x0800ab2c _etext = . + .fini 0x0800a9a8 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0800a9a8 _fini + .fini 0x0800a9ac 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x0800a9b4 . = ALIGN (0x4) + 0x0800a9b4 _etext = . -.vfp11_veneer 0x0800ab2c 0x0 - .vfp11_veneer 0x0800ab2c 0x0 linker stubs +.vfp11_veneer 0x0800a9b4 0x0 + .vfp11_veneer 0x0800a9b4 0x0 linker stubs -.v4_bx 0x0800ab2c 0x0 - .v4_bx 0x0800ab2c 0x0 linker stubs +.v4_bx 0x0800a9b4 0x0 + .v4_bx 0x0800a9b4 0x0 linker stubs -.iplt 0x0800ab2c 0x0 - .iplt 0x0800ab2c 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.iplt 0x0800a9b4 0x0 + .iplt 0x0800a9b4 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.rodata 0x0800ab2c 0x5c - 0x0800ab2c . = ALIGN (0x4) +.rodata 0x0800a9b4 0x5c + 0x0800a9b4 . = ALIGN (0x4) *(.rodata) - .rodata 0x0800ab2c 0x3a ./USB_DEVICE/App/usbd_desc.o + .rodata 0x0800a9b4 0x3a ./USB_DEVICE/App/usbd_desc.o *(.rodata*) - *fill* 0x0800ab66 0x2 + *fill* 0x0800a9ee 0x2 .rodata.AHBPrescTable - 0x0800ab68 0x10 ./Core/Src/system_stm32f4xx.o - 0x0800ab68 AHBPrescTable + 0x0800a9f0 0x10 ./Core/Src/system_stm32f4xx.o + 0x0800a9f0 AHBPrescTable .rodata.APBPrescTable - 0x0800ab78 0x8 ./Core/Src/system_stm32f4xx.o - 0x0800ab78 APBPrescTable + 0x0800aa00 0x8 ./Core/Src/system_stm32f4xx.o + 0x0800aa00 APBPrescTable .rodata.flagBitshiftOffset.0 - 0x0800ab80 0x8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - 0x0800ab88 . = ALIGN (0x4) + 0x0800aa08 0x8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x0800aa10 . = ALIGN (0x4) -.ARM.extab 0x0800ab88 0x0 - 0x0800ab88 . = ALIGN (0x4) +.ARM.extab 0x0800aa10 0x0 + 0x0800aa10 . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x0800ab88 . = ALIGN (0x4) + 0x0800aa10 . = ALIGN (0x4) -.ARM 0x0800ab88 0x8 - 0x0800ab88 . = ALIGN (0x4) - 0x0800ab88 __exidx_start = . +.ARM 0x0800aa10 0x8 + 0x0800aa10 . = ALIGN (0x4) + 0x0800aa10 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x0800ab88 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) - 0x0800ab90 __exidx_end = . - 0x0800ab90 . = ALIGN (0x4) + .ARM.exidx 0x0800aa10 0x8 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) + 0x0800aa18 __exidx_end = . + 0x0800aa18 . = ALIGN (0x4) -.preinit_array 0x0800ab90 0x0 - 0x0800ab90 . = ALIGN (0x4) - 0x0800ab90 PROVIDE (__preinit_array_start = .) +.preinit_array 0x0800aa18 0x0 + 0x0800aa18 . = ALIGN (0x4) + 0x0800aa18 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x0800ab90 PROVIDE (__preinit_array_end = .) - 0x0800ab90 . = ALIGN (0x4) + 0x0800aa18 PROVIDE (__preinit_array_end = .) + 0x0800aa18 . = ALIGN (0x4) -.init_array 0x0800ab90 0x4 - 0x0800ab90 . = ALIGN (0x4) - 0x0800ab90 PROVIDE (__init_array_start = .) +.init_array 0x0800aa18 0x4 + 0x0800aa18 . = ALIGN (0x4) + 0x0800aa18 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x0800ab90 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o - 0x0800ab94 PROVIDE (__init_array_end = .) - 0x0800ab94 . = ALIGN (0x4) + .init_array 0x0800aa18 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x0800aa1c PROVIDE (__init_array_end = .) + 0x0800aa1c . = ALIGN (0x4) -.fini_array 0x0800ab94 0x4 - 0x0800ab94 . = ALIGN (0x4) +.fini_array 0x0800aa1c 0x4 + 0x0800aa1c . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x0800ab94 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .fini_array 0x0800aa1c 0x4 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x0800ab98 . = ALIGN (0x4) - 0x0800ab98 _sidata = LOADADDR (.data) + 0x0800aa20 . = ALIGN (0x4) + 0x0800aa20 _sidata = LOADADDR (.data) -.rel.dyn 0x0800ab98 0x0 - .rel.iplt 0x0800ab98 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.rel.dyn 0x0800aa20 0x0 + .rel.iplt 0x0800aa20 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.data 0x20000000 0x1a0 load address 0x0800ab98 +.data 0x20000000 0x1a0 load address 0x0800aa20 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -6387,11 +6386,11 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external *fill* 0x2000019e 0x2 0x200001a0 _edata = . -.igot.plt 0x200001a0 0x0 load address 0x0800ad38 +.igot.plt 0x200001a0 0x0 load address 0x0800abc0 .igot.plt 0x200001a0 0x0 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/crtbegin.o 0x200001a0 . = ALIGN (0x4) -.bss 0x200001a0 0xf58 load address 0x0800ad38 +.bss 0x200001a0 0xf58 load address 0x0800abc0 0x200001a0 _sbss = . 0x200001a0 __bss_start__ = _sbss *(.bss) @@ -6474,7 +6473,7 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external 0x200010f8 __bss_end__ = _ebss ._user_heap_stack - 0x200010f8 0x600 load address 0x0800ad38 + 0x200010f8 0x600 load address 0x0800abc0 0x200010f8 . = ALIGN (0x8) [!provide] PROVIDE (end = .) 0x200010f8 PROVIDE (_end = .) @@ -6576,37 +6575,37 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libm.a LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a -.debug_info 0x00000000 0x1af7a +.debug_info 0x00000000 0x1af6f .debug_info 0x00000000 0x514 ./Core/Src/dma.o .debug_info 0x00000514 0x455 ./Core/Src/gpio.o .debug_info 0x00000969 0x9a4 ./Core/Src/i2c.o - .debug_info 0x0000130d 0x14d2 ./Core/Src/main.o - .debug_info 0x000027df 0x299 ./Core/Src/stm32f4xx_hal_msp.o - .debug_info 0x00002a78 0xc7c ./Core/Src/stm32f4xx_it.o - .debug_info 0x000036f4 0x54a ./Core/Src/system_stm32f4xx.o - .debug_info 0x00003c3e 0xd18 ./Core/Src/tim.o - .debug_info 0x00004956 0xdbf ./Core/Src/usart.o - .debug_info 0x00005715 0x30 ./Core/Startup/startup_stm32f446retx.o - .debug_info 0x00005745 0x99a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_info 0x000060df 0xdaa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_info 0x00006e89 0x8e7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_info 0x00007770 0x70b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_info 0x00007e7b 0x2421 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_info 0x0000a29c 0x15e3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_info 0x0000b87f 0x7b4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_info 0x0000c033 0x8ff ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_info 0x0000c932 0x960 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_info 0x0000d292 0x299d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_info 0x0000fc2f 0x14db ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_info 0x0001110a 0x2f4f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_info 0x00014059 0x19f1 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_info 0x00015a4a 0xa9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_info 0x000164e8 0xe1f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_info 0x00017307 0xaf8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_info 0x00017dff 0x76f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_info 0x0001856e 0x609 ./USB_DEVICE/App/usb_device.o - .debug_info 0x00018b77 0x4ba ./USB_DEVICE/App/usbd_desc.o - .debug_info 0x00019031 0x1f49 ./USB_DEVICE/Target/usbd_conf.o + .debug_info 0x0000130d 0x14c7 ./Core/Src/main.o + .debug_info 0x000027d4 0x299 ./Core/Src/stm32f4xx_hal_msp.o + .debug_info 0x00002a6d 0xc7c ./Core/Src/stm32f4xx_it.o + .debug_info 0x000036e9 0x54a ./Core/Src/system_stm32f4xx.o + .debug_info 0x00003c33 0xd18 ./Core/Src/tim.o + .debug_info 0x0000494b 0xdbf ./Core/Src/usart.o + .debug_info 0x0000570a 0x30 ./Core/Startup/startup_stm32f446retx.o + .debug_info 0x0000573a 0x99a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_info 0x000060d4 0xdaa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_info 0x00006e7e 0x8e7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_info 0x00007765 0x70b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_info 0x00007e70 0x2421 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_info 0x0000a291 0x15e3 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_info 0x0000b874 0x7b4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_info 0x0000c028 0x8ff ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_info 0x0000c927 0x960 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_info 0x0000d287 0x299d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_info 0x0000fc24 0x14db ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_info 0x000110ff 0x2f4f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_info 0x0001404e 0x19f1 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_info 0x00015a3f 0xa9e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_info 0x000164dd 0xe1f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_info 0x000172fc 0xaf8 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_info 0x00017df4 0x76f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_info 0x00018563 0x609 ./USB_DEVICE/App/usb_device.o + .debug_info 0x00018b6c 0x4ba ./USB_DEVICE/App/usbd_desc.o + .debug_info 0x00019026 0x1f49 ./USB_DEVICE/Target/usbd_conf.o .debug_abbrev 0x00000000 0x4057 .debug_abbrev 0x00000000 0x11b ./Core/Src/dma.o @@ -6703,7 +6702,7 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external 0x00001668 0x118 ./USB_DEVICE/Target/usbd_conf.o .debug_rnglists - 0x00000000 0x123e + 0x00000000 0x123f .debug_rnglists 0x00000000 0x14 ./Core/Src/dma.o .debug_rnglists @@ -6711,59 +6710,59 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .debug_rnglists 0x00000028 0x20 ./Core/Src/i2c.o .debug_rnglists - 0x00000048 0x48 ./Core/Src/main.o + 0x00000048 0x49 ./Core/Src/main.o .debug_rnglists - 0x00000090 0x13 ./Core/Src/stm32f4xx_hal_msp.o + 0x00000091 0x13 ./Core/Src/stm32f4xx_hal_msp.o .debug_rnglists - 0x000000a3 0x91 ./Core/Src/stm32f4xx_it.o + 0x000000a4 0x91 ./Core/Src/stm32f4xx_it.o .debug_rnglists - 0x00000134 0x1a ./Core/Src/system_stm32f4xx.o + 0x00000135 0x1a ./Core/Src/system_stm32f4xx.o .debug_rnglists - 0x0000014e 0x3a ./Core/Src/tim.o + 0x0000014f 0x3a ./Core/Src/tim.o .debug_rnglists - 0x00000188 0x33 ./Core/Src/usart.o + 0x00000189 0x33 ./Core/Src/usart.o .debug_rnglists - 0x000001bb 0x19 ./Core/Startup/startup_stm32f446retx.o + 0x000001bc 0x19 ./Core/Startup/startup_stm32f446retx.o .debug_rnglists - 0x000001d4 0xaf ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x000001d5 0xaf ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o .debug_rnglists - 0x00000283 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x00000284 0xe0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .debug_rnglists - 0x00000363 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + 0x00000364 0x70 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o .debug_rnglists - 0x000003d3 0x3f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x000003d4 0x3f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o .debug_rnglists - 0x00000412 0x23c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + 0x00000413 0x23c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o .debug_rnglists - 0x0000064e 0xfa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + 0x0000064f 0xfa ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o .debug_rnglists - 0x00000748 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + 0x00000749 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o .debug_rnglists - 0x0000077a 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000077b 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o .debug_rnglists - 0x000007e0 0x5e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + 0x000007e1 0x5e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o .debug_rnglists - 0x0000083e 0x31a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000083f 0x31a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o .debug_rnglists - 0x00000b58 0x125 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x00000b59 0x125 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o .debug_rnglists - 0x00000c7d 0x1bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x00000c7e 0x1bc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .debug_rnglists - 0x00000e39 0x147 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + 0x00000e3a 0x147 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o .debug_rnglists - 0x00000f80 0x4c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + 0x00000f81 0x4c ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o .debug_rnglists - 0x00000fcc 0xa1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + 0x00000fcd 0xa1 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o .debug_rnglists - 0x0000106d 0x6e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + 0x0000106e 0x6e ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o .debug_rnglists - 0x000010db 0x37 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + 0x000010dc 0x37 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o .debug_rnglists - 0x00001112 0x13 ./USB_DEVICE/App/usb_device.o + 0x00001113 0x13 ./USB_DEVICE/App/usb_device.o .debug_rnglists - 0x00001125 0x49 ./USB_DEVICE/App/usbd_desc.o + 0x00001126 0x49 ./USB_DEVICE/App/usbd_desc.o .debug_rnglists - 0x0000116e 0xd0 ./USB_DEVICE/Target/usbd_conf.o + 0x0000116f 0xd0 ./USB_DEVICE/Target/usbd_conf.o .debug_macro 0x00000000 0x26060 .debug_macro 0x00000000 0x224 ./Core/Src/dma.o @@ -6875,70 +6874,70 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .debug_macro 0x00025c97 0x1c ./USB_DEVICE/App/usbd_desc.o .debug_macro 0x00025cb3 0x3ad ./USB_DEVICE/Target/usbd_conf.o -.debug_line 0x00000000 0x1e635 +.debug_line 0x00000000 0x1e655 .debug_line 0x00000000 0x726 ./Core/Src/dma.o .debug_line 0x00000726 0x74e ./Core/Src/gpio.o .debug_line 0x00000e74 0x789 ./Core/Src/i2c.o - .debug_line 0x000015fd 0xc4c ./Core/Src/main.o - .debug_line 0x00002249 0x71b ./Core/Src/stm32f4xx_hal_msp.o - .debug_line 0x00002964 0x902 ./Core/Src/stm32f4xx_it.o - .debug_line 0x00003266 0x791 ./Core/Src/system_stm32f4xx.o - .debug_line 0x000039f7 0x878 ./Core/Src/tim.o - .debug_line 0x0000426f 0xa52 ./Core/Src/usart.o - .debug_line 0x00004cc1 0x7a ./Core/Startup/startup_stm32f446retx.o - .debug_line 0x00004d3b 0xa0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_line 0x00005748 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_line 0x00006425 0xf79 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_line 0x0000739e 0xb51 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_line 0x00007eef 0x3aba ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_line 0x0000b9a9 0x1488 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_line 0x0000ce31 0x82d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_line 0x0000d65e 0xe28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_line 0x0000e486 0x14d9 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_line 0x0000f95f 0x3782 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_line 0x000130e1 0x196d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_line 0x00014a4e 0x2555 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_line 0x00016fa3 0x1d2f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_line 0x00018cd2 0xc3e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_line 0x00019910 0xf28 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_line 0x0001a838 0x1107 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_line 0x0001b93f 0xa2f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_line 0x0001c36e 0x9d6 ./USB_DEVICE/App/usb_device.o - .debug_line 0x0001cd44 0xab9 ./USB_DEVICE/App/usbd_desc.o - .debug_line 0x0001d7fd 0xe38 ./USB_DEVICE/Target/usbd_conf.o + .debug_line 0x000015fd 0xc6c ./Core/Src/main.o + .debug_line 0x00002269 0x71b ./Core/Src/stm32f4xx_hal_msp.o + .debug_line 0x00002984 0x902 ./Core/Src/stm32f4xx_it.o + .debug_line 0x00003286 0x791 ./Core/Src/system_stm32f4xx.o + .debug_line 0x00003a17 0x878 ./Core/Src/tim.o + .debug_line 0x0000428f 0xa52 ./Core/Src/usart.o + .debug_line 0x00004ce1 0x7a ./Core/Startup/startup_stm32f446retx.o + .debug_line 0x00004d5b 0xa0d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_line 0x00005768 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_line 0x00006445 0xf79 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_line 0x000073be 0xb51 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_line 0x00007f0f 0x3aba ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_line 0x0000b9c9 0x1488 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_line 0x0000ce51 0x82d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_line 0x0000d67e 0xe28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_line 0x0000e4a6 0x14d9 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_line 0x0000f97f 0x3782 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_line 0x00013101 0x196d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_line 0x00014a6e 0x2555 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_line 0x00016fc3 0x1d2f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_line 0x00018cf2 0xc3e ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_line 0x00019930 0xf28 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_line 0x0001a858 0x1107 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_line 0x0001b95f 0xa2f ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_line 0x0001c38e 0x9d6 ./USB_DEVICE/App/usb_device.o + .debug_line 0x0001cd64 0xab9 ./USB_DEVICE/App/usbd_desc.o + .debug_line 0x0001d81d 0xe38 ./USB_DEVICE/Target/usbd_conf.o -.debug_str 0x00000000 0xd7eb7 - .debug_str 0x00000000 0xd7eb7 ./Core/Src/dma.o +.debug_str 0x00000000 0xd7ebb + .debug_str 0x00000000 0xd7ebb ./Core/Src/dma.o 0xcd195 (size before relaxing) - .debug_str 0x000d7eb7 0xccd02 ./Core/Src/gpio.o - .debug_str 0x000d7eb7 0xcd236 ./Core/Src/i2c.o - .debug_str 0x000d7eb7 0xd1f03 ./Core/Src/main.o - .debug_str 0x000d7eb7 0xccc37 ./Core/Src/stm32f4xx_hal_msp.o - .debug_str 0x000d7eb7 0xcd5bd ./Core/Src/stm32f4xx_it.o - .debug_str 0x000d7eb7 0xcc61f ./Core/Src/system_stm32f4xx.o - .debug_str 0x000d7eb7 0xcd497 ./Core/Src/tim.o - .debug_str 0x000d7eb7 0xcd809 ./Core/Src/usart.o - .debug_str 0x000d7eb7 0x7e ./Core/Startup/startup_stm32f446retx.o - .debug_str 0x000d7eb7 0xcd1e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_str 0x000d7eb7 0xccf3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_str 0x000d7eb7 0xcca14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_str 0x000d7eb7 0xcc79a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_str 0x000d7eb7 0xcd61d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_str 0x000d7eb7 0xcd130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_str 0x000d7eb7 0xcca32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_str 0x000d7eb7 0xcca58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_str 0x000d7eb7 0xcca8b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_str 0x000d7eb7 0xcd984 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_str 0x000d7eb7 0xcd190 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_str 0x000d7eb7 0xcd00f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_str 0x000d7eb7 0xccfec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_str 0x000d7eb7 0xd1755 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_str 0x000d7eb7 0xd16be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_str 0x000d7eb7 0xd14e9 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_str 0x000d7eb7 0xd13be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_str 0x000d7eb7 0xd1553 ./USB_DEVICE/App/usb_device.o - .debug_str 0x000d7eb7 0xd12d2 ./USB_DEVICE/App/usbd_desc.o - .debug_str 0x000d7eb7 0xd271f ./USB_DEVICE/Target/usbd_conf.o + .debug_str 0x000d7ebb 0xccd02 ./Core/Src/gpio.o + .debug_str 0x000d7ebb 0xcd236 ./Core/Src/i2c.o + .debug_str 0x000d7ebb 0xd1efc ./Core/Src/main.o + .debug_str 0x000d7ebb 0xccc37 ./Core/Src/stm32f4xx_hal_msp.o + .debug_str 0x000d7ebb 0xcd5bd ./Core/Src/stm32f4xx_it.o + .debug_str 0x000d7ebb 0xcc61f ./Core/Src/system_stm32f4xx.o + .debug_str 0x000d7ebb 0xcd497 ./Core/Src/tim.o + .debug_str 0x000d7ebb 0xcd809 ./Core/Src/usart.o + .debug_str 0x000d7ebb 0x7e ./Core/Startup/startup_stm32f446retx.o + .debug_str 0x000d7ebb 0xcd1e4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_str 0x000d7ebb 0xccf3b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_str 0x000d7ebb 0xcca14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_str 0x000d7ebb 0xcc79a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_str 0x000d7ebb 0xcd61d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_str 0x000d7ebb 0xcd130 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_str 0x000d7ebb 0xcca32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_str 0x000d7ebb 0xcca58 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_str 0x000d7ebb 0xcca8b ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_str 0x000d7ebb 0xcd984 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_str 0x000d7ebb 0xcd190 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_str 0x000d7ebb 0xcd00f ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_str 0x000d7ebb 0xccfec ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_str 0x000d7ebb 0xd1755 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_str 0x000d7ebb 0xd16be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_str 0x000d7ebb 0xd14e9 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_str 0x000d7ebb 0xd13be ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_str 0x000d7ebb 0xd1553 ./USB_DEVICE/App/usb_device.o + .debug_str 0x000d7ebb 0xd12d2 ./USB_DEVICE/App/usbd_desc.o + .debug_str 0x000d7ebb 0xd271f ./USB_DEVICE/Target/usbd_conf.o .comment 0x00000000 0x43 .comment 0x00000000 0x43 ./Core/Src/dma.o @@ -6972,41 +6971,41 @@ LOAD /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.external .comment 0x00000043 0x44 ./USB_DEVICE/App/usbd_desc.o .comment 0x00000043 0x44 ./USB_DEVICE/Target/usbd_conf.o -.debug_frame 0x00000000 0x62c4 +.debug_frame 0x00000000 0x62c0 .debug_frame 0x00000000 0x34 ./Core/Src/dma.o .debug_frame 0x00000034 0x34 ./Core/Src/gpio.o .debug_frame 0x00000068 0x74 ./Core/Src/i2c.o - .debug_frame 0x000000dc 0x144 ./Core/Src/main.o - .debug_frame 0x00000220 0x38 ./Core/Src/stm32f4xx_hal_msp.o - .debug_frame 0x00000258 0x270 ./Core/Src/stm32f4xx_it.o - .debug_frame 0x000004c8 0x58 ./Core/Src/system_stm32f4xx.o - .debug_frame 0x00000520 0x114 ./Core/Src/tim.o - .debug_frame 0x00000634 0xcc ./Core/Src/usart.o - .debug_frame 0x00000700 0x374 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_frame 0x00000a74 0x508 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_frame 0x00000f7c 0x250 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o - .debug_frame 0x000011cc 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_frame 0x00001318 0xc84 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o - .debug_frame 0x00001f9c 0x5b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o - .debug_frame 0x00002554 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o - .debug_frame 0x00002654 0x1f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_frame 0x00002848 0x1e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o - .debug_frame 0x00002a30 0x11c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_frame 0x00003bf0 0x638 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_frame 0x00004228 0x954 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_frame 0x00004b7c 0x7c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o - .debug_frame 0x0000533c 0x184 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o - .debug_frame 0x000054c0 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o - .debug_frame 0x00005850 0x23c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o - .debug_frame 0x00005a8c 0x10c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o - .debug_frame 0x00005b98 0x2c ./USB_DEVICE/App/usb_device.o - .debug_frame 0x00005bc4 0x188 ./USB_DEVICE/App/usbd_desc.o - .debug_frame 0x00005d4c 0x4a4 ./USB_DEVICE/Target/usbd_conf.o - .debug_frame 0x000061f0 0x20 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) - .debug_frame 0x00006210 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) - .debug_frame 0x0000623c 0x28 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) - .debug_frame 0x00006264 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) - .debug_frame 0x00006290 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) + .debug_frame 0x000000dc 0x140 ./Core/Src/main.o + .debug_frame 0x0000021c 0x38 ./Core/Src/stm32f4xx_hal_msp.o + .debug_frame 0x00000254 0x270 ./Core/Src/stm32f4xx_it.o + .debug_frame 0x000004c4 0x58 ./Core/Src/system_stm32f4xx.o + .debug_frame 0x0000051c 0x114 ./Core/Src/tim.o + .debug_frame 0x00000630 0xcc ./Core/Src/usart.o + .debug_frame 0x000006fc 0x374 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_frame 0x00000a70 0x508 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_frame 0x00000f78 0x250 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o + .debug_frame 0x000011c8 0x14c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_frame 0x00001314 0xc84 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o + .debug_frame 0x00001f98 0x5b8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o + .debug_frame 0x00002550 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o + .debug_frame 0x00002650 0x1f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_frame 0x00002844 0x1e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o + .debug_frame 0x00002a2c 0x11c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_frame 0x00003bec 0x638 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_frame 0x00004224 0x954 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_frame 0x00004b78 0x7c0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o + .debug_frame 0x00005338 0x184 ./Middlewares/ST/STM32_USB_Device_Library/Class/HID/Src/usbd_hid.o + .debug_frame 0x000054bc 0x390 ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o + .debug_frame 0x0000584c 0x23c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o + .debug_frame 0x00005a88 0x10c ./Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o + .debug_frame 0x00005b94 0x2c ./USB_DEVICE/App/usb_device.o + .debug_frame 0x00005bc0 0x188 ./USB_DEVICE/App/usbd_desc.o + .debug_frame 0x00005d48 0x4a4 ./USB_DEVICE/Target/usbd_conf.o + .debug_frame 0x000061ec 0x20 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memset.o) + .debug_frame 0x0000620c 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-init.o) + .debug_frame 0x00006238 0x28 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/libc_nano.a(libc_a-memcpy-stub.o) + .debug_frame 0x00006260 0x2c /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x0000628c 0x34 /home/ukim/st/stm32cubeide_1.19.0/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.13.3.rel1.linux64_1.0.0.202410170706/tools/bin/../lib/gcc/arm-none-eabi/13.3.1/thumb/v7e-m+fp/hard/libgcc.a(_udivmoddi4.o) .debug_line_str 0x00000000 0x62